diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/_arf_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..1bc6d685fc5a3b0717eb3cb3cf78b57f1d6b6646 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/_arf_generate.py @@ -0,0 +1,6 @@ +import pickle +with open("/work/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/arf_model.pkl", "rb") as f: + model = pickle.load(f) +syn = model.forge(n=200) +syn.to_csv("/work/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/arf-c2-200-20260318_003533.csv", index=False) +print(f"[ARF] Generated 200 rows -> /work/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/arf-c2-200-20260318_003533.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/_arf_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..5352918546226cd1a2a7cac32edd6f89756f8dc9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/_arf_train.py @@ -0,0 +1,19 @@ +import pickle +import pandas as pd +from arfpy import arf + +df = pd.read_csv("/work/DatasetNew/c2/c2-train.csv") +df = df.dropna(axis=1, how="all") +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/arf_model.pkl") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/gen_20260318_003533.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/gen_20260318_003533.log new file mode 100644 index 0000000000000000000000000000000000000000..522c2e12020ae6485287fa5932bd1ae1361fcbf2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/gen_20260318_003533.log @@ -0,0 +1,15 @@ +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +[ARF] Generated 200 rows -> /work/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/arf-c2-200-20260318_003533.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/train_20260318_003516.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/train_20260318_003516.log new file mode 100644 index 0000000000000000000000000000000000000000..f49099c8d1da3acbe2b2e7598e605eed0902d233 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/train_20260318_003516.log @@ -0,0 +1,4 @@ +[ARF] Training on 1382 rows, 7 cols +Initial accuracy is 0.5962373371924746 +Iteration number 1 reached accuracy of 0.3994211287988423. +[ARF] Model saved -> /work/output-SpecializedModels/c2/arf/arf-c2-20260318_003516/arf_model.pkl diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/_arf_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..cc203db852b4f110c0a88adf4d99468e28c8ed16 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/_arf_generate.py @@ -0,0 +1,6 @@ +import pickle +with open("/work/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/arf_model.pkl", "rb") as f: + model = pickle.load(f) +syn = model.forge(n=1382) +syn.to_csv("/work/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/arf-c2-1382-20260318_032516.csv", index=False) +print(f"[ARF] Generated 1382 rows -> /work/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/arf-c2-1382-20260318_032516.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/_arf_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..e51324a2c7dbd388560b048df99b14b91fa15b60 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/_arf_train.py @@ -0,0 +1,19 @@ +import pickle +import pandas as pd +from arfpy import arf + +df = pd.read_csv("/work/DatasetNew/c2/c2-train.csv") +df = df.dropna(axis=1, how="all") +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/arf_model.pkl") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/gen_20260318_032516.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/gen_20260318_032516.log new file mode 100644 index 0000000000000000000000000000000000000000..167fad6ba5fe84f2841cdb2aa49c959b4c5c6141 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/gen_20260318_032516.log @@ -0,0 +1,15 @@ +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +[ARF] Generated 1382 rows -> /work/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/arf-c2-1382-20260318_032516.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/train_20260318_032459.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/train_20260318_032459.log new file mode 100644 index 0000000000000000000000000000000000000000..986b924ddd9cd356eb0e115229a9cdeca28c6166 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/train_20260318_032459.log @@ -0,0 +1,4 @@ +[ARF] Training on 1382 rows, 7 cols +Initial accuracy is 0.5958755426917511 +Iteration number 1 reached accuracy of 0.38929088277858176. +[ARF] Model saved -> /work/output-SpecializedModels/c2/arf/arf-c2-20260318_032459/arf_model.pkl diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/_arf_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..8b3ae21ff3b51b381e10a8f58c38a402daf429e7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/_arf_generate.py @@ -0,0 +1,6 @@ +import pickle +with open("/work/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/arf_model.pkl", "rb") as f: + model = pickle.load(f) +syn = model.forge(n=1000) +syn.to_csv("/work/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/arf-c2-1000-20260321_052706.csv", index=False) +print(f"[ARF] Generated 1000 rows -> /work/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/arf-c2-1000-20260321_052706.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/_arf_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..78f0440701f5f0101f18662cb08b387d5795fa43 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/_arf_train.py @@ -0,0 +1,19 @@ +import pickle +import pandas as pd +from arfpy import arf + +df = pd.read_csv("/work/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/arf_model.pkl") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/gen_20260321_052706.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/gen_20260321_052706.log new file mode 100644 index 0000000000000000000000000000000000000000..1745ab4153e58cf60ff7c77f4e761afdd3d726da --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/gen_20260321_052706.log @@ -0,0 +1,15 @@ +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +[ARF] Generated 1000 rows -> /work/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/arf-c2-1000-20260321_052706.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa654607f22f68d2aaa5e57809017787b5eb02b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..047845a97be87aa55e604a43bf5742eb149d9d37 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..071b6d909f2c8780b0118f2a0d9e5d6b4a9b2bb3 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c2", + "model": "arf", + "run_id": "arf-c2-20260321_052647", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/arf-c2-1000-20260321_052706.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/arf_model.pkl" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/arf/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e2466d2917173f6616658e97fa1e438d462889bf --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/arf/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/arf/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..31d0f73e7bb35edd10031f6cdbf9b84745e25620 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/arf/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b3cf25081f629b35185af44e432085a72a9bb40b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/test.csv @@ -0,0 +1,175 @@ +buying,maint,doors,persons,lug_boot,safety,class +low,med,2,more,big,high,vgood +med,med,2,more,small,high,unacc +low,vhigh,5more,more,small,high,acc +vhigh,med,2,more,small,med,unacc +low,high,4,more,small,med,acc +low,med,4,2,med,high,unacc +vhigh,vhigh,2,more,big,low,unacc +med,med,4,2,small,low,unacc +high,vhigh,5more,2,small,high,unacc +med,med,2,2,med,med,unacc +med,vhigh,5more,4,med,high,acc +med,low,3,2,big,low,unacc +high,low,2,more,big,high,acc +high,low,3,2,big,low,unacc +vhigh,high,2,more,med,high,unacc +med,low,3,2,big,med,unacc +low,low,5more,4,small,high,good +low,vhigh,5more,4,big,high,acc +vhigh,low,2,2,med,med,unacc +med,low,5more,4,big,high,vgood +vhigh,med,5more,4,big,high,acc +vhigh,med,2,4,small,low,unacc +vhigh,vhigh,5more,4,big,med,unacc +low,med,3,4,small,low,unacc +vhigh,high,4,more,big,med,unacc +med,high,3,4,med,low,unacc +med,high,4,more,small,low,unacc +vhigh,med,4,4,med,high,acc +low,med,5more,more,big,med,good +high,med,5more,4,med,med,acc +high,low,4,2,big,high,unacc +med,low,2,2,big,high,unacc +med,vhigh,2,4,med,high,acc +med,low,2,4,small,med,acc +low,med,2,more,small,low,unacc +high,vhigh,5more,more,big,high,unacc +med,med,2,more,big,low,unacc +low,low,5more,2,small,high,unacc +low,med,2,4,med,high,good +high,vhigh,4,more,small,high,unacc +low,low,5more,more,small,med,acc +high,high,2,2,med,low,unacc +vhigh,med,4,more,med,high,acc +med,vhigh,4,more,med,med,acc +low,vhigh,2,more,med,low,unacc +high,low,4,2,small,med,unacc +med,high,3,more,big,low,unacc +low,vhigh,3,more,small,high,acc +high,vhigh,2,2,med,med,unacc +high,high,5more,more,big,low,unacc +low,high,4,4,med,med,acc +med,med,5more,2,small,med,unacc +high,vhigh,2,2,small,med,unacc +vhigh,high,3,2,small,med,unacc +high,high,2,4,small,low,unacc +high,low,4,4,med,low,unacc +high,high,5more,more,big,high,acc +low,low,5more,4,small,med,acc +high,vhigh,3,4,small,high,unacc +vhigh,high,2,2,big,med,unacc +low,med,4,more,big,low,unacc +low,med,4,2,big,high,unacc +high,med,2,4,big,high,acc +low,vhigh,5more,more,big,high,acc +high,vhigh,2,more,small,low,unacc +med,med,4,2,big,med,unacc +low,high,2,2,big,low,unacc +low,vhigh,2,4,big,low,unacc +high,high,2,4,med,med,unacc +high,low,2,more,med,med,unacc +med,vhigh,5more,2,small,high,unacc +vhigh,low,2,4,small,high,acc +low,low,5more,more,med,low,unacc +low,high,5more,4,small,low,unacc +med,med,2,4,med,high,acc +vhigh,low,3,2,small,low,unacc +low,vhigh,2,2,med,high,unacc +med,low,4,2,big,low,unacc +vhigh,high,3,4,med,low,unacc +low,vhigh,3,2,med,high,unacc +low,vhigh,5more,more,med,high,acc +low,high,3,2,big,med,unacc +high,high,2,2,big,med,unacc +low,vhigh,4,more,med,high,acc +vhigh,low,5more,more,big,med,acc +high,med,4,more,big,high,acc +high,low,2,2,med,low,unacc +vhigh,low,2,4,small,med,unacc +high,med,5more,more,small,med,unacc +low,vhigh,2,2,big,low,unacc +med,vhigh,4,4,small,high,acc +low,low,4,4,small,med,acc +low,low,4,2,med,low,unacc +vhigh,high,5more,more,small,low,unacc +low,low,5more,2,big,low,unacc +vhigh,high,4,2,small,high,unacc +high,high,3,more,big,high,acc +low,med,4,more,small,low,unacc +high,vhigh,3,2,big,high,unacc +low,vhigh,4,2,med,high,unacc +vhigh,vhigh,5more,4,med,med,unacc +vhigh,high,3,2,big,high,unacc +low,high,3,4,med,low,unacc +vhigh,low,4,4,big,med,acc +med,med,5more,more,med,med,acc +high,med,5more,4,med,low,unacc +med,low,4,more,big,med,good +med,low,5more,more,small,med,acc +high,high,4,2,big,med,unacc +med,med,3,more,big,low,unacc +vhigh,high,4,2,small,low,unacc +high,low,2,more,small,high,unacc +vhigh,med,3,4,med,med,unacc +med,med,2,more,small,med,unacc +med,vhigh,4,more,med,high,acc +low,high,5more,4,small,med,acc +vhigh,vhigh,5more,2,big,high,unacc +low,low,3,2,big,low,unacc +high,high,2,2,small,high,unacc +med,low,3,more,med,med,good +high,med,4,2,med,low,unacc +high,med,5more,2,big,med,unacc +vhigh,high,5more,4,small,med,unacc +high,low,2,more,med,high,acc +vhigh,high,5more,2,small,med,unacc +low,low,5more,4,big,high,vgood +high,med,3,4,big,low,unacc +low,med,3,more,big,med,good +high,vhigh,2,4,small,low,unacc +vhigh,med,5more,more,med,med,acc +low,low,4,more,small,med,acc +high,med,3,more,med,med,acc +med,vhigh,2,2,small,high,unacc +low,high,2,more,big,high,vgood +vhigh,low,2,2,med,low,unacc +low,low,3,2,med,med,unacc +low,med,3,4,big,med,good +vhigh,vhigh,2,4,med,high,unacc +low,low,3,4,small,high,good +high,high,3,2,med,low,unacc +med,low,2,more,small,med,unacc +med,vhigh,4,2,small,high,unacc +high,vhigh,2,more,small,high,unacc +high,low,5more,more,med,high,acc +low,low,5more,4,med,high,vgood +low,high,3,2,big,low,unacc +low,vhigh,3,2,big,high,unacc +low,high,4,4,small,low,unacc +vhigh,low,5more,2,med,low,unacc +med,med,4,4,big,med,acc +vhigh,vhigh,4,2,small,med,unacc +med,low,3,more,small,low,unacc +med,high,4,4,small,low,unacc +high,vhigh,3,more,small,low,unacc +high,vhigh,2,4,big,med,unacc +vhigh,high,5more,2,med,low,unacc +vhigh,vhigh,4,2,big,high,unacc +vhigh,vhigh,4,4,med,low,unacc +med,vhigh,2,2,small,med,unacc +med,low,2,more,med,med,acc +vhigh,high,4,4,big,high,unacc +med,med,3,4,small,med,acc +low,med,2,2,med,high,unacc +low,vhigh,5more,4,small,low,unacc +vhigh,high,5more,more,med,low,unacc +low,high,5more,more,big,low,unacc +vhigh,med,4,4,big,med,acc +high,vhigh,2,more,big,high,unacc +high,vhigh,4,4,big,med,unacc +high,high,2,more,big,low,unacc +low,med,2,2,big,med,unacc +vhigh,vhigh,3,more,big,med,unacc +vhigh,med,2,4,med,med,unacc +low,vhigh,2,4,med,high,acc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a7dd506a8ec04e784f7aa4b9fe95bca40b4e9722 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/train.csv @@ -0,0 +1,1383 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,2,2,small,low,unacc +med,low,5more,4,small,high,good +med,med,3,2,small,low,unacc +med,med,4,4,small,med,acc +high,low,2,4,big,med,acc +med,vhigh,5more,2,small,low,unacc +high,med,2,more,small,low,unacc +low,med,5more,more,small,high,good +med,high,5more,4,small,high,acc +med,vhigh,3,2,med,med,unacc +vhigh,low,3,more,big,high,acc +vhigh,high,3,2,small,high,unacc +low,low,4,more,small,high,good +vhigh,low,4,more,small,med,unacc +low,high,2,4,med,med,acc +low,low,2,4,big,high,vgood +low,med,4,more,med,med,good +high,med,5more,2,big,high,unacc +med,vhigh,2,4,big,low,unacc +vhigh,med,4,more,med,low,unacc +low,low,2,4,small,low,unacc +low,high,4,4,big,high,vgood +low,high,3,2,med,high,unacc +vhigh,vhigh,5more,more,small,med,unacc +low,med,4,4,med,med,good +vhigh,low,3,4,small,low,unacc +vhigh,vhigh,4,2,big,med,unacc +high,vhigh,4,2,small,med,unacc +vhigh,low,4,more,med,med,acc +med,med,2,4,small,med,acc +low,high,5more,4,small,high,acc +vhigh,high,2,more,small,low,unacc +med,high,5more,more,big,med,acc +vhigh,med,3,more,med,low,unacc +low,low,4,2,small,low,unacc +med,high,2,2,big,high,unacc +low,med,3,2,med,high,unacc +low,vhigh,2,4,big,med,acc +low,med,4,2,small,high,unacc +med,vhigh,4,2,big,high,unacc +med,high,2,more,small,med,unacc +med,low,3,2,med,high,unacc +med,high,2,more,small,low,unacc +vhigh,med,3,4,big,high,acc +low,high,2,4,med,low,unacc +low,low,2,more,med,high,good +vhigh,med,5more,4,small,high,acc +med,low,4,more,small,med,acc +vhigh,low,4,4,small,med,unacc +high,med,2,2,small,med,unacc +low,vhigh,2,more,big,med,acc +med,vhigh,4,4,med,med,acc +vhigh,high,2,more,big,high,unacc +vhigh,vhigh,5more,more,small,low,unacc +high,high,2,more,med,low,unacc +low,vhigh,5more,more,small,med,unacc +med,high,2,2,med,low,unacc +vhigh,low,3,4,small,high,acc +low,low,3,4,big,low,unacc +low,low,4,2,big,low,unacc +vhigh,vhigh,2,more,small,med,unacc +vhigh,vhigh,5more,4,small,high,unacc +med,low,2,2,med,med,unacc +vhigh,med,4,more,big,low,unacc +low,low,5more,more,big,low,unacc +med,high,5more,2,small,med,unacc +high,med,5more,2,small,med,unacc +high,med,3,2,small,low,unacc +low,low,4,2,big,high,unacc +med,med,5more,4,med,high,vgood +low,vhigh,4,4,small,high,acc +med,high,3,2,med,high,unacc +vhigh,high,5more,4,small,high,unacc +high,vhigh,5more,2,med,high,unacc +vhigh,vhigh,3,more,small,med,unacc +high,med,5more,more,med,med,acc +vhigh,low,5more,more,small,low,unacc +vhigh,med,2,more,small,high,unacc +med,vhigh,5more,more,med,high,acc +med,low,3,more,med,high,vgood +high,high,4,2,med,med,unacc +high,med,5more,2,med,high,unacc +vhigh,high,3,2,med,low,unacc +med,med,5more,2,med,med,unacc +low,high,2,more,med,low,unacc +low,vhigh,2,2,small,low,unacc +med,med,5more,more,med,low,unacc +med,high,2,4,med,low,unacc +high,high,4,more,big,low,unacc +high,low,4,4,big,med,acc +med,med,4,more,big,med,acc +low,high,4,4,small,med,acc +vhigh,med,2,more,med,high,acc +med,med,5more,more,small,low,unacc +high,low,3,more,med,high,acc +high,high,4,2,med,low,unacc +low,low,2,more,med,low,unacc +vhigh,vhigh,3,2,small,high,unacc +vhigh,vhigh,2,2,big,low,unacc +med,med,3,more,big,high,vgood +med,low,5more,2,med,low,unacc +low,med,2,4,med,med,acc +high,med,5more,more,big,high,acc +med,low,5more,more,med,med,good +med,high,3,2,med,med,unacc +med,high,5more,more,big,low,unacc +vhigh,med,3,4,small,high,acc +low,low,3,2,small,high,unacc +high,med,3,more,big,low,unacc +med,vhigh,3,4,med,med,unacc +high,high,5more,more,small,med,unacc +med,low,4,2,med,low,unacc +vhigh,high,2,more,small,med,unacc +low,med,2,2,med,low,unacc +vhigh,low,2,more,small,med,unacc +vhigh,vhigh,4,2,small,low,unacc +med,low,4,more,med,low,unacc +med,high,3,4,small,med,unacc +med,vhigh,2,more,big,low,unacc +vhigh,high,4,4,big,low,unacc +med,vhigh,4,2,small,low,unacc +vhigh,med,5more,2,small,med,unacc +vhigh,vhigh,3,2,big,high,unacc +med,high,3,more,small,high,acc +med,vhigh,3,more,small,low,unacc +low,vhigh,3,2,small,low,unacc +vhigh,high,2,more,big,med,unacc +low,low,5more,2,small,low,unacc +low,med,2,2,big,high,unacc +med,low,5more,more,med,low,unacc +high,high,5more,2,big,med,unacc +high,med,5more,4,small,high,acc +low,vhigh,3,more,big,med,acc +low,med,5more,2,big,high,unacc +med,med,3,4,big,high,vgood +low,high,3,4,small,high,acc +high,low,3,more,med,low,unacc +high,low,5more,2,small,high,unacc +med,low,5more,more,med,high,vgood +low,med,4,4,small,med,acc +low,med,3,4,small,high,good +med,med,5more,2,small,high,unacc +low,vhigh,3,4,med,high,acc +low,med,5more,2,med,med,unacc +low,low,5more,4,med,med,good +vhigh,high,5more,more,small,med,unacc +vhigh,med,2,2,med,high,unacc +vhigh,high,3,4,small,med,unacc +high,high,2,4,med,high,acc +vhigh,med,3,2,small,low,unacc +high,low,3,2,big,med,unacc +vhigh,low,4,more,big,low,unacc +low,high,3,2,small,med,unacc +vhigh,high,4,more,small,high,unacc +low,high,2,4,small,med,acc +med,low,3,more,small,high,good +high,low,4,4,med,high,acc +vhigh,vhigh,4,4,big,low,unacc +med,low,4,4,big,med,good +low,med,3,2,big,low,unacc +low,low,4,2,small,med,unacc +med,low,5more,2,small,high,unacc +low,high,4,more,small,low,unacc +high,high,3,more,big,med,acc +med,high,5more,more,med,low,unacc +vhigh,high,4,4,small,high,unacc +med,low,3,more,small,med,acc +med,low,3,2,big,high,unacc +vhigh,low,3,more,med,low,unacc +med,med,4,more,med,low,unacc +med,vhigh,2,2,med,high,unacc +high,med,5more,2,big,low,unacc +vhigh,vhigh,3,2,small,med,unacc +high,low,3,more,small,low,unacc +med,high,3,2,small,low,unacc +low,high,5more,4,big,high,vgood +med,low,4,more,med,high,vgood +med,high,3,more,small,low,unacc +vhigh,med,4,4,med,low,unacc +low,high,2,4,med,high,acc +vhigh,low,4,2,small,med,unacc +vhigh,low,3,more,small,low,unacc +high,high,3,2,big,med,unacc +med,low,4,4,small,med,acc +med,vhigh,3,more,small,med,unacc +med,high,2,4,big,med,acc +low,vhigh,3,4,med,low,unacc +med,vhigh,5more,more,med,med,acc +vhigh,high,5more,more,big,med,unacc +high,med,2,more,big,high,acc +high,low,4,more,small,high,acc +low,vhigh,4,2,big,high,unacc +low,high,4,more,small,high,acc +high,high,3,more,small,high,acc +vhigh,high,5more,2,big,low,unacc +high,med,3,4,small,high,acc +low,high,2,4,small,high,acc +high,med,3,more,med,low,unacc +low,low,5more,2,med,med,unacc +vhigh,low,3,2,big,med,unacc +low,high,4,2,small,high,unacc +high,high,3,4,small,low,unacc +vhigh,low,4,2,big,high,unacc +med,vhigh,5more,4,big,med,acc +low,high,3,more,med,low,unacc +low,low,3,2,small,low,unacc +low,low,2,more,small,med,unacc +vhigh,low,3,4,med,high,acc +high,low,3,2,med,high,unacc +med,high,5more,2,small,high,unacc +low,med,2,2,small,med,unacc +med,high,4,more,small,high,acc +high,high,5more,4,big,med,acc +low,med,5more,more,small,low,unacc +low,high,2,2,med,low,unacc +low,low,2,2,med,low,unacc +vhigh,high,2,2,small,high,unacc +high,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,big,med,unacc +low,high,3,more,big,low,unacc +high,vhigh,3,2,med,high,unacc +vhigh,low,5more,more,big,low,unacc +high,low,4,2,small,low,unacc +vhigh,high,5more,more,med,high,unacc +vhigh,vhigh,5more,2,big,low,unacc +low,high,5more,more,small,med,acc +high,med,4,more,big,med,acc +high,high,2,more,med,med,unacc +high,high,5more,2,big,high,unacc +med,vhigh,4,2,big,low,unacc +low,low,4,more,med,high,vgood +high,med,2,4,med,med,unacc +high,low,5more,4,small,high,acc +high,vhigh,4,4,med,med,unacc +low,med,4,4,small,low,unacc +vhigh,high,4,2,med,high,unacc +med,vhigh,2,more,med,high,acc +vhigh,med,3,more,med,high,acc +low,vhigh,2,more,small,low,unacc +high,vhigh,5more,4,big,med,unacc +med,med,3,4,small,low,unacc +high,high,5more,more,med,low,unacc +med,med,2,2,small,low,unacc +high,low,5more,more,small,med,unacc +low,vhigh,2,4,med,low,unacc +high,high,5more,4,med,high,acc +high,med,2,more,big,low,unacc +vhigh,med,4,more,small,med,unacc +med,low,2,more,big,low,unacc +med,med,4,2,med,med,unacc +high,low,2,more,small,med,unacc +vhigh,high,4,more,med,low,unacc +low,vhigh,5more,2,med,med,unacc +high,vhigh,5more,more,med,low,unacc +med,high,3,2,big,low,unacc +vhigh,high,3,more,big,med,unacc +high,vhigh,3,more,big,low,unacc +med,med,3,4,med,high,acc +low,low,4,4,med,low,unacc +vhigh,med,5more,more,big,low,unacc +high,med,3,2,big,high,unacc +high,med,4,2,small,low,unacc +high,high,3,4,med,low,unacc +high,high,2,more,small,high,unacc +low,low,2,2,med,med,unacc +med,vhigh,2,4,small,high,acc +med,med,4,2,big,high,unacc +vhigh,high,5more,4,big,high,unacc +low,vhigh,4,2,small,med,unacc +med,vhigh,4,more,small,low,unacc +med,vhigh,3,more,big,med,acc +high,med,4,2,big,high,unacc +high,low,3,2,big,high,unacc +vhigh,med,3,more,big,low,unacc +vhigh,vhigh,2,more,med,high,unacc +low,high,2,more,small,high,unacc +low,high,2,more,small,low,unacc +high,low,3,4,med,low,unacc +med,high,3,4,big,low,unacc +low,high,5more,more,med,med,acc +low,low,2,2,med,high,unacc +med,low,5more,4,med,high,vgood +vhigh,med,3,2,small,med,unacc +vhigh,low,3,more,med,high,acc +high,med,2,4,small,high,acc +vhigh,med,4,2,small,low,unacc +vhigh,med,2,2,small,low,unacc +low,high,3,4,med,high,acc +high,med,4,4,small,med,unacc +high,vhigh,3,4,big,med,unacc +low,low,5more,more,med,high,vgood +vhigh,vhigh,2,4,small,low,unacc +med,med,2,more,big,high,vgood +med,low,3,more,big,high,vgood +med,high,3,more,med,high,acc +high,vhigh,3,more,small,med,unacc +vhigh,low,5more,more,med,high,acc +low,low,4,4,big,high,vgood +med,low,3,4,small,high,good +high,med,5more,2,small,high,unacc +low,vhigh,2,4,small,high,acc +high,vhigh,3,more,small,high,unacc +med,high,2,more,med,med,unacc +vhigh,vhigh,4,more,med,low,unacc +med,high,4,4,med,low,unacc +med,vhigh,5more,more,small,low,unacc +high,vhigh,5more,2,small,med,unacc +vhigh,high,4,2,big,med,unacc +vhigh,low,5more,4,small,high,acc +low,med,5more,2,big,med,unacc +med,high,3,4,big,med,acc +med,high,4,more,small,med,unacc +high,low,5more,more,small,high,acc +vhigh,vhigh,3,4,small,low,unacc +med,high,5more,more,small,med,unacc +high,high,5more,2,small,med,unacc +low,high,4,2,big,high,unacc +low,med,5more,4,big,high,vgood +med,low,2,4,med,med,acc +low,vhigh,3,4,big,high,acc +med,vhigh,3,more,big,low,unacc +med,vhigh,5more,2,big,low,unacc +med,high,2,2,med,med,unacc +vhigh,low,4,more,med,high,acc +vhigh,low,3,2,med,med,unacc +vhigh,vhigh,4,4,small,low,unacc +med,vhigh,3,2,big,high,unacc +low,high,5more,more,big,med,acc +med,med,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,high,unacc +high,vhigh,4,2,big,low,unacc +high,high,2,2,big,high,unacc +low,med,4,2,small,low,unacc +low,low,3,4,small,med,acc +high,med,3,more,med,high,acc +low,high,3,2,small,high,unacc +vhigh,low,5more,2,small,med,unacc +high,low,4,4,med,med,acc +vhigh,med,2,4,med,low,unacc +vhigh,high,2,2,med,med,unacc +low,vhigh,4,4,big,low,unacc +low,vhigh,2,more,med,high,acc +med,low,2,4,med,low,unacc +med,low,2,more,med,high,good +vhigh,med,5more,more,small,med,unacc +med,high,5more,2,big,low,unacc +med,med,4,more,med,med,acc +med,high,3,more,big,high,acc +med,high,2,2,big,med,unacc +med,low,4,2,med,high,unacc +med,high,4,2,med,low,unacc +vhigh,high,5more,more,big,high,unacc +high,high,5more,2,big,low,unacc +med,high,4,2,small,med,unacc +low,vhigh,4,4,med,high,acc +vhigh,low,4,4,big,high,acc +med,vhigh,5more,more,big,high,acc +vhigh,vhigh,4,4,big,med,unacc +high,med,5more,more,big,low,unacc +high,high,5more,4,med,low,unacc +low,high,4,more,med,med,acc +vhigh,low,3,4,big,med,acc +vhigh,med,3,4,small,med,unacc +high,high,3,4,med,high,acc +med,low,5more,4,big,low,unacc +low,med,3,more,med,low,unacc +low,vhigh,5more,4,big,med,acc +med,high,5more,more,med,med,acc +low,low,4,2,med,high,unacc +low,med,3,2,med,low,unacc +low,high,2,4,big,low,unacc +low,low,5more,2,med,high,unacc +high,vhigh,5more,4,small,med,unacc +med,high,4,4,big,high,acc +vhigh,vhigh,3,2,big,low,unacc +med,high,5more,2,med,med,unacc +vhigh,high,2,2,big,low,unacc +med,med,4,4,med,high,vgood +med,high,3,more,med,low,unacc +low,high,2,more,med,med,acc +low,med,4,2,med,low,unacc +med,vhigh,5more,4,big,low,unacc +vhigh,med,2,more,big,high,acc +low,vhigh,5more,4,small,high,acc +vhigh,low,5more,2,small,low,unacc +high,med,2,4,big,low,unacc +vhigh,high,5more,2,small,high,unacc +med,low,4,2,big,high,unacc +low,med,2,2,med,med,unacc +med,med,2,4,big,high,vgood +low,high,4,2,med,high,unacc +high,med,4,more,med,low,unacc +low,high,3,4,small,med,acc +med,vhigh,4,4,big,med,acc +high,low,4,4,small,high,acc +high,high,2,4,small,med,unacc +low,med,2,more,med,med,acc +med,vhigh,5more,2,med,high,unacc +low,med,5more,4,med,high,vgood +low,high,4,4,med,low,unacc +low,low,2,4,med,high,good +high,vhigh,2,2,med,low,unacc +high,vhigh,4,2,small,low,unacc +med,vhigh,4,more,big,high,acc +med,high,3,4,small,high,acc +vhigh,low,2,more,med,med,unacc +med,med,5more,4,med,med,acc +high,med,2,2,med,med,unacc +vhigh,high,2,2,big,high,unacc +high,high,2,2,med,high,unacc +high,med,5more,more,big,med,acc +vhigh,vhigh,3,4,med,low,unacc +low,vhigh,4,more,small,low,unacc +vhigh,vhigh,4,2,med,high,unacc +low,low,2,2,big,med,unacc +low,low,4,more,small,low,unacc +low,vhigh,2,4,small,med,unacc +med,med,5more,2,med,low,unacc +low,high,3,more,small,high,acc +high,vhigh,5more,4,med,med,unacc +med,low,3,4,med,med,acc +vhigh,vhigh,5more,2,med,med,unacc +low,vhigh,4,2,big,med,unacc +high,med,4,4,small,high,acc +low,low,3,more,small,low,unacc +vhigh,high,4,more,big,high,unacc +med,vhigh,5more,4,big,high,acc +vhigh,low,4,more,big,med,acc +med,low,2,4,med,high,good +med,high,2,4,big,high,acc +vhigh,vhigh,5more,4,small,low,unacc +med,low,5more,more,small,low,unacc +vhigh,low,4,2,med,high,unacc +med,low,2,more,big,high,vgood +low,high,5more,4,big,low,unacc +high,low,5more,2,small,med,unacc +vhigh,vhigh,4,4,med,high,unacc +vhigh,low,3,more,big,low,unacc +low,low,2,more,big,low,unacc +vhigh,med,5more,2,small,low,unacc +med,vhigh,3,2,big,low,unacc +vhigh,med,2,4,small,med,unacc +med,low,2,4,big,low,unacc +high,low,4,more,big,high,acc +vhigh,vhigh,2,more,med,low,unacc +low,med,5more,4,small,high,good +low,low,5more,2,big,med,unacc +vhigh,vhigh,3,more,med,high,unacc +vhigh,med,5more,more,big,med,acc +high,med,4,more,small,high,acc +low,low,2,more,small,low,unacc +low,low,2,2,big,high,unacc +med,vhigh,4,more,small,high,acc +high,high,3,more,med,med,acc +low,vhigh,5more,2,small,high,unacc +high,high,4,2,small,med,unacc +low,vhigh,4,4,big,med,acc +med,vhigh,3,2,small,med,unacc +low,vhigh,5more,4,big,low,unacc +vhigh,vhigh,5more,4,big,high,unacc +low,med,3,4,big,high,vgood +vhigh,high,2,2,med,high,unacc +med,vhigh,5more,more,med,low,unacc +low,low,2,more,med,med,acc +low,med,5more,more,med,high,vgood +high,med,5more,4,big,med,acc +vhigh,low,5more,2,med,high,unacc +vhigh,low,4,more,small,high,acc +high,vhigh,5more,4,small,high,unacc +low,med,5more,more,small,med,acc +high,vhigh,3,2,med,med,unacc +med,med,2,2,med,low,unacc +high,low,3,more,small,high,acc +med,high,4,more,med,high,acc +vhigh,med,5more,4,med,high,acc +high,high,4,4,small,high,acc +vhigh,vhigh,2,more,big,high,unacc +vhigh,low,4,2,med,med,unacc +med,low,5more,4,big,med,good +vhigh,low,3,2,small,med,unacc +high,med,4,4,med,high,acc +low,vhigh,5more,4,med,med,acc +low,vhigh,5more,more,big,low,unacc +med,high,4,4,big,med,acc +med,low,5more,2,small,med,unacc +high,med,3,2,big,med,unacc +high,med,4,4,big,med,acc +med,med,4,4,small,low,unacc +low,high,5more,2,big,low,unacc +vhigh,low,3,2,big,high,unacc +vhigh,high,3,4,big,high,unacc +high,vhigh,5more,2,med,low,unacc +med,low,4,4,big,low,unacc +low,med,5more,2,med,low,unacc +med,high,3,2,med,low,unacc +med,high,2,more,small,high,unacc +high,low,3,more,big,high,acc +med,vhigh,3,more,small,high,acc +low,vhigh,3,4,small,high,acc +low,low,5more,more,small,low,unacc +med,high,4,more,big,low,unacc +med,low,5more,4,med,med,good +low,med,5more,4,med,med,good +vhigh,med,2,more,small,low,unacc +vhigh,high,2,more,med,low,unacc +med,low,4,more,big,low,unacc +med,vhigh,4,4,small,low,unacc +high,vhigh,4,2,big,med,unacc +low,med,4,2,big,low,unacc +vhigh,high,3,more,small,med,unacc +high,low,5more,4,big,med,acc +med,med,2,2,med,high,unacc +high,high,4,2,med,high,unacc +high,med,2,2,big,high,unacc +high,low,4,2,med,low,unacc +low,med,2,2,small,high,unacc +high,high,2,4,small,high,acc +med,med,2,4,big,low,unacc +vhigh,vhigh,2,4,small,med,unacc +med,high,5more,4,big,med,acc +med,high,4,2,big,med,unacc +med,low,2,2,small,low,unacc +high,low,3,4,med,med,unacc +high,low,2,2,med,med,unacc +low,low,2,4,med,low,unacc +low,high,3,2,small,low,unacc +med,med,5more,4,small,high,acc +vhigh,low,4,4,med,high,acc +vhigh,vhigh,5more,2,small,low,unacc +med,high,2,more,big,high,acc +vhigh,high,4,4,med,med,unacc +vhigh,high,4,more,med,high,unacc +med,low,4,4,med,low,unacc +vhigh,med,3,2,big,high,unacc +med,med,4,more,small,low,unacc +high,vhigh,2,4,small,med,unacc +vhigh,low,4,2,big,low,unacc +med,low,4,4,med,med,good +vhigh,med,5more,2,med,med,unacc +vhigh,vhigh,4,2,med,med,unacc +med,high,3,4,big,high,acc +vhigh,vhigh,3,more,med,low,unacc +high,high,5more,more,big,med,acc +vhigh,med,5more,4,small,med,unacc +vhigh,high,4,4,small,low,unacc +high,vhigh,2,more,med,high,unacc +high,high,3,2,big,low,unacc +vhigh,vhigh,5more,more,small,high,unacc +high,vhigh,2,4,med,med,unacc +vhigh,vhigh,5more,4,med,low,unacc +high,low,5more,4,small,med,unacc +med,med,3,more,med,med,acc +vhigh,med,2,more,big,med,acc +med,high,2,4,med,med,unacc +vhigh,vhigh,3,4,small,med,unacc +high,high,2,4,big,low,unacc +med,vhigh,4,4,small,med,unacc +vhigh,low,2,2,small,med,unacc +high,low,3,4,small,med,unacc +high,low,5more,2,med,med,unacc +vhigh,low,2,4,med,med,unacc +low,high,2,more,med,high,acc +low,med,3,more,small,high,good +vhigh,low,2,more,med,high,acc +low,high,5more,2,med,med,unacc +low,high,5more,more,big,high,vgood +high,low,2,4,med,high,acc +med,med,3,2,med,high,unacc +vhigh,low,5more,4,big,low,unacc +vhigh,high,3,4,med,med,unacc +vhigh,vhigh,2,4,big,med,unacc +med,med,5more,4,big,high,vgood +low,med,4,more,med,high,vgood +high,high,3,2,big,high,unacc +high,vhigh,2,more,small,med,unacc +med,med,2,more,small,low,unacc +vhigh,low,2,4,big,med,acc +low,vhigh,2,2,big,med,unacc +med,low,4,more,small,high,good +high,med,3,2,small,med,unacc +med,vhigh,2,more,big,med,acc +high,low,3,more,big,med,acc +low,low,3,more,big,high,vgood +vhigh,low,4,4,med,med,acc +med,vhigh,2,more,med,med,unacc +med,med,3,more,small,low,unacc +vhigh,vhigh,3,more,small,low,unacc +vhigh,low,5more,4,big,med,acc +med,high,3,4,med,med,unacc +low,vhigh,3,more,med,high,acc +low,low,5more,4,big,med,good +vhigh,med,3,2,small,high,unacc +low,high,3,4,big,high,vgood +vhigh,low,2,2,big,low,unacc +med,low,3,more,big,med,good +vhigh,low,4,4,small,low,unacc +med,med,3,2,small,high,unacc +low,high,5more,2,big,med,unacc +low,low,2,2,small,low,unacc +vhigh,low,3,2,med,low,unacc +high,low,5more,more,med,low,unacc +med,high,5more,4,big,high,acc +low,low,5more,more,small,high,good +low,low,3,4,med,low,unacc +low,med,2,4,big,low,unacc +high,high,4,2,small,low,unacc +high,low,5more,more,big,high,acc +low,med,2,more,big,med,good +med,med,2,2,small,high,unacc +high,low,2,4,med,low,unacc +high,med,2,2,med,high,unacc +high,vhigh,5more,2,big,med,unacc +low,high,2,2,small,med,unacc +vhigh,low,5more,more,small,high,acc +med,vhigh,3,more,big,high,acc +vhigh,vhigh,4,more,small,low,unacc +low,vhigh,4,more,small,high,acc +high,vhigh,5more,2,big,high,unacc +low,med,5more,2,med,high,unacc +med,high,2,2,small,low,unacc +low,vhigh,5more,4,small,med,unacc +low,vhigh,3,more,small,med,unacc +high,med,2,4,small,low,unacc +high,vhigh,3,4,small,low,unacc +low,med,4,4,small,high,good +high,vhigh,3,more,big,med,unacc +high,vhigh,4,4,small,low,unacc +vhigh,low,5more,more,med,low,unacc +vhigh,med,4,4,small,med,unacc +med,low,2,more,med,low,unacc +high,low,2,2,big,low,unacc +high,med,2,4,small,med,unacc +vhigh,high,3,more,med,high,unacc +low,high,2,2,small,low,unacc +high,vhigh,3,4,med,high,unacc +low,high,5more,2,small,low,unacc +high,med,5more,4,med,high,acc +med,vhigh,3,2,med,high,unacc +vhigh,low,5more,4,med,med,acc +high,low,4,more,med,low,unacc +med,high,2,2,big,low,unacc +high,high,2,more,big,med,acc +low,low,5more,more,big,high,vgood +vhigh,high,4,2,small,med,unacc +high,low,2,4,big,high,acc +high,high,5more,2,med,low,unacc +med,med,4,4,big,high,vgood +low,vhigh,5more,2,big,high,unacc +high,vhigh,4,4,small,high,unacc +med,high,4,2,small,high,unacc +vhigh,med,4,more,big,med,acc +vhigh,high,3,2,small,low,unacc +med,med,3,2,big,med,unacc +med,low,5more,2,big,med,unacc +vhigh,high,5more,more,small,high,unacc +high,low,4,4,small,med,unacc +low,med,3,4,med,low,unacc +high,med,5more,more,med,low,unacc +low,med,3,more,small,med,acc +med,high,3,more,big,med,acc +med,med,4,more,small,med,acc +med,med,3,4,med,med,acc +vhigh,high,5more,2,med,med,unacc +med,low,5more,2,big,high,unacc +med,med,2,4,med,low,unacc +med,low,2,4,big,med,good +high,high,2,4,big,med,acc +low,med,4,more,big,high,vgood +high,vhigh,5more,4,med,high,unacc +vhigh,low,5more,4,small,low,unacc +low,low,5more,4,big,low,unacc +vhigh,low,2,2,big,high,unacc +med,med,4,4,med,low,unacc +low,vhigh,5more,2,small,low,unacc +med,low,2,more,small,high,unacc +high,vhigh,3,2,big,med,unacc +vhigh,vhigh,3,4,small,high,unacc +med,vhigh,2,4,big,med,acc +high,low,4,2,med,high,unacc +high,med,5more,2,med,low,unacc +low,high,4,more,big,med,acc +vhigh,low,5more,4,big,high,acc +low,med,5more,more,big,low,unacc +low,vhigh,4,more,big,low,unacc +vhigh,high,2,2,small,low,unacc +vhigh,low,2,2,med,high,unacc +vhigh,low,2,more,small,low,unacc +high,low,2,4,small,high,acc +med,med,5more,more,med,high,vgood +high,med,3,more,big,med,acc +high,med,4,4,small,low,unacc +high,low,4,2,med,med,unacc +med,med,3,4,big,low,unacc +med,vhigh,5more,4,small,low,unacc +high,high,4,2,big,low,unacc +vhigh,high,4,more,big,low,unacc +vhigh,med,4,4,big,low,unacc +high,vhigh,2,more,med,low,unacc +high,med,2,more,small,high,unacc +high,vhigh,5more,more,small,med,unacc +high,low,2,2,big,med,unacc +vhigh,high,4,more,small,low,unacc +low,vhigh,3,4,small,med,unacc +low,low,4,more,big,med,good +low,vhigh,2,more,small,med,unacc +med,high,5more,more,small,high,acc +vhigh,vhigh,2,more,med,med,unacc +low,med,3,4,small,med,acc +med,high,3,more,small,med,unacc +high,med,3,4,big,med,acc +low,med,3,2,small,high,unacc +low,low,3,2,big,med,unacc +med,high,3,more,med,med,acc +vhigh,med,3,4,med,high,acc +high,high,4,more,big,med,acc +med,vhigh,5more,2,med,med,unacc +high,vhigh,2,4,small,high,unacc +med,med,2,4,small,low,unacc +high,high,4,more,small,med,unacc +low,vhigh,4,more,big,med,acc +med,med,4,2,big,low,unacc +low,med,5more,2,small,low,unacc +low,low,2,2,small,high,unacc +high,vhigh,5more,2,small,low,unacc +vhigh,med,4,4,small,low,unacc +vhigh,low,5more,2,big,high,unacc +med,low,3,4,big,low,unacc +high,low,3,more,med,med,acc +low,high,5more,2,med,low,unacc +high,vhigh,3,more,med,low,unacc +med,med,2,4,med,med,acc +med,high,5more,more,big,high,acc +low,low,2,more,small,high,unacc +high,low,3,2,med,low,unacc +high,high,4,4,big,med,acc +vhigh,med,5more,more,small,low,unacc +vhigh,high,4,2,big,high,unacc +low,med,2,more,med,low,unacc +med,low,5more,4,small,med,acc +low,high,4,2,big,low,unacc +vhigh,med,4,2,med,low,unacc +med,high,5more,4,med,high,acc +med,high,2,4,small,high,acc +vhigh,med,2,4,big,low,unacc +low,med,2,more,med,high,good +low,vhigh,5more,2,big,low,unacc +med,vhigh,2,more,small,low,unacc +vhigh,high,5more,4,med,high,unacc +med,high,2,4,big,low,unacc +high,low,5more,more,small,low,unacc +high,low,5more,4,big,high,acc +med,med,5more,4,small,med,acc +vhigh,med,2,more,big,low,unacc +high,med,4,2,small,high,unacc +vhigh,vhigh,4,more,small,med,unacc +low,med,4,2,big,med,unacc +med,vhigh,2,4,med,med,unacc +med,high,5more,4,small,low,unacc +high,med,4,more,med,med,acc +vhigh,med,4,more,big,high,acc +vhigh,med,2,more,med,med,unacc +vhigh,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,small,high,unacc +med,med,5more,2,small,low,unacc +high,high,4,4,big,low,unacc +high,med,4,2,med,med,unacc +low,vhigh,2,2,med,med,unacc +low,high,5more,more,med,low,unacc +vhigh,vhigh,2,2,med,low,unacc +high,low,2,more,small,low,unacc +vhigh,vhigh,4,more,med,high,unacc +high,high,2,more,big,high,acc +vhigh,high,4,4,big,med,unacc +low,vhigh,4,4,big,high,acc +vhigh,high,3,more,big,high,unacc +vhigh,vhigh,5more,2,med,low,unacc +med,low,2,4,small,high,good +low,high,3,more,big,med,acc +vhigh,med,2,2,small,med,unacc +high,high,5more,more,small,high,acc +low,vhigh,2,more,small,high,unacc +vhigh,vhigh,5more,more,med,low,unacc +high,low,2,2,small,high,unacc +low,vhigh,3,more,med,low,unacc +low,low,5more,4,small,low,unacc +med,med,4,more,big,high,vgood +high,high,3,4,big,med,acc +low,low,2,4,small,med,acc +high,vhigh,2,2,big,high,unacc +high,high,4,4,small,low,unacc +vhigh,med,5more,2,big,high,unacc +high,vhigh,2,more,med,med,unacc +low,low,4,2,big,med,unacc +low,low,5more,4,med,low,unacc +high,vhigh,5more,more,med,high,unacc +vhigh,med,2,4,big,med,acc +med,low,2,2,big,low,unacc +low,low,4,more,med,low,unacc +high,high,5more,2,small,low,unacc +vhigh,low,5more,more,med,med,acc +high,low,3,2,small,low,unacc +med,low,3,4,big,high,vgood +vhigh,high,2,4,med,high,unacc +vhigh,med,3,4,med,low,unacc +med,vhigh,3,more,med,low,unacc +vhigh,med,5more,4,big,low,unacc +high,high,3,4,small,med,unacc +vhigh,high,3,more,small,low,unacc +vhigh,high,3,more,med,low,unacc +low,low,5more,2,med,low,unacc +low,vhigh,2,4,small,low,unacc +low,med,5more,4,small,med,acc +high,high,3,more,big,low,unacc +vhigh,vhigh,4,more,med,med,unacc +high,vhigh,4,more,small,low,unacc +vhigh,low,5more,2,big,low,unacc +vhigh,vhigh,4,4,med,med,unacc +low,high,5more,2,med,high,unacc +med,med,3,2,big,high,unacc +med,med,3,more,small,high,acc +vhigh,vhigh,3,more,big,high,unacc +vhigh,high,5more,2,small,low,unacc +med,vhigh,4,2,med,high,unacc +low,high,5more,4,big,med,acc +low,med,2,2,big,low,unacc +med,med,3,2,med,low,unacc +vhigh,med,4,more,med,med,acc +med,med,5more,4,big,med,acc +med,high,2,4,small,low,unacc +vhigh,vhigh,5more,more,big,med,unacc +med,vhigh,3,4,small,low,unacc +high,low,2,4,big,low,unacc +high,med,2,2,big,low,unacc +high,low,5more,2,med,low,unacc +low,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,med,low,unacc +med,vhigh,2,more,med,low,unacc +med,high,5more,4,med,med,acc +vhigh,vhigh,3,more,small,high,unacc +vhigh,med,4,4,small,high,acc +vhigh,high,2,more,med,med,unacc +med,low,4,4,small,low,unacc +low,high,3,4,med,med,acc +low,high,4,4,big,low,unacc +vhigh,med,5more,4,med,med,acc +vhigh,high,4,more,med,med,unacc +vhigh,low,3,more,small,med,unacc +vhigh,med,2,4,big,high,acc +med,low,5more,2,big,low,unacc +low,high,3,4,big,med,acc +low,high,5more,2,small,med,unacc +vhigh,med,4,more,small,high,acc +low,vhigh,2,more,big,low,unacc +high,vhigh,5more,more,big,med,unacc +low,low,2,more,big,high,vgood +high,high,4,4,small,med,unacc +low,med,4,4,big,high,vgood +low,high,3,more,big,high,vgood +med,vhigh,5more,4,small,high,acc +med,low,5more,4,small,low,unacc +med,low,4,2,big,med,unacc +vhigh,high,5more,2,big,high,unacc +low,vhigh,2,2,small,med,unacc +high,med,4,2,med,high,unacc +high,low,2,more,big,med,acc +low,med,5more,4,big,low,unacc +high,low,2,2,med,high,unacc +vhigh,high,2,4,big,low,unacc +low,vhigh,3,2,small,high,unacc +vhigh,high,5more,4,small,low,unacc +high,med,5more,4,small,med,unacc +med,high,5more,more,med,high,acc +med,low,2,more,big,med,good +low,high,5more,more,med,high,vgood +low,vhigh,4,4,med,med,acc +med,high,5more,4,small,med,unacc +high,vhigh,3,2,big,low,unacc +med,low,3,4,big,med,good +low,vhigh,5more,more,small,low,unacc +low,low,3,more,big,low,unacc +low,low,5more,more,med,med,good +high,low,2,2,big,high,unacc +low,med,5more,4,small,low,unacc +vhigh,low,3,2,small,high,unacc +low,med,3,more,big,high,vgood +med,low,5more,more,big,high,vgood +med,low,4,more,small,low,unacc +vhigh,low,4,2,small,low,unacc +high,high,4,2,small,high,unacc +high,med,3,2,med,high,unacc +low,med,2,more,small,med,unacc +low,low,3,more,med,low,unacc +high,med,4,2,big,med,unacc +vhigh,low,5more,4,small,med,unacc +vhigh,med,2,4,small,high,acc +med,med,4,more,med,high,vgood +vhigh,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,small,low,unacc +high,low,4,2,small,high,unacc +high,vhigh,3,2,small,low,unacc +high,vhigh,4,4,big,high,unacc +high,med,5more,2,small,low,unacc +high,med,2,4,med,high,acc +low,high,4,2,med,med,unacc +med,high,3,2,big,high,unacc +vhigh,med,3,2,med,med,unacc +med,high,4,more,big,high,acc +high,high,3,2,small,high,unacc +low,low,2,4,med,med,acc +low,vhigh,2,2,big,high,unacc +high,med,5more,4,small,low,unacc +low,high,4,more,big,high,vgood +vhigh,vhigh,5more,2,big,med,unacc +vhigh,high,5more,2,big,med,unacc +high,vhigh,5more,4,big,high,unacc +vhigh,vhigh,2,4,small,high,unacc +med,high,4,more,big,med,acc +vhigh,med,4,4,med,med,acc +med,vhigh,4,2,med,low,unacc +high,med,4,4,big,high,acc +high,high,4,4,big,high,acc +med,vhigh,3,4,small,high,acc +vhigh,med,4,4,big,high,acc +vhigh,low,2,more,big,med,acc +vhigh,med,3,more,med,med,acc +med,low,3,more,med,low,unacc +vhigh,low,3,4,med,med,unacc +low,med,3,4,big,low,unacc +med,med,4,4,small,high,acc +low,med,4,4,med,low,unacc +med,low,4,4,big,high,vgood +med,vhigh,2,2,big,high,unacc +med,low,2,2,big,med,unacc +vhigh,vhigh,3,2,med,low,unacc +vhigh,low,2,more,med,low,unacc +low,vhigh,5more,4,med,high,acc +high,med,3,4,small,med,unacc +high,high,5more,2,med,med,unacc +low,vhigh,3,2,med,low,unacc +high,vhigh,3,4,big,high,unacc +high,low,2,4,med,med,unacc +vhigh,med,3,2,big,med,unacc +high,vhigh,3,2,med,low,unacc +med,vhigh,3,4,med,low,unacc +low,med,5more,2,small,med,unacc +low,low,3,more,med,high,vgood +med,high,3,2,big,med,unacc +vhigh,med,3,4,small,low,unacc +med,vhigh,2,4,small,low,unacc +med,low,5more,more,small,high,good +vhigh,med,4,2,med,high,unacc +med,high,3,4,small,low,unacc +high,med,5more,more,small,high,acc +high,low,5more,4,small,low,unacc +med,high,4,2,med,high,unacc +low,low,3,2,small,med,unacc +high,vhigh,4,4,small,med,unacc +high,low,3,4,small,high,acc +high,high,2,4,med,low,unacc +med,vhigh,4,more,big,low,unacc +high,low,4,more,small,low,unacc +high,high,5more,4,small,med,unacc +vhigh,med,4,2,big,med,unacc +high,med,2,more,small,med,unacc +med,low,3,4,small,low,unacc +high,med,5more,more,med,high,acc +vhigh,high,4,more,small,med,unacc +low,vhigh,5more,4,med,low,unacc +vhigh,high,3,more,med,med,unacc +med,low,4,more,med,med,good +high,vhigh,3,4,med,low,unacc +low,med,4,more,big,med,good +med,vhigh,3,more,med,med,acc +high,med,2,2,med,low,unacc +vhigh,low,3,more,small,high,acc +high,vhigh,2,4,med,low,unacc +vhigh,high,2,2,small,med,unacc +low,vhigh,3,4,big,low,unacc +high,low,5more,2,big,low,unacc +med,med,5more,4,big,low,unacc +med,vhigh,2,2,big,low,unacc +med,med,2,2,big,low,unacc +vhigh,low,2,more,big,high,acc +low,med,2,4,med,low,unacc +high,vhigh,5more,2,big,low,unacc +vhigh,vhigh,4,4,big,high,unacc +vhigh,low,4,2,small,high,unacc +med,med,2,4,big,med,acc +low,low,4,4,big,med,good +high,high,2,2,big,low,unacc +vhigh,low,3,2,med,high,unacc +vhigh,vhigh,3,4,big,med,unacc +high,low,3,more,small,med,unacc +high,high,3,4,med,med,unacc +high,low,4,2,big,low,unacc +vhigh,high,2,4,big,med,unacc +med,low,2,2,med,low,unacc +low,vhigh,3,more,med,med,acc +high,med,3,more,big,high,acc +low,med,5more,more,big,high,vgood +low,med,5more,more,med,low,unacc +high,low,3,4,small,low,unacc +high,med,4,4,med,low,unacc +low,vhigh,2,2,small,high,unacc +low,low,2,2,small,med,unacc +low,med,4,more,med,low,unacc +high,low,5more,4,med,high,acc +med,low,3,2,small,high,unacc +high,high,4,4,med,med,acc +vhigh,vhigh,4,more,big,low,unacc +vhigh,high,5more,4,big,low,unacc +med,low,4,more,big,high,vgood +med,vhigh,5more,more,small,high,acc +vhigh,low,5more,2,small,high,unacc +vhigh,low,4,2,big,med,unacc +med,high,2,4,small,med,unacc +low,med,3,2,big,med,unacc +high,med,3,more,small,med,unacc +high,high,3,more,med,high,acc +vhigh,med,5more,more,med,high,acc +low,low,3,4,big,med,good +vhigh,vhigh,3,2,small,low,unacc +low,low,3,2,med,low,unacc +low,high,3,4,small,low,unacc +high,high,5more,4,big,high,acc +vhigh,low,2,4,med,low,unacc +med,high,4,2,big,low,unacc +vhigh,low,2,more,small,high,unacc +high,low,2,2,small,low,unacc +high,vhigh,5more,4,med,low,unacc +med,med,5more,4,med,low,unacc +high,vhigh,2,4,big,low,unacc +low,med,3,more,small,low,unacc +med,med,5more,2,big,med,unacc +vhigh,med,3,4,big,med,acc +low,high,3,4,big,low,unacc +med,med,2,more,med,low,unacc +vhigh,vhigh,3,4,big,low,unacc +med,low,4,2,small,high,unacc +med,med,3,4,med,low,unacc +vhigh,vhigh,4,4,small,med,unacc +vhigh,vhigh,5more,2,small,high,unacc +low,vhigh,3,2,big,low,unacc +high,vhigh,3,2,small,med,unacc +med,low,4,2,small,low,unacc +vhigh,vhigh,5more,more,big,high,unacc +low,med,2,4,small,med,acc +med,low,4,2,med,med,unacc +low,vhigh,4,4,small,med,unacc +high,vhigh,5more,2,med,med,unacc +med,vhigh,2,2,small,low,unacc +low,low,2,more,big,med,good +med,high,5more,2,med,high,unacc +high,med,3,4,big,high,acc +high,med,2,more,med,med,unacc +low,vhigh,5more,more,med,low,unacc +low,high,5more,4,med,med,acc +high,med,2,more,med,high,acc +med,med,5more,more,big,low,unacc +high,vhigh,5more,more,small,high,unacc +med,low,2,2,small,med,unacc +vhigh,low,3,more,med,med,acc +med,vhigh,5more,2,small,med,unacc +vhigh,med,4,2,big,high,unacc +low,med,4,more,small,high,good +vhigh,high,4,4,small,med,unacc +low,low,4,more,big,low,unacc +high,low,3,more,big,low,unacc +vhigh,vhigh,4,2,small,high,unacc +low,low,2,4,big,low,unacc +med,vhigh,5more,4,med,med,acc +low,high,5more,more,small,low,unacc +high,low,4,more,small,med,unacc +high,med,3,4,med,high,acc +high,low,3,4,med,high,acc +vhigh,vhigh,4,2,big,low,unacc +low,high,2,2,med,med,unacc +med,vhigh,3,2,small,high,unacc +high,high,2,more,small,med,unacc +low,med,4,4,big,med,good +med,high,3,2,small,med,unacc +low,med,3,2,med,med,unacc +low,vhigh,4,4,small,low,unacc +high,low,3,4,big,med,acc +low,med,2,more,big,low,unacc +high,med,4,more,small,med,unacc +vhigh,vhigh,2,4,med,med,unacc +low,high,3,2,big,high,unacc +high,low,2,more,big,low,unacc +vhigh,vhigh,3,4,med,high,unacc +high,low,3,4,big,low,unacc +high,low,5more,more,big,low,unacc +vhigh,low,5more,more,small,med,unacc +vhigh,high,2,more,small,high,unacc +high,low,5more,4,big,low,unacc +med,vhigh,5more,4,small,med,unacc +high,med,3,2,med,low,unacc +high,low,4,more,big,med,acc +high,low,5more,4,med,med,acc +low,high,4,more,med,high,vgood +low,high,4,2,small,low,unacc +vhigh,med,5more,4,big,med,acc +high,low,3,2,small,high,unacc +high,vhigh,3,4,big,low,unacc +vhigh,med,5more,4,med,low,unacc +low,med,4,4,big,low,unacc +vhigh,high,4,2,med,med,unacc +high,med,2,2,big,med,unacc +high,med,3,4,med,med,unacc +high,high,2,4,big,high,acc +high,vhigh,3,more,med,med,unacc +high,high,3,more,small,med,unacc +vhigh,high,3,more,big,low,unacc +med,vhigh,3,4,small,med,unacc +high,high,2,more,med,high,acc +high,vhigh,4,2,med,med,unacc +med,high,2,more,med,low,unacc +med,high,5more,4,big,low,unacc +high,high,3,2,small,med,unacc +high,vhigh,4,more,med,low,unacc +high,vhigh,5more,more,small,low,unacc +med,vhigh,4,2,med,med,unacc +med,high,2,2,small,med,unacc +vhigh,low,2,2,small,high,unacc +med,vhigh,3,more,med,high,acc +med,med,5more,more,small,med,acc +med,vhigh,2,4,small,med,unacc +med,high,4,2,big,high,unacc +med,vhigh,3,4,big,med,acc +high,med,2,2,small,high,unacc +low,vhigh,5more,2,small,med,unacc +med,med,4,2,med,low,unacc +vhigh,med,4,2,med,med,unacc +med,vhigh,4,4,big,high,acc +vhigh,med,3,2,big,low,unacc +high,vhigh,4,more,big,med,unacc +low,vhigh,5more,2,med,high,unacc +med,vhigh,5more,2,big,med,unacc +med,high,5more,2,big,high,unacc +vhigh,low,3,4,small,med,unacc +high,vhigh,2,4,big,high,unacc +med,vhigh,2,2,big,med,unacc +vhigh,med,2,2,med,low,unacc +vhigh,vhigh,2,4,med,low,unacc +vhigh,med,5more,2,big,low,unacc +high,vhigh,4,4,med,high,unacc +med,low,3,4,med,high,good +med,high,3,4,med,high,acc +high,low,3,2,med,med,unacc +vhigh,low,4,more,med,low,unacc +high,low,5more,4,med,low,unacc +med,vhigh,4,4,big,low,unacc +vhigh,high,3,4,big,low,unacc +low,high,5more,more,small,high,acc +low,low,2,2,big,low,unacc +vhigh,vhigh,5more,4,med,high,unacc +med,low,4,4,med,high,vgood +vhigh,med,5more,2,med,high,unacc +low,med,2,more,small,high,unacc +low,high,4,more,big,low,unacc +high,high,5more,4,big,low,unacc +low,vhigh,4,more,small,med,unacc +low,high,2,2,big,high,unacc +high,med,3,4,med,low,unacc +med,high,5more,2,med,low,unacc +high,high,3,4,big,low,unacc +vhigh,high,4,4,med,low,unacc +vhigh,low,2,more,big,low,unacc +med,vhigh,5more,more,big,med,acc +med,high,4,more,med,low,unacc +low,high,2,2,small,high,unacc +med,vhigh,3,4,big,low,unacc +low,low,3,4,med,high,good +med,vhigh,5more,2,big,high,unacc +high,med,2,4,med,low,unacc +med,low,5more,2,med,high,unacc +low,low,3,4,med,med,acc +high,high,3,more,med,low,unacc +high,high,5more,2,small,high,unacc +vhigh,vhigh,2,2,small,med,unacc +med,med,3,4,big,med,acc +high,low,4,more,med,med,acc +high,high,4,more,med,high,acc +med,med,5more,2,med,high,unacc +vhigh,low,3,2,big,low,unacc +low,vhigh,5more,more,big,med,acc +high,low,5more,more,big,med,acc +low,low,4,4,med,med,good +vhigh,med,3,more,small,low,unacc +low,vhigh,2,more,med,med,unacc +high,high,4,4,med,low,unacc +low,high,3,2,med,low,unacc +high,med,2,more,med,low,unacc +high,low,5more,2,small,low,unacc +high,high,5more,4,med,med,acc +med,high,4,4,med,med,acc +high,high,4,more,med,med,acc +low,low,3,more,small,med,acc +med,low,3,2,small,med,unacc +low,high,4,2,big,med,unacc +vhigh,high,3,4,small,low,unacc +med,vhigh,2,more,small,high,unacc +high,med,5more,4,big,high,acc +vhigh,low,4,more,big,high,acc +med,med,2,more,med,high,acc +med,high,5more,4,med,low,unacc +vhigh,vhigh,2,2,med,med,unacc +med,low,3,2,small,low,unacc +med,low,5more,more,big,med,good +high,vhigh,5more,4,small,low,unacc +low,high,2,more,big,med,acc +low,high,3,more,med,high,vgood +low,med,4,2,small,med,unacc +med,low,3,4,small,med,acc +med,high,4,more,med,med,acc +med,vhigh,3,2,med,low,unacc +low,vhigh,5more,2,big,med,unacc +high,med,4,2,big,low,unacc +med,vhigh,2,more,big,high,acc +vhigh,med,2,2,big,med,unacc +vhigh,vhigh,4,more,big,med,unacc +low,vhigh,3,4,small,low,unacc +med,low,2,2,small,high,unacc +low,med,3,2,small,med,unacc +low,vhigh,4,2,med,low,unacc +low,med,3,4,med,med,acc +vhigh,vhigh,4,2,med,low,unacc +high,med,3,2,med,med,unacc +low,high,2,more,big,low,unacc +high,low,4,4,small,low,unacc +low,med,4,4,med,high,vgood +high,med,4,more,small,low,unacc +high,high,3,2,med,high,unacc +low,low,3,2,big,high,unacc +low,high,2,more,small,med,unacc +high,med,2,more,big,med,acc +high,low,4,2,big,med,unacc +vhigh,low,4,more,small,low,unacc +vhigh,vhigh,3,more,med,med,unacc +high,vhigh,2,more,big,med,unacc +low,low,3,2,med,high,unacc +high,high,5more,2,med,high,unacc +high,med,4,4,big,low,unacc +med,vhigh,4,more,big,med,acc +vhigh,low,5more,2,med,med,unacc +high,vhigh,2,more,big,low,unacc +med,vhigh,5more,more,small,med,unacc +vhigh,vhigh,4,more,big,high,unacc +high,low,3,2,small,med,unacc +vhigh,med,2,2,big,low,unacc +low,low,4,4,med,high,vgood +low,med,3,4,med,high,good +high,vhigh,4,more,med,high,unacc +high,low,5more,2,big,med,unacc +high,med,3,2,big,low,unacc +vhigh,low,3,4,big,high,acc +vhigh,vhigh,3,more,big,low,unacc +high,low,5more,2,big,high,unacc +vhigh,low,3,4,med,low,unacc +vhigh,low,2,4,small,low,unacc +low,high,2,2,big,med,unacc +vhigh,med,5more,more,small,high,acc +low,high,2,2,med,high,unacc +med,med,4,4,med,med,acc +high,med,4,more,med,high,acc +vhigh,high,5more,more,med,med,unacc +low,high,2,4,big,high,vgood +vhigh,low,5more,more,big,high,acc +high,med,5more,2,med,med,unacc +low,vhigh,4,4,med,low,unacc +high,med,5more,more,small,low,unacc +high,high,5more,4,small,high,acc +vhigh,vhigh,5more,2,med,high,unacc +vhigh,med,3,more,small,med,unacc +med,vhigh,2,4,big,high,acc +vhigh,med,5more,2,big,med,unacc +med,med,3,more,big,med,acc +med,low,2,2,med,high,unacc +low,vhigh,3,2,med,med,unacc +vhigh,vhigh,4,more,small,high,unacc +med,med,3,4,small,high,acc +vhigh,med,5more,4,small,low,unacc +low,high,2,4,big,med,acc +low,med,2,4,small,low,unacc +low,vhigh,3,more,small,low,unacc +med,med,4,4,big,low,unacc +med,vhigh,2,4,med,low,unacc +med,med,3,more,med,high,vgood +med,vhigh,3,4,med,high,acc +low,med,2,4,big,high,vgood +high,vhigh,5more,more,big,low,unacc +vhigh,med,3,more,big,med,acc +high,med,3,4,small,low,unacc +vhigh,vhigh,2,2,big,high,unacc +vhigh,vhigh,5more,4,small,med,unacc +high,high,3,2,small,low,unacc +low,low,3,4,small,low,unacc +low,low,4,2,med,med,unacc +vhigh,vhigh,5more,more,big,low,unacc +low,med,3,more,med,high,vgood +low,med,2,4,small,high,good +med,high,4,4,small,med,unacc +high,high,2,2,small,med,unacc +low,vhigh,2,2,med,low,unacc +vhigh,low,5more,4,med,low,unacc +high,med,4,2,small,med,unacc +high,vhigh,2,2,small,low,unacc +med,low,3,more,big,low,unacc +high,high,3,4,small,high,acc +high,high,2,more,small,low,unacc +low,low,4,4,small,low,unacc +low,med,3,more,med,med,good +vhigh,med,2,2,med,med,unacc +vhigh,med,2,more,med,low,unacc +low,low,3,more,big,med,good +vhigh,med,4,2,big,low,unacc +vhigh,high,5more,more,big,low,unacc +high,high,4,more,small,high,acc +med,med,4,2,small,high,unacc +vhigh,vhigh,2,4,big,high,unacc +low,med,3,more,big,low,unacc +med,low,4,4,small,high,good +high,high,4,more,big,high,acc +med,med,3,2,big,low,unacc +low,high,5more,2,small,high,unacc +low,med,3,2,big,high,unacc +high,high,3,4,big,high,acc +high,low,2,2,small,med,unacc +high,vhigh,4,4,big,low,unacc +low,vhigh,4,more,med,med,acc +high,med,4,4,med,med,acc +vhigh,med,4,2,small,high,unacc +low,vhigh,3,more,big,high,acc +med,high,4,4,small,high,acc +high,vhigh,2,2,med,high,unacc +med,med,2,more,med,med,acc +vhigh,high,3,4,big,med,unacc +vhigh,high,5more,4,big,med,unacc +med,med,4,more,small,high,acc +med,low,5more,2,med,med,unacc +med,vhigh,4,more,med,low,unacc +vhigh,vhigh,2,more,small,high,unacc +vhigh,high,3,4,med,high,unacc +low,vhigh,4,2,med,med,unacc +med,vhigh,4,more,small,med,unacc +high,high,4,more,med,low,unacc +low,vhigh,2,more,big,high,acc +vhigh,med,3,more,big,high,acc +low,med,5more,2,big,low,unacc +low,vhigh,5more,more,med,med,acc +high,vhigh,4,2,med,low,unacc +high,high,5more,more,med,high,acc +vhigh,low,5more,4,med,high,acc +high,vhigh,5more,more,med,med,unacc +high,med,2,2,small,low,unacc +med,high,5more,more,small,low,unacc +med,med,4,more,big,low,unacc +low,med,4,more,small,med,acc +low,vhigh,3,more,big,low,unacc +high,low,5more,more,med,med,acc +vhigh,high,4,2,big,low,unacc +med,low,5more,2,small,low,unacc +vhigh,vhigh,5more,2,small,med,unacc +med,low,3,2,med,low,unacc +med,med,5more,more,big,med,acc +high,vhigh,4,more,small,med,unacc +med,med,5more,2,big,low,unacc +vhigh,med,3,2,med,low,unacc +high,low,4,4,big,high,acc +high,vhigh,3,more,med,high,unacc +vhigh,high,3,2,med,high,unacc +med,low,3,2,med,med,unacc +vhigh,high,3,2,big,low,unacc +vhigh,low,4,2,med,low,unacc +vhigh,high,4,2,med,low,unacc +med,high,4,4,big,low,unacc +vhigh,high,2,4,small,low,unacc +vhigh,med,5more,more,big,high,acc +med,med,2,2,big,high,unacc +med,high,4,2,med,med,unacc +med,high,2,2,med,high,unacc +med,low,2,4,small,low,unacc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..403e4648dc3b3c177525a76273864fc4069db6b4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/staged/public/val.csv @@ -0,0 +1,173 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,5more,more,med,med,unacc +vhigh,high,2,4,small,med,unacc +high,high,5more,more,med,med,acc +low,high,3,2,med,med,unacc +med,med,3,2,med,med,unacc +med,med,5more,more,big,high,vgood +vhigh,high,2,4,med,low,unacc +high,vhigh,2,4,med,high,unacc +high,high,4,4,med,high,acc +vhigh,low,4,4,small,high,acc +vhigh,med,5more,more,med,low,unacc +med,high,2,more,big,med,acc +low,vhigh,4,2,big,low,unacc +med,med,4,2,med,high,unacc +low,med,2,2,small,low,unacc +high,high,3,more,small,low,unacc +med,vhigh,4,4,med,high,acc +high,high,2,2,med,med,unacc +high,low,3,4,big,high,acc +vhigh,vhigh,2,2,med,high,unacc +high,low,2,more,med,low,unacc +vhigh,low,2,4,med,high,acc +low,high,4,4,small,high,acc +low,med,5more,4,big,med,good +high,vhigh,2,2,big,low,unacc +med,high,2,4,med,high,acc +low,high,4,2,small,med,unacc +high,low,4,more,med,high,acc +vhigh,low,2,4,big,high,acc +high,vhigh,3,more,big,high,unacc +low,low,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,med,unacc +med,med,3,2,small,med,unacc +low,vhigh,3,4,med,med,unacc +vhigh,vhigh,5more,more,med,high,unacc +vhigh,high,5more,4,med,low,unacc +med,med,3,more,med,low,unacc +med,vhigh,3,4,big,high,acc +vhigh,high,3,more,small,high,unacc +high,vhigh,4,more,big,high,unacc +med,vhigh,5more,2,med,low,unacc +low,high,5more,2,big,high,unacc +vhigh,low,3,more,big,med,acc +low,med,4,2,med,med,unacc +vhigh,med,4,more,small,low,unacc +med,vhigh,4,2,small,med,unacc +low,low,3,more,small,high,good +low,high,3,more,small,low,unacc +vhigh,low,4,4,big,low,unacc +high,vhigh,4,more,big,low,unacc +vhigh,med,2,2,big,high,unacc +high,med,3,more,small,high,acc +high,low,4,4,big,low,unacc +vhigh,high,2,4,big,high,unacc +vhigh,high,5more,4,med,med,unacc +low,vhigh,3,2,small,med,unacc +low,vhigh,3,4,big,med,acc +low,vhigh,5more,2,med,low,unacc +vhigh,high,2,2,med,low,unacc +med,vhigh,5more,4,med,low,unacc +high,low,5more,2,med,high,unacc +med,vhigh,2,2,med,med,unacc +high,med,4,more,big,low,unacc +med,vhigh,2,more,small,med,unacc +low,vhigh,4,2,small,low,unacc +low,low,4,2,small,high,unacc +vhigh,high,5more,2,med,high,unacc +vhigh,low,4,4,med,low,unacc +high,low,4,more,big,low,unacc +low,high,3,more,med,med,acc +high,vhigh,4,4,med,low,unacc +med,vhigh,5more,more,big,low,unacc +med,med,5more,more,small,high,acc +med,med,5more,4,small,low,unacc +vhigh,med,4,2,small,med,unacc +low,high,5more,4,med,low,unacc +high,vhigh,2,2,big,med,unacc +med,high,2,more,med,high,acc +low,vhigh,4,more,med,low,unacc +high,high,3,2,med,med,unacc +high,vhigh,4,2,small,high,unacc +med,high,5more,2,small,low,unacc +low,high,4,4,med,high,vgood +high,med,3,2,small,high,unacc +vhigh,vhigh,4,4,small,high,unacc +vhigh,high,3,2,med,med,unacc +high,vhigh,3,4,small,med,unacc +vhigh,high,2,4,med,med,unacc +med,low,5more,more,big,low,unacc +low,high,3,more,small,med,acc +vhigh,high,3,4,small,high,unacc +vhigh,vhigh,2,4,big,low,unacc +low,low,4,more,med,med,good +med,low,2,more,small,low,unacc +high,vhigh,3,4,med,med,unacc +med,med,4,2,small,med,unacc +med,low,2,4,big,high,vgood +vhigh,vhigh,3,4,big,high,unacc +high,med,3,more,small,low,unacc +vhigh,high,2,more,big,low,unacc +high,vhigh,3,2,small,high,unacc +high,vhigh,4,more,med,med,unacc +vhigh,med,3,2,med,high,unacc +med,vhigh,4,2,big,med,unacc +med,high,5more,2,big,med,unacc +med,vhigh,3,2,big,med,unacc +high,low,2,4,small,low,unacc +low,low,4,more,big,high,vgood +low,vhigh,4,more,big,high,acc +low,low,4,4,big,low,unacc +high,high,5more,more,small,low,unacc +low,high,4,2,med,low,unacc +vhigh,low,5more,2,big,med,unacc +low,high,2,4,small,low,unacc +low,low,3,more,med,med,good +low,med,2,4,big,med,good +high,vhigh,2,2,small,high,unacc +med,vhigh,2,2,med,low,unacc +med,low,4,2,small,med,unacc +med,med,2,2,small,med,unacc +low,med,5more,2,small,high,unacc +vhigh,low,2,4,big,low,unacc +med,med,3,more,small,med,acc +med,high,2,2,small,high,unacc +low,vhigh,4,2,small,high,unacc +vhigh,med,3,more,small,high,acc +vhigh,med,3,4,big,low,unacc +med,med,2,4,small,high,acc +vhigh,high,3,2,big,med,unacc +med,high,2,more,big,low,unacc +low,high,5more,4,med,high,vgood +vhigh,high,4,4,med,high,unacc +low,low,3,4,big,high,vgood +low,med,5more,4,med,low,unacc +high,vhigh,4,2,big,high,unacc +vhigh,high,2,4,small,high,unacc +high,vhigh,4,2,med,high,unacc +high,high,5more,4,small,low,unacc +high,med,5more,4,big,low,unacc +vhigh,med,2,4,med,high,acc +vhigh,vhigh,3,4,med,med,unacc +med,high,3,2,small,high,unacc +high,med,2,4,big,med,acc +med,low,3,4,med,low,unacc +vhigh,vhigh,2,2,small,high,unacc +med,med,2,2,big,med,unacc +med,med,2,more,big,med,acc +vhigh,low,2,2,big,med,unacc +high,low,2,4,small,med,unacc +low,med,5more,more,med,med,good +low,low,5more,2,small,med,unacc +low,low,2,4,small,high,good +low,med,3,2,small,low,unacc +low,vhigh,2,4,med,med,unacc +high,high,4,more,small,low,unacc +med,low,5more,4,med,low,unacc +vhigh,med,2,2,small,high,unacc +med,high,4,4,med,high,acc +vhigh,low,3,4,big,low,unacc +med,high,4,2,small,low,unacc +high,high,2,2,small,low,unacc +low,high,4,4,big,med,acc +low,high,4,more,med,low,unacc +vhigh,vhigh,2,2,big,med,unacc +med,vhigh,4,4,med,low,unacc +vhigh,low,2,2,small,low,unacc +med,vhigh,3,2,small,low,unacc +high,high,4,2,big,high,unacc +low,low,5more,more,big,med,good +low,low,4,4,small,high,good +low,vhigh,2,4,big,high,acc +low,low,2,4,big,med,good diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/train_20260321_052647.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/train_20260321_052647.log new file mode 100644 index 0000000000000000000000000000000000000000..8dff3a08e3805f2a6bafd9006f1441b8fc53b45c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/train_20260321_052647.log @@ -0,0 +1,4 @@ +[ARF] Training on 1382 rows, 7 cols +Initial accuracy is 0.6175832127351665 +Iteration number 1 reached accuracy of 0.39363241678726485. +[ARF] Model saved -> /work/output-SpecializedModels/c2/arf/arf-c2-20260321_052647/arf_model.pkl diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/_arf_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..a778ee4df819c784ee530bfb2c5f711e75f269e7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/_arf_generate.py @@ -0,0 +1,6 @@ +import pickle +with open("/work/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/arf_model.pkl", "rb") as f: + model = pickle.load(f) +syn = model.forge(n=1382) +syn.to_csv("/work/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/arf-c2-1382-20260330_065244.csv", index=False) +print(f"[ARF] Generated 1382 rows -> /work/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/arf-c2-1382-20260330_065244.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/_arf_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..65a1a46187f17e8d0ba83bf1fb8b8021c0e85e30 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/_arf_train.py @@ -0,0 +1,19 @@ +import pickle +import pandas as pd +from arfpy import arf + +df = pd.read_csv("/work/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/arf_model.pkl") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/gen_20260321_060635.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/gen_20260321_060635.log new file mode 100644 index 0000000000000000000000000000000000000000..6c1fccd1bba61c532f8a8a8b4e72b00a87a62a72 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/gen_20260321_060635.log @@ -0,0 +1,15 @@ +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +[ARF] Generated 1000 rows -> /work/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/arf-c2-1000-20260321_060635.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/gen_20260330_065244.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/gen_20260330_065244.log new file mode 100644 index 0000000000000000000000000000000000000000..6ecd308f0c1aebf5844c13577fa722679fa9e4d7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/gen_20260330_065244.log @@ -0,0 +1,15 @@ +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +[ARF] Generated 1382 rows -> /work/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/arf-c2-1382-20260330_065244.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa654607f22f68d2aaa5e57809017787b5eb02b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ce4bdbcd8014f482b2e8994a2c052ff971f7d7d4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..f10706607ec3d108eac1c0d64d9f53dc542198ef --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "c2", + "model": "arf", + "run_id": "arf-c2-20260321_060616", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/arf-c2-1382-20260330_065244.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/arf/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b1a308d67a15168235e0cae1ea5b37435cceae7f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/arf/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/arf/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d1f298c3616ecee4a8cf8041a3e4235ac130f167 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/arf/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b3cf25081f629b35185af44e432085a72a9bb40b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/test.csv @@ -0,0 +1,175 @@ +buying,maint,doors,persons,lug_boot,safety,class +low,med,2,more,big,high,vgood +med,med,2,more,small,high,unacc +low,vhigh,5more,more,small,high,acc +vhigh,med,2,more,small,med,unacc +low,high,4,more,small,med,acc +low,med,4,2,med,high,unacc +vhigh,vhigh,2,more,big,low,unacc +med,med,4,2,small,low,unacc +high,vhigh,5more,2,small,high,unacc +med,med,2,2,med,med,unacc +med,vhigh,5more,4,med,high,acc +med,low,3,2,big,low,unacc +high,low,2,more,big,high,acc +high,low,3,2,big,low,unacc +vhigh,high,2,more,med,high,unacc +med,low,3,2,big,med,unacc +low,low,5more,4,small,high,good +low,vhigh,5more,4,big,high,acc +vhigh,low,2,2,med,med,unacc +med,low,5more,4,big,high,vgood +vhigh,med,5more,4,big,high,acc +vhigh,med,2,4,small,low,unacc +vhigh,vhigh,5more,4,big,med,unacc +low,med,3,4,small,low,unacc +vhigh,high,4,more,big,med,unacc +med,high,3,4,med,low,unacc +med,high,4,more,small,low,unacc +vhigh,med,4,4,med,high,acc +low,med,5more,more,big,med,good +high,med,5more,4,med,med,acc +high,low,4,2,big,high,unacc +med,low,2,2,big,high,unacc +med,vhigh,2,4,med,high,acc +med,low,2,4,small,med,acc +low,med,2,more,small,low,unacc +high,vhigh,5more,more,big,high,unacc +med,med,2,more,big,low,unacc +low,low,5more,2,small,high,unacc +low,med,2,4,med,high,good +high,vhigh,4,more,small,high,unacc +low,low,5more,more,small,med,acc +high,high,2,2,med,low,unacc +vhigh,med,4,more,med,high,acc +med,vhigh,4,more,med,med,acc +low,vhigh,2,more,med,low,unacc +high,low,4,2,small,med,unacc +med,high,3,more,big,low,unacc +low,vhigh,3,more,small,high,acc +high,vhigh,2,2,med,med,unacc +high,high,5more,more,big,low,unacc +low,high,4,4,med,med,acc +med,med,5more,2,small,med,unacc +high,vhigh,2,2,small,med,unacc +vhigh,high,3,2,small,med,unacc +high,high,2,4,small,low,unacc +high,low,4,4,med,low,unacc +high,high,5more,more,big,high,acc +low,low,5more,4,small,med,acc +high,vhigh,3,4,small,high,unacc +vhigh,high,2,2,big,med,unacc +low,med,4,more,big,low,unacc +low,med,4,2,big,high,unacc +high,med,2,4,big,high,acc +low,vhigh,5more,more,big,high,acc +high,vhigh,2,more,small,low,unacc +med,med,4,2,big,med,unacc +low,high,2,2,big,low,unacc +low,vhigh,2,4,big,low,unacc +high,high,2,4,med,med,unacc +high,low,2,more,med,med,unacc +med,vhigh,5more,2,small,high,unacc +vhigh,low,2,4,small,high,acc +low,low,5more,more,med,low,unacc +low,high,5more,4,small,low,unacc +med,med,2,4,med,high,acc +vhigh,low,3,2,small,low,unacc +low,vhigh,2,2,med,high,unacc +med,low,4,2,big,low,unacc +vhigh,high,3,4,med,low,unacc +low,vhigh,3,2,med,high,unacc +low,vhigh,5more,more,med,high,acc +low,high,3,2,big,med,unacc +high,high,2,2,big,med,unacc +low,vhigh,4,more,med,high,acc +vhigh,low,5more,more,big,med,acc +high,med,4,more,big,high,acc +high,low,2,2,med,low,unacc +vhigh,low,2,4,small,med,unacc +high,med,5more,more,small,med,unacc +low,vhigh,2,2,big,low,unacc +med,vhigh,4,4,small,high,acc +low,low,4,4,small,med,acc +low,low,4,2,med,low,unacc +vhigh,high,5more,more,small,low,unacc +low,low,5more,2,big,low,unacc +vhigh,high,4,2,small,high,unacc +high,high,3,more,big,high,acc +low,med,4,more,small,low,unacc +high,vhigh,3,2,big,high,unacc +low,vhigh,4,2,med,high,unacc +vhigh,vhigh,5more,4,med,med,unacc +vhigh,high,3,2,big,high,unacc +low,high,3,4,med,low,unacc +vhigh,low,4,4,big,med,acc +med,med,5more,more,med,med,acc +high,med,5more,4,med,low,unacc +med,low,4,more,big,med,good +med,low,5more,more,small,med,acc +high,high,4,2,big,med,unacc +med,med,3,more,big,low,unacc +vhigh,high,4,2,small,low,unacc +high,low,2,more,small,high,unacc +vhigh,med,3,4,med,med,unacc +med,med,2,more,small,med,unacc +med,vhigh,4,more,med,high,acc +low,high,5more,4,small,med,acc +vhigh,vhigh,5more,2,big,high,unacc +low,low,3,2,big,low,unacc +high,high,2,2,small,high,unacc +med,low,3,more,med,med,good +high,med,4,2,med,low,unacc +high,med,5more,2,big,med,unacc +vhigh,high,5more,4,small,med,unacc +high,low,2,more,med,high,acc +vhigh,high,5more,2,small,med,unacc +low,low,5more,4,big,high,vgood +high,med,3,4,big,low,unacc +low,med,3,more,big,med,good +high,vhigh,2,4,small,low,unacc +vhigh,med,5more,more,med,med,acc +low,low,4,more,small,med,acc +high,med,3,more,med,med,acc +med,vhigh,2,2,small,high,unacc +low,high,2,more,big,high,vgood +vhigh,low,2,2,med,low,unacc +low,low,3,2,med,med,unacc +low,med,3,4,big,med,good +vhigh,vhigh,2,4,med,high,unacc +low,low,3,4,small,high,good +high,high,3,2,med,low,unacc +med,low,2,more,small,med,unacc +med,vhigh,4,2,small,high,unacc +high,vhigh,2,more,small,high,unacc +high,low,5more,more,med,high,acc +low,low,5more,4,med,high,vgood +low,high,3,2,big,low,unacc +low,vhigh,3,2,big,high,unacc +low,high,4,4,small,low,unacc +vhigh,low,5more,2,med,low,unacc +med,med,4,4,big,med,acc +vhigh,vhigh,4,2,small,med,unacc +med,low,3,more,small,low,unacc +med,high,4,4,small,low,unacc +high,vhigh,3,more,small,low,unacc +high,vhigh,2,4,big,med,unacc +vhigh,high,5more,2,med,low,unacc +vhigh,vhigh,4,2,big,high,unacc +vhigh,vhigh,4,4,med,low,unacc +med,vhigh,2,2,small,med,unacc +med,low,2,more,med,med,acc +vhigh,high,4,4,big,high,unacc +med,med,3,4,small,med,acc +low,med,2,2,med,high,unacc +low,vhigh,5more,4,small,low,unacc +vhigh,high,5more,more,med,low,unacc +low,high,5more,more,big,low,unacc +vhigh,med,4,4,big,med,acc +high,vhigh,2,more,big,high,unacc +high,vhigh,4,4,big,med,unacc +high,high,2,more,big,low,unacc +low,med,2,2,big,med,unacc +vhigh,vhigh,3,more,big,med,unacc +vhigh,med,2,4,med,med,unacc +low,vhigh,2,4,med,high,acc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a7dd506a8ec04e784f7aa4b9fe95bca40b4e9722 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/train.csv @@ -0,0 +1,1383 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,2,2,small,low,unacc +med,low,5more,4,small,high,good +med,med,3,2,small,low,unacc +med,med,4,4,small,med,acc +high,low,2,4,big,med,acc +med,vhigh,5more,2,small,low,unacc +high,med,2,more,small,low,unacc +low,med,5more,more,small,high,good +med,high,5more,4,small,high,acc +med,vhigh,3,2,med,med,unacc +vhigh,low,3,more,big,high,acc +vhigh,high,3,2,small,high,unacc +low,low,4,more,small,high,good +vhigh,low,4,more,small,med,unacc +low,high,2,4,med,med,acc +low,low,2,4,big,high,vgood +low,med,4,more,med,med,good +high,med,5more,2,big,high,unacc +med,vhigh,2,4,big,low,unacc +vhigh,med,4,more,med,low,unacc +low,low,2,4,small,low,unacc +low,high,4,4,big,high,vgood +low,high,3,2,med,high,unacc +vhigh,vhigh,5more,more,small,med,unacc +low,med,4,4,med,med,good +vhigh,low,3,4,small,low,unacc +vhigh,vhigh,4,2,big,med,unacc +high,vhigh,4,2,small,med,unacc +vhigh,low,4,more,med,med,acc +med,med,2,4,small,med,acc +low,high,5more,4,small,high,acc +vhigh,high,2,more,small,low,unacc +med,high,5more,more,big,med,acc +vhigh,med,3,more,med,low,unacc +low,low,4,2,small,low,unacc +med,high,2,2,big,high,unacc +low,med,3,2,med,high,unacc +low,vhigh,2,4,big,med,acc +low,med,4,2,small,high,unacc +med,vhigh,4,2,big,high,unacc +med,high,2,more,small,med,unacc +med,low,3,2,med,high,unacc +med,high,2,more,small,low,unacc +vhigh,med,3,4,big,high,acc +low,high,2,4,med,low,unacc +low,low,2,more,med,high,good +vhigh,med,5more,4,small,high,acc +med,low,4,more,small,med,acc +vhigh,low,4,4,small,med,unacc +high,med,2,2,small,med,unacc +low,vhigh,2,more,big,med,acc +med,vhigh,4,4,med,med,acc +vhigh,high,2,more,big,high,unacc +vhigh,vhigh,5more,more,small,low,unacc +high,high,2,more,med,low,unacc +low,vhigh,5more,more,small,med,unacc +med,high,2,2,med,low,unacc +vhigh,low,3,4,small,high,acc +low,low,3,4,big,low,unacc +low,low,4,2,big,low,unacc +vhigh,vhigh,2,more,small,med,unacc +vhigh,vhigh,5more,4,small,high,unacc +med,low,2,2,med,med,unacc +vhigh,med,4,more,big,low,unacc +low,low,5more,more,big,low,unacc +med,high,5more,2,small,med,unacc +high,med,5more,2,small,med,unacc +high,med,3,2,small,low,unacc +low,low,4,2,big,high,unacc +med,med,5more,4,med,high,vgood +low,vhigh,4,4,small,high,acc +med,high,3,2,med,high,unacc +vhigh,high,5more,4,small,high,unacc +high,vhigh,5more,2,med,high,unacc +vhigh,vhigh,3,more,small,med,unacc +high,med,5more,more,med,med,acc +vhigh,low,5more,more,small,low,unacc +vhigh,med,2,more,small,high,unacc +med,vhigh,5more,more,med,high,acc +med,low,3,more,med,high,vgood +high,high,4,2,med,med,unacc +high,med,5more,2,med,high,unacc +vhigh,high,3,2,med,low,unacc +med,med,5more,2,med,med,unacc +low,high,2,more,med,low,unacc +low,vhigh,2,2,small,low,unacc +med,med,5more,more,med,low,unacc +med,high,2,4,med,low,unacc +high,high,4,more,big,low,unacc +high,low,4,4,big,med,acc +med,med,4,more,big,med,acc +low,high,4,4,small,med,acc +vhigh,med,2,more,med,high,acc +med,med,5more,more,small,low,unacc +high,low,3,more,med,high,acc +high,high,4,2,med,low,unacc +low,low,2,more,med,low,unacc +vhigh,vhigh,3,2,small,high,unacc +vhigh,vhigh,2,2,big,low,unacc +med,med,3,more,big,high,vgood +med,low,5more,2,med,low,unacc +low,med,2,4,med,med,acc +high,med,5more,more,big,high,acc +med,low,5more,more,med,med,good +med,high,3,2,med,med,unacc +med,high,5more,more,big,low,unacc +vhigh,med,3,4,small,high,acc +low,low,3,2,small,high,unacc +high,med,3,more,big,low,unacc +med,vhigh,3,4,med,med,unacc +high,high,5more,more,small,med,unacc +med,low,4,2,med,low,unacc +vhigh,high,2,more,small,med,unacc +low,med,2,2,med,low,unacc +vhigh,low,2,more,small,med,unacc +vhigh,vhigh,4,2,small,low,unacc +med,low,4,more,med,low,unacc +med,high,3,4,small,med,unacc +med,vhigh,2,more,big,low,unacc +vhigh,high,4,4,big,low,unacc +med,vhigh,4,2,small,low,unacc +vhigh,med,5more,2,small,med,unacc +vhigh,vhigh,3,2,big,high,unacc +med,high,3,more,small,high,acc +med,vhigh,3,more,small,low,unacc +low,vhigh,3,2,small,low,unacc +vhigh,high,2,more,big,med,unacc +low,low,5more,2,small,low,unacc +low,med,2,2,big,high,unacc +med,low,5more,more,med,low,unacc +high,high,5more,2,big,med,unacc +high,med,5more,4,small,high,acc +low,vhigh,3,more,big,med,acc +low,med,5more,2,big,high,unacc +med,med,3,4,big,high,vgood +low,high,3,4,small,high,acc +high,low,3,more,med,low,unacc +high,low,5more,2,small,high,unacc +med,low,5more,more,med,high,vgood +low,med,4,4,small,med,acc +low,med,3,4,small,high,good +med,med,5more,2,small,high,unacc +low,vhigh,3,4,med,high,acc +low,med,5more,2,med,med,unacc +low,low,5more,4,med,med,good +vhigh,high,5more,more,small,med,unacc +vhigh,med,2,2,med,high,unacc +vhigh,high,3,4,small,med,unacc +high,high,2,4,med,high,acc +vhigh,med,3,2,small,low,unacc +high,low,3,2,big,med,unacc +vhigh,low,4,more,big,low,unacc +low,high,3,2,small,med,unacc +vhigh,high,4,more,small,high,unacc +low,high,2,4,small,med,acc +med,low,3,more,small,high,good +high,low,4,4,med,high,acc +vhigh,vhigh,4,4,big,low,unacc +med,low,4,4,big,med,good +low,med,3,2,big,low,unacc +low,low,4,2,small,med,unacc +med,low,5more,2,small,high,unacc +low,high,4,more,small,low,unacc +high,high,3,more,big,med,acc +med,high,5more,more,med,low,unacc +vhigh,high,4,4,small,high,unacc +med,low,3,more,small,med,acc +med,low,3,2,big,high,unacc +vhigh,low,3,more,med,low,unacc +med,med,4,more,med,low,unacc +med,vhigh,2,2,med,high,unacc +high,med,5more,2,big,low,unacc +vhigh,vhigh,3,2,small,med,unacc +high,low,3,more,small,low,unacc +med,high,3,2,small,low,unacc +low,high,5more,4,big,high,vgood +med,low,4,more,med,high,vgood +med,high,3,more,small,low,unacc +vhigh,med,4,4,med,low,unacc +low,high,2,4,med,high,acc +vhigh,low,4,2,small,med,unacc +vhigh,low,3,more,small,low,unacc +high,high,3,2,big,med,unacc +med,low,4,4,small,med,acc +med,vhigh,3,more,small,med,unacc +med,high,2,4,big,med,acc +low,vhigh,3,4,med,low,unacc +med,vhigh,5more,more,med,med,acc +vhigh,high,5more,more,big,med,unacc +high,med,2,more,big,high,acc +high,low,4,more,small,high,acc +low,vhigh,4,2,big,high,unacc +low,high,4,more,small,high,acc +high,high,3,more,small,high,acc +vhigh,high,5more,2,big,low,unacc +high,med,3,4,small,high,acc +low,high,2,4,small,high,acc +high,med,3,more,med,low,unacc +low,low,5more,2,med,med,unacc +vhigh,low,3,2,big,med,unacc +low,high,4,2,small,high,unacc +high,high,3,4,small,low,unacc +vhigh,low,4,2,big,high,unacc +med,vhigh,5more,4,big,med,acc +low,high,3,more,med,low,unacc +low,low,3,2,small,low,unacc +low,low,2,more,small,med,unacc +vhigh,low,3,4,med,high,acc +high,low,3,2,med,high,unacc +med,high,5more,2,small,high,unacc +low,med,2,2,small,med,unacc +med,high,4,more,small,high,acc +high,high,5more,4,big,med,acc +low,med,5more,more,small,low,unacc +low,high,2,2,med,low,unacc +low,low,2,2,med,low,unacc +vhigh,high,2,2,small,high,unacc +high,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,big,med,unacc +low,high,3,more,big,low,unacc +high,vhigh,3,2,med,high,unacc +vhigh,low,5more,more,big,low,unacc +high,low,4,2,small,low,unacc +vhigh,high,5more,more,med,high,unacc +vhigh,vhigh,5more,2,big,low,unacc +low,high,5more,more,small,med,acc +high,med,4,more,big,med,acc +high,high,2,more,med,med,unacc +high,high,5more,2,big,high,unacc +med,vhigh,4,2,big,low,unacc +low,low,4,more,med,high,vgood +high,med,2,4,med,med,unacc +high,low,5more,4,small,high,acc +high,vhigh,4,4,med,med,unacc +low,med,4,4,small,low,unacc +vhigh,high,4,2,med,high,unacc +med,vhigh,2,more,med,high,acc +vhigh,med,3,more,med,high,acc +low,vhigh,2,more,small,low,unacc +high,vhigh,5more,4,big,med,unacc +med,med,3,4,small,low,unacc +high,high,5more,more,med,low,unacc +med,med,2,2,small,low,unacc +high,low,5more,more,small,med,unacc +low,vhigh,2,4,med,low,unacc +high,high,5more,4,med,high,acc +high,med,2,more,big,low,unacc +vhigh,med,4,more,small,med,unacc +med,low,2,more,big,low,unacc +med,med,4,2,med,med,unacc +high,low,2,more,small,med,unacc +vhigh,high,4,more,med,low,unacc +low,vhigh,5more,2,med,med,unacc +high,vhigh,5more,more,med,low,unacc +med,high,3,2,big,low,unacc +vhigh,high,3,more,big,med,unacc +high,vhigh,3,more,big,low,unacc +med,med,3,4,med,high,acc +low,low,4,4,med,low,unacc +vhigh,med,5more,more,big,low,unacc +high,med,3,2,big,high,unacc +high,med,4,2,small,low,unacc +high,high,3,4,med,low,unacc +high,high,2,more,small,high,unacc +low,low,2,2,med,med,unacc +med,vhigh,2,4,small,high,acc +med,med,4,2,big,high,unacc +vhigh,high,5more,4,big,high,unacc +low,vhigh,4,2,small,med,unacc +med,vhigh,4,more,small,low,unacc +med,vhigh,3,more,big,med,acc +high,med,4,2,big,high,unacc +high,low,3,2,big,high,unacc +vhigh,med,3,more,big,low,unacc +vhigh,vhigh,2,more,med,high,unacc +low,high,2,more,small,high,unacc +low,high,2,more,small,low,unacc +high,low,3,4,med,low,unacc +med,high,3,4,big,low,unacc +low,high,5more,more,med,med,acc +low,low,2,2,med,high,unacc +med,low,5more,4,med,high,vgood +vhigh,med,3,2,small,med,unacc +vhigh,low,3,more,med,high,acc +high,med,2,4,small,high,acc +vhigh,med,4,2,small,low,unacc +vhigh,med,2,2,small,low,unacc +low,high,3,4,med,high,acc +high,med,4,4,small,med,unacc +high,vhigh,3,4,big,med,unacc +low,low,5more,more,med,high,vgood +vhigh,vhigh,2,4,small,low,unacc +med,med,2,more,big,high,vgood +med,low,3,more,big,high,vgood +med,high,3,more,med,high,acc +high,vhigh,3,more,small,med,unacc +vhigh,low,5more,more,med,high,acc +low,low,4,4,big,high,vgood +med,low,3,4,small,high,good +high,med,5more,2,small,high,unacc +low,vhigh,2,4,small,high,acc +high,vhigh,3,more,small,high,unacc +med,high,2,more,med,med,unacc +vhigh,vhigh,4,more,med,low,unacc +med,high,4,4,med,low,unacc +med,vhigh,5more,more,small,low,unacc +high,vhigh,5more,2,small,med,unacc +vhigh,high,4,2,big,med,unacc +vhigh,low,5more,4,small,high,acc +low,med,5more,2,big,med,unacc +med,high,3,4,big,med,acc +med,high,4,more,small,med,unacc +high,low,5more,more,small,high,acc +vhigh,vhigh,3,4,small,low,unacc +med,high,5more,more,small,med,unacc +high,high,5more,2,small,med,unacc +low,high,4,2,big,high,unacc +low,med,5more,4,big,high,vgood +med,low,2,4,med,med,acc +low,vhigh,3,4,big,high,acc +med,vhigh,3,more,big,low,unacc +med,vhigh,5more,2,big,low,unacc +med,high,2,2,med,med,unacc +vhigh,low,4,more,med,high,acc +vhigh,low,3,2,med,med,unacc +vhigh,vhigh,4,4,small,low,unacc +med,vhigh,3,2,big,high,unacc +low,high,5more,more,big,med,acc +med,med,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,high,unacc +high,vhigh,4,2,big,low,unacc +high,high,2,2,big,high,unacc +low,med,4,2,small,low,unacc +low,low,3,4,small,med,acc +high,med,3,more,med,high,acc +low,high,3,2,small,high,unacc +vhigh,low,5more,2,small,med,unacc +high,low,4,4,med,med,acc +vhigh,med,2,4,med,low,unacc +vhigh,high,2,2,med,med,unacc +low,vhigh,4,4,big,low,unacc +low,vhigh,2,more,med,high,acc +med,low,2,4,med,low,unacc +med,low,2,more,med,high,good +vhigh,med,5more,more,small,med,unacc +med,high,5more,2,big,low,unacc +med,med,4,more,med,med,acc +med,high,3,more,big,high,acc +med,high,2,2,big,med,unacc +med,low,4,2,med,high,unacc +med,high,4,2,med,low,unacc +vhigh,high,5more,more,big,high,unacc +high,high,5more,2,big,low,unacc +med,high,4,2,small,med,unacc +low,vhigh,4,4,med,high,acc +vhigh,low,4,4,big,high,acc +med,vhigh,5more,more,big,high,acc +vhigh,vhigh,4,4,big,med,unacc +high,med,5more,more,big,low,unacc +high,high,5more,4,med,low,unacc +low,high,4,more,med,med,acc +vhigh,low,3,4,big,med,acc +vhigh,med,3,4,small,med,unacc +high,high,3,4,med,high,acc +med,low,5more,4,big,low,unacc +low,med,3,more,med,low,unacc +low,vhigh,5more,4,big,med,acc +med,high,5more,more,med,med,acc +low,low,4,2,med,high,unacc +low,med,3,2,med,low,unacc +low,high,2,4,big,low,unacc +low,low,5more,2,med,high,unacc +high,vhigh,5more,4,small,med,unacc +med,high,4,4,big,high,acc +vhigh,vhigh,3,2,big,low,unacc +med,high,5more,2,med,med,unacc +vhigh,high,2,2,big,low,unacc +med,med,4,4,med,high,vgood +med,high,3,more,med,low,unacc +low,high,2,more,med,med,acc +low,med,4,2,med,low,unacc +med,vhigh,5more,4,big,low,unacc +vhigh,med,2,more,big,high,acc +low,vhigh,5more,4,small,high,acc +vhigh,low,5more,2,small,low,unacc +high,med,2,4,big,low,unacc +vhigh,high,5more,2,small,high,unacc +med,low,4,2,big,high,unacc +low,med,2,2,med,med,unacc +med,med,2,4,big,high,vgood +low,high,4,2,med,high,unacc +high,med,4,more,med,low,unacc +low,high,3,4,small,med,acc +med,vhigh,4,4,big,med,acc +high,low,4,4,small,high,acc +high,high,2,4,small,med,unacc +low,med,2,more,med,med,acc +med,vhigh,5more,2,med,high,unacc +low,med,5more,4,med,high,vgood +low,high,4,4,med,low,unacc +low,low,2,4,med,high,good +high,vhigh,2,2,med,low,unacc +high,vhigh,4,2,small,low,unacc +med,vhigh,4,more,big,high,acc +med,high,3,4,small,high,acc +vhigh,low,2,more,med,med,unacc +med,med,5more,4,med,med,acc +high,med,2,2,med,med,unacc +vhigh,high,2,2,big,high,unacc +high,high,2,2,med,high,unacc +high,med,5more,more,big,med,acc +vhigh,vhigh,3,4,med,low,unacc +low,vhigh,4,more,small,low,unacc +vhigh,vhigh,4,2,med,high,unacc +low,low,2,2,big,med,unacc +low,low,4,more,small,low,unacc +low,vhigh,2,4,small,med,unacc +med,med,5more,2,med,low,unacc +low,high,3,more,small,high,acc +high,vhigh,5more,4,med,med,unacc +med,low,3,4,med,med,acc +vhigh,vhigh,5more,2,med,med,unacc +low,vhigh,4,2,big,med,unacc +high,med,4,4,small,high,acc +low,low,3,more,small,low,unacc +vhigh,high,4,more,big,high,unacc +med,vhigh,5more,4,big,high,acc +vhigh,low,4,more,big,med,acc +med,low,2,4,med,high,good +med,high,2,4,big,high,acc +vhigh,vhigh,5more,4,small,low,unacc +med,low,5more,more,small,low,unacc +vhigh,low,4,2,med,high,unacc +med,low,2,more,big,high,vgood +low,high,5more,4,big,low,unacc +high,low,5more,2,small,med,unacc +vhigh,vhigh,4,4,med,high,unacc +vhigh,low,3,more,big,low,unacc +low,low,2,more,big,low,unacc +vhigh,med,5more,2,small,low,unacc +med,vhigh,3,2,big,low,unacc +vhigh,med,2,4,small,med,unacc +med,low,2,4,big,low,unacc +high,low,4,more,big,high,acc +vhigh,vhigh,2,more,med,low,unacc +low,med,5more,4,small,high,good +low,low,5more,2,big,med,unacc +vhigh,vhigh,3,more,med,high,unacc +vhigh,med,5more,more,big,med,acc +high,med,4,more,small,high,acc +low,low,2,more,small,low,unacc +low,low,2,2,big,high,unacc +med,vhigh,4,more,small,high,acc +high,high,3,more,med,med,acc +low,vhigh,5more,2,small,high,unacc +high,high,4,2,small,med,unacc +low,vhigh,4,4,big,med,acc +med,vhigh,3,2,small,med,unacc +low,vhigh,5more,4,big,low,unacc +vhigh,vhigh,5more,4,big,high,unacc +low,med,3,4,big,high,vgood +vhigh,high,2,2,med,high,unacc +med,vhigh,5more,more,med,low,unacc +low,low,2,more,med,med,acc +low,med,5more,more,med,high,vgood +high,med,5more,4,big,med,acc +vhigh,low,5more,2,med,high,unacc +vhigh,low,4,more,small,high,acc +high,vhigh,5more,4,small,high,unacc +low,med,5more,more,small,med,acc +high,vhigh,3,2,med,med,unacc +med,med,2,2,med,low,unacc +high,low,3,more,small,high,acc +med,high,4,more,med,high,acc +vhigh,med,5more,4,med,high,acc +high,high,4,4,small,high,acc +vhigh,vhigh,2,more,big,high,unacc +vhigh,low,4,2,med,med,unacc +med,low,5more,4,big,med,good +vhigh,low,3,2,small,med,unacc +high,med,4,4,med,high,acc +low,vhigh,5more,4,med,med,acc +low,vhigh,5more,more,big,low,unacc +med,high,4,4,big,med,acc +med,low,5more,2,small,med,unacc +high,med,3,2,big,med,unacc +high,med,4,4,big,med,acc +med,med,4,4,small,low,unacc +low,high,5more,2,big,low,unacc +vhigh,low,3,2,big,high,unacc +vhigh,high,3,4,big,high,unacc +high,vhigh,5more,2,med,low,unacc +med,low,4,4,big,low,unacc +low,med,5more,2,med,low,unacc +med,high,3,2,med,low,unacc +med,high,2,more,small,high,unacc +high,low,3,more,big,high,acc +med,vhigh,3,more,small,high,acc +low,vhigh,3,4,small,high,acc +low,low,5more,more,small,low,unacc +med,high,4,more,big,low,unacc +med,low,5more,4,med,med,good +low,med,5more,4,med,med,good +vhigh,med,2,more,small,low,unacc +vhigh,high,2,more,med,low,unacc +med,low,4,more,big,low,unacc +med,vhigh,4,4,small,low,unacc +high,vhigh,4,2,big,med,unacc +low,med,4,2,big,low,unacc +vhigh,high,3,more,small,med,unacc +high,low,5more,4,big,med,acc +med,med,2,2,med,high,unacc +high,high,4,2,med,high,unacc +high,med,2,2,big,high,unacc +high,low,4,2,med,low,unacc +low,med,2,2,small,high,unacc +high,high,2,4,small,high,acc +med,med,2,4,big,low,unacc +vhigh,vhigh,2,4,small,med,unacc +med,high,5more,4,big,med,acc +med,high,4,2,big,med,unacc +med,low,2,2,small,low,unacc +high,low,3,4,med,med,unacc +high,low,2,2,med,med,unacc +low,low,2,4,med,low,unacc +low,high,3,2,small,low,unacc +med,med,5more,4,small,high,acc +vhigh,low,4,4,med,high,acc +vhigh,vhigh,5more,2,small,low,unacc +med,high,2,more,big,high,acc +vhigh,high,4,4,med,med,unacc +vhigh,high,4,more,med,high,unacc +med,low,4,4,med,low,unacc +vhigh,med,3,2,big,high,unacc +med,med,4,more,small,low,unacc +high,vhigh,2,4,small,med,unacc +vhigh,low,4,2,big,low,unacc +med,low,4,4,med,med,good +vhigh,med,5more,2,med,med,unacc +vhigh,vhigh,4,2,med,med,unacc +med,high,3,4,big,high,acc +vhigh,vhigh,3,more,med,low,unacc +high,high,5more,more,big,med,acc +vhigh,med,5more,4,small,med,unacc +vhigh,high,4,4,small,low,unacc +high,vhigh,2,more,med,high,unacc +high,high,3,2,big,low,unacc +vhigh,vhigh,5more,more,small,high,unacc +high,vhigh,2,4,med,med,unacc +vhigh,vhigh,5more,4,med,low,unacc +high,low,5more,4,small,med,unacc +med,med,3,more,med,med,acc +vhigh,med,2,more,big,med,acc +med,high,2,4,med,med,unacc +vhigh,vhigh,3,4,small,med,unacc +high,high,2,4,big,low,unacc +med,vhigh,4,4,small,med,unacc +vhigh,low,2,2,small,med,unacc +high,low,3,4,small,med,unacc +high,low,5more,2,med,med,unacc +vhigh,low,2,4,med,med,unacc +low,high,2,more,med,high,acc +low,med,3,more,small,high,good +vhigh,low,2,more,med,high,acc +low,high,5more,2,med,med,unacc +low,high,5more,more,big,high,vgood +high,low,2,4,med,high,acc +med,med,3,2,med,high,unacc +vhigh,low,5more,4,big,low,unacc +vhigh,high,3,4,med,med,unacc +vhigh,vhigh,2,4,big,med,unacc +med,med,5more,4,big,high,vgood +low,med,4,more,med,high,vgood +high,high,3,2,big,high,unacc +high,vhigh,2,more,small,med,unacc +med,med,2,more,small,low,unacc +vhigh,low,2,4,big,med,acc +low,vhigh,2,2,big,med,unacc +med,low,4,more,small,high,good +high,med,3,2,small,med,unacc +med,vhigh,2,more,big,med,acc +high,low,3,more,big,med,acc +low,low,3,more,big,high,vgood +vhigh,low,4,4,med,med,acc +med,vhigh,2,more,med,med,unacc +med,med,3,more,small,low,unacc +vhigh,vhigh,3,more,small,low,unacc +vhigh,low,5more,4,big,med,acc +med,high,3,4,med,med,unacc +low,vhigh,3,more,med,high,acc +low,low,5more,4,big,med,good +vhigh,med,3,2,small,high,unacc +low,high,3,4,big,high,vgood +vhigh,low,2,2,big,low,unacc +med,low,3,more,big,med,good +vhigh,low,4,4,small,low,unacc +med,med,3,2,small,high,unacc +low,high,5more,2,big,med,unacc +low,low,2,2,small,low,unacc +vhigh,low,3,2,med,low,unacc +high,low,5more,more,med,low,unacc +med,high,5more,4,big,high,acc +low,low,5more,more,small,high,good +low,low,3,4,med,low,unacc +low,med,2,4,big,low,unacc +high,high,4,2,small,low,unacc +high,low,5more,more,big,high,acc +low,med,2,more,big,med,good +med,med,2,2,small,high,unacc +high,low,2,4,med,low,unacc +high,med,2,2,med,high,unacc +high,vhigh,5more,2,big,med,unacc +low,high,2,2,small,med,unacc +vhigh,low,5more,more,small,high,acc +med,vhigh,3,more,big,high,acc +vhigh,vhigh,4,more,small,low,unacc +low,vhigh,4,more,small,high,acc +high,vhigh,5more,2,big,high,unacc +low,med,5more,2,med,high,unacc +med,high,2,2,small,low,unacc +low,vhigh,5more,4,small,med,unacc +low,vhigh,3,more,small,med,unacc +high,med,2,4,small,low,unacc +high,vhigh,3,4,small,low,unacc +low,med,4,4,small,high,good +high,vhigh,3,more,big,med,unacc +high,vhigh,4,4,small,low,unacc +vhigh,low,5more,more,med,low,unacc +vhigh,med,4,4,small,med,unacc +med,low,2,more,med,low,unacc +high,low,2,2,big,low,unacc +high,med,2,4,small,med,unacc +vhigh,high,3,more,med,high,unacc +low,high,2,2,small,low,unacc +high,vhigh,3,4,med,high,unacc +low,high,5more,2,small,low,unacc +high,med,5more,4,med,high,acc +med,vhigh,3,2,med,high,unacc +vhigh,low,5more,4,med,med,acc +high,low,4,more,med,low,unacc +med,high,2,2,big,low,unacc +high,high,2,more,big,med,acc +low,low,5more,more,big,high,vgood +vhigh,high,4,2,small,med,unacc +high,low,2,4,big,high,acc +high,high,5more,2,med,low,unacc +med,med,4,4,big,high,vgood +low,vhigh,5more,2,big,high,unacc +high,vhigh,4,4,small,high,unacc +med,high,4,2,small,high,unacc +vhigh,med,4,more,big,med,acc +vhigh,high,3,2,small,low,unacc +med,med,3,2,big,med,unacc +med,low,5more,2,big,med,unacc +vhigh,high,5more,more,small,high,unacc +high,low,4,4,small,med,unacc +low,med,3,4,med,low,unacc +high,med,5more,more,med,low,unacc +low,med,3,more,small,med,acc +med,high,3,more,big,med,acc +med,med,4,more,small,med,acc +med,med,3,4,med,med,acc +vhigh,high,5more,2,med,med,unacc +med,low,5more,2,big,high,unacc +med,med,2,4,med,low,unacc +med,low,2,4,big,med,good +high,high,2,4,big,med,acc +low,med,4,more,big,high,vgood +high,vhigh,5more,4,med,high,unacc +vhigh,low,5more,4,small,low,unacc +low,low,5more,4,big,low,unacc +vhigh,low,2,2,big,high,unacc +med,med,4,4,med,low,unacc +low,vhigh,5more,2,small,low,unacc +med,low,2,more,small,high,unacc +high,vhigh,3,2,big,med,unacc +vhigh,vhigh,3,4,small,high,unacc +med,vhigh,2,4,big,med,acc +high,low,4,2,med,high,unacc +high,med,5more,2,med,low,unacc +low,high,4,more,big,med,acc +vhigh,low,5more,4,big,high,acc +low,med,5more,more,big,low,unacc +low,vhigh,4,more,big,low,unacc +vhigh,high,2,2,small,low,unacc +vhigh,low,2,2,med,high,unacc +vhigh,low,2,more,small,low,unacc +high,low,2,4,small,high,acc +med,med,5more,more,med,high,vgood +high,med,3,more,big,med,acc +high,med,4,4,small,low,unacc +high,low,4,2,med,med,unacc +med,med,3,4,big,low,unacc +med,vhigh,5more,4,small,low,unacc +high,high,4,2,big,low,unacc +vhigh,high,4,more,big,low,unacc +vhigh,med,4,4,big,low,unacc +high,vhigh,2,more,med,low,unacc +high,med,2,more,small,high,unacc +high,vhigh,5more,more,small,med,unacc +high,low,2,2,big,med,unacc +vhigh,high,4,more,small,low,unacc +low,vhigh,3,4,small,med,unacc +low,low,4,more,big,med,good +low,vhigh,2,more,small,med,unacc +med,high,5more,more,small,high,acc +vhigh,vhigh,2,more,med,med,unacc +low,med,3,4,small,med,acc +med,high,3,more,small,med,unacc +high,med,3,4,big,med,acc +low,med,3,2,small,high,unacc +low,low,3,2,big,med,unacc +med,high,3,more,med,med,acc +vhigh,med,3,4,med,high,acc +high,high,4,more,big,med,acc +med,vhigh,5more,2,med,med,unacc +high,vhigh,2,4,small,high,unacc +med,med,2,4,small,low,unacc +high,high,4,more,small,med,unacc +low,vhigh,4,more,big,med,acc +med,med,4,2,big,low,unacc +low,med,5more,2,small,low,unacc +low,low,2,2,small,high,unacc +high,vhigh,5more,2,small,low,unacc +vhigh,med,4,4,small,low,unacc +vhigh,low,5more,2,big,high,unacc +med,low,3,4,big,low,unacc +high,low,3,more,med,med,acc +low,high,5more,2,med,low,unacc +high,vhigh,3,more,med,low,unacc +med,med,2,4,med,med,acc +med,high,5more,more,big,high,acc +low,low,2,more,small,high,unacc +high,low,3,2,med,low,unacc +high,high,4,4,big,med,acc +vhigh,med,5more,more,small,low,unacc +vhigh,high,4,2,big,high,unacc +low,med,2,more,med,low,unacc +med,low,5more,4,small,med,acc +low,high,4,2,big,low,unacc +vhigh,med,4,2,med,low,unacc +med,high,5more,4,med,high,acc +med,high,2,4,small,high,acc +vhigh,med,2,4,big,low,unacc +low,med,2,more,med,high,good +low,vhigh,5more,2,big,low,unacc +med,vhigh,2,more,small,low,unacc +vhigh,high,5more,4,med,high,unacc +med,high,2,4,big,low,unacc +high,low,5more,more,small,low,unacc +high,low,5more,4,big,high,acc +med,med,5more,4,small,med,acc +vhigh,med,2,more,big,low,unacc +high,med,4,2,small,high,unacc +vhigh,vhigh,4,more,small,med,unacc +low,med,4,2,big,med,unacc +med,vhigh,2,4,med,med,unacc +med,high,5more,4,small,low,unacc +high,med,4,more,med,med,acc +vhigh,med,4,more,big,high,acc +vhigh,med,2,more,med,med,unacc +vhigh,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,small,high,unacc +med,med,5more,2,small,low,unacc +high,high,4,4,big,low,unacc +high,med,4,2,med,med,unacc +low,vhigh,2,2,med,med,unacc +low,high,5more,more,med,low,unacc +vhigh,vhigh,2,2,med,low,unacc +high,low,2,more,small,low,unacc +vhigh,vhigh,4,more,med,high,unacc +high,high,2,more,big,high,acc +vhigh,high,4,4,big,med,unacc +low,vhigh,4,4,big,high,acc +vhigh,high,3,more,big,high,unacc +vhigh,vhigh,5more,2,med,low,unacc +med,low,2,4,small,high,good +low,high,3,more,big,med,acc +vhigh,med,2,2,small,med,unacc +high,high,5more,more,small,high,acc +low,vhigh,2,more,small,high,unacc +vhigh,vhigh,5more,more,med,low,unacc +high,low,2,2,small,high,unacc +low,vhigh,3,more,med,low,unacc +low,low,5more,4,small,low,unacc +med,med,4,more,big,high,vgood +high,high,3,4,big,med,acc +low,low,2,4,small,med,acc +high,vhigh,2,2,big,high,unacc +high,high,4,4,small,low,unacc +vhigh,med,5more,2,big,high,unacc +high,vhigh,2,more,med,med,unacc +low,low,4,2,big,med,unacc +low,low,5more,4,med,low,unacc +high,vhigh,5more,more,med,high,unacc +vhigh,med,2,4,big,med,acc +med,low,2,2,big,low,unacc +low,low,4,more,med,low,unacc +high,high,5more,2,small,low,unacc +vhigh,low,5more,more,med,med,acc +high,low,3,2,small,low,unacc +med,low,3,4,big,high,vgood +vhigh,high,2,4,med,high,unacc +vhigh,med,3,4,med,low,unacc +med,vhigh,3,more,med,low,unacc +vhigh,med,5more,4,big,low,unacc +high,high,3,4,small,med,unacc +vhigh,high,3,more,small,low,unacc +vhigh,high,3,more,med,low,unacc +low,low,5more,2,med,low,unacc +low,vhigh,2,4,small,low,unacc +low,med,5more,4,small,med,acc +high,high,3,more,big,low,unacc +vhigh,vhigh,4,more,med,med,unacc +high,vhigh,4,more,small,low,unacc +vhigh,low,5more,2,big,low,unacc +vhigh,vhigh,4,4,med,med,unacc +low,high,5more,2,med,high,unacc +med,med,3,2,big,high,unacc +med,med,3,more,small,high,acc +vhigh,vhigh,3,more,big,high,unacc +vhigh,high,5more,2,small,low,unacc +med,vhigh,4,2,med,high,unacc +low,high,5more,4,big,med,acc +low,med,2,2,big,low,unacc +med,med,3,2,med,low,unacc +vhigh,med,4,more,med,med,acc +med,med,5more,4,big,med,acc +med,high,2,4,small,low,unacc +vhigh,vhigh,5more,more,big,med,unacc +med,vhigh,3,4,small,low,unacc +high,low,2,4,big,low,unacc +high,med,2,2,big,low,unacc +high,low,5more,2,med,low,unacc +low,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,med,low,unacc +med,vhigh,2,more,med,low,unacc +med,high,5more,4,med,med,acc +vhigh,vhigh,3,more,small,high,unacc +vhigh,med,4,4,small,high,acc +vhigh,high,2,more,med,med,unacc +med,low,4,4,small,low,unacc +low,high,3,4,med,med,acc +low,high,4,4,big,low,unacc +vhigh,med,5more,4,med,med,acc +vhigh,high,4,more,med,med,unacc +vhigh,low,3,more,small,med,unacc +vhigh,med,2,4,big,high,acc +med,low,5more,2,big,low,unacc +low,high,3,4,big,med,acc +low,high,5more,2,small,med,unacc +vhigh,med,4,more,small,high,acc +low,vhigh,2,more,big,low,unacc +high,vhigh,5more,more,big,med,unacc +low,low,2,more,big,high,vgood +high,high,4,4,small,med,unacc +low,med,4,4,big,high,vgood +low,high,3,more,big,high,vgood +med,vhigh,5more,4,small,high,acc +med,low,5more,4,small,low,unacc +med,low,4,2,big,med,unacc +vhigh,high,5more,2,big,high,unacc +low,vhigh,2,2,small,med,unacc +high,med,4,2,med,high,unacc +high,low,2,more,big,med,acc +low,med,5more,4,big,low,unacc +high,low,2,2,med,high,unacc +vhigh,high,2,4,big,low,unacc +low,vhigh,3,2,small,high,unacc +vhigh,high,5more,4,small,low,unacc +high,med,5more,4,small,med,unacc +med,high,5more,more,med,high,acc +med,low,2,more,big,med,good +low,high,5more,more,med,high,vgood +low,vhigh,4,4,med,med,acc +med,high,5more,4,small,med,unacc +high,vhigh,3,2,big,low,unacc +med,low,3,4,big,med,good +low,vhigh,5more,more,small,low,unacc +low,low,3,more,big,low,unacc +low,low,5more,more,med,med,good +high,low,2,2,big,high,unacc +low,med,5more,4,small,low,unacc +vhigh,low,3,2,small,high,unacc +low,med,3,more,big,high,vgood +med,low,5more,more,big,high,vgood +med,low,4,more,small,low,unacc +vhigh,low,4,2,small,low,unacc +high,high,4,2,small,high,unacc +high,med,3,2,med,high,unacc +low,med,2,more,small,med,unacc +low,low,3,more,med,low,unacc +high,med,4,2,big,med,unacc +vhigh,low,5more,4,small,med,unacc +vhigh,med,2,4,small,high,acc +med,med,4,more,med,high,vgood +vhigh,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,small,low,unacc +high,low,4,2,small,high,unacc +high,vhigh,3,2,small,low,unacc +high,vhigh,4,4,big,high,unacc +high,med,5more,2,small,low,unacc +high,med,2,4,med,high,acc +low,high,4,2,med,med,unacc +med,high,3,2,big,high,unacc +vhigh,med,3,2,med,med,unacc +med,high,4,more,big,high,acc +high,high,3,2,small,high,unacc +low,low,2,4,med,med,acc +low,vhigh,2,2,big,high,unacc +high,med,5more,4,small,low,unacc +low,high,4,more,big,high,vgood +vhigh,vhigh,5more,2,big,med,unacc +vhigh,high,5more,2,big,med,unacc +high,vhigh,5more,4,big,high,unacc +vhigh,vhigh,2,4,small,high,unacc +med,high,4,more,big,med,acc +vhigh,med,4,4,med,med,acc +med,vhigh,4,2,med,low,unacc +high,med,4,4,big,high,acc +high,high,4,4,big,high,acc +med,vhigh,3,4,small,high,acc +vhigh,med,4,4,big,high,acc +vhigh,low,2,more,big,med,acc +vhigh,med,3,more,med,med,acc +med,low,3,more,med,low,unacc +vhigh,low,3,4,med,med,unacc +low,med,3,4,big,low,unacc +med,med,4,4,small,high,acc +low,med,4,4,med,low,unacc +med,low,4,4,big,high,vgood +med,vhigh,2,2,big,high,unacc +med,low,2,2,big,med,unacc +vhigh,vhigh,3,2,med,low,unacc +vhigh,low,2,more,med,low,unacc +low,vhigh,5more,4,med,high,acc +high,med,3,4,small,med,unacc +high,high,5more,2,med,med,unacc +low,vhigh,3,2,med,low,unacc +high,vhigh,3,4,big,high,unacc +high,low,2,4,med,med,unacc +vhigh,med,3,2,big,med,unacc +high,vhigh,3,2,med,low,unacc +med,vhigh,3,4,med,low,unacc +low,med,5more,2,small,med,unacc +low,low,3,more,med,high,vgood +med,high,3,2,big,med,unacc +vhigh,med,3,4,small,low,unacc +med,vhigh,2,4,small,low,unacc +med,low,5more,more,small,high,good +vhigh,med,4,2,med,high,unacc +med,high,3,4,small,low,unacc +high,med,5more,more,small,high,acc +high,low,5more,4,small,low,unacc +med,high,4,2,med,high,unacc +low,low,3,2,small,med,unacc +high,vhigh,4,4,small,med,unacc +high,low,3,4,small,high,acc +high,high,2,4,med,low,unacc +med,vhigh,4,more,big,low,unacc +high,low,4,more,small,low,unacc +high,high,5more,4,small,med,unacc +vhigh,med,4,2,big,med,unacc +high,med,2,more,small,med,unacc +med,low,3,4,small,low,unacc +high,med,5more,more,med,high,acc +vhigh,high,4,more,small,med,unacc +low,vhigh,5more,4,med,low,unacc +vhigh,high,3,more,med,med,unacc +med,low,4,more,med,med,good +high,vhigh,3,4,med,low,unacc +low,med,4,more,big,med,good +med,vhigh,3,more,med,med,acc +high,med,2,2,med,low,unacc +vhigh,low,3,more,small,high,acc +high,vhigh,2,4,med,low,unacc +vhigh,high,2,2,small,med,unacc +low,vhigh,3,4,big,low,unacc +high,low,5more,2,big,low,unacc +med,med,5more,4,big,low,unacc +med,vhigh,2,2,big,low,unacc +med,med,2,2,big,low,unacc +vhigh,low,2,more,big,high,acc +low,med,2,4,med,low,unacc +high,vhigh,5more,2,big,low,unacc +vhigh,vhigh,4,4,big,high,unacc +vhigh,low,4,2,small,high,unacc +med,med,2,4,big,med,acc +low,low,4,4,big,med,good +high,high,2,2,big,low,unacc +vhigh,low,3,2,med,high,unacc +vhigh,vhigh,3,4,big,med,unacc +high,low,3,more,small,med,unacc +high,high,3,4,med,med,unacc +high,low,4,2,big,low,unacc +vhigh,high,2,4,big,med,unacc +med,low,2,2,med,low,unacc +low,vhigh,3,more,med,med,acc +high,med,3,more,big,high,acc +low,med,5more,more,big,high,vgood +low,med,5more,more,med,low,unacc +high,low,3,4,small,low,unacc +high,med,4,4,med,low,unacc +low,vhigh,2,2,small,high,unacc +low,low,2,2,small,med,unacc +low,med,4,more,med,low,unacc +high,low,5more,4,med,high,acc +med,low,3,2,small,high,unacc +high,high,4,4,med,med,acc +vhigh,vhigh,4,more,big,low,unacc +vhigh,high,5more,4,big,low,unacc +med,low,4,more,big,high,vgood +med,vhigh,5more,more,small,high,acc +vhigh,low,5more,2,small,high,unacc +vhigh,low,4,2,big,med,unacc +med,high,2,4,small,med,unacc +low,med,3,2,big,med,unacc +high,med,3,more,small,med,unacc +high,high,3,more,med,high,acc +vhigh,med,5more,more,med,high,acc +low,low,3,4,big,med,good +vhigh,vhigh,3,2,small,low,unacc +low,low,3,2,med,low,unacc +low,high,3,4,small,low,unacc +high,high,5more,4,big,high,acc +vhigh,low,2,4,med,low,unacc +med,high,4,2,big,low,unacc +vhigh,low,2,more,small,high,unacc +high,low,2,2,small,low,unacc +high,vhigh,5more,4,med,low,unacc +med,med,5more,4,med,low,unacc +high,vhigh,2,4,big,low,unacc +low,med,3,more,small,low,unacc +med,med,5more,2,big,med,unacc +vhigh,med,3,4,big,med,acc +low,high,3,4,big,low,unacc +med,med,2,more,med,low,unacc +vhigh,vhigh,3,4,big,low,unacc +med,low,4,2,small,high,unacc +med,med,3,4,med,low,unacc +vhigh,vhigh,4,4,small,med,unacc +vhigh,vhigh,5more,2,small,high,unacc +low,vhigh,3,2,big,low,unacc +high,vhigh,3,2,small,med,unacc +med,low,4,2,small,low,unacc +vhigh,vhigh,5more,more,big,high,unacc +low,med,2,4,small,med,acc +med,low,4,2,med,med,unacc +low,vhigh,4,4,small,med,unacc +high,vhigh,5more,2,med,med,unacc +med,vhigh,2,2,small,low,unacc +low,low,2,more,big,med,good +med,high,5more,2,med,high,unacc +high,med,3,4,big,high,acc +high,med,2,more,med,med,unacc +low,vhigh,5more,more,med,low,unacc +low,high,5more,4,med,med,acc +high,med,2,more,med,high,acc +med,med,5more,more,big,low,unacc +high,vhigh,5more,more,small,high,unacc +med,low,2,2,small,med,unacc +vhigh,low,3,more,med,med,acc +med,vhigh,5more,2,small,med,unacc +vhigh,med,4,2,big,high,unacc +low,med,4,more,small,high,good +vhigh,high,4,4,small,med,unacc +low,low,4,more,big,low,unacc +high,low,3,more,big,low,unacc +vhigh,vhigh,4,2,small,high,unacc +low,low,2,4,big,low,unacc +med,vhigh,5more,4,med,med,acc +low,high,5more,more,small,low,unacc +high,low,4,more,small,med,unacc +high,med,3,4,med,high,acc +high,low,3,4,med,high,acc +vhigh,vhigh,4,2,big,low,unacc +low,high,2,2,med,med,unacc +med,vhigh,3,2,small,high,unacc +high,high,2,more,small,med,unacc +low,med,4,4,big,med,good +med,high,3,2,small,med,unacc +low,med,3,2,med,med,unacc +low,vhigh,4,4,small,low,unacc +high,low,3,4,big,med,acc +low,med,2,more,big,low,unacc +high,med,4,more,small,med,unacc +vhigh,vhigh,2,4,med,med,unacc +low,high,3,2,big,high,unacc +high,low,2,more,big,low,unacc +vhigh,vhigh,3,4,med,high,unacc +high,low,3,4,big,low,unacc +high,low,5more,more,big,low,unacc +vhigh,low,5more,more,small,med,unacc +vhigh,high,2,more,small,high,unacc +high,low,5more,4,big,low,unacc +med,vhigh,5more,4,small,med,unacc +high,med,3,2,med,low,unacc +high,low,4,more,big,med,acc +high,low,5more,4,med,med,acc +low,high,4,more,med,high,vgood +low,high,4,2,small,low,unacc +vhigh,med,5more,4,big,med,acc +high,low,3,2,small,high,unacc +high,vhigh,3,4,big,low,unacc +vhigh,med,5more,4,med,low,unacc +low,med,4,4,big,low,unacc +vhigh,high,4,2,med,med,unacc +high,med,2,2,big,med,unacc +high,med,3,4,med,med,unacc +high,high,2,4,big,high,acc +high,vhigh,3,more,med,med,unacc +high,high,3,more,small,med,unacc +vhigh,high,3,more,big,low,unacc +med,vhigh,3,4,small,med,unacc +high,high,2,more,med,high,acc +high,vhigh,4,2,med,med,unacc +med,high,2,more,med,low,unacc +med,high,5more,4,big,low,unacc +high,high,3,2,small,med,unacc +high,vhigh,4,more,med,low,unacc +high,vhigh,5more,more,small,low,unacc +med,vhigh,4,2,med,med,unacc +med,high,2,2,small,med,unacc +vhigh,low,2,2,small,high,unacc +med,vhigh,3,more,med,high,acc +med,med,5more,more,small,med,acc +med,vhigh,2,4,small,med,unacc +med,high,4,2,big,high,unacc +med,vhigh,3,4,big,med,acc +high,med,2,2,small,high,unacc +low,vhigh,5more,2,small,med,unacc +med,med,4,2,med,low,unacc +vhigh,med,4,2,med,med,unacc +med,vhigh,4,4,big,high,acc +vhigh,med,3,2,big,low,unacc +high,vhigh,4,more,big,med,unacc +low,vhigh,5more,2,med,high,unacc +med,vhigh,5more,2,big,med,unacc +med,high,5more,2,big,high,unacc +vhigh,low,3,4,small,med,unacc +high,vhigh,2,4,big,high,unacc +med,vhigh,2,2,big,med,unacc +vhigh,med,2,2,med,low,unacc +vhigh,vhigh,2,4,med,low,unacc +vhigh,med,5more,2,big,low,unacc +high,vhigh,4,4,med,high,unacc +med,low,3,4,med,high,good +med,high,3,4,med,high,acc +high,low,3,2,med,med,unacc +vhigh,low,4,more,med,low,unacc +high,low,5more,4,med,low,unacc +med,vhigh,4,4,big,low,unacc +vhigh,high,3,4,big,low,unacc +low,high,5more,more,small,high,acc +low,low,2,2,big,low,unacc +vhigh,vhigh,5more,4,med,high,unacc +med,low,4,4,med,high,vgood +vhigh,med,5more,2,med,high,unacc +low,med,2,more,small,high,unacc +low,high,4,more,big,low,unacc +high,high,5more,4,big,low,unacc +low,vhigh,4,more,small,med,unacc +low,high,2,2,big,high,unacc +high,med,3,4,med,low,unacc +med,high,5more,2,med,low,unacc +high,high,3,4,big,low,unacc +vhigh,high,4,4,med,low,unacc +vhigh,low,2,more,big,low,unacc +med,vhigh,5more,more,big,med,acc +med,high,4,more,med,low,unacc +low,high,2,2,small,high,unacc +med,vhigh,3,4,big,low,unacc +low,low,3,4,med,high,good +med,vhigh,5more,2,big,high,unacc +high,med,2,4,med,low,unacc +med,low,5more,2,med,high,unacc +low,low,3,4,med,med,acc +high,high,3,more,med,low,unacc +high,high,5more,2,small,high,unacc +vhigh,vhigh,2,2,small,med,unacc +med,med,3,4,big,med,acc +high,low,4,more,med,med,acc +high,high,4,more,med,high,acc +med,med,5more,2,med,high,unacc +vhigh,low,3,2,big,low,unacc +low,vhigh,5more,more,big,med,acc +high,low,5more,more,big,med,acc +low,low,4,4,med,med,good +vhigh,med,3,more,small,low,unacc +low,vhigh,2,more,med,med,unacc +high,high,4,4,med,low,unacc +low,high,3,2,med,low,unacc +high,med,2,more,med,low,unacc +high,low,5more,2,small,low,unacc +high,high,5more,4,med,med,acc +med,high,4,4,med,med,acc +high,high,4,more,med,med,acc +low,low,3,more,small,med,acc +med,low,3,2,small,med,unacc +low,high,4,2,big,med,unacc +vhigh,high,3,4,small,low,unacc +med,vhigh,2,more,small,high,unacc +high,med,5more,4,big,high,acc +vhigh,low,4,more,big,high,acc +med,med,2,more,med,high,acc +med,high,5more,4,med,low,unacc +vhigh,vhigh,2,2,med,med,unacc +med,low,3,2,small,low,unacc +med,low,5more,more,big,med,good +high,vhigh,5more,4,small,low,unacc +low,high,2,more,big,med,acc +low,high,3,more,med,high,vgood +low,med,4,2,small,med,unacc +med,low,3,4,small,med,acc +med,high,4,more,med,med,acc +med,vhigh,3,2,med,low,unacc +low,vhigh,5more,2,big,med,unacc +high,med,4,2,big,low,unacc +med,vhigh,2,more,big,high,acc +vhigh,med,2,2,big,med,unacc +vhigh,vhigh,4,more,big,med,unacc +low,vhigh,3,4,small,low,unacc +med,low,2,2,small,high,unacc +low,med,3,2,small,med,unacc +low,vhigh,4,2,med,low,unacc +low,med,3,4,med,med,acc +vhigh,vhigh,4,2,med,low,unacc +high,med,3,2,med,med,unacc +low,high,2,more,big,low,unacc +high,low,4,4,small,low,unacc +low,med,4,4,med,high,vgood +high,med,4,more,small,low,unacc +high,high,3,2,med,high,unacc +low,low,3,2,big,high,unacc +low,high,2,more,small,med,unacc +high,med,2,more,big,med,acc +high,low,4,2,big,med,unacc +vhigh,low,4,more,small,low,unacc +vhigh,vhigh,3,more,med,med,unacc +high,vhigh,2,more,big,med,unacc +low,low,3,2,med,high,unacc +high,high,5more,2,med,high,unacc +high,med,4,4,big,low,unacc +med,vhigh,4,more,big,med,acc +vhigh,low,5more,2,med,med,unacc +high,vhigh,2,more,big,low,unacc +med,vhigh,5more,more,small,med,unacc +vhigh,vhigh,4,more,big,high,unacc +high,low,3,2,small,med,unacc +vhigh,med,2,2,big,low,unacc +low,low,4,4,med,high,vgood +low,med,3,4,med,high,good +high,vhigh,4,more,med,high,unacc +high,low,5more,2,big,med,unacc +high,med,3,2,big,low,unacc +vhigh,low,3,4,big,high,acc +vhigh,vhigh,3,more,big,low,unacc +high,low,5more,2,big,high,unacc +vhigh,low,3,4,med,low,unacc +vhigh,low,2,4,small,low,unacc +low,high,2,2,big,med,unacc +vhigh,med,5more,more,small,high,acc +low,high,2,2,med,high,unacc +med,med,4,4,med,med,acc +high,med,4,more,med,high,acc +vhigh,high,5more,more,med,med,unacc +low,high,2,4,big,high,vgood +vhigh,low,5more,more,big,high,acc +high,med,5more,2,med,med,unacc +low,vhigh,4,4,med,low,unacc +high,med,5more,more,small,low,unacc +high,high,5more,4,small,high,acc +vhigh,vhigh,5more,2,med,high,unacc +vhigh,med,3,more,small,med,unacc +med,vhigh,2,4,big,high,acc +vhigh,med,5more,2,big,med,unacc +med,med,3,more,big,med,acc +med,low,2,2,med,high,unacc +low,vhigh,3,2,med,med,unacc +vhigh,vhigh,4,more,small,high,unacc +med,med,3,4,small,high,acc +vhigh,med,5more,4,small,low,unacc +low,high,2,4,big,med,acc +low,med,2,4,small,low,unacc +low,vhigh,3,more,small,low,unacc +med,med,4,4,big,low,unacc +med,vhigh,2,4,med,low,unacc +med,med,3,more,med,high,vgood +med,vhigh,3,4,med,high,acc +low,med,2,4,big,high,vgood +high,vhigh,5more,more,big,low,unacc +vhigh,med,3,more,big,med,acc +high,med,3,4,small,low,unacc +vhigh,vhigh,2,2,big,high,unacc +vhigh,vhigh,5more,4,small,med,unacc +high,high,3,2,small,low,unacc +low,low,3,4,small,low,unacc +low,low,4,2,med,med,unacc +vhigh,vhigh,5more,more,big,low,unacc +low,med,3,more,med,high,vgood +low,med,2,4,small,high,good +med,high,4,4,small,med,unacc +high,high,2,2,small,med,unacc +low,vhigh,2,2,med,low,unacc +vhigh,low,5more,4,med,low,unacc +high,med,4,2,small,med,unacc +high,vhigh,2,2,small,low,unacc +med,low,3,more,big,low,unacc +high,high,3,4,small,high,acc +high,high,2,more,small,low,unacc +low,low,4,4,small,low,unacc +low,med,3,more,med,med,good +vhigh,med,2,2,med,med,unacc +vhigh,med,2,more,med,low,unacc +low,low,3,more,big,med,good +vhigh,med,4,2,big,low,unacc +vhigh,high,5more,more,big,low,unacc +high,high,4,more,small,high,acc +med,med,4,2,small,high,unacc +vhigh,vhigh,2,4,big,high,unacc +low,med,3,more,big,low,unacc +med,low,4,4,small,high,good +high,high,4,more,big,high,acc +med,med,3,2,big,low,unacc +low,high,5more,2,small,high,unacc +low,med,3,2,big,high,unacc +high,high,3,4,big,high,acc +high,low,2,2,small,med,unacc +high,vhigh,4,4,big,low,unacc +low,vhigh,4,more,med,med,acc +high,med,4,4,med,med,acc +vhigh,med,4,2,small,high,unacc +low,vhigh,3,more,big,high,acc +med,high,4,4,small,high,acc +high,vhigh,2,2,med,high,unacc +med,med,2,more,med,med,acc +vhigh,high,3,4,big,med,unacc +vhigh,high,5more,4,big,med,unacc +med,med,4,more,small,high,acc +med,low,5more,2,med,med,unacc +med,vhigh,4,more,med,low,unacc +vhigh,vhigh,2,more,small,high,unacc +vhigh,high,3,4,med,high,unacc +low,vhigh,4,2,med,med,unacc +med,vhigh,4,more,small,med,unacc +high,high,4,more,med,low,unacc +low,vhigh,2,more,big,high,acc +vhigh,med,3,more,big,high,acc +low,med,5more,2,big,low,unacc +low,vhigh,5more,more,med,med,acc +high,vhigh,4,2,med,low,unacc +high,high,5more,more,med,high,acc +vhigh,low,5more,4,med,high,acc +high,vhigh,5more,more,med,med,unacc +high,med,2,2,small,low,unacc +med,high,5more,more,small,low,unacc +med,med,4,more,big,low,unacc +low,med,4,more,small,med,acc +low,vhigh,3,more,big,low,unacc +high,low,5more,more,med,med,acc +vhigh,high,4,2,big,low,unacc +med,low,5more,2,small,low,unacc +vhigh,vhigh,5more,2,small,med,unacc +med,low,3,2,med,low,unacc +med,med,5more,more,big,med,acc +high,vhigh,4,more,small,med,unacc +med,med,5more,2,big,low,unacc +vhigh,med,3,2,med,low,unacc +high,low,4,4,big,high,acc +high,vhigh,3,more,med,high,unacc +vhigh,high,3,2,med,high,unacc +med,low,3,2,med,med,unacc +vhigh,high,3,2,big,low,unacc +vhigh,low,4,2,med,low,unacc +vhigh,high,4,2,med,low,unacc +med,high,4,4,big,low,unacc +vhigh,high,2,4,small,low,unacc +vhigh,med,5more,more,big,high,acc +med,med,2,2,big,high,unacc +med,high,4,2,med,med,unacc +med,high,2,2,med,high,unacc +med,low,2,4,small,low,unacc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..403e4648dc3b3c177525a76273864fc4069db6b4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/staged/public/val.csv @@ -0,0 +1,173 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,5more,more,med,med,unacc +vhigh,high,2,4,small,med,unacc +high,high,5more,more,med,med,acc +low,high,3,2,med,med,unacc +med,med,3,2,med,med,unacc +med,med,5more,more,big,high,vgood +vhigh,high,2,4,med,low,unacc +high,vhigh,2,4,med,high,unacc +high,high,4,4,med,high,acc +vhigh,low,4,4,small,high,acc +vhigh,med,5more,more,med,low,unacc +med,high,2,more,big,med,acc +low,vhigh,4,2,big,low,unacc +med,med,4,2,med,high,unacc +low,med,2,2,small,low,unacc +high,high,3,more,small,low,unacc +med,vhigh,4,4,med,high,acc +high,high,2,2,med,med,unacc +high,low,3,4,big,high,acc +vhigh,vhigh,2,2,med,high,unacc +high,low,2,more,med,low,unacc +vhigh,low,2,4,med,high,acc +low,high,4,4,small,high,acc +low,med,5more,4,big,med,good +high,vhigh,2,2,big,low,unacc +med,high,2,4,med,high,acc +low,high,4,2,small,med,unacc +high,low,4,more,med,high,acc +vhigh,low,2,4,big,high,acc +high,vhigh,3,more,big,high,unacc +low,low,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,med,unacc +med,med,3,2,small,med,unacc +low,vhigh,3,4,med,med,unacc +vhigh,vhigh,5more,more,med,high,unacc +vhigh,high,5more,4,med,low,unacc +med,med,3,more,med,low,unacc +med,vhigh,3,4,big,high,acc +vhigh,high,3,more,small,high,unacc +high,vhigh,4,more,big,high,unacc +med,vhigh,5more,2,med,low,unacc +low,high,5more,2,big,high,unacc +vhigh,low,3,more,big,med,acc +low,med,4,2,med,med,unacc +vhigh,med,4,more,small,low,unacc +med,vhigh,4,2,small,med,unacc +low,low,3,more,small,high,good +low,high,3,more,small,low,unacc +vhigh,low,4,4,big,low,unacc +high,vhigh,4,more,big,low,unacc +vhigh,med,2,2,big,high,unacc +high,med,3,more,small,high,acc +high,low,4,4,big,low,unacc +vhigh,high,2,4,big,high,unacc +vhigh,high,5more,4,med,med,unacc +low,vhigh,3,2,small,med,unacc +low,vhigh,3,4,big,med,acc +low,vhigh,5more,2,med,low,unacc +vhigh,high,2,2,med,low,unacc +med,vhigh,5more,4,med,low,unacc +high,low,5more,2,med,high,unacc +med,vhigh,2,2,med,med,unacc +high,med,4,more,big,low,unacc +med,vhigh,2,more,small,med,unacc +low,vhigh,4,2,small,low,unacc +low,low,4,2,small,high,unacc +vhigh,high,5more,2,med,high,unacc +vhigh,low,4,4,med,low,unacc +high,low,4,more,big,low,unacc +low,high,3,more,med,med,acc +high,vhigh,4,4,med,low,unacc +med,vhigh,5more,more,big,low,unacc +med,med,5more,more,small,high,acc +med,med,5more,4,small,low,unacc +vhigh,med,4,2,small,med,unacc +low,high,5more,4,med,low,unacc +high,vhigh,2,2,big,med,unacc +med,high,2,more,med,high,acc +low,vhigh,4,more,med,low,unacc +high,high,3,2,med,med,unacc +high,vhigh,4,2,small,high,unacc +med,high,5more,2,small,low,unacc +low,high,4,4,med,high,vgood +high,med,3,2,small,high,unacc +vhigh,vhigh,4,4,small,high,unacc +vhigh,high,3,2,med,med,unacc +high,vhigh,3,4,small,med,unacc +vhigh,high,2,4,med,med,unacc +med,low,5more,more,big,low,unacc +low,high,3,more,small,med,acc +vhigh,high,3,4,small,high,unacc +vhigh,vhigh,2,4,big,low,unacc +low,low,4,more,med,med,good +med,low,2,more,small,low,unacc +high,vhigh,3,4,med,med,unacc +med,med,4,2,small,med,unacc +med,low,2,4,big,high,vgood +vhigh,vhigh,3,4,big,high,unacc +high,med,3,more,small,low,unacc +vhigh,high,2,more,big,low,unacc +high,vhigh,3,2,small,high,unacc +high,vhigh,4,more,med,med,unacc +vhigh,med,3,2,med,high,unacc +med,vhigh,4,2,big,med,unacc +med,high,5more,2,big,med,unacc +med,vhigh,3,2,big,med,unacc +high,low,2,4,small,low,unacc +low,low,4,more,big,high,vgood +low,vhigh,4,more,big,high,acc +low,low,4,4,big,low,unacc +high,high,5more,more,small,low,unacc +low,high,4,2,med,low,unacc +vhigh,low,5more,2,big,med,unacc +low,high,2,4,small,low,unacc +low,low,3,more,med,med,good +low,med,2,4,big,med,good +high,vhigh,2,2,small,high,unacc +med,vhigh,2,2,med,low,unacc +med,low,4,2,small,med,unacc +med,med,2,2,small,med,unacc +low,med,5more,2,small,high,unacc +vhigh,low,2,4,big,low,unacc +med,med,3,more,small,med,acc +med,high,2,2,small,high,unacc +low,vhigh,4,2,small,high,unacc +vhigh,med,3,more,small,high,acc +vhigh,med,3,4,big,low,unacc +med,med,2,4,small,high,acc +vhigh,high,3,2,big,med,unacc +med,high,2,more,big,low,unacc +low,high,5more,4,med,high,vgood +vhigh,high,4,4,med,high,unacc +low,low,3,4,big,high,vgood +low,med,5more,4,med,low,unacc +high,vhigh,4,2,big,high,unacc +vhigh,high,2,4,small,high,unacc +high,vhigh,4,2,med,high,unacc +high,high,5more,4,small,low,unacc +high,med,5more,4,big,low,unacc +vhigh,med,2,4,med,high,acc +vhigh,vhigh,3,4,med,med,unacc +med,high,3,2,small,high,unacc +high,med,2,4,big,med,acc +med,low,3,4,med,low,unacc +vhigh,vhigh,2,2,small,high,unacc +med,med,2,2,big,med,unacc +med,med,2,more,big,med,acc +vhigh,low,2,2,big,med,unacc +high,low,2,4,small,med,unacc +low,med,5more,more,med,med,good +low,low,5more,2,small,med,unacc +low,low,2,4,small,high,good +low,med,3,2,small,low,unacc +low,vhigh,2,4,med,med,unacc +high,high,4,more,small,low,unacc +med,low,5more,4,med,low,unacc +vhigh,med,2,2,small,high,unacc +med,high,4,4,med,high,acc +vhigh,low,3,4,big,low,unacc +med,high,4,2,small,low,unacc +high,high,2,2,small,low,unacc +low,high,4,4,big,med,acc +low,high,4,more,med,low,unacc +vhigh,vhigh,2,2,big,med,unacc +med,vhigh,4,4,med,low,unacc +vhigh,low,2,2,small,low,unacc +med,vhigh,3,2,small,low,unacc +high,high,4,2,big,high,unacc +low,low,5more,more,big,med,good +low,low,4,4,small,high,good +low,vhigh,2,4,big,high,acc +low,low,2,4,big,med,good diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/train_20260321_060616.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/train_20260321_060616.log new file mode 100644 index 0000000000000000000000000000000000000000..009d5a2e1f3682791631da80f97da651ef372086 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/train_20260321_060616.log @@ -0,0 +1,4 @@ +[ARF] Training on 1382 rows, 7 cols +Initial accuracy is 0.5741678726483358 +Iteration number 1 reached accuracy of 0.40123010130246023. +[ARF] Model saved -> /work/output-SpecializedModels/c2/arf/arf-c2-20260321_060616/arf_model.pkl diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/_arf_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..908f70b9e07ef0a9c3c497cc5d8a03b9acfbe414 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/_arf_generate.py @@ -0,0 +1,23 @@ +import pickle +import pandas as pd + +n_target = int(1382) +with open("/work/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/arf_model.pkl", "rb") as f: + model = pickle.load(f) +syn = model.forge(n=n_target) +syn = syn.reset_index(drop=True) +if len(syn) > n_target: + syn = syn.iloc[:n_target] +elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = model.forge(n=max(need, 1)).reset_index(drop=True) + if len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] +syn.to_csv("/work/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/arf-c2-1382-20260422_055931.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/arf-c2-1382-20260422_055931.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/_arf_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..985e83bcd19244dea605415f1d0e1b250ee14a6c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/arf_model.pkl") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/gen_20260422_055931.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/gen_20260422_055931.log new file mode 100644 index 0000000000000000000000000000000000000000..ed2955af56c2d247e3fab28b8bd1fff10d2810a0 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/gen_20260422_055931.log @@ -0,0 +1,15 @@ +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +[ARF] Generated 1382 rows (requested 1382) -> /work/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/arf-c2-1382-20260422_055931.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa654607f22f68d2aaa5e57809017787b5eb02b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..53925f3794956c767f7d32bcd61722a6b458c077 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..51f4e6c7af17a49ac7aeac14b96bd41f3eb8309c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c2", + "model": "arf", + "run_id": "arf-c2-20260422_055912", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/arf-c2-1382-20260422_055931.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/arf_model.pkl" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/arf/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..641b68d3754c5bb624ae03f0cbf53e8e4cd56f19 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/arf/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/arf/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..aab4d453a3425d4546fe886562ddd1d4cc8aa231 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/arf/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b3cf25081f629b35185af44e432085a72a9bb40b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/test.csv @@ -0,0 +1,175 @@ +buying,maint,doors,persons,lug_boot,safety,class +low,med,2,more,big,high,vgood +med,med,2,more,small,high,unacc +low,vhigh,5more,more,small,high,acc +vhigh,med,2,more,small,med,unacc +low,high,4,more,small,med,acc +low,med,4,2,med,high,unacc +vhigh,vhigh,2,more,big,low,unacc +med,med,4,2,small,low,unacc +high,vhigh,5more,2,small,high,unacc +med,med,2,2,med,med,unacc +med,vhigh,5more,4,med,high,acc +med,low,3,2,big,low,unacc +high,low,2,more,big,high,acc +high,low,3,2,big,low,unacc +vhigh,high,2,more,med,high,unacc +med,low,3,2,big,med,unacc +low,low,5more,4,small,high,good +low,vhigh,5more,4,big,high,acc +vhigh,low,2,2,med,med,unacc +med,low,5more,4,big,high,vgood +vhigh,med,5more,4,big,high,acc +vhigh,med,2,4,small,low,unacc +vhigh,vhigh,5more,4,big,med,unacc +low,med,3,4,small,low,unacc +vhigh,high,4,more,big,med,unacc +med,high,3,4,med,low,unacc +med,high,4,more,small,low,unacc +vhigh,med,4,4,med,high,acc +low,med,5more,more,big,med,good +high,med,5more,4,med,med,acc +high,low,4,2,big,high,unacc +med,low,2,2,big,high,unacc +med,vhigh,2,4,med,high,acc +med,low,2,4,small,med,acc +low,med,2,more,small,low,unacc +high,vhigh,5more,more,big,high,unacc +med,med,2,more,big,low,unacc +low,low,5more,2,small,high,unacc +low,med,2,4,med,high,good +high,vhigh,4,more,small,high,unacc +low,low,5more,more,small,med,acc +high,high,2,2,med,low,unacc +vhigh,med,4,more,med,high,acc +med,vhigh,4,more,med,med,acc +low,vhigh,2,more,med,low,unacc +high,low,4,2,small,med,unacc +med,high,3,more,big,low,unacc +low,vhigh,3,more,small,high,acc +high,vhigh,2,2,med,med,unacc +high,high,5more,more,big,low,unacc +low,high,4,4,med,med,acc +med,med,5more,2,small,med,unacc +high,vhigh,2,2,small,med,unacc +vhigh,high,3,2,small,med,unacc +high,high,2,4,small,low,unacc +high,low,4,4,med,low,unacc +high,high,5more,more,big,high,acc +low,low,5more,4,small,med,acc +high,vhigh,3,4,small,high,unacc +vhigh,high,2,2,big,med,unacc +low,med,4,more,big,low,unacc +low,med,4,2,big,high,unacc +high,med,2,4,big,high,acc +low,vhigh,5more,more,big,high,acc +high,vhigh,2,more,small,low,unacc +med,med,4,2,big,med,unacc +low,high,2,2,big,low,unacc +low,vhigh,2,4,big,low,unacc +high,high,2,4,med,med,unacc +high,low,2,more,med,med,unacc +med,vhigh,5more,2,small,high,unacc +vhigh,low,2,4,small,high,acc +low,low,5more,more,med,low,unacc +low,high,5more,4,small,low,unacc +med,med,2,4,med,high,acc +vhigh,low,3,2,small,low,unacc +low,vhigh,2,2,med,high,unacc +med,low,4,2,big,low,unacc +vhigh,high,3,4,med,low,unacc +low,vhigh,3,2,med,high,unacc +low,vhigh,5more,more,med,high,acc +low,high,3,2,big,med,unacc +high,high,2,2,big,med,unacc +low,vhigh,4,more,med,high,acc +vhigh,low,5more,more,big,med,acc +high,med,4,more,big,high,acc +high,low,2,2,med,low,unacc +vhigh,low,2,4,small,med,unacc +high,med,5more,more,small,med,unacc +low,vhigh,2,2,big,low,unacc +med,vhigh,4,4,small,high,acc +low,low,4,4,small,med,acc +low,low,4,2,med,low,unacc +vhigh,high,5more,more,small,low,unacc +low,low,5more,2,big,low,unacc +vhigh,high,4,2,small,high,unacc +high,high,3,more,big,high,acc +low,med,4,more,small,low,unacc +high,vhigh,3,2,big,high,unacc +low,vhigh,4,2,med,high,unacc +vhigh,vhigh,5more,4,med,med,unacc +vhigh,high,3,2,big,high,unacc +low,high,3,4,med,low,unacc +vhigh,low,4,4,big,med,acc +med,med,5more,more,med,med,acc +high,med,5more,4,med,low,unacc +med,low,4,more,big,med,good +med,low,5more,more,small,med,acc +high,high,4,2,big,med,unacc +med,med,3,more,big,low,unacc +vhigh,high,4,2,small,low,unacc +high,low,2,more,small,high,unacc +vhigh,med,3,4,med,med,unacc +med,med,2,more,small,med,unacc +med,vhigh,4,more,med,high,acc +low,high,5more,4,small,med,acc +vhigh,vhigh,5more,2,big,high,unacc +low,low,3,2,big,low,unacc +high,high,2,2,small,high,unacc +med,low,3,more,med,med,good +high,med,4,2,med,low,unacc +high,med,5more,2,big,med,unacc +vhigh,high,5more,4,small,med,unacc +high,low,2,more,med,high,acc +vhigh,high,5more,2,small,med,unacc +low,low,5more,4,big,high,vgood +high,med,3,4,big,low,unacc +low,med,3,more,big,med,good +high,vhigh,2,4,small,low,unacc +vhigh,med,5more,more,med,med,acc +low,low,4,more,small,med,acc +high,med,3,more,med,med,acc +med,vhigh,2,2,small,high,unacc +low,high,2,more,big,high,vgood +vhigh,low,2,2,med,low,unacc +low,low,3,2,med,med,unacc +low,med,3,4,big,med,good +vhigh,vhigh,2,4,med,high,unacc +low,low,3,4,small,high,good +high,high,3,2,med,low,unacc +med,low,2,more,small,med,unacc +med,vhigh,4,2,small,high,unacc +high,vhigh,2,more,small,high,unacc +high,low,5more,more,med,high,acc +low,low,5more,4,med,high,vgood +low,high,3,2,big,low,unacc +low,vhigh,3,2,big,high,unacc +low,high,4,4,small,low,unacc +vhigh,low,5more,2,med,low,unacc +med,med,4,4,big,med,acc +vhigh,vhigh,4,2,small,med,unacc +med,low,3,more,small,low,unacc +med,high,4,4,small,low,unacc +high,vhigh,3,more,small,low,unacc +high,vhigh,2,4,big,med,unacc +vhigh,high,5more,2,med,low,unacc +vhigh,vhigh,4,2,big,high,unacc +vhigh,vhigh,4,4,med,low,unacc +med,vhigh,2,2,small,med,unacc +med,low,2,more,med,med,acc +vhigh,high,4,4,big,high,unacc +med,med,3,4,small,med,acc +low,med,2,2,med,high,unacc +low,vhigh,5more,4,small,low,unacc +vhigh,high,5more,more,med,low,unacc +low,high,5more,more,big,low,unacc +vhigh,med,4,4,big,med,acc +high,vhigh,2,more,big,high,unacc +high,vhigh,4,4,big,med,unacc +high,high,2,more,big,low,unacc +low,med,2,2,big,med,unacc +vhigh,vhigh,3,more,big,med,unacc +vhigh,med,2,4,med,med,unacc +low,vhigh,2,4,med,high,acc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a7dd506a8ec04e784f7aa4b9fe95bca40b4e9722 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/train.csv @@ -0,0 +1,1383 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,2,2,small,low,unacc +med,low,5more,4,small,high,good +med,med,3,2,small,low,unacc +med,med,4,4,small,med,acc +high,low,2,4,big,med,acc +med,vhigh,5more,2,small,low,unacc +high,med,2,more,small,low,unacc +low,med,5more,more,small,high,good +med,high,5more,4,small,high,acc +med,vhigh,3,2,med,med,unacc +vhigh,low,3,more,big,high,acc +vhigh,high,3,2,small,high,unacc +low,low,4,more,small,high,good +vhigh,low,4,more,small,med,unacc +low,high,2,4,med,med,acc +low,low,2,4,big,high,vgood +low,med,4,more,med,med,good +high,med,5more,2,big,high,unacc +med,vhigh,2,4,big,low,unacc +vhigh,med,4,more,med,low,unacc +low,low,2,4,small,low,unacc +low,high,4,4,big,high,vgood +low,high,3,2,med,high,unacc +vhigh,vhigh,5more,more,small,med,unacc +low,med,4,4,med,med,good +vhigh,low,3,4,small,low,unacc +vhigh,vhigh,4,2,big,med,unacc +high,vhigh,4,2,small,med,unacc +vhigh,low,4,more,med,med,acc +med,med,2,4,small,med,acc +low,high,5more,4,small,high,acc +vhigh,high,2,more,small,low,unacc +med,high,5more,more,big,med,acc +vhigh,med,3,more,med,low,unacc +low,low,4,2,small,low,unacc +med,high,2,2,big,high,unacc +low,med,3,2,med,high,unacc +low,vhigh,2,4,big,med,acc +low,med,4,2,small,high,unacc +med,vhigh,4,2,big,high,unacc +med,high,2,more,small,med,unacc +med,low,3,2,med,high,unacc +med,high,2,more,small,low,unacc +vhigh,med,3,4,big,high,acc +low,high,2,4,med,low,unacc +low,low,2,more,med,high,good +vhigh,med,5more,4,small,high,acc +med,low,4,more,small,med,acc +vhigh,low,4,4,small,med,unacc +high,med,2,2,small,med,unacc +low,vhigh,2,more,big,med,acc +med,vhigh,4,4,med,med,acc +vhigh,high,2,more,big,high,unacc +vhigh,vhigh,5more,more,small,low,unacc +high,high,2,more,med,low,unacc +low,vhigh,5more,more,small,med,unacc +med,high,2,2,med,low,unacc +vhigh,low,3,4,small,high,acc +low,low,3,4,big,low,unacc +low,low,4,2,big,low,unacc +vhigh,vhigh,2,more,small,med,unacc +vhigh,vhigh,5more,4,small,high,unacc +med,low,2,2,med,med,unacc +vhigh,med,4,more,big,low,unacc +low,low,5more,more,big,low,unacc +med,high,5more,2,small,med,unacc +high,med,5more,2,small,med,unacc +high,med,3,2,small,low,unacc +low,low,4,2,big,high,unacc +med,med,5more,4,med,high,vgood +low,vhigh,4,4,small,high,acc +med,high,3,2,med,high,unacc +vhigh,high,5more,4,small,high,unacc +high,vhigh,5more,2,med,high,unacc +vhigh,vhigh,3,more,small,med,unacc +high,med,5more,more,med,med,acc +vhigh,low,5more,more,small,low,unacc +vhigh,med,2,more,small,high,unacc +med,vhigh,5more,more,med,high,acc +med,low,3,more,med,high,vgood +high,high,4,2,med,med,unacc +high,med,5more,2,med,high,unacc +vhigh,high,3,2,med,low,unacc +med,med,5more,2,med,med,unacc +low,high,2,more,med,low,unacc +low,vhigh,2,2,small,low,unacc +med,med,5more,more,med,low,unacc +med,high,2,4,med,low,unacc +high,high,4,more,big,low,unacc +high,low,4,4,big,med,acc +med,med,4,more,big,med,acc +low,high,4,4,small,med,acc +vhigh,med,2,more,med,high,acc +med,med,5more,more,small,low,unacc +high,low,3,more,med,high,acc +high,high,4,2,med,low,unacc +low,low,2,more,med,low,unacc +vhigh,vhigh,3,2,small,high,unacc +vhigh,vhigh,2,2,big,low,unacc +med,med,3,more,big,high,vgood +med,low,5more,2,med,low,unacc +low,med,2,4,med,med,acc +high,med,5more,more,big,high,acc +med,low,5more,more,med,med,good +med,high,3,2,med,med,unacc +med,high,5more,more,big,low,unacc +vhigh,med,3,4,small,high,acc +low,low,3,2,small,high,unacc +high,med,3,more,big,low,unacc +med,vhigh,3,4,med,med,unacc +high,high,5more,more,small,med,unacc +med,low,4,2,med,low,unacc +vhigh,high,2,more,small,med,unacc +low,med,2,2,med,low,unacc +vhigh,low,2,more,small,med,unacc +vhigh,vhigh,4,2,small,low,unacc +med,low,4,more,med,low,unacc +med,high,3,4,small,med,unacc +med,vhigh,2,more,big,low,unacc +vhigh,high,4,4,big,low,unacc +med,vhigh,4,2,small,low,unacc +vhigh,med,5more,2,small,med,unacc +vhigh,vhigh,3,2,big,high,unacc +med,high,3,more,small,high,acc +med,vhigh,3,more,small,low,unacc +low,vhigh,3,2,small,low,unacc +vhigh,high,2,more,big,med,unacc +low,low,5more,2,small,low,unacc +low,med,2,2,big,high,unacc +med,low,5more,more,med,low,unacc +high,high,5more,2,big,med,unacc +high,med,5more,4,small,high,acc +low,vhigh,3,more,big,med,acc +low,med,5more,2,big,high,unacc +med,med,3,4,big,high,vgood +low,high,3,4,small,high,acc +high,low,3,more,med,low,unacc +high,low,5more,2,small,high,unacc +med,low,5more,more,med,high,vgood +low,med,4,4,small,med,acc +low,med,3,4,small,high,good +med,med,5more,2,small,high,unacc +low,vhigh,3,4,med,high,acc +low,med,5more,2,med,med,unacc +low,low,5more,4,med,med,good +vhigh,high,5more,more,small,med,unacc +vhigh,med,2,2,med,high,unacc +vhigh,high,3,4,small,med,unacc +high,high,2,4,med,high,acc +vhigh,med,3,2,small,low,unacc +high,low,3,2,big,med,unacc +vhigh,low,4,more,big,low,unacc +low,high,3,2,small,med,unacc +vhigh,high,4,more,small,high,unacc +low,high,2,4,small,med,acc +med,low,3,more,small,high,good +high,low,4,4,med,high,acc +vhigh,vhigh,4,4,big,low,unacc +med,low,4,4,big,med,good +low,med,3,2,big,low,unacc +low,low,4,2,small,med,unacc +med,low,5more,2,small,high,unacc +low,high,4,more,small,low,unacc +high,high,3,more,big,med,acc +med,high,5more,more,med,low,unacc +vhigh,high,4,4,small,high,unacc +med,low,3,more,small,med,acc +med,low,3,2,big,high,unacc +vhigh,low,3,more,med,low,unacc +med,med,4,more,med,low,unacc +med,vhigh,2,2,med,high,unacc +high,med,5more,2,big,low,unacc +vhigh,vhigh,3,2,small,med,unacc +high,low,3,more,small,low,unacc +med,high,3,2,small,low,unacc +low,high,5more,4,big,high,vgood +med,low,4,more,med,high,vgood +med,high,3,more,small,low,unacc +vhigh,med,4,4,med,low,unacc +low,high,2,4,med,high,acc +vhigh,low,4,2,small,med,unacc +vhigh,low,3,more,small,low,unacc +high,high,3,2,big,med,unacc +med,low,4,4,small,med,acc +med,vhigh,3,more,small,med,unacc +med,high,2,4,big,med,acc +low,vhigh,3,4,med,low,unacc +med,vhigh,5more,more,med,med,acc +vhigh,high,5more,more,big,med,unacc +high,med,2,more,big,high,acc +high,low,4,more,small,high,acc +low,vhigh,4,2,big,high,unacc +low,high,4,more,small,high,acc +high,high,3,more,small,high,acc +vhigh,high,5more,2,big,low,unacc +high,med,3,4,small,high,acc +low,high,2,4,small,high,acc +high,med,3,more,med,low,unacc +low,low,5more,2,med,med,unacc +vhigh,low,3,2,big,med,unacc +low,high,4,2,small,high,unacc +high,high,3,4,small,low,unacc +vhigh,low,4,2,big,high,unacc +med,vhigh,5more,4,big,med,acc +low,high,3,more,med,low,unacc +low,low,3,2,small,low,unacc +low,low,2,more,small,med,unacc +vhigh,low,3,4,med,high,acc +high,low,3,2,med,high,unacc +med,high,5more,2,small,high,unacc +low,med,2,2,small,med,unacc +med,high,4,more,small,high,acc +high,high,5more,4,big,med,acc +low,med,5more,more,small,low,unacc +low,high,2,2,med,low,unacc +low,low,2,2,med,low,unacc +vhigh,high,2,2,small,high,unacc +high,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,big,med,unacc +low,high,3,more,big,low,unacc +high,vhigh,3,2,med,high,unacc +vhigh,low,5more,more,big,low,unacc +high,low,4,2,small,low,unacc +vhigh,high,5more,more,med,high,unacc +vhigh,vhigh,5more,2,big,low,unacc +low,high,5more,more,small,med,acc +high,med,4,more,big,med,acc +high,high,2,more,med,med,unacc +high,high,5more,2,big,high,unacc +med,vhigh,4,2,big,low,unacc +low,low,4,more,med,high,vgood +high,med,2,4,med,med,unacc +high,low,5more,4,small,high,acc +high,vhigh,4,4,med,med,unacc +low,med,4,4,small,low,unacc +vhigh,high,4,2,med,high,unacc +med,vhigh,2,more,med,high,acc +vhigh,med,3,more,med,high,acc +low,vhigh,2,more,small,low,unacc +high,vhigh,5more,4,big,med,unacc +med,med,3,4,small,low,unacc +high,high,5more,more,med,low,unacc +med,med,2,2,small,low,unacc +high,low,5more,more,small,med,unacc +low,vhigh,2,4,med,low,unacc +high,high,5more,4,med,high,acc +high,med,2,more,big,low,unacc +vhigh,med,4,more,small,med,unacc +med,low,2,more,big,low,unacc +med,med,4,2,med,med,unacc +high,low,2,more,small,med,unacc +vhigh,high,4,more,med,low,unacc +low,vhigh,5more,2,med,med,unacc +high,vhigh,5more,more,med,low,unacc +med,high,3,2,big,low,unacc +vhigh,high,3,more,big,med,unacc +high,vhigh,3,more,big,low,unacc +med,med,3,4,med,high,acc +low,low,4,4,med,low,unacc +vhigh,med,5more,more,big,low,unacc +high,med,3,2,big,high,unacc +high,med,4,2,small,low,unacc +high,high,3,4,med,low,unacc +high,high,2,more,small,high,unacc +low,low,2,2,med,med,unacc +med,vhigh,2,4,small,high,acc +med,med,4,2,big,high,unacc +vhigh,high,5more,4,big,high,unacc +low,vhigh,4,2,small,med,unacc +med,vhigh,4,more,small,low,unacc +med,vhigh,3,more,big,med,acc +high,med,4,2,big,high,unacc +high,low,3,2,big,high,unacc +vhigh,med,3,more,big,low,unacc +vhigh,vhigh,2,more,med,high,unacc +low,high,2,more,small,high,unacc +low,high,2,more,small,low,unacc +high,low,3,4,med,low,unacc +med,high,3,4,big,low,unacc +low,high,5more,more,med,med,acc +low,low,2,2,med,high,unacc +med,low,5more,4,med,high,vgood +vhigh,med,3,2,small,med,unacc +vhigh,low,3,more,med,high,acc +high,med,2,4,small,high,acc +vhigh,med,4,2,small,low,unacc +vhigh,med,2,2,small,low,unacc +low,high,3,4,med,high,acc +high,med,4,4,small,med,unacc +high,vhigh,3,4,big,med,unacc +low,low,5more,more,med,high,vgood +vhigh,vhigh,2,4,small,low,unacc +med,med,2,more,big,high,vgood +med,low,3,more,big,high,vgood +med,high,3,more,med,high,acc +high,vhigh,3,more,small,med,unacc +vhigh,low,5more,more,med,high,acc +low,low,4,4,big,high,vgood +med,low,3,4,small,high,good +high,med,5more,2,small,high,unacc +low,vhigh,2,4,small,high,acc +high,vhigh,3,more,small,high,unacc +med,high,2,more,med,med,unacc +vhigh,vhigh,4,more,med,low,unacc +med,high,4,4,med,low,unacc +med,vhigh,5more,more,small,low,unacc +high,vhigh,5more,2,small,med,unacc +vhigh,high,4,2,big,med,unacc +vhigh,low,5more,4,small,high,acc +low,med,5more,2,big,med,unacc +med,high,3,4,big,med,acc +med,high,4,more,small,med,unacc +high,low,5more,more,small,high,acc +vhigh,vhigh,3,4,small,low,unacc +med,high,5more,more,small,med,unacc +high,high,5more,2,small,med,unacc +low,high,4,2,big,high,unacc +low,med,5more,4,big,high,vgood +med,low,2,4,med,med,acc +low,vhigh,3,4,big,high,acc +med,vhigh,3,more,big,low,unacc +med,vhigh,5more,2,big,low,unacc +med,high,2,2,med,med,unacc +vhigh,low,4,more,med,high,acc +vhigh,low,3,2,med,med,unacc +vhigh,vhigh,4,4,small,low,unacc +med,vhigh,3,2,big,high,unacc +low,high,5more,more,big,med,acc +med,med,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,high,unacc +high,vhigh,4,2,big,low,unacc +high,high,2,2,big,high,unacc +low,med,4,2,small,low,unacc +low,low,3,4,small,med,acc +high,med,3,more,med,high,acc +low,high,3,2,small,high,unacc +vhigh,low,5more,2,small,med,unacc +high,low,4,4,med,med,acc +vhigh,med,2,4,med,low,unacc +vhigh,high,2,2,med,med,unacc +low,vhigh,4,4,big,low,unacc +low,vhigh,2,more,med,high,acc +med,low,2,4,med,low,unacc +med,low,2,more,med,high,good +vhigh,med,5more,more,small,med,unacc +med,high,5more,2,big,low,unacc +med,med,4,more,med,med,acc +med,high,3,more,big,high,acc +med,high,2,2,big,med,unacc +med,low,4,2,med,high,unacc +med,high,4,2,med,low,unacc +vhigh,high,5more,more,big,high,unacc +high,high,5more,2,big,low,unacc +med,high,4,2,small,med,unacc +low,vhigh,4,4,med,high,acc +vhigh,low,4,4,big,high,acc +med,vhigh,5more,more,big,high,acc +vhigh,vhigh,4,4,big,med,unacc +high,med,5more,more,big,low,unacc +high,high,5more,4,med,low,unacc +low,high,4,more,med,med,acc +vhigh,low,3,4,big,med,acc +vhigh,med,3,4,small,med,unacc +high,high,3,4,med,high,acc +med,low,5more,4,big,low,unacc +low,med,3,more,med,low,unacc +low,vhigh,5more,4,big,med,acc +med,high,5more,more,med,med,acc +low,low,4,2,med,high,unacc +low,med,3,2,med,low,unacc +low,high,2,4,big,low,unacc +low,low,5more,2,med,high,unacc +high,vhigh,5more,4,small,med,unacc +med,high,4,4,big,high,acc +vhigh,vhigh,3,2,big,low,unacc +med,high,5more,2,med,med,unacc +vhigh,high,2,2,big,low,unacc +med,med,4,4,med,high,vgood +med,high,3,more,med,low,unacc +low,high,2,more,med,med,acc +low,med,4,2,med,low,unacc +med,vhigh,5more,4,big,low,unacc +vhigh,med,2,more,big,high,acc +low,vhigh,5more,4,small,high,acc +vhigh,low,5more,2,small,low,unacc +high,med,2,4,big,low,unacc +vhigh,high,5more,2,small,high,unacc +med,low,4,2,big,high,unacc +low,med,2,2,med,med,unacc +med,med,2,4,big,high,vgood +low,high,4,2,med,high,unacc +high,med,4,more,med,low,unacc +low,high,3,4,small,med,acc +med,vhigh,4,4,big,med,acc +high,low,4,4,small,high,acc +high,high,2,4,small,med,unacc +low,med,2,more,med,med,acc +med,vhigh,5more,2,med,high,unacc +low,med,5more,4,med,high,vgood +low,high,4,4,med,low,unacc +low,low,2,4,med,high,good +high,vhigh,2,2,med,low,unacc +high,vhigh,4,2,small,low,unacc +med,vhigh,4,more,big,high,acc +med,high,3,4,small,high,acc +vhigh,low,2,more,med,med,unacc +med,med,5more,4,med,med,acc +high,med,2,2,med,med,unacc +vhigh,high,2,2,big,high,unacc +high,high,2,2,med,high,unacc +high,med,5more,more,big,med,acc +vhigh,vhigh,3,4,med,low,unacc +low,vhigh,4,more,small,low,unacc +vhigh,vhigh,4,2,med,high,unacc +low,low,2,2,big,med,unacc +low,low,4,more,small,low,unacc +low,vhigh,2,4,small,med,unacc +med,med,5more,2,med,low,unacc +low,high,3,more,small,high,acc +high,vhigh,5more,4,med,med,unacc +med,low,3,4,med,med,acc +vhigh,vhigh,5more,2,med,med,unacc +low,vhigh,4,2,big,med,unacc +high,med,4,4,small,high,acc +low,low,3,more,small,low,unacc +vhigh,high,4,more,big,high,unacc +med,vhigh,5more,4,big,high,acc +vhigh,low,4,more,big,med,acc +med,low,2,4,med,high,good +med,high,2,4,big,high,acc +vhigh,vhigh,5more,4,small,low,unacc +med,low,5more,more,small,low,unacc +vhigh,low,4,2,med,high,unacc +med,low,2,more,big,high,vgood +low,high,5more,4,big,low,unacc +high,low,5more,2,small,med,unacc +vhigh,vhigh,4,4,med,high,unacc +vhigh,low,3,more,big,low,unacc +low,low,2,more,big,low,unacc +vhigh,med,5more,2,small,low,unacc +med,vhigh,3,2,big,low,unacc +vhigh,med,2,4,small,med,unacc +med,low,2,4,big,low,unacc +high,low,4,more,big,high,acc +vhigh,vhigh,2,more,med,low,unacc +low,med,5more,4,small,high,good +low,low,5more,2,big,med,unacc +vhigh,vhigh,3,more,med,high,unacc +vhigh,med,5more,more,big,med,acc +high,med,4,more,small,high,acc +low,low,2,more,small,low,unacc +low,low,2,2,big,high,unacc +med,vhigh,4,more,small,high,acc +high,high,3,more,med,med,acc +low,vhigh,5more,2,small,high,unacc +high,high,4,2,small,med,unacc +low,vhigh,4,4,big,med,acc +med,vhigh,3,2,small,med,unacc +low,vhigh,5more,4,big,low,unacc +vhigh,vhigh,5more,4,big,high,unacc +low,med,3,4,big,high,vgood +vhigh,high,2,2,med,high,unacc +med,vhigh,5more,more,med,low,unacc +low,low,2,more,med,med,acc +low,med,5more,more,med,high,vgood +high,med,5more,4,big,med,acc +vhigh,low,5more,2,med,high,unacc +vhigh,low,4,more,small,high,acc +high,vhigh,5more,4,small,high,unacc +low,med,5more,more,small,med,acc +high,vhigh,3,2,med,med,unacc +med,med,2,2,med,low,unacc +high,low,3,more,small,high,acc +med,high,4,more,med,high,acc +vhigh,med,5more,4,med,high,acc +high,high,4,4,small,high,acc +vhigh,vhigh,2,more,big,high,unacc +vhigh,low,4,2,med,med,unacc +med,low,5more,4,big,med,good +vhigh,low,3,2,small,med,unacc +high,med,4,4,med,high,acc +low,vhigh,5more,4,med,med,acc +low,vhigh,5more,more,big,low,unacc +med,high,4,4,big,med,acc +med,low,5more,2,small,med,unacc +high,med,3,2,big,med,unacc +high,med,4,4,big,med,acc +med,med,4,4,small,low,unacc +low,high,5more,2,big,low,unacc +vhigh,low,3,2,big,high,unacc +vhigh,high,3,4,big,high,unacc +high,vhigh,5more,2,med,low,unacc +med,low,4,4,big,low,unacc +low,med,5more,2,med,low,unacc +med,high,3,2,med,low,unacc +med,high,2,more,small,high,unacc +high,low,3,more,big,high,acc +med,vhigh,3,more,small,high,acc +low,vhigh,3,4,small,high,acc +low,low,5more,more,small,low,unacc +med,high,4,more,big,low,unacc +med,low,5more,4,med,med,good +low,med,5more,4,med,med,good +vhigh,med,2,more,small,low,unacc +vhigh,high,2,more,med,low,unacc +med,low,4,more,big,low,unacc +med,vhigh,4,4,small,low,unacc +high,vhigh,4,2,big,med,unacc +low,med,4,2,big,low,unacc +vhigh,high,3,more,small,med,unacc +high,low,5more,4,big,med,acc +med,med,2,2,med,high,unacc +high,high,4,2,med,high,unacc +high,med,2,2,big,high,unacc +high,low,4,2,med,low,unacc +low,med,2,2,small,high,unacc +high,high,2,4,small,high,acc +med,med,2,4,big,low,unacc +vhigh,vhigh,2,4,small,med,unacc +med,high,5more,4,big,med,acc +med,high,4,2,big,med,unacc +med,low,2,2,small,low,unacc +high,low,3,4,med,med,unacc +high,low,2,2,med,med,unacc +low,low,2,4,med,low,unacc +low,high,3,2,small,low,unacc +med,med,5more,4,small,high,acc +vhigh,low,4,4,med,high,acc +vhigh,vhigh,5more,2,small,low,unacc +med,high,2,more,big,high,acc +vhigh,high,4,4,med,med,unacc +vhigh,high,4,more,med,high,unacc +med,low,4,4,med,low,unacc +vhigh,med,3,2,big,high,unacc +med,med,4,more,small,low,unacc +high,vhigh,2,4,small,med,unacc +vhigh,low,4,2,big,low,unacc +med,low,4,4,med,med,good +vhigh,med,5more,2,med,med,unacc +vhigh,vhigh,4,2,med,med,unacc +med,high,3,4,big,high,acc +vhigh,vhigh,3,more,med,low,unacc +high,high,5more,more,big,med,acc +vhigh,med,5more,4,small,med,unacc +vhigh,high,4,4,small,low,unacc +high,vhigh,2,more,med,high,unacc +high,high,3,2,big,low,unacc +vhigh,vhigh,5more,more,small,high,unacc +high,vhigh,2,4,med,med,unacc +vhigh,vhigh,5more,4,med,low,unacc +high,low,5more,4,small,med,unacc +med,med,3,more,med,med,acc +vhigh,med,2,more,big,med,acc +med,high,2,4,med,med,unacc +vhigh,vhigh,3,4,small,med,unacc +high,high,2,4,big,low,unacc +med,vhigh,4,4,small,med,unacc +vhigh,low,2,2,small,med,unacc +high,low,3,4,small,med,unacc +high,low,5more,2,med,med,unacc +vhigh,low,2,4,med,med,unacc +low,high,2,more,med,high,acc +low,med,3,more,small,high,good +vhigh,low,2,more,med,high,acc +low,high,5more,2,med,med,unacc +low,high,5more,more,big,high,vgood +high,low,2,4,med,high,acc +med,med,3,2,med,high,unacc +vhigh,low,5more,4,big,low,unacc +vhigh,high,3,4,med,med,unacc +vhigh,vhigh,2,4,big,med,unacc +med,med,5more,4,big,high,vgood +low,med,4,more,med,high,vgood +high,high,3,2,big,high,unacc +high,vhigh,2,more,small,med,unacc +med,med,2,more,small,low,unacc +vhigh,low,2,4,big,med,acc +low,vhigh,2,2,big,med,unacc +med,low,4,more,small,high,good +high,med,3,2,small,med,unacc +med,vhigh,2,more,big,med,acc +high,low,3,more,big,med,acc +low,low,3,more,big,high,vgood +vhigh,low,4,4,med,med,acc +med,vhigh,2,more,med,med,unacc +med,med,3,more,small,low,unacc +vhigh,vhigh,3,more,small,low,unacc +vhigh,low,5more,4,big,med,acc +med,high,3,4,med,med,unacc +low,vhigh,3,more,med,high,acc +low,low,5more,4,big,med,good +vhigh,med,3,2,small,high,unacc +low,high,3,4,big,high,vgood +vhigh,low,2,2,big,low,unacc +med,low,3,more,big,med,good +vhigh,low,4,4,small,low,unacc +med,med,3,2,small,high,unacc +low,high,5more,2,big,med,unacc +low,low,2,2,small,low,unacc +vhigh,low,3,2,med,low,unacc +high,low,5more,more,med,low,unacc +med,high,5more,4,big,high,acc +low,low,5more,more,small,high,good +low,low,3,4,med,low,unacc +low,med,2,4,big,low,unacc +high,high,4,2,small,low,unacc +high,low,5more,more,big,high,acc +low,med,2,more,big,med,good +med,med,2,2,small,high,unacc +high,low,2,4,med,low,unacc +high,med,2,2,med,high,unacc +high,vhigh,5more,2,big,med,unacc +low,high,2,2,small,med,unacc +vhigh,low,5more,more,small,high,acc +med,vhigh,3,more,big,high,acc +vhigh,vhigh,4,more,small,low,unacc +low,vhigh,4,more,small,high,acc +high,vhigh,5more,2,big,high,unacc +low,med,5more,2,med,high,unacc +med,high,2,2,small,low,unacc +low,vhigh,5more,4,small,med,unacc +low,vhigh,3,more,small,med,unacc +high,med,2,4,small,low,unacc +high,vhigh,3,4,small,low,unacc +low,med,4,4,small,high,good +high,vhigh,3,more,big,med,unacc +high,vhigh,4,4,small,low,unacc +vhigh,low,5more,more,med,low,unacc +vhigh,med,4,4,small,med,unacc +med,low,2,more,med,low,unacc +high,low,2,2,big,low,unacc +high,med,2,4,small,med,unacc +vhigh,high,3,more,med,high,unacc +low,high,2,2,small,low,unacc +high,vhigh,3,4,med,high,unacc +low,high,5more,2,small,low,unacc +high,med,5more,4,med,high,acc +med,vhigh,3,2,med,high,unacc +vhigh,low,5more,4,med,med,acc +high,low,4,more,med,low,unacc +med,high,2,2,big,low,unacc +high,high,2,more,big,med,acc +low,low,5more,more,big,high,vgood +vhigh,high,4,2,small,med,unacc +high,low,2,4,big,high,acc +high,high,5more,2,med,low,unacc +med,med,4,4,big,high,vgood +low,vhigh,5more,2,big,high,unacc +high,vhigh,4,4,small,high,unacc +med,high,4,2,small,high,unacc +vhigh,med,4,more,big,med,acc +vhigh,high,3,2,small,low,unacc +med,med,3,2,big,med,unacc +med,low,5more,2,big,med,unacc +vhigh,high,5more,more,small,high,unacc +high,low,4,4,small,med,unacc +low,med,3,4,med,low,unacc +high,med,5more,more,med,low,unacc +low,med,3,more,small,med,acc +med,high,3,more,big,med,acc +med,med,4,more,small,med,acc +med,med,3,4,med,med,acc +vhigh,high,5more,2,med,med,unacc +med,low,5more,2,big,high,unacc +med,med,2,4,med,low,unacc +med,low,2,4,big,med,good +high,high,2,4,big,med,acc +low,med,4,more,big,high,vgood +high,vhigh,5more,4,med,high,unacc +vhigh,low,5more,4,small,low,unacc +low,low,5more,4,big,low,unacc +vhigh,low,2,2,big,high,unacc +med,med,4,4,med,low,unacc +low,vhigh,5more,2,small,low,unacc +med,low,2,more,small,high,unacc +high,vhigh,3,2,big,med,unacc +vhigh,vhigh,3,4,small,high,unacc +med,vhigh,2,4,big,med,acc +high,low,4,2,med,high,unacc +high,med,5more,2,med,low,unacc +low,high,4,more,big,med,acc +vhigh,low,5more,4,big,high,acc +low,med,5more,more,big,low,unacc +low,vhigh,4,more,big,low,unacc +vhigh,high,2,2,small,low,unacc +vhigh,low,2,2,med,high,unacc +vhigh,low,2,more,small,low,unacc +high,low,2,4,small,high,acc +med,med,5more,more,med,high,vgood +high,med,3,more,big,med,acc +high,med,4,4,small,low,unacc +high,low,4,2,med,med,unacc +med,med,3,4,big,low,unacc +med,vhigh,5more,4,small,low,unacc +high,high,4,2,big,low,unacc +vhigh,high,4,more,big,low,unacc +vhigh,med,4,4,big,low,unacc +high,vhigh,2,more,med,low,unacc +high,med,2,more,small,high,unacc +high,vhigh,5more,more,small,med,unacc +high,low,2,2,big,med,unacc +vhigh,high,4,more,small,low,unacc +low,vhigh,3,4,small,med,unacc +low,low,4,more,big,med,good +low,vhigh,2,more,small,med,unacc +med,high,5more,more,small,high,acc +vhigh,vhigh,2,more,med,med,unacc +low,med,3,4,small,med,acc +med,high,3,more,small,med,unacc +high,med,3,4,big,med,acc +low,med,3,2,small,high,unacc +low,low,3,2,big,med,unacc +med,high,3,more,med,med,acc +vhigh,med,3,4,med,high,acc +high,high,4,more,big,med,acc +med,vhigh,5more,2,med,med,unacc +high,vhigh,2,4,small,high,unacc +med,med,2,4,small,low,unacc +high,high,4,more,small,med,unacc +low,vhigh,4,more,big,med,acc +med,med,4,2,big,low,unacc +low,med,5more,2,small,low,unacc +low,low,2,2,small,high,unacc +high,vhigh,5more,2,small,low,unacc +vhigh,med,4,4,small,low,unacc +vhigh,low,5more,2,big,high,unacc +med,low,3,4,big,low,unacc +high,low,3,more,med,med,acc +low,high,5more,2,med,low,unacc +high,vhigh,3,more,med,low,unacc +med,med,2,4,med,med,acc +med,high,5more,more,big,high,acc +low,low,2,more,small,high,unacc +high,low,3,2,med,low,unacc +high,high,4,4,big,med,acc +vhigh,med,5more,more,small,low,unacc +vhigh,high,4,2,big,high,unacc +low,med,2,more,med,low,unacc +med,low,5more,4,small,med,acc +low,high,4,2,big,low,unacc +vhigh,med,4,2,med,low,unacc +med,high,5more,4,med,high,acc +med,high,2,4,small,high,acc +vhigh,med,2,4,big,low,unacc +low,med,2,more,med,high,good +low,vhigh,5more,2,big,low,unacc +med,vhigh,2,more,small,low,unacc +vhigh,high,5more,4,med,high,unacc +med,high,2,4,big,low,unacc +high,low,5more,more,small,low,unacc +high,low,5more,4,big,high,acc +med,med,5more,4,small,med,acc +vhigh,med,2,more,big,low,unacc +high,med,4,2,small,high,unacc +vhigh,vhigh,4,more,small,med,unacc +low,med,4,2,big,med,unacc +med,vhigh,2,4,med,med,unacc +med,high,5more,4,small,low,unacc +high,med,4,more,med,med,acc +vhigh,med,4,more,big,high,acc +vhigh,med,2,more,med,med,unacc +vhigh,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,small,high,unacc +med,med,5more,2,small,low,unacc +high,high,4,4,big,low,unacc +high,med,4,2,med,med,unacc +low,vhigh,2,2,med,med,unacc +low,high,5more,more,med,low,unacc +vhigh,vhigh,2,2,med,low,unacc +high,low,2,more,small,low,unacc +vhigh,vhigh,4,more,med,high,unacc +high,high,2,more,big,high,acc +vhigh,high,4,4,big,med,unacc +low,vhigh,4,4,big,high,acc +vhigh,high,3,more,big,high,unacc +vhigh,vhigh,5more,2,med,low,unacc +med,low,2,4,small,high,good +low,high,3,more,big,med,acc +vhigh,med,2,2,small,med,unacc +high,high,5more,more,small,high,acc +low,vhigh,2,more,small,high,unacc +vhigh,vhigh,5more,more,med,low,unacc +high,low,2,2,small,high,unacc +low,vhigh,3,more,med,low,unacc +low,low,5more,4,small,low,unacc +med,med,4,more,big,high,vgood +high,high,3,4,big,med,acc +low,low,2,4,small,med,acc +high,vhigh,2,2,big,high,unacc +high,high,4,4,small,low,unacc +vhigh,med,5more,2,big,high,unacc +high,vhigh,2,more,med,med,unacc +low,low,4,2,big,med,unacc +low,low,5more,4,med,low,unacc +high,vhigh,5more,more,med,high,unacc +vhigh,med,2,4,big,med,acc +med,low,2,2,big,low,unacc +low,low,4,more,med,low,unacc +high,high,5more,2,small,low,unacc +vhigh,low,5more,more,med,med,acc +high,low,3,2,small,low,unacc +med,low,3,4,big,high,vgood +vhigh,high,2,4,med,high,unacc +vhigh,med,3,4,med,low,unacc +med,vhigh,3,more,med,low,unacc +vhigh,med,5more,4,big,low,unacc +high,high,3,4,small,med,unacc +vhigh,high,3,more,small,low,unacc +vhigh,high,3,more,med,low,unacc +low,low,5more,2,med,low,unacc +low,vhigh,2,4,small,low,unacc +low,med,5more,4,small,med,acc +high,high,3,more,big,low,unacc +vhigh,vhigh,4,more,med,med,unacc +high,vhigh,4,more,small,low,unacc +vhigh,low,5more,2,big,low,unacc +vhigh,vhigh,4,4,med,med,unacc +low,high,5more,2,med,high,unacc +med,med,3,2,big,high,unacc +med,med,3,more,small,high,acc +vhigh,vhigh,3,more,big,high,unacc +vhigh,high,5more,2,small,low,unacc +med,vhigh,4,2,med,high,unacc +low,high,5more,4,big,med,acc +low,med,2,2,big,low,unacc +med,med,3,2,med,low,unacc +vhigh,med,4,more,med,med,acc +med,med,5more,4,big,med,acc +med,high,2,4,small,low,unacc +vhigh,vhigh,5more,more,big,med,unacc +med,vhigh,3,4,small,low,unacc +high,low,2,4,big,low,unacc +high,med,2,2,big,low,unacc +high,low,5more,2,med,low,unacc +low,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,med,low,unacc +med,vhigh,2,more,med,low,unacc +med,high,5more,4,med,med,acc +vhigh,vhigh,3,more,small,high,unacc +vhigh,med,4,4,small,high,acc +vhigh,high,2,more,med,med,unacc +med,low,4,4,small,low,unacc +low,high,3,4,med,med,acc +low,high,4,4,big,low,unacc +vhigh,med,5more,4,med,med,acc +vhigh,high,4,more,med,med,unacc +vhigh,low,3,more,small,med,unacc +vhigh,med,2,4,big,high,acc +med,low,5more,2,big,low,unacc +low,high,3,4,big,med,acc +low,high,5more,2,small,med,unacc +vhigh,med,4,more,small,high,acc +low,vhigh,2,more,big,low,unacc +high,vhigh,5more,more,big,med,unacc +low,low,2,more,big,high,vgood +high,high,4,4,small,med,unacc +low,med,4,4,big,high,vgood +low,high,3,more,big,high,vgood +med,vhigh,5more,4,small,high,acc +med,low,5more,4,small,low,unacc +med,low,4,2,big,med,unacc +vhigh,high,5more,2,big,high,unacc +low,vhigh,2,2,small,med,unacc +high,med,4,2,med,high,unacc +high,low,2,more,big,med,acc +low,med,5more,4,big,low,unacc +high,low,2,2,med,high,unacc +vhigh,high,2,4,big,low,unacc +low,vhigh,3,2,small,high,unacc +vhigh,high,5more,4,small,low,unacc +high,med,5more,4,small,med,unacc +med,high,5more,more,med,high,acc +med,low,2,more,big,med,good +low,high,5more,more,med,high,vgood +low,vhigh,4,4,med,med,acc +med,high,5more,4,small,med,unacc +high,vhigh,3,2,big,low,unacc +med,low,3,4,big,med,good +low,vhigh,5more,more,small,low,unacc +low,low,3,more,big,low,unacc +low,low,5more,more,med,med,good +high,low,2,2,big,high,unacc +low,med,5more,4,small,low,unacc +vhigh,low,3,2,small,high,unacc +low,med,3,more,big,high,vgood +med,low,5more,more,big,high,vgood +med,low,4,more,small,low,unacc +vhigh,low,4,2,small,low,unacc +high,high,4,2,small,high,unacc +high,med,3,2,med,high,unacc +low,med,2,more,small,med,unacc +low,low,3,more,med,low,unacc +high,med,4,2,big,med,unacc +vhigh,low,5more,4,small,med,unacc +vhigh,med,2,4,small,high,acc +med,med,4,more,med,high,vgood +vhigh,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,small,low,unacc +high,low,4,2,small,high,unacc +high,vhigh,3,2,small,low,unacc +high,vhigh,4,4,big,high,unacc +high,med,5more,2,small,low,unacc +high,med,2,4,med,high,acc +low,high,4,2,med,med,unacc +med,high,3,2,big,high,unacc +vhigh,med,3,2,med,med,unacc +med,high,4,more,big,high,acc +high,high,3,2,small,high,unacc +low,low,2,4,med,med,acc +low,vhigh,2,2,big,high,unacc +high,med,5more,4,small,low,unacc +low,high,4,more,big,high,vgood +vhigh,vhigh,5more,2,big,med,unacc +vhigh,high,5more,2,big,med,unacc +high,vhigh,5more,4,big,high,unacc +vhigh,vhigh,2,4,small,high,unacc +med,high,4,more,big,med,acc +vhigh,med,4,4,med,med,acc +med,vhigh,4,2,med,low,unacc +high,med,4,4,big,high,acc +high,high,4,4,big,high,acc +med,vhigh,3,4,small,high,acc +vhigh,med,4,4,big,high,acc +vhigh,low,2,more,big,med,acc +vhigh,med,3,more,med,med,acc +med,low,3,more,med,low,unacc +vhigh,low,3,4,med,med,unacc +low,med,3,4,big,low,unacc +med,med,4,4,small,high,acc +low,med,4,4,med,low,unacc +med,low,4,4,big,high,vgood +med,vhigh,2,2,big,high,unacc +med,low,2,2,big,med,unacc +vhigh,vhigh,3,2,med,low,unacc +vhigh,low,2,more,med,low,unacc +low,vhigh,5more,4,med,high,acc +high,med,3,4,small,med,unacc +high,high,5more,2,med,med,unacc +low,vhigh,3,2,med,low,unacc +high,vhigh,3,4,big,high,unacc +high,low,2,4,med,med,unacc +vhigh,med,3,2,big,med,unacc +high,vhigh,3,2,med,low,unacc +med,vhigh,3,4,med,low,unacc +low,med,5more,2,small,med,unacc +low,low,3,more,med,high,vgood +med,high,3,2,big,med,unacc +vhigh,med,3,4,small,low,unacc +med,vhigh,2,4,small,low,unacc +med,low,5more,more,small,high,good +vhigh,med,4,2,med,high,unacc +med,high,3,4,small,low,unacc +high,med,5more,more,small,high,acc +high,low,5more,4,small,low,unacc +med,high,4,2,med,high,unacc +low,low,3,2,small,med,unacc +high,vhigh,4,4,small,med,unacc +high,low,3,4,small,high,acc +high,high,2,4,med,low,unacc +med,vhigh,4,more,big,low,unacc +high,low,4,more,small,low,unacc +high,high,5more,4,small,med,unacc +vhigh,med,4,2,big,med,unacc +high,med,2,more,small,med,unacc +med,low,3,4,small,low,unacc +high,med,5more,more,med,high,acc +vhigh,high,4,more,small,med,unacc +low,vhigh,5more,4,med,low,unacc +vhigh,high,3,more,med,med,unacc +med,low,4,more,med,med,good +high,vhigh,3,4,med,low,unacc +low,med,4,more,big,med,good +med,vhigh,3,more,med,med,acc +high,med,2,2,med,low,unacc +vhigh,low,3,more,small,high,acc +high,vhigh,2,4,med,low,unacc +vhigh,high,2,2,small,med,unacc +low,vhigh,3,4,big,low,unacc +high,low,5more,2,big,low,unacc +med,med,5more,4,big,low,unacc +med,vhigh,2,2,big,low,unacc +med,med,2,2,big,low,unacc +vhigh,low,2,more,big,high,acc +low,med,2,4,med,low,unacc +high,vhigh,5more,2,big,low,unacc +vhigh,vhigh,4,4,big,high,unacc +vhigh,low,4,2,small,high,unacc +med,med,2,4,big,med,acc +low,low,4,4,big,med,good +high,high,2,2,big,low,unacc +vhigh,low,3,2,med,high,unacc +vhigh,vhigh,3,4,big,med,unacc +high,low,3,more,small,med,unacc +high,high,3,4,med,med,unacc +high,low,4,2,big,low,unacc +vhigh,high,2,4,big,med,unacc +med,low,2,2,med,low,unacc +low,vhigh,3,more,med,med,acc +high,med,3,more,big,high,acc +low,med,5more,more,big,high,vgood +low,med,5more,more,med,low,unacc +high,low,3,4,small,low,unacc +high,med,4,4,med,low,unacc +low,vhigh,2,2,small,high,unacc +low,low,2,2,small,med,unacc +low,med,4,more,med,low,unacc +high,low,5more,4,med,high,acc +med,low,3,2,small,high,unacc +high,high,4,4,med,med,acc +vhigh,vhigh,4,more,big,low,unacc +vhigh,high,5more,4,big,low,unacc +med,low,4,more,big,high,vgood +med,vhigh,5more,more,small,high,acc +vhigh,low,5more,2,small,high,unacc +vhigh,low,4,2,big,med,unacc +med,high,2,4,small,med,unacc +low,med,3,2,big,med,unacc +high,med,3,more,small,med,unacc +high,high,3,more,med,high,acc +vhigh,med,5more,more,med,high,acc +low,low,3,4,big,med,good +vhigh,vhigh,3,2,small,low,unacc +low,low,3,2,med,low,unacc +low,high,3,4,small,low,unacc +high,high,5more,4,big,high,acc +vhigh,low,2,4,med,low,unacc +med,high,4,2,big,low,unacc +vhigh,low,2,more,small,high,unacc +high,low,2,2,small,low,unacc +high,vhigh,5more,4,med,low,unacc +med,med,5more,4,med,low,unacc +high,vhigh,2,4,big,low,unacc +low,med,3,more,small,low,unacc +med,med,5more,2,big,med,unacc +vhigh,med,3,4,big,med,acc +low,high,3,4,big,low,unacc +med,med,2,more,med,low,unacc +vhigh,vhigh,3,4,big,low,unacc +med,low,4,2,small,high,unacc +med,med,3,4,med,low,unacc +vhigh,vhigh,4,4,small,med,unacc +vhigh,vhigh,5more,2,small,high,unacc +low,vhigh,3,2,big,low,unacc +high,vhigh,3,2,small,med,unacc +med,low,4,2,small,low,unacc +vhigh,vhigh,5more,more,big,high,unacc +low,med,2,4,small,med,acc +med,low,4,2,med,med,unacc +low,vhigh,4,4,small,med,unacc +high,vhigh,5more,2,med,med,unacc +med,vhigh,2,2,small,low,unacc +low,low,2,more,big,med,good +med,high,5more,2,med,high,unacc +high,med,3,4,big,high,acc +high,med,2,more,med,med,unacc +low,vhigh,5more,more,med,low,unacc +low,high,5more,4,med,med,acc +high,med,2,more,med,high,acc +med,med,5more,more,big,low,unacc +high,vhigh,5more,more,small,high,unacc +med,low,2,2,small,med,unacc +vhigh,low,3,more,med,med,acc +med,vhigh,5more,2,small,med,unacc +vhigh,med,4,2,big,high,unacc +low,med,4,more,small,high,good +vhigh,high,4,4,small,med,unacc +low,low,4,more,big,low,unacc +high,low,3,more,big,low,unacc +vhigh,vhigh,4,2,small,high,unacc +low,low,2,4,big,low,unacc +med,vhigh,5more,4,med,med,acc +low,high,5more,more,small,low,unacc +high,low,4,more,small,med,unacc +high,med,3,4,med,high,acc +high,low,3,4,med,high,acc +vhigh,vhigh,4,2,big,low,unacc +low,high,2,2,med,med,unacc +med,vhigh,3,2,small,high,unacc +high,high,2,more,small,med,unacc +low,med,4,4,big,med,good +med,high,3,2,small,med,unacc +low,med,3,2,med,med,unacc +low,vhigh,4,4,small,low,unacc +high,low,3,4,big,med,acc +low,med,2,more,big,low,unacc +high,med,4,more,small,med,unacc +vhigh,vhigh,2,4,med,med,unacc +low,high,3,2,big,high,unacc +high,low,2,more,big,low,unacc +vhigh,vhigh,3,4,med,high,unacc +high,low,3,4,big,low,unacc +high,low,5more,more,big,low,unacc +vhigh,low,5more,more,small,med,unacc +vhigh,high,2,more,small,high,unacc +high,low,5more,4,big,low,unacc +med,vhigh,5more,4,small,med,unacc +high,med,3,2,med,low,unacc +high,low,4,more,big,med,acc +high,low,5more,4,med,med,acc +low,high,4,more,med,high,vgood +low,high,4,2,small,low,unacc +vhigh,med,5more,4,big,med,acc +high,low,3,2,small,high,unacc +high,vhigh,3,4,big,low,unacc +vhigh,med,5more,4,med,low,unacc +low,med,4,4,big,low,unacc +vhigh,high,4,2,med,med,unacc +high,med,2,2,big,med,unacc +high,med,3,4,med,med,unacc +high,high,2,4,big,high,acc +high,vhigh,3,more,med,med,unacc +high,high,3,more,small,med,unacc +vhigh,high,3,more,big,low,unacc +med,vhigh,3,4,small,med,unacc +high,high,2,more,med,high,acc +high,vhigh,4,2,med,med,unacc +med,high,2,more,med,low,unacc +med,high,5more,4,big,low,unacc +high,high,3,2,small,med,unacc +high,vhigh,4,more,med,low,unacc +high,vhigh,5more,more,small,low,unacc +med,vhigh,4,2,med,med,unacc +med,high,2,2,small,med,unacc +vhigh,low,2,2,small,high,unacc +med,vhigh,3,more,med,high,acc +med,med,5more,more,small,med,acc +med,vhigh,2,4,small,med,unacc +med,high,4,2,big,high,unacc +med,vhigh,3,4,big,med,acc +high,med,2,2,small,high,unacc +low,vhigh,5more,2,small,med,unacc +med,med,4,2,med,low,unacc +vhigh,med,4,2,med,med,unacc +med,vhigh,4,4,big,high,acc +vhigh,med,3,2,big,low,unacc +high,vhigh,4,more,big,med,unacc +low,vhigh,5more,2,med,high,unacc +med,vhigh,5more,2,big,med,unacc +med,high,5more,2,big,high,unacc +vhigh,low,3,4,small,med,unacc +high,vhigh,2,4,big,high,unacc +med,vhigh,2,2,big,med,unacc +vhigh,med,2,2,med,low,unacc +vhigh,vhigh,2,4,med,low,unacc +vhigh,med,5more,2,big,low,unacc +high,vhigh,4,4,med,high,unacc +med,low,3,4,med,high,good +med,high,3,4,med,high,acc +high,low,3,2,med,med,unacc +vhigh,low,4,more,med,low,unacc +high,low,5more,4,med,low,unacc +med,vhigh,4,4,big,low,unacc +vhigh,high,3,4,big,low,unacc +low,high,5more,more,small,high,acc +low,low,2,2,big,low,unacc +vhigh,vhigh,5more,4,med,high,unacc +med,low,4,4,med,high,vgood +vhigh,med,5more,2,med,high,unacc +low,med,2,more,small,high,unacc +low,high,4,more,big,low,unacc +high,high,5more,4,big,low,unacc +low,vhigh,4,more,small,med,unacc +low,high,2,2,big,high,unacc +high,med,3,4,med,low,unacc +med,high,5more,2,med,low,unacc +high,high,3,4,big,low,unacc +vhigh,high,4,4,med,low,unacc +vhigh,low,2,more,big,low,unacc +med,vhigh,5more,more,big,med,acc +med,high,4,more,med,low,unacc +low,high,2,2,small,high,unacc +med,vhigh,3,4,big,low,unacc +low,low,3,4,med,high,good +med,vhigh,5more,2,big,high,unacc +high,med,2,4,med,low,unacc +med,low,5more,2,med,high,unacc +low,low,3,4,med,med,acc +high,high,3,more,med,low,unacc +high,high,5more,2,small,high,unacc +vhigh,vhigh,2,2,small,med,unacc +med,med,3,4,big,med,acc +high,low,4,more,med,med,acc +high,high,4,more,med,high,acc +med,med,5more,2,med,high,unacc +vhigh,low,3,2,big,low,unacc +low,vhigh,5more,more,big,med,acc +high,low,5more,more,big,med,acc +low,low,4,4,med,med,good +vhigh,med,3,more,small,low,unacc +low,vhigh,2,more,med,med,unacc +high,high,4,4,med,low,unacc +low,high,3,2,med,low,unacc +high,med,2,more,med,low,unacc +high,low,5more,2,small,low,unacc +high,high,5more,4,med,med,acc +med,high,4,4,med,med,acc +high,high,4,more,med,med,acc +low,low,3,more,small,med,acc +med,low,3,2,small,med,unacc +low,high,4,2,big,med,unacc +vhigh,high,3,4,small,low,unacc +med,vhigh,2,more,small,high,unacc +high,med,5more,4,big,high,acc +vhigh,low,4,more,big,high,acc +med,med,2,more,med,high,acc +med,high,5more,4,med,low,unacc +vhigh,vhigh,2,2,med,med,unacc +med,low,3,2,small,low,unacc +med,low,5more,more,big,med,good +high,vhigh,5more,4,small,low,unacc +low,high,2,more,big,med,acc +low,high,3,more,med,high,vgood +low,med,4,2,small,med,unacc +med,low,3,4,small,med,acc +med,high,4,more,med,med,acc +med,vhigh,3,2,med,low,unacc +low,vhigh,5more,2,big,med,unacc +high,med,4,2,big,low,unacc +med,vhigh,2,more,big,high,acc +vhigh,med,2,2,big,med,unacc +vhigh,vhigh,4,more,big,med,unacc +low,vhigh,3,4,small,low,unacc +med,low,2,2,small,high,unacc +low,med,3,2,small,med,unacc +low,vhigh,4,2,med,low,unacc +low,med,3,4,med,med,acc +vhigh,vhigh,4,2,med,low,unacc +high,med,3,2,med,med,unacc +low,high,2,more,big,low,unacc +high,low,4,4,small,low,unacc +low,med,4,4,med,high,vgood +high,med,4,more,small,low,unacc +high,high,3,2,med,high,unacc +low,low,3,2,big,high,unacc +low,high,2,more,small,med,unacc +high,med,2,more,big,med,acc +high,low,4,2,big,med,unacc +vhigh,low,4,more,small,low,unacc +vhigh,vhigh,3,more,med,med,unacc +high,vhigh,2,more,big,med,unacc +low,low,3,2,med,high,unacc +high,high,5more,2,med,high,unacc +high,med,4,4,big,low,unacc +med,vhigh,4,more,big,med,acc +vhigh,low,5more,2,med,med,unacc +high,vhigh,2,more,big,low,unacc +med,vhigh,5more,more,small,med,unacc +vhigh,vhigh,4,more,big,high,unacc +high,low,3,2,small,med,unacc +vhigh,med,2,2,big,low,unacc +low,low,4,4,med,high,vgood +low,med,3,4,med,high,good +high,vhigh,4,more,med,high,unacc +high,low,5more,2,big,med,unacc +high,med,3,2,big,low,unacc +vhigh,low,3,4,big,high,acc +vhigh,vhigh,3,more,big,low,unacc +high,low,5more,2,big,high,unacc +vhigh,low,3,4,med,low,unacc +vhigh,low,2,4,small,low,unacc +low,high,2,2,big,med,unacc +vhigh,med,5more,more,small,high,acc +low,high,2,2,med,high,unacc +med,med,4,4,med,med,acc +high,med,4,more,med,high,acc +vhigh,high,5more,more,med,med,unacc +low,high,2,4,big,high,vgood +vhigh,low,5more,more,big,high,acc +high,med,5more,2,med,med,unacc +low,vhigh,4,4,med,low,unacc +high,med,5more,more,small,low,unacc +high,high,5more,4,small,high,acc +vhigh,vhigh,5more,2,med,high,unacc +vhigh,med,3,more,small,med,unacc +med,vhigh,2,4,big,high,acc +vhigh,med,5more,2,big,med,unacc +med,med,3,more,big,med,acc +med,low,2,2,med,high,unacc +low,vhigh,3,2,med,med,unacc +vhigh,vhigh,4,more,small,high,unacc +med,med,3,4,small,high,acc +vhigh,med,5more,4,small,low,unacc +low,high,2,4,big,med,acc +low,med,2,4,small,low,unacc +low,vhigh,3,more,small,low,unacc +med,med,4,4,big,low,unacc +med,vhigh,2,4,med,low,unacc +med,med,3,more,med,high,vgood +med,vhigh,3,4,med,high,acc +low,med,2,4,big,high,vgood +high,vhigh,5more,more,big,low,unacc +vhigh,med,3,more,big,med,acc +high,med,3,4,small,low,unacc +vhigh,vhigh,2,2,big,high,unacc +vhigh,vhigh,5more,4,small,med,unacc +high,high,3,2,small,low,unacc +low,low,3,4,small,low,unacc +low,low,4,2,med,med,unacc +vhigh,vhigh,5more,more,big,low,unacc +low,med,3,more,med,high,vgood +low,med,2,4,small,high,good +med,high,4,4,small,med,unacc +high,high,2,2,small,med,unacc +low,vhigh,2,2,med,low,unacc +vhigh,low,5more,4,med,low,unacc +high,med,4,2,small,med,unacc +high,vhigh,2,2,small,low,unacc +med,low,3,more,big,low,unacc +high,high,3,4,small,high,acc +high,high,2,more,small,low,unacc +low,low,4,4,small,low,unacc +low,med,3,more,med,med,good +vhigh,med,2,2,med,med,unacc +vhigh,med,2,more,med,low,unacc +low,low,3,more,big,med,good +vhigh,med,4,2,big,low,unacc +vhigh,high,5more,more,big,low,unacc +high,high,4,more,small,high,acc +med,med,4,2,small,high,unacc +vhigh,vhigh,2,4,big,high,unacc +low,med,3,more,big,low,unacc +med,low,4,4,small,high,good +high,high,4,more,big,high,acc +med,med,3,2,big,low,unacc +low,high,5more,2,small,high,unacc +low,med,3,2,big,high,unacc +high,high,3,4,big,high,acc +high,low,2,2,small,med,unacc +high,vhigh,4,4,big,low,unacc +low,vhigh,4,more,med,med,acc +high,med,4,4,med,med,acc +vhigh,med,4,2,small,high,unacc +low,vhigh,3,more,big,high,acc +med,high,4,4,small,high,acc +high,vhigh,2,2,med,high,unacc +med,med,2,more,med,med,acc +vhigh,high,3,4,big,med,unacc +vhigh,high,5more,4,big,med,unacc +med,med,4,more,small,high,acc +med,low,5more,2,med,med,unacc +med,vhigh,4,more,med,low,unacc +vhigh,vhigh,2,more,small,high,unacc +vhigh,high,3,4,med,high,unacc +low,vhigh,4,2,med,med,unacc +med,vhigh,4,more,small,med,unacc +high,high,4,more,med,low,unacc +low,vhigh,2,more,big,high,acc +vhigh,med,3,more,big,high,acc +low,med,5more,2,big,low,unacc +low,vhigh,5more,more,med,med,acc +high,vhigh,4,2,med,low,unacc +high,high,5more,more,med,high,acc +vhigh,low,5more,4,med,high,acc +high,vhigh,5more,more,med,med,unacc +high,med,2,2,small,low,unacc +med,high,5more,more,small,low,unacc +med,med,4,more,big,low,unacc +low,med,4,more,small,med,acc +low,vhigh,3,more,big,low,unacc +high,low,5more,more,med,med,acc +vhigh,high,4,2,big,low,unacc +med,low,5more,2,small,low,unacc +vhigh,vhigh,5more,2,small,med,unacc +med,low,3,2,med,low,unacc +med,med,5more,more,big,med,acc +high,vhigh,4,more,small,med,unacc +med,med,5more,2,big,low,unacc +vhigh,med,3,2,med,low,unacc +high,low,4,4,big,high,acc +high,vhigh,3,more,med,high,unacc +vhigh,high,3,2,med,high,unacc +med,low,3,2,med,med,unacc +vhigh,high,3,2,big,low,unacc +vhigh,low,4,2,med,low,unacc +vhigh,high,4,2,med,low,unacc +med,high,4,4,big,low,unacc +vhigh,high,2,4,small,low,unacc +vhigh,med,5more,more,big,high,acc +med,med,2,2,big,high,unacc +med,high,4,2,med,med,unacc +med,high,2,2,med,high,unacc +med,low,2,4,small,low,unacc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..403e4648dc3b3c177525a76273864fc4069db6b4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/staged/public/val.csv @@ -0,0 +1,173 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,5more,more,med,med,unacc +vhigh,high,2,4,small,med,unacc +high,high,5more,more,med,med,acc +low,high,3,2,med,med,unacc +med,med,3,2,med,med,unacc +med,med,5more,more,big,high,vgood +vhigh,high,2,4,med,low,unacc +high,vhigh,2,4,med,high,unacc +high,high,4,4,med,high,acc +vhigh,low,4,4,small,high,acc +vhigh,med,5more,more,med,low,unacc +med,high,2,more,big,med,acc +low,vhigh,4,2,big,low,unacc +med,med,4,2,med,high,unacc +low,med,2,2,small,low,unacc +high,high,3,more,small,low,unacc +med,vhigh,4,4,med,high,acc +high,high,2,2,med,med,unacc +high,low,3,4,big,high,acc +vhigh,vhigh,2,2,med,high,unacc +high,low,2,more,med,low,unacc +vhigh,low,2,4,med,high,acc +low,high,4,4,small,high,acc +low,med,5more,4,big,med,good +high,vhigh,2,2,big,low,unacc +med,high,2,4,med,high,acc +low,high,4,2,small,med,unacc +high,low,4,more,med,high,acc +vhigh,low,2,4,big,high,acc +high,vhigh,3,more,big,high,unacc +low,low,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,med,unacc +med,med,3,2,small,med,unacc +low,vhigh,3,4,med,med,unacc +vhigh,vhigh,5more,more,med,high,unacc +vhigh,high,5more,4,med,low,unacc +med,med,3,more,med,low,unacc +med,vhigh,3,4,big,high,acc +vhigh,high,3,more,small,high,unacc +high,vhigh,4,more,big,high,unacc +med,vhigh,5more,2,med,low,unacc +low,high,5more,2,big,high,unacc +vhigh,low,3,more,big,med,acc +low,med,4,2,med,med,unacc +vhigh,med,4,more,small,low,unacc +med,vhigh,4,2,small,med,unacc +low,low,3,more,small,high,good +low,high,3,more,small,low,unacc +vhigh,low,4,4,big,low,unacc +high,vhigh,4,more,big,low,unacc +vhigh,med,2,2,big,high,unacc +high,med,3,more,small,high,acc +high,low,4,4,big,low,unacc +vhigh,high,2,4,big,high,unacc +vhigh,high,5more,4,med,med,unacc +low,vhigh,3,2,small,med,unacc +low,vhigh,3,4,big,med,acc +low,vhigh,5more,2,med,low,unacc +vhigh,high,2,2,med,low,unacc +med,vhigh,5more,4,med,low,unacc +high,low,5more,2,med,high,unacc +med,vhigh,2,2,med,med,unacc +high,med,4,more,big,low,unacc +med,vhigh,2,more,small,med,unacc +low,vhigh,4,2,small,low,unacc +low,low,4,2,small,high,unacc +vhigh,high,5more,2,med,high,unacc +vhigh,low,4,4,med,low,unacc +high,low,4,more,big,low,unacc +low,high,3,more,med,med,acc +high,vhigh,4,4,med,low,unacc +med,vhigh,5more,more,big,low,unacc +med,med,5more,more,small,high,acc +med,med,5more,4,small,low,unacc +vhigh,med,4,2,small,med,unacc +low,high,5more,4,med,low,unacc +high,vhigh,2,2,big,med,unacc +med,high,2,more,med,high,acc +low,vhigh,4,more,med,low,unacc +high,high,3,2,med,med,unacc +high,vhigh,4,2,small,high,unacc +med,high,5more,2,small,low,unacc +low,high,4,4,med,high,vgood +high,med,3,2,small,high,unacc +vhigh,vhigh,4,4,small,high,unacc +vhigh,high,3,2,med,med,unacc +high,vhigh,3,4,small,med,unacc +vhigh,high,2,4,med,med,unacc +med,low,5more,more,big,low,unacc +low,high,3,more,small,med,acc +vhigh,high,3,4,small,high,unacc +vhigh,vhigh,2,4,big,low,unacc +low,low,4,more,med,med,good +med,low,2,more,small,low,unacc +high,vhigh,3,4,med,med,unacc +med,med,4,2,small,med,unacc +med,low,2,4,big,high,vgood +vhigh,vhigh,3,4,big,high,unacc +high,med,3,more,small,low,unacc +vhigh,high,2,more,big,low,unacc +high,vhigh,3,2,small,high,unacc +high,vhigh,4,more,med,med,unacc +vhigh,med,3,2,med,high,unacc +med,vhigh,4,2,big,med,unacc +med,high,5more,2,big,med,unacc +med,vhigh,3,2,big,med,unacc +high,low,2,4,small,low,unacc +low,low,4,more,big,high,vgood +low,vhigh,4,more,big,high,acc +low,low,4,4,big,low,unacc +high,high,5more,more,small,low,unacc +low,high,4,2,med,low,unacc +vhigh,low,5more,2,big,med,unacc +low,high,2,4,small,low,unacc +low,low,3,more,med,med,good +low,med,2,4,big,med,good +high,vhigh,2,2,small,high,unacc +med,vhigh,2,2,med,low,unacc +med,low,4,2,small,med,unacc +med,med,2,2,small,med,unacc +low,med,5more,2,small,high,unacc +vhigh,low,2,4,big,low,unacc +med,med,3,more,small,med,acc +med,high,2,2,small,high,unacc +low,vhigh,4,2,small,high,unacc +vhigh,med,3,more,small,high,acc +vhigh,med,3,4,big,low,unacc +med,med,2,4,small,high,acc +vhigh,high,3,2,big,med,unacc +med,high,2,more,big,low,unacc +low,high,5more,4,med,high,vgood +vhigh,high,4,4,med,high,unacc +low,low,3,4,big,high,vgood +low,med,5more,4,med,low,unacc +high,vhigh,4,2,big,high,unacc +vhigh,high,2,4,small,high,unacc +high,vhigh,4,2,med,high,unacc +high,high,5more,4,small,low,unacc +high,med,5more,4,big,low,unacc +vhigh,med,2,4,med,high,acc +vhigh,vhigh,3,4,med,med,unacc +med,high,3,2,small,high,unacc +high,med,2,4,big,med,acc +med,low,3,4,med,low,unacc +vhigh,vhigh,2,2,small,high,unacc +med,med,2,2,big,med,unacc +med,med,2,more,big,med,acc +vhigh,low,2,2,big,med,unacc +high,low,2,4,small,med,unacc +low,med,5more,more,med,med,good +low,low,5more,2,small,med,unacc +low,low,2,4,small,high,good +low,med,3,2,small,low,unacc +low,vhigh,2,4,med,med,unacc +high,high,4,more,small,low,unacc +med,low,5more,4,med,low,unacc +vhigh,med,2,2,small,high,unacc +med,high,4,4,med,high,acc +vhigh,low,3,4,big,low,unacc +med,high,4,2,small,low,unacc +high,high,2,2,small,low,unacc +low,high,4,4,big,med,acc +low,high,4,more,med,low,unacc +vhigh,vhigh,2,2,big,med,unacc +med,vhigh,4,4,med,low,unacc +vhigh,low,2,2,small,low,unacc +med,vhigh,3,2,small,low,unacc +high,high,4,2,big,high,unacc +low,low,5more,more,big,med,good +low,low,4,4,small,high,good +low,vhigh,2,4,big,high,acc +low,low,2,4,big,med,good diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/train_20260422_055912.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/train_20260422_055912.log new file mode 100644 index 0000000000000000000000000000000000000000..3e5d26a22cba4675911762a556c31587ca6054ba --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/train_20260422_055912.log @@ -0,0 +1,4 @@ +[ARF] Training on 1382 rows, 7 cols +Initial accuracy is 0.5962373371924746 +Iteration number 1 reached accuracy of 0.3907380607814761. +[ARF] Model saved -> /work/output-SpecializedModels/c2/arf/arf-c2-20260422_055912/arf_model.pkl diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260318_003525/ctgan_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260318_003525/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260318_003525/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260318_003525/gen_20260318_003558.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260318_003525/gen_20260318_003558.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260318_032600/ctgan_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260318_032600/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260318_032600/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260318_032600/gen_20260318_032700.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260318_032600/gen_20260318_032700.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260318_032600/models_300epochs/train_20260318_032600.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260318_032600/models_300epochs/train_20260318_032600.log new file mode 100644 index 0000000000000000000000000000000000000000..19673a95552befef13608269dff934aa13d5cf14 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260318_032600/models_300epochs/train_20260318_032600.log @@ -0,0 +1,2 @@ +/opt/conda/lib/python3.10/site-packages/torch/autograd/graph.py:841: UserWarning: Attempting to run cuBLAS, but there was no current CUDA context! Attempting to set the primary context... (Triggered internally at /pytorch/aten/src/ATen/cuda/CublasHandlePool.cpp:270.) + return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/ctgan_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/gen_20260321_052745.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/gen_20260321_052745.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/models_300epochs/train_20260321_052647.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/models_300epochs/train_20260321_052647.log new file mode 100644 index 0000000000000000000000000000000000000000..19673a95552befef13608269dff934aa13d5cf14 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/models_300epochs/train_20260321_052647.log @@ -0,0 +1,2 @@ +/opt/conda/lib/python3.10/site-packages/torch/autograd/graph.py:841: UserWarning: Attempting to run cuBLAS, but there was no current CUDA context! Attempting to set the primary context... (Triggered internally at /pytorch/aten/src/ATen/cuda/CublasHandlePool.cpp:270.) + return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..51227bbd83421c5eada480b8fb7ea6f8b7d51c7f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d60dfc9e9e0e9ffe5a756e282e65ed61077ba9cd --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260321_052647", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/ctgan-c2-1000-20260321_052745.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/models_300epochs/ctgan_300epochs.pt" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/ctgan/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9f69bacefa64b4b1e9c6f962d90ce8bd4af3a820 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/ctgan/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/ctgan/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/ctgan/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cd7d0d0e35edde4bad6451599c9f830ad3e5fdd3 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b3cf25081f629b35185af44e432085a72a9bb40b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/test.csv @@ -0,0 +1,175 @@ +buying,maint,doors,persons,lug_boot,safety,class +low,med,2,more,big,high,vgood +med,med,2,more,small,high,unacc +low,vhigh,5more,more,small,high,acc +vhigh,med,2,more,small,med,unacc +low,high,4,more,small,med,acc +low,med,4,2,med,high,unacc +vhigh,vhigh,2,more,big,low,unacc +med,med,4,2,small,low,unacc +high,vhigh,5more,2,small,high,unacc +med,med,2,2,med,med,unacc +med,vhigh,5more,4,med,high,acc +med,low,3,2,big,low,unacc +high,low,2,more,big,high,acc +high,low,3,2,big,low,unacc +vhigh,high,2,more,med,high,unacc +med,low,3,2,big,med,unacc +low,low,5more,4,small,high,good +low,vhigh,5more,4,big,high,acc +vhigh,low,2,2,med,med,unacc +med,low,5more,4,big,high,vgood +vhigh,med,5more,4,big,high,acc +vhigh,med,2,4,small,low,unacc +vhigh,vhigh,5more,4,big,med,unacc +low,med,3,4,small,low,unacc +vhigh,high,4,more,big,med,unacc +med,high,3,4,med,low,unacc +med,high,4,more,small,low,unacc +vhigh,med,4,4,med,high,acc +low,med,5more,more,big,med,good +high,med,5more,4,med,med,acc +high,low,4,2,big,high,unacc +med,low,2,2,big,high,unacc +med,vhigh,2,4,med,high,acc +med,low,2,4,small,med,acc +low,med,2,more,small,low,unacc +high,vhigh,5more,more,big,high,unacc +med,med,2,more,big,low,unacc +low,low,5more,2,small,high,unacc +low,med,2,4,med,high,good +high,vhigh,4,more,small,high,unacc +low,low,5more,more,small,med,acc +high,high,2,2,med,low,unacc +vhigh,med,4,more,med,high,acc +med,vhigh,4,more,med,med,acc +low,vhigh,2,more,med,low,unacc +high,low,4,2,small,med,unacc +med,high,3,more,big,low,unacc +low,vhigh,3,more,small,high,acc +high,vhigh,2,2,med,med,unacc +high,high,5more,more,big,low,unacc +low,high,4,4,med,med,acc +med,med,5more,2,small,med,unacc +high,vhigh,2,2,small,med,unacc +vhigh,high,3,2,small,med,unacc +high,high,2,4,small,low,unacc +high,low,4,4,med,low,unacc +high,high,5more,more,big,high,acc +low,low,5more,4,small,med,acc +high,vhigh,3,4,small,high,unacc +vhigh,high,2,2,big,med,unacc +low,med,4,more,big,low,unacc +low,med,4,2,big,high,unacc +high,med,2,4,big,high,acc +low,vhigh,5more,more,big,high,acc +high,vhigh,2,more,small,low,unacc +med,med,4,2,big,med,unacc +low,high,2,2,big,low,unacc +low,vhigh,2,4,big,low,unacc +high,high,2,4,med,med,unacc +high,low,2,more,med,med,unacc +med,vhigh,5more,2,small,high,unacc +vhigh,low,2,4,small,high,acc +low,low,5more,more,med,low,unacc +low,high,5more,4,small,low,unacc +med,med,2,4,med,high,acc +vhigh,low,3,2,small,low,unacc +low,vhigh,2,2,med,high,unacc +med,low,4,2,big,low,unacc +vhigh,high,3,4,med,low,unacc +low,vhigh,3,2,med,high,unacc +low,vhigh,5more,more,med,high,acc +low,high,3,2,big,med,unacc +high,high,2,2,big,med,unacc +low,vhigh,4,more,med,high,acc +vhigh,low,5more,more,big,med,acc +high,med,4,more,big,high,acc +high,low,2,2,med,low,unacc +vhigh,low,2,4,small,med,unacc +high,med,5more,more,small,med,unacc +low,vhigh,2,2,big,low,unacc +med,vhigh,4,4,small,high,acc +low,low,4,4,small,med,acc +low,low,4,2,med,low,unacc +vhigh,high,5more,more,small,low,unacc +low,low,5more,2,big,low,unacc +vhigh,high,4,2,small,high,unacc +high,high,3,more,big,high,acc +low,med,4,more,small,low,unacc +high,vhigh,3,2,big,high,unacc +low,vhigh,4,2,med,high,unacc +vhigh,vhigh,5more,4,med,med,unacc +vhigh,high,3,2,big,high,unacc +low,high,3,4,med,low,unacc +vhigh,low,4,4,big,med,acc +med,med,5more,more,med,med,acc +high,med,5more,4,med,low,unacc +med,low,4,more,big,med,good +med,low,5more,more,small,med,acc +high,high,4,2,big,med,unacc +med,med,3,more,big,low,unacc +vhigh,high,4,2,small,low,unacc +high,low,2,more,small,high,unacc +vhigh,med,3,4,med,med,unacc +med,med,2,more,small,med,unacc +med,vhigh,4,more,med,high,acc +low,high,5more,4,small,med,acc +vhigh,vhigh,5more,2,big,high,unacc +low,low,3,2,big,low,unacc +high,high,2,2,small,high,unacc +med,low,3,more,med,med,good +high,med,4,2,med,low,unacc +high,med,5more,2,big,med,unacc +vhigh,high,5more,4,small,med,unacc +high,low,2,more,med,high,acc +vhigh,high,5more,2,small,med,unacc +low,low,5more,4,big,high,vgood +high,med,3,4,big,low,unacc +low,med,3,more,big,med,good +high,vhigh,2,4,small,low,unacc +vhigh,med,5more,more,med,med,acc +low,low,4,more,small,med,acc +high,med,3,more,med,med,acc +med,vhigh,2,2,small,high,unacc +low,high,2,more,big,high,vgood +vhigh,low,2,2,med,low,unacc +low,low,3,2,med,med,unacc +low,med,3,4,big,med,good +vhigh,vhigh,2,4,med,high,unacc +low,low,3,4,small,high,good +high,high,3,2,med,low,unacc +med,low,2,more,small,med,unacc +med,vhigh,4,2,small,high,unacc +high,vhigh,2,more,small,high,unacc +high,low,5more,more,med,high,acc +low,low,5more,4,med,high,vgood +low,high,3,2,big,low,unacc +low,vhigh,3,2,big,high,unacc +low,high,4,4,small,low,unacc +vhigh,low,5more,2,med,low,unacc +med,med,4,4,big,med,acc +vhigh,vhigh,4,2,small,med,unacc +med,low,3,more,small,low,unacc +med,high,4,4,small,low,unacc +high,vhigh,3,more,small,low,unacc +high,vhigh,2,4,big,med,unacc +vhigh,high,5more,2,med,low,unacc +vhigh,vhigh,4,2,big,high,unacc +vhigh,vhigh,4,4,med,low,unacc +med,vhigh,2,2,small,med,unacc +med,low,2,more,med,med,acc +vhigh,high,4,4,big,high,unacc +med,med,3,4,small,med,acc +low,med,2,2,med,high,unacc +low,vhigh,5more,4,small,low,unacc +vhigh,high,5more,more,med,low,unacc +low,high,5more,more,big,low,unacc +vhigh,med,4,4,big,med,acc +high,vhigh,2,more,big,high,unacc +high,vhigh,4,4,big,med,unacc +high,high,2,more,big,low,unacc +low,med,2,2,big,med,unacc +vhigh,vhigh,3,more,big,med,unacc +vhigh,med,2,4,med,med,unacc +low,vhigh,2,4,med,high,acc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a7dd506a8ec04e784f7aa4b9fe95bca40b4e9722 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/train.csv @@ -0,0 +1,1383 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,2,2,small,low,unacc +med,low,5more,4,small,high,good +med,med,3,2,small,low,unacc +med,med,4,4,small,med,acc +high,low,2,4,big,med,acc +med,vhigh,5more,2,small,low,unacc +high,med,2,more,small,low,unacc +low,med,5more,more,small,high,good +med,high,5more,4,small,high,acc +med,vhigh,3,2,med,med,unacc +vhigh,low,3,more,big,high,acc +vhigh,high,3,2,small,high,unacc +low,low,4,more,small,high,good +vhigh,low,4,more,small,med,unacc +low,high,2,4,med,med,acc +low,low,2,4,big,high,vgood +low,med,4,more,med,med,good +high,med,5more,2,big,high,unacc +med,vhigh,2,4,big,low,unacc +vhigh,med,4,more,med,low,unacc +low,low,2,4,small,low,unacc +low,high,4,4,big,high,vgood +low,high,3,2,med,high,unacc +vhigh,vhigh,5more,more,small,med,unacc +low,med,4,4,med,med,good +vhigh,low,3,4,small,low,unacc +vhigh,vhigh,4,2,big,med,unacc +high,vhigh,4,2,small,med,unacc +vhigh,low,4,more,med,med,acc +med,med,2,4,small,med,acc +low,high,5more,4,small,high,acc +vhigh,high,2,more,small,low,unacc +med,high,5more,more,big,med,acc +vhigh,med,3,more,med,low,unacc +low,low,4,2,small,low,unacc +med,high,2,2,big,high,unacc +low,med,3,2,med,high,unacc +low,vhigh,2,4,big,med,acc +low,med,4,2,small,high,unacc +med,vhigh,4,2,big,high,unacc +med,high,2,more,small,med,unacc +med,low,3,2,med,high,unacc +med,high,2,more,small,low,unacc +vhigh,med,3,4,big,high,acc +low,high,2,4,med,low,unacc +low,low,2,more,med,high,good +vhigh,med,5more,4,small,high,acc +med,low,4,more,small,med,acc +vhigh,low,4,4,small,med,unacc +high,med,2,2,small,med,unacc +low,vhigh,2,more,big,med,acc +med,vhigh,4,4,med,med,acc +vhigh,high,2,more,big,high,unacc +vhigh,vhigh,5more,more,small,low,unacc +high,high,2,more,med,low,unacc +low,vhigh,5more,more,small,med,unacc +med,high,2,2,med,low,unacc +vhigh,low,3,4,small,high,acc +low,low,3,4,big,low,unacc +low,low,4,2,big,low,unacc +vhigh,vhigh,2,more,small,med,unacc +vhigh,vhigh,5more,4,small,high,unacc +med,low,2,2,med,med,unacc +vhigh,med,4,more,big,low,unacc +low,low,5more,more,big,low,unacc +med,high,5more,2,small,med,unacc +high,med,5more,2,small,med,unacc +high,med,3,2,small,low,unacc +low,low,4,2,big,high,unacc +med,med,5more,4,med,high,vgood +low,vhigh,4,4,small,high,acc +med,high,3,2,med,high,unacc +vhigh,high,5more,4,small,high,unacc +high,vhigh,5more,2,med,high,unacc +vhigh,vhigh,3,more,small,med,unacc +high,med,5more,more,med,med,acc +vhigh,low,5more,more,small,low,unacc +vhigh,med,2,more,small,high,unacc +med,vhigh,5more,more,med,high,acc +med,low,3,more,med,high,vgood +high,high,4,2,med,med,unacc +high,med,5more,2,med,high,unacc +vhigh,high,3,2,med,low,unacc +med,med,5more,2,med,med,unacc +low,high,2,more,med,low,unacc +low,vhigh,2,2,small,low,unacc +med,med,5more,more,med,low,unacc +med,high,2,4,med,low,unacc +high,high,4,more,big,low,unacc +high,low,4,4,big,med,acc +med,med,4,more,big,med,acc +low,high,4,4,small,med,acc +vhigh,med,2,more,med,high,acc +med,med,5more,more,small,low,unacc +high,low,3,more,med,high,acc +high,high,4,2,med,low,unacc +low,low,2,more,med,low,unacc +vhigh,vhigh,3,2,small,high,unacc +vhigh,vhigh,2,2,big,low,unacc +med,med,3,more,big,high,vgood +med,low,5more,2,med,low,unacc +low,med,2,4,med,med,acc +high,med,5more,more,big,high,acc +med,low,5more,more,med,med,good +med,high,3,2,med,med,unacc +med,high,5more,more,big,low,unacc +vhigh,med,3,4,small,high,acc +low,low,3,2,small,high,unacc +high,med,3,more,big,low,unacc +med,vhigh,3,4,med,med,unacc +high,high,5more,more,small,med,unacc +med,low,4,2,med,low,unacc +vhigh,high,2,more,small,med,unacc +low,med,2,2,med,low,unacc +vhigh,low,2,more,small,med,unacc +vhigh,vhigh,4,2,small,low,unacc +med,low,4,more,med,low,unacc +med,high,3,4,small,med,unacc +med,vhigh,2,more,big,low,unacc +vhigh,high,4,4,big,low,unacc +med,vhigh,4,2,small,low,unacc +vhigh,med,5more,2,small,med,unacc +vhigh,vhigh,3,2,big,high,unacc +med,high,3,more,small,high,acc +med,vhigh,3,more,small,low,unacc +low,vhigh,3,2,small,low,unacc +vhigh,high,2,more,big,med,unacc +low,low,5more,2,small,low,unacc +low,med,2,2,big,high,unacc +med,low,5more,more,med,low,unacc +high,high,5more,2,big,med,unacc +high,med,5more,4,small,high,acc +low,vhigh,3,more,big,med,acc +low,med,5more,2,big,high,unacc +med,med,3,4,big,high,vgood +low,high,3,4,small,high,acc +high,low,3,more,med,low,unacc +high,low,5more,2,small,high,unacc +med,low,5more,more,med,high,vgood +low,med,4,4,small,med,acc +low,med,3,4,small,high,good +med,med,5more,2,small,high,unacc +low,vhigh,3,4,med,high,acc +low,med,5more,2,med,med,unacc +low,low,5more,4,med,med,good +vhigh,high,5more,more,small,med,unacc +vhigh,med,2,2,med,high,unacc +vhigh,high,3,4,small,med,unacc +high,high,2,4,med,high,acc +vhigh,med,3,2,small,low,unacc +high,low,3,2,big,med,unacc +vhigh,low,4,more,big,low,unacc +low,high,3,2,small,med,unacc +vhigh,high,4,more,small,high,unacc +low,high,2,4,small,med,acc +med,low,3,more,small,high,good +high,low,4,4,med,high,acc +vhigh,vhigh,4,4,big,low,unacc +med,low,4,4,big,med,good +low,med,3,2,big,low,unacc +low,low,4,2,small,med,unacc +med,low,5more,2,small,high,unacc +low,high,4,more,small,low,unacc +high,high,3,more,big,med,acc +med,high,5more,more,med,low,unacc +vhigh,high,4,4,small,high,unacc +med,low,3,more,small,med,acc +med,low,3,2,big,high,unacc +vhigh,low,3,more,med,low,unacc +med,med,4,more,med,low,unacc +med,vhigh,2,2,med,high,unacc +high,med,5more,2,big,low,unacc +vhigh,vhigh,3,2,small,med,unacc +high,low,3,more,small,low,unacc +med,high,3,2,small,low,unacc +low,high,5more,4,big,high,vgood +med,low,4,more,med,high,vgood +med,high,3,more,small,low,unacc +vhigh,med,4,4,med,low,unacc +low,high,2,4,med,high,acc +vhigh,low,4,2,small,med,unacc +vhigh,low,3,more,small,low,unacc +high,high,3,2,big,med,unacc +med,low,4,4,small,med,acc +med,vhigh,3,more,small,med,unacc +med,high,2,4,big,med,acc +low,vhigh,3,4,med,low,unacc +med,vhigh,5more,more,med,med,acc +vhigh,high,5more,more,big,med,unacc +high,med,2,more,big,high,acc +high,low,4,more,small,high,acc +low,vhigh,4,2,big,high,unacc +low,high,4,more,small,high,acc +high,high,3,more,small,high,acc +vhigh,high,5more,2,big,low,unacc +high,med,3,4,small,high,acc +low,high,2,4,small,high,acc +high,med,3,more,med,low,unacc +low,low,5more,2,med,med,unacc +vhigh,low,3,2,big,med,unacc +low,high,4,2,small,high,unacc +high,high,3,4,small,low,unacc +vhigh,low,4,2,big,high,unacc +med,vhigh,5more,4,big,med,acc +low,high,3,more,med,low,unacc +low,low,3,2,small,low,unacc +low,low,2,more,small,med,unacc +vhigh,low,3,4,med,high,acc +high,low,3,2,med,high,unacc +med,high,5more,2,small,high,unacc +low,med,2,2,small,med,unacc +med,high,4,more,small,high,acc +high,high,5more,4,big,med,acc +low,med,5more,more,small,low,unacc +low,high,2,2,med,low,unacc +low,low,2,2,med,low,unacc +vhigh,high,2,2,small,high,unacc +high,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,big,med,unacc +low,high,3,more,big,low,unacc +high,vhigh,3,2,med,high,unacc +vhigh,low,5more,more,big,low,unacc +high,low,4,2,small,low,unacc +vhigh,high,5more,more,med,high,unacc +vhigh,vhigh,5more,2,big,low,unacc +low,high,5more,more,small,med,acc +high,med,4,more,big,med,acc +high,high,2,more,med,med,unacc +high,high,5more,2,big,high,unacc +med,vhigh,4,2,big,low,unacc +low,low,4,more,med,high,vgood +high,med,2,4,med,med,unacc +high,low,5more,4,small,high,acc +high,vhigh,4,4,med,med,unacc +low,med,4,4,small,low,unacc +vhigh,high,4,2,med,high,unacc +med,vhigh,2,more,med,high,acc +vhigh,med,3,more,med,high,acc +low,vhigh,2,more,small,low,unacc +high,vhigh,5more,4,big,med,unacc +med,med,3,4,small,low,unacc +high,high,5more,more,med,low,unacc +med,med,2,2,small,low,unacc +high,low,5more,more,small,med,unacc +low,vhigh,2,4,med,low,unacc +high,high,5more,4,med,high,acc +high,med,2,more,big,low,unacc +vhigh,med,4,more,small,med,unacc +med,low,2,more,big,low,unacc +med,med,4,2,med,med,unacc +high,low,2,more,small,med,unacc +vhigh,high,4,more,med,low,unacc +low,vhigh,5more,2,med,med,unacc +high,vhigh,5more,more,med,low,unacc +med,high,3,2,big,low,unacc +vhigh,high,3,more,big,med,unacc +high,vhigh,3,more,big,low,unacc +med,med,3,4,med,high,acc +low,low,4,4,med,low,unacc +vhigh,med,5more,more,big,low,unacc +high,med,3,2,big,high,unacc +high,med,4,2,small,low,unacc +high,high,3,4,med,low,unacc +high,high,2,more,small,high,unacc +low,low,2,2,med,med,unacc +med,vhigh,2,4,small,high,acc +med,med,4,2,big,high,unacc +vhigh,high,5more,4,big,high,unacc +low,vhigh,4,2,small,med,unacc +med,vhigh,4,more,small,low,unacc +med,vhigh,3,more,big,med,acc +high,med,4,2,big,high,unacc +high,low,3,2,big,high,unacc +vhigh,med,3,more,big,low,unacc +vhigh,vhigh,2,more,med,high,unacc +low,high,2,more,small,high,unacc +low,high,2,more,small,low,unacc +high,low,3,4,med,low,unacc +med,high,3,4,big,low,unacc +low,high,5more,more,med,med,acc +low,low,2,2,med,high,unacc +med,low,5more,4,med,high,vgood +vhigh,med,3,2,small,med,unacc +vhigh,low,3,more,med,high,acc +high,med,2,4,small,high,acc +vhigh,med,4,2,small,low,unacc +vhigh,med,2,2,small,low,unacc +low,high,3,4,med,high,acc +high,med,4,4,small,med,unacc +high,vhigh,3,4,big,med,unacc +low,low,5more,more,med,high,vgood +vhigh,vhigh,2,4,small,low,unacc +med,med,2,more,big,high,vgood +med,low,3,more,big,high,vgood +med,high,3,more,med,high,acc +high,vhigh,3,more,small,med,unacc +vhigh,low,5more,more,med,high,acc +low,low,4,4,big,high,vgood +med,low,3,4,small,high,good +high,med,5more,2,small,high,unacc +low,vhigh,2,4,small,high,acc +high,vhigh,3,more,small,high,unacc +med,high,2,more,med,med,unacc +vhigh,vhigh,4,more,med,low,unacc +med,high,4,4,med,low,unacc +med,vhigh,5more,more,small,low,unacc +high,vhigh,5more,2,small,med,unacc +vhigh,high,4,2,big,med,unacc +vhigh,low,5more,4,small,high,acc +low,med,5more,2,big,med,unacc +med,high,3,4,big,med,acc +med,high,4,more,small,med,unacc +high,low,5more,more,small,high,acc +vhigh,vhigh,3,4,small,low,unacc +med,high,5more,more,small,med,unacc +high,high,5more,2,small,med,unacc +low,high,4,2,big,high,unacc +low,med,5more,4,big,high,vgood +med,low,2,4,med,med,acc +low,vhigh,3,4,big,high,acc +med,vhigh,3,more,big,low,unacc +med,vhigh,5more,2,big,low,unacc +med,high,2,2,med,med,unacc +vhigh,low,4,more,med,high,acc +vhigh,low,3,2,med,med,unacc +vhigh,vhigh,4,4,small,low,unacc +med,vhigh,3,2,big,high,unacc +low,high,5more,more,big,med,acc +med,med,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,high,unacc +high,vhigh,4,2,big,low,unacc +high,high,2,2,big,high,unacc +low,med,4,2,small,low,unacc +low,low,3,4,small,med,acc +high,med,3,more,med,high,acc +low,high,3,2,small,high,unacc +vhigh,low,5more,2,small,med,unacc +high,low,4,4,med,med,acc +vhigh,med,2,4,med,low,unacc +vhigh,high,2,2,med,med,unacc +low,vhigh,4,4,big,low,unacc +low,vhigh,2,more,med,high,acc +med,low,2,4,med,low,unacc +med,low,2,more,med,high,good +vhigh,med,5more,more,small,med,unacc +med,high,5more,2,big,low,unacc +med,med,4,more,med,med,acc +med,high,3,more,big,high,acc +med,high,2,2,big,med,unacc +med,low,4,2,med,high,unacc +med,high,4,2,med,low,unacc +vhigh,high,5more,more,big,high,unacc +high,high,5more,2,big,low,unacc +med,high,4,2,small,med,unacc +low,vhigh,4,4,med,high,acc +vhigh,low,4,4,big,high,acc +med,vhigh,5more,more,big,high,acc +vhigh,vhigh,4,4,big,med,unacc +high,med,5more,more,big,low,unacc +high,high,5more,4,med,low,unacc +low,high,4,more,med,med,acc +vhigh,low,3,4,big,med,acc +vhigh,med,3,4,small,med,unacc +high,high,3,4,med,high,acc +med,low,5more,4,big,low,unacc +low,med,3,more,med,low,unacc +low,vhigh,5more,4,big,med,acc +med,high,5more,more,med,med,acc +low,low,4,2,med,high,unacc +low,med,3,2,med,low,unacc +low,high,2,4,big,low,unacc +low,low,5more,2,med,high,unacc +high,vhigh,5more,4,small,med,unacc +med,high,4,4,big,high,acc +vhigh,vhigh,3,2,big,low,unacc +med,high,5more,2,med,med,unacc +vhigh,high,2,2,big,low,unacc +med,med,4,4,med,high,vgood +med,high,3,more,med,low,unacc +low,high,2,more,med,med,acc +low,med,4,2,med,low,unacc +med,vhigh,5more,4,big,low,unacc +vhigh,med,2,more,big,high,acc +low,vhigh,5more,4,small,high,acc +vhigh,low,5more,2,small,low,unacc +high,med,2,4,big,low,unacc +vhigh,high,5more,2,small,high,unacc +med,low,4,2,big,high,unacc +low,med,2,2,med,med,unacc +med,med,2,4,big,high,vgood +low,high,4,2,med,high,unacc +high,med,4,more,med,low,unacc +low,high,3,4,small,med,acc +med,vhigh,4,4,big,med,acc +high,low,4,4,small,high,acc +high,high,2,4,small,med,unacc +low,med,2,more,med,med,acc +med,vhigh,5more,2,med,high,unacc +low,med,5more,4,med,high,vgood +low,high,4,4,med,low,unacc +low,low,2,4,med,high,good +high,vhigh,2,2,med,low,unacc +high,vhigh,4,2,small,low,unacc +med,vhigh,4,more,big,high,acc +med,high,3,4,small,high,acc +vhigh,low,2,more,med,med,unacc +med,med,5more,4,med,med,acc +high,med,2,2,med,med,unacc +vhigh,high,2,2,big,high,unacc +high,high,2,2,med,high,unacc +high,med,5more,more,big,med,acc +vhigh,vhigh,3,4,med,low,unacc +low,vhigh,4,more,small,low,unacc +vhigh,vhigh,4,2,med,high,unacc +low,low,2,2,big,med,unacc +low,low,4,more,small,low,unacc +low,vhigh,2,4,small,med,unacc +med,med,5more,2,med,low,unacc +low,high,3,more,small,high,acc +high,vhigh,5more,4,med,med,unacc +med,low,3,4,med,med,acc +vhigh,vhigh,5more,2,med,med,unacc +low,vhigh,4,2,big,med,unacc +high,med,4,4,small,high,acc +low,low,3,more,small,low,unacc +vhigh,high,4,more,big,high,unacc +med,vhigh,5more,4,big,high,acc +vhigh,low,4,more,big,med,acc +med,low,2,4,med,high,good +med,high,2,4,big,high,acc +vhigh,vhigh,5more,4,small,low,unacc +med,low,5more,more,small,low,unacc +vhigh,low,4,2,med,high,unacc +med,low,2,more,big,high,vgood +low,high,5more,4,big,low,unacc +high,low,5more,2,small,med,unacc +vhigh,vhigh,4,4,med,high,unacc +vhigh,low,3,more,big,low,unacc +low,low,2,more,big,low,unacc +vhigh,med,5more,2,small,low,unacc +med,vhigh,3,2,big,low,unacc +vhigh,med,2,4,small,med,unacc +med,low,2,4,big,low,unacc +high,low,4,more,big,high,acc +vhigh,vhigh,2,more,med,low,unacc +low,med,5more,4,small,high,good +low,low,5more,2,big,med,unacc +vhigh,vhigh,3,more,med,high,unacc +vhigh,med,5more,more,big,med,acc +high,med,4,more,small,high,acc +low,low,2,more,small,low,unacc +low,low,2,2,big,high,unacc +med,vhigh,4,more,small,high,acc +high,high,3,more,med,med,acc +low,vhigh,5more,2,small,high,unacc +high,high,4,2,small,med,unacc +low,vhigh,4,4,big,med,acc +med,vhigh,3,2,small,med,unacc +low,vhigh,5more,4,big,low,unacc +vhigh,vhigh,5more,4,big,high,unacc +low,med,3,4,big,high,vgood +vhigh,high,2,2,med,high,unacc +med,vhigh,5more,more,med,low,unacc +low,low,2,more,med,med,acc +low,med,5more,more,med,high,vgood +high,med,5more,4,big,med,acc +vhigh,low,5more,2,med,high,unacc +vhigh,low,4,more,small,high,acc +high,vhigh,5more,4,small,high,unacc +low,med,5more,more,small,med,acc +high,vhigh,3,2,med,med,unacc +med,med,2,2,med,low,unacc +high,low,3,more,small,high,acc +med,high,4,more,med,high,acc +vhigh,med,5more,4,med,high,acc +high,high,4,4,small,high,acc +vhigh,vhigh,2,more,big,high,unacc +vhigh,low,4,2,med,med,unacc +med,low,5more,4,big,med,good +vhigh,low,3,2,small,med,unacc +high,med,4,4,med,high,acc +low,vhigh,5more,4,med,med,acc +low,vhigh,5more,more,big,low,unacc +med,high,4,4,big,med,acc +med,low,5more,2,small,med,unacc +high,med,3,2,big,med,unacc +high,med,4,4,big,med,acc +med,med,4,4,small,low,unacc +low,high,5more,2,big,low,unacc +vhigh,low,3,2,big,high,unacc +vhigh,high,3,4,big,high,unacc +high,vhigh,5more,2,med,low,unacc +med,low,4,4,big,low,unacc +low,med,5more,2,med,low,unacc +med,high,3,2,med,low,unacc +med,high,2,more,small,high,unacc +high,low,3,more,big,high,acc +med,vhigh,3,more,small,high,acc +low,vhigh,3,4,small,high,acc +low,low,5more,more,small,low,unacc +med,high,4,more,big,low,unacc +med,low,5more,4,med,med,good +low,med,5more,4,med,med,good +vhigh,med,2,more,small,low,unacc +vhigh,high,2,more,med,low,unacc +med,low,4,more,big,low,unacc +med,vhigh,4,4,small,low,unacc +high,vhigh,4,2,big,med,unacc +low,med,4,2,big,low,unacc +vhigh,high,3,more,small,med,unacc +high,low,5more,4,big,med,acc +med,med,2,2,med,high,unacc +high,high,4,2,med,high,unacc +high,med,2,2,big,high,unacc +high,low,4,2,med,low,unacc +low,med,2,2,small,high,unacc +high,high,2,4,small,high,acc +med,med,2,4,big,low,unacc +vhigh,vhigh,2,4,small,med,unacc +med,high,5more,4,big,med,acc +med,high,4,2,big,med,unacc +med,low,2,2,small,low,unacc +high,low,3,4,med,med,unacc +high,low,2,2,med,med,unacc +low,low,2,4,med,low,unacc +low,high,3,2,small,low,unacc +med,med,5more,4,small,high,acc +vhigh,low,4,4,med,high,acc +vhigh,vhigh,5more,2,small,low,unacc +med,high,2,more,big,high,acc +vhigh,high,4,4,med,med,unacc +vhigh,high,4,more,med,high,unacc +med,low,4,4,med,low,unacc +vhigh,med,3,2,big,high,unacc +med,med,4,more,small,low,unacc +high,vhigh,2,4,small,med,unacc +vhigh,low,4,2,big,low,unacc +med,low,4,4,med,med,good +vhigh,med,5more,2,med,med,unacc +vhigh,vhigh,4,2,med,med,unacc +med,high,3,4,big,high,acc +vhigh,vhigh,3,more,med,low,unacc +high,high,5more,more,big,med,acc +vhigh,med,5more,4,small,med,unacc +vhigh,high,4,4,small,low,unacc +high,vhigh,2,more,med,high,unacc +high,high,3,2,big,low,unacc +vhigh,vhigh,5more,more,small,high,unacc +high,vhigh,2,4,med,med,unacc +vhigh,vhigh,5more,4,med,low,unacc +high,low,5more,4,small,med,unacc +med,med,3,more,med,med,acc +vhigh,med,2,more,big,med,acc +med,high,2,4,med,med,unacc +vhigh,vhigh,3,4,small,med,unacc +high,high,2,4,big,low,unacc +med,vhigh,4,4,small,med,unacc +vhigh,low,2,2,small,med,unacc +high,low,3,4,small,med,unacc +high,low,5more,2,med,med,unacc +vhigh,low,2,4,med,med,unacc +low,high,2,more,med,high,acc +low,med,3,more,small,high,good +vhigh,low,2,more,med,high,acc +low,high,5more,2,med,med,unacc +low,high,5more,more,big,high,vgood +high,low,2,4,med,high,acc +med,med,3,2,med,high,unacc +vhigh,low,5more,4,big,low,unacc +vhigh,high,3,4,med,med,unacc +vhigh,vhigh,2,4,big,med,unacc +med,med,5more,4,big,high,vgood +low,med,4,more,med,high,vgood +high,high,3,2,big,high,unacc +high,vhigh,2,more,small,med,unacc +med,med,2,more,small,low,unacc +vhigh,low,2,4,big,med,acc +low,vhigh,2,2,big,med,unacc +med,low,4,more,small,high,good +high,med,3,2,small,med,unacc +med,vhigh,2,more,big,med,acc +high,low,3,more,big,med,acc +low,low,3,more,big,high,vgood +vhigh,low,4,4,med,med,acc +med,vhigh,2,more,med,med,unacc +med,med,3,more,small,low,unacc +vhigh,vhigh,3,more,small,low,unacc +vhigh,low,5more,4,big,med,acc +med,high,3,4,med,med,unacc +low,vhigh,3,more,med,high,acc +low,low,5more,4,big,med,good +vhigh,med,3,2,small,high,unacc +low,high,3,4,big,high,vgood +vhigh,low,2,2,big,low,unacc +med,low,3,more,big,med,good +vhigh,low,4,4,small,low,unacc +med,med,3,2,small,high,unacc +low,high,5more,2,big,med,unacc +low,low,2,2,small,low,unacc +vhigh,low,3,2,med,low,unacc +high,low,5more,more,med,low,unacc +med,high,5more,4,big,high,acc +low,low,5more,more,small,high,good +low,low,3,4,med,low,unacc +low,med,2,4,big,low,unacc +high,high,4,2,small,low,unacc +high,low,5more,more,big,high,acc +low,med,2,more,big,med,good +med,med,2,2,small,high,unacc +high,low,2,4,med,low,unacc +high,med,2,2,med,high,unacc +high,vhigh,5more,2,big,med,unacc +low,high,2,2,small,med,unacc +vhigh,low,5more,more,small,high,acc +med,vhigh,3,more,big,high,acc +vhigh,vhigh,4,more,small,low,unacc +low,vhigh,4,more,small,high,acc +high,vhigh,5more,2,big,high,unacc +low,med,5more,2,med,high,unacc +med,high,2,2,small,low,unacc +low,vhigh,5more,4,small,med,unacc +low,vhigh,3,more,small,med,unacc +high,med,2,4,small,low,unacc +high,vhigh,3,4,small,low,unacc +low,med,4,4,small,high,good +high,vhigh,3,more,big,med,unacc +high,vhigh,4,4,small,low,unacc +vhigh,low,5more,more,med,low,unacc +vhigh,med,4,4,small,med,unacc +med,low,2,more,med,low,unacc +high,low,2,2,big,low,unacc +high,med,2,4,small,med,unacc +vhigh,high,3,more,med,high,unacc +low,high,2,2,small,low,unacc +high,vhigh,3,4,med,high,unacc +low,high,5more,2,small,low,unacc +high,med,5more,4,med,high,acc +med,vhigh,3,2,med,high,unacc +vhigh,low,5more,4,med,med,acc +high,low,4,more,med,low,unacc +med,high,2,2,big,low,unacc +high,high,2,more,big,med,acc +low,low,5more,more,big,high,vgood +vhigh,high,4,2,small,med,unacc +high,low,2,4,big,high,acc +high,high,5more,2,med,low,unacc +med,med,4,4,big,high,vgood +low,vhigh,5more,2,big,high,unacc +high,vhigh,4,4,small,high,unacc +med,high,4,2,small,high,unacc +vhigh,med,4,more,big,med,acc +vhigh,high,3,2,small,low,unacc +med,med,3,2,big,med,unacc +med,low,5more,2,big,med,unacc +vhigh,high,5more,more,small,high,unacc +high,low,4,4,small,med,unacc +low,med,3,4,med,low,unacc +high,med,5more,more,med,low,unacc +low,med,3,more,small,med,acc +med,high,3,more,big,med,acc +med,med,4,more,small,med,acc +med,med,3,4,med,med,acc +vhigh,high,5more,2,med,med,unacc +med,low,5more,2,big,high,unacc +med,med,2,4,med,low,unacc +med,low,2,4,big,med,good +high,high,2,4,big,med,acc +low,med,4,more,big,high,vgood +high,vhigh,5more,4,med,high,unacc +vhigh,low,5more,4,small,low,unacc +low,low,5more,4,big,low,unacc +vhigh,low,2,2,big,high,unacc +med,med,4,4,med,low,unacc +low,vhigh,5more,2,small,low,unacc +med,low,2,more,small,high,unacc +high,vhigh,3,2,big,med,unacc +vhigh,vhigh,3,4,small,high,unacc +med,vhigh,2,4,big,med,acc +high,low,4,2,med,high,unacc +high,med,5more,2,med,low,unacc +low,high,4,more,big,med,acc +vhigh,low,5more,4,big,high,acc +low,med,5more,more,big,low,unacc +low,vhigh,4,more,big,low,unacc +vhigh,high,2,2,small,low,unacc +vhigh,low,2,2,med,high,unacc +vhigh,low,2,more,small,low,unacc +high,low,2,4,small,high,acc +med,med,5more,more,med,high,vgood +high,med,3,more,big,med,acc +high,med,4,4,small,low,unacc +high,low,4,2,med,med,unacc +med,med,3,4,big,low,unacc +med,vhigh,5more,4,small,low,unacc +high,high,4,2,big,low,unacc +vhigh,high,4,more,big,low,unacc +vhigh,med,4,4,big,low,unacc +high,vhigh,2,more,med,low,unacc +high,med,2,more,small,high,unacc +high,vhigh,5more,more,small,med,unacc +high,low,2,2,big,med,unacc +vhigh,high,4,more,small,low,unacc +low,vhigh,3,4,small,med,unacc +low,low,4,more,big,med,good +low,vhigh,2,more,small,med,unacc +med,high,5more,more,small,high,acc +vhigh,vhigh,2,more,med,med,unacc +low,med,3,4,small,med,acc +med,high,3,more,small,med,unacc +high,med,3,4,big,med,acc +low,med,3,2,small,high,unacc +low,low,3,2,big,med,unacc +med,high,3,more,med,med,acc +vhigh,med,3,4,med,high,acc +high,high,4,more,big,med,acc +med,vhigh,5more,2,med,med,unacc +high,vhigh,2,4,small,high,unacc +med,med,2,4,small,low,unacc +high,high,4,more,small,med,unacc +low,vhigh,4,more,big,med,acc +med,med,4,2,big,low,unacc +low,med,5more,2,small,low,unacc +low,low,2,2,small,high,unacc +high,vhigh,5more,2,small,low,unacc +vhigh,med,4,4,small,low,unacc +vhigh,low,5more,2,big,high,unacc +med,low,3,4,big,low,unacc +high,low,3,more,med,med,acc +low,high,5more,2,med,low,unacc +high,vhigh,3,more,med,low,unacc +med,med,2,4,med,med,acc +med,high,5more,more,big,high,acc +low,low,2,more,small,high,unacc +high,low,3,2,med,low,unacc +high,high,4,4,big,med,acc +vhigh,med,5more,more,small,low,unacc +vhigh,high,4,2,big,high,unacc +low,med,2,more,med,low,unacc +med,low,5more,4,small,med,acc +low,high,4,2,big,low,unacc +vhigh,med,4,2,med,low,unacc +med,high,5more,4,med,high,acc +med,high,2,4,small,high,acc +vhigh,med,2,4,big,low,unacc +low,med,2,more,med,high,good +low,vhigh,5more,2,big,low,unacc +med,vhigh,2,more,small,low,unacc +vhigh,high,5more,4,med,high,unacc +med,high,2,4,big,low,unacc +high,low,5more,more,small,low,unacc +high,low,5more,4,big,high,acc +med,med,5more,4,small,med,acc +vhigh,med,2,more,big,low,unacc +high,med,4,2,small,high,unacc +vhigh,vhigh,4,more,small,med,unacc +low,med,4,2,big,med,unacc +med,vhigh,2,4,med,med,unacc +med,high,5more,4,small,low,unacc +high,med,4,more,med,med,acc +vhigh,med,4,more,big,high,acc +vhigh,med,2,more,med,med,unacc +vhigh,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,small,high,unacc +med,med,5more,2,small,low,unacc +high,high,4,4,big,low,unacc +high,med,4,2,med,med,unacc +low,vhigh,2,2,med,med,unacc +low,high,5more,more,med,low,unacc +vhigh,vhigh,2,2,med,low,unacc +high,low,2,more,small,low,unacc +vhigh,vhigh,4,more,med,high,unacc +high,high,2,more,big,high,acc +vhigh,high,4,4,big,med,unacc +low,vhigh,4,4,big,high,acc +vhigh,high,3,more,big,high,unacc +vhigh,vhigh,5more,2,med,low,unacc +med,low,2,4,small,high,good +low,high,3,more,big,med,acc +vhigh,med,2,2,small,med,unacc +high,high,5more,more,small,high,acc +low,vhigh,2,more,small,high,unacc +vhigh,vhigh,5more,more,med,low,unacc +high,low,2,2,small,high,unacc +low,vhigh,3,more,med,low,unacc +low,low,5more,4,small,low,unacc +med,med,4,more,big,high,vgood +high,high,3,4,big,med,acc +low,low,2,4,small,med,acc +high,vhigh,2,2,big,high,unacc +high,high,4,4,small,low,unacc +vhigh,med,5more,2,big,high,unacc +high,vhigh,2,more,med,med,unacc +low,low,4,2,big,med,unacc +low,low,5more,4,med,low,unacc +high,vhigh,5more,more,med,high,unacc +vhigh,med,2,4,big,med,acc +med,low,2,2,big,low,unacc +low,low,4,more,med,low,unacc +high,high,5more,2,small,low,unacc +vhigh,low,5more,more,med,med,acc +high,low,3,2,small,low,unacc +med,low,3,4,big,high,vgood +vhigh,high,2,4,med,high,unacc +vhigh,med,3,4,med,low,unacc +med,vhigh,3,more,med,low,unacc +vhigh,med,5more,4,big,low,unacc +high,high,3,4,small,med,unacc +vhigh,high,3,more,small,low,unacc +vhigh,high,3,more,med,low,unacc +low,low,5more,2,med,low,unacc +low,vhigh,2,4,small,low,unacc +low,med,5more,4,small,med,acc +high,high,3,more,big,low,unacc +vhigh,vhigh,4,more,med,med,unacc +high,vhigh,4,more,small,low,unacc +vhigh,low,5more,2,big,low,unacc +vhigh,vhigh,4,4,med,med,unacc +low,high,5more,2,med,high,unacc +med,med,3,2,big,high,unacc +med,med,3,more,small,high,acc +vhigh,vhigh,3,more,big,high,unacc +vhigh,high,5more,2,small,low,unacc +med,vhigh,4,2,med,high,unacc +low,high,5more,4,big,med,acc +low,med,2,2,big,low,unacc +med,med,3,2,med,low,unacc +vhigh,med,4,more,med,med,acc +med,med,5more,4,big,med,acc +med,high,2,4,small,low,unacc +vhigh,vhigh,5more,more,big,med,unacc +med,vhigh,3,4,small,low,unacc +high,low,2,4,big,low,unacc +high,med,2,2,big,low,unacc +high,low,5more,2,med,low,unacc +low,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,med,low,unacc +med,vhigh,2,more,med,low,unacc +med,high,5more,4,med,med,acc +vhigh,vhigh,3,more,small,high,unacc +vhigh,med,4,4,small,high,acc +vhigh,high,2,more,med,med,unacc +med,low,4,4,small,low,unacc +low,high,3,4,med,med,acc +low,high,4,4,big,low,unacc +vhigh,med,5more,4,med,med,acc +vhigh,high,4,more,med,med,unacc +vhigh,low,3,more,small,med,unacc +vhigh,med,2,4,big,high,acc +med,low,5more,2,big,low,unacc +low,high,3,4,big,med,acc +low,high,5more,2,small,med,unacc +vhigh,med,4,more,small,high,acc +low,vhigh,2,more,big,low,unacc +high,vhigh,5more,more,big,med,unacc +low,low,2,more,big,high,vgood +high,high,4,4,small,med,unacc +low,med,4,4,big,high,vgood +low,high,3,more,big,high,vgood +med,vhigh,5more,4,small,high,acc +med,low,5more,4,small,low,unacc +med,low,4,2,big,med,unacc +vhigh,high,5more,2,big,high,unacc +low,vhigh,2,2,small,med,unacc +high,med,4,2,med,high,unacc +high,low,2,more,big,med,acc +low,med,5more,4,big,low,unacc +high,low,2,2,med,high,unacc +vhigh,high,2,4,big,low,unacc +low,vhigh,3,2,small,high,unacc +vhigh,high,5more,4,small,low,unacc +high,med,5more,4,small,med,unacc +med,high,5more,more,med,high,acc +med,low,2,more,big,med,good +low,high,5more,more,med,high,vgood +low,vhigh,4,4,med,med,acc +med,high,5more,4,small,med,unacc +high,vhigh,3,2,big,low,unacc +med,low,3,4,big,med,good +low,vhigh,5more,more,small,low,unacc +low,low,3,more,big,low,unacc +low,low,5more,more,med,med,good +high,low,2,2,big,high,unacc +low,med,5more,4,small,low,unacc +vhigh,low,3,2,small,high,unacc +low,med,3,more,big,high,vgood +med,low,5more,more,big,high,vgood +med,low,4,more,small,low,unacc +vhigh,low,4,2,small,low,unacc +high,high,4,2,small,high,unacc +high,med,3,2,med,high,unacc +low,med,2,more,small,med,unacc +low,low,3,more,med,low,unacc +high,med,4,2,big,med,unacc +vhigh,low,5more,4,small,med,unacc +vhigh,med,2,4,small,high,acc +med,med,4,more,med,high,vgood +vhigh,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,small,low,unacc +high,low,4,2,small,high,unacc +high,vhigh,3,2,small,low,unacc +high,vhigh,4,4,big,high,unacc +high,med,5more,2,small,low,unacc +high,med,2,4,med,high,acc +low,high,4,2,med,med,unacc +med,high,3,2,big,high,unacc +vhigh,med,3,2,med,med,unacc +med,high,4,more,big,high,acc +high,high,3,2,small,high,unacc +low,low,2,4,med,med,acc +low,vhigh,2,2,big,high,unacc +high,med,5more,4,small,low,unacc +low,high,4,more,big,high,vgood +vhigh,vhigh,5more,2,big,med,unacc +vhigh,high,5more,2,big,med,unacc +high,vhigh,5more,4,big,high,unacc +vhigh,vhigh,2,4,small,high,unacc +med,high,4,more,big,med,acc +vhigh,med,4,4,med,med,acc +med,vhigh,4,2,med,low,unacc +high,med,4,4,big,high,acc +high,high,4,4,big,high,acc +med,vhigh,3,4,small,high,acc +vhigh,med,4,4,big,high,acc +vhigh,low,2,more,big,med,acc +vhigh,med,3,more,med,med,acc +med,low,3,more,med,low,unacc +vhigh,low,3,4,med,med,unacc +low,med,3,4,big,low,unacc +med,med,4,4,small,high,acc +low,med,4,4,med,low,unacc +med,low,4,4,big,high,vgood +med,vhigh,2,2,big,high,unacc +med,low,2,2,big,med,unacc +vhigh,vhigh,3,2,med,low,unacc +vhigh,low,2,more,med,low,unacc +low,vhigh,5more,4,med,high,acc +high,med,3,4,small,med,unacc +high,high,5more,2,med,med,unacc +low,vhigh,3,2,med,low,unacc +high,vhigh,3,4,big,high,unacc +high,low,2,4,med,med,unacc +vhigh,med,3,2,big,med,unacc +high,vhigh,3,2,med,low,unacc +med,vhigh,3,4,med,low,unacc +low,med,5more,2,small,med,unacc +low,low,3,more,med,high,vgood +med,high,3,2,big,med,unacc +vhigh,med,3,4,small,low,unacc +med,vhigh,2,4,small,low,unacc +med,low,5more,more,small,high,good +vhigh,med,4,2,med,high,unacc +med,high,3,4,small,low,unacc +high,med,5more,more,small,high,acc +high,low,5more,4,small,low,unacc +med,high,4,2,med,high,unacc +low,low,3,2,small,med,unacc +high,vhigh,4,4,small,med,unacc +high,low,3,4,small,high,acc +high,high,2,4,med,low,unacc +med,vhigh,4,more,big,low,unacc +high,low,4,more,small,low,unacc +high,high,5more,4,small,med,unacc +vhigh,med,4,2,big,med,unacc +high,med,2,more,small,med,unacc +med,low,3,4,small,low,unacc +high,med,5more,more,med,high,acc +vhigh,high,4,more,small,med,unacc +low,vhigh,5more,4,med,low,unacc +vhigh,high,3,more,med,med,unacc +med,low,4,more,med,med,good +high,vhigh,3,4,med,low,unacc +low,med,4,more,big,med,good +med,vhigh,3,more,med,med,acc +high,med,2,2,med,low,unacc +vhigh,low,3,more,small,high,acc +high,vhigh,2,4,med,low,unacc +vhigh,high,2,2,small,med,unacc +low,vhigh,3,4,big,low,unacc +high,low,5more,2,big,low,unacc +med,med,5more,4,big,low,unacc +med,vhigh,2,2,big,low,unacc +med,med,2,2,big,low,unacc +vhigh,low,2,more,big,high,acc +low,med,2,4,med,low,unacc +high,vhigh,5more,2,big,low,unacc +vhigh,vhigh,4,4,big,high,unacc +vhigh,low,4,2,small,high,unacc +med,med,2,4,big,med,acc +low,low,4,4,big,med,good +high,high,2,2,big,low,unacc +vhigh,low,3,2,med,high,unacc +vhigh,vhigh,3,4,big,med,unacc +high,low,3,more,small,med,unacc +high,high,3,4,med,med,unacc +high,low,4,2,big,low,unacc +vhigh,high,2,4,big,med,unacc +med,low,2,2,med,low,unacc +low,vhigh,3,more,med,med,acc +high,med,3,more,big,high,acc +low,med,5more,more,big,high,vgood +low,med,5more,more,med,low,unacc +high,low,3,4,small,low,unacc +high,med,4,4,med,low,unacc +low,vhigh,2,2,small,high,unacc +low,low,2,2,small,med,unacc +low,med,4,more,med,low,unacc +high,low,5more,4,med,high,acc +med,low,3,2,small,high,unacc +high,high,4,4,med,med,acc +vhigh,vhigh,4,more,big,low,unacc +vhigh,high,5more,4,big,low,unacc +med,low,4,more,big,high,vgood +med,vhigh,5more,more,small,high,acc +vhigh,low,5more,2,small,high,unacc +vhigh,low,4,2,big,med,unacc +med,high,2,4,small,med,unacc +low,med,3,2,big,med,unacc +high,med,3,more,small,med,unacc +high,high,3,more,med,high,acc +vhigh,med,5more,more,med,high,acc +low,low,3,4,big,med,good +vhigh,vhigh,3,2,small,low,unacc +low,low,3,2,med,low,unacc +low,high,3,4,small,low,unacc +high,high,5more,4,big,high,acc +vhigh,low,2,4,med,low,unacc +med,high,4,2,big,low,unacc +vhigh,low,2,more,small,high,unacc +high,low,2,2,small,low,unacc +high,vhigh,5more,4,med,low,unacc +med,med,5more,4,med,low,unacc +high,vhigh,2,4,big,low,unacc +low,med,3,more,small,low,unacc +med,med,5more,2,big,med,unacc +vhigh,med,3,4,big,med,acc +low,high,3,4,big,low,unacc +med,med,2,more,med,low,unacc +vhigh,vhigh,3,4,big,low,unacc +med,low,4,2,small,high,unacc +med,med,3,4,med,low,unacc +vhigh,vhigh,4,4,small,med,unacc +vhigh,vhigh,5more,2,small,high,unacc +low,vhigh,3,2,big,low,unacc +high,vhigh,3,2,small,med,unacc +med,low,4,2,small,low,unacc +vhigh,vhigh,5more,more,big,high,unacc +low,med,2,4,small,med,acc +med,low,4,2,med,med,unacc +low,vhigh,4,4,small,med,unacc +high,vhigh,5more,2,med,med,unacc +med,vhigh,2,2,small,low,unacc +low,low,2,more,big,med,good +med,high,5more,2,med,high,unacc +high,med,3,4,big,high,acc +high,med,2,more,med,med,unacc +low,vhigh,5more,more,med,low,unacc +low,high,5more,4,med,med,acc +high,med,2,more,med,high,acc +med,med,5more,more,big,low,unacc +high,vhigh,5more,more,small,high,unacc +med,low,2,2,small,med,unacc +vhigh,low,3,more,med,med,acc +med,vhigh,5more,2,small,med,unacc +vhigh,med,4,2,big,high,unacc +low,med,4,more,small,high,good +vhigh,high,4,4,small,med,unacc +low,low,4,more,big,low,unacc +high,low,3,more,big,low,unacc +vhigh,vhigh,4,2,small,high,unacc +low,low,2,4,big,low,unacc +med,vhigh,5more,4,med,med,acc +low,high,5more,more,small,low,unacc +high,low,4,more,small,med,unacc +high,med,3,4,med,high,acc +high,low,3,4,med,high,acc +vhigh,vhigh,4,2,big,low,unacc +low,high,2,2,med,med,unacc +med,vhigh,3,2,small,high,unacc +high,high,2,more,small,med,unacc +low,med,4,4,big,med,good +med,high,3,2,small,med,unacc +low,med,3,2,med,med,unacc +low,vhigh,4,4,small,low,unacc +high,low,3,4,big,med,acc +low,med,2,more,big,low,unacc +high,med,4,more,small,med,unacc +vhigh,vhigh,2,4,med,med,unacc +low,high,3,2,big,high,unacc +high,low,2,more,big,low,unacc +vhigh,vhigh,3,4,med,high,unacc +high,low,3,4,big,low,unacc +high,low,5more,more,big,low,unacc +vhigh,low,5more,more,small,med,unacc +vhigh,high,2,more,small,high,unacc +high,low,5more,4,big,low,unacc +med,vhigh,5more,4,small,med,unacc +high,med,3,2,med,low,unacc +high,low,4,more,big,med,acc +high,low,5more,4,med,med,acc +low,high,4,more,med,high,vgood +low,high,4,2,small,low,unacc +vhigh,med,5more,4,big,med,acc +high,low,3,2,small,high,unacc +high,vhigh,3,4,big,low,unacc +vhigh,med,5more,4,med,low,unacc +low,med,4,4,big,low,unacc +vhigh,high,4,2,med,med,unacc +high,med,2,2,big,med,unacc +high,med,3,4,med,med,unacc +high,high,2,4,big,high,acc +high,vhigh,3,more,med,med,unacc +high,high,3,more,small,med,unacc +vhigh,high,3,more,big,low,unacc +med,vhigh,3,4,small,med,unacc +high,high,2,more,med,high,acc +high,vhigh,4,2,med,med,unacc +med,high,2,more,med,low,unacc +med,high,5more,4,big,low,unacc +high,high,3,2,small,med,unacc +high,vhigh,4,more,med,low,unacc +high,vhigh,5more,more,small,low,unacc +med,vhigh,4,2,med,med,unacc +med,high,2,2,small,med,unacc +vhigh,low,2,2,small,high,unacc +med,vhigh,3,more,med,high,acc +med,med,5more,more,small,med,acc +med,vhigh,2,4,small,med,unacc +med,high,4,2,big,high,unacc +med,vhigh,3,4,big,med,acc +high,med,2,2,small,high,unacc +low,vhigh,5more,2,small,med,unacc +med,med,4,2,med,low,unacc +vhigh,med,4,2,med,med,unacc +med,vhigh,4,4,big,high,acc +vhigh,med,3,2,big,low,unacc +high,vhigh,4,more,big,med,unacc +low,vhigh,5more,2,med,high,unacc +med,vhigh,5more,2,big,med,unacc +med,high,5more,2,big,high,unacc +vhigh,low,3,4,small,med,unacc +high,vhigh,2,4,big,high,unacc +med,vhigh,2,2,big,med,unacc +vhigh,med,2,2,med,low,unacc +vhigh,vhigh,2,4,med,low,unacc +vhigh,med,5more,2,big,low,unacc +high,vhigh,4,4,med,high,unacc +med,low,3,4,med,high,good +med,high,3,4,med,high,acc +high,low,3,2,med,med,unacc +vhigh,low,4,more,med,low,unacc +high,low,5more,4,med,low,unacc +med,vhigh,4,4,big,low,unacc +vhigh,high,3,4,big,low,unacc +low,high,5more,more,small,high,acc +low,low,2,2,big,low,unacc +vhigh,vhigh,5more,4,med,high,unacc +med,low,4,4,med,high,vgood +vhigh,med,5more,2,med,high,unacc +low,med,2,more,small,high,unacc +low,high,4,more,big,low,unacc +high,high,5more,4,big,low,unacc +low,vhigh,4,more,small,med,unacc +low,high,2,2,big,high,unacc +high,med,3,4,med,low,unacc +med,high,5more,2,med,low,unacc +high,high,3,4,big,low,unacc +vhigh,high,4,4,med,low,unacc +vhigh,low,2,more,big,low,unacc +med,vhigh,5more,more,big,med,acc +med,high,4,more,med,low,unacc +low,high,2,2,small,high,unacc +med,vhigh,3,4,big,low,unacc +low,low,3,4,med,high,good +med,vhigh,5more,2,big,high,unacc +high,med,2,4,med,low,unacc +med,low,5more,2,med,high,unacc +low,low,3,4,med,med,acc +high,high,3,more,med,low,unacc +high,high,5more,2,small,high,unacc +vhigh,vhigh,2,2,small,med,unacc +med,med,3,4,big,med,acc +high,low,4,more,med,med,acc +high,high,4,more,med,high,acc +med,med,5more,2,med,high,unacc +vhigh,low,3,2,big,low,unacc +low,vhigh,5more,more,big,med,acc +high,low,5more,more,big,med,acc +low,low,4,4,med,med,good +vhigh,med,3,more,small,low,unacc +low,vhigh,2,more,med,med,unacc +high,high,4,4,med,low,unacc +low,high,3,2,med,low,unacc +high,med,2,more,med,low,unacc +high,low,5more,2,small,low,unacc +high,high,5more,4,med,med,acc +med,high,4,4,med,med,acc +high,high,4,more,med,med,acc +low,low,3,more,small,med,acc +med,low,3,2,small,med,unacc +low,high,4,2,big,med,unacc +vhigh,high,3,4,small,low,unacc +med,vhigh,2,more,small,high,unacc +high,med,5more,4,big,high,acc +vhigh,low,4,more,big,high,acc +med,med,2,more,med,high,acc +med,high,5more,4,med,low,unacc +vhigh,vhigh,2,2,med,med,unacc +med,low,3,2,small,low,unacc +med,low,5more,more,big,med,good +high,vhigh,5more,4,small,low,unacc +low,high,2,more,big,med,acc +low,high,3,more,med,high,vgood +low,med,4,2,small,med,unacc +med,low,3,4,small,med,acc +med,high,4,more,med,med,acc +med,vhigh,3,2,med,low,unacc +low,vhigh,5more,2,big,med,unacc +high,med,4,2,big,low,unacc +med,vhigh,2,more,big,high,acc +vhigh,med,2,2,big,med,unacc +vhigh,vhigh,4,more,big,med,unacc +low,vhigh,3,4,small,low,unacc +med,low,2,2,small,high,unacc +low,med,3,2,small,med,unacc +low,vhigh,4,2,med,low,unacc +low,med,3,4,med,med,acc +vhigh,vhigh,4,2,med,low,unacc +high,med,3,2,med,med,unacc +low,high,2,more,big,low,unacc +high,low,4,4,small,low,unacc +low,med,4,4,med,high,vgood +high,med,4,more,small,low,unacc +high,high,3,2,med,high,unacc +low,low,3,2,big,high,unacc +low,high,2,more,small,med,unacc +high,med,2,more,big,med,acc +high,low,4,2,big,med,unacc +vhigh,low,4,more,small,low,unacc +vhigh,vhigh,3,more,med,med,unacc +high,vhigh,2,more,big,med,unacc +low,low,3,2,med,high,unacc +high,high,5more,2,med,high,unacc +high,med,4,4,big,low,unacc +med,vhigh,4,more,big,med,acc +vhigh,low,5more,2,med,med,unacc +high,vhigh,2,more,big,low,unacc +med,vhigh,5more,more,small,med,unacc +vhigh,vhigh,4,more,big,high,unacc +high,low,3,2,small,med,unacc +vhigh,med,2,2,big,low,unacc +low,low,4,4,med,high,vgood +low,med,3,4,med,high,good +high,vhigh,4,more,med,high,unacc +high,low,5more,2,big,med,unacc +high,med,3,2,big,low,unacc +vhigh,low,3,4,big,high,acc +vhigh,vhigh,3,more,big,low,unacc +high,low,5more,2,big,high,unacc +vhigh,low,3,4,med,low,unacc +vhigh,low,2,4,small,low,unacc +low,high,2,2,big,med,unacc +vhigh,med,5more,more,small,high,acc +low,high,2,2,med,high,unacc +med,med,4,4,med,med,acc +high,med,4,more,med,high,acc +vhigh,high,5more,more,med,med,unacc +low,high,2,4,big,high,vgood +vhigh,low,5more,more,big,high,acc +high,med,5more,2,med,med,unacc +low,vhigh,4,4,med,low,unacc +high,med,5more,more,small,low,unacc +high,high,5more,4,small,high,acc +vhigh,vhigh,5more,2,med,high,unacc +vhigh,med,3,more,small,med,unacc +med,vhigh,2,4,big,high,acc +vhigh,med,5more,2,big,med,unacc +med,med,3,more,big,med,acc +med,low,2,2,med,high,unacc +low,vhigh,3,2,med,med,unacc +vhigh,vhigh,4,more,small,high,unacc +med,med,3,4,small,high,acc +vhigh,med,5more,4,small,low,unacc +low,high,2,4,big,med,acc +low,med,2,4,small,low,unacc +low,vhigh,3,more,small,low,unacc +med,med,4,4,big,low,unacc +med,vhigh,2,4,med,low,unacc +med,med,3,more,med,high,vgood +med,vhigh,3,4,med,high,acc +low,med,2,4,big,high,vgood +high,vhigh,5more,more,big,low,unacc +vhigh,med,3,more,big,med,acc +high,med,3,4,small,low,unacc +vhigh,vhigh,2,2,big,high,unacc +vhigh,vhigh,5more,4,small,med,unacc +high,high,3,2,small,low,unacc +low,low,3,4,small,low,unacc +low,low,4,2,med,med,unacc +vhigh,vhigh,5more,more,big,low,unacc +low,med,3,more,med,high,vgood +low,med,2,4,small,high,good +med,high,4,4,small,med,unacc +high,high,2,2,small,med,unacc +low,vhigh,2,2,med,low,unacc +vhigh,low,5more,4,med,low,unacc +high,med,4,2,small,med,unacc +high,vhigh,2,2,small,low,unacc +med,low,3,more,big,low,unacc +high,high,3,4,small,high,acc +high,high,2,more,small,low,unacc +low,low,4,4,small,low,unacc +low,med,3,more,med,med,good +vhigh,med,2,2,med,med,unacc +vhigh,med,2,more,med,low,unacc +low,low,3,more,big,med,good +vhigh,med,4,2,big,low,unacc +vhigh,high,5more,more,big,low,unacc +high,high,4,more,small,high,acc +med,med,4,2,small,high,unacc +vhigh,vhigh,2,4,big,high,unacc +low,med,3,more,big,low,unacc +med,low,4,4,small,high,good +high,high,4,more,big,high,acc +med,med,3,2,big,low,unacc +low,high,5more,2,small,high,unacc +low,med,3,2,big,high,unacc +high,high,3,4,big,high,acc +high,low,2,2,small,med,unacc +high,vhigh,4,4,big,low,unacc +low,vhigh,4,more,med,med,acc +high,med,4,4,med,med,acc +vhigh,med,4,2,small,high,unacc +low,vhigh,3,more,big,high,acc +med,high,4,4,small,high,acc +high,vhigh,2,2,med,high,unacc +med,med,2,more,med,med,acc +vhigh,high,3,4,big,med,unacc +vhigh,high,5more,4,big,med,unacc +med,med,4,more,small,high,acc +med,low,5more,2,med,med,unacc +med,vhigh,4,more,med,low,unacc +vhigh,vhigh,2,more,small,high,unacc +vhigh,high,3,4,med,high,unacc +low,vhigh,4,2,med,med,unacc +med,vhigh,4,more,small,med,unacc +high,high,4,more,med,low,unacc +low,vhigh,2,more,big,high,acc +vhigh,med,3,more,big,high,acc +low,med,5more,2,big,low,unacc +low,vhigh,5more,more,med,med,acc +high,vhigh,4,2,med,low,unacc +high,high,5more,more,med,high,acc +vhigh,low,5more,4,med,high,acc +high,vhigh,5more,more,med,med,unacc +high,med,2,2,small,low,unacc +med,high,5more,more,small,low,unacc +med,med,4,more,big,low,unacc +low,med,4,more,small,med,acc +low,vhigh,3,more,big,low,unacc +high,low,5more,more,med,med,acc +vhigh,high,4,2,big,low,unacc +med,low,5more,2,small,low,unacc +vhigh,vhigh,5more,2,small,med,unacc +med,low,3,2,med,low,unacc +med,med,5more,more,big,med,acc +high,vhigh,4,more,small,med,unacc +med,med,5more,2,big,low,unacc +vhigh,med,3,2,med,low,unacc +high,low,4,4,big,high,acc +high,vhigh,3,more,med,high,unacc +vhigh,high,3,2,med,high,unacc +med,low,3,2,med,med,unacc +vhigh,high,3,2,big,low,unacc +vhigh,low,4,2,med,low,unacc +vhigh,high,4,2,med,low,unacc +med,high,4,4,big,low,unacc +vhigh,high,2,4,small,low,unacc +vhigh,med,5more,more,big,high,acc +med,med,2,2,big,high,unacc +med,high,4,2,med,med,unacc +med,high,2,2,med,high,unacc +med,low,2,4,small,low,unacc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..403e4648dc3b3c177525a76273864fc4069db6b4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_052647/staged/public/val.csv @@ -0,0 +1,173 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,5more,more,med,med,unacc +vhigh,high,2,4,small,med,unacc +high,high,5more,more,med,med,acc +low,high,3,2,med,med,unacc +med,med,3,2,med,med,unacc +med,med,5more,more,big,high,vgood +vhigh,high,2,4,med,low,unacc +high,vhigh,2,4,med,high,unacc +high,high,4,4,med,high,acc +vhigh,low,4,4,small,high,acc +vhigh,med,5more,more,med,low,unacc +med,high,2,more,big,med,acc +low,vhigh,4,2,big,low,unacc +med,med,4,2,med,high,unacc +low,med,2,2,small,low,unacc +high,high,3,more,small,low,unacc +med,vhigh,4,4,med,high,acc +high,high,2,2,med,med,unacc +high,low,3,4,big,high,acc +vhigh,vhigh,2,2,med,high,unacc +high,low,2,more,med,low,unacc +vhigh,low,2,4,med,high,acc +low,high,4,4,small,high,acc +low,med,5more,4,big,med,good +high,vhigh,2,2,big,low,unacc +med,high,2,4,med,high,acc +low,high,4,2,small,med,unacc +high,low,4,more,med,high,acc +vhigh,low,2,4,big,high,acc +high,vhigh,3,more,big,high,unacc +low,low,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,med,unacc +med,med,3,2,small,med,unacc +low,vhigh,3,4,med,med,unacc +vhigh,vhigh,5more,more,med,high,unacc +vhigh,high,5more,4,med,low,unacc +med,med,3,more,med,low,unacc +med,vhigh,3,4,big,high,acc +vhigh,high,3,more,small,high,unacc +high,vhigh,4,more,big,high,unacc +med,vhigh,5more,2,med,low,unacc +low,high,5more,2,big,high,unacc +vhigh,low,3,more,big,med,acc +low,med,4,2,med,med,unacc +vhigh,med,4,more,small,low,unacc +med,vhigh,4,2,small,med,unacc +low,low,3,more,small,high,good +low,high,3,more,small,low,unacc +vhigh,low,4,4,big,low,unacc +high,vhigh,4,more,big,low,unacc +vhigh,med,2,2,big,high,unacc +high,med,3,more,small,high,acc +high,low,4,4,big,low,unacc +vhigh,high,2,4,big,high,unacc +vhigh,high,5more,4,med,med,unacc +low,vhigh,3,2,small,med,unacc +low,vhigh,3,4,big,med,acc +low,vhigh,5more,2,med,low,unacc +vhigh,high,2,2,med,low,unacc +med,vhigh,5more,4,med,low,unacc +high,low,5more,2,med,high,unacc +med,vhigh,2,2,med,med,unacc +high,med,4,more,big,low,unacc +med,vhigh,2,more,small,med,unacc +low,vhigh,4,2,small,low,unacc +low,low,4,2,small,high,unacc +vhigh,high,5more,2,med,high,unacc +vhigh,low,4,4,med,low,unacc +high,low,4,more,big,low,unacc +low,high,3,more,med,med,acc +high,vhigh,4,4,med,low,unacc +med,vhigh,5more,more,big,low,unacc +med,med,5more,more,small,high,acc +med,med,5more,4,small,low,unacc +vhigh,med,4,2,small,med,unacc +low,high,5more,4,med,low,unacc +high,vhigh,2,2,big,med,unacc +med,high,2,more,med,high,acc +low,vhigh,4,more,med,low,unacc +high,high,3,2,med,med,unacc +high,vhigh,4,2,small,high,unacc +med,high,5more,2,small,low,unacc +low,high,4,4,med,high,vgood +high,med,3,2,small,high,unacc +vhigh,vhigh,4,4,small,high,unacc +vhigh,high,3,2,med,med,unacc +high,vhigh,3,4,small,med,unacc +vhigh,high,2,4,med,med,unacc +med,low,5more,more,big,low,unacc +low,high,3,more,small,med,acc +vhigh,high,3,4,small,high,unacc +vhigh,vhigh,2,4,big,low,unacc +low,low,4,more,med,med,good +med,low,2,more,small,low,unacc +high,vhigh,3,4,med,med,unacc +med,med,4,2,small,med,unacc +med,low,2,4,big,high,vgood +vhigh,vhigh,3,4,big,high,unacc +high,med,3,more,small,low,unacc +vhigh,high,2,more,big,low,unacc +high,vhigh,3,2,small,high,unacc +high,vhigh,4,more,med,med,unacc +vhigh,med,3,2,med,high,unacc +med,vhigh,4,2,big,med,unacc +med,high,5more,2,big,med,unacc +med,vhigh,3,2,big,med,unacc +high,low,2,4,small,low,unacc +low,low,4,more,big,high,vgood +low,vhigh,4,more,big,high,acc +low,low,4,4,big,low,unacc +high,high,5more,more,small,low,unacc +low,high,4,2,med,low,unacc +vhigh,low,5more,2,big,med,unacc +low,high,2,4,small,low,unacc +low,low,3,more,med,med,good +low,med,2,4,big,med,good +high,vhigh,2,2,small,high,unacc +med,vhigh,2,2,med,low,unacc +med,low,4,2,small,med,unacc +med,med,2,2,small,med,unacc +low,med,5more,2,small,high,unacc +vhigh,low,2,4,big,low,unacc +med,med,3,more,small,med,acc +med,high,2,2,small,high,unacc +low,vhigh,4,2,small,high,unacc +vhigh,med,3,more,small,high,acc +vhigh,med,3,4,big,low,unacc +med,med,2,4,small,high,acc +vhigh,high,3,2,big,med,unacc +med,high,2,more,big,low,unacc +low,high,5more,4,med,high,vgood +vhigh,high,4,4,med,high,unacc +low,low,3,4,big,high,vgood +low,med,5more,4,med,low,unacc +high,vhigh,4,2,big,high,unacc +vhigh,high,2,4,small,high,unacc +high,vhigh,4,2,med,high,unacc +high,high,5more,4,small,low,unacc +high,med,5more,4,big,low,unacc +vhigh,med,2,4,med,high,acc +vhigh,vhigh,3,4,med,med,unacc +med,high,3,2,small,high,unacc +high,med,2,4,big,med,acc +med,low,3,4,med,low,unacc +vhigh,vhigh,2,2,small,high,unacc +med,med,2,2,big,med,unacc +med,med,2,more,big,med,acc +vhigh,low,2,2,big,med,unacc +high,low,2,4,small,med,unacc +low,med,5more,more,med,med,good +low,low,5more,2,small,med,unacc +low,low,2,4,small,high,good +low,med,3,2,small,low,unacc +low,vhigh,2,4,med,med,unacc +high,high,4,more,small,low,unacc +med,low,5more,4,med,low,unacc +vhigh,med,2,2,small,high,unacc +med,high,4,4,med,high,acc +vhigh,low,3,4,big,low,unacc +med,high,4,2,small,low,unacc +high,high,2,2,small,low,unacc +low,high,4,4,big,med,acc +low,high,4,more,med,low,unacc +vhigh,vhigh,2,2,big,med,unacc +med,vhigh,4,4,med,low,unacc +vhigh,low,2,2,small,low,unacc +med,vhigh,3,2,small,low,unacc +high,high,4,2,big,high,unacc +low,low,5more,more,big,med,good +low,low,4,4,small,high,good +low,vhigh,2,4,big,high,acc +low,low,2,4,big,med,good diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/ctgan_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/gen_20260321_060712.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/gen_20260321_060712.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/models_300epochs/train_20260321_060616.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/models_300epochs/train_20260321_060616.log new file mode 100644 index 0000000000000000000000000000000000000000..19673a95552befef13608269dff934aa13d5cf14 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/models_300epochs/train_20260321_060616.log @@ -0,0 +1,2 @@ +/opt/conda/lib/python3.10/site-packages/torch/autograd/graph.py:841: UserWarning: Attempting to run cuBLAS, but there was no current CUDA context! Attempting to set the primary context... (Triggered internally at /pytorch/aten/src/ATen/cuda/CublasHandlePool.cpp:270.) + return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..42af9538ee3e43a60afbe62e4802d784565264c3 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..73ff6d228c0f018a36a5c2df358fa8938c903980 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260321_060616", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/ctgan-c2-1000-20260321_060712.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/models_300epochs/ctgan_300epochs.pt" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/ctgan/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2a7e6b727ece38bbcc6ed8bf026e239d89c23722 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/ctgan/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/ctgan/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/ctgan/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..aead6ed170bec5666df0a8af7e1a2ae1d15fb367 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b3cf25081f629b35185af44e432085a72a9bb40b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/test.csv @@ -0,0 +1,175 @@ +buying,maint,doors,persons,lug_boot,safety,class +low,med,2,more,big,high,vgood +med,med,2,more,small,high,unacc +low,vhigh,5more,more,small,high,acc +vhigh,med,2,more,small,med,unacc +low,high,4,more,small,med,acc +low,med,4,2,med,high,unacc +vhigh,vhigh,2,more,big,low,unacc +med,med,4,2,small,low,unacc +high,vhigh,5more,2,small,high,unacc +med,med,2,2,med,med,unacc +med,vhigh,5more,4,med,high,acc +med,low,3,2,big,low,unacc +high,low,2,more,big,high,acc +high,low,3,2,big,low,unacc +vhigh,high,2,more,med,high,unacc +med,low,3,2,big,med,unacc +low,low,5more,4,small,high,good +low,vhigh,5more,4,big,high,acc +vhigh,low,2,2,med,med,unacc +med,low,5more,4,big,high,vgood +vhigh,med,5more,4,big,high,acc +vhigh,med,2,4,small,low,unacc +vhigh,vhigh,5more,4,big,med,unacc +low,med,3,4,small,low,unacc +vhigh,high,4,more,big,med,unacc +med,high,3,4,med,low,unacc +med,high,4,more,small,low,unacc +vhigh,med,4,4,med,high,acc +low,med,5more,more,big,med,good +high,med,5more,4,med,med,acc +high,low,4,2,big,high,unacc +med,low,2,2,big,high,unacc +med,vhigh,2,4,med,high,acc +med,low,2,4,small,med,acc +low,med,2,more,small,low,unacc +high,vhigh,5more,more,big,high,unacc +med,med,2,more,big,low,unacc +low,low,5more,2,small,high,unacc +low,med,2,4,med,high,good +high,vhigh,4,more,small,high,unacc +low,low,5more,more,small,med,acc +high,high,2,2,med,low,unacc +vhigh,med,4,more,med,high,acc +med,vhigh,4,more,med,med,acc +low,vhigh,2,more,med,low,unacc +high,low,4,2,small,med,unacc +med,high,3,more,big,low,unacc +low,vhigh,3,more,small,high,acc +high,vhigh,2,2,med,med,unacc +high,high,5more,more,big,low,unacc +low,high,4,4,med,med,acc +med,med,5more,2,small,med,unacc +high,vhigh,2,2,small,med,unacc +vhigh,high,3,2,small,med,unacc +high,high,2,4,small,low,unacc +high,low,4,4,med,low,unacc +high,high,5more,more,big,high,acc +low,low,5more,4,small,med,acc +high,vhigh,3,4,small,high,unacc +vhigh,high,2,2,big,med,unacc +low,med,4,more,big,low,unacc +low,med,4,2,big,high,unacc +high,med,2,4,big,high,acc +low,vhigh,5more,more,big,high,acc +high,vhigh,2,more,small,low,unacc +med,med,4,2,big,med,unacc +low,high,2,2,big,low,unacc +low,vhigh,2,4,big,low,unacc +high,high,2,4,med,med,unacc +high,low,2,more,med,med,unacc +med,vhigh,5more,2,small,high,unacc +vhigh,low,2,4,small,high,acc +low,low,5more,more,med,low,unacc +low,high,5more,4,small,low,unacc +med,med,2,4,med,high,acc +vhigh,low,3,2,small,low,unacc +low,vhigh,2,2,med,high,unacc +med,low,4,2,big,low,unacc +vhigh,high,3,4,med,low,unacc +low,vhigh,3,2,med,high,unacc +low,vhigh,5more,more,med,high,acc +low,high,3,2,big,med,unacc +high,high,2,2,big,med,unacc +low,vhigh,4,more,med,high,acc +vhigh,low,5more,more,big,med,acc +high,med,4,more,big,high,acc +high,low,2,2,med,low,unacc +vhigh,low,2,4,small,med,unacc +high,med,5more,more,small,med,unacc +low,vhigh,2,2,big,low,unacc +med,vhigh,4,4,small,high,acc +low,low,4,4,small,med,acc +low,low,4,2,med,low,unacc +vhigh,high,5more,more,small,low,unacc +low,low,5more,2,big,low,unacc +vhigh,high,4,2,small,high,unacc +high,high,3,more,big,high,acc +low,med,4,more,small,low,unacc +high,vhigh,3,2,big,high,unacc +low,vhigh,4,2,med,high,unacc +vhigh,vhigh,5more,4,med,med,unacc +vhigh,high,3,2,big,high,unacc +low,high,3,4,med,low,unacc +vhigh,low,4,4,big,med,acc +med,med,5more,more,med,med,acc +high,med,5more,4,med,low,unacc +med,low,4,more,big,med,good +med,low,5more,more,small,med,acc +high,high,4,2,big,med,unacc +med,med,3,more,big,low,unacc +vhigh,high,4,2,small,low,unacc +high,low,2,more,small,high,unacc +vhigh,med,3,4,med,med,unacc +med,med,2,more,small,med,unacc +med,vhigh,4,more,med,high,acc +low,high,5more,4,small,med,acc +vhigh,vhigh,5more,2,big,high,unacc +low,low,3,2,big,low,unacc +high,high,2,2,small,high,unacc +med,low,3,more,med,med,good +high,med,4,2,med,low,unacc +high,med,5more,2,big,med,unacc +vhigh,high,5more,4,small,med,unacc +high,low,2,more,med,high,acc +vhigh,high,5more,2,small,med,unacc +low,low,5more,4,big,high,vgood +high,med,3,4,big,low,unacc +low,med,3,more,big,med,good +high,vhigh,2,4,small,low,unacc +vhigh,med,5more,more,med,med,acc +low,low,4,more,small,med,acc +high,med,3,more,med,med,acc +med,vhigh,2,2,small,high,unacc +low,high,2,more,big,high,vgood +vhigh,low,2,2,med,low,unacc +low,low,3,2,med,med,unacc +low,med,3,4,big,med,good +vhigh,vhigh,2,4,med,high,unacc +low,low,3,4,small,high,good +high,high,3,2,med,low,unacc +med,low,2,more,small,med,unacc +med,vhigh,4,2,small,high,unacc +high,vhigh,2,more,small,high,unacc +high,low,5more,more,med,high,acc +low,low,5more,4,med,high,vgood +low,high,3,2,big,low,unacc +low,vhigh,3,2,big,high,unacc +low,high,4,4,small,low,unacc +vhigh,low,5more,2,med,low,unacc +med,med,4,4,big,med,acc +vhigh,vhigh,4,2,small,med,unacc +med,low,3,more,small,low,unacc +med,high,4,4,small,low,unacc +high,vhigh,3,more,small,low,unacc +high,vhigh,2,4,big,med,unacc +vhigh,high,5more,2,med,low,unacc +vhigh,vhigh,4,2,big,high,unacc +vhigh,vhigh,4,4,med,low,unacc +med,vhigh,2,2,small,med,unacc +med,low,2,more,med,med,acc +vhigh,high,4,4,big,high,unacc +med,med,3,4,small,med,acc +low,med,2,2,med,high,unacc +low,vhigh,5more,4,small,low,unacc +vhigh,high,5more,more,med,low,unacc +low,high,5more,more,big,low,unacc +vhigh,med,4,4,big,med,acc +high,vhigh,2,more,big,high,unacc +high,vhigh,4,4,big,med,unacc +high,high,2,more,big,low,unacc +low,med,2,2,big,med,unacc +vhigh,vhigh,3,more,big,med,unacc +vhigh,med,2,4,med,med,unacc +low,vhigh,2,4,med,high,acc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a7dd506a8ec04e784f7aa4b9fe95bca40b4e9722 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/train.csv @@ -0,0 +1,1383 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,2,2,small,low,unacc +med,low,5more,4,small,high,good +med,med,3,2,small,low,unacc +med,med,4,4,small,med,acc +high,low,2,4,big,med,acc +med,vhigh,5more,2,small,low,unacc +high,med,2,more,small,low,unacc +low,med,5more,more,small,high,good +med,high,5more,4,small,high,acc +med,vhigh,3,2,med,med,unacc +vhigh,low,3,more,big,high,acc +vhigh,high,3,2,small,high,unacc +low,low,4,more,small,high,good +vhigh,low,4,more,small,med,unacc +low,high,2,4,med,med,acc +low,low,2,4,big,high,vgood +low,med,4,more,med,med,good +high,med,5more,2,big,high,unacc +med,vhigh,2,4,big,low,unacc +vhigh,med,4,more,med,low,unacc +low,low,2,4,small,low,unacc +low,high,4,4,big,high,vgood +low,high,3,2,med,high,unacc +vhigh,vhigh,5more,more,small,med,unacc +low,med,4,4,med,med,good +vhigh,low,3,4,small,low,unacc +vhigh,vhigh,4,2,big,med,unacc +high,vhigh,4,2,small,med,unacc +vhigh,low,4,more,med,med,acc +med,med,2,4,small,med,acc +low,high,5more,4,small,high,acc +vhigh,high,2,more,small,low,unacc +med,high,5more,more,big,med,acc +vhigh,med,3,more,med,low,unacc +low,low,4,2,small,low,unacc +med,high,2,2,big,high,unacc +low,med,3,2,med,high,unacc +low,vhigh,2,4,big,med,acc +low,med,4,2,small,high,unacc +med,vhigh,4,2,big,high,unacc +med,high,2,more,small,med,unacc +med,low,3,2,med,high,unacc +med,high,2,more,small,low,unacc +vhigh,med,3,4,big,high,acc +low,high,2,4,med,low,unacc +low,low,2,more,med,high,good +vhigh,med,5more,4,small,high,acc +med,low,4,more,small,med,acc +vhigh,low,4,4,small,med,unacc +high,med,2,2,small,med,unacc +low,vhigh,2,more,big,med,acc +med,vhigh,4,4,med,med,acc +vhigh,high,2,more,big,high,unacc +vhigh,vhigh,5more,more,small,low,unacc +high,high,2,more,med,low,unacc +low,vhigh,5more,more,small,med,unacc +med,high,2,2,med,low,unacc +vhigh,low,3,4,small,high,acc +low,low,3,4,big,low,unacc +low,low,4,2,big,low,unacc +vhigh,vhigh,2,more,small,med,unacc +vhigh,vhigh,5more,4,small,high,unacc +med,low,2,2,med,med,unacc +vhigh,med,4,more,big,low,unacc +low,low,5more,more,big,low,unacc +med,high,5more,2,small,med,unacc +high,med,5more,2,small,med,unacc +high,med,3,2,small,low,unacc +low,low,4,2,big,high,unacc +med,med,5more,4,med,high,vgood +low,vhigh,4,4,small,high,acc +med,high,3,2,med,high,unacc +vhigh,high,5more,4,small,high,unacc +high,vhigh,5more,2,med,high,unacc +vhigh,vhigh,3,more,small,med,unacc +high,med,5more,more,med,med,acc +vhigh,low,5more,more,small,low,unacc +vhigh,med,2,more,small,high,unacc +med,vhigh,5more,more,med,high,acc +med,low,3,more,med,high,vgood +high,high,4,2,med,med,unacc +high,med,5more,2,med,high,unacc +vhigh,high,3,2,med,low,unacc +med,med,5more,2,med,med,unacc +low,high,2,more,med,low,unacc +low,vhigh,2,2,small,low,unacc +med,med,5more,more,med,low,unacc +med,high,2,4,med,low,unacc +high,high,4,more,big,low,unacc +high,low,4,4,big,med,acc +med,med,4,more,big,med,acc +low,high,4,4,small,med,acc +vhigh,med,2,more,med,high,acc +med,med,5more,more,small,low,unacc +high,low,3,more,med,high,acc +high,high,4,2,med,low,unacc +low,low,2,more,med,low,unacc +vhigh,vhigh,3,2,small,high,unacc +vhigh,vhigh,2,2,big,low,unacc +med,med,3,more,big,high,vgood +med,low,5more,2,med,low,unacc +low,med,2,4,med,med,acc +high,med,5more,more,big,high,acc +med,low,5more,more,med,med,good +med,high,3,2,med,med,unacc +med,high,5more,more,big,low,unacc +vhigh,med,3,4,small,high,acc +low,low,3,2,small,high,unacc +high,med,3,more,big,low,unacc +med,vhigh,3,4,med,med,unacc +high,high,5more,more,small,med,unacc +med,low,4,2,med,low,unacc +vhigh,high,2,more,small,med,unacc +low,med,2,2,med,low,unacc +vhigh,low,2,more,small,med,unacc +vhigh,vhigh,4,2,small,low,unacc +med,low,4,more,med,low,unacc +med,high,3,4,small,med,unacc +med,vhigh,2,more,big,low,unacc +vhigh,high,4,4,big,low,unacc +med,vhigh,4,2,small,low,unacc +vhigh,med,5more,2,small,med,unacc +vhigh,vhigh,3,2,big,high,unacc +med,high,3,more,small,high,acc +med,vhigh,3,more,small,low,unacc +low,vhigh,3,2,small,low,unacc +vhigh,high,2,more,big,med,unacc +low,low,5more,2,small,low,unacc +low,med,2,2,big,high,unacc +med,low,5more,more,med,low,unacc +high,high,5more,2,big,med,unacc +high,med,5more,4,small,high,acc +low,vhigh,3,more,big,med,acc +low,med,5more,2,big,high,unacc +med,med,3,4,big,high,vgood +low,high,3,4,small,high,acc +high,low,3,more,med,low,unacc +high,low,5more,2,small,high,unacc +med,low,5more,more,med,high,vgood +low,med,4,4,small,med,acc +low,med,3,4,small,high,good +med,med,5more,2,small,high,unacc +low,vhigh,3,4,med,high,acc +low,med,5more,2,med,med,unacc +low,low,5more,4,med,med,good +vhigh,high,5more,more,small,med,unacc +vhigh,med,2,2,med,high,unacc +vhigh,high,3,4,small,med,unacc +high,high,2,4,med,high,acc +vhigh,med,3,2,small,low,unacc +high,low,3,2,big,med,unacc +vhigh,low,4,more,big,low,unacc +low,high,3,2,small,med,unacc +vhigh,high,4,more,small,high,unacc +low,high,2,4,small,med,acc +med,low,3,more,small,high,good +high,low,4,4,med,high,acc +vhigh,vhigh,4,4,big,low,unacc +med,low,4,4,big,med,good +low,med,3,2,big,low,unacc +low,low,4,2,small,med,unacc +med,low,5more,2,small,high,unacc +low,high,4,more,small,low,unacc +high,high,3,more,big,med,acc +med,high,5more,more,med,low,unacc +vhigh,high,4,4,small,high,unacc +med,low,3,more,small,med,acc +med,low,3,2,big,high,unacc +vhigh,low,3,more,med,low,unacc +med,med,4,more,med,low,unacc +med,vhigh,2,2,med,high,unacc +high,med,5more,2,big,low,unacc +vhigh,vhigh,3,2,small,med,unacc +high,low,3,more,small,low,unacc +med,high,3,2,small,low,unacc +low,high,5more,4,big,high,vgood +med,low,4,more,med,high,vgood +med,high,3,more,small,low,unacc +vhigh,med,4,4,med,low,unacc +low,high,2,4,med,high,acc +vhigh,low,4,2,small,med,unacc +vhigh,low,3,more,small,low,unacc +high,high,3,2,big,med,unacc +med,low,4,4,small,med,acc +med,vhigh,3,more,small,med,unacc +med,high,2,4,big,med,acc +low,vhigh,3,4,med,low,unacc +med,vhigh,5more,more,med,med,acc +vhigh,high,5more,more,big,med,unacc +high,med,2,more,big,high,acc +high,low,4,more,small,high,acc +low,vhigh,4,2,big,high,unacc +low,high,4,more,small,high,acc +high,high,3,more,small,high,acc +vhigh,high,5more,2,big,low,unacc +high,med,3,4,small,high,acc +low,high,2,4,small,high,acc +high,med,3,more,med,low,unacc +low,low,5more,2,med,med,unacc +vhigh,low,3,2,big,med,unacc +low,high,4,2,small,high,unacc +high,high,3,4,small,low,unacc +vhigh,low,4,2,big,high,unacc +med,vhigh,5more,4,big,med,acc +low,high,3,more,med,low,unacc +low,low,3,2,small,low,unacc +low,low,2,more,small,med,unacc +vhigh,low,3,4,med,high,acc +high,low,3,2,med,high,unacc +med,high,5more,2,small,high,unacc +low,med,2,2,small,med,unacc +med,high,4,more,small,high,acc +high,high,5more,4,big,med,acc +low,med,5more,more,small,low,unacc +low,high,2,2,med,low,unacc +low,low,2,2,med,low,unacc +vhigh,high,2,2,small,high,unacc +high,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,big,med,unacc +low,high,3,more,big,low,unacc +high,vhigh,3,2,med,high,unacc +vhigh,low,5more,more,big,low,unacc +high,low,4,2,small,low,unacc +vhigh,high,5more,more,med,high,unacc +vhigh,vhigh,5more,2,big,low,unacc +low,high,5more,more,small,med,acc +high,med,4,more,big,med,acc +high,high,2,more,med,med,unacc +high,high,5more,2,big,high,unacc +med,vhigh,4,2,big,low,unacc +low,low,4,more,med,high,vgood +high,med,2,4,med,med,unacc +high,low,5more,4,small,high,acc +high,vhigh,4,4,med,med,unacc +low,med,4,4,small,low,unacc +vhigh,high,4,2,med,high,unacc +med,vhigh,2,more,med,high,acc +vhigh,med,3,more,med,high,acc +low,vhigh,2,more,small,low,unacc +high,vhigh,5more,4,big,med,unacc +med,med,3,4,small,low,unacc +high,high,5more,more,med,low,unacc +med,med,2,2,small,low,unacc +high,low,5more,more,small,med,unacc +low,vhigh,2,4,med,low,unacc +high,high,5more,4,med,high,acc +high,med,2,more,big,low,unacc +vhigh,med,4,more,small,med,unacc +med,low,2,more,big,low,unacc +med,med,4,2,med,med,unacc +high,low,2,more,small,med,unacc +vhigh,high,4,more,med,low,unacc +low,vhigh,5more,2,med,med,unacc +high,vhigh,5more,more,med,low,unacc +med,high,3,2,big,low,unacc +vhigh,high,3,more,big,med,unacc +high,vhigh,3,more,big,low,unacc +med,med,3,4,med,high,acc +low,low,4,4,med,low,unacc +vhigh,med,5more,more,big,low,unacc +high,med,3,2,big,high,unacc +high,med,4,2,small,low,unacc +high,high,3,4,med,low,unacc +high,high,2,more,small,high,unacc +low,low,2,2,med,med,unacc +med,vhigh,2,4,small,high,acc +med,med,4,2,big,high,unacc +vhigh,high,5more,4,big,high,unacc +low,vhigh,4,2,small,med,unacc +med,vhigh,4,more,small,low,unacc +med,vhigh,3,more,big,med,acc +high,med,4,2,big,high,unacc +high,low,3,2,big,high,unacc +vhigh,med,3,more,big,low,unacc +vhigh,vhigh,2,more,med,high,unacc +low,high,2,more,small,high,unacc +low,high,2,more,small,low,unacc +high,low,3,4,med,low,unacc +med,high,3,4,big,low,unacc +low,high,5more,more,med,med,acc +low,low,2,2,med,high,unacc +med,low,5more,4,med,high,vgood +vhigh,med,3,2,small,med,unacc +vhigh,low,3,more,med,high,acc +high,med,2,4,small,high,acc +vhigh,med,4,2,small,low,unacc +vhigh,med,2,2,small,low,unacc +low,high,3,4,med,high,acc +high,med,4,4,small,med,unacc +high,vhigh,3,4,big,med,unacc +low,low,5more,more,med,high,vgood +vhigh,vhigh,2,4,small,low,unacc +med,med,2,more,big,high,vgood +med,low,3,more,big,high,vgood +med,high,3,more,med,high,acc +high,vhigh,3,more,small,med,unacc +vhigh,low,5more,more,med,high,acc +low,low,4,4,big,high,vgood +med,low,3,4,small,high,good +high,med,5more,2,small,high,unacc +low,vhigh,2,4,small,high,acc +high,vhigh,3,more,small,high,unacc +med,high,2,more,med,med,unacc +vhigh,vhigh,4,more,med,low,unacc +med,high,4,4,med,low,unacc +med,vhigh,5more,more,small,low,unacc +high,vhigh,5more,2,small,med,unacc +vhigh,high,4,2,big,med,unacc +vhigh,low,5more,4,small,high,acc +low,med,5more,2,big,med,unacc +med,high,3,4,big,med,acc +med,high,4,more,small,med,unacc +high,low,5more,more,small,high,acc +vhigh,vhigh,3,4,small,low,unacc +med,high,5more,more,small,med,unacc +high,high,5more,2,small,med,unacc +low,high,4,2,big,high,unacc +low,med,5more,4,big,high,vgood +med,low,2,4,med,med,acc +low,vhigh,3,4,big,high,acc +med,vhigh,3,more,big,low,unacc +med,vhigh,5more,2,big,low,unacc +med,high,2,2,med,med,unacc +vhigh,low,4,more,med,high,acc +vhigh,low,3,2,med,med,unacc +vhigh,vhigh,4,4,small,low,unacc +med,vhigh,3,2,big,high,unacc +low,high,5more,more,big,med,acc +med,med,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,high,unacc +high,vhigh,4,2,big,low,unacc +high,high,2,2,big,high,unacc +low,med,4,2,small,low,unacc +low,low,3,4,small,med,acc +high,med,3,more,med,high,acc +low,high,3,2,small,high,unacc +vhigh,low,5more,2,small,med,unacc +high,low,4,4,med,med,acc +vhigh,med,2,4,med,low,unacc +vhigh,high,2,2,med,med,unacc +low,vhigh,4,4,big,low,unacc +low,vhigh,2,more,med,high,acc +med,low,2,4,med,low,unacc +med,low,2,more,med,high,good +vhigh,med,5more,more,small,med,unacc +med,high,5more,2,big,low,unacc +med,med,4,more,med,med,acc +med,high,3,more,big,high,acc +med,high,2,2,big,med,unacc +med,low,4,2,med,high,unacc +med,high,4,2,med,low,unacc +vhigh,high,5more,more,big,high,unacc +high,high,5more,2,big,low,unacc +med,high,4,2,small,med,unacc +low,vhigh,4,4,med,high,acc +vhigh,low,4,4,big,high,acc +med,vhigh,5more,more,big,high,acc +vhigh,vhigh,4,4,big,med,unacc +high,med,5more,more,big,low,unacc +high,high,5more,4,med,low,unacc +low,high,4,more,med,med,acc +vhigh,low,3,4,big,med,acc +vhigh,med,3,4,small,med,unacc +high,high,3,4,med,high,acc +med,low,5more,4,big,low,unacc +low,med,3,more,med,low,unacc +low,vhigh,5more,4,big,med,acc +med,high,5more,more,med,med,acc +low,low,4,2,med,high,unacc +low,med,3,2,med,low,unacc +low,high,2,4,big,low,unacc +low,low,5more,2,med,high,unacc +high,vhigh,5more,4,small,med,unacc +med,high,4,4,big,high,acc +vhigh,vhigh,3,2,big,low,unacc +med,high,5more,2,med,med,unacc +vhigh,high,2,2,big,low,unacc +med,med,4,4,med,high,vgood +med,high,3,more,med,low,unacc +low,high,2,more,med,med,acc +low,med,4,2,med,low,unacc +med,vhigh,5more,4,big,low,unacc +vhigh,med,2,more,big,high,acc +low,vhigh,5more,4,small,high,acc +vhigh,low,5more,2,small,low,unacc +high,med,2,4,big,low,unacc +vhigh,high,5more,2,small,high,unacc +med,low,4,2,big,high,unacc +low,med,2,2,med,med,unacc +med,med,2,4,big,high,vgood +low,high,4,2,med,high,unacc +high,med,4,more,med,low,unacc +low,high,3,4,small,med,acc +med,vhigh,4,4,big,med,acc +high,low,4,4,small,high,acc +high,high,2,4,small,med,unacc +low,med,2,more,med,med,acc +med,vhigh,5more,2,med,high,unacc +low,med,5more,4,med,high,vgood +low,high,4,4,med,low,unacc +low,low,2,4,med,high,good +high,vhigh,2,2,med,low,unacc +high,vhigh,4,2,small,low,unacc +med,vhigh,4,more,big,high,acc +med,high,3,4,small,high,acc +vhigh,low,2,more,med,med,unacc +med,med,5more,4,med,med,acc +high,med,2,2,med,med,unacc +vhigh,high,2,2,big,high,unacc +high,high,2,2,med,high,unacc +high,med,5more,more,big,med,acc +vhigh,vhigh,3,4,med,low,unacc +low,vhigh,4,more,small,low,unacc +vhigh,vhigh,4,2,med,high,unacc +low,low,2,2,big,med,unacc +low,low,4,more,small,low,unacc +low,vhigh,2,4,small,med,unacc +med,med,5more,2,med,low,unacc +low,high,3,more,small,high,acc +high,vhigh,5more,4,med,med,unacc +med,low,3,4,med,med,acc +vhigh,vhigh,5more,2,med,med,unacc +low,vhigh,4,2,big,med,unacc +high,med,4,4,small,high,acc +low,low,3,more,small,low,unacc +vhigh,high,4,more,big,high,unacc +med,vhigh,5more,4,big,high,acc +vhigh,low,4,more,big,med,acc +med,low,2,4,med,high,good +med,high,2,4,big,high,acc +vhigh,vhigh,5more,4,small,low,unacc +med,low,5more,more,small,low,unacc +vhigh,low,4,2,med,high,unacc +med,low,2,more,big,high,vgood +low,high,5more,4,big,low,unacc +high,low,5more,2,small,med,unacc +vhigh,vhigh,4,4,med,high,unacc +vhigh,low,3,more,big,low,unacc +low,low,2,more,big,low,unacc +vhigh,med,5more,2,small,low,unacc +med,vhigh,3,2,big,low,unacc +vhigh,med,2,4,small,med,unacc +med,low,2,4,big,low,unacc +high,low,4,more,big,high,acc +vhigh,vhigh,2,more,med,low,unacc +low,med,5more,4,small,high,good +low,low,5more,2,big,med,unacc +vhigh,vhigh,3,more,med,high,unacc +vhigh,med,5more,more,big,med,acc +high,med,4,more,small,high,acc +low,low,2,more,small,low,unacc +low,low,2,2,big,high,unacc +med,vhigh,4,more,small,high,acc +high,high,3,more,med,med,acc +low,vhigh,5more,2,small,high,unacc +high,high,4,2,small,med,unacc +low,vhigh,4,4,big,med,acc +med,vhigh,3,2,small,med,unacc +low,vhigh,5more,4,big,low,unacc +vhigh,vhigh,5more,4,big,high,unacc +low,med,3,4,big,high,vgood +vhigh,high,2,2,med,high,unacc +med,vhigh,5more,more,med,low,unacc +low,low,2,more,med,med,acc +low,med,5more,more,med,high,vgood +high,med,5more,4,big,med,acc +vhigh,low,5more,2,med,high,unacc +vhigh,low,4,more,small,high,acc +high,vhigh,5more,4,small,high,unacc +low,med,5more,more,small,med,acc +high,vhigh,3,2,med,med,unacc +med,med,2,2,med,low,unacc +high,low,3,more,small,high,acc +med,high,4,more,med,high,acc +vhigh,med,5more,4,med,high,acc +high,high,4,4,small,high,acc +vhigh,vhigh,2,more,big,high,unacc +vhigh,low,4,2,med,med,unacc +med,low,5more,4,big,med,good +vhigh,low,3,2,small,med,unacc +high,med,4,4,med,high,acc +low,vhigh,5more,4,med,med,acc +low,vhigh,5more,more,big,low,unacc +med,high,4,4,big,med,acc +med,low,5more,2,small,med,unacc +high,med,3,2,big,med,unacc +high,med,4,4,big,med,acc +med,med,4,4,small,low,unacc +low,high,5more,2,big,low,unacc +vhigh,low,3,2,big,high,unacc +vhigh,high,3,4,big,high,unacc +high,vhigh,5more,2,med,low,unacc +med,low,4,4,big,low,unacc +low,med,5more,2,med,low,unacc +med,high,3,2,med,low,unacc +med,high,2,more,small,high,unacc +high,low,3,more,big,high,acc +med,vhigh,3,more,small,high,acc +low,vhigh,3,4,small,high,acc +low,low,5more,more,small,low,unacc +med,high,4,more,big,low,unacc +med,low,5more,4,med,med,good +low,med,5more,4,med,med,good +vhigh,med,2,more,small,low,unacc +vhigh,high,2,more,med,low,unacc +med,low,4,more,big,low,unacc +med,vhigh,4,4,small,low,unacc +high,vhigh,4,2,big,med,unacc +low,med,4,2,big,low,unacc +vhigh,high,3,more,small,med,unacc +high,low,5more,4,big,med,acc +med,med,2,2,med,high,unacc +high,high,4,2,med,high,unacc +high,med,2,2,big,high,unacc +high,low,4,2,med,low,unacc +low,med,2,2,small,high,unacc +high,high,2,4,small,high,acc +med,med,2,4,big,low,unacc +vhigh,vhigh,2,4,small,med,unacc +med,high,5more,4,big,med,acc +med,high,4,2,big,med,unacc +med,low,2,2,small,low,unacc +high,low,3,4,med,med,unacc +high,low,2,2,med,med,unacc +low,low,2,4,med,low,unacc +low,high,3,2,small,low,unacc +med,med,5more,4,small,high,acc +vhigh,low,4,4,med,high,acc +vhigh,vhigh,5more,2,small,low,unacc +med,high,2,more,big,high,acc +vhigh,high,4,4,med,med,unacc +vhigh,high,4,more,med,high,unacc +med,low,4,4,med,low,unacc +vhigh,med,3,2,big,high,unacc +med,med,4,more,small,low,unacc +high,vhigh,2,4,small,med,unacc +vhigh,low,4,2,big,low,unacc +med,low,4,4,med,med,good +vhigh,med,5more,2,med,med,unacc +vhigh,vhigh,4,2,med,med,unacc +med,high,3,4,big,high,acc +vhigh,vhigh,3,more,med,low,unacc +high,high,5more,more,big,med,acc +vhigh,med,5more,4,small,med,unacc +vhigh,high,4,4,small,low,unacc +high,vhigh,2,more,med,high,unacc +high,high,3,2,big,low,unacc +vhigh,vhigh,5more,more,small,high,unacc +high,vhigh,2,4,med,med,unacc +vhigh,vhigh,5more,4,med,low,unacc +high,low,5more,4,small,med,unacc +med,med,3,more,med,med,acc +vhigh,med,2,more,big,med,acc +med,high,2,4,med,med,unacc +vhigh,vhigh,3,4,small,med,unacc +high,high,2,4,big,low,unacc +med,vhigh,4,4,small,med,unacc +vhigh,low,2,2,small,med,unacc +high,low,3,4,small,med,unacc +high,low,5more,2,med,med,unacc +vhigh,low,2,4,med,med,unacc +low,high,2,more,med,high,acc +low,med,3,more,small,high,good +vhigh,low,2,more,med,high,acc +low,high,5more,2,med,med,unacc +low,high,5more,more,big,high,vgood +high,low,2,4,med,high,acc +med,med,3,2,med,high,unacc +vhigh,low,5more,4,big,low,unacc +vhigh,high,3,4,med,med,unacc +vhigh,vhigh,2,4,big,med,unacc +med,med,5more,4,big,high,vgood +low,med,4,more,med,high,vgood +high,high,3,2,big,high,unacc +high,vhigh,2,more,small,med,unacc +med,med,2,more,small,low,unacc +vhigh,low,2,4,big,med,acc +low,vhigh,2,2,big,med,unacc +med,low,4,more,small,high,good +high,med,3,2,small,med,unacc +med,vhigh,2,more,big,med,acc +high,low,3,more,big,med,acc +low,low,3,more,big,high,vgood +vhigh,low,4,4,med,med,acc +med,vhigh,2,more,med,med,unacc +med,med,3,more,small,low,unacc +vhigh,vhigh,3,more,small,low,unacc +vhigh,low,5more,4,big,med,acc +med,high,3,4,med,med,unacc +low,vhigh,3,more,med,high,acc +low,low,5more,4,big,med,good +vhigh,med,3,2,small,high,unacc +low,high,3,4,big,high,vgood +vhigh,low,2,2,big,low,unacc +med,low,3,more,big,med,good +vhigh,low,4,4,small,low,unacc +med,med,3,2,small,high,unacc +low,high,5more,2,big,med,unacc +low,low,2,2,small,low,unacc +vhigh,low,3,2,med,low,unacc +high,low,5more,more,med,low,unacc +med,high,5more,4,big,high,acc +low,low,5more,more,small,high,good +low,low,3,4,med,low,unacc +low,med,2,4,big,low,unacc +high,high,4,2,small,low,unacc +high,low,5more,more,big,high,acc +low,med,2,more,big,med,good +med,med,2,2,small,high,unacc +high,low,2,4,med,low,unacc +high,med,2,2,med,high,unacc +high,vhigh,5more,2,big,med,unacc +low,high,2,2,small,med,unacc +vhigh,low,5more,more,small,high,acc +med,vhigh,3,more,big,high,acc +vhigh,vhigh,4,more,small,low,unacc +low,vhigh,4,more,small,high,acc +high,vhigh,5more,2,big,high,unacc +low,med,5more,2,med,high,unacc +med,high,2,2,small,low,unacc +low,vhigh,5more,4,small,med,unacc +low,vhigh,3,more,small,med,unacc +high,med,2,4,small,low,unacc +high,vhigh,3,4,small,low,unacc +low,med,4,4,small,high,good +high,vhigh,3,more,big,med,unacc +high,vhigh,4,4,small,low,unacc +vhigh,low,5more,more,med,low,unacc +vhigh,med,4,4,small,med,unacc +med,low,2,more,med,low,unacc +high,low,2,2,big,low,unacc +high,med,2,4,small,med,unacc +vhigh,high,3,more,med,high,unacc +low,high,2,2,small,low,unacc +high,vhigh,3,4,med,high,unacc +low,high,5more,2,small,low,unacc +high,med,5more,4,med,high,acc +med,vhigh,3,2,med,high,unacc +vhigh,low,5more,4,med,med,acc +high,low,4,more,med,low,unacc +med,high,2,2,big,low,unacc +high,high,2,more,big,med,acc +low,low,5more,more,big,high,vgood +vhigh,high,4,2,small,med,unacc +high,low,2,4,big,high,acc +high,high,5more,2,med,low,unacc +med,med,4,4,big,high,vgood +low,vhigh,5more,2,big,high,unacc +high,vhigh,4,4,small,high,unacc +med,high,4,2,small,high,unacc +vhigh,med,4,more,big,med,acc +vhigh,high,3,2,small,low,unacc +med,med,3,2,big,med,unacc +med,low,5more,2,big,med,unacc +vhigh,high,5more,more,small,high,unacc +high,low,4,4,small,med,unacc +low,med,3,4,med,low,unacc +high,med,5more,more,med,low,unacc +low,med,3,more,small,med,acc +med,high,3,more,big,med,acc +med,med,4,more,small,med,acc +med,med,3,4,med,med,acc +vhigh,high,5more,2,med,med,unacc +med,low,5more,2,big,high,unacc +med,med,2,4,med,low,unacc +med,low,2,4,big,med,good +high,high,2,4,big,med,acc +low,med,4,more,big,high,vgood +high,vhigh,5more,4,med,high,unacc +vhigh,low,5more,4,small,low,unacc +low,low,5more,4,big,low,unacc +vhigh,low,2,2,big,high,unacc +med,med,4,4,med,low,unacc +low,vhigh,5more,2,small,low,unacc +med,low,2,more,small,high,unacc +high,vhigh,3,2,big,med,unacc +vhigh,vhigh,3,4,small,high,unacc +med,vhigh,2,4,big,med,acc +high,low,4,2,med,high,unacc +high,med,5more,2,med,low,unacc +low,high,4,more,big,med,acc +vhigh,low,5more,4,big,high,acc +low,med,5more,more,big,low,unacc +low,vhigh,4,more,big,low,unacc +vhigh,high,2,2,small,low,unacc +vhigh,low,2,2,med,high,unacc +vhigh,low,2,more,small,low,unacc +high,low,2,4,small,high,acc +med,med,5more,more,med,high,vgood +high,med,3,more,big,med,acc +high,med,4,4,small,low,unacc +high,low,4,2,med,med,unacc +med,med,3,4,big,low,unacc +med,vhigh,5more,4,small,low,unacc +high,high,4,2,big,low,unacc +vhigh,high,4,more,big,low,unacc +vhigh,med,4,4,big,low,unacc +high,vhigh,2,more,med,low,unacc +high,med,2,more,small,high,unacc +high,vhigh,5more,more,small,med,unacc +high,low,2,2,big,med,unacc +vhigh,high,4,more,small,low,unacc +low,vhigh,3,4,small,med,unacc +low,low,4,more,big,med,good +low,vhigh,2,more,small,med,unacc +med,high,5more,more,small,high,acc +vhigh,vhigh,2,more,med,med,unacc +low,med,3,4,small,med,acc +med,high,3,more,small,med,unacc +high,med,3,4,big,med,acc +low,med,3,2,small,high,unacc +low,low,3,2,big,med,unacc +med,high,3,more,med,med,acc +vhigh,med,3,4,med,high,acc +high,high,4,more,big,med,acc +med,vhigh,5more,2,med,med,unacc +high,vhigh,2,4,small,high,unacc +med,med,2,4,small,low,unacc +high,high,4,more,small,med,unacc +low,vhigh,4,more,big,med,acc +med,med,4,2,big,low,unacc +low,med,5more,2,small,low,unacc +low,low,2,2,small,high,unacc +high,vhigh,5more,2,small,low,unacc +vhigh,med,4,4,small,low,unacc +vhigh,low,5more,2,big,high,unacc +med,low,3,4,big,low,unacc +high,low,3,more,med,med,acc +low,high,5more,2,med,low,unacc +high,vhigh,3,more,med,low,unacc +med,med,2,4,med,med,acc +med,high,5more,more,big,high,acc +low,low,2,more,small,high,unacc +high,low,3,2,med,low,unacc +high,high,4,4,big,med,acc +vhigh,med,5more,more,small,low,unacc +vhigh,high,4,2,big,high,unacc +low,med,2,more,med,low,unacc +med,low,5more,4,small,med,acc +low,high,4,2,big,low,unacc +vhigh,med,4,2,med,low,unacc +med,high,5more,4,med,high,acc +med,high,2,4,small,high,acc +vhigh,med,2,4,big,low,unacc +low,med,2,more,med,high,good +low,vhigh,5more,2,big,low,unacc +med,vhigh,2,more,small,low,unacc +vhigh,high,5more,4,med,high,unacc +med,high,2,4,big,low,unacc +high,low,5more,more,small,low,unacc +high,low,5more,4,big,high,acc +med,med,5more,4,small,med,acc +vhigh,med,2,more,big,low,unacc +high,med,4,2,small,high,unacc +vhigh,vhigh,4,more,small,med,unacc +low,med,4,2,big,med,unacc +med,vhigh,2,4,med,med,unacc +med,high,5more,4,small,low,unacc +high,med,4,more,med,med,acc +vhigh,med,4,more,big,high,acc +vhigh,med,2,more,med,med,unacc +vhigh,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,small,high,unacc +med,med,5more,2,small,low,unacc +high,high,4,4,big,low,unacc +high,med,4,2,med,med,unacc +low,vhigh,2,2,med,med,unacc +low,high,5more,more,med,low,unacc +vhigh,vhigh,2,2,med,low,unacc +high,low,2,more,small,low,unacc +vhigh,vhigh,4,more,med,high,unacc +high,high,2,more,big,high,acc +vhigh,high,4,4,big,med,unacc +low,vhigh,4,4,big,high,acc +vhigh,high,3,more,big,high,unacc +vhigh,vhigh,5more,2,med,low,unacc +med,low,2,4,small,high,good +low,high,3,more,big,med,acc +vhigh,med,2,2,small,med,unacc +high,high,5more,more,small,high,acc +low,vhigh,2,more,small,high,unacc +vhigh,vhigh,5more,more,med,low,unacc +high,low,2,2,small,high,unacc +low,vhigh,3,more,med,low,unacc +low,low,5more,4,small,low,unacc +med,med,4,more,big,high,vgood +high,high,3,4,big,med,acc +low,low,2,4,small,med,acc +high,vhigh,2,2,big,high,unacc +high,high,4,4,small,low,unacc +vhigh,med,5more,2,big,high,unacc +high,vhigh,2,more,med,med,unacc +low,low,4,2,big,med,unacc +low,low,5more,4,med,low,unacc +high,vhigh,5more,more,med,high,unacc +vhigh,med,2,4,big,med,acc +med,low,2,2,big,low,unacc +low,low,4,more,med,low,unacc +high,high,5more,2,small,low,unacc +vhigh,low,5more,more,med,med,acc +high,low,3,2,small,low,unacc +med,low,3,4,big,high,vgood +vhigh,high,2,4,med,high,unacc +vhigh,med,3,4,med,low,unacc +med,vhigh,3,more,med,low,unacc +vhigh,med,5more,4,big,low,unacc +high,high,3,4,small,med,unacc +vhigh,high,3,more,small,low,unacc +vhigh,high,3,more,med,low,unacc +low,low,5more,2,med,low,unacc +low,vhigh,2,4,small,low,unacc +low,med,5more,4,small,med,acc +high,high,3,more,big,low,unacc +vhigh,vhigh,4,more,med,med,unacc +high,vhigh,4,more,small,low,unacc +vhigh,low,5more,2,big,low,unacc +vhigh,vhigh,4,4,med,med,unacc +low,high,5more,2,med,high,unacc +med,med,3,2,big,high,unacc +med,med,3,more,small,high,acc +vhigh,vhigh,3,more,big,high,unacc +vhigh,high,5more,2,small,low,unacc +med,vhigh,4,2,med,high,unacc +low,high,5more,4,big,med,acc +low,med,2,2,big,low,unacc +med,med,3,2,med,low,unacc +vhigh,med,4,more,med,med,acc +med,med,5more,4,big,med,acc +med,high,2,4,small,low,unacc +vhigh,vhigh,5more,more,big,med,unacc +med,vhigh,3,4,small,low,unacc +high,low,2,4,big,low,unacc +high,med,2,2,big,low,unacc +high,low,5more,2,med,low,unacc +low,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,med,low,unacc +med,vhigh,2,more,med,low,unacc +med,high,5more,4,med,med,acc +vhigh,vhigh,3,more,small,high,unacc +vhigh,med,4,4,small,high,acc +vhigh,high,2,more,med,med,unacc +med,low,4,4,small,low,unacc +low,high,3,4,med,med,acc +low,high,4,4,big,low,unacc +vhigh,med,5more,4,med,med,acc +vhigh,high,4,more,med,med,unacc +vhigh,low,3,more,small,med,unacc +vhigh,med,2,4,big,high,acc +med,low,5more,2,big,low,unacc +low,high,3,4,big,med,acc +low,high,5more,2,small,med,unacc +vhigh,med,4,more,small,high,acc +low,vhigh,2,more,big,low,unacc +high,vhigh,5more,more,big,med,unacc +low,low,2,more,big,high,vgood +high,high,4,4,small,med,unacc +low,med,4,4,big,high,vgood +low,high,3,more,big,high,vgood +med,vhigh,5more,4,small,high,acc +med,low,5more,4,small,low,unacc +med,low,4,2,big,med,unacc +vhigh,high,5more,2,big,high,unacc +low,vhigh,2,2,small,med,unacc +high,med,4,2,med,high,unacc +high,low,2,more,big,med,acc +low,med,5more,4,big,low,unacc +high,low,2,2,med,high,unacc +vhigh,high,2,4,big,low,unacc +low,vhigh,3,2,small,high,unacc +vhigh,high,5more,4,small,low,unacc +high,med,5more,4,small,med,unacc +med,high,5more,more,med,high,acc +med,low,2,more,big,med,good +low,high,5more,more,med,high,vgood +low,vhigh,4,4,med,med,acc +med,high,5more,4,small,med,unacc +high,vhigh,3,2,big,low,unacc +med,low,3,4,big,med,good +low,vhigh,5more,more,small,low,unacc +low,low,3,more,big,low,unacc +low,low,5more,more,med,med,good +high,low,2,2,big,high,unacc +low,med,5more,4,small,low,unacc +vhigh,low,3,2,small,high,unacc +low,med,3,more,big,high,vgood +med,low,5more,more,big,high,vgood +med,low,4,more,small,low,unacc +vhigh,low,4,2,small,low,unacc +high,high,4,2,small,high,unacc +high,med,3,2,med,high,unacc +low,med,2,more,small,med,unacc +low,low,3,more,med,low,unacc +high,med,4,2,big,med,unacc +vhigh,low,5more,4,small,med,unacc +vhigh,med,2,4,small,high,acc +med,med,4,more,med,high,vgood +vhigh,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,small,low,unacc +high,low,4,2,small,high,unacc +high,vhigh,3,2,small,low,unacc +high,vhigh,4,4,big,high,unacc +high,med,5more,2,small,low,unacc +high,med,2,4,med,high,acc +low,high,4,2,med,med,unacc +med,high,3,2,big,high,unacc +vhigh,med,3,2,med,med,unacc +med,high,4,more,big,high,acc +high,high,3,2,small,high,unacc +low,low,2,4,med,med,acc +low,vhigh,2,2,big,high,unacc +high,med,5more,4,small,low,unacc +low,high,4,more,big,high,vgood +vhigh,vhigh,5more,2,big,med,unacc +vhigh,high,5more,2,big,med,unacc +high,vhigh,5more,4,big,high,unacc +vhigh,vhigh,2,4,small,high,unacc +med,high,4,more,big,med,acc +vhigh,med,4,4,med,med,acc +med,vhigh,4,2,med,low,unacc +high,med,4,4,big,high,acc +high,high,4,4,big,high,acc +med,vhigh,3,4,small,high,acc +vhigh,med,4,4,big,high,acc +vhigh,low,2,more,big,med,acc +vhigh,med,3,more,med,med,acc +med,low,3,more,med,low,unacc +vhigh,low,3,4,med,med,unacc +low,med,3,4,big,low,unacc +med,med,4,4,small,high,acc +low,med,4,4,med,low,unacc +med,low,4,4,big,high,vgood +med,vhigh,2,2,big,high,unacc +med,low,2,2,big,med,unacc +vhigh,vhigh,3,2,med,low,unacc +vhigh,low,2,more,med,low,unacc +low,vhigh,5more,4,med,high,acc +high,med,3,4,small,med,unacc +high,high,5more,2,med,med,unacc +low,vhigh,3,2,med,low,unacc +high,vhigh,3,4,big,high,unacc +high,low,2,4,med,med,unacc +vhigh,med,3,2,big,med,unacc +high,vhigh,3,2,med,low,unacc +med,vhigh,3,4,med,low,unacc +low,med,5more,2,small,med,unacc +low,low,3,more,med,high,vgood +med,high,3,2,big,med,unacc +vhigh,med,3,4,small,low,unacc +med,vhigh,2,4,small,low,unacc +med,low,5more,more,small,high,good +vhigh,med,4,2,med,high,unacc +med,high,3,4,small,low,unacc +high,med,5more,more,small,high,acc +high,low,5more,4,small,low,unacc +med,high,4,2,med,high,unacc +low,low,3,2,small,med,unacc +high,vhigh,4,4,small,med,unacc +high,low,3,4,small,high,acc +high,high,2,4,med,low,unacc +med,vhigh,4,more,big,low,unacc +high,low,4,more,small,low,unacc +high,high,5more,4,small,med,unacc +vhigh,med,4,2,big,med,unacc +high,med,2,more,small,med,unacc +med,low,3,4,small,low,unacc +high,med,5more,more,med,high,acc +vhigh,high,4,more,small,med,unacc +low,vhigh,5more,4,med,low,unacc +vhigh,high,3,more,med,med,unacc +med,low,4,more,med,med,good +high,vhigh,3,4,med,low,unacc +low,med,4,more,big,med,good +med,vhigh,3,more,med,med,acc +high,med,2,2,med,low,unacc +vhigh,low,3,more,small,high,acc +high,vhigh,2,4,med,low,unacc +vhigh,high,2,2,small,med,unacc +low,vhigh,3,4,big,low,unacc +high,low,5more,2,big,low,unacc +med,med,5more,4,big,low,unacc +med,vhigh,2,2,big,low,unacc +med,med,2,2,big,low,unacc +vhigh,low,2,more,big,high,acc +low,med,2,4,med,low,unacc +high,vhigh,5more,2,big,low,unacc +vhigh,vhigh,4,4,big,high,unacc +vhigh,low,4,2,small,high,unacc +med,med,2,4,big,med,acc +low,low,4,4,big,med,good +high,high,2,2,big,low,unacc +vhigh,low,3,2,med,high,unacc +vhigh,vhigh,3,4,big,med,unacc +high,low,3,more,small,med,unacc +high,high,3,4,med,med,unacc +high,low,4,2,big,low,unacc +vhigh,high,2,4,big,med,unacc +med,low,2,2,med,low,unacc +low,vhigh,3,more,med,med,acc +high,med,3,more,big,high,acc +low,med,5more,more,big,high,vgood +low,med,5more,more,med,low,unacc +high,low,3,4,small,low,unacc +high,med,4,4,med,low,unacc +low,vhigh,2,2,small,high,unacc +low,low,2,2,small,med,unacc +low,med,4,more,med,low,unacc +high,low,5more,4,med,high,acc +med,low,3,2,small,high,unacc +high,high,4,4,med,med,acc +vhigh,vhigh,4,more,big,low,unacc +vhigh,high,5more,4,big,low,unacc +med,low,4,more,big,high,vgood +med,vhigh,5more,more,small,high,acc +vhigh,low,5more,2,small,high,unacc +vhigh,low,4,2,big,med,unacc +med,high,2,4,small,med,unacc +low,med,3,2,big,med,unacc +high,med,3,more,small,med,unacc +high,high,3,more,med,high,acc +vhigh,med,5more,more,med,high,acc +low,low,3,4,big,med,good +vhigh,vhigh,3,2,small,low,unacc +low,low,3,2,med,low,unacc +low,high,3,4,small,low,unacc +high,high,5more,4,big,high,acc +vhigh,low,2,4,med,low,unacc +med,high,4,2,big,low,unacc +vhigh,low,2,more,small,high,unacc +high,low,2,2,small,low,unacc +high,vhigh,5more,4,med,low,unacc +med,med,5more,4,med,low,unacc +high,vhigh,2,4,big,low,unacc +low,med,3,more,small,low,unacc +med,med,5more,2,big,med,unacc +vhigh,med,3,4,big,med,acc +low,high,3,4,big,low,unacc +med,med,2,more,med,low,unacc +vhigh,vhigh,3,4,big,low,unacc +med,low,4,2,small,high,unacc +med,med,3,4,med,low,unacc +vhigh,vhigh,4,4,small,med,unacc +vhigh,vhigh,5more,2,small,high,unacc +low,vhigh,3,2,big,low,unacc +high,vhigh,3,2,small,med,unacc +med,low,4,2,small,low,unacc +vhigh,vhigh,5more,more,big,high,unacc +low,med,2,4,small,med,acc +med,low,4,2,med,med,unacc +low,vhigh,4,4,small,med,unacc +high,vhigh,5more,2,med,med,unacc +med,vhigh,2,2,small,low,unacc +low,low,2,more,big,med,good +med,high,5more,2,med,high,unacc +high,med,3,4,big,high,acc +high,med,2,more,med,med,unacc +low,vhigh,5more,more,med,low,unacc +low,high,5more,4,med,med,acc +high,med,2,more,med,high,acc +med,med,5more,more,big,low,unacc +high,vhigh,5more,more,small,high,unacc +med,low,2,2,small,med,unacc +vhigh,low,3,more,med,med,acc +med,vhigh,5more,2,small,med,unacc +vhigh,med,4,2,big,high,unacc +low,med,4,more,small,high,good +vhigh,high,4,4,small,med,unacc +low,low,4,more,big,low,unacc +high,low,3,more,big,low,unacc +vhigh,vhigh,4,2,small,high,unacc +low,low,2,4,big,low,unacc +med,vhigh,5more,4,med,med,acc +low,high,5more,more,small,low,unacc +high,low,4,more,small,med,unacc +high,med,3,4,med,high,acc +high,low,3,4,med,high,acc +vhigh,vhigh,4,2,big,low,unacc +low,high,2,2,med,med,unacc +med,vhigh,3,2,small,high,unacc +high,high,2,more,small,med,unacc +low,med,4,4,big,med,good +med,high,3,2,small,med,unacc +low,med,3,2,med,med,unacc +low,vhigh,4,4,small,low,unacc +high,low,3,4,big,med,acc +low,med,2,more,big,low,unacc +high,med,4,more,small,med,unacc +vhigh,vhigh,2,4,med,med,unacc +low,high,3,2,big,high,unacc +high,low,2,more,big,low,unacc +vhigh,vhigh,3,4,med,high,unacc +high,low,3,4,big,low,unacc +high,low,5more,more,big,low,unacc +vhigh,low,5more,more,small,med,unacc +vhigh,high,2,more,small,high,unacc +high,low,5more,4,big,low,unacc +med,vhigh,5more,4,small,med,unacc +high,med,3,2,med,low,unacc +high,low,4,more,big,med,acc +high,low,5more,4,med,med,acc +low,high,4,more,med,high,vgood +low,high,4,2,small,low,unacc +vhigh,med,5more,4,big,med,acc +high,low,3,2,small,high,unacc +high,vhigh,3,4,big,low,unacc +vhigh,med,5more,4,med,low,unacc +low,med,4,4,big,low,unacc +vhigh,high,4,2,med,med,unacc +high,med,2,2,big,med,unacc +high,med,3,4,med,med,unacc +high,high,2,4,big,high,acc +high,vhigh,3,more,med,med,unacc +high,high,3,more,small,med,unacc +vhigh,high,3,more,big,low,unacc +med,vhigh,3,4,small,med,unacc +high,high,2,more,med,high,acc +high,vhigh,4,2,med,med,unacc +med,high,2,more,med,low,unacc +med,high,5more,4,big,low,unacc +high,high,3,2,small,med,unacc +high,vhigh,4,more,med,low,unacc +high,vhigh,5more,more,small,low,unacc +med,vhigh,4,2,med,med,unacc +med,high,2,2,small,med,unacc +vhigh,low,2,2,small,high,unacc +med,vhigh,3,more,med,high,acc +med,med,5more,more,small,med,acc +med,vhigh,2,4,small,med,unacc +med,high,4,2,big,high,unacc +med,vhigh,3,4,big,med,acc +high,med,2,2,small,high,unacc +low,vhigh,5more,2,small,med,unacc +med,med,4,2,med,low,unacc +vhigh,med,4,2,med,med,unacc +med,vhigh,4,4,big,high,acc +vhigh,med,3,2,big,low,unacc +high,vhigh,4,more,big,med,unacc +low,vhigh,5more,2,med,high,unacc +med,vhigh,5more,2,big,med,unacc +med,high,5more,2,big,high,unacc +vhigh,low,3,4,small,med,unacc +high,vhigh,2,4,big,high,unacc +med,vhigh,2,2,big,med,unacc +vhigh,med,2,2,med,low,unacc +vhigh,vhigh,2,4,med,low,unacc +vhigh,med,5more,2,big,low,unacc +high,vhigh,4,4,med,high,unacc +med,low,3,4,med,high,good +med,high,3,4,med,high,acc +high,low,3,2,med,med,unacc +vhigh,low,4,more,med,low,unacc +high,low,5more,4,med,low,unacc +med,vhigh,4,4,big,low,unacc +vhigh,high,3,4,big,low,unacc +low,high,5more,more,small,high,acc +low,low,2,2,big,low,unacc +vhigh,vhigh,5more,4,med,high,unacc +med,low,4,4,med,high,vgood +vhigh,med,5more,2,med,high,unacc +low,med,2,more,small,high,unacc +low,high,4,more,big,low,unacc +high,high,5more,4,big,low,unacc +low,vhigh,4,more,small,med,unacc +low,high,2,2,big,high,unacc +high,med,3,4,med,low,unacc +med,high,5more,2,med,low,unacc +high,high,3,4,big,low,unacc +vhigh,high,4,4,med,low,unacc +vhigh,low,2,more,big,low,unacc +med,vhigh,5more,more,big,med,acc +med,high,4,more,med,low,unacc +low,high,2,2,small,high,unacc +med,vhigh,3,4,big,low,unacc +low,low,3,4,med,high,good +med,vhigh,5more,2,big,high,unacc +high,med,2,4,med,low,unacc +med,low,5more,2,med,high,unacc +low,low,3,4,med,med,acc +high,high,3,more,med,low,unacc +high,high,5more,2,small,high,unacc +vhigh,vhigh,2,2,small,med,unacc +med,med,3,4,big,med,acc +high,low,4,more,med,med,acc +high,high,4,more,med,high,acc +med,med,5more,2,med,high,unacc +vhigh,low,3,2,big,low,unacc +low,vhigh,5more,more,big,med,acc +high,low,5more,more,big,med,acc +low,low,4,4,med,med,good +vhigh,med,3,more,small,low,unacc +low,vhigh,2,more,med,med,unacc +high,high,4,4,med,low,unacc +low,high,3,2,med,low,unacc +high,med,2,more,med,low,unacc +high,low,5more,2,small,low,unacc +high,high,5more,4,med,med,acc +med,high,4,4,med,med,acc +high,high,4,more,med,med,acc +low,low,3,more,small,med,acc +med,low,3,2,small,med,unacc +low,high,4,2,big,med,unacc +vhigh,high,3,4,small,low,unacc +med,vhigh,2,more,small,high,unacc +high,med,5more,4,big,high,acc +vhigh,low,4,more,big,high,acc +med,med,2,more,med,high,acc +med,high,5more,4,med,low,unacc +vhigh,vhigh,2,2,med,med,unacc +med,low,3,2,small,low,unacc +med,low,5more,more,big,med,good +high,vhigh,5more,4,small,low,unacc +low,high,2,more,big,med,acc +low,high,3,more,med,high,vgood +low,med,4,2,small,med,unacc +med,low,3,4,small,med,acc +med,high,4,more,med,med,acc +med,vhigh,3,2,med,low,unacc +low,vhigh,5more,2,big,med,unacc +high,med,4,2,big,low,unacc +med,vhigh,2,more,big,high,acc +vhigh,med,2,2,big,med,unacc +vhigh,vhigh,4,more,big,med,unacc +low,vhigh,3,4,small,low,unacc +med,low,2,2,small,high,unacc +low,med,3,2,small,med,unacc +low,vhigh,4,2,med,low,unacc +low,med,3,4,med,med,acc +vhigh,vhigh,4,2,med,low,unacc +high,med,3,2,med,med,unacc +low,high,2,more,big,low,unacc +high,low,4,4,small,low,unacc +low,med,4,4,med,high,vgood +high,med,4,more,small,low,unacc +high,high,3,2,med,high,unacc +low,low,3,2,big,high,unacc +low,high,2,more,small,med,unacc +high,med,2,more,big,med,acc +high,low,4,2,big,med,unacc +vhigh,low,4,more,small,low,unacc +vhigh,vhigh,3,more,med,med,unacc +high,vhigh,2,more,big,med,unacc +low,low,3,2,med,high,unacc +high,high,5more,2,med,high,unacc +high,med,4,4,big,low,unacc +med,vhigh,4,more,big,med,acc +vhigh,low,5more,2,med,med,unacc +high,vhigh,2,more,big,low,unacc +med,vhigh,5more,more,small,med,unacc +vhigh,vhigh,4,more,big,high,unacc +high,low,3,2,small,med,unacc +vhigh,med,2,2,big,low,unacc +low,low,4,4,med,high,vgood +low,med,3,4,med,high,good +high,vhigh,4,more,med,high,unacc +high,low,5more,2,big,med,unacc +high,med,3,2,big,low,unacc +vhigh,low,3,4,big,high,acc +vhigh,vhigh,3,more,big,low,unacc +high,low,5more,2,big,high,unacc +vhigh,low,3,4,med,low,unacc +vhigh,low,2,4,small,low,unacc +low,high,2,2,big,med,unacc +vhigh,med,5more,more,small,high,acc +low,high,2,2,med,high,unacc +med,med,4,4,med,med,acc +high,med,4,more,med,high,acc +vhigh,high,5more,more,med,med,unacc +low,high,2,4,big,high,vgood +vhigh,low,5more,more,big,high,acc +high,med,5more,2,med,med,unacc +low,vhigh,4,4,med,low,unacc +high,med,5more,more,small,low,unacc +high,high,5more,4,small,high,acc +vhigh,vhigh,5more,2,med,high,unacc +vhigh,med,3,more,small,med,unacc +med,vhigh,2,4,big,high,acc +vhigh,med,5more,2,big,med,unacc +med,med,3,more,big,med,acc +med,low,2,2,med,high,unacc +low,vhigh,3,2,med,med,unacc +vhigh,vhigh,4,more,small,high,unacc +med,med,3,4,small,high,acc +vhigh,med,5more,4,small,low,unacc +low,high,2,4,big,med,acc +low,med,2,4,small,low,unacc +low,vhigh,3,more,small,low,unacc +med,med,4,4,big,low,unacc +med,vhigh,2,4,med,low,unacc +med,med,3,more,med,high,vgood +med,vhigh,3,4,med,high,acc +low,med,2,4,big,high,vgood +high,vhigh,5more,more,big,low,unacc +vhigh,med,3,more,big,med,acc +high,med,3,4,small,low,unacc +vhigh,vhigh,2,2,big,high,unacc +vhigh,vhigh,5more,4,small,med,unacc +high,high,3,2,small,low,unacc +low,low,3,4,small,low,unacc +low,low,4,2,med,med,unacc +vhigh,vhigh,5more,more,big,low,unacc +low,med,3,more,med,high,vgood +low,med,2,4,small,high,good +med,high,4,4,small,med,unacc +high,high,2,2,small,med,unacc +low,vhigh,2,2,med,low,unacc +vhigh,low,5more,4,med,low,unacc +high,med,4,2,small,med,unacc +high,vhigh,2,2,small,low,unacc +med,low,3,more,big,low,unacc +high,high,3,4,small,high,acc +high,high,2,more,small,low,unacc +low,low,4,4,small,low,unacc +low,med,3,more,med,med,good +vhigh,med,2,2,med,med,unacc +vhigh,med,2,more,med,low,unacc +low,low,3,more,big,med,good +vhigh,med,4,2,big,low,unacc +vhigh,high,5more,more,big,low,unacc +high,high,4,more,small,high,acc +med,med,4,2,small,high,unacc +vhigh,vhigh,2,4,big,high,unacc +low,med,3,more,big,low,unacc +med,low,4,4,small,high,good +high,high,4,more,big,high,acc +med,med,3,2,big,low,unacc +low,high,5more,2,small,high,unacc +low,med,3,2,big,high,unacc +high,high,3,4,big,high,acc +high,low,2,2,small,med,unacc +high,vhigh,4,4,big,low,unacc +low,vhigh,4,more,med,med,acc +high,med,4,4,med,med,acc +vhigh,med,4,2,small,high,unacc +low,vhigh,3,more,big,high,acc +med,high,4,4,small,high,acc +high,vhigh,2,2,med,high,unacc +med,med,2,more,med,med,acc +vhigh,high,3,4,big,med,unacc +vhigh,high,5more,4,big,med,unacc +med,med,4,more,small,high,acc +med,low,5more,2,med,med,unacc +med,vhigh,4,more,med,low,unacc +vhigh,vhigh,2,more,small,high,unacc +vhigh,high,3,4,med,high,unacc +low,vhigh,4,2,med,med,unacc +med,vhigh,4,more,small,med,unacc +high,high,4,more,med,low,unacc +low,vhigh,2,more,big,high,acc +vhigh,med,3,more,big,high,acc +low,med,5more,2,big,low,unacc +low,vhigh,5more,more,med,med,acc +high,vhigh,4,2,med,low,unacc +high,high,5more,more,med,high,acc +vhigh,low,5more,4,med,high,acc +high,vhigh,5more,more,med,med,unacc +high,med,2,2,small,low,unacc +med,high,5more,more,small,low,unacc +med,med,4,more,big,low,unacc +low,med,4,more,small,med,acc +low,vhigh,3,more,big,low,unacc +high,low,5more,more,med,med,acc +vhigh,high,4,2,big,low,unacc +med,low,5more,2,small,low,unacc +vhigh,vhigh,5more,2,small,med,unacc +med,low,3,2,med,low,unacc +med,med,5more,more,big,med,acc +high,vhigh,4,more,small,med,unacc +med,med,5more,2,big,low,unacc +vhigh,med,3,2,med,low,unacc +high,low,4,4,big,high,acc +high,vhigh,3,more,med,high,unacc +vhigh,high,3,2,med,high,unacc +med,low,3,2,med,med,unacc +vhigh,high,3,2,big,low,unacc +vhigh,low,4,2,med,low,unacc +vhigh,high,4,2,med,low,unacc +med,high,4,4,big,low,unacc +vhigh,high,2,4,small,low,unacc +vhigh,med,5more,more,big,high,acc +med,med,2,2,big,high,unacc +med,high,4,2,med,med,unacc +med,high,2,2,med,high,unacc +med,low,2,4,small,low,unacc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..403e4648dc3b3c177525a76273864fc4069db6b4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_060616/staged/public/val.csv @@ -0,0 +1,173 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,5more,more,med,med,unacc +vhigh,high,2,4,small,med,unacc +high,high,5more,more,med,med,acc +low,high,3,2,med,med,unacc +med,med,3,2,med,med,unacc +med,med,5more,more,big,high,vgood +vhigh,high,2,4,med,low,unacc +high,vhigh,2,4,med,high,unacc +high,high,4,4,med,high,acc +vhigh,low,4,4,small,high,acc +vhigh,med,5more,more,med,low,unacc +med,high,2,more,big,med,acc +low,vhigh,4,2,big,low,unacc +med,med,4,2,med,high,unacc +low,med,2,2,small,low,unacc +high,high,3,more,small,low,unacc +med,vhigh,4,4,med,high,acc +high,high,2,2,med,med,unacc +high,low,3,4,big,high,acc +vhigh,vhigh,2,2,med,high,unacc +high,low,2,more,med,low,unacc +vhigh,low,2,4,med,high,acc +low,high,4,4,small,high,acc +low,med,5more,4,big,med,good +high,vhigh,2,2,big,low,unacc +med,high,2,4,med,high,acc +low,high,4,2,small,med,unacc +high,low,4,more,med,high,acc +vhigh,low,2,4,big,high,acc +high,vhigh,3,more,big,high,unacc +low,low,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,med,unacc +med,med,3,2,small,med,unacc +low,vhigh,3,4,med,med,unacc +vhigh,vhigh,5more,more,med,high,unacc +vhigh,high,5more,4,med,low,unacc +med,med,3,more,med,low,unacc +med,vhigh,3,4,big,high,acc +vhigh,high,3,more,small,high,unacc +high,vhigh,4,more,big,high,unacc +med,vhigh,5more,2,med,low,unacc +low,high,5more,2,big,high,unacc +vhigh,low,3,more,big,med,acc +low,med,4,2,med,med,unacc +vhigh,med,4,more,small,low,unacc +med,vhigh,4,2,small,med,unacc +low,low,3,more,small,high,good +low,high,3,more,small,low,unacc +vhigh,low,4,4,big,low,unacc +high,vhigh,4,more,big,low,unacc +vhigh,med,2,2,big,high,unacc +high,med,3,more,small,high,acc +high,low,4,4,big,low,unacc +vhigh,high,2,4,big,high,unacc +vhigh,high,5more,4,med,med,unacc +low,vhigh,3,2,small,med,unacc +low,vhigh,3,4,big,med,acc +low,vhigh,5more,2,med,low,unacc +vhigh,high,2,2,med,low,unacc +med,vhigh,5more,4,med,low,unacc +high,low,5more,2,med,high,unacc +med,vhigh,2,2,med,med,unacc +high,med,4,more,big,low,unacc +med,vhigh,2,more,small,med,unacc +low,vhigh,4,2,small,low,unacc +low,low,4,2,small,high,unacc +vhigh,high,5more,2,med,high,unacc +vhigh,low,4,4,med,low,unacc +high,low,4,more,big,low,unacc +low,high,3,more,med,med,acc +high,vhigh,4,4,med,low,unacc +med,vhigh,5more,more,big,low,unacc +med,med,5more,more,small,high,acc +med,med,5more,4,small,low,unacc +vhigh,med,4,2,small,med,unacc +low,high,5more,4,med,low,unacc +high,vhigh,2,2,big,med,unacc +med,high,2,more,med,high,acc +low,vhigh,4,more,med,low,unacc +high,high,3,2,med,med,unacc +high,vhigh,4,2,small,high,unacc +med,high,5more,2,small,low,unacc +low,high,4,4,med,high,vgood +high,med,3,2,small,high,unacc +vhigh,vhigh,4,4,small,high,unacc +vhigh,high,3,2,med,med,unacc +high,vhigh,3,4,small,med,unacc +vhigh,high,2,4,med,med,unacc +med,low,5more,more,big,low,unacc +low,high,3,more,small,med,acc +vhigh,high,3,4,small,high,unacc +vhigh,vhigh,2,4,big,low,unacc +low,low,4,more,med,med,good +med,low,2,more,small,low,unacc +high,vhigh,3,4,med,med,unacc +med,med,4,2,small,med,unacc +med,low,2,4,big,high,vgood +vhigh,vhigh,3,4,big,high,unacc +high,med,3,more,small,low,unacc +vhigh,high,2,more,big,low,unacc +high,vhigh,3,2,small,high,unacc +high,vhigh,4,more,med,med,unacc +vhigh,med,3,2,med,high,unacc +med,vhigh,4,2,big,med,unacc +med,high,5more,2,big,med,unacc +med,vhigh,3,2,big,med,unacc +high,low,2,4,small,low,unacc +low,low,4,more,big,high,vgood +low,vhigh,4,more,big,high,acc +low,low,4,4,big,low,unacc +high,high,5more,more,small,low,unacc +low,high,4,2,med,low,unacc +vhigh,low,5more,2,big,med,unacc +low,high,2,4,small,low,unacc +low,low,3,more,med,med,good +low,med,2,4,big,med,good +high,vhigh,2,2,small,high,unacc +med,vhigh,2,2,med,low,unacc +med,low,4,2,small,med,unacc +med,med,2,2,small,med,unacc +low,med,5more,2,small,high,unacc +vhigh,low,2,4,big,low,unacc +med,med,3,more,small,med,acc +med,high,2,2,small,high,unacc +low,vhigh,4,2,small,high,unacc +vhigh,med,3,more,small,high,acc +vhigh,med,3,4,big,low,unacc +med,med,2,4,small,high,acc +vhigh,high,3,2,big,med,unacc +med,high,2,more,big,low,unacc +low,high,5more,4,med,high,vgood +vhigh,high,4,4,med,high,unacc +low,low,3,4,big,high,vgood +low,med,5more,4,med,low,unacc +high,vhigh,4,2,big,high,unacc +vhigh,high,2,4,small,high,unacc +high,vhigh,4,2,med,high,unacc +high,high,5more,4,small,low,unacc +high,med,5more,4,big,low,unacc +vhigh,med,2,4,med,high,acc +vhigh,vhigh,3,4,med,med,unacc +med,high,3,2,small,high,unacc +high,med,2,4,big,med,acc +med,low,3,4,med,low,unacc +vhigh,vhigh,2,2,small,high,unacc +med,med,2,2,big,med,unacc +med,med,2,more,big,med,acc +vhigh,low,2,2,big,med,unacc +high,low,2,4,small,med,unacc +low,med,5more,more,med,med,good +low,low,5more,2,small,med,unacc +low,low,2,4,small,high,good +low,med,3,2,small,low,unacc +low,vhigh,2,4,med,med,unacc +high,high,4,more,small,low,unacc +med,low,5more,4,med,low,unacc +vhigh,med,2,2,small,high,unacc +med,high,4,4,med,high,acc +vhigh,low,3,4,big,low,unacc +med,high,4,2,small,low,unacc +high,high,2,2,small,low,unacc +low,high,4,4,big,med,acc +low,high,4,more,med,low,unacc +vhigh,vhigh,2,2,big,med,unacc +med,vhigh,4,4,med,low,unacc +vhigh,low,2,2,small,low,unacc +med,vhigh,3,2,small,low,unacc +high,high,4,2,big,high,unacc +low,low,5more,more,big,med,good +low,low,4,4,small,high,good +low,vhigh,2,4,big,high,acc +low,low,2,4,big,med,good diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/ctgan_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/gen_20260321_061945.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/gen_20260321_061945.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/gen_20260330_065244.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/gen_20260330_065244.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/models_300epochs/train_20260321_061840.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/models_300epochs/train_20260321_061840.log new file mode 100644 index 0000000000000000000000000000000000000000..19673a95552befef13608269dff934aa13d5cf14 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/models_300epochs/train_20260321_061840.log @@ -0,0 +1,2 @@ +/opt/conda/lib/python3.10/site-packages/torch/autograd/graph.py:841: UserWarning: Attempting to run cuBLAS, but there was no current CUDA context! Attempting to set the primary context... (Triggered internally at /pytorch/aten/src/ATen/cuda/CublasHandlePool.cpp:270.) + return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c28133a2be9046b3de264c837429df6c57bc0ad1 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..577f8c9f74082d587829d9d69cb3d1360df7d7e4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260321_061840", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/ctgan-c2-1382-20260330_065244.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/ctgan/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..655ac28107dfc96e88c97ba061ac01dcbdc8c1cb --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/ctgan/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/ctgan/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/ctgan/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3ce6d7c7cb7e9fb0e06a9c41bead0cd1f7f49a0b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b3cf25081f629b35185af44e432085a72a9bb40b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/test.csv @@ -0,0 +1,175 @@ +buying,maint,doors,persons,lug_boot,safety,class +low,med,2,more,big,high,vgood +med,med,2,more,small,high,unacc +low,vhigh,5more,more,small,high,acc +vhigh,med,2,more,small,med,unacc +low,high,4,more,small,med,acc +low,med,4,2,med,high,unacc +vhigh,vhigh,2,more,big,low,unacc +med,med,4,2,small,low,unacc +high,vhigh,5more,2,small,high,unacc +med,med,2,2,med,med,unacc +med,vhigh,5more,4,med,high,acc +med,low,3,2,big,low,unacc +high,low,2,more,big,high,acc +high,low,3,2,big,low,unacc +vhigh,high,2,more,med,high,unacc +med,low,3,2,big,med,unacc +low,low,5more,4,small,high,good +low,vhigh,5more,4,big,high,acc +vhigh,low,2,2,med,med,unacc +med,low,5more,4,big,high,vgood +vhigh,med,5more,4,big,high,acc +vhigh,med,2,4,small,low,unacc +vhigh,vhigh,5more,4,big,med,unacc +low,med,3,4,small,low,unacc +vhigh,high,4,more,big,med,unacc +med,high,3,4,med,low,unacc +med,high,4,more,small,low,unacc +vhigh,med,4,4,med,high,acc +low,med,5more,more,big,med,good +high,med,5more,4,med,med,acc +high,low,4,2,big,high,unacc +med,low,2,2,big,high,unacc +med,vhigh,2,4,med,high,acc +med,low,2,4,small,med,acc +low,med,2,more,small,low,unacc +high,vhigh,5more,more,big,high,unacc +med,med,2,more,big,low,unacc +low,low,5more,2,small,high,unacc +low,med,2,4,med,high,good +high,vhigh,4,more,small,high,unacc +low,low,5more,more,small,med,acc +high,high,2,2,med,low,unacc +vhigh,med,4,more,med,high,acc +med,vhigh,4,more,med,med,acc +low,vhigh,2,more,med,low,unacc +high,low,4,2,small,med,unacc +med,high,3,more,big,low,unacc +low,vhigh,3,more,small,high,acc +high,vhigh,2,2,med,med,unacc +high,high,5more,more,big,low,unacc +low,high,4,4,med,med,acc +med,med,5more,2,small,med,unacc +high,vhigh,2,2,small,med,unacc +vhigh,high,3,2,small,med,unacc +high,high,2,4,small,low,unacc +high,low,4,4,med,low,unacc +high,high,5more,more,big,high,acc +low,low,5more,4,small,med,acc +high,vhigh,3,4,small,high,unacc +vhigh,high,2,2,big,med,unacc +low,med,4,more,big,low,unacc +low,med,4,2,big,high,unacc +high,med,2,4,big,high,acc +low,vhigh,5more,more,big,high,acc +high,vhigh,2,more,small,low,unacc +med,med,4,2,big,med,unacc +low,high,2,2,big,low,unacc +low,vhigh,2,4,big,low,unacc +high,high,2,4,med,med,unacc +high,low,2,more,med,med,unacc +med,vhigh,5more,2,small,high,unacc +vhigh,low,2,4,small,high,acc +low,low,5more,more,med,low,unacc +low,high,5more,4,small,low,unacc +med,med,2,4,med,high,acc +vhigh,low,3,2,small,low,unacc +low,vhigh,2,2,med,high,unacc +med,low,4,2,big,low,unacc +vhigh,high,3,4,med,low,unacc +low,vhigh,3,2,med,high,unacc +low,vhigh,5more,more,med,high,acc +low,high,3,2,big,med,unacc +high,high,2,2,big,med,unacc +low,vhigh,4,more,med,high,acc +vhigh,low,5more,more,big,med,acc +high,med,4,more,big,high,acc +high,low,2,2,med,low,unacc +vhigh,low,2,4,small,med,unacc +high,med,5more,more,small,med,unacc +low,vhigh,2,2,big,low,unacc +med,vhigh,4,4,small,high,acc +low,low,4,4,small,med,acc +low,low,4,2,med,low,unacc +vhigh,high,5more,more,small,low,unacc +low,low,5more,2,big,low,unacc +vhigh,high,4,2,small,high,unacc +high,high,3,more,big,high,acc +low,med,4,more,small,low,unacc +high,vhigh,3,2,big,high,unacc +low,vhigh,4,2,med,high,unacc +vhigh,vhigh,5more,4,med,med,unacc +vhigh,high,3,2,big,high,unacc +low,high,3,4,med,low,unacc +vhigh,low,4,4,big,med,acc +med,med,5more,more,med,med,acc +high,med,5more,4,med,low,unacc +med,low,4,more,big,med,good +med,low,5more,more,small,med,acc +high,high,4,2,big,med,unacc +med,med,3,more,big,low,unacc +vhigh,high,4,2,small,low,unacc +high,low,2,more,small,high,unacc +vhigh,med,3,4,med,med,unacc +med,med,2,more,small,med,unacc +med,vhigh,4,more,med,high,acc +low,high,5more,4,small,med,acc +vhigh,vhigh,5more,2,big,high,unacc +low,low,3,2,big,low,unacc +high,high,2,2,small,high,unacc +med,low,3,more,med,med,good +high,med,4,2,med,low,unacc +high,med,5more,2,big,med,unacc +vhigh,high,5more,4,small,med,unacc +high,low,2,more,med,high,acc +vhigh,high,5more,2,small,med,unacc +low,low,5more,4,big,high,vgood +high,med,3,4,big,low,unacc +low,med,3,more,big,med,good +high,vhigh,2,4,small,low,unacc +vhigh,med,5more,more,med,med,acc +low,low,4,more,small,med,acc +high,med,3,more,med,med,acc +med,vhigh,2,2,small,high,unacc +low,high,2,more,big,high,vgood +vhigh,low,2,2,med,low,unacc +low,low,3,2,med,med,unacc +low,med,3,4,big,med,good +vhigh,vhigh,2,4,med,high,unacc +low,low,3,4,small,high,good +high,high,3,2,med,low,unacc +med,low,2,more,small,med,unacc +med,vhigh,4,2,small,high,unacc +high,vhigh,2,more,small,high,unacc +high,low,5more,more,med,high,acc +low,low,5more,4,med,high,vgood +low,high,3,2,big,low,unacc +low,vhigh,3,2,big,high,unacc +low,high,4,4,small,low,unacc +vhigh,low,5more,2,med,low,unacc +med,med,4,4,big,med,acc +vhigh,vhigh,4,2,small,med,unacc +med,low,3,more,small,low,unacc +med,high,4,4,small,low,unacc +high,vhigh,3,more,small,low,unacc +high,vhigh,2,4,big,med,unacc +vhigh,high,5more,2,med,low,unacc +vhigh,vhigh,4,2,big,high,unacc +vhigh,vhigh,4,4,med,low,unacc +med,vhigh,2,2,small,med,unacc +med,low,2,more,med,med,acc +vhigh,high,4,4,big,high,unacc +med,med,3,4,small,med,acc +low,med,2,2,med,high,unacc +low,vhigh,5more,4,small,low,unacc +vhigh,high,5more,more,med,low,unacc +low,high,5more,more,big,low,unacc +vhigh,med,4,4,big,med,acc +high,vhigh,2,more,big,high,unacc +high,vhigh,4,4,big,med,unacc +high,high,2,more,big,low,unacc +low,med,2,2,big,med,unacc +vhigh,vhigh,3,more,big,med,unacc +vhigh,med,2,4,med,med,unacc +low,vhigh,2,4,med,high,acc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a7dd506a8ec04e784f7aa4b9fe95bca40b4e9722 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/train.csv @@ -0,0 +1,1383 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,2,2,small,low,unacc +med,low,5more,4,small,high,good +med,med,3,2,small,low,unacc +med,med,4,4,small,med,acc +high,low,2,4,big,med,acc +med,vhigh,5more,2,small,low,unacc +high,med,2,more,small,low,unacc +low,med,5more,more,small,high,good +med,high,5more,4,small,high,acc +med,vhigh,3,2,med,med,unacc +vhigh,low,3,more,big,high,acc +vhigh,high,3,2,small,high,unacc +low,low,4,more,small,high,good +vhigh,low,4,more,small,med,unacc +low,high,2,4,med,med,acc +low,low,2,4,big,high,vgood +low,med,4,more,med,med,good +high,med,5more,2,big,high,unacc +med,vhigh,2,4,big,low,unacc +vhigh,med,4,more,med,low,unacc +low,low,2,4,small,low,unacc +low,high,4,4,big,high,vgood +low,high,3,2,med,high,unacc +vhigh,vhigh,5more,more,small,med,unacc +low,med,4,4,med,med,good +vhigh,low,3,4,small,low,unacc +vhigh,vhigh,4,2,big,med,unacc +high,vhigh,4,2,small,med,unacc +vhigh,low,4,more,med,med,acc +med,med,2,4,small,med,acc +low,high,5more,4,small,high,acc +vhigh,high,2,more,small,low,unacc +med,high,5more,more,big,med,acc +vhigh,med,3,more,med,low,unacc +low,low,4,2,small,low,unacc +med,high,2,2,big,high,unacc +low,med,3,2,med,high,unacc +low,vhigh,2,4,big,med,acc +low,med,4,2,small,high,unacc +med,vhigh,4,2,big,high,unacc +med,high,2,more,small,med,unacc +med,low,3,2,med,high,unacc +med,high,2,more,small,low,unacc +vhigh,med,3,4,big,high,acc +low,high,2,4,med,low,unacc +low,low,2,more,med,high,good +vhigh,med,5more,4,small,high,acc +med,low,4,more,small,med,acc +vhigh,low,4,4,small,med,unacc +high,med,2,2,small,med,unacc +low,vhigh,2,more,big,med,acc +med,vhigh,4,4,med,med,acc +vhigh,high,2,more,big,high,unacc +vhigh,vhigh,5more,more,small,low,unacc +high,high,2,more,med,low,unacc +low,vhigh,5more,more,small,med,unacc +med,high,2,2,med,low,unacc +vhigh,low,3,4,small,high,acc +low,low,3,4,big,low,unacc +low,low,4,2,big,low,unacc +vhigh,vhigh,2,more,small,med,unacc +vhigh,vhigh,5more,4,small,high,unacc +med,low,2,2,med,med,unacc +vhigh,med,4,more,big,low,unacc +low,low,5more,more,big,low,unacc +med,high,5more,2,small,med,unacc +high,med,5more,2,small,med,unacc +high,med,3,2,small,low,unacc +low,low,4,2,big,high,unacc +med,med,5more,4,med,high,vgood +low,vhigh,4,4,small,high,acc +med,high,3,2,med,high,unacc +vhigh,high,5more,4,small,high,unacc +high,vhigh,5more,2,med,high,unacc +vhigh,vhigh,3,more,small,med,unacc +high,med,5more,more,med,med,acc +vhigh,low,5more,more,small,low,unacc +vhigh,med,2,more,small,high,unacc +med,vhigh,5more,more,med,high,acc +med,low,3,more,med,high,vgood +high,high,4,2,med,med,unacc +high,med,5more,2,med,high,unacc +vhigh,high,3,2,med,low,unacc +med,med,5more,2,med,med,unacc +low,high,2,more,med,low,unacc +low,vhigh,2,2,small,low,unacc +med,med,5more,more,med,low,unacc +med,high,2,4,med,low,unacc +high,high,4,more,big,low,unacc +high,low,4,4,big,med,acc +med,med,4,more,big,med,acc +low,high,4,4,small,med,acc +vhigh,med,2,more,med,high,acc +med,med,5more,more,small,low,unacc +high,low,3,more,med,high,acc +high,high,4,2,med,low,unacc +low,low,2,more,med,low,unacc +vhigh,vhigh,3,2,small,high,unacc +vhigh,vhigh,2,2,big,low,unacc +med,med,3,more,big,high,vgood +med,low,5more,2,med,low,unacc +low,med,2,4,med,med,acc +high,med,5more,more,big,high,acc +med,low,5more,more,med,med,good +med,high,3,2,med,med,unacc +med,high,5more,more,big,low,unacc +vhigh,med,3,4,small,high,acc +low,low,3,2,small,high,unacc +high,med,3,more,big,low,unacc +med,vhigh,3,4,med,med,unacc +high,high,5more,more,small,med,unacc +med,low,4,2,med,low,unacc +vhigh,high,2,more,small,med,unacc +low,med,2,2,med,low,unacc +vhigh,low,2,more,small,med,unacc +vhigh,vhigh,4,2,small,low,unacc +med,low,4,more,med,low,unacc +med,high,3,4,small,med,unacc +med,vhigh,2,more,big,low,unacc +vhigh,high,4,4,big,low,unacc +med,vhigh,4,2,small,low,unacc +vhigh,med,5more,2,small,med,unacc +vhigh,vhigh,3,2,big,high,unacc +med,high,3,more,small,high,acc +med,vhigh,3,more,small,low,unacc +low,vhigh,3,2,small,low,unacc +vhigh,high,2,more,big,med,unacc +low,low,5more,2,small,low,unacc +low,med,2,2,big,high,unacc +med,low,5more,more,med,low,unacc +high,high,5more,2,big,med,unacc +high,med,5more,4,small,high,acc +low,vhigh,3,more,big,med,acc +low,med,5more,2,big,high,unacc +med,med,3,4,big,high,vgood +low,high,3,4,small,high,acc +high,low,3,more,med,low,unacc +high,low,5more,2,small,high,unacc +med,low,5more,more,med,high,vgood +low,med,4,4,small,med,acc +low,med,3,4,small,high,good +med,med,5more,2,small,high,unacc +low,vhigh,3,4,med,high,acc +low,med,5more,2,med,med,unacc +low,low,5more,4,med,med,good +vhigh,high,5more,more,small,med,unacc +vhigh,med,2,2,med,high,unacc +vhigh,high,3,4,small,med,unacc +high,high,2,4,med,high,acc +vhigh,med,3,2,small,low,unacc +high,low,3,2,big,med,unacc +vhigh,low,4,more,big,low,unacc +low,high,3,2,small,med,unacc +vhigh,high,4,more,small,high,unacc +low,high,2,4,small,med,acc +med,low,3,more,small,high,good +high,low,4,4,med,high,acc +vhigh,vhigh,4,4,big,low,unacc +med,low,4,4,big,med,good +low,med,3,2,big,low,unacc +low,low,4,2,small,med,unacc +med,low,5more,2,small,high,unacc +low,high,4,more,small,low,unacc +high,high,3,more,big,med,acc +med,high,5more,more,med,low,unacc +vhigh,high,4,4,small,high,unacc +med,low,3,more,small,med,acc +med,low,3,2,big,high,unacc +vhigh,low,3,more,med,low,unacc +med,med,4,more,med,low,unacc +med,vhigh,2,2,med,high,unacc +high,med,5more,2,big,low,unacc +vhigh,vhigh,3,2,small,med,unacc +high,low,3,more,small,low,unacc +med,high,3,2,small,low,unacc +low,high,5more,4,big,high,vgood +med,low,4,more,med,high,vgood +med,high,3,more,small,low,unacc +vhigh,med,4,4,med,low,unacc +low,high,2,4,med,high,acc +vhigh,low,4,2,small,med,unacc +vhigh,low,3,more,small,low,unacc +high,high,3,2,big,med,unacc +med,low,4,4,small,med,acc +med,vhigh,3,more,small,med,unacc +med,high,2,4,big,med,acc +low,vhigh,3,4,med,low,unacc +med,vhigh,5more,more,med,med,acc +vhigh,high,5more,more,big,med,unacc +high,med,2,more,big,high,acc +high,low,4,more,small,high,acc +low,vhigh,4,2,big,high,unacc +low,high,4,more,small,high,acc +high,high,3,more,small,high,acc +vhigh,high,5more,2,big,low,unacc +high,med,3,4,small,high,acc +low,high,2,4,small,high,acc +high,med,3,more,med,low,unacc +low,low,5more,2,med,med,unacc +vhigh,low,3,2,big,med,unacc +low,high,4,2,small,high,unacc +high,high,3,4,small,low,unacc +vhigh,low,4,2,big,high,unacc +med,vhigh,5more,4,big,med,acc +low,high,3,more,med,low,unacc +low,low,3,2,small,low,unacc +low,low,2,more,small,med,unacc +vhigh,low,3,4,med,high,acc +high,low,3,2,med,high,unacc +med,high,5more,2,small,high,unacc +low,med,2,2,small,med,unacc +med,high,4,more,small,high,acc +high,high,5more,4,big,med,acc +low,med,5more,more,small,low,unacc +low,high,2,2,med,low,unacc +low,low,2,2,med,low,unacc +vhigh,high,2,2,small,high,unacc +high,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,big,med,unacc +low,high,3,more,big,low,unacc +high,vhigh,3,2,med,high,unacc +vhigh,low,5more,more,big,low,unacc +high,low,4,2,small,low,unacc +vhigh,high,5more,more,med,high,unacc +vhigh,vhigh,5more,2,big,low,unacc +low,high,5more,more,small,med,acc +high,med,4,more,big,med,acc +high,high,2,more,med,med,unacc +high,high,5more,2,big,high,unacc +med,vhigh,4,2,big,low,unacc +low,low,4,more,med,high,vgood +high,med,2,4,med,med,unacc +high,low,5more,4,small,high,acc +high,vhigh,4,4,med,med,unacc +low,med,4,4,small,low,unacc +vhigh,high,4,2,med,high,unacc +med,vhigh,2,more,med,high,acc +vhigh,med,3,more,med,high,acc +low,vhigh,2,more,small,low,unacc +high,vhigh,5more,4,big,med,unacc +med,med,3,4,small,low,unacc +high,high,5more,more,med,low,unacc +med,med,2,2,small,low,unacc +high,low,5more,more,small,med,unacc +low,vhigh,2,4,med,low,unacc +high,high,5more,4,med,high,acc +high,med,2,more,big,low,unacc +vhigh,med,4,more,small,med,unacc +med,low,2,more,big,low,unacc +med,med,4,2,med,med,unacc +high,low,2,more,small,med,unacc +vhigh,high,4,more,med,low,unacc +low,vhigh,5more,2,med,med,unacc +high,vhigh,5more,more,med,low,unacc +med,high,3,2,big,low,unacc +vhigh,high,3,more,big,med,unacc +high,vhigh,3,more,big,low,unacc +med,med,3,4,med,high,acc +low,low,4,4,med,low,unacc +vhigh,med,5more,more,big,low,unacc +high,med,3,2,big,high,unacc +high,med,4,2,small,low,unacc +high,high,3,4,med,low,unacc +high,high,2,more,small,high,unacc +low,low,2,2,med,med,unacc +med,vhigh,2,4,small,high,acc +med,med,4,2,big,high,unacc +vhigh,high,5more,4,big,high,unacc +low,vhigh,4,2,small,med,unacc +med,vhigh,4,more,small,low,unacc +med,vhigh,3,more,big,med,acc +high,med,4,2,big,high,unacc +high,low,3,2,big,high,unacc +vhigh,med,3,more,big,low,unacc +vhigh,vhigh,2,more,med,high,unacc +low,high,2,more,small,high,unacc +low,high,2,more,small,low,unacc +high,low,3,4,med,low,unacc +med,high,3,4,big,low,unacc +low,high,5more,more,med,med,acc +low,low,2,2,med,high,unacc +med,low,5more,4,med,high,vgood +vhigh,med,3,2,small,med,unacc +vhigh,low,3,more,med,high,acc +high,med,2,4,small,high,acc +vhigh,med,4,2,small,low,unacc +vhigh,med,2,2,small,low,unacc +low,high,3,4,med,high,acc +high,med,4,4,small,med,unacc +high,vhigh,3,4,big,med,unacc +low,low,5more,more,med,high,vgood +vhigh,vhigh,2,4,small,low,unacc +med,med,2,more,big,high,vgood +med,low,3,more,big,high,vgood +med,high,3,more,med,high,acc +high,vhigh,3,more,small,med,unacc +vhigh,low,5more,more,med,high,acc +low,low,4,4,big,high,vgood +med,low,3,4,small,high,good +high,med,5more,2,small,high,unacc +low,vhigh,2,4,small,high,acc +high,vhigh,3,more,small,high,unacc +med,high,2,more,med,med,unacc +vhigh,vhigh,4,more,med,low,unacc +med,high,4,4,med,low,unacc +med,vhigh,5more,more,small,low,unacc +high,vhigh,5more,2,small,med,unacc +vhigh,high,4,2,big,med,unacc +vhigh,low,5more,4,small,high,acc +low,med,5more,2,big,med,unacc +med,high,3,4,big,med,acc +med,high,4,more,small,med,unacc +high,low,5more,more,small,high,acc +vhigh,vhigh,3,4,small,low,unacc +med,high,5more,more,small,med,unacc +high,high,5more,2,small,med,unacc +low,high,4,2,big,high,unacc +low,med,5more,4,big,high,vgood +med,low,2,4,med,med,acc +low,vhigh,3,4,big,high,acc +med,vhigh,3,more,big,low,unacc +med,vhigh,5more,2,big,low,unacc +med,high,2,2,med,med,unacc +vhigh,low,4,more,med,high,acc +vhigh,low,3,2,med,med,unacc +vhigh,vhigh,4,4,small,low,unacc +med,vhigh,3,2,big,high,unacc +low,high,5more,more,big,med,acc +med,med,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,high,unacc +high,vhigh,4,2,big,low,unacc +high,high,2,2,big,high,unacc +low,med,4,2,small,low,unacc +low,low,3,4,small,med,acc +high,med,3,more,med,high,acc +low,high,3,2,small,high,unacc +vhigh,low,5more,2,small,med,unacc +high,low,4,4,med,med,acc +vhigh,med,2,4,med,low,unacc +vhigh,high,2,2,med,med,unacc +low,vhigh,4,4,big,low,unacc +low,vhigh,2,more,med,high,acc +med,low,2,4,med,low,unacc +med,low,2,more,med,high,good +vhigh,med,5more,more,small,med,unacc +med,high,5more,2,big,low,unacc +med,med,4,more,med,med,acc +med,high,3,more,big,high,acc +med,high,2,2,big,med,unacc +med,low,4,2,med,high,unacc +med,high,4,2,med,low,unacc +vhigh,high,5more,more,big,high,unacc +high,high,5more,2,big,low,unacc +med,high,4,2,small,med,unacc +low,vhigh,4,4,med,high,acc +vhigh,low,4,4,big,high,acc +med,vhigh,5more,more,big,high,acc +vhigh,vhigh,4,4,big,med,unacc +high,med,5more,more,big,low,unacc +high,high,5more,4,med,low,unacc +low,high,4,more,med,med,acc +vhigh,low,3,4,big,med,acc +vhigh,med,3,4,small,med,unacc +high,high,3,4,med,high,acc +med,low,5more,4,big,low,unacc +low,med,3,more,med,low,unacc +low,vhigh,5more,4,big,med,acc +med,high,5more,more,med,med,acc +low,low,4,2,med,high,unacc +low,med,3,2,med,low,unacc +low,high,2,4,big,low,unacc +low,low,5more,2,med,high,unacc +high,vhigh,5more,4,small,med,unacc +med,high,4,4,big,high,acc +vhigh,vhigh,3,2,big,low,unacc +med,high,5more,2,med,med,unacc +vhigh,high,2,2,big,low,unacc +med,med,4,4,med,high,vgood +med,high,3,more,med,low,unacc +low,high,2,more,med,med,acc +low,med,4,2,med,low,unacc +med,vhigh,5more,4,big,low,unacc +vhigh,med,2,more,big,high,acc +low,vhigh,5more,4,small,high,acc +vhigh,low,5more,2,small,low,unacc +high,med,2,4,big,low,unacc +vhigh,high,5more,2,small,high,unacc +med,low,4,2,big,high,unacc +low,med,2,2,med,med,unacc +med,med,2,4,big,high,vgood +low,high,4,2,med,high,unacc +high,med,4,more,med,low,unacc +low,high,3,4,small,med,acc +med,vhigh,4,4,big,med,acc +high,low,4,4,small,high,acc +high,high,2,4,small,med,unacc +low,med,2,more,med,med,acc +med,vhigh,5more,2,med,high,unacc +low,med,5more,4,med,high,vgood +low,high,4,4,med,low,unacc +low,low,2,4,med,high,good +high,vhigh,2,2,med,low,unacc +high,vhigh,4,2,small,low,unacc +med,vhigh,4,more,big,high,acc +med,high,3,4,small,high,acc +vhigh,low,2,more,med,med,unacc +med,med,5more,4,med,med,acc +high,med,2,2,med,med,unacc +vhigh,high,2,2,big,high,unacc +high,high,2,2,med,high,unacc +high,med,5more,more,big,med,acc +vhigh,vhigh,3,4,med,low,unacc +low,vhigh,4,more,small,low,unacc +vhigh,vhigh,4,2,med,high,unacc +low,low,2,2,big,med,unacc +low,low,4,more,small,low,unacc +low,vhigh,2,4,small,med,unacc +med,med,5more,2,med,low,unacc +low,high,3,more,small,high,acc +high,vhigh,5more,4,med,med,unacc +med,low,3,4,med,med,acc +vhigh,vhigh,5more,2,med,med,unacc +low,vhigh,4,2,big,med,unacc +high,med,4,4,small,high,acc +low,low,3,more,small,low,unacc +vhigh,high,4,more,big,high,unacc +med,vhigh,5more,4,big,high,acc +vhigh,low,4,more,big,med,acc +med,low,2,4,med,high,good +med,high,2,4,big,high,acc +vhigh,vhigh,5more,4,small,low,unacc +med,low,5more,more,small,low,unacc +vhigh,low,4,2,med,high,unacc +med,low,2,more,big,high,vgood +low,high,5more,4,big,low,unacc +high,low,5more,2,small,med,unacc +vhigh,vhigh,4,4,med,high,unacc +vhigh,low,3,more,big,low,unacc +low,low,2,more,big,low,unacc +vhigh,med,5more,2,small,low,unacc +med,vhigh,3,2,big,low,unacc +vhigh,med,2,4,small,med,unacc +med,low,2,4,big,low,unacc +high,low,4,more,big,high,acc +vhigh,vhigh,2,more,med,low,unacc +low,med,5more,4,small,high,good +low,low,5more,2,big,med,unacc +vhigh,vhigh,3,more,med,high,unacc +vhigh,med,5more,more,big,med,acc +high,med,4,more,small,high,acc +low,low,2,more,small,low,unacc +low,low,2,2,big,high,unacc +med,vhigh,4,more,small,high,acc +high,high,3,more,med,med,acc +low,vhigh,5more,2,small,high,unacc +high,high,4,2,small,med,unacc +low,vhigh,4,4,big,med,acc +med,vhigh,3,2,small,med,unacc +low,vhigh,5more,4,big,low,unacc +vhigh,vhigh,5more,4,big,high,unacc +low,med,3,4,big,high,vgood +vhigh,high,2,2,med,high,unacc +med,vhigh,5more,more,med,low,unacc +low,low,2,more,med,med,acc +low,med,5more,more,med,high,vgood +high,med,5more,4,big,med,acc +vhigh,low,5more,2,med,high,unacc +vhigh,low,4,more,small,high,acc +high,vhigh,5more,4,small,high,unacc +low,med,5more,more,small,med,acc +high,vhigh,3,2,med,med,unacc +med,med,2,2,med,low,unacc +high,low,3,more,small,high,acc +med,high,4,more,med,high,acc +vhigh,med,5more,4,med,high,acc +high,high,4,4,small,high,acc +vhigh,vhigh,2,more,big,high,unacc +vhigh,low,4,2,med,med,unacc +med,low,5more,4,big,med,good +vhigh,low,3,2,small,med,unacc +high,med,4,4,med,high,acc +low,vhigh,5more,4,med,med,acc +low,vhigh,5more,more,big,low,unacc +med,high,4,4,big,med,acc +med,low,5more,2,small,med,unacc +high,med,3,2,big,med,unacc +high,med,4,4,big,med,acc +med,med,4,4,small,low,unacc +low,high,5more,2,big,low,unacc +vhigh,low,3,2,big,high,unacc +vhigh,high,3,4,big,high,unacc +high,vhigh,5more,2,med,low,unacc +med,low,4,4,big,low,unacc +low,med,5more,2,med,low,unacc +med,high,3,2,med,low,unacc +med,high,2,more,small,high,unacc +high,low,3,more,big,high,acc +med,vhigh,3,more,small,high,acc +low,vhigh,3,4,small,high,acc +low,low,5more,more,small,low,unacc +med,high,4,more,big,low,unacc +med,low,5more,4,med,med,good +low,med,5more,4,med,med,good +vhigh,med,2,more,small,low,unacc +vhigh,high,2,more,med,low,unacc +med,low,4,more,big,low,unacc +med,vhigh,4,4,small,low,unacc +high,vhigh,4,2,big,med,unacc +low,med,4,2,big,low,unacc +vhigh,high,3,more,small,med,unacc +high,low,5more,4,big,med,acc +med,med,2,2,med,high,unacc +high,high,4,2,med,high,unacc +high,med,2,2,big,high,unacc +high,low,4,2,med,low,unacc +low,med,2,2,small,high,unacc +high,high,2,4,small,high,acc +med,med,2,4,big,low,unacc +vhigh,vhigh,2,4,small,med,unacc +med,high,5more,4,big,med,acc +med,high,4,2,big,med,unacc +med,low,2,2,small,low,unacc +high,low,3,4,med,med,unacc +high,low,2,2,med,med,unacc +low,low,2,4,med,low,unacc +low,high,3,2,small,low,unacc +med,med,5more,4,small,high,acc +vhigh,low,4,4,med,high,acc +vhigh,vhigh,5more,2,small,low,unacc +med,high,2,more,big,high,acc +vhigh,high,4,4,med,med,unacc +vhigh,high,4,more,med,high,unacc +med,low,4,4,med,low,unacc +vhigh,med,3,2,big,high,unacc +med,med,4,more,small,low,unacc +high,vhigh,2,4,small,med,unacc +vhigh,low,4,2,big,low,unacc +med,low,4,4,med,med,good +vhigh,med,5more,2,med,med,unacc +vhigh,vhigh,4,2,med,med,unacc +med,high,3,4,big,high,acc +vhigh,vhigh,3,more,med,low,unacc +high,high,5more,more,big,med,acc +vhigh,med,5more,4,small,med,unacc +vhigh,high,4,4,small,low,unacc +high,vhigh,2,more,med,high,unacc +high,high,3,2,big,low,unacc +vhigh,vhigh,5more,more,small,high,unacc +high,vhigh,2,4,med,med,unacc +vhigh,vhigh,5more,4,med,low,unacc +high,low,5more,4,small,med,unacc +med,med,3,more,med,med,acc +vhigh,med,2,more,big,med,acc +med,high,2,4,med,med,unacc +vhigh,vhigh,3,4,small,med,unacc +high,high,2,4,big,low,unacc +med,vhigh,4,4,small,med,unacc +vhigh,low,2,2,small,med,unacc +high,low,3,4,small,med,unacc +high,low,5more,2,med,med,unacc +vhigh,low,2,4,med,med,unacc +low,high,2,more,med,high,acc +low,med,3,more,small,high,good +vhigh,low,2,more,med,high,acc +low,high,5more,2,med,med,unacc +low,high,5more,more,big,high,vgood +high,low,2,4,med,high,acc +med,med,3,2,med,high,unacc +vhigh,low,5more,4,big,low,unacc +vhigh,high,3,4,med,med,unacc +vhigh,vhigh,2,4,big,med,unacc +med,med,5more,4,big,high,vgood +low,med,4,more,med,high,vgood +high,high,3,2,big,high,unacc +high,vhigh,2,more,small,med,unacc +med,med,2,more,small,low,unacc +vhigh,low,2,4,big,med,acc +low,vhigh,2,2,big,med,unacc +med,low,4,more,small,high,good +high,med,3,2,small,med,unacc +med,vhigh,2,more,big,med,acc +high,low,3,more,big,med,acc +low,low,3,more,big,high,vgood +vhigh,low,4,4,med,med,acc +med,vhigh,2,more,med,med,unacc +med,med,3,more,small,low,unacc +vhigh,vhigh,3,more,small,low,unacc +vhigh,low,5more,4,big,med,acc +med,high,3,4,med,med,unacc +low,vhigh,3,more,med,high,acc +low,low,5more,4,big,med,good +vhigh,med,3,2,small,high,unacc +low,high,3,4,big,high,vgood +vhigh,low,2,2,big,low,unacc +med,low,3,more,big,med,good +vhigh,low,4,4,small,low,unacc +med,med,3,2,small,high,unacc +low,high,5more,2,big,med,unacc +low,low,2,2,small,low,unacc +vhigh,low,3,2,med,low,unacc +high,low,5more,more,med,low,unacc +med,high,5more,4,big,high,acc +low,low,5more,more,small,high,good +low,low,3,4,med,low,unacc +low,med,2,4,big,low,unacc +high,high,4,2,small,low,unacc +high,low,5more,more,big,high,acc +low,med,2,more,big,med,good +med,med,2,2,small,high,unacc +high,low,2,4,med,low,unacc +high,med,2,2,med,high,unacc +high,vhigh,5more,2,big,med,unacc +low,high,2,2,small,med,unacc +vhigh,low,5more,more,small,high,acc +med,vhigh,3,more,big,high,acc +vhigh,vhigh,4,more,small,low,unacc +low,vhigh,4,more,small,high,acc +high,vhigh,5more,2,big,high,unacc +low,med,5more,2,med,high,unacc +med,high,2,2,small,low,unacc +low,vhigh,5more,4,small,med,unacc +low,vhigh,3,more,small,med,unacc +high,med,2,4,small,low,unacc +high,vhigh,3,4,small,low,unacc +low,med,4,4,small,high,good +high,vhigh,3,more,big,med,unacc +high,vhigh,4,4,small,low,unacc +vhigh,low,5more,more,med,low,unacc +vhigh,med,4,4,small,med,unacc +med,low,2,more,med,low,unacc +high,low,2,2,big,low,unacc +high,med,2,4,small,med,unacc +vhigh,high,3,more,med,high,unacc +low,high,2,2,small,low,unacc +high,vhigh,3,4,med,high,unacc +low,high,5more,2,small,low,unacc +high,med,5more,4,med,high,acc +med,vhigh,3,2,med,high,unacc +vhigh,low,5more,4,med,med,acc +high,low,4,more,med,low,unacc +med,high,2,2,big,low,unacc +high,high,2,more,big,med,acc +low,low,5more,more,big,high,vgood +vhigh,high,4,2,small,med,unacc +high,low,2,4,big,high,acc +high,high,5more,2,med,low,unacc +med,med,4,4,big,high,vgood +low,vhigh,5more,2,big,high,unacc +high,vhigh,4,4,small,high,unacc +med,high,4,2,small,high,unacc +vhigh,med,4,more,big,med,acc +vhigh,high,3,2,small,low,unacc +med,med,3,2,big,med,unacc +med,low,5more,2,big,med,unacc +vhigh,high,5more,more,small,high,unacc +high,low,4,4,small,med,unacc +low,med,3,4,med,low,unacc +high,med,5more,more,med,low,unacc +low,med,3,more,small,med,acc +med,high,3,more,big,med,acc +med,med,4,more,small,med,acc +med,med,3,4,med,med,acc +vhigh,high,5more,2,med,med,unacc +med,low,5more,2,big,high,unacc +med,med,2,4,med,low,unacc +med,low,2,4,big,med,good +high,high,2,4,big,med,acc +low,med,4,more,big,high,vgood +high,vhigh,5more,4,med,high,unacc +vhigh,low,5more,4,small,low,unacc +low,low,5more,4,big,low,unacc +vhigh,low,2,2,big,high,unacc +med,med,4,4,med,low,unacc +low,vhigh,5more,2,small,low,unacc +med,low,2,more,small,high,unacc +high,vhigh,3,2,big,med,unacc +vhigh,vhigh,3,4,small,high,unacc +med,vhigh,2,4,big,med,acc +high,low,4,2,med,high,unacc +high,med,5more,2,med,low,unacc +low,high,4,more,big,med,acc +vhigh,low,5more,4,big,high,acc +low,med,5more,more,big,low,unacc +low,vhigh,4,more,big,low,unacc +vhigh,high,2,2,small,low,unacc +vhigh,low,2,2,med,high,unacc +vhigh,low,2,more,small,low,unacc +high,low,2,4,small,high,acc +med,med,5more,more,med,high,vgood +high,med,3,more,big,med,acc +high,med,4,4,small,low,unacc +high,low,4,2,med,med,unacc +med,med,3,4,big,low,unacc +med,vhigh,5more,4,small,low,unacc +high,high,4,2,big,low,unacc +vhigh,high,4,more,big,low,unacc +vhigh,med,4,4,big,low,unacc +high,vhigh,2,more,med,low,unacc +high,med,2,more,small,high,unacc +high,vhigh,5more,more,small,med,unacc +high,low,2,2,big,med,unacc +vhigh,high,4,more,small,low,unacc +low,vhigh,3,4,small,med,unacc +low,low,4,more,big,med,good +low,vhigh,2,more,small,med,unacc +med,high,5more,more,small,high,acc +vhigh,vhigh,2,more,med,med,unacc +low,med,3,4,small,med,acc +med,high,3,more,small,med,unacc +high,med,3,4,big,med,acc +low,med,3,2,small,high,unacc +low,low,3,2,big,med,unacc +med,high,3,more,med,med,acc +vhigh,med,3,4,med,high,acc +high,high,4,more,big,med,acc +med,vhigh,5more,2,med,med,unacc +high,vhigh,2,4,small,high,unacc +med,med,2,4,small,low,unacc +high,high,4,more,small,med,unacc +low,vhigh,4,more,big,med,acc +med,med,4,2,big,low,unacc +low,med,5more,2,small,low,unacc +low,low,2,2,small,high,unacc +high,vhigh,5more,2,small,low,unacc +vhigh,med,4,4,small,low,unacc +vhigh,low,5more,2,big,high,unacc +med,low,3,4,big,low,unacc +high,low,3,more,med,med,acc +low,high,5more,2,med,low,unacc +high,vhigh,3,more,med,low,unacc +med,med,2,4,med,med,acc +med,high,5more,more,big,high,acc +low,low,2,more,small,high,unacc +high,low,3,2,med,low,unacc +high,high,4,4,big,med,acc +vhigh,med,5more,more,small,low,unacc +vhigh,high,4,2,big,high,unacc +low,med,2,more,med,low,unacc +med,low,5more,4,small,med,acc +low,high,4,2,big,low,unacc +vhigh,med,4,2,med,low,unacc +med,high,5more,4,med,high,acc +med,high,2,4,small,high,acc +vhigh,med,2,4,big,low,unacc +low,med,2,more,med,high,good +low,vhigh,5more,2,big,low,unacc +med,vhigh,2,more,small,low,unacc +vhigh,high,5more,4,med,high,unacc +med,high,2,4,big,low,unacc +high,low,5more,more,small,low,unacc +high,low,5more,4,big,high,acc +med,med,5more,4,small,med,acc +vhigh,med,2,more,big,low,unacc +high,med,4,2,small,high,unacc +vhigh,vhigh,4,more,small,med,unacc +low,med,4,2,big,med,unacc +med,vhigh,2,4,med,med,unacc +med,high,5more,4,small,low,unacc +high,med,4,more,med,med,acc +vhigh,med,4,more,big,high,acc +vhigh,med,2,more,med,med,unacc +vhigh,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,small,high,unacc +med,med,5more,2,small,low,unacc +high,high,4,4,big,low,unacc +high,med,4,2,med,med,unacc +low,vhigh,2,2,med,med,unacc +low,high,5more,more,med,low,unacc +vhigh,vhigh,2,2,med,low,unacc +high,low,2,more,small,low,unacc +vhigh,vhigh,4,more,med,high,unacc +high,high,2,more,big,high,acc +vhigh,high,4,4,big,med,unacc +low,vhigh,4,4,big,high,acc +vhigh,high,3,more,big,high,unacc +vhigh,vhigh,5more,2,med,low,unacc +med,low,2,4,small,high,good +low,high,3,more,big,med,acc +vhigh,med,2,2,small,med,unacc +high,high,5more,more,small,high,acc +low,vhigh,2,more,small,high,unacc +vhigh,vhigh,5more,more,med,low,unacc +high,low,2,2,small,high,unacc +low,vhigh,3,more,med,low,unacc +low,low,5more,4,small,low,unacc +med,med,4,more,big,high,vgood +high,high,3,4,big,med,acc +low,low,2,4,small,med,acc +high,vhigh,2,2,big,high,unacc +high,high,4,4,small,low,unacc +vhigh,med,5more,2,big,high,unacc +high,vhigh,2,more,med,med,unacc +low,low,4,2,big,med,unacc +low,low,5more,4,med,low,unacc +high,vhigh,5more,more,med,high,unacc +vhigh,med,2,4,big,med,acc +med,low,2,2,big,low,unacc +low,low,4,more,med,low,unacc +high,high,5more,2,small,low,unacc +vhigh,low,5more,more,med,med,acc +high,low,3,2,small,low,unacc +med,low,3,4,big,high,vgood +vhigh,high,2,4,med,high,unacc +vhigh,med,3,4,med,low,unacc +med,vhigh,3,more,med,low,unacc +vhigh,med,5more,4,big,low,unacc +high,high,3,4,small,med,unacc +vhigh,high,3,more,small,low,unacc +vhigh,high,3,more,med,low,unacc +low,low,5more,2,med,low,unacc +low,vhigh,2,4,small,low,unacc +low,med,5more,4,small,med,acc +high,high,3,more,big,low,unacc +vhigh,vhigh,4,more,med,med,unacc +high,vhigh,4,more,small,low,unacc +vhigh,low,5more,2,big,low,unacc +vhigh,vhigh,4,4,med,med,unacc +low,high,5more,2,med,high,unacc +med,med,3,2,big,high,unacc +med,med,3,more,small,high,acc +vhigh,vhigh,3,more,big,high,unacc +vhigh,high,5more,2,small,low,unacc +med,vhigh,4,2,med,high,unacc +low,high,5more,4,big,med,acc +low,med,2,2,big,low,unacc +med,med,3,2,med,low,unacc +vhigh,med,4,more,med,med,acc +med,med,5more,4,big,med,acc +med,high,2,4,small,low,unacc +vhigh,vhigh,5more,more,big,med,unacc +med,vhigh,3,4,small,low,unacc +high,low,2,4,big,low,unacc +high,med,2,2,big,low,unacc +high,low,5more,2,med,low,unacc +low,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,med,low,unacc +med,vhigh,2,more,med,low,unacc +med,high,5more,4,med,med,acc +vhigh,vhigh,3,more,small,high,unacc +vhigh,med,4,4,small,high,acc +vhigh,high,2,more,med,med,unacc +med,low,4,4,small,low,unacc +low,high,3,4,med,med,acc +low,high,4,4,big,low,unacc +vhigh,med,5more,4,med,med,acc +vhigh,high,4,more,med,med,unacc +vhigh,low,3,more,small,med,unacc +vhigh,med,2,4,big,high,acc +med,low,5more,2,big,low,unacc +low,high,3,4,big,med,acc +low,high,5more,2,small,med,unacc +vhigh,med,4,more,small,high,acc +low,vhigh,2,more,big,low,unacc +high,vhigh,5more,more,big,med,unacc +low,low,2,more,big,high,vgood +high,high,4,4,small,med,unacc +low,med,4,4,big,high,vgood +low,high,3,more,big,high,vgood +med,vhigh,5more,4,small,high,acc +med,low,5more,4,small,low,unacc +med,low,4,2,big,med,unacc +vhigh,high,5more,2,big,high,unacc +low,vhigh,2,2,small,med,unacc +high,med,4,2,med,high,unacc +high,low,2,more,big,med,acc +low,med,5more,4,big,low,unacc +high,low,2,2,med,high,unacc +vhigh,high,2,4,big,low,unacc +low,vhigh,3,2,small,high,unacc +vhigh,high,5more,4,small,low,unacc +high,med,5more,4,small,med,unacc +med,high,5more,more,med,high,acc +med,low,2,more,big,med,good +low,high,5more,more,med,high,vgood +low,vhigh,4,4,med,med,acc +med,high,5more,4,small,med,unacc +high,vhigh,3,2,big,low,unacc +med,low,3,4,big,med,good +low,vhigh,5more,more,small,low,unacc +low,low,3,more,big,low,unacc +low,low,5more,more,med,med,good +high,low,2,2,big,high,unacc +low,med,5more,4,small,low,unacc +vhigh,low,3,2,small,high,unacc +low,med,3,more,big,high,vgood +med,low,5more,more,big,high,vgood +med,low,4,more,small,low,unacc +vhigh,low,4,2,small,low,unacc +high,high,4,2,small,high,unacc +high,med,3,2,med,high,unacc +low,med,2,more,small,med,unacc +low,low,3,more,med,low,unacc +high,med,4,2,big,med,unacc +vhigh,low,5more,4,small,med,unacc +vhigh,med,2,4,small,high,acc +med,med,4,more,med,high,vgood +vhigh,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,small,low,unacc +high,low,4,2,small,high,unacc +high,vhigh,3,2,small,low,unacc +high,vhigh,4,4,big,high,unacc +high,med,5more,2,small,low,unacc +high,med,2,4,med,high,acc +low,high,4,2,med,med,unacc +med,high,3,2,big,high,unacc +vhigh,med,3,2,med,med,unacc +med,high,4,more,big,high,acc +high,high,3,2,small,high,unacc +low,low,2,4,med,med,acc +low,vhigh,2,2,big,high,unacc +high,med,5more,4,small,low,unacc +low,high,4,more,big,high,vgood +vhigh,vhigh,5more,2,big,med,unacc +vhigh,high,5more,2,big,med,unacc +high,vhigh,5more,4,big,high,unacc +vhigh,vhigh,2,4,small,high,unacc +med,high,4,more,big,med,acc +vhigh,med,4,4,med,med,acc +med,vhigh,4,2,med,low,unacc +high,med,4,4,big,high,acc +high,high,4,4,big,high,acc +med,vhigh,3,4,small,high,acc +vhigh,med,4,4,big,high,acc +vhigh,low,2,more,big,med,acc +vhigh,med,3,more,med,med,acc +med,low,3,more,med,low,unacc +vhigh,low,3,4,med,med,unacc +low,med,3,4,big,low,unacc +med,med,4,4,small,high,acc +low,med,4,4,med,low,unacc +med,low,4,4,big,high,vgood +med,vhigh,2,2,big,high,unacc +med,low,2,2,big,med,unacc +vhigh,vhigh,3,2,med,low,unacc +vhigh,low,2,more,med,low,unacc +low,vhigh,5more,4,med,high,acc +high,med,3,4,small,med,unacc +high,high,5more,2,med,med,unacc +low,vhigh,3,2,med,low,unacc +high,vhigh,3,4,big,high,unacc +high,low,2,4,med,med,unacc +vhigh,med,3,2,big,med,unacc +high,vhigh,3,2,med,low,unacc +med,vhigh,3,4,med,low,unacc +low,med,5more,2,small,med,unacc +low,low,3,more,med,high,vgood +med,high,3,2,big,med,unacc +vhigh,med,3,4,small,low,unacc +med,vhigh,2,4,small,low,unacc +med,low,5more,more,small,high,good +vhigh,med,4,2,med,high,unacc +med,high,3,4,small,low,unacc +high,med,5more,more,small,high,acc +high,low,5more,4,small,low,unacc +med,high,4,2,med,high,unacc +low,low,3,2,small,med,unacc +high,vhigh,4,4,small,med,unacc +high,low,3,4,small,high,acc +high,high,2,4,med,low,unacc +med,vhigh,4,more,big,low,unacc +high,low,4,more,small,low,unacc +high,high,5more,4,small,med,unacc +vhigh,med,4,2,big,med,unacc +high,med,2,more,small,med,unacc +med,low,3,4,small,low,unacc +high,med,5more,more,med,high,acc +vhigh,high,4,more,small,med,unacc +low,vhigh,5more,4,med,low,unacc +vhigh,high,3,more,med,med,unacc +med,low,4,more,med,med,good +high,vhigh,3,4,med,low,unacc +low,med,4,more,big,med,good +med,vhigh,3,more,med,med,acc +high,med,2,2,med,low,unacc +vhigh,low,3,more,small,high,acc +high,vhigh,2,4,med,low,unacc +vhigh,high,2,2,small,med,unacc +low,vhigh,3,4,big,low,unacc +high,low,5more,2,big,low,unacc +med,med,5more,4,big,low,unacc +med,vhigh,2,2,big,low,unacc +med,med,2,2,big,low,unacc +vhigh,low,2,more,big,high,acc +low,med,2,4,med,low,unacc +high,vhigh,5more,2,big,low,unacc +vhigh,vhigh,4,4,big,high,unacc +vhigh,low,4,2,small,high,unacc +med,med,2,4,big,med,acc +low,low,4,4,big,med,good +high,high,2,2,big,low,unacc +vhigh,low,3,2,med,high,unacc +vhigh,vhigh,3,4,big,med,unacc +high,low,3,more,small,med,unacc +high,high,3,4,med,med,unacc +high,low,4,2,big,low,unacc +vhigh,high,2,4,big,med,unacc +med,low,2,2,med,low,unacc +low,vhigh,3,more,med,med,acc +high,med,3,more,big,high,acc +low,med,5more,more,big,high,vgood +low,med,5more,more,med,low,unacc +high,low,3,4,small,low,unacc +high,med,4,4,med,low,unacc +low,vhigh,2,2,small,high,unacc +low,low,2,2,small,med,unacc +low,med,4,more,med,low,unacc +high,low,5more,4,med,high,acc +med,low,3,2,small,high,unacc +high,high,4,4,med,med,acc +vhigh,vhigh,4,more,big,low,unacc +vhigh,high,5more,4,big,low,unacc +med,low,4,more,big,high,vgood +med,vhigh,5more,more,small,high,acc +vhigh,low,5more,2,small,high,unacc +vhigh,low,4,2,big,med,unacc +med,high,2,4,small,med,unacc +low,med,3,2,big,med,unacc +high,med,3,more,small,med,unacc +high,high,3,more,med,high,acc +vhigh,med,5more,more,med,high,acc +low,low,3,4,big,med,good +vhigh,vhigh,3,2,small,low,unacc +low,low,3,2,med,low,unacc +low,high,3,4,small,low,unacc +high,high,5more,4,big,high,acc +vhigh,low,2,4,med,low,unacc +med,high,4,2,big,low,unacc +vhigh,low,2,more,small,high,unacc +high,low,2,2,small,low,unacc +high,vhigh,5more,4,med,low,unacc +med,med,5more,4,med,low,unacc +high,vhigh,2,4,big,low,unacc +low,med,3,more,small,low,unacc +med,med,5more,2,big,med,unacc +vhigh,med,3,4,big,med,acc +low,high,3,4,big,low,unacc +med,med,2,more,med,low,unacc +vhigh,vhigh,3,4,big,low,unacc +med,low,4,2,small,high,unacc +med,med,3,4,med,low,unacc +vhigh,vhigh,4,4,small,med,unacc +vhigh,vhigh,5more,2,small,high,unacc +low,vhigh,3,2,big,low,unacc +high,vhigh,3,2,small,med,unacc +med,low,4,2,small,low,unacc +vhigh,vhigh,5more,more,big,high,unacc +low,med,2,4,small,med,acc +med,low,4,2,med,med,unacc +low,vhigh,4,4,small,med,unacc +high,vhigh,5more,2,med,med,unacc +med,vhigh,2,2,small,low,unacc +low,low,2,more,big,med,good +med,high,5more,2,med,high,unacc +high,med,3,4,big,high,acc +high,med,2,more,med,med,unacc +low,vhigh,5more,more,med,low,unacc +low,high,5more,4,med,med,acc +high,med,2,more,med,high,acc +med,med,5more,more,big,low,unacc +high,vhigh,5more,more,small,high,unacc +med,low,2,2,small,med,unacc +vhigh,low,3,more,med,med,acc +med,vhigh,5more,2,small,med,unacc +vhigh,med,4,2,big,high,unacc +low,med,4,more,small,high,good +vhigh,high,4,4,small,med,unacc +low,low,4,more,big,low,unacc +high,low,3,more,big,low,unacc +vhigh,vhigh,4,2,small,high,unacc +low,low,2,4,big,low,unacc +med,vhigh,5more,4,med,med,acc +low,high,5more,more,small,low,unacc +high,low,4,more,small,med,unacc +high,med,3,4,med,high,acc +high,low,3,4,med,high,acc +vhigh,vhigh,4,2,big,low,unacc +low,high,2,2,med,med,unacc +med,vhigh,3,2,small,high,unacc +high,high,2,more,small,med,unacc +low,med,4,4,big,med,good +med,high,3,2,small,med,unacc +low,med,3,2,med,med,unacc +low,vhigh,4,4,small,low,unacc +high,low,3,4,big,med,acc +low,med,2,more,big,low,unacc +high,med,4,more,small,med,unacc +vhigh,vhigh,2,4,med,med,unacc +low,high,3,2,big,high,unacc +high,low,2,more,big,low,unacc +vhigh,vhigh,3,4,med,high,unacc +high,low,3,4,big,low,unacc +high,low,5more,more,big,low,unacc +vhigh,low,5more,more,small,med,unacc +vhigh,high,2,more,small,high,unacc +high,low,5more,4,big,low,unacc +med,vhigh,5more,4,small,med,unacc +high,med,3,2,med,low,unacc +high,low,4,more,big,med,acc +high,low,5more,4,med,med,acc +low,high,4,more,med,high,vgood +low,high,4,2,small,low,unacc +vhigh,med,5more,4,big,med,acc +high,low,3,2,small,high,unacc +high,vhigh,3,4,big,low,unacc +vhigh,med,5more,4,med,low,unacc +low,med,4,4,big,low,unacc +vhigh,high,4,2,med,med,unacc +high,med,2,2,big,med,unacc +high,med,3,4,med,med,unacc +high,high,2,4,big,high,acc +high,vhigh,3,more,med,med,unacc +high,high,3,more,small,med,unacc +vhigh,high,3,more,big,low,unacc +med,vhigh,3,4,small,med,unacc +high,high,2,more,med,high,acc +high,vhigh,4,2,med,med,unacc +med,high,2,more,med,low,unacc +med,high,5more,4,big,low,unacc +high,high,3,2,small,med,unacc +high,vhigh,4,more,med,low,unacc +high,vhigh,5more,more,small,low,unacc +med,vhigh,4,2,med,med,unacc +med,high,2,2,small,med,unacc +vhigh,low,2,2,small,high,unacc +med,vhigh,3,more,med,high,acc +med,med,5more,more,small,med,acc +med,vhigh,2,4,small,med,unacc +med,high,4,2,big,high,unacc +med,vhigh,3,4,big,med,acc +high,med,2,2,small,high,unacc +low,vhigh,5more,2,small,med,unacc +med,med,4,2,med,low,unacc +vhigh,med,4,2,med,med,unacc +med,vhigh,4,4,big,high,acc +vhigh,med,3,2,big,low,unacc +high,vhigh,4,more,big,med,unacc +low,vhigh,5more,2,med,high,unacc +med,vhigh,5more,2,big,med,unacc +med,high,5more,2,big,high,unacc +vhigh,low,3,4,small,med,unacc +high,vhigh,2,4,big,high,unacc +med,vhigh,2,2,big,med,unacc +vhigh,med,2,2,med,low,unacc +vhigh,vhigh,2,4,med,low,unacc +vhigh,med,5more,2,big,low,unacc +high,vhigh,4,4,med,high,unacc +med,low,3,4,med,high,good +med,high,3,4,med,high,acc +high,low,3,2,med,med,unacc +vhigh,low,4,more,med,low,unacc +high,low,5more,4,med,low,unacc +med,vhigh,4,4,big,low,unacc +vhigh,high,3,4,big,low,unacc +low,high,5more,more,small,high,acc +low,low,2,2,big,low,unacc +vhigh,vhigh,5more,4,med,high,unacc +med,low,4,4,med,high,vgood +vhigh,med,5more,2,med,high,unacc +low,med,2,more,small,high,unacc +low,high,4,more,big,low,unacc +high,high,5more,4,big,low,unacc +low,vhigh,4,more,small,med,unacc +low,high,2,2,big,high,unacc +high,med,3,4,med,low,unacc +med,high,5more,2,med,low,unacc +high,high,3,4,big,low,unacc +vhigh,high,4,4,med,low,unacc +vhigh,low,2,more,big,low,unacc +med,vhigh,5more,more,big,med,acc +med,high,4,more,med,low,unacc +low,high,2,2,small,high,unacc +med,vhigh,3,4,big,low,unacc +low,low,3,4,med,high,good +med,vhigh,5more,2,big,high,unacc +high,med,2,4,med,low,unacc +med,low,5more,2,med,high,unacc +low,low,3,4,med,med,acc +high,high,3,more,med,low,unacc +high,high,5more,2,small,high,unacc +vhigh,vhigh,2,2,small,med,unacc +med,med,3,4,big,med,acc +high,low,4,more,med,med,acc +high,high,4,more,med,high,acc +med,med,5more,2,med,high,unacc +vhigh,low,3,2,big,low,unacc +low,vhigh,5more,more,big,med,acc +high,low,5more,more,big,med,acc +low,low,4,4,med,med,good +vhigh,med,3,more,small,low,unacc +low,vhigh,2,more,med,med,unacc +high,high,4,4,med,low,unacc +low,high,3,2,med,low,unacc +high,med,2,more,med,low,unacc +high,low,5more,2,small,low,unacc +high,high,5more,4,med,med,acc +med,high,4,4,med,med,acc +high,high,4,more,med,med,acc +low,low,3,more,small,med,acc +med,low,3,2,small,med,unacc +low,high,4,2,big,med,unacc +vhigh,high,3,4,small,low,unacc +med,vhigh,2,more,small,high,unacc +high,med,5more,4,big,high,acc +vhigh,low,4,more,big,high,acc +med,med,2,more,med,high,acc +med,high,5more,4,med,low,unacc +vhigh,vhigh,2,2,med,med,unacc +med,low,3,2,small,low,unacc +med,low,5more,more,big,med,good +high,vhigh,5more,4,small,low,unacc +low,high,2,more,big,med,acc +low,high,3,more,med,high,vgood +low,med,4,2,small,med,unacc +med,low,3,4,small,med,acc +med,high,4,more,med,med,acc +med,vhigh,3,2,med,low,unacc +low,vhigh,5more,2,big,med,unacc +high,med,4,2,big,low,unacc +med,vhigh,2,more,big,high,acc +vhigh,med,2,2,big,med,unacc +vhigh,vhigh,4,more,big,med,unacc +low,vhigh,3,4,small,low,unacc +med,low,2,2,small,high,unacc +low,med,3,2,small,med,unacc +low,vhigh,4,2,med,low,unacc +low,med,3,4,med,med,acc +vhigh,vhigh,4,2,med,low,unacc +high,med,3,2,med,med,unacc +low,high,2,more,big,low,unacc +high,low,4,4,small,low,unacc +low,med,4,4,med,high,vgood +high,med,4,more,small,low,unacc +high,high,3,2,med,high,unacc +low,low,3,2,big,high,unacc +low,high,2,more,small,med,unacc +high,med,2,more,big,med,acc +high,low,4,2,big,med,unacc +vhigh,low,4,more,small,low,unacc +vhigh,vhigh,3,more,med,med,unacc +high,vhigh,2,more,big,med,unacc +low,low,3,2,med,high,unacc +high,high,5more,2,med,high,unacc +high,med,4,4,big,low,unacc +med,vhigh,4,more,big,med,acc +vhigh,low,5more,2,med,med,unacc +high,vhigh,2,more,big,low,unacc +med,vhigh,5more,more,small,med,unacc +vhigh,vhigh,4,more,big,high,unacc +high,low,3,2,small,med,unacc +vhigh,med,2,2,big,low,unacc +low,low,4,4,med,high,vgood +low,med,3,4,med,high,good +high,vhigh,4,more,med,high,unacc +high,low,5more,2,big,med,unacc +high,med,3,2,big,low,unacc +vhigh,low,3,4,big,high,acc +vhigh,vhigh,3,more,big,low,unacc +high,low,5more,2,big,high,unacc +vhigh,low,3,4,med,low,unacc +vhigh,low,2,4,small,low,unacc +low,high,2,2,big,med,unacc +vhigh,med,5more,more,small,high,acc +low,high,2,2,med,high,unacc +med,med,4,4,med,med,acc +high,med,4,more,med,high,acc +vhigh,high,5more,more,med,med,unacc +low,high,2,4,big,high,vgood +vhigh,low,5more,more,big,high,acc +high,med,5more,2,med,med,unacc +low,vhigh,4,4,med,low,unacc +high,med,5more,more,small,low,unacc +high,high,5more,4,small,high,acc +vhigh,vhigh,5more,2,med,high,unacc +vhigh,med,3,more,small,med,unacc +med,vhigh,2,4,big,high,acc +vhigh,med,5more,2,big,med,unacc +med,med,3,more,big,med,acc +med,low,2,2,med,high,unacc +low,vhigh,3,2,med,med,unacc +vhigh,vhigh,4,more,small,high,unacc +med,med,3,4,small,high,acc +vhigh,med,5more,4,small,low,unacc +low,high,2,4,big,med,acc +low,med,2,4,small,low,unacc +low,vhigh,3,more,small,low,unacc +med,med,4,4,big,low,unacc +med,vhigh,2,4,med,low,unacc +med,med,3,more,med,high,vgood +med,vhigh,3,4,med,high,acc +low,med,2,4,big,high,vgood +high,vhigh,5more,more,big,low,unacc +vhigh,med,3,more,big,med,acc +high,med,3,4,small,low,unacc +vhigh,vhigh,2,2,big,high,unacc +vhigh,vhigh,5more,4,small,med,unacc +high,high,3,2,small,low,unacc +low,low,3,4,small,low,unacc +low,low,4,2,med,med,unacc +vhigh,vhigh,5more,more,big,low,unacc +low,med,3,more,med,high,vgood +low,med,2,4,small,high,good +med,high,4,4,small,med,unacc +high,high,2,2,small,med,unacc +low,vhigh,2,2,med,low,unacc +vhigh,low,5more,4,med,low,unacc +high,med,4,2,small,med,unacc +high,vhigh,2,2,small,low,unacc +med,low,3,more,big,low,unacc +high,high,3,4,small,high,acc +high,high,2,more,small,low,unacc +low,low,4,4,small,low,unacc +low,med,3,more,med,med,good +vhigh,med,2,2,med,med,unacc +vhigh,med,2,more,med,low,unacc +low,low,3,more,big,med,good +vhigh,med,4,2,big,low,unacc +vhigh,high,5more,more,big,low,unacc +high,high,4,more,small,high,acc +med,med,4,2,small,high,unacc +vhigh,vhigh,2,4,big,high,unacc +low,med,3,more,big,low,unacc +med,low,4,4,small,high,good +high,high,4,more,big,high,acc +med,med,3,2,big,low,unacc +low,high,5more,2,small,high,unacc +low,med,3,2,big,high,unacc +high,high,3,4,big,high,acc +high,low,2,2,small,med,unacc +high,vhigh,4,4,big,low,unacc +low,vhigh,4,more,med,med,acc +high,med,4,4,med,med,acc +vhigh,med,4,2,small,high,unacc +low,vhigh,3,more,big,high,acc +med,high,4,4,small,high,acc +high,vhigh,2,2,med,high,unacc +med,med,2,more,med,med,acc +vhigh,high,3,4,big,med,unacc +vhigh,high,5more,4,big,med,unacc +med,med,4,more,small,high,acc +med,low,5more,2,med,med,unacc +med,vhigh,4,more,med,low,unacc +vhigh,vhigh,2,more,small,high,unacc +vhigh,high,3,4,med,high,unacc +low,vhigh,4,2,med,med,unacc +med,vhigh,4,more,small,med,unacc +high,high,4,more,med,low,unacc +low,vhigh,2,more,big,high,acc +vhigh,med,3,more,big,high,acc +low,med,5more,2,big,low,unacc +low,vhigh,5more,more,med,med,acc +high,vhigh,4,2,med,low,unacc +high,high,5more,more,med,high,acc +vhigh,low,5more,4,med,high,acc +high,vhigh,5more,more,med,med,unacc +high,med,2,2,small,low,unacc +med,high,5more,more,small,low,unacc +med,med,4,more,big,low,unacc +low,med,4,more,small,med,acc +low,vhigh,3,more,big,low,unacc +high,low,5more,more,med,med,acc +vhigh,high,4,2,big,low,unacc +med,low,5more,2,small,low,unacc +vhigh,vhigh,5more,2,small,med,unacc +med,low,3,2,med,low,unacc +med,med,5more,more,big,med,acc +high,vhigh,4,more,small,med,unacc +med,med,5more,2,big,low,unacc +vhigh,med,3,2,med,low,unacc +high,low,4,4,big,high,acc +high,vhigh,3,more,med,high,unacc +vhigh,high,3,2,med,high,unacc +med,low,3,2,med,med,unacc +vhigh,high,3,2,big,low,unacc +vhigh,low,4,2,med,low,unacc +vhigh,high,4,2,med,low,unacc +med,high,4,4,big,low,unacc +vhigh,high,2,4,small,low,unacc +vhigh,med,5more,more,big,high,acc +med,med,2,2,big,high,unacc +med,high,4,2,med,med,unacc +med,high,2,2,med,high,unacc +med,low,2,4,small,low,unacc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..403e4648dc3b3c177525a76273864fc4069db6b4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260321_061840/staged/public/val.csv @@ -0,0 +1,173 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,5more,more,med,med,unacc +vhigh,high,2,4,small,med,unacc +high,high,5more,more,med,med,acc +low,high,3,2,med,med,unacc +med,med,3,2,med,med,unacc +med,med,5more,more,big,high,vgood +vhigh,high,2,4,med,low,unacc +high,vhigh,2,4,med,high,unacc +high,high,4,4,med,high,acc +vhigh,low,4,4,small,high,acc +vhigh,med,5more,more,med,low,unacc +med,high,2,more,big,med,acc +low,vhigh,4,2,big,low,unacc +med,med,4,2,med,high,unacc +low,med,2,2,small,low,unacc +high,high,3,more,small,low,unacc +med,vhigh,4,4,med,high,acc +high,high,2,2,med,med,unacc +high,low,3,4,big,high,acc +vhigh,vhigh,2,2,med,high,unacc +high,low,2,more,med,low,unacc +vhigh,low,2,4,med,high,acc +low,high,4,4,small,high,acc +low,med,5more,4,big,med,good +high,vhigh,2,2,big,low,unacc +med,high,2,4,med,high,acc +low,high,4,2,small,med,unacc +high,low,4,more,med,high,acc +vhigh,low,2,4,big,high,acc +high,vhigh,3,more,big,high,unacc +low,low,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,med,unacc +med,med,3,2,small,med,unacc +low,vhigh,3,4,med,med,unacc +vhigh,vhigh,5more,more,med,high,unacc +vhigh,high,5more,4,med,low,unacc +med,med,3,more,med,low,unacc +med,vhigh,3,4,big,high,acc +vhigh,high,3,more,small,high,unacc +high,vhigh,4,more,big,high,unacc +med,vhigh,5more,2,med,low,unacc +low,high,5more,2,big,high,unacc +vhigh,low,3,more,big,med,acc +low,med,4,2,med,med,unacc +vhigh,med,4,more,small,low,unacc +med,vhigh,4,2,small,med,unacc +low,low,3,more,small,high,good +low,high,3,more,small,low,unacc +vhigh,low,4,4,big,low,unacc +high,vhigh,4,more,big,low,unacc +vhigh,med,2,2,big,high,unacc +high,med,3,more,small,high,acc +high,low,4,4,big,low,unacc +vhigh,high,2,4,big,high,unacc +vhigh,high,5more,4,med,med,unacc +low,vhigh,3,2,small,med,unacc +low,vhigh,3,4,big,med,acc +low,vhigh,5more,2,med,low,unacc +vhigh,high,2,2,med,low,unacc +med,vhigh,5more,4,med,low,unacc +high,low,5more,2,med,high,unacc +med,vhigh,2,2,med,med,unacc +high,med,4,more,big,low,unacc +med,vhigh,2,more,small,med,unacc +low,vhigh,4,2,small,low,unacc +low,low,4,2,small,high,unacc +vhigh,high,5more,2,med,high,unacc +vhigh,low,4,4,med,low,unacc +high,low,4,more,big,low,unacc +low,high,3,more,med,med,acc +high,vhigh,4,4,med,low,unacc +med,vhigh,5more,more,big,low,unacc +med,med,5more,more,small,high,acc +med,med,5more,4,small,low,unacc +vhigh,med,4,2,small,med,unacc +low,high,5more,4,med,low,unacc +high,vhigh,2,2,big,med,unacc +med,high,2,more,med,high,acc +low,vhigh,4,more,med,low,unacc +high,high,3,2,med,med,unacc +high,vhigh,4,2,small,high,unacc +med,high,5more,2,small,low,unacc +low,high,4,4,med,high,vgood +high,med,3,2,small,high,unacc +vhigh,vhigh,4,4,small,high,unacc +vhigh,high,3,2,med,med,unacc +high,vhigh,3,4,small,med,unacc +vhigh,high,2,4,med,med,unacc +med,low,5more,more,big,low,unacc +low,high,3,more,small,med,acc +vhigh,high,3,4,small,high,unacc +vhigh,vhigh,2,4,big,low,unacc +low,low,4,more,med,med,good +med,low,2,more,small,low,unacc +high,vhigh,3,4,med,med,unacc +med,med,4,2,small,med,unacc +med,low,2,4,big,high,vgood +vhigh,vhigh,3,4,big,high,unacc +high,med,3,more,small,low,unacc +vhigh,high,2,more,big,low,unacc +high,vhigh,3,2,small,high,unacc +high,vhigh,4,more,med,med,unacc +vhigh,med,3,2,med,high,unacc +med,vhigh,4,2,big,med,unacc +med,high,5more,2,big,med,unacc +med,vhigh,3,2,big,med,unacc +high,low,2,4,small,low,unacc +low,low,4,more,big,high,vgood +low,vhigh,4,more,big,high,acc +low,low,4,4,big,low,unacc +high,high,5more,more,small,low,unacc +low,high,4,2,med,low,unacc +vhigh,low,5more,2,big,med,unacc +low,high,2,4,small,low,unacc +low,low,3,more,med,med,good +low,med,2,4,big,med,good +high,vhigh,2,2,small,high,unacc +med,vhigh,2,2,med,low,unacc +med,low,4,2,small,med,unacc +med,med,2,2,small,med,unacc +low,med,5more,2,small,high,unacc +vhigh,low,2,4,big,low,unacc +med,med,3,more,small,med,acc +med,high,2,2,small,high,unacc +low,vhigh,4,2,small,high,unacc +vhigh,med,3,more,small,high,acc +vhigh,med,3,4,big,low,unacc +med,med,2,4,small,high,acc +vhigh,high,3,2,big,med,unacc +med,high,2,more,big,low,unacc +low,high,5more,4,med,high,vgood +vhigh,high,4,4,med,high,unacc +low,low,3,4,big,high,vgood +low,med,5more,4,med,low,unacc +high,vhigh,4,2,big,high,unacc +vhigh,high,2,4,small,high,unacc +high,vhigh,4,2,med,high,unacc +high,high,5more,4,small,low,unacc +high,med,5more,4,big,low,unacc +vhigh,med,2,4,med,high,acc +vhigh,vhigh,3,4,med,med,unacc +med,high,3,2,small,high,unacc +high,med,2,4,big,med,acc +med,low,3,4,med,low,unacc +vhigh,vhigh,2,2,small,high,unacc +med,med,2,2,big,med,unacc +med,med,2,more,big,med,acc +vhigh,low,2,2,big,med,unacc +high,low,2,4,small,med,unacc +low,med,5more,more,med,med,good +low,low,5more,2,small,med,unacc +low,low,2,4,small,high,good +low,med,3,2,small,low,unacc +low,vhigh,2,4,med,med,unacc +high,high,4,more,small,low,unacc +med,low,5more,4,med,low,unacc +vhigh,med,2,2,small,high,unacc +med,high,4,4,med,high,acc +vhigh,low,3,4,big,low,unacc +med,high,4,2,small,low,unacc +high,high,2,2,small,low,unacc +low,high,4,4,big,med,acc +low,high,4,more,med,low,unacc +vhigh,vhigh,2,2,big,med,unacc +med,vhigh,4,4,med,low,unacc +vhigh,low,2,2,small,low,unacc +med,vhigh,3,2,small,low,unacc +high,high,4,2,big,high,unacc +low,low,5more,more,big,med,good +low,low,4,4,small,high,good +low,vhigh,2,4,big,high,acc +low,low,2,4,big,med,good diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/_ctgan_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..2e31ca601e4a0819a118a6111bfcc9fe5ff1ffea --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/_ctgan_generate.py @@ -0,0 +1,18 @@ +import sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_rdt_inverse_fix import apply_ctgan_inverse_fix +apply_ctgan_inverse_fix() +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN +model = CTGAN.load("/work/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/models_1epochs/ctgan_1epochs.pt") +total = 1382 +chunk = min(50000, total) if total > 50000 else total +parts = [] +left = total +while left > 0: + take = min(chunk, left) + parts.append(model.sample(take)) + left -= take +sampled = pd.concat(parts, ignore_index=True) if len(parts) > 1 else parts[0] +sampled.to_csv("/work/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/ctgan-c2-1382-20260419_190738.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/ctgan-c2-1382-20260419_190738.csv") \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/ctgan_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/gen_20260419_190738.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/gen_20260419_190738.log new file mode 100644 index 0000000000000000000000000000000000000000..94a392a2dff3ff57a65c6cb72ace24edaeb298e0 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/gen_20260419_190738.log @@ -0,0 +1 @@ +[CTGAN] Generated 1382 rows in 1 chunks -> /work/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/ctgan-c2-1382-20260419_190738.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/models_1epochs/train_20260414_051434.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/models_1epochs/train_20260414_051434.log new file mode 100644 index 0000000000000000000000000000000000000000..b423329162297bc8ad1811560719bf25eb5c7a2c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/models_1epochs/train_20260414_051434.log @@ -0,0 +1,2 @@ +/opt/conda/lib/python3.11/site-packages/torch/autograd/graph.py:841: UserWarning: Attempting to run cuBLAS, but there was no current CUDA context! Attempting to set the primary context... (Triggered internally at /pytorch/aten/src/ATen/cuda/CublasHandlePool.cpp:270.) + return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6e6ccf17730614a3408171bbce1d1ab938763d2b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1bd9f59cd655a3ead3783aad7460bdfd7d67857f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260414_051434", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/ctgan-c2-1382-20260419_190738.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/ctgan/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..1047a862ab43b83ef88ff5eac383395e6aa078d3 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/ctgan/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/ctgan/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/ctgan/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..68d60547781087a7ad8aa2507cbcc99b34b31664 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b3cf25081f629b35185af44e432085a72a9bb40b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/test.csv @@ -0,0 +1,175 @@ +buying,maint,doors,persons,lug_boot,safety,class +low,med,2,more,big,high,vgood +med,med,2,more,small,high,unacc +low,vhigh,5more,more,small,high,acc +vhigh,med,2,more,small,med,unacc +low,high,4,more,small,med,acc +low,med,4,2,med,high,unacc +vhigh,vhigh,2,more,big,low,unacc +med,med,4,2,small,low,unacc +high,vhigh,5more,2,small,high,unacc +med,med,2,2,med,med,unacc +med,vhigh,5more,4,med,high,acc +med,low,3,2,big,low,unacc +high,low,2,more,big,high,acc +high,low,3,2,big,low,unacc +vhigh,high,2,more,med,high,unacc +med,low,3,2,big,med,unacc +low,low,5more,4,small,high,good +low,vhigh,5more,4,big,high,acc +vhigh,low,2,2,med,med,unacc +med,low,5more,4,big,high,vgood +vhigh,med,5more,4,big,high,acc +vhigh,med,2,4,small,low,unacc +vhigh,vhigh,5more,4,big,med,unacc +low,med,3,4,small,low,unacc +vhigh,high,4,more,big,med,unacc +med,high,3,4,med,low,unacc +med,high,4,more,small,low,unacc +vhigh,med,4,4,med,high,acc +low,med,5more,more,big,med,good +high,med,5more,4,med,med,acc +high,low,4,2,big,high,unacc +med,low,2,2,big,high,unacc +med,vhigh,2,4,med,high,acc +med,low,2,4,small,med,acc +low,med,2,more,small,low,unacc +high,vhigh,5more,more,big,high,unacc +med,med,2,more,big,low,unacc +low,low,5more,2,small,high,unacc +low,med,2,4,med,high,good +high,vhigh,4,more,small,high,unacc +low,low,5more,more,small,med,acc +high,high,2,2,med,low,unacc +vhigh,med,4,more,med,high,acc +med,vhigh,4,more,med,med,acc +low,vhigh,2,more,med,low,unacc +high,low,4,2,small,med,unacc +med,high,3,more,big,low,unacc +low,vhigh,3,more,small,high,acc +high,vhigh,2,2,med,med,unacc +high,high,5more,more,big,low,unacc +low,high,4,4,med,med,acc +med,med,5more,2,small,med,unacc +high,vhigh,2,2,small,med,unacc +vhigh,high,3,2,small,med,unacc +high,high,2,4,small,low,unacc +high,low,4,4,med,low,unacc +high,high,5more,more,big,high,acc +low,low,5more,4,small,med,acc +high,vhigh,3,4,small,high,unacc +vhigh,high,2,2,big,med,unacc +low,med,4,more,big,low,unacc +low,med,4,2,big,high,unacc +high,med,2,4,big,high,acc +low,vhigh,5more,more,big,high,acc +high,vhigh,2,more,small,low,unacc +med,med,4,2,big,med,unacc +low,high,2,2,big,low,unacc +low,vhigh,2,4,big,low,unacc +high,high,2,4,med,med,unacc +high,low,2,more,med,med,unacc +med,vhigh,5more,2,small,high,unacc +vhigh,low,2,4,small,high,acc +low,low,5more,more,med,low,unacc +low,high,5more,4,small,low,unacc +med,med,2,4,med,high,acc +vhigh,low,3,2,small,low,unacc +low,vhigh,2,2,med,high,unacc +med,low,4,2,big,low,unacc +vhigh,high,3,4,med,low,unacc +low,vhigh,3,2,med,high,unacc +low,vhigh,5more,more,med,high,acc +low,high,3,2,big,med,unacc +high,high,2,2,big,med,unacc +low,vhigh,4,more,med,high,acc +vhigh,low,5more,more,big,med,acc +high,med,4,more,big,high,acc +high,low,2,2,med,low,unacc +vhigh,low,2,4,small,med,unacc +high,med,5more,more,small,med,unacc +low,vhigh,2,2,big,low,unacc +med,vhigh,4,4,small,high,acc +low,low,4,4,small,med,acc +low,low,4,2,med,low,unacc +vhigh,high,5more,more,small,low,unacc +low,low,5more,2,big,low,unacc +vhigh,high,4,2,small,high,unacc +high,high,3,more,big,high,acc +low,med,4,more,small,low,unacc +high,vhigh,3,2,big,high,unacc +low,vhigh,4,2,med,high,unacc +vhigh,vhigh,5more,4,med,med,unacc +vhigh,high,3,2,big,high,unacc +low,high,3,4,med,low,unacc +vhigh,low,4,4,big,med,acc +med,med,5more,more,med,med,acc +high,med,5more,4,med,low,unacc +med,low,4,more,big,med,good +med,low,5more,more,small,med,acc +high,high,4,2,big,med,unacc +med,med,3,more,big,low,unacc +vhigh,high,4,2,small,low,unacc +high,low,2,more,small,high,unacc +vhigh,med,3,4,med,med,unacc +med,med,2,more,small,med,unacc +med,vhigh,4,more,med,high,acc +low,high,5more,4,small,med,acc +vhigh,vhigh,5more,2,big,high,unacc +low,low,3,2,big,low,unacc +high,high,2,2,small,high,unacc +med,low,3,more,med,med,good +high,med,4,2,med,low,unacc +high,med,5more,2,big,med,unacc +vhigh,high,5more,4,small,med,unacc +high,low,2,more,med,high,acc +vhigh,high,5more,2,small,med,unacc +low,low,5more,4,big,high,vgood +high,med,3,4,big,low,unacc +low,med,3,more,big,med,good +high,vhigh,2,4,small,low,unacc +vhigh,med,5more,more,med,med,acc +low,low,4,more,small,med,acc +high,med,3,more,med,med,acc +med,vhigh,2,2,small,high,unacc +low,high,2,more,big,high,vgood +vhigh,low,2,2,med,low,unacc +low,low,3,2,med,med,unacc +low,med,3,4,big,med,good +vhigh,vhigh,2,4,med,high,unacc +low,low,3,4,small,high,good +high,high,3,2,med,low,unacc +med,low,2,more,small,med,unacc +med,vhigh,4,2,small,high,unacc +high,vhigh,2,more,small,high,unacc +high,low,5more,more,med,high,acc +low,low,5more,4,med,high,vgood +low,high,3,2,big,low,unacc +low,vhigh,3,2,big,high,unacc +low,high,4,4,small,low,unacc +vhigh,low,5more,2,med,low,unacc +med,med,4,4,big,med,acc +vhigh,vhigh,4,2,small,med,unacc +med,low,3,more,small,low,unacc +med,high,4,4,small,low,unacc +high,vhigh,3,more,small,low,unacc +high,vhigh,2,4,big,med,unacc +vhigh,high,5more,2,med,low,unacc +vhigh,vhigh,4,2,big,high,unacc +vhigh,vhigh,4,4,med,low,unacc +med,vhigh,2,2,small,med,unacc +med,low,2,more,med,med,acc +vhigh,high,4,4,big,high,unacc +med,med,3,4,small,med,acc +low,med,2,2,med,high,unacc +low,vhigh,5more,4,small,low,unacc +vhigh,high,5more,more,med,low,unacc +low,high,5more,more,big,low,unacc +vhigh,med,4,4,big,med,acc +high,vhigh,2,more,big,high,unacc +high,vhigh,4,4,big,med,unacc +high,high,2,more,big,low,unacc +low,med,2,2,big,med,unacc +vhigh,vhigh,3,more,big,med,unacc +vhigh,med,2,4,med,med,unacc +low,vhigh,2,4,med,high,acc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a7dd506a8ec04e784f7aa4b9fe95bca40b4e9722 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/train.csv @@ -0,0 +1,1383 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,2,2,small,low,unacc +med,low,5more,4,small,high,good +med,med,3,2,small,low,unacc +med,med,4,4,small,med,acc +high,low,2,4,big,med,acc +med,vhigh,5more,2,small,low,unacc +high,med,2,more,small,low,unacc +low,med,5more,more,small,high,good +med,high,5more,4,small,high,acc +med,vhigh,3,2,med,med,unacc +vhigh,low,3,more,big,high,acc +vhigh,high,3,2,small,high,unacc +low,low,4,more,small,high,good +vhigh,low,4,more,small,med,unacc +low,high,2,4,med,med,acc +low,low,2,4,big,high,vgood +low,med,4,more,med,med,good +high,med,5more,2,big,high,unacc +med,vhigh,2,4,big,low,unacc +vhigh,med,4,more,med,low,unacc +low,low,2,4,small,low,unacc +low,high,4,4,big,high,vgood +low,high,3,2,med,high,unacc +vhigh,vhigh,5more,more,small,med,unacc +low,med,4,4,med,med,good +vhigh,low,3,4,small,low,unacc +vhigh,vhigh,4,2,big,med,unacc +high,vhigh,4,2,small,med,unacc +vhigh,low,4,more,med,med,acc +med,med,2,4,small,med,acc +low,high,5more,4,small,high,acc +vhigh,high,2,more,small,low,unacc +med,high,5more,more,big,med,acc +vhigh,med,3,more,med,low,unacc +low,low,4,2,small,low,unacc +med,high,2,2,big,high,unacc +low,med,3,2,med,high,unacc +low,vhigh,2,4,big,med,acc +low,med,4,2,small,high,unacc +med,vhigh,4,2,big,high,unacc +med,high,2,more,small,med,unacc +med,low,3,2,med,high,unacc +med,high,2,more,small,low,unacc +vhigh,med,3,4,big,high,acc +low,high,2,4,med,low,unacc +low,low,2,more,med,high,good +vhigh,med,5more,4,small,high,acc +med,low,4,more,small,med,acc +vhigh,low,4,4,small,med,unacc +high,med,2,2,small,med,unacc +low,vhigh,2,more,big,med,acc +med,vhigh,4,4,med,med,acc +vhigh,high,2,more,big,high,unacc +vhigh,vhigh,5more,more,small,low,unacc +high,high,2,more,med,low,unacc +low,vhigh,5more,more,small,med,unacc +med,high,2,2,med,low,unacc +vhigh,low,3,4,small,high,acc +low,low,3,4,big,low,unacc +low,low,4,2,big,low,unacc +vhigh,vhigh,2,more,small,med,unacc +vhigh,vhigh,5more,4,small,high,unacc +med,low,2,2,med,med,unacc +vhigh,med,4,more,big,low,unacc +low,low,5more,more,big,low,unacc +med,high,5more,2,small,med,unacc +high,med,5more,2,small,med,unacc +high,med,3,2,small,low,unacc +low,low,4,2,big,high,unacc +med,med,5more,4,med,high,vgood +low,vhigh,4,4,small,high,acc +med,high,3,2,med,high,unacc +vhigh,high,5more,4,small,high,unacc +high,vhigh,5more,2,med,high,unacc +vhigh,vhigh,3,more,small,med,unacc +high,med,5more,more,med,med,acc +vhigh,low,5more,more,small,low,unacc +vhigh,med,2,more,small,high,unacc +med,vhigh,5more,more,med,high,acc +med,low,3,more,med,high,vgood +high,high,4,2,med,med,unacc +high,med,5more,2,med,high,unacc +vhigh,high,3,2,med,low,unacc +med,med,5more,2,med,med,unacc +low,high,2,more,med,low,unacc +low,vhigh,2,2,small,low,unacc +med,med,5more,more,med,low,unacc +med,high,2,4,med,low,unacc +high,high,4,more,big,low,unacc +high,low,4,4,big,med,acc +med,med,4,more,big,med,acc +low,high,4,4,small,med,acc +vhigh,med,2,more,med,high,acc +med,med,5more,more,small,low,unacc +high,low,3,more,med,high,acc +high,high,4,2,med,low,unacc +low,low,2,more,med,low,unacc +vhigh,vhigh,3,2,small,high,unacc +vhigh,vhigh,2,2,big,low,unacc +med,med,3,more,big,high,vgood +med,low,5more,2,med,low,unacc +low,med,2,4,med,med,acc +high,med,5more,more,big,high,acc +med,low,5more,more,med,med,good +med,high,3,2,med,med,unacc +med,high,5more,more,big,low,unacc +vhigh,med,3,4,small,high,acc +low,low,3,2,small,high,unacc +high,med,3,more,big,low,unacc +med,vhigh,3,4,med,med,unacc +high,high,5more,more,small,med,unacc +med,low,4,2,med,low,unacc +vhigh,high,2,more,small,med,unacc +low,med,2,2,med,low,unacc +vhigh,low,2,more,small,med,unacc +vhigh,vhigh,4,2,small,low,unacc +med,low,4,more,med,low,unacc +med,high,3,4,small,med,unacc +med,vhigh,2,more,big,low,unacc +vhigh,high,4,4,big,low,unacc +med,vhigh,4,2,small,low,unacc +vhigh,med,5more,2,small,med,unacc +vhigh,vhigh,3,2,big,high,unacc +med,high,3,more,small,high,acc +med,vhigh,3,more,small,low,unacc +low,vhigh,3,2,small,low,unacc +vhigh,high,2,more,big,med,unacc +low,low,5more,2,small,low,unacc +low,med,2,2,big,high,unacc +med,low,5more,more,med,low,unacc +high,high,5more,2,big,med,unacc +high,med,5more,4,small,high,acc +low,vhigh,3,more,big,med,acc +low,med,5more,2,big,high,unacc +med,med,3,4,big,high,vgood +low,high,3,4,small,high,acc +high,low,3,more,med,low,unacc +high,low,5more,2,small,high,unacc +med,low,5more,more,med,high,vgood +low,med,4,4,small,med,acc +low,med,3,4,small,high,good +med,med,5more,2,small,high,unacc +low,vhigh,3,4,med,high,acc +low,med,5more,2,med,med,unacc +low,low,5more,4,med,med,good +vhigh,high,5more,more,small,med,unacc +vhigh,med,2,2,med,high,unacc +vhigh,high,3,4,small,med,unacc +high,high,2,4,med,high,acc +vhigh,med,3,2,small,low,unacc +high,low,3,2,big,med,unacc +vhigh,low,4,more,big,low,unacc +low,high,3,2,small,med,unacc +vhigh,high,4,more,small,high,unacc +low,high,2,4,small,med,acc +med,low,3,more,small,high,good +high,low,4,4,med,high,acc +vhigh,vhigh,4,4,big,low,unacc +med,low,4,4,big,med,good +low,med,3,2,big,low,unacc +low,low,4,2,small,med,unacc +med,low,5more,2,small,high,unacc +low,high,4,more,small,low,unacc +high,high,3,more,big,med,acc +med,high,5more,more,med,low,unacc +vhigh,high,4,4,small,high,unacc +med,low,3,more,small,med,acc +med,low,3,2,big,high,unacc +vhigh,low,3,more,med,low,unacc +med,med,4,more,med,low,unacc +med,vhigh,2,2,med,high,unacc +high,med,5more,2,big,low,unacc +vhigh,vhigh,3,2,small,med,unacc +high,low,3,more,small,low,unacc +med,high,3,2,small,low,unacc +low,high,5more,4,big,high,vgood +med,low,4,more,med,high,vgood +med,high,3,more,small,low,unacc +vhigh,med,4,4,med,low,unacc +low,high,2,4,med,high,acc +vhigh,low,4,2,small,med,unacc +vhigh,low,3,more,small,low,unacc +high,high,3,2,big,med,unacc +med,low,4,4,small,med,acc +med,vhigh,3,more,small,med,unacc +med,high,2,4,big,med,acc +low,vhigh,3,4,med,low,unacc +med,vhigh,5more,more,med,med,acc +vhigh,high,5more,more,big,med,unacc +high,med,2,more,big,high,acc +high,low,4,more,small,high,acc +low,vhigh,4,2,big,high,unacc +low,high,4,more,small,high,acc +high,high,3,more,small,high,acc +vhigh,high,5more,2,big,low,unacc +high,med,3,4,small,high,acc +low,high,2,4,small,high,acc +high,med,3,more,med,low,unacc +low,low,5more,2,med,med,unacc +vhigh,low,3,2,big,med,unacc +low,high,4,2,small,high,unacc +high,high,3,4,small,low,unacc +vhigh,low,4,2,big,high,unacc +med,vhigh,5more,4,big,med,acc +low,high,3,more,med,low,unacc +low,low,3,2,small,low,unacc +low,low,2,more,small,med,unacc +vhigh,low,3,4,med,high,acc +high,low,3,2,med,high,unacc +med,high,5more,2,small,high,unacc +low,med,2,2,small,med,unacc +med,high,4,more,small,high,acc +high,high,5more,4,big,med,acc +low,med,5more,more,small,low,unacc +low,high,2,2,med,low,unacc +low,low,2,2,med,low,unacc +vhigh,high,2,2,small,high,unacc +high,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,big,med,unacc +low,high,3,more,big,low,unacc +high,vhigh,3,2,med,high,unacc +vhigh,low,5more,more,big,low,unacc +high,low,4,2,small,low,unacc +vhigh,high,5more,more,med,high,unacc +vhigh,vhigh,5more,2,big,low,unacc +low,high,5more,more,small,med,acc +high,med,4,more,big,med,acc +high,high,2,more,med,med,unacc +high,high,5more,2,big,high,unacc +med,vhigh,4,2,big,low,unacc +low,low,4,more,med,high,vgood +high,med,2,4,med,med,unacc +high,low,5more,4,small,high,acc +high,vhigh,4,4,med,med,unacc +low,med,4,4,small,low,unacc +vhigh,high,4,2,med,high,unacc +med,vhigh,2,more,med,high,acc +vhigh,med,3,more,med,high,acc +low,vhigh,2,more,small,low,unacc +high,vhigh,5more,4,big,med,unacc +med,med,3,4,small,low,unacc +high,high,5more,more,med,low,unacc +med,med,2,2,small,low,unacc +high,low,5more,more,small,med,unacc +low,vhigh,2,4,med,low,unacc +high,high,5more,4,med,high,acc +high,med,2,more,big,low,unacc +vhigh,med,4,more,small,med,unacc +med,low,2,more,big,low,unacc +med,med,4,2,med,med,unacc +high,low,2,more,small,med,unacc +vhigh,high,4,more,med,low,unacc +low,vhigh,5more,2,med,med,unacc +high,vhigh,5more,more,med,low,unacc +med,high,3,2,big,low,unacc +vhigh,high,3,more,big,med,unacc +high,vhigh,3,more,big,low,unacc +med,med,3,4,med,high,acc +low,low,4,4,med,low,unacc +vhigh,med,5more,more,big,low,unacc +high,med,3,2,big,high,unacc +high,med,4,2,small,low,unacc +high,high,3,4,med,low,unacc +high,high,2,more,small,high,unacc +low,low,2,2,med,med,unacc +med,vhigh,2,4,small,high,acc +med,med,4,2,big,high,unacc +vhigh,high,5more,4,big,high,unacc +low,vhigh,4,2,small,med,unacc +med,vhigh,4,more,small,low,unacc +med,vhigh,3,more,big,med,acc +high,med,4,2,big,high,unacc +high,low,3,2,big,high,unacc +vhigh,med,3,more,big,low,unacc +vhigh,vhigh,2,more,med,high,unacc +low,high,2,more,small,high,unacc +low,high,2,more,small,low,unacc +high,low,3,4,med,low,unacc +med,high,3,4,big,low,unacc +low,high,5more,more,med,med,acc +low,low,2,2,med,high,unacc +med,low,5more,4,med,high,vgood +vhigh,med,3,2,small,med,unacc +vhigh,low,3,more,med,high,acc +high,med,2,4,small,high,acc +vhigh,med,4,2,small,low,unacc +vhigh,med,2,2,small,low,unacc +low,high,3,4,med,high,acc +high,med,4,4,small,med,unacc +high,vhigh,3,4,big,med,unacc +low,low,5more,more,med,high,vgood +vhigh,vhigh,2,4,small,low,unacc +med,med,2,more,big,high,vgood +med,low,3,more,big,high,vgood +med,high,3,more,med,high,acc +high,vhigh,3,more,small,med,unacc +vhigh,low,5more,more,med,high,acc +low,low,4,4,big,high,vgood +med,low,3,4,small,high,good +high,med,5more,2,small,high,unacc +low,vhigh,2,4,small,high,acc +high,vhigh,3,more,small,high,unacc +med,high,2,more,med,med,unacc +vhigh,vhigh,4,more,med,low,unacc +med,high,4,4,med,low,unacc +med,vhigh,5more,more,small,low,unacc +high,vhigh,5more,2,small,med,unacc +vhigh,high,4,2,big,med,unacc +vhigh,low,5more,4,small,high,acc +low,med,5more,2,big,med,unacc +med,high,3,4,big,med,acc +med,high,4,more,small,med,unacc +high,low,5more,more,small,high,acc +vhigh,vhigh,3,4,small,low,unacc +med,high,5more,more,small,med,unacc +high,high,5more,2,small,med,unacc +low,high,4,2,big,high,unacc +low,med,5more,4,big,high,vgood +med,low,2,4,med,med,acc +low,vhigh,3,4,big,high,acc +med,vhigh,3,more,big,low,unacc +med,vhigh,5more,2,big,low,unacc +med,high,2,2,med,med,unacc +vhigh,low,4,more,med,high,acc +vhigh,low,3,2,med,med,unacc +vhigh,vhigh,4,4,small,low,unacc +med,vhigh,3,2,big,high,unacc +low,high,5more,more,big,med,acc +med,med,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,high,unacc +high,vhigh,4,2,big,low,unacc +high,high,2,2,big,high,unacc +low,med,4,2,small,low,unacc +low,low,3,4,small,med,acc +high,med,3,more,med,high,acc +low,high,3,2,small,high,unacc +vhigh,low,5more,2,small,med,unacc +high,low,4,4,med,med,acc +vhigh,med,2,4,med,low,unacc +vhigh,high,2,2,med,med,unacc +low,vhigh,4,4,big,low,unacc +low,vhigh,2,more,med,high,acc +med,low,2,4,med,low,unacc +med,low,2,more,med,high,good +vhigh,med,5more,more,small,med,unacc +med,high,5more,2,big,low,unacc +med,med,4,more,med,med,acc +med,high,3,more,big,high,acc +med,high,2,2,big,med,unacc +med,low,4,2,med,high,unacc +med,high,4,2,med,low,unacc +vhigh,high,5more,more,big,high,unacc +high,high,5more,2,big,low,unacc +med,high,4,2,small,med,unacc +low,vhigh,4,4,med,high,acc +vhigh,low,4,4,big,high,acc +med,vhigh,5more,more,big,high,acc +vhigh,vhigh,4,4,big,med,unacc +high,med,5more,more,big,low,unacc +high,high,5more,4,med,low,unacc +low,high,4,more,med,med,acc +vhigh,low,3,4,big,med,acc +vhigh,med,3,4,small,med,unacc +high,high,3,4,med,high,acc +med,low,5more,4,big,low,unacc +low,med,3,more,med,low,unacc +low,vhigh,5more,4,big,med,acc +med,high,5more,more,med,med,acc +low,low,4,2,med,high,unacc +low,med,3,2,med,low,unacc +low,high,2,4,big,low,unacc +low,low,5more,2,med,high,unacc +high,vhigh,5more,4,small,med,unacc +med,high,4,4,big,high,acc +vhigh,vhigh,3,2,big,low,unacc +med,high,5more,2,med,med,unacc +vhigh,high,2,2,big,low,unacc +med,med,4,4,med,high,vgood +med,high,3,more,med,low,unacc +low,high,2,more,med,med,acc +low,med,4,2,med,low,unacc +med,vhigh,5more,4,big,low,unacc +vhigh,med,2,more,big,high,acc +low,vhigh,5more,4,small,high,acc +vhigh,low,5more,2,small,low,unacc +high,med,2,4,big,low,unacc +vhigh,high,5more,2,small,high,unacc +med,low,4,2,big,high,unacc +low,med,2,2,med,med,unacc +med,med,2,4,big,high,vgood +low,high,4,2,med,high,unacc +high,med,4,more,med,low,unacc +low,high,3,4,small,med,acc +med,vhigh,4,4,big,med,acc +high,low,4,4,small,high,acc +high,high,2,4,small,med,unacc +low,med,2,more,med,med,acc +med,vhigh,5more,2,med,high,unacc +low,med,5more,4,med,high,vgood +low,high,4,4,med,low,unacc +low,low,2,4,med,high,good +high,vhigh,2,2,med,low,unacc +high,vhigh,4,2,small,low,unacc +med,vhigh,4,more,big,high,acc +med,high,3,4,small,high,acc +vhigh,low,2,more,med,med,unacc +med,med,5more,4,med,med,acc +high,med,2,2,med,med,unacc +vhigh,high,2,2,big,high,unacc +high,high,2,2,med,high,unacc +high,med,5more,more,big,med,acc +vhigh,vhigh,3,4,med,low,unacc +low,vhigh,4,more,small,low,unacc +vhigh,vhigh,4,2,med,high,unacc +low,low,2,2,big,med,unacc +low,low,4,more,small,low,unacc +low,vhigh,2,4,small,med,unacc +med,med,5more,2,med,low,unacc +low,high,3,more,small,high,acc +high,vhigh,5more,4,med,med,unacc +med,low,3,4,med,med,acc +vhigh,vhigh,5more,2,med,med,unacc +low,vhigh,4,2,big,med,unacc +high,med,4,4,small,high,acc +low,low,3,more,small,low,unacc +vhigh,high,4,more,big,high,unacc +med,vhigh,5more,4,big,high,acc +vhigh,low,4,more,big,med,acc +med,low,2,4,med,high,good +med,high,2,4,big,high,acc +vhigh,vhigh,5more,4,small,low,unacc +med,low,5more,more,small,low,unacc +vhigh,low,4,2,med,high,unacc +med,low,2,more,big,high,vgood +low,high,5more,4,big,low,unacc +high,low,5more,2,small,med,unacc +vhigh,vhigh,4,4,med,high,unacc +vhigh,low,3,more,big,low,unacc +low,low,2,more,big,low,unacc +vhigh,med,5more,2,small,low,unacc +med,vhigh,3,2,big,low,unacc +vhigh,med,2,4,small,med,unacc +med,low,2,4,big,low,unacc +high,low,4,more,big,high,acc +vhigh,vhigh,2,more,med,low,unacc +low,med,5more,4,small,high,good +low,low,5more,2,big,med,unacc +vhigh,vhigh,3,more,med,high,unacc +vhigh,med,5more,more,big,med,acc +high,med,4,more,small,high,acc +low,low,2,more,small,low,unacc +low,low,2,2,big,high,unacc +med,vhigh,4,more,small,high,acc +high,high,3,more,med,med,acc +low,vhigh,5more,2,small,high,unacc +high,high,4,2,small,med,unacc +low,vhigh,4,4,big,med,acc +med,vhigh,3,2,small,med,unacc +low,vhigh,5more,4,big,low,unacc +vhigh,vhigh,5more,4,big,high,unacc +low,med,3,4,big,high,vgood +vhigh,high,2,2,med,high,unacc +med,vhigh,5more,more,med,low,unacc +low,low,2,more,med,med,acc +low,med,5more,more,med,high,vgood +high,med,5more,4,big,med,acc +vhigh,low,5more,2,med,high,unacc +vhigh,low,4,more,small,high,acc +high,vhigh,5more,4,small,high,unacc +low,med,5more,more,small,med,acc +high,vhigh,3,2,med,med,unacc +med,med,2,2,med,low,unacc +high,low,3,more,small,high,acc +med,high,4,more,med,high,acc +vhigh,med,5more,4,med,high,acc +high,high,4,4,small,high,acc +vhigh,vhigh,2,more,big,high,unacc +vhigh,low,4,2,med,med,unacc +med,low,5more,4,big,med,good +vhigh,low,3,2,small,med,unacc +high,med,4,4,med,high,acc +low,vhigh,5more,4,med,med,acc +low,vhigh,5more,more,big,low,unacc +med,high,4,4,big,med,acc +med,low,5more,2,small,med,unacc +high,med,3,2,big,med,unacc +high,med,4,4,big,med,acc +med,med,4,4,small,low,unacc +low,high,5more,2,big,low,unacc +vhigh,low,3,2,big,high,unacc +vhigh,high,3,4,big,high,unacc +high,vhigh,5more,2,med,low,unacc +med,low,4,4,big,low,unacc +low,med,5more,2,med,low,unacc +med,high,3,2,med,low,unacc +med,high,2,more,small,high,unacc +high,low,3,more,big,high,acc +med,vhigh,3,more,small,high,acc +low,vhigh,3,4,small,high,acc +low,low,5more,more,small,low,unacc +med,high,4,more,big,low,unacc +med,low,5more,4,med,med,good +low,med,5more,4,med,med,good +vhigh,med,2,more,small,low,unacc +vhigh,high,2,more,med,low,unacc +med,low,4,more,big,low,unacc +med,vhigh,4,4,small,low,unacc +high,vhigh,4,2,big,med,unacc +low,med,4,2,big,low,unacc +vhigh,high,3,more,small,med,unacc +high,low,5more,4,big,med,acc +med,med,2,2,med,high,unacc +high,high,4,2,med,high,unacc +high,med,2,2,big,high,unacc +high,low,4,2,med,low,unacc +low,med,2,2,small,high,unacc +high,high,2,4,small,high,acc +med,med,2,4,big,low,unacc +vhigh,vhigh,2,4,small,med,unacc +med,high,5more,4,big,med,acc +med,high,4,2,big,med,unacc +med,low,2,2,small,low,unacc +high,low,3,4,med,med,unacc +high,low,2,2,med,med,unacc +low,low,2,4,med,low,unacc +low,high,3,2,small,low,unacc +med,med,5more,4,small,high,acc +vhigh,low,4,4,med,high,acc +vhigh,vhigh,5more,2,small,low,unacc +med,high,2,more,big,high,acc +vhigh,high,4,4,med,med,unacc +vhigh,high,4,more,med,high,unacc +med,low,4,4,med,low,unacc +vhigh,med,3,2,big,high,unacc +med,med,4,more,small,low,unacc +high,vhigh,2,4,small,med,unacc +vhigh,low,4,2,big,low,unacc +med,low,4,4,med,med,good +vhigh,med,5more,2,med,med,unacc +vhigh,vhigh,4,2,med,med,unacc +med,high,3,4,big,high,acc +vhigh,vhigh,3,more,med,low,unacc +high,high,5more,more,big,med,acc +vhigh,med,5more,4,small,med,unacc +vhigh,high,4,4,small,low,unacc +high,vhigh,2,more,med,high,unacc +high,high,3,2,big,low,unacc +vhigh,vhigh,5more,more,small,high,unacc +high,vhigh,2,4,med,med,unacc +vhigh,vhigh,5more,4,med,low,unacc +high,low,5more,4,small,med,unacc +med,med,3,more,med,med,acc +vhigh,med,2,more,big,med,acc +med,high,2,4,med,med,unacc +vhigh,vhigh,3,4,small,med,unacc +high,high,2,4,big,low,unacc +med,vhigh,4,4,small,med,unacc +vhigh,low,2,2,small,med,unacc +high,low,3,4,small,med,unacc +high,low,5more,2,med,med,unacc +vhigh,low,2,4,med,med,unacc +low,high,2,more,med,high,acc +low,med,3,more,small,high,good +vhigh,low,2,more,med,high,acc +low,high,5more,2,med,med,unacc +low,high,5more,more,big,high,vgood +high,low,2,4,med,high,acc +med,med,3,2,med,high,unacc +vhigh,low,5more,4,big,low,unacc +vhigh,high,3,4,med,med,unacc +vhigh,vhigh,2,4,big,med,unacc +med,med,5more,4,big,high,vgood +low,med,4,more,med,high,vgood +high,high,3,2,big,high,unacc +high,vhigh,2,more,small,med,unacc +med,med,2,more,small,low,unacc +vhigh,low,2,4,big,med,acc +low,vhigh,2,2,big,med,unacc +med,low,4,more,small,high,good +high,med,3,2,small,med,unacc +med,vhigh,2,more,big,med,acc +high,low,3,more,big,med,acc +low,low,3,more,big,high,vgood +vhigh,low,4,4,med,med,acc +med,vhigh,2,more,med,med,unacc +med,med,3,more,small,low,unacc +vhigh,vhigh,3,more,small,low,unacc +vhigh,low,5more,4,big,med,acc +med,high,3,4,med,med,unacc +low,vhigh,3,more,med,high,acc +low,low,5more,4,big,med,good +vhigh,med,3,2,small,high,unacc +low,high,3,4,big,high,vgood +vhigh,low,2,2,big,low,unacc +med,low,3,more,big,med,good +vhigh,low,4,4,small,low,unacc +med,med,3,2,small,high,unacc +low,high,5more,2,big,med,unacc +low,low,2,2,small,low,unacc +vhigh,low,3,2,med,low,unacc +high,low,5more,more,med,low,unacc +med,high,5more,4,big,high,acc +low,low,5more,more,small,high,good +low,low,3,4,med,low,unacc +low,med,2,4,big,low,unacc +high,high,4,2,small,low,unacc +high,low,5more,more,big,high,acc +low,med,2,more,big,med,good +med,med,2,2,small,high,unacc +high,low,2,4,med,low,unacc +high,med,2,2,med,high,unacc +high,vhigh,5more,2,big,med,unacc +low,high,2,2,small,med,unacc +vhigh,low,5more,more,small,high,acc +med,vhigh,3,more,big,high,acc +vhigh,vhigh,4,more,small,low,unacc +low,vhigh,4,more,small,high,acc +high,vhigh,5more,2,big,high,unacc +low,med,5more,2,med,high,unacc +med,high,2,2,small,low,unacc +low,vhigh,5more,4,small,med,unacc +low,vhigh,3,more,small,med,unacc +high,med,2,4,small,low,unacc +high,vhigh,3,4,small,low,unacc +low,med,4,4,small,high,good +high,vhigh,3,more,big,med,unacc +high,vhigh,4,4,small,low,unacc +vhigh,low,5more,more,med,low,unacc +vhigh,med,4,4,small,med,unacc +med,low,2,more,med,low,unacc +high,low,2,2,big,low,unacc +high,med,2,4,small,med,unacc +vhigh,high,3,more,med,high,unacc +low,high,2,2,small,low,unacc +high,vhigh,3,4,med,high,unacc +low,high,5more,2,small,low,unacc +high,med,5more,4,med,high,acc +med,vhigh,3,2,med,high,unacc +vhigh,low,5more,4,med,med,acc +high,low,4,more,med,low,unacc +med,high,2,2,big,low,unacc +high,high,2,more,big,med,acc +low,low,5more,more,big,high,vgood +vhigh,high,4,2,small,med,unacc +high,low,2,4,big,high,acc +high,high,5more,2,med,low,unacc +med,med,4,4,big,high,vgood +low,vhigh,5more,2,big,high,unacc +high,vhigh,4,4,small,high,unacc +med,high,4,2,small,high,unacc +vhigh,med,4,more,big,med,acc +vhigh,high,3,2,small,low,unacc +med,med,3,2,big,med,unacc +med,low,5more,2,big,med,unacc +vhigh,high,5more,more,small,high,unacc +high,low,4,4,small,med,unacc +low,med,3,4,med,low,unacc +high,med,5more,more,med,low,unacc +low,med,3,more,small,med,acc +med,high,3,more,big,med,acc +med,med,4,more,small,med,acc +med,med,3,4,med,med,acc +vhigh,high,5more,2,med,med,unacc +med,low,5more,2,big,high,unacc +med,med,2,4,med,low,unacc +med,low,2,4,big,med,good +high,high,2,4,big,med,acc +low,med,4,more,big,high,vgood +high,vhigh,5more,4,med,high,unacc +vhigh,low,5more,4,small,low,unacc +low,low,5more,4,big,low,unacc +vhigh,low,2,2,big,high,unacc +med,med,4,4,med,low,unacc +low,vhigh,5more,2,small,low,unacc +med,low,2,more,small,high,unacc +high,vhigh,3,2,big,med,unacc +vhigh,vhigh,3,4,small,high,unacc +med,vhigh,2,4,big,med,acc +high,low,4,2,med,high,unacc +high,med,5more,2,med,low,unacc +low,high,4,more,big,med,acc +vhigh,low,5more,4,big,high,acc +low,med,5more,more,big,low,unacc +low,vhigh,4,more,big,low,unacc +vhigh,high,2,2,small,low,unacc +vhigh,low,2,2,med,high,unacc +vhigh,low,2,more,small,low,unacc +high,low,2,4,small,high,acc +med,med,5more,more,med,high,vgood +high,med,3,more,big,med,acc +high,med,4,4,small,low,unacc +high,low,4,2,med,med,unacc +med,med,3,4,big,low,unacc +med,vhigh,5more,4,small,low,unacc +high,high,4,2,big,low,unacc +vhigh,high,4,more,big,low,unacc +vhigh,med,4,4,big,low,unacc +high,vhigh,2,more,med,low,unacc +high,med,2,more,small,high,unacc +high,vhigh,5more,more,small,med,unacc +high,low,2,2,big,med,unacc +vhigh,high,4,more,small,low,unacc +low,vhigh,3,4,small,med,unacc +low,low,4,more,big,med,good +low,vhigh,2,more,small,med,unacc +med,high,5more,more,small,high,acc +vhigh,vhigh,2,more,med,med,unacc +low,med,3,4,small,med,acc +med,high,3,more,small,med,unacc +high,med,3,4,big,med,acc +low,med,3,2,small,high,unacc +low,low,3,2,big,med,unacc +med,high,3,more,med,med,acc +vhigh,med,3,4,med,high,acc +high,high,4,more,big,med,acc +med,vhigh,5more,2,med,med,unacc +high,vhigh,2,4,small,high,unacc +med,med,2,4,small,low,unacc +high,high,4,more,small,med,unacc +low,vhigh,4,more,big,med,acc +med,med,4,2,big,low,unacc +low,med,5more,2,small,low,unacc +low,low,2,2,small,high,unacc +high,vhigh,5more,2,small,low,unacc +vhigh,med,4,4,small,low,unacc +vhigh,low,5more,2,big,high,unacc +med,low,3,4,big,low,unacc +high,low,3,more,med,med,acc +low,high,5more,2,med,low,unacc +high,vhigh,3,more,med,low,unacc +med,med,2,4,med,med,acc +med,high,5more,more,big,high,acc +low,low,2,more,small,high,unacc +high,low,3,2,med,low,unacc +high,high,4,4,big,med,acc +vhigh,med,5more,more,small,low,unacc +vhigh,high,4,2,big,high,unacc +low,med,2,more,med,low,unacc +med,low,5more,4,small,med,acc +low,high,4,2,big,low,unacc +vhigh,med,4,2,med,low,unacc +med,high,5more,4,med,high,acc +med,high,2,4,small,high,acc +vhigh,med,2,4,big,low,unacc +low,med,2,more,med,high,good +low,vhigh,5more,2,big,low,unacc +med,vhigh,2,more,small,low,unacc +vhigh,high,5more,4,med,high,unacc +med,high,2,4,big,low,unacc +high,low,5more,more,small,low,unacc +high,low,5more,4,big,high,acc +med,med,5more,4,small,med,acc +vhigh,med,2,more,big,low,unacc +high,med,4,2,small,high,unacc +vhigh,vhigh,4,more,small,med,unacc +low,med,4,2,big,med,unacc +med,vhigh,2,4,med,med,unacc +med,high,5more,4,small,low,unacc +high,med,4,more,med,med,acc +vhigh,med,4,more,big,high,acc +vhigh,med,2,more,med,med,unacc +vhigh,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,small,high,unacc +med,med,5more,2,small,low,unacc +high,high,4,4,big,low,unacc +high,med,4,2,med,med,unacc +low,vhigh,2,2,med,med,unacc +low,high,5more,more,med,low,unacc +vhigh,vhigh,2,2,med,low,unacc +high,low,2,more,small,low,unacc +vhigh,vhigh,4,more,med,high,unacc +high,high,2,more,big,high,acc +vhigh,high,4,4,big,med,unacc +low,vhigh,4,4,big,high,acc +vhigh,high,3,more,big,high,unacc +vhigh,vhigh,5more,2,med,low,unacc +med,low,2,4,small,high,good +low,high,3,more,big,med,acc +vhigh,med,2,2,small,med,unacc +high,high,5more,more,small,high,acc +low,vhigh,2,more,small,high,unacc +vhigh,vhigh,5more,more,med,low,unacc +high,low,2,2,small,high,unacc +low,vhigh,3,more,med,low,unacc +low,low,5more,4,small,low,unacc +med,med,4,more,big,high,vgood +high,high,3,4,big,med,acc +low,low,2,4,small,med,acc +high,vhigh,2,2,big,high,unacc +high,high,4,4,small,low,unacc +vhigh,med,5more,2,big,high,unacc +high,vhigh,2,more,med,med,unacc +low,low,4,2,big,med,unacc +low,low,5more,4,med,low,unacc +high,vhigh,5more,more,med,high,unacc +vhigh,med,2,4,big,med,acc +med,low,2,2,big,low,unacc +low,low,4,more,med,low,unacc +high,high,5more,2,small,low,unacc +vhigh,low,5more,more,med,med,acc +high,low,3,2,small,low,unacc +med,low,3,4,big,high,vgood +vhigh,high,2,4,med,high,unacc +vhigh,med,3,4,med,low,unacc +med,vhigh,3,more,med,low,unacc +vhigh,med,5more,4,big,low,unacc +high,high,3,4,small,med,unacc +vhigh,high,3,more,small,low,unacc +vhigh,high,3,more,med,low,unacc +low,low,5more,2,med,low,unacc +low,vhigh,2,4,small,low,unacc +low,med,5more,4,small,med,acc +high,high,3,more,big,low,unacc +vhigh,vhigh,4,more,med,med,unacc +high,vhigh,4,more,small,low,unacc +vhigh,low,5more,2,big,low,unacc +vhigh,vhigh,4,4,med,med,unacc +low,high,5more,2,med,high,unacc +med,med,3,2,big,high,unacc +med,med,3,more,small,high,acc +vhigh,vhigh,3,more,big,high,unacc +vhigh,high,5more,2,small,low,unacc +med,vhigh,4,2,med,high,unacc +low,high,5more,4,big,med,acc +low,med,2,2,big,low,unacc +med,med,3,2,med,low,unacc +vhigh,med,4,more,med,med,acc +med,med,5more,4,big,med,acc +med,high,2,4,small,low,unacc +vhigh,vhigh,5more,more,big,med,unacc +med,vhigh,3,4,small,low,unacc +high,low,2,4,big,low,unacc +high,med,2,2,big,low,unacc +high,low,5more,2,med,low,unacc +low,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,med,low,unacc +med,vhigh,2,more,med,low,unacc +med,high,5more,4,med,med,acc +vhigh,vhigh,3,more,small,high,unacc +vhigh,med,4,4,small,high,acc +vhigh,high,2,more,med,med,unacc +med,low,4,4,small,low,unacc +low,high,3,4,med,med,acc +low,high,4,4,big,low,unacc +vhigh,med,5more,4,med,med,acc +vhigh,high,4,more,med,med,unacc +vhigh,low,3,more,small,med,unacc +vhigh,med,2,4,big,high,acc +med,low,5more,2,big,low,unacc +low,high,3,4,big,med,acc +low,high,5more,2,small,med,unacc +vhigh,med,4,more,small,high,acc +low,vhigh,2,more,big,low,unacc +high,vhigh,5more,more,big,med,unacc +low,low,2,more,big,high,vgood +high,high,4,4,small,med,unacc +low,med,4,4,big,high,vgood +low,high,3,more,big,high,vgood +med,vhigh,5more,4,small,high,acc +med,low,5more,4,small,low,unacc +med,low,4,2,big,med,unacc +vhigh,high,5more,2,big,high,unacc +low,vhigh,2,2,small,med,unacc +high,med,4,2,med,high,unacc +high,low,2,more,big,med,acc +low,med,5more,4,big,low,unacc +high,low,2,2,med,high,unacc +vhigh,high,2,4,big,low,unacc +low,vhigh,3,2,small,high,unacc +vhigh,high,5more,4,small,low,unacc +high,med,5more,4,small,med,unacc +med,high,5more,more,med,high,acc +med,low,2,more,big,med,good +low,high,5more,more,med,high,vgood +low,vhigh,4,4,med,med,acc +med,high,5more,4,small,med,unacc +high,vhigh,3,2,big,low,unacc +med,low,3,4,big,med,good +low,vhigh,5more,more,small,low,unacc +low,low,3,more,big,low,unacc +low,low,5more,more,med,med,good +high,low,2,2,big,high,unacc +low,med,5more,4,small,low,unacc +vhigh,low,3,2,small,high,unacc +low,med,3,more,big,high,vgood +med,low,5more,more,big,high,vgood +med,low,4,more,small,low,unacc +vhigh,low,4,2,small,low,unacc +high,high,4,2,small,high,unacc +high,med,3,2,med,high,unacc +low,med,2,more,small,med,unacc +low,low,3,more,med,low,unacc +high,med,4,2,big,med,unacc +vhigh,low,5more,4,small,med,unacc +vhigh,med,2,4,small,high,acc +med,med,4,more,med,high,vgood +vhigh,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,small,low,unacc +high,low,4,2,small,high,unacc +high,vhigh,3,2,small,low,unacc +high,vhigh,4,4,big,high,unacc +high,med,5more,2,small,low,unacc +high,med,2,4,med,high,acc +low,high,4,2,med,med,unacc +med,high,3,2,big,high,unacc +vhigh,med,3,2,med,med,unacc +med,high,4,more,big,high,acc +high,high,3,2,small,high,unacc +low,low,2,4,med,med,acc +low,vhigh,2,2,big,high,unacc +high,med,5more,4,small,low,unacc +low,high,4,more,big,high,vgood +vhigh,vhigh,5more,2,big,med,unacc +vhigh,high,5more,2,big,med,unacc +high,vhigh,5more,4,big,high,unacc +vhigh,vhigh,2,4,small,high,unacc +med,high,4,more,big,med,acc +vhigh,med,4,4,med,med,acc +med,vhigh,4,2,med,low,unacc +high,med,4,4,big,high,acc +high,high,4,4,big,high,acc +med,vhigh,3,4,small,high,acc +vhigh,med,4,4,big,high,acc +vhigh,low,2,more,big,med,acc +vhigh,med,3,more,med,med,acc +med,low,3,more,med,low,unacc +vhigh,low,3,4,med,med,unacc +low,med,3,4,big,low,unacc +med,med,4,4,small,high,acc +low,med,4,4,med,low,unacc +med,low,4,4,big,high,vgood +med,vhigh,2,2,big,high,unacc +med,low,2,2,big,med,unacc +vhigh,vhigh,3,2,med,low,unacc +vhigh,low,2,more,med,low,unacc +low,vhigh,5more,4,med,high,acc +high,med,3,4,small,med,unacc +high,high,5more,2,med,med,unacc +low,vhigh,3,2,med,low,unacc +high,vhigh,3,4,big,high,unacc +high,low,2,4,med,med,unacc +vhigh,med,3,2,big,med,unacc +high,vhigh,3,2,med,low,unacc +med,vhigh,3,4,med,low,unacc +low,med,5more,2,small,med,unacc +low,low,3,more,med,high,vgood +med,high,3,2,big,med,unacc +vhigh,med,3,4,small,low,unacc +med,vhigh,2,4,small,low,unacc +med,low,5more,more,small,high,good +vhigh,med,4,2,med,high,unacc +med,high,3,4,small,low,unacc +high,med,5more,more,small,high,acc +high,low,5more,4,small,low,unacc +med,high,4,2,med,high,unacc +low,low,3,2,small,med,unacc +high,vhigh,4,4,small,med,unacc +high,low,3,4,small,high,acc +high,high,2,4,med,low,unacc +med,vhigh,4,more,big,low,unacc +high,low,4,more,small,low,unacc +high,high,5more,4,small,med,unacc +vhigh,med,4,2,big,med,unacc +high,med,2,more,small,med,unacc +med,low,3,4,small,low,unacc +high,med,5more,more,med,high,acc +vhigh,high,4,more,small,med,unacc +low,vhigh,5more,4,med,low,unacc +vhigh,high,3,more,med,med,unacc +med,low,4,more,med,med,good +high,vhigh,3,4,med,low,unacc +low,med,4,more,big,med,good +med,vhigh,3,more,med,med,acc +high,med,2,2,med,low,unacc +vhigh,low,3,more,small,high,acc +high,vhigh,2,4,med,low,unacc +vhigh,high,2,2,small,med,unacc +low,vhigh,3,4,big,low,unacc +high,low,5more,2,big,low,unacc +med,med,5more,4,big,low,unacc +med,vhigh,2,2,big,low,unacc +med,med,2,2,big,low,unacc +vhigh,low,2,more,big,high,acc +low,med,2,4,med,low,unacc +high,vhigh,5more,2,big,low,unacc +vhigh,vhigh,4,4,big,high,unacc +vhigh,low,4,2,small,high,unacc +med,med,2,4,big,med,acc +low,low,4,4,big,med,good +high,high,2,2,big,low,unacc +vhigh,low,3,2,med,high,unacc +vhigh,vhigh,3,4,big,med,unacc +high,low,3,more,small,med,unacc +high,high,3,4,med,med,unacc +high,low,4,2,big,low,unacc +vhigh,high,2,4,big,med,unacc +med,low,2,2,med,low,unacc +low,vhigh,3,more,med,med,acc +high,med,3,more,big,high,acc +low,med,5more,more,big,high,vgood +low,med,5more,more,med,low,unacc +high,low,3,4,small,low,unacc +high,med,4,4,med,low,unacc +low,vhigh,2,2,small,high,unacc +low,low,2,2,small,med,unacc +low,med,4,more,med,low,unacc +high,low,5more,4,med,high,acc +med,low,3,2,small,high,unacc +high,high,4,4,med,med,acc +vhigh,vhigh,4,more,big,low,unacc +vhigh,high,5more,4,big,low,unacc +med,low,4,more,big,high,vgood +med,vhigh,5more,more,small,high,acc +vhigh,low,5more,2,small,high,unacc +vhigh,low,4,2,big,med,unacc +med,high,2,4,small,med,unacc +low,med,3,2,big,med,unacc +high,med,3,more,small,med,unacc +high,high,3,more,med,high,acc +vhigh,med,5more,more,med,high,acc +low,low,3,4,big,med,good +vhigh,vhigh,3,2,small,low,unacc +low,low,3,2,med,low,unacc +low,high,3,4,small,low,unacc +high,high,5more,4,big,high,acc +vhigh,low,2,4,med,low,unacc +med,high,4,2,big,low,unacc +vhigh,low,2,more,small,high,unacc +high,low,2,2,small,low,unacc +high,vhigh,5more,4,med,low,unacc +med,med,5more,4,med,low,unacc +high,vhigh,2,4,big,low,unacc +low,med,3,more,small,low,unacc +med,med,5more,2,big,med,unacc +vhigh,med,3,4,big,med,acc +low,high,3,4,big,low,unacc +med,med,2,more,med,low,unacc +vhigh,vhigh,3,4,big,low,unacc +med,low,4,2,small,high,unacc +med,med,3,4,med,low,unacc +vhigh,vhigh,4,4,small,med,unacc +vhigh,vhigh,5more,2,small,high,unacc +low,vhigh,3,2,big,low,unacc +high,vhigh,3,2,small,med,unacc +med,low,4,2,small,low,unacc +vhigh,vhigh,5more,more,big,high,unacc +low,med,2,4,small,med,acc +med,low,4,2,med,med,unacc +low,vhigh,4,4,small,med,unacc +high,vhigh,5more,2,med,med,unacc +med,vhigh,2,2,small,low,unacc +low,low,2,more,big,med,good +med,high,5more,2,med,high,unacc +high,med,3,4,big,high,acc +high,med,2,more,med,med,unacc +low,vhigh,5more,more,med,low,unacc +low,high,5more,4,med,med,acc +high,med,2,more,med,high,acc +med,med,5more,more,big,low,unacc +high,vhigh,5more,more,small,high,unacc +med,low,2,2,small,med,unacc +vhigh,low,3,more,med,med,acc +med,vhigh,5more,2,small,med,unacc +vhigh,med,4,2,big,high,unacc +low,med,4,more,small,high,good +vhigh,high,4,4,small,med,unacc +low,low,4,more,big,low,unacc +high,low,3,more,big,low,unacc +vhigh,vhigh,4,2,small,high,unacc +low,low,2,4,big,low,unacc +med,vhigh,5more,4,med,med,acc +low,high,5more,more,small,low,unacc +high,low,4,more,small,med,unacc +high,med,3,4,med,high,acc +high,low,3,4,med,high,acc +vhigh,vhigh,4,2,big,low,unacc +low,high,2,2,med,med,unacc +med,vhigh,3,2,small,high,unacc +high,high,2,more,small,med,unacc +low,med,4,4,big,med,good +med,high,3,2,small,med,unacc +low,med,3,2,med,med,unacc +low,vhigh,4,4,small,low,unacc +high,low,3,4,big,med,acc +low,med,2,more,big,low,unacc +high,med,4,more,small,med,unacc +vhigh,vhigh,2,4,med,med,unacc +low,high,3,2,big,high,unacc +high,low,2,more,big,low,unacc +vhigh,vhigh,3,4,med,high,unacc +high,low,3,4,big,low,unacc +high,low,5more,more,big,low,unacc +vhigh,low,5more,more,small,med,unacc +vhigh,high,2,more,small,high,unacc +high,low,5more,4,big,low,unacc +med,vhigh,5more,4,small,med,unacc +high,med,3,2,med,low,unacc +high,low,4,more,big,med,acc +high,low,5more,4,med,med,acc +low,high,4,more,med,high,vgood +low,high,4,2,small,low,unacc +vhigh,med,5more,4,big,med,acc +high,low,3,2,small,high,unacc +high,vhigh,3,4,big,low,unacc +vhigh,med,5more,4,med,low,unacc +low,med,4,4,big,low,unacc +vhigh,high,4,2,med,med,unacc +high,med,2,2,big,med,unacc +high,med,3,4,med,med,unacc +high,high,2,4,big,high,acc +high,vhigh,3,more,med,med,unacc +high,high,3,more,small,med,unacc +vhigh,high,3,more,big,low,unacc +med,vhigh,3,4,small,med,unacc +high,high,2,more,med,high,acc +high,vhigh,4,2,med,med,unacc +med,high,2,more,med,low,unacc +med,high,5more,4,big,low,unacc +high,high,3,2,small,med,unacc +high,vhigh,4,more,med,low,unacc +high,vhigh,5more,more,small,low,unacc +med,vhigh,4,2,med,med,unacc +med,high,2,2,small,med,unacc +vhigh,low,2,2,small,high,unacc +med,vhigh,3,more,med,high,acc +med,med,5more,more,small,med,acc +med,vhigh,2,4,small,med,unacc +med,high,4,2,big,high,unacc +med,vhigh,3,4,big,med,acc +high,med,2,2,small,high,unacc +low,vhigh,5more,2,small,med,unacc +med,med,4,2,med,low,unacc +vhigh,med,4,2,med,med,unacc +med,vhigh,4,4,big,high,acc +vhigh,med,3,2,big,low,unacc +high,vhigh,4,more,big,med,unacc +low,vhigh,5more,2,med,high,unacc +med,vhigh,5more,2,big,med,unacc +med,high,5more,2,big,high,unacc +vhigh,low,3,4,small,med,unacc +high,vhigh,2,4,big,high,unacc +med,vhigh,2,2,big,med,unacc +vhigh,med,2,2,med,low,unacc +vhigh,vhigh,2,4,med,low,unacc +vhigh,med,5more,2,big,low,unacc +high,vhigh,4,4,med,high,unacc +med,low,3,4,med,high,good +med,high,3,4,med,high,acc +high,low,3,2,med,med,unacc +vhigh,low,4,more,med,low,unacc +high,low,5more,4,med,low,unacc +med,vhigh,4,4,big,low,unacc +vhigh,high,3,4,big,low,unacc +low,high,5more,more,small,high,acc +low,low,2,2,big,low,unacc +vhigh,vhigh,5more,4,med,high,unacc +med,low,4,4,med,high,vgood +vhigh,med,5more,2,med,high,unacc +low,med,2,more,small,high,unacc +low,high,4,more,big,low,unacc +high,high,5more,4,big,low,unacc +low,vhigh,4,more,small,med,unacc +low,high,2,2,big,high,unacc +high,med,3,4,med,low,unacc +med,high,5more,2,med,low,unacc +high,high,3,4,big,low,unacc +vhigh,high,4,4,med,low,unacc +vhigh,low,2,more,big,low,unacc +med,vhigh,5more,more,big,med,acc +med,high,4,more,med,low,unacc +low,high,2,2,small,high,unacc +med,vhigh,3,4,big,low,unacc +low,low,3,4,med,high,good +med,vhigh,5more,2,big,high,unacc +high,med,2,4,med,low,unacc +med,low,5more,2,med,high,unacc +low,low,3,4,med,med,acc +high,high,3,more,med,low,unacc +high,high,5more,2,small,high,unacc +vhigh,vhigh,2,2,small,med,unacc +med,med,3,4,big,med,acc +high,low,4,more,med,med,acc +high,high,4,more,med,high,acc +med,med,5more,2,med,high,unacc +vhigh,low,3,2,big,low,unacc +low,vhigh,5more,more,big,med,acc +high,low,5more,more,big,med,acc +low,low,4,4,med,med,good +vhigh,med,3,more,small,low,unacc +low,vhigh,2,more,med,med,unacc +high,high,4,4,med,low,unacc +low,high,3,2,med,low,unacc +high,med,2,more,med,low,unacc +high,low,5more,2,small,low,unacc +high,high,5more,4,med,med,acc +med,high,4,4,med,med,acc +high,high,4,more,med,med,acc +low,low,3,more,small,med,acc +med,low,3,2,small,med,unacc +low,high,4,2,big,med,unacc +vhigh,high,3,4,small,low,unacc +med,vhigh,2,more,small,high,unacc +high,med,5more,4,big,high,acc +vhigh,low,4,more,big,high,acc +med,med,2,more,med,high,acc +med,high,5more,4,med,low,unacc +vhigh,vhigh,2,2,med,med,unacc +med,low,3,2,small,low,unacc +med,low,5more,more,big,med,good +high,vhigh,5more,4,small,low,unacc +low,high,2,more,big,med,acc +low,high,3,more,med,high,vgood +low,med,4,2,small,med,unacc +med,low,3,4,small,med,acc +med,high,4,more,med,med,acc +med,vhigh,3,2,med,low,unacc +low,vhigh,5more,2,big,med,unacc +high,med,4,2,big,low,unacc +med,vhigh,2,more,big,high,acc +vhigh,med,2,2,big,med,unacc +vhigh,vhigh,4,more,big,med,unacc +low,vhigh,3,4,small,low,unacc +med,low,2,2,small,high,unacc +low,med,3,2,small,med,unacc +low,vhigh,4,2,med,low,unacc +low,med,3,4,med,med,acc +vhigh,vhigh,4,2,med,low,unacc +high,med,3,2,med,med,unacc +low,high,2,more,big,low,unacc +high,low,4,4,small,low,unacc +low,med,4,4,med,high,vgood +high,med,4,more,small,low,unacc +high,high,3,2,med,high,unacc +low,low,3,2,big,high,unacc +low,high,2,more,small,med,unacc +high,med,2,more,big,med,acc +high,low,4,2,big,med,unacc +vhigh,low,4,more,small,low,unacc +vhigh,vhigh,3,more,med,med,unacc +high,vhigh,2,more,big,med,unacc +low,low,3,2,med,high,unacc +high,high,5more,2,med,high,unacc +high,med,4,4,big,low,unacc +med,vhigh,4,more,big,med,acc +vhigh,low,5more,2,med,med,unacc +high,vhigh,2,more,big,low,unacc +med,vhigh,5more,more,small,med,unacc +vhigh,vhigh,4,more,big,high,unacc +high,low,3,2,small,med,unacc +vhigh,med,2,2,big,low,unacc +low,low,4,4,med,high,vgood +low,med,3,4,med,high,good +high,vhigh,4,more,med,high,unacc +high,low,5more,2,big,med,unacc +high,med,3,2,big,low,unacc +vhigh,low,3,4,big,high,acc +vhigh,vhigh,3,more,big,low,unacc +high,low,5more,2,big,high,unacc +vhigh,low,3,4,med,low,unacc +vhigh,low,2,4,small,low,unacc +low,high,2,2,big,med,unacc +vhigh,med,5more,more,small,high,acc +low,high,2,2,med,high,unacc +med,med,4,4,med,med,acc +high,med,4,more,med,high,acc +vhigh,high,5more,more,med,med,unacc +low,high,2,4,big,high,vgood +vhigh,low,5more,more,big,high,acc +high,med,5more,2,med,med,unacc +low,vhigh,4,4,med,low,unacc +high,med,5more,more,small,low,unacc +high,high,5more,4,small,high,acc +vhigh,vhigh,5more,2,med,high,unacc +vhigh,med,3,more,small,med,unacc +med,vhigh,2,4,big,high,acc +vhigh,med,5more,2,big,med,unacc +med,med,3,more,big,med,acc +med,low,2,2,med,high,unacc +low,vhigh,3,2,med,med,unacc +vhigh,vhigh,4,more,small,high,unacc +med,med,3,4,small,high,acc +vhigh,med,5more,4,small,low,unacc +low,high,2,4,big,med,acc +low,med,2,4,small,low,unacc +low,vhigh,3,more,small,low,unacc +med,med,4,4,big,low,unacc +med,vhigh,2,4,med,low,unacc +med,med,3,more,med,high,vgood +med,vhigh,3,4,med,high,acc +low,med,2,4,big,high,vgood +high,vhigh,5more,more,big,low,unacc +vhigh,med,3,more,big,med,acc +high,med,3,4,small,low,unacc +vhigh,vhigh,2,2,big,high,unacc +vhigh,vhigh,5more,4,small,med,unacc +high,high,3,2,small,low,unacc +low,low,3,4,small,low,unacc +low,low,4,2,med,med,unacc +vhigh,vhigh,5more,more,big,low,unacc +low,med,3,more,med,high,vgood +low,med,2,4,small,high,good +med,high,4,4,small,med,unacc +high,high,2,2,small,med,unacc +low,vhigh,2,2,med,low,unacc +vhigh,low,5more,4,med,low,unacc +high,med,4,2,small,med,unacc +high,vhigh,2,2,small,low,unacc +med,low,3,more,big,low,unacc +high,high,3,4,small,high,acc +high,high,2,more,small,low,unacc +low,low,4,4,small,low,unacc +low,med,3,more,med,med,good +vhigh,med,2,2,med,med,unacc +vhigh,med,2,more,med,low,unacc +low,low,3,more,big,med,good +vhigh,med,4,2,big,low,unacc +vhigh,high,5more,more,big,low,unacc +high,high,4,more,small,high,acc +med,med,4,2,small,high,unacc +vhigh,vhigh,2,4,big,high,unacc +low,med,3,more,big,low,unacc +med,low,4,4,small,high,good +high,high,4,more,big,high,acc +med,med,3,2,big,low,unacc +low,high,5more,2,small,high,unacc +low,med,3,2,big,high,unacc +high,high,3,4,big,high,acc +high,low,2,2,small,med,unacc +high,vhigh,4,4,big,low,unacc +low,vhigh,4,more,med,med,acc +high,med,4,4,med,med,acc +vhigh,med,4,2,small,high,unacc +low,vhigh,3,more,big,high,acc +med,high,4,4,small,high,acc +high,vhigh,2,2,med,high,unacc +med,med,2,more,med,med,acc +vhigh,high,3,4,big,med,unacc +vhigh,high,5more,4,big,med,unacc +med,med,4,more,small,high,acc +med,low,5more,2,med,med,unacc +med,vhigh,4,more,med,low,unacc +vhigh,vhigh,2,more,small,high,unacc +vhigh,high,3,4,med,high,unacc +low,vhigh,4,2,med,med,unacc +med,vhigh,4,more,small,med,unacc +high,high,4,more,med,low,unacc +low,vhigh,2,more,big,high,acc +vhigh,med,3,more,big,high,acc +low,med,5more,2,big,low,unacc +low,vhigh,5more,more,med,med,acc +high,vhigh,4,2,med,low,unacc +high,high,5more,more,med,high,acc +vhigh,low,5more,4,med,high,acc +high,vhigh,5more,more,med,med,unacc +high,med,2,2,small,low,unacc +med,high,5more,more,small,low,unacc +med,med,4,more,big,low,unacc +low,med,4,more,small,med,acc +low,vhigh,3,more,big,low,unacc +high,low,5more,more,med,med,acc +vhigh,high,4,2,big,low,unacc +med,low,5more,2,small,low,unacc +vhigh,vhigh,5more,2,small,med,unacc +med,low,3,2,med,low,unacc +med,med,5more,more,big,med,acc +high,vhigh,4,more,small,med,unacc +med,med,5more,2,big,low,unacc +vhigh,med,3,2,med,low,unacc +high,low,4,4,big,high,acc +high,vhigh,3,more,med,high,unacc +vhigh,high,3,2,med,high,unacc +med,low,3,2,med,med,unacc +vhigh,high,3,2,big,low,unacc +vhigh,low,4,2,med,low,unacc +vhigh,high,4,2,med,low,unacc +med,high,4,4,big,low,unacc +vhigh,high,2,4,small,low,unacc +vhigh,med,5more,more,big,high,acc +med,med,2,2,big,high,unacc +med,high,4,2,med,med,unacc +med,high,2,2,med,high,unacc +med,low,2,4,small,low,unacc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..403e4648dc3b3c177525a76273864fc4069db6b4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/ctgan/ctgan-c2-20260414_051434/staged/public/val.csv @@ -0,0 +1,173 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,5more,more,med,med,unacc +vhigh,high,2,4,small,med,unacc +high,high,5more,more,med,med,acc +low,high,3,2,med,med,unacc +med,med,3,2,med,med,unacc +med,med,5more,more,big,high,vgood +vhigh,high,2,4,med,low,unacc +high,vhigh,2,4,med,high,unacc +high,high,4,4,med,high,acc +vhigh,low,4,4,small,high,acc +vhigh,med,5more,more,med,low,unacc +med,high,2,more,big,med,acc +low,vhigh,4,2,big,low,unacc +med,med,4,2,med,high,unacc +low,med,2,2,small,low,unacc +high,high,3,more,small,low,unacc +med,vhigh,4,4,med,high,acc +high,high,2,2,med,med,unacc +high,low,3,4,big,high,acc +vhigh,vhigh,2,2,med,high,unacc +high,low,2,more,med,low,unacc +vhigh,low,2,4,med,high,acc +low,high,4,4,small,high,acc +low,med,5more,4,big,med,good +high,vhigh,2,2,big,low,unacc +med,high,2,4,med,high,acc +low,high,4,2,small,med,unacc +high,low,4,more,med,high,acc +vhigh,low,2,4,big,high,acc +high,vhigh,3,more,big,high,unacc +low,low,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,med,unacc +med,med,3,2,small,med,unacc +low,vhigh,3,4,med,med,unacc +vhigh,vhigh,5more,more,med,high,unacc +vhigh,high,5more,4,med,low,unacc +med,med,3,more,med,low,unacc +med,vhigh,3,4,big,high,acc +vhigh,high,3,more,small,high,unacc +high,vhigh,4,more,big,high,unacc +med,vhigh,5more,2,med,low,unacc +low,high,5more,2,big,high,unacc +vhigh,low,3,more,big,med,acc +low,med,4,2,med,med,unacc +vhigh,med,4,more,small,low,unacc +med,vhigh,4,2,small,med,unacc +low,low,3,more,small,high,good +low,high,3,more,small,low,unacc +vhigh,low,4,4,big,low,unacc +high,vhigh,4,more,big,low,unacc +vhigh,med,2,2,big,high,unacc +high,med,3,more,small,high,acc +high,low,4,4,big,low,unacc +vhigh,high,2,4,big,high,unacc +vhigh,high,5more,4,med,med,unacc +low,vhigh,3,2,small,med,unacc +low,vhigh,3,4,big,med,acc +low,vhigh,5more,2,med,low,unacc +vhigh,high,2,2,med,low,unacc +med,vhigh,5more,4,med,low,unacc +high,low,5more,2,med,high,unacc +med,vhigh,2,2,med,med,unacc +high,med,4,more,big,low,unacc +med,vhigh,2,more,small,med,unacc +low,vhigh,4,2,small,low,unacc +low,low,4,2,small,high,unacc +vhigh,high,5more,2,med,high,unacc +vhigh,low,4,4,med,low,unacc +high,low,4,more,big,low,unacc +low,high,3,more,med,med,acc +high,vhigh,4,4,med,low,unacc +med,vhigh,5more,more,big,low,unacc +med,med,5more,more,small,high,acc +med,med,5more,4,small,low,unacc +vhigh,med,4,2,small,med,unacc +low,high,5more,4,med,low,unacc +high,vhigh,2,2,big,med,unacc +med,high,2,more,med,high,acc +low,vhigh,4,more,med,low,unacc +high,high,3,2,med,med,unacc +high,vhigh,4,2,small,high,unacc +med,high,5more,2,small,low,unacc +low,high,4,4,med,high,vgood +high,med,3,2,small,high,unacc +vhigh,vhigh,4,4,small,high,unacc +vhigh,high,3,2,med,med,unacc +high,vhigh,3,4,small,med,unacc +vhigh,high,2,4,med,med,unacc +med,low,5more,more,big,low,unacc +low,high,3,more,small,med,acc +vhigh,high,3,4,small,high,unacc +vhigh,vhigh,2,4,big,low,unacc +low,low,4,more,med,med,good +med,low,2,more,small,low,unacc +high,vhigh,3,4,med,med,unacc +med,med,4,2,small,med,unacc +med,low,2,4,big,high,vgood +vhigh,vhigh,3,4,big,high,unacc +high,med,3,more,small,low,unacc +vhigh,high,2,more,big,low,unacc +high,vhigh,3,2,small,high,unacc +high,vhigh,4,more,med,med,unacc +vhigh,med,3,2,med,high,unacc +med,vhigh,4,2,big,med,unacc +med,high,5more,2,big,med,unacc +med,vhigh,3,2,big,med,unacc +high,low,2,4,small,low,unacc +low,low,4,more,big,high,vgood +low,vhigh,4,more,big,high,acc +low,low,4,4,big,low,unacc +high,high,5more,more,small,low,unacc +low,high,4,2,med,low,unacc +vhigh,low,5more,2,big,med,unacc +low,high,2,4,small,low,unacc +low,low,3,more,med,med,good +low,med,2,4,big,med,good +high,vhigh,2,2,small,high,unacc +med,vhigh,2,2,med,low,unacc +med,low,4,2,small,med,unacc +med,med,2,2,small,med,unacc +low,med,5more,2,small,high,unacc +vhigh,low,2,4,big,low,unacc +med,med,3,more,small,med,acc +med,high,2,2,small,high,unacc +low,vhigh,4,2,small,high,unacc +vhigh,med,3,more,small,high,acc +vhigh,med,3,4,big,low,unacc +med,med,2,4,small,high,acc +vhigh,high,3,2,big,med,unacc +med,high,2,more,big,low,unacc +low,high,5more,4,med,high,vgood +vhigh,high,4,4,med,high,unacc +low,low,3,4,big,high,vgood +low,med,5more,4,med,low,unacc +high,vhigh,4,2,big,high,unacc +vhigh,high,2,4,small,high,unacc +high,vhigh,4,2,med,high,unacc +high,high,5more,4,small,low,unacc +high,med,5more,4,big,low,unacc +vhigh,med,2,4,med,high,acc +vhigh,vhigh,3,4,med,med,unacc +med,high,3,2,small,high,unacc +high,med,2,4,big,med,acc +med,low,3,4,med,low,unacc +vhigh,vhigh,2,2,small,high,unacc +med,med,2,2,big,med,unacc +med,med,2,more,big,med,acc +vhigh,low,2,2,big,med,unacc +high,low,2,4,small,med,unacc +low,med,5more,more,med,med,good +low,low,5more,2,small,med,unacc +low,low,2,4,small,high,good +low,med,3,2,small,low,unacc +low,vhigh,2,4,med,med,unacc +high,high,4,more,small,low,unacc +med,low,5more,4,med,low,unacc +vhigh,med,2,2,small,high,unacc +med,high,4,4,med,high,acc +vhigh,low,3,4,big,low,unacc +med,high,4,2,small,low,unacc +high,high,2,2,small,low,unacc +low,high,4,4,big,med,acc +low,high,4,more,med,low,unacc +vhigh,vhigh,2,2,big,med,unacc +med,vhigh,4,4,med,low,unacc +vhigh,low,2,2,small,low,unacc +med,vhigh,3,2,small,low,unacc +high,high,4,2,big,high,unacc +low,low,5more,more,big,med,good +low,low,4,4,small,high,good +low,vhigh,2,4,big,high,acc +low,low,2,4,big,med,good diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/realtabformer/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/realtabformer/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..16a47f24a14783056963c7c31b54a93442c4e573 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/realtabformer/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/_tvae_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..366dd9150fdde049a60c26a2c6e70d49f7fdc6b7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/_tvae_generate.py @@ -0,0 +1,5 @@ +from ctgan.synthesizers.tvae import TVAE +model = TVAE.load("/work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/models_50epochs/tvae_50epochs.pt") +samples = model.sample(200) +samples.to_csv("/work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/tvae-c2-200-20260318_003616.csv", index=False) +print(f"[TVAE] Generated 200 rows -> /work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/tvae-c2-200-20260318_003616.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/_tvae_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6c4e142f804de448c470ce32fef00a3360a7bc6a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/_tvae_train.py @@ -0,0 +1,16 @@ +import json, sys +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +csv_path = "/work/DatasetNew/c2/c2-train.csv" +meta_path = "/work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/tvae_metadata.json" +save_path = "/work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/models_50epochs/tvae_50epochs.pt" +epochs = 50 + +data, discrete_columns = read_csv(csv_path, meta_path, header=True, discrete=None) +print(f"[TVAE] Training on {len(data)} rows, {len(data.columns)} cols, epochs={epochs}") +model = TVAE(epochs=epochs, batch_size=500) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/gen_20260318_003616.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/gen_20260318_003616.log new file mode 100644 index 0000000000000000000000000000000000000000..84e31bc41093dfefeec94973d5d9b9495310cf31 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/gen_20260318_003616.log @@ -0,0 +1 @@ +[TVAE] Generated 200 rows -> /work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/tvae-c2-200-20260318_003616.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/models_50epochs/train_20260318_003547.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/models_50epochs/train_20260318_003547.log new file mode 100644 index 0000000000000000000000000000000000000000..2134f6ef31825426ad0f7dad988ca1682bb22f47 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/models_50epochs/train_20260318_003547.log @@ -0,0 +1,2 @@ +[TVAE] Training on 1382 rows, 7 cols, epochs=50 +[TVAE] Model saved -> /work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/models_50epochs/tvae_50epochs.pt diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/tvae_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_003547/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/_tvae_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..03c41bd0a8ae51b8dfeeb9ea433b1ae9c1fa5d71 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/_tvae_generate.py @@ -0,0 +1,5 @@ +from ctgan.synthesizers.tvae import TVAE +model = TVAE.load("/work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/models_300epochs/tvae_300epochs.pt") +samples = model.sample(1382) +samples.to_csv("/work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/tvae-c2-1382-20260318_032651.csv", index=False) +print(f"[TVAE] Generated 1382 rows -> /work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/tvae-c2-1382-20260318_032651.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/_tvae_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..d65a5b055845100b97e2aad6a67f1309c8010d22 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/_tvae_train.py @@ -0,0 +1,16 @@ +import json, sys +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +csv_path = "/work/DatasetNew/c2/c2-train.csv" +meta_path = "/work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/tvae_metadata.json" +save_path = "/work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/models_300epochs/tvae_300epochs.pt" +epochs = 300 + +data, discrete_columns = read_csv(csv_path, meta_path, header=True, discrete=None) +print(f"[TVAE] Training on {len(data)} rows, {len(data.columns)} cols, epochs={epochs}") +model = TVAE(epochs=epochs, batch_size=500) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/gen_20260318_032651.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/gen_20260318_032651.log new file mode 100644 index 0000000000000000000000000000000000000000..984b64f2f8a4027e079837d9fbd081643bb3c2d6 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/gen_20260318_032651.log @@ -0,0 +1 @@ +[TVAE] Generated 1382 rows -> /work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/tvae-c2-1382-20260318_032651.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/models_300epochs/train_20260318_032610.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/models_300epochs/train_20260318_032610.log new file mode 100644 index 0000000000000000000000000000000000000000..253612f416f57d4e5dbaf2e52b20a22baa2a4b92 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/models_300epochs/train_20260318_032610.log @@ -0,0 +1,2 @@ +[TVAE] Training on 1382 rows, 7 cols, epochs=300 +[TVAE] Model saved -> /work/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/models_300epochs/tvae_300epochs.pt diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/tvae_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260318_032610/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/_tvae_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..fd20feb5968b66f882a9d34d260a66a788c9f714 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/_tvae_generate.py @@ -0,0 +1,5 @@ +from ctgan.synthesizers.tvae import TVAE +model = TVAE.load("/work/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/models_300epochs/tvae_300epochs.pt") +samples = model.sample(1382) +samples.to_csv("/work/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/tvae-c2-1382-20260330_065244.csv", index=False) +print(f"[TVAE] Generated 1382 rows -> /work/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/tvae-c2-1382-20260330_065244.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/_tvae_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..38a8f0ff467fd3e4ad68319e5f7645cc7c4d2b59 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/_tvae_train.py @@ -0,0 +1,16 @@ +import json, sys +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +csv_path = "/work/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/train.csv" +meta_path = "/work/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/tvae_metadata.json" +save_path = "/work/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/models_300epochs/tvae_300epochs.pt" +epochs = 300 + +data, discrete_columns = read_csv(csv_path, meta_path, header=True, discrete=None) +print(f"[TVAE] Training on {len(data)} rows, {len(data.columns)} cols, epochs={epochs}") +model = TVAE(epochs=epochs, batch_size=500) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/gen_20260321_061927.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/gen_20260321_061927.log new file mode 100644 index 0000000000000000000000000000000000000000..faeb4fb3e75a7af47a88348c67c5eb63873b39b4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/gen_20260321_061927.log @@ -0,0 +1 @@ +[TVAE] Generated 1000 rows -> /work/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/tvae-c2-1000-20260321_061927.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/gen_20260330_065244.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/gen_20260330_065244.log new file mode 100644 index 0000000000000000000000000000000000000000..a26c24adabe6c34baad31960377ed91fe391fce3 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/gen_20260330_065244.log @@ -0,0 +1 @@ +[TVAE] Generated 1382 rows -> /work/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/tvae-c2-1382-20260330_065244.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/models_300epochs/train_20260321_061840.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/models_300epochs/train_20260321_061840.log new file mode 100644 index 0000000000000000000000000000000000000000..bc9295a20d99a6d9b0fad07dd11ce6170a58e97a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/models_300epochs/train_20260321_061840.log @@ -0,0 +1,2 @@ +[TVAE] Training on 1382 rows, 7 cols, epochs=300 +[TVAE] Model saved -> /work/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/models_300epochs/tvae_300epochs.pt diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0b91b8e20fb4d3892b88477f1d36e5aaf46dbfeb --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b37c19d075c2e8b4fdf707342cbf6a7070042cb0 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260321_061840", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/tvae-c2-1382-20260330_065244.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b3cf25081f629b35185af44e432085a72a9bb40b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/test.csv @@ -0,0 +1,175 @@ +buying,maint,doors,persons,lug_boot,safety,class +low,med,2,more,big,high,vgood +med,med,2,more,small,high,unacc +low,vhigh,5more,more,small,high,acc +vhigh,med,2,more,small,med,unacc +low,high,4,more,small,med,acc +low,med,4,2,med,high,unacc +vhigh,vhigh,2,more,big,low,unacc +med,med,4,2,small,low,unacc +high,vhigh,5more,2,small,high,unacc +med,med,2,2,med,med,unacc +med,vhigh,5more,4,med,high,acc +med,low,3,2,big,low,unacc +high,low,2,more,big,high,acc +high,low,3,2,big,low,unacc +vhigh,high,2,more,med,high,unacc +med,low,3,2,big,med,unacc +low,low,5more,4,small,high,good +low,vhigh,5more,4,big,high,acc +vhigh,low,2,2,med,med,unacc +med,low,5more,4,big,high,vgood +vhigh,med,5more,4,big,high,acc +vhigh,med,2,4,small,low,unacc +vhigh,vhigh,5more,4,big,med,unacc +low,med,3,4,small,low,unacc +vhigh,high,4,more,big,med,unacc +med,high,3,4,med,low,unacc +med,high,4,more,small,low,unacc +vhigh,med,4,4,med,high,acc +low,med,5more,more,big,med,good +high,med,5more,4,med,med,acc +high,low,4,2,big,high,unacc +med,low,2,2,big,high,unacc +med,vhigh,2,4,med,high,acc +med,low,2,4,small,med,acc +low,med,2,more,small,low,unacc +high,vhigh,5more,more,big,high,unacc +med,med,2,more,big,low,unacc +low,low,5more,2,small,high,unacc +low,med,2,4,med,high,good +high,vhigh,4,more,small,high,unacc +low,low,5more,more,small,med,acc +high,high,2,2,med,low,unacc +vhigh,med,4,more,med,high,acc +med,vhigh,4,more,med,med,acc +low,vhigh,2,more,med,low,unacc +high,low,4,2,small,med,unacc +med,high,3,more,big,low,unacc +low,vhigh,3,more,small,high,acc +high,vhigh,2,2,med,med,unacc +high,high,5more,more,big,low,unacc +low,high,4,4,med,med,acc +med,med,5more,2,small,med,unacc +high,vhigh,2,2,small,med,unacc +vhigh,high,3,2,small,med,unacc +high,high,2,4,small,low,unacc +high,low,4,4,med,low,unacc +high,high,5more,more,big,high,acc +low,low,5more,4,small,med,acc +high,vhigh,3,4,small,high,unacc +vhigh,high,2,2,big,med,unacc +low,med,4,more,big,low,unacc +low,med,4,2,big,high,unacc +high,med,2,4,big,high,acc +low,vhigh,5more,more,big,high,acc +high,vhigh,2,more,small,low,unacc +med,med,4,2,big,med,unacc +low,high,2,2,big,low,unacc +low,vhigh,2,4,big,low,unacc +high,high,2,4,med,med,unacc +high,low,2,more,med,med,unacc +med,vhigh,5more,2,small,high,unacc +vhigh,low,2,4,small,high,acc +low,low,5more,more,med,low,unacc +low,high,5more,4,small,low,unacc +med,med,2,4,med,high,acc +vhigh,low,3,2,small,low,unacc +low,vhigh,2,2,med,high,unacc +med,low,4,2,big,low,unacc +vhigh,high,3,4,med,low,unacc +low,vhigh,3,2,med,high,unacc +low,vhigh,5more,more,med,high,acc +low,high,3,2,big,med,unacc +high,high,2,2,big,med,unacc +low,vhigh,4,more,med,high,acc +vhigh,low,5more,more,big,med,acc +high,med,4,more,big,high,acc +high,low,2,2,med,low,unacc +vhigh,low,2,4,small,med,unacc +high,med,5more,more,small,med,unacc +low,vhigh,2,2,big,low,unacc +med,vhigh,4,4,small,high,acc +low,low,4,4,small,med,acc +low,low,4,2,med,low,unacc +vhigh,high,5more,more,small,low,unacc +low,low,5more,2,big,low,unacc +vhigh,high,4,2,small,high,unacc +high,high,3,more,big,high,acc +low,med,4,more,small,low,unacc +high,vhigh,3,2,big,high,unacc +low,vhigh,4,2,med,high,unacc +vhigh,vhigh,5more,4,med,med,unacc +vhigh,high,3,2,big,high,unacc +low,high,3,4,med,low,unacc +vhigh,low,4,4,big,med,acc +med,med,5more,more,med,med,acc +high,med,5more,4,med,low,unacc +med,low,4,more,big,med,good +med,low,5more,more,small,med,acc +high,high,4,2,big,med,unacc +med,med,3,more,big,low,unacc +vhigh,high,4,2,small,low,unacc +high,low,2,more,small,high,unacc +vhigh,med,3,4,med,med,unacc +med,med,2,more,small,med,unacc +med,vhigh,4,more,med,high,acc +low,high,5more,4,small,med,acc +vhigh,vhigh,5more,2,big,high,unacc +low,low,3,2,big,low,unacc +high,high,2,2,small,high,unacc +med,low,3,more,med,med,good +high,med,4,2,med,low,unacc +high,med,5more,2,big,med,unacc +vhigh,high,5more,4,small,med,unacc +high,low,2,more,med,high,acc +vhigh,high,5more,2,small,med,unacc +low,low,5more,4,big,high,vgood +high,med,3,4,big,low,unacc +low,med,3,more,big,med,good +high,vhigh,2,4,small,low,unacc +vhigh,med,5more,more,med,med,acc +low,low,4,more,small,med,acc +high,med,3,more,med,med,acc +med,vhigh,2,2,small,high,unacc +low,high,2,more,big,high,vgood +vhigh,low,2,2,med,low,unacc +low,low,3,2,med,med,unacc +low,med,3,4,big,med,good +vhigh,vhigh,2,4,med,high,unacc +low,low,3,4,small,high,good +high,high,3,2,med,low,unacc +med,low,2,more,small,med,unacc +med,vhigh,4,2,small,high,unacc +high,vhigh,2,more,small,high,unacc +high,low,5more,more,med,high,acc +low,low,5more,4,med,high,vgood +low,high,3,2,big,low,unacc +low,vhigh,3,2,big,high,unacc +low,high,4,4,small,low,unacc +vhigh,low,5more,2,med,low,unacc +med,med,4,4,big,med,acc +vhigh,vhigh,4,2,small,med,unacc +med,low,3,more,small,low,unacc +med,high,4,4,small,low,unacc +high,vhigh,3,more,small,low,unacc +high,vhigh,2,4,big,med,unacc +vhigh,high,5more,2,med,low,unacc +vhigh,vhigh,4,2,big,high,unacc +vhigh,vhigh,4,4,med,low,unacc +med,vhigh,2,2,small,med,unacc +med,low,2,more,med,med,acc +vhigh,high,4,4,big,high,unacc +med,med,3,4,small,med,acc +low,med,2,2,med,high,unacc +low,vhigh,5more,4,small,low,unacc +vhigh,high,5more,more,med,low,unacc +low,high,5more,more,big,low,unacc +vhigh,med,4,4,big,med,acc +high,vhigh,2,more,big,high,unacc +high,vhigh,4,4,big,med,unacc +high,high,2,more,big,low,unacc +low,med,2,2,big,med,unacc +vhigh,vhigh,3,more,big,med,unacc +vhigh,med,2,4,med,med,unacc +low,vhigh,2,4,med,high,acc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a7dd506a8ec04e784f7aa4b9fe95bca40b4e9722 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/train.csv @@ -0,0 +1,1383 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,2,2,small,low,unacc +med,low,5more,4,small,high,good +med,med,3,2,small,low,unacc +med,med,4,4,small,med,acc +high,low,2,4,big,med,acc +med,vhigh,5more,2,small,low,unacc +high,med,2,more,small,low,unacc +low,med,5more,more,small,high,good +med,high,5more,4,small,high,acc +med,vhigh,3,2,med,med,unacc +vhigh,low,3,more,big,high,acc +vhigh,high,3,2,small,high,unacc +low,low,4,more,small,high,good +vhigh,low,4,more,small,med,unacc +low,high,2,4,med,med,acc +low,low,2,4,big,high,vgood +low,med,4,more,med,med,good +high,med,5more,2,big,high,unacc +med,vhigh,2,4,big,low,unacc +vhigh,med,4,more,med,low,unacc +low,low,2,4,small,low,unacc +low,high,4,4,big,high,vgood +low,high,3,2,med,high,unacc +vhigh,vhigh,5more,more,small,med,unacc +low,med,4,4,med,med,good +vhigh,low,3,4,small,low,unacc +vhigh,vhigh,4,2,big,med,unacc +high,vhigh,4,2,small,med,unacc +vhigh,low,4,more,med,med,acc +med,med,2,4,small,med,acc +low,high,5more,4,small,high,acc +vhigh,high,2,more,small,low,unacc +med,high,5more,more,big,med,acc +vhigh,med,3,more,med,low,unacc +low,low,4,2,small,low,unacc +med,high,2,2,big,high,unacc +low,med,3,2,med,high,unacc +low,vhigh,2,4,big,med,acc +low,med,4,2,small,high,unacc +med,vhigh,4,2,big,high,unacc +med,high,2,more,small,med,unacc +med,low,3,2,med,high,unacc +med,high,2,more,small,low,unacc +vhigh,med,3,4,big,high,acc +low,high,2,4,med,low,unacc +low,low,2,more,med,high,good +vhigh,med,5more,4,small,high,acc +med,low,4,more,small,med,acc +vhigh,low,4,4,small,med,unacc +high,med,2,2,small,med,unacc +low,vhigh,2,more,big,med,acc +med,vhigh,4,4,med,med,acc +vhigh,high,2,more,big,high,unacc +vhigh,vhigh,5more,more,small,low,unacc +high,high,2,more,med,low,unacc +low,vhigh,5more,more,small,med,unacc +med,high,2,2,med,low,unacc +vhigh,low,3,4,small,high,acc +low,low,3,4,big,low,unacc +low,low,4,2,big,low,unacc +vhigh,vhigh,2,more,small,med,unacc +vhigh,vhigh,5more,4,small,high,unacc +med,low,2,2,med,med,unacc +vhigh,med,4,more,big,low,unacc +low,low,5more,more,big,low,unacc +med,high,5more,2,small,med,unacc +high,med,5more,2,small,med,unacc +high,med,3,2,small,low,unacc +low,low,4,2,big,high,unacc +med,med,5more,4,med,high,vgood +low,vhigh,4,4,small,high,acc +med,high,3,2,med,high,unacc +vhigh,high,5more,4,small,high,unacc +high,vhigh,5more,2,med,high,unacc +vhigh,vhigh,3,more,small,med,unacc +high,med,5more,more,med,med,acc +vhigh,low,5more,more,small,low,unacc +vhigh,med,2,more,small,high,unacc +med,vhigh,5more,more,med,high,acc +med,low,3,more,med,high,vgood +high,high,4,2,med,med,unacc +high,med,5more,2,med,high,unacc +vhigh,high,3,2,med,low,unacc +med,med,5more,2,med,med,unacc +low,high,2,more,med,low,unacc +low,vhigh,2,2,small,low,unacc +med,med,5more,more,med,low,unacc +med,high,2,4,med,low,unacc +high,high,4,more,big,low,unacc +high,low,4,4,big,med,acc +med,med,4,more,big,med,acc +low,high,4,4,small,med,acc +vhigh,med,2,more,med,high,acc +med,med,5more,more,small,low,unacc +high,low,3,more,med,high,acc +high,high,4,2,med,low,unacc +low,low,2,more,med,low,unacc +vhigh,vhigh,3,2,small,high,unacc +vhigh,vhigh,2,2,big,low,unacc +med,med,3,more,big,high,vgood +med,low,5more,2,med,low,unacc +low,med,2,4,med,med,acc +high,med,5more,more,big,high,acc +med,low,5more,more,med,med,good +med,high,3,2,med,med,unacc +med,high,5more,more,big,low,unacc +vhigh,med,3,4,small,high,acc +low,low,3,2,small,high,unacc +high,med,3,more,big,low,unacc +med,vhigh,3,4,med,med,unacc +high,high,5more,more,small,med,unacc +med,low,4,2,med,low,unacc +vhigh,high,2,more,small,med,unacc +low,med,2,2,med,low,unacc +vhigh,low,2,more,small,med,unacc +vhigh,vhigh,4,2,small,low,unacc +med,low,4,more,med,low,unacc +med,high,3,4,small,med,unacc +med,vhigh,2,more,big,low,unacc +vhigh,high,4,4,big,low,unacc +med,vhigh,4,2,small,low,unacc +vhigh,med,5more,2,small,med,unacc +vhigh,vhigh,3,2,big,high,unacc +med,high,3,more,small,high,acc +med,vhigh,3,more,small,low,unacc +low,vhigh,3,2,small,low,unacc +vhigh,high,2,more,big,med,unacc +low,low,5more,2,small,low,unacc +low,med,2,2,big,high,unacc +med,low,5more,more,med,low,unacc +high,high,5more,2,big,med,unacc +high,med,5more,4,small,high,acc +low,vhigh,3,more,big,med,acc +low,med,5more,2,big,high,unacc +med,med,3,4,big,high,vgood +low,high,3,4,small,high,acc +high,low,3,more,med,low,unacc +high,low,5more,2,small,high,unacc +med,low,5more,more,med,high,vgood +low,med,4,4,small,med,acc +low,med,3,4,small,high,good +med,med,5more,2,small,high,unacc +low,vhigh,3,4,med,high,acc +low,med,5more,2,med,med,unacc +low,low,5more,4,med,med,good +vhigh,high,5more,more,small,med,unacc +vhigh,med,2,2,med,high,unacc +vhigh,high,3,4,small,med,unacc +high,high,2,4,med,high,acc +vhigh,med,3,2,small,low,unacc +high,low,3,2,big,med,unacc +vhigh,low,4,more,big,low,unacc +low,high,3,2,small,med,unacc +vhigh,high,4,more,small,high,unacc +low,high,2,4,small,med,acc +med,low,3,more,small,high,good +high,low,4,4,med,high,acc +vhigh,vhigh,4,4,big,low,unacc +med,low,4,4,big,med,good +low,med,3,2,big,low,unacc +low,low,4,2,small,med,unacc +med,low,5more,2,small,high,unacc +low,high,4,more,small,low,unacc +high,high,3,more,big,med,acc +med,high,5more,more,med,low,unacc +vhigh,high,4,4,small,high,unacc +med,low,3,more,small,med,acc +med,low,3,2,big,high,unacc +vhigh,low,3,more,med,low,unacc +med,med,4,more,med,low,unacc +med,vhigh,2,2,med,high,unacc +high,med,5more,2,big,low,unacc +vhigh,vhigh,3,2,small,med,unacc +high,low,3,more,small,low,unacc +med,high,3,2,small,low,unacc +low,high,5more,4,big,high,vgood +med,low,4,more,med,high,vgood +med,high,3,more,small,low,unacc +vhigh,med,4,4,med,low,unacc +low,high,2,4,med,high,acc +vhigh,low,4,2,small,med,unacc +vhigh,low,3,more,small,low,unacc +high,high,3,2,big,med,unacc +med,low,4,4,small,med,acc +med,vhigh,3,more,small,med,unacc +med,high,2,4,big,med,acc +low,vhigh,3,4,med,low,unacc +med,vhigh,5more,more,med,med,acc +vhigh,high,5more,more,big,med,unacc +high,med,2,more,big,high,acc +high,low,4,more,small,high,acc +low,vhigh,4,2,big,high,unacc +low,high,4,more,small,high,acc +high,high,3,more,small,high,acc +vhigh,high,5more,2,big,low,unacc +high,med,3,4,small,high,acc +low,high,2,4,small,high,acc +high,med,3,more,med,low,unacc +low,low,5more,2,med,med,unacc +vhigh,low,3,2,big,med,unacc +low,high,4,2,small,high,unacc +high,high,3,4,small,low,unacc +vhigh,low,4,2,big,high,unacc +med,vhigh,5more,4,big,med,acc +low,high,3,more,med,low,unacc +low,low,3,2,small,low,unacc +low,low,2,more,small,med,unacc +vhigh,low,3,4,med,high,acc +high,low,3,2,med,high,unacc +med,high,5more,2,small,high,unacc +low,med,2,2,small,med,unacc +med,high,4,more,small,high,acc +high,high,5more,4,big,med,acc +low,med,5more,more,small,low,unacc +low,high,2,2,med,low,unacc +low,low,2,2,med,low,unacc +vhigh,high,2,2,small,high,unacc +high,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,big,med,unacc +low,high,3,more,big,low,unacc +high,vhigh,3,2,med,high,unacc +vhigh,low,5more,more,big,low,unacc +high,low,4,2,small,low,unacc +vhigh,high,5more,more,med,high,unacc +vhigh,vhigh,5more,2,big,low,unacc +low,high,5more,more,small,med,acc +high,med,4,more,big,med,acc +high,high,2,more,med,med,unacc +high,high,5more,2,big,high,unacc +med,vhigh,4,2,big,low,unacc +low,low,4,more,med,high,vgood +high,med,2,4,med,med,unacc +high,low,5more,4,small,high,acc +high,vhigh,4,4,med,med,unacc +low,med,4,4,small,low,unacc +vhigh,high,4,2,med,high,unacc +med,vhigh,2,more,med,high,acc +vhigh,med,3,more,med,high,acc +low,vhigh,2,more,small,low,unacc +high,vhigh,5more,4,big,med,unacc +med,med,3,4,small,low,unacc +high,high,5more,more,med,low,unacc +med,med,2,2,small,low,unacc +high,low,5more,more,small,med,unacc +low,vhigh,2,4,med,low,unacc +high,high,5more,4,med,high,acc +high,med,2,more,big,low,unacc +vhigh,med,4,more,small,med,unacc +med,low,2,more,big,low,unacc +med,med,4,2,med,med,unacc +high,low,2,more,small,med,unacc +vhigh,high,4,more,med,low,unacc +low,vhigh,5more,2,med,med,unacc +high,vhigh,5more,more,med,low,unacc +med,high,3,2,big,low,unacc +vhigh,high,3,more,big,med,unacc +high,vhigh,3,more,big,low,unacc +med,med,3,4,med,high,acc +low,low,4,4,med,low,unacc +vhigh,med,5more,more,big,low,unacc +high,med,3,2,big,high,unacc +high,med,4,2,small,low,unacc +high,high,3,4,med,low,unacc +high,high,2,more,small,high,unacc +low,low,2,2,med,med,unacc +med,vhigh,2,4,small,high,acc +med,med,4,2,big,high,unacc +vhigh,high,5more,4,big,high,unacc +low,vhigh,4,2,small,med,unacc +med,vhigh,4,more,small,low,unacc +med,vhigh,3,more,big,med,acc +high,med,4,2,big,high,unacc +high,low,3,2,big,high,unacc +vhigh,med,3,more,big,low,unacc +vhigh,vhigh,2,more,med,high,unacc +low,high,2,more,small,high,unacc +low,high,2,more,small,low,unacc +high,low,3,4,med,low,unacc +med,high,3,4,big,low,unacc +low,high,5more,more,med,med,acc +low,low,2,2,med,high,unacc +med,low,5more,4,med,high,vgood +vhigh,med,3,2,small,med,unacc +vhigh,low,3,more,med,high,acc +high,med,2,4,small,high,acc +vhigh,med,4,2,small,low,unacc +vhigh,med,2,2,small,low,unacc +low,high,3,4,med,high,acc +high,med,4,4,small,med,unacc +high,vhigh,3,4,big,med,unacc +low,low,5more,more,med,high,vgood +vhigh,vhigh,2,4,small,low,unacc +med,med,2,more,big,high,vgood +med,low,3,more,big,high,vgood +med,high,3,more,med,high,acc +high,vhigh,3,more,small,med,unacc +vhigh,low,5more,more,med,high,acc +low,low,4,4,big,high,vgood +med,low,3,4,small,high,good +high,med,5more,2,small,high,unacc +low,vhigh,2,4,small,high,acc +high,vhigh,3,more,small,high,unacc +med,high,2,more,med,med,unacc +vhigh,vhigh,4,more,med,low,unacc +med,high,4,4,med,low,unacc +med,vhigh,5more,more,small,low,unacc +high,vhigh,5more,2,small,med,unacc +vhigh,high,4,2,big,med,unacc +vhigh,low,5more,4,small,high,acc +low,med,5more,2,big,med,unacc +med,high,3,4,big,med,acc +med,high,4,more,small,med,unacc +high,low,5more,more,small,high,acc +vhigh,vhigh,3,4,small,low,unacc +med,high,5more,more,small,med,unacc +high,high,5more,2,small,med,unacc +low,high,4,2,big,high,unacc +low,med,5more,4,big,high,vgood +med,low,2,4,med,med,acc +low,vhigh,3,4,big,high,acc +med,vhigh,3,more,big,low,unacc +med,vhigh,5more,2,big,low,unacc +med,high,2,2,med,med,unacc +vhigh,low,4,more,med,high,acc +vhigh,low,3,2,med,med,unacc +vhigh,vhigh,4,4,small,low,unacc +med,vhigh,3,2,big,high,unacc +low,high,5more,more,big,med,acc +med,med,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,high,unacc +high,vhigh,4,2,big,low,unacc +high,high,2,2,big,high,unacc +low,med,4,2,small,low,unacc +low,low,3,4,small,med,acc +high,med,3,more,med,high,acc +low,high,3,2,small,high,unacc +vhigh,low,5more,2,small,med,unacc +high,low,4,4,med,med,acc +vhigh,med,2,4,med,low,unacc +vhigh,high,2,2,med,med,unacc +low,vhigh,4,4,big,low,unacc +low,vhigh,2,more,med,high,acc +med,low,2,4,med,low,unacc +med,low,2,more,med,high,good +vhigh,med,5more,more,small,med,unacc +med,high,5more,2,big,low,unacc +med,med,4,more,med,med,acc +med,high,3,more,big,high,acc +med,high,2,2,big,med,unacc +med,low,4,2,med,high,unacc +med,high,4,2,med,low,unacc +vhigh,high,5more,more,big,high,unacc +high,high,5more,2,big,low,unacc +med,high,4,2,small,med,unacc +low,vhigh,4,4,med,high,acc +vhigh,low,4,4,big,high,acc +med,vhigh,5more,more,big,high,acc +vhigh,vhigh,4,4,big,med,unacc +high,med,5more,more,big,low,unacc +high,high,5more,4,med,low,unacc +low,high,4,more,med,med,acc +vhigh,low,3,4,big,med,acc +vhigh,med,3,4,small,med,unacc +high,high,3,4,med,high,acc +med,low,5more,4,big,low,unacc +low,med,3,more,med,low,unacc +low,vhigh,5more,4,big,med,acc +med,high,5more,more,med,med,acc +low,low,4,2,med,high,unacc +low,med,3,2,med,low,unacc +low,high,2,4,big,low,unacc +low,low,5more,2,med,high,unacc +high,vhigh,5more,4,small,med,unacc +med,high,4,4,big,high,acc +vhigh,vhigh,3,2,big,low,unacc +med,high,5more,2,med,med,unacc +vhigh,high,2,2,big,low,unacc +med,med,4,4,med,high,vgood +med,high,3,more,med,low,unacc +low,high,2,more,med,med,acc +low,med,4,2,med,low,unacc +med,vhigh,5more,4,big,low,unacc +vhigh,med,2,more,big,high,acc +low,vhigh,5more,4,small,high,acc +vhigh,low,5more,2,small,low,unacc +high,med,2,4,big,low,unacc +vhigh,high,5more,2,small,high,unacc +med,low,4,2,big,high,unacc +low,med,2,2,med,med,unacc +med,med,2,4,big,high,vgood +low,high,4,2,med,high,unacc +high,med,4,more,med,low,unacc +low,high,3,4,small,med,acc +med,vhigh,4,4,big,med,acc +high,low,4,4,small,high,acc +high,high,2,4,small,med,unacc +low,med,2,more,med,med,acc +med,vhigh,5more,2,med,high,unacc +low,med,5more,4,med,high,vgood +low,high,4,4,med,low,unacc +low,low,2,4,med,high,good +high,vhigh,2,2,med,low,unacc +high,vhigh,4,2,small,low,unacc +med,vhigh,4,more,big,high,acc +med,high,3,4,small,high,acc +vhigh,low,2,more,med,med,unacc +med,med,5more,4,med,med,acc +high,med,2,2,med,med,unacc +vhigh,high,2,2,big,high,unacc +high,high,2,2,med,high,unacc +high,med,5more,more,big,med,acc +vhigh,vhigh,3,4,med,low,unacc +low,vhigh,4,more,small,low,unacc +vhigh,vhigh,4,2,med,high,unacc +low,low,2,2,big,med,unacc +low,low,4,more,small,low,unacc +low,vhigh,2,4,small,med,unacc +med,med,5more,2,med,low,unacc +low,high,3,more,small,high,acc +high,vhigh,5more,4,med,med,unacc +med,low,3,4,med,med,acc +vhigh,vhigh,5more,2,med,med,unacc +low,vhigh,4,2,big,med,unacc +high,med,4,4,small,high,acc +low,low,3,more,small,low,unacc +vhigh,high,4,more,big,high,unacc +med,vhigh,5more,4,big,high,acc +vhigh,low,4,more,big,med,acc +med,low,2,4,med,high,good +med,high,2,4,big,high,acc +vhigh,vhigh,5more,4,small,low,unacc +med,low,5more,more,small,low,unacc +vhigh,low,4,2,med,high,unacc +med,low,2,more,big,high,vgood +low,high,5more,4,big,low,unacc +high,low,5more,2,small,med,unacc +vhigh,vhigh,4,4,med,high,unacc +vhigh,low,3,more,big,low,unacc +low,low,2,more,big,low,unacc +vhigh,med,5more,2,small,low,unacc +med,vhigh,3,2,big,low,unacc +vhigh,med,2,4,small,med,unacc +med,low,2,4,big,low,unacc +high,low,4,more,big,high,acc +vhigh,vhigh,2,more,med,low,unacc +low,med,5more,4,small,high,good +low,low,5more,2,big,med,unacc +vhigh,vhigh,3,more,med,high,unacc +vhigh,med,5more,more,big,med,acc +high,med,4,more,small,high,acc +low,low,2,more,small,low,unacc +low,low,2,2,big,high,unacc +med,vhigh,4,more,small,high,acc +high,high,3,more,med,med,acc +low,vhigh,5more,2,small,high,unacc +high,high,4,2,small,med,unacc +low,vhigh,4,4,big,med,acc +med,vhigh,3,2,small,med,unacc +low,vhigh,5more,4,big,low,unacc +vhigh,vhigh,5more,4,big,high,unacc +low,med,3,4,big,high,vgood +vhigh,high,2,2,med,high,unacc +med,vhigh,5more,more,med,low,unacc +low,low,2,more,med,med,acc +low,med,5more,more,med,high,vgood +high,med,5more,4,big,med,acc +vhigh,low,5more,2,med,high,unacc +vhigh,low,4,more,small,high,acc +high,vhigh,5more,4,small,high,unacc +low,med,5more,more,small,med,acc +high,vhigh,3,2,med,med,unacc +med,med,2,2,med,low,unacc +high,low,3,more,small,high,acc +med,high,4,more,med,high,acc +vhigh,med,5more,4,med,high,acc +high,high,4,4,small,high,acc +vhigh,vhigh,2,more,big,high,unacc +vhigh,low,4,2,med,med,unacc +med,low,5more,4,big,med,good +vhigh,low,3,2,small,med,unacc +high,med,4,4,med,high,acc +low,vhigh,5more,4,med,med,acc +low,vhigh,5more,more,big,low,unacc +med,high,4,4,big,med,acc +med,low,5more,2,small,med,unacc +high,med,3,2,big,med,unacc +high,med,4,4,big,med,acc +med,med,4,4,small,low,unacc +low,high,5more,2,big,low,unacc +vhigh,low,3,2,big,high,unacc +vhigh,high,3,4,big,high,unacc +high,vhigh,5more,2,med,low,unacc +med,low,4,4,big,low,unacc +low,med,5more,2,med,low,unacc +med,high,3,2,med,low,unacc +med,high,2,more,small,high,unacc +high,low,3,more,big,high,acc +med,vhigh,3,more,small,high,acc +low,vhigh,3,4,small,high,acc +low,low,5more,more,small,low,unacc +med,high,4,more,big,low,unacc +med,low,5more,4,med,med,good +low,med,5more,4,med,med,good +vhigh,med,2,more,small,low,unacc +vhigh,high,2,more,med,low,unacc +med,low,4,more,big,low,unacc +med,vhigh,4,4,small,low,unacc +high,vhigh,4,2,big,med,unacc +low,med,4,2,big,low,unacc +vhigh,high,3,more,small,med,unacc +high,low,5more,4,big,med,acc +med,med,2,2,med,high,unacc +high,high,4,2,med,high,unacc +high,med,2,2,big,high,unacc +high,low,4,2,med,low,unacc +low,med,2,2,small,high,unacc +high,high,2,4,small,high,acc +med,med,2,4,big,low,unacc +vhigh,vhigh,2,4,small,med,unacc +med,high,5more,4,big,med,acc +med,high,4,2,big,med,unacc +med,low,2,2,small,low,unacc +high,low,3,4,med,med,unacc +high,low,2,2,med,med,unacc +low,low,2,4,med,low,unacc +low,high,3,2,small,low,unacc +med,med,5more,4,small,high,acc +vhigh,low,4,4,med,high,acc +vhigh,vhigh,5more,2,small,low,unacc +med,high,2,more,big,high,acc +vhigh,high,4,4,med,med,unacc +vhigh,high,4,more,med,high,unacc +med,low,4,4,med,low,unacc +vhigh,med,3,2,big,high,unacc +med,med,4,more,small,low,unacc +high,vhigh,2,4,small,med,unacc +vhigh,low,4,2,big,low,unacc +med,low,4,4,med,med,good +vhigh,med,5more,2,med,med,unacc +vhigh,vhigh,4,2,med,med,unacc +med,high,3,4,big,high,acc +vhigh,vhigh,3,more,med,low,unacc +high,high,5more,more,big,med,acc +vhigh,med,5more,4,small,med,unacc +vhigh,high,4,4,small,low,unacc +high,vhigh,2,more,med,high,unacc +high,high,3,2,big,low,unacc +vhigh,vhigh,5more,more,small,high,unacc +high,vhigh,2,4,med,med,unacc +vhigh,vhigh,5more,4,med,low,unacc +high,low,5more,4,small,med,unacc +med,med,3,more,med,med,acc +vhigh,med,2,more,big,med,acc +med,high,2,4,med,med,unacc +vhigh,vhigh,3,4,small,med,unacc +high,high,2,4,big,low,unacc +med,vhigh,4,4,small,med,unacc +vhigh,low,2,2,small,med,unacc +high,low,3,4,small,med,unacc +high,low,5more,2,med,med,unacc +vhigh,low,2,4,med,med,unacc +low,high,2,more,med,high,acc +low,med,3,more,small,high,good +vhigh,low,2,more,med,high,acc +low,high,5more,2,med,med,unacc +low,high,5more,more,big,high,vgood +high,low,2,4,med,high,acc +med,med,3,2,med,high,unacc +vhigh,low,5more,4,big,low,unacc +vhigh,high,3,4,med,med,unacc +vhigh,vhigh,2,4,big,med,unacc +med,med,5more,4,big,high,vgood +low,med,4,more,med,high,vgood +high,high,3,2,big,high,unacc +high,vhigh,2,more,small,med,unacc +med,med,2,more,small,low,unacc +vhigh,low,2,4,big,med,acc +low,vhigh,2,2,big,med,unacc +med,low,4,more,small,high,good +high,med,3,2,small,med,unacc +med,vhigh,2,more,big,med,acc +high,low,3,more,big,med,acc +low,low,3,more,big,high,vgood +vhigh,low,4,4,med,med,acc +med,vhigh,2,more,med,med,unacc +med,med,3,more,small,low,unacc +vhigh,vhigh,3,more,small,low,unacc +vhigh,low,5more,4,big,med,acc +med,high,3,4,med,med,unacc +low,vhigh,3,more,med,high,acc +low,low,5more,4,big,med,good +vhigh,med,3,2,small,high,unacc +low,high,3,4,big,high,vgood +vhigh,low,2,2,big,low,unacc +med,low,3,more,big,med,good +vhigh,low,4,4,small,low,unacc +med,med,3,2,small,high,unacc +low,high,5more,2,big,med,unacc +low,low,2,2,small,low,unacc +vhigh,low,3,2,med,low,unacc +high,low,5more,more,med,low,unacc +med,high,5more,4,big,high,acc +low,low,5more,more,small,high,good +low,low,3,4,med,low,unacc +low,med,2,4,big,low,unacc +high,high,4,2,small,low,unacc +high,low,5more,more,big,high,acc +low,med,2,more,big,med,good +med,med,2,2,small,high,unacc +high,low,2,4,med,low,unacc +high,med,2,2,med,high,unacc +high,vhigh,5more,2,big,med,unacc +low,high,2,2,small,med,unacc +vhigh,low,5more,more,small,high,acc +med,vhigh,3,more,big,high,acc +vhigh,vhigh,4,more,small,low,unacc +low,vhigh,4,more,small,high,acc +high,vhigh,5more,2,big,high,unacc +low,med,5more,2,med,high,unacc +med,high,2,2,small,low,unacc +low,vhigh,5more,4,small,med,unacc +low,vhigh,3,more,small,med,unacc +high,med,2,4,small,low,unacc +high,vhigh,3,4,small,low,unacc +low,med,4,4,small,high,good +high,vhigh,3,more,big,med,unacc +high,vhigh,4,4,small,low,unacc +vhigh,low,5more,more,med,low,unacc +vhigh,med,4,4,small,med,unacc +med,low,2,more,med,low,unacc +high,low,2,2,big,low,unacc +high,med,2,4,small,med,unacc +vhigh,high,3,more,med,high,unacc +low,high,2,2,small,low,unacc +high,vhigh,3,4,med,high,unacc +low,high,5more,2,small,low,unacc +high,med,5more,4,med,high,acc +med,vhigh,3,2,med,high,unacc +vhigh,low,5more,4,med,med,acc +high,low,4,more,med,low,unacc +med,high,2,2,big,low,unacc +high,high,2,more,big,med,acc +low,low,5more,more,big,high,vgood +vhigh,high,4,2,small,med,unacc +high,low,2,4,big,high,acc +high,high,5more,2,med,low,unacc +med,med,4,4,big,high,vgood +low,vhigh,5more,2,big,high,unacc +high,vhigh,4,4,small,high,unacc +med,high,4,2,small,high,unacc +vhigh,med,4,more,big,med,acc +vhigh,high,3,2,small,low,unacc +med,med,3,2,big,med,unacc +med,low,5more,2,big,med,unacc +vhigh,high,5more,more,small,high,unacc +high,low,4,4,small,med,unacc +low,med,3,4,med,low,unacc +high,med,5more,more,med,low,unacc +low,med,3,more,small,med,acc +med,high,3,more,big,med,acc +med,med,4,more,small,med,acc +med,med,3,4,med,med,acc +vhigh,high,5more,2,med,med,unacc +med,low,5more,2,big,high,unacc +med,med,2,4,med,low,unacc +med,low,2,4,big,med,good +high,high,2,4,big,med,acc +low,med,4,more,big,high,vgood +high,vhigh,5more,4,med,high,unacc +vhigh,low,5more,4,small,low,unacc +low,low,5more,4,big,low,unacc +vhigh,low,2,2,big,high,unacc +med,med,4,4,med,low,unacc +low,vhigh,5more,2,small,low,unacc +med,low,2,more,small,high,unacc +high,vhigh,3,2,big,med,unacc +vhigh,vhigh,3,4,small,high,unacc +med,vhigh,2,4,big,med,acc +high,low,4,2,med,high,unacc +high,med,5more,2,med,low,unacc +low,high,4,more,big,med,acc +vhigh,low,5more,4,big,high,acc +low,med,5more,more,big,low,unacc +low,vhigh,4,more,big,low,unacc +vhigh,high,2,2,small,low,unacc +vhigh,low,2,2,med,high,unacc +vhigh,low,2,more,small,low,unacc +high,low,2,4,small,high,acc +med,med,5more,more,med,high,vgood +high,med,3,more,big,med,acc +high,med,4,4,small,low,unacc +high,low,4,2,med,med,unacc +med,med,3,4,big,low,unacc +med,vhigh,5more,4,small,low,unacc +high,high,4,2,big,low,unacc +vhigh,high,4,more,big,low,unacc +vhigh,med,4,4,big,low,unacc +high,vhigh,2,more,med,low,unacc +high,med,2,more,small,high,unacc +high,vhigh,5more,more,small,med,unacc +high,low,2,2,big,med,unacc +vhigh,high,4,more,small,low,unacc +low,vhigh,3,4,small,med,unacc +low,low,4,more,big,med,good +low,vhigh,2,more,small,med,unacc +med,high,5more,more,small,high,acc +vhigh,vhigh,2,more,med,med,unacc +low,med,3,4,small,med,acc +med,high,3,more,small,med,unacc +high,med,3,4,big,med,acc +low,med,3,2,small,high,unacc +low,low,3,2,big,med,unacc +med,high,3,more,med,med,acc +vhigh,med,3,4,med,high,acc +high,high,4,more,big,med,acc +med,vhigh,5more,2,med,med,unacc +high,vhigh,2,4,small,high,unacc +med,med,2,4,small,low,unacc +high,high,4,more,small,med,unacc +low,vhigh,4,more,big,med,acc +med,med,4,2,big,low,unacc +low,med,5more,2,small,low,unacc +low,low,2,2,small,high,unacc +high,vhigh,5more,2,small,low,unacc +vhigh,med,4,4,small,low,unacc +vhigh,low,5more,2,big,high,unacc +med,low,3,4,big,low,unacc +high,low,3,more,med,med,acc +low,high,5more,2,med,low,unacc +high,vhigh,3,more,med,low,unacc +med,med,2,4,med,med,acc +med,high,5more,more,big,high,acc +low,low,2,more,small,high,unacc +high,low,3,2,med,low,unacc +high,high,4,4,big,med,acc +vhigh,med,5more,more,small,low,unacc +vhigh,high,4,2,big,high,unacc +low,med,2,more,med,low,unacc +med,low,5more,4,small,med,acc +low,high,4,2,big,low,unacc +vhigh,med,4,2,med,low,unacc +med,high,5more,4,med,high,acc +med,high,2,4,small,high,acc +vhigh,med,2,4,big,low,unacc +low,med,2,more,med,high,good +low,vhigh,5more,2,big,low,unacc +med,vhigh,2,more,small,low,unacc +vhigh,high,5more,4,med,high,unacc +med,high,2,4,big,low,unacc +high,low,5more,more,small,low,unacc +high,low,5more,4,big,high,acc +med,med,5more,4,small,med,acc +vhigh,med,2,more,big,low,unacc +high,med,4,2,small,high,unacc +vhigh,vhigh,4,more,small,med,unacc +low,med,4,2,big,med,unacc +med,vhigh,2,4,med,med,unacc +med,high,5more,4,small,low,unacc +high,med,4,more,med,med,acc +vhigh,med,4,more,big,high,acc +vhigh,med,2,more,med,med,unacc +vhigh,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,small,high,unacc +med,med,5more,2,small,low,unacc +high,high,4,4,big,low,unacc +high,med,4,2,med,med,unacc +low,vhigh,2,2,med,med,unacc +low,high,5more,more,med,low,unacc +vhigh,vhigh,2,2,med,low,unacc +high,low,2,more,small,low,unacc +vhigh,vhigh,4,more,med,high,unacc +high,high,2,more,big,high,acc +vhigh,high,4,4,big,med,unacc +low,vhigh,4,4,big,high,acc +vhigh,high,3,more,big,high,unacc +vhigh,vhigh,5more,2,med,low,unacc +med,low,2,4,small,high,good +low,high,3,more,big,med,acc +vhigh,med,2,2,small,med,unacc +high,high,5more,more,small,high,acc +low,vhigh,2,more,small,high,unacc +vhigh,vhigh,5more,more,med,low,unacc +high,low,2,2,small,high,unacc +low,vhigh,3,more,med,low,unacc +low,low,5more,4,small,low,unacc +med,med,4,more,big,high,vgood +high,high,3,4,big,med,acc +low,low,2,4,small,med,acc +high,vhigh,2,2,big,high,unacc +high,high,4,4,small,low,unacc +vhigh,med,5more,2,big,high,unacc +high,vhigh,2,more,med,med,unacc +low,low,4,2,big,med,unacc +low,low,5more,4,med,low,unacc +high,vhigh,5more,more,med,high,unacc +vhigh,med,2,4,big,med,acc +med,low,2,2,big,low,unacc +low,low,4,more,med,low,unacc +high,high,5more,2,small,low,unacc +vhigh,low,5more,more,med,med,acc +high,low,3,2,small,low,unacc +med,low,3,4,big,high,vgood +vhigh,high,2,4,med,high,unacc +vhigh,med,3,4,med,low,unacc +med,vhigh,3,more,med,low,unacc +vhigh,med,5more,4,big,low,unacc +high,high,3,4,small,med,unacc +vhigh,high,3,more,small,low,unacc +vhigh,high,3,more,med,low,unacc +low,low,5more,2,med,low,unacc +low,vhigh,2,4,small,low,unacc +low,med,5more,4,small,med,acc +high,high,3,more,big,low,unacc +vhigh,vhigh,4,more,med,med,unacc +high,vhigh,4,more,small,low,unacc +vhigh,low,5more,2,big,low,unacc +vhigh,vhigh,4,4,med,med,unacc +low,high,5more,2,med,high,unacc +med,med,3,2,big,high,unacc +med,med,3,more,small,high,acc +vhigh,vhigh,3,more,big,high,unacc +vhigh,high,5more,2,small,low,unacc +med,vhigh,4,2,med,high,unacc +low,high,5more,4,big,med,acc +low,med,2,2,big,low,unacc +med,med,3,2,med,low,unacc +vhigh,med,4,more,med,med,acc +med,med,5more,4,big,med,acc +med,high,2,4,small,low,unacc +vhigh,vhigh,5more,more,big,med,unacc +med,vhigh,3,4,small,low,unacc +high,low,2,4,big,low,unacc +high,med,2,2,big,low,unacc +high,low,5more,2,med,low,unacc +low,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,med,low,unacc +med,vhigh,2,more,med,low,unacc +med,high,5more,4,med,med,acc +vhigh,vhigh,3,more,small,high,unacc +vhigh,med,4,4,small,high,acc +vhigh,high,2,more,med,med,unacc +med,low,4,4,small,low,unacc +low,high,3,4,med,med,acc +low,high,4,4,big,low,unacc +vhigh,med,5more,4,med,med,acc +vhigh,high,4,more,med,med,unacc +vhigh,low,3,more,small,med,unacc +vhigh,med,2,4,big,high,acc +med,low,5more,2,big,low,unacc +low,high,3,4,big,med,acc +low,high,5more,2,small,med,unacc +vhigh,med,4,more,small,high,acc +low,vhigh,2,more,big,low,unacc +high,vhigh,5more,more,big,med,unacc +low,low,2,more,big,high,vgood +high,high,4,4,small,med,unacc +low,med,4,4,big,high,vgood +low,high,3,more,big,high,vgood +med,vhigh,5more,4,small,high,acc +med,low,5more,4,small,low,unacc +med,low,4,2,big,med,unacc +vhigh,high,5more,2,big,high,unacc +low,vhigh,2,2,small,med,unacc +high,med,4,2,med,high,unacc +high,low,2,more,big,med,acc +low,med,5more,4,big,low,unacc +high,low,2,2,med,high,unacc +vhigh,high,2,4,big,low,unacc +low,vhigh,3,2,small,high,unacc +vhigh,high,5more,4,small,low,unacc +high,med,5more,4,small,med,unacc +med,high,5more,more,med,high,acc +med,low,2,more,big,med,good +low,high,5more,more,med,high,vgood +low,vhigh,4,4,med,med,acc +med,high,5more,4,small,med,unacc +high,vhigh,3,2,big,low,unacc +med,low,3,4,big,med,good +low,vhigh,5more,more,small,low,unacc +low,low,3,more,big,low,unacc +low,low,5more,more,med,med,good +high,low,2,2,big,high,unacc +low,med,5more,4,small,low,unacc +vhigh,low,3,2,small,high,unacc +low,med,3,more,big,high,vgood +med,low,5more,more,big,high,vgood +med,low,4,more,small,low,unacc +vhigh,low,4,2,small,low,unacc +high,high,4,2,small,high,unacc +high,med,3,2,med,high,unacc +low,med,2,more,small,med,unacc +low,low,3,more,med,low,unacc +high,med,4,2,big,med,unacc +vhigh,low,5more,4,small,med,unacc +vhigh,med,2,4,small,high,acc +med,med,4,more,med,high,vgood +vhigh,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,small,low,unacc +high,low,4,2,small,high,unacc +high,vhigh,3,2,small,low,unacc +high,vhigh,4,4,big,high,unacc +high,med,5more,2,small,low,unacc +high,med,2,4,med,high,acc +low,high,4,2,med,med,unacc +med,high,3,2,big,high,unacc +vhigh,med,3,2,med,med,unacc +med,high,4,more,big,high,acc +high,high,3,2,small,high,unacc +low,low,2,4,med,med,acc +low,vhigh,2,2,big,high,unacc +high,med,5more,4,small,low,unacc +low,high,4,more,big,high,vgood +vhigh,vhigh,5more,2,big,med,unacc +vhigh,high,5more,2,big,med,unacc +high,vhigh,5more,4,big,high,unacc +vhigh,vhigh,2,4,small,high,unacc +med,high,4,more,big,med,acc +vhigh,med,4,4,med,med,acc +med,vhigh,4,2,med,low,unacc +high,med,4,4,big,high,acc +high,high,4,4,big,high,acc +med,vhigh,3,4,small,high,acc +vhigh,med,4,4,big,high,acc +vhigh,low,2,more,big,med,acc +vhigh,med,3,more,med,med,acc +med,low,3,more,med,low,unacc +vhigh,low,3,4,med,med,unacc +low,med,3,4,big,low,unacc +med,med,4,4,small,high,acc +low,med,4,4,med,low,unacc +med,low,4,4,big,high,vgood +med,vhigh,2,2,big,high,unacc +med,low,2,2,big,med,unacc +vhigh,vhigh,3,2,med,low,unacc +vhigh,low,2,more,med,low,unacc +low,vhigh,5more,4,med,high,acc +high,med,3,4,small,med,unacc +high,high,5more,2,med,med,unacc +low,vhigh,3,2,med,low,unacc +high,vhigh,3,4,big,high,unacc +high,low,2,4,med,med,unacc +vhigh,med,3,2,big,med,unacc +high,vhigh,3,2,med,low,unacc +med,vhigh,3,4,med,low,unacc +low,med,5more,2,small,med,unacc +low,low,3,more,med,high,vgood +med,high,3,2,big,med,unacc +vhigh,med,3,4,small,low,unacc +med,vhigh,2,4,small,low,unacc +med,low,5more,more,small,high,good +vhigh,med,4,2,med,high,unacc +med,high,3,4,small,low,unacc +high,med,5more,more,small,high,acc +high,low,5more,4,small,low,unacc +med,high,4,2,med,high,unacc +low,low,3,2,small,med,unacc +high,vhigh,4,4,small,med,unacc +high,low,3,4,small,high,acc +high,high,2,4,med,low,unacc +med,vhigh,4,more,big,low,unacc +high,low,4,more,small,low,unacc +high,high,5more,4,small,med,unacc +vhigh,med,4,2,big,med,unacc +high,med,2,more,small,med,unacc +med,low,3,4,small,low,unacc +high,med,5more,more,med,high,acc +vhigh,high,4,more,small,med,unacc +low,vhigh,5more,4,med,low,unacc +vhigh,high,3,more,med,med,unacc +med,low,4,more,med,med,good +high,vhigh,3,4,med,low,unacc +low,med,4,more,big,med,good +med,vhigh,3,more,med,med,acc +high,med,2,2,med,low,unacc +vhigh,low,3,more,small,high,acc +high,vhigh,2,4,med,low,unacc +vhigh,high,2,2,small,med,unacc +low,vhigh,3,4,big,low,unacc +high,low,5more,2,big,low,unacc +med,med,5more,4,big,low,unacc +med,vhigh,2,2,big,low,unacc +med,med,2,2,big,low,unacc +vhigh,low,2,more,big,high,acc +low,med,2,4,med,low,unacc +high,vhigh,5more,2,big,low,unacc +vhigh,vhigh,4,4,big,high,unacc +vhigh,low,4,2,small,high,unacc +med,med,2,4,big,med,acc +low,low,4,4,big,med,good +high,high,2,2,big,low,unacc +vhigh,low,3,2,med,high,unacc +vhigh,vhigh,3,4,big,med,unacc +high,low,3,more,small,med,unacc +high,high,3,4,med,med,unacc +high,low,4,2,big,low,unacc +vhigh,high,2,4,big,med,unacc +med,low,2,2,med,low,unacc +low,vhigh,3,more,med,med,acc +high,med,3,more,big,high,acc +low,med,5more,more,big,high,vgood +low,med,5more,more,med,low,unacc +high,low,3,4,small,low,unacc +high,med,4,4,med,low,unacc +low,vhigh,2,2,small,high,unacc +low,low,2,2,small,med,unacc +low,med,4,more,med,low,unacc +high,low,5more,4,med,high,acc +med,low,3,2,small,high,unacc +high,high,4,4,med,med,acc +vhigh,vhigh,4,more,big,low,unacc +vhigh,high,5more,4,big,low,unacc +med,low,4,more,big,high,vgood +med,vhigh,5more,more,small,high,acc +vhigh,low,5more,2,small,high,unacc +vhigh,low,4,2,big,med,unacc +med,high,2,4,small,med,unacc +low,med,3,2,big,med,unacc +high,med,3,more,small,med,unacc +high,high,3,more,med,high,acc +vhigh,med,5more,more,med,high,acc +low,low,3,4,big,med,good +vhigh,vhigh,3,2,small,low,unacc +low,low,3,2,med,low,unacc +low,high,3,4,small,low,unacc +high,high,5more,4,big,high,acc +vhigh,low,2,4,med,low,unacc +med,high,4,2,big,low,unacc +vhigh,low,2,more,small,high,unacc +high,low,2,2,small,low,unacc +high,vhigh,5more,4,med,low,unacc +med,med,5more,4,med,low,unacc +high,vhigh,2,4,big,low,unacc +low,med,3,more,small,low,unacc +med,med,5more,2,big,med,unacc +vhigh,med,3,4,big,med,acc +low,high,3,4,big,low,unacc +med,med,2,more,med,low,unacc +vhigh,vhigh,3,4,big,low,unacc +med,low,4,2,small,high,unacc +med,med,3,4,med,low,unacc +vhigh,vhigh,4,4,small,med,unacc +vhigh,vhigh,5more,2,small,high,unacc +low,vhigh,3,2,big,low,unacc +high,vhigh,3,2,small,med,unacc +med,low,4,2,small,low,unacc +vhigh,vhigh,5more,more,big,high,unacc +low,med,2,4,small,med,acc +med,low,4,2,med,med,unacc +low,vhigh,4,4,small,med,unacc +high,vhigh,5more,2,med,med,unacc +med,vhigh,2,2,small,low,unacc +low,low,2,more,big,med,good +med,high,5more,2,med,high,unacc +high,med,3,4,big,high,acc +high,med,2,more,med,med,unacc +low,vhigh,5more,more,med,low,unacc +low,high,5more,4,med,med,acc +high,med,2,more,med,high,acc +med,med,5more,more,big,low,unacc +high,vhigh,5more,more,small,high,unacc +med,low,2,2,small,med,unacc +vhigh,low,3,more,med,med,acc +med,vhigh,5more,2,small,med,unacc +vhigh,med,4,2,big,high,unacc +low,med,4,more,small,high,good +vhigh,high,4,4,small,med,unacc +low,low,4,more,big,low,unacc +high,low,3,more,big,low,unacc +vhigh,vhigh,4,2,small,high,unacc +low,low,2,4,big,low,unacc +med,vhigh,5more,4,med,med,acc +low,high,5more,more,small,low,unacc +high,low,4,more,small,med,unacc +high,med,3,4,med,high,acc +high,low,3,4,med,high,acc +vhigh,vhigh,4,2,big,low,unacc +low,high,2,2,med,med,unacc +med,vhigh,3,2,small,high,unacc +high,high,2,more,small,med,unacc +low,med,4,4,big,med,good +med,high,3,2,small,med,unacc +low,med,3,2,med,med,unacc +low,vhigh,4,4,small,low,unacc +high,low,3,4,big,med,acc +low,med,2,more,big,low,unacc +high,med,4,more,small,med,unacc +vhigh,vhigh,2,4,med,med,unacc +low,high,3,2,big,high,unacc +high,low,2,more,big,low,unacc +vhigh,vhigh,3,4,med,high,unacc +high,low,3,4,big,low,unacc +high,low,5more,more,big,low,unacc +vhigh,low,5more,more,small,med,unacc +vhigh,high,2,more,small,high,unacc +high,low,5more,4,big,low,unacc +med,vhigh,5more,4,small,med,unacc +high,med,3,2,med,low,unacc +high,low,4,more,big,med,acc +high,low,5more,4,med,med,acc +low,high,4,more,med,high,vgood +low,high,4,2,small,low,unacc +vhigh,med,5more,4,big,med,acc +high,low,3,2,small,high,unacc +high,vhigh,3,4,big,low,unacc +vhigh,med,5more,4,med,low,unacc +low,med,4,4,big,low,unacc +vhigh,high,4,2,med,med,unacc +high,med,2,2,big,med,unacc +high,med,3,4,med,med,unacc +high,high,2,4,big,high,acc +high,vhigh,3,more,med,med,unacc +high,high,3,more,small,med,unacc +vhigh,high,3,more,big,low,unacc +med,vhigh,3,4,small,med,unacc +high,high,2,more,med,high,acc +high,vhigh,4,2,med,med,unacc +med,high,2,more,med,low,unacc +med,high,5more,4,big,low,unacc +high,high,3,2,small,med,unacc +high,vhigh,4,more,med,low,unacc +high,vhigh,5more,more,small,low,unacc +med,vhigh,4,2,med,med,unacc +med,high,2,2,small,med,unacc +vhigh,low,2,2,small,high,unacc +med,vhigh,3,more,med,high,acc +med,med,5more,more,small,med,acc +med,vhigh,2,4,small,med,unacc +med,high,4,2,big,high,unacc +med,vhigh,3,4,big,med,acc +high,med,2,2,small,high,unacc +low,vhigh,5more,2,small,med,unacc +med,med,4,2,med,low,unacc +vhigh,med,4,2,med,med,unacc +med,vhigh,4,4,big,high,acc +vhigh,med,3,2,big,low,unacc +high,vhigh,4,more,big,med,unacc +low,vhigh,5more,2,med,high,unacc +med,vhigh,5more,2,big,med,unacc +med,high,5more,2,big,high,unacc +vhigh,low,3,4,small,med,unacc +high,vhigh,2,4,big,high,unacc +med,vhigh,2,2,big,med,unacc +vhigh,med,2,2,med,low,unacc +vhigh,vhigh,2,4,med,low,unacc +vhigh,med,5more,2,big,low,unacc +high,vhigh,4,4,med,high,unacc +med,low,3,4,med,high,good +med,high,3,4,med,high,acc +high,low,3,2,med,med,unacc +vhigh,low,4,more,med,low,unacc +high,low,5more,4,med,low,unacc +med,vhigh,4,4,big,low,unacc +vhigh,high,3,4,big,low,unacc +low,high,5more,more,small,high,acc +low,low,2,2,big,low,unacc +vhigh,vhigh,5more,4,med,high,unacc +med,low,4,4,med,high,vgood +vhigh,med,5more,2,med,high,unacc +low,med,2,more,small,high,unacc +low,high,4,more,big,low,unacc +high,high,5more,4,big,low,unacc +low,vhigh,4,more,small,med,unacc +low,high,2,2,big,high,unacc +high,med,3,4,med,low,unacc +med,high,5more,2,med,low,unacc +high,high,3,4,big,low,unacc +vhigh,high,4,4,med,low,unacc +vhigh,low,2,more,big,low,unacc +med,vhigh,5more,more,big,med,acc +med,high,4,more,med,low,unacc +low,high,2,2,small,high,unacc +med,vhigh,3,4,big,low,unacc +low,low,3,4,med,high,good +med,vhigh,5more,2,big,high,unacc +high,med,2,4,med,low,unacc +med,low,5more,2,med,high,unacc +low,low,3,4,med,med,acc +high,high,3,more,med,low,unacc +high,high,5more,2,small,high,unacc +vhigh,vhigh,2,2,small,med,unacc +med,med,3,4,big,med,acc +high,low,4,more,med,med,acc +high,high,4,more,med,high,acc +med,med,5more,2,med,high,unacc +vhigh,low,3,2,big,low,unacc +low,vhigh,5more,more,big,med,acc +high,low,5more,more,big,med,acc +low,low,4,4,med,med,good +vhigh,med,3,more,small,low,unacc +low,vhigh,2,more,med,med,unacc +high,high,4,4,med,low,unacc +low,high,3,2,med,low,unacc +high,med,2,more,med,low,unacc +high,low,5more,2,small,low,unacc +high,high,5more,4,med,med,acc +med,high,4,4,med,med,acc +high,high,4,more,med,med,acc +low,low,3,more,small,med,acc +med,low,3,2,small,med,unacc +low,high,4,2,big,med,unacc +vhigh,high,3,4,small,low,unacc +med,vhigh,2,more,small,high,unacc +high,med,5more,4,big,high,acc +vhigh,low,4,more,big,high,acc +med,med,2,more,med,high,acc +med,high,5more,4,med,low,unacc +vhigh,vhigh,2,2,med,med,unacc +med,low,3,2,small,low,unacc +med,low,5more,more,big,med,good +high,vhigh,5more,4,small,low,unacc +low,high,2,more,big,med,acc +low,high,3,more,med,high,vgood +low,med,4,2,small,med,unacc +med,low,3,4,small,med,acc +med,high,4,more,med,med,acc +med,vhigh,3,2,med,low,unacc +low,vhigh,5more,2,big,med,unacc +high,med,4,2,big,low,unacc +med,vhigh,2,more,big,high,acc +vhigh,med,2,2,big,med,unacc +vhigh,vhigh,4,more,big,med,unacc +low,vhigh,3,4,small,low,unacc +med,low,2,2,small,high,unacc +low,med,3,2,small,med,unacc +low,vhigh,4,2,med,low,unacc +low,med,3,4,med,med,acc +vhigh,vhigh,4,2,med,low,unacc +high,med,3,2,med,med,unacc +low,high,2,more,big,low,unacc +high,low,4,4,small,low,unacc +low,med,4,4,med,high,vgood +high,med,4,more,small,low,unacc +high,high,3,2,med,high,unacc +low,low,3,2,big,high,unacc +low,high,2,more,small,med,unacc +high,med,2,more,big,med,acc +high,low,4,2,big,med,unacc +vhigh,low,4,more,small,low,unacc +vhigh,vhigh,3,more,med,med,unacc +high,vhigh,2,more,big,med,unacc +low,low,3,2,med,high,unacc +high,high,5more,2,med,high,unacc +high,med,4,4,big,low,unacc +med,vhigh,4,more,big,med,acc +vhigh,low,5more,2,med,med,unacc +high,vhigh,2,more,big,low,unacc +med,vhigh,5more,more,small,med,unacc +vhigh,vhigh,4,more,big,high,unacc +high,low,3,2,small,med,unacc +vhigh,med,2,2,big,low,unacc +low,low,4,4,med,high,vgood +low,med,3,4,med,high,good +high,vhigh,4,more,med,high,unacc +high,low,5more,2,big,med,unacc +high,med,3,2,big,low,unacc +vhigh,low,3,4,big,high,acc +vhigh,vhigh,3,more,big,low,unacc +high,low,5more,2,big,high,unacc +vhigh,low,3,4,med,low,unacc +vhigh,low,2,4,small,low,unacc +low,high,2,2,big,med,unacc +vhigh,med,5more,more,small,high,acc +low,high,2,2,med,high,unacc +med,med,4,4,med,med,acc +high,med,4,more,med,high,acc +vhigh,high,5more,more,med,med,unacc +low,high,2,4,big,high,vgood +vhigh,low,5more,more,big,high,acc +high,med,5more,2,med,med,unacc +low,vhigh,4,4,med,low,unacc +high,med,5more,more,small,low,unacc +high,high,5more,4,small,high,acc +vhigh,vhigh,5more,2,med,high,unacc +vhigh,med,3,more,small,med,unacc +med,vhigh,2,4,big,high,acc +vhigh,med,5more,2,big,med,unacc +med,med,3,more,big,med,acc +med,low,2,2,med,high,unacc +low,vhigh,3,2,med,med,unacc +vhigh,vhigh,4,more,small,high,unacc +med,med,3,4,small,high,acc +vhigh,med,5more,4,small,low,unacc +low,high,2,4,big,med,acc +low,med,2,4,small,low,unacc +low,vhigh,3,more,small,low,unacc +med,med,4,4,big,low,unacc +med,vhigh,2,4,med,low,unacc +med,med,3,more,med,high,vgood +med,vhigh,3,4,med,high,acc +low,med,2,4,big,high,vgood +high,vhigh,5more,more,big,low,unacc +vhigh,med,3,more,big,med,acc +high,med,3,4,small,low,unacc +vhigh,vhigh,2,2,big,high,unacc +vhigh,vhigh,5more,4,small,med,unacc +high,high,3,2,small,low,unacc +low,low,3,4,small,low,unacc +low,low,4,2,med,med,unacc +vhigh,vhigh,5more,more,big,low,unacc +low,med,3,more,med,high,vgood +low,med,2,4,small,high,good +med,high,4,4,small,med,unacc +high,high,2,2,small,med,unacc +low,vhigh,2,2,med,low,unacc +vhigh,low,5more,4,med,low,unacc +high,med,4,2,small,med,unacc +high,vhigh,2,2,small,low,unacc +med,low,3,more,big,low,unacc +high,high,3,4,small,high,acc +high,high,2,more,small,low,unacc +low,low,4,4,small,low,unacc +low,med,3,more,med,med,good +vhigh,med,2,2,med,med,unacc +vhigh,med,2,more,med,low,unacc +low,low,3,more,big,med,good +vhigh,med,4,2,big,low,unacc +vhigh,high,5more,more,big,low,unacc +high,high,4,more,small,high,acc +med,med,4,2,small,high,unacc +vhigh,vhigh,2,4,big,high,unacc +low,med,3,more,big,low,unacc +med,low,4,4,small,high,good +high,high,4,more,big,high,acc +med,med,3,2,big,low,unacc +low,high,5more,2,small,high,unacc +low,med,3,2,big,high,unacc +high,high,3,4,big,high,acc +high,low,2,2,small,med,unacc +high,vhigh,4,4,big,low,unacc +low,vhigh,4,more,med,med,acc +high,med,4,4,med,med,acc +vhigh,med,4,2,small,high,unacc +low,vhigh,3,more,big,high,acc +med,high,4,4,small,high,acc +high,vhigh,2,2,med,high,unacc +med,med,2,more,med,med,acc +vhigh,high,3,4,big,med,unacc +vhigh,high,5more,4,big,med,unacc +med,med,4,more,small,high,acc +med,low,5more,2,med,med,unacc +med,vhigh,4,more,med,low,unacc +vhigh,vhigh,2,more,small,high,unacc +vhigh,high,3,4,med,high,unacc +low,vhigh,4,2,med,med,unacc +med,vhigh,4,more,small,med,unacc +high,high,4,more,med,low,unacc +low,vhigh,2,more,big,high,acc +vhigh,med,3,more,big,high,acc +low,med,5more,2,big,low,unacc +low,vhigh,5more,more,med,med,acc +high,vhigh,4,2,med,low,unacc +high,high,5more,more,med,high,acc +vhigh,low,5more,4,med,high,acc +high,vhigh,5more,more,med,med,unacc +high,med,2,2,small,low,unacc +med,high,5more,more,small,low,unacc +med,med,4,more,big,low,unacc +low,med,4,more,small,med,acc +low,vhigh,3,more,big,low,unacc +high,low,5more,more,med,med,acc +vhigh,high,4,2,big,low,unacc +med,low,5more,2,small,low,unacc +vhigh,vhigh,5more,2,small,med,unacc +med,low,3,2,med,low,unacc +med,med,5more,more,big,med,acc +high,vhigh,4,more,small,med,unacc +med,med,5more,2,big,low,unacc +vhigh,med,3,2,med,low,unacc +high,low,4,4,big,high,acc +high,vhigh,3,more,med,high,unacc +vhigh,high,3,2,med,high,unacc +med,low,3,2,med,med,unacc +vhigh,high,3,2,big,low,unacc +vhigh,low,4,2,med,low,unacc +vhigh,high,4,2,med,low,unacc +med,high,4,4,big,low,unacc +vhigh,high,2,4,small,low,unacc +vhigh,med,5more,more,big,high,acc +med,med,2,2,big,high,unacc +med,high,4,2,med,med,unacc +med,high,2,2,med,high,unacc +med,low,2,4,small,low,unacc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..403e4648dc3b3c177525a76273864fc4069db6b4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/val.csv @@ -0,0 +1,173 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,5more,more,med,med,unacc +vhigh,high,2,4,small,med,unacc +high,high,5more,more,med,med,acc +low,high,3,2,med,med,unacc +med,med,3,2,med,med,unacc +med,med,5more,more,big,high,vgood +vhigh,high,2,4,med,low,unacc +high,vhigh,2,4,med,high,unacc +high,high,4,4,med,high,acc +vhigh,low,4,4,small,high,acc +vhigh,med,5more,more,med,low,unacc +med,high,2,more,big,med,acc +low,vhigh,4,2,big,low,unacc +med,med,4,2,med,high,unacc +low,med,2,2,small,low,unacc +high,high,3,more,small,low,unacc +med,vhigh,4,4,med,high,acc +high,high,2,2,med,med,unacc +high,low,3,4,big,high,acc +vhigh,vhigh,2,2,med,high,unacc +high,low,2,more,med,low,unacc +vhigh,low,2,4,med,high,acc +low,high,4,4,small,high,acc +low,med,5more,4,big,med,good +high,vhigh,2,2,big,low,unacc +med,high,2,4,med,high,acc +low,high,4,2,small,med,unacc +high,low,4,more,med,high,acc +vhigh,low,2,4,big,high,acc +high,vhigh,3,more,big,high,unacc +low,low,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,med,unacc +med,med,3,2,small,med,unacc +low,vhigh,3,4,med,med,unacc +vhigh,vhigh,5more,more,med,high,unacc +vhigh,high,5more,4,med,low,unacc +med,med,3,more,med,low,unacc +med,vhigh,3,4,big,high,acc +vhigh,high,3,more,small,high,unacc +high,vhigh,4,more,big,high,unacc +med,vhigh,5more,2,med,low,unacc +low,high,5more,2,big,high,unacc +vhigh,low,3,more,big,med,acc +low,med,4,2,med,med,unacc +vhigh,med,4,more,small,low,unacc +med,vhigh,4,2,small,med,unacc +low,low,3,more,small,high,good +low,high,3,more,small,low,unacc +vhigh,low,4,4,big,low,unacc +high,vhigh,4,more,big,low,unacc +vhigh,med,2,2,big,high,unacc +high,med,3,more,small,high,acc +high,low,4,4,big,low,unacc +vhigh,high,2,4,big,high,unacc +vhigh,high,5more,4,med,med,unacc +low,vhigh,3,2,small,med,unacc +low,vhigh,3,4,big,med,acc +low,vhigh,5more,2,med,low,unacc +vhigh,high,2,2,med,low,unacc +med,vhigh,5more,4,med,low,unacc +high,low,5more,2,med,high,unacc +med,vhigh,2,2,med,med,unacc +high,med,4,more,big,low,unacc +med,vhigh,2,more,small,med,unacc +low,vhigh,4,2,small,low,unacc +low,low,4,2,small,high,unacc +vhigh,high,5more,2,med,high,unacc +vhigh,low,4,4,med,low,unacc +high,low,4,more,big,low,unacc +low,high,3,more,med,med,acc +high,vhigh,4,4,med,low,unacc +med,vhigh,5more,more,big,low,unacc +med,med,5more,more,small,high,acc +med,med,5more,4,small,low,unacc +vhigh,med,4,2,small,med,unacc +low,high,5more,4,med,low,unacc +high,vhigh,2,2,big,med,unacc +med,high,2,more,med,high,acc +low,vhigh,4,more,med,low,unacc +high,high,3,2,med,med,unacc +high,vhigh,4,2,small,high,unacc +med,high,5more,2,small,low,unacc +low,high,4,4,med,high,vgood +high,med,3,2,small,high,unacc +vhigh,vhigh,4,4,small,high,unacc +vhigh,high,3,2,med,med,unacc +high,vhigh,3,4,small,med,unacc +vhigh,high,2,4,med,med,unacc +med,low,5more,more,big,low,unacc +low,high,3,more,small,med,acc +vhigh,high,3,4,small,high,unacc +vhigh,vhigh,2,4,big,low,unacc +low,low,4,more,med,med,good +med,low,2,more,small,low,unacc +high,vhigh,3,4,med,med,unacc +med,med,4,2,small,med,unacc +med,low,2,4,big,high,vgood +vhigh,vhigh,3,4,big,high,unacc +high,med,3,more,small,low,unacc +vhigh,high,2,more,big,low,unacc +high,vhigh,3,2,small,high,unacc +high,vhigh,4,more,med,med,unacc +vhigh,med,3,2,med,high,unacc +med,vhigh,4,2,big,med,unacc +med,high,5more,2,big,med,unacc +med,vhigh,3,2,big,med,unacc +high,low,2,4,small,low,unacc +low,low,4,more,big,high,vgood +low,vhigh,4,more,big,high,acc +low,low,4,4,big,low,unacc +high,high,5more,more,small,low,unacc +low,high,4,2,med,low,unacc +vhigh,low,5more,2,big,med,unacc +low,high,2,4,small,low,unacc +low,low,3,more,med,med,good +low,med,2,4,big,med,good +high,vhigh,2,2,small,high,unacc +med,vhigh,2,2,med,low,unacc +med,low,4,2,small,med,unacc +med,med,2,2,small,med,unacc +low,med,5more,2,small,high,unacc +vhigh,low,2,4,big,low,unacc +med,med,3,more,small,med,acc +med,high,2,2,small,high,unacc +low,vhigh,4,2,small,high,unacc +vhigh,med,3,more,small,high,acc +vhigh,med,3,4,big,low,unacc +med,med,2,4,small,high,acc +vhigh,high,3,2,big,med,unacc +med,high,2,more,big,low,unacc +low,high,5more,4,med,high,vgood +vhigh,high,4,4,med,high,unacc +low,low,3,4,big,high,vgood +low,med,5more,4,med,low,unacc +high,vhigh,4,2,big,high,unacc +vhigh,high,2,4,small,high,unacc +high,vhigh,4,2,med,high,unacc +high,high,5more,4,small,low,unacc +high,med,5more,4,big,low,unacc +vhigh,med,2,4,med,high,acc +vhigh,vhigh,3,4,med,med,unacc +med,high,3,2,small,high,unacc +high,med,2,4,big,med,acc +med,low,3,4,med,low,unacc +vhigh,vhigh,2,2,small,high,unacc +med,med,2,2,big,med,unacc +med,med,2,more,big,med,acc +vhigh,low,2,2,big,med,unacc +high,low,2,4,small,med,unacc +low,med,5more,more,med,med,good +low,low,5more,2,small,med,unacc +low,low,2,4,small,high,good +low,med,3,2,small,low,unacc +low,vhigh,2,4,med,med,unacc +high,high,4,more,small,low,unacc +med,low,5more,4,med,low,unacc +vhigh,med,2,2,small,high,unacc +med,high,4,4,med,high,acc +vhigh,low,3,4,big,low,unacc +med,high,4,2,small,low,unacc +high,high,2,2,small,low,unacc +low,high,4,4,big,med,acc +low,high,4,more,med,low,unacc +vhigh,vhigh,2,2,big,med,unacc +med,vhigh,4,4,med,low,unacc +vhigh,low,2,2,small,low,unacc +med,vhigh,3,2,small,low,unacc +high,high,4,2,big,high,unacc +low,low,5more,more,big,med,good +low,low,4,4,small,high,good +low,vhigh,2,4,big,high,acc +low,low,2,4,big,med,good diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/tvae/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..822d1716ce232f75848c21087fa1a43b3a656013 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/tvae/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/tvae/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/tvae/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..98355b0b3510310c8c01a8f7e6f7de54c06c517f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/tvae_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260321_061840/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/_tvae_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..7eb7cba117a317d2a16ecfe9d01f61f3c7cde77b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/_tvae_generate.py @@ -0,0 +1,18 @@ +import sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_rdt_inverse_fix import apply_ctgan_inverse_fix +apply_ctgan_inverse_fix() +import pandas as pd +from ctgan.synthesizers.tvae import TVAE +model = TVAE.load("/work/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/models_1epochs/tvae_1epochs.pt") +total = 1382 +chunk = min(50000, total) if total > 50000 else total +parts = [] +left = total +while left > 0: + take = min(chunk, left) + parts.append(model.sample(take)) + left -= take +samples = pd.concat(parts, ignore_index=True) if len(parts) > 1 else parts[0] +samples.to_csv("/work/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/tvae-c2-1382-20260419_190801.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/tvae-c2-1382-20260419_190801.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/_tvae_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..9ce16c24ec03e561330c54aab1ba7ee767578ca2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/_tvae_train.py @@ -0,0 +1,16 @@ +import json, sys +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +csv_path = "/work/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/train.csv" +meta_path = "/work/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/tvae_metadata.json" +save_path = "/work/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/models_1epochs/tvae_1epochs.pt" +epochs = 1 + +data, discrete_columns = read_csv(csv_path, meta_path, header=True, discrete=None) +print(f"[TVAE] Training on {len(data)} rows, {len(data.columns)} cols, epochs={epochs}") +model = TVAE(epochs=epochs, batch_size=500) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/gen_20260419_190801.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/gen_20260419_190801.log new file mode 100644 index 0000000000000000000000000000000000000000..5e6a6b5b0656a62ea4193540f56e24db18ee14ec --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/gen_20260419_190801.log @@ -0,0 +1 @@ +[TVAE] Generated 1382 rows (chunks=1) -> /work/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/tvae-c2-1382-20260419_190801.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/models_1epochs/train_20260414_051505.log b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/models_1epochs/train_20260414_051505.log new file mode 100644 index 0000000000000000000000000000000000000000..1be5c4d60bbca2e8d70aa54786b5785d8aed14b9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/models_1epochs/train_20260414_051505.log @@ -0,0 +1,2 @@ +[TVAE] Training on 1382 rows, 7 cols, epochs=1 +[TVAE] Model saved -> /work/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/models_1epochs/tvae_1epochs.pt diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bc3f71b11b119d3ef9d542f5ad74a56511638d00 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1509520168911cc4a1f9a88ff6d32966068e6982 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260414_051505", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/tvae-c2-1382-20260419_190801.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b3cf25081f629b35185af44e432085a72a9bb40b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/test.csv @@ -0,0 +1,175 @@ +buying,maint,doors,persons,lug_boot,safety,class +low,med,2,more,big,high,vgood +med,med,2,more,small,high,unacc +low,vhigh,5more,more,small,high,acc +vhigh,med,2,more,small,med,unacc +low,high,4,more,small,med,acc +low,med,4,2,med,high,unacc +vhigh,vhigh,2,more,big,low,unacc +med,med,4,2,small,low,unacc +high,vhigh,5more,2,small,high,unacc +med,med,2,2,med,med,unacc +med,vhigh,5more,4,med,high,acc +med,low,3,2,big,low,unacc +high,low,2,more,big,high,acc +high,low,3,2,big,low,unacc +vhigh,high,2,more,med,high,unacc +med,low,3,2,big,med,unacc +low,low,5more,4,small,high,good +low,vhigh,5more,4,big,high,acc +vhigh,low,2,2,med,med,unacc +med,low,5more,4,big,high,vgood +vhigh,med,5more,4,big,high,acc +vhigh,med,2,4,small,low,unacc +vhigh,vhigh,5more,4,big,med,unacc +low,med,3,4,small,low,unacc +vhigh,high,4,more,big,med,unacc +med,high,3,4,med,low,unacc +med,high,4,more,small,low,unacc +vhigh,med,4,4,med,high,acc +low,med,5more,more,big,med,good +high,med,5more,4,med,med,acc +high,low,4,2,big,high,unacc +med,low,2,2,big,high,unacc +med,vhigh,2,4,med,high,acc +med,low,2,4,small,med,acc +low,med,2,more,small,low,unacc +high,vhigh,5more,more,big,high,unacc +med,med,2,more,big,low,unacc +low,low,5more,2,small,high,unacc +low,med,2,4,med,high,good +high,vhigh,4,more,small,high,unacc +low,low,5more,more,small,med,acc +high,high,2,2,med,low,unacc +vhigh,med,4,more,med,high,acc +med,vhigh,4,more,med,med,acc +low,vhigh,2,more,med,low,unacc +high,low,4,2,small,med,unacc +med,high,3,more,big,low,unacc +low,vhigh,3,more,small,high,acc +high,vhigh,2,2,med,med,unacc +high,high,5more,more,big,low,unacc +low,high,4,4,med,med,acc +med,med,5more,2,small,med,unacc +high,vhigh,2,2,small,med,unacc +vhigh,high,3,2,small,med,unacc +high,high,2,4,small,low,unacc +high,low,4,4,med,low,unacc +high,high,5more,more,big,high,acc +low,low,5more,4,small,med,acc +high,vhigh,3,4,small,high,unacc +vhigh,high,2,2,big,med,unacc +low,med,4,more,big,low,unacc +low,med,4,2,big,high,unacc +high,med,2,4,big,high,acc +low,vhigh,5more,more,big,high,acc +high,vhigh,2,more,small,low,unacc +med,med,4,2,big,med,unacc +low,high,2,2,big,low,unacc +low,vhigh,2,4,big,low,unacc +high,high,2,4,med,med,unacc +high,low,2,more,med,med,unacc +med,vhigh,5more,2,small,high,unacc +vhigh,low,2,4,small,high,acc +low,low,5more,more,med,low,unacc +low,high,5more,4,small,low,unacc +med,med,2,4,med,high,acc +vhigh,low,3,2,small,low,unacc +low,vhigh,2,2,med,high,unacc +med,low,4,2,big,low,unacc +vhigh,high,3,4,med,low,unacc +low,vhigh,3,2,med,high,unacc +low,vhigh,5more,more,med,high,acc +low,high,3,2,big,med,unacc +high,high,2,2,big,med,unacc +low,vhigh,4,more,med,high,acc +vhigh,low,5more,more,big,med,acc +high,med,4,more,big,high,acc +high,low,2,2,med,low,unacc +vhigh,low,2,4,small,med,unacc +high,med,5more,more,small,med,unacc +low,vhigh,2,2,big,low,unacc +med,vhigh,4,4,small,high,acc +low,low,4,4,small,med,acc +low,low,4,2,med,low,unacc +vhigh,high,5more,more,small,low,unacc +low,low,5more,2,big,low,unacc +vhigh,high,4,2,small,high,unacc +high,high,3,more,big,high,acc +low,med,4,more,small,low,unacc +high,vhigh,3,2,big,high,unacc +low,vhigh,4,2,med,high,unacc +vhigh,vhigh,5more,4,med,med,unacc +vhigh,high,3,2,big,high,unacc +low,high,3,4,med,low,unacc +vhigh,low,4,4,big,med,acc +med,med,5more,more,med,med,acc +high,med,5more,4,med,low,unacc +med,low,4,more,big,med,good +med,low,5more,more,small,med,acc +high,high,4,2,big,med,unacc +med,med,3,more,big,low,unacc +vhigh,high,4,2,small,low,unacc +high,low,2,more,small,high,unacc +vhigh,med,3,4,med,med,unacc +med,med,2,more,small,med,unacc +med,vhigh,4,more,med,high,acc +low,high,5more,4,small,med,acc +vhigh,vhigh,5more,2,big,high,unacc +low,low,3,2,big,low,unacc +high,high,2,2,small,high,unacc +med,low,3,more,med,med,good +high,med,4,2,med,low,unacc +high,med,5more,2,big,med,unacc +vhigh,high,5more,4,small,med,unacc +high,low,2,more,med,high,acc +vhigh,high,5more,2,small,med,unacc +low,low,5more,4,big,high,vgood +high,med,3,4,big,low,unacc +low,med,3,more,big,med,good +high,vhigh,2,4,small,low,unacc +vhigh,med,5more,more,med,med,acc +low,low,4,more,small,med,acc +high,med,3,more,med,med,acc +med,vhigh,2,2,small,high,unacc +low,high,2,more,big,high,vgood +vhigh,low,2,2,med,low,unacc +low,low,3,2,med,med,unacc +low,med,3,4,big,med,good +vhigh,vhigh,2,4,med,high,unacc +low,low,3,4,small,high,good +high,high,3,2,med,low,unacc +med,low,2,more,small,med,unacc +med,vhigh,4,2,small,high,unacc +high,vhigh,2,more,small,high,unacc +high,low,5more,more,med,high,acc +low,low,5more,4,med,high,vgood +low,high,3,2,big,low,unacc +low,vhigh,3,2,big,high,unacc +low,high,4,4,small,low,unacc +vhigh,low,5more,2,med,low,unacc +med,med,4,4,big,med,acc +vhigh,vhigh,4,2,small,med,unacc +med,low,3,more,small,low,unacc +med,high,4,4,small,low,unacc +high,vhigh,3,more,small,low,unacc +high,vhigh,2,4,big,med,unacc +vhigh,high,5more,2,med,low,unacc +vhigh,vhigh,4,2,big,high,unacc +vhigh,vhigh,4,4,med,low,unacc +med,vhigh,2,2,small,med,unacc +med,low,2,more,med,med,acc +vhigh,high,4,4,big,high,unacc +med,med,3,4,small,med,acc +low,med,2,2,med,high,unacc +low,vhigh,5more,4,small,low,unacc +vhigh,high,5more,more,med,low,unacc +low,high,5more,more,big,low,unacc +vhigh,med,4,4,big,med,acc +high,vhigh,2,more,big,high,unacc +high,vhigh,4,4,big,med,unacc +high,high,2,more,big,low,unacc +low,med,2,2,big,med,unacc +vhigh,vhigh,3,more,big,med,unacc +vhigh,med,2,4,med,med,unacc +low,vhigh,2,4,med,high,acc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a7dd506a8ec04e784f7aa4b9fe95bca40b4e9722 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/train.csv @@ -0,0 +1,1383 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,2,2,small,low,unacc +med,low,5more,4,small,high,good +med,med,3,2,small,low,unacc +med,med,4,4,small,med,acc +high,low,2,4,big,med,acc +med,vhigh,5more,2,small,low,unacc +high,med,2,more,small,low,unacc +low,med,5more,more,small,high,good +med,high,5more,4,small,high,acc +med,vhigh,3,2,med,med,unacc +vhigh,low,3,more,big,high,acc +vhigh,high,3,2,small,high,unacc +low,low,4,more,small,high,good +vhigh,low,4,more,small,med,unacc +low,high,2,4,med,med,acc +low,low,2,4,big,high,vgood +low,med,4,more,med,med,good +high,med,5more,2,big,high,unacc +med,vhigh,2,4,big,low,unacc +vhigh,med,4,more,med,low,unacc +low,low,2,4,small,low,unacc +low,high,4,4,big,high,vgood +low,high,3,2,med,high,unacc +vhigh,vhigh,5more,more,small,med,unacc +low,med,4,4,med,med,good +vhigh,low,3,4,small,low,unacc +vhigh,vhigh,4,2,big,med,unacc +high,vhigh,4,2,small,med,unacc +vhigh,low,4,more,med,med,acc +med,med,2,4,small,med,acc +low,high,5more,4,small,high,acc +vhigh,high,2,more,small,low,unacc +med,high,5more,more,big,med,acc +vhigh,med,3,more,med,low,unacc +low,low,4,2,small,low,unacc +med,high,2,2,big,high,unacc +low,med,3,2,med,high,unacc +low,vhigh,2,4,big,med,acc +low,med,4,2,small,high,unacc +med,vhigh,4,2,big,high,unacc +med,high,2,more,small,med,unacc +med,low,3,2,med,high,unacc +med,high,2,more,small,low,unacc +vhigh,med,3,4,big,high,acc +low,high,2,4,med,low,unacc +low,low,2,more,med,high,good +vhigh,med,5more,4,small,high,acc +med,low,4,more,small,med,acc +vhigh,low,4,4,small,med,unacc +high,med,2,2,small,med,unacc +low,vhigh,2,more,big,med,acc +med,vhigh,4,4,med,med,acc +vhigh,high,2,more,big,high,unacc +vhigh,vhigh,5more,more,small,low,unacc +high,high,2,more,med,low,unacc +low,vhigh,5more,more,small,med,unacc +med,high,2,2,med,low,unacc +vhigh,low,3,4,small,high,acc +low,low,3,4,big,low,unacc +low,low,4,2,big,low,unacc +vhigh,vhigh,2,more,small,med,unacc +vhigh,vhigh,5more,4,small,high,unacc +med,low,2,2,med,med,unacc +vhigh,med,4,more,big,low,unacc +low,low,5more,more,big,low,unacc +med,high,5more,2,small,med,unacc +high,med,5more,2,small,med,unacc +high,med,3,2,small,low,unacc +low,low,4,2,big,high,unacc +med,med,5more,4,med,high,vgood +low,vhigh,4,4,small,high,acc +med,high,3,2,med,high,unacc +vhigh,high,5more,4,small,high,unacc +high,vhigh,5more,2,med,high,unacc +vhigh,vhigh,3,more,small,med,unacc +high,med,5more,more,med,med,acc +vhigh,low,5more,more,small,low,unacc +vhigh,med,2,more,small,high,unacc +med,vhigh,5more,more,med,high,acc +med,low,3,more,med,high,vgood +high,high,4,2,med,med,unacc +high,med,5more,2,med,high,unacc +vhigh,high,3,2,med,low,unacc +med,med,5more,2,med,med,unacc +low,high,2,more,med,low,unacc +low,vhigh,2,2,small,low,unacc +med,med,5more,more,med,low,unacc +med,high,2,4,med,low,unacc +high,high,4,more,big,low,unacc +high,low,4,4,big,med,acc +med,med,4,more,big,med,acc +low,high,4,4,small,med,acc +vhigh,med,2,more,med,high,acc +med,med,5more,more,small,low,unacc +high,low,3,more,med,high,acc +high,high,4,2,med,low,unacc +low,low,2,more,med,low,unacc +vhigh,vhigh,3,2,small,high,unacc +vhigh,vhigh,2,2,big,low,unacc +med,med,3,more,big,high,vgood +med,low,5more,2,med,low,unacc +low,med,2,4,med,med,acc +high,med,5more,more,big,high,acc +med,low,5more,more,med,med,good +med,high,3,2,med,med,unacc +med,high,5more,more,big,low,unacc +vhigh,med,3,4,small,high,acc +low,low,3,2,small,high,unacc +high,med,3,more,big,low,unacc +med,vhigh,3,4,med,med,unacc +high,high,5more,more,small,med,unacc +med,low,4,2,med,low,unacc +vhigh,high,2,more,small,med,unacc +low,med,2,2,med,low,unacc +vhigh,low,2,more,small,med,unacc +vhigh,vhigh,4,2,small,low,unacc +med,low,4,more,med,low,unacc +med,high,3,4,small,med,unacc +med,vhigh,2,more,big,low,unacc +vhigh,high,4,4,big,low,unacc +med,vhigh,4,2,small,low,unacc +vhigh,med,5more,2,small,med,unacc +vhigh,vhigh,3,2,big,high,unacc +med,high,3,more,small,high,acc +med,vhigh,3,more,small,low,unacc +low,vhigh,3,2,small,low,unacc +vhigh,high,2,more,big,med,unacc +low,low,5more,2,small,low,unacc +low,med,2,2,big,high,unacc +med,low,5more,more,med,low,unacc +high,high,5more,2,big,med,unacc +high,med,5more,4,small,high,acc +low,vhigh,3,more,big,med,acc +low,med,5more,2,big,high,unacc +med,med,3,4,big,high,vgood +low,high,3,4,small,high,acc +high,low,3,more,med,low,unacc +high,low,5more,2,small,high,unacc +med,low,5more,more,med,high,vgood +low,med,4,4,small,med,acc +low,med,3,4,small,high,good +med,med,5more,2,small,high,unacc +low,vhigh,3,4,med,high,acc +low,med,5more,2,med,med,unacc +low,low,5more,4,med,med,good +vhigh,high,5more,more,small,med,unacc +vhigh,med,2,2,med,high,unacc +vhigh,high,3,4,small,med,unacc +high,high,2,4,med,high,acc +vhigh,med,3,2,small,low,unacc +high,low,3,2,big,med,unacc +vhigh,low,4,more,big,low,unacc +low,high,3,2,small,med,unacc +vhigh,high,4,more,small,high,unacc +low,high,2,4,small,med,acc +med,low,3,more,small,high,good +high,low,4,4,med,high,acc +vhigh,vhigh,4,4,big,low,unacc +med,low,4,4,big,med,good +low,med,3,2,big,low,unacc +low,low,4,2,small,med,unacc +med,low,5more,2,small,high,unacc +low,high,4,more,small,low,unacc +high,high,3,more,big,med,acc +med,high,5more,more,med,low,unacc +vhigh,high,4,4,small,high,unacc +med,low,3,more,small,med,acc +med,low,3,2,big,high,unacc +vhigh,low,3,more,med,low,unacc +med,med,4,more,med,low,unacc +med,vhigh,2,2,med,high,unacc +high,med,5more,2,big,low,unacc +vhigh,vhigh,3,2,small,med,unacc +high,low,3,more,small,low,unacc +med,high,3,2,small,low,unacc +low,high,5more,4,big,high,vgood +med,low,4,more,med,high,vgood +med,high,3,more,small,low,unacc +vhigh,med,4,4,med,low,unacc +low,high,2,4,med,high,acc +vhigh,low,4,2,small,med,unacc +vhigh,low,3,more,small,low,unacc +high,high,3,2,big,med,unacc +med,low,4,4,small,med,acc +med,vhigh,3,more,small,med,unacc +med,high,2,4,big,med,acc +low,vhigh,3,4,med,low,unacc +med,vhigh,5more,more,med,med,acc +vhigh,high,5more,more,big,med,unacc +high,med,2,more,big,high,acc +high,low,4,more,small,high,acc +low,vhigh,4,2,big,high,unacc +low,high,4,more,small,high,acc +high,high,3,more,small,high,acc +vhigh,high,5more,2,big,low,unacc +high,med,3,4,small,high,acc +low,high,2,4,small,high,acc +high,med,3,more,med,low,unacc +low,low,5more,2,med,med,unacc +vhigh,low,3,2,big,med,unacc +low,high,4,2,small,high,unacc +high,high,3,4,small,low,unacc +vhigh,low,4,2,big,high,unacc +med,vhigh,5more,4,big,med,acc +low,high,3,more,med,low,unacc +low,low,3,2,small,low,unacc +low,low,2,more,small,med,unacc +vhigh,low,3,4,med,high,acc +high,low,3,2,med,high,unacc +med,high,5more,2,small,high,unacc +low,med,2,2,small,med,unacc +med,high,4,more,small,high,acc +high,high,5more,4,big,med,acc +low,med,5more,more,small,low,unacc +low,high,2,2,med,low,unacc +low,low,2,2,med,low,unacc +vhigh,high,2,2,small,high,unacc +high,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,big,med,unacc +low,high,3,more,big,low,unacc +high,vhigh,3,2,med,high,unacc +vhigh,low,5more,more,big,low,unacc +high,low,4,2,small,low,unacc +vhigh,high,5more,more,med,high,unacc +vhigh,vhigh,5more,2,big,low,unacc +low,high,5more,more,small,med,acc +high,med,4,more,big,med,acc +high,high,2,more,med,med,unacc +high,high,5more,2,big,high,unacc +med,vhigh,4,2,big,low,unacc +low,low,4,more,med,high,vgood +high,med,2,4,med,med,unacc +high,low,5more,4,small,high,acc +high,vhigh,4,4,med,med,unacc +low,med,4,4,small,low,unacc +vhigh,high,4,2,med,high,unacc +med,vhigh,2,more,med,high,acc +vhigh,med,3,more,med,high,acc +low,vhigh,2,more,small,low,unacc +high,vhigh,5more,4,big,med,unacc +med,med,3,4,small,low,unacc +high,high,5more,more,med,low,unacc +med,med,2,2,small,low,unacc +high,low,5more,more,small,med,unacc +low,vhigh,2,4,med,low,unacc +high,high,5more,4,med,high,acc +high,med,2,more,big,low,unacc +vhigh,med,4,more,small,med,unacc +med,low,2,more,big,low,unacc +med,med,4,2,med,med,unacc +high,low,2,more,small,med,unacc +vhigh,high,4,more,med,low,unacc +low,vhigh,5more,2,med,med,unacc +high,vhigh,5more,more,med,low,unacc +med,high,3,2,big,low,unacc +vhigh,high,3,more,big,med,unacc +high,vhigh,3,more,big,low,unacc +med,med,3,4,med,high,acc +low,low,4,4,med,low,unacc +vhigh,med,5more,more,big,low,unacc +high,med,3,2,big,high,unacc +high,med,4,2,small,low,unacc +high,high,3,4,med,low,unacc +high,high,2,more,small,high,unacc +low,low,2,2,med,med,unacc +med,vhigh,2,4,small,high,acc +med,med,4,2,big,high,unacc +vhigh,high,5more,4,big,high,unacc +low,vhigh,4,2,small,med,unacc +med,vhigh,4,more,small,low,unacc +med,vhigh,3,more,big,med,acc +high,med,4,2,big,high,unacc +high,low,3,2,big,high,unacc +vhigh,med,3,more,big,low,unacc +vhigh,vhigh,2,more,med,high,unacc +low,high,2,more,small,high,unacc +low,high,2,more,small,low,unacc +high,low,3,4,med,low,unacc +med,high,3,4,big,low,unacc +low,high,5more,more,med,med,acc +low,low,2,2,med,high,unacc +med,low,5more,4,med,high,vgood +vhigh,med,3,2,small,med,unacc +vhigh,low,3,more,med,high,acc +high,med,2,4,small,high,acc +vhigh,med,4,2,small,low,unacc +vhigh,med,2,2,small,low,unacc +low,high,3,4,med,high,acc +high,med,4,4,small,med,unacc +high,vhigh,3,4,big,med,unacc +low,low,5more,more,med,high,vgood +vhigh,vhigh,2,4,small,low,unacc +med,med,2,more,big,high,vgood +med,low,3,more,big,high,vgood +med,high,3,more,med,high,acc +high,vhigh,3,more,small,med,unacc +vhigh,low,5more,more,med,high,acc +low,low,4,4,big,high,vgood +med,low,3,4,small,high,good +high,med,5more,2,small,high,unacc +low,vhigh,2,4,small,high,acc +high,vhigh,3,more,small,high,unacc +med,high,2,more,med,med,unacc +vhigh,vhigh,4,more,med,low,unacc +med,high,4,4,med,low,unacc +med,vhigh,5more,more,small,low,unacc +high,vhigh,5more,2,small,med,unacc +vhigh,high,4,2,big,med,unacc +vhigh,low,5more,4,small,high,acc +low,med,5more,2,big,med,unacc +med,high,3,4,big,med,acc +med,high,4,more,small,med,unacc +high,low,5more,more,small,high,acc +vhigh,vhigh,3,4,small,low,unacc +med,high,5more,more,small,med,unacc +high,high,5more,2,small,med,unacc +low,high,4,2,big,high,unacc +low,med,5more,4,big,high,vgood +med,low,2,4,med,med,acc +low,vhigh,3,4,big,high,acc +med,vhigh,3,more,big,low,unacc +med,vhigh,5more,2,big,low,unacc +med,high,2,2,med,med,unacc +vhigh,low,4,more,med,high,acc +vhigh,low,3,2,med,med,unacc +vhigh,vhigh,4,4,small,low,unacc +med,vhigh,3,2,big,high,unacc +low,high,5more,more,big,med,acc +med,med,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,high,unacc +high,vhigh,4,2,big,low,unacc +high,high,2,2,big,high,unacc +low,med,4,2,small,low,unacc +low,low,3,4,small,med,acc +high,med,3,more,med,high,acc +low,high,3,2,small,high,unacc +vhigh,low,5more,2,small,med,unacc +high,low,4,4,med,med,acc +vhigh,med,2,4,med,low,unacc +vhigh,high,2,2,med,med,unacc +low,vhigh,4,4,big,low,unacc +low,vhigh,2,more,med,high,acc +med,low,2,4,med,low,unacc +med,low,2,more,med,high,good +vhigh,med,5more,more,small,med,unacc +med,high,5more,2,big,low,unacc +med,med,4,more,med,med,acc +med,high,3,more,big,high,acc +med,high,2,2,big,med,unacc +med,low,4,2,med,high,unacc +med,high,4,2,med,low,unacc +vhigh,high,5more,more,big,high,unacc +high,high,5more,2,big,low,unacc +med,high,4,2,small,med,unacc +low,vhigh,4,4,med,high,acc +vhigh,low,4,4,big,high,acc +med,vhigh,5more,more,big,high,acc +vhigh,vhigh,4,4,big,med,unacc +high,med,5more,more,big,low,unacc +high,high,5more,4,med,low,unacc +low,high,4,more,med,med,acc +vhigh,low,3,4,big,med,acc +vhigh,med,3,4,small,med,unacc +high,high,3,4,med,high,acc +med,low,5more,4,big,low,unacc +low,med,3,more,med,low,unacc +low,vhigh,5more,4,big,med,acc +med,high,5more,more,med,med,acc +low,low,4,2,med,high,unacc +low,med,3,2,med,low,unacc +low,high,2,4,big,low,unacc +low,low,5more,2,med,high,unacc +high,vhigh,5more,4,small,med,unacc +med,high,4,4,big,high,acc +vhigh,vhigh,3,2,big,low,unacc +med,high,5more,2,med,med,unacc +vhigh,high,2,2,big,low,unacc +med,med,4,4,med,high,vgood +med,high,3,more,med,low,unacc +low,high,2,more,med,med,acc +low,med,4,2,med,low,unacc +med,vhigh,5more,4,big,low,unacc +vhigh,med,2,more,big,high,acc +low,vhigh,5more,4,small,high,acc +vhigh,low,5more,2,small,low,unacc +high,med,2,4,big,low,unacc +vhigh,high,5more,2,small,high,unacc +med,low,4,2,big,high,unacc +low,med,2,2,med,med,unacc +med,med,2,4,big,high,vgood +low,high,4,2,med,high,unacc +high,med,4,more,med,low,unacc +low,high,3,4,small,med,acc +med,vhigh,4,4,big,med,acc +high,low,4,4,small,high,acc +high,high,2,4,small,med,unacc +low,med,2,more,med,med,acc +med,vhigh,5more,2,med,high,unacc +low,med,5more,4,med,high,vgood +low,high,4,4,med,low,unacc +low,low,2,4,med,high,good +high,vhigh,2,2,med,low,unacc +high,vhigh,4,2,small,low,unacc +med,vhigh,4,more,big,high,acc +med,high,3,4,small,high,acc +vhigh,low,2,more,med,med,unacc +med,med,5more,4,med,med,acc +high,med,2,2,med,med,unacc +vhigh,high,2,2,big,high,unacc +high,high,2,2,med,high,unacc +high,med,5more,more,big,med,acc +vhigh,vhigh,3,4,med,low,unacc +low,vhigh,4,more,small,low,unacc +vhigh,vhigh,4,2,med,high,unacc +low,low,2,2,big,med,unacc +low,low,4,more,small,low,unacc +low,vhigh,2,4,small,med,unacc +med,med,5more,2,med,low,unacc +low,high,3,more,small,high,acc +high,vhigh,5more,4,med,med,unacc +med,low,3,4,med,med,acc +vhigh,vhigh,5more,2,med,med,unacc +low,vhigh,4,2,big,med,unacc +high,med,4,4,small,high,acc +low,low,3,more,small,low,unacc +vhigh,high,4,more,big,high,unacc +med,vhigh,5more,4,big,high,acc +vhigh,low,4,more,big,med,acc +med,low,2,4,med,high,good +med,high,2,4,big,high,acc +vhigh,vhigh,5more,4,small,low,unacc +med,low,5more,more,small,low,unacc +vhigh,low,4,2,med,high,unacc +med,low,2,more,big,high,vgood +low,high,5more,4,big,low,unacc +high,low,5more,2,small,med,unacc +vhigh,vhigh,4,4,med,high,unacc +vhigh,low,3,more,big,low,unacc +low,low,2,more,big,low,unacc +vhigh,med,5more,2,small,low,unacc +med,vhigh,3,2,big,low,unacc +vhigh,med,2,4,small,med,unacc +med,low,2,4,big,low,unacc +high,low,4,more,big,high,acc +vhigh,vhigh,2,more,med,low,unacc +low,med,5more,4,small,high,good +low,low,5more,2,big,med,unacc +vhigh,vhigh,3,more,med,high,unacc +vhigh,med,5more,more,big,med,acc +high,med,4,more,small,high,acc +low,low,2,more,small,low,unacc +low,low,2,2,big,high,unacc +med,vhigh,4,more,small,high,acc +high,high,3,more,med,med,acc +low,vhigh,5more,2,small,high,unacc +high,high,4,2,small,med,unacc +low,vhigh,4,4,big,med,acc +med,vhigh,3,2,small,med,unacc +low,vhigh,5more,4,big,low,unacc +vhigh,vhigh,5more,4,big,high,unacc +low,med,3,4,big,high,vgood +vhigh,high,2,2,med,high,unacc +med,vhigh,5more,more,med,low,unacc +low,low,2,more,med,med,acc +low,med,5more,more,med,high,vgood +high,med,5more,4,big,med,acc +vhigh,low,5more,2,med,high,unacc +vhigh,low,4,more,small,high,acc +high,vhigh,5more,4,small,high,unacc +low,med,5more,more,small,med,acc +high,vhigh,3,2,med,med,unacc +med,med,2,2,med,low,unacc +high,low,3,more,small,high,acc +med,high,4,more,med,high,acc +vhigh,med,5more,4,med,high,acc +high,high,4,4,small,high,acc +vhigh,vhigh,2,more,big,high,unacc +vhigh,low,4,2,med,med,unacc +med,low,5more,4,big,med,good +vhigh,low,3,2,small,med,unacc +high,med,4,4,med,high,acc +low,vhigh,5more,4,med,med,acc +low,vhigh,5more,more,big,low,unacc +med,high,4,4,big,med,acc +med,low,5more,2,small,med,unacc +high,med,3,2,big,med,unacc +high,med,4,4,big,med,acc +med,med,4,4,small,low,unacc +low,high,5more,2,big,low,unacc +vhigh,low,3,2,big,high,unacc +vhigh,high,3,4,big,high,unacc +high,vhigh,5more,2,med,low,unacc +med,low,4,4,big,low,unacc +low,med,5more,2,med,low,unacc +med,high,3,2,med,low,unacc +med,high,2,more,small,high,unacc +high,low,3,more,big,high,acc +med,vhigh,3,more,small,high,acc +low,vhigh,3,4,small,high,acc +low,low,5more,more,small,low,unacc +med,high,4,more,big,low,unacc +med,low,5more,4,med,med,good +low,med,5more,4,med,med,good +vhigh,med,2,more,small,low,unacc +vhigh,high,2,more,med,low,unacc +med,low,4,more,big,low,unacc +med,vhigh,4,4,small,low,unacc +high,vhigh,4,2,big,med,unacc +low,med,4,2,big,low,unacc +vhigh,high,3,more,small,med,unacc +high,low,5more,4,big,med,acc +med,med,2,2,med,high,unacc +high,high,4,2,med,high,unacc +high,med,2,2,big,high,unacc +high,low,4,2,med,low,unacc +low,med,2,2,small,high,unacc +high,high,2,4,small,high,acc +med,med,2,4,big,low,unacc +vhigh,vhigh,2,4,small,med,unacc +med,high,5more,4,big,med,acc +med,high,4,2,big,med,unacc +med,low,2,2,small,low,unacc +high,low,3,4,med,med,unacc +high,low,2,2,med,med,unacc +low,low,2,4,med,low,unacc +low,high,3,2,small,low,unacc +med,med,5more,4,small,high,acc +vhigh,low,4,4,med,high,acc +vhigh,vhigh,5more,2,small,low,unacc +med,high,2,more,big,high,acc +vhigh,high,4,4,med,med,unacc +vhigh,high,4,more,med,high,unacc +med,low,4,4,med,low,unacc +vhigh,med,3,2,big,high,unacc +med,med,4,more,small,low,unacc +high,vhigh,2,4,small,med,unacc +vhigh,low,4,2,big,low,unacc +med,low,4,4,med,med,good +vhigh,med,5more,2,med,med,unacc +vhigh,vhigh,4,2,med,med,unacc +med,high,3,4,big,high,acc +vhigh,vhigh,3,more,med,low,unacc +high,high,5more,more,big,med,acc +vhigh,med,5more,4,small,med,unacc +vhigh,high,4,4,small,low,unacc +high,vhigh,2,more,med,high,unacc +high,high,3,2,big,low,unacc +vhigh,vhigh,5more,more,small,high,unacc +high,vhigh,2,4,med,med,unacc +vhigh,vhigh,5more,4,med,low,unacc +high,low,5more,4,small,med,unacc +med,med,3,more,med,med,acc +vhigh,med,2,more,big,med,acc +med,high,2,4,med,med,unacc +vhigh,vhigh,3,4,small,med,unacc +high,high,2,4,big,low,unacc +med,vhigh,4,4,small,med,unacc +vhigh,low,2,2,small,med,unacc +high,low,3,4,small,med,unacc +high,low,5more,2,med,med,unacc +vhigh,low,2,4,med,med,unacc +low,high,2,more,med,high,acc +low,med,3,more,small,high,good +vhigh,low,2,more,med,high,acc +low,high,5more,2,med,med,unacc +low,high,5more,more,big,high,vgood +high,low,2,4,med,high,acc +med,med,3,2,med,high,unacc +vhigh,low,5more,4,big,low,unacc +vhigh,high,3,4,med,med,unacc +vhigh,vhigh,2,4,big,med,unacc +med,med,5more,4,big,high,vgood +low,med,4,more,med,high,vgood +high,high,3,2,big,high,unacc +high,vhigh,2,more,small,med,unacc +med,med,2,more,small,low,unacc +vhigh,low,2,4,big,med,acc +low,vhigh,2,2,big,med,unacc +med,low,4,more,small,high,good +high,med,3,2,small,med,unacc +med,vhigh,2,more,big,med,acc +high,low,3,more,big,med,acc +low,low,3,more,big,high,vgood +vhigh,low,4,4,med,med,acc +med,vhigh,2,more,med,med,unacc +med,med,3,more,small,low,unacc +vhigh,vhigh,3,more,small,low,unacc +vhigh,low,5more,4,big,med,acc +med,high,3,4,med,med,unacc +low,vhigh,3,more,med,high,acc +low,low,5more,4,big,med,good +vhigh,med,3,2,small,high,unacc +low,high,3,4,big,high,vgood +vhigh,low,2,2,big,low,unacc +med,low,3,more,big,med,good +vhigh,low,4,4,small,low,unacc +med,med,3,2,small,high,unacc +low,high,5more,2,big,med,unacc +low,low,2,2,small,low,unacc +vhigh,low,3,2,med,low,unacc +high,low,5more,more,med,low,unacc +med,high,5more,4,big,high,acc +low,low,5more,more,small,high,good +low,low,3,4,med,low,unacc +low,med,2,4,big,low,unacc +high,high,4,2,small,low,unacc +high,low,5more,more,big,high,acc +low,med,2,more,big,med,good +med,med,2,2,small,high,unacc +high,low,2,4,med,low,unacc +high,med,2,2,med,high,unacc +high,vhigh,5more,2,big,med,unacc +low,high,2,2,small,med,unacc +vhigh,low,5more,more,small,high,acc +med,vhigh,3,more,big,high,acc +vhigh,vhigh,4,more,small,low,unacc +low,vhigh,4,more,small,high,acc +high,vhigh,5more,2,big,high,unacc +low,med,5more,2,med,high,unacc +med,high,2,2,small,low,unacc +low,vhigh,5more,4,small,med,unacc +low,vhigh,3,more,small,med,unacc +high,med,2,4,small,low,unacc +high,vhigh,3,4,small,low,unacc +low,med,4,4,small,high,good +high,vhigh,3,more,big,med,unacc +high,vhigh,4,4,small,low,unacc +vhigh,low,5more,more,med,low,unacc +vhigh,med,4,4,small,med,unacc +med,low,2,more,med,low,unacc +high,low,2,2,big,low,unacc +high,med,2,4,small,med,unacc +vhigh,high,3,more,med,high,unacc +low,high,2,2,small,low,unacc +high,vhigh,3,4,med,high,unacc +low,high,5more,2,small,low,unacc +high,med,5more,4,med,high,acc +med,vhigh,3,2,med,high,unacc +vhigh,low,5more,4,med,med,acc +high,low,4,more,med,low,unacc +med,high,2,2,big,low,unacc +high,high,2,more,big,med,acc +low,low,5more,more,big,high,vgood +vhigh,high,4,2,small,med,unacc +high,low,2,4,big,high,acc +high,high,5more,2,med,low,unacc +med,med,4,4,big,high,vgood +low,vhigh,5more,2,big,high,unacc +high,vhigh,4,4,small,high,unacc +med,high,4,2,small,high,unacc +vhigh,med,4,more,big,med,acc +vhigh,high,3,2,small,low,unacc +med,med,3,2,big,med,unacc +med,low,5more,2,big,med,unacc +vhigh,high,5more,more,small,high,unacc +high,low,4,4,small,med,unacc +low,med,3,4,med,low,unacc +high,med,5more,more,med,low,unacc +low,med,3,more,small,med,acc +med,high,3,more,big,med,acc +med,med,4,more,small,med,acc +med,med,3,4,med,med,acc +vhigh,high,5more,2,med,med,unacc +med,low,5more,2,big,high,unacc +med,med,2,4,med,low,unacc +med,low,2,4,big,med,good +high,high,2,4,big,med,acc +low,med,4,more,big,high,vgood +high,vhigh,5more,4,med,high,unacc +vhigh,low,5more,4,small,low,unacc +low,low,5more,4,big,low,unacc +vhigh,low,2,2,big,high,unacc +med,med,4,4,med,low,unacc +low,vhigh,5more,2,small,low,unacc +med,low,2,more,small,high,unacc +high,vhigh,3,2,big,med,unacc +vhigh,vhigh,3,4,small,high,unacc +med,vhigh,2,4,big,med,acc +high,low,4,2,med,high,unacc +high,med,5more,2,med,low,unacc +low,high,4,more,big,med,acc +vhigh,low,5more,4,big,high,acc +low,med,5more,more,big,low,unacc +low,vhigh,4,more,big,low,unacc +vhigh,high,2,2,small,low,unacc +vhigh,low,2,2,med,high,unacc +vhigh,low,2,more,small,low,unacc +high,low,2,4,small,high,acc +med,med,5more,more,med,high,vgood +high,med,3,more,big,med,acc +high,med,4,4,small,low,unacc +high,low,4,2,med,med,unacc +med,med,3,4,big,low,unacc +med,vhigh,5more,4,small,low,unacc +high,high,4,2,big,low,unacc +vhigh,high,4,more,big,low,unacc +vhigh,med,4,4,big,low,unacc +high,vhigh,2,more,med,low,unacc +high,med,2,more,small,high,unacc +high,vhigh,5more,more,small,med,unacc +high,low,2,2,big,med,unacc +vhigh,high,4,more,small,low,unacc +low,vhigh,3,4,small,med,unacc +low,low,4,more,big,med,good +low,vhigh,2,more,small,med,unacc +med,high,5more,more,small,high,acc +vhigh,vhigh,2,more,med,med,unacc +low,med,3,4,small,med,acc +med,high,3,more,small,med,unacc +high,med,3,4,big,med,acc +low,med,3,2,small,high,unacc +low,low,3,2,big,med,unacc +med,high,3,more,med,med,acc +vhigh,med,3,4,med,high,acc +high,high,4,more,big,med,acc +med,vhigh,5more,2,med,med,unacc +high,vhigh,2,4,small,high,unacc +med,med,2,4,small,low,unacc +high,high,4,more,small,med,unacc +low,vhigh,4,more,big,med,acc +med,med,4,2,big,low,unacc +low,med,5more,2,small,low,unacc +low,low,2,2,small,high,unacc +high,vhigh,5more,2,small,low,unacc +vhigh,med,4,4,small,low,unacc +vhigh,low,5more,2,big,high,unacc +med,low,3,4,big,low,unacc +high,low,3,more,med,med,acc +low,high,5more,2,med,low,unacc +high,vhigh,3,more,med,low,unacc +med,med,2,4,med,med,acc +med,high,5more,more,big,high,acc +low,low,2,more,small,high,unacc +high,low,3,2,med,low,unacc +high,high,4,4,big,med,acc +vhigh,med,5more,more,small,low,unacc +vhigh,high,4,2,big,high,unacc +low,med,2,more,med,low,unacc +med,low,5more,4,small,med,acc +low,high,4,2,big,low,unacc +vhigh,med,4,2,med,low,unacc +med,high,5more,4,med,high,acc +med,high,2,4,small,high,acc +vhigh,med,2,4,big,low,unacc +low,med,2,more,med,high,good +low,vhigh,5more,2,big,low,unacc +med,vhigh,2,more,small,low,unacc +vhigh,high,5more,4,med,high,unacc +med,high,2,4,big,low,unacc +high,low,5more,more,small,low,unacc +high,low,5more,4,big,high,acc +med,med,5more,4,small,med,acc +vhigh,med,2,more,big,low,unacc +high,med,4,2,small,high,unacc +vhigh,vhigh,4,more,small,med,unacc +low,med,4,2,big,med,unacc +med,vhigh,2,4,med,med,unacc +med,high,5more,4,small,low,unacc +high,med,4,more,med,med,acc +vhigh,med,4,more,big,high,acc +vhigh,med,2,more,med,med,unacc +vhigh,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,small,high,unacc +med,med,5more,2,small,low,unacc +high,high,4,4,big,low,unacc +high,med,4,2,med,med,unacc +low,vhigh,2,2,med,med,unacc +low,high,5more,more,med,low,unacc +vhigh,vhigh,2,2,med,low,unacc +high,low,2,more,small,low,unacc +vhigh,vhigh,4,more,med,high,unacc +high,high,2,more,big,high,acc +vhigh,high,4,4,big,med,unacc +low,vhigh,4,4,big,high,acc +vhigh,high,3,more,big,high,unacc +vhigh,vhigh,5more,2,med,low,unacc +med,low,2,4,small,high,good +low,high,3,more,big,med,acc +vhigh,med,2,2,small,med,unacc +high,high,5more,more,small,high,acc +low,vhigh,2,more,small,high,unacc +vhigh,vhigh,5more,more,med,low,unacc +high,low,2,2,small,high,unacc +low,vhigh,3,more,med,low,unacc +low,low,5more,4,small,low,unacc +med,med,4,more,big,high,vgood +high,high,3,4,big,med,acc +low,low,2,4,small,med,acc +high,vhigh,2,2,big,high,unacc +high,high,4,4,small,low,unacc +vhigh,med,5more,2,big,high,unacc +high,vhigh,2,more,med,med,unacc +low,low,4,2,big,med,unacc +low,low,5more,4,med,low,unacc +high,vhigh,5more,more,med,high,unacc +vhigh,med,2,4,big,med,acc +med,low,2,2,big,low,unacc +low,low,4,more,med,low,unacc +high,high,5more,2,small,low,unacc +vhigh,low,5more,more,med,med,acc +high,low,3,2,small,low,unacc +med,low,3,4,big,high,vgood +vhigh,high,2,4,med,high,unacc +vhigh,med,3,4,med,low,unacc +med,vhigh,3,more,med,low,unacc +vhigh,med,5more,4,big,low,unacc +high,high,3,4,small,med,unacc +vhigh,high,3,more,small,low,unacc +vhigh,high,3,more,med,low,unacc +low,low,5more,2,med,low,unacc +low,vhigh,2,4,small,low,unacc +low,med,5more,4,small,med,acc +high,high,3,more,big,low,unacc +vhigh,vhigh,4,more,med,med,unacc +high,vhigh,4,more,small,low,unacc +vhigh,low,5more,2,big,low,unacc +vhigh,vhigh,4,4,med,med,unacc +low,high,5more,2,med,high,unacc +med,med,3,2,big,high,unacc +med,med,3,more,small,high,acc +vhigh,vhigh,3,more,big,high,unacc +vhigh,high,5more,2,small,low,unacc +med,vhigh,4,2,med,high,unacc +low,high,5more,4,big,med,acc +low,med,2,2,big,low,unacc +med,med,3,2,med,low,unacc +vhigh,med,4,more,med,med,acc +med,med,5more,4,big,med,acc +med,high,2,4,small,low,unacc +vhigh,vhigh,5more,more,big,med,unacc +med,vhigh,3,4,small,low,unacc +high,low,2,4,big,low,unacc +high,med,2,2,big,low,unacc +high,low,5more,2,med,low,unacc +low,vhigh,3,2,big,med,unacc +vhigh,med,5more,2,med,low,unacc +med,vhigh,2,more,med,low,unacc +med,high,5more,4,med,med,acc +vhigh,vhigh,3,more,small,high,unacc +vhigh,med,4,4,small,high,acc +vhigh,high,2,more,med,med,unacc +med,low,4,4,small,low,unacc +low,high,3,4,med,med,acc +low,high,4,4,big,low,unacc +vhigh,med,5more,4,med,med,acc +vhigh,high,4,more,med,med,unacc +vhigh,low,3,more,small,med,unacc +vhigh,med,2,4,big,high,acc +med,low,5more,2,big,low,unacc +low,high,3,4,big,med,acc +low,high,5more,2,small,med,unacc +vhigh,med,4,more,small,high,acc +low,vhigh,2,more,big,low,unacc +high,vhigh,5more,more,big,med,unacc +low,low,2,more,big,high,vgood +high,high,4,4,small,med,unacc +low,med,4,4,big,high,vgood +low,high,3,more,big,high,vgood +med,vhigh,5more,4,small,high,acc +med,low,5more,4,small,low,unacc +med,low,4,2,big,med,unacc +vhigh,high,5more,2,big,high,unacc +low,vhigh,2,2,small,med,unacc +high,med,4,2,med,high,unacc +high,low,2,more,big,med,acc +low,med,5more,4,big,low,unacc +high,low,2,2,med,high,unacc +vhigh,high,2,4,big,low,unacc +low,vhigh,3,2,small,high,unacc +vhigh,high,5more,4,small,low,unacc +high,med,5more,4,small,med,unacc +med,high,5more,more,med,high,acc +med,low,2,more,big,med,good +low,high,5more,more,med,high,vgood +low,vhigh,4,4,med,med,acc +med,high,5more,4,small,med,unacc +high,vhigh,3,2,big,low,unacc +med,low,3,4,big,med,good +low,vhigh,5more,more,small,low,unacc +low,low,3,more,big,low,unacc +low,low,5more,more,med,med,good +high,low,2,2,big,high,unacc +low,med,5more,4,small,low,unacc +vhigh,low,3,2,small,high,unacc +low,med,3,more,big,high,vgood +med,low,5more,more,big,high,vgood +med,low,4,more,small,low,unacc +vhigh,low,4,2,small,low,unacc +high,high,4,2,small,high,unacc +high,med,3,2,med,high,unacc +low,med,2,more,small,med,unacc +low,low,3,more,med,low,unacc +high,med,4,2,big,med,unacc +vhigh,low,5more,4,small,med,unacc +vhigh,med,2,4,small,high,acc +med,med,4,more,med,high,vgood +vhigh,vhigh,5more,4,big,low,unacc +vhigh,vhigh,2,more,small,low,unacc +high,low,4,2,small,high,unacc +high,vhigh,3,2,small,low,unacc +high,vhigh,4,4,big,high,unacc +high,med,5more,2,small,low,unacc +high,med,2,4,med,high,acc +low,high,4,2,med,med,unacc +med,high,3,2,big,high,unacc +vhigh,med,3,2,med,med,unacc +med,high,4,more,big,high,acc +high,high,3,2,small,high,unacc +low,low,2,4,med,med,acc +low,vhigh,2,2,big,high,unacc +high,med,5more,4,small,low,unacc +low,high,4,more,big,high,vgood +vhigh,vhigh,5more,2,big,med,unacc +vhigh,high,5more,2,big,med,unacc +high,vhigh,5more,4,big,high,unacc +vhigh,vhigh,2,4,small,high,unacc +med,high,4,more,big,med,acc +vhigh,med,4,4,med,med,acc +med,vhigh,4,2,med,low,unacc +high,med,4,4,big,high,acc +high,high,4,4,big,high,acc +med,vhigh,3,4,small,high,acc +vhigh,med,4,4,big,high,acc +vhigh,low,2,more,big,med,acc +vhigh,med,3,more,med,med,acc +med,low,3,more,med,low,unacc +vhigh,low,3,4,med,med,unacc +low,med,3,4,big,low,unacc +med,med,4,4,small,high,acc +low,med,4,4,med,low,unacc +med,low,4,4,big,high,vgood +med,vhigh,2,2,big,high,unacc +med,low,2,2,big,med,unacc +vhigh,vhigh,3,2,med,low,unacc +vhigh,low,2,more,med,low,unacc +low,vhigh,5more,4,med,high,acc +high,med,3,4,small,med,unacc +high,high,5more,2,med,med,unacc +low,vhigh,3,2,med,low,unacc +high,vhigh,3,4,big,high,unacc +high,low,2,4,med,med,unacc +vhigh,med,3,2,big,med,unacc +high,vhigh,3,2,med,low,unacc +med,vhigh,3,4,med,low,unacc +low,med,5more,2,small,med,unacc +low,low,3,more,med,high,vgood +med,high,3,2,big,med,unacc +vhigh,med,3,4,small,low,unacc +med,vhigh,2,4,small,low,unacc +med,low,5more,more,small,high,good +vhigh,med,4,2,med,high,unacc +med,high,3,4,small,low,unacc +high,med,5more,more,small,high,acc +high,low,5more,4,small,low,unacc +med,high,4,2,med,high,unacc +low,low,3,2,small,med,unacc +high,vhigh,4,4,small,med,unacc +high,low,3,4,small,high,acc +high,high,2,4,med,low,unacc +med,vhigh,4,more,big,low,unacc +high,low,4,more,small,low,unacc +high,high,5more,4,small,med,unacc +vhigh,med,4,2,big,med,unacc +high,med,2,more,small,med,unacc +med,low,3,4,small,low,unacc +high,med,5more,more,med,high,acc +vhigh,high,4,more,small,med,unacc +low,vhigh,5more,4,med,low,unacc +vhigh,high,3,more,med,med,unacc +med,low,4,more,med,med,good +high,vhigh,3,4,med,low,unacc +low,med,4,more,big,med,good +med,vhigh,3,more,med,med,acc +high,med,2,2,med,low,unacc +vhigh,low,3,more,small,high,acc +high,vhigh,2,4,med,low,unacc +vhigh,high,2,2,small,med,unacc +low,vhigh,3,4,big,low,unacc +high,low,5more,2,big,low,unacc +med,med,5more,4,big,low,unacc +med,vhigh,2,2,big,low,unacc +med,med,2,2,big,low,unacc +vhigh,low,2,more,big,high,acc +low,med,2,4,med,low,unacc +high,vhigh,5more,2,big,low,unacc +vhigh,vhigh,4,4,big,high,unacc +vhigh,low,4,2,small,high,unacc +med,med,2,4,big,med,acc +low,low,4,4,big,med,good +high,high,2,2,big,low,unacc +vhigh,low,3,2,med,high,unacc +vhigh,vhigh,3,4,big,med,unacc +high,low,3,more,small,med,unacc +high,high,3,4,med,med,unacc +high,low,4,2,big,low,unacc +vhigh,high,2,4,big,med,unacc +med,low,2,2,med,low,unacc +low,vhigh,3,more,med,med,acc +high,med,3,more,big,high,acc +low,med,5more,more,big,high,vgood +low,med,5more,more,med,low,unacc +high,low,3,4,small,low,unacc +high,med,4,4,med,low,unacc +low,vhigh,2,2,small,high,unacc +low,low,2,2,small,med,unacc +low,med,4,more,med,low,unacc +high,low,5more,4,med,high,acc +med,low,3,2,small,high,unacc +high,high,4,4,med,med,acc +vhigh,vhigh,4,more,big,low,unacc +vhigh,high,5more,4,big,low,unacc +med,low,4,more,big,high,vgood +med,vhigh,5more,more,small,high,acc +vhigh,low,5more,2,small,high,unacc +vhigh,low,4,2,big,med,unacc +med,high,2,4,small,med,unacc +low,med,3,2,big,med,unacc +high,med,3,more,small,med,unacc +high,high,3,more,med,high,acc +vhigh,med,5more,more,med,high,acc +low,low,3,4,big,med,good +vhigh,vhigh,3,2,small,low,unacc +low,low,3,2,med,low,unacc +low,high,3,4,small,low,unacc +high,high,5more,4,big,high,acc +vhigh,low,2,4,med,low,unacc +med,high,4,2,big,low,unacc +vhigh,low,2,more,small,high,unacc +high,low,2,2,small,low,unacc +high,vhigh,5more,4,med,low,unacc +med,med,5more,4,med,low,unacc +high,vhigh,2,4,big,low,unacc +low,med,3,more,small,low,unacc +med,med,5more,2,big,med,unacc +vhigh,med,3,4,big,med,acc +low,high,3,4,big,low,unacc +med,med,2,more,med,low,unacc +vhigh,vhigh,3,4,big,low,unacc +med,low,4,2,small,high,unacc +med,med,3,4,med,low,unacc +vhigh,vhigh,4,4,small,med,unacc +vhigh,vhigh,5more,2,small,high,unacc +low,vhigh,3,2,big,low,unacc +high,vhigh,3,2,small,med,unacc +med,low,4,2,small,low,unacc +vhigh,vhigh,5more,more,big,high,unacc +low,med,2,4,small,med,acc +med,low,4,2,med,med,unacc +low,vhigh,4,4,small,med,unacc +high,vhigh,5more,2,med,med,unacc +med,vhigh,2,2,small,low,unacc +low,low,2,more,big,med,good +med,high,5more,2,med,high,unacc +high,med,3,4,big,high,acc +high,med,2,more,med,med,unacc +low,vhigh,5more,more,med,low,unacc +low,high,5more,4,med,med,acc +high,med,2,more,med,high,acc +med,med,5more,more,big,low,unacc +high,vhigh,5more,more,small,high,unacc +med,low,2,2,small,med,unacc +vhigh,low,3,more,med,med,acc +med,vhigh,5more,2,small,med,unacc +vhigh,med,4,2,big,high,unacc +low,med,4,more,small,high,good +vhigh,high,4,4,small,med,unacc +low,low,4,more,big,low,unacc +high,low,3,more,big,low,unacc +vhigh,vhigh,4,2,small,high,unacc +low,low,2,4,big,low,unacc +med,vhigh,5more,4,med,med,acc +low,high,5more,more,small,low,unacc +high,low,4,more,small,med,unacc +high,med,3,4,med,high,acc +high,low,3,4,med,high,acc +vhigh,vhigh,4,2,big,low,unacc +low,high,2,2,med,med,unacc +med,vhigh,3,2,small,high,unacc +high,high,2,more,small,med,unacc +low,med,4,4,big,med,good +med,high,3,2,small,med,unacc +low,med,3,2,med,med,unacc +low,vhigh,4,4,small,low,unacc +high,low,3,4,big,med,acc +low,med,2,more,big,low,unacc +high,med,4,more,small,med,unacc +vhigh,vhigh,2,4,med,med,unacc +low,high,3,2,big,high,unacc +high,low,2,more,big,low,unacc +vhigh,vhigh,3,4,med,high,unacc +high,low,3,4,big,low,unacc +high,low,5more,more,big,low,unacc +vhigh,low,5more,more,small,med,unacc +vhigh,high,2,more,small,high,unacc +high,low,5more,4,big,low,unacc +med,vhigh,5more,4,small,med,unacc +high,med,3,2,med,low,unacc +high,low,4,more,big,med,acc +high,low,5more,4,med,med,acc +low,high,4,more,med,high,vgood +low,high,4,2,small,low,unacc +vhigh,med,5more,4,big,med,acc +high,low,3,2,small,high,unacc +high,vhigh,3,4,big,low,unacc +vhigh,med,5more,4,med,low,unacc +low,med,4,4,big,low,unacc +vhigh,high,4,2,med,med,unacc +high,med,2,2,big,med,unacc +high,med,3,4,med,med,unacc +high,high,2,4,big,high,acc +high,vhigh,3,more,med,med,unacc +high,high,3,more,small,med,unacc +vhigh,high,3,more,big,low,unacc +med,vhigh,3,4,small,med,unacc +high,high,2,more,med,high,acc +high,vhigh,4,2,med,med,unacc +med,high,2,more,med,low,unacc +med,high,5more,4,big,low,unacc +high,high,3,2,small,med,unacc +high,vhigh,4,more,med,low,unacc +high,vhigh,5more,more,small,low,unacc +med,vhigh,4,2,med,med,unacc +med,high,2,2,small,med,unacc +vhigh,low,2,2,small,high,unacc +med,vhigh,3,more,med,high,acc +med,med,5more,more,small,med,acc +med,vhigh,2,4,small,med,unacc +med,high,4,2,big,high,unacc +med,vhigh,3,4,big,med,acc +high,med,2,2,small,high,unacc +low,vhigh,5more,2,small,med,unacc +med,med,4,2,med,low,unacc +vhigh,med,4,2,med,med,unacc +med,vhigh,4,4,big,high,acc +vhigh,med,3,2,big,low,unacc +high,vhigh,4,more,big,med,unacc +low,vhigh,5more,2,med,high,unacc +med,vhigh,5more,2,big,med,unacc +med,high,5more,2,big,high,unacc +vhigh,low,3,4,small,med,unacc +high,vhigh,2,4,big,high,unacc +med,vhigh,2,2,big,med,unacc +vhigh,med,2,2,med,low,unacc +vhigh,vhigh,2,4,med,low,unacc +vhigh,med,5more,2,big,low,unacc +high,vhigh,4,4,med,high,unacc +med,low,3,4,med,high,good +med,high,3,4,med,high,acc +high,low,3,2,med,med,unacc +vhigh,low,4,more,med,low,unacc +high,low,5more,4,med,low,unacc +med,vhigh,4,4,big,low,unacc +vhigh,high,3,4,big,low,unacc +low,high,5more,more,small,high,acc +low,low,2,2,big,low,unacc +vhigh,vhigh,5more,4,med,high,unacc +med,low,4,4,med,high,vgood +vhigh,med,5more,2,med,high,unacc +low,med,2,more,small,high,unacc +low,high,4,more,big,low,unacc +high,high,5more,4,big,low,unacc +low,vhigh,4,more,small,med,unacc +low,high,2,2,big,high,unacc +high,med,3,4,med,low,unacc +med,high,5more,2,med,low,unacc +high,high,3,4,big,low,unacc +vhigh,high,4,4,med,low,unacc +vhigh,low,2,more,big,low,unacc +med,vhigh,5more,more,big,med,acc +med,high,4,more,med,low,unacc +low,high,2,2,small,high,unacc +med,vhigh,3,4,big,low,unacc +low,low,3,4,med,high,good +med,vhigh,5more,2,big,high,unacc +high,med,2,4,med,low,unacc +med,low,5more,2,med,high,unacc +low,low,3,4,med,med,acc +high,high,3,more,med,low,unacc +high,high,5more,2,small,high,unacc +vhigh,vhigh,2,2,small,med,unacc +med,med,3,4,big,med,acc +high,low,4,more,med,med,acc +high,high,4,more,med,high,acc +med,med,5more,2,med,high,unacc +vhigh,low,3,2,big,low,unacc +low,vhigh,5more,more,big,med,acc +high,low,5more,more,big,med,acc +low,low,4,4,med,med,good +vhigh,med,3,more,small,low,unacc +low,vhigh,2,more,med,med,unacc +high,high,4,4,med,low,unacc +low,high,3,2,med,low,unacc +high,med,2,more,med,low,unacc +high,low,5more,2,small,low,unacc +high,high,5more,4,med,med,acc +med,high,4,4,med,med,acc +high,high,4,more,med,med,acc +low,low,3,more,small,med,acc +med,low,3,2,small,med,unacc +low,high,4,2,big,med,unacc +vhigh,high,3,4,small,low,unacc +med,vhigh,2,more,small,high,unacc +high,med,5more,4,big,high,acc +vhigh,low,4,more,big,high,acc +med,med,2,more,med,high,acc +med,high,5more,4,med,low,unacc +vhigh,vhigh,2,2,med,med,unacc +med,low,3,2,small,low,unacc +med,low,5more,more,big,med,good +high,vhigh,5more,4,small,low,unacc +low,high,2,more,big,med,acc +low,high,3,more,med,high,vgood +low,med,4,2,small,med,unacc +med,low,3,4,small,med,acc +med,high,4,more,med,med,acc +med,vhigh,3,2,med,low,unacc +low,vhigh,5more,2,big,med,unacc +high,med,4,2,big,low,unacc +med,vhigh,2,more,big,high,acc +vhigh,med,2,2,big,med,unacc +vhigh,vhigh,4,more,big,med,unacc +low,vhigh,3,4,small,low,unacc +med,low,2,2,small,high,unacc +low,med,3,2,small,med,unacc +low,vhigh,4,2,med,low,unacc +low,med,3,4,med,med,acc +vhigh,vhigh,4,2,med,low,unacc +high,med,3,2,med,med,unacc +low,high,2,more,big,low,unacc +high,low,4,4,small,low,unacc +low,med,4,4,med,high,vgood +high,med,4,more,small,low,unacc +high,high,3,2,med,high,unacc +low,low,3,2,big,high,unacc +low,high,2,more,small,med,unacc +high,med,2,more,big,med,acc +high,low,4,2,big,med,unacc +vhigh,low,4,more,small,low,unacc +vhigh,vhigh,3,more,med,med,unacc +high,vhigh,2,more,big,med,unacc +low,low,3,2,med,high,unacc +high,high,5more,2,med,high,unacc +high,med,4,4,big,low,unacc +med,vhigh,4,more,big,med,acc +vhigh,low,5more,2,med,med,unacc +high,vhigh,2,more,big,low,unacc +med,vhigh,5more,more,small,med,unacc +vhigh,vhigh,4,more,big,high,unacc +high,low,3,2,small,med,unacc +vhigh,med,2,2,big,low,unacc +low,low,4,4,med,high,vgood +low,med,3,4,med,high,good +high,vhigh,4,more,med,high,unacc +high,low,5more,2,big,med,unacc +high,med,3,2,big,low,unacc +vhigh,low,3,4,big,high,acc +vhigh,vhigh,3,more,big,low,unacc +high,low,5more,2,big,high,unacc +vhigh,low,3,4,med,low,unacc +vhigh,low,2,4,small,low,unacc +low,high,2,2,big,med,unacc +vhigh,med,5more,more,small,high,acc +low,high,2,2,med,high,unacc +med,med,4,4,med,med,acc +high,med,4,more,med,high,acc +vhigh,high,5more,more,med,med,unacc +low,high,2,4,big,high,vgood +vhigh,low,5more,more,big,high,acc +high,med,5more,2,med,med,unacc +low,vhigh,4,4,med,low,unacc +high,med,5more,more,small,low,unacc +high,high,5more,4,small,high,acc +vhigh,vhigh,5more,2,med,high,unacc +vhigh,med,3,more,small,med,unacc +med,vhigh,2,4,big,high,acc +vhigh,med,5more,2,big,med,unacc +med,med,3,more,big,med,acc +med,low,2,2,med,high,unacc +low,vhigh,3,2,med,med,unacc +vhigh,vhigh,4,more,small,high,unacc +med,med,3,4,small,high,acc +vhigh,med,5more,4,small,low,unacc +low,high,2,4,big,med,acc +low,med,2,4,small,low,unacc +low,vhigh,3,more,small,low,unacc +med,med,4,4,big,low,unacc +med,vhigh,2,4,med,low,unacc +med,med,3,more,med,high,vgood +med,vhigh,3,4,med,high,acc +low,med,2,4,big,high,vgood +high,vhigh,5more,more,big,low,unacc +vhigh,med,3,more,big,med,acc +high,med,3,4,small,low,unacc +vhigh,vhigh,2,2,big,high,unacc +vhigh,vhigh,5more,4,small,med,unacc +high,high,3,2,small,low,unacc +low,low,3,4,small,low,unacc +low,low,4,2,med,med,unacc +vhigh,vhigh,5more,more,big,low,unacc +low,med,3,more,med,high,vgood +low,med,2,4,small,high,good +med,high,4,4,small,med,unacc +high,high,2,2,small,med,unacc +low,vhigh,2,2,med,low,unacc +vhigh,low,5more,4,med,low,unacc +high,med,4,2,small,med,unacc +high,vhigh,2,2,small,low,unacc +med,low,3,more,big,low,unacc +high,high,3,4,small,high,acc +high,high,2,more,small,low,unacc +low,low,4,4,small,low,unacc +low,med,3,more,med,med,good +vhigh,med,2,2,med,med,unacc +vhigh,med,2,more,med,low,unacc +low,low,3,more,big,med,good +vhigh,med,4,2,big,low,unacc +vhigh,high,5more,more,big,low,unacc +high,high,4,more,small,high,acc +med,med,4,2,small,high,unacc +vhigh,vhigh,2,4,big,high,unacc +low,med,3,more,big,low,unacc +med,low,4,4,small,high,good +high,high,4,more,big,high,acc +med,med,3,2,big,low,unacc +low,high,5more,2,small,high,unacc +low,med,3,2,big,high,unacc +high,high,3,4,big,high,acc +high,low,2,2,small,med,unacc +high,vhigh,4,4,big,low,unacc +low,vhigh,4,more,med,med,acc +high,med,4,4,med,med,acc +vhigh,med,4,2,small,high,unacc +low,vhigh,3,more,big,high,acc +med,high,4,4,small,high,acc +high,vhigh,2,2,med,high,unacc +med,med,2,more,med,med,acc +vhigh,high,3,4,big,med,unacc +vhigh,high,5more,4,big,med,unacc +med,med,4,more,small,high,acc +med,low,5more,2,med,med,unacc +med,vhigh,4,more,med,low,unacc +vhigh,vhigh,2,more,small,high,unacc +vhigh,high,3,4,med,high,unacc +low,vhigh,4,2,med,med,unacc +med,vhigh,4,more,small,med,unacc +high,high,4,more,med,low,unacc +low,vhigh,2,more,big,high,acc +vhigh,med,3,more,big,high,acc +low,med,5more,2,big,low,unacc +low,vhigh,5more,more,med,med,acc +high,vhigh,4,2,med,low,unacc +high,high,5more,more,med,high,acc +vhigh,low,5more,4,med,high,acc +high,vhigh,5more,more,med,med,unacc +high,med,2,2,small,low,unacc +med,high,5more,more,small,low,unacc +med,med,4,more,big,low,unacc +low,med,4,more,small,med,acc +low,vhigh,3,more,big,low,unacc +high,low,5more,more,med,med,acc +vhigh,high,4,2,big,low,unacc +med,low,5more,2,small,low,unacc +vhigh,vhigh,5more,2,small,med,unacc +med,low,3,2,med,low,unacc +med,med,5more,more,big,med,acc +high,vhigh,4,more,small,med,unacc +med,med,5more,2,big,low,unacc +vhigh,med,3,2,med,low,unacc +high,low,4,4,big,high,acc +high,vhigh,3,more,med,high,unacc +vhigh,high,3,2,med,high,unacc +med,low,3,2,med,med,unacc +vhigh,high,3,2,big,low,unacc +vhigh,low,4,2,med,low,unacc +vhigh,high,4,2,med,low,unacc +med,high,4,4,big,low,unacc +vhigh,high,2,4,small,low,unacc +vhigh,med,5more,more,big,high,acc +med,med,2,2,big,high,unacc +med,high,4,2,med,med,unacc +med,high,2,2,med,high,unacc +med,low,2,4,small,low,unacc diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..403e4648dc3b3c177525a76273864fc4069db6b4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/val.csv @@ -0,0 +1,173 @@ +buying,maint,doors,persons,lug_boot,safety,class +vhigh,vhigh,5more,more,med,med,unacc +vhigh,high,2,4,small,med,unacc +high,high,5more,more,med,med,acc +low,high,3,2,med,med,unacc +med,med,3,2,med,med,unacc +med,med,5more,more,big,high,vgood +vhigh,high,2,4,med,low,unacc +high,vhigh,2,4,med,high,unacc +high,high,4,4,med,high,acc +vhigh,low,4,4,small,high,acc +vhigh,med,5more,more,med,low,unacc +med,high,2,more,big,med,acc +low,vhigh,4,2,big,low,unacc +med,med,4,2,med,high,unacc +low,med,2,2,small,low,unacc +high,high,3,more,small,low,unacc +med,vhigh,4,4,med,high,acc +high,high,2,2,med,med,unacc +high,low,3,4,big,high,acc +vhigh,vhigh,2,2,med,high,unacc +high,low,2,more,med,low,unacc +vhigh,low,2,4,med,high,acc +low,high,4,4,small,high,acc +low,med,5more,4,big,med,good +high,vhigh,2,2,big,low,unacc +med,high,2,4,med,high,acc +low,high,4,2,small,med,unacc +high,low,4,more,med,high,acc +vhigh,low,2,4,big,high,acc +high,vhigh,3,more,big,high,unacc +low,low,5more,2,big,high,unacc +vhigh,vhigh,3,2,med,med,unacc +med,med,3,2,small,med,unacc +low,vhigh,3,4,med,med,unacc +vhigh,vhigh,5more,more,med,high,unacc +vhigh,high,5more,4,med,low,unacc +med,med,3,more,med,low,unacc +med,vhigh,3,4,big,high,acc +vhigh,high,3,more,small,high,unacc +high,vhigh,4,more,big,high,unacc +med,vhigh,5more,2,med,low,unacc +low,high,5more,2,big,high,unacc +vhigh,low,3,more,big,med,acc +low,med,4,2,med,med,unacc +vhigh,med,4,more,small,low,unacc +med,vhigh,4,2,small,med,unacc +low,low,3,more,small,high,good +low,high,3,more,small,low,unacc +vhigh,low,4,4,big,low,unacc +high,vhigh,4,more,big,low,unacc +vhigh,med,2,2,big,high,unacc +high,med,3,more,small,high,acc +high,low,4,4,big,low,unacc +vhigh,high,2,4,big,high,unacc +vhigh,high,5more,4,med,med,unacc +low,vhigh,3,2,small,med,unacc +low,vhigh,3,4,big,med,acc +low,vhigh,5more,2,med,low,unacc +vhigh,high,2,2,med,low,unacc +med,vhigh,5more,4,med,low,unacc +high,low,5more,2,med,high,unacc +med,vhigh,2,2,med,med,unacc +high,med,4,more,big,low,unacc +med,vhigh,2,more,small,med,unacc +low,vhigh,4,2,small,low,unacc +low,low,4,2,small,high,unacc +vhigh,high,5more,2,med,high,unacc +vhigh,low,4,4,med,low,unacc +high,low,4,more,big,low,unacc +low,high,3,more,med,med,acc +high,vhigh,4,4,med,low,unacc +med,vhigh,5more,more,big,low,unacc +med,med,5more,more,small,high,acc +med,med,5more,4,small,low,unacc +vhigh,med,4,2,small,med,unacc +low,high,5more,4,med,low,unacc +high,vhigh,2,2,big,med,unacc +med,high,2,more,med,high,acc +low,vhigh,4,more,med,low,unacc +high,high,3,2,med,med,unacc +high,vhigh,4,2,small,high,unacc +med,high,5more,2,small,low,unacc +low,high,4,4,med,high,vgood +high,med,3,2,small,high,unacc +vhigh,vhigh,4,4,small,high,unacc +vhigh,high,3,2,med,med,unacc +high,vhigh,3,4,small,med,unacc +vhigh,high,2,4,med,med,unacc +med,low,5more,more,big,low,unacc +low,high,3,more,small,med,acc +vhigh,high,3,4,small,high,unacc +vhigh,vhigh,2,4,big,low,unacc +low,low,4,more,med,med,good +med,low,2,more,small,low,unacc +high,vhigh,3,4,med,med,unacc +med,med,4,2,small,med,unacc +med,low,2,4,big,high,vgood +vhigh,vhigh,3,4,big,high,unacc +high,med,3,more,small,low,unacc +vhigh,high,2,more,big,low,unacc +high,vhigh,3,2,small,high,unacc +high,vhigh,4,more,med,med,unacc +vhigh,med,3,2,med,high,unacc +med,vhigh,4,2,big,med,unacc +med,high,5more,2,big,med,unacc +med,vhigh,3,2,big,med,unacc +high,low,2,4,small,low,unacc +low,low,4,more,big,high,vgood +low,vhigh,4,more,big,high,acc +low,low,4,4,big,low,unacc +high,high,5more,more,small,low,unacc +low,high,4,2,med,low,unacc +vhigh,low,5more,2,big,med,unacc +low,high,2,4,small,low,unacc +low,low,3,more,med,med,good +low,med,2,4,big,med,good +high,vhigh,2,2,small,high,unacc +med,vhigh,2,2,med,low,unacc +med,low,4,2,small,med,unacc +med,med,2,2,small,med,unacc +low,med,5more,2,small,high,unacc +vhigh,low,2,4,big,low,unacc +med,med,3,more,small,med,acc +med,high,2,2,small,high,unacc +low,vhigh,4,2,small,high,unacc +vhigh,med,3,more,small,high,acc +vhigh,med,3,4,big,low,unacc +med,med,2,4,small,high,acc +vhigh,high,3,2,big,med,unacc +med,high,2,more,big,low,unacc +low,high,5more,4,med,high,vgood +vhigh,high,4,4,med,high,unacc +low,low,3,4,big,high,vgood +low,med,5more,4,med,low,unacc +high,vhigh,4,2,big,high,unacc +vhigh,high,2,4,small,high,unacc +high,vhigh,4,2,med,high,unacc +high,high,5more,4,small,low,unacc +high,med,5more,4,big,low,unacc +vhigh,med,2,4,med,high,acc +vhigh,vhigh,3,4,med,med,unacc +med,high,3,2,small,high,unacc +high,med,2,4,big,med,acc +med,low,3,4,med,low,unacc +vhigh,vhigh,2,2,small,high,unacc +med,med,2,2,big,med,unacc +med,med,2,more,big,med,acc +vhigh,low,2,2,big,med,unacc +high,low,2,4,small,med,unacc +low,med,5more,more,med,med,good +low,low,5more,2,small,med,unacc +low,low,2,4,small,high,good +low,med,3,2,small,low,unacc +low,vhigh,2,4,med,med,unacc +high,high,4,more,small,low,unacc +med,low,5more,4,med,low,unacc +vhigh,med,2,2,small,high,unacc +med,high,4,4,med,high,acc +vhigh,low,3,4,big,low,unacc +med,high,4,2,small,low,unacc +high,high,2,2,small,low,unacc +low,high,4,4,big,med,acc +low,high,4,more,med,low,unacc +vhigh,vhigh,2,2,big,med,unacc +med,vhigh,4,4,med,low,unacc +vhigh,low,2,2,small,low,unacc +med,vhigh,3,2,small,low,unacc +high,high,4,2,big,high,unacc +low,low,5more,more,big,med,good +low,low,4,4,small,high,good +low,vhigh,2,4,big,high,acc +low,low,2,4,big,med,good diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/tvae/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..135d905bd760a602a14683c9a83fadb8c1a05c86 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/tvae/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/tvae/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/tvae/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..52fdba378b065dc33b9f34ca1e7c9b9749ed0852 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/tvae_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/c2/tvae/tvae-c2-20260414_051505/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/_arf_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..971bdabba7ec2743cdc20093f6a3c39b2b50c917 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/_arf_generate.py @@ -0,0 +1,23 @@ +import pickle +import pandas as pd + +n_target = int(3539) +with open("/work/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/arf_model.pkl", "rb") as f: + model = pickle.load(f) +syn = model.forge(n=n_target) +syn = syn.reset_index(drop=True) +if len(syn) > n_target: + syn = syn.iloc[:n_target] +elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = model.forge(n=max(need, 1)).reset_index(drop=True) + if len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] +syn.to_csv("/work/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/arf-m5-3539-20260422_060829.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/arf-m5-3539-20260422_060829.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/_arf_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..74600c4cdbbbbeb2eec983bcbe08e13d011f5f6a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/arf_model.pkl") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/gen_20260422_060829.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/gen_20260422_060829.log new file mode 100644 index 0000000000000000000000000000000000000000..59b4cfd33a8fba7a76a931c2c960625f149a24f0 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/gen_20260422_060829.log @@ -0,0 +1,3 @@ +/usr/local/lib/python3.10/site-packages/arfpy/arf.py:329: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]` + if self.factor_cols[j]: +[ARF] Generated 3539 rows (requested 3539) -> /work/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/arf-m5-3539-20260422_060829.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..483ade1860f9042eaf2131dd756fa47562428f43 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..49503cc9287b1989fe937d03229183ef86390706 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2fcf0ddf18baaad8dd5642b606d019f898b1db11 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "arf", + "run_id": "arf-m5-20260422_055912", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/arf-m5-3539-20260422_060829.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/arf_model.pkl" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/arf/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..82c63134f52aa61d01b5ca5c968192069fdd92c7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/arf/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/arf/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..148ce861c56dea9c0f72231caa82a18265a3e6a1 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/arf/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "arf", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a22a371258ab8267b23b3b79730d7e0f64866e52 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,0,1,126.0,1,38,37,5,5,118.7,0,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,19,37,9,7,111.4,0,0,0,1,1,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,140.0,1,1,1,4,3,140.0,1,0,0,1,0,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,Graduate +1,1,2,9085,1,1,141.0,1,1,38,9,8,128.9,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,128.0,1,19,19,7,8,120.0,1,0,0,1,0,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,123.0,1,4,37,2,9,113.9,0,0,0,1,0,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,1,140.0,41,1,1,9,9,100.0,0,0,1,0,0,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,133.1,1,1,3,9,9,116.0,0,0,0,1,1,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,143.0,1,3,3,2,10,141.3,0,0,1,0,0,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,106.0,1,37,38,191,163,102.2,1,0,1,1,1,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,Enrolled +1,16,2,9085,1,1,136.0,1,37,37,9,9,123.4,1,0,0,1,0,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,125.0,1,38,38,9,9,125.4,0,0,1,0,0,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,Dropout +4,39,1,9773,1,12,120.0,1,37,37,4,9,130.0,0,0,0,0,1,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,Dropout +1,44,1,9853,1,39,150.0,1,3,37,2,7,150.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,145.0,1,1,19,9,9,129.3,0,0,1,1,0,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Graduate +1,44,1,9119,1,39,180.0,1,1,1,9,8,180.0,0,0,0,1,1,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,Enrolled +1,1,4,9085,1,1,135.0,1,38,37,9,9,132.6,1,0,0,1,0,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,130.0,1,3,1,3,6,130.0,1,0,1,1,1,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,182.0,1,19,1,5,7,156.8,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,142.0,1,19,38,7,10,128.4,1,0,0,1,0,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,19,133.1,1,37,37,9,4,103.5,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,1,1,3,3,119.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,44,1,9991,0,39,140.0,1,37,19,9,8,140.0,0,0,0,1,0,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,133.0,1,38,38,9,9,128.8,1,0,0,1,0,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,3,3,132,132,110.6,0,0,0,1,0,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,Enrolled +1,42,1,9773,1,1,133.1,1,19,6,4,3,120.0,0,0,0,1,1,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9147,1,1,160.0,1,37,37,9,7,110.0,0,0,0,1,1,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,100.0,1,19,37,5,5,120.7,0,0,0,1,0,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,136.0,1,19,19,9,9,140.0,1,0,0,1,0,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,135.0,1,3,3,2,2,132.9,1,0,0,0,0,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,Dropout +1,53,1,9003,1,42,130.0,1,1,38,9,6,128.5,0,0,0,1,1,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,140.0,1,37,37,9,9,140.0,0,0,0,1,1,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,124.0,1,19,37,5,7,119.1,0,0,0,1,1,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9556,1,1,140.0,1,37,38,9,9,106.0,1,0,1,0,0,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,Dropout +1,42,4,9500,1,6,133.0,1,1,19,2,9,127.8,1,0,0,1,0,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,130.0,1,19,19,90,90,122.0,0,0,0,1,0,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,125.0,1,37,19,9,9,122.4,1,0,0,1,1,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,3,110.0,1,3,19,4,6,150.0,0,0,0,1,1,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,123.0,1,19,19,1,1,114.6,0,0,0,1,0,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,131.0,1,38,38,9,9,126.5,0,0,0,1,0,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,133.1,1,38,19,132,103,146.0,0,0,1,1,0,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,3,3,2,2,124.9,1,0,0,1,0,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,136.0,1,3,4,2,2,133.9,0,0,0,0,1,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,2,1,4,6,140.0,0,0,0,1,1,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,111.0,1,19,19,9,9,114.2,1,0,0,1,0,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,130.0,1,19,38,7,7,120.2,1,0,0,1,0,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,Graduate +1,7,1,9670,1,3,110.0,1,27,37,3,3,110.0,1,0,0,1,1,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,142.0,1,38,19,7,10,128.4,0,0,0,1,0,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9773,1,1,158.0,1,1,38,4,7,157.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,127.0,1,1,33,3,3,129.8,0,0,0,0,1,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9773,1,1,140.0,1,34,37,0,0,102.5,0,0,0,1,0,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,130.0,1,1,38,5,7,122.0,1,0,0,1,1,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,145.0,1,19,1,6,5,127.9,1,0,0,1,0,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,132.0,1,38,38,9,8,122.6,1,0,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,37,37,9,7,129.9,1,0,0,1,0,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,121.0,1,1,1,4,4,114.9,0,0,0,1,1,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,Graduate +1,7,1,8014,0,3,140.0,1,1,1,4,4,140.0,0,0,0,1,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,137.0,1,1,19,4,4,125.3,0,0,0,1,1,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,Enrolled +1,18,1,9670,1,1,133.0,1,1,1,9,9,121.5,1,0,0,1,0,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,42,1,9500,1,1,100.0,1,3,37,2,6,130.0,1,0,0,1,0,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,19,38,9,8,140.9,0,1,0,1,0,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,133.1,1,37,37,9,9,120.0,0,0,0,0,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,8014,0,1,128.0,1,38,38,0,0,122.1,0,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9119,1,1,130.0,1,1,3,4,2,123.0,0,0,0,1,1,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,121.0,1,19,38,7,9,123.8,0,0,0,1,0,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,9070,1,1,122.0,1,1,1,4,8,123.8,1,0,1,0,0,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,12,133.1,1,37,37,9,9,133.8,1,0,0,1,1,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,3,3,2,2,149.0,0,0,0,0,1,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,1,38,1,9,140.0,0,0,0,1,1,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,Dropout +1,1,5,9773,1,1,135.0,1,37,1,5,5,124.9,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,9119,1,1,132.0,1,37,37,9,6,119.4,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,9670,1,3,110.0,1,37,37,7,7,110.0,0,0,0,1,0,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,Graduate +1,17,5,9119,1,1,118.0,1,1,19,9,9,120.5,1,0,0,1,1,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,19,133.1,1,37,19,9,4,140.0,0,0,1,1,0,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,126.0,1,1,1,4,7,115.2,0,0,0,0,0,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9254,1,1,158.0,1,19,39,4,8,153.5,1,0,0,1,0,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,129.0,1,37,38,7,7,122.0,1,0,0,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,12,133.1,1,37,1,9,4,138.4,0,0,0,1,1,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,Dropout +1,7,1,9238,1,3,130.0,1,1,1,4,10,125.1,0,0,1,0,0,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,1,110.0,1,40,1,5,6,142.5,0,0,1,0,1,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,Dropout +1,16,1,9070,1,1,125.0,1,1,1,4,4,120.8,1,0,0,1,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,128.0,1,19,1,5,4,135.7,1,0,0,1,0,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,142.0,1,19,19,9,9,139.9,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,123.0,1,3,12,2,9,116.4,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,125.0,1,19,1,9,10,123.6,1,0,0,1,0,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,12,133.1,1,12,12,9,9,120.0,0,0,0,1,1,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,Dropout +1,17,5,9500,1,1,144.0,1,19,38,9,5,130.7,1,0,0,1,0,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,Graduate +1,17,6,9500,1,1,136.0,1,19,38,9,3,132.5,1,0,0,1,0,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,Graduate +2,43,1,9991,0,1,140.0,1,38,37,5,6,117.3,0,0,0,1,0,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,43,1,9500,1,1,140.0,1,37,37,9,10,105.7,1,0,0,1,0,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,19,133.1,1,1,5,4,3,100.0,0,0,0,1,0,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,3,9238,1,1,143.0,1,37,38,0,7,126.9,1,0,0,1,0,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,138.0,1,37,1,9,9,123.7,1,0,1,1,0,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,34,34,0,0,112.5,0,0,0,1,0,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,141.0,1,3,2,2,3,130.2,1,0,0,1,0,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,139.0,1,1,19,3,9,134.9,1,0,0,1,1,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,3,102.0,1,0,0,1,0,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,153.0,1,38,37,7,8,147.9,0,0,0,1,0,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,Graduate +1,17,3,9085,1,1,121.0,1,38,1,9,9,111.9,1,0,0,1,1,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,149.0,1,37,37,9,6,130.5,1,0,0,1,0,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,Graduate +1,17,5,9773,1,1,139.0,1,38,1,4,4,123.6,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9119,1,1,120.0,1,3,1,123,152,116.9,0,0,0,1,1,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9238,1,1,130.0,1,1,19,4,5,124.8,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,Graduate +1,53,1,9085,1,42,150.0,1,1,19,4,8,145.2,1,0,0,1,0,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,Graduate +4,39,1,9130,1,1,140.0,1,37,37,6,7,150.0,1,0,0,1,1,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,4,171,1,1,133.1,1,1,1,9,10,110.0,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,124.0,1,19,1,9,9,121.2,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9119,1,39,130.0,1,38,19,9,5,130.0,1,0,0,1,1,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,Enrolled +4,7,1,9500,1,3,140.0,1,37,38,9,7,140.0,0,0,0,1,1,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,37,5,9,118.4,0,0,0,1,1,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,33,1,1,130.0,1,19,19,9,9,117.7,0,0,0,1,0,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,Dropout +4,7,1,9500,1,40,130.0,1,19,19,4,6,130.0,0,0,0,0,0,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,144.0,13,3,3,6,6,137.6,1,0,0,1,0,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,132.0,1,38,37,9,9,122.9,0,0,0,0,1,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,Dropout +1,1,2,9773,1,1,124.0,1,3,3,3,4,114.6,1,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,100.0,1,38,38,9,10,100.0,0,0,0,1,0,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,Graduate +1,18,2,9853,1,1,120.0,1,19,37,9,4,113.7,1,0,1,0,0,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9500,1,1,136.0,1,3,3,2,2,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,Graduate +1,39,1,9130,1,1,133.1,1,3,34,3,0,120.0,0,0,1,0,1,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,140.0,1,1,19,3,3,140.0,1,0,0,1,0,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9085,1,1,128.0,1,38,37,9,9,116.5,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,132.0,1,6,6,0,4,119.1,1,0,1,1,0,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,Dropout +1,43,1,9500,1,6,134.0,1,1,37,9,9,120.4,1,0,0,1,0,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,34,34,0,0,100.0,0,0,0,1,0,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,122.0,1,3,1,4,7,116.1,1,0,0,1,0,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,120.0,1,37,37,9,9,117.0,1,0,0,1,0,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,5,9254,1,1,126.0,1,19,19,4,7,116.6,1,0,0,1,0,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,4,160.0,1,3,3,2,1,125.0,0,0,0,1,1,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,130.0,1,37,37,0,0,117.8,1,0,0,1,0,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,169.0,1,19,37,9,7,176.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9500,1,1,137.0,1,3,38,2,4,121.0,0,0,0,1,0,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,132.0,1,19,1,9,5,123.4,0,0,0,1,0,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,3,105.0,1,37,37,7,8,129.7,1,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9254,1,1,119.0,1,19,19,9,9,118.7,1,0,0,1,1,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,120.0,1,37,37,9,6,117.0,0,0,0,1,1,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,6,130.0,0,0,0,1,1,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,143.0,1,19,37,9,9,126.2,1,0,0,1,0,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,39,150.0,1,19,19,9,9,150.3,0,0,0,1,1,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9130,1,1,143.0,1,3,3,2,2,131.8,1,0,1,0,0,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,Enrolled +1,44,1,9238,1,39,140.0,1,19,19,8,8,144.3,1,0,0,1,0,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,131.0,1,19,19,4,4,122.0,1,0,0,1,0,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,Enrolled +1,17,2,9500,1,1,127.0,1,3,3,1,10,118.8,1,0,0,1,1,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,146.0,1,37,38,9,7,128.5,0,0,1,1,0,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,3,140.0,1,39,39,9,4,140.0,0,0,0,1,1,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,123.0,1,38,19,4,90,127.2,0,0,1,0,1,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,5,128.2,0,0,1,0,1,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,126.0,1,1,1,9,9,127.4,1,0,0,1,0,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,37,37,9,9,150.0,0,0,0,1,0,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,130.0,1,38,19,9,6,120.0,1,0,0,1,1,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,103.0,1,19,37,7,9,104.1,0,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,145.0,1,3,19,1,5,130.0,1,0,0,1,0,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,123.0,1,1,38,9,9,116.7,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,5,1,120.0,1,0,0,1,0,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,141.0,1,19,1,90,90,128.0,0,0,0,1,1,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,124.0,1,3,3,2,2,119.1,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,4,9853,1,1,116.0,1,3,38,3,8,110.4,1,0,0,1,0,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,119.0,1,38,19,9,9,115.2,0,0,0,1,1,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,37,37,7,7,113.9,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +2,43,1,9147,1,2,120.0,1,37,37,9,9,122.8,0,0,1,0,0,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,6,122.0,1,19,19,9,9,126.2,1,0,0,1,0,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,122.0,1,1,1,2,5,113.3,1,0,0,1,0,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,142.0,1,1,1,9,9,127.7,1,0,0,1,1,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,116.0,1,1,1,3,3,120.9,0,0,0,1,1,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,128.0,1,1,19,4,7,125.6,1,0,0,1,1,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,Graduate +1,7,1,9991,0,40,130.0,1,1,3,4,2,130.0,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,1,19,9,7,120.0,0,0,0,1,1,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,137.0,1,38,37,9,9,122.3,0,0,0,1,1,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,122.0,1,41,1,4,3,119.6,1,0,0,1,0,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,157.0,1,38,37,9,5,137.8,0,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9130,1,1,132.0,1,19,38,9,9,130.4,1,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Graduate +4,43,1,8014,0,12,133.1,1,34,34,0,0,106.0,1,0,0,1,0,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9130,1,1,127.0,1,3,1,2,1,116.5,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,8014,0,1,125.0,1,37,37,5,6,122.2,1,0,1,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9556,1,1,128.0,1,38,38,7,8,123.5,1,0,0,1,0,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,Enrolled +1,43,1,9130,1,1,156.0,1,19,1,9,4,156.0,0,0,1,0,1,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,Dropout +1,7,1,9130,1,3,140.0,1,19,38,9,9,140.0,1,0,0,1,0,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,8014,0,1,123.0,1,34,37,9,90,121.3,1,0,0,1,0,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,19,133.1,1,19,37,7,90,104.0,0,0,0,1,0,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,18,4,9254,1,1,106.0,1,19,37,7,7,106.0,1,0,0,1,1,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,119.0,1,37,37,4,6,113.2,0,0,1,1,0,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,19,19,9,9,100.0,0,0,0,1,0,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,145.0,1,3,1,4,3,149.9,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,166.0,1,19,37,4,8,146.4,0,0,0,1,1,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,145.0,1,38,37,5,5,142.2,0,0,0,1,0,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,156.0,1,19,38,9,1,153.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9853,1,1,117.0,1,19,38,4,0,113.5,1,0,0,1,0,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,138.0,1,37,19,9,9,127.8,1,0,0,1,0,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,40,130.0,1,1,1,4,4,190.0,1,0,0,1,0,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,Graduate +1,17,5,9070,1,1,131.0,1,37,37,9,9,126.1,1,0,0,0,0,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.1,1,19,37,9,9,95.0,1,0,1,0,0,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,143.0,1,1,38,8,8,136.7,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Dropout +1,42,1,8014,0,1,120.0,1,37,38,90,7,120.0,1,0,0,1,0,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,121.0,1,19,19,5,8,117.5,1,0,0,1,0,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,160.0,1,3,1,6,6,116.3,1,0,0,1,0,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,134.0,1,1,38,4,5,122.8,0,0,0,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,7,1,8014,0,3,120.0,1,19,37,5,3,121.3,0,0,0,1,0,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,134.0,1,38,19,9,4,128.4,1,0,0,1,0,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,130.0,1,19,1,7,4,117.8,1,0,0,1,1,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9130,1,1,132.0,1,1,1,3,3,143.9,1,0,0,1,1,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,130.0,1,19,1,9,4,101.3,1,0,0,1,1,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,135.0,1,37,19,5,10,121.0,0,0,1,1,0,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9991,0,39,120.0,1,37,37,7,7,120.0,1,0,0,1,0,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,133.1,1,3,3,2,3,135.0,0,0,0,1,0,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,110.0,1,19,19,9,7,105.8,1,0,0,1,1,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,160.0,1,1,38,4,10,144.3,1,0,0,1,0,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +4,39,1,9254,1,1,120.0,1,37,37,9,8,95.0,0,0,0,1,0,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,137.0,1,19,19,7,7,120.8,1,0,0,1,0,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,144.0,1,19,38,4,8,141.3,1,0,0,1,0,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,148.0,1,19,1,3,9,140.0,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,128.0,1,38,38,7,7,131.5,0,0,0,1,0,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,128.0,1,38,19,191,175,118.6,1,0,0,1,0,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,122.0,1,3,38,123,171,116.1,1,0,1,1,1,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9773,1,1,128.0,1,38,38,6,3,116.5,0,0,0,1,1,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,97.0,1,1,19,2,7,98.1,1,0,0,1,0,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,53,1,9991,0,1,140.0,1,38,38,191,193,135.0,0,0,1,1,0,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,Enrolled +1,1,2,9773,1,1,122.0,1,37,37,9,9,130.8,1,0,0,1,0,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,117.9,0,0,0,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9991,0,1,100.0,1,37,19,9,4,130.0,0,0,0,1,1,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,Dropout +1,17,6,9670,1,1,125.0,1,38,1,9,7,125.0,1,0,0,1,1,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,Graduate +2,7,1,9070,1,43,140.0,1,37,1,9,7,140.0,0,0,0,1,0,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,Graduate +1,7,1,9254,1,3,110.0,1,19,19,3,3,110.0,0,0,0,1,1,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9500,1,1,135.0,1,19,1,5,4,127.3,1,0,0,1,0,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,Graduate +1,17,4,9238,1,1,129.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,8,9,144.9,1,0,1,0,0,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9500,1,1,136.0,1,1,1,4,4,123.8,0,0,0,1,0,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,Graduate +4,43,1,9991,0,1,140.0,1,37,37,5,5,149.8,0,0,0,1,1,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,150.0,1,38,19,9,9,137.8,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +5,39,1,9147,1,1,180.0,1,1,1,4,8,140.5,0,0,1,0,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,131.0,1,19,19,3,7,127.9,1,0,0,1,0,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,110.0,1,1,1,4,4,99.0,0,0,0,1,1,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,Enrolled +1,39,1,9070,1,1,139.3,1,38,38,5,5,117.5,0,0,0,1,1,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9130,1,1,147.0,1,4,1,2,10,141.8,1,0,0,1,0,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,Graduate +2,44,1,8014,0,39,150.0,1,1,1,5,5,154.0,0,0,0,1,1,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,133.1,1,1,1,4,5,131.0,1,0,0,1,0,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,132.0,1,1,38,9,7,127.1,1,0,0,1,0,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,4,9147,1,1,125.0,1,19,19,5,5,118.0,1,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,108.0,1,19,1,9,3,107.8,1,0,0,1,0,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,143.0,1,37,37,9,8,130.6,1,0,0,1,0,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,126.0,1,37,1,7,7,118.7,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9238,1,1,140.0,1,1,44,4,2,124.6,1,0,1,0,1,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,112.0,1,9,22,4,3,106.1,0,0,0,1,0,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,130.0,1,37,37,191,183,163.7,0,0,0,1,0,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,Enrolled +4,39,1,9500,1,19,133.1,1,37,37,6,6,117.8,0,0,1,0,0,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,Dropout +1,18,2,9853,1,1,120.0,1,1,1,9,0,115.8,0,0,0,1,0,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,118.0,1,38,19,9,3,111.0,1,0,0,1,0,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,16,1,171,1,1,150.0,1,37,37,9,9,134.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,133.1,6,37,37,9,6,100.0,0,0,0,1,0,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,137.0,1,1,37,5,9,131.4,1,0,0,1,1,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Dropout +2,44,1,9991,0,39,130.0,1,1,37,4,9,130.0,0,0,0,0,0,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9238,1,1,136.0,1,19,19,4,7,121.7,1,0,0,1,0,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,133.1,1,1,38,9,7,110.5,0,0,0,1,0,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,Graduate +1,39,1,9556,1,19,100.0,1,37,38,9,9,120.0,0,0,0,1,0,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,142.0,1,1,38,3,5,146.9,1,0,0,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,127.0,1,19,19,7,8,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,130.0,1,1,38,7,8,135.6,1,0,0,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,137.0,1,19,38,9,3,125.0,1,0,0,1,0,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,135.0,1,37,37,7,7,124.0,1,0,0,1,0,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,Enrolled +2,39,1,9556,1,1,100.0,6,38,38,9,9,130.0,0,0,0,1,0,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,Graduate +1,42,1,9003,1,39,120.0,1,3,1,2,6,128.2,1,0,0,1,1,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,Enrolled +1,1,3,9773,1,1,121.0,1,19,19,3,3,116.1,0,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,136.0,1,1,19,4,9,131.1,1,0,0,1,0,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,141.0,1,3,19,2,10,126.8,1,0,0,1,1,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9773,1,1,136.0,1,38,38,9,9,132.9,1,0,0,1,1,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,133.1,1,1,1,90,1,120.0,1,0,1,0,1,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,Dropout +1,17,1,8014,0,1,132.0,1,37,19,5,5,121.2,0,0,0,1,0,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,2,9500,1,6,119.1,1,1,19,4,10,119.1,0,0,0,1,1,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,153.0,1,1,19,9,4,139.7,1,0,0,1,0,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,150.0,1,1,1,3,3,143.4,0,0,0,0,1,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Enrolled +1,1,4,9500,1,1,130.0,1,19,19,9,7,119.9,1,0,0,1,0,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,6,140.0,0,0,0,1,1,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,115.0,1,38,37,5,5,115.0,0,0,0,1,0,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,150.0,1,19,37,5,4,142.7,1,0,0,1,0,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,133.1,1,34,5,0,1,118.5,1,0,0,1,0,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9130,1,1,125.0,1,3,3,2,2,132.4,0,0,0,1,1,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,116.0,1,37,37,9,9,110.8,0,0,0,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,Enrolled +1,43,1,9070,1,1,115.0,1,12,12,1,10,115.0,0,0,1,1,1,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,125.0,1,37,37,9,9,118.8,0,0,0,1,1,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,130.0,1,3,1,2,5,133.8,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9500,1,1,141.0,1,12,1,5,5,133.0,1,0,0,1,0,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,141.0,1,38,38,7,10,139.8,1,0,0,1,0,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,Graduate +1,51,1,9147,1,19,133.1,1,19,19,9,5,112.1,0,0,1,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,132.0,1,19,2,9,3,126.0,1,0,0,1,0,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,131.0,1,2,38,4,5,132.3,1,0,0,1,0,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,124.0,1,1,19,9,8,116.7,1,0,0,1,0,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,180.0,103,5,3,1,1,183.5,1,0,0,1,0,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,10,1,9773,1,1,151.0,22,38,37,0,5,151.0,1,0,0,1,0,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,135.0,1,19,19,9,10,133.4,1,0,0,1,0,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,135.0,1,3,3,2,2,137.1,1,0,0,1,0,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.1,1,38,38,5,10,101.0,0,0,0,1,1,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,40,130.0,1,3,2,3,2,160.0,1,0,0,1,0,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,18,1,9773,1,1,124.0,1,38,37,9,8,126.8,0,0,0,1,1,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,140.0,1,19,37,9,9,125.5,1,0,0,1,0,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,1,133.1,1,37,38,9,8,118.9,0,0,0,1,0,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9991,0,1,160.0,1,34,34,0,0,161.8,1,0,1,1,1,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,140.0,1,1,38,4,7,100.0,0,0,0,1,0,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Graduate +1,44,1,9070,1,39,120.0,1,2,19,3,8,120.0,0,0,0,1,1,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,124.0,1,38,19,3,10,128.6,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,Enrolled +1,44,1,9085,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,0,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,145.0,1,1,19,4,3,133.5,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,Graduate +4,39,1,9085,1,1,110.0,1,37,37,90,90,110.0,0,0,0,0,0,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,134.0,1,19,37,4,7,133.5,1,0,0,1,0,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,132.0,1,1,19,4,3,126.4,1,0,0,1,0,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,19,133.1,1,4,1,2,4,120.0,0,0,0,1,1,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,151.0,1,40,4,2,2,144.5,1,0,0,1,0,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +2,39,1,9147,1,19,133.1,1,37,19,9,3,128.0,0,0,0,1,1,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,Dropout +1,39,2,8014,0,1,141.0,1,37,37,9,9,150.5,0,0,0,1,0,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,122.0,1,19,19,4,6,119.9,0,0,0,1,0,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,9,133.1,1,34,34,0,0,110.0,1,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,1,9500,1,1,128.0,1,19,1,9,4,125.8,0,0,0,1,0,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,3,9773,1,1,133.1,1,38,38,5,5,131.3,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,16,6,9147,1,1,128.0,1,37,37,9,9,116.5,1,0,0,1,0,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,1,147.0,1,34,34,90,90,111.7,1,0,0,1,0,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,1,19,6,8,122.0,0,0,0,1,0,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,Graduate +2,39,2,9254,1,19,133.1,1,19,19,9,5,123.5,0,0,0,1,1,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,114.0,1,37,37,9,9,130.0,0,0,0,1,1,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,Graduate +2,39,1,8014,0,1,100.0,1,37,38,9,9,141.5,0,0,0,1,0,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9556,1,1,118.0,1,38,38,5,5,117.8,1,0,0,1,0,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9773,1,19,133.1,1,19,19,171,163,104.0,0,0,1,0,0,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,39,110.0,1,19,37,9,8,127.5,0,0,1,0,0,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,1,120.0,1,37,38,9,8,100.0,0,0,1,1,1,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,133.0,1,19,3,9,9,123.2,1,0,0,1,1,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,133.1,1,34,34,0,0,142.8,0,0,0,1,1,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9119,1,1,120.0,1,34,34,0,0,140.0,1,0,0,1,1,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,120.0,1,3,37,4,7,115.1,1,0,0,1,0,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,Graduate +1,51,1,9119,1,1,140.0,1,1,19,4,4,150.0,0,0,0,1,1,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,Dropout +1,43,1,9556,1,1,149.0,1,1,1,4,8,140.2,1,1,0,1,0,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,160.0,1,37,19,9,10,160.0,1,0,0,1,0,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,115.0,1,19,38,7,8,116.4,1,0,0,1,0,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,140.0,1,4,4,2,10,140.0,1,0,0,1,1,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,19,133.1,1,1,1,4,4,130.0,0,0,0,1,1,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,5,9773,1,1,146.0,1,1,37,5,5,146.7,1,0,0,1,1,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,142.0,1,1,38,9,9,127.0,0,0,1,0,1,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,130.0,1,37,37,9,7,138.0,0,0,0,1,0,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9773,1,9,133.1,1,38,1,5,4,102.0,1,0,0,1,1,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,125.0,1,19,19,7,5,118.0,1,0,0,1,0,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,145.0,1,19,38,4,10,131.7,1,0,0,1,0,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,133.1,1,37,19,9,9,114.0,0,0,0,1,0,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,140.0,1,38,37,4,10,140.0,0,0,1,0,0,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,128.0,1,1,19,4,4,124.5,0,0,0,1,1,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,126.0,1,37,19,9,8,116.9,1,0,0,1,0,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,1,9773,1,1,177.0,1,2,1,123,135,155.7,0,0,1,1,0,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,135.0,1,37,1,5,5,126.8,1,0,0,1,0,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,125.0,1,4,3,1,1,119.8,0,0,0,1,0,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,Graduate +1,53,1,9147,1,42,130.0,1,1,19,143,172,133.8,1,0,0,1,0,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,Graduate +1,17,3,9670,1,1,123.0,1,38,38,7,8,118.8,1,1,0,1,0,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,112.0,1,38,19,9,5,113.8,1,0,0,1,0,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,124.0,1,34,34,0,0,129.3,0,0,0,1,0,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9773,1,12,120.0,1,1,1,9,9,129.8,1,0,0,1,1,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,111.0,1,19,19,9,9,110.0,1,0,0,1,0,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,163.0,1,37,37,5,6,155.0,0,0,0,1,0,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,145.0,1,19,1,9,5,145.0,0,0,0,1,0,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,160.0,1,38,37,9,7,155.5,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,137.0,1,1,3,7,3,131.1,1,0,1,1,0,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,133.1,1,38,38,9,9,113.5,0,0,0,1,0,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,130.0,1,1,1,9,9,131.8,0,0,0,1,1,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,137.0,1,38,37,7,7,126.0,1,0,0,1,0,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,160.0,1,19,1,9,5,107.8,1,0,0,0,1,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9070,1,39,120.0,1,3,38,3,9,120.0,0,0,0,1,1,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,145.0,1,3,3,2,1,129.3,1,0,0,1,0,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,117.0,1,38,19,5,7,118.1,0,0,0,1,1,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,130.0,1,1,1,4,3,130.0,1,0,0,1,0,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,Enrolled +2,43,1,9238,1,12,100.0,1,37,37,9,9,134.4,0,0,0,1,0,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,Graduate +2,43,1,8014,0,14,133.1,1,34,34,0,0,100.0,0,0,0,0,0,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,Dropout +1,17,4,9254,1,1,122.0,1,1,1,4,2,116.1,1,0,0,1,1,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,4,9254,1,1,110.0,1,37,37,9,7,113.2,1,0,0,1,0,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,131.0,1,38,37,4,9,131.7,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,1,19,4,10,150.0,0,0,0,1,1,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,142.0,1,19,38,9,7,127.3,0,0,0,1,1,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,Enrolled +1,7,1,9556,1,43,160.0,1,38,19,9,9,160.0,0,0,0,1,1,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,1,1,9853,1,1,130.0,1,19,12,9,4,133.2,1,0,0,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,43,1,9119,1,1,130.0,1,37,38,9,9,120.0,0,0,1,0,0,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,42,1,3,7,110.5,0,0,0,1,1,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +2,39,1,9003,1,1,130.0,1,1,19,4,9,152.4,1,0,0,1,0,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,Graduate +1,16,1,171,1,1,155.0,1,1,3,5,10,167.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,3,9254,1,1,114.0,26,38,3,9,3,127.3,1,0,1,0,0,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,37,37,9,9,125.4,1,0,0,1,1,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,5,9773,1,1,127.0,1,38,1,4,5,121.1,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Enrolled +1,17,2,171,1,1,130.0,41,1,1,2,3,148.6,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9130,1,1,120.0,1,1,19,9,9,120.0,1,0,0,1,0,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,133.0,1,1,37,4,10,143.2,0,0,0,1,0,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,38,38,9,7,125.2,1,0,0,1,0,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,102.0,1,37,37,7,7,102.0,0,0,0,1,0,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,19,38,5,7,128.5,1,0,0,1,0,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,140.0,1,38,38,7,7,133.2,1,0,0,1,0,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,123.0,1,1,1,3,3,120.9,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,2,9500,1,1,135.0,1,19,1,5,5,128.9,1,0,0,1,0,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,1,3,137.7,0,0,0,0,0,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,158.0,1,3,3,3,3,151.4,1,0,0,0,0,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,37,1,9,3,120.0,0,0,1,0,1,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,51,1,9773,1,1,135.0,1,1,42,5,3,110.0,1,0,0,1,1,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,143.0,1,3,38,2,9,144.1,1,0,0,1,0,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,Enrolled +1,1,3,9070,1,1,132.0,1,1,3,9,7,126.1,1,0,0,1,0,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,141.0,1,19,1,9,10,126.8,1,0,0,1,0,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,130.0,1,38,38,6,9,126.3,1,0,0,1,0,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,1,140.0,1,1,1,4,5,140.0,0,0,0,1,1,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,Enrolled +1,39,2,9147,1,1,130.0,1,19,19,5,9,121.5,0,0,0,0,1,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,51,1,8014,0,19,133.1,1,37,37,9,9,104.0,0,0,1,1,0,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,120.0,1,3,4,2,2,120.0,0,0,0,1,1,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,Graduate +1,1,4,171,1,1,131.0,1,19,19,4,4,119.8,1,1,0,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,18,3,9070,1,1,134.0,1,1,1,3,4,121.4,0,0,0,1,0,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,140.0,1,37,37,9,9,118.2,0,0,0,1,1,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,130.0,1,19,37,9,9,131.8,1,0,0,1,0,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,134.0,1,38,19,3,10,121.2,0,0,0,1,0,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,Graduate +1,43,2,9500,1,1,120.0,1,41,3,2,2,112.7,0,0,0,1,0,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,134.0,1,1,19,4,9,129.8,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,133.0,1,19,1,4,5,127.1,1,0,0,1,0,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,148.0,1,38,37,5,9,137.8,1,0,0,1,0,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,129.0,1,37,37,9,7,117.8,0,0,0,1,0,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,Enrolled +4,39,1,8014,0,3,100.0,1,37,37,9,9,130.0,0,0,0,1,0,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,145.0,1,1,40,9,2,129.6,0,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,4,9254,1,1,124.0,1,1,1,4,4,122.3,1,0,0,1,0,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Dropout +2,43,2,9147,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,Graduate +1,51,1,9556,1,1,131.0,1,1,37,152,193,126.6,1,0,0,1,1,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,44,1,9085,1,39,110.0,1,3,5,2,2,110.0,0,0,0,1,1,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,15,1,9147,1,1,140.0,26,37,2,6,4,140.0,0,0,1,1,1,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,Graduate +2,51,1,9853,1,1,130.0,1,37,37,7,8,120.3,0,0,0,1,0,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,19,133.1,1,37,37,6,6,139.0,0,0,0,1,1,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9670,1,1,120.0,1,37,37,7,7,111.3,1,0,0,1,1,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,3,120.0,1,37,37,7,7,120.0,0,0,0,1,0,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,Dropout +1,17,3,9147,1,1,147.0,1,19,38,5,7,132.3,1,0,0,1,0,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,3,9130,1,1,167.0,1,37,37,90,90,159.3,0,0,0,1,0,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,132.0,1,1,1,4,9,136.6,1,0,0,1,1,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,Enrolled +1,5,2,9853,1,1,124.0,1,19,19,3,3,113.9,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,3,130.0,1,3,1,2,9,130.0,0,0,0,1,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,160.0,1,1,38,4,7,146.5,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,141.0,1,19,3,4,0,137.9,1,0,0,0,1,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,19,37,8,7,100.0,1,0,0,1,0,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,134.0,1,38,19,7,7,124.2,0,0,0,1,0,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,150.0,1,1,37,4,8,145.6,1,0,0,1,0,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,146.0,1,3,1,3,10,138.7,0,0,0,1,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9991,0,40,133.1,1,1,37,4,1,100.0,0,0,0,1,0,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,127.0,1,38,19,9,10,117.9,0,0,0,1,0,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,131.0,1,37,38,9,7,137.0,0,0,0,1,0,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Graduate +1,7,1,9238,1,3,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,Graduate +2,39,1,9085,1,1,133.1,1,37,37,90,90,110.3,0,0,0,1,1,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,125.0,1,38,1,3,10,114.5,1,0,0,1,1,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,152.0,1,19,19,9,5,154.1,0,0,1,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,120.0,1,37,37,4,5,120.0,0,0,1,0,0,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,Dropout +2,39,1,8014,0,1,146.0,1,37,37,9,8,120.5,0,0,0,1,0,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,39,1,9119,1,12,133.1,1,34,34,0,0,95.1,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,128.0,1,19,37,9,8,116.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9307cf4b524ffa38ff4a36db610667ac23d91634 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/train.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,1,1,127.0,1,1,1,9,6,110.0,0,0,1,0,1,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9773,1,1,122.0,1,38,37,5,3,119.6,1,0,0,1,0,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,6,9147,1,1,121.0,1,3,19,4,5,116.8,0,0,0,1,1,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,158.0,1,38,37,5,5,140.2,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,19,19,9,7,131.7,1,0,0,1,0,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,Graduate +1,1,3,9085,1,1,133.0,1,1,38,9,90,128.2,0,0,0,1,0,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,122.0,1,1,19,9,9,120.3,1,0,0,1,1,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,Dropout +1,43,1,9119,1,1,130.0,1,1,1,9,2,128.0,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,3,9254,1,1,122.0,1,1,1,4,4,126.6,0,0,0,0,0,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,1,100.0,1,37,37,9,9,133.0,0,0,0,1,1,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,44,1,9119,1,39,130.0,1,19,3,3,4,130.0,0,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9085,1,39,140.0,1,1,1,4,7,140.0,1,0,1,1,0,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9070,1,1,130.0,1,37,37,9,9,123.7,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +4,1,1,9991,0,1,130.0,1,37,37,9,9,118.1,0,0,1,0,0,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9500,1,1,190.0,108,3,2,122,4,190.0,1,0,0,1,0,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,102.0,1,1,19,9,5,100.6,1,0,0,1,0,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,3,120.0,1,19,3,4,2,120.0,1,0,0,1,0,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,130.0,1,38,19,9,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,111.0,1,3,4,4,3,108.2,1,0,0,1,0,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9119,1,1,160.0,1,1,38,4,7,112.0,0,0,0,0,1,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,149.0,1,19,1,4,4,134.8,0,0,0,1,0,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,135.0,1,19,38,3,9,136.1,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,2,9500,1,1,120.0,1,37,34,90,0,121.5,0,0,1,1,0,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,147.0,1,12,19,9,3,151.6,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,128.0,1,37,37,9,9,123.5,1,0,0,1,1,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,2,9070,1,1,129.0,1,1,1,4,9,132.9,1,0,0,1,1,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,Enrolled +1,17,2,9500,1,1,138.0,1,1,38,5,8,132.8,1,0,0,1,0,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,134.0,1,19,37,9,9,131.6,1,1,0,1,0,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,130.0,1,37,37,9,9,122.0,1,0,0,1,0,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,1,0,0,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,2,9085,1,1,130.0,1,37,19,9,8,129.0,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,Enrolled +1,17,5,9119,1,1,126.0,1,38,38,5,9,116.9,1,0,1,1,1,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,37,38,5,6,140.0,1,0,0,1,0,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,18,4,9853,1,1,123.0,1,19,38,4,10,123.7,1,0,0,1,0,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,118.0,1,4,3,2,3,110.7,1,0,0,1,0,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,2,130.0,1,37,37,5,7,147.5,0,0,0,1,0,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,146.0,1,4,1,2,3,140.0,1,0,0,1,0,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,Graduate +1,44,1,9003,1,39,160.0,1,37,38,9,7,160.0,0,0,0,1,0,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,7,0,9003,1,3,130.0,1,1,37,4,9,130.0,1,0,0,1,0,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,19,133.1,1,34,34,99,99,96.0,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,136.0,1,37,37,7,7,140.9,1,0,0,1,1,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,1,9853,1,1,127.0,1,1,1,5,7,121.4,1,0,0,1,0,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,134.0,1,3,19,2,10,128.8,0,0,0,1,0,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,140.0,1,1,3,4,2,142.8,1,0,0,0,0,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,126.3,0,0,0,1,1,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.1,1,19,1,1,3,101.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9147,1,1,122.0,1,1,38,1,7,118.9,0,0,0,1,1,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,107.0,1,19,37,7,7,103.5,1,0,0,1,0,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,156.0,1,38,37,9,9,156.3,0,0,0,1,1,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,128.0,1,1,1,9,9,120.0,1,0,0,1,0,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9119,1,1,127.0,1,19,1,9,10,121.1,1,0,0,1,1,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,4,160.0,1,3,3,4,2,180.4,0,0,1,1,1,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,Dropout +1,43,1,9670,1,1,132.0,1,3,19,4,8,120.5,0,0,0,1,1,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,134.0,1,1,19,4,5,122.5,1,0,0,1,0,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,142.0,1,1,19,4,4,128.0,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,133.0,1,2,37,9,7,125.7,1,0,0,1,1,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,135.0,1,1,3,4,3,133.3,0,0,0,1,0,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,3,140.0,1,37,12,9,4,140.0,0,0,0,0,0,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9500,1,1,141.0,1,2,38,2,10,135.4,1,0,0,1,0,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,Enrolled +2,43,1,9991,0,2,120.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,147.0,1,1,19,4,4,137.2,0,0,0,0,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9085,1,1,120.0,1,37,38,9,9,111.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,141.0,1,3,1,9,9,124.3,0,0,0,1,0,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,Enrolled +1,18,1,9773,1,1,125.0,1,1,1,4,7,121.5,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,140.0,1,37,37,5,5,150.0,0,0,1,1,0,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,112.0,1,1,37,4,9,106.8,1,0,0,1,0,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,168.0,1,38,37,9,8,155.1,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,15,1,9119,1,1,133.1,41,2,2,2,2,100.0,0,0,1,1,1,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,Enrolled +2,1,1,8014,0,1,121.0,1,37,37,9,9,114.4,1,0,0,1,0,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,136.0,1,1,38,4,5,132.2,0,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,Graduate +1,16,1,9070,1,1,145.0,1,1,1,3,3,146.1,1,0,0,1,0,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,40,140.0,1,5,3,2,2,140.0,0,0,1,1,1,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,Dropout +1,1,3,9085,1,1,126.0,1,38,1,9,9,132.0,1,0,0,1,0,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,146.0,1,1,37,9,9,129.3,0,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,131.0,1,37,37,9,6,127.2,0,0,0,1,0,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,139.0,1,37,37,9,9,124.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,133.1,1,37,1,5,4,151.2,0,0,0,1,1,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,170.0,1,38,19,9,2,160.6,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,131.0,1,37,37,9,6,130.7,0,0,1,1,0,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,122.0,1,19,37,3,5,116.6,1,0,1,1,1,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,Graduate +1,17,3,171,1,1,147.0,1,19,1,5,4,137.6,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,9,120.0,0,0,0,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,5,1,9130,1,1,157.0,1,5,43,2,2,149.7,1,0,0,1,0,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9003,1,39,160.0,1,3,1,2,6,160.0,1,0,0,0,0,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,140.0,1,9,19,4,4,131.2,0,0,0,1,1,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,1,130.0,1,1,3,2,6,110.0,0,0,0,1,1,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,Graduate +1,39,1,171,1,1,147.0,1,37,38,175,193,133.3,0,0,0,0,0,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,148.0,1,38,19,4,9,134.7,1,0,0,1,0,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,130.0,1,19,1,9,7,130.4,1,0,0,1,0,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,133.1,1,1,37,4,9,96.0,1,0,0,1,0,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,Enrolled +1,39,1,9991,0,12,120.0,1,37,38,5,5,155.7,0,0,0,1,1,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,117.0,1,3,1,3,3,113.2,0,1,0,1,0,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,Graduate +1,17,2,9853,1,1,150.0,1,38,19,5,5,142.0,1,0,0,1,0,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,144.0,1,1,19,9,4,130.8,1,0,0,1,0,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,Graduate +1,17,4,9254,1,1,118.0,1,38,37,5,7,111.7,1,0,0,1,1,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,6,9500,1,1,141.0,1,2,1,4,4,136.3,1,0,0,1,0,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,Graduate +2,39,1,9003,1,1,120.0,1,2,2,1,4,100.0,0,0,0,1,1,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,141.0,1,4,3,2,1,136.3,1,0,0,1,1,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,120.0,1,1,19,5,4,140.4,0,0,0,1,0,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,154.0,1,1,37,4,9,134.8,1,0,0,1,0,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,100.0,1,19,19,5,5,101.8,1,0,0,1,0,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,3,9670,1,1,137.0,1,1,38,4,7,138.4,0,0,0,1,1,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,152.0,1,37,37,7,5,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,118.0,1,37,1,9,7,117.0,1,0,0,0,1,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,140.0,1,12,3,4,3,118.0,1,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,133.0,1,1,2,9,2,128.8,0,0,0,1,1,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,171,1,1,140.0,1,37,37,9,9,100.8,0,1,0,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9070,1,42,130.0,1,40,19,3,5,130.0,1,0,0,0,0,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,143.0,1,1,19,3,3,133.9,0,0,0,1,0,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,Graduate +2,1,5,9500,1,1,130.0,1,1,19,4,4,122.3,0,0,0,1,0,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,9,9,125.0,1,0,0,1,0,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,120.0,1,37,37,7,8,120.0,0,0,0,1,0,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,Graduate +1,1,2,9147,1,1,125.0,1,1,19,4,9,124.0,1,0,0,1,0,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,131.0,1,38,19,9,9,130.0,1,0,0,1,1,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,132.0,1,1,1,4,1,119.4,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9500,1,1,135.0,1,19,19,7,7,128.0,1,0,0,1,0,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,19,133.1,1,38,38,9,9,114.8,0,0,0,1,0,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,130.0,1,2,2,6,6,130.0,0,0,0,0,1,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,112.0,1,19,38,9,10,112.0,1,0,0,1,0,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9254,1,1,170.0,1,37,37,4,6,138.3,0,0,0,1,0,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9147,1,19,100.0,1,38,19,7,9,132.0,0,0,1,0,1,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,133.1,1,19,19,9,9,119.0,1,0,0,0,0,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,Dropout +1,17,2,9085,1,1,138.0,1,37,37,9,7,123.3,1,0,0,1,0,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,1,133.1,1,37,37,9,9,112.5,0,0,0,1,0,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,1,140.0,1,12,5,3,3,126.6,0,0,0,1,1,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,1,125.0,1,1,1,9,4,120.0,0,0,0,1,0,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,151.0,1,1,1,4,3,132.3,0,0,0,1,1,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,Graduate +1,43,1,9556,1,1,130.0,1,1,37,5,5,128.0,1,0,0,1,1,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,Graduate +1,17,6,9670,1,1,113.0,1,4,1,3,10,112.3,0,0,0,1,0,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9773,1,1,125.0,1,37,37,5,7,120.1,0,0,0,1,0,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,53,1,171,1,42,130.0,1,1,19,9,9,130.0,1,0,0,0,1,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,51,1,33,1,1,121.0,1,19,37,5,7,118.6,0,0,0,1,0,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,131.0,1,37,37,90,90,137.0,0,0,0,1,0,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,150.0,1,19,1,4,4,137.8,0,0,0,1,0,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,140.0,1,37,37,5,6,128.5,0,0,0,1,0,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,130.0,1,37,2,9,4,126.5,1,0,0,0,1,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,Dropout +1,1,2,9238,1,1,147.0,1,19,38,9,8,135.8,1,0,0,1,0,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,106.0,1,19,37,9,7,109.5,1,0,0,1,0,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,110.0,1,37,37,9,10,140.0,0,0,1,0,1,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,105.0,1,19,37,8,8,102.6,0,1,0,1,0,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,Enrolled +1,17,6,9147,1,1,133.0,1,19,38,5,6,123.2,1,0,0,1,1,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9670,1,1,160.0,1,34,34,99,99,100.1,0,0,0,0,1,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,Dropout +4,7,1,9500,1,40,130.0,1,37,37,3,3,130.0,1,0,0,1,0,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,Enrolled +1,43,2,9853,1,1,118.0,1,19,1,5,4,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,Enrolled +1,43,1,8014,0,1,117.0,1,37,37,9,9,100.0,0,0,0,1,0,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,Dropout +1,53,1,9238,1,42,130.0,1,1,19,5,5,128.3,0,0,1,0,0,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,127.0,1,19,38,4,5,120.7,1,0,1,1,0,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,38,37,9,4,150.0,1,0,0,1,1,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,1,133.1,1,37,29,0,4,120.5,0,0,0,0,1,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,121.0,1,37,19,9,9,141.4,0,0,1,0,1,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,120.0,1,38,37,9,7,108.0,0,0,0,1,1,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,153.0,6,37,37,9,9,131.8,1,0,0,1,0,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,153.0,1,38,19,9,5,138.5,1,0,0,1,0,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,107.0,1,12,19,5,5,102.8,1,0,0,1,0,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9238,1,1,135.0,1,1,19,7,7,126.6,1,0,0,1,0,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,124.0,1,1,19,123,103,113.9,1,1,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,144.0,1,37,37,7,9,126.8,1,0,1,0,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9556,1,1,120.0,1,37,37,9,4,150.0,0,0,0,0,0,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,Dropout +1,43,3,171,1,1,120.0,1,37,37,9,9,143.3,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,140.0,1,38,19,4,10,122.3,1,0,0,1,0,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,157.0,1,3,38,1,5,136.7,1,0,0,1,0,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,150.0,1,3,1,2,8,153.8,1,0,0,1,0,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,130.0,1,2,1,2,7,126.2,1,0,0,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,142.0,1,37,37,9,9,132.9,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9238,1,1,124.0,1,1,1,3,1,118.8,1,0,1,0,0,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,1,19,4,5,100.0,0,0,0,1,1,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,Enrolled +1,17,5,9238,1,1,122.0,1,37,37,7,5,112.9,1,0,0,1,0,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,97.5,1,0,0,1,1,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,171,1,1,140.0,1,1,3,3,3,138.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,132.0,1,1,1,3,3,119.4,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,Graduate +1,42,1,9500,1,1,100.0,1,3,19,2,8,153.0,0,0,0,1,1,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,Enrolled +1,1,1,9254,1,1,123.0,1,38,37,5,5,125.1,0,0,0,1,0,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9130,1,1,133.0,1,38,38,5,8,120.4,1,0,0,1,0,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,Graduate +1,17,4,9773,1,1,129.0,1,3,1,2,7,132.5,1,0,0,1,1,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Enrolled +4,39,1,9003,1,19,133.1,1,37,37,9,9,110.0,0,0,0,1,1,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,133.0,1,3,1,9,3,123.2,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,137.0,1,38,19,9,5,129.3,1,0,0,1,0,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,123.0,1,3,1,2,9,127.6,1,0,0,1,1,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,19,133.1,1,19,19,9,5,101.0,1,0,0,1,0,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,19,19,7,7,111.1,1,0,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9070,1,1,147.0,1,3,1,2,3,149.8,1,0,0,1,1,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,100.0,1,37,37,7,9,100.0,1,0,0,1,0,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,141.0,1,38,38,7,7,132.5,1,0,0,1,0,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,168.0,1,1,1,5,5,161.0,1,0,0,1,1,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,Dropout +5,39,1,9003,1,19,133.1,1,19,1,9,9,119.4,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,114.0,1,1,19,9,9,111.9,1,0,0,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,Enrolled +1,39,1,9500,1,1,130.0,1,37,37,3,7,143.8,0,0,0,1,1,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,133.1,1,19,19,9,7,100.0,0,0,0,1,1,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,Dropout +1,17,3,9853,1,1,132.0,1,34,34,0,0,131.3,1,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,157.0,1,37,37,9,9,143.0,0,0,0,1,1,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,Graduate +5,42,1,9254,1,2,120.0,1,37,37,4,9,120.0,0,0,0,1,0,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,6,1,1,192,144,129.8,0,0,0,1,1,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,Enrolled +1,1,2,9500,1,1,139.0,1,38,37,9,7,125.0,1,0,0,1,0,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,133.1,1,1,19,9,5,95.0,1,0,0,1,0,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,180.0,1,37,37,7,4,153.8,1,0,0,1,0,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,4,9773,1,1,133.0,1,1,19,9,9,119.7,1,0,0,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,Graduate +1,17,5,9500,1,1,124.0,1,3,38,2,1,119.8,0,0,0,1,1,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,133.1,1,37,37,9,9,148.2,1,0,1,1,0,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,19,133.1,1,37,37,9,7,114.8,0,0,1,1,1,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,133.1,1,1,19,4,8,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,180.0,41,37,37,9,9,152.7,1,0,1,0,1,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9085,1,1,130.0,1,19,19,90,7,115.8,0,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,161.0,1,38,37,5,5,154.4,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,148.0,1,1,38,4,5,148.7,0,0,0,1,1,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,19,38,9,7,131.3,1,0,1,1,0,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,122.0,1,1,1,4,9,112.9,1,0,0,1,0,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,4,9500,1,1,142.0,1,38,38,9,8,129.8,1,0,0,1,0,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,Graduate +3,39,1,9003,1,1,170.0,1,1,37,6,6,170.0,0,0,1,1,0,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Enrolled +1,1,2,9147,1,1,130.0,1,37,37,9,9,117.8,0,0,0,1,0,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9147,1,1,140.0,1,37,37,9,7,132.3,1,0,0,1,0,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,132.0,1,2,1,9,9,126.4,1,1,0,1,0,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,140.0,1,1,3,9,2,140.0,1,0,0,1,0,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,19,4,4,109.3,0,0,0,1,1,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,176.0,1,3,38,3,7,169.7,0,0,0,1,0,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,133.1,1,37,38,7,7,98.0,1,0,0,1,1,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,136.0,1,3,3,2,2,128.7,0,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,12,38,4,9,107.0,1,0,0,1,0,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,Dropout +1,17,1,9130,1,1,156.0,1,2,9,3,5,166.9,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,Graduate +1,17,1,9130,1,1,123.0,1,19,3,3,2,121.6,1,0,1,1,0,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,129.0,1,1,1,9,9,124.8,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9119,1,1,125.0,1,19,1,5,4,121.5,1,0,0,1,1,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,Dropout +1,17,1,9085,1,1,163.0,14,37,37,9,9,150.8,1,0,0,1,0,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,Graduate +1,7,2,9130,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,135.0,1,1,2,9,1,134.3,1,0,0,1,0,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,19,37,6,6,120.0,0,0,0,1,0,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,1,130.0,1,37,37,9,7,133.0,1,0,0,1,0,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,143.0,1,1,19,4,6,135.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +4,43,2,9991,0,38,133.1,1,3,1,2,9,125.4,0,0,0,1,1,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,140.0,1,3,1,2,4,124.1,0,0,0,1,0,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,37,38,175,103,127.0,0,0,0,1,1,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,151.0,1,1,3,1,1,111.0,0,0,0,1,1,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,133.0,1,37,19,9,8,141.4,0,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,133.1,1,38,37,5,5,108.0,0,0,0,1,0,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,9147,1,1,118.0,1,3,19,2,4,113.8,1,0,0,1,0,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,1,1,3,5,141.7,0,0,0,1,0,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,42,1,9119,1,1,130.0,1,19,37,9,3,135.0,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,Dropout +4,39,2,9147,1,19,133.1,1,37,37,9,7,116.4,0,0,1,0,1,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,148.0,1,19,38,9,8,134.8,1,0,0,1,1,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,116.0,1,19,19,4,7,110.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,5,9147,1,1,122.0,1,38,38,9,9,117.5,1,0,1,0,0,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,122.0,1,37,37,9,9,125.9,1,0,0,1,1,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,171,1,1,127.0,1,1,1,9,5,124.2,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9147,1,39,117.4,1,19,1,4,9,117.4,1,0,0,1,0,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,150.0,1,37,38,9,9,146.2,0,0,0,1,0,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,Enrolled +1,17,1,9254,1,1,158.0,1,37,37,5,9,138.1,1,0,0,1,0,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,Dropout +1,7,1,9500,1,3,140.0,1,1,37,9,5,140.0,0,0,0,1,0,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,140.0,1,1,1,9,3,135.7,1,0,0,1,0,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +2,7,1,171,1,3,120.0,1,19,19,9,9,130.0,1,0,0,1,1,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,10,100.0,1,34,34,0,0,113.0,1,0,0,1,0,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,1,8014,0,1,125.0,1,37,37,9,7,114.9,0,0,0,1,0,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,Graduate +1,18,6,9500,1,1,124.0,1,37,37,9,7,117.8,0,0,0,1,0,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,109.0,1,2,3,3,3,111.8,1,0,1,1,1,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,149.0,1,1,1,9,3,156.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +2,44,1,9119,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,120.0,6,4,4,3,6,120.0,0,0,1,0,0,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,Dropout +5,1,3,9085,1,1,133.0,1,19,19,4,7,119.7,1,0,0,1,0,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9085,1,1,127.0,1,37,37,9,9,122.8,1,0,0,1,0,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,171,1,39,140.0,1,1,1,9,9,140.0,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9773,1,1,132.0,1,1,1,4,9,124.3,1,0,1,1,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +4,39,2,9670,1,19,133.1,1,19,1,90,90,103.0,0,0,0,0,1,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,26,1,9147,1,2,133.1,1,34,34,0,0,121.5,1,0,0,1,0,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,143.0,1,19,38,9,6,131.5,1,0,0,1,1,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,123.0,1,1,19,3,4,122.0,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,171,1,1,133.1,1,3,1,2,3,141.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,19,37,9,4,120.0,0,0,0,1,0,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,1,1,3,3,125.7,1,0,0,1,0,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,121.0,1,37,37,5,5,118.9,1,0,0,1,0,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,Graduate +1,51,1,9500,1,1,129.0,1,37,38,3,3,137.8,1,0,0,1,0,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,2,4,134.9,1,0,1,1,0,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9254,1,1,113.0,1,1,1,2,3,110.2,1,0,0,1,1,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,1,133.1,1,1,19,4,5,120.0,1,0,0,1,1,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,Dropout +1,39,1,9254,1,19,133.1,1,19,1,9,5,97.0,0,0,1,0,1,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9500,1,1,126.0,1,1,19,6,7,115.5,1,0,0,1,0,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,Graduate +1,42,1,9853,1,1,141.0,1,37,19,9,3,133.0,0,0,0,1,0,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,19,133.1,1,19,19,4,9,139.9,1,0,0,1,0,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,2,9254,1,1,140.0,1,19,19,9,9,126.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,108.0,1,34,38,0,3,105.9,0,0,0,1,1,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,114.0,1,19,19,9,7,107.7,0,0,0,1,0,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,130.0,1,3,1,9,9,126.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.1,1,19,37,0,0,137.0,1,0,0,1,0,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9119,1,1,117.0,1,1,2,3,2,119.8,1,0,0,1,1,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9147,1,1,115.0,1,1,37,4,9,117.1,1,0,1,1,0,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,130.0,1,12,19,4,5,118.5,0,1,0,1,0,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,34,37,5,5,120.4,0,0,0,0,0,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,171,1,39,150.0,1,19,1,9,9,154.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,43,1,9147,1,1,140.0,1,37,37,6,6,122.9,0,0,0,1,0,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,Dropout +1,42,1,9070,1,1,100.0,1,3,2,2,2,115.9,0,0,0,1,0,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,Enrolled +1,17,1,171,1,1,128.0,1,1,1,4,10,134.7,0,0,0,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,1,1,9,9,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,7,133.9,0,0,0,1,0,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Dropout +1,43,1,9773,1,1,119.0,1,19,37,5,5,105.0,1,0,0,1,0,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,Enrolled +2,43,1,9991,0,1,140.0,1,37,37,4,1,122.7,0,0,0,1,1,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,135.0,1,37,1,3,5,121.0,0,0,0,1,0,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,123.0,1,3,1,2,3,124.1,1,0,0,1,0,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9670,1,1,132.0,1,19,1,5,4,119.1,0,0,1,1,1,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,5,9254,1,1,130.0,1,37,38,9,9,122.7,1,0,1,1,1,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9147,1,1,117.0,1,1,38,8,9,117.0,1,0,0,1,1,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,140.0,1,19,19,9,6,135.4,1,0,0,1,0,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,162.0,1,37,37,9,6,132.0,0,0,1,1,1,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,139.0,1,19,38,4,9,128.5,1,0,0,1,0,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,Dropout +4,39,1,9991,0,1,130.0,1,38,19,9,7,148.0,0,0,0,1,0,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,43,1,9500,1,1,131.0,1,1,38,5,5,118.8,0,0,0,1,0,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,5,9238,1,1,126.0,1,38,1,9,5,125.7,1,0,0,1,0,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,53,1,9085,1,42,140.0,1,1,1,4,3,140.0,1,0,1,1,0,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,128.0,1,1,1,4,5,120.8,1,0,0,1,0,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,139.0,1,37,37,9,6,133.5,1,0,0,1,0,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,150.0,1,38,38,4,1,150.0,1,0,0,1,1,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,133.1,1,1,1,4,4,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9853,1,1,140.0,1,37,19,9,8,122.3,0,0,0,1,0,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,120.0,1,38,19,5,4,118.3,0,0,0,1,0,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,Enrolled +1,7,1,9130,1,3,140.0,1,2,38,2,3,140.0,1,0,0,0,1,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,122.0,1,9,19,90,6,103.4,0,0,0,1,0,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,Graduate +2,39,1,9070,1,19,133.1,1,37,37,9,10,126.3,0,0,0,0,1,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,160.0,1,38,38,7,7,147.8,0,0,0,1,0,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9238,1,12,100.0,1,37,37,9,9,124.3,0,0,0,1,1,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,Graduate +1,18,2,8014,0,1,117.0,1,3,1,3,4,111.8,1,0,0,1,0,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,38,37,7,7,140.0,0,0,0,1,1,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,Dropout +1,43,1,9853,1,1,140.0,1,3,1,3,3,128.3,1,0,0,1,0,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,127.0,1,37,38,9,9,120.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,1,161.0,1,19,37,4,10,100.0,0,0,0,1,1,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,Graduate +1,16,4,9500,1,1,145.0,1,1,1,4,4,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9853,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,Dropout +1,1,2,171,1,1,127.0,1,2,19,5,5,139.6,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,148.0,1,19,19,4,4,133.8,0,0,0,1,0,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,140.0,1,19,19,1,1,129.5,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,171,1,1,129.0,1,37,37,9,9,122.0,1,0,0,0,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,1,12,3,10,131.6,1,0,0,1,0,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,130.0,1,38,37,3,6,135.6,1,0,0,1,0,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,51,1,9991,0,39,120.0,1,1,4,4,10,118.1,0,0,0,1,1,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,39,1,9853,1,19,133.1,1,19,4,9,4,116.0,1,0,0,1,0,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9238,1,1,133.1,1,1,37,8,9,118.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,4,9500,1,1,125.0,1,19,1,1,1,117.8,1,0,0,1,0,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,141.0,1,1,38,4,5,125.0,1,0,0,1,0,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,121.0,1,38,38,7,5,120.0,1,0,0,1,0,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,Enrolled +1,17,3,9500,1,1,142.0,1,3,3,3,3,132.9,1,0,0,1,1,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,Dropout +1,44,1,9238,1,39,140.0,1,37,19,191,102,136.1,1,0,1,1,0,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9991,0,2,140.0,1,3,3,2,2,155.7,1,0,0,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9119,1,1,135.0,1,12,19,5,5,121.0,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,135.0,1,3,3,2,2,123.0,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,117.0,1,1,1,4,4,117.7,1,0,0,1,1,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,43,1,171,1,1,120.0,1,3,3,2,2,120.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,1,38,1,7,120.0,0,0,0,1,0,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,Graduate +1,17,3,9238,1,1,122.0,1,19,19,7,7,117.5,1,0,0,1,0,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,1,37,37,9,9,144.2,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +4,39,1,9500,1,1,140.0,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,131.0,1,19,19,9,9,139.8,1,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,127.0,1,3,3,2,5,100.0,0,0,0,1,0,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,39,1,9085,1,1,133.1,1,3,19,2,9,110.0,0,0,0,1,0,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,Dropout +4,39,1,9500,1,19,133.1,1,38,1,9,4,120.0,0,0,0,1,0,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,Graduate +1,16,1,9085,1,1,150.0,1,3,3,2,1,153.5,1,0,0,1,0,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,153.0,1,19,37,9,9,153.7,0,0,0,1,0,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,130.0,1,19,19,3,8,131.8,0,0,0,1,0,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,2,9853,1,1,131.0,1,1,1,2,9,121.9,1,0,0,1,0,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,136.0,1,3,3,3,3,130.8,0,0,0,1,0,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,126.0,1,1,19,4,0,120.1,0,1,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,1,120.0,1,3,2,2,6,120.0,1,0,0,1,1,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,Enrolled +2,39,1,9130,1,19,133.1,1,2,1,2,9,157.0,1,0,0,1,1,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,Graduate +1,7,1,9853,1,3,150.0,1,19,19,4,5,150.0,0,0,1,0,0,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,51,1,9070,1,12,133.1,1,37,19,3,7,106.6,0,0,1,1,0,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,Enrolled +1,1,2,9085,1,1,157.0,1,3,3,5,2,153.9,1,0,0,1,0,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,171,1,1,117.0,1,1,19,3,3,121.6,1,0,0,1,0,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,Graduate +1,1,2,9147,1,1,113.0,1,38,38,9,5,107.4,1,0,0,1,1,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,Enrolled +1,39,2,9147,1,12,133.1,1,19,38,9,9,120.0,1,0,1,0,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,152.0,1,37,37,9,9,139.0,1,0,0,1,0,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,138.0,1,1,19,9,9,124.0,0,0,0,1,0,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9853,1,1,110.0,1,37,37,9,9,95.5,0,0,1,0,0,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9130,1,1,150.0,1,19,19,4,4,130.0,0,0,0,0,1,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,3,9119,1,1,138.0,1,1,19,4,3,125.4,1,0,0,1,1,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,17,6,9147,1,1,120.0,1,37,38,9,9,115.5,1,0,1,0,1,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,Enrolled +1,1,3,9670,1,1,134.0,1,14,11,0,0,128.4,1,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,145.0,1,38,37,9,7,129.3,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,18,6,9500,1,1,126.0,1,37,37,5,5,122.8,1,0,0,1,0,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,133.0,1,1,1,4,4,129.2,1,0,0,1,0,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,Dropout +1,44,1,9070,1,39,120.0,1,1,19,4,7,120.0,0,0,1,0,1,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,136.0,1,19,38,9,9,121.7,0,1,0,1,0,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,126.0,1,1,1,9,10,126.7,1,0,0,1,0,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,Graduate +1,1,3,9085,1,1,134.0,1,38,19,9,5,129.1,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,133.1,1,1,37,9,9,117.0,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,5,9238,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,0,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,40,140.0,1,19,37,5,9,148.0,0,0,0,1,0,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,137.0,1,3,38,1,9,131.4,0,0,0,0,1,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,Dropout +1,1,2,9670,1,1,123.0,1,1,38,7,7,120.6,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,139.0,1,3,1,2,7,124.0,1,0,0,1,0,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,Dropout +1,1,2,171,1,1,152.0,1,38,19,9,9,151.7,1,0,0,1,0,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,110.0,1,37,37,9,4,114.3,1,0,0,1,1,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,Enrolled +1,51,1,9991,0,1,120.0,1,38,3,5,3,128.2,0,0,1,1,1,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,141.0,1,3,2,2,2,133.3,1,0,0,1,1,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,Enrolled +1,5,1,171,1,1,137.0,1,3,19,1,10,144.7,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,43,1,9003,1,1,130.0,1,37,1,5,4,130.0,0,0,0,1,1,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,Dropout +1,18,1,9773,1,1,135.0,1,1,1,3,3,129.8,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,38,38,9,8,150.0,1,0,0,1,1,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,Graduate +1,17,2,9773,1,1,150.0,1,1,1,4,5,130.8,0,0,0,1,1,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9773,1,1,123.0,1,1,1,4,7,125.1,1,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,4,9119,1,1,129.0,1,34,36,0,5,118.9,1,0,0,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,144.0,1,38,37,9,9,128.8,1,0,0,1,1,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,130.0,1,38,38,9,9,150.0,0,0,1,0,1,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,128.0,1,1,1,7,7,120.5,1,0,0,1,0,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,Enrolled +1,7,1,9500,1,3,140.0,1,3,1,4,4,140.0,0,0,0,1,0,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,134.0,1,19,19,1,1,120.4,1,0,0,1,1,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,147.0,1,1,38,4,8,141.1,1,0,0,1,0,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,126.0,1,3,1,5,5,125.7,0,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +2,1,4,9853,1,1,134.0,1,37,37,5,7,122.5,0,1,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,148.0,1,38,38,4,9,131.6,0,0,0,1,1,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,Dropout +2,39,1,9085,1,9,133.1,1,1,1,4,4,120.0,1,0,0,0,1,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,39,1,9254,1,1,150.0,1,3,1,3,4,122.3,0,0,0,1,1,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,125.0,1,19,37,3,7,126.8,0,0,0,1,0,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,Enrolled +1,18,1,9670,1,1,128.0,1,19,3,9,7,120.0,1,0,0,1,0,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,160.0,1,2,1,4,4,137.3,1,0,0,1,0,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,Graduate +2,39,1,9238,1,42,170.0,1,19,38,8,8,159.5,0,0,0,1,1,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9773,1,1,143.0,1,1,1,4,9,144.1,1,0,0,1,1,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,9991,0,1,130.0,1,37,37,9,9,127.8,0,0,0,1,1,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,51,1,9147,1,1,130.0,1,19,38,9,8,115.7,0,0,0,1,1,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,Enrolled +1,17,3,9773,1,1,135.0,1,1,19,5,7,135.0,0,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,135.0,1,1,1,9,9,133.3,0,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,136.0,1,1,1,4,5,123.3,0,0,0,0,0,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,143.0,1,5,5,2,2,137.8,0,0,0,1,1,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,133.1,1,1,19,141,114,140.0,1,0,0,1,0,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9670,1,1,117.0,1,38,19,0,1,114.6,0,0,0,0,1,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,133.1,1,1,19,4,10,145.8,0,0,0,1,1,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,129.0,1,1,37,4,9,118.2,0,0,0,1,1,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,7,1,9500,1,3,130.0,1,37,37,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,Graduate +1,17,4,9670,1,1,135.0,1,38,38,9,7,127.0,1,0,0,1,0,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,126.0,1,1,1,90,90,119.0,1,0,1,1,1,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9773,1,1,120.0,1,1,38,5,5,121.4,0,0,0,0,0,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,136.0,1,1,38,9,9,130.8,1,0,0,1,0,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,131.0,1,19,37,9,9,123.8,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,144.0,1,19,19,9,9,142.6,1,0,0,1,0,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,126.0,1,38,38,7,8,126.7,1,0,0,1,0,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,3,171,1,1,125.0,1,37,37,5,10,120.5,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,7,1,9130,1,2,110.0,1,19,19,4,8,110.0,1,0,0,1,1,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,3,1,2,8,150.0,0,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,5,171,1,1,139.0,1,19,3,9,2,136.9,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9147,1,1,100.0,1,38,38,5,5,101.8,1,0,0,1,0,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,Enrolled +1,44,2,9238,1,39,150.0,1,3,19,4,9,147.0,1,0,0,1,0,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,9,4,100.0,0,0,0,1,1,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9130,1,1,130.0,1,19,38,4,7,122.5,0,0,0,1,1,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,19,37,1,1,140.0,0,0,1,1,1,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,Enrolled +1,17,1,9070,1,1,157.0,1,3,3,3,3,146.2,0,0,0,1,1,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,150.0,1,37,19,8,4,130.8,0,0,0,1,1,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,133.1,1,19,19,7,7,130.0,1,0,0,1,0,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,150.0,1,19,1,9,8,150.0,1,0,0,1,1,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,127.0,1,1,19,7,7,121.8,1,0,0,1,0,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9853,1,1,148.0,1,19,19,5,7,141.7,0,0,0,1,0,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,130.0,1,1,19,9,9,133.4,0,0,0,1,0,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,123.0,1,37,38,3,3,122.0,0,0,1,1,1,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9070,1,1,132.0,1,37,38,9,7,138.0,0,0,0,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,146.0,1,2,19,3,9,130.3,1,0,0,1,1,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,Graduate +1,44,1,171,1,39,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,116.0,1,3,1,3,4,115.7,0,0,0,0,1,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9670,1,1,130.0,1,19,37,4,5,118.8,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,124.0,1,37,37,7,9,121.2,0,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,127.0,1,19,37,9,3,120.7,1,0,0,1,0,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +2,43,1,9070,1,2,140.0,1,37,37,6,6,140.0,1,0,0,1,1,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,Graduate +1,39,1,9500,1,1,100.0,1,3,1,2,5,121.3,1,0,0,1,0,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,Enrolled +1,39,1,9991,0,19,133.1,1,37,37,9,6,105.3,0,0,1,1,0,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,1,155.0,1,1,19,4,8,134.7,1,0,0,1,0,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,15,1,9119,1,1,160.0,32,1,3,143,152,160.0,0,0,1,1,0,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,Enrolled +1,53,1,9670,1,42,140.0,1,19,37,3,6,140.0,1,0,1,1,0,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9853,1,1,140.0,1,38,38,9,7,137.6,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,140.0,1,19,19,7,7,129.5,1,0,0,1,0,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,133.1,1,19,19,3,4,104.0,0,0,1,0,0,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,130.0,1,37,37,9,9,118.8,0,0,1,1,1,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,136.0,1,1,1,9,1,133.0,1,0,0,1,0,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,143.0,1,38,38,9,9,138.8,1,0,0,1,0,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,Graduate +2,39,1,9147,1,1,140.0,1,37,37,6,10,131.8,0,0,0,1,0,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,1,130.0,1,4,1,2,9,120.0,0,0,0,0,0,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,Enrolled +1,1,4,9500,1,1,148.0,1,19,19,4,5,137.0,1,0,0,1,0,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,120.0,1,37,19,5,3,156.0,1,0,0,1,1,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9853,1,1,133.1,1,12,1,4,0,134.8,1,0,0,1,0,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,122.0,1,1,1,9,8,120.3,0,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,156.0,1,19,38,9,5,170.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,129.0,1,38,37,9,3,127.3,1,0,1,0,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,142.0,1,38,38,9,10,127.0,1,0,0,1,0,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,150.0,1,38,19,3,3,120.1,0,0,0,0,0,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,141.0,1,37,37,9,9,126.7,1,0,1,1,0,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,43,3,9147,1,1,127.0,21,3,37,3,3,117.9,1,0,0,1,0,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,1,120.0,1,1,19,4,7,110.0,0,0,0,1,1,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,Dropout +2,42,1,9254,1,1,136.0,1,2,2,134,112,130.0,1,0,0,1,1,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,Dropout +1,18,1,9119,1,1,122.0,1,19,1,90,3,116.1,1,0,1,0,1,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9500,1,1,120.0,1,2,4,4,5,136.6,0,0,0,1,1,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,Dropout +1,18,1,9070,1,1,143.0,1,38,38,7,5,141.6,0,0,0,1,0,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,Graduate +1,43,1,9119,1,1,140.0,1,37,38,5,7,146.5,0,0,0,1,1,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,125.0,1,19,19,9,9,121.5,1,0,0,1,0,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,1,0,0,1,0,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,159.0,1,3,3,2,2,165.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,127.0,1,3,1,2,9,119.3,1,0,0,1,0,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,Graduate +1,17,6,9238,1,1,117.0,1,1,38,4,7,114.6,0,0,0,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9119,1,1,148.0,1,19,19,9,8,129.8,0,0,0,0,1,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,Enrolled +1,17,4,9119,1,1,127.0,1,19,19,5,5,120.4,1,0,1,0,1,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9500,1,1,144.0,1,19,1,5,3,141.0,1,0,0,1,0,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,Graduate +1,17,3,9556,1,1,126.0,1,19,19,9,4,119.0,1,0,0,1,0,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,Dropout +1,1,4,9119,1,1,126.0,1,3,19,2,9,123.6,1,0,0,1,1,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,120.0,1,1,2,144,123,125.3,0,0,1,1,1,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9070,1,1,130.0,1,1,19,4,4,110.0,1,0,0,1,0,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,37,37,90,5,115.5,0,0,0,0,1,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,130.0,1,38,38,9,9,120.0,0,0,0,1,0,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9853,1,1,141.0,1,3,1,1,5,130.2,1,0,0,1,0,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,Enrolled +2,1,1,9500,1,1,156.0,1,1,1,9,10,135.5,0,0,0,1,0,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,Graduate +2,7,1,8014,0,3,170.0,1,19,19,4,4,170.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9147,1,1,134.0,1,37,19,9,8,126.3,1,0,0,1,0,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,122.0,1,12,12,5,7,126.6,1,0,0,1,0,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,38,38,9,7,138.8,1,0,0,1,0,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,132.0,1,37,37,5,7,127.5,1,0,0,1,0,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,Graduate +1,16,2,9238,1,1,130.0,1,37,37,5,6,126.9,1,0,0,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,110.0,1,3,2,3,3,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,127.0,1,2,19,4,5,121.8,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,12,133.1,1,38,19,9,8,138.3,1,0,1,0,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9147,1,19,133.1,1,3,1,3,5,153.2,1,0,1,1,0,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,37,19,5,9,130.0,1,0,0,1,0,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,2,9147,1,1,130.0,1,19,37,4,7,140.0,0,0,0,1,1,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,128.0,1,19,19,7,7,124.4,0,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,19,3,8,150.3,1,0,0,1,1,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,143.0,1,38,19,7,9,129.5,1,0,0,1,0,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,6,141.0,1,37,1,9,4,145.0,0,0,0,1,0,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,Graduate +1,17,1,9238,1,1,160.0,1,19,37,6,6,144.3,0,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,2,9238,1,1,133.1,1,19,19,4,5,120.6,1,0,0,1,0,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,3,116.5,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,127.0,1,1,1,3,4,130.2,1,0,0,1,1,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9254,1,1,131.0,1,38,36,9,9,124.0,1,0,0,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,5,9254,1,1,120.0,1,37,37,9,7,127.0,1,0,0,1,0,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,135.0,1,34,34,0,0,134.1,1,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9254,1,1,133.1,1,37,37,9,6,121.5,0,0,0,1,1,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,144.0,1,38,38,5,7,128.0,1,0,0,1,0,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,132.0,1,1,19,6,6,124.7,1,0,0,1,1,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,Graduate +1,17,2,9991,0,1,116.0,1,37,19,9,4,118.5,0,0,0,1,1,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,133.1,1,1,1,9,1,103.0,1,0,0,1,0,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,16,5,9085,1,1,134.0,1,19,37,8,8,123.9,1,0,0,1,1,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9773,1,1,114.0,1,37,38,9,5,107.4,1,0,0,0,1,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,38,37,5,7,120.0,1,0,0,1,0,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,135.0,1,1,38,4,6,122.1,0,1,1,0,1,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,1,150.0,1,37,37,7,5,143.0,0,0,0,1,0,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,Graduate +1,44,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,Graduate +4,39,1,9238,1,19,133.1,1,37,37,9,10,103.5,0,0,0,0,0,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,126.0,1,19,38,9,9,132.0,1,0,0,1,0,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,125.0,1,1,1,7,3,143.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9147,1,1,120.0,1,37,1,9,1,122.7,0,0,0,0,0,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,7,1,8014,0,3,124.4,1,37,34,0,0,130.0,0,0,0,1,0,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,Graduate +1,18,1,9085,1,1,106.0,1,1,19,3,5,104.6,0,0,0,0,1,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,Enrolled +1,44,1,9119,1,39,160.0,1,3,38,2,3,160.0,0,0,1,0,1,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,148.0,1,3,19,2,5,130.0,0,0,0,1,0,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,Enrolled +1,1,1,9130,1,1,133.0,1,1,37,9,9,123.2,1,0,0,1,0,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9500,1,1,130.0,1,19,1,9,4,128.8,1,0,0,1,0,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,149.0,1,19,1,9,9,137.8,1,0,0,1,1,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,Graduate +4,43,1,9670,1,1,150.0,1,37,37,9,6,110.0,0,0,0,1,0,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,Graduate +2,39,1,9119,1,1,110.0,1,19,19,0,5,137.0,0,0,1,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9556,1,1,122.0,1,19,19,3,10,113.3,1,0,0,1,0,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,140.0,1,1,19,4,5,127.5,0,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,128.0,1,37,37,5,5,124.5,1,0,0,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,39,150.0,6,5,4,1,1,150.0,0,0,0,1,0,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,131.0,1,38,37,7,7,127.2,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,130.0,1,37,37,9,6,126.5,1,0,0,1,0,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,116.0,1,19,37,90,5,116.7,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,Dropout +1,17,3,9853,1,1,140.0,1,38,38,5,7,126.7,1,0,0,1,0,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,4,9238,1,1,129.0,1,37,37,9,8,117.1,1,0,0,1,1,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,144.0,1,19,19,9,9,130.5,1,0,0,1,0,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,124.0,1,19,1,7,10,116.0,1,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,122.0,1,1,19,4,4,127.3,1,0,1,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,12,12,4,1,155.3,1,1,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +2,15,1,9773,1,1,133.1,41,37,37,9,6,100.0,0,0,0,1,0,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,138.0,41,1,1,9,9,126.5,1,0,0,1,0,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,Graduate +1,18,6,9500,1,1,142.0,1,38,37,9,5,128.0,1,0,0,0,0,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,3,1,2,3,140.0,1,0,0,1,0,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,Enrolled +1,42,1,9991,0,1,150.0,1,19,19,5,5,113.7,0,0,0,1,1,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,135.0,1,1,19,5,5,130.1,1,0,0,1,0,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9254,1,1,120.0,1,19,1,9,8,117.2,0,0,0,1,1,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,130.0,1,19,19,9,7,119.5,1,0,0,1,1,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,133.0,1,1,1,4,5,136.2,1,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,15,1,9147,1,1,133.1,21,1,3,192,3,100.0,0,0,1,1,1,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9670,1,1,112.0,1,37,1,7,0,110.6,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9238,1,1,117.0,1,19,19,9,9,117.0,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9991,0,1,140.0,1,1,37,9,8,154.5,0,0,0,1,0,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,97.0,1,0,0,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,119.0,1,37,37,5,4,118.0,1,0,0,1,1,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,112.0,1,19,38,5,7,107.1,1,0,0,1,0,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +2,18,2,8014,0,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,144.0,1,37,37,9,6,129.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,120.0,100,1,1,4,7,119.5,0,0,1,1,0,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,136.0,1,19,38,5,8,130.3,1,0,0,1,0,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,7,9,121.3,1,0,0,1,0,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,135.0,1,1,4,5,3,124.9,0,0,0,1,0,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,4,9670,1,1,128.0,1,38,38,3,7,121.0,1,0,0,1,0,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,15,1,9556,1,1,114.0,26,3,19,122,144,114.0,0,0,0,1,0,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9238,1,1,125.0,1,19,19,3,3,118.0,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,118.0,1,37,37,7,7,114.2,0,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,Enrolled +1,17,1,9147,1,1,115.0,1,19,37,5,7,112.9,1,0,0,0,1,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,120.0,1,19,37,9,9,118.3,0,0,1,0,1,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9119,1,10,133.1,1,34,37,0,0,128.8,1,0,0,1,1,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,115.0,1,19,38,5,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,137.0,1,37,37,9,9,132.8,1,0,0,1,0,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9003,1,1,148.0,1,19,37,9,9,131.6,1,0,0,1,1,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9773,1,1,161.0,1,1,19,4,7,148.4,0,0,0,1,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,43,1,9991,0,1,133.1,1,37,37,9,7,113.5,0,0,0,1,0,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,132.0,1,1,1,9,9,133.8,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9254,1,1,125.0,1,37,37,9,9,122.9,0,0,0,1,1,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,123.0,1,3,1,9,3,121.3,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,Enrolled +1,17,1,9991,0,1,154.0,1,38,38,4,5,134.1,0,0,0,1,0,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,Enrolled +1,44,1,9130,1,39,140.0,1,19,19,5,5,140.0,1,0,1,0,0,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,Enrolled +1,53,1,9085,1,42,170.0,1,1,19,4,7,170.0,0,0,0,1,0,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,Graduate +1,17,5,9147,1,1,131.0,1,19,38,3,10,119.8,1,0,0,1,0,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,141.0,1,19,19,9,9,126.0,1,0,0,1,0,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,Graduate +1,1,3,9500,1,1,137.0,1,19,19,5,4,131.5,1,0,0,1,0,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,118.0,1,19,1,9,3,113.5,1,0,1,1,0,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,100.0,1,37,37,99,99,100.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9130,1,1,120.0,6,1,3,9,2,120.0,0,0,1,1,0,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,127.0,1,19,19,5,5,129.8,1,0,0,1,0,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,134.0,1,37,37,9,9,129.8,1,0,0,1,0,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,121.0,1,37,37,5,9,116.5,1,0,0,1,0,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9070,1,1,117.0,1,19,37,5,5,131.0,1,0,1,0,1,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,125.0,1,1,38,9,7,119.8,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,5,9500,1,1,140.0,1,1,1,4,3,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,1,5,9254,1,1,101.0,1,3,19,3,9,98.9,1,0,0,1,1,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,130.0,1,37,38,7,9,117.8,0,0,1,1,0,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,128.0,1,34,19,3,0,141.0,1,0,0,0,0,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,150.0,1,38,37,9,9,130.8,0,0,0,1,1,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,125.0,1,1,19,4,7,116.6,0,0,0,1,1,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,Graduate +1,43,1,9670,1,1,130.0,1,34,34,0,0,114.8,0,0,0,1,1,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,Graduate +2,42,1,9003,1,1,120.0,1,3,1,2,2,113.3,0,0,0,1,1,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +4,39,1,9991,0,1,133.1,1,37,37,5,5,138.7,0,0,0,1,0,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,Dropout +1,39,1,9238,1,1,140.0,1,34,34,0,0,114.0,1,0,0,0,0,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9991,0,1,133.1,1,37,19,3,10,136.1,0,0,0,1,1,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9070,1,1,110.0,1,37,37,7,7,110.2,0,0,0,1,1,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,150.0,1,4,5,4,2,150.0,0,0,0,1,1,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,Enrolled +1,1,2,9119,1,1,149.0,1,38,38,5,5,141.0,0,0,0,1,1,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,Enrolled +1,42,1,9085,1,39,150.0,1,1,1,4,7,150.0,1,0,0,1,0,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,1,38,4,9,131.7,1,0,0,1,0,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,42,1,9853,1,1,120.0,1,1,37,5,5,113.9,1,0,0,1,0,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9085,1,1,130.0,1,37,19,9,7,130.0,1,0,0,1,0,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,Enrolled +1,17,4,9500,1,1,133.0,1,38,37,5,7,126.4,1,0,0,1,1,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,147.0,1,3,1,2,3,131.6,0,0,0,1,0,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,12,133.1,1,37,37,9,9,121.5,0,0,0,1,1,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,1,1,9991,0,1,150.0,1,37,37,9,9,131.8,0,0,0,0,0,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,43,4,8014,0,1,116.0,1,34,34,0,0,116.2,0,0,0,1,1,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,7,140.0,0,0,0,1,1,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9773,1,1,136.0,1,3,1,2,3,132.5,1,0,0,1,0,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,19,110.0,1,37,38,5,5,151.0,0,0,1,0,1,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,19,19,5,5,113.2,1,0,1,1,0,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,137.0,1,3,19,2,9,122.3,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +4,39,1,9254,1,1,120.0,1,37,19,9,9,131.0,1,0,0,1,1,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9556,1,1,123.0,1,19,19,4,9,113.8,1,0,0,1,0,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,150.0,1,3,37,4,7,139.5,0,0,0,1,1,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,145.0,1,38,37,3,9,138.4,1,0,0,0,0,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,39,1,8014,0,1,140.0,1,37,37,9,7,122.0,1,0,1,0,1,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,3,9991,0,1,120.0,1,37,37,9,9,128.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,6,9500,1,1,126.0,1,12,37,5,9,121.8,1,0,0,1,0,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,Dropout +2,39,1,9991,0,1,130.0,1,37,37,9,9,140.0,1,0,0,1,1,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,130.0,1,37,19,9,8,130.8,0,0,0,1,1,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,Enrolled +1,1,3,9070,1,1,125.0,1,19,38,9,9,125.4,1,0,0,1,0,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,132.0,1,38,38,4,9,119.1,0,0,0,1,0,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,Graduate +4,7,1,9147,1,3,130.0,1,19,1,5,5,130.0,0,0,0,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,130.0,1,19,19,7,7,121.6,1,0,0,1,0,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9773,1,1,126.0,1,37,38,5,5,129.5,1,0,1,0,0,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,133.0,1,38,38,5,5,123.2,0,0,0,1,0,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,140.0,1,37,37,9,9,121.0,0,0,0,1,0,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,3,9500,1,1,131.0,1,37,37,9,9,118.0,1,0,0,1,0,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,120.0,1,38,19,4,8,115.1,0,0,0,1,0,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,Enrolled +1,17,5,9773,1,1,111.0,1,19,12,7,3,115.9,1,0,0,1,0,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,135.0,1,1,19,9,7,123.5,1,0,0,1,0,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,37,4,9,130.0,1,0,0,1,0,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,Enrolled +1,44,1,9119,1,39,130.0,1,3,19,3,4,130.0,0,0,0,1,1,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,Enrolled +1,44,1,9147,1,39,130.0,22,2,37,2,8,130.0,0,0,1,0,1,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,119.0,1,37,37,9,6,119.0,0,0,1,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9500,1,1,142.0,1,38,37,9,8,130.8,1,0,0,1,0,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,136.0,1,38,1,9,4,129.7,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,140.0,1,19,19,4,4,140.0,1,0,0,1,1,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,19,133.1,1,1,19,4,10,114.0,0,0,0,1,1,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +1,17,5,9670,1,1,125.0,1,19,30,7,7,118.4,1,0,0,1,0,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,135.0,1,19,19,9,10,122.9,1,0,0,1,0,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,100.0,1,37,37,9,9,108.0,1,0,0,1,1,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,127.0,1,37,37,9,9,119.3,1,1,0,1,1,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,133.0,1,38,19,9,10,125.0,1,0,0,1,0,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,116.0,1,3,3,3,3,110.1,1,0,0,1,1,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,133.1,1,1,1,5,8,123.0,1,0,0,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,144.0,1,37,37,9,3,150.5,0,0,0,1,0,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,3,1,2,4,130.2,0,0,0,1,1,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,116.0,1,38,37,9,6,109.7,1,0,0,1,0,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,Graduate +1,18,3,9853,1,1,128.0,1,38,37,5,9,116.8,1,0,0,0,1,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,150.0,1,37,37,4,9,132.1,1,0,1,1,0,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,160.0,1,1,19,4,6,155.7,1,0,0,1,0,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,130.0,1,19,1,9,9,131.9,0,0,0,1,0,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,126.0,1,3,3,2,2,121.1,0,0,1,1,0,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,38,38,7,7,147.0,0,0,0,1,0,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,137.0,1,37,37,9,9,126.2,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,38,37,5,5,137.1,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,143.0,1,2,37,1,1,133.2,1,0,0,1,0,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,Enrolled +1,17,5,9070,1,1,122.0,1,19,38,5,7,119.6,0,0,1,0,0,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,137.0,1,19,38,9,9,127.2,1,0,0,1,0,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,110.0,1,1,1,4,4,125.9,0,0,0,1,1,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,130.0,1,1,38,5,9,118.1,0,0,1,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9853,1,1,130.0,1,37,19,9,5,102.5,0,0,0,1,0,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.0,1,19,1,9,1,122.2,0,0,0,1,0,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,39,140.0,1,3,3,2,2,140.0,1,0,0,1,0,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,134.0,1,37,38,9,9,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,1,1,37,4,7,110.0,0,0,0,1,1,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,Dropout +1,15,1,9085,1,1,133.1,41,3,3,4,2,101.3,0,0,0,1,0,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,113.0,1,1,1,5,4,106.7,1,0,1,1,0,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,Dropout +2,39,1,9991,0,19,133.1,1,37,37,5,5,111.9,1,0,0,1,1,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9853,1,1,134.0,1,19,38,4,8,122.1,1,0,0,1,0,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9853,1,1,133.0,1,19,37,4,9,130.2,1,0,0,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,127.0,1,19,19,5,5,160.0,0,0,0,1,1,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,Graduate +1,7,1,9500,1,3,130.0,1,37,38,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,140.0,1,19,38,7,7,136.5,1,0,0,1,0,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,Graduate +2,39,1,9773,1,19,133.1,1,37,37,9,6,110.0,0,0,0,0,0,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,Dropout +2,39,1,8014,0,1,120.0,1,34,34,99,99,101.8,0,0,0,0,0,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,135.0,1,1,1,4,7,129.8,1,0,0,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,131.0,1,37,38,5,5,128.9,0,0,0,1,0,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,Graduate +1,1,4,9070,1,1,139.0,1,3,19,1,5,138.3,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9500,1,1,122.0,1,1,1,3,7,114.3,1,0,0,1,1,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,150.0,1,37,37,9,7,136.5,1,0,0,1,0,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,3,1,2,8,121.4,0,0,0,1,1,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,117.0,1,19,19,194,193,117.4,1,0,0,1,0,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,Enrolled +2,39,1,9085,1,1,133.1,1,36,36,99,5,128.2,0,0,0,0,0,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,121.0,1,3,1,2,3,114.0,0,0,0,1,1,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,Enrolled +1,51,1,9853,1,1,139.0,1,1,1,4,10,134.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9070,1,1,137.0,1,1,1,3,1,141.2,1,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,133.1,1,37,37,6,3,140.0,0,0,1,1,1,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,1,9147,1,1,126.0,1,37,37,4,7,116.9,0,0,0,1,1,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,44,1,9130,1,39,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,1,9991,0,1,130.0,1,37,37,9,9,128.2,0,0,0,1,0,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,131.0,1,19,9,5,3,118.4,0,0,0,1,0,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,138.0,1,19,19,3,3,131.0,1,0,0,1,0,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,1,130.0,1,37,12,9,8,129.4,1,0,1,0,1,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,9991,0,1,134.0,1,37,37,9,9,113.7,0,0,0,1,0,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9853,1,1,117.0,1,38,38,9,7,114.6,1,0,0,1,0,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,145.0,1,3,3,4,4,153.1,1,0,0,1,0,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9085,1,1,130.0,1,19,38,4,9,130.0,1,0,0,0,0,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9119,1,1,146.0,1,37,37,9,9,148.5,1,0,0,1,1,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,136.0,1,1,1,4,4,124.1,0,0,0,1,0,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,100.0,1,37,38,9,4,140.0,0,0,0,1,1,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,Enrolled +1,44,1,9003,1,39,180.0,1,1,3,4,2,180.0,0,0,0,1,0,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,Graduate +1,15,1,9773,1,1,120.0,26,19,19,4,5,120.0,1,0,0,1,0,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,141.0,1,4,19,4,10,100.0,0,0,0,1,1,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,1,150.0,1,29,10,6,6,150.0,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,5,9254,1,1,122.0,1,1,37,9,7,119.6,1,0,0,1,0,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,128.0,1,19,38,9,7,124.2,1,0,0,1,1,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9130,1,1,172.0,1,19,19,9,9,163.3,1,0,0,1,0,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,129.0,1,38,37,5,5,142.0,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,100.0,1,1,3,9,10,120.0,0,0,1,0,1,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,Graduate +1,1,3,9238,1,1,135.0,1,1,12,9,10,121.0,1,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,136.0,1,2,2,3,3,120.0,1,0,0,1,1,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,6,9147,1,1,143.0,1,38,37,9,9,128.7,1,0,0,1,1,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9500,1,1,126.0,1,37,37,7,7,126.2,1,0,0,1,0,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,135.0,1,19,19,4,3,135.0,1,0,0,1,1,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,Enrolled +1,1,2,9254,1,1,132.0,1,1,19,9,9,129.9,1,0,0,1,0,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,120.0,1,34,34,0,0,104.0,0,0,0,1,0,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,9,133.1,1,37,37,8,10,100.0,1,0,0,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,43,1,9147,1,1,130.0,1,19,37,7,10,138.0,0,0,0,1,0,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,Graduate +1,17,2,9119,1,1,120.0,1,1,19,9,8,117.2,0,0,0,1,1,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,133.1,1,1,12,4,5,116.5,0,0,0,1,1,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,105.0,1,19,19,6,6,106.1,1,0,0,1,0,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,118.0,1,1,19,4,8,118.7,0,0,0,1,1,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,6,9500,1,1,140.0,1,3,19,3,8,129.0,1,0,0,1,0,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,168.0,1,19,19,4,4,171.2,0,0,0,1,1,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,133.0,1,19,9,0,0,121.5,1,0,0,1,0,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,177.0,1,1,38,3,9,162.3,0,0,0,1,0,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,130.0,1,38,38,2,9,124.8,0,0,0,1,0,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,136.0,1,38,1,5,6,133.9,1,0,0,1,0,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,154.0,1,1,1,5,3,144.9,0,0,0,1,1,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,Graduate +1,44,1,9119,1,39,150.0,1,19,37,9,9,150.0,1,0,1,1,1,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,Dropout +1,1,4,9254,1,1,132.0,1,12,19,9,9,124.7,1,0,0,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,33,1,1,100.0,41,38,37,9,8,100.0,0,0,1,0,1,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,120.0,1,4,1,2,9,113.4,0,0,0,1,0,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,134.0,1,1,19,9,9,136.1,1,0,0,1,0,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9500,1,1,150.0,1,1,19,5,3,140.0,0,1,0,1,0,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,129.0,1,37,37,9,9,128.8,1,0,0,1,0,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +2,39,1,9500,1,1,100.0,1,37,38,4,4,130.0,0,0,0,1,1,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,Enrolled +1,1,1,9773,1,1,140.0,1,19,37,9,6,135.8,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,40,150.0,1,19,19,9,5,150.0,0,0,1,0,0,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,148.0,1,1,37,4,8,132.0,1,0,0,1,0,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,Graduate +1,7,1,9119,1,40,140.0,1,3,1,2,5,140.0,0,0,0,1,1,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,163.0,1,19,1,9,7,143.1,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,3,9070,1,1,164.0,1,1,1,5,3,161.2,1,0,0,1,0,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,Graduate +1,1,6,9773,1,1,141.0,1,30,37,7,7,128.4,1,0,1,0,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,Dropout +1,43,2,9147,1,1,126.0,1,1,19,3,3,100.0,1,0,0,1,1,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,141.0,1,19,19,5,10,135.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,4,9670,1,1,117.0,1,3,3,4,4,113.2,0,0,0,1,1,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +2,43,1,9991,0,3,140.0,1,37,19,9,4,140.0,0,0,1,1,0,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,134.3,0,0,0,1,1,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,137.0,1,38,19,9,7,125.1,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,6,134.0,0,0,0,1,0,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,123.0,1,37,37,7,7,119.7,0,0,0,1,1,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9147,1,1,120.0,1,37,37,9,9,104.7,1,0,0,1,1,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,137.0,62,1,1,9,9,129.3,0,0,0,1,0,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,8014,0,1,122.0,1,37,19,9,9,123.8,0,0,0,1,0,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,Graduate +2,39,2,8014,0,1,100.0,1,34,34,0,0,100.0,1,0,0,1,0,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,Graduate +2,1,1,9991,0,2,120.0,1,37,37,6,3,129.2,0,0,0,1,0,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,150.0,1,3,19,2,6,150.0,0,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9991,0,1,123.0,1,1,3,4,2,113.2,0,0,0,0,1,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,Dropout +1,1,3,9773,1,1,130.0,1,1,37,4,5,120.9,1,0,1,1,0,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,146.0,1,19,3,4,9,127.0,0,0,0,1,1,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,160.0,1,19,38,9,9,160.0,1,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9085,1,39,150.0,1,38,37,6,6,150.0,1,0,0,1,0,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,136.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,150.0,1,37,19,9,4,135.6,0,0,0,1,0,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,6,171,1,1,134.0,1,19,37,5,5,126.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +4,39,1,9773,1,38,133.1,1,19,19,7,9,133.0,0,0,0,1,0,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,Enrolled +1,17,2,9119,1,1,120.0,1,10,12,9,9,120.4,1,0,0,1,1,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,4,9254,1,1,113.0,1,38,19,7,7,107.4,1,0,0,1,0,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,137.0,1,1,19,4,5,136.3,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,142.0,1,37,37,9,7,132.7,1,0,0,1,0,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,Graduate +1,18,5,9085,1,1,121.0,1,5,3,2,3,111.9,1,0,0,1,0,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,9,133.1,1,34,36,0,90,107.5,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,19,133.1,1,19,37,6,8,149.5,0,0,0,1,1,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9147,1,1,120.0,1,1,37,4,9,113.4,1,0,0,1,1,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,130.0,1,37,38,9,5,130.5,1,0,0,1,0,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,153.0,1,1,19,9,10,147.8,0,0,0,1,0,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,159.0,1,3,1,4,4,162.2,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,122.0,1,37,37,5,6,114.3,0,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,2,9556,1,19,133.1,1,37,37,3,7,117.8,0,0,0,1,0,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,132.0,1,38,1,9,9,124.3,1,0,0,1,0,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,141.0,1,19,19,9,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,Graduate +1,17,1,9500,1,1,152.0,1,19,19,4,9,132.5,0,0,0,1,1,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,Graduate +1,17,1,9991,0,40,127.0,1,37,37,6,6,124.9,0,0,0,1,0,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,133.1,1,1,19,4,6,106.0,1,0,0,1,0,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,19,37,4,7,150.0,1,0,0,1,0,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9254,1,1,125.0,1,1,1,191,193,114.5,0,0,0,1,1,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,134.0,1,19,19,4,7,131.0,1,0,0,1,1,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,134.0,1,19,19,9,9,125.8,1,0,0,1,0,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,Graduate +1,17,1,171,1,1,125.0,1,37,37,7,9,134.1,1,0,0,1,1,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,Dropout +1,51,1,9254,1,1,120.0,1,38,38,9,9,118.0,0,0,0,1,0,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,155.0,1,1,1,4,3,140.5,1,0,0,1,0,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,125.0,1,1,1,4,90,125.4,1,0,0,1,1,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,1,5,5,126.3,0,0,0,1,1,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,Graduate +1,39,1,9147,1,1,140.0,1,37,3,9,2,135.1,0,0,0,1,1,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,171,1,1,122.0,1,19,12,5,9,127.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,2,9670,1,1,150.0,1,34,34,0,0,107.0,1,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,3,130.0,1,19,19,3,9,130.0,0,0,0,0,1,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,Dropout +1,39,1,33,1,1,133.1,1,19,37,9,9,96.1,0,0,0,1,1,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,Dropout +2,42,1,9500,1,2,130.0,1,37,37,9,9,130.0,0,0,0,1,0,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,Graduate +1,18,1,9238,1,1,137.0,1,19,38,5,8,137.4,1,0,0,1,0,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9254,1,1,140.0,1,19,1,9,8,140.9,1,0,0,1,0,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,132.0,1,1,2,9,3,128.2,1,0,0,1,0,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9085,1,1,126.0,1,1,3,5,5,123.9,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,19,133.1,1,37,37,9,7,106.5,0,0,0,1,0,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,132.0,1,37,19,7,7,132.4,1,0,0,1,0,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,139.0,1,37,38,9,9,126.1,0,0,0,1,0,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,136.0,1,19,38,9,9,123.0,1,0,0,1,0,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,1,140.0,1,0,0,1,1,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,123.0,1,19,19,9,8,134.0,0,0,0,1,0,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,130.0,1,38,19,9,4,118.4,0,0,1,1,0,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,126.0,1,1,1,9,9,116.2,0,0,1,0,1,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,19,1,7,10,105.0,0,0,0,1,1,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,Dropout +1,17,1,9119,1,1,130.0,1,19,19,7,9,121.3,1,0,0,1,1,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,Dropout +1,43,1,9500,1,19,133.1,1,34,34,0,0,110.0,1,0,0,1,1,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,Dropout +1,1,3,9070,1,1,139.0,1,1,38,4,7,142.2,1,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,142.0,1,38,1,5,4,136.6,0,0,0,1,0,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,Graduate +1,17,2,9670,1,1,128.0,1,37,38,5,8,121.7,0,0,0,1,1,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,140.0,1,1,3,9,4,140.0,0,0,1,0,0,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,125.0,1,19,19,9,10,122.0,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,8014,0,1,130.0,1,37,37,9,8,103.5,0,0,0,1,0,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,3,9085,1,1,117.0,1,19,38,5,7,111.1,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,42,1,9085,1,39,140.0,1,19,3,9,1,159.9,1,0,0,1,0,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9254,1,1,112.0,1,37,37,6,6,106.1,1,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9070,1,1,117.0,1,5,1,2,10,120.0,1,0,0,1,0,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,Enrolled +1,7,1,9556,1,2,130.0,1,37,37,9,9,130.0,1,0,0,1,0,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,40,140.0,1,1,19,9,9,139.0,0,0,0,1,0,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,10,130.0,0,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,9070,1,1,135.0,1,3,1,3,5,121.8,0,0,0,1,0,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,135.0,1,19,3,9,4,121.5,1,0,0,1,0,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,136.0,1,19,38,4,8,125.5,1,0,0,1,0,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,37,4,8,132.4,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,142.0,1,34,38,4,7,127.3,0,0,0,1,0,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,15,1,9147,1,1,130.0,26,1,1,2,3,130.0,0,0,0,1,0,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,17,2,8014,0,1,133.0,1,19,1,5,5,119.7,1,0,0,1,0,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,6,133.1,1,1,1,90,3,107.0,1,0,0,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,130.0,1,1,1,4,5,123.8,0,0,0,1,0,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9670,1,1,130.0,1,38,37,5,5,123.4,1,0,0,1,0,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,130.0,1,37,36,4,90,127.6,0,0,0,1,1,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +2,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,Enrolled +1,1,5,9070,1,1,122.0,1,37,37,9,9,124.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,3,120.0,1,37,37,9,9,141.0,0,0,0,1,0,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,Dropout +1,43,1,33,1,1,134.0,1,37,37,1,1,100.0,1,0,0,1,1,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9773,1,1,125.0,1,19,37,9,5,122.2,0,0,0,0,0,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,113.4,0,0,0,1,0,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,142.0,1,19,39,5,4,141.7,0,0,0,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,137.0,1,1,38,5,8,125.8,0,0,0,0,0,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,141.0,1,1,37,4,3,126.8,1,0,0,1,0,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Graduate +1,17,4,9500,1,1,133.0,1,4,4,4,4,130.7,1,0,0,1,0,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,Graduate +1,1,2,9500,1,1,119.0,1,1,1,4,4,115.2,1,0,0,1,0,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,128.0,1,1,1,4,10,118.9,1,0,0,1,0,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,130.0,1,37,38,7,8,119.3,1,0,0,1,0,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,148.0,1,3,1,4,5,132.8,0,0,0,1,0,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,143.0,1,37,19,4,4,123.3,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9147,1,1,130.0,1,34,34,99,99,109.8,1,0,0,0,1,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9085,1,2,140.0,1,38,38,9,10,150.0,0,0,0,1,1,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9670,1,42,110.0,1,1,19,9,9,114.2,0,0,0,1,1,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,Graduate +1,53,1,9147,1,42,140.0,1,3,4,2,1,140.2,0,0,0,1,0,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,145.0,1,19,38,9,7,136.3,1,0,0,1,0,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,38,37,9,9,154.4,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,127.0,1,38,38,9,6,122.8,0,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,120.2,1,0,0,1,1,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,124.0,1,3,1,2,5,121.6,0,0,0,1,0,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Enrolled +1,17,5,9853,1,1,132.0,1,37,38,5,6,119.1,1,0,0,1,0,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,Graduate +1,17,6,9670,1,1,110.0,1,1,19,4,10,111.3,0,0,0,1,1,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,120.0,1,38,37,9,9,114.8,1,1,0,1,0,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,140.0,1,19,19,9,3,130.0,0,0,0,1,1,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9254,1,1,120.0,1,37,37,9,9,115.1,1,0,0,0,1,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,142.0,1,1,37,5,7,128.0,0,0,0,1,0,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,168.0,1,37,1,9,4,133.4,1,0,0,1,0,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,Graduate +1,43,4,9085,1,1,133.1,1,34,34,99,99,125.2,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9147,1,1,123.0,1,1,1,9,7,117.4,1,0,0,1,0,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,Graduate +1,1,6,9119,1,1,135.0,1,2,1,3,5,123.5,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,Enrolled +1,17,2,9254,1,1,118.0,22,19,37,9,9,110.3,1,0,0,0,0,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,126.0,1,1,19,4,4,116.9,0,0,0,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,117.0,1,1,38,3,9,109.3,0,0,1,0,0,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,133.1,1,37,37,9,8,113.0,0,0,0,1,0,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,Graduate +2,42,1,9991,0,6,123.0,1,37,37,9,9,123.0,0,0,0,1,1,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9003,1,1,100.0,1,37,37,9,5,110.0,0,0,0,1,0,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,127.0,1,37,38,9,5,131.2,1,0,0,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,110.0,1,37,37,9,7,112.5,1,0,0,1,0,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,126.0,1,19,37,7,5,119.4,0,0,0,1,0,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,121.0,1,1,1,4,3,120.5,1,0,0,1,0,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,134.0,1,1,1,3,3,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,3,9500,1,1,150.0,1,19,38,1,1,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,5,9119,1,1,124.0,11,4,12,2,9,119.5,1,0,0,1,1,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,117.0,1,19,1,4,7,112.1,0,0,0,1,0,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,Enrolled +1,1,5,9500,1,1,132.0,1,37,37,7,7,120.3,1,0,0,1,0,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,1,110.0,1,37,37,90,5,150.0,1,0,0,1,1,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9773,1,1,130.0,1,38,37,5,3,122.3,1,0,1,0,0,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9556,1,1,118.0,1,19,38,9,9,116.3,1,0,0,1,0,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,120.0,1,3,3,3,3,111.6,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,131.0,1,37,19,9,9,134.5,1,0,0,1,1,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Enrolled +1,17,2,9556,1,1,133.1,1,37,38,9,8,106.0,1,0,0,1,0,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,2,110.0,1,37,37,9,9,112.9,0,0,0,1,0,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,2,9773,1,1,126.0,1,19,38,9,8,118.7,1,0,0,1,0,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,140.0,1,1,1,3,3,127.6,1,0,0,1,0,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,163.0,1,19,1,5,10,146.6,1,0,1,1,0,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,39,151.0,1,19,37,4,7,151.0,0,0,1,1,0,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,165.0,1,19,37,5,5,142.3,0,0,0,1,0,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9773,1,19,133.1,1,19,1,7,9,115.0,1,0,1,0,1,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,Dropout +1,1,2,9556,1,1,130.0,1,1,38,3,8,119.5,1,0,0,1,0,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,Graduate +1,17,3,171,1,1,125.0,1,3,39,2,5,117.0,1,1,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9147,1,1,133.0,1,19,1,5,10,121.8,0,0,0,1,1,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9119,1,1,131.0,1,1,3,9,10,123.7,1,0,0,1,1,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,148.0,1,37,38,9,8,133.0,1,0,0,1,0,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9254,1,1,120.0,1,3,19,3,9,114.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9773,1,1,114.0,1,1,1,9,9,111.6,1,0,0,1,0,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,115.0,1,38,1,9,8,118.5,0,0,0,1,1,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,2,5,127.0,0,0,0,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,117.0,1,1,1,4,7,109.3,1,0,0,1,0,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,9,9,138.2,0,0,1,0,0,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,125.0,1,1,1,3,3,114.5,0,0,0,1,1,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,44,1,9147,1,39,130.0,1,19,1,9,3,130.0,0,0,0,1,0,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,145.0,1,38,19,4,9,127.9,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,128.0,1,37,37,9,8,124.3,1,0,0,1,0,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,Graduate +1,18,3,9070,1,1,138.0,1,38,37,9,7,125.1,1,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,5,9119,1,1,131.0,1,19,37,9,7,123.3,1,0,0,1,1,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,130.0,1,37,19,9,8,106.2,1,0,0,1,0,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,131.0,1,19,38,4,5,132.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9003,1,1,120.0,1,37,37,5,9,120.0,1,0,0,1,1,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,132.0,1,4,39,2,2,136.6,1,0,0,1,0,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,Enrolled +1,7,1,9500,1,40,170.0,1,1,1,9,4,170.0,0,0,0,1,0,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,Graduate +1,16,1,9003,1,1,147.0,1,1,37,4,9,140.7,1,0,1,1,0,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,125.0,1,1,1,4,8,115.6,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,150.0,1,37,37,9,6,138.5,0,0,0,1,0,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,2,9991,0,1,143.0,1,5,1,4,4,131.5,0,0,0,1,1,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,9556,1,1,133.1,6,3,3,4,4,169.2,0,0,1,0,0,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,2,9556,1,1,133.1,1,1,1,9,10,100.5,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,120.0,1,19,38,9,7,117.9,1,0,0,1,0,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,146.0,1,1,38,9,9,135.5,1,0,1,1,0,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,Enrolled +1,1,3,9254,1,1,122.0,1,19,38,3,10,114.3,1,0,0,1,0,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,9130,1,1,130.0,1,2,3,9,1,117.6,0,0,0,1,1,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,Enrolled +4,43,4,9991,0,12,133.1,1,37,37,9,9,153.0,0,0,0,0,0,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,2,9500,1,1,135.0,1,38,37,9,5,125.3,1,0,0,1,0,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,38,37,9,9,133.0,0,0,0,1,0,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,129.0,1,38,37,4,6,128.0,0,0,0,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,128.0,1,2,19,2,4,123.3,1,0,0,1,0,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,130.0,1,19,3,4,2,159.0,0,0,0,1,0,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,Graduate +2,7,1,8014,0,3,130.0,1,19,38,3,7,130.0,0,0,0,1,0,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,116.0,1,19,37,3,3,109.0,1,0,0,1,0,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,123.0,1,1,1,3,9,116.7,1,0,0,1,0,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,144.0,1,19,19,4,4,130.7,1,0,0,1,0,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,42,1,9500,1,1,100.0,1,19,37,5,7,134.3,1,0,0,1,0,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,143.0,1,1,19,4,4,129.9,0,0,0,1,0,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,19,133.1,1,19,37,7,9,137.2,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9853,1,1,123.0,1,19,19,9,7,117.4,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,144.0,1,19,19,5,5,130.3,1,0,0,1,0,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,137.0,1,1,19,4,7,126.7,1,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,4,9773,1,1,124.0,1,3,12,2,9,137.0,1,0,0,1,1,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,135.0,1,37,37,9,8,123.0,1,0,0,1,0,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,123.0,1,38,37,9,7,120.6,1,0,0,0,0,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,Dropout +2,2,1,9147,1,2,120.0,1,37,37,9,9,120.0,0,0,0,0,1,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,103.0,1,1,3,2,2,100.6,1,1,0,1,0,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,126.0,1,3,1,2,8,123.9,1,0,0,1,0,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,Enrolled +1,17,4,9500,1,1,136.0,1,3,3,2,2,132.5,1,0,0,1,0,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,114.0,1,3,29,3,5,111.9,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,125.0,1,19,1,9,9,130.6,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,147.0,1,37,38,9,5,134.8,1,0,0,1,0,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,131.0,1,1,19,9,9,130.3,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,118.0,1,3,1,2,5,110.0,1,0,0,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,130.0,1,19,19,4,10,116.8,0,0,0,1,0,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,Graduate +1,43,1,8014,0,6,133.1,1,34,34,0,0,100.0,0,0,1,1,0,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9670,1,12,170.0,1,1,37,3,5,110.0,0,0,0,1,1,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,Graduate +2,1,1,9991,0,3,160.0,1,1,3,4,9,137.3,0,0,0,1,0,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,108.0,1,19,1,5,5,107.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,121.0,1,3,3,2,2,112.3,1,0,1,0,0,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,Dropout +1,1,2,9773,1,1,138.0,1,19,1,9,3,133.5,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,136.0,1,38,38,9,9,121.7,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,132.0,1,38,37,9,7,122.0,1,0,0,1,0,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9003,1,1,125.0,1,3,3,2,2,100.0,0,0,0,1,1,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,137.0,1,1,1,1,5,131.8,0,0,0,1,0,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,140.0,1,37,37,9,9,148.0,1,0,0,0,1,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,127.0,1,3,1,3,7,137.2,1,0,0,1,0,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,150.0,1,37,19,9,9,150.0,0,0,0,1,1,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,Graduate +1,43,4,171,1,1,136.0,1,37,37,9,9,123.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,162.0,1,37,19,9,8,142.8,0,0,1,1,0,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,127.0,1,1,38,5,7,123.5,1,0,0,1,0,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,133.1,1,19,37,9,9,130.0,0,0,0,0,0,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,Graduate +1,17,2,9070,1,1,121.0,1,1,19,144,144,111.9,1,0,0,1,1,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,115.0,1,19,37,9,9,114.3,0,0,0,1,1,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,Dropout +1,10,1,9254,1,1,115.0,24,3,1,9,9,116.1,1,0,0,1,0,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,143.0,1,19,3,4,4,147.2,0,0,0,1,0,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,160.0,1,1,38,4,4,160.0,1,0,0,1,1,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,Graduate +2,1,1,9238,1,1,134.0,1,37,37,5,5,120.4,0,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,38,37,9,4,120.0,0,0,0,1,1,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Graduate +1,18,1,9119,1,1,108.0,1,1,1,4,3,105.6,1,0,0,1,1,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,137.0,1,37,37,9,9,141.0,0,0,0,1,1,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9254,1,1,113.0,1,1,2,5,3,106.7,1,0,1,1,1,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,16,1,9085,1,1,140.0,1,1,1,9,9,127.1,1,0,0,1,0,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,Graduate +1,53,1,9238,1,42,140.0,1,37,37,9,10,136.9,1,0,0,1,0,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,7,134.5,0,0,0,1,0,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,2,9773,1,1,125.0,1,19,1,4,5,122.2,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9070,1,1,134.0,1,1,19,3,3,127.7,1,0,0,0,0,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,96.0,1,38,37,6,4,96.0,1,0,0,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,Dropout +1,10,1,9085,1,1,134.0,1,37,37,5,5,134.0,1,0,0,1,0,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,143.0,1,1,3,3,3,149.0,1,0,0,1,0,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,Dropout +1,18,3,9070,1,1,142.0,1,1,37,4,7,130.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,7,1,9003,1,3,140.0,1,3,19,2,10,140.0,0,0,0,0,1,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,151.0,1,38,37,9,5,138.4,1,0,0,1,0,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,143.0,1,19,19,4,4,135.3,1,0,0,1,0,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,133.0,1,1,19,9,9,132.0,0,0,0,1,1,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,19,133.1,1,37,37,9,5,135.5,0,0,0,1,0,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9254,1,1,134.0,1,37,37,9,9,133.3,1,0,1,1,0,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,3,9085,1,1,135.0,1,3,2,4,3,121.0,1,0,0,1,0,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,140.0,1,1,1,4,4,123.5,1,0,0,1,0,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,188.0,1,3,3,2,2,178.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9238,1,1,126.0,1,30,19,0,2,121.5,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,131.0,1,3,19,5,5,127.2,1,0,0,1,0,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,Graduate +1,17,4,9853,1,1,143.0,1,37,37,9,5,127.3,1,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,111.0,1,19,38,9,9,110.7,1,0,0,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,140.0,1,19,38,9,7,125.7,1,0,0,1,1,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,6,9500,1,1,126.0,1,19,37,3,9,119.4,1,0,0,1,0,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,131.0,1,1,1,4,9,122.3,0,0,0,1,1,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,128.0,1,1,19,9,8,100.0,1,0,0,1,0,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,138.0,1,19,19,5,1,130.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,1,140.0,1,3,3,1,1,140.0,1,0,0,1,0,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,3,130.0,1,1,19,5,9,130.0,0,0,0,1,1,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,131.0,1,38,1,5,7,131.0,1,0,0,1,1,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,19,133.1,1,19,19,9,7,140.0,0,0,1,0,0,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,133.1,1,37,37,9,9,126.5,0,0,0,1,0,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9500,1,1,132.0,1,37,37,9,7,128.3,1,0,0,1,0,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,Graduate +1,16,1,171,1,1,145.0,1,3,3,3,3,155.0,1,0,0,1,0,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,Enrolled +4,1,1,9991,0,1,140.0,1,37,37,9,7,139.0,0,0,0,1,0,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9070,1,1,152.0,1,39,39,3,3,134.2,1,0,0,1,1,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,141.0,1,19,19,7,9,139.8,0,0,0,1,0,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,Graduate +1,1,4,9670,1,1,133.0,1,1,2,4,7,121.1,1,0,0,1,0,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,Graduate +1,15,1,9147,1,1,135.0,26,1,1,9,7,135.0,0,0,1,1,1,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,Enrolled +2,1,1,9991,0,1,144.0,1,19,19,9,9,151.4,0,0,0,1,0,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,18,4,9853,1,1,118.0,1,19,37,9,6,111.4,1,0,1,0,0,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9500,1,1,134.0,1,38,1,9,6,133.5,1,0,0,1,1,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,37,37,9,6,107.0,0,0,0,1,1,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,141.0,1,38,38,9,9,128.4,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,133.0,1,1,1,9,9,128.5,1,0,0,1,0,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,40,120.0,1,3,3,4,2,125.0,0,0,0,1,0,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,150.0,1,37,38,3,7,134.5,0,0,0,1,0,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,127.0,1,3,19,4,4,116.9,0,0,0,1,1,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,136.0,1,2,38,143,163,129.7,1,0,0,1,1,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,159.0,1,1,1,3,3,151.0,1,0,0,1,0,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,165.0,1,37,38,9,8,152.4,1,0,0,1,0,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,6,9500,1,1,139.0,1,1,1,4,4,124.5,1,0,0,1,0,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,134.0,1,1,1,5,3,128.4,1,0,0,1,0,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,133.0,1,2,1,3,4,136.2,1,0,0,1,0,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,120.0,1,19,1,8,7,115.1,1,0,0,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,131.0,1,1,39,5,3,122.6,1,0,0,1,0,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,8014,0,1,130.0,1,1,1,9,9,118.1,0,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,Graduate +1,39,9,9991,0,1,120.0,1,38,38,9,5,144.8,0,0,0,1,1,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9500,1,19,133.1,1,37,37,9,9,129.0,1,0,0,1,0,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,138.0,1,1,19,4,7,123.0,1,0,1,0,0,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,143.0,1,1,37,9,9,135.0,1,0,0,1,0,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,120.0,1,19,1,9,3,120.0,1,0,0,1,1,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,162.0,1,37,1,9,9,165.2,1,0,0,1,0,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,142.0,1,37,37,5,5,131.3,1,0,0,1,0,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,Graduate +1,1,3,171,1,1,125.0,1,38,37,4,9,115.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,120.0,1,38,37,5,3,110.5,0,0,0,1,0,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,Graduate +1,42,1,9773,1,6,120.0,1,34,34,0,0,122.0,1,0,0,1,0,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,162.0,1,1,38,4,5,138.6,1,0,0,1,0,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,152.0,1,1,1,4,4,141.0,1,0,0,1,0,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,139.0,1,3,19,3,5,120.8,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,135.0,1,1,1,3,5,130.1,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9670,1,1,127.0,1,3,3,1,1,121.4,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,135.0,1,1,1,1,1,131.5,0,0,0,1,1,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,Enrolled +1,17,3,9670,1,1,147.0,1,37,37,8,8,128.8,0,0,1,1,0,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,133.1,41,38,38,9,8,134.8,0,0,0,1,0,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,90,8,128.2,0,0,0,1,0,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,131.0,1,1,37,4,4,126.1,1,0,0,1,0,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,9,9,125.3,1,0,0,1,1,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,Dropout +2,39,1,8014,0,3,110.0,1,37,37,9,9,160.5,0,0,0,1,0,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,138.0,1,38,1,9,4,127.5,1,0,0,1,0,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,Enrolled +1,39,1,9238,1,1,170.0,1,38,19,9,9,140.0,1,0,0,1,0,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,1,19,4,10,142.3,1,0,0,1,0,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,154.0,1,38,37,9,9,140.4,0,0,0,1,0,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,133.1,41,19,1,9,9,105.0,1,0,0,0,0,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +2,44,1,9085,1,39,160.0,1,37,37,192,192,160.0,0,0,0,1,0,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,141.0,1,38,38,9,9,142.3,1,0,0,1,0,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,119.0,1,37,37,7,7,112.0,1,0,0,0,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,137.0,1,37,37,9,9,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,Graduate +4,39,1,9670,1,1,100.0,1,37,37,4,10,120.0,0,0,1,1,0,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,130.0,1,3,3,2,2,131.1,0,0,0,1,1,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,120.0,1,1,19,9,3,116.9,1,0,1,0,1,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,42,1,9500,1,1,100.0,1,1,19,4,8,136.0,1,0,0,1,0,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,Graduate +1,1,2,171,1,1,125.0,1,38,19,9,9,117.3,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,152.0,1,1,38,4,9,160.4,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,12,133.1,1,37,37,9,7,139.4,0,0,1,1,0,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,150.0,1,1,1,4,8,131.5,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,7,1,9556,1,4,190.0,1,5,5,2,2,190.0,1,0,0,1,1,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,Dropout +1,17,3,9238,1,1,121.0,1,1,1,4,5,117.2,0,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,130.0,1,37,37,9,7,113.0,1,0,0,0,1,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,123.0,1,19,19,4,10,124.4,1,0,0,1,0,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,Graduate +1,17,2,9238,1,1,133.0,1,37,37,3,9,119.7,0,1,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,138.0,1,38,19,9,10,133.1,0,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,108.0,1,38,38,7,7,105.2,1,0,0,1,1,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,Dropout +1,1,3,171,1,1,115.0,1,9,1,6,6,108.7,1,0,0,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,4,4,119.8,1,0,0,1,0,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9119,1,1,126.0,1,19,19,7,3,116.6,1,0,0,1,1,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,Graduate +2,39,1,9500,1,1,133.1,1,37,37,9,9,130.1,0,0,0,0,1,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,124.0,1,37,38,9,3,114.2,0,0,0,1,0,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,3,9147,1,1,137.0,1,1,1,4,7,124.4,1,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9130,1,19,133.1,1,37,37,9,10,156.4,1,0,1,1,1,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,5,9853,1,1,121.0,1,38,19,7,7,117.5,1,0,1,0,0,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,2,9238,1,1,117.0,1,19,1,9,8,110.0,1,0,1,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9147,1,1,148.0,1,1,19,9,6,118.4,1,0,0,1,1,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,133.0,1,1,1,4,4,100.0,0,0,0,1,0,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,17,1,9238,1,1,158.0,1,1,1,5,6,140.5,0,0,0,1,0,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,157.0,1,19,38,9,7,146.2,1,0,0,1,0,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,131.0,1,3,1,4,1,135.9,0,0,0,1,1,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,38,37,5,10,117.8,1,0,0,1,1,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,Graduate +1,1,2,9119,1,1,126.0,1,1,38,141,192,122.5,1,0,0,1,1,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,117.0,1,37,37,0,4,120.5,1,0,0,1,1,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9254,1,1,110.0,1,12,19,9,9,125.0,0,0,0,0,1,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,Dropout +1,18,1,9147,1,1,121.0,1,19,3,5,5,115.8,1,0,0,1,0,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,139.0,0,0,1,0,1,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9003,1,3,130.0,1,3,3,6,2,130.0,1,0,0,1,1,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,132.0,1,19,37,3,5,125.4,1,0,0,0,0,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,38,38,4,7,115.6,1,0,0,0,0,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,129.0,1,1,2,3,1,125.9,1,0,0,1,0,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,9,9,143.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,126.0,1,3,19,3,3,115.2,0,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,123.0,1,19,38,9,10,116.7,1,0,0,1,0,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,Graduate +1,17,2,9254,1,1,125.0,1,37,37,9,8,122.6,1,0,1,0,0,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9119,1,1,160.0,1,38,37,7,7,129.0,0,0,0,1,1,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,3,19,2,3,133.8,1,0,0,1,0,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,120.0,1,19,19,4,7,115.5,1,0,1,1,1,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,120.0,1,38,38,3,3,140.0,0,0,0,1,0,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9238,1,1,127.0,1,1,19,4,3,141.7,1,0,0,1,1,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,111.0,1,37,37,9,10,95.8,1,0,0,0,1,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,130.0,1,38,1,9,4,140.0,1,0,0,1,0,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,Graduate +1,1,2,9147,1,1,131.0,1,1,1,9,9,118.8,0,0,0,1,1,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,161.0,1,1,19,4,4,152.3,0,0,0,1,0,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,124.0,1,38,38,9,9,115.6,0,0,0,1,1,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,160.0,1,3,3,1,2,149.2,0,0,0,1,1,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,16,3,9853,1,1,134.0,1,19,37,9,9,121.1,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,Enrolled +1,43,2,9991,0,1,140.0,1,37,37,5,5,124.3,1,0,0,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,127.0,1,38,37,5,7,123.9,1,0,0,1,0,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,120.0,1,19,37,6,8,160.0,0,0,0,1,1,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,1,133.1,1,3,3,4,2,144.9,1,0,0,1,0,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,130.0,1,1,19,3,10,130.0,1,0,0,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,Graduate +1,42,1,9003,1,1,130.0,1,3,2,2,6,105.3,0,0,0,0,1,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9991,0,1,130.0,1,37,37,9,9,127.6,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,100.0,1,1,38,4,6,104.8,0,0,1,0,0,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,Dropout +1,1,5,9070,1,1,125.0,1,3,3,2,2,140.8,1,0,0,1,1,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,133.1,1,34,38,0,4,147.0,0,0,0,1,0,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,126.0,1,34,34,0,0,142.4,0,0,0,1,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,121.0,1,19,38,4,10,114.4,0,0,0,1,0,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,133.1,1,37,37,5,0,111.5,0,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,130.0,1,1,19,5,5,129.1,1,0,0,1,0,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,3,1,4,6,130.0,0,0,0,1,1,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,1,123.0,1,19,1,1,1,140.8,0,0,0,1,0,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,130.0,1,1,1,4,10,130.0,1,0,0,1,0,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,Graduate +4,39,1,9085,1,1,133.1,1,34,34,0,0,128.2,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,128.0,1,37,37,9,9,135.7,1,0,0,1,1,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,135.0,1,38,38,4,7,121.7,1,0,0,1,0,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9085,1,1,110.0,25,38,38,9,6,117.2,1,0,0,1,1,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,Graduate +1,43,3,9500,1,1,140.0,1,1,19,9,7,127.5,1,0,1,1,0,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,Graduate +1,17,3,9238,1,1,133.1,1,41,1,2,3,117.0,1,0,0,1,0,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,1,112.0,1,37,37,9,9,108.5,0,0,0,1,1,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,51,1,9238,1,39,140.0,1,38,38,5,7,129.1,1,0,0,1,0,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,122.0,1,38,19,9,9,126.6,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,123.0,1,1,1,4,4,114.4,0,0,0,1,1,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,Dropout +1,18,4,171,1,1,133.0,1,1,4,9,5,129.2,1,0,1,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,128.0,1,19,19,9,5,121.7,1,0,0,1,0,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,Graduate +1,39,1,9130,1,1,150.0,1,19,19,9,5,160.0,1,0,0,1,1,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,160.0,1,19,37,5,3,152.0,0,0,0,1,0,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,53,1,9085,1,42,140.0,1,19,37,9,8,142.5,1,0,0,1,0,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,130.0,1,9,19,4,1,134.2,1,0,0,1,0,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,3,9254,1,1,121.0,1,19,19,9,6,125.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,128.0,1,19,1,9,10,157.4,1,0,0,1,0,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,146.0,1,37,37,9,7,149.2,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9853,1,12,133.1,1,37,37,7,8,103.0,0,0,0,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,143.0,1,19,19,5,6,142.3,0,0,0,1,0,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,Enrolled +1,1,2,9085,1,1,118.0,1,1,19,3,3,112.4,1,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,Enrolled +2,43,1,9991,0,1,100.0,1,37,37,9,9,128.2,0,0,0,1,1,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,118.0,1,38,38,5,5,110.0,0,0,0,1,0,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9147,1,1,136.0,1,38,38,9,9,127.3,1,0,0,1,1,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,170.0,1,19,19,8,8,176.7,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,124.0,41,19,38,9,9,123.3,1,0,0,1,0,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9070,1,1,170.0,1,3,3,2,2,165.8,1,0,0,1,1,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,3,37,9,9,142.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9147,1,1,122.0,1,1,38,4,5,116.4,0,0,0,1,1,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,150.0,1,1,1,4,4,138.1,1,0,0,1,0,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,Enrolled +1,17,6,9238,1,1,138.0,1,3,3,1,2,123.0,1,0,0,1,0,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,135.0,1,19,12,9,7,137.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9070,1,1,125.0,1,1,3,3,3,128.9,0,0,0,1,0,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,128.0,1,38,19,9,10,125.2,1,0,0,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Enrolled +1,42,1,9003,1,1,140.0,1,1,3,4,2,140.0,1,0,0,1,1,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,Enrolled +1,39,1,9500,1,19,133.1,1,37,38,151,161,143.7,0,0,0,1,0,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,118.0,1,38,38,7,7,115.2,1,0,0,1,0,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,152.0,1,19,37,9,8,135.6,1,0,0,1,1,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,12,110.0,1,34,34,0,0,157.8,0,0,0,1,0,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,Graduate +1,1,6,9147,1,1,112.0,1,38,38,9,9,117.3,1,0,0,1,0,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,Graduate +1,17,3,9147,1,1,118.0,1,1,19,5,7,118.0,0,0,0,1,0,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,Enrolled +1,44,1,9070,1,39,120.0,1,1,19,5,8,119.8,0,0,0,1,1,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9670,1,1,133.1,1,19,19,3,9,118.0,0,0,0,1,1,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,159.0,1,1,19,9,9,151.3,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,118.0,1,1,38,5,7,120.8,1,0,0,1,0,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,132.0,1,1,37,8,9,128.0,1,0,0,1,0,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,Graduate +1,42,1,9147,1,1,135.0,1,19,1,4,4,120.0,0,0,0,0,1,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9670,1,1,122.0,1,1,38,3,3,114.3,1,0,0,1,0,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,171,1,1,131.0,1,1,1,0,3,149.9,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +4,39,2,9556,1,1,133.1,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,5,9119,1,1,126.0,1,12,19,4,5,122.5,1,0,0,1,1,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,145.0,1,2,38,3,8,136.3,1,0,0,1,0,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,Enrolled +1,15,1,9147,1,1,150.0,1,38,1,9,1,150.0,0,0,0,1,1,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,150.0,1,3,39,3,7,126.4,0,0,0,1,1,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,Enrolled +1,17,2,9773,1,1,148.0,1,3,38,2,6,144.2,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,124.0,1,37,19,9,3,116.3,1,0,0,1,0,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +2,39,1,9003,1,1,130.0,1,1,37,9,1,122.0,0,0,1,0,1,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,160.0,1,19,38,5,7,139.0,1,0,0,1,0,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,157.0,1,3,2,3,6,150.9,1,0,0,1,0,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,Dropout +1,42,1,9119,1,1,120.0,1,1,1,5,7,108.6,0,0,0,0,1,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9773,1,1,138.0,1,37,38,4,9,134.2,1,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,110.0,1,0,0,1,0,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,Dropout +4,39,1,9853,1,1,143.0,1,37,1,9,10,140.0,0,0,1,0,0,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,130.0,1,3,19,4,8,133.0,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,19,38,6,7,140.0,1,0,0,1,1,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,132.0,1,2,2,6,6,128.5,0,0,0,1,0,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,Dropout +1,1,2,171,1,1,135.0,1,19,19,4,7,149.0,1,0,0,1,1,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,130.0,1,19,38,3,9,126.5,1,0,0,1,0,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,125.0,1,19,38,9,8,121.5,0,0,0,1,0,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,7,129.0,0,0,0,1,0,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,Dropout +1,7,3,9130,1,3,130.0,1,37,26,90,10,130.0,0,0,0,0,1,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,123.0,1,19,19,7,7,120.8,1,0,0,1,0,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,Graduate +1,18,2,9853,1,1,168.0,1,1,19,3,9,126.8,1,0,0,1,1,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9085,1,39,140.0,1,3,1,4,3,140.0,1,0,0,1,0,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,148.0,1,19,19,9,9,138.7,0,0,0,1,0,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,Graduate +1,18,1,171,1,1,110.0,1,19,2,5,5,117.7,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9070,1,1,136.0,1,37,38,9,9,125.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +2,39,1,8014,0,1,133.1,1,37,37,5,4,134.5,0,0,0,1,0,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,Enrolled +1,42,1,9119,1,1,150.0,1,38,37,5,8,133.5,1,0,0,1,1,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,140.0,1,1,3,4,6,139.2,0,0,1,1,0,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,125.0,1,19,19,5,5,117.0,0,0,0,1,0,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,Graduate +1,39,1,9147,1,12,133.1,1,19,37,7,9,118.2,0,0,0,1,0,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,2,9147,1,1,121.0,1,1,19,9,9,113.7,1,0,0,0,0,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,131.0,1,3,19,2,3,132.8,1,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,136.0,1,37,38,4,5,126.0,1,0,0,1,0,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,Graduate +1,1,1,9853,1,1,145.0,1,37,37,9,5,146.8,0,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,123.0,1,1,1,4,9,116.7,1,0,0,1,1,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,Dropout +1,18,1,171,1,1,121.0,1,1,1,4,3,116.8,1,0,0,1,0,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,141.0,1,38,1,9,4,129.0,1,0,0,1,0,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,133.1,1,34,34,0,0,130.0,0,0,0,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,126.0,1,1,3,4,3,122.5,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,Dropout +2,1,1,9254,1,1,136.0,1,37,37,9,9,122.7,0,0,0,1,0,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,37,37,9,10,100.0,0,0,0,1,1,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9500,1,1,133.1,1,38,19,7,9,115.5,1,0,0,1,1,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9991,0,1,131.0,1,19,37,9,9,118.4,1,0,0,1,0,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,153.0,1,1,38,4,3,146.7,0,0,0,1,0,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,Graduate +1,43,1,8014,0,12,114.0,1,34,34,0,99,110.0,0,0,0,1,0,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,147.0,1,1,1,5,5,134.9,0,1,0,1,0,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,Graduate +1,1,2,9085,1,1,156.0,1,40,40,3,7,150.9,1,0,0,1,0,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,137.0,1,38,38,5,7,122.7,1,0,0,1,0,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,123.0,1,1,19,4,5,117.8,0,0,0,1,1,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9238,1,1,135.0,1,37,37,8,6,127.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,131.0,1,37,37,9,9,123.0,1,0,0,1,0,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9670,1,1,123.0,1,3,1,3,1,116.7,0,0,0,1,0,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,9085,1,40,140.0,1,1,19,5,5,140.0,1,0,0,1,0,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,Graduate +4,39,1,9500,1,19,133.1,1,38,19,5,7,140.0,0,0,0,1,0,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,127.0,1,3,19,3,9,127.0,1,0,0,1,1,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,Graduate +1,17,2,8014,0,1,120.0,1,19,1,5,10,114.8,1,0,0,1,0,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9670,1,19,133.1,1,37,37,9,7,130.0,0,0,1,1,1,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,171,1,1,131.0,41,19,1,4,7,131.4,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,16,2,171,1,1,145.0,1,3,3,2,2,143.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,120.0,1,19,38,6,6,120.0,1,0,0,1,1,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,6,9238,1,1,131.0,1,1,3,4,2,131.7,1,0,0,1,0,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,137.0,1,3,1,4,9,128.6,0,0,0,1,0,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,170.0,1,19,19,9,7,170.0,1,0,1,1,1,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9853,1,1,122.0,1,38,37,9,9,118.9,1,0,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,5,9500,1,1,148.0,1,1,19,4,8,130.2,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9003,1,19,133.1,1,1,19,9,8,120.0,0,0,1,0,1,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,2,9147,1,1,143.0,1,19,38,9,7,132.2,1,0,0,1,0,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9556,1,1,132.0,1,38,37,7,7,119.0,1,0,0,1,0,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,133.1,1,3,1,4,4,95.0,0,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,154.0,1,3,1,2,1,137.2,0,0,0,1,1,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,Enrolled +1,1,1,9853,1,1,129.0,1,38,37,6,6,138.1,0,0,0,1,0,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,17,2,9670,1,1,129.0,1,1,19,5,5,119.2,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,43,1,9500,1,1,137.0,1,3,3,2,2,115.0,0,0,0,1,0,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,Graduate +1,17,2,9254,1,1,115.0,1,19,19,9,7,113.3,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,133.0,1,38,38,7,7,125.3,1,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,10,150.0,0,0,0,0,0,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,19,133.1,1,19,19,144,141,131.5,0,0,1,1,0,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,133.0,1,38,1,2,4,126.0,0,0,0,1,0,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,15,1,9147,1,1,133.1,41,41,1,3,4,100.0,0,0,1,0,1,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,Dropout +1,10,2,9773,1,1,154.4,22,19,38,3,5,154.4,1,0,0,0,0,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9070,1,39,100.0,1,1,1,4,4,106.0,0,0,0,1,1,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,135.0,1,38,19,8,8,126.3,1,0,1,1,0,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,120.0,41,1,1,9,6,114.8,1,0,0,1,0,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,Enrolled +1,17,1,9085,1,1,124.0,1,19,38,7,7,113.9,1,0,0,1,0,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,Graduate +1,1,6,9254,1,1,126.0,1,38,37,5,7,123.9,1,0,0,1,0,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,125.0,1,37,37,9,9,121.5,1,0,0,1,1,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,6,9773,1,1,125.0,1,1,1,5,4,122.2,0,0,0,1,1,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,135.0,1,19,19,4,5,126.8,1,0,0,1,1,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9238,1,1,133.0,1,1,37,7,9,127.4,1,0,0,1,0,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,3,9070,1,1,127.0,1,19,38,5,7,141.0,1,0,0,1,1,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,3,120.0,1,37,37,4,7,122.5,0,0,0,0,0,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,2,9147,1,1,150.0,1,19,37,9,7,101.0,0,0,1,0,0,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,4,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,Graduate +1,17,5,9500,1,1,143.0,1,38,1,9,7,130.6,1,0,0,1,0,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,129.0,1,38,19,5,7,124.0,1,0,0,1,0,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,Graduate +1,17,2,9500,1,1,140.0,1,1,1,5,10,128.5,1,0,0,1,0,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,Enrolled +4,39,1,8014,0,19,100.0,1,1,37,9,1,111.5,0,0,0,1,1,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,Dropout +2,39,2,9556,1,1,110.0,1,19,38,9,9,112.8,0,0,0,1,0,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,116.0,1,19,19,5,8,127.9,0,0,1,0,0,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,Dropout +1,43,4,171,1,1,117.0,1,19,12,9,10,109.3,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,130.0,1,1,38,5,5,122.3,1,0,0,1,0,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,Graduate +1,15,1,9119,1,1,130.0,26,38,3,9,2,137.0,1,0,0,1,1,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,Enrolled +1,39,1,9556,1,1,133.1,1,38,19,9,6,100.0,1,0,0,1,0,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,150.0,1,3,1,3,9,154.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9147,1,1,131.0,1,3,19,2,9,126.1,0,0,0,1,0,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,1,6,9773,1,1,145.0,1,1,19,4,4,131.0,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,136.0,1,19,38,4,7,140.9,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,155.0,1,19,37,4,5,117.5,0,0,0,1,0,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9147,1,1,128.0,1,3,3,5,10,116.5,0,0,0,1,1,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,4,9254,1,1,133.0,1,37,37,5,8,128.5,1,0,0,1,0,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9119,1,1,141.0,1,37,1,9,2,133.0,1,0,0,1,1,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,Enrolled +1,51,1,8014,0,1,120.0,1,1,1,4,4,128.5,0,0,1,0,1,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,Dropout +1,43,1,9003,1,1,120.0,1,3,3,1,2,115.0,0,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,136.0,1,19,19,4,7,136.0,0,0,0,1,0,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,Graduate +1,17,1,9070,1,1,116.0,1,38,38,9,9,123.7,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,125.0,1,19,19,4,8,117.0,1,0,0,1,0,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,135.0,1,1,38,5,7,137.5,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,140.0,1,19,19,7,7,124.6,1,0,0,1,0,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,Enrolled +1,39,1,9670,1,19,133.1,1,1,1,4,7,100.0,0,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,122.0,1,37,37,9,9,131.0,1,0,0,1,0,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,Dropout +2,43,1,9773,1,1,160.0,1,37,37,5,0,160.0,0,0,1,0,1,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9670,1,1,113.0,1,37,19,9,9,110.2,1,0,0,1,0,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,125.0,1,37,37,9,9,126.0,1,0,1,1,0,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,Graduate +1,43,1,171,1,39,140.0,1,38,37,9,7,140.0,0,0,0,0,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9853,1,1,134.0,1,37,19,9,5,121.4,1,0,0,1,0,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,8014,0,1,120.0,1,1,37,7,3,122.8,0,0,0,1,0,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,1,1,4,2,127.7,0,0,0,1,0,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,Enrolled +2,39,1,9991,0,1,120.0,1,19,37,3,9,132.9,0,0,0,1,1,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,138.0,1,1,38,4,9,132.5,1,0,0,1,0,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,133.1,1,19,37,7,7,126.0,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9500,1,1,110.0,1,38,38,9,9,110.0,0,0,0,0,0,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,Dropout +5,7,1,9500,1,40,150.0,1,37,37,4,9,150.0,0,0,0,1,0,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,Graduate +1,17,1,9070,1,1,126.0,1,19,38,9,7,118.7,0,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,16,4,9254,1,1,126.0,1,38,37,9,7,118.7,1,0,0,1,0,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9773,1,1,110.0,1,19,19,5,5,105.5,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,9,133.1,1,34,34,0,0,118.0,0,0,0,1,0,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,140.0,1,3,2,4,6,133.4,1,0,0,0,1,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,Enrolled +1,1,1,171,1,1,134.0,1,3,2,2,2,141.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9773,1,1,133.1,1,1,1,90,90,129.6,0,0,0,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,133.1,1,38,19,5,6,138.0,0,0,1,1,1,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,Enrolled +1,17,3,9500,1,1,156.0,1,19,37,4,9,132.3,1,0,0,1,1,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,Graduate +1,44,1,9085,1,39,140.0,1,3,3,4,2,140.0,1,0,0,1,0,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,Graduate +1,43,1,171,1,1,116.0,1,3,1,2,3,117.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,141.0,1,38,19,9,6,126.3,1,0,0,1,0,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,44,1,9238,1,39,140.0,1,1,19,191,102,143.0,0,0,0,1,0,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,Graduate +1,43,5,8014,0,1,110.0,1,34,34,0,0,110.0,0,0,0,1,1,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9238,1,1,143.0,1,1,11,4,3,128.0,1,0,0,1,0,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +3,17,1,9238,1,1,138.0,1,37,37,9,9,133.5,1,0,0,1,0,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,Enrolled +1,7,1,9119,1,3,150.0,1,3,2,2,2,150.0,0,0,0,1,0,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,150.0,1,19,1,1,1,150.0,0,0,0,1,1,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,Enrolled +1,17,1,9085,1,1,134.0,1,19,37,2,7,131.2,0,0,0,1,0,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,171,1,1,133.1,1,37,37,9,7,100.0,0,0,1,1,1,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,1,9556,1,1,133.1,1,3,19,2,8,106.0,1,0,0,1,1,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,Graduate +1,17,2,9500,1,1,135.0,1,19,19,9,4,129.8,1,0,0,1,0,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,Graduate +1,39,1,33,1,1,130.0,1,38,37,9,6,102.5,0,0,1,0,1,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,Dropout +1,18,1,9500,1,1,144.0,1,37,37,6,6,127.5,1,0,0,1,0,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,130.0,1,37,38,9,9,133.9,1,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,44,1,9003,1,39,140.0,1,37,37,4,7,140.0,0,0,0,1,1,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,Dropout +1,1,4,9773,1,1,137.0,1,3,19,2,3,139.8,1,1,0,1,0,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,1,9991,0,1,130.0,1,2,37,3,9,131.4,0,0,0,1,1,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,135.0,1,3,3,1,1,125.8,1,0,0,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Graduate +1,18,1,9238,1,1,147.0,1,38,34,4,0,130.2,0,0,0,1,0,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +5,17,5,9500,1,1,143.0,1,37,38,5,8,133.5,1,0,0,1,0,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,99.0,1,1,3,5,10,100.0,1,0,0,1,1,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,Graduate +1,16,2,9147,1,1,131.0,1,37,37,9,9,135.9,1,0,0,1,1,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,146.0,1,38,37,6,6,143.9,0,0,0,1,0,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9085,1,1,139.0,1,38,38,5,3,136.2,0,0,0,1,0,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,153.0,1,3,1,2,8,137.6,1,0,0,1,0,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,2,9085,1,1,133.1,1,19,38,9,1,100.0,1,0,1,0,1,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,2,9773,1,1,121.0,1,19,19,9,9,122.8,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,141.0,1,37,38,9,10,138.9,0,0,0,1,0,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,6,9500,1,1,117.0,1,4,12,5,9,119.8,1,0,0,1,0,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,Graduate +1,17,4,9119,1,1,122.0,62,1,1,191,171,121.0,1,0,0,1,1,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,38,19,3,3,98.6,0,0,0,1,0,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,140.0,1,38,37,5,6,124.3,1,0,0,1,0,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,140.0,1,37,37,9,9,127.7,1,0,0,1,0,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,121.0,1,37,37,9,9,124.2,1,0,0,1,0,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,Graduate +1,18,1,9130,1,1,146.0,1,3,3,5,2,137.8,0,0,0,1,1,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,3,120.0,1,1,1,7,10,120.0,1,0,0,0,1,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,120.0,1,37,37,7,8,120.0,1,0,1,0,0,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,178.0,1,19,1,4,8,174.7,0,0,0,1,0,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,Graduate +1,17,5,9254,1,1,114.0,1,38,1,5,9,109.5,0,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,143.0,1,38,38,9,9,140.0,0,0,0,1,1,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,160.0,1,38,37,9,5,159.3,0,0,0,1,0,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,143.0,1,38,34,9,9,133.6,1,0,0,1,0,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,Graduate +4,43,1,9500,1,19,100.0,1,34,34,0,0,110.0,0,0,0,1,1,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,125.0,1,1,19,4,1,121.5,1,0,0,1,1,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,19,7,3,120.0,1,0,0,1,1,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,3,120.0,1,19,1,9,5,134.0,0,0,0,1,0,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,Dropout +1,39,1,9254,1,1,160.0,1,19,37,7,10,100.0,0,0,0,1,1,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,Enrolled +1,15,1,171,1,1,130.0,26,1,1,2,9,130.0,0,0,0,1,1,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,140.0,1,19,37,5,6,137.9,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,123.0,1,19,37,9,9,124.1,1,0,0,1,0,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,140.0,1,38,38,6,6,140.0,0,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,9,133.1,1,34,34,0,0,118.4,0,0,0,0,0,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,6,9254,1,1,125.0,1,1,1,4,3,120.5,1,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,6,171,1,1,126.0,1,10,10,4,4,130.2,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,120.0,1,1,19,4,7,120.0,0,0,0,1,1,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,Enrolled +1,17,5,9773,1,1,143.0,1,1,1,7,7,136.7,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,42,1,9147,1,1,130.0,1,37,38,9,1,130.0,1,0,0,1,0,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,1,130.0,1,37,37,9,9,124.0,0,0,0,1,1,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,Graduate +1,17,2,9238,1,1,136.0,1,1,3,3,4,126.6,1,0,0,1,0,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,127.0,1,19,1,5,7,118.3,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,Enrolled +4,39,1,9991,0,1,147.0,1,19,19,7,8,147.9,0,0,0,1,0,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,124.0,1,19,37,99,90,124.0,0,0,0,0,0,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +2,43,1,9003,1,1,133.1,1,37,37,9,7,136.0,0,0,0,1,1,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,1,9085,1,1,140.0,1,12,1,1,90,141.8,0,0,0,1,0,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,133.1,1,37,37,191,154,95.0,0,0,0,1,0,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,147.0,1,2,3,4,8,145.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9238,1,3,130.0,1,37,19,4,5,130.0,0,0,0,1,0,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,Graduate +1,7,2,9085,1,3,130.0,1,3,3,1,1,130.0,0,0,0,0,0,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,Dropout +2,39,2,9147,1,3,130.0,1,3,37,9,9,103.4,0,0,0,1,0,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,Dropout +1,17,1,9085,1,1,135.0,1,1,19,4,10,125.6,1,0,0,1,0,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,1,1,5,5,96.0,1,0,0,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +5,39,1,9853,1,19,133.1,1,38,1,5,3,105.5,0,0,1,1,0,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,136.0,1,37,37,7,7,121.7,1,0,0,1,0,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9119,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,1,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,19,133.1,1,19,19,4,4,100.0,0,0,0,1,1,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,124.0,1,2,2,3,2,118.4,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9085,1,1,120.0,1,2,3,2,2,116.1,0,0,0,1,0,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,162.0,1,37,37,9,9,142.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,131.0,1,37,1,9,9,135.9,1,0,0,1,0,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,7,100.0,0,0,0,1,1,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,Graduate +1,43,1,9500,1,1,127.0,1,19,19,4,7,121.1,0,0,0,1,0,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,143.0,1,37,37,9,5,131.6,1,0,0,1,0,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,Graduate +1,17,4,9085,1,1,140.0,1,19,37,4,7,123.7,0,0,0,1,0,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,156.0,1,19,1,5,10,136.8,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Dropout +2,39,1,9853,1,10,133.1,1,37,34,0,0,115.5,0,0,0,1,0,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,Dropout +1,1,3,9119,1,1,113.0,1,4,38,2,7,107.4,1,0,0,1,1,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,Graduate +2,39,1,9670,1,1,130.0,1,37,37,9,0,158.0,0,0,1,0,0,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,Dropout +1,43,1,9853,1,1,110.0,1,37,37,9,9,107.7,0,0,1,0,0,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,124.0,1,2,2,3,3,124.7,1,0,0,1,1,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,127.0,1,37,37,5,10,125.3,0,0,0,1,1,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Graduate +1,16,1,9500,1,1,133.1,1,37,37,9,9,95.0,1,0,0,1,0,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,4,9238,1,1,127.0,1,19,19,4,0,127.4,1,0,0,1,0,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,113.0,1,38,38,3,7,112.3,0,0,0,1,0,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,110.0,1,19,37,9,99,106.1,1,1,1,0,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,141.0,1,1,38,4,8,136.8,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,133.1,1,37,37,9,7,140.0,0,0,0,1,0,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,124.0,1,1,1,4,4,118.8,0,0,0,1,1,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,4,120.0,1,2,3,2,2,120.0,0,0,0,1,0,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,110.0,1,3,3,4,10,115.6,1,0,0,1,1,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,118.0,1,1,19,4,10,110.7,1,1,0,1,0,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +4,39,1,9238,1,1,130.0,1,19,3,9,2,140.0,0,0,0,1,1,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,1,140.0,1,1,19,3,9,140.0,1,0,1,0,0,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,3,9773,1,1,123.0,1,1,19,5,5,117.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,115.0,1,38,38,8,7,112.9,1,0,0,1,0,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,1,6,9147,1,1,142.0,1,38,37,7,7,134.3,0,1,0,1,1,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9085,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,0,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,129.0,1,19,1,3,7,121.0,0,0,0,1,0,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,156.0,1,3,3,123,122,155.0,0,0,0,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,136.0,1,37,37,9,9,126.3,1,0,0,1,0,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,Graduate +2,43,1,9991,0,1,110.0,1,37,37,9,9,132.5,0,0,0,1,1,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,19,133.1,1,37,1,5,5,138.3,0,0,0,1,1,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,Dropout +1,1,2,9130,1,1,140.0,1,19,37,9,9,129.5,1,0,0,1,0,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,Enrolled +1,7,1,9500,1,3,140.0,1,37,37,4,4,140.0,0,0,0,1,0,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,Graduate +4,42,1,9147,1,1,110.0,1,37,37,9,9,128.2,0,0,0,1,0,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,Graduate +1,39,1,9119,1,19,133.1,1,1,1,4,3,134.4,0,0,1,0,1,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,136.0,1,37,1,5,4,120.8,1,0,0,1,0,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,Graduate +1,17,2,9500,1,1,140.0,1,37,37,9,9,132.5,1,0,0,1,0,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,Graduate +1,17,6,9147,1,1,130.0,1,37,37,9,9,110.4,1,0,0,1,1,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,4,5,105.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,136.0,1,19,19,4,3,126.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,116.0,1,38,2,9,2,112.2,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9238,1,1,122.0,1,19,3,5,2,112.6,0,0,1,1,0,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9147,1,1,118.0,1,1,38,9,9,118.4,1,0,0,1,1,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,Enrolled +1,17,1,9130,1,1,117.0,1,19,19,4,4,113.5,1,0,0,1,0,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,117.0,1,19,19,9,9,111.8,1,0,0,1,1,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,Dropout +1,1,6,9500,1,1,118.0,1,38,19,3,3,113.5,1,0,0,1,1,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +2,43,2,9853,1,1,130.0,1,38,31,4,1,124.2,0,0,0,1,0,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,128.0,1,38,38,9,7,124.5,1,0,0,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,8,108.7,1,0,0,1,1,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9254,1,19,133.1,1,37,19,9,10,156.5,0,0,0,1,1,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,Graduate +1,39,1,9003,1,1,160.0,1,1,37,191,193,140.0,0,0,0,1,1,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,10,150.0,0,0,0,1,1,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,Graduate +1,18,2,9070,1,1,122.0,1,38,19,5,5,119.9,0,0,0,1,1,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,125.0,1,19,38,9,7,116.3,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,37,37,6,6,147.8,0,0,0,1,0,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,171,1,1,174.0,1,5,3,3,3,157.9,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,131.0,1,1,1,4,4,127.2,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,3,110.0,1,12,3,5,8,106.5,1,0,1,0,0,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,124.0,1,37,37,9,9,116.0,1,0,0,1,0,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,38,38,5,7,146.2,0,0,0,1,0,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,9,97.0,0,0,0,1,0,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,132.0,1,19,1,9,9,141.8,1,0,0,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +2,43,1,9254,1,3,120.0,1,38,37,9,3,120.0,1,0,0,1,0,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,135.0,1,3,2,1,1,133.6,1,0,0,0,0,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,133.0,1,38,38,5,2,135.5,0,0,0,1,0,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,125.0,1,39,3,3,2,125.0,1,0,0,1,0,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,4,112.0,0,0,0,1,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,141.0,1,1,1,5,9,126.3,0,0,0,1,1,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,1,133.1,1,1,37,9,8,130.0,0,0,0,1,1,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,3,10,107.8,0,0,0,1,0,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,Enrolled +1,43,1,9500,1,1,120.0,1,3,4,2,4,120.6,0,0,0,1,1,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,1,133.1,1,1,19,9,9,120.0,0,0,0,1,1,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,Graduate +1,39,1,9853,1,1,140.0,1,19,1,9,4,128.2,0,0,0,0,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,133.1,1,37,19,9,3,123.0,0,0,0,1,1,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9147,1,1,150.0,1,37,1,7,3,148.8,0,0,0,1,1,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,Graduate +1,17,1,9670,1,1,125.0,1,38,37,7,5,126.4,0,0,0,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,Graduate +1,44,1,9003,1,39,140.0,1,38,1,134,134,140.0,1,0,1,1,1,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,44,1,9070,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,1,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,130.0,1,1,1,9,9,124.1,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Enrolled +1,51,1,9070,1,1,130.0,1,19,19,5,7,124.5,0,0,0,1,0,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,101.0,1,37,37,9,4,101.0,1,0,1,1,0,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,Enrolled +1,1,1,8014,0,1,115.0,1,38,38,9,7,115.0,1,0,0,1,0,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9130,1,1,122.0,1,19,19,9,9,121.7,1,0,0,0,0,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,135.0,1,38,38,9,6,138.1,0,0,1,0,0,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9147,1,1,130.0,1,37,37,9,9,119.9,1,0,0,0,0,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,134.0,1,1,1,9,9,133.0,1,0,0,1,0,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,19,37,9,9,117.8,1,0,0,1,0,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,119.0,1,1,19,4,10,115.5,1,0,0,1,0,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,Enrolled +1,17,3,9119,1,1,138.0,1,3,3,3,4,125.4,1,1,0,1,1,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,164.0,1,19,19,9,9,149.0,1,0,0,1,0,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,1,140.0,1,4,4,2,6,140.0,0,0,0,1,0,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,Graduate +1,43,1,9070,1,1,160.0,1,1,2,4,2,100.0,0,0,0,1,1,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,132.0,1,37,37,9,5,135.9,0,0,0,1,0,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,142.0,1,37,19,7,7,133.0,1,0,0,1,0,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9556,1,3,130.0,1,1,37,4,8,130.0,0,0,0,0,1,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,Dropout +1,44,1,171,1,39,110.0,1,1,1,1,7,114.2,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9147,1,1,129.0,1,19,19,4,9,127.6,1,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,164.0,1,34,1,0,0,163.0,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9556,1,1,122.0,1,19,38,4,8,118.3,1,0,0,1,0,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,141.0,1,38,37,3,3,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,Graduate +1,1,1,9003,1,1,148.0,1,1,19,194,194,143.5,0,0,1,1,1,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,150.0,1,37,19,6,4,137.0,0,0,0,1,1,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,38,38,1,4,138.7,0,0,0,1,1,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,103.8,0,0,0,1,0,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,Dropout +1,17,1,8014,0,1,127.0,1,19,37,4,7,115.8,0,0,0,1,0,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,143.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,130.0,1,38,19,5,6,125.1,1,0,0,1,0,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9254,1,1,133.0,1,19,1,9,9,137.2,0,0,0,1,1,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +2,1,4,8014,0,1,140.0,1,34,34,0,0,128.0,1,0,0,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,120.0,1,1,1,9,10,118.3,0,0,0,1,1,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Enrolled +2,39,1,8014,0,12,133.1,1,37,37,9,1,113.0,0,0,0,1,0,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,128.0,1,19,1,0,5,122.1,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,37,38,3,3,123.0,0,0,0,1,0,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,120.0,1,37,1,7,4,95.0,1,0,0,1,0,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,Dropout +1,17,4,9238,1,1,123.0,1,19,19,191,144,116.0,1,0,0,1,0,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,140.0,1,37,37,90,90,106.3,0,0,1,0,1,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,159.0,1,3,3,2,2,162.5,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,125.0,1,19,19,9,9,115.9,0,0,0,1,0,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,130.0,1,19,19,3,7,129.0,0,0,1,0,0,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,133.1,1,38,37,5,5,136.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,156.0,1,5,4,2,1,140.8,0,0,0,1,0,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,161.0,1,37,37,9,9,100.0,1,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,8014,0,3,130.0,1,35,35,90,90,140.0,0,0,0,0,0,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,Dropout +2,1,1,9991,0,1,120.0,1,37,19,9,9,135.0,1,0,0,1,1,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,1,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,148.0,1,3,3,2,2,137.3,1,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,120.0,1,19,37,5,7,115.1,0,0,0,1,0,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,6,9773,1,1,138.0,1,1,1,4,2,140.5,1,0,0,1,0,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,Graduate +2,43,1,9085,1,1,160.0,1,37,37,9,7,120.0,0,0,0,1,1,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,Enrolled +1,17,2,8014,0,1,134.0,1,1,19,4,99,126.0,1,0,0,1,1,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,100.0,1,0,0,1,0,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,131.0,1,1,1,5,9,129.5,1,0,0,1,0,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,Graduate +1,1,4,171,1,1,139.0,1,37,38,9,9,127.8,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,150.0,1,37,37,5,6,132.5,1,0,0,1,0,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,133.1,1,19,38,5,7,110.0,1,0,0,1,0,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,6,138.6,1,34,34,0,0,138.6,1,0,0,1,1,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,133.1,1,1,1,4,10,100.8,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,5,140.0,1,19,1,4,1,140.0,1,0,0,0,0,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,118.0,1,1,19,9,10,113.1,1,0,0,1,0,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,115.0,1,3,3,2,2,111.5,1,0,1,0,0,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9254,1,39,170.0,1,19,2,9,3,170.0,0,0,0,0,1,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,9,120.0,0,0,0,1,0,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,137.0,1,19,38,7,7,126.5,1,0,0,1,0,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,136.0,1,19,19,90,8,133.9,1,0,0,0,1,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,Dropout +1,18,2,9500,1,1,141.0,24,1,1,4,3,126.8,1,0,0,1,0,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,Graduate +1,17,4,9238,1,1,124.0,1,19,19,5,8,117.7,1,0,0,1,0,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,149.0,1,19,38,9,9,126.5,1,0,0,1,0,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,153.0,1,1,1,141,175,157.9,0,0,1,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,140.0,1,1,2,4,6,140.0,1,0,0,1,0,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,137.0,1,1,3,3,2,121.3,1,0,0,1,0,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,143.0,1,1,1,4,6,138.8,0,0,0,0,1,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,160.0,1,1,3,1,2,130.0,0,0,0,0,1,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,19,19,9,8,105.8,0,0,0,1,0,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,Dropout +1,5,4,9119,1,1,115.0,1,19,37,4,6,113.3,1,0,0,1,1,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,19,4,3,125.4,1,0,0,1,0,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,Graduate +4,42,1,9500,1,19,133.1,1,1,1,5,5,126.0,1,0,0,1,1,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9254,1,3,133.1,1,19,19,4,6,130.5,0,0,0,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,108.0,1,1,19,4,4,105.9,1,0,0,1,1,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,126.0,1,19,19,9,9,115.2,0,0,1,1,0,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9853,1,1,140.0,1,37,37,9,9,145.3,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,6,9070,1,6,119.0,1,1,1,9,9,123.2,1,0,0,1,1,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,160.0,1,1,38,5,6,168.6,0,0,0,1,1,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9254,1,1,120.0,1,1,19,9,9,148.3,0,0,0,1,1,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,3,130.0,1,1,19,9,10,130.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,137.0,1,38,38,151,151,141.6,0,0,0,1,1,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,4,140.0,0,0,0,1,1,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,Enrolled +1,43,1,9085,1,1,162.0,1,2,1,4,4,162.0,0,0,0,1,0,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,43,1,171,1,1,133.0,1,19,19,5,7,133.0,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,154.0,1,37,37,9,7,150.2,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,19,100.0,1,38,19,0,10,111.3,0,0,1,0,0,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,38,4,9,126.2,0,0,0,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,132.0,1,3,1,2,7,125.5,1,0,0,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,127.0,1,37,37,5,7,116.2,0,0,0,1,1,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9773,1,1,121.0,1,19,38,9,7,113.0,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,130.0,1,19,19,9,9,127.6,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,160.0,1,34,34,99,99,114.3,0,0,0,1,1,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,Enrolled +1,18,4,9254,1,1,119.0,1,37,37,9,9,113.1,1,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,130.0,1,38,37,5,6,130.0,0,0,0,1,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,163.0,1,19,37,5,8,150.8,1,0,0,1,1,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,Enrolled +1,43,1,9238,1,1,122.0,1,19,19,5,5,114.3,1,0,0,1,0,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,Enrolled +1,18,1,9147,1,1,131.0,1,34,34,90,90,131.0,0,0,0,1,1,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,4,9773,1,1,137.0,1,1,1,5,5,125.8,0,0,1,1,1,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9670,1,1,133.1,1,37,37,90,90,97.4,0,0,1,0,1,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,37,38,7,5,106.0,1,0,0,1,0,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,Graduate +1,17,6,9254,1,1,108.0,1,1,19,4,5,112.2,1,0,0,1,1,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,19,133.1,1,1,19,4,10,111.8,1,0,0,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,133.1,1,1,37,9,10,139.0,0,0,0,1,1,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,122.0,1,12,19,4,8,117.8,1,0,0,1,0,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,128.0,1,19,19,0,5,120.3,1,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,133.1,1,34,19,0,3,117.1,1,0,0,1,0,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9556,1,19,133.1,1,37,38,9,9,123.0,0,0,0,1,0,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,Graduate +1,17,2,9238,1,1,133.0,1,37,37,9,4,123.6,0,0,0,1,0,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,5,9670,1,1,132.0,1,19,19,5,5,134.1,1,0,0,1,1,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,129.0,1,38,1,4,10,129.4,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,136.0,1,19,19,4,8,150.4,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,154.0,1,3,3,1,3,129.0,1,0,0,1,0,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,Enrolled +1,44,1,9130,1,39,150.0,1,1,1,4,4,150.0,1,0,0,1,0,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,115.0,1,37,37,9,8,116.1,1,0,0,1,0,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,157.0,1,19,3,4,9,138.8,0,0,0,1,1,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9670,1,19,133.1,1,19,1,5,8,97.2,1,0,0,1,1,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,141.0,1,37,38,6,6,125.6,1,0,0,1,0,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,143.0,1,19,1,9,9,144.4,1,0,0,1,0,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9119,1,1,127.0,1,19,1,4,5,115.8,0,0,0,1,1,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,150.0,1,1,1,9,10,142.7,0,0,1,1,0,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,132.0,11,12,12,90,4,129.9,1,0,0,1,0,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,115.0,1,19,19,191,171,109.1,0,0,1,0,1,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,Enrolled +1,17,1,9773,1,1,121.0,1,38,38,9,8,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,7,1,9085,1,40,130.0,1,1,1,4,4,130.0,1,0,0,1,0,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,140.0,1,19,38,4,4,138.3,0,0,0,1,1,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,6,9773,1,1,116.0,1,19,1,4,4,110.1,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,131.0,1,38,38,9,9,127.9,0,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,Graduate +1,51,1,9991,0,42,110.0,1,19,37,5,9,128.2,0,0,0,0,0,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,138.0,1,19,19,5,8,124.9,1,0,0,1,0,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,172.0,1,1,1,4,9,167.1,0,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +5,39,1,9991,0,1,120.0,1,37,37,9,9,138.1,0,0,0,1,1,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,37,38,3,7,96.7,0,0,0,1,1,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,15,1,9130,1,1,133.1,41,1,1,4,4,100.0,0,0,0,1,0,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9119,1,1,122.0,1,19,19,9,9,114.7,0,0,0,1,1,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,192,192,96.0,1,0,0,1,0,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,160.0,1,1,37,9,10,118.0,0,0,0,1,0,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,Enrolled +1,18,4,9119,1,1,134.0,1,19,38,194,175,124.9,1,0,1,1,1,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,4,19,4,5,98.0,0,0,0,1,1,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +5,43,1,9991,0,3,130.0,1,3,3,1,1,130.0,0,0,0,1,0,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,120.0,1,19,19,4,5,114.8,1,0,1,0,0,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,6,8014,0,1,134.0,1,3,19,2,4,120.7,1,0,0,1,0,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,133.1,1,37,37,9,9,109.7,0,0,0,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9070,1,1,128.0,1,19,19,3,3,123.5,1,1,0,0,1,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,133.1,1,1,19,5,9,130.0,0,0,0,1,1,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,Graduate +1,7,1,9991,0,40,120.0,1,43,3,3,3,120.0,0,0,0,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,Enrolled +1,17,5,9556,1,1,139.0,1,19,19,9,8,121.3,1,0,0,1,0,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,156.0,1,3,19,3,3,151.1,0,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,Graduate +1,16,2,9147,1,1,132.0,1,37,37,9,9,122.6,1,0,0,1,0,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,130.0,1,2,3,9,6,130.0,0,0,0,1,1,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,133.1,1,1,1,1,6,120.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,1,1,1,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,133.0,1,3,3,1,1,126.2,1,0,0,1,0,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,Graduate +1,18,2,9147,1,1,140.0,1,37,37,5,9,124.3,1,0,0,1,1,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,44,1,9003,1,39,150.0,1,37,38,4,8,150.0,0,0,0,1,0,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,140.0,1,37,19,191,163,129.3,1,0,1,1,0,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +4,7,1,9500,1,3,130.0,1,3,19,2,3,130.0,0,0,0,1,0,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9070,1,1,131.0,1,19,19,7,7,125.1,0,0,0,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,Enrolled +1,10,1,9773,1,1,152.0,22,38,37,5,9,152.0,1,0,0,1,0,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,123.0,1,34,38,0,7,120.2,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,131.0,1,3,19,4,4,130.3,1,0,0,1,1,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,115.0,1,1,1,5,4,108.0,1,0,0,1,0,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,130.0,1,38,37,9,9,144.0,0,0,0,1,0,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9238,1,1,134.0,1,3,1,3,4,133.0,1,0,0,1,0,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,Graduate +1,51,1,9670,1,1,133.1,1,3,1,3,10,116.2,0,0,0,1,1,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,139.0,0,0,0,1,1,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,126.0,1,19,1,9,9,122.5,1,0,0,0,0,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,121.0,1,19,19,9,9,126.3,1,0,0,1,0,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9003,1,1,133.1,1,38,38,4,8,115.0,0,0,1,1,1,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,19,37,9,9,151.5,0,0,1,0,1,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9853,1,40,110.0,1,41,3,2,1,110.0,0,0,1,1,0,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,17,5,9238,1,1,131.0,1,19,37,5,7,120.2,1,0,0,1,0,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,7,1,9070,1,3,140.0,1,37,37,7,7,140.0,0,0,0,0,1,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +4,39,1,9254,1,1,140.0,1,38,37,9,9,112.0,0,0,1,1,0,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,Dropout +1,18,3,9853,1,1,122.0,1,38,37,9,5,120.3,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9070,1,1,125.0,1,1,38,9,7,118.0,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Enrolled +1,1,3,9670,1,1,111.0,1,1,1,5,5,105.4,0,0,0,1,0,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +2,39,1,9254,1,1,130.0,1,37,37,4,7,120.0,1,0,0,1,0,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,160.0,1,37,37,9,9,160.0,1,0,0,1,0,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,39,1,9147,1,12,133.1,1,37,37,9,9,140.0,0,0,0,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9147,1,1,118.0,1,1,2,10,10,117.3,1,0,0,1,0,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,3,9085,1,1,130.0,1,1,19,9,9,121.3,1,0,0,1,0,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,9,130.0,0,0,0,1,0,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,3,9085,1,1,130.0,1,19,37,5,5,121.3,1,0,0,1,0,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,Enrolled +1,1,2,9254,1,1,120.0,1,19,19,9,9,116.5,1,0,0,1,0,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,Graduate +2,39,1,9500,1,1,140.0,1,37,37,9,4,127.3,0,0,0,1,1,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,118.0,1,37,38,8,7,115.2,1,0,0,1,0,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,17,3,9238,1,1,125.0,1,19,19,7,8,121.5,0,0,0,1,0,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,125.0,1,19,19,5,5,114.5,1,0,0,1,0,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,136.0,1,39,1,3,4,134.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,115.0,1,3,2,4,5,112.6,0,0,0,1,1,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,53,1,9003,1,1,130.0,1,19,1,9,9,130.0,0,0,1,1,1,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,Enrolled +1,1,3,9773,1,1,136.0,1,3,1,5,3,129.0,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,3,150.0,1,2,3,4,7,173.3,1,0,0,1,0,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,140.0,1,1,19,7,7,129.9,1,0,0,1,0,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,Dropout +1,7,1,9119,1,1,140.8,1,34,34,0,0,134.0,0,0,0,1,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9254,1,1,115.0,1,37,19,5,5,109.8,1,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,137.0,1,1,1,4,4,127.6,1,0,0,1,0,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,Graduate +4,7,1,9238,1,40,130.0,1,34,34,99,99,130.0,0,0,1,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9147,1,1,123.0,1,37,37,9,9,106.2,0,0,0,1,0,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,121.0,1,1,3,3,7,113.0,1,0,0,1,1,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,140.0,1,3,1,2,3,129.9,0,0,0,1,0,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,130.0,1,38,38,9,7,130.0,0,0,0,1,1,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,Dropout +1,51,1,9070,1,1,132.0,1,19,19,153,153,120.0,0,0,0,1,0,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,9119,1,1,110.0,1,37,37,9,9,106.8,0,0,0,1,1,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,124.0,1,19,37,4,4,126.8,0,0,0,1,0,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,Enrolled +1,18,3,9147,1,1,133.1,1,1,38,4,7,101.0,1,0,0,0,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9147,1,1,125.0,1,38,19,7,7,125.7,0,0,0,1,0,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,4,9853,1,1,121.0,1,38,38,5,7,113.7,1,0,0,1,0,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,1,1,9,6,105.0,1,0,1,0,0,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,143.0,1,5,1,2,5,136.7,0,0,0,1,0,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,Graduate +1,1,2,9556,1,1,142.0,1,1,19,4,5,130.5,1,0,0,1,0,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,131.0,1,19,19,7,5,122.1,1,0,0,1,0,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,132.0,1,1,37,4,7,121.8,1,0,0,1,0,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,123.0,1,37,37,3,3,123.0,1,0,0,1,0,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,129.0,1,19,38,2,7,126.9,1,0,0,1,0,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Enrolled +1,1,4,9238,1,1,118.0,1,19,38,9,9,110.0,0,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,125.0,1,3,1,4,4,119.4,1,0,0,1,0,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,Enrolled +1,17,1,9085,1,1,131.0,1,1,3,4,1,129.3,1,0,0,1,0,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,147.0,1,37,37,9,9,134.3,0,0,0,1,0,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,Graduate +2,39,2,9670,1,19,133.1,1,37,37,9,9,135.6,0,0,0,1,0,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,152.0,1,37,19,9,9,137.0,1,0,0,1,0,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,118.0,1,12,1,4,10,115.7,0,0,0,1,1,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,Enrolled +1,15,1,9119,1,1,133.1,41,1,3,5,8,100.0,0,0,1,1,1,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,5,9119,1,1,131.0,1,1,19,4,7,126.8,0,0,0,0,1,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,132.0,1,19,38,9,7,119.1,0,0,0,0,1,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,8014,0,1,120.0,1,37,37,5,5,161.1,0,0,0,1,1,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,18,5,9500,1,1,137.0,1,19,1,1,10,129.3,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,118.0,1,37,19,5,5,119.1,1,0,0,1,0,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,134.0,1,38,38,9,9,122.0,1,0,0,1,1,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,163.0,1,1,1,4,3,149.7,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,140.0,1,38,38,9,7,140.0,0,0,0,1,0,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,Enrolled +1,17,4,9147,1,1,122.0,1,19,19,5,7,116.4,1,0,1,1,0,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,140.0,1,3,37,3,7,116.9,0,0,0,1,1,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,5,2,9238,1,1,123.0,1,40,38,2,9,118.1,1,0,0,1,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,130.0,1,3,19,2,3,133.9,0,0,0,1,0,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,125.0,1,1,38,4,7,114.9,1,0,0,1,0,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,130.0,1,1,1,4,10,115.2,0,0,0,1,1,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,124.0,1,38,19,9,7,129.6,1,0,0,1,1,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,139.0,1,38,38,7,5,133.4,0,0,0,1,0,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9254,1,1,125.0,1,38,38,5,5,115.6,1,0,0,1,0,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,147.0,1,37,37,9,9,142.8,1,0,0,1,0,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9003,1,1,144.0,1,19,19,9,9,132.8,0,0,0,1,1,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,12,133.1,1,19,1,9,1,130.0,0,0,0,1,1,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,140.0,1,37,37,9,6,135.5,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,6,9254,1,1,102.0,1,3,1,2,2,101.7,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,133.1,1,19,38,5,5,131.8,1,0,1,1,0,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,Graduate +1,44,1,171,1,39,150.0,1,4,4,2,2,150.0,0,0,0,1,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,53,1,9254,1,42,110.0,1,1,1,4,7,111.8,1,0,0,1,0,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,121.0,1,19,38,6,6,116.1,1,0,0,1,1,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,Graduate +1,17,4,9773,1,1,127.0,1,1,19,4,1,115.8,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,37,37,9,7,160.0,1,0,0,0,1,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,15,170.0,1,34,1,90,2,101.0,0,0,0,1,0,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,125.0,1,3,3,3,3,116.6,1,0,0,0,0,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,4,9070,1,1,117.0,1,1,1,3,3,125.4,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,146.0,1,19,37,7,7,133.8,1,0,0,1,0,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,142.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,3,116.0,1,3,3,2,2,128.2,0,0,0,1,0,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,37,37,7,7,116.5,1,0,0,1,0,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,118.0,1,19,19,5,7,117.8,0,0,0,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,Graduate +1,18,3,9670,1,1,119.0,1,38,38,9,9,115.2,1,0,0,1,0,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,131.0,1,3,19,3,10,123.3,0,0,0,1,1,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,Enrolled +1,17,1,9254,1,1,136.0,1,39,3,3,3,128.7,1,0,0,1,0,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9500,1,1,140.0,1,37,38,5,7,126.0,1,0,0,1,0,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +1,44,1,9119,1,39,150.0,1,19,3,5,2,150.0,0,0,0,1,1,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,43,1,9773,1,1,137.0,1,38,37,9,5,127.9,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,119.9,0,0,0,1,0,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,18,2,9773,1,1,132.0,24,37,19,9,7,119.1,1,0,0,1,0,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,43,1,8014,0,1,133.1,1,34,34,0,0,100.0,0,0,0,1,0,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,1,133.1,1,38,19,9,9,128.0,1,0,0,0,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,125.0,1,19,19,5,4,136.2,1,0,1,1,1,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,132.0,1,38,38,0,5,126.1,0,0,0,1,1,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9670,1,1,130.0,1,1,1,9,10,116.3,1,0,0,1,0,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,3,9773,1,1,150.0,1,19,38,4,4,146.5,1,0,0,1,0,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +4,39,2,8014,0,1,160.0,1,37,38,7,5,115.0,0,0,0,1,0,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,135.0,1,19,1,9,9,122.1,1,0,0,1,0,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,136.0,1,3,3,9,9,136.0,1,0,1,0,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,3,3,7,1,130.0,1,0,0,1,1,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9119,1,19,133.1,1,19,19,5,3,100.9,1,0,0,1,1,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,Enrolled +1,17,1,9254,1,1,137.0,1,34,38,0,7,137.7,1,0,1,0,0,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,19,133.1,1,37,37,90,7,110.0,0,0,0,0,0,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,144.0,1,38,37,9,9,125.8,0,0,0,1,0,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,1,4,9070,1,1,167.0,1,1,1,7,3,158.3,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,133.0,1,37,19,7,7,126.7,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,118.0,1,38,38,7,7,121.2,1,0,0,1,0,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,19,133.1,1,19,19,4,4,150.0,0,0,0,0,1,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9085,1,1,166.0,1,1,19,4,3,158.7,0,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Graduate +1,44,1,9254,1,39,130.0,1,39,39,194,193,130.0,1,0,1,1,1,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,1,9085,1,1,140.0,1,37,38,7,9,129.9,0,0,0,1,0,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,9147,1,3,120.0,1,1,39,4,7,120.0,0,0,0,1,0,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,5,9254,1,1,118.0,1,19,37,5,5,120.5,1,0,0,1,1,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,Dropout +1,17,3,9070,1,1,120.0,1,3,1,4,4,116.9,1,0,0,1,0,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Graduate +1,43,5,9238,1,1,101.0,24,37,19,9,7,119.9,1,0,1,0,0,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,128.0,1,19,1,4,3,117.2,1,0,0,1,0,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,Graduate +1,1,3,9254,1,1,118.0,1,1,19,9,9,111.7,1,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,137.0,1,37,37,0,90,134.2,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,144.0,1,3,39,2,3,129.0,1,0,0,1,0,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,125.0,1,37,38,7,7,122.2,1,0,0,1,0,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,147.0,1,3,1,4,3,136.7,0,0,0,1,0,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,39,120.0,1,37,37,1,9,137.7,1,0,0,0,1,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,160.0,1,1,37,9,9,146.0,1,0,0,1,0,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9238,1,39,130.0,1,1,19,4,5,127.4,0,0,1,0,1,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,3,1,2,4,154.9,0,0,1,0,1,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,Dropout +1,17,2,9670,1,1,129.0,1,19,19,5,4,129.4,0,0,0,1,0,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,137.0,1,3,19,3,5,136.3,1,0,0,1,0,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,100.0,1,37,37,9,6,153.5,0,0,1,0,1,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,134.0,1,38,38,7,9,132.8,1,0,0,1,0,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,137.0,1,37,37,7,9,130.8,1,0,0,1,0,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,133.1,1,37,37,1,1,97.0,0,0,0,1,1,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,143.0,1,3,38,2,10,129.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,9,3,127.1,0,0,0,1,0,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,Enrolled +2,7,1,9147,1,3,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,160.0,1,37,37,9,9,160.0,0,0,0,1,1,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,162.0,1,3,4,3,3,154.1,0,0,0,1,0,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,Graduate +1,1,2,9147,1,1,119.0,1,19,37,4,5,113.8,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,139.0,1,19,1,9,5,135.0,1,0,0,1,0,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,120.0,1,1,38,5,5,116.3,1,1,0,1,1,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,2,9500,1,1,135.0,1,1,19,4,10,133.5,1,0,0,1,0,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,Graduate +1,1,3,9119,1,1,117.0,1,1,1,3,5,111.1,0,0,0,1,1,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,140.0,1,1,39,4,1,128.1,1,1,0,1,1,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9003,1,1,133.1,1,37,37,3,8,130.0,0,0,1,1,0,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,134.0,1,19,37,5,5,125.3,1,0,0,1,1,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,37,38,9,9,114.0,0,0,0,1,0,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,38,37,4,5,102.5,0,0,1,0,1,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,143.0,1,19,37,5,9,156.3,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,130.0,1,19,1,9,5,122.1,1,0,0,1,0,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,Graduate +1,39,2,8014,0,1,100.0,1,35,37,90,90,100.0,0,0,0,1,0,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +2,39,2,9670,1,1,100.0,1,37,37,9,9,110.0,0,0,0,1,1,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,2,9853,1,1,126.0,1,1,19,2,10,126.0,1,0,0,1,0,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,Enrolled +1,18,3,9070,1,1,131.0,1,1,37,5,5,122.3,1,0,0,0,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,150.0,1,19,37,9,8,138.5,0,0,0,1,0,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,2,171,1,1,146.0,1,3,3,3,3,155.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,120.0,1,19,19,9,7,118.6,1,0,0,1,0,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,145.0,1,38,38,9,9,125.5,1,0,0,1,0,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9070,1,1,143.0,1,1,1,9,7,134.6,1,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Dropout +1,51,1,8014,0,1,121.0,1,1,38,5,7,112.3,0,0,0,1,0,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,130.0,1,37,1,9,8,120.2,1,0,0,1,1,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +2,7,1,9254,1,2,100.0,1,37,37,9,9,100.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,1,130.0,1,37,3,9,3,137.0,1,0,0,1,1,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,0,0,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,140.0,1,38,37,7,7,105.2,0,0,0,1,1,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,131.0,1,1,19,4,7,135.9,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,108.0,1,19,38,9,7,110.5,1,0,0,1,0,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,111.0,1,1,38,5,9,107.5,0,0,0,1,1,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9147,1,1,147.0,1,37,37,9,6,142.8,1,0,1,0,0,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,170.0,1,38,19,4,8,134.7,0,0,0,1,0,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,138.0,1,4,19,2,3,124.7,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,125.0,1,37,38,9,9,125.0,1,0,1,0,0,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,118.0,1,38,38,5,5,114.2,1,0,0,1,0,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,3,3,1,5,118.8,0,0,0,1,0,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,Graduate +1,1,3,9085,1,1,131.0,1,37,19,9,8,136.3,1,0,1,0,0,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,Dropout +1,43,1,9991,0,1,141.0,1,37,37,9,9,131.9,0,0,0,1,0,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,42,1,9070,1,1,120.0,1,3,2,3,1,116.9,0,0,0,1,1,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,130.0,1,1,1,9,7,152.1,0,0,0,1,1,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,12,133.1,1,34,34,0,0,135.0,0,0,0,1,0,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,130.0,1,38,38,7,7,122.5,1,0,0,1,0,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,160.0,1,1,1,194,131,128.4,0,0,0,1,0,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,132.0,1,1,38,7,7,129.6,0,1,0,1,1,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,1,1,3,9,118.4,0,0,0,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,Graduate +1,1,2,9556,1,1,133.1,1,19,19,9,9,104.5,1,0,0,1,0,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,53,1,9003,1,42,150.0,1,1,38,8,8,150.0,0,0,0,1,0,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,144.0,1,3,1,2,3,126.9,0,0,0,1,0,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,150.0,1,3,3,2,2,120.0,0,0,1,0,0,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,3,3,2,10,160.0,1,0,0,1,1,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,129.0,1,1,1,9,9,120.0,0,0,0,1,1,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,Graduate +4,39,1,9003,1,12,133.1,1,37,37,9,6,160.0,0,0,0,1,0,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,Graduate +2,39,2,9991,0,1,100.0,1,37,37,9,9,100.0,1,0,0,1,1,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,115.0,1,19,1,3,8,123.4,0,0,0,1,0,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,124.0,1,19,37,3,8,117.5,1,0,0,1,1,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,Enrolled +1,1,6,9254,1,1,129.0,1,38,19,9,5,117.8,1,0,0,1,0,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,127.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,19,133.1,1,38,38,7,8,120.0,0,0,0,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +6,39,2,9147,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,4,9500,1,1,148.0,1,3,19,4,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,39,150.0,1,1,3,4,1,150.0,0,0,0,1,1,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,145.0,1,37,37,9,1,150.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,115.7,1,0,0,1,0,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,16,1,171,1,1,122.0,1,19,37,9,7,133.9,1,0,0,1,1,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,124.0,1,37,38,9,8,114.6,1,0,0,1,1,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,120.0,1,38,37,9,8,113.4,1,0,0,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,40,140.0,1,37,37,6,6,140.0,0,0,0,1,0,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,Graduate +1,1,5,9670,1,1,133.1,1,9,1,2,4,133.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,100.0,1,19,19,4,4,113.0,0,0,0,1,1,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,Enrolled +4,39,1,9003,1,1,133.1,1,19,19,9,4,100.7,0,0,0,1,0,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,Enrolled +1,17,2,9147,1,1,133.1,1,38,38,4,7,109.0,1,0,0,1,1,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,15,1,9238,1,1,140.0,26,19,19,9,6,140.0,0,0,0,1,1,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,3,9500,1,1,114.0,1,1,1,5,5,114.5,1,0,0,1,0,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,134.0,1,1,38,4,4,120.7,0,0,1,0,0,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,1,133.1,1,37,11,9,7,96.0,0,0,1,0,1,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,131.0,1,3,3,3,3,135.9,0,0,0,1,0,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,Graduate +1,43,2,9500,1,1,130.0,1,38,37,4,4,126.8,1,0,0,1,1,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,19,37,7,7,124.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9670,1,1,120.0,1,1,19,4,5,100.0,0,0,0,1,0,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,145.0,1,38,38,9,10,139.8,1,0,0,1,0,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,141.0,1,19,38,5,7,125.5,0,0,0,1,0,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,Graduate +5,39,1,9147,1,1,133.1,1,1,19,4,7,114.0,0,0,0,0,1,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9991,0,1,110.0,1,37,37,1,4,120.0,1,0,0,0,1,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,172.0,41,37,37,5,5,153.8,1,0,0,1,0,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,1,9556,1,1,140.0,1,3,3,1,7,131.6,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,4,3,137.5,0,0,0,1,1,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,137.0,1,19,38,3,9,124.9,0,0,0,1,0,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,139.0,1,18,18,1,1,130.8,1,0,0,0,0,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,120.0,1,38,37,5,9,131.4,1,0,0,1,1,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,Graduate +1,53,1,9085,1,42,160.0,1,19,37,4,9,160.0,1,0,0,1,0,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,Graduate +1,18,1,9670,1,1,140.0,1,1,37,9,9,130.2,1,0,0,1,1,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9853,1,1,140.0,1,37,37,6,6,125.2,0,0,1,1,0,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,Graduate +1,1,4,9556,1,1,122.0,1,37,1,5,4,123.9,0,0,0,1,0,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,1,19,3,3,123.0,0,0,0,1,0,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,140.0,1,19,38,4,0,140.0,1,0,0,1,1,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,129.0,1,1,1,4,2,126.2,0,0,1,0,0,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Dropout +2,17,3,8014,0,1,123.0,1,19,37,3,3,113.2,0,0,1,0,0,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,133.1,1,38,19,9,10,114.5,0,0,0,1,0,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,Enrolled +1,51,1,9991,0,1,141.0,1,19,38,5,7,100.0,0,0,0,1,0,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,Graduate +1,17,2,171,1,1,131.0,1,2,1,3,3,148.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,19,133.1,1,37,37,9,9,100.0,1,0,1,0,0,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,117.0,1,1,38,5,1,113.5,1,0,0,1,0,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,116.0,1,19,38,9,9,119.5,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,1,19,3,4,116.7,0,0,0,1,0,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,129.0,1,2,3,2,2,128.3,1,0,0,1,0,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,Enrolled +1,1,3,9085,1,1,138.0,1,1,1,4,8,128.7,1,0,0,1,0,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,5,9147,1,1,118.0,1,19,19,9,9,114.2,1,0,0,1,1,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.0,1,3,19,2,8,126.7,0,0,0,1,0,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,Enrolled +1,16,1,171,1,1,158.0,1,38,37,9,9,164.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,43,3,9500,1,1,126.0,1,38,37,6,5,124.3,1,0,0,1,0,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,123.0,1,38,38,9,5,124.8,0,0,0,0,0,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9130,1,1,160.0,1,3,3,3,2,155.1,1,0,0,1,0,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Graduate +4,43,1,9500,1,1,130.0,1,37,37,9,9,103.7,0,0,0,1,0,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,Enrolled +1,16,2,9238,1,1,133.0,1,19,38,4,5,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,130.0,1,38,37,9,9,124.8,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,135.0,1,37,1,7,7,132.8,1,0,0,1,0,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9119,1,1,128.0,1,1,38,4,7,100.0,0,0,0,1,1,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9085,1,1,120.0,1,1,1,9,10,115.0,0,0,0,0,0,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,2,9070,1,1,142.0,1,3,1,2,4,141.0,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9853,1,1,124.0,1,38,37,5,3,118.1,1,0,0,0,0,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,145.0,1,37,37,9,9,132.0,1,0,0,1,0,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,114.0,1,38,38,9,10,120.0,0,0,0,1,0,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,140.0,1,3,3,2,2,146.4,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,5,9773,1,1,130.0,1,34,38,0,8,128.3,1,0,0,0,0,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,3,9670,1,1,110.0,1,19,1,4,4,107.5,1,0,0,1,0,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,135.0,1,37,37,5,5,126.3,1,1,0,1,0,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,Graduate +2,1,1,9254,1,1,140.0,1,19,38,4,7,133.0,0,0,0,1,1,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,1,150.0,1,37,37,9,9,115.0,0,0,0,1,1,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9070,1,1,130.0,1,1,1,5,3,112.0,1,0,0,1,1,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,110.0,1,1,37,9,9,105.1,1,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,131.0,1,37,37,9,7,118.4,0,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,136.0,1,38,38,7,7,127.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9773,1,1,127.0,1,19,19,5,8,120.0,0,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,139.0,1,37,19,9,8,142.2,1,0,0,1,1,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,4,127.3,1,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,16,4,9773,1,1,109.0,1,37,37,9,3,137.0,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,Graduate +1,53,1,9085,1,42,130.0,1,19,1,9,9,130.0,1,0,1,0,0,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,Enrolled +1,7,1,171,1,3,130.0,1,1,2,9,2,130.0,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,120.0,1,37,37,9,9,120.0,1,0,1,1,0,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,Dropout +1,2,1,9853,1,1,120.0,1,19,38,9,9,122.5,0,0,0,0,0,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,19,133.1,1,2,1,8,8,120.0,1,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,43,1,9773,1,1,121.0,1,1,1,4,5,121.0,1,0,0,1,1,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9147,1,1,120.0,1,38,19,9,9,111.3,1,0,0,1,0,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,38,19,5,0,141.8,0,0,0,1,0,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,131.0,1,1,1,7,4,127.2,1,0,1,1,1,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,11,9,10,131.5,0,0,0,1,0,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,3,19,2,3,125.7,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9556,1,1,136.0,1,19,19,9,9,129.5,1,0,0,1,0,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,Graduate +1,42,1,9119,1,1,120.0,1,5,5,2,2,115.0,0,0,0,1,1,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,Dropout +1,17,6,9119,1,1,124.0,1,19,19,4,0,126.1,1,0,0,1,1,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,160.0,1,19,38,9,9,140.8,1,0,0,1,1,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,123.0,1,37,37,9,9,115.0,1,0,0,1,0,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,Graduate +2,39,2,9670,1,1,133.1,41,37,19,9,9,130.0,0,0,0,1,0,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9670,1,6,170.0,1,34,34,0,0,111.6,0,0,0,1,1,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,138.0,1,1,3,9,1,123.0,1,0,0,1,0,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,1,37,6,6,130.0,1,0,0,1,1,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,Graduate +1,17,2,9119,1,1,133.1,1,1,2,3,3,117.0,1,0,0,1,1,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,Enrolled +1,1,5,9254,1,1,131.0,1,19,37,9,9,123.7,0,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,130.0,1,1,1,9,4,140.0,0,0,0,0,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9773,1,1,135.0,1,1,19,4,10,129.4,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,132.0,1,1,19,3,3,122.9,1,0,0,1,0,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,115.0,1,37,37,9,8,129.0,1,0,1,0,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9238,1,1,160.0,1,3,19,2,1,116.1,0,0,1,1,0,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,12,133.1,1,37,1,9,10,130.0,0,0,0,1,1,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,129.0,1,37,38,4,9,121.0,1,0,0,1,0,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9119,1,1,130.0,1,38,19,7,3,119.9,1,0,1,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,133.1,1,37,37,9,9,100.2,1,0,0,0,0,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,4,38,4,5,140.0,1,0,0,1,0,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9991,0,43,140.0,1,40,5,3,3,140.0,0,0,0,1,0,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,Graduate +1,43,2,9670,1,1,129.0,1,3,3,5,5,122.4,1,0,0,1,0,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,6,116.4,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,130.0,1,1,3,9,2,130.0,1,0,1,1,0,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,139.0,1,38,38,9,5,130.5,1,0,0,1,0,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,1,100.0,1,19,19,9,9,100.0,0,0,1,1,1,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,Dropout +1,7,1,9773,1,43,140.0,1,19,1,4,8,140.0,0,0,0,1,1,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9003,1,1,125.0,1,1,38,4,7,125.0,1,0,0,1,0,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,Graduate +1,39,2,9147,1,19,133.1,1,38,19,4,10,116.3,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,3,9500,1,1,132.0,1,37,37,4,3,127.3,1,0,0,1,0,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,127.0,1,1,37,4,8,121.1,1,0,0,1,1,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9670,1,1,140.0,1,37,37,6,6,120.0,0,0,0,1,0,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,133.0,1,37,37,9,5,139.2,1,0,1,1,1,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,140.0,1,19,19,1,4,133.3,1,0,0,1,0,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,120.0,1,3,3,2,2,112.0,0,0,0,1,0,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,Enrolled +2,1,1,9147,1,1,137.0,1,19,37,9,9,124.4,0,0,0,1,0,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,130.0,1,38,38,9,3,145.6,0,0,0,1,1,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,6,9670,1,1,120.0,1,1,14,4,5,113.7,1,0,0,1,0,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,120.0,1,38,19,9,3,112.7,0,0,0,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,122.0,1,37,37,9,9,114.3,1,0,0,0,0,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,8014,0,1,133.1,1,3,1,1,7,100.0,0,0,0,1,0,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,4,19,3,5,123.7,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,4,4,4,2,120.0,1,0,0,1,1,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,3,9238,1,1,137.0,1,1,1,3,3,131.4,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,Graduate +1,43,1,9130,1,1,130.0,1,1,1,1,1,130.0,1,0,0,1,1,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9773,1,1,121.0,1,1,19,9,7,118.9,1,0,0,1,0,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,133.1,1,19,38,9,8,128.2,1,0,0,1,1,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,Enrolled +1,43,1,9070,1,1,134.0,1,19,37,7,7,132.7,1,0,0,1,1,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9147,1,1,125.0,1,1,38,7,7,120.1,0,0,1,1,1,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,129.0,1,37,37,9,9,117.1,1,0,0,1,0,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,145.0,1,38,38,5,7,138.0,1,0,0,1,0,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,120.0,105,1,1,9,9,119.0,1,0,1,0,0,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,131.0,1,1,19,9,9,127.0,0,0,0,1,1,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,100.0,1,38,19,6,10,112.8,0,0,0,1,0,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,2,9070,1,1,145.0,1,38,19,7,7,130.0,1,0,0,1,1,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,126.0,1,37,38,7,7,119.0,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,Graduate +1,1,2,9773,1,1,137.0,1,1,19,7,7,133.2,1,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,128.0,1,38,38,9,7,128.4,1,0,0,1,0,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9085,1,39,150.0,1,19,38,194,193,150.0,1,0,0,1,0,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,Enrolled +1,1,4,171,1,1,146.0,1,1,1,9,5,151.3,1,0,0,1,0,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,Graduate +1,1,6,9147,1,1,139.0,1,19,12,4,4,125.0,1,0,0,1,0,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,1,1,9,4,123.4,1,0,0,1,0,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9670,1,1,127.0,1,3,4,2,2,122.8,0,0,0,1,1,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,127.0,1,38,37,5,7,121.8,1,0,1,1,0,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,39,1,9003,1,1,130.0,1,38,37,7,7,120.0,0,0,0,1,1,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,Graduate +1,1,2,9238,1,1,100.0,1,38,1,7,7,99.3,1,0,0,1,0,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9119,1,1,160.0,1,37,37,9,6,153.7,0,0,0,1,1,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9500,1,1,138.0,1,3,1,2,5,134.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,Graduate +1,17,4,9254,1,1,124.0,1,3,3,3,3,126.1,1,0,0,1,0,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,Dropout +2,7,1,9147,1,3,110.0,1,19,1,9,9,110.0,0,0,0,1,0,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,143.0,1,3,19,3,10,126.8,0,0,0,1,1,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,Graduate +1,17,2,9670,1,1,110.0,1,1,1,4,10,115.3,1,0,0,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,9119,1,1,129.0,1,2,37,2,9,121.6,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Enrolled +1,15,1,9254,1,1,140.0,26,19,1,9,7,140.0,1,0,0,0,0,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,118.0,1,19,38,7,9,113.5,1,0,0,1,0,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,5,9853,1,1,110.0,1,19,37,7,7,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,171,1,1,145.0,1,3,1,2,10,114.5,1,0,0,1,1,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,43,2,9670,1,1,125.0,1,38,19,4,3,106.6,1,0,0,1,0,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Dropout +4,39,1,9500,1,19,133.1,1,37,37,5,7,100.0,0,0,0,0,0,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,133.0,1,1,1,9,9,119.7,1,1,1,1,1,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,Graduate +1,1,2,9853,1,1,134.0,1,1,38,9,8,122.5,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,120.0,1,19,37,3,9,100.0,0,0,0,1,0,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,37,37,6,6,100.0,0,0,1,0,1,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,160.0,1,38,38,6,6,160.0,1,0,0,1,0,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,7,116.0,0,0,0,1,0,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,Graduate +1,18,3,9500,1,1,145.0,1,1,1,4,8,133.6,1,0,0,1,0,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,3,19,2,3,124.5,0,0,0,1,0,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,125.0,1,19,38,9,8,118.3,0,0,0,1,1,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,Dropout +1,5,1,9085,1,1,150.0,1,1,1,4,4,139.4,0,0,0,1,0,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9773,1,1,133.1,1,38,38,9,5,117.0,0,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,142.0,1,1,1,4,7,131.0,1,0,0,1,0,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,1,19,3,3,154.3,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9147,1,1,135.0,1,37,38,9,9,128.0,1,0,1,1,0,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,149.0,1,37,37,9,9,138.0,0,0,0,1,1,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,38,9,9,129.2,1,0,0,1,0,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9556,1,1,147.0,1,3,4,3,2,100.0,0,0,0,1,0,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,12,133.1,1,37,37,10,9,144.0,0,0,0,1,1,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9254,1,1,100.0,1,3,19,3,5,115.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9670,1,1,140.0,1,1,1,4,3,133.4,0,0,0,1,1,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,Enrolled +1,1,2,171,1,1,127.0,1,3,39,1,3,133.5,1,0,0,1,1,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9147,1,1,112.0,1,1,19,3,5,107.8,1,0,0,1,0,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,Enrolled +2,39,1,9147,1,1,110.0,1,37,37,9,10,140.0,0,0,0,1,0,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,120.0,1,1,3,175,121,105.9,0,0,0,1,0,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,Enrolled +1,1,1,9238,1,1,168.0,1,37,37,9,9,149.5,0,0,0,1,0,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,Graduate +1,17,1,8014,0,1,141.0,1,34,34,0,0,136.1,0,0,0,1,0,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,140.0,1,1,1,4,3,130.7,1,0,0,1,1,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,Dropout +1,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,134.0,1,1,37,8,7,120.5,1,0,0,1,1,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,160.0,1,1,38,4,7,141.5,1,0,0,1,1,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,122.0,1,38,37,191,195,112.9,1,0,0,1,0,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,41,1,1,9,7,163.1,1,0,0,0,0,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,1,110.0,1,1,37,9,9,126.0,1,0,0,1,1,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,Enrolled +1,17,1,9670,1,1,109.0,1,1,1,4,4,108.0,0,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,131.0,2,37,1,9,3,126.1,1,0,0,1,1,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,1,2,9556,1,1,125.0,1,38,1,9,3,116.3,1,0,0,1,0,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,Graduate +1,17,1,9085,1,1,138.0,1,2,19,2,9,126.8,1,0,0,1,0,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,Enrolled +1,1,5,9853,1,1,128.0,1,38,37,9,9,120.3,1,0,1,0,0,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,130.0,1,1,38,4,9,122.7,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,9,133.1,1,37,34,90,90,118.1,1,0,0,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,125.0,1,1,19,4,9,114.5,1,0,0,1,0,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,Graduate +1,1,5,9773,1,1,138.0,1,19,19,9,9,139.4,1,0,0,1,0,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,125.0,1,19,38,3,5,115.9,0,0,0,1,0,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,134.0,1,38,19,5,8,120.7,0,0,0,1,0,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,133.1,41,3,1,3,10,100.0,1,0,0,0,0,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,Dropout +5,39,1,9003,1,1,133.1,1,37,37,9,7,110.0,0,0,1,0,0,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,Dropout +1,17,1,9254,1,1,128.0,1,19,1,5,7,120.7,1,0,1,1,0,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,162.0,1,19,19,4,7,152.9,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,51,1,9238,1,1,121.0,1,3,19,3,10,111.9,1,0,0,1,0,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,Graduate +1,39,2,9991,0,1,172.0,1,19,37,9,8,150.0,1,0,0,1,0,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,116.0,1,19,19,9,8,119.9,1,0,0,1,0,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,125.0,1,19,19,3,10,131.0,1,0,0,1,1,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,39,1,9500,1,4,150.0,1,3,38,3,7,127.0,1,0,0,1,1,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,128.0,1,38,38,9,9,129.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,120.0,1,3,19,4,5,115.5,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,38,38,9,6,160.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,130.0,1,3,1,2,9,130.0,1,0,0,1,0,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,140.0,1,1,19,4,8,124.6,1,0,0,1,0,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,3,3,2,2,150.0,1,0,0,1,0,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9853,1,1,133.1,1,37,19,9,5,138.3,0,0,0,1,0,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,Dropout +1,43,1,9991,0,1,150.0,1,3,3,4,4,100.0,1,0,0,1,1,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,Graduate +1,44,1,9238,1,1,150.0,1,1,38,4,9,145.9,0,0,0,1,0,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,Graduate +1,18,3,9500,1,1,131.0,1,19,1,4,7,127.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,Graduate +1,7,1,9085,1,3,150.0,1,19,37,90,90,140.0,0,0,0,1,1,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,167.0,1,19,19,9,7,156.2,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,140.0,1,1,3,4,5,130.0,0,0,0,1,1,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9238,1,1,132.0,1,1,19,4,9,127.1,1,0,0,1,0,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9119,1,1,133.0,1,3,1,3,4,121.8,1,0,0,1,1,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9670,1,1,133.1,1,1,37,4,5,150.0,0,0,0,1,1,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,150.0,103,37,37,9,9,134.6,0,0,0,1,1,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,6,9773,1,1,131.0,1,34,34,0,0,129.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,139.0,1,3,1,4,1,126.0,1,0,0,1,1,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,138.0,1,1,1,4,8,123.0,0,0,1,0,1,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,Enrolled +5,39,1,9853,1,19,133.1,1,37,37,9,8,118.0,0,0,0,1,0,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,142.0,1,37,38,9,9,137.3,1,0,0,1,0,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,136.0,1,3,38,2,9,125.7,1,0,0,1,0,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,1,1,4,10,128.3,1,0,0,1,0,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,132.0,1,1,37,4,9,127.1,0,0,0,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,122.0,1,19,19,7,7,116.1,1,0,0,1,0,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,140.0,1,1,2,3,3,140.0,0,0,0,1,0,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,Enrolled +1,42,1,9853,1,12,133.1,1,1,3,3,2,133.7,0,0,0,1,0,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,Dropout +2,7,1,9500,1,3,120.0,1,37,19,9,7,120.0,1,0,0,1,0,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,Enrolled +1,1,4,9238,1,1,134.0,1,38,19,7,7,128.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,130.0,1,19,38,4,7,121.3,1,0,0,1,0,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,Graduate +1,39,2,9238,1,1,110.0,1,19,1,5,5,136.5,0,0,0,1,1,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9670,1,1,133.1,1,38,19,9,8,122.9,0,0,1,0,1,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,124.0,1,19,1,9,3,123.7,1,0,0,1,0,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,17,1,9991,0,1,120.0,1,38,3,9,3,116.9,1,0,1,0,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,43,2,9147,1,1,160.0,1,37,37,9,9,96.0,0,0,0,0,0,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,154.0,1,19,37,9,7,140.4,1,0,0,1,0,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,Enrolled +1,17,5,9070,1,1,125.0,1,19,1,5,5,122.6,1,0,0,1,1,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9119,1,1,137.0,1,1,1,4,4,130.4,1,0,1,1,1,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,134.0,1,37,19,9,9,136.8,1,0,0,1,1,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,100.0,1,37,37,0,0,128.0,1,0,0,1,1,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +4,39,1,9130,1,19,133.1,1,37,38,9,4,100.9,0,0,0,1,1,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,127.0,1,1,19,5,7,130.5,1,0,0,1,0,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,1,1,9003,1,1,131.0,1,19,38,5,5,118.4,0,0,0,1,0,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,142.0,1,1,38,5,7,127.7,0,0,0,1,0,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,130.0,1,1,38,4,9,115.0,0,0,0,1,1,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,100.0,0,0,0,1,0,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,134.0,1,1,19,9,5,121.8,1,0,0,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,3,9853,1,1,122.0,1,1,3,5,3,113.6,0,0,0,1,0,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,114.0,1,37,37,7,8,116.7,0,0,0,1,1,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,130.0,1,3,1,3,3,120.5,0,0,0,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,148.0,1,19,19,4,5,143.5,0,0,0,1,0,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,19,9,9,107.0,0,0,0,0,1,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,130.0,1,3,19,5,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,6,120.0,0,0,0,0,0,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,1,2,9853,1,1,123.0,1,19,1,194,103,115.3,1,0,0,1,0,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,Enrolled +1,18,1,9130,1,1,135.0,1,38,19,9,5,121.7,1,0,0,1,0,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,116.0,1,38,38,5,8,110.8,1,0,0,1,0,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,7,1,9147,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9991,0,1,133.1,41,37,37,9,8,114.7,0,0,0,1,0,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,122.0,1,37,37,9,7,120.6,1,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,150.0,1,5,5,2,2,146.2,0,0,0,1,0,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,130.0,1,1,4,3,10,130.0,0,0,0,1,0,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9085,1,19,110.0,1,37,37,90,90,110.0,0,0,0,0,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,140.0,1,1,1,9,9,136.9,1,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,44,1,9085,1,39,150.0,1,19,19,9,9,150.0,1,0,0,1,0,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +2,43,1,9003,1,1,149.0,1,1,1,4,5,156.1,1,0,0,0,1,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9119,1,1,133.1,1,1,1,9,3,136.0,0,0,0,1,1,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,Dropout +1,16,2,9238,1,1,122.0,1,19,37,9,7,127.3,1,0,0,1,0,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,133.0,1,1,1,6,7,134.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,141.0,1,19,38,9,9,130.5,0,0,0,1,1,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,121.0,1,1,3,9,3,123.8,0,0,0,0,1,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,39,140.0,1,1,1,4,3,138.6,0,0,0,1,1,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9991,0,1,145.0,1,2,37,4,9,127.5,1,0,0,1,1,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,100.0,1,37,19,9,2,121.9,0,0,0,0,0,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,120.0,1,38,38,9,9,148.5,0,0,0,1,0,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +5,39,1,9991,0,1,110.0,1,1,1,3,3,119.0,0,0,0,1,1,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9254,1,1,137.0,1,1,38,2,8,122.3,1,0,0,1,1,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,42,1,9238,1,1,133.1,1,1,19,4,9,134.0,0,0,0,1,0,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,38,37,9,7,130.0,1,0,0,1,1,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,Graduate +5,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,120.0,1,37,37,9,9,111.1,0,0,0,1,0,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,124.0,1,38,19,6,10,126.8,1,0,0,1,0,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,Graduate +2,1,1,9500,1,1,151.0,1,37,38,9,7,134.5,0,0,1,1,0,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,133.0,1,19,37,9,8,121.8,1,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,148.0,1,1,19,4,5,135.1,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,120.0,1,19,38,4,8,122.5,0,0,0,0,1,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9070,1,1,140.0,1,37,37,9,10,118.0,0,0,1,1,1,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,3,133.1,1,9,9,90,90,130.0,0,0,0,1,0,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,150.0,1,34,34,0,0,108.0,0,0,0,1,0,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,1,150.0,1,1,38,3,5,120.0,0,0,0,1,1,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,Enrolled +1,44,1,9085,1,39,150.0,1,38,1,5,5,150.0,0,0,0,1,0,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,1,2,9238,1,1,133.1,1,19,19,9,9,106.0,1,0,0,1,0,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,102.0,1,38,38,9,9,99.6,1,0,0,1,0,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,140.0,1,38,19,9,5,130.0,0,0,1,1,0,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9773,1,1,138.0,1,3,1,2,3,135.9,1,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,1,9,4,150.0,1,0,0,1,1,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,Dropout +1,1,6,9147,1,1,127.0,1,1,19,1,6,120.0,1,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,0,0,0,1,1,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,137.0,1,38,38,4,8,126.5,1,0,0,1,0,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,1,19,4,4,132.6,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,130.0,1,1,1,4,9,150.0,0,0,0,1,1,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,146.0,1,3,1,1,3,149.2,1,0,0,1,0,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,129.0,1,38,38,6,6,118.5,1,0,0,1,0,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,131.0,1,19,3,3,2,126.1,1,0,0,1,0,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,Enrolled +1,39,1,9085,1,43,160.0,1,3,39,2,3,172.0,0,0,0,1,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,39,1,9670,1,1,133.1,1,1,1,4,4,112.9,0,0,0,1,0,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,Dropout +2,39,1,9003,1,1,150.0,1,37,37,9,6,140.0,0,0,0,1,1,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,127.0,1,37,38,9,7,115.8,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,133.1,1,1,37,5,9,143.0,1,0,1,1,0,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,9,138.4,1,0,1,1,0,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9070,1,1,125.0,1,1,1,4,4,132.0,0,0,0,0,0,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,5,9130,1,1,160.0,1,3,1,2,9,150.2,1,0,0,1,0,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,1,110.0,1,37,37,9,4,160.0,0,0,0,1,0,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,135.0,1,19,37,5,7,121.4,0,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9670,1,1,135.0,1,19,19,7,10,121.4,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,125.0,1,1,38,4,9,118.4,1,0,0,1,0,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,145.0,1,38,37,5,6,127.5,1,0,0,1,0,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,Graduate +1,43,3,171,1,1,140.0,1,37,38,7,7,143.4,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,134.0,1,37,19,9,10,141.4,1,0,0,1,0,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,130.0,1,29,38,9,8,122.0,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,109.0,1,19,19,4,9,104.1,1,0,1,0,0,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,116.0,1,34,34,0,0,127.0,1,0,0,1,1,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,3,8014,0,19,100.0,1,37,37,9,9,120.0,1,0,0,1,1,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9238,1,1,122.0,1,37,38,4,7,118.2,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,8014,0,1,100.0,1,12,5,9,4,116.5,0,0,1,0,0,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,122.0,1,19,19,193,194,112.6,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,42,3,9500,1,1,136.0,1,1,1,4,4,148.8,1,0,0,1,0,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,137.0,1,19,1,9,9,132.8,0,0,0,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,130.0,1,37,37,6,6,111.9,0,0,1,1,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9254,1,1,116.0,1,19,38,5,5,116.0,1,0,0,1,0,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9500,1,1,131.0,1,1,3,3,2,121.2,1,0,0,1,0,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,141.0,1,1,19,3,3,131.9,1,0,0,1,0,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,120.0,1,37,37,9,10,122.6,0,0,0,1,0,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,Dropout +1,18,5,9119,1,1,136.0,1,3,2,2,3,125.2,1,0,0,1,1,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,125.0,1,19,1,7,4,122.6,0,0,0,1,1,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,139.0,1,19,37,9,9,131.5,1,0,0,1,0,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,Graduate +1,5,1,9853,1,1,119.0,1,1,38,5,8,118.3,1,0,0,1,0,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9773,1,1,125.0,1,1,38,5,6,115.9,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,126.0,1,1,19,4,8,120.1,1,0,0,1,0,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,Graduate +1,17,1,9085,1,1,125.0,1,1,37,4,9,117.0,1,0,0,1,0,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,135.0,1,19,38,7,5,121.0,0,0,0,1,0,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,138.0,1,38,37,3,3,133.1,0,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,148.0,1,19,37,9,5,130.9,0,0,0,0,1,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,145.0,1,12,1,4,10,139.8,1,0,0,1,0,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,118.0,1,37,37,3,5,110.0,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9147,1,1,99.0,1,3,1,3,3,99.7,1,0,1,0,0,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,17,2,9556,1,1,137.0,41,1,1,7,7,124.4,1,0,0,1,0,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,Graduate +1,17,3,9853,1,1,133.1,1,34,34,0,0,115.0,0,0,0,1,0,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,123.0,1,37,38,9,9,113.9,1,0,1,0,0,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,1,4,9238,1,1,125.0,1,19,38,9,6,114.9,1,0,1,1,0,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,Enrolled +1,18,1,8014,0,1,137.0,1,1,1,4,3,123.0,0,0,1,1,0,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,Graduate +1,43,1,8014,0,1,131.0,1,19,37,8,5,125.0,0,0,0,1,1,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9147,1,3,150.0,1,6,27,1,7,150.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,9,4,117.0,0,0,0,1,0,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,133.1,1,37,1,9,10,100.0,0,0,0,1,0,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,Dropout +1,1,3,9670,1,1,121.0,1,1,19,5,5,111.9,1,0,0,1,1,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,133.1,1,1,19,3,3,112.0,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,43,1,9991,0,1,140.0,1,1,1,6,6,100.0,0,0,0,1,1,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,Graduate +2,42,1,9556,1,1,110.0,1,37,37,9,6,140.0,0,0,0,1,1,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,130.0,1,1,1,4,4,124.8,0,0,0,1,0,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,138.0,1,38,37,9,6,126.8,1,0,0,1,1,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,127.0,1,2,37,9,9,115.8,1,0,1,0,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9085,1,1,170.0,1,1,1,4,5,166.6,0,0,1,0,0,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,130.0,1,1,1,4,4,130.0,1,1,0,1,1,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,3,1,2,8,100.0,1,0,0,1,1,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9670,1,1,106.0,1,3,1,2,3,105.7,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,43,1,9556,1,1,140.0,1,37,37,9,9,128.0,1,0,0,0,0,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,127.0,1,1,4,9,10,121.8,0,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,134.0,1,1,1,9,6,130.9,0,0,1,1,0,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,133.1,1,37,37,7,4,132.0,0,0,0,1,1,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,110.0,1,12,3,5,2,100.0,1,0,0,1,1,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,6,9238,1,1,113.0,1,1,38,194,163,112.3,1,0,1,1,0,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,118.0,1,19,19,5,7,121.2,0,0,0,1,1,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,51,1,9773,1,1,158.0,1,1,19,8,8,117.1,1,0,0,1,1,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,Dropout +1,17,1,9070,1,1,119.0,1,37,38,9,8,124.6,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,111.0,1,19,19,3,10,117.7,0,0,0,1,0,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,140.0,1,3,1,5,9,130.0,0,0,0,1,1,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,122.0,1,3,1,9,10,114.7,0,0,0,1,0,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,Graduate +2,39,1,9238,1,19,133.1,1,1,2,4,6,130.0,0,0,0,1,0,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9500,1,1,131.0,1,38,1,5,7,118.4,1,0,0,1,0,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Dropout +1,43,5,9853,1,1,150.0,1,34,34,0,0,150.2,1,0,0,0,0,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,140.0,1,37,19,9,9,166.0,1,0,1,1,1,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9085,1,1,133.1,1,19,37,9,6,130.0,1,0,0,1,0,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,Graduate +1,1,4,9147,1,1,120.0,1,38,38,5,10,111.3,0,0,0,1,1,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,Enrolled +1,1,5,9500,1,1,125.0,1,3,19,4,8,120.3,1,0,0,1,0,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,Enrolled +1,17,2,9556,1,1,136.0,1,1,1,9,9,128.3,0,0,0,1,0,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,133.1,1,38,19,5,5,128.0,0,0,0,1,0,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,9,133.1,1,37,37,5,3,110.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9254,1,1,118.0,1,19,1,4,4,115.9,1,0,0,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,134.0,1,19,37,7,7,136.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,130.0,1,37,37,9,7,119.9,0,0,0,1,0,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9773,1,1,153.0,1,34,34,99,99,133.1,1,0,1,1,0,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,10,133.1,1,12,36,90,90,128.2,0,0,0,0,1,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,1,9991,0,1,112.0,1,43,40,2,2,106.4,0,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,122.0,1,3,3,2,2,122.0,1,0,0,1,0,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,137.0,1,1,19,4,3,121.3,1,0,0,1,1,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,19,133.1,1,3,1,2,5,103.0,0,0,0,1,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,136.0,1,1,19,9,9,131.5,0,0,0,1,0,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,154.0,1,1,3,4,2,164.9,0,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,6,9147,1,1,129.0,1,19,1,9,4,122.0,1,0,0,1,1,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,132.0,1,19,19,9,7,128.0,1,0,0,1,1,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,Graduate +2,39,1,9773,1,19,133.1,1,19,19,9,4,131.0,0,0,1,0,1,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,Dropout +4,39,1,8014,0,1,160.0,1,37,37,5,5,126.0,0,0,0,1,0,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,16,2,9238,1,1,126.0,1,38,37,3,5,127.1,1,0,0,1,0,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9254,1,1,111.0,1,1,19,5,7,109.3,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,133.1,1,37,37,3,10,108.0,0,0,0,1,0,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,Graduate +1,1,4,9773,1,1,140.0,22,1,37,3,9,130.5,1,0,0,1,0,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,140.0,1,1,1,9,5,140.0,0,0,0,1,0,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,Dropout +1,17,3,9670,1,1,125.0,1,1,3,4,3,117.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,150.0,1,37,38,9,9,131.5,1,0,0,1,0,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,5,100.0,0,0,0,0,1,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9773,1,1,133.0,1,19,19,7,7,134.4,1,0,0,1,1,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,135.0,1,19,37,9,9,128.0,1,0,0,1,0,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,5,9670,1,1,115.0,1,1,19,5,5,117.1,0,0,0,1,0,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,Enrolled +1,51,1,9003,1,39,130.0,1,1,19,4,4,120.0,1,0,1,0,1,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,Dropout +1,1,3,9773,1,1,117.0,1,38,19,7,7,110.4,1,0,1,0,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9773,1,1,127.0,1,19,38,8,3,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,38,37,1,1,115.0,1,0,0,1,0,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,18,2,9853,1,1,123.0,1,1,3,9,2,123.7,1,0,1,0,0,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,Dropout +1,1,3,9853,1,1,122.0,1,3,3,2,2,112.6,1,0,0,1,0,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,17,3,9254,1,1,127.0,1,37,37,9,6,123.5,1,0,0,1,0,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,141.0,1,37,37,9,9,136.3,1,0,0,1,1,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,140.0,1,3,3,2,2,124.3,0,0,0,0,1,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,125.0,1,1,3,4,1,121.9,1,0,0,1,1,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,Dropout +1,17,1,9070,1,1,134.0,1,1,1,5,0,133.3,1,0,0,1,1,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9670,1,1,127.0,22,37,37,9,9,127.0,1,0,0,1,1,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,Graduate +1,42,1,9853,1,1,120.0,1,37,38,3,3,113.7,0,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,3,9670,1,1,121.0,1,3,19,2,8,122.4,1,0,0,1,1,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,Enrolled +1,1,3,171,1,1,139.0,1,19,19,5,3,128.2,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,42,1,9085,1,1,100.0,1,1,38,4,9,100.0,1,0,0,1,0,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,10,1,9500,1,1,140.0,24,3,3,2,9,140.0,1,0,1,0,0,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,132.0,1,37,19,9,9,131.0,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,124.0,1,1,1,4,4,127.9,1,0,0,1,1,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9119,1,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9773,1,1,117.0,1,38,38,9,9,111.1,0,0,1,1,1,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,19,133.1,1,19,37,9,9,149.4,0,0,0,0,1,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,1,1,161.9,0,0,0,1,1,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,140.0,1,38,37,4,7,130.0,1,0,0,0,0,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,43,1,171,1,1,145.0,1,19,38,9,9,100.0,0,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9773,1,1,120.0,1,37,38,9,3,155.5,0,0,0,1,1,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,121.8,0,0,0,0,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9130,1,3,140.0,1,5,4,2,0,140.0,0,0,1,0,0,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,Dropout +1,51,1,171,1,1,128.0,1,2,1,3,3,131.2,1,0,0,1,1,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,12,110.0,1,37,37,7,9,120.0,0,0,0,1,0,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,150.0,1,2,3,3,2,140.8,0,0,0,1,0,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,Enrolled +1,43,1,9070,1,1,125.0,1,19,19,7,8,133.4,1,0,0,1,1,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,Enrolled +1,1,5,171,1,1,160.0,1,1,1,4,4,139.7,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,1,120.0,1,1,38,9,9,150.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,154.0,1,19,19,3,3,142.0,0,0,0,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9254,1,1,110.0,1,4,19,4,3,114.8,1,0,0,0,1,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9119,1,1,140.0,1,34,34,9,9,140.0,0,0,0,0,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,125.0,1,1,1,4,2,134.1,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9254,1,40,130.0,1,1,1,3,6,130.0,0,0,0,1,0,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9254,1,1,122.0,1,37,37,9,3,124.5,1,0,0,1,0,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,130.0,1,1,3,9,2,128.6,1,0,0,1,0,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,Graduate +1,17,4,9670,1,1,122.0,1,3,1,2,3,119.6,1,0,0,1,1,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,Graduate +1,44,3,9085,1,39,150.0,1,1,19,4,1,150.0,1,0,0,1,0,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,19,37,9,9,130.0,1,0,0,1,1,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,133.1,1,38,19,4,7,98.0,1,0,0,1,1,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,Enrolled +1,17,2,9556,1,1,125.0,1,38,19,7,7,121.5,1,0,0,1,0,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,Dropout +2,1,4,9500,1,1,143.0,1,38,38,5,5,128.7,1,0,0,1,0,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,1,100.0,1,1,19,4,8,122.0,0,0,0,1,0,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,Graduate +1,51,1,9500,1,1,170.0,1,1,1,4,10,125.0,0,0,0,1,1,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,Graduate +1,18,4,9500,1,1,137.0,1,3,1,3,4,126.7,1,0,0,1,0,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,19,133.1,1,38,38,9,8,106.0,1,0,0,1,1,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,40,130.0,1,19,1,3,4,152.0,1,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9085,1,39,140.0,1,1,39,3,9,140.0,1,0,0,1,0,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9773,1,1,133.1,1,3,1,4,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +2,43,1,9853,1,1,110.0,1,37,37,7,7,100.0,0,0,0,1,1,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,Graduate +1,7,1,9119,1,3,120.0,1,19,19,1,1,120.0,0,0,0,0,1,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,1,130.0,1,34,34,99,99,114.8,0,0,0,1,0,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,140.0,1,37,3,9,10,172.0,0,0,0,1,1,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,Enrolled +1,17,2,9670,1,1,123.0,1,34,37,0,0,114.6,1,0,1,0,0,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,Dropout +1,43,2,9500,1,1,136.0,1,19,1,9,10,124.1,0,0,0,1,1,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,116.0,1,1,1,1,1,110.8,1,0,0,1,0,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9003,1,1,133.1,1,37,37,4,7,130.0,0,0,1,0,1,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,Dropout +1,1,3,9085,1,1,158.0,1,1,19,9,9,153.6,1,0,0,1,0,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,Graduate +1,17,4,9773,1,1,121.0,1,1,19,9,8,120.3,1,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,5,3,9085,1,1,141.0,1,1,19,7,5,128.8,1,0,0,1,0,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,Enrolled +1,18,4,9556,1,1,127.0,1,1,38,4,7,121.8,1,0,0,1,0,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,110.0,1,34,34,0,0,114.6,1,0,0,1,0,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9085,1,1,128.0,1,38,19,8,8,117.2,0,0,0,1,1,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,143.0,1,1,38,3,3,133.2,1,0,0,1,0,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,Graduate +1,1,4,9853,1,1,134.0,1,19,1,5,9,127.4,1,0,0,1,0,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Enrolled +1,1,1,9670,1,1,133.1,1,3,1,1,7,155.0,0,0,0,1,0,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,114.0,1,19,38,9,7,129.1,0,0,0,1,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,149.0,1,19,37,7,4,134.3,0,1,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,130.0,1,1,38,3,5,128.6,1,0,0,1,1,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,42,1,9147,1,1,139.0,1,3,38,2,5,112.3,1,0,0,1,0,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,Enrolled +1,1,3,9773,1,1,130.0,1,19,19,9,9,123.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,38,38,9,5,100.0,0,0,0,1,0,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,Enrolled +6,39,1,8014,0,1,133.1,1,37,1,9,7,114.8,0,0,0,1,0,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,121.0,1,1,38,4,9,114.4,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,18,1,9238,1,1,122.0,1,38,38,9,7,114.7,0,0,1,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9773,1,1,120.0,1,1,1,2,5,127.0,1,0,0,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,4,1,2,8,120.0,0,0,0,1,1,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,3,9500,1,1,143.0,1,38,1,9,5,133.8,1,0,0,1,0,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,130.0,1,1,19,9,7,133.8,0,0,1,1,0,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,Graduate +2,39,1,9556,1,1,100.0,1,37,37,9,9,120.0,0,0,0,1,0,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,133.1,1,1,19,5,4,102.5,0,0,0,1,0,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9003,1,1,111.0,1,1,3,4,2,162.4,0,0,1,0,1,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,133.1,1,19,1,9,3,107.0,1,0,0,1,0,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,128.0,1,19,1,4,4,124.3,1,0,0,1,1,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,140.0,1,36,14,9,10,130.0,1,0,0,1,1,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,150.0,1,38,19,7,10,134.6,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9070,1,1,134.0,1,34,1,5,7,129.8,1,0,0,1,0,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,150.0,1,37,37,9,3,150.0,1,0,0,1,1,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,Dropout +2,39,1,9238,1,1,126.6,1,38,38,9,7,107.5,0,0,1,1,0,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,120.0,1,37,37,9,7,106.8,0,0,0,1,0,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9254,1,1,117.0,1,1,1,5,5,116.3,1,0,0,1,1,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,130.0,1,19,19,5,5,157.0,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9556,1,1,133.1,1,44,40,2,2,115.5,0,0,0,1,0,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,133.1,1,3,1,2,4,125.0,0,0,0,1,1,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,9,9,100.0,0,0,0,0,1,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9500,1,1,141.0,1,37,1,9,4,127.3,1,0,0,1,0,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,117.0,1,38,38,175,183,113.2,1,0,1,1,0,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,133.1,1,37,37,7,7,124.5,0,0,0,0,1,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,Dropout +1,17,2,9070,1,1,133.1,1,37,38,9,10,178.0,1,0,0,1,1,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,19,9,9,115.0,1,0,0,1,1,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,146.0,1,1,1,3,4,128.2,0,0,1,1,0,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,4,9070,1,1,128.0,1,1,1,9,10,136.1,1,0,1,0,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,Dropout +5,39,1,9500,1,3,140.0,1,37,38,9,9,160.0,0,0,0,1,0,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,8,121.0,0,0,1,0,0,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,140.0,1,2,1,2,3,140.0,1,0,0,1,0,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,3,9670,1,1,126.0,1,37,37,0,0,136.5,1,0,0,1,0,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,140.0,1,19,37,9,9,130.2,1,0,0,1,0,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,1,3,1,2,133.0,0,0,0,1,0,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,136.0,1,19,38,9,9,121.7,1,0,0,1,1,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,4,9085,1,1,106.0,1,37,1,3,9,106.0,0,0,0,1,0,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,Enrolled +1,1,3,9500,1,1,135.0,1,1,37,7,7,120.5,1,0,0,1,0,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,115.0,1,19,19,7,7,115.0,1,0,0,1,0,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9238,1,1,160.0,1,38,1,9,3,124.0,0,0,1,1,1,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,129.0,1,38,38,5,5,120.8,1,0,0,1,0,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,160.0,41,37,19,9,9,160.0,0,0,0,1,0,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,132.0,1,1,19,7,5,129.9,1,0,0,1,1,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,136.0,1,37,38,9,8,139.2,1,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,127.0,1,19,37,9,7,121.3,1,0,0,1,0,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9119,1,1,142.0,1,1,38,4,3,129.8,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,5,8,133.2,0,0,0,0,1,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,Dropout +1,1,1,9147,1,1,150.0,1,1,19,5,5,137.8,1,0,0,1,1,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,135.0,1,3,1,2,4,129.8,1,0,0,1,1,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,Graduate +1,43,2,9773,1,1,132.0,1,19,19,0,0,127.1,0,0,0,1,1,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,3,9500,1,1,140.0,1,3,2,3,3,126.4,1,0,0,1,0,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,Dropout +2,39,2,9119,1,19,133.1,1,37,37,7,7,118.0,0,0,0,0,1,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,110.0,1,3,4,2,2,110.0,1,0,0,1,1,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,Dropout +2,39,1,9500,1,38,133.1,1,37,37,9,3,146.6,0,0,0,1,1,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,146.0,1,1,3,4,1,135.2,1,0,0,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,3,5,2,2,135.8,0,0,1,1,1,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9773,1,19,100.0,1,37,37,0,0,163.5,0,0,1,0,1,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,7,113.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,143.0,1,3,3,9,7,129.0,1,0,0,1,1,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,Graduate +1,1,2,9853,1,1,117.0,1,1,38,4,9,109.7,1,0,0,1,0,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9130,1,2,133.1,6,42,1,4,9,100.0,0,0,0,1,1,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,115.8,0,0,1,0,1,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9773,1,1,167.0,1,38,38,6,7,153.0,1,0,0,1,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,51,1,9238,1,1,141.0,1,1,1,5,9,125.0,0,0,0,1,1,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,4,9500,1,1,132.0,1,38,19,5,7,125.5,0,0,0,1,0,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,Graduate +1,1,1,9119,1,1,132.0,1,1,12,3,3,133.1,1,0,0,1,1,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,149.0,1,1,1,4,4,129.3,1,0,0,1,1,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,142.5,0,0,0,1,0,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,Enrolled +1,1,6,9773,1,1,133.1,1,1,37,3,3,100.0,1,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,138.0,1,37,37,9,6,145.0,1,0,0,1,0,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,19,19,3,6,124.3,1,0,0,1,0,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,135.0,1,37,37,9,7,132.6,1,0,0,1,0,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,159.0,1,34,26,0,6,160.1,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,133.1,1,37,37,6,8,100.0,0,0,1,1,0,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9070,1,1,153.0,1,3,3,1,2,146.7,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,43,1,171,1,2,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,141.0,1,19,19,9,8,142.8,0,0,0,1,0,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,39,2,9556,1,1,130.0,1,19,19,4,5,100.0,0,0,0,1,1,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,120.0,1,38,19,3,5,120.0,0,0,0,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,2,9147,1,1,120.0,1,37,37,9,9,104.0,0,0,0,0,1,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,150.0,1,38,38,9,9,132.0,1,0,0,1,0,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,142.0,1,38,38,9,9,132.9,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9085,1,1,160.0,1,4,19,2,5,162.1,1,0,0,1,0,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,8,130.2,1,0,0,1,0,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,118.0,1,1,1,9,9,111.0,0,0,0,0,1,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,119.0,1,37,37,10,6,119.7,1,0,0,1,0,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,Enrolled +1,17,2,171,1,1,137.0,1,1,1,4,1,143.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,18,3,9085,1,1,149.0,103,1,1,9,9,132.2,1,0,0,1,0,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,130.0,1,37,37,90,90,125.1,0,0,0,1,0,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,Graduate +4,17,5,8014,0,1,100.0,1,19,19,90,90,107.0,0,0,0,1,0,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,19,133.1,1,38,19,9,10,142.7,0,0,1,1,1,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,139.0,1,19,37,5,5,125.5,0,0,0,1,0,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,133.0,1,4,1,5,5,131.6,0,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,148.0,1,19,19,9,3,125.0,1,0,0,1,0,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,110.0,1,37,37,9,9,110.3,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,53,1,9003,1,42,130.0,1,38,38,9,9,130.0,1,0,1,1,1,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,Enrolled +1,1,4,9070,1,1,140.0,1,4,19,2,10,125.0,1,0,0,1,1,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9003,1,39,140.0,1,19,1,5,5,140.0,0,0,0,1,0,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,Enrolled +1,1,4,9070,1,1,136.0,1,37,37,9,8,136.7,1,0,0,1,0,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,1,5,9773,1,1,125.0,1,37,3,5,2,126.1,1,0,0,1,1,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,8014,0,1,126.0,1,37,38,9,10,119.4,0,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,123.0,1,1,3,2,2,118.8,0,0,0,1,1,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9500,1,1,144.0,1,1,37,9,9,127.5,1,0,0,1,0,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,125.0,1,38,37,8,7,131.7,1,0,0,1,1,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,144.0,1,37,37,8,8,138.4,0,0,0,1,0,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,160.0,1,37,37,3,4,97.0,0,0,0,1,0,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,37,38,9,9,125.0,1,0,0,1,0,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,117.0,1,37,37,9,9,109.3,0,0,0,0,0,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,3,130.0,1,37,37,9,9,146.2,0,0,0,1,0,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,150.0,1,37,37,9,9,130.3,0,0,0,1,0,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,Graduate +2,39,2,8014,0,19,100.0,1,37,37,4,7,100.0,0,0,1,1,0,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,38,133.1,1,38,37,4,8,95.5,0,0,0,1,1,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,120.7,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9119,1,19,120.0,1,37,37,9,4,98.6,0,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9130,1,1,120.0,1,19,37,1,9,116.1,1,0,0,1,1,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9500,1,1,136.0,1,1,1,4,9,128.5,1,0,0,1,0,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,132.0,1,38,37,7,7,131.3,1,0,0,1,0,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,115.0,1,38,38,9,8,108.4,1,0,0,1,0,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,120.0,1,37,37,9,9,98.7,0,0,0,1,1,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,120.0,1,37,37,9,9,155.8,0,0,0,1,1,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,151.0,1,19,1,5,0,144.4,1,0,0,1,0,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,Graduate +1,43,2,9147,1,1,131.0,1,19,37,5,9,123.7,1,0,0,1,0,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,Enrolled +1,17,4,9085,1,1,128.0,1,38,37,4,9,117.9,1,0,0,1,0,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,8014,0,12,133.1,1,37,1,9,10,112.5,0,0,0,1,1,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,19,133.1,1,37,37,4,8,140.0,0,0,0,1,0,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,7,1,9147,1,2,150.0,1,3,37,2,5,150.0,1,0,1,0,0,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,2,9147,1,1,102.0,1,37,38,191,143,101.7,1,0,0,1,0,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,128.0,1,19,1,4,1,118.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,133.1,1,19,1,4,8,144.3,0,0,0,1,1,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,5,9254,1,1,128.0,1,19,1,7,10,116.5,1,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,140.0,1,19,19,7,5,135.1,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,18,2,9500,1,1,129.0,1,38,37,5,5,119.0,1,0,0,1,0,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,3,1,3,3,131.5,1,0,0,1,0,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,143.0,1,3,3,2,5,144.8,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,127.0,1,37,37,9,8,123.2,1,0,0,1,0,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9500,1,1,125.0,1,37,37,9,7,123.6,1,0,0,1,0,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,138.0,1,1,38,3,9,123.0,1,0,0,1,0,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,139.0,1,38,38,9,9,145.0,1,0,0,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,121.0,1,37,19,6,7,116.8,1,0,0,1,0,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,2,9085,1,1,123.0,1,1,19,4,9,113.6,1,0,0,1,0,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,17,6,9773,1,1,126.0,1,1,19,5,5,119.0,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,4,9119,1,1,139.0,1,37,19,9,4,133.1,1,0,0,1,1,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,158.0,1,1,38,3,6,155.2,0,0,0,1,1,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,8014,0,1,133.1,1,19,1,1,1,118.0,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,136.0,1,22,30,0,8,135.7,1,0,0,1,0,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,120.0,1,37,37,9,9,110.0,0,0,0,0,1,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,124.0,1,19,19,7,9,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,Enrolled +5,7,1,9991,0,2,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,4,9238,1,1,123.0,1,38,1,4,10,129.0,1,0,0,1,0,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,4,9119,1,1,135.0,1,38,37,5,7,126.6,1,0,0,1,1,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,129.0,1,5,3,5,7,124.8,1,0,0,1,0,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,Graduate +1,17,5,9147,1,1,127.0,1,1,38,4,5,124.6,1,0,0,1,0,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,135.0,1,1,1,4,4,118.5,0,0,0,1,0,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,171,1,1,142.0,1,3,1,2,6,139.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9147,1,1,133.1,1,19,19,9,9,119.8,0,0,0,1,1,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,123.0,1,1,37,9,9,132.1,0,0,0,1,0,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9853,1,1,115.0,1,3,37,2,5,108.7,1,0,0,1,0,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,12,133.1,1,37,34,90,90,110.7,1,0,0,1,0,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,155.0,1,4,3,1,1,144.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9254,1,1,105.0,1,1,19,9,6,106.1,1,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,150.0,1,19,19,3,4,135.0,0,0,0,1,0,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,152.0,1,37,37,5,7,136.3,0,0,0,1,0,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,34,34,0,0,120.5,1,0,0,1,1,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,140.0,1,1,37,4,5,123.6,1,0,0,1,0,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,120.0,1,37,37,9,9,150.1,1,0,0,1,1,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,144.0,1,37,38,9,9,126.9,0,0,0,1,0,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,120.0,1,37,37,9,9,128.2,0,0,0,0,1,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,Dropout +1,18,2,9147,1,1,115.0,1,1,37,5,5,108.7,1,0,0,1,0,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,140.0,1,19,19,4,4,140.0,1,0,0,0,1,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,1,1,3,7,140.0,1,0,0,1,0,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9500,1,1,129.0,1,19,19,5,5,119.6,1,0,0,1,0,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,Graduate +1,17,6,9773,1,1,141.0,1,37,37,5,5,127.7,1,0,0,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,137.0,1,19,37,4,7,126.3,1,0,0,1,0,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,1,168.0,1,1,41,9,3,153.9,0,0,1,0,1,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,133.0,1,37,37,9,9,121.8,1,0,0,1,0,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,119.0,1,2,1,4,3,113.1,1,0,0,1,0,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,142.0,1,38,19,141,171,115.0,0,0,0,1,0,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,4,9773,1,1,138.0,1,37,19,5,7,133.5,1,0,0,0,0,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +2,7,1,8014,0,3,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,133.0,1,3,19,2,5,130.8,1,0,0,1,0,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,137.0,1,38,19,152,171,131.1,1,0,0,1,0,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9119,1,1,130.0,1,1,38,3,3,129.3,0,0,0,1,1,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Graduate +1,43,1,9773,1,1,126.0,1,1,37,3,0,110.0,0,0,1,1,0,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,116.0,1,1,12,5,8,110.4,1,0,0,1,1,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,1,1,4,10,110.0,0,0,1,1,0,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,5,9238,1,1,134.0,1,38,37,9,9,126.0,0,0,1,0,0,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,Dropout +2,39,1,9147,1,1,130.0,1,1,19,9,9,109.9,0,0,0,0,0,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9085,1,1,133.1,41,37,37,9,9,109.6,0,0,0,1,0,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,1,140.0,0,0,0,1,1,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,Enrolled +2,39,1,9991,0,19,133.1,1,38,38,90,90,121.7,1,0,0,1,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,143.0,1,1,3,4,7,129.7,1,0,0,1,0,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,133.0,1,1,19,9,6,121.5,1,0,0,1,0,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,133.0,1,38,37,9,9,125.3,1,0,0,1,0,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,Graduate +1,42,1,9991,0,1,160.0,1,1,2,4,3,120.0,0,0,0,1,0,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,Graduate +2,39,2,9556,1,1,133.1,105,1,3,9,2,152.8,1,0,0,1,0,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,123.0,1,1,1,4,6,118.8,1,0,0,1,0,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,122.0,1,3,19,2,3,112.9,0,0,0,1,0,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,Graduate +1,1,5,9853,1,1,123.0,1,1,12,4,9,113.2,1,0,0,1,0,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,140.0,1,37,37,9,9,141.5,1,0,1,0,0,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,129.0,1,19,19,4,8,127.3,1,0,0,1,0,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,1,130.0,1,37,37,6,6,110.0,0,0,0,1,0,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,Enrolled +4,39,1,8014,0,19,133.1,1,37,37,9,9,95.0,0,0,1,0,0,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9853,1,1,127.0,1,37,19,9,8,137.5,1,0,0,1,0,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,142.0,1,38,37,5,7,128.8,1,0,0,1,0,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,Graduate +1,17,2,9147,1,1,142.0,1,19,19,4,8,127.3,0,0,0,1,0,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +3,39,1,9991,0,1,120.0,1,37,1,9,2,170.0,0,0,0,1,1,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,138.0,1,19,37,4,9,141.0,0,0,0,1,1,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,132.0,1,1,38,9,9,120.1,1,0,0,1,1,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,140.0,1,1,1,2,7,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,121.0,1,37,19,9,10,113.7,0,0,0,1,0,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,Enrolled +1,39,1,8014,0,38,133.1,1,1,1,4,4,107.5,0,0,1,0,1,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,150.0,1,1,1,5,1,155.6,0,0,0,1,0,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,150.0,1,37,37,9,6,131.1,0,0,0,1,0,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,100.0,1,3,19,1,1,117.9,0,0,0,0,1,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,2,9991,0,1,150.0,1,37,37,9,9,120.0,0,0,0,1,0,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,150.0,1,1,38,4,9,150.0,0,0,0,1,1,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,Enrolled +2,43,1,9130,1,9,133.1,1,34,34,0,0,128.2,0,0,0,1,1,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,141.0,1,1,1,90,3,127.8,0,0,0,1,0,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,116.0,1,3,3,0,1,108.7,1,0,0,1,1,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,Dropout +2,39,1,9500,1,1,140.0,1,19,19,9,7,110.5,0,0,0,1,0,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9254,1,19,133.1,1,34,34,0,0,120.0,0,0,1,0,1,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,133.1,1,37,37,191,172,115.2,0,0,0,1,0,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,6,160.0,0,0,0,1,0,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,133.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9556,1,1,131.0,1,19,38,9,7,128.5,0,0,0,1,0,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,160.0,1,37,38,9,7,161.0,1,0,0,1,0,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,136.0,1,3,3,1,2,152.5,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9853,1,1,114.0,1,19,37,5,5,109.5,1,0,0,1,0,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,150.0,1,37,37,9,7,122.5,0,0,0,1,1,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,Dropout +1,44,1,9991,0,39,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,8014,0,42,140.0,1,19,37,134,193,138.0,1,0,1,1,0,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,127.0,1,2,19,3,9,121.5,0,0,0,1,1,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,133.1,1,19,19,3,3,125.3,0,1,0,1,1,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,4,9670,1,1,125.0,1,4,19,2,5,118.0,1,0,0,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,Graduate +2,42,1,9070,1,1,170.0,1,37,25,0,4,148.5,0,0,0,1,1,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,Dropout +1,17,5,9254,1,1,121.0,1,1,19,4,7,116.5,1,0,0,0,1,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,120.0,1,19,38,5,9,130.2,0,0,0,1,0,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,140.0,1,19,37,9,9,140.7,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,140.0,1,19,19,5,9,131.3,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,42,1,9119,1,1,140.0,1,3,3,3,2,133.6,1,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,8014,0,1,150.0,1,19,2,4,6,148.0,0,0,0,1,0,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,127.0,1,37,2,9,4,123.2,1,0,0,1,0,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,119.0,1,19,37,9,9,119.4,1,0,0,1,0,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,132.0,1,2,1,4,1,127.8,0,0,0,1,1,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,Dropout +1,42,1,9119,1,1,136.0,1,1,37,5,5,117.5,0,0,0,1,1,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9991,0,1,122.0,1,37,37,9,3,113.6,0,0,0,1,1,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,5,6,137.4,0,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,128.0,1,19,19,5,4,116.5,0,0,0,1,0,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,139.0,1,1,38,6,6,143.6,1,0,1,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9130,1,1,154.0,1,3,3,2,2,137.2,1,0,1,1,1,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,6,9500,1,1,142.0,1,19,37,4,9,131.9,1,0,0,1,0,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Dropout +1,1,2,9773,1,1,131.0,1,19,37,9,10,121.9,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +2,7,1,9130,1,3,120.0,1,3,3,1,1,128.2,0,0,0,1,0,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,19,133.1,1,37,37,9,9,150.3,0,0,0,1,0,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,125.0,1,37,37,5,5,124.0,0,0,0,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,135.0,1,37,19,9,9,125.2,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,9,124.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,175.0,1,3,38,2,10,157.5,1,0,0,1,0,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,139.0,1,1,1,4,10,140.7,0,0,0,1,1,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,Dropout +1,1,4,9500,1,1,128.0,1,1,1,4,10,125.2,1,0,0,1,1,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,150.0,1,1,37,1,1,131.5,1,0,0,1,0,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,168.0,1,38,1,9,10,166.0,1,0,0,1,0,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,Graduate +1,51,1,9070,1,1,125.0,1,42,3,125,124,130.0,1,0,0,1,1,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,135.0,1,1,38,4,5,127.5,1,0,0,1,0,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,Graduate +1,18,1,9119,1,1,148.0,1,3,19,3,5,147.7,0,0,0,1,1,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9773,1,1,130.0,109,19,1,9,9,126.9,1,0,0,1,0,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,125.0,1,19,38,3,7,114.9,0,0,0,1,0,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,Graduate +1,7,1,9119,1,3,130.0,1,37,37,9,9,130.0,0,0,0,0,1,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9853,1,1,130.0,1,37,19,7,3,140.0,0,0,1,1,0,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,112.0,1,3,1,3,5,111.0,0,0,0,1,0,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,37,38,193,181,125.9,0,0,0,1,0,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,Graduate +1,42,1,9119,1,1,120.0,1,34,34,0,0,128.2,1,0,0,1,1,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,19,133.1,1,37,37,9,9,117.2,0,0,0,1,0,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9147,1,1,131.0,1,19,38,9,7,132.4,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9003,1,1,180.0,1,1,1,4,8,179.6,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,5,9119,1,1,135.0,1,37,37,90,90,122.1,1,0,0,1,1,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.0,1,1,38,5,10,131.3,1,0,0,1,0,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,126.0,1,37,19,5,5,119.3,0,0,0,1,0,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,110.0,1,19,37,9,6,120.0,0,0,1,0,1,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9556,1,1,130.0,1,37,37,9,9,159.0,1,0,0,1,0,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,141.0,1,19,38,4,5,133.7,1,0,0,1,1,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,1,37,4,6,120.0,0,0,0,1,1,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9085,1,1,123.0,1,3,19,2,9,118.9,0,0,0,1,1,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,17,1,9991,0,1,140.0,1,38,37,6,7,127.3,0,0,0,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,151.0,1,3,1,2,1,129.8,1,0,0,1,1,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,113.0,1,37,37,0,6,128.2,0,0,0,0,0,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9070,1,1,117.0,1,1,37,4,7,127.9,1,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,145.0,1,19,19,9,7,136.6,0,0,0,1,0,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.0,1,34,37,4,9,134.4,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,9238,1,39,130.0,1,38,38,5,10,126.7,0,0,1,1,0,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9773,1,1,122.0,1,1,1,4,7,116.8,1,0,1,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,3,9147,1,1,124.0,1,1,1,5,3,116.7,1,0,0,1,1,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,38,1,9,4,123.2,0,0,0,1,0,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,Enrolled +1,39,1,9556,1,40,130.0,1,1,1,4,5,145.0,0,0,0,1,0,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,Enrolled +1,43,1,9147,1,1,127.0,25,1,5,9,10,124.2,1,0,0,1,1,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,43,1,9670,1,1,120.0,1,34,34,0,0,128.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9238,1,1,122.0,1,1,3,9,2,112.6,1,0,0,1,1,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,122.0,1,1,1,4,4,119.6,1,0,0,1,0,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,Enrolled +1,17,5,9670,1,1,125.0,1,1,19,9,7,119.4,1,0,0,1,0,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,146.0,1,19,37,9,7,153.0,1,0,0,1,0,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,108.0,1,38,38,7,7,115.0,1,0,1,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,133.1,1,1,1,3,9,138.0,1,0,0,1,0,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,140.0,1,37,37,9,5,140.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,19,133.1,1,2,1,2,4,100.0,0,0,0,1,1,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9147,1,1,129.0,1,38,37,3,5,132.9,1,0,0,1,0,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,149.0,1,3,2,2,5,151.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,135.0,1,19,4,9,2,143.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9147,1,1,158.0,1,19,37,9,7,130.0,1,0,0,1,0,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,Graduate +1,17,6,9556,1,1,122.0,1,1,1,4,5,117.1,1,0,0,1,0,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9556,1,12,133.1,1,34,34,99,99,100.5,0,0,0,1,0,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9003,1,1,123.0,1,37,37,9,9,110.0,0,0,1,0,0,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,138.0,1,3,3,2,2,127.5,1,0,0,1,0,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,Graduate +1,43,1,9500,1,1,121.0,1,38,19,5,5,115.4,1,0,0,1,0,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,Enrolled +1,17,4,9147,1,1,114.0,1,19,19,4,4,109.5,1,0,0,1,1,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,148.0,1,1,1,4,8,145.2,0,0,0,1,1,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,121.0,1,1,1,4,4,123.1,1,0,0,1,1,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,150.0,1,3,3,2,5,154.6,1,0,0,1,0,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,151.0,1,19,38,9,9,157.0,1,0,1,1,0,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,101.0,0,0,0,1,0,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,2,9254,1,1,127.0,1,3,19,3,10,130.9,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,146.0,1,1,1,9,8,149.5,1,0,0,1,1,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9130,1,6,133.1,1,1,29,4,90,123.3,1,0,0,1,0,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,3,3,7,146.5,1,0,1,1,1,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,Enrolled +1,7,1,8014,0,40,120.0,1,37,19,9,3,120.0,0,0,0,1,0,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9853,1,1,125.0,1,37,37,9,9,114.9,1,0,1,0,0,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,2,9773,1,1,140.0,1,1,1,4,3,131.6,0,0,0,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,142.0,1,1,19,9,9,136.1,0,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,113.0,1,1,1,4,4,106.7,1,0,0,1,0,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,130.0,1,1,2,4,2,130.0,0,0,0,1,1,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,39,1,9119,1,1,130.0,1,19,37,9,9,134.0,0,0,0,1,1,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,Enrolled +1,18,1,9500,1,1,123.0,1,37,37,3,3,118.0,1,0,0,1,0,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,Graduate +1,10,2,9085,1,1,163.3,22,19,1,4,9,163.3,0,0,0,1,0,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,5,135.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,136.0,1,4,5,2,2,126.2,0,0,0,1,1,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,150.0,1,1,37,4,8,150.0,1,0,0,0,0,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9085,1,3,140.0,1,19,20,4,90,140.0,1,0,0,1,0,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,43,1,9070,1,1,135.0,1,1,38,3,9,126.4,1,0,0,1,0,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,140.0,1,19,38,7,8,129.9,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,133.1,1,1,1,9,9,155.0,0,0,0,1,0,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,5,9773,1,1,122.0,1,38,38,7,7,123.1,1,0,0,0,0,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,117.0,1,1,1,9,9,109.3,1,0,0,1,0,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9500,1,1,130.0,1,1,38,9,9,125.1,1,0,0,1,0,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,Enrolled +1,1,2,9773,1,1,144.0,1,3,3,3,2,140.2,1,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,145.0,1,1,1,4,10,145.0,0,0,0,1,0,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,Dropout +1,51,1,9070,1,1,143.0,1,1,1,4,4,120.0,1,0,0,1,0,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,145.0,1,1,38,90,8,132.8,1,0,0,0,1,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9556,1,1,120.0,1,38,38,191,193,120.0,0,0,1,1,0,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,148.0,1,19,1,7,5,138.3,1,0,0,1,1,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,146.0,1,3,3,3,6,133.4,1,0,0,1,0,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,Graduate +1,17,1,9130,1,1,131.0,1,12,12,2,8,128.2,1,0,0,1,1,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,6,9556,1,1,115.0,1,19,2,5,3,112.2,1,0,0,1,0,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,Graduate +1,43,1,9556,1,1,126.0,1,2,3,3,2,100.0,0,0,0,1,0,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,Enrolled +1,17,1,9238,1,1,120.0,1,19,37,9,9,113.0,1,0,0,1,0,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,132.0,1,19,38,5,5,118.0,1,0,0,1,0,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,Graduate +2,1,1,9238,1,1,145.0,1,37,34,9,7,139.4,0,0,0,0,0,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,131.0,1,38,38,191,174,125.4,1,0,0,1,0,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,39,1,9119,1,1,120.0,1,37,38,9,10,145.4,0,0,1,1,1,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,Dropout +1,1,1,9130,1,1,138.0,1,4,5,2,2,123.0,1,0,0,1,0,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,127.0,1,5,3,4,4,122.8,1,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,136.0,1,1,1,4,4,127.0,1,0,0,1,0,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,Enrolled +1,17,3,9119,1,1,115.0,1,3,1,3,3,116.1,1,0,0,0,1,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,143.0,1,38,37,4,9,116.5,1,0,0,1,0,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,3,19,3,8,134.9,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,Graduate +1,44,1,9119,1,39,140.0,1,5,41,3,2,140.0,0,0,0,1,1,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,124.0,1,19,19,9,3,115.6,1,0,0,0,1,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9500,1,3,130.0,1,19,38,5,3,130.0,0,0,0,1,0,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,137.0,1,1,1,4,10,124.8,1,0,0,1,1,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,138.0,1,1,3,1,4,127.5,1,0,0,1,1,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,112.0,1,1,1,5,1,111.7,0,0,1,0,1,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,Dropout +1,1,4,9500,1,1,147.0,1,1,1,4,9,124.5,1,0,0,1,0,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,Graduate +1,7,1,9500,1,3,140.0,1,3,19,2,6,140.0,0,0,0,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,121.0,1,19,19,7,7,113.0,1,0,0,1,0,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,8014,0,1,96.0,1,3,1,3,9,100.0,0,0,0,1,0,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,152.0,1,1,38,4,5,144.7,0,0,0,1,0,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,Graduate +2,1,1,9070,1,1,127.0,1,12,19,9,9,123.2,0,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,Graduate +1,1,3,9070,1,1,147.0,1,34,37,5,7,135.8,1,0,0,1,0,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,7,1,9119,1,4,180.0,1,4,3,2,7,180.0,0,0,1,1,1,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,Enrolled +1,1,6,9500,1,1,129.0,1,37,19,9,7,127.8,1,0,0,1,0,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,100.0,1,37,37,7,7,160.0,1,0,0,1,0,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,127.0,1,19,1,5,5,117.6,1,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9003,1,1,110.0,1,1,1,9,4,120.0,0,0,1,0,1,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9773,1,1,143.0,11,19,19,4,9,133.9,1,0,0,1,1,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,160.0,1,37,37,7,7,156.1,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,43,2,9670,1,1,135.0,1,3,19,1,7,123.5,1,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,1,130.0,1,38,3,132,122,100.0,0,0,0,1,1,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,Enrolled +1,15,1,9238,1,1,150.0,26,19,1,9,9,146.5,1,0,1,0,1,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,Graduate +1,17,6,9119,1,1,129.0,1,37,13,4,90,117.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,3,130.0,1,3,3,3,10,147.6,0,0,0,1,1,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,171,1,1,145.0,1,1,1,3,3,140.1,1,0,0,1,0,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,43,3,9254,1,1,135.0,1,3,3,2,2,122.1,0,0,0,1,1,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,171,1,1,140.0,41,1,1,5,7,146.3,1,0,0,1,0,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9070,1,1,126.0,1,38,38,9,8,129.9,1,0,0,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Graduate +1,7,1,9070,1,3,120.0,1,4,4,2,2,120.0,0,0,0,1,1,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,Dropout +1,17,4,9070,1,1,144.0,1,38,1,9,9,137.4,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,125.0,1,3,3,2,3,118.0,1,0,0,1,1,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,Dropout +5,39,1,9238,1,1,130.0,1,19,38,9,10,146.0,0,0,0,1,1,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,5,107.5,0,0,0,1,0,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9773,1,1,130.0,1,1,19,1,3,161.5,0,0,0,1,1,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,140.0,1,19,19,9,4,127.8,1,0,0,1,1,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,113.0,1,1,37,1,10,116.5,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,Graduate +1,1,2,9238,1,1,145.0,1,1,19,4,8,121.4,0,0,0,1,0,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9003,1,19,133.1,1,19,37,9,10,120.0,0,0,1,1,0,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,Enrolled +1,1,1,9085,1,1,150.0,1,12,2,4,2,144.6,0,0,1,0,0,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,40,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,Dropout +1,17,5,9500,1,1,137.0,1,1,1,5,5,132.6,1,0,0,1,0,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,3,19,4,7,119.0,0,0,0,1,1,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,128.0,1,1,1,4,5,124.7,0,0,0,1,1,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,Enrolled +1,39,2,9670,1,19,133.1,1,34,34,0,0,100.0,1,0,0,0,1,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,Dropout +1,39,1,9556,1,1,120.0,1,19,19,4,5,122.8,0,0,0,1,0,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,Dropout +1,1,2,171,1,1,165.0,1,3,3,2,2,163.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,133.8,1,3,37,2,10,184.0,0,0,0,1,0,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,120.0,1,37,19,9,4,148.8,0,0,0,1,0,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,5,9500,1,1,151.0,1,1,1,9,9,127.8,0,0,0,1,0,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,131.0,1,38,19,7,7,125.3,1,0,0,1,0,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,128.0,1,1,1,9,6,120.3,0,0,0,1,1,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,118.0,1,3,1,5,10,113.5,1,0,0,1,0,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,140.0,1,37,37,7,9,126.8,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,117.0,1,38,37,9,9,113.5,1,0,0,1,0,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,135.0,1,19,19,9,9,122.8,1,0,0,1,1,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,151.0,1,37,37,9,7,147.5,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,1,3,4,4,147.5,1,0,0,1,0,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,128.0,1,38,37,9,9,124.9,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9085,1,1,124.0,1,3,19,2,3,113.9,1,0,0,1,0,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,120.0,1,3,19,4,7,119.7,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,171,1,1,147.0,1,1,12,4,4,148.4,1,0,0,1,1,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,136.0,1,19,1,9,8,123.4,1,0,0,1,0,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,123.0,1,3,1,2,5,112.9,0,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,2,9556,1,1,133.1,1,3,1,2,4,136.1,0,0,0,1,1,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,141.0,1,3,1,4,4,142.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9003,1,1,120.0,1,37,37,9,9,120.5,1,0,1,1,1,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,6,140.0,1,0,0,1,1,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,147.0,1,19,1,4,3,138.5,1,0,0,1,0,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,123.0,1,34,34,90,90,113.3,1,0,0,1,0,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,38,4,5,130.4,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,7,7,134.0,0,0,0,1,1,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,38,38,4,7,111.6,1,0,0,1,0,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9119,1,1,148.0,1,19,38,9,7,133.0,0,0,0,1,1,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,128.0,1,3,1,2,1,127.8,0,0,0,1,0,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,172.0,1,38,37,9,9,149.3,0,0,0,1,1,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,138.0,1,37,37,9,8,127.2,1,0,0,1,0,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,140.0,1,3,1,2,6,137.6,1,0,0,1,1,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,110.0,1,37,19,9,3,100.0,0,0,0,1,0,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,2,1,2,4,140.7,1,0,0,1,1,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,137.0,1,3,38,3,5,129.3,1,0,0,1,0,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,136.0,1,38,38,0,7,133.2,1,0,0,1,0,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,145.0,6,34,34,0,0,134.5,1,0,0,1,1,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,147.0,1,19,19,3,10,151.9,1,0,0,1,0,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,118.0,1,37,37,9,9,112.1,1,0,0,1,0,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,Dropout +1,43,1,9773,1,1,122.0,1,1,1,4,5,126.9,0,0,0,1,0,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,126.0,1,12,38,9,5,122.2,0,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,143.0,1,3,3,2,2,129.0,0,0,0,1,1,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,Graduate +1,39,1,9556,1,1,130.0,1,19,38,9,8,113.3,0,0,0,1,0,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,101.0,1,1,37,4,9,98.9,1,0,0,1,0,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,133.1,1,34,34,90,90,116.0,0,0,0,0,0,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,Dropout +2,39,1,9991,0,1,170.0,1,37,19,9,3,151.1,0,0,0,1,1,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,Graduate +2,17,5,9119,1,1,126.0,1,37,38,4,4,122.9,1,0,0,1,1,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,125.0,1,19,19,9,9,114.9,0,0,0,1,0,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,Graduate +1,18,3,9773,1,1,128.0,1,19,1,9,9,122.1,1,0,0,1,1,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,149.0,1,38,37,9,9,139.5,0,0,0,1,1,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,1,3,9,5,137.1,0,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,126.0,1,38,37,5,5,114.8,1,0,0,1,0,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9085,1,1,120.0,1,37,37,6,6,150.0,0,0,0,1,1,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,137.0,1,38,19,0,90,122.3,0,0,0,1,0,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9853,1,19,133.1,1,37,19,3,7,100.0,0,0,0,1,0,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,145.0,1,4,2,2,3,127.3,1,0,0,1,1,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,129.0,1,1,1,4,8,129.0,0,0,0,0,0,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,143.0,1,1,1,4,4,129.0,1,0,0,1,1,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,136.0,1,19,38,9,9,119.3,1,0,0,1,0,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,151.6,0,0,0,1,0,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,Enrolled +1,1,1,9238,1,1,108.0,1,19,38,9,9,107.3,0,1,0,1,0,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,134.0,1,1,1,2,7,128.4,1,0,0,1,0,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,Graduate +1,42,1,9119,1,1,120.0,1,3,1,2,9,108.2,1,0,0,1,1,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,Dropout +1,16,2,9500,1,1,127.0,1,2,38,4,9,119.0,1,0,0,1,0,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,131.0,1,1,1,9,9,122.0,0,0,0,1,0,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9070,1,3,133.1,1,3,5,2,2,120.0,1,0,0,1,0,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,150.0,1,19,19,5,5,132.8,1,0,0,1,0,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,Graduate +1,18,2,9670,1,1,121.0,1,37,38,4,1,111.9,1,0,0,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,108.0,41,3,3,9,9,107.0,0,0,1,0,0,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,150.0,1,34,19,0,4,152.8,1,0,0,1,1,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,18,2,9238,1,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,130.0,6,19,1,6,4,130.0,1,0,0,1,0,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,Enrolled +1,51,1,9119,1,1,136.0,1,1,19,3,5,133.6,1,0,0,1,1,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,Dropout +1,1,4,9773,1,1,155.0,1,3,19,1,4,149.8,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9070,1,1,124.0,1,19,38,4,0,117.6,1,0,0,1,1,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,9,100.0,0,0,0,1,1,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,Enrolled +1,44,1,9238,1,1,140.0,1,1,1,5,5,143.4,0,0,0,1,0,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,120.0,1,1,19,7,7,111.3,0,0,0,1,1,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,Enrolled +2,1,1,9556,1,1,144.0,1,19,19,193,144,139.8,0,0,1,1,1,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,110.0,1,1,1,5,5,160.0,1,0,1,1,0,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,Dropout +2,39,1,9853,1,19,133.1,1,37,37,9,9,131.0,0,0,0,1,0,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,139.0,1,4,1,2,10,136.4,1,0,0,1,0,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,Graduate +1,17,3,9085,1,1,134.0,1,37,38,9,9,120.4,1,0,0,1,0,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,148.0,1,3,2,4,2,131.6,1,0,0,1,0,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,145.0,1,19,37,7,7,141.5,1,0,0,1,0,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9130,1,19,133.1,1,37,38,9,9,120.0,0,0,0,1,1,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,3,9254,1,1,121.0,1,19,37,4,7,116.8,1,0,0,1,0,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,123.0,1,1,1,4,3,123.4,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,38,38,9,9,133.4,1,0,0,1,1,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,Graduate +1,42,1,9500,1,1,124.0,1,19,19,4,9,124.0,0,0,0,1,0,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,40,130.0,1,37,37,9,7,130.0,0,0,0,1,0,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,140.0,1,3,38,2,9,140.0,1,0,0,1,0,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,158.0,1,38,38,9,7,144.7,1,0,0,1,0,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,18,2,9238,1,1,121.0,1,19,1,4,3,121.4,1,0,0,1,0,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,12,133.1,1,37,19,9,10,120.0,0,0,0,1,1,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,122.0,1,3,1,4,3,114.8,1,0,0,1,0,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,Enrolled +4,43,1,9991,0,1,164.0,1,37,37,6,6,131.8,0,0,0,1,0,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,3,9773,1,1,145.0,1,38,38,9,5,133.1,0,0,0,1,0,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9853,1,19,133.1,1,38,19,9,9,108.0,0,0,1,0,0,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,3,9070,1,1,131.0,1,38,37,5,5,120.2,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,Enrolled +1,43,1,9238,1,1,130.0,1,38,37,9,7,133.2,0,0,0,1,0,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,112.0,1,1,1,3,3,106.4,1,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,125.0,1,1,38,144,181,123.3,0,0,0,1,0,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,125.0,1,3,2,2,1,119.1,1,0,0,1,0,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9853,1,3,140.0,1,34,34,0,0,140.0,1,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,135.0,1,1,19,3,9,137.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9991,0,3,120.0,1,37,37,6,7,120.0,0,0,1,0,1,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,130.0,1,1,1,4,3,125.1,1,0,0,1,0,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,Graduate +2,39,1,33,1,1,120.0,1,38,1,9,5,153.8,0,0,1,1,1,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,37,37,9,9,140.0,0,0,0,0,1,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,127.0,1,1,38,9,7,120.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,43,180.0,1,19,19,9,4,180.0,0,0,0,1,0,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,Graduate +1,1,3,9147,1,1,143.0,1,1,1,5,7,133.2,1,0,0,1,0,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,Graduate +1,15,1,9853,1,1,133.1,41,43,1,153,135,128.2,0,0,0,1,0,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,12,133.1,1,1,1,9,4,140.0,1,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,151.0,1,1,38,4,7,137.0,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,Graduate +1,17,4,171,1,1,172.0,1,3,1,2,10,155.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,129.0,1,19,1,9,5,112.0,0,0,0,1,1,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,150.0,1,38,3,9,1,140.0,0,0,0,1,1,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,Graduate +1,1,1,9773,1,1,124.0,17,1,1,3,5,118.1,1,0,1,0,0,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9670,1,1,124.0,1,37,19,5,8,114.2,1,0,1,1,0,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,122.0,1,1,19,3,5,116.8,1,0,0,1,0,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,144.0,1,38,1,9,10,137.4,0,0,0,1,0,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,19,19,9,9,120.0,0,0,0,1,0,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,138.0,1,38,38,7,6,124.7,1,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,18,2,9147,1,1,132.0,1,3,3,5,7,119.1,1,0,1,0,0,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,17,6,9119,1,1,111.0,1,19,3,5,10,106.5,1,0,0,1,1,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,Dropout +1,7,1,9500,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,1,140.0,1,37,37,9,9,130.0,1,0,0,1,1,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,125.0,1,37,37,3,3,124.0,0,0,0,1,1,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,128.0,1,19,2,7,3,126.3,1,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +2,39,1,9500,1,1,110.0,1,37,37,9,6,114.3,0,0,0,1,0,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,9085,1,1,133.1,1,1,9,4,4,128.2,0,0,0,1,0,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,Graduate +1,1,3,9238,1,1,126.0,1,38,19,5,8,120.8,1,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,121.0,1,1,1,9,8,118.9,1,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,109.0,1,19,37,5,5,108.3,0,0,0,1,0,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,Enrolled +1,1,4,9670,1,1,127.0,1,1,1,7,7,116.5,1,0,0,1,0,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,171,1,19,133.1,101,1,19,2,7,110.0,0,0,0,1,1,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,133.0,1,37,37,9,7,124.6,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,39,137.0,1,1,1,5,10,124.5,0,0,0,0,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,130.0,1,19,19,7,7,121.6,0,0,0,1,0,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,130.0,1,37,37,6,5,113.5,1,0,0,1,0,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9670,1,1,120.0,1,38,38,5,7,115.1,1,0,0,1,0,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,115.0,1,38,1,9,4,116.1,1,0,0,1,1,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,130.1,0,0,0,1,0,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,Enrolled +1,1,3,9238,1,1,133.1,1,1,1,9,9,100.0,1,0,0,1,1,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,168.0,0,0,0,1,1,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,148.0,1,1,1,9,9,141.7,0,0,0,0,1,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,Dropout +1,15,1,33,1,1,133.1,41,2,3,2,4,100.0,0,0,0,1,1,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,135.0,1,37,37,6,5,121.0,1,0,0,1,1,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,151.0,1,3,3,1,90,161.9,0,0,0,1,0,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,8,108.5,0,0,0,1,1,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9670,1,1,130.0,1,26,30,0,5,128.6,1,0,1,1,0,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,Graduate +1,43,1,9500,1,1,140.0,100,1,1,6,6,128.2,0,0,0,1,0,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,140.0,1,19,37,5,7,140.0,1,0,0,1,1,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,Dropout +1,39,1,33,1,1,140.0,1,3,1,2,4,152.8,0,0,0,1,0,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,Enrolled +1,43,1,9070,1,1,117.0,1,1,1,4,7,112.5,1,0,0,1,1,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,126.0,1,37,19,7,7,125.7,0,0,0,1,0,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,Enrolled +1,1,2,9773,1,1,140.0,1,38,38,5,7,126.4,1,0,0,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,121.0,1,37,38,6,9,121.0,0,0,0,1,0,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,136.0,1,12,1,4,4,122.0,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,117.0,1,37,37,9,9,120.2,1,0,0,1,0,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,133.1,1,38,1,9,9,121.0,0,0,1,0,1,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,Dropout +1,44,1,9991,0,39,130.0,1,37,37,5,5,130.0,1,0,0,1,1,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,138.0,1,1,19,4,9,142.2,1,0,0,1,0,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,148.0,1,3,1,2,10,148.0,1,0,0,1,0,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,Graduate +1,17,6,9556,1,1,134.0,1,19,38,7,7,128.5,1,0,0,1,0,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,141.0,1,1,19,5,8,141.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,149.0,1,3,1,9,9,137.5,0,0,0,1,1,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,Graduate +1,1,3,9085,1,1,142.0,1,11,11,90,90,155.3,0,0,0,1,0,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,135.0,1,19,37,9,9,134.0,1,0,0,1,0,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,132.0,1,19,38,9,7,120.1,0,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9147,1,1,133.0,1,37,37,9,5,119.7,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,139.0,1,3,4,2,2,130.6,0,0,0,1,0,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,2,130.0,1,0,1,0,1,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,Dropout +1,17,3,9500,1,1,138.0,1,3,3,4,5,130.0,1,0,0,1,0,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,121.0,1,19,19,3,3,116.1,1,0,0,1,0,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,160.0,1,3,38,1,9,152.0,1,0,0,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,130.0,41,37,19,9,8,125.5,1,0,0,1,0,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,133.1,1,38,38,191,193,146.0,0,0,1,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,Graduate +4,39,1,9003,1,1,140.0,1,37,37,9,8,150.0,0,0,0,1,1,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,Enrolled +1,17,2,9670,1,1,132.0,1,1,19,5,3,124.0,1,0,0,1,1,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,117.0,1,19,19,5,7,118.4,0,0,0,1,1,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,140.0,6,1,19,4,7,131.6,1,0,0,1,0,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,142.0,1,38,1,8,10,138.5,1,0,0,1,1,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9130,1,1,132.0,1,3,1,4,9,121.9,1,0,0,1,0,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,122.0,1,1,1,9,9,116.1,1,0,0,1,1,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,Dropout +1,7,1,8014,0,3,130.0,1,37,38,0,5,130.0,0,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,138.0,1,19,19,9,5,124.8,1,0,0,1,0,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,140.0,1,19,38,3,9,140.0,1,0,0,1,1,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +4,39,1,8014,0,1,138.0,1,19,19,90,90,127.0,0,0,0,0,0,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9500,1,19,133.1,1,1,3,2,2,100.0,0,0,1,1,1,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,117.0,1,3,1,3,5,110.7,1,0,0,1,1,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,120.0,1,19,19,5,5,113.0,1,0,0,1,0,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,160.0,1,37,37,7,7,133.0,1,0,0,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,137.0,1,1,1,4,5,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,19,37,9,7,123.9,1,0,0,1,0,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,38,38,9,5,130.0,0,0,1,0,1,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,137.0,1,19,37,9,7,130.8,0,0,1,1,0,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,38,37,4,6,150.0,1,0,0,1,0,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,115.0,1,34,38,0,5,108.4,1,0,0,1,0,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,140.0,1,3,38,141,151,135.3,0,0,0,1,1,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,148.0,1,19,19,7,7,130.9,0,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,127.0,1,1,1,4,3,126.3,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,2,9670,1,1,100.0,1,37,37,9,9,100.0,0,0,0,1,0,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,2,171,1,1,141.0,1,19,37,9,9,136.1,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,123.0,1,30,19,4,90,122.3,0,0,0,1,0,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,145.0,1,1,38,5,7,127.5,1,0,0,1,1,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,1,150.0,1,37,37,90,10,112.0,0,0,0,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,128.0,1,37,1,9,7,124.2,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,Dropout +1,43,1,9070,1,39,130.0,1,19,37,5,9,124.0,1,0,0,1,0,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,Graduate +1,17,1,9003,1,1,170.0,1,1,4,9,5,144.1,1,0,1,0,1,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9670,1,1,110.0,1,19,19,90,99,107.2,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9238,1,19,133.1,1,37,37,9,9,130.0,1,0,0,1,0,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9119,1,1,144.0,1,34,34,0,0,119.5,0,0,0,1,1,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,19,133.1,1,37,37,6,6,162.0,0,0,1,1,1,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,16,1,9085,1,1,138.0,1,37,37,9,9,123.0,1,0,0,1,0,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9500,1,1,133.1,1,19,19,5,6,121.4,0,0,1,1,0,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,138.0,1,1,1,4,7,132.1,1,0,0,1,0,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,Graduate +1,39,1,9119,1,1,133.1,1,37,37,9,9,101.6,0,0,0,1,1,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9500,1,1,126.0,1,1,19,131,181,120.1,1,0,0,1,0,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,38,9,9,142.0,1,0,0,1,0,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,Graduate +1,18,1,8014,0,1,138.0,1,19,1,9,5,134.5,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,19,9,9,150.0,0,0,0,1,1,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,126.0,1,38,37,9,9,123.6,1,0,0,1,0,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9254,1,19,133.1,1,19,19,3,1,101.5,0,0,1,0,1,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,2,9119,1,1,115.0,1,38,19,9,6,112.2,1,0,1,1,1,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,39,1,9003,1,1,120.0,1,37,37,9,9,125.7,0,0,1,0,0,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,Dropout +1,17,2,9773,1,1,115.0,1,1,1,5,5,119.6,1,0,0,1,0,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,19,9,4,140.0,0,0,0,1,0,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,125.0,1,37,19,90,90,137.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,120.0,1,3,38,3,7,124.2,1,0,0,1,1,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9147,1,1,146.0,1,5,1,1,5,144.6,0,0,0,1,1,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,116.0,1,1,1,3,4,113.6,1,0,0,1,0,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,Graduate +4,42,1,9147,1,1,133.1,1,37,38,7,3,123.0,1,0,0,1,1,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,118.9,1,38,37,5,9,118.9,1,0,0,1,0,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,123.0,1,12,1,9,9,119.2,1,0,0,1,0,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,2,140.0,1,38,37,7,8,140.0,0,0,0,1,0,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,110.0,1,37,37,90,90,108.4,1,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9119,1,1,146.0,1,1,37,7,7,132.4,1,0,0,1,1,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,19,133.1,1,19,3,9,2,140.0,1,0,1,1,1,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,2,9853,1,1,111.0,1,38,38,191,171,105.8,1,0,0,1,0,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,6,130.2,0,0,0,1,0,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,130.0,1,1,3,9,10,118.1,1,0,0,1,1,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,118.0,1,1,19,5,4,118.0,0,0,0,1,0,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,153.0,1,38,38,7,7,159.7,1,0,0,1,0,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,171,1,12,110.0,1,37,37,7,7,106.0,1,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,134.0,1,19,1,9,4,124.9,1,0,0,1,0,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,3,9254,1,1,121.0,1,19,19,9,9,125.9,1,0,0,1,0,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,160.0,1,19,19,4,9,154.4,0,0,0,1,0,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,3,140.0,1,19,19,9,7,152.4,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9130,1,1,130.0,1,19,1,191,144,110.0,0,0,0,1,1,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,142.0,1,38,37,9,5,127.3,1,0,0,1,0,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,37,37,9,9,130.0,0,0,1,1,0,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,124.0,1,37,19,9,4,121.2,0,0,0,1,1,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,120.0,1,19,19,9,3,113.9,1,0,0,1,0,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,114.0,1,19,38,5,3,112.6,1,0,0,1,0,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,Graduate +1,7,1,9991,0,40,120.0,1,1,19,4,9,120.0,0,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,128.0,1,19,38,9,9,118.2,0,0,0,1,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,4,9070,1,1,126.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,130.0,1,1,1,0,0,119.5,0,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,184.4,22,2,19,2,8,184.4,0,0,0,1,0,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,37,9,9,132.8,0,0,1,0,1,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9085,1,1,120.0,1,38,19,90,90,127.0,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,Graduate +1,17,4,9147,1,1,132.0,1,38,19,5,5,120.8,1,0,0,1,1,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,Dropout +1,10,1,9670,1,1,148.9,22,37,37,9,9,148.9,0,0,0,1,0,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,4,150.0,1,1,1,4,6,150.0,0,0,0,1,1,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,150.0,1,19,1,9,3,110.0,1,0,0,1,1,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,Graduate +1,15,1,9670,1,1,130.0,26,42,1,2,7,130.0,0,1,1,1,0,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,Graduate +2,7,1,8014,0,3,120.0,1,38,1,9,9,120.0,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,149.0,1,19,37,9,9,158.1,1,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,4,9147,1,1,124.0,1,37,37,9,9,117.4,0,0,0,1,0,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,142.0,1,34,1,5,10,136.1,1,0,0,0,1,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,1,1,8014,0,1,165.0,1,37,37,0,0,162.9,1,0,0,1,1,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,130.0,1,37,37,5,7,123.4,1,0,0,1,1,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,1,133.1,1,37,37,7,7,143.0,0,0,0,1,1,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,121.0,1,38,37,8,8,115.4,1,0,0,1,0,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9556,1,3,140.0,1,3,3,2,2,140.0,0,0,1,0,1,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,116.0,1,38,19,0,2,116.7,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,132.0,1,38,1,5,5,124.3,0,1,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,133.1,1,38,12,7,0,111.5,0,0,0,0,0,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,Dropout +1,53,1,9147,1,42,140.0,1,1,1,6,6,142.2,0,0,0,1,1,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,Graduate +2,44,1,9991,0,39,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9773,1,1,170.0,1,1,19,9,7,155.0,0,0,0,1,1,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,8014,0,19,133.1,1,37,37,4,8,112.5,0,0,0,1,0,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,120.0,1,1,1,5,8,112.0,1,0,0,1,0,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,123.0,1,1,1,3,3,113.6,1,0,0,1,0,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,Graduate +1,39,1,9085,1,1,133.1,1,1,19,9,9,162.3,1,0,0,1,0,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,116.0,1,37,1,9,8,115.7,1,0,1,0,0,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,160.0,1,9,19,4,3,151.3,0,0,0,1,0,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,19,149.0,1,34,34,0,0,126.3,0,0,0,1,0,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9238,1,39,140.0,41,1,1,4,6,137.5,0,0,1,1,0,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,130.0,1,37,37,9,9,129.0,1,0,0,1,0,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,19,38,7,7,118.7,0,0,0,1,1,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,128.0,0,0,0,1,0,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,Graduate +1,17,1,9070,1,1,135.0,1,19,37,5,9,145.9,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,128.0,1,1,19,9,7,118.2,0,0,0,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,128.0,1,19,38,9,9,127.0,0,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,140.0,1,37,12,9,9,150.0,0,0,1,1,1,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,Dropout +2,43,1,8014,0,1,160.0,1,37,39,9,4,140.9,0,0,0,1,0,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,133.0,1,38,19,8,7,127.3,1,0,0,1,0,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,Graduate +1,15,1,9670,1,1,160.0,1,37,12,9,9,149.5,1,0,0,0,1,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,152.0,101,2,1,9,1,168.5,1,0,0,1,1,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,Graduate +1,1,3,9085,1,1,147.0,1,19,19,9,1,135.6,1,0,0,1,0,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,2,8014,0,1,120.0,1,37,34,0,0,117.6,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,141.0,1,37,37,9,9,130.2,0,0,0,1,1,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,Graduate +1,16,2,9147,1,1,139.0,1,38,37,9,9,123.7,1,0,0,1,0,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,134.0,1,19,38,4,8,129.5,0,0,0,1,0,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,113.0,1,1,37,9,10,117.2,1,0,0,1,0,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,18,2,9556,1,1,126.0,1,3,3,2,2,115.5,0,0,0,1,1,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,1,134.0,1,37,38,4,7,110.0,1,0,0,1,0,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,171,1,1,132.0,1,1,1,1,4,132.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9003,1,1,130.0,1,19,19,9,1,140.0,0,0,0,1,0,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9773,1,1,132.0,1,38,19,9,9,125.0,1,0,0,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,140.0,1,37,37,9,6,132.8,0,0,0,1,1,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,130.0,1,37,19,9,5,140.2,1,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9070,1,1,118.0,1,43,3,123,123,110.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,19,100.0,1,37,37,5,5,111.0,1,0,0,1,0,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,3,9085,1,1,138.0,1,1,3,4,4,126.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,132.0,1,2,19,4,4,125.0,1,0,0,1,0,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,38,100.0,1,37,37,9,7,154.0,1,0,0,1,1,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,138.0,1,1,19,4,4,131.7,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,Graduate +2,39,2,9147,1,1,140.0,1,37,37,9,8,108.0,0,0,0,1,0,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,Enrolled +1,1,5,9147,1,1,134.0,1,3,2,2,2,134.7,0,0,0,1,1,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9130,1,1,120.0,1,2,3,3,2,120.0,1,0,0,0,1,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,Dropout +1,1,3,9085,1,1,140.0,1,10,19,90,90,135.8,1,0,0,1,0,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,142.0,1,37,38,5,1,129.4,0,0,0,1,0,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9670,1,1,120.0,1,1,19,5,5,117.2,1,0,0,1,0,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,136.0,1,1,19,5,7,136.4,0,0,0,1,0,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,120.0,1,37,37,5,5,124.6,0,0,0,1,0,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,Enrolled +1,39,1,9500,1,1,133.1,1,1,37,9,9,100.0,0,0,0,1,1,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,123.0,1,19,1,9,3,117.8,1,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,Graduate +5,39,1,9254,1,1,133.1,1,2,2,2,2,103.0,0,0,0,1,0,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,171,1,1,133.0,1,1,37,4,7,126.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,119.0,1,1,1,4,4,115.0,1,0,0,1,1,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,143.0,1,38,19,151,193,134.3,1,1,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,135.0,1,1,19,4,4,129.1,0,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,43,2,9670,1,1,130.0,1,19,1,4,4,127.6,1,0,0,1,1,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,126.0,1,37,37,5,1,126.0,0,0,0,0,1,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,42,1,9119,1,1,120.0,1,19,37,9,9,113.8,0,0,0,0,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9991,0,1,140.0,1,37,37,9,9,135.8,1,0,0,1,1,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,17,5,9085,1,1,118.0,1,38,38,9,9,112.4,1,0,0,1,0,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,3,9773,1,1,134.0,1,2,1,3,3,129.5,1,0,0,1,1,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,129.0,1,1,38,4,7,123.4,0,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,132.0,1,19,37,4,9,128.0,1,0,0,1,0,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,137.0,1,38,37,7,5,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,Graduate +1,17,5,9119,1,1,138.0,1,19,19,5,5,123.3,1,0,1,1,1,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,138.0,1,1,1,3,4,132.5,1,0,0,1,0,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,Graduate +1,16,2,9070,1,1,133.0,1,1,3,4,2,122.5,1,0,0,1,0,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,Enrolled +1,17,1,9130,1,1,137.0,1,38,19,5,7,130.0,1,0,0,1,0,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,Enrolled +1,17,1,9238,1,1,131.0,1,37,37,9,7,121.9,0,0,0,1,0,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,Graduate +2,1,1,9500,1,1,142.0,1,19,38,4,5,130.3,0,0,0,1,0,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,Graduate +2,39,1,9556,1,1,160.0,1,37,37,9,6,120.0,0,0,0,1,0,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,Dropout +1,51,1,9670,1,1,126.0,1,3,3,1,10,111.0,0,0,1,1,1,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,5,9853,1,1,141.0,1,37,19,9,5,133.0,1,0,0,1,0,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,Dropout +1,1,2,9670,1,1,124.0,1,19,1,9,4,117.7,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,133.0,1,19,19,9,5,120.1,1,0,0,1,0,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,Graduate +1,43,1,9147,1,1,133.1,1,4,19,2,1,128.2,0,0,0,1,0,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,Dropout +4,27,1,9070,1,2,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9003,1,1,150.0,1,2,4,4,1,150.0,0,0,0,1,1,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,19,133.1,1,19,37,7,5,155.5,1,0,1,0,1,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,1,9238,1,1,106.0,1,1,1,3,3,105.0,0,0,0,1,1,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,111.0,1,19,38,3,3,111.4,1,0,0,0,0,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,Dropout +1,43,1,9254,1,1,130.0,1,1,19,5,7,130.0,0,0,0,1,0,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,Dropout +1,17,1,8014,0,1,120.0,1,38,37,6,6,113.0,0,0,0,1,0,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,139.0,1,1,37,4,9,131.3,1,0,0,1,0,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,Graduate +1,43,3,9254,1,1,110.0,1,37,37,9,9,107.2,1,0,0,1,1,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,147.0,1,1,1,4,4,134.3,1,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,130.0,1,37,38,9,6,130.0,1,0,0,1,0,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,139.0,1,37,38,9,9,124.0,1,0,0,1,1,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,122.0,1,37,37,9,9,126.9,1,0,0,1,0,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,11,11,90,4,114.0,1,0,0,1,1,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9147,1,1,132.0,1,39,39,3,3,127.8,1,0,0,0,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,128.0,1,38,37,5,6,122.1,0,0,0,1,0,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9085,1,1,127.0,1,19,38,194,193,117.6,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9500,1,1,145.0,1,3,3,2,3,141.8,0,0,0,1,0,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,Graduate +1,53,1,9556,1,42,140.0,1,1,19,4,5,140.0,0,0,0,1,0,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,Graduate +1,18,1,9147,1,1,160.0,1,19,19,5,8,137.6,1,0,0,1,0,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,19,133.1,1,2,1,3,10,120.0,0,0,1,1,1,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,19,133.1,1,19,39,5,3,121.7,0,0,1,0,0,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,126.0,0,0,0,1,1,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,Graduate +1,1,3,171,1,1,140.0,1,37,37,9,9,124.3,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,136.0,1,38,37,9,9,126.9,1,0,0,1,0,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,136.0,1,19,1,9,9,129.0,1,0,0,1,0,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,144.0,1,38,38,7,7,136.0,1,0,0,1,0,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,154.0,1,38,38,9,9,156.5,1,1,0,1,0,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,131.0,1,19,19,9,9,134.9,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +4,43,1,8014,0,1,140.0,1,38,37,9,9,126.0,0,0,0,1,0,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,7,126.3,1,0,0,1,0,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,Graduate +1,44,1,8014,0,39,150.0,1,1,37,9,7,146.7,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,2,9119,1,1,140.0,1,19,19,9,9,125.7,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,12,100.0,1,1,1,4,4,100.0,0,0,0,1,0,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,Graduate +1,42,1,9500,1,1,111.0,1,1,3,9,10,128.2,1,0,0,1,1,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,Graduate +1,17,2,9773,1,1,132.0,1,19,19,9,6,120.1,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,131.0,1,4,4,2,1,120.5,0,0,0,1,0,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,44,1,9003,1,39,170.0,1,19,19,5,5,170.0,1,0,0,1,1,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,150.0,1,38,38,7,7,137.8,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,10,120.0,0,0,1,0,1,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9670,1,39,110.0,1,37,1,9,4,110.0,0,0,0,1,0,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,130.0,1,5,3,2,2,130.0,0,0,0,1,1,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9670,1,1,133.1,1,34,3,7,2,130.6,1,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,38,9,10,140.0,0,0,0,1,1,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,133.1,1,19,38,9,9,119.6,1,0,0,1,0,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,118.0,1,19,19,3,3,110.0,1,0,0,1,0,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,137.0,1,1,1,5,5,129.3,1,0,0,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,127.0,1,19,38,5,9,129.5,1,0,0,1,0,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,126.0,1,38,19,9,6,119.4,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,116.5,0,0,0,1,0,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,125.0,1,19,19,4,7,128.5,1,0,0,1,0,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,Enrolled +1,43,1,9773,1,1,133.1,22,34,34,90,90,130.0,0,0,1,1,0,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,125.0,1,1,1,5,5,128.5,0,0,0,1,1,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9500,1,1,133.1,1,19,37,9,9,120.0,0,0,0,1,0,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,Graduate +2,39,2,9147,1,1,133.1,1,37,37,5,7,110.0,0,0,0,1,1,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,6,9500,1,1,141.0,1,1,19,1,1,126.7,1,0,0,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,146.0,1,40,43,4,4,150.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,148.0,1,1,1,4,9,129.8,0,0,0,1,0,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,Enrolled +1,17,1,9853,1,1,133.0,1,38,38,9,9,127.4,0,0,1,1,0,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,43,1,9147,1,1,120.0,1,37,37,5,3,113.4,0,0,0,1,1,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,148.0,1,19,3,4,2,136.5,0,0,0,1,0,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,178.0,1,2,1,2,3,157.7,0,0,0,1,1,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +2,7,1,9254,1,3,130.0,1,1,3,4,3,130.0,0,0,0,1,0,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,33,1,40,120.0,1,38,37,5,6,120.0,1,0,1,0,1,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,Dropout +2,1,1,9147,1,1,151.0,1,38,37,9,8,132.1,1,0,0,1,0,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Dropout +1,43,2,9556,1,1,120.0,1,1,19,4,3,110.2,0,0,0,1,0,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,Graduate +2,1,4,9500,1,1,140.0,1,1,37,4,9,128.0,0,0,0,1,0,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,6,120.0,1,35,35,6,6,128.2,1,0,0,1,1,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,120.0,1,37,37,9,6,120.0,1,0,0,1,0,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,8,7,150.0,0,0,0,1,1,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,145.0,1,19,37,4,7,148.9,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,34,34,0,0,104.0,1,0,0,1,0,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9085,1,1,110.0,1,3,19,4,6,105.0,0,0,1,0,1,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Dropout +1,17,2,9254,1,1,108.0,1,37,37,9,7,108.0,1,0,0,1,0,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,Graduate +4,43,1,9238,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,0,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,136.0,1,19,37,173,183,118.4,1,0,0,1,0,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,18,1,9556,1,1,140.0,1,38,37,9,9,122.8,0,0,0,1,0,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,Graduate +1,39,1,9119,1,1,150.0,1,3,3,4,4,150.0,1,0,0,1,1,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,141.0,1,1,1,4,10,138.9,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,Graduate +1,18,4,9773,1,1,130.0,1,19,19,4,4,121.3,1,0,0,1,0,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,1,130.0,1,37,37,9,6,160.0,0,0,0,1,1,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,149.0,1,37,37,9,9,136.0,0,0,0,1,0,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,151.0,1,37,1,4,10,138.4,0,0,0,1,0,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9254,1,1,130.0,1,37,37,9,9,126.5,0,0,0,1,1,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,143.0,1,19,37,7,7,127.0,1,0,0,1,0,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,Graduate +2,57,1,9991,0,1,133.1,41,38,37,4,6,100.0,0,0,0,1,0,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,138.0,1,37,37,9,9,135.9,1,0,0,1,0,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,43,1,8014,0,1,145.7,22,37,37,9,9,145.7,1,0,0,1,0,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,Graduate +4,39,1,9773,1,19,133.1,1,37,37,9,1,117.5,0,0,0,1,0,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9238,1,1,118.0,1,1,19,4,10,112.4,1,0,0,1,0,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,8014,0,1,133.1,1,37,37,9,7,162.5,0,0,0,1,1,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,1,3,9254,1,1,115.0,1,1,1,3,3,117.5,1,0,0,1,0,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,133.0,1,37,38,9,9,130.2,1,0,0,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,152.0,1,2,22,4,3,146.1,1,0,0,1,0,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +2,39,1,9085,1,12,133.1,1,1,39,5,3,140.0,1,0,1,0,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9003,1,1,140.0,1,38,1,9,4,138.3,0,0,0,1,1,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,130.0,1,38,37,9,6,133.9,0,0,0,1,1,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,140.0,1,37,37,9,9,142.5,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,120.0,1,38,1,9,3,118.3,1,0,0,1,0,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,117.0,1,1,19,4,7,113.5,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,141.0,1,19,1,7,3,128.8,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9147,1,1,125.0,1,3,38,2,10,118.7,1,0,0,1,0,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,116.0,1,37,1,5,3,124.8,1,0,0,1,1,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,120.0,1,36,37,0,0,126.7,1,0,0,1,1,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,4,9853,1,1,140.0,1,19,38,4,1,128.5,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,1,3,10,130.0,0,0,0,1,1,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,136.0,1,3,37,2,8,121.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,154.0,1,37,37,9,9,149.5,1,0,0,1,0,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,138.0,1,19,38,5,8,133.5,0,0,0,1,0,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,128.0,1,1,37,4,3,117.9,1,0,0,1,0,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,Graduate +1,43,1,9130,1,1,150.0,1,3,3,3,4,150.0,1,0,0,1,0,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,110.0,1,19,38,3,5,117.4,1,0,0,1,0,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,135.0,1,37,38,9,6,122.1,1,0,0,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9003,1,1,140.0,1,37,37,9,6,104.8,0,0,0,1,0,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,143.0,1,37,37,9,7,131.8,1,0,0,1,0,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,142.0,1,1,1,3,3,133.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,141.0,1,1,19,5,10,127.0,0,0,0,1,0,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,Graduate +3,1,2,9085,1,1,135.0,1,19,1,4,4,129.4,1,0,0,1,0,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,39,1,9254,1,1,133.1,1,19,19,4,7,123.0,0,0,1,0,0,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9500,1,1,131.0,1,19,37,9,7,129.8,1,0,0,1,0,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,Graduate +1,39,1,9670,1,9,133.1,1,6,22,3,3,120.0,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,131.0,1,37,37,3,3,131.7,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,137.0,1,19,19,5,5,134.6,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,131.0,1,1,1,4,10,129.3,0,0,0,1,0,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,140.0,1,1,37,141,192,129.7,0,0,0,1,0,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,140.0,1,37,37,9,9,124.6,0,0,0,1,0,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,138.0,1,37,37,5,9,125.1,1,1,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Dropout +1,2,1,9147,1,1,150.0,1,37,37,9,9,122.0,1,0,0,1,0,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,135.0,1,3,1,4,4,136.1,1,0,0,1,1,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,Enrolled +1,39,1,9991,0,1,150.0,1,1,19,4,8,123.0,0,0,0,1,1,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,141.0,1,19,37,5,8,130.2,0,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,106.0,1,37,37,9,9,108.0,1,0,1,1,0,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,19,133.1,1,37,38,9,7,100.5,1,0,0,1,1,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,Enrolled +1,43,1,9254,1,1,142.0,1,38,38,9,9,125.9,0,0,0,1,0,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,150.0,1,1,37,9,7,130.2,0,0,0,1,0,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,Graduate +4,39,1,9670,1,1,140.0,1,2,1,3,9,170.0,0,0,1,0,1,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9773,1,1,119.0,1,38,19,9,9,118.3,0,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,117.0,1,34,34,0,0,109.3,0,0,0,1,0,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,120.0,1,34,34,99,99,111.6,0,0,1,1,1,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,139.0,1,19,19,9,7,110.3,0,0,1,1,1,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,3,19,9,9,113.2,0,0,0,1,0,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,Enrolled +1,43,1,9991,0,1,120.0,1,38,38,9,7,141.0,0,0,0,1,1,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,151.0,1,3,1,2,4,151.0,1,0,0,1,0,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,130.0,1,37,37,9,6,110.0,1,0,0,1,0,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9853,1,1,130.0,1,2,39,2,5,124.6,0,0,0,1,1,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,138.0,1,1,1,4,3,141.5,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,120.0,1,37,37,9,5,100.0,0,0,0,1,0,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9991,0,39,150.0,1,37,37,6,6,150.0,0,0,0,1,0,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9085,1,19,133.1,1,38,38,4,7,128.2,0,0,0,1,0,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.0,41,19,19,9,9,119.7,1,0,1,1,0,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9085,1,1,128.0,1,1,19,4,90,124.2,0,0,0,0,0,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,120.0,1,1,1,9,9,129.1,1,0,0,1,1,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9773,1,1,125.0,1,19,19,9,7,129.6,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,137.0,1,40,19,2,9,130.7,1,0,0,1,0,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,Dropout +1,51,1,9147,1,1,116.0,1,3,3,2,2,115.2,0,0,1,1,1,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,5,9853,1,1,132.0,1,12,12,4,4,123.3,1,0,0,1,0,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,Dropout +1,7,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,1,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,135.0,1,19,38,9,5,136.8,1,0,0,1,0,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,137.0,1,1,1,4,7,134.6,1,0,0,1,1,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,4,171,1,1,133.1,1,38,38,9,9,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,133.1,1,19,37,7,8,120.0,0,0,1,0,0,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,140.0,1,1,19,9,7,127.0,1,0,0,1,0,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,Graduate +1,18,1,9500,1,1,124.0,1,38,37,9,7,119.3,1,0,0,1,0,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,3,19,2,4,150.0,1,0,0,1,0,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,19,133.1,1,3,19,90,90,123.5,0,0,0,1,0,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9853,1,1,133.1,1,37,37,5,5,116.5,0,0,0,1,0,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,Dropout +1,18,6,9500,1,1,144.0,1,1,1,3,6,130.8,1,0,0,1,0,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9670,1,1,151.0,1,19,19,1,1,100.0,0,0,1,1,0,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,125.0,1,1,19,4,6,115.2,0,1,0,1,0,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,37,38,4,9,110.0,0,0,1,0,0,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,133.1,1,19,19,5,5,108.5,1,0,0,1,0,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,130.0,1,37,11,90,90,122.6,0,0,0,1,0,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,113.0,1,19,37,9,9,118.6,1,0,0,1,0,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,140.0,6,2,3,5,2,124.3,1,0,0,1,0,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,Enrolled +1,1,4,9119,1,1,111.0,1,37,37,9,5,107.5,1,0,0,1,1,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,143.0,1,19,38,9,9,133.4,1,0,0,1,0,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,Graduate +1,17,1,9773,1,1,141.0,1,2,3,2,2,133.7,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,151.0,41,3,3,2,5,161.9,1,0,0,1,0,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,43,1,33,1,1,143.0,1,37,1,9,10,121.2,1,0,0,1,1,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,0,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,141.0,1,1,19,8,7,128.8,1,0,0,1,0,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Enrolled +1,1,1,9238,1,1,115.0,1,19,38,7,7,108.7,0,0,0,1,0,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,114.0,1,1,1,4,0,108.8,1,0,0,1,0,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,2,9853,1,1,112.0,1,37,37,191,182,106.1,1,0,1,1,0,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,2,9085,1,1,157.0,1,3,38,4,6,142.3,0,0,0,1,0,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,Graduate +2,44,1,8014,0,39,160.0,1,37,19,9,10,155.9,0,0,0,1,0,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,Graduate +1,1,4,171,1,1,137.0,1,1,38,4,8,141.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,144.0,1,1,37,9,9,126.5,1,0,0,1,0,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,145.0,1,1,1,4,10,131.4,0,0,0,1,0,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,115.0,1,1,1,9,4,109.1,1,0,1,0,0,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,170.0,1,37,37,0,0,150.8,1,0,0,1,0,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,5,3,9070,1,1,157.0,1,3,1,9,6,138.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,Graduate +1,43,2,9238,1,1,129.0,1,34,30,0,5,118.9,1,0,0,1,1,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,5,9853,1,1,141.0,1,3,19,2,7,130.9,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Graduate +4,39,1,9991,0,1,133.1,1,37,37,9,9,130.4,0,0,0,1,0,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,130.0,1,19,38,9,9,126.9,0,0,1,1,0,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,136.0,1,19,1,4,3,125.2,1,0,0,1,0,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,37,9,9,140.2,0,0,0,1,1,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,132.0,1,37,38,9,5,120.8,0,0,0,1,0,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,150.0,1,19,37,6,6,150.0,0,0,1,1,0,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,Graduate +2,42,1,9991,0,1,130.0,1,3,2,2,2,130.0,0,0,0,1,1,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,Enrolled +4,39,1,8014,0,1,133.1,1,38,37,5,7,144.5,0,0,0,1,0,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,2,9773,1,1,150.0,41,1,37,9,7,130.8,0,0,0,1,0,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,Graduate +2,1,1,8014,0,1,151.0,1,37,37,9,9,152.4,0,0,0,1,0,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,Graduate +6,39,1,9500,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,Dropout +2,43,1,9670,1,1,100.0,1,34,34,0,0,128.2,0,0,0,1,1,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,148.0,1,1,19,3,3,131.7,1,0,0,1,0,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,142.0,1,19,19,7,7,142.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,127.0,1,1,38,4,7,125.6,0,0,1,1,0,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,146.0,1,38,38,9,7,134.1,1,0,0,1,1,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,115.0,1,1,1,4,4,109.1,1,0,0,1,0,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,Enrolled +1,1,2,9773,1,1,148.0,1,1,19,9,9,141.7,0,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,116.0,1,37,37,0,5,114.3,1,0,0,1,0,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,139.0,1,38,19,5,7,130.6,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,Graduate +1,1,6,9147,1,1,128.0,1,37,37,9,9,116.5,0,0,0,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9130,1,3,150.0,1,3,1,90,90,150.0,1,0,0,1,0,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9670,1,1,122.0,1,1,19,4,4,116.1,0,0,0,1,1,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,Enrolled +1,39,1,9119,1,1,100.0,1,37,37,9,8,160.0,0,0,1,0,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9254,1,1,128.0,1,19,1,7,9,121.7,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,143.0,1,37,38,7,7,133.8,1,0,0,1,0,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,107.0,1,38,38,7,7,103.5,1,0,0,1,0,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,Graduate +1,39,2,9147,1,1,143.0,1,19,5,4,1,100.0,1,0,0,1,1,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,140.0,0,0,1,0,0,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,160.0,1,1,1,5,4,160.0,1,1,0,0,1,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,Dropout +2,39,1,9500,1,19,133.1,1,38,38,2,10,120.0,0,0,0,1,0,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,2,9853,1,1,122.0,1,19,19,4,5,112.6,1,0,0,1,0,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,3,9500,1,1,137.0,1,19,37,7,7,126.7,1,0,0,1,0,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,Graduate +1,7,1,9070,1,40,120.0,1,1,19,3,9,120.0,1,0,0,1,0,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,157.0,1,38,3,5,2,141.4,0,0,0,1,0,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,Graduate +2,1,2,8014,0,1,110.0,1,37,1,9,10,108.7,1,0,0,1,0,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,129.0,1,19,37,7,6,120.0,1,0,0,1,0,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,108.0,1,19,1,4,3,111.9,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9070,1,12,110.0,1,37,38,5,10,130.0,0,0,1,0,1,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,122.0,1,1,1,193,101,126.2,0,0,0,1,0,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,4,4,3,3,143.6,0,0,1,1,1,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,Enrolled +1,7,1,9119,1,3,130.0,1,34,34,90,90,130.0,0,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,8014,0,39,120.0,1,19,37,7,6,121.8,1,0,0,1,0,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,142.0,1,37,38,9,9,137.5,1,0,0,1,1,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,138.0,1,3,19,2,4,131.0,1,0,0,1,1,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,Dropout +1,17,2,9853,1,1,125.0,1,1,19,5,5,119.4,1,0,0,1,0,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,137.0,1,1,1,5,4,131.1,1,0,0,1,0,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,133.0,1,38,38,9,9,128.1,1,0,0,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Dropout +4,39,1,9991,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,0,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,17,1,9130,1,1,138.0,1,2,19,2,6,126.3,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,Enrolled +1,17,4,9500,1,1,135.0,1,1,1,4,4,127.0,1,0,0,1,0,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,140.0,1,4,3,3,3,127.8,0,0,0,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,5,1,9147,1,1,126.0,1,19,38,5,6,117.3,1,0,0,1,0,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,Enrolled +1,39,1,9670,1,1,133.1,1,1,19,4,9,140.0,0,0,0,1,1,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,126.0,1,38,38,9,8,118.8,1,0,0,1,0,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,Graduate +2,42,1,9147,1,1,133.1,1,37,37,9,9,115.8,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,126.0,1,1,37,7,9,132.7,0,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,133.0,1,19,19,5,7,123.6,0,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,4,9556,1,1,135.0,1,38,37,3,7,129.0,1,0,0,1,0,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,110.0,1,37,37,9,9,107.6,1,0,0,1,1,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Enrolled +1,17,4,9147,1,1,135.0,1,19,1,0,4,128.7,1,0,0,1,1,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +2,1,1,8014,0,1,150.0,1,1,37,4,7,139.9,1,0,0,1,0,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,116.0,1,1,38,4,3,114.6,1,0,0,1,0,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,121.0,1,19,37,1,3,131.5,0,0,0,1,0,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,100.0,1,19,1,1,90,114.0,1,0,1,0,0,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,146.0,1,19,37,5,8,135.8,1,0,0,1,0,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9119,1,39,140.0,1,1,19,4,5,140.0,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9670,1,1,136.0,1,19,19,5,5,122.0,0,0,1,0,0,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9003,1,1,133.1,1,19,19,4,4,107.5,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9070,1,1,164.0,1,38,38,9,7,165.8,1,0,0,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,154.0,1,38,38,9,9,133.4,1,0,0,1,0,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,127.0,1,19,37,7,7,121.5,1,0,0,1,1,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,Enrolled +1,43,6,9238,1,1,129.0,1,34,34,0,0,125.2,0,0,0,1,0,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,125.0,1,19,1,4,5,122.6,1,1,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,136.0,1,38,19,7,7,121.7,1,0,0,1,0,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,131.0,1,38,1,7,4,128.3,1,0,0,1,0,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,Graduate +1,1,4,171,1,1,132.0,1,1,19,4,5,138.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9254,1,1,115.0,1,12,1,9,3,108.7,1,0,0,1,0,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,131.0,1,1,37,3,7,120.2,0,0,0,1,0,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,134.0,1,1,1,4,9,124.2,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,142.0,1,19,1,9,1,132.6,0,0,0,1,0,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,2,1,3,6,150.0,1,0,0,1,1,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,130.0,1,19,38,9,7,113.5,0,0,0,1,0,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,135.0,1,2,1,2,8,126.6,0,0,0,1,0,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,12,133.1,1,37,37,5,7,119.3,1,0,0,1,1,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9130,1,1,110.0,1,3,19,2,9,105.5,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9130,1,1,134.0,41,1,19,5,5,125.6,1,0,0,1,0,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,151.0,2,1,1,5,9,146.5,0,0,0,1,0,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,133.0,1,1,3,3,3,135.8,1,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,7,1,9070,1,3,140.0,1,37,2,9,3,140.0,0,0,0,0,0,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,147.0,1,37,19,9,5,133.7,1,0,0,1,0,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,Enrolled +1,51,1,9500,1,1,127.0,1,19,1,5,9,150.0,0,0,0,1,0,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,143.0,1,1,37,5,9,126.6,0,0,1,0,0,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,9,160.0,0,0,1,1,0,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,Graduate +4,39,1,8014,0,19,133.1,1,34,34,0,0,100.0,0,0,0,1,0,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +4,43,1,9853,1,1,133.1,100,19,22,90,90,100.0,0,0,0,1,0,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,2,120.0,1,37,37,9,8,120.0,0,0,0,1,0,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9130,1,40,129.0,1,3,3,2,2,155.3,1,0,0,1,0,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,150.0,1,38,37,9,9,150.0,1,0,0,1,1,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,160.0,1,1,37,3,3,160.0,1,0,1,0,0,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,Dropout +2,39,1,9003,1,1,133.1,1,1,19,4,4,120.0,0,0,1,0,1,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,115.0,1,19,38,9,9,108.0,0,0,0,1,0,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,134.0,1,1,19,4,5,126.0,0,0,0,1,0,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,135.0,1,38,38,5,8,133.3,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,5,1,9670,1,1,135.0,1,1,12,4,4,140.3,1,0,0,1,0,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,122.0,1,19,1,4,8,135.8,0,0,0,1,0,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,19,19,3,9,112.6,1,0,0,1,0,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,4,9773,1,1,147.0,1,1,1,4,5,139.7,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,140.0,1,19,19,4,5,140.0,1,0,0,1,0,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,130.0,1,12,12,9,9,126.1,0,0,0,1,1,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,2,9147,1,1,130.0,1,34,37,9,9,118.5,1,0,0,1,1,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,138.0,1,4,1,2,1,133.0,1,0,0,1,0,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,138.0,1,37,37,194,171,131.0,1,0,0,1,0,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,19,5,8,147.3,0,0,0,1,0,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,6,9500,1,1,149.0,1,1,1,4,9,133.0,1,0,0,1,0,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,Graduate +1,16,6,9773,1,1,136.0,1,38,14,0,0,129.7,1,0,0,1,0,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,130.0,1,1,34,9,9,124.8,1,0,0,1,0,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,111.0,1,1,1,3,3,112.4,1,0,0,1,1,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,121.0,1,1,19,4,7,135.4,1,0,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,Graduate +1,1,1,9556,1,1,135.0,1,37,38,7,9,125.8,0,0,0,1,0,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,136.0,1,37,19,5,8,129.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,4,9670,1,1,110.0,1,1,37,7,7,111.1,1,0,0,0,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,128.0,1,38,38,5,5,118.6,1,0,0,1,0,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,Graduate +2,39,1,9500,1,19,133.1,1,37,38,9,10,120.9,1,0,0,1,0,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,Dropout +1,5,3,9085,1,1,143.0,1,37,37,0,90,159.1,0,0,1,1,0,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Dropout +4,39,1,9238,1,1,120.0,1,37,37,9,9,125.5,1,0,0,1,0,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,126.0,1,3,1,2,5,116.9,1,1,0,1,0,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,16,1,9556,1,1,137.0,1,37,37,9,7,122.7,1,0,0,1,0,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,136.0,1,1,1,9,9,123.8,1,0,0,1,0,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +4,39,1,9130,1,1,133.1,1,3,1,5,5,110.0,1,0,0,1,0,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,Dropout +1,17,4,9085,1,1,138.0,1,19,36,90,7,134.9,1,0,0,1,0,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,130.0,1,1,4,4,2,131.4,0,0,0,1,1,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,Graduate +2,42,1,9853,1,1,133.1,1,37,37,4,7,100.0,0,0,0,1,0,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,115.0,1,1,1,9,9,134.3,1,0,0,1,1,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,108.0,1,1,38,5,8,105.9,0,0,0,1,0,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9991,0,1,120.0,1,19,37,5,5,128.2,0,0,0,0,1,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +5,7,1,9130,1,3,160.0,1,19,38,9,6,160.0,0,0,0,0,0,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,121.0,1,3,19,2,9,115.4,1,0,0,1,1,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..92db5db9a6143e84d4ca37f25e2fb4c176360620 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/staged/public/val.csv @@ -0,0 +1,443 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,17,1,9254,1,1,118.0,1,11,34,5,0,122.2,1,0,0,1,0,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,43,1,9238,1,1,120.0,1,1,38,4,3,118.3,0,0,0,1,0,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,108.0,1,3,1,3,4,109.1,1,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,9991,0,40,130.0,1,19,19,7,3,130.0,0,0,0,1,0,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,19,9,10,150.0,0,0,0,1,1,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9119,1,40,130.0,1,1,1,4,4,130.0,0,0,0,1,1,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,128.0,1,19,19,5,5,124.5,1,0,0,1,0,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,170.0,1,19,19,5,1,170.0,1,0,0,1,0,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,Enrolled +1,1,3,9500,1,1,113.0,1,3,1,134,135,107.8,1,0,0,1,0,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,Enrolled +1,1,2,9670,1,1,117.0,1,37,37,9,9,111.8,0,0,0,1,0,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,1,1,9,4,126.2,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,145.0,1,19,38,7,6,128.6,1,0,0,1,0,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9147,1,3,130.0,1,38,38,1,9,130.0,0,0,0,1,0,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,170.0,1,19,37,8,8,100.0,0,0,0,1,0,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9147,1,1,148.0,1,38,37,5,5,134.0,0,0,0,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,5,9085,1,1,118.0,1,1,38,4,7,122.2,1,0,0,1,0,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,133.1,1,38,38,191,192,118.0,0,0,1,1,0,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,Graduate +1,18,1,9853,1,1,132.0,1,37,37,9,5,126.1,0,0,0,1,0,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +6,39,1,8014,0,1,133.1,1,37,37,9,9,119.0,0,0,0,1,0,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,133.1,1,1,37,7,7,118.0,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,123.0,1,38,38,4,7,114.3,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9991,0,1,143.0,1,19,37,5,8,135.0,0,0,0,1,0,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,128.0,1,1,1,2,10,116.5,0,0,0,1,1,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,Dropout +2,39,1,9085,1,1,120.0,1,19,19,1,4,130.0,0,0,0,1,0,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,Dropout +2,39,1,171,1,19,100.0,1,37,37,9,9,139.0,0,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,3,9500,1,1,139.0,1,38,37,9,8,146.5,0,0,0,1,0,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,120.0,1,37,37,9,1,123.2,0,0,0,1,0,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,1,140.0,1,3,3,4,2,141.7,1,0,0,1,0,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,127.0,1,2,2,3,4,115.8,1,0,0,1,1,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,117.0,1,19,19,9,9,116.3,1,0,0,1,0,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,152.0,1,19,37,3,8,156.9,0,0,0,1,0,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,140.0,1,1,19,4,4,140.7,0,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,133.0,1,3,19,2,7,120.4,1,0,0,1,0,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,1,160.0,1,38,38,7,9,121.4,0,1,0,1,0,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,120.0,1,1,2,9,3,130.0,1,0,0,1,0,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,139.0,1,2,3,3,3,132.7,1,0,0,1,0,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,6,108.3,0,0,0,1,1,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,8014,0,1,107.0,1,19,11,0,0,103.5,1,0,0,1,0,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,113.0,1,38,38,191,175,110.2,1,0,1,1,0,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,1,19,1,5,100.0,1,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,39,140.0,1,38,19,9,5,110.0,0,0,0,1,0,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,Enrolled +1,18,2,9238,1,1,126.0,1,19,37,5,7,129.9,1,0,0,1,1,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,18,1,9254,1,1,137.0,1,19,19,4,5,126.9,0,0,0,1,1,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,121.0,1,37,37,9,9,122.4,0,0,0,1,0,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,51,1,9070,1,1,122.0,1,38,38,9,9,128.8,1,0,0,1,1,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,141.0,1,1,1,3,10,142.8,0,0,0,1,0,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,130.0,1,19,38,9,9,162.3,0,0,0,1,1,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,Dropout +1,18,1,9853,1,1,133.1,1,1,19,141,182,106.0,1,0,1,1,0,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,17,1,9147,1,1,120.0,1,19,19,3,3,113.4,0,0,0,1,0,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,147.0,1,37,19,7,7,134.4,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,1,120.0,1,1,3,144,123,120.0,0,0,0,1,1,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,17,4,9500,1,1,137.0,1,1,37,9,9,128.4,1,0,0,1,0,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,120.0,0,1,1,1,0,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9085,1,1,140.0,1,37,37,9,9,154.6,0,0,0,0,0,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,19,133.1,1,37,19,9,7,134.3,0,0,0,1,1,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,Dropout +1,39,1,9119,1,1,130.0,1,19,37,9,4,149.0,1,0,0,1,1,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,Enrolled +1,17,1,9254,1,1,115.0,1,1,19,3,3,109.4,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,126.0,1,37,3,5,2,116.9,0,0,0,1,1,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,128.0,1,1,1,2,2,130.8,1,0,0,1,0,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,127.0,1,19,19,4,6,120.7,0,0,1,0,0,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9238,1,1,110.0,1,14,14,90,90,112.5,1,0,0,1,0,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,19,5,5,130.8,1,0,0,1,0,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9130,1,1,150.0,1,1,1,4,10,110.0,0,0,1,1,1,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,5,9238,1,3,135.0,1,1,38,9,3,129.4,0,0,1,1,0,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,133.0,1,19,37,1,9,128.5,1,0,0,1,0,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,Graduate +1,39,2,9991,0,1,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9773,1,1,136.0,1,1,38,9,8,131.5,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,138.0,1,37,38,9,8,134.2,1,0,0,1,0,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,7,2,9500,1,3,140.0,1,37,38,9,9,138.0,0,0,0,1,1,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,Dropout +1,43,1,9003,1,1,120.0,1,1,1,4,10,134.4,0,0,0,1,1,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,140.0,1,19,19,9,9,124.3,1,0,0,1,0,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,Graduate +1,17,3,9254,1,1,127.0,1,12,38,5,7,116.9,1,0,1,1,0,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,1,9238,1,1,145.0,1,38,38,9,7,145.0,0,0,0,1,0,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,140.0,1,19,19,9,7,102.5,0,0,0,1,0,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,17,6,9500,1,1,131.0,1,1,19,7,7,126.5,1,0,0,1,0,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,34,34,0,0,123.3,1,0,0,1,0,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,120.0,1,37,3,9,3,168.2,0,0,0,1,1,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,5,9773,1,1,118.0,1,38,19,9,9,113.8,1,0,0,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,122.0,1,19,38,7,7,117.1,1,0,0,1,0,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,115.0,1,19,1,3,7,113.6,0,0,0,1,1,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,141.0,1,1,4,4,4,127.7,0,0,0,1,0,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,130.0,1,37,38,6,6,130.0,1,0,0,1,0,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,120.0,1,37,37,5,5,111.3,1,0,0,1,0,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,145.0,1,1,19,10,5,150.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,129.0,1,38,19,3,7,118.9,1,0,0,1,0,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,Enrolled +1,1,5,9085,1,1,121.0,1,38,37,9,8,114.0,1,0,0,0,0,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,17,1,9254,1,1,126.0,1,1,1,9,9,124.3,0,0,0,1,0,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,149.0,1,1,3,0,0,148.7,0,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9147,1,1,125.0,1,38,38,6,8,114.5,1,0,0,1,0,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,Graduate +1,16,3,9085,1,1,130.0,1,37,37,9,2,119.5,1,0,0,1,0,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,145.0,1,19,37,9,9,132.3,1,0,0,1,0,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,128.0,1,19,38,5,7,125.6,1,0,0,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9254,1,1,135.0,1,38,37,9,7,139.2,0,0,0,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,139.0,1,37,38,6,6,121.3,1,0,0,1,0,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9070,1,39,150.0,1,12,37,3,9,147.7,0,0,1,1,0,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,110.0,1,3,19,4,5,109.0,0,0,0,1,1,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,133.1,1,38,38,5,9,105.0,1,0,0,1,0,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,Graduate +2,51,1,9991,0,1,127.0,1,37,37,8,4,100.1,0,0,0,1,0,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,135.0,1,19,1,4,1,131.9,1,0,0,1,1,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +4,39,1,9556,1,1,160.0,1,19,3,9,2,130.0,0,0,0,1,0,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,Enrolled +1,17,5,9119,1,1,123.0,1,3,1,2,9,116.0,1,0,1,0,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9500,1,1,140.0,1,19,19,7,7,138.6,0,0,0,1,0,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,19,38,9,7,125.6,1,0,0,1,0,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,3,130.0,1,2,2,1,1,130.0,0,0,0,1,0,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,7,9,111.0,0,0,0,0,1,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,148.0,1,1,1,4,8,141.4,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9147,1,1,115.0,1,1,38,3,8,109.8,1,0,0,1,0,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +1,7,3,9130,1,3,130.0,1,19,37,90,5,130.0,0,0,1,0,0,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,5,9500,1,1,141.0,1,38,19,7,7,132.5,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,19,37,9,9,129.9,0,0,0,1,1,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,142.0,1,19,37,4,7,141.3,0,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,19,38,7,4,125.7,0,0,0,1,0,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,129.0,1,19,37,9,9,117.5,1,0,0,1,0,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,103.0,1,1,19,9,9,108.3,0,0,0,1,0,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9853,1,1,133.1,1,19,19,9,9,97.0,1,0,0,1,0,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9238,1,3,150.0,1,37,37,191,192,150.0,0,0,0,1,0,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9085,1,12,133.1,1,34,34,99,99,128.2,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9070,1,1,129.0,1,3,4,2,2,136.4,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Enrolled +1,39,2,9147,1,38,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,133.1,1,34,34,0,0,118.9,1,0,0,1,0,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,135.0,1,19,38,9,9,129.2,0,0,0,1,0,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,122.0,1,37,37,9,3,115.7,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,9853,1,1,120.0,1,1,19,4,7,111.3,0,0,0,1,0,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,141.0,1,38,19,9,10,125.6,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,4,9500,1,1,133.0,1,19,19,3,10,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,106.0,1,1,19,4,4,106.4,1,0,0,1,0,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,Enrolled +2,39,1,9147,1,1,133.1,1,37,37,9,9,140.0,0,0,0,0,0,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,51,1,9070,1,1,130.0,1,3,1,2,8,122.2,0,0,1,1,0,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,Graduate +1,17,6,9500,1,1,143.0,1,38,1,9,10,127.3,1,0,0,1,0,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,154.0,1,1,1,5,7,154.7,0,0,0,1,0,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,120.0,1,37,37,9,7,120.0,0,0,0,1,0,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,151.0,1,37,1,9,9,138.4,1,0,0,1,0,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Graduate +2,39,2,9003,1,19,133.1,1,38,19,4,1,110.0,0,0,0,0,1,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9119,1,1,129.0,1,12,1,4,10,124.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,120.0,1,37,37,4,9,117.1,1,0,0,1,0,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,133.1,1,3,1,4,9,105.0,1,0,0,1,1,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9147,1,1,120.0,1,38,38,9,8,118.3,0,0,0,1,1,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9147,1,1,147.0,1,19,1,9,7,139.3,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,140.0,1,19,19,5,5,131.3,0,0,0,1,1,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,133.0,1,38,19,9,8,128.8,1,0,0,1,1,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,Graduate +1,17,1,9254,1,1,127.0,1,1,1,4,8,126.7,1,0,0,0,1,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9147,1,1,131.0,1,1,19,4,5,120.2,1,0,0,1,0,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,143.0,1,38,38,5,5,133.9,0,0,0,1,0,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,Graduate +4,39,1,9147,1,1,140.0,1,37,37,9,9,142.8,0,0,0,1,0,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,138.0,1,19,1,5,5,128.0,1,0,0,1,0,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,Graduate +1,43,1,9500,1,1,150.0,1,37,37,9,9,130.8,1,0,0,1,0,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,160.0,1,19,38,9,9,152.0,0,0,0,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,42,1,9254,1,1,154.0,1,38,37,1,1,154.0,1,0,0,1,0,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,141.0,1,37,37,4,4,138.9,0,0,0,1,0,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,135.0,1,38,37,9,8,126.3,1,0,0,1,0,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,Graduate +1,17,2,9853,1,1,138.0,1,1,1,9,4,123.0,1,0,0,1,0,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +2,1,1,9085,1,1,139.0,1,19,19,192,144,127.1,0,0,0,1,1,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,Graduate +1,17,4,9070,1,1,116.0,1,38,37,9,9,109.0,0,0,0,1,0,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,38,38,6,3,140.0,0,0,0,1,0,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9254,1,1,120.0,1,19,19,4,4,125.5,0,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9991,0,1,120.0,1,37,37,9,8,122.5,1,0,0,1,0,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,136.0,1,1,37,4,5,130.8,0,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,116.0,1,38,19,8,10,110.8,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9853,1,1,146.0,1,19,38,9,3,145.3,1,0,0,1,0,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,150.0,1,37,37,9,7,150.0,0,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,124.0,1,1,19,5,4,124.4,0,0,0,1,0,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,37,38,9,9,148.5,0,0,0,1,1,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,9,9,127.0,1,0,0,1,1,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,Graduate +4,1,1,8014,0,1,133.1,1,39,19,4,10,143.0,1,0,0,1,0,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,133.1,1,1,19,3,5,115.0,0,0,0,0,1,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,Dropout +2,44,1,9003,1,39,160.0,1,37,38,9,4,160.0,0,0,0,1,0,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,Graduate +1,16,3,9070,1,1,152.0,1,1,38,4,8,156.9,1,0,0,1,0,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,9,9,126.3,0,0,0,1,0,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9773,1,1,131.0,1,1,38,9,5,132.4,1,0,1,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9556,1,1,140.0,1,37,37,9,8,105.0,1,0,0,1,0,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9070,1,1,128.0,1,19,19,3,3,129.8,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,7,9,125.5,1,0,0,1,0,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,140.0,1,38,37,7,7,143.0,0,0,0,1,0,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,139.0,1,19,38,4,9,146.7,1,0,0,1,0,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,129.0,1,1,37,9,9,118.2,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,142.0,1,34,34,99,99,131.9,0,0,0,1,0,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,139.0,1,1,19,9,3,130.3,1,0,0,1,0,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,38,5,5,152.4,0,0,0,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,19,19,4,6,147.6,1,0,0,1,0,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,Graduate +1,51,1,8014,0,2,110.0,1,19,38,9,10,110.0,0,0,0,1,1,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,Graduate +1,17,3,9119,1,1,135.0,1,1,19,141,193,121.7,1,0,0,1,1,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,1,4,9773,1,1,122.0,1,19,19,9,7,121.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9003,1,3,120.0,1,1,19,4,1,120.0,1,0,0,1,1,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,140.0,1,19,37,4,8,133.3,1,0,0,1,0,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,121.0,1,1,1,5,4,111.9,1,0,0,0,1,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,3,130.0,1,1,38,90,90,143.4,0,0,0,1,1,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,1,120.0,1,37,37,6,9,121.0,0,0,0,1,0,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,154.0,1,38,37,4,4,141.4,0,0,0,1,0,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,40,130.0,1,19,1,5,10,130.0,1,0,1,0,0,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,133.1,1,1,1,4,4,120.0,0,0,1,0,1,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,120.0,1,37,1,9,5,113.4,1,0,0,1,0,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,139.0,1,38,37,7,7,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,135.0,1,38,19,194,193,135.4,1,0,0,1,1,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,150.0,1,3,2,2,2,150.0,0,0,0,1,1,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +2,43,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,1,1,7,4,136.0,1,0,0,1,1,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,3,130.0,1,3,3,1,2,150.0,0,0,0,1,0,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,123.0,1,1,38,4,7,115.3,1,0,0,1,0,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,101.0,1,38,38,9,9,104.5,1,0,0,1,0,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,140.0,1,1,19,9,9,128.8,0,0,0,1,1,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,Graduate +1,39,2,9119,1,1,120.0,1,37,37,5,5,128.0,0,0,0,1,1,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,15,133.1,1,34,34,0,0,100.0,1,0,0,0,0,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,133.1,1,6,11,4,5,138.4,0,0,0,1,1,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,142.0,1,37,37,6,7,136.1,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,132.0,1,37,37,9,9,123.6,1,0,0,1,0,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,9,9,126.9,1,0,0,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,15,1,9238,1,1,150.0,26,3,37,2,8,132.5,1,0,0,0,0,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,142.0,1,12,12,9,4,132.6,1,0,0,1,0,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,4,9254,1,1,106.0,1,37,19,9,7,116.9,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,160.0,1,1,19,5,7,155.5,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,42,1,9500,1,1,157.0,1,3,3,3,3,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,131.0,1,3,19,1,4,118.8,0,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,Graduate +1,43,2,9773,1,1,120.0,1,34,34,0,0,103.6,1,0,0,1,0,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,125.0,1,34,37,9,9,129.2,1,0,1,0,0,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,4,9085,1,1,145.0,1,37,1,9,9,145.0,1,0,0,1,0,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,136.0,1,1,1,9,3,122.7,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,1,4,9147,1,1,120.0,1,19,38,5,5,122.8,1,0,0,1,1,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,2,9085,1,1,140.0,1,37,38,9,7,137.0,0,0,0,1,0,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,120.0,1,4,1,4,10,112.0,1,0,0,1,0,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,37,38,7,7,110.0,0,0,0,1,1,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,138.0,1,38,19,9,5,144.3,0,0,0,1,0,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,12,133.1,1,37,37,9,9,120.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9147,1,1,140.0,1,19,19,9,7,120.4,0,0,1,0,0,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,145.0,1,37,1,9,4,138.8,1,0,0,1,0,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,19,38,5,0,133.7,1,0,0,1,0,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9130,1,39,150.0,1,5,1,2,5,150.0,1,0,0,1,1,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,Enrolled +1,43,1,9991,0,1,140.0,1,37,38,9,8,135.5,0,0,1,0,0,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,Dropout +1,1,1,9254,1,1,123.0,1,38,19,9,4,117.8,0,0,0,1,1,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9500,1,1,125.0,1,1,12,3,6,115.2,1,0,0,1,0,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,Graduate +1,17,2,9254,1,1,129.0,1,12,37,9,9,122.0,1,0,0,1,0,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,2,9070,1,1,143.0,1,1,1,4,10,146.2,1,0,0,1,1,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,117.0,1,38,38,4,9,120.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,3,130.0,1,3,1,1,10,160.0,0,0,0,1,0,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,Dropout +1,17,1,9556,1,1,133.0,1,38,37,9,9,124.4,1,0,0,1,0,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,Graduate +1,1,1,9003,1,1,124.0,1,38,19,9,7,116.0,0,0,0,1,1,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,164.0,1,19,1,9,9,161.2,0,0,0,1,1,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,1,130.0,1,37,37,9,9,119.5,1,0,0,1,0,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,1,19,1,5,130.0,0,0,1,1,0,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,142.0,1,19,19,7,3,132.9,0,0,0,1,1,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,126.0,1,19,19,3,7,123.9,0,0,0,1,0,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9254,1,1,132.0,1,1,38,5,6,122.6,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,1,6,9238,1,1,125.0,1,38,1,7,4,118.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,1,140.0,1,3,3,2,2,110.0,0,0,0,1,1,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,138.0,1,1,40,4,3,149.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,43,1,171,1,1,144.0,1,19,19,9,4,121.6,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9773,1,1,129.0,1,37,37,9,7,117.1,1,0,0,1,0,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,Enrolled +1,1,6,9853,1,1,114.0,1,19,19,9,9,110.2,1,0,0,1,1,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Dropout +2,42,1,9147,1,1,100.0,1,37,37,9,9,100.0,1,0,0,1,0,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,135.0,1,38,19,9,5,126.3,0,0,0,1,1,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,156.0,1,3,3,2,2,147.7,1,0,0,1,0,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,Graduate +1,1,1,9147,1,1,139.0,1,38,1,5,5,127.1,1,0,0,1,1,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,127.0,1,1,37,4,9,128.1,0,0,0,1,1,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,5,9070,1,1,124.0,1,37,37,9,9,113.9,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,129.0,1,38,37,9,5,120.0,1,0,0,1,0,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,118.0,1,19,19,9,9,122.2,0,0,0,1,0,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,Graduate +2,39,1,9556,1,19,133.1,1,38,37,7,7,99.5,1,0,1,0,0,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,130.0,1,38,38,7,7,136.3,1,0,0,1,1,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,1,9853,1,1,112.0,1,2,19,3,9,106.1,1,0,0,1,0,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,43,1,9119,1,1,146.0,1,3,1,2,3,100.0,0,0,0,1,1,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,132.0,1,1,12,4,5,124.3,0,0,0,1,0,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,8014,0,1,136.0,1,37,37,5,8,132.5,0,0,1,1,0,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,37,37,90,90,130.0,1,0,0,1,1,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,135.0,1,1,1,4,4,122.8,0,0,0,1,0,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,Graduate +2,39,1,9254,1,1,130.0,1,37,37,9,9,125.0,0,0,0,1,0,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,133.1,1,19,19,9,8,132.0,1,0,0,1,0,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,Dropout +2,39,1,9070,1,1,160.0,1,3,1,2,5,126.5,0,0,0,1,0,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,15,1,9556,1,1,137.0,26,19,1,9,4,137.0,0,0,1,1,0,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9773,1,1,133.1,1,3,5,0,2,125.8,1,0,0,0,1,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,16,4,9238,1,1,135.0,1,37,37,9,9,121.0,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,2,9556,1,1,130.0,1,37,19,9,8,110.0,0,0,0,1,1,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,Enrolled +1,1,1,9853,1,1,123.0,1,1,38,9,6,121.6,1,0,0,1,0,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9119,1,1,126.0,1,38,19,5,5,130.2,0,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,5,9500,1,1,122.0,1,37,3,9,2,116.8,1,0,0,1,0,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,132.0,1,38,38,9,9,119.3,1,0,0,1,0,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,116.0,1,38,1,5,1,111.1,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9500,1,1,113.0,1,38,19,9,7,106.7,1,0,0,1,0,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,Enrolled +1,39,1,9670,1,1,120.0,1,34,34,0,0,106.0,1,0,0,0,1,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,145.0,1,19,37,5,9,130.5,1,0,0,1,0,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,Graduate +2,39,1,9238,1,19,133.1,1,37,37,4,4,98.5,0,0,0,1,0,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,152.0,1,41,19,3,5,137.8,0,0,0,1,0,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,Graduate +1,43,2,8014,0,3,130.0,1,34,34,0,0,130.0,0,0,0,1,1,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,152.0,1,38,37,9,9,139.1,0,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,18,1,9003,1,1,133.1,1,1,38,9,6,101.0,0,0,0,1,1,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,19,1,9,8,105.0,0,0,0,1,0,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,162.0,1,19,1,5,5,147.5,1,0,0,1,0,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,19,1,4,1,101.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9119,1,1,116.0,1,19,1,9,7,112.2,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,133.0,1,38,37,9,7,120.1,1,0,0,1,0,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,110.0,1,37,37,5,6,108.3,0,0,0,0,0,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,Dropout +1,17,2,9773,1,1,121.0,1,1,1,5,5,123.1,1,0,0,1,1,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,17,1,9556,1,1,133.0,1,1,38,4,9,119.0,0,0,0,1,0,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,Enrolled +1,17,1,9147,1,1,139.0,1,1,38,4,5,152.0,0,0,0,1,0,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,160.0,1,12,38,4,8,160.0,1,0,0,1,1,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,133.1,1,19,19,7,7,117.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,128.0,1,3,1,3,3,121.0,1,1,1,1,1,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,116.0,1,1,19,4,7,127.6,1,0,0,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,Dropout +1,18,3,9119,1,1,111.0,1,1,19,9,8,111.0,1,0,0,1,1,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,146.0,1,1,1,9,7,126.0,0,0,0,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,Enrolled +1,53,1,9085,1,42,140.0,1,1,1,5,5,143.3,1,0,0,0,0,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,Enrolled +1,1,1,9070,1,1,144.0,1,1,1,3,5,127.2,1,0,0,1,0,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,141.0,1,38,1,5,7,132.6,0,0,0,1,0,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,18,1,9085,1,1,153.0,1,37,37,9,9,138.0,1,0,0,1,0,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,137.0,1,1,3,5,2,133.9,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,150.0,1,19,38,9,5,143.0,0,0,0,1,0,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,1,9,6,126.1,1,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9070,1,1,133.0,1,4,1,4,4,132.0,1,1,0,1,0,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,140.0,1,1,19,9,9,140.0,1,0,0,1,0,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,133.1,1,3,1,2,4,128.2,1,0,0,1,0,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,1,133.1,1,37,36,90,7,128.2,0,0,0,1,1,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,114.0,1,19,38,9,7,135.9,0,0,0,1,1,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,Graduate +2,51,1,9500,1,1,130.0,1,37,37,5,5,120.0,0,0,0,1,1,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,Dropout +1,43,1,9670,1,39,110.0,1,19,3,7,10,110.0,0,0,0,1,0,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,43,1,9500,1,1,148.0,1,29,38,90,3,131.0,1,0,0,1,0,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,Graduate +1,18,1,9254,1,1,118.0,1,38,38,5,5,123.3,1,0,0,1,1,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9003,1,3,130.0,1,1,38,9,7,130.0,1,0,0,0,1,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,3,38,2,7,121.7,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9991,0,1,133.1,1,38,38,5,5,145.0,0,0,0,1,0,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,136.0,1,1,12,9,10,121.7,1,0,0,1,0,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,160.0,1,19,1,4,10,153.0,1,0,0,1,0,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,Graduate +2,53,1,9147,1,42,130.0,1,19,19,175,152,132.4,0,0,0,1,0,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9119,1,40,120.0,1,1,1,5,10,146.8,0,0,0,1,1,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,150.0,1,19,11,0,0,131.1,1,0,0,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,122.0,1,1,19,4,3,130.4,1,0,0,1,0,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,5,9119,1,1,132.0,1,38,19,5,3,119.1,0,0,0,1,0,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,137.0,1,1,3,4,3,124.6,0,0,0,1,0,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,126.0,1,1,38,4,7,124.3,1,0,0,1,0,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,Graduate +1,43,1,9238,1,39,120.0,1,2,1,1,2,118.6,0,0,0,1,1,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,34,34,0,0,119.1,1,0,0,1,0,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,127.0,1,1,1,4,4,120.4,1,0,0,1,0,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,135.0,1,1,38,5,5,122.4,0,0,1,1,0,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,Graduate +1,18,2,9773,1,1,109.0,1,1,1,4,4,109.0,1,0,0,0,0,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9500,1,1,132.0,1,19,3,9,5,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,Enrolled +1,43,1,33,1,19,133.1,1,38,38,4,4,140.0,0,0,1,1,1,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,Dropout +1,17,1,9773,1,1,120.0,1,37,37,5,5,125.3,0,0,0,1,0,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,1,19,5,10,141.1,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,145.0,1,19,38,4,4,132.1,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9254,1,1,122.0,1,19,19,5,5,118.2,0,0,0,1,0,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,Enrolled +1,17,1,8014,0,1,119.0,1,34,34,0,0,112.4,1,0,0,1,0,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,5,9500,1,1,125.0,1,1,1,3,8,115.6,1,0,0,1,0,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,Enrolled +2,39,1,9991,0,1,150.0,1,1,4,4,2,146.0,0,0,0,1,1,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,132.0,1,4,2,123,112,143.6,1,0,0,1,1,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9085,1,1,144.0,1,1,19,4,10,132.1,1,0,0,1,0,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,19,19,1,1,125.5,1,0,0,1,0,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,130.0,1,19,19,9,6,135.0,0,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,1,140.0,1,19,19,90,90,120.0,0,0,1,0,1,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,143.0,1,1,37,3,8,128.0,0,0,0,1,0,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,Graduate +1,1,3,9070,1,1,146.0,1,34,34,0,0,143.6,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9130,1,1,130.0,1,1,19,6,6,154.0,1,0,0,1,1,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,10,170.0,0,0,0,1,0,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,Enrolled +6,39,1,9991,0,12,130.0,1,37,37,90,90,119.0,1,0,0,0,1,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,53,1,9003,1,42,130.0,1,1,1,144,144,125.8,0,0,1,1,0,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,145.0,1,40,1,2,4,160.1,0,0,0,1,0,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9070,1,1,140.0,1,1,1,9,8,144.3,1,0,0,1,0,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,150.0,1,1,38,6,6,150.0,1,0,0,1,1,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,148.0,1,37,37,9,9,143.5,0,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,123.0,1,19,19,9,8,125.5,0,0,0,0,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,130.0,1,34,1,0,2,128.2,0,0,0,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,1,130.0,1,1,1,3,7,140.0,0,0,0,1,1,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,17,4,9556,1,1,112.0,1,1,1,4,10,107.1,1,0,0,1,0,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,101.0,1,1,1,3,4,102.4,0,0,0,1,0,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,133.0,1,37,37,9,7,121.8,0,0,0,1,1,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9500,1,1,133.1,1,3,1,5,5,148.8,0,0,0,1,0,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,157.0,1,19,38,5,3,149.3,0,0,0,1,0,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,163.0,1,3,4,2,5,175.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,148.0,1,1,3,4,1,163.4,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,Graduate +1,53,1,9085,1,42,130.0,1,38,38,9,9,128.8,0,0,0,1,0,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,Dropout +1,39,1,8014,0,1,120.0,1,1,1,4,4,150.5,0,0,0,1,0,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Graduate +1,51,1,9147,1,1,130.0,1,1,1,4,4,120.0,0,0,0,1,0,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,Enrolled +4,39,2,9556,1,19,133.1,1,19,19,4,6,123.0,0,0,0,1,0,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,Graduate +4,39,1,8014,0,19,140.0,1,37,37,9,3,131.0,0,0,0,1,0,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,131.0,1,19,38,9,9,129.7,1,0,0,1,0,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,Graduate +1,7,1,9238,1,40,130.0,1,37,37,5,5,130.0,0,0,0,1,1,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,Graduate +1,1,1,9130,1,1,133.0,1,3,1,2,4,126.0,0,0,0,1,1,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,100.0,1,1,1,4,4,120.0,0,0,0,1,1,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,138.7,1,1,12,4,3,111.3,0,0,0,1,1,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,135.0,1,38,38,5,7,121.0,0,0,0,1,0,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,1,19,5,9,111.1,0,0,0,1,1,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,43,1,9130,1,1,100.0,41,3,4,3,2,100.0,0,0,0,1,0,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9147,1,3,130.0,1,37,19,9,8,130.0,0,0,0,1,0,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,Graduate +1,1,4,9085,1,1,138.0,1,3,1,1,4,123.3,1,0,0,1,0,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,Graduate +1,17,1,9003,1,1,131.0,1,19,1,9,2,134.5,1,0,0,1,0,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,139.0,1,38,1,9,5,131.8,1,0,0,1,0,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,133.1,1,37,37,6,6,136.2,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,123.9,1,37,1,9,7,123.9,0,0,0,1,1,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,Dropout +1,1,1,9147,1,1,143.0,1,3,1,5,5,152.1,1,0,1,1,1,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,Dropout +1,1,6,9500,1,1,142.0,1,1,37,7,7,123.5,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,124.0,1,2,1,4,10,117.4,1,0,0,1,0,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,5,9119,1,1,130.0,1,19,1,4,5,118.1,1,0,1,0,1,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,Dropout +1,17,4,9147,1,1,121.0,1,38,37,6,7,113.0,1,0,0,1,0,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,150.0,1,19,19,4,10,100.0,0,0,0,1,0,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,151.0,1,37,37,9,9,138.0,1,0,0,1,0,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,138.0,1,38,38,9,9,126.8,0,0,0,1,1,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,Graduate +6,17,3,8014,0,1,115.0,1,19,1,5,90,115.0,0,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,127.0,1,1,19,3,3,120.2,1,0,0,1,0,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,Graduate +1,51,1,9991,0,1,134.0,1,1,1,5,3,120.6,1,0,0,1,1,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,121.0,1,19,1,7,9,117.9,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,131.0,1,1,38,4,8,121.9,1,0,0,1,0,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,19,133.1,1,38,38,7,8,170.0,0,0,0,1,1,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,100.0,1,37,37,9,5,170.0,0,0,0,1,1,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,95.0,1,37,37,5,8,95.0,0,0,0,0,1,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,148.0,1,37,37,9,9,134.7,0,0,0,1,0,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,Enrolled +1,1,2,9238,1,1,121.0,1,19,19,191,171,119.3,1,0,1,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9119,1,1,136.0,1,1,2,5,4,122.7,1,0,0,1,1,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,Dropout +1,17,4,9254,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,1,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,4,9,100.0,0,0,0,0,0,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9254,1,1,160.0,1,1,3,3,3,142.5,1,0,0,0,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,138.0,1,1,19,7,8,129.3,1,0,0,1,0,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,90,90,100.0,0,0,0,1,1,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,148.0,1,1,37,9,7,143.3,0,0,0,1,0,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,19,38,4,10,130.0,1,0,0,1,0,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,19,37,9,7,110.0,1,0,0,1,1,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9254,1,1,131.0,1,4,3,7,4,126.1,1,0,0,1,0,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,Graduate +1,43,2,9500,1,1,136.0,1,38,38,9,5,131.3,0,0,0,1,0,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,119.0,1,1,1,4,10,125.0,0,0,0,1,1,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,Enrolled +1,17,2,9238,1,1,132.0,1,38,1,7,7,133.1,1,0,0,1,0,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,126.0,1,12,1,5,10,120.2,0,0,0,1,0,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,Enrolled +1,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,161.0,22,37,37,9,9,137.9,0,0,1,0,0,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,Graduate +1,17,2,9147,1,1,133.0,1,19,1,9,3,120.1,1,0,0,1,0,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9085,1,1,127.0,1,3,3,2,8,138.8,1,0,0,1,0,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,121.0,1,1,1,1,1,115.1,1,0,0,1,0,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9130,1,1,130.0,1,3,19,2,9,115.9,0,0,0,1,0,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +2,7,1,9991,0,3,140.0,1,34,34,99,99,140.0,1,0,0,0,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,113.2,0,0,0,1,0,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9500,1,1,137.0,1,1,1,9,9,127.9,1,0,0,1,0,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,Dropout +1,1,5,9500,1,1,130.0,1,19,37,9,7,127.6,1,0,0,1,0,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,133.1,1,1,38,3,7,121.7,0,0,0,1,0,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,130.0,1,3,1,4,1,130.0,1,0,0,0,0,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,107.0,1,2,12,3,10,104.2,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,9,113.5,0,0,0,1,0,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,145.0,1,19,37,4,8,136.8,1,0,0,1,0,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,120.0,1,19,38,5,6,112.3,0,0,0,1,0,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,133.1,1,34,34,0,0,125.3,0,0,0,1,1,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,Dropout +1,1,6,9853,1,1,136.0,1,1,19,5,5,122.0,0,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,121.0,1,4,1,2,3,120.7,1,0,0,1,0,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,1,1,9147,1,1,133.1,1,34,34,0,0,131.8,0,0,0,1,0,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,4,100.0,0,0,0,1,0,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,127.0,1,19,38,3,3,121.1,1,0,0,1,1,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/train_20260422_055912.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/train_20260422_055912.log new file mode 100644 index 0000000000000000000000000000000000000000..c168227bce3a9d23eb451d5b5832d66f1d9f57ff --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/train_20260422_055912.log @@ -0,0 +1,8 @@ +[ARF] Training on 3539 rows, 37 cols +Initial accuracy is 0.9618536309692003 +Iteration number 1 reached accuracy of 0.7558632382028821. +Iteration number 2 reached accuracy of 0.6717999434868607. +Iteration number 3 reached accuracy of 0.6685504379768296. +Iteration number 4 reached accuracy of 0.6524441932749364. +Iteration number 5 reached accuracy of 0.7085334840350381. +[ARF] Model saved -> /work/output-SpecializedModels/m5/arf/arf-m5-20260422_055912/arf_model.pkl diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/_bayesnet_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..a552a067648e18820812f9d37c1fe7d6ef6f1cec --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/_bayesnet_generate.py @@ -0,0 +1,43 @@ +import subprocess, sys, os + +pip_libs = "/pip_libs" +sys.path.insert(0, pip_libs) +os.environ["PYTHONPATH"] = pip_libs + os.pathsep + os.environ.get("PYTHONPATH", "") + +def _ensure_deps(): + try: + import synthcity + except ModuleNotFoundError: + print("[BayesNet] synthcity not found - installing to cache...") + subprocess.run( + [sys.executable, "-m", "pip", "install", + "--target", pip_libs, "synthcity==0.2.12", "numpy<2", "-q"], + check=True + ) + import shutil, glob + for pat in ["torch", "torch-*", "torchvision", "torchvision-*", + "torchvision.libs", "torchgen", "nvidia*", "triton*"]: + for p in glob.glob(os.path.join(pip_libs, pat)): + if os.path.isdir(p): shutil.rmtree(p) + else: os.remove(p) + if pip_libs not in sys.path: + sys.path.insert(0, pip_libs) + +_ensure_deps() + +import pickle, json as _json +with open("/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/bayesnet_model.pkl", "rb") as f: + plugin = pickle.load(f) +syn = plugin.generate(count=3539).dataframe() + +# Restore zero-variance columns that were dropped during training +const_path = "/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +if os.path.exists(const_path): + with open(const_path) as _f: + const_cols = _json.load(_f) + for col, val in const_cols.items(): + syn[col] = val + print(f"[BayesNet] Restored constant column '{col}' = {val}") + +syn.to_csv("/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/bayesnet-m5-3539-20260318_045048.csv", index=False) +print(f"[BayesNet] Generated 3539 rows -> /work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/bayesnet-m5-3539-20260318_045048.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/_bayesnet_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ddc73dcb3fa64bb97bc2b5e4db97e7c521df8d3a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/_bayesnet_train.py @@ -0,0 +1,62 @@ +import subprocess, sys, os + +pip_libs = "/pip_libs" +sys.path.insert(0, pip_libs) +os.environ["PYTHONPATH"] = pip_libs + os.pathsep + os.environ.get("PYTHONPATH", "") + +def _ensure_deps(): + try: + import synthcity + except ModuleNotFoundError: + print("[BayesNet] synthcity not found - installing to cache (first run, may take minutes)...") + # Install synthcity with numpy<2 to avoid conflicts + subprocess.run( + [sys.executable, "-m", "pip", "install", + "--target", pip_libs, "synthcity==0.2.12", "numpy<2", "-q"], + check=True + ) + # Remove torch/torchvision from pip_libs to avoid shadowing system versions + import shutil, glob + for pat in ["torch", "torch-*", "torchvision", "torchvision-*", + "torchvision.libs", "torchgen", "nvidia*", "triton*"]: + for p in glob.glob(os.path.join(pip_libs, pat)): + if os.path.isdir(p): shutil.rmtree(p) + else: os.remove(p) + if pip_libs not in sys.path: + sys.path.insert(0, pip_libs) + +_ensure_deps() + +from synthcity.plugins import Plugins +import pickle +import pandas as pd +from synthcity.plugins.core.dataloader import GenericDataLoader + +df = pd.read_csv("/work/DatasetNew/m5/m5-train.csv") +df = df.dropna(axis=1, how="all") + +# Drop zero-variance columns (only 1 unique value) to avoid +# synthcity encoder KeyError during generation +import json as _json +const_cols = {} +for col in list(df.columns): + nuniq = df[col].nunique() + if nuniq <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}' (value={const_cols[col]})") + +# Save constant columns info so generate can restore them +const_path = "/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w") as _f: + _json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +print(f"[BayesNet] Training on {len(df)} rows, {len(df.columns)} cols") + +loader = GenericDataLoader(df) +plugin = Plugins().get("bayesian_network") +plugin.fit(loader) + +with open("/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/bayesnet_model.pkl", "wb") as f: + pickle.dump(plugin, f) +print(f"[BayesNet] Model saved -> /work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/bayesnet_model.pkl") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/gen_20260318_045048.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/gen_20260318_045048.log new file mode 100644 index 0000000000000000000000000000000000000000..76518ec614a3861ab091fa98f1ec9233bc36c908 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/gen_20260318_045048.log @@ -0,0 +1,4 @@ +03/17/2026 20:51:15:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +03/17/2026 20:51:15:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +[KeOps] Warning : CUDA libraries not found or could not be loaded; Switching to CPU only. +[BayesNet] Generated 3539 rows -> /work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/bayesnet-m5-3539-20260318_045048.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/train_20260318_045012.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/train_20260318_045012.log new file mode 100644 index 0000000000000000000000000000000000000000..97c52265b4e11bc164b6197206472f49f64bd41b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/train_20260318_045012.log @@ -0,0 +1,5 @@ +[2026-03-17T20:50:38.251143+0000][1][CRITICAL] Error importing TabularGoggle: No module named 'dgl' +[2026-03-17T20:50:38.262603+0000][1][CRITICAL] module disabled: /pip_libs/synthcity/plugins/generic/plugin_goggle.py +[KeOps] Warning : CUDA libraries not found or could not be loaded; Switching to CPU only. +[BayesNet] Training on 3539 rows, 1 cols +[BayesNet] Model saved -> /work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260318_045012/bayesnet_model.pkl diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/_bayesnet_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..c0f5f65b156d94896a43bd24639158f6d33f54e9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/_bayesnet_generate.py @@ -0,0 +1,104 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(3539) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final.to_csv("/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet-m5-3539-20260422_060305.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet-m5-3539-20260422_060305.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/_bayesnet_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..06a11cdef725e8aabd7f54439f8ee728fa9f10b0 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/_bayesnet_train.py @@ -0,0 +1,118 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 +if _n_plan > 55: + max_bins = 4 +print(f"[BayesNet] max_bins={max_bins} (cols_in_df={_n_plan}, rows={_n_samples})") + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + uniques = sorted(s.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +network.fit(enc) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_coltypes.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..f2aafdca33ce2427ea01e88be49a7410e750b6fa --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_coltypes.json @@ -0,0 +1,153 @@ +{ + "columns": [ + { + "name": "Marital status", + "type": "continuous" + }, + { + "name": "Application mode", + "type": "continuous" + }, + { + "name": "Application order", + "type": "continuous" + }, + { + "name": "Course", + "type": "continuous" + }, + { + "name": "Daytime/evening attendance", + "type": "categorical" + }, + { + "name": "Previous qualification", + "type": "continuous" + }, + { + "name": "Previous qualification (grade)", + "type": "continuous" + }, + { + "name": "Nacionality", + "type": "continuous" + }, + { + "name": "Mother's qualification", + "type": "continuous" + }, + { + "name": "Father's qualification", + "type": "continuous" + }, + { + "name": "Mother's occupation", + "type": "continuous" + }, + { + "name": "Father's occupation", + "type": "continuous" + }, + { + "name": "Admission grade", + "type": "continuous" + }, + { + "name": "Displaced", + "type": "categorical" + }, + { + "name": "Educational special needs", + "type": "categorical" + }, + { + "name": "Debtor", + "type": "categorical" + }, + { + "name": "Tuition fees up to date", + "type": "categorical" + }, + { + "name": "Gender", + "type": "categorical" + }, + { + "name": "Scholarship holder", + "type": "categorical" + }, + { + "name": "Age at enrollment", + "type": "continuous" + }, + { + "name": "International", + "type": "categorical" + }, + { + "name": "Curricular units 1st sem (credited)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (enrolled)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (approved)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (grade)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (credited)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (approved)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (grade)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "type": "continuous" + }, + { + "name": "Unemployment rate", + "type": "continuous" + }, + { + "name": "Inflation rate", + "type": "continuous" + }, + { + "name": "GDP", + "type": "continuous" + }, + { + "name": "Target", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/gen_20260422_060305.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/gen_20260422_060305.log new file mode 100644 index 0000000000000000000000000000000000000000..26918994fbfe6190d48fabe538ecc3ec6a198bd3 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/gen_20260422_060305.log @@ -0,0 +1,48 @@ + +========== +== CUDA == +========== + +CUDA Version 12.8.1 + +Container image Copyright (c) 2016-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + +This container image and its contents are governed by the NVIDIA Deep Learning Container License. +By pulling and using the container, you accept the terms and conditions of this license: +https://developer.nvidia.com/ngc/nvidia-deep-learning-container-license + +A copy of this license is made available in this container at /NGC-DL-CONTAINER-LICENSE for your convenience. + +WARNING: The NVIDIA Driver was not detected. GPU functionality will not be available. + Use the NVIDIA Container Toolkit to start this container with GPU support; see + https://docs.nvidia.com/datacenter/cloud-native/ . + +/usr/local/lib/python3.10/dist-packages/pgmpy/estimators/__init__.py:4: FutureWarning: `pgmpy.estimators.StructureScore` is deprecated and will be removed in a future release. Use `pgmpy.structure_score` instead. + from .StructureScore import ( +ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. +synthcity 0.2.12 requires arfpy, which is not installed. +synthcity 0.2.12 requires be-great>=0.0.5; python_version >= "3.9", which is not installed. +synthcity 0.2.12 requires decaf-synthetic-data>=0.1.6, which is not installed. +synthcity 0.2.12 requires fastai<2.8, which is not installed. +synthcity 0.2.12 requires fastcore<1.8, which is not installed. +synthcity 0.2.12 requires fflows, which is not installed. +synthcity 0.2.12 requires geomloss, which is not installed. +synthcity 0.2.12 requires importlib-metadata, which is not installed. +synthcity 0.2.12 requires lifelines<0.30.0,>=0.29.0, which is not installed. +synthcity 0.2.12 requires monai, which is not installed. +synthcity 0.2.12 requires nflows>=0.14, which is not installed. +synthcity 0.2.12 requires opacus>=1.3, which is not installed. +synthcity 0.2.12 requires pycox, which is not installed. +synthcity 0.2.12 requires pykeops, which is not installed. +synthcity 0.2.12 requires redis, which is not installed. +synthcity 0.2.12 requires shap, which is not installed. +synthcity 0.2.12 requires tenacity, which is not installed. +synthcity 0.2.12 requires tsai; python_version > "3.7", which is not installed. +synthcity 0.2.12 requires xgbse>=0.3.1, which is not installed. +synthcity 0.2.12 requires networkx<3.0,>2.0, but you have networkx 3.4.2 which is incompatible. +synthcity 0.2.12 requires numpy<2.0,>=1.20, but you have numpy 2.2.6 which is incompatible. +synthcity 0.2.12 requires pgmpy<1.0, but you have pgmpy 1.1.0 which is incompatible. +synthcity 0.2.12 requires torch<2.3,>=2.1, but you have torch 2.8.0+cu128 which is incompatible. +synthcity 0.2.12 requires xgboost<3.0.0, but you have xgboost 3.2.0 which is incompatible. +WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +[BayesNet] Generated 3539 rows (requested 3539) -> /work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet-m5-3539-20260422_060305.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e6e31e70cde4c79c092d747472a17376f91780f7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..45a9229d5ad635de7c800ef30a840e846cc7785f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d434256d715033551bf4679f670924b1aaeb0b91 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "bayesnet", + "run_id": "bayesnet-m5-20260422_060152", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet-m5-3539-20260422_060305.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6fac645cff5faf677a6163d3b755eb8cb32230b7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3de3182a687f9ed58474b025442bd13ad476f173 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "bayesnet", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a22a371258ab8267b23b3b79730d7e0f64866e52 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,0,1,126.0,1,38,37,5,5,118.7,0,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,19,37,9,7,111.4,0,0,0,1,1,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,140.0,1,1,1,4,3,140.0,1,0,0,1,0,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,Graduate +1,1,2,9085,1,1,141.0,1,1,38,9,8,128.9,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,128.0,1,19,19,7,8,120.0,1,0,0,1,0,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,123.0,1,4,37,2,9,113.9,0,0,0,1,0,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,1,140.0,41,1,1,9,9,100.0,0,0,1,0,0,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,133.1,1,1,3,9,9,116.0,0,0,0,1,1,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,143.0,1,3,3,2,10,141.3,0,0,1,0,0,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,106.0,1,37,38,191,163,102.2,1,0,1,1,1,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,Enrolled +1,16,2,9085,1,1,136.0,1,37,37,9,9,123.4,1,0,0,1,0,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,125.0,1,38,38,9,9,125.4,0,0,1,0,0,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,Dropout +4,39,1,9773,1,12,120.0,1,37,37,4,9,130.0,0,0,0,0,1,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,Dropout +1,44,1,9853,1,39,150.0,1,3,37,2,7,150.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,145.0,1,1,19,9,9,129.3,0,0,1,1,0,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Graduate +1,44,1,9119,1,39,180.0,1,1,1,9,8,180.0,0,0,0,1,1,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,Enrolled +1,1,4,9085,1,1,135.0,1,38,37,9,9,132.6,1,0,0,1,0,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,130.0,1,3,1,3,6,130.0,1,0,1,1,1,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,182.0,1,19,1,5,7,156.8,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,142.0,1,19,38,7,10,128.4,1,0,0,1,0,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,19,133.1,1,37,37,9,4,103.5,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,1,1,3,3,119.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,44,1,9991,0,39,140.0,1,37,19,9,8,140.0,0,0,0,1,0,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,133.0,1,38,38,9,9,128.8,1,0,0,1,0,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,3,3,132,132,110.6,0,0,0,1,0,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,Enrolled +1,42,1,9773,1,1,133.1,1,19,6,4,3,120.0,0,0,0,1,1,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9147,1,1,160.0,1,37,37,9,7,110.0,0,0,0,1,1,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,100.0,1,19,37,5,5,120.7,0,0,0,1,0,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,136.0,1,19,19,9,9,140.0,1,0,0,1,0,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,135.0,1,3,3,2,2,132.9,1,0,0,0,0,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,Dropout +1,53,1,9003,1,42,130.0,1,1,38,9,6,128.5,0,0,0,1,1,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,140.0,1,37,37,9,9,140.0,0,0,0,1,1,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,124.0,1,19,37,5,7,119.1,0,0,0,1,1,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9556,1,1,140.0,1,37,38,9,9,106.0,1,0,1,0,0,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,Dropout +1,42,4,9500,1,6,133.0,1,1,19,2,9,127.8,1,0,0,1,0,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,130.0,1,19,19,90,90,122.0,0,0,0,1,0,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,125.0,1,37,19,9,9,122.4,1,0,0,1,1,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,3,110.0,1,3,19,4,6,150.0,0,0,0,1,1,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,123.0,1,19,19,1,1,114.6,0,0,0,1,0,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,131.0,1,38,38,9,9,126.5,0,0,0,1,0,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,133.1,1,38,19,132,103,146.0,0,0,1,1,0,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,3,3,2,2,124.9,1,0,0,1,0,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,136.0,1,3,4,2,2,133.9,0,0,0,0,1,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,2,1,4,6,140.0,0,0,0,1,1,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,111.0,1,19,19,9,9,114.2,1,0,0,1,0,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,130.0,1,19,38,7,7,120.2,1,0,0,1,0,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,Graduate +1,7,1,9670,1,3,110.0,1,27,37,3,3,110.0,1,0,0,1,1,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,142.0,1,38,19,7,10,128.4,0,0,0,1,0,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9773,1,1,158.0,1,1,38,4,7,157.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,127.0,1,1,33,3,3,129.8,0,0,0,0,1,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9773,1,1,140.0,1,34,37,0,0,102.5,0,0,0,1,0,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,130.0,1,1,38,5,7,122.0,1,0,0,1,1,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,145.0,1,19,1,6,5,127.9,1,0,0,1,0,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,132.0,1,38,38,9,8,122.6,1,0,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,37,37,9,7,129.9,1,0,0,1,0,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,121.0,1,1,1,4,4,114.9,0,0,0,1,1,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,Graduate +1,7,1,8014,0,3,140.0,1,1,1,4,4,140.0,0,0,0,1,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,137.0,1,1,19,4,4,125.3,0,0,0,1,1,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,Enrolled +1,18,1,9670,1,1,133.0,1,1,1,9,9,121.5,1,0,0,1,0,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,42,1,9500,1,1,100.0,1,3,37,2,6,130.0,1,0,0,1,0,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,19,38,9,8,140.9,0,1,0,1,0,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,133.1,1,37,37,9,9,120.0,0,0,0,0,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,8014,0,1,128.0,1,38,38,0,0,122.1,0,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9119,1,1,130.0,1,1,3,4,2,123.0,0,0,0,1,1,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,121.0,1,19,38,7,9,123.8,0,0,0,1,0,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,9070,1,1,122.0,1,1,1,4,8,123.8,1,0,1,0,0,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,12,133.1,1,37,37,9,9,133.8,1,0,0,1,1,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,3,3,2,2,149.0,0,0,0,0,1,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,1,38,1,9,140.0,0,0,0,1,1,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,Dropout +1,1,5,9773,1,1,135.0,1,37,1,5,5,124.9,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,9119,1,1,132.0,1,37,37,9,6,119.4,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,9670,1,3,110.0,1,37,37,7,7,110.0,0,0,0,1,0,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,Graduate +1,17,5,9119,1,1,118.0,1,1,19,9,9,120.5,1,0,0,1,1,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,19,133.1,1,37,19,9,4,140.0,0,0,1,1,0,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,126.0,1,1,1,4,7,115.2,0,0,0,0,0,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9254,1,1,158.0,1,19,39,4,8,153.5,1,0,0,1,0,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,129.0,1,37,38,7,7,122.0,1,0,0,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,12,133.1,1,37,1,9,4,138.4,0,0,0,1,1,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,Dropout +1,7,1,9238,1,3,130.0,1,1,1,4,10,125.1,0,0,1,0,0,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,1,110.0,1,40,1,5,6,142.5,0,0,1,0,1,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,Dropout +1,16,1,9070,1,1,125.0,1,1,1,4,4,120.8,1,0,0,1,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,128.0,1,19,1,5,4,135.7,1,0,0,1,0,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,142.0,1,19,19,9,9,139.9,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,123.0,1,3,12,2,9,116.4,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,125.0,1,19,1,9,10,123.6,1,0,0,1,0,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,12,133.1,1,12,12,9,9,120.0,0,0,0,1,1,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,Dropout +1,17,5,9500,1,1,144.0,1,19,38,9,5,130.7,1,0,0,1,0,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,Graduate +1,17,6,9500,1,1,136.0,1,19,38,9,3,132.5,1,0,0,1,0,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,Graduate +2,43,1,9991,0,1,140.0,1,38,37,5,6,117.3,0,0,0,1,0,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,43,1,9500,1,1,140.0,1,37,37,9,10,105.7,1,0,0,1,0,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,19,133.1,1,1,5,4,3,100.0,0,0,0,1,0,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,3,9238,1,1,143.0,1,37,38,0,7,126.9,1,0,0,1,0,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,138.0,1,37,1,9,9,123.7,1,0,1,1,0,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,34,34,0,0,112.5,0,0,0,1,0,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,141.0,1,3,2,2,3,130.2,1,0,0,1,0,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,139.0,1,1,19,3,9,134.9,1,0,0,1,1,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,3,102.0,1,0,0,1,0,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,153.0,1,38,37,7,8,147.9,0,0,0,1,0,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,Graduate +1,17,3,9085,1,1,121.0,1,38,1,9,9,111.9,1,0,0,1,1,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,149.0,1,37,37,9,6,130.5,1,0,0,1,0,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,Graduate +1,17,5,9773,1,1,139.0,1,38,1,4,4,123.6,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9119,1,1,120.0,1,3,1,123,152,116.9,0,0,0,1,1,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9238,1,1,130.0,1,1,19,4,5,124.8,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,Graduate +1,53,1,9085,1,42,150.0,1,1,19,4,8,145.2,1,0,0,1,0,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,Graduate +4,39,1,9130,1,1,140.0,1,37,37,6,7,150.0,1,0,0,1,1,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,4,171,1,1,133.1,1,1,1,9,10,110.0,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,124.0,1,19,1,9,9,121.2,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9119,1,39,130.0,1,38,19,9,5,130.0,1,0,0,1,1,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,Enrolled +4,7,1,9500,1,3,140.0,1,37,38,9,7,140.0,0,0,0,1,1,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,37,5,9,118.4,0,0,0,1,1,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,33,1,1,130.0,1,19,19,9,9,117.7,0,0,0,1,0,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,Dropout +4,7,1,9500,1,40,130.0,1,19,19,4,6,130.0,0,0,0,0,0,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,144.0,13,3,3,6,6,137.6,1,0,0,1,0,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,132.0,1,38,37,9,9,122.9,0,0,0,0,1,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,Dropout +1,1,2,9773,1,1,124.0,1,3,3,3,4,114.6,1,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,100.0,1,38,38,9,10,100.0,0,0,0,1,0,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,Graduate +1,18,2,9853,1,1,120.0,1,19,37,9,4,113.7,1,0,1,0,0,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9500,1,1,136.0,1,3,3,2,2,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,Graduate +1,39,1,9130,1,1,133.1,1,3,34,3,0,120.0,0,0,1,0,1,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,140.0,1,1,19,3,3,140.0,1,0,0,1,0,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9085,1,1,128.0,1,38,37,9,9,116.5,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,132.0,1,6,6,0,4,119.1,1,0,1,1,0,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,Dropout +1,43,1,9500,1,6,134.0,1,1,37,9,9,120.4,1,0,0,1,0,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,34,34,0,0,100.0,0,0,0,1,0,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,122.0,1,3,1,4,7,116.1,1,0,0,1,0,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,120.0,1,37,37,9,9,117.0,1,0,0,1,0,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,5,9254,1,1,126.0,1,19,19,4,7,116.6,1,0,0,1,0,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,4,160.0,1,3,3,2,1,125.0,0,0,0,1,1,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,130.0,1,37,37,0,0,117.8,1,0,0,1,0,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,169.0,1,19,37,9,7,176.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9500,1,1,137.0,1,3,38,2,4,121.0,0,0,0,1,0,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,132.0,1,19,1,9,5,123.4,0,0,0,1,0,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,3,105.0,1,37,37,7,8,129.7,1,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9254,1,1,119.0,1,19,19,9,9,118.7,1,0,0,1,1,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,120.0,1,37,37,9,6,117.0,0,0,0,1,1,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,6,130.0,0,0,0,1,1,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,143.0,1,19,37,9,9,126.2,1,0,0,1,0,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,39,150.0,1,19,19,9,9,150.3,0,0,0,1,1,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9130,1,1,143.0,1,3,3,2,2,131.8,1,0,1,0,0,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,Enrolled +1,44,1,9238,1,39,140.0,1,19,19,8,8,144.3,1,0,0,1,0,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,131.0,1,19,19,4,4,122.0,1,0,0,1,0,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,Enrolled +1,17,2,9500,1,1,127.0,1,3,3,1,10,118.8,1,0,0,1,1,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,146.0,1,37,38,9,7,128.5,0,0,1,1,0,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,3,140.0,1,39,39,9,4,140.0,0,0,0,1,1,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,123.0,1,38,19,4,90,127.2,0,0,1,0,1,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,5,128.2,0,0,1,0,1,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,126.0,1,1,1,9,9,127.4,1,0,0,1,0,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,37,37,9,9,150.0,0,0,0,1,0,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,130.0,1,38,19,9,6,120.0,1,0,0,1,1,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,103.0,1,19,37,7,9,104.1,0,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,145.0,1,3,19,1,5,130.0,1,0,0,1,0,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,123.0,1,1,38,9,9,116.7,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,5,1,120.0,1,0,0,1,0,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,141.0,1,19,1,90,90,128.0,0,0,0,1,1,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,124.0,1,3,3,2,2,119.1,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,4,9853,1,1,116.0,1,3,38,3,8,110.4,1,0,0,1,0,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,119.0,1,38,19,9,9,115.2,0,0,0,1,1,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,37,37,7,7,113.9,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +2,43,1,9147,1,2,120.0,1,37,37,9,9,122.8,0,0,1,0,0,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,6,122.0,1,19,19,9,9,126.2,1,0,0,1,0,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,122.0,1,1,1,2,5,113.3,1,0,0,1,0,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,142.0,1,1,1,9,9,127.7,1,0,0,1,1,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,116.0,1,1,1,3,3,120.9,0,0,0,1,1,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,128.0,1,1,19,4,7,125.6,1,0,0,1,1,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,Graduate +1,7,1,9991,0,40,130.0,1,1,3,4,2,130.0,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,1,19,9,7,120.0,0,0,0,1,1,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,137.0,1,38,37,9,9,122.3,0,0,0,1,1,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,122.0,1,41,1,4,3,119.6,1,0,0,1,0,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,157.0,1,38,37,9,5,137.8,0,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9130,1,1,132.0,1,19,38,9,9,130.4,1,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Graduate +4,43,1,8014,0,12,133.1,1,34,34,0,0,106.0,1,0,0,1,0,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9130,1,1,127.0,1,3,1,2,1,116.5,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,8014,0,1,125.0,1,37,37,5,6,122.2,1,0,1,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9556,1,1,128.0,1,38,38,7,8,123.5,1,0,0,1,0,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,Enrolled +1,43,1,9130,1,1,156.0,1,19,1,9,4,156.0,0,0,1,0,1,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,Dropout +1,7,1,9130,1,3,140.0,1,19,38,9,9,140.0,1,0,0,1,0,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,8014,0,1,123.0,1,34,37,9,90,121.3,1,0,0,1,0,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,19,133.1,1,19,37,7,90,104.0,0,0,0,1,0,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,18,4,9254,1,1,106.0,1,19,37,7,7,106.0,1,0,0,1,1,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,119.0,1,37,37,4,6,113.2,0,0,1,1,0,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,19,19,9,9,100.0,0,0,0,1,0,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,145.0,1,3,1,4,3,149.9,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,166.0,1,19,37,4,8,146.4,0,0,0,1,1,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,145.0,1,38,37,5,5,142.2,0,0,0,1,0,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,156.0,1,19,38,9,1,153.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9853,1,1,117.0,1,19,38,4,0,113.5,1,0,0,1,0,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,138.0,1,37,19,9,9,127.8,1,0,0,1,0,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,40,130.0,1,1,1,4,4,190.0,1,0,0,1,0,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,Graduate +1,17,5,9070,1,1,131.0,1,37,37,9,9,126.1,1,0,0,0,0,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.1,1,19,37,9,9,95.0,1,0,1,0,0,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,143.0,1,1,38,8,8,136.7,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Dropout +1,42,1,8014,0,1,120.0,1,37,38,90,7,120.0,1,0,0,1,0,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,121.0,1,19,19,5,8,117.5,1,0,0,1,0,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,160.0,1,3,1,6,6,116.3,1,0,0,1,0,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,134.0,1,1,38,4,5,122.8,0,0,0,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,7,1,8014,0,3,120.0,1,19,37,5,3,121.3,0,0,0,1,0,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,134.0,1,38,19,9,4,128.4,1,0,0,1,0,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,130.0,1,19,1,7,4,117.8,1,0,0,1,1,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9130,1,1,132.0,1,1,1,3,3,143.9,1,0,0,1,1,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,130.0,1,19,1,9,4,101.3,1,0,0,1,1,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,135.0,1,37,19,5,10,121.0,0,0,1,1,0,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9991,0,39,120.0,1,37,37,7,7,120.0,1,0,0,1,0,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,133.1,1,3,3,2,3,135.0,0,0,0,1,0,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,110.0,1,19,19,9,7,105.8,1,0,0,1,1,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,160.0,1,1,38,4,10,144.3,1,0,0,1,0,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +4,39,1,9254,1,1,120.0,1,37,37,9,8,95.0,0,0,0,1,0,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,137.0,1,19,19,7,7,120.8,1,0,0,1,0,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,144.0,1,19,38,4,8,141.3,1,0,0,1,0,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,148.0,1,19,1,3,9,140.0,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,128.0,1,38,38,7,7,131.5,0,0,0,1,0,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,128.0,1,38,19,191,175,118.6,1,0,0,1,0,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,122.0,1,3,38,123,171,116.1,1,0,1,1,1,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9773,1,1,128.0,1,38,38,6,3,116.5,0,0,0,1,1,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,97.0,1,1,19,2,7,98.1,1,0,0,1,0,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,53,1,9991,0,1,140.0,1,38,38,191,193,135.0,0,0,1,1,0,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,Enrolled +1,1,2,9773,1,1,122.0,1,37,37,9,9,130.8,1,0,0,1,0,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,117.9,0,0,0,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9991,0,1,100.0,1,37,19,9,4,130.0,0,0,0,1,1,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,Dropout +1,17,6,9670,1,1,125.0,1,38,1,9,7,125.0,1,0,0,1,1,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,Graduate +2,7,1,9070,1,43,140.0,1,37,1,9,7,140.0,0,0,0,1,0,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,Graduate +1,7,1,9254,1,3,110.0,1,19,19,3,3,110.0,0,0,0,1,1,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9500,1,1,135.0,1,19,1,5,4,127.3,1,0,0,1,0,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,Graduate +1,17,4,9238,1,1,129.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,8,9,144.9,1,0,1,0,0,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9500,1,1,136.0,1,1,1,4,4,123.8,0,0,0,1,0,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,Graduate +4,43,1,9991,0,1,140.0,1,37,37,5,5,149.8,0,0,0,1,1,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,150.0,1,38,19,9,9,137.8,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +5,39,1,9147,1,1,180.0,1,1,1,4,8,140.5,0,0,1,0,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,131.0,1,19,19,3,7,127.9,1,0,0,1,0,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,110.0,1,1,1,4,4,99.0,0,0,0,1,1,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,Enrolled +1,39,1,9070,1,1,139.3,1,38,38,5,5,117.5,0,0,0,1,1,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9130,1,1,147.0,1,4,1,2,10,141.8,1,0,0,1,0,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,Graduate +2,44,1,8014,0,39,150.0,1,1,1,5,5,154.0,0,0,0,1,1,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,133.1,1,1,1,4,5,131.0,1,0,0,1,0,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,132.0,1,1,38,9,7,127.1,1,0,0,1,0,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,4,9147,1,1,125.0,1,19,19,5,5,118.0,1,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,108.0,1,19,1,9,3,107.8,1,0,0,1,0,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,143.0,1,37,37,9,8,130.6,1,0,0,1,0,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,126.0,1,37,1,7,7,118.7,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9238,1,1,140.0,1,1,44,4,2,124.6,1,0,1,0,1,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,112.0,1,9,22,4,3,106.1,0,0,0,1,0,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,130.0,1,37,37,191,183,163.7,0,0,0,1,0,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,Enrolled +4,39,1,9500,1,19,133.1,1,37,37,6,6,117.8,0,0,1,0,0,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,Dropout +1,18,2,9853,1,1,120.0,1,1,1,9,0,115.8,0,0,0,1,0,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,118.0,1,38,19,9,3,111.0,1,0,0,1,0,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,16,1,171,1,1,150.0,1,37,37,9,9,134.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,133.1,6,37,37,9,6,100.0,0,0,0,1,0,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,137.0,1,1,37,5,9,131.4,1,0,0,1,1,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Dropout +2,44,1,9991,0,39,130.0,1,1,37,4,9,130.0,0,0,0,0,0,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9238,1,1,136.0,1,19,19,4,7,121.7,1,0,0,1,0,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,133.1,1,1,38,9,7,110.5,0,0,0,1,0,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,Graduate +1,39,1,9556,1,19,100.0,1,37,38,9,9,120.0,0,0,0,1,0,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,142.0,1,1,38,3,5,146.9,1,0,0,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,127.0,1,19,19,7,8,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,130.0,1,1,38,7,8,135.6,1,0,0,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,137.0,1,19,38,9,3,125.0,1,0,0,1,0,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,135.0,1,37,37,7,7,124.0,1,0,0,1,0,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,Enrolled +2,39,1,9556,1,1,100.0,6,38,38,9,9,130.0,0,0,0,1,0,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,Graduate +1,42,1,9003,1,39,120.0,1,3,1,2,6,128.2,1,0,0,1,1,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,Enrolled +1,1,3,9773,1,1,121.0,1,19,19,3,3,116.1,0,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,136.0,1,1,19,4,9,131.1,1,0,0,1,0,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,141.0,1,3,19,2,10,126.8,1,0,0,1,1,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9773,1,1,136.0,1,38,38,9,9,132.9,1,0,0,1,1,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,133.1,1,1,1,90,1,120.0,1,0,1,0,1,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,Dropout +1,17,1,8014,0,1,132.0,1,37,19,5,5,121.2,0,0,0,1,0,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,2,9500,1,6,119.1,1,1,19,4,10,119.1,0,0,0,1,1,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,153.0,1,1,19,9,4,139.7,1,0,0,1,0,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,150.0,1,1,1,3,3,143.4,0,0,0,0,1,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Enrolled +1,1,4,9500,1,1,130.0,1,19,19,9,7,119.9,1,0,0,1,0,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,6,140.0,0,0,0,1,1,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,115.0,1,38,37,5,5,115.0,0,0,0,1,0,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,150.0,1,19,37,5,4,142.7,1,0,0,1,0,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,133.1,1,34,5,0,1,118.5,1,0,0,1,0,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9130,1,1,125.0,1,3,3,2,2,132.4,0,0,0,1,1,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,116.0,1,37,37,9,9,110.8,0,0,0,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,Enrolled +1,43,1,9070,1,1,115.0,1,12,12,1,10,115.0,0,0,1,1,1,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,125.0,1,37,37,9,9,118.8,0,0,0,1,1,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,130.0,1,3,1,2,5,133.8,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9500,1,1,141.0,1,12,1,5,5,133.0,1,0,0,1,0,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,141.0,1,38,38,7,10,139.8,1,0,0,1,0,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,Graduate +1,51,1,9147,1,19,133.1,1,19,19,9,5,112.1,0,0,1,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,132.0,1,19,2,9,3,126.0,1,0,0,1,0,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,131.0,1,2,38,4,5,132.3,1,0,0,1,0,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,124.0,1,1,19,9,8,116.7,1,0,0,1,0,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,180.0,103,5,3,1,1,183.5,1,0,0,1,0,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,10,1,9773,1,1,151.0,22,38,37,0,5,151.0,1,0,0,1,0,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,135.0,1,19,19,9,10,133.4,1,0,0,1,0,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,135.0,1,3,3,2,2,137.1,1,0,0,1,0,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.1,1,38,38,5,10,101.0,0,0,0,1,1,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,40,130.0,1,3,2,3,2,160.0,1,0,0,1,0,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,18,1,9773,1,1,124.0,1,38,37,9,8,126.8,0,0,0,1,1,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,140.0,1,19,37,9,9,125.5,1,0,0,1,0,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,1,133.1,1,37,38,9,8,118.9,0,0,0,1,0,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9991,0,1,160.0,1,34,34,0,0,161.8,1,0,1,1,1,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,140.0,1,1,38,4,7,100.0,0,0,0,1,0,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Graduate +1,44,1,9070,1,39,120.0,1,2,19,3,8,120.0,0,0,0,1,1,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,124.0,1,38,19,3,10,128.6,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,Enrolled +1,44,1,9085,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,0,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,145.0,1,1,19,4,3,133.5,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,Graduate +4,39,1,9085,1,1,110.0,1,37,37,90,90,110.0,0,0,0,0,0,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,134.0,1,19,37,4,7,133.5,1,0,0,1,0,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,132.0,1,1,19,4,3,126.4,1,0,0,1,0,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,19,133.1,1,4,1,2,4,120.0,0,0,0,1,1,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,151.0,1,40,4,2,2,144.5,1,0,0,1,0,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +2,39,1,9147,1,19,133.1,1,37,19,9,3,128.0,0,0,0,1,1,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,Dropout +1,39,2,8014,0,1,141.0,1,37,37,9,9,150.5,0,0,0,1,0,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,122.0,1,19,19,4,6,119.9,0,0,0,1,0,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,9,133.1,1,34,34,0,0,110.0,1,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,1,9500,1,1,128.0,1,19,1,9,4,125.8,0,0,0,1,0,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,3,9773,1,1,133.1,1,38,38,5,5,131.3,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,16,6,9147,1,1,128.0,1,37,37,9,9,116.5,1,0,0,1,0,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,1,147.0,1,34,34,90,90,111.7,1,0,0,1,0,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,1,19,6,8,122.0,0,0,0,1,0,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,Graduate +2,39,2,9254,1,19,133.1,1,19,19,9,5,123.5,0,0,0,1,1,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,114.0,1,37,37,9,9,130.0,0,0,0,1,1,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,Graduate +2,39,1,8014,0,1,100.0,1,37,38,9,9,141.5,0,0,0,1,0,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9556,1,1,118.0,1,38,38,5,5,117.8,1,0,0,1,0,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9773,1,19,133.1,1,19,19,171,163,104.0,0,0,1,0,0,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,39,110.0,1,19,37,9,8,127.5,0,0,1,0,0,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,1,120.0,1,37,38,9,8,100.0,0,0,1,1,1,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,133.0,1,19,3,9,9,123.2,1,0,0,1,1,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,133.1,1,34,34,0,0,142.8,0,0,0,1,1,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9119,1,1,120.0,1,34,34,0,0,140.0,1,0,0,1,1,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,120.0,1,3,37,4,7,115.1,1,0,0,1,0,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,Graduate +1,51,1,9119,1,1,140.0,1,1,19,4,4,150.0,0,0,0,1,1,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,Dropout +1,43,1,9556,1,1,149.0,1,1,1,4,8,140.2,1,1,0,1,0,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,160.0,1,37,19,9,10,160.0,1,0,0,1,0,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,115.0,1,19,38,7,8,116.4,1,0,0,1,0,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,140.0,1,4,4,2,10,140.0,1,0,0,1,1,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,19,133.1,1,1,1,4,4,130.0,0,0,0,1,1,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,5,9773,1,1,146.0,1,1,37,5,5,146.7,1,0,0,1,1,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,142.0,1,1,38,9,9,127.0,0,0,1,0,1,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,130.0,1,37,37,9,7,138.0,0,0,0,1,0,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9773,1,9,133.1,1,38,1,5,4,102.0,1,0,0,1,1,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,125.0,1,19,19,7,5,118.0,1,0,0,1,0,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,145.0,1,19,38,4,10,131.7,1,0,0,1,0,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,133.1,1,37,19,9,9,114.0,0,0,0,1,0,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,140.0,1,38,37,4,10,140.0,0,0,1,0,0,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,128.0,1,1,19,4,4,124.5,0,0,0,1,1,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,126.0,1,37,19,9,8,116.9,1,0,0,1,0,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,1,9773,1,1,177.0,1,2,1,123,135,155.7,0,0,1,1,0,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,135.0,1,37,1,5,5,126.8,1,0,0,1,0,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,125.0,1,4,3,1,1,119.8,0,0,0,1,0,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,Graduate +1,53,1,9147,1,42,130.0,1,1,19,143,172,133.8,1,0,0,1,0,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,Graduate +1,17,3,9670,1,1,123.0,1,38,38,7,8,118.8,1,1,0,1,0,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,112.0,1,38,19,9,5,113.8,1,0,0,1,0,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,124.0,1,34,34,0,0,129.3,0,0,0,1,0,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9773,1,12,120.0,1,1,1,9,9,129.8,1,0,0,1,1,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,111.0,1,19,19,9,9,110.0,1,0,0,1,0,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,163.0,1,37,37,5,6,155.0,0,0,0,1,0,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,145.0,1,19,1,9,5,145.0,0,0,0,1,0,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,160.0,1,38,37,9,7,155.5,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,137.0,1,1,3,7,3,131.1,1,0,1,1,0,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,133.1,1,38,38,9,9,113.5,0,0,0,1,0,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,130.0,1,1,1,9,9,131.8,0,0,0,1,1,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,137.0,1,38,37,7,7,126.0,1,0,0,1,0,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,160.0,1,19,1,9,5,107.8,1,0,0,0,1,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9070,1,39,120.0,1,3,38,3,9,120.0,0,0,0,1,1,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,145.0,1,3,3,2,1,129.3,1,0,0,1,0,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,117.0,1,38,19,5,7,118.1,0,0,0,1,1,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,130.0,1,1,1,4,3,130.0,1,0,0,1,0,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,Enrolled +2,43,1,9238,1,12,100.0,1,37,37,9,9,134.4,0,0,0,1,0,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,Graduate +2,43,1,8014,0,14,133.1,1,34,34,0,0,100.0,0,0,0,0,0,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,Dropout +1,17,4,9254,1,1,122.0,1,1,1,4,2,116.1,1,0,0,1,1,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,4,9254,1,1,110.0,1,37,37,9,7,113.2,1,0,0,1,0,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,131.0,1,38,37,4,9,131.7,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,1,19,4,10,150.0,0,0,0,1,1,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,142.0,1,19,38,9,7,127.3,0,0,0,1,1,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,Enrolled +1,7,1,9556,1,43,160.0,1,38,19,9,9,160.0,0,0,0,1,1,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,1,1,9853,1,1,130.0,1,19,12,9,4,133.2,1,0,0,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,43,1,9119,1,1,130.0,1,37,38,9,9,120.0,0,0,1,0,0,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,42,1,3,7,110.5,0,0,0,1,1,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +2,39,1,9003,1,1,130.0,1,1,19,4,9,152.4,1,0,0,1,0,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,Graduate +1,16,1,171,1,1,155.0,1,1,3,5,10,167.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,3,9254,1,1,114.0,26,38,3,9,3,127.3,1,0,1,0,0,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,37,37,9,9,125.4,1,0,0,1,1,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,5,9773,1,1,127.0,1,38,1,4,5,121.1,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Enrolled +1,17,2,171,1,1,130.0,41,1,1,2,3,148.6,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9130,1,1,120.0,1,1,19,9,9,120.0,1,0,0,1,0,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,133.0,1,1,37,4,10,143.2,0,0,0,1,0,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,38,38,9,7,125.2,1,0,0,1,0,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,102.0,1,37,37,7,7,102.0,0,0,0,1,0,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,19,38,5,7,128.5,1,0,0,1,0,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,140.0,1,38,38,7,7,133.2,1,0,0,1,0,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,123.0,1,1,1,3,3,120.9,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,2,9500,1,1,135.0,1,19,1,5,5,128.9,1,0,0,1,0,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,1,3,137.7,0,0,0,0,0,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,158.0,1,3,3,3,3,151.4,1,0,0,0,0,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,37,1,9,3,120.0,0,0,1,0,1,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,51,1,9773,1,1,135.0,1,1,42,5,3,110.0,1,0,0,1,1,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,143.0,1,3,38,2,9,144.1,1,0,0,1,0,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,Enrolled +1,1,3,9070,1,1,132.0,1,1,3,9,7,126.1,1,0,0,1,0,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,141.0,1,19,1,9,10,126.8,1,0,0,1,0,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,130.0,1,38,38,6,9,126.3,1,0,0,1,0,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,1,140.0,1,1,1,4,5,140.0,0,0,0,1,1,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,Enrolled +1,39,2,9147,1,1,130.0,1,19,19,5,9,121.5,0,0,0,0,1,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,51,1,8014,0,19,133.1,1,37,37,9,9,104.0,0,0,1,1,0,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,120.0,1,3,4,2,2,120.0,0,0,0,1,1,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,Graduate +1,1,4,171,1,1,131.0,1,19,19,4,4,119.8,1,1,0,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,18,3,9070,1,1,134.0,1,1,1,3,4,121.4,0,0,0,1,0,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,140.0,1,37,37,9,9,118.2,0,0,0,1,1,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,130.0,1,19,37,9,9,131.8,1,0,0,1,0,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,134.0,1,38,19,3,10,121.2,0,0,0,1,0,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,Graduate +1,43,2,9500,1,1,120.0,1,41,3,2,2,112.7,0,0,0,1,0,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,134.0,1,1,19,4,9,129.8,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,133.0,1,19,1,4,5,127.1,1,0,0,1,0,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,148.0,1,38,37,5,9,137.8,1,0,0,1,0,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,129.0,1,37,37,9,7,117.8,0,0,0,1,0,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,Enrolled +4,39,1,8014,0,3,100.0,1,37,37,9,9,130.0,0,0,0,1,0,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,145.0,1,1,40,9,2,129.6,0,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,4,9254,1,1,124.0,1,1,1,4,4,122.3,1,0,0,1,0,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Dropout +2,43,2,9147,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,Graduate +1,51,1,9556,1,1,131.0,1,1,37,152,193,126.6,1,0,0,1,1,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,44,1,9085,1,39,110.0,1,3,5,2,2,110.0,0,0,0,1,1,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,15,1,9147,1,1,140.0,26,37,2,6,4,140.0,0,0,1,1,1,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,Graduate +2,51,1,9853,1,1,130.0,1,37,37,7,8,120.3,0,0,0,1,0,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,19,133.1,1,37,37,6,6,139.0,0,0,0,1,1,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9670,1,1,120.0,1,37,37,7,7,111.3,1,0,0,1,1,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,3,120.0,1,37,37,7,7,120.0,0,0,0,1,0,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,Dropout +1,17,3,9147,1,1,147.0,1,19,38,5,7,132.3,1,0,0,1,0,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,3,9130,1,1,167.0,1,37,37,90,90,159.3,0,0,0,1,0,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,132.0,1,1,1,4,9,136.6,1,0,0,1,1,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,Enrolled +1,5,2,9853,1,1,124.0,1,19,19,3,3,113.9,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,3,130.0,1,3,1,2,9,130.0,0,0,0,1,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,160.0,1,1,38,4,7,146.5,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,141.0,1,19,3,4,0,137.9,1,0,0,0,1,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,19,37,8,7,100.0,1,0,0,1,0,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,134.0,1,38,19,7,7,124.2,0,0,0,1,0,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,150.0,1,1,37,4,8,145.6,1,0,0,1,0,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,146.0,1,3,1,3,10,138.7,0,0,0,1,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9991,0,40,133.1,1,1,37,4,1,100.0,0,0,0,1,0,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,127.0,1,38,19,9,10,117.9,0,0,0,1,0,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,131.0,1,37,38,9,7,137.0,0,0,0,1,0,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Graduate +1,7,1,9238,1,3,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,Graduate +2,39,1,9085,1,1,133.1,1,37,37,90,90,110.3,0,0,0,1,1,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,125.0,1,38,1,3,10,114.5,1,0,0,1,1,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,152.0,1,19,19,9,5,154.1,0,0,1,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,120.0,1,37,37,4,5,120.0,0,0,1,0,0,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,Dropout +2,39,1,8014,0,1,146.0,1,37,37,9,8,120.5,0,0,0,1,0,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,39,1,9119,1,12,133.1,1,34,34,0,0,95.1,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,128.0,1,19,37,9,8,116.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9307cf4b524ffa38ff4a36db610667ac23d91634 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/train.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,1,1,127.0,1,1,1,9,6,110.0,0,0,1,0,1,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9773,1,1,122.0,1,38,37,5,3,119.6,1,0,0,1,0,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,6,9147,1,1,121.0,1,3,19,4,5,116.8,0,0,0,1,1,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,158.0,1,38,37,5,5,140.2,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,19,19,9,7,131.7,1,0,0,1,0,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,Graduate +1,1,3,9085,1,1,133.0,1,1,38,9,90,128.2,0,0,0,1,0,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,122.0,1,1,19,9,9,120.3,1,0,0,1,1,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,Dropout +1,43,1,9119,1,1,130.0,1,1,1,9,2,128.0,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,3,9254,1,1,122.0,1,1,1,4,4,126.6,0,0,0,0,0,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,1,100.0,1,37,37,9,9,133.0,0,0,0,1,1,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,44,1,9119,1,39,130.0,1,19,3,3,4,130.0,0,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9085,1,39,140.0,1,1,1,4,7,140.0,1,0,1,1,0,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9070,1,1,130.0,1,37,37,9,9,123.7,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +4,1,1,9991,0,1,130.0,1,37,37,9,9,118.1,0,0,1,0,0,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9500,1,1,190.0,108,3,2,122,4,190.0,1,0,0,1,0,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,102.0,1,1,19,9,5,100.6,1,0,0,1,0,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,3,120.0,1,19,3,4,2,120.0,1,0,0,1,0,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,130.0,1,38,19,9,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,111.0,1,3,4,4,3,108.2,1,0,0,1,0,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9119,1,1,160.0,1,1,38,4,7,112.0,0,0,0,0,1,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,149.0,1,19,1,4,4,134.8,0,0,0,1,0,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,135.0,1,19,38,3,9,136.1,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,2,9500,1,1,120.0,1,37,34,90,0,121.5,0,0,1,1,0,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,147.0,1,12,19,9,3,151.6,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,128.0,1,37,37,9,9,123.5,1,0,0,1,1,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,2,9070,1,1,129.0,1,1,1,4,9,132.9,1,0,0,1,1,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,Enrolled +1,17,2,9500,1,1,138.0,1,1,38,5,8,132.8,1,0,0,1,0,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,134.0,1,19,37,9,9,131.6,1,1,0,1,0,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,130.0,1,37,37,9,9,122.0,1,0,0,1,0,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,1,0,0,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,2,9085,1,1,130.0,1,37,19,9,8,129.0,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,Enrolled +1,17,5,9119,1,1,126.0,1,38,38,5,9,116.9,1,0,1,1,1,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,37,38,5,6,140.0,1,0,0,1,0,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,18,4,9853,1,1,123.0,1,19,38,4,10,123.7,1,0,0,1,0,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,118.0,1,4,3,2,3,110.7,1,0,0,1,0,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,2,130.0,1,37,37,5,7,147.5,0,0,0,1,0,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,146.0,1,4,1,2,3,140.0,1,0,0,1,0,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,Graduate +1,44,1,9003,1,39,160.0,1,37,38,9,7,160.0,0,0,0,1,0,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,7,0,9003,1,3,130.0,1,1,37,4,9,130.0,1,0,0,1,0,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,19,133.1,1,34,34,99,99,96.0,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,136.0,1,37,37,7,7,140.9,1,0,0,1,1,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,1,9853,1,1,127.0,1,1,1,5,7,121.4,1,0,0,1,0,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,134.0,1,3,19,2,10,128.8,0,0,0,1,0,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,140.0,1,1,3,4,2,142.8,1,0,0,0,0,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,126.3,0,0,0,1,1,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.1,1,19,1,1,3,101.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9147,1,1,122.0,1,1,38,1,7,118.9,0,0,0,1,1,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,107.0,1,19,37,7,7,103.5,1,0,0,1,0,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,156.0,1,38,37,9,9,156.3,0,0,0,1,1,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,128.0,1,1,1,9,9,120.0,1,0,0,1,0,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9119,1,1,127.0,1,19,1,9,10,121.1,1,0,0,1,1,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,4,160.0,1,3,3,4,2,180.4,0,0,1,1,1,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,Dropout +1,43,1,9670,1,1,132.0,1,3,19,4,8,120.5,0,0,0,1,1,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,134.0,1,1,19,4,5,122.5,1,0,0,1,0,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,142.0,1,1,19,4,4,128.0,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,133.0,1,2,37,9,7,125.7,1,0,0,1,1,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,135.0,1,1,3,4,3,133.3,0,0,0,1,0,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,3,140.0,1,37,12,9,4,140.0,0,0,0,0,0,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9500,1,1,141.0,1,2,38,2,10,135.4,1,0,0,1,0,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,Enrolled +2,43,1,9991,0,2,120.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,147.0,1,1,19,4,4,137.2,0,0,0,0,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9085,1,1,120.0,1,37,38,9,9,111.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,141.0,1,3,1,9,9,124.3,0,0,0,1,0,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,Enrolled +1,18,1,9773,1,1,125.0,1,1,1,4,7,121.5,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,140.0,1,37,37,5,5,150.0,0,0,1,1,0,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,112.0,1,1,37,4,9,106.8,1,0,0,1,0,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,168.0,1,38,37,9,8,155.1,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,15,1,9119,1,1,133.1,41,2,2,2,2,100.0,0,0,1,1,1,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,Enrolled +2,1,1,8014,0,1,121.0,1,37,37,9,9,114.4,1,0,0,1,0,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,136.0,1,1,38,4,5,132.2,0,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,Graduate +1,16,1,9070,1,1,145.0,1,1,1,3,3,146.1,1,0,0,1,0,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,40,140.0,1,5,3,2,2,140.0,0,0,1,1,1,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,Dropout +1,1,3,9085,1,1,126.0,1,38,1,9,9,132.0,1,0,0,1,0,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,146.0,1,1,37,9,9,129.3,0,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,131.0,1,37,37,9,6,127.2,0,0,0,1,0,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,139.0,1,37,37,9,9,124.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,133.1,1,37,1,5,4,151.2,0,0,0,1,1,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,170.0,1,38,19,9,2,160.6,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,131.0,1,37,37,9,6,130.7,0,0,1,1,0,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,122.0,1,19,37,3,5,116.6,1,0,1,1,1,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,Graduate +1,17,3,171,1,1,147.0,1,19,1,5,4,137.6,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,9,120.0,0,0,0,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,5,1,9130,1,1,157.0,1,5,43,2,2,149.7,1,0,0,1,0,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9003,1,39,160.0,1,3,1,2,6,160.0,1,0,0,0,0,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,140.0,1,9,19,4,4,131.2,0,0,0,1,1,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,1,130.0,1,1,3,2,6,110.0,0,0,0,1,1,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,Graduate +1,39,1,171,1,1,147.0,1,37,38,175,193,133.3,0,0,0,0,0,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,148.0,1,38,19,4,9,134.7,1,0,0,1,0,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,130.0,1,19,1,9,7,130.4,1,0,0,1,0,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,133.1,1,1,37,4,9,96.0,1,0,0,1,0,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,Enrolled +1,39,1,9991,0,12,120.0,1,37,38,5,5,155.7,0,0,0,1,1,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,117.0,1,3,1,3,3,113.2,0,1,0,1,0,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,Graduate +1,17,2,9853,1,1,150.0,1,38,19,5,5,142.0,1,0,0,1,0,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,144.0,1,1,19,9,4,130.8,1,0,0,1,0,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,Graduate +1,17,4,9254,1,1,118.0,1,38,37,5,7,111.7,1,0,0,1,1,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,6,9500,1,1,141.0,1,2,1,4,4,136.3,1,0,0,1,0,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,Graduate +2,39,1,9003,1,1,120.0,1,2,2,1,4,100.0,0,0,0,1,1,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,141.0,1,4,3,2,1,136.3,1,0,0,1,1,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,120.0,1,1,19,5,4,140.4,0,0,0,1,0,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,154.0,1,1,37,4,9,134.8,1,0,0,1,0,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,100.0,1,19,19,5,5,101.8,1,0,0,1,0,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,3,9670,1,1,137.0,1,1,38,4,7,138.4,0,0,0,1,1,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,152.0,1,37,37,7,5,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,118.0,1,37,1,9,7,117.0,1,0,0,0,1,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,140.0,1,12,3,4,3,118.0,1,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,133.0,1,1,2,9,2,128.8,0,0,0,1,1,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,171,1,1,140.0,1,37,37,9,9,100.8,0,1,0,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9070,1,42,130.0,1,40,19,3,5,130.0,1,0,0,0,0,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,143.0,1,1,19,3,3,133.9,0,0,0,1,0,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,Graduate +2,1,5,9500,1,1,130.0,1,1,19,4,4,122.3,0,0,0,1,0,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,9,9,125.0,1,0,0,1,0,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,120.0,1,37,37,7,8,120.0,0,0,0,1,0,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,Graduate +1,1,2,9147,1,1,125.0,1,1,19,4,9,124.0,1,0,0,1,0,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,131.0,1,38,19,9,9,130.0,1,0,0,1,1,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,132.0,1,1,1,4,1,119.4,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9500,1,1,135.0,1,19,19,7,7,128.0,1,0,0,1,0,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,19,133.1,1,38,38,9,9,114.8,0,0,0,1,0,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,130.0,1,2,2,6,6,130.0,0,0,0,0,1,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,112.0,1,19,38,9,10,112.0,1,0,0,1,0,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9254,1,1,170.0,1,37,37,4,6,138.3,0,0,0,1,0,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9147,1,19,100.0,1,38,19,7,9,132.0,0,0,1,0,1,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,133.1,1,19,19,9,9,119.0,1,0,0,0,0,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,Dropout +1,17,2,9085,1,1,138.0,1,37,37,9,7,123.3,1,0,0,1,0,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,1,133.1,1,37,37,9,9,112.5,0,0,0,1,0,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,1,140.0,1,12,5,3,3,126.6,0,0,0,1,1,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,1,125.0,1,1,1,9,4,120.0,0,0,0,1,0,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,151.0,1,1,1,4,3,132.3,0,0,0,1,1,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,Graduate +1,43,1,9556,1,1,130.0,1,1,37,5,5,128.0,1,0,0,1,1,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,Graduate +1,17,6,9670,1,1,113.0,1,4,1,3,10,112.3,0,0,0,1,0,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9773,1,1,125.0,1,37,37,5,7,120.1,0,0,0,1,0,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,53,1,171,1,42,130.0,1,1,19,9,9,130.0,1,0,0,0,1,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,51,1,33,1,1,121.0,1,19,37,5,7,118.6,0,0,0,1,0,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,131.0,1,37,37,90,90,137.0,0,0,0,1,0,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,150.0,1,19,1,4,4,137.8,0,0,0,1,0,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,140.0,1,37,37,5,6,128.5,0,0,0,1,0,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,130.0,1,37,2,9,4,126.5,1,0,0,0,1,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,Dropout +1,1,2,9238,1,1,147.0,1,19,38,9,8,135.8,1,0,0,1,0,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,106.0,1,19,37,9,7,109.5,1,0,0,1,0,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,110.0,1,37,37,9,10,140.0,0,0,1,0,1,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,105.0,1,19,37,8,8,102.6,0,1,0,1,0,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,Enrolled +1,17,6,9147,1,1,133.0,1,19,38,5,6,123.2,1,0,0,1,1,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9670,1,1,160.0,1,34,34,99,99,100.1,0,0,0,0,1,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,Dropout +4,7,1,9500,1,40,130.0,1,37,37,3,3,130.0,1,0,0,1,0,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,Enrolled +1,43,2,9853,1,1,118.0,1,19,1,5,4,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,Enrolled +1,43,1,8014,0,1,117.0,1,37,37,9,9,100.0,0,0,0,1,0,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,Dropout +1,53,1,9238,1,42,130.0,1,1,19,5,5,128.3,0,0,1,0,0,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,127.0,1,19,38,4,5,120.7,1,0,1,1,0,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,38,37,9,4,150.0,1,0,0,1,1,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,1,133.1,1,37,29,0,4,120.5,0,0,0,0,1,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,121.0,1,37,19,9,9,141.4,0,0,1,0,1,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,120.0,1,38,37,9,7,108.0,0,0,0,1,1,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,153.0,6,37,37,9,9,131.8,1,0,0,1,0,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,153.0,1,38,19,9,5,138.5,1,0,0,1,0,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,107.0,1,12,19,5,5,102.8,1,0,0,1,0,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9238,1,1,135.0,1,1,19,7,7,126.6,1,0,0,1,0,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,124.0,1,1,19,123,103,113.9,1,1,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,144.0,1,37,37,7,9,126.8,1,0,1,0,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9556,1,1,120.0,1,37,37,9,4,150.0,0,0,0,0,0,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,Dropout +1,43,3,171,1,1,120.0,1,37,37,9,9,143.3,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,140.0,1,38,19,4,10,122.3,1,0,0,1,0,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,157.0,1,3,38,1,5,136.7,1,0,0,1,0,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,150.0,1,3,1,2,8,153.8,1,0,0,1,0,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,130.0,1,2,1,2,7,126.2,1,0,0,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,142.0,1,37,37,9,9,132.9,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9238,1,1,124.0,1,1,1,3,1,118.8,1,0,1,0,0,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,1,19,4,5,100.0,0,0,0,1,1,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,Enrolled +1,17,5,9238,1,1,122.0,1,37,37,7,5,112.9,1,0,0,1,0,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,97.5,1,0,0,1,1,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,171,1,1,140.0,1,1,3,3,3,138.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,132.0,1,1,1,3,3,119.4,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,Graduate +1,42,1,9500,1,1,100.0,1,3,19,2,8,153.0,0,0,0,1,1,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,Enrolled +1,1,1,9254,1,1,123.0,1,38,37,5,5,125.1,0,0,0,1,0,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9130,1,1,133.0,1,38,38,5,8,120.4,1,0,0,1,0,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,Graduate +1,17,4,9773,1,1,129.0,1,3,1,2,7,132.5,1,0,0,1,1,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Enrolled +4,39,1,9003,1,19,133.1,1,37,37,9,9,110.0,0,0,0,1,1,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,133.0,1,3,1,9,3,123.2,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,137.0,1,38,19,9,5,129.3,1,0,0,1,0,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,123.0,1,3,1,2,9,127.6,1,0,0,1,1,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,19,133.1,1,19,19,9,5,101.0,1,0,0,1,0,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,19,19,7,7,111.1,1,0,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9070,1,1,147.0,1,3,1,2,3,149.8,1,0,0,1,1,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,100.0,1,37,37,7,9,100.0,1,0,0,1,0,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,141.0,1,38,38,7,7,132.5,1,0,0,1,0,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,168.0,1,1,1,5,5,161.0,1,0,0,1,1,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,Dropout +5,39,1,9003,1,19,133.1,1,19,1,9,9,119.4,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,114.0,1,1,19,9,9,111.9,1,0,0,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,Enrolled +1,39,1,9500,1,1,130.0,1,37,37,3,7,143.8,0,0,0,1,1,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,133.1,1,19,19,9,7,100.0,0,0,0,1,1,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,Dropout +1,17,3,9853,1,1,132.0,1,34,34,0,0,131.3,1,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,157.0,1,37,37,9,9,143.0,0,0,0,1,1,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,Graduate +5,42,1,9254,1,2,120.0,1,37,37,4,9,120.0,0,0,0,1,0,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,6,1,1,192,144,129.8,0,0,0,1,1,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,Enrolled +1,1,2,9500,1,1,139.0,1,38,37,9,7,125.0,1,0,0,1,0,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,133.1,1,1,19,9,5,95.0,1,0,0,1,0,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,180.0,1,37,37,7,4,153.8,1,0,0,1,0,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,4,9773,1,1,133.0,1,1,19,9,9,119.7,1,0,0,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,Graduate +1,17,5,9500,1,1,124.0,1,3,38,2,1,119.8,0,0,0,1,1,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,133.1,1,37,37,9,9,148.2,1,0,1,1,0,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,19,133.1,1,37,37,9,7,114.8,0,0,1,1,1,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,133.1,1,1,19,4,8,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,180.0,41,37,37,9,9,152.7,1,0,1,0,1,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9085,1,1,130.0,1,19,19,90,7,115.8,0,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,161.0,1,38,37,5,5,154.4,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,148.0,1,1,38,4,5,148.7,0,0,0,1,1,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,19,38,9,7,131.3,1,0,1,1,0,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,122.0,1,1,1,4,9,112.9,1,0,0,1,0,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,4,9500,1,1,142.0,1,38,38,9,8,129.8,1,0,0,1,0,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,Graduate +3,39,1,9003,1,1,170.0,1,1,37,6,6,170.0,0,0,1,1,0,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Enrolled +1,1,2,9147,1,1,130.0,1,37,37,9,9,117.8,0,0,0,1,0,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9147,1,1,140.0,1,37,37,9,7,132.3,1,0,0,1,0,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,132.0,1,2,1,9,9,126.4,1,1,0,1,0,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,140.0,1,1,3,9,2,140.0,1,0,0,1,0,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,19,4,4,109.3,0,0,0,1,1,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,176.0,1,3,38,3,7,169.7,0,0,0,1,0,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,133.1,1,37,38,7,7,98.0,1,0,0,1,1,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,136.0,1,3,3,2,2,128.7,0,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,12,38,4,9,107.0,1,0,0,1,0,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,Dropout +1,17,1,9130,1,1,156.0,1,2,9,3,5,166.9,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,Graduate +1,17,1,9130,1,1,123.0,1,19,3,3,2,121.6,1,0,1,1,0,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,129.0,1,1,1,9,9,124.8,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9119,1,1,125.0,1,19,1,5,4,121.5,1,0,0,1,1,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,Dropout +1,17,1,9085,1,1,163.0,14,37,37,9,9,150.8,1,0,0,1,0,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,Graduate +1,7,2,9130,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,135.0,1,1,2,9,1,134.3,1,0,0,1,0,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,19,37,6,6,120.0,0,0,0,1,0,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,1,130.0,1,37,37,9,7,133.0,1,0,0,1,0,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,143.0,1,1,19,4,6,135.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +4,43,2,9991,0,38,133.1,1,3,1,2,9,125.4,0,0,0,1,1,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,140.0,1,3,1,2,4,124.1,0,0,0,1,0,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,37,38,175,103,127.0,0,0,0,1,1,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,151.0,1,1,3,1,1,111.0,0,0,0,1,1,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,133.0,1,37,19,9,8,141.4,0,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,133.1,1,38,37,5,5,108.0,0,0,0,1,0,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,9147,1,1,118.0,1,3,19,2,4,113.8,1,0,0,1,0,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,1,1,3,5,141.7,0,0,0,1,0,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,42,1,9119,1,1,130.0,1,19,37,9,3,135.0,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,Dropout +4,39,2,9147,1,19,133.1,1,37,37,9,7,116.4,0,0,1,0,1,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,148.0,1,19,38,9,8,134.8,1,0,0,1,1,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,116.0,1,19,19,4,7,110.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,5,9147,1,1,122.0,1,38,38,9,9,117.5,1,0,1,0,0,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,122.0,1,37,37,9,9,125.9,1,0,0,1,1,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,171,1,1,127.0,1,1,1,9,5,124.2,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9147,1,39,117.4,1,19,1,4,9,117.4,1,0,0,1,0,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,150.0,1,37,38,9,9,146.2,0,0,0,1,0,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,Enrolled +1,17,1,9254,1,1,158.0,1,37,37,5,9,138.1,1,0,0,1,0,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,Dropout +1,7,1,9500,1,3,140.0,1,1,37,9,5,140.0,0,0,0,1,0,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,140.0,1,1,1,9,3,135.7,1,0,0,1,0,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +2,7,1,171,1,3,120.0,1,19,19,9,9,130.0,1,0,0,1,1,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,10,100.0,1,34,34,0,0,113.0,1,0,0,1,0,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,1,8014,0,1,125.0,1,37,37,9,7,114.9,0,0,0,1,0,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,Graduate +1,18,6,9500,1,1,124.0,1,37,37,9,7,117.8,0,0,0,1,0,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,109.0,1,2,3,3,3,111.8,1,0,1,1,1,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,149.0,1,1,1,9,3,156.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +2,44,1,9119,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,120.0,6,4,4,3,6,120.0,0,0,1,0,0,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,Dropout +5,1,3,9085,1,1,133.0,1,19,19,4,7,119.7,1,0,0,1,0,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9085,1,1,127.0,1,37,37,9,9,122.8,1,0,0,1,0,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,171,1,39,140.0,1,1,1,9,9,140.0,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9773,1,1,132.0,1,1,1,4,9,124.3,1,0,1,1,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +4,39,2,9670,1,19,133.1,1,19,1,90,90,103.0,0,0,0,0,1,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,26,1,9147,1,2,133.1,1,34,34,0,0,121.5,1,0,0,1,0,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,143.0,1,19,38,9,6,131.5,1,0,0,1,1,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,123.0,1,1,19,3,4,122.0,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,171,1,1,133.1,1,3,1,2,3,141.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,19,37,9,4,120.0,0,0,0,1,0,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,1,1,3,3,125.7,1,0,0,1,0,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,121.0,1,37,37,5,5,118.9,1,0,0,1,0,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,Graduate +1,51,1,9500,1,1,129.0,1,37,38,3,3,137.8,1,0,0,1,0,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,2,4,134.9,1,0,1,1,0,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9254,1,1,113.0,1,1,1,2,3,110.2,1,0,0,1,1,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,1,133.1,1,1,19,4,5,120.0,1,0,0,1,1,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,Dropout +1,39,1,9254,1,19,133.1,1,19,1,9,5,97.0,0,0,1,0,1,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9500,1,1,126.0,1,1,19,6,7,115.5,1,0,0,1,0,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,Graduate +1,42,1,9853,1,1,141.0,1,37,19,9,3,133.0,0,0,0,1,0,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,19,133.1,1,19,19,4,9,139.9,1,0,0,1,0,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,2,9254,1,1,140.0,1,19,19,9,9,126.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,108.0,1,34,38,0,3,105.9,0,0,0,1,1,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,114.0,1,19,19,9,7,107.7,0,0,0,1,0,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,130.0,1,3,1,9,9,126.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.1,1,19,37,0,0,137.0,1,0,0,1,0,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9119,1,1,117.0,1,1,2,3,2,119.8,1,0,0,1,1,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9147,1,1,115.0,1,1,37,4,9,117.1,1,0,1,1,0,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,130.0,1,12,19,4,5,118.5,0,1,0,1,0,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,34,37,5,5,120.4,0,0,0,0,0,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,171,1,39,150.0,1,19,1,9,9,154.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,43,1,9147,1,1,140.0,1,37,37,6,6,122.9,0,0,0,1,0,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,Dropout +1,42,1,9070,1,1,100.0,1,3,2,2,2,115.9,0,0,0,1,0,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,Enrolled +1,17,1,171,1,1,128.0,1,1,1,4,10,134.7,0,0,0,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,1,1,9,9,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,7,133.9,0,0,0,1,0,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Dropout +1,43,1,9773,1,1,119.0,1,19,37,5,5,105.0,1,0,0,1,0,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,Enrolled +2,43,1,9991,0,1,140.0,1,37,37,4,1,122.7,0,0,0,1,1,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,135.0,1,37,1,3,5,121.0,0,0,0,1,0,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,123.0,1,3,1,2,3,124.1,1,0,0,1,0,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9670,1,1,132.0,1,19,1,5,4,119.1,0,0,1,1,1,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,5,9254,1,1,130.0,1,37,38,9,9,122.7,1,0,1,1,1,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9147,1,1,117.0,1,1,38,8,9,117.0,1,0,0,1,1,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,140.0,1,19,19,9,6,135.4,1,0,0,1,0,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,162.0,1,37,37,9,6,132.0,0,0,1,1,1,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,139.0,1,19,38,4,9,128.5,1,0,0,1,0,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,Dropout +4,39,1,9991,0,1,130.0,1,38,19,9,7,148.0,0,0,0,1,0,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,43,1,9500,1,1,131.0,1,1,38,5,5,118.8,0,0,0,1,0,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,5,9238,1,1,126.0,1,38,1,9,5,125.7,1,0,0,1,0,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,53,1,9085,1,42,140.0,1,1,1,4,3,140.0,1,0,1,1,0,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,128.0,1,1,1,4,5,120.8,1,0,0,1,0,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,139.0,1,37,37,9,6,133.5,1,0,0,1,0,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,150.0,1,38,38,4,1,150.0,1,0,0,1,1,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,133.1,1,1,1,4,4,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9853,1,1,140.0,1,37,19,9,8,122.3,0,0,0,1,0,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,120.0,1,38,19,5,4,118.3,0,0,0,1,0,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,Enrolled +1,7,1,9130,1,3,140.0,1,2,38,2,3,140.0,1,0,0,0,1,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,122.0,1,9,19,90,6,103.4,0,0,0,1,0,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,Graduate +2,39,1,9070,1,19,133.1,1,37,37,9,10,126.3,0,0,0,0,1,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,160.0,1,38,38,7,7,147.8,0,0,0,1,0,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9238,1,12,100.0,1,37,37,9,9,124.3,0,0,0,1,1,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,Graduate +1,18,2,8014,0,1,117.0,1,3,1,3,4,111.8,1,0,0,1,0,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,38,37,7,7,140.0,0,0,0,1,1,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,Dropout +1,43,1,9853,1,1,140.0,1,3,1,3,3,128.3,1,0,0,1,0,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,127.0,1,37,38,9,9,120.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,1,161.0,1,19,37,4,10,100.0,0,0,0,1,1,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,Graduate +1,16,4,9500,1,1,145.0,1,1,1,4,4,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9853,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,Dropout +1,1,2,171,1,1,127.0,1,2,19,5,5,139.6,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,148.0,1,19,19,4,4,133.8,0,0,0,1,0,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,140.0,1,19,19,1,1,129.5,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,171,1,1,129.0,1,37,37,9,9,122.0,1,0,0,0,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,1,12,3,10,131.6,1,0,0,1,0,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,130.0,1,38,37,3,6,135.6,1,0,0,1,0,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,51,1,9991,0,39,120.0,1,1,4,4,10,118.1,0,0,0,1,1,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,39,1,9853,1,19,133.1,1,19,4,9,4,116.0,1,0,0,1,0,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9238,1,1,133.1,1,1,37,8,9,118.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,4,9500,1,1,125.0,1,19,1,1,1,117.8,1,0,0,1,0,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,141.0,1,1,38,4,5,125.0,1,0,0,1,0,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,121.0,1,38,38,7,5,120.0,1,0,0,1,0,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,Enrolled +1,17,3,9500,1,1,142.0,1,3,3,3,3,132.9,1,0,0,1,1,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,Dropout +1,44,1,9238,1,39,140.0,1,37,19,191,102,136.1,1,0,1,1,0,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9991,0,2,140.0,1,3,3,2,2,155.7,1,0,0,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9119,1,1,135.0,1,12,19,5,5,121.0,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,135.0,1,3,3,2,2,123.0,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,117.0,1,1,1,4,4,117.7,1,0,0,1,1,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,43,1,171,1,1,120.0,1,3,3,2,2,120.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,1,38,1,7,120.0,0,0,0,1,0,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,Graduate +1,17,3,9238,1,1,122.0,1,19,19,7,7,117.5,1,0,0,1,0,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,1,37,37,9,9,144.2,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +4,39,1,9500,1,1,140.0,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,131.0,1,19,19,9,9,139.8,1,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,127.0,1,3,3,2,5,100.0,0,0,0,1,0,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,39,1,9085,1,1,133.1,1,3,19,2,9,110.0,0,0,0,1,0,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,Dropout +4,39,1,9500,1,19,133.1,1,38,1,9,4,120.0,0,0,0,1,0,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,Graduate +1,16,1,9085,1,1,150.0,1,3,3,2,1,153.5,1,0,0,1,0,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,153.0,1,19,37,9,9,153.7,0,0,0,1,0,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,130.0,1,19,19,3,8,131.8,0,0,0,1,0,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,2,9853,1,1,131.0,1,1,1,2,9,121.9,1,0,0,1,0,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,136.0,1,3,3,3,3,130.8,0,0,0,1,0,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,126.0,1,1,19,4,0,120.1,0,1,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,1,120.0,1,3,2,2,6,120.0,1,0,0,1,1,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,Enrolled +2,39,1,9130,1,19,133.1,1,2,1,2,9,157.0,1,0,0,1,1,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,Graduate +1,7,1,9853,1,3,150.0,1,19,19,4,5,150.0,0,0,1,0,0,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,51,1,9070,1,12,133.1,1,37,19,3,7,106.6,0,0,1,1,0,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,Enrolled +1,1,2,9085,1,1,157.0,1,3,3,5,2,153.9,1,0,0,1,0,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,171,1,1,117.0,1,1,19,3,3,121.6,1,0,0,1,0,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,Graduate +1,1,2,9147,1,1,113.0,1,38,38,9,5,107.4,1,0,0,1,1,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,Enrolled +1,39,2,9147,1,12,133.1,1,19,38,9,9,120.0,1,0,1,0,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,152.0,1,37,37,9,9,139.0,1,0,0,1,0,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,138.0,1,1,19,9,9,124.0,0,0,0,1,0,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9853,1,1,110.0,1,37,37,9,9,95.5,0,0,1,0,0,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9130,1,1,150.0,1,19,19,4,4,130.0,0,0,0,0,1,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,3,9119,1,1,138.0,1,1,19,4,3,125.4,1,0,0,1,1,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,17,6,9147,1,1,120.0,1,37,38,9,9,115.5,1,0,1,0,1,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,Enrolled +1,1,3,9670,1,1,134.0,1,14,11,0,0,128.4,1,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,145.0,1,38,37,9,7,129.3,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,18,6,9500,1,1,126.0,1,37,37,5,5,122.8,1,0,0,1,0,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,133.0,1,1,1,4,4,129.2,1,0,0,1,0,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,Dropout +1,44,1,9070,1,39,120.0,1,1,19,4,7,120.0,0,0,1,0,1,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,136.0,1,19,38,9,9,121.7,0,1,0,1,0,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,126.0,1,1,1,9,10,126.7,1,0,0,1,0,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,Graduate +1,1,3,9085,1,1,134.0,1,38,19,9,5,129.1,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,133.1,1,1,37,9,9,117.0,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,5,9238,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,0,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,40,140.0,1,19,37,5,9,148.0,0,0,0,1,0,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,137.0,1,3,38,1,9,131.4,0,0,0,0,1,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,Dropout +1,1,2,9670,1,1,123.0,1,1,38,7,7,120.6,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,139.0,1,3,1,2,7,124.0,1,0,0,1,0,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,Dropout +1,1,2,171,1,1,152.0,1,38,19,9,9,151.7,1,0,0,1,0,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,110.0,1,37,37,9,4,114.3,1,0,0,1,1,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,Enrolled +1,51,1,9991,0,1,120.0,1,38,3,5,3,128.2,0,0,1,1,1,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,141.0,1,3,2,2,2,133.3,1,0,0,1,1,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,Enrolled +1,5,1,171,1,1,137.0,1,3,19,1,10,144.7,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,43,1,9003,1,1,130.0,1,37,1,5,4,130.0,0,0,0,1,1,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,Dropout +1,18,1,9773,1,1,135.0,1,1,1,3,3,129.8,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,38,38,9,8,150.0,1,0,0,1,1,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,Graduate +1,17,2,9773,1,1,150.0,1,1,1,4,5,130.8,0,0,0,1,1,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9773,1,1,123.0,1,1,1,4,7,125.1,1,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,4,9119,1,1,129.0,1,34,36,0,5,118.9,1,0,0,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,144.0,1,38,37,9,9,128.8,1,0,0,1,1,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,130.0,1,38,38,9,9,150.0,0,0,1,0,1,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,128.0,1,1,1,7,7,120.5,1,0,0,1,0,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,Enrolled +1,7,1,9500,1,3,140.0,1,3,1,4,4,140.0,0,0,0,1,0,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,134.0,1,19,19,1,1,120.4,1,0,0,1,1,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,147.0,1,1,38,4,8,141.1,1,0,0,1,0,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,126.0,1,3,1,5,5,125.7,0,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +2,1,4,9853,1,1,134.0,1,37,37,5,7,122.5,0,1,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,148.0,1,38,38,4,9,131.6,0,0,0,1,1,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,Dropout +2,39,1,9085,1,9,133.1,1,1,1,4,4,120.0,1,0,0,0,1,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,39,1,9254,1,1,150.0,1,3,1,3,4,122.3,0,0,0,1,1,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,125.0,1,19,37,3,7,126.8,0,0,0,1,0,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,Enrolled +1,18,1,9670,1,1,128.0,1,19,3,9,7,120.0,1,0,0,1,0,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,160.0,1,2,1,4,4,137.3,1,0,0,1,0,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,Graduate +2,39,1,9238,1,42,170.0,1,19,38,8,8,159.5,0,0,0,1,1,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9773,1,1,143.0,1,1,1,4,9,144.1,1,0,0,1,1,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,9991,0,1,130.0,1,37,37,9,9,127.8,0,0,0,1,1,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,51,1,9147,1,1,130.0,1,19,38,9,8,115.7,0,0,0,1,1,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,Enrolled +1,17,3,9773,1,1,135.0,1,1,19,5,7,135.0,0,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,135.0,1,1,1,9,9,133.3,0,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,136.0,1,1,1,4,5,123.3,0,0,0,0,0,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,143.0,1,5,5,2,2,137.8,0,0,0,1,1,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,133.1,1,1,19,141,114,140.0,1,0,0,1,0,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9670,1,1,117.0,1,38,19,0,1,114.6,0,0,0,0,1,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,133.1,1,1,19,4,10,145.8,0,0,0,1,1,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,129.0,1,1,37,4,9,118.2,0,0,0,1,1,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,7,1,9500,1,3,130.0,1,37,37,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,Graduate +1,17,4,9670,1,1,135.0,1,38,38,9,7,127.0,1,0,0,1,0,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,126.0,1,1,1,90,90,119.0,1,0,1,1,1,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9773,1,1,120.0,1,1,38,5,5,121.4,0,0,0,0,0,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,136.0,1,1,38,9,9,130.8,1,0,0,1,0,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,131.0,1,19,37,9,9,123.8,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,144.0,1,19,19,9,9,142.6,1,0,0,1,0,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,126.0,1,38,38,7,8,126.7,1,0,0,1,0,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,3,171,1,1,125.0,1,37,37,5,10,120.5,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,7,1,9130,1,2,110.0,1,19,19,4,8,110.0,1,0,0,1,1,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,3,1,2,8,150.0,0,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,5,171,1,1,139.0,1,19,3,9,2,136.9,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9147,1,1,100.0,1,38,38,5,5,101.8,1,0,0,1,0,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,Enrolled +1,44,2,9238,1,39,150.0,1,3,19,4,9,147.0,1,0,0,1,0,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,9,4,100.0,0,0,0,1,1,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9130,1,1,130.0,1,19,38,4,7,122.5,0,0,0,1,1,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,19,37,1,1,140.0,0,0,1,1,1,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,Enrolled +1,17,1,9070,1,1,157.0,1,3,3,3,3,146.2,0,0,0,1,1,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,150.0,1,37,19,8,4,130.8,0,0,0,1,1,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,133.1,1,19,19,7,7,130.0,1,0,0,1,0,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,150.0,1,19,1,9,8,150.0,1,0,0,1,1,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,127.0,1,1,19,7,7,121.8,1,0,0,1,0,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9853,1,1,148.0,1,19,19,5,7,141.7,0,0,0,1,0,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,130.0,1,1,19,9,9,133.4,0,0,0,1,0,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,123.0,1,37,38,3,3,122.0,0,0,1,1,1,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9070,1,1,132.0,1,37,38,9,7,138.0,0,0,0,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,146.0,1,2,19,3,9,130.3,1,0,0,1,1,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,Graduate +1,44,1,171,1,39,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,116.0,1,3,1,3,4,115.7,0,0,0,0,1,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9670,1,1,130.0,1,19,37,4,5,118.8,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,124.0,1,37,37,7,9,121.2,0,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,127.0,1,19,37,9,3,120.7,1,0,0,1,0,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +2,43,1,9070,1,2,140.0,1,37,37,6,6,140.0,1,0,0,1,1,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,Graduate +1,39,1,9500,1,1,100.0,1,3,1,2,5,121.3,1,0,0,1,0,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,Enrolled +1,39,1,9991,0,19,133.1,1,37,37,9,6,105.3,0,0,1,1,0,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,1,155.0,1,1,19,4,8,134.7,1,0,0,1,0,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,15,1,9119,1,1,160.0,32,1,3,143,152,160.0,0,0,1,1,0,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,Enrolled +1,53,1,9670,1,42,140.0,1,19,37,3,6,140.0,1,0,1,1,0,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9853,1,1,140.0,1,38,38,9,7,137.6,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,140.0,1,19,19,7,7,129.5,1,0,0,1,0,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,133.1,1,19,19,3,4,104.0,0,0,1,0,0,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,130.0,1,37,37,9,9,118.8,0,0,1,1,1,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,136.0,1,1,1,9,1,133.0,1,0,0,1,0,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,143.0,1,38,38,9,9,138.8,1,0,0,1,0,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,Graduate +2,39,1,9147,1,1,140.0,1,37,37,6,10,131.8,0,0,0,1,0,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,1,130.0,1,4,1,2,9,120.0,0,0,0,0,0,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,Enrolled +1,1,4,9500,1,1,148.0,1,19,19,4,5,137.0,1,0,0,1,0,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,120.0,1,37,19,5,3,156.0,1,0,0,1,1,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9853,1,1,133.1,1,12,1,4,0,134.8,1,0,0,1,0,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,122.0,1,1,1,9,8,120.3,0,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,156.0,1,19,38,9,5,170.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,129.0,1,38,37,9,3,127.3,1,0,1,0,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,142.0,1,38,38,9,10,127.0,1,0,0,1,0,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,150.0,1,38,19,3,3,120.1,0,0,0,0,0,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,141.0,1,37,37,9,9,126.7,1,0,1,1,0,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,43,3,9147,1,1,127.0,21,3,37,3,3,117.9,1,0,0,1,0,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,1,120.0,1,1,19,4,7,110.0,0,0,0,1,1,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,Dropout +2,42,1,9254,1,1,136.0,1,2,2,134,112,130.0,1,0,0,1,1,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,Dropout +1,18,1,9119,1,1,122.0,1,19,1,90,3,116.1,1,0,1,0,1,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9500,1,1,120.0,1,2,4,4,5,136.6,0,0,0,1,1,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,Dropout +1,18,1,9070,1,1,143.0,1,38,38,7,5,141.6,0,0,0,1,0,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,Graduate +1,43,1,9119,1,1,140.0,1,37,38,5,7,146.5,0,0,0,1,1,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,125.0,1,19,19,9,9,121.5,1,0,0,1,0,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,1,0,0,1,0,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,159.0,1,3,3,2,2,165.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,127.0,1,3,1,2,9,119.3,1,0,0,1,0,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,Graduate +1,17,6,9238,1,1,117.0,1,1,38,4,7,114.6,0,0,0,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9119,1,1,148.0,1,19,19,9,8,129.8,0,0,0,0,1,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,Enrolled +1,17,4,9119,1,1,127.0,1,19,19,5,5,120.4,1,0,1,0,1,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9500,1,1,144.0,1,19,1,5,3,141.0,1,0,0,1,0,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,Graduate +1,17,3,9556,1,1,126.0,1,19,19,9,4,119.0,1,0,0,1,0,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,Dropout +1,1,4,9119,1,1,126.0,1,3,19,2,9,123.6,1,0,0,1,1,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,120.0,1,1,2,144,123,125.3,0,0,1,1,1,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9070,1,1,130.0,1,1,19,4,4,110.0,1,0,0,1,0,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,37,37,90,5,115.5,0,0,0,0,1,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,130.0,1,38,38,9,9,120.0,0,0,0,1,0,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9853,1,1,141.0,1,3,1,1,5,130.2,1,0,0,1,0,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,Enrolled +2,1,1,9500,1,1,156.0,1,1,1,9,10,135.5,0,0,0,1,0,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,Graduate +2,7,1,8014,0,3,170.0,1,19,19,4,4,170.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9147,1,1,134.0,1,37,19,9,8,126.3,1,0,0,1,0,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,122.0,1,12,12,5,7,126.6,1,0,0,1,0,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,38,38,9,7,138.8,1,0,0,1,0,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,132.0,1,37,37,5,7,127.5,1,0,0,1,0,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,Graduate +1,16,2,9238,1,1,130.0,1,37,37,5,6,126.9,1,0,0,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,110.0,1,3,2,3,3,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,127.0,1,2,19,4,5,121.8,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,12,133.1,1,38,19,9,8,138.3,1,0,1,0,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9147,1,19,133.1,1,3,1,3,5,153.2,1,0,1,1,0,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,37,19,5,9,130.0,1,0,0,1,0,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,2,9147,1,1,130.0,1,19,37,4,7,140.0,0,0,0,1,1,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,128.0,1,19,19,7,7,124.4,0,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,19,3,8,150.3,1,0,0,1,1,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,143.0,1,38,19,7,9,129.5,1,0,0,1,0,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,6,141.0,1,37,1,9,4,145.0,0,0,0,1,0,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,Graduate +1,17,1,9238,1,1,160.0,1,19,37,6,6,144.3,0,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,2,9238,1,1,133.1,1,19,19,4,5,120.6,1,0,0,1,0,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,3,116.5,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,127.0,1,1,1,3,4,130.2,1,0,0,1,1,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9254,1,1,131.0,1,38,36,9,9,124.0,1,0,0,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,5,9254,1,1,120.0,1,37,37,9,7,127.0,1,0,0,1,0,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,135.0,1,34,34,0,0,134.1,1,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9254,1,1,133.1,1,37,37,9,6,121.5,0,0,0,1,1,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,144.0,1,38,38,5,7,128.0,1,0,0,1,0,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,132.0,1,1,19,6,6,124.7,1,0,0,1,1,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,Graduate +1,17,2,9991,0,1,116.0,1,37,19,9,4,118.5,0,0,0,1,1,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,133.1,1,1,1,9,1,103.0,1,0,0,1,0,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,16,5,9085,1,1,134.0,1,19,37,8,8,123.9,1,0,0,1,1,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9773,1,1,114.0,1,37,38,9,5,107.4,1,0,0,0,1,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,38,37,5,7,120.0,1,0,0,1,0,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,135.0,1,1,38,4,6,122.1,0,1,1,0,1,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,1,150.0,1,37,37,7,5,143.0,0,0,0,1,0,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,Graduate +1,44,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,Graduate +4,39,1,9238,1,19,133.1,1,37,37,9,10,103.5,0,0,0,0,0,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,126.0,1,19,38,9,9,132.0,1,0,0,1,0,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,125.0,1,1,1,7,3,143.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9147,1,1,120.0,1,37,1,9,1,122.7,0,0,0,0,0,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,7,1,8014,0,3,124.4,1,37,34,0,0,130.0,0,0,0,1,0,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,Graduate +1,18,1,9085,1,1,106.0,1,1,19,3,5,104.6,0,0,0,0,1,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,Enrolled +1,44,1,9119,1,39,160.0,1,3,38,2,3,160.0,0,0,1,0,1,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,148.0,1,3,19,2,5,130.0,0,0,0,1,0,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,Enrolled +1,1,1,9130,1,1,133.0,1,1,37,9,9,123.2,1,0,0,1,0,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9500,1,1,130.0,1,19,1,9,4,128.8,1,0,0,1,0,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,149.0,1,19,1,9,9,137.8,1,0,0,1,1,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,Graduate +4,43,1,9670,1,1,150.0,1,37,37,9,6,110.0,0,0,0,1,0,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,Graduate +2,39,1,9119,1,1,110.0,1,19,19,0,5,137.0,0,0,1,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9556,1,1,122.0,1,19,19,3,10,113.3,1,0,0,1,0,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,140.0,1,1,19,4,5,127.5,0,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,128.0,1,37,37,5,5,124.5,1,0,0,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,39,150.0,6,5,4,1,1,150.0,0,0,0,1,0,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,131.0,1,38,37,7,7,127.2,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,130.0,1,37,37,9,6,126.5,1,0,0,1,0,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,116.0,1,19,37,90,5,116.7,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,Dropout +1,17,3,9853,1,1,140.0,1,38,38,5,7,126.7,1,0,0,1,0,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,4,9238,1,1,129.0,1,37,37,9,8,117.1,1,0,0,1,1,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,144.0,1,19,19,9,9,130.5,1,0,0,1,0,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,124.0,1,19,1,7,10,116.0,1,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,122.0,1,1,19,4,4,127.3,1,0,1,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,12,12,4,1,155.3,1,1,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +2,15,1,9773,1,1,133.1,41,37,37,9,6,100.0,0,0,0,1,0,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,138.0,41,1,1,9,9,126.5,1,0,0,1,0,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,Graduate +1,18,6,9500,1,1,142.0,1,38,37,9,5,128.0,1,0,0,0,0,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,3,1,2,3,140.0,1,0,0,1,0,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,Enrolled +1,42,1,9991,0,1,150.0,1,19,19,5,5,113.7,0,0,0,1,1,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,135.0,1,1,19,5,5,130.1,1,0,0,1,0,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9254,1,1,120.0,1,19,1,9,8,117.2,0,0,0,1,1,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,130.0,1,19,19,9,7,119.5,1,0,0,1,1,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,133.0,1,1,1,4,5,136.2,1,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,15,1,9147,1,1,133.1,21,1,3,192,3,100.0,0,0,1,1,1,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9670,1,1,112.0,1,37,1,7,0,110.6,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9238,1,1,117.0,1,19,19,9,9,117.0,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9991,0,1,140.0,1,1,37,9,8,154.5,0,0,0,1,0,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,97.0,1,0,0,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,119.0,1,37,37,5,4,118.0,1,0,0,1,1,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,112.0,1,19,38,5,7,107.1,1,0,0,1,0,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +2,18,2,8014,0,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,144.0,1,37,37,9,6,129.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,120.0,100,1,1,4,7,119.5,0,0,1,1,0,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,136.0,1,19,38,5,8,130.3,1,0,0,1,0,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,7,9,121.3,1,0,0,1,0,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,135.0,1,1,4,5,3,124.9,0,0,0,1,0,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,4,9670,1,1,128.0,1,38,38,3,7,121.0,1,0,0,1,0,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,15,1,9556,1,1,114.0,26,3,19,122,144,114.0,0,0,0,1,0,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9238,1,1,125.0,1,19,19,3,3,118.0,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,118.0,1,37,37,7,7,114.2,0,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,Enrolled +1,17,1,9147,1,1,115.0,1,19,37,5,7,112.9,1,0,0,0,1,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,120.0,1,19,37,9,9,118.3,0,0,1,0,1,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9119,1,10,133.1,1,34,37,0,0,128.8,1,0,0,1,1,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,115.0,1,19,38,5,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,137.0,1,37,37,9,9,132.8,1,0,0,1,0,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9003,1,1,148.0,1,19,37,9,9,131.6,1,0,0,1,1,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9773,1,1,161.0,1,1,19,4,7,148.4,0,0,0,1,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,43,1,9991,0,1,133.1,1,37,37,9,7,113.5,0,0,0,1,0,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,132.0,1,1,1,9,9,133.8,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9254,1,1,125.0,1,37,37,9,9,122.9,0,0,0,1,1,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,123.0,1,3,1,9,3,121.3,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,Enrolled +1,17,1,9991,0,1,154.0,1,38,38,4,5,134.1,0,0,0,1,0,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,Enrolled +1,44,1,9130,1,39,140.0,1,19,19,5,5,140.0,1,0,1,0,0,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,Enrolled +1,53,1,9085,1,42,170.0,1,1,19,4,7,170.0,0,0,0,1,0,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,Graduate +1,17,5,9147,1,1,131.0,1,19,38,3,10,119.8,1,0,0,1,0,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,141.0,1,19,19,9,9,126.0,1,0,0,1,0,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,Graduate +1,1,3,9500,1,1,137.0,1,19,19,5,4,131.5,1,0,0,1,0,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,118.0,1,19,1,9,3,113.5,1,0,1,1,0,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,100.0,1,37,37,99,99,100.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9130,1,1,120.0,6,1,3,9,2,120.0,0,0,1,1,0,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,127.0,1,19,19,5,5,129.8,1,0,0,1,0,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,134.0,1,37,37,9,9,129.8,1,0,0,1,0,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,121.0,1,37,37,5,9,116.5,1,0,0,1,0,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9070,1,1,117.0,1,19,37,5,5,131.0,1,0,1,0,1,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,125.0,1,1,38,9,7,119.8,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,5,9500,1,1,140.0,1,1,1,4,3,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,1,5,9254,1,1,101.0,1,3,19,3,9,98.9,1,0,0,1,1,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,130.0,1,37,38,7,9,117.8,0,0,1,1,0,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,128.0,1,34,19,3,0,141.0,1,0,0,0,0,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,150.0,1,38,37,9,9,130.8,0,0,0,1,1,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,125.0,1,1,19,4,7,116.6,0,0,0,1,1,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,Graduate +1,43,1,9670,1,1,130.0,1,34,34,0,0,114.8,0,0,0,1,1,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,Graduate +2,42,1,9003,1,1,120.0,1,3,1,2,2,113.3,0,0,0,1,1,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +4,39,1,9991,0,1,133.1,1,37,37,5,5,138.7,0,0,0,1,0,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,Dropout +1,39,1,9238,1,1,140.0,1,34,34,0,0,114.0,1,0,0,0,0,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9991,0,1,133.1,1,37,19,3,10,136.1,0,0,0,1,1,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9070,1,1,110.0,1,37,37,7,7,110.2,0,0,0,1,1,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,150.0,1,4,5,4,2,150.0,0,0,0,1,1,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,Enrolled +1,1,2,9119,1,1,149.0,1,38,38,5,5,141.0,0,0,0,1,1,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,Enrolled +1,42,1,9085,1,39,150.0,1,1,1,4,7,150.0,1,0,0,1,0,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,1,38,4,9,131.7,1,0,0,1,0,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,42,1,9853,1,1,120.0,1,1,37,5,5,113.9,1,0,0,1,0,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9085,1,1,130.0,1,37,19,9,7,130.0,1,0,0,1,0,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,Enrolled +1,17,4,9500,1,1,133.0,1,38,37,5,7,126.4,1,0,0,1,1,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,147.0,1,3,1,2,3,131.6,0,0,0,1,0,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,12,133.1,1,37,37,9,9,121.5,0,0,0,1,1,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,1,1,9991,0,1,150.0,1,37,37,9,9,131.8,0,0,0,0,0,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,43,4,8014,0,1,116.0,1,34,34,0,0,116.2,0,0,0,1,1,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,7,140.0,0,0,0,1,1,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9773,1,1,136.0,1,3,1,2,3,132.5,1,0,0,1,0,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,19,110.0,1,37,38,5,5,151.0,0,0,1,0,1,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,19,19,5,5,113.2,1,0,1,1,0,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,137.0,1,3,19,2,9,122.3,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +4,39,1,9254,1,1,120.0,1,37,19,9,9,131.0,1,0,0,1,1,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9556,1,1,123.0,1,19,19,4,9,113.8,1,0,0,1,0,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,150.0,1,3,37,4,7,139.5,0,0,0,1,1,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,145.0,1,38,37,3,9,138.4,1,0,0,0,0,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,39,1,8014,0,1,140.0,1,37,37,9,7,122.0,1,0,1,0,1,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,3,9991,0,1,120.0,1,37,37,9,9,128.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,6,9500,1,1,126.0,1,12,37,5,9,121.8,1,0,0,1,0,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,Dropout +2,39,1,9991,0,1,130.0,1,37,37,9,9,140.0,1,0,0,1,1,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,130.0,1,37,19,9,8,130.8,0,0,0,1,1,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,Enrolled +1,1,3,9070,1,1,125.0,1,19,38,9,9,125.4,1,0,0,1,0,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,132.0,1,38,38,4,9,119.1,0,0,0,1,0,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,Graduate +4,7,1,9147,1,3,130.0,1,19,1,5,5,130.0,0,0,0,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,130.0,1,19,19,7,7,121.6,1,0,0,1,0,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9773,1,1,126.0,1,37,38,5,5,129.5,1,0,1,0,0,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,133.0,1,38,38,5,5,123.2,0,0,0,1,0,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,140.0,1,37,37,9,9,121.0,0,0,0,1,0,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,3,9500,1,1,131.0,1,37,37,9,9,118.0,1,0,0,1,0,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,120.0,1,38,19,4,8,115.1,0,0,0,1,0,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,Enrolled +1,17,5,9773,1,1,111.0,1,19,12,7,3,115.9,1,0,0,1,0,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,135.0,1,1,19,9,7,123.5,1,0,0,1,0,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,37,4,9,130.0,1,0,0,1,0,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,Enrolled +1,44,1,9119,1,39,130.0,1,3,19,3,4,130.0,0,0,0,1,1,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,Enrolled +1,44,1,9147,1,39,130.0,22,2,37,2,8,130.0,0,0,1,0,1,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,119.0,1,37,37,9,6,119.0,0,0,1,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9500,1,1,142.0,1,38,37,9,8,130.8,1,0,0,1,0,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,136.0,1,38,1,9,4,129.7,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,140.0,1,19,19,4,4,140.0,1,0,0,1,1,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,19,133.1,1,1,19,4,10,114.0,0,0,0,1,1,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +1,17,5,9670,1,1,125.0,1,19,30,7,7,118.4,1,0,0,1,0,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,135.0,1,19,19,9,10,122.9,1,0,0,1,0,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,100.0,1,37,37,9,9,108.0,1,0,0,1,1,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,127.0,1,37,37,9,9,119.3,1,1,0,1,1,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,133.0,1,38,19,9,10,125.0,1,0,0,1,0,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,116.0,1,3,3,3,3,110.1,1,0,0,1,1,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,133.1,1,1,1,5,8,123.0,1,0,0,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,144.0,1,37,37,9,3,150.5,0,0,0,1,0,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,3,1,2,4,130.2,0,0,0,1,1,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,116.0,1,38,37,9,6,109.7,1,0,0,1,0,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,Graduate +1,18,3,9853,1,1,128.0,1,38,37,5,9,116.8,1,0,0,0,1,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,150.0,1,37,37,4,9,132.1,1,0,1,1,0,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,160.0,1,1,19,4,6,155.7,1,0,0,1,0,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,130.0,1,19,1,9,9,131.9,0,0,0,1,0,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,126.0,1,3,3,2,2,121.1,0,0,1,1,0,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,38,38,7,7,147.0,0,0,0,1,0,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,137.0,1,37,37,9,9,126.2,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,38,37,5,5,137.1,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,143.0,1,2,37,1,1,133.2,1,0,0,1,0,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,Enrolled +1,17,5,9070,1,1,122.0,1,19,38,5,7,119.6,0,0,1,0,0,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,137.0,1,19,38,9,9,127.2,1,0,0,1,0,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,110.0,1,1,1,4,4,125.9,0,0,0,1,1,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,130.0,1,1,38,5,9,118.1,0,0,1,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9853,1,1,130.0,1,37,19,9,5,102.5,0,0,0,1,0,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.0,1,19,1,9,1,122.2,0,0,0,1,0,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,39,140.0,1,3,3,2,2,140.0,1,0,0,1,0,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,134.0,1,37,38,9,9,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,1,1,37,4,7,110.0,0,0,0,1,1,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,Dropout +1,15,1,9085,1,1,133.1,41,3,3,4,2,101.3,0,0,0,1,0,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,113.0,1,1,1,5,4,106.7,1,0,1,1,0,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,Dropout +2,39,1,9991,0,19,133.1,1,37,37,5,5,111.9,1,0,0,1,1,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9853,1,1,134.0,1,19,38,4,8,122.1,1,0,0,1,0,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9853,1,1,133.0,1,19,37,4,9,130.2,1,0,0,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,127.0,1,19,19,5,5,160.0,0,0,0,1,1,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,Graduate +1,7,1,9500,1,3,130.0,1,37,38,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,140.0,1,19,38,7,7,136.5,1,0,0,1,0,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,Graduate +2,39,1,9773,1,19,133.1,1,37,37,9,6,110.0,0,0,0,0,0,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,Dropout +2,39,1,8014,0,1,120.0,1,34,34,99,99,101.8,0,0,0,0,0,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,135.0,1,1,1,4,7,129.8,1,0,0,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,131.0,1,37,38,5,5,128.9,0,0,0,1,0,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,Graduate +1,1,4,9070,1,1,139.0,1,3,19,1,5,138.3,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9500,1,1,122.0,1,1,1,3,7,114.3,1,0,0,1,1,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,150.0,1,37,37,9,7,136.5,1,0,0,1,0,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,3,1,2,8,121.4,0,0,0,1,1,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,117.0,1,19,19,194,193,117.4,1,0,0,1,0,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,Enrolled +2,39,1,9085,1,1,133.1,1,36,36,99,5,128.2,0,0,0,0,0,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,121.0,1,3,1,2,3,114.0,0,0,0,1,1,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,Enrolled +1,51,1,9853,1,1,139.0,1,1,1,4,10,134.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9070,1,1,137.0,1,1,1,3,1,141.2,1,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,133.1,1,37,37,6,3,140.0,0,0,1,1,1,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,1,9147,1,1,126.0,1,37,37,4,7,116.9,0,0,0,1,1,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,44,1,9130,1,39,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,1,9991,0,1,130.0,1,37,37,9,9,128.2,0,0,0,1,0,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,131.0,1,19,9,5,3,118.4,0,0,0,1,0,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,138.0,1,19,19,3,3,131.0,1,0,0,1,0,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,1,130.0,1,37,12,9,8,129.4,1,0,1,0,1,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,9991,0,1,134.0,1,37,37,9,9,113.7,0,0,0,1,0,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9853,1,1,117.0,1,38,38,9,7,114.6,1,0,0,1,0,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,145.0,1,3,3,4,4,153.1,1,0,0,1,0,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9085,1,1,130.0,1,19,38,4,9,130.0,1,0,0,0,0,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9119,1,1,146.0,1,37,37,9,9,148.5,1,0,0,1,1,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,136.0,1,1,1,4,4,124.1,0,0,0,1,0,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,100.0,1,37,38,9,4,140.0,0,0,0,1,1,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,Enrolled +1,44,1,9003,1,39,180.0,1,1,3,4,2,180.0,0,0,0,1,0,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,Graduate +1,15,1,9773,1,1,120.0,26,19,19,4,5,120.0,1,0,0,1,0,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,141.0,1,4,19,4,10,100.0,0,0,0,1,1,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,1,150.0,1,29,10,6,6,150.0,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,5,9254,1,1,122.0,1,1,37,9,7,119.6,1,0,0,1,0,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,128.0,1,19,38,9,7,124.2,1,0,0,1,1,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9130,1,1,172.0,1,19,19,9,9,163.3,1,0,0,1,0,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,129.0,1,38,37,5,5,142.0,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,100.0,1,1,3,9,10,120.0,0,0,1,0,1,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,Graduate +1,1,3,9238,1,1,135.0,1,1,12,9,10,121.0,1,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,136.0,1,2,2,3,3,120.0,1,0,0,1,1,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,6,9147,1,1,143.0,1,38,37,9,9,128.7,1,0,0,1,1,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9500,1,1,126.0,1,37,37,7,7,126.2,1,0,0,1,0,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,135.0,1,19,19,4,3,135.0,1,0,0,1,1,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,Enrolled +1,1,2,9254,1,1,132.0,1,1,19,9,9,129.9,1,0,0,1,0,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,120.0,1,34,34,0,0,104.0,0,0,0,1,0,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,9,133.1,1,37,37,8,10,100.0,1,0,0,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,43,1,9147,1,1,130.0,1,19,37,7,10,138.0,0,0,0,1,0,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,Graduate +1,17,2,9119,1,1,120.0,1,1,19,9,8,117.2,0,0,0,1,1,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,133.1,1,1,12,4,5,116.5,0,0,0,1,1,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,105.0,1,19,19,6,6,106.1,1,0,0,1,0,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,118.0,1,1,19,4,8,118.7,0,0,0,1,1,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,6,9500,1,1,140.0,1,3,19,3,8,129.0,1,0,0,1,0,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,168.0,1,19,19,4,4,171.2,0,0,0,1,1,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,133.0,1,19,9,0,0,121.5,1,0,0,1,0,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,177.0,1,1,38,3,9,162.3,0,0,0,1,0,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,130.0,1,38,38,2,9,124.8,0,0,0,1,0,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,136.0,1,38,1,5,6,133.9,1,0,0,1,0,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,154.0,1,1,1,5,3,144.9,0,0,0,1,1,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,Graduate +1,44,1,9119,1,39,150.0,1,19,37,9,9,150.0,1,0,1,1,1,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,Dropout +1,1,4,9254,1,1,132.0,1,12,19,9,9,124.7,1,0,0,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,33,1,1,100.0,41,38,37,9,8,100.0,0,0,1,0,1,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,120.0,1,4,1,2,9,113.4,0,0,0,1,0,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,134.0,1,1,19,9,9,136.1,1,0,0,1,0,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9500,1,1,150.0,1,1,19,5,3,140.0,0,1,0,1,0,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,129.0,1,37,37,9,9,128.8,1,0,0,1,0,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +2,39,1,9500,1,1,100.0,1,37,38,4,4,130.0,0,0,0,1,1,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,Enrolled +1,1,1,9773,1,1,140.0,1,19,37,9,6,135.8,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,40,150.0,1,19,19,9,5,150.0,0,0,1,0,0,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,148.0,1,1,37,4,8,132.0,1,0,0,1,0,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,Graduate +1,7,1,9119,1,40,140.0,1,3,1,2,5,140.0,0,0,0,1,1,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,163.0,1,19,1,9,7,143.1,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,3,9070,1,1,164.0,1,1,1,5,3,161.2,1,0,0,1,0,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,Graduate +1,1,6,9773,1,1,141.0,1,30,37,7,7,128.4,1,0,1,0,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,Dropout +1,43,2,9147,1,1,126.0,1,1,19,3,3,100.0,1,0,0,1,1,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,141.0,1,19,19,5,10,135.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,4,9670,1,1,117.0,1,3,3,4,4,113.2,0,0,0,1,1,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +2,43,1,9991,0,3,140.0,1,37,19,9,4,140.0,0,0,1,1,0,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,134.3,0,0,0,1,1,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,137.0,1,38,19,9,7,125.1,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,6,134.0,0,0,0,1,0,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,123.0,1,37,37,7,7,119.7,0,0,0,1,1,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9147,1,1,120.0,1,37,37,9,9,104.7,1,0,0,1,1,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,137.0,62,1,1,9,9,129.3,0,0,0,1,0,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,8014,0,1,122.0,1,37,19,9,9,123.8,0,0,0,1,0,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,Graduate +2,39,2,8014,0,1,100.0,1,34,34,0,0,100.0,1,0,0,1,0,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,Graduate +2,1,1,9991,0,2,120.0,1,37,37,6,3,129.2,0,0,0,1,0,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,150.0,1,3,19,2,6,150.0,0,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9991,0,1,123.0,1,1,3,4,2,113.2,0,0,0,0,1,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,Dropout +1,1,3,9773,1,1,130.0,1,1,37,4,5,120.9,1,0,1,1,0,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,146.0,1,19,3,4,9,127.0,0,0,0,1,1,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,160.0,1,19,38,9,9,160.0,1,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9085,1,39,150.0,1,38,37,6,6,150.0,1,0,0,1,0,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,136.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,150.0,1,37,19,9,4,135.6,0,0,0,1,0,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,6,171,1,1,134.0,1,19,37,5,5,126.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +4,39,1,9773,1,38,133.1,1,19,19,7,9,133.0,0,0,0,1,0,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,Enrolled +1,17,2,9119,1,1,120.0,1,10,12,9,9,120.4,1,0,0,1,1,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,4,9254,1,1,113.0,1,38,19,7,7,107.4,1,0,0,1,0,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,137.0,1,1,19,4,5,136.3,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,142.0,1,37,37,9,7,132.7,1,0,0,1,0,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,Graduate +1,18,5,9085,1,1,121.0,1,5,3,2,3,111.9,1,0,0,1,0,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,9,133.1,1,34,36,0,90,107.5,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,19,133.1,1,19,37,6,8,149.5,0,0,0,1,1,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9147,1,1,120.0,1,1,37,4,9,113.4,1,0,0,1,1,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,130.0,1,37,38,9,5,130.5,1,0,0,1,0,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,153.0,1,1,19,9,10,147.8,0,0,0,1,0,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,159.0,1,3,1,4,4,162.2,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,122.0,1,37,37,5,6,114.3,0,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,2,9556,1,19,133.1,1,37,37,3,7,117.8,0,0,0,1,0,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,132.0,1,38,1,9,9,124.3,1,0,0,1,0,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,141.0,1,19,19,9,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,Graduate +1,17,1,9500,1,1,152.0,1,19,19,4,9,132.5,0,0,0,1,1,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,Graduate +1,17,1,9991,0,40,127.0,1,37,37,6,6,124.9,0,0,0,1,0,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,133.1,1,1,19,4,6,106.0,1,0,0,1,0,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,19,37,4,7,150.0,1,0,0,1,0,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9254,1,1,125.0,1,1,1,191,193,114.5,0,0,0,1,1,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,134.0,1,19,19,4,7,131.0,1,0,0,1,1,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,134.0,1,19,19,9,9,125.8,1,0,0,1,0,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,Graduate +1,17,1,171,1,1,125.0,1,37,37,7,9,134.1,1,0,0,1,1,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,Dropout +1,51,1,9254,1,1,120.0,1,38,38,9,9,118.0,0,0,0,1,0,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,155.0,1,1,1,4,3,140.5,1,0,0,1,0,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,125.0,1,1,1,4,90,125.4,1,0,0,1,1,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,1,5,5,126.3,0,0,0,1,1,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,Graduate +1,39,1,9147,1,1,140.0,1,37,3,9,2,135.1,0,0,0,1,1,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,171,1,1,122.0,1,19,12,5,9,127.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,2,9670,1,1,150.0,1,34,34,0,0,107.0,1,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,3,130.0,1,19,19,3,9,130.0,0,0,0,0,1,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,Dropout +1,39,1,33,1,1,133.1,1,19,37,9,9,96.1,0,0,0,1,1,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,Dropout +2,42,1,9500,1,2,130.0,1,37,37,9,9,130.0,0,0,0,1,0,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,Graduate +1,18,1,9238,1,1,137.0,1,19,38,5,8,137.4,1,0,0,1,0,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9254,1,1,140.0,1,19,1,9,8,140.9,1,0,0,1,0,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,132.0,1,1,2,9,3,128.2,1,0,0,1,0,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9085,1,1,126.0,1,1,3,5,5,123.9,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,19,133.1,1,37,37,9,7,106.5,0,0,0,1,0,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,132.0,1,37,19,7,7,132.4,1,0,0,1,0,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,139.0,1,37,38,9,9,126.1,0,0,0,1,0,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,136.0,1,19,38,9,9,123.0,1,0,0,1,0,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,1,140.0,1,0,0,1,1,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,123.0,1,19,19,9,8,134.0,0,0,0,1,0,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,130.0,1,38,19,9,4,118.4,0,0,1,1,0,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,126.0,1,1,1,9,9,116.2,0,0,1,0,1,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,19,1,7,10,105.0,0,0,0,1,1,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,Dropout +1,17,1,9119,1,1,130.0,1,19,19,7,9,121.3,1,0,0,1,1,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,Dropout +1,43,1,9500,1,19,133.1,1,34,34,0,0,110.0,1,0,0,1,1,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,Dropout +1,1,3,9070,1,1,139.0,1,1,38,4,7,142.2,1,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,142.0,1,38,1,5,4,136.6,0,0,0,1,0,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,Graduate +1,17,2,9670,1,1,128.0,1,37,38,5,8,121.7,0,0,0,1,1,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,140.0,1,1,3,9,4,140.0,0,0,1,0,0,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,125.0,1,19,19,9,10,122.0,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,8014,0,1,130.0,1,37,37,9,8,103.5,0,0,0,1,0,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,3,9085,1,1,117.0,1,19,38,5,7,111.1,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,42,1,9085,1,39,140.0,1,19,3,9,1,159.9,1,0,0,1,0,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9254,1,1,112.0,1,37,37,6,6,106.1,1,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9070,1,1,117.0,1,5,1,2,10,120.0,1,0,0,1,0,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,Enrolled +1,7,1,9556,1,2,130.0,1,37,37,9,9,130.0,1,0,0,1,0,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,40,140.0,1,1,19,9,9,139.0,0,0,0,1,0,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,10,130.0,0,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,9070,1,1,135.0,1,3,1,3,5,121.8,0,0,0,1,0,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,135.0,1,19,3,9,4,121.5,1,0,0,1,0,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,136.0,1,19,38,4,8,125.5,1,0,0,1,0,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,37,4,8,132.4,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,142.0,1,34,38,4,7,127.3,0,0,0,1,0,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,15,1,9147,1,1,130.0,26,1,1,2,3,130.0,0,0,0,1,0,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,17,2,8014,0,1,133.0,1,19,1,5,5,119.7,1,0,0,1,0,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,6,133.1,1,1,1,90,3,107.0,1,0,0,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,130.0,1,1,1,4,5,123.8,0,0,0,1,0,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9670,1,1,130.0,1,38,37,5,5,123.4,1,0,0,1,0,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,130.0,1,37,36,4,90,127.6,0,0,0,1,1,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +2,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,Enrolled +1,1,5,9070,1,1,122.0,1,37,37,9,9,124.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,3,120.0,1,37,37,9,9,141.0,0,0,0,1,0,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,Dropout +1,43,1,33,1,1,134.0,1,37,37,1,1,100.0,1,0,0,1,1,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9773,1,1,125.0,1,19,37,9,5,122.2,0,0,0,0,0,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,113.4,0,0,0,1,0,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,142.0,1,19,39,5,4,141.7,0,0,0,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,137.0,1,1,38,5,8,125.8,0,0,0,0,0,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,141.0,1,1,37,4,3,126.8,1,0,0,1,0,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Graduate +1,17,4,9500,1,1,133.0,1,4,4,4,4,130.7,1,0,0,1,0,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,Graduate +1,1,2,9500,1,1,119.0,1,1,1,4,4,115.2,1,0,0,1,0,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,128.0,1,1,1,4,10,118.9,1,0,0,1,0,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,130.0,1,37,38,7,8,119.3,1,0,0,1,0,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,148.0,1,3,1,4,5,132.8,0,0,0,1,0,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,143.0,1,37,19,4,4,123.3,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9147,1,1,130.0,1,34,34,99,99,109.8,1,0,0,0,1,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9085,1,2,140.0,1,38,38,9,10,150.0,0,0,0,1,1,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9670,1,42,110.0,1,1,19,9,9,114.2,0,0,0,1,1,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,Graduate +1,53,1,9147,1,42,140.0,1,3,4,2,1,140.2,0,0,0,1,0,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,145.0,1,19,38,9,7,136.3,1,0,0,1,0,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,38,37,9,9,154.4,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,127.0,1,38,38,9,6,122.8,0,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,120.2,1,0,0,1,1,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,124.0,1,3,1,2,5,121.6,0,0,0,1,0,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Enrolled +1,17,5,9853,1,1,132.0,1,37,38,5,6,119.1,1,0,0,1,0,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,Graduate +1,17,6,9670,1,1,110.0,1,1,19,4,10,111.3,0,0,0,1,1,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,120.0,1,38,37,9,9,114.8,1,1,0,1,0,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,140.0,1,19,19,9,3,130.0,0,0,0,1,1,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9254,1,1,120.0,1,37,37,9,9,115.1,1,0,0,0,1,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,142.0,1,1,37,5,7,128.0,0,0,0,1,0,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,168.0,1,37,1,9,4,133.4,1,0,0,1,0,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,Graduate +1,43,4,9085,1,1,133.1,1,34,34,99,99,125.2,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9147,1,1,123.0,1,1,1,9,7,117.4,1,0,0,1,0,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,Graduate +1,1,6,9119,1,1,135.0,1,2,1,3,5,123.5,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,Enrolled +1,17,2,9254,1,1,118.0,22,19,37,9,9,110.3,1,0,0,0,0,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,126.0,1,1,19,4,4,116.9,0,0,0,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,117.0,1,1,38,3,9,109.3,0,0,1,0,0,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,133.1,1,37,37,9,8,113.0,0,0,0,1,0,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,Graduate +2,42,1,9991,0,6,123.0,1,37,37,9,9,123.0,0,0,0,1,1,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9003,1,1,100.0,1,37,37,9,5,110.0,0,0,0,1,0,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,127.0,1,37,38,9,5,131.2,1,0,0,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,110.0,1,37,37,9,7,112.5,1,0,0,1,0,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,126.0,1,19,37,7,5,119.4,0,0,0,1,0,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,121.0,1,1,1,4,3,120.5,1,0,0,1,0,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,134.0,1,1,1,3,3,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,3,9500,1,1,150.0,1,19,38,1,1,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,5,9119,1,1,124.0,11,4,12,2,9,119.5,1,0,0,1,1,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,117.0,1,19,1,4,7,112.1,0,0,0,1,0,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,Enrolled +1,1,5,9500,1,1,132.0,1,37,37,7,7,120.3,1,0,0,1,0,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,1,110.0,1,37,37,90,5,150.0,1,0,0,1,1,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9773,1,1,130.0,1,38,37,5,3,122.3,1,0,1,0,0,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9556,1,1,118.0,1,19,38,9,9,116.3,1,0,0,1,0,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,120.0,1,3,3,3,3,111.6,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,131.0,1,37,19,9,9,134.5,1,0,0,1,1,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Enrolled +1,17,2,9556,1,1,133.1,1,37,38,9,8,106.0,1,0,0,1,0,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,2,110.0,1,37,37,9,9,112.9,0,0,0,1,0,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,2,9773,1,1,126.0,1,19,38,9,8,118.7,1,0,0,1,0,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,140.0,1,1,1,3,3,127.6,1,0,0,1,0,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,163.0,1,19,1,5,10,146.6,1,0,1,1,0,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,39,151.0,1,19,37,4,7,151.0,0,0,1,1,0,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,165.0,1,19,37,5,5,142.3,0,0,0,1,0,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9773,1,19,133.1,1,19,1,7,9,115.0,1,0,1,0,1,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,Dropout +1,1,2,9556,1,1,130.0,1,1,38,3,8,119.5,1,0,0,1,0,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,Graduate +1,17,3,171,1,1,125.0,1,3,39,2,5,117.0,1,1,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9147,1,1,133.0,1,19,1,5,10,121.8,0,0,0,1,1,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9119,1,1,131.0,1,1,3,9,10,123.7,1,0,0,1,1,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,148.0,1,37,38,9,8,133.0,1,0,0,1,0,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9254,1,1,120.0,1,3,19,3,9,114.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9773,1,1,114.0,1,1,1,9,9,111.6,1,0,0,1,0,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,115.0,1,38,1,9,8,118.5,0,0,0,1,1,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,2,5,127.0,0,0,0,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,117.0,1,1,1,4,7,109.3,1,0,0,1,0,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,9,9,138.2,0,0,1,0,0,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,125.0,1,1,1,3,3,114.5,0,0,0,1,1,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,44,1,9147,1,39,130.0,1,19,1,9,3,130.0,0,0,0,1,0,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,145.0,1,38,19,4,9,127.9,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,128.0,1,37,37,9,8,124.3,1,0,0,1,0,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,Graduate +1,18,3,9070,1,1,138.0,1,38,37,9,7,125.1,1,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,5,9119,1,1,131.0,1,19,37,9,7,123.3,1,0,0,1,1,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,130.0,1,37,19,9,8,106.2,1,0,0,1,0,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,131.0,1,19,38,4,5,132.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9003,1,1,120.0,1,37,37,5,9,120.0,1,0,0,1,1,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,132.0,1,4,39,2,2,136.6,1,0,0,1,0,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,Enrolled +1,7,1,9500,1,40,170.0,1,1,1,9,4,170.0,0,0,0,1,0,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,Graduate +1,16,1,9003,1,1,147.0,1,1,37,4,9,140.7,1,0,1,1,0,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,125.0,1,1,1,4,8,115.6,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,150.0,1,37,37,9,6,138.5,0,0,0,1,0,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,2,9991,0,1,143.0,1,5,1,4,4,131.5,0,0,0,1,1,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,9556,1,1,133.1,6,3,3,4,4,169.2,0,0,1,0,0,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,2,9556,1,1,133.1,1,1,1,9,10,100.5,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,120.0,1,19,38,9,7,117.9,1,0,0,1,0,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,146.0,1,1,38,9,9,135.5,1,0,1,1,0,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,Enrolled +1,1,3,9254,1,1,122.0,1,19,38,3,10,114.3,1,0,0,1,0,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,9130,1,1,130.0,1,2,3,9,1,117.6,0,0,0,1,1,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,Enrolled +4,43,4,9991,0,12,133.1,1,37,37,9,9,153.0,0,0,0,0,0,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,2,9500,1,1,135.0,1,38,37,9,5,125.3,1,0,0,1,0,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,38,37,9,9,133.0,0,0,0,1,0,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,129.0,1,38,37,4,6,128.0,0,0,0,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,128.0,1,2,19,2,4,123.3,1,0,0,1,0,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,130.0,1,19,3,4,2,159.0,0,0,0,1,0,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,Graduate +2,7,1,8014,0,3,130.0,1,19,38,3,7,130.0,0,0,0,1,0,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,116.0,1,19,37,3,3,109.0,1,0,0,1,0,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,123.0,1,1,1,3,9,116.7,1,0,0,1,0,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,144.0,1,19,19,4,4,130.7,1,0,0,1,0,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,42,1,9500,1,1,100.0,1,19,37,5,7,134.3,1,0,0,1,0,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,143.0,1,1,19,4,4,129.9,0,0,0,1,0,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,19,133.1,1,19,37,7,9,137.2,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9853,1,1,123.0,1,19,19,9,7,117.4,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,144.0,1,19,19,5,5,130.3,1,0,0,1,0,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,137.0,1,1,19,4,7,126.7,1,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,4,9773,1,1,124.0,1,3,12,2,9,137.0,1,0,0,1,1,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,135.0,1,37,37,9,8,123.0,1,0,0,1,0,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,123.0,1,38,37,9,7,120.6,1,0,0,0,0,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,Dropout +2,2,1,9147,1,2,120.0,1,37,37,9,9,120.0,0,0,0,0,1,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,103.0,1,1,3,2,2,100.6,1,1,0,1,0,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,126.0,1,3,1,2,8,123.9,1,0,0,1,0,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,Enrolled +1,17,4,9500,1,1,136.0,1,3,3,2,2,132.5,1,0,0,1,0,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,114.0,1,3,29,3,5,111.9,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,125.0,1,19,1,9,9,130.6,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,147.0,1,37,38,9,5,134.8,1,0,0,1,0,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,131.0,1,1,19,9,9,130.3,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,118.0,1,3,1,2,5,110.0,1,0,0,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,130.0,1,19,19,4,10,116.8,0,0,0,1,0,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,Graduate +1,43,1,8014,0,6,133.1,1,34,34,0,0,100.0,0,0,1,1,0,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9670,1,12,170.0,1,1,37,3,5,110.0,0,0,0,1,1,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,Graduate +2,1,1,9991,0,3,160.0,1,1,3,4,9,137.3,0,0,0,1,0,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,108.0,1,19,1,5,5,107.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,121.0,1,3,3,2,2,112.3,1,0,1,0,0,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,Dropout +1,1,2,9773,1,1,138.0,1,19,1,9,3,133.5,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,136.0,1,38,38,9,9,121.7,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,132.0,1,38,37,9,7,122.0,1,0,0,1,0,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9003,1,1,125.0,1,3,3,2,2,100.0,0,0,0,1,1,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,137.0,1,1,1,1,5,131.8,0,0,0,1,0,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,140.0,1,37,37,9,9,148.0,1,0,0,0,1,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,127.0,1,3,1,3,7,137.2,1,0,0,1,0,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,150.0,1,37,19,9,9,150.0,0,0,0,1,1,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,Graduate +1,43,4,171,1,1,136.0,1,37,37,9,9,123.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,162.0,1,37,19,9,8,142.8,0,0,1,1,0,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,127.0,1,1,38,5,7,123.5,1,0,0,1,0,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,133.1,1,19,37,9,9,130.0,0,0,0,0,0,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,Graduate +1,17,2,9070,1,1,121.0,1,1,19,144,144,111.9,1,0,0,1,1,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,115.0,1,19,37,9,9,114.3,0,0,0,1,1,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,Dropout +1,10,1,9254,1,1,115.0,24,3,1,9,9,116.1,1,0,0,1,0,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,143.0,1,19,3,4,4,147.2,0,0,0,1,0,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,160.0,1,1,38,4,4,160.0,1,0,0,1,1,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,Graduate +2,1,1,9238,1,1,134.0,1,37,37,5,5,120.4,0,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,38,37,9,4,120.0,0,0,0,1,1,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Graduate +1,18,1,9119,1,1,108.0,1,1,1,4,3,105.6,1,0,0,1,1,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,137.0,1,37,37,9,9,141.0,0,0,0,1,1,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9254,1,1,113.0,1,1,2,5,3,106.7,1,0,1,1,1,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,16,1,9085,1,1,140.0,1,1,1,9,9,127.1,1,0,0,1,0,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,Graduate +1,53,1,9238,1,42,140.0,1,37,37,9,10,136.9,1,0,0,1,0,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,7,134.5,0,0,0,1,0,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,2,9773,1,1,125.0,1,19,1,4,5,122.2,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9070,1,1,134.0,1,1,19,3,3,127.7,1,0,0,0,0,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,96.0,1,38,37,6,4,96.0,1,0,0,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,Dropout +1,10,1,9085,1,1,134.0,1,37,37,5,5,134.0,1,0,0,1,0,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,143.0,1,1,3,3,3,149.0,1,0,0,1,0,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,Dropout +1,18,3,9070,1,1,142.0,1,1,37,4,7,130.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,7,1,9003,1,3,140.0,1,3,19,2,10,140.0,0,0,0,0,1,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,151.0,1,38,37,9,5,138.4,1,0,0,1,0,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,143.0,1,19,19,4,4,135.3,1,0,0,1,0,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,133.0,1,1,19,9,9,132.0,0,0,0,1,1,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,19,133.1,1,37,37,9,5,135.5,0,0,0,1,0,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9254,1,1,134.0,1,37,37,9,9,133.3,1,0,1,1,0,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,3,9085,1,1,135.0,1,3,2,4,3,121.0,1,0,0,1,0,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,140.0,1,1,1,4,4,123.5,1,0,0,1,0,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,188.0,1,3,3,2,2,178.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9238,1,1,126.0,1,30,19,0,2,121.5,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,131.0,1,3,19,5,5,127.2,1,0,0,1,0,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,Graduate +1,17,4,9853,1,1,143.0,1,37,37,9,5,127.3,1,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,111.0,1,19,38,9,9,110.7,1,0,0,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,140.0,1,19,38,9,7,125.7,1,0,0,1,1,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,6,9500,1,1,126.0,1,19,37,3,9,119.4,1,0,0,1,0,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,131.0,1,1,1,4,9,122.3,0,0,0,1,1,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,128.0,1,1,19,9,8,100.0,1,0,0,1,0,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,138.0,1,19,19,5,1,130.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,1,140.0,1,3,3,1,1,140.0,1,0,0,1,0,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,3,130.0,1,1,19,5,9,130.0,0,0,0,1,1,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,131.0,1,38,1,5,7,131.0,1,0,0,1,1,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,19,133.1,1,19,19,9,7,140.0,0,0,1,0,0,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,133.1,1,37,37,9,9,126.5,0,0,0,1,0,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9500,1,1,132.0,1,37,37,9,7,128.3,1,0,0,1,0,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,Graduate +1,16,1,171,1,1,145.0,1,3,3,3,3,155.0,1,0,0,1,0,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,Enrolled +4,1,1,9991,0,1,140.0,1,37,37,9,7,139.0,0,0,0,1,0,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9070,1,1,152.0,1,39,39,3,3,134.2,1,0,0,1,1,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,141.0,1,19,19,7,9,139.8,0,0,0,1,0,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,Graduate +1,1,4,9670,1,1,133.0,1,1,2,4,7,121.1,1,0,0,1,0,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,Graduate +1,15,1,9147,1,1,135.0,26,1,1,9,7,135.0,0,0,1,1,1,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,Enrolled +2,1,1,9991,0,1,144.0,1,19,19,9,9,151.4,0,0,0,1,0,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,18,4,9853,1,1,118.0,1,19,37,9,6,111.4,1,0,1,0,0,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9500,1,1,134.0,1,38,1,9,6,133.5,1,0,0,1,1,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,37,37,9,6,107.0,0,0,0,1,1,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,141.0,1,38,38,9,9,128.4,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,133.0,1,1,1,9,9,128.5,1,0,0,1,0,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,40,120.0,1,3,3,4,2,125.0,0,0,0,1,0,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,150.0,1,37,38,3,7,134.5,0,0,0,1,0,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,127.0,1,3,19,4,4,116.9,0,0,0,1,1,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,136.0,1,2,38,143,163,129.7,1,0,0,1,1,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,159.0,1,1,1,3,3,151.0,1,0,0,1,0,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,165.0,1,37,38,9,8,152.4,1,0,0,1,0,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,6,9500,1,1,139.0,1,1,1,4,4,124.5,1,0,0,1,0,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,134.0,1,1,1,5,3,128.4,1,0,0,1,0,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,133.0,1,2,1,3,4,136.2,1,0,0,1,0,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,120.0,1,19,1,8,7,115.1,1,0,0,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,131.0,1,1,39,5,3,122.6,1,0,0,1,0,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,8014,0,1,130.0,1,1,1,9,9,118.1,0,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,Graduate +1,39,9,9991,0,1,120.0,1,38,38,9,5,144.8,0,0,0,1,1,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9500,1,19,133.1,1,37,37,9,9,129.0,1,0,0,1,0,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,138.0,1,1,19,4,7,123.0,1,0,1,0,0,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,143.0,1,1,37,9,9,135.0,1,0,0,1,0,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,120.0,1,19,1,9,3,120.0,1,0,0,1,1,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,162.0,1,37,1,9,9,165.2,1,0,0,1,0,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,142.0,1,37,37,5,5,131.3,1,0,0,1,0,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,Graduate +1,1,3,171,1,1,125.0,1,38,37,4,9,115.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,120.0,1,38,37,5,3,110.5,0,0,0,1,0,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,Graduate +1,42,1,9773,1,6,120.0,1,34,34,0,0,122.0,1,0,0,1,0,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,162.0,1,1,38,4,5,138.6,1,0,0,1,0,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,152.0,1,1,1,4,4,141.0,1,0,0,1,0,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,139.0,1,3,19,3,5,120.8,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,135.0,1,1,1,3,5,130.1,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9670,1,1,127.0,1,3,3,1,1,121.4,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,135.0,1,1,1,1,1,131.5,0,0,0,1,1,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,Enrolled +1,17,3,9670,1,1,147.0,1,37,37,8,8,128.8,0,0,1,1,0,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,133.1,41,38,38,9,8,134.8,0,0,0,1,0,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,90,8,128.2,0,0,0,1,0,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,131.0,1,1,37,4,4,126.1,1,0,0,1,0,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,9,9,125.3,1,0,0,1,1,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,Dropout +2,39,1,8014,0,3,110.0,1,37,37,9,9,160.5,0,0,0,1,0,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,138.0,1,38,1,9,4,127.5,1,0,0,1,0,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,Enrolled +1,39,1,9238,1,1,170.0,1,38,19,9,9,140.0,1,0,0,1,0,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,1,19,4,10,142.3,1,0,0,1,0,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,154.0,1,38,37,9,9,140.4,0,0,0,1,0,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,133.1,41,19,1,9,9,105.0,1,0,0,0,0,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +2,44,1,9085,1,39,160.0,1,37,37,192,192,160.0,0,0,0,1,0,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,141.0,1,38,38,9,9,142.3,1,0,0,1,0,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,119.0,1,37,37,7,7,112.0,1,0,0,0,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,137.0,1,37,37,9,9,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,Graduate +4,39,1,9670,1,1,100.0,1,37,37,4,10,120.0,0,0,1,1,0,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,130.0,1,3,3,2,2,131.1,0,0,0,1,1,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,120.0,1,1,19,9,3,116.9,1,0,1,0,1,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,42,1,9500,1,1,100.0,1,1,19,4,8,136.0,1,0,0,1,0,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,Graduate +1,1,2,171,1,1,125.0,1,38,19,9,9,117.3,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,152.0,1,1,38,4,9,160.4,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,12,133.1,1,37,37,9,7,139.4,0,0,1,1,0,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,150.0,1,1,1,4,8,131.5,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,7,1,9556,1,4,190.0,1,5,5,2,2,190.0,1,0,0,1,1,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,Dropout +1,17,3,9238,1,1,121.0,1,1,1,4,5,117.2,0,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,130.0,1,37,37,9,7,113.0,1,0,0,0,1,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,123.0,1,19,19,4,10,124.4,1,0,0,1,0,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,Graduate +1,17,2,9238,1,1,133.0,1,37,37,3,9,119.7,0,1,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,138.0,1,38,19,9,10,133.1,0,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,108.0,1,38,38,7,7,105.2,1,0,0,1,1,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,Dropout +1,1,3,171,1,1,115.0,1,9,1,6,6,108.7,1,0,0,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,4,4,119.8,1,0,0,1,0,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9119,1,1,126.0,1,19,19,7,3,116.6,1,0,0,1,1,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,Graduate +2,39,1,9500,1,1,133.1,1,37,37,9,9,130.1,0,0,0,0,1,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,124.0,1,37,38,9,3,114.2,0,0,0,1,0,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,3,9147,1,1,137.0,1,1,1,4,7,124.4,1,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9130,1,19,133.1,1,37,37,9,10,156.4,1,0,1,1,1,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,5,9853,1,1,121.0,1,38,19,7,7,117.5,1,0,1,0,0,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,2,9238,1,1,117.0,1,19,1,9,8,110.0,1,0,1,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9147,1,1,148.0,1,1,19,9,6,118.4,1,0,0,1,1,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,133.0,1,1,1,4,4,100.0,0,0,0,1,0,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,17,1,9238,1,1,158.0,1,1,1,5,6,140.5,0,0,0,1,0,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,157.0,1,19,38,9,7,146.2,1,0,0,1,0,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,131.0,1,3,1,4,1,135.9,0,0,0,1,1,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,38,37,5,10,117.8,1,0,0,1,1,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,Graduate +1,1,2,9119,1,1,126.0,1,1,38,141,192,122.5,1,0,0,1,1,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,117.0,1,37,37,0,4,120.5,1,0,0,1,1,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9254,1,1,110.0,1,12,19,9,9,125.0,0,0,0,0,1,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,Dropout +1,18,1,9147,1,1,121.0,1,19,3,5,5,115.8,1,0,0,1,0,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,139.0,0,0,1,0,1,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9003,1,3,130.0,1,3,3,6,2,130.0,1,0,0,1,1,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,132.0,1,19,37,3,5,125.4,1,0,0,0,0,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,38,38,4,7,115.6,1,0,0,0,0,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,129.0,1,1,2,3,1,125.9,1,0,0,1,0,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,9,9,143.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,126.0,1,3,19,3,3,115.2,0,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,123.0,1,19,38,9,10,116.7,1,0,0,1,0,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,Graduate +1,17,2,9254,1,1,125.0,1,37,37,9,8,122.6,1,0,1,0,0,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9119,1,1,160.0,1,38,37,7,7,129.0,0,0,0,1,1,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,3,19,2,3,133.8,1,0,0,1,0,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,120.0,1,19,19,4,7,115.5,1,0,1,1,1,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,120.0,1,38,38,3,3,140.0,0,0,0,1,0,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9238,1,1,127.0,1,1,19,4,3,141.7,1,0,0,1,1,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,111.0,1,37,37,9,10,95.8,1,0,0,0,1,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,130.0,1,38,1,9,4,140.0,1,0,0,1,0,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,Graduate +1,1,2,9147,1,1,131.0,1,1,1,9,9,118.8,0,0,0,1,1,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,161.0,1,1,19,4,4,152.3,0,0,0,1,0,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,124.0,1,38,38,9,9,115.6,0,0,0,1,1,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,160.0,1,3,3,1,2,149.2,0,0,0,1,1,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,16,3,9853,1,1,134.0,1,19,37,9,9,121.1,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,Enrolled +1,43,2,9991,0,1,140.0,1,37,37,5,5,124.3,1,0,0,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,127.0,1,38,37,5,7,123.9,1,0,0,1,0,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,120.0,1,19,37,6,8,160.0,0,0,0,1,1,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,1,133.1,1,3,3,4,2,144.9,1,0,0,1,0,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,130.0,1,1,19,3,10,130.0,1,0,0,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,Graduate +1,42,1,9003,1,1,130.0,1,3,2,2,6,105.3,0,0,0,0,1,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9991,0,1,130.0,1,37,37,9,9,127.6,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,100.0,1,1,38,4,6,104.8,0,0,1,0,0,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,Dropout +1,1,5,9070,1,1,125.0,1,3,3,2,2,140.8,1,0,0,1,1,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,133.1,1,34,38,0,4,147.0,0,0,0,1,0,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,126.0,1,34,34,0,0,142.4,0,0,0,1,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,121.0,1,19,38,4,10,114.4,0,0,0,1,0,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,133.1,1,37,37,5,0,111.5,0,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,130.0,1,1,19,5,5,129.1,1,0,0,1,0,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,3,1,4,6,130.0,0,0,0,1,1,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,1,123.0,1,19,1,1,1,140.8,0,0,0,1,0,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,130.0,1,1,1,4,10,130.0,1,0,0,1,0,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,Graduate +4,39,1,9085,1,1,133.1,1,34,34,0,0,128.2,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,128.0,1,37,37,9,9,135.7,1,0,0,1,1,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,135.0,1,38,38,4,7,121.7,1,0,0,1,0,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9085,1,1,110.0,25,38,38,9,6,117.2,1,0,0,1,1,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,Graduate +1,43,3,9500,1,1,140.0,1,1,19,9,7,127.5,1,0,1,1,0,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,Graduate +1,17,3,9238,1,1,133.1,1,41,1,2,3,117.0,1,0,0,1,0,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,1,112.0,1,37,37,9,9,108.5,0,0,0,1,1,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,51,1,9238,1,39,140.0,1,38,38,5,7,129.1,1,0,0,1,0,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,122.0,1,38,19,9,9,126.6,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,123.0,1,1,1,4,4,114.4,0,0,0,1,1,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,Dropout +1,18,4,171,1,1,133.0,1,1,4,9,5,129.2,1,0,1,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,128.0,1,19,19,9,5,121.7,1,0,0,1,0,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,Graduate +1,39,1,9130,1,1,150.0,1,19,19,9,5,160.0,1,0,0,1,1,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,160.0,1,19,37,5,3,152.0,0,0,0,1,0,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,53,1,9085,1,42,140.0,1,19,37,9,8,142.5,1,0,0,1,0,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,130.0,1,9,19,4,1,134.2,1,0,0,1,0,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,3,9254,1,1,121.0,1,19,19,9,6,125.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,128.0,1,19,1,9,10,157.4,1,0,0,1,0,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,146.0,1,37,37,9,7,149.2,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9853,1,12,133.1,1,37,37,7,8,103.0,0,0,0,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,143.0,1,19,19,5,6,142.3,0,0,0,1,0,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,Enrolled +1,1,2,9085,1,1,118.0,1,1,19,3,3,112.4,1,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,Enrolled +2,43,1,9991,0,1,100.0,1,37,37,9,9,128.2,0,0,0,1,1,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,118.0,1,38,38,5,5,110.0,0,0,0,1,0,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9147,1,1,136.0,1,38,38,9,9,127.3,1,0,0,1,1,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,170.0,1,19,19,8,8,176.7,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,124.0,41,19,38,9,9,123.3,1,0,0,1,0,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9070,1,1,170.0,1,3,3,2,2,165.8,1,0,0,1,1,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,3,37,9,9,142.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9147,1,1,122.0,1,1,38,4,5,116.4,0,0,0,1,1,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,150.0,1,1,1,4,4,138.1,1,0,0,1,0,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,Enrolled +1,17,6,9238,1,1,138.0,1,3,3,1,2,123.0,1,0,0,1,0,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,135.0,1,19,12,9,7,137.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9070,1,1,125.0,1,1,3,3,3,128.9,0,0,0,1,0,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,128.0,1,38,19,9,10,125.2,1,0,0,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Enrolled +1,42,1,9003,1,1,140.0,1,1,3,4,2,140.0,1,0,0,1,1,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,Enrolled +1,39,1,9500,1,19,133.1,1,37,38,151,161,143.7,0,0,0,1,0,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,118.0,1,38,38,7,7,115.2,1,0,0,1,0,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,152.0,1,19,37,9,8,135.6,1,0,0,1,1,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,12,110.0,1,34,34,0,0,157.8,0,0,0,1,0,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,Graduate +1,1,6,9147,1,1,112.0,1,38,38,9,9,117.3,1,0,0,1,0,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,Graduate +1,17,3,9147,1,1,118.0,1,1,19,5,7,118.0,0,0,0,1,0,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,Enrolled +1,44,1,9070,1,39,120.0,1,1,19,5,8,119.8,0,0,0,1,1,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9670,1,1,133.1,1,19,19,3,9,118.0,0,0,0,1,1,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,159.0,1,1,19,9,9,151.3,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,118.0,1,1,38,5,7,120.8,1,0,0,1,0,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,132.0,1,1,37,8,9,128.0,1,0,0,1,0,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,Graduate +1,42,1,9147,1,1,135.0,1,19,1,4,4,120.0,0,0,0,0,1,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9670,1,1,122.0,1,1,38,3,3,114.3,1,0,0,1,0,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,171,1,1,131.0,1,1,1,0,3,149.9,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +4,39,2,9556,1,1,133.1,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,5,9119,1,1,126.0,1,12,19,4,5,122.5,1,0,0,1,1,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,145.0,1,2,38,3,8,136.3,1,0,0,1,0,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,Enrolled +1,15,1,9147,1,1,150.0,1,38,1,9,1,150.0,0,0,0,1,1,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,150.0,1,3,39,3,7,126.4,0,0,0,1,1,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,Enrolled +1,17,2,9773,1,1,148.0,1,3,38,2,6,144.2,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,124.0,1,37,19,9,3,116.3,1,0,0,1,0,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +2,39,1,9003,1,1,130.0,1,1,37,9,1,122.0,0,0,1,0,1,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,160.0,1,19,38,5,7,139.0,1,0,0,1,0,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,157.0,1,3,2,3,6,150.9,1,0,0,1,0,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,Dropout +1,42,1,9119,1,1,120.0,1,1,1,5,7,108.6,0,0,0,0,1,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9773,1,1,138.0,1,37,38,4,9,134.2,1,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,110.0,1,0,0,1,0,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,Dropout +4,39,1,9853,1,1,143.0,1,37,1,9,10,140.0,0,0,1,0,0,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,130.0,1,3,19,4,8,133.0,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,19,38,6,7,140.0,1,0,0,1,1,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,132.0,1,2,2,6,6,128.5,0,0,0,1,0,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,Dropout +1,1,2,171,1,1,135.0,1,19,19,4,7,149.0,1,0,0,1,1,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,130.0,1,19,38,3,9,126.5,1,0,0,1,0,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,125.0,1,19,38,9,8,121.5,0,0,0,1,0,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,7,129.0,0,0,0,1,0,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,Dropout +1,7,3,9130,1,3,130.0,1,37,26,90,10,130.0,0,0,0,0,1,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,123.0,1,19,19,7,7,120.8,1,0,0,1,0,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,Graduate +1,18,2,9853,1,1,168.0,1,1,19,3,9,126.8,1,0,0,1,1,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9085,1,39,140.0,1,3,1,4,3,140.0,1,0,0,1,0,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,148.0,1,19,19,9,9,138.7,0,0,0,1,0,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,Graduate +1,18,1,171,1,1,110.0,1,19,2,5,5,117.7,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9070,1,1,136.0,1,37,38,9,9,125.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +2,39,1,8014,0,1,133.1,1,37,37,5,4,134.5,0,0,0,1,0,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,Enrolled +1,42,1,9119,1,1,150.0,1,38,37,5,8,133.5,1,0,0,1,1,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,140.0,1,1,3,4,6,139.2,0,0,1,1,0,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,125.0,1,19,19,5,5,117.0,0,0,0,1,0,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,Graduate +1,39,1,9147,1,12,133.1,1,19,37,7,9,118.2,0,0,0,1,0,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,2,9147,1,1,121.0,1,1,19,9,9,113.7,1,0,0,0,0,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,131.0,1,3,19,2,3,132.8,1,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,136.0,1,37,38,4,5,126.0,1,0,0,1,0,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,Graduate +1,1,1,9853,1,1,145.0,1,37,37,9,5,146.8,0,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,123.0,1,1,1,4,9,116.7,1,0,0,1,1,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,Dropout +1,18,1,171,1,1,121.0,1,1,1,4,3,116.8,1,0,0,1,0,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,141.0,1,38,1,9,4,129.0,1,0,0,1,0,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,133.1,1,34,34,0,0,130.0,0,0,0,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,126.0,1,1,3,4,3,122.5,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,Dropout +2,1,1,9254,1,1,136.0,1,37,37,9,9,122.7,0,0,0,1,0,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,37,37,9,10,100.0,0,0,0,1,1,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9500,1,1,133.1,1,38,19,7,9,115.5,1,0,0,1,1,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9991,0,1,131.0,1,19,37,9,9,118.4,1,0,0,1,0,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,153.0,1,1,38,4,3,146.7,0,0,0,1,0,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,Graduate +1,43,1,8014,0,12,114.0,1,34,34,0,99,110.0,0,0,0,1,0,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,147.0,1,1,1,5,5,134.9,0,1,0,1,0,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,Graduate +1,1,2,9085,1,1,156.0,1,40,40,3,7,150.9,1,0,0,1,0,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,137.0,1,38,38,5,7,122.7,1,0,0,1,0,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,123.0,1,1,19,4,5,117.8,0,0,0,1,1,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9238,1,1,135.0,1,37,37,8,6,127.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,131.0,1,37,37,9,9,123.0,1,0,0,1,0,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9670,1,1,123.0,1,3,1,3,1,116.7,0,0,0,1,0,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,9085,1,40,140.0,1,1,19,5,5,140.0,1,0,0,1,0,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,Graduate +4,39,1,9500,1,19,133.1,1,38,19,5,7,140.0,0,0,0,1,0,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,127.0,1,3,19,3,9,127.0,1,0,0,1,1,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,Graduate +1,17,2,8014,0,1,120.0,1,19,1,5,10,114.8,1,0,0,1,0,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9670,1,19,133.1,1,37,37,9,7,130.0,0,0,1,1,1,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,171,1,1,131.0,41,19,1,4,7,131.4,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,16,2,171,1,1,145.0,1,3,3,2,2,143.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,120.0,1,19,38,6,6,120.0,1,0,0,1,1,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,6,9238,1,1,131.0,1,1,3,4,2,131.7,1,0,0,1,0,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,137.0,1,3,1,4,9,128.6,0,0,0,1,0,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,170.0,1,19,19,9,7,170.0,1,0,1,1,1,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9853,1,1,122.0,1,38,37,9,9,118.9,1,0,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,5,9500,1,1,148.0,1,1,19,4,8,130.2,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9003,1,19,133.1,1,1,19,9,8,120.0,0,0,1,0,1,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,2,9147,1,1,143.0,1,19,38,9,7,132.2,1,0,0,1,0,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9556,1,1,132.0,1,38,37,7,7,119.0,1,0,0,1,0,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,133.1,1,3,1,4,4,95.0,0,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,154.0,1,3,1,2,1,137.2,0,0,0,1,1,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,Enrolled +1,1,1,9853,1,1,129.0,1,38,37,6,6,138.1,0,0,0,1,0,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,17,2,9670,1,1,129.0,1,1,19,5,5,119.2,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,43,1,9500,1,1,137.0,1,3,3,2,2,115.0,0,0,0,1,0,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,Graduate +1,17,2,9254,1,1,115.0,1,19,19,9,7,113.3,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,133.0,1,38,38,7,7,125.3,1,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,10,150.0,0,0,0,0,0,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,19,133.1,1,19,19,144,141,131.5,0,0,1,1,0,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,133.0,1,38,1,2,4,126.0,0,0,0,1,0,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,15,1,9147,1,1,133.1,41,41,1,3,4,100.0,0,0,1,0,1,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,Dropout +1,10,2,9773,1,1,154.4,22,19,38,3,5,154.4,1,0,0,0,0,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9070,1,39,100.0,1,1,1,4,4,106.0,0,0,0,1,1,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,135.0,1,38,19,8,8,126.3,1,0,1,1,0,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,120.0,41,1,1,9,6,114.8,1,0,0,1,0,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,Enrolled +1,17,1,9085,1,1,124.0,1,19,38,7,7,113.9,1,0,0,1,0,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,Graduate +1,1,6,9254,1,1,126.0,1,38,37,5,7,123.9,1,0,0,1,0,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,125.0,1,37,37,9,9,121.5,1,0,0,1,1,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,6,9773,1,1,125.0,1,1,1,5,4,122.2,0,0,0,1,1,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,135.0,1,19,19,4,5,126.8,1,0,0,1,1,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9238,1,1,133.0,1,1,37,7,9,127.4,1,0,0,1,0,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,3,9070,1,1,127.0,1,19,38,5,7,141.0,1,0,0,1,1,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,3,120.0,1,37,37,4,7,122.5,0,0,0,0,0,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,2,9147,1,1,150.0,1,19,37,9,7,101.0,0,0,1,0,0,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,4,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,Graduate +1,17,5,9500,1,1,143.0,1,38,1,9,7,130.6,1,0,0,1,0,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,129.0,1,38,19,5,7,124.0,1,0,0,1,0,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,Graduate +1,17,2,9500,1,1,140.0,1,1,1,5,10,128.5,1,0,0,1,0,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,Enrolled +4,39,1,8014,0,19,100.0,1,1,37,9,1,111.5,0,0,0,1,1,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,Dropout +2,39,2,9556,1,1,110.0,1,19,38,9,9,112.8,0,0,0,1,0,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,116.0,1,19,19,5,8,127.9,0,0,1,0,0,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,Dropout +1,43,4,171,1,1,117.0,1,19,12,9,10,109.3,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,130.0,1,1,38,5,5,122.3,1,0,0,1,0,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,Graduate +1,15,1,9119,1,1,130.0,26,38,3,9,2,137.0,1,0,0,1,1,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,Enrolled +1,39,1,9556,1,1,133.1,1,38,19,9,6,100.0,1,0,0,1,0,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,150.0,1,3,1,3,9,154.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9147,1,1,131.0,1,3,19,2,9,126.1,0,0,0,1,0,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,1,6,9773,1,1,145.0,1,1,19,4,4,131.0,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,136.0,1,19,38,4,7,140.9,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,155.0,1,19,37,4,5,117.5,0,0,0,1,0,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9147,1,1,128.0,1,3,3,5,10,116.5,0,0,0,1,1,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,4,9254,1,1,133.0,1,37,37,5,8,128.5,1,0,0,1,0,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9119,1,1,141.0,1,37,1,9,2,133.0,1,0,0,1,1,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,Enrolled +1,51,1,8014,0,1,120.0,1,1,1,4,4,128.5,0,0,1,0,1,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,Dropout +1,43,1,9003,1,1,120.0,1,3,3,1,2,115.0,0,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,136.0,1,19,19,4,7,136.0,0,0,0,1,0,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,Graduate +1,17,1,9070,1,1,116.0,1,38,38,9,9,123.7,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,125.0,1,19,19,4,8,117.0,1,0,0,1,0,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,135.0,1,1,38,5,7,137.5,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,140.0,1,19,19,7,7,124.6,1,0,0,1,0,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,Enrolled +1,39,1,9670,1,19,133.1,1,1,1,4,7,100.0,0,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,122.0,1,37,37,9,9,131.0,1,0,0,1,0,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,Dropout +2,43,1,9773,1,1,160.0,1,37,37,5,0,160.0,0,0,1,0,1,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9670,1,1,113.0,1,37,19,9,9,110.2,1,0,0,1,0,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,125.0,1,37,37,9,9,126.0,1,0,1,1,0,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,Graduate +1,43,1,171,1,39,140.0,1,38,37,9,7,140.0,0,0,0,0,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9853,1,1,134.0,1,37,19,9,5,121.4,1,0,0,1,0,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,8014,0,1,120.0,1,1,37,7,3,122.8,0,0,0,1,0,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,1,1,4,2,127.7,0,0,0,1,0,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,Enrolled +2,39,1,9991,0,1,120.0,1,19,37,3,9,132.9,0,0,0,1,1,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,138.0,1,1,38,4,9,132.5,1,0,0,1,0,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,133.1,1,19,37,7,7,126.0,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9500,1,1,110.0,1,38,38,9,9,110.0,0,0,0,0,0,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,Dropout +5,7,1,9500,1,40,150.0,1,37,37,4,9,150.0,0,0,0,1,0,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,Graduate +1,17,1,9070,1,1,126.0,1,19,38,9,7,118.7,0,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,16,4,9254,1,1,126.0,1,38,37,9,7,118.7,1,0,0,1,0,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9773,1,1,110.0,1,19,19,5,5,105.5,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,9,133.1,1,34,34,0,0,118.0,0,0,0,1,0,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,140.0,1,3,2,4,6,133.4,1,0,0,0,1,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,Enrolled +1,1,1,171,1,1,134.0,1,3,2,2,2,141.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9773,1,1,133.1,1,1,1,90,90,129.6,0,0,0,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,133.1,1,38,19,5,6,138.0,0,0,1,1,1,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,Enrolled +1,17,3,9500,1,1,156.0,1,19,37,4,9,132.3,1,0,0,1,1,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,Graduate +1,44,1,9085,1,39,140.0,1,3,3,4,2,140.0,1,0,0,1,0,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,Graduate +1,43,1,171,1,1,116.0,1,3,1,2,3,117.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,141.0,1,38,19,9,6,126.3,1,0,0,1,0,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,44,1,9238,1,39,140.0,1,1,19,191,102,143.0,0,0,0,1,0,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,Graduate +1,43,5,8014,0,1,110.0,1,34,34,0,0,110.0,0,0,0,1,1,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9238,1,1,143.0,1,1,11,4,3,128.0,1,0,0,1,0,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +3,17,1,9238,1,1,138.0,1,37,37,9,9,133.5,1,0,0,1,0,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,Enrolled +1,7,1,9119,1,3,150.0,1,3,2,2,2,150.0,0,0,0,1,0,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,150.0,1,19,1,1,1,150.0,0,0,0,1,1,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,Enrolled +1,17,1,9085,1,1,134.0,1,19,37,2,7,131.2,0,0,0,1,0,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,171,1,1,133.1,1,37,37,9,7,100.0,0,0,1,1,1,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,1,9556,1,1,133.1,1,3,19,2,8,106.0,1,0,0,1,1,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,Graduate +1,17,2,9500,1,1,135.0,1,19,19,9,4,129.8,1,0,0,1,0,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,Graduate +1,39,1,33,1,1,130.0,1,38,37,9,6,102.5,0,0,1,0,1,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,Dropout +1,18,1,9500,1,1,144.0,1,37,37,6,6,127.5,1,0,0,1,0,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,130.0,1,37,38,9,9,133.9,1,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,44,1,9003,1,39,140.0,1,37,37,4,7,140.0,0,0,0,1,1,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,Dropout +1,1,4,9773,1,1,137.0,1,3,19,2,3,139.8,1,1,0,1,0,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,1,9991,0,1,130.0,1,2,37,3,9,131.4,0,0,0,1,1,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,135.0,1,3,3,1,1,125.8,1,0,0,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Graduate +1,18,1,9238,1,1,147.0,1,38,34,4,0,130.2,0,0,0,1,0,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +5,17,5,9500,1,1,143.0,1,37,38,5,8,133.5,1,0,0,1,0,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,99.0,1,1,3,5,10,100.0,1,0,0,1,1,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,Graduate +1,16,2,9147,1,1,131.0,1,37,37,9,9,135.9,1,0,0,1,1,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,146.0,1,38,37,6,6,143.9,0,0,0,1,0,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9085,1,1,139.0,1,38,38,5,3,136.2,0,0,0,1,0,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,153.0,1,3,1,2,8,137.6,1,0,0,1,0,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,2,9085,1,1,133.1,1,19,38,9,1,100.0,1,0,1,0,1,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,2,9773,1,1,121.0,1,19,19,9,9,122.8,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,141.0,1,37,38,9,10,138.9,0,0,0,1,0,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,6,9500,1,1,117.0,1,4,12,5,9,119.8,1,0,0,1,0,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,Graduate +1,17,4,9119,1,1,122.0,62,1,1,191,171,121.0,1,0,0,1,1,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,38,19,3,3,98.6,0,0,0,1,0,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,140.0,1,38,37,5,6,124.3,1,0,0,1,0,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,140.0,1,37,37,9,9,127.7,1,0,0,1,0,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,121.0,1,37,37,9,9,124.2,1,0,0,1,0,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,Graduate +1,18,1,9130,1,1,146.0,1,3,3,5,2,137.8,0,0,0,1,1,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,3,120.0,1,1,1,7,10,120.0,1,0,0,0,1,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,120.0,1,37,37,7,8,120.0,1,0,1,0,0,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,178.0,1,19,1,4,8,174.7,0,0,0,1,0,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,Graduate +1,17,5,9254,1,1,114.0,1,38,1,5,9,109.5,0,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,143.0,1,38,38,9,9,140.0,0,0,0,1,1,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,160.0,1,38,37,9,5,159.3,0,0,0,1,0,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,143.0,1,38,34,9,9,133.6,1,0,0,1,0,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,Graduate +4,43,1,9500,1,19,100.0,1,34,34,0,0,110.0,0,0,0,1,1,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,125.0,1,1,19,4,1,121.5,1,0,0,1,1,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,19,7,3,120.0,1,0,0,1,1,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,3,120.0,1,19,1,9,5,134.0,0,0,0,1,0,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,Dropout +1,39,1,9254,1,1,160.0,1,19,37,7,10,100.0,0,0,0,1,1,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,Enrolled +1,15,1,171,1,1,130.0,26,1,1,2,9,130.0,0,0,0,1,1,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,140.0,1,19,37,5,6,137.9,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,123.0,1,19,37,9,9,124.1,1,0,0,1,0,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,140.0,1,38,38,6,6,140.0,0,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,9,133.1,1,34,34,0,0,118.4,0,0,0,0,0,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,6,9254,1,1,125.0,1,1,1,4,3,120.5,1,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,6,171,1,1,126.0,1,10,10,4,4,130.2,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,120.0,1,1,19,4,7,120.0,0,0,0,1,1,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,Enrolled +1,17,5,9773,1,1,143.0,1,1,1,7,7,136.7,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,42,1,9147,1,1,130.0,1,37,38,9,1,130.0,1,0,0,1,0,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,1,130.0,1,37,37,9,9,124.0,0,0,0,1,1,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,Graduate +1,17,2,9238,1,1,136.0,1,1,3,3,4,126.6,1,0,0,1,0,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,127.0,1,19,1,5,7,118.3,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,Enrolled +4,39,1,9991,0,1,147.0,1,19,19,7,8,147.9,0,0,0,1,0,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,124.0,1,19,37,99,90,124.0,0,0,0,0,0,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +2,43,1,9003,1,1,133.1,1,37,37,9,7,136.0,0,0,0,1,1,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,1,9085,1,1,140.0,1,12,1,1,90,141.8,0,0,0,1,0,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,133.1,1,37,37,191,154,95.0,0,0,0,1,0,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,147.0,1,2,3,4,8,145.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9238,1,3,130.0,1,37,19,4,5,130.0,0,0,0,1,0,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,Graduate +1,7,2,9085,1,3,130.0,1,3,3,1,1,130.0,0,0,0,0,0,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,Dropout +2,39,2,9147,1,3,130.0,1,3,37,9,9,103.4,0,0,0,1,0,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,Dropout +1,17,1,9085,1,1,135.0,1,1,19,4,10,125.6,1,0,0,1,0,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,1,1,5,5,96.0,1,0,0,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +5,39,1,9853,1,19,133.1,1,38,1,5,3,105.5,0,0,1,1,0,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,136.0,1,37,37,7,7,121.7,1,0,0,1,0,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9119,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,1,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,19,133.1,1,19,19,4,4,100.0,0,0,0,1,1,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,124.0,1,2,2,3,2,118.4,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9085,1,1,120.0,1,2,3,2,2,116.1,0,0,0,1,0,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,162.0,1,37,37,9,9,142.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,131.0,1,37,1,9,9,135.9,1,0,0,1,0,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,7,100.0,0,0,0,1,1,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,Graduate +1,43,1,9500,1,1,127.0,1,19,19,4,7,121.1,0,0,0,1,0,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,143.0,1,37,37,9,5,131.6,1,0,0,1,0,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,Graduate +1,17,4,9085,1,1,140.0,1,19,37,4,7,123.7,0,0,0,1,0,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,156.0,1,19,1,5,10,136.8,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Dropout +2,39,1,9853,1,10,133.1,1,37,34,0,0,115.5,0,0,0,1,0,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,Dropout +1,1,3,9119,1,1,113.0,1,4,38,2,7,107.4,1,0,0,1,1,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,Graduate +2,39,1,9670,1,1,130.0,1,37,37,9,0,158.0,0,0,1,0,0,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,Dropout +1,43,1,9853,1,1,110.0,1,37,37,9,9,107.7,0,0,1,0,0,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,124.0,1,2,2,3,3,124.7,1,0,0,1,1,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,127.0,1,37,37,5,10,125.3,0,0,0,1,1,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Graduate +1,16,1,9500,1,1,133.1,1,37,37,9,9,95.0,1,0,0,1,0,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,4,9238,1,1,127.0,1,19,19,4,0,127.4,1,0,0,1,0,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,113.0,1,38,38,3,7,112.3,0,0,0,1,0,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,110.0,1,19,37,9,99,106.1,1,1,1,0,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,141.0,1,1,38,4,8,136.8,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,133.1,1,37,37,9,7,140.0,0,0,0,1,0,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,124.0,1,1,1,4,4,118.8,0,0,0,1,1,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,4,120.0,1,2,3,2,2,120.0,0,0,0,1,0,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,110.0,1,3,3,4,10,115.6,1,0,0,1,1,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,118.0,1,1,19,4,10,110.7,1,1,0,1,0,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +4,39,1,9238,1,1,130.0,1,19,3,9,2,140.0,0,0,0,1,1,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,1,140.0,1,1,19,3,9,140.0,1,0,1,0,0,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,3,9773,1,1,123.0,1,1,19,5,5,117.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,115.0,1,38,38,8,7,112.9,1,0,0,1,0,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,1,6,9147,1,1,142.0,1,38,37,7,7,134.3,0,1,0,1,1,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9085,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,0,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,129.0,1,19,1,3,7,121.0,0,0,0,1,0,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,156.0,1,3,3,123,122,155.0,0,0,0,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,136.0,1,37,37,9,9,126.3,1,0,0,1,0,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,Graduate +2,43,1,9991,0,1,110.0,1,37,37,9,9,132.5,0,0,0,1,1,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,19,133.1,1,37,1,5,5,138.3,0,0,0,1,1,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,Dropout +1,1,2,9130,1,1,140.0,1,19,37,9,9,129.5,1,0,0,1,0,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,Enrolled +1,7,1,9500,1,3,140.0,1,37,37,4,4,140.0,0,0,0,1,0,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,Graduate +4,42,1,9147,1,1,110.0,1,37,37,9,9,128.2,0,0,0,1,0,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,Graduate +1,39,1,9119,1,19,133.1,1,1,1,4,3,134.4,0,0,1,0,1,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,136.0,1,37,1,5,4,120.8,1,0,0,1,0,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,Graduate +1,17,2,9500,1,1,140.0,1,37,37,9,9,132.5,1,0,0,1,0,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,Graduate +1,17,6,9147,1,1,130.0,1,37,37,9,9,110.4,1,0,0,1,1,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,4,5,105.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,136.0,1,19,19,4,3,126.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,116.0,1,38,2,9,2,112.2,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9238,1,1,122.0,1,19,3,5,2,112.6,0,0,1,1,0,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9147,1,1,118.0,1,1,38,9,9,118.4,1,0,0,1,1,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,Enrolled +1,17,1,9130,1,1,117.0,1,19,19,4,4,113.5,1,0,0,1,0,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,117.0,1,19,19,9,9,111.8,1,0,0,1,1,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,Dropout +1,1,6,9500,1,1,118.0,1,38,19,3,3,113.5,1,0,0,1,1,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +2,43,2,9853,1,1,130.0,1,38,31,4,1,124.2,0,0,0,1,0,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,128.0,1,38,38,9,7,124.5,1,0,0,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,8,108.7,1,0,0,1,1,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9254,1,19,133.1,1,37,19,9,10,156.5,0,0,0,1,1,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,Graduate +1,39,1,9003,1,1,160.0,1,1,37,191,193,140.0,0,0,0,1,1,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,10,150.0,0,0,0,1,1,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,Graduate +1,18,2,9070,1,1,122.0,1,38,19,5,5,119.9,0,0,0,1,1,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,125.0,1,19,38,9,7,116.3,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,37,37,6,6,147.8,0,0,0,1,0,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,171,1,1,174.0,1,5,3,3,3,157.9,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,131.0,1,1,1,4,4,127.2,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,3,110.0,1,12,3,5,8,106.5,1,0,1,0,0,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,124.0,1,37,37,9,9,116.0,1,0,0,1,0,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,38,38,5,7,146.2,0,0,0,1,0,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,9,97.0,0,0,0,1,0,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,132.0,1,19,1,9,9,141.8,1,0,0,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +2,43,1,9254,1,3,120.0,1,38,37,9,3,120.0,1,0,0,1,0,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,135.0,1,3,2,1,1,133.6,1,0,0,0,0,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,133.0,1,38,38,5,2,135.5,0,0,0,1,0,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,125.0,1,39,3,3,2,125.0,1,0,0,1,0,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,4,112.0,0,0,0,1,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,141.0,1,1,1,5,9,126.3,0,0,0,1,1,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,1,133.1,1,1,37,9,8,130.0,0,0,0,1,1,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,3,10,107.8,0,0,0,1,0,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,Enrolled +1,43,1,9500,1,1,120.0,1,3,4,2,4,120.6,0,0,0,1,1,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,1,133.1,1,1,19,9,9,120.0,0,0,0,1,1,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,Graduate +1,39,1,9853,1,1,140.0,1,19,1,9,4,128.2,0,0,0,0,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,133.1,1,37,19,9,3,123.0,0,0,0,1,1,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9147,1,1,150.0,1,37,1,7,3,148.8,0,0,0,1,1,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,Graduate +1,17,1,9670,1,1,125.0,1,38,37,7,5,126.4,0,0,0,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,Graduate +1,44,1,9003,1,39,140.0,1,38,1,134,134,140.0,1,0,1,1,1,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,44,1,9070,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,1,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,130.0,1,1,1,9,9,124.1,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Enrolled +1,51,1,9070,1,1,130.0,1,19,19,5,7,124.5,0,0,0,1,0,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,101.0,1,37,37,9,4,101.0,1,0,1,1,0,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,Enrolled +1,1,1,8014,0,1,115.0,1,38,38,9,7,115.0,1,0,0,1,0,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9130,1,1,122.0,1,19,19,9,9,121.7,1,0,0,0,0,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,135.0,1,38,38,9,6,138.1,0,0,1,0,0,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9147,1,1,130.0,1,37,37,9,9,119.9,1,0,0,0,0,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,134.0,1,1,1,9,9,133.0,1,0,0,1,0,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,19,37,9,9,117.8,1,0,0,1,0,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,119.0,1,1,19,4,10,115.5,1,0,0,1,0,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,Enrolled +1,17,3,9119,1,1,138.0,1,3,3,3,4,125.4,1,1,0,1,1,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,164.0,1,19,19,9,9,149.0,1,0,0,1,0,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,1,140.0,1,4,4,2,6,140.0,0,0,0,1,0,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,Graduate +1,43,1,9070,1,1,160.0,1,1,2,4,2,100.0,0,0,0,1,1,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,132.0,1,37,37,9,5,135.9,0,0,0,1,0,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,142.0,1,37,19,7,7,133.0,1,0,0,1,0,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9556,1,3,130.0,1,1,37,4,8,130.0,0,0,0,0,1,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,Dropout +1,44,1,171,1,39,110.0,1,1,1,1,7,114.2,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9147,1,1,129.0,1,19,19,4,9,127.6,1,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,164.0,1,34,1,0,0,163.0,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9556,1,1,122.0,1,19,38,4,8,118.3,1,0,0,1,0,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,141.0,1,38,37,3,3,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,Graduate +1,1,1,9003,1,1,148.0,1,1,19,194,194,143.5,0,0,1,1,1,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,150.0,1,37,19,6,4,137.0,0,0,0,1,1,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,38,38,1,4,138.7,0,0,0,1,1,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,103.8,0,0,0,1,0,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,Dropout +1,17,1,8014,0,1,127.0,1,19,37,4,7,115.8,0,0,0,1,0,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,143.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,130.0,1,38,19,5,6,125.1,1,0,0,1,0,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9254,1,1,133.0,1,19,1,9,9,137.2,0,0,0,1,1,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +2,1,4,8014,0,1,140.0,1,34,34,0,0,128.0,1,0,0,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,120.0,1,1,1,9,10,118.3,0,0,0,1,1,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Enrolled +2,39,1,8014,0,12,133.1,1,37,37,9,1,113.0,0,0,0,1,0,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,128.0,1,19,1,0,5,122.1,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,37,38,3,3,123.0,0,0,0,1,0,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,120.0,1,37,1,7,4,95.0,1,0,0,1,0,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,Dropout +1,17,4,9238,1,1,123.0,1,19,19,191,144,116.0,1,0,0,1,0,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,140.0,1,37,37,90,90,106.3,0,0,1,0,1,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,159.0,1,3,3,2,2,162.5,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,125.0,1,19,19,9,9,115.9,0,0,0,1,0,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,130.0,1,19,19,3,7,129.0,0,0,1,0,0,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,133.1,1,38,37,5,5,136.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,156.0,1,5,4,2,1,140.8,0,0,0,1,0,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,161.0,1,37,37,9,9,100.0,1,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,8014,0,3,130.0,1,35,35,90,90,140.0,0,0,0,0,0,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,Dropout +2,1,1,9991,0,1,120.0,1,37,19,9,9,135.0,1,0,0,1,1,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,1,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,148.0,1,3,3,2,2,137.3,1,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,120.0,1,19,37,5,7,115.1,0,0,0,1,0,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,6,9773,1,1,138.0,1,1,1,4,2,140.5,1,0,0,1,0,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,Graduate +2,43,1,9085,1,1,160.0,1,37,37,9,7,120.0,0,0,0,1,1,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,Enrolled +1,17,2,8014,0,1,134.0,1,1,19,4,99,126.0,1,0,0,1,1,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,100.0,1,0,0,1,0,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,131.0,1,1,1,5,9,129.5,1,0,0,1,0,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,Graduate +1,1,4,171,1,1,139.0,1,37,38,9,9,127.8,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,150.0,1,37,37,5,6,132.5,1,0,0,1,0,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,133.1,1,19,38,5,7,110.0,1,0,0,1,0,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,6,138.6,1,34,34,0,0,138.6,1,0,0,1,1,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,133.1,1,1,1,4,10,100.8,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,5,140.0,1,19,1,4,1,140.0,1,0,0,0,0,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,118.0,1,1,19,9,10,113.1,1,0,0,1,0,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,115.0,1,3,3,2,2,111.5,1,0,1,0,0,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9254,1,39,170.0,1,19,2,9,3,170.0,0,0,0,0,1,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,9,120.0,0,0,0,1,0,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,137.0,1,19,38,7,7,126.5,1,0,0,1,0,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,136.0,1,19,19,90,8,133.9,1,0,0,0,1,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,Dropout +1,18,2,9500,1,1,141.0,24,1,1,4,3,126.8,1,0,0,1,0,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,Graduate +1,17,4,9238,1,1,124.0,1,19,19,5,8,117.7,1,0,0,1,0,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,149.0,1,19,38,9,9,126.5,1,0,0,1,0,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,153.0,1,1,1,141,175,157.9,0,0,1,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,140.0,1,1,2,4,6,140.0,1,0,0,1,0,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,137.0,1,1,3,3,2,121.3,1,0,0,1,0,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,143.0,1,1,1,4,6,138.8,0,0,0,0,1,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,160.0,1,1,3,1,2,130.0,0,0,0,0,1,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,19,19,9,8,105.8,0,0,0,1,0,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,Dropout +1,5,4,9119,1,1,115.0,1,19,37,4,6,113.3,1,0,0,1,1,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,19,4,3,125.4,1,0,0,1,0,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,Graduate +4,42,1,9500,1,19,133.1,1,1,1,5,5,126.0,1,0,0,1,1,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9254,1,3,133.1,1,19,19,4,6,130.5,0,0,0,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,108.0,1,1,19,4,4,105.9,1,0,0,1,1,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,126.0,1,19,19,9,9,115.2,0,0,1,1,0,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9853,1,1,140.0,1,37,37,9,9,145.3,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,6,9070,1,6,119.0,1,1,1,9,9,123.2,1,0,0,1,1,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,160.0,1,1,38,5,6,168.6,0,0,0,1,1,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9254,1,1,120.0,1,1,19,9,9,148.3,0,0,0,1,1,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,3,130.0,1,1,19,9,10,130.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,137.0,1,38,38,151,151,141.6,0,0,0,1,1,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,4,140.0,0,0,0,1,1,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,Enrolled +1,43,1,9085,1,1,162.0,1,2,1,4,4,162.0,0,0,0,1,0,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,43,1,171,1,1,133.0,1,19,19,5,7,133.0,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,154.0,1,37,37,9,7,150.2,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,19,100.0,1,38,19,0,10,111.3,0,0,1,0,0,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,38,4,9,126.2,0,0,0,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,132.0,1,3,1,2,7,125.5,1,0,0,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,127.0,1,37,37,5,7,116.2,0,0,0,1,1,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9773,1,1,121.0,1,19,38,9,7,113.0,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,130.0,1,19,19,9,9,127.6,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,160.0,1,34,34,99,99,114.3,0,0,0,1,1,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,Enrolled +1,18,4,9254,1,1,119.0,1,37,37,9,9,113.1,1,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,130.0,1,38,37,5,6,130.0,0,0,0,1,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,163.0,1,19,37,5,8,150.8,1,0,0,1,1,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,Enrolled +1,43,1,9238,1,1,122.0,1,19,19,5,5,114.3,1,0,0,1,0,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,Enrolled +1,18,1,9147,1,1,131.0,1,34,34,90,90,131.0,0,0,0,1,1,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,4,9773,1,1,137.0,1,1,1,5,5,125.8,0,0,1,1,1,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9670,1,1,133.1,1,37,37,90,90,97.4,0,0,1,0,1,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,37,38,7,5,106.0,1,0,0,1,0,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,Graduate +1,17,6,9254,1,1,108.0,1,1,19,4,5,112.2,1,0,0,1,1,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,19,133.1,1,1,19,4,10,111.8,1,0,0,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,133.1,1,1,37,9,10,139.0,0,0,0,1,1,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,122.0,1,12,19,4,8,117.8,1,0,0,1,0,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,128.0,1,19,19,0,5,120.3,1,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,133.1,1,34,19,0,3,117.1,1,0,0,1,0,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9556,1,19,133.1,1,37,38,9,9,123.0,0,0,0,1,0,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,Graduate +1,17,2,9238,1,1,133.0,1,37,37,9,4,123.6,0,0,0,1,0,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,5,9670,1,1,132.0,1,19,19,5,5,134.1,1,0,0,1,1,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,129.0,1,38,1,4,10,129.4,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,136.0,1,19,19,4,8,150.4,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,154.0,1,3,3,1,3,129.0,1,0,0,1,0,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,Enrolled +1,44,1,9130,1,39,150.0,1,1,1,4,4,150.0,1,0,0,1,0,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,115.0,1,37,37,9,8,116.1,1,0,0,1,0,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,157.0,1,19,3,4,9,138.8,0,0,0,1,1,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9670,1,19,133.1,1,19,1,5,8,97.2,1,0,0,1,1,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,141.0,1,37,38,6,6,125.6,1,0,0,1,0,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,143.0,1,19,1,9,9,144.4,1,0,0,1,0,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9119,1,1,127.0,1,19,1,4,5,115.8,0,0,0,1,1,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,150.0,1,1,1,9,10,142.7,0,0,1,1,0,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,132.0,11,12,12,90,4,129.9,1,0,0,1,0,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,115.0,1,19,19,191,171,109.1,0,0,1,0,1,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,Enrolled +1,17,1,9773,1,1,121.0,1,38,38,9,8,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,7,1,9085,1,40,130.0,1,1,1,4,4,130.0,1,0,0,1,0,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,140.0,1,19,38,4,4,138.3,0,0,0,1,1,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,6,9773,1,1,116.0,1,19,1,4,4,110.1,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,131.0,1,38,38,9,9,127.9,0,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,Graduate +1,51,1,9991,0,42,110.0,1,19,37,5,9,128.2,0,0,0,0,0,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,138.0,1,19,19,5,8,124.9,1,0,0,1,0,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,172.0,1,1,1,4,9,167.1,0,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +5,39,1,9991,0,1,120.0,1,37,37,9,9,138.1,0,0,0,1,1,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,37,38,3,7,96.7,0,0,0,1,1,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,15,1,9130,1,1,133.1,41,1,1,4,4,100.0,0,0,0,1,0,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9119,1,1,122.0,1,19,19,9,9,114.7,0,0,0,1,1,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,192,192,96.0,1,0,0,1,0,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,160.0,1,1,37,9,10,118.0,0,0,0,1,0,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,Enrolled +1,18,4,9119,1,1,134.0,1,19,38,194,175,124.9,1,0,1,1,1,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,4,19,4,5,98.0,0,0,0,1,1,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +5,43,1,9991,0,3,130.0,1,3,3,1,1,130.0,0,0,0,1,0,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,120.0,1,19,19,4,5,114.8,1,0,1,0,0,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,6,8014,0,1,134.0,1,3,19,2,4,120.7,1,0,0,1,0,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,133.1,1,37,37,9,9,109.7,0,0,0,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9070,1,1,128.0,1,19,19,3,3,123.5,1,1,0,0,1,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,133.1,1,1,19,5,9,130.0,0,0,0,1,1,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,Graduate +1,7,1,9991,0,40,120.0,1,43,3,3,3,120.0,0,0,0,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,Enrolled +1,17,5,9556,1,1,139.0,1,19,19,9,8,121.3,1,0,0,1,0,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,156.0,1,3,19,3,3,151.1,0,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,Graduate +1,16,2,9147,1,1,132.0,1,37,37,9,9,122.6,1,0,0,1,0,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,130.0,1,2,3,9,6,130.0,0,0,0,1,1,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,133.1,1,1,1,1,6,120.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,1,1,1,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,133.0,1,3,3,1,1,126.2,1,0,0,1,0,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,Graduate +1,18,2,9147,1,1,140.0,1,37,37,5,9,124.3,1,0,0,1,1,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,44,1,9003,1,39,150.0,1,37,38,4,8,150.0,0,0,0,1,0,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,140.0,1,37,19,191,163,129.3,1,0,1,1,0,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +4,7,1,9500,1,3,130.0,1,3,19,2,3,130.0,0,0,0,1,0,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9070,1,1,131.0,1,19,19,7,7,125.1,0,0,0,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,Enrolled +1,10,1,9773,1,1,152.0,22,38,37,5,9,152.0,1,0,0,1,0,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,123.0,1,34,38,0,7,120.2,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,131.0,1,3,19,4,4,130.3,1,0,0,1,1,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,115.0,1,1,1,5,4,108.0,1,0,0,1,0,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,130.0,1,38,37,9,9,144.0,0,0,0,1,0,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9238,1,1,134.0,1,3,1,3,4,133.0,1,0,0,1,0,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,Graduate +1,51,1,9670,1,1,133.1,1,3,1,3,10,116.2,0,0,0,1,1,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,139.0,0,0,0,1,1,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,126.0,1,19,1,9,9,122.5,1,0,0,0,0,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,121.0,1,19,19,9,9,126.3,1,0,0,1,0,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9003,1,1,133.1,1,38,38,4,8,115.0,0,0,1,1,1,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,19,37,9,9,151.5,0,0,1,0,1,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9853,1,40,110.0,1,41,3,2,1,110.0,0,0,1,1,0,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,17,5,9238,1,1,131.0,1,19,37,5,7,120.2,1,0,0,1,0,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,7,1,9070,1,3,140.0,1,37,37,7,7,140.0,0,0,0,0,1,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +4,39,1,9254,1,1,140.0,1,38,37,9,9,112.0,0,0,1,1,0,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,Dropout +1,18,3,9853,1,1,122.0,1,38,37,9,5,120.3,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9070,1,1,125.0,1,1,38,9,7,118.0,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Enrolled +1,1,3,9670,1,1,111.0,1,1,1,5,5,105.4,0,0,0,1,0,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +2,39,1,9254,1,1,130.0,1,37,37,4,7,120.0,1,0,0,1,0,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,160.0,1,37,37,9,9,160.0,1,0,0,1,0,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,39,1,9147,1,12,133.1,1,37,37,9,9,140.0,0,0,0,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9147,1,1,118.0,1,1,2,10,10,117.3,1,0,0,1,0,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,3,9085,1,1,130.0,1,1,19,9,9,121.3,1,0,0,1,0,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,9,130.0,0,0,0,1,0,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,3,9085,1,1,130.0,1,19,37,5,5,121.3,1,0,0,1,0,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,Enrolled +1,1,2,9254,1,1,120.0,1,19,19,9,9,116.5,1,0,0,1,0,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,Graduate +2,39,1,9500,1,1,140.0,1,37,37,9,4,127.3,0,0,0,1,1,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,118.0,1,37,38,8,7,115.2,1,0,0,1,0,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,17,3,9238,1,1,125.0,1,19,19,7,8,121.5,0,0,0,1,0,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,125.0,1,19,19,5,5,114.5,1,0,0,1,0,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,136.0,1,39,1,3,4,134.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,115.0,1,3,2,4,5,112.6,0,0,0,1,1,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,53,1,9003,1,1,130.0,1,19,1,9,9,130.0,0,0,1,1,1,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,Enrolled +1,1,3,9773,1,1,136.0,1,3,1,5,3,129.0,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,3,150.0,1,2,3,4,7,173.3,1,0,0,1,0,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,140.0,1,1,19,7,7,129.9,1,0,0,1,0,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,Dropout +1,7,1,9119,1,1,140.8,1,34,34,0,0,134.0,0,0,0,1,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9254,1,1,115.0,1,37,19,5,5,109.8,1,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,137.0,1,1,1,4,4,127.6,1,0,0,1,0,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,Graduate +4,7,1,9238,1,40,130.0,1,34,34,99,99,130.0,0,0,1,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9147,1,1,123.0,1,37,37,9,9,106.2,0,0,0,1,0,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,121.0,1,1,3,3,7,113.0,1,0,0,1,1,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,140.0,1,3,1,2,3,129.9,0,0,0,1,0,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,130.0,1,38,38,9,7,130.0,0,0,0,1,1,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,Dropout +1,51,1,9070,1,1,132.0,1,19,19,153,153,120.0,0,0,0,1,0,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,9119,1,1,110.0,1,37,37,9,9,106.8,0,0,0,1,1,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,124.0,1,19,37,4,4,126.8,0,0,0,1,0,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,Enrolled +1,18,3,9147,1,1,133.1,1,1,38,4,7,101.0,1,0,0,0,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9147,1,1,125.0,1,38,19,7,7,125.7,0,0,0,1,0,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,4,9853,1,1,121.0,1,38,38,5,7,113.7,1,0,0,1,0,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,1,1,9,6,105.0,1,0,1,0,0,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,143.0,1,5,1,2,5,136.7,0,0,0,1,0,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,Graduate +1,1,2,9556,1,1,142.0,1,1,19,4,5,130.5,1,0,0,1,0,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,131.0,1,19,19,7,5,122.1,1,0,0,1,0,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,132.0,1,1,37,4,7,121.8,1,0,0,1,0,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,123.0,1,37,37,3,3,123.0,1,0,0,1,0,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,129.0,1,19,38,2,7,126.9,1,0,0,1,0,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Enrolled +1,1,4,9238,1,1,118.0,1,19,38,9,9,110.0,0,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,125.0,1,3,1,4,4,119.4,1,0,0,1,0,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,Enrolled +1,17,1,9085,1,1,131.0,1,1,3,4,1,129.3,1,0,0,1,0,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,147.0,1,37,37,9,9,134.3,0,0,0,1,0,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,Graduate +2,39,2,9670,1,19,133.1,1,37,37,9,9,135.6,0,0,0,1,0,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,152.0,1,37,19,9,9,137.0,1,0,0,1,0,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,118.0,1,12,1,4,10,115.7,0,0,0,1,1,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,Enrolled +1,15,1,9119,1,1,133.1,41,1,3,5,8,100.0,0,0,1,1,1,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,5,9119,1,1,131.0,1,1,19,4,7,126.8,0,0,0,0,1,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,132.0,1,19,38,9,7,119.1,0,0,0,0,1,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,8014,0,1,120.0,1,37,37,5,5,161.1,0,0,0,1,1,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,18,5,9500,1,1,137.0,1,19,1,1,10,129.3,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,118.0,1,37,19,5,5,119.1,1,0,0,1,0,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,134.0,1,38,38,9,9,122.0,1,0,0,1,1,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,163.0,1,1,1,4,3,149.7,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,140.0,1,38,38,9,7,140.0,0,0,0,1,0,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,Enrolled +1,17,4,9147,1,1,122.0,1,19,19,5,7,116.4,1,0,1,1,0,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,140.0,1,3,37,3,7,116.9,0,0,0,1,1,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,5,2,9238,1,1,123.0,1,40,38,2,9,118.1,1,0,0,1,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,130.0,1,3,19,2,3,133.9,0,0,0,1,0,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,125.0,1,1,38,4,7,114.9,1,0,0,1,0,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,130.0,1,1,1,4,10,115.2,0,0,0,1,1,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,124.0,1,38,19,9,7,129.6,1,0,0,1,1,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,139.0,1,38,38,7,5,133.4,0,0,0,1,0,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9254,1,1,125.0,1,38,38,5,5,115.6,1,0,0,1,0,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,147.0,1,37,37,9,9,142.8,1,0,0,1,0,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9003,1,1,144.0,1,19,19,9,9,132.8,0,0,0,1,1,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,12,133.1,1,19,1,9,1,130.0,0,0,0,1,1,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,140.0,1,37,37,9,6,135.5,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,6,9254,1,1,102.0,1,3,1,2,2,101.7,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,133.1,1,19,38,5,5,131.8,1,0,1,1,0,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,Graduate +1,44,1,171,1,39,150.0,1,4,4,2,2,150.0,0,0,0,1,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,53,1,9254,1,42,110.0,1,1,1,4,7,111.8,1,0,0,1,0,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,121.0,1,19,38,6,6,116.1,1,0,0,1,1,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,Graduate +1,17,4,9773,1,1,127.0,1,1,19,4,1,115.8,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,37,37,9,7,160.0,1,0,0,0,1,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,15,170.0,1,34,1,90,2,101.0,0,0,0,1,0,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,125.0,1,3,3,3,3,116.6,1,0,0,0,0,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,4,9070,1,1,117.0,1,1,1,3,3,125.4,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,146.0,1,19,37,7,7,133.8,1,0,0,1,0,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,142.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,3,116.0,1,3,3,2,2,128.2,0,0,0,1,0,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,37,37,7,7,116.5,1,0,0,1,0,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,118.0,1,19,19,5,7,117.8,0,0,0,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,Graduate +1,18,3,9670,1,1,119.0,1,38,38,9,9,115.2,1,0,0,1,0,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,131.0,1,3,19,3,10,123.3,0,0,0,1,1,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,Enrolled +1,17,1,9254,1,1,136.0,1,39,3,3,3,128.7,1,0,0,1,0,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9500,1,1,140.0,1,37,38,5,7,126.0,1,0,0,1,0,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +1,44,1,9119,1,39,150.0,1,19,3,5,2,150.0,0,0,0,1,1,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,43,1,9773,1,1,137.0,1,38,37,9,5,127.9,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,119.9,0,0,0,1,0,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,18,2,9773,1,1,132.0,24,37,19,9,7,119.1,1,0,0,1,0,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,43,1,8014,0,1,133.1,1,34,34,0,0,100.0,0,0,0,1,0,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,1,133.1,1,38,19,9,9,128.0,1,0,0,0,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,125.0,1,19,19,5,4,136.2,1,0,1,1,1,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,132.0,1,38,38,0,5,126.1,0,0,0,1,1,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9670,1,1,130.0,1,1,1,9,10,116.3,1,0,0,1,0,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,3,9773,1,1,150.0,1,19,38,4,4,146.5,1,0,0,1,0,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +4,39,2,8014,0,1,160.0,1,37,38,7,5,115.0,0,0,0,1,0,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,135.0,1,19,1,9,9,122.1,1,0,0,1,0,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,136.0,1,3,3,9,9,136.0,1,0,1,0,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,3,3,7,1,130.0,1,0,0,1,1,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9119,1,19,133.1,1,19,19,5,3,100.9,1,0,0,1,1,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,Enrolled +1,17,1,9254,1,1,137.0,1,34,38,0,7,137.7,1,0,1,0,0,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,19,133.1,1,37,37,90,7,110.0,0,0,0,0,0,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,144.0,1,38,37,9,9,125.8,0,0,0,1,0,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,1,4,9070,1,1,167.0,1,1,1,7,3,158.3,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,133.0,1,37,19,7,7,126.7,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,118.0,1,38,38,7,7,121.2,1,0,0,1,0,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,19,133.1,1,19,19,4,4,150.0,0,0,0,0,1,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9085,1,1,166.0,1,1,19,4,3,158.7,0,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Graduate +1,44,1,9254,1,39,130.0,1,39,39,194,193,130.0,1,0,1,1,1,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,1,9085,1,1,140.0,1,37,38,7,9,129.9,0,0,0,1,0,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,9147,1,3,120.0,1,1,39,4,7,120.0,0,0,0,1,0,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,5,9254,1,1,118.0,1,19,37,5,5,120.5,1,0,0,1,1,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,Dropout +1,17,3,9070,1,1,120.0,1,3,1,4,4,116.9,1,0,0,1,0,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Graduate +1,43,5,9238,1,1,101.0,24,37,19,9,7,119.9,1,0,1,0,0,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,128.0,1,19,1,4,3,117.2,1,0,0,1,0,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,Graduate +1,1,3,9254,1,1,118.0,1,1,19,9,9,111.7,1,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,137.0,1,37,37,0,90,134.2,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,144.0,1,3,39,2,3,129.0,1,0,0,1,0,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,125.0,1,37,38,7,7,122.2,1,0,0,1,0,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,147.0,1,3,1,4,3,136.7,0,0,0,1,0,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,39,120.0,1,37,37,1,9,137.7,1,0,0,0,1,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,160.0,1,1,37,9,9,146.0,1,0,0,1,0,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9238,1,39,130.0,1,1,19,4,5,127.4,0,0,1,0,1,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,3,1,2,4,154.9,0,0,1,0,1,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,Dropout +1,17,2,9670,1,1,129.0,1,19,19,5,4,129.4,0,0,0,1,0,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,137.0,1,3,19,3,5,136.3,1,0,0,1,0,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,100.0,1,37,37,9,6,153.5,0,0,1,0,1,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,134.0,1,38,38,7,9,132.8,1,0,0,1,0,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,137.0,1,37,37,7,9,130.8,1,0,0,1,0,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,133.1,1,37,37,1,1,97.0,0,0,0,1,1,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,143.0,1,3,38,2,10,129.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,9,3,127.1,0,0,0,1,0,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,Enrolled +2,7,1,9147,1,3,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,160.0,1,37,37,9,9,160.0,0,0,0,1,1,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,162.0,1,3,4,3,3,154.1,0,0,0,1,0,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,Graduate +1,1,2,9147,1,1,119.0,1,19,37,4,5,113.8,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,139.0,1,19,1,9,5,135.0,1,0,0,1,0,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,120.0,1,1,38,5,5,116.3,1,1,0,1,1,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,2,9500,1,1,135.0,1,1,19,4,10,133.5,1,0,0,1,0,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,Graduate +1,1,3,9119,1,1,117.0,1,1,1,3,5,111.1,0,0,0,1,1,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,140.0,1,1,39,4,1,128.1,1,1,0,1,1,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9003,1,1,133.1,1,37,37,3,8,130.0,0,0,1,1,0,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,134.0,1,19,37,5,5,125.3,1,0,0,1,1,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,37,38,9,9,114.0,0,0,0,1,0,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,38,37,4,5,102.5,0,0,1,0,1,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,143.0,1,19,37,5,9,156.3,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,130.0,1,19,1,9,5,122.1,1,0,0,1,0,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,Graduate +1,39,2,8014,0,1,100.0,1,35,37,90,90,100.0,0,0,0,1,0,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +2,39,2,9670,1,1,100.0,1,37,37,9,9,110.0,0,0,0,1,1,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,2,9853,1,1,126.0,1,1,19,2,10,126.0,1,0,0,1,0,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,Enrolled +1,18,3,9070,1,1,131.0,1,1,37,5,5,122.3,1,0,0,0,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,150.0,1,19,37,9,8,138.5,0,0,0,1,0,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,2,171,1,1,146.0,1,3,3,3,3,155.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,120.0,1,19,19,9,7,118.6,1,0,0,1,0,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,145.0,1,38,38,9,9,125.5,1,0,0,1,0,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9070,1,1,143.0,1,1,1,9,7,134.6,1,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Dropout +1,51,1,8014,0,1,121.0,1,1,38,5,7,112.3,0,0,0,1,0,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,130.0,1,37,1,9,8,120.2,1,0,0,1,1,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +2,7,1,9254,1,2,100.0,1,37,37,9,9,100.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,1,130.0,1,37,3,9,3,137.0,1,0,0,1,1,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,0,0,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,140.0,1,38,37,7,7,105.2,0,0,0,1,1,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,131.0,1,1,19,4,7,135.9,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,108.0,1,19,38,9,7,110.5,1,0,0,1,0,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,111.0,1,1,38,5,9,107.5,0,0,0,1,1,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9147,1,1,147.0,1,37,37,9,6,142.8,1,0,1,0,0,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,170.0,1,38,19,4,8,134.7,0,0,0,1,0,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,138.0,1,4,19,2,3,124.7,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,125.0,1,37,38,9,9,125.0,1,0,1,0,0,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,118.0,1,38,38,5,5,114.2,1,0,0,1,0,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,3,3,1,5,118.8,0,0,0,1,0,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,Graduate +1,1,3,9085,1,1,131.0,1,37,19,9,8,136.3,1,0,1,0,0,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,Dropout +1,43,1,9991,0,1,141.0,1,37,37,9,9,131.9,0,0,0,1,0,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,42,1,9070,1,1,120.0,1,3,2,3,1,116.9,0,0,0,1,1,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,130.0,1,1,1,9,7,152.1,0,0,0,1,1,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,12,133.1,1,34,34,0,0,135.0,0,0,0,1,0,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,130.0,1,38,38,7,7,122.5,1,0,0,1,0,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,160.0,1,1,1,194,131,128.4,0,0,0,1,0,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,132.0,1,1,38,7,7,129.6,0,1,0,1,1,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,1,1,3,9,118.4,0,0,0,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,Graduate +1,1,2,9556,1,1,133.1,1,19,19,9,9,104.5,1,0,0,1,0,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,53,1,9003,1,42,150.0,1,1,38,8,8,150.0,0,0,0,1,0,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,144.0,1,3,1,2,3,126.9,0,0,0,1,0,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,150.0,1,3,3,2,2,120.0,0,0,1,0,0,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,3,3,2,10,160.0,1,0,0,1,1,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,129.0,1,1,1,9,9,120.0,0,0,0,1,1,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,Graduate +4,39,1,9003,1,12,133.1,1,37,37,9,6,160.0,0,0,0,1,0,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,Graduate +2,39,2,9991,0,1,100.0,1,37,37,9,9,100.0,1,0,0,1,1,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,115.0,1,19,1,3,8,123.4,0,0,0,1,0,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,124.0,1,19,37,3,8,117.5,1,0,0,1,1,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,Enrolled +1,1,6,9254,1,1,129.0,1,38,19,9,5,117.8,1,0,0,1,0,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,127.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,19,133.1,1,38,38,7,8,120.0,0,0,0,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +6,39,2,9147,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,4,9500,1,1,148.0,1,3,19,4,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,39,150.0,1,1,3,4,1,150.0,0,0,0,1,1,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,145.0,1,37,37,9,1,150.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,115.7,1,0,0,1,0,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,16,1,171,1,1,122.0,1,19,37,9,7,133.9,1,0,0,1,1,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,124.0,1,37,38,9,8,114.6,1,0,0,1,1,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,120.0,1,38,37,9,8,113.4,1,0,0,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,40,140.0,1,37,37,6,6,140.0,0,0,0,1,0,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,Graduate +1,1,5,9670,1,1,133.1,1,9,1,2,4,133.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,100.0,1,19,19,4,4,113.0,0,0,0,1,1,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,Enrolled +4,39,1,9003,1,1,133.1,1,19,19,9,4,100.7,0,0,0,1,0,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,Enrolled +1,17,2,9147,1,1,133.1,1,38,38,4,7,109.0,1,0,0,1,1,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,15,1,9238,1,1,140.0,26,19,19,9,6,140.0,0,0,0,1,1,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,3,9500,1,1,114.0,1,1,1,5,5,114.5,1,0,0,1,0,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,134.0,1,1,38,4,4,120.7,0,0,1,0,0,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,1,133.1,1,37,11,9,7,96.0,0,0,1,0,1,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,131.0,1,3,3,3,3,135.9,0,0,0,1,0,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,Graduate +1,43,2,9500,1,1,130.0,1,38,37,4,4,126.8,1,0,0,1,1,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,19,37,7,7,124.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9670,1,1,120.0,1,1,19,4,5,100.0,0,0,0,1,0,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,145.0,1,38,38,9,10,139.8,1,0,0,1,0,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,141.0,1,19,38,5,7,125.5,0,0,0,1,0,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,Graduate +5,39,1,9147,1,1,133.1,1,1,19,4,7,114.0,0,0,0,0,1,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9991,0,1,110.0,1,37,37,1,4,120.0,1,0,0,0,1,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,172.0,41,37,37,5,5,153.8,1,0,0,1,0,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,1,9556,1,1,140.0,1,3,3,1,7,131.6,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,4,3,137.5,0,0,0,1,1,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,137.0,1,19,38,3,9,124.9,0,0,0,1,0,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,139.0,1,18,18,1,1,130.8,1,0,0,0,0,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,120.0,1,38,37,5,9,131.4,1,0,0,1,1,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,Graduate +1,53,1,9085,1,42,160.0,1,19,37,4,9,160.0,1,0,0,1,0,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,Graduate +1,18,1,9670,1,1,140.0,1,1,37,9,9,130.2,1,0,0,1,1,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9853,1,1,140.0,1,37,37,6,6,125.2,0,0,1,1,0,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,Graduate +1,1,4,9556,1,1,122.0,1,37,1,5,4,123.9,0,0,0,1,0,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,1,19,3,3,123.0,0,0,0,1,0,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,140.0,1,19,38,4,0,140.0,1,0,0,1,1,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,129.0,1,1,1,4,2,126.2,0,0,1,0,0,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Dropout +2,17,3,8014,0,1,123.0,1,19,37,3,3,113.2,0,0,1,0,0,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,133.1,1,38,19,9,10,114.5,0,0,0,1,0,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,Enrolled +1,51,1,9991,0,1,141.0,1,19,38,5,7,100.0,0,0,0,1,0,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,Graduate +1,17,2,171,1,1,131.0,1,2,1,3,3,148.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,19,133.1,1,37,37,9,9,100.0,1,0,1,0,0,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,117.0,1,1,38,5,1,113.5,1,0,0,1,0,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,116.0,1,19,38,9,9,119.5,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,1,19,3,4,116.7,0,0,0,1,0,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,129.0,1,2,3,2,2,128.3,1,0,0,1,0,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,Enrolled +1,1,3,9085,1,1,138.0,1,1,1,4,8,128.7,1,0,0,1,0,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,5,9147,1,1,118.0,1,19,19,9,9,114.2,1,0,0,1,1,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.0,1,3,19,2,8,126.7,0,0,0,1,0,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,Enrolled +1,16,1,171,1,1,158.0,1,38,37,9,9,164.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,43,3,9500,1,1,126.0,1,38,37,6,5,124.3,1,0,0,1,0,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,123.0,1,38,38,9,5,124.8,0,0,0,0,0,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9130,1,1,160.0,1,3,3,3,2,155.1,1,0,0,1,0,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Graduate +4,43,1,9500,1,1,130.0,1,37,37,9,9,103.7,0,0,0,1,0,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,Enrolled +1,16,2,9238,1,1,133.0,1,19,38,4,5,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,130.0,1,38,37,9,9,124.8,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,135.0,1,37,1,7,7,132.8,1,0,0,1,0,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9119,1,1,128.0,1,1,38,4,7,100.0,0,0,0,1,1,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9085,1,1,120.0,1,1,1,9,10,115.0,0,0,0,0,0,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,2,9070,1,1,142.0,1,3,1,2,4,141.0,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9853,1,1,124.0,1,38,37,5,3,118.1,1,0,0,0,0,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,145.0,1,37,37,9,9,132.0,1,0,0,1,0,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,114.0,1,38,38,9,10,120.0,0,0,0,1,0,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,140.0,1,3,3,2,2,146.4,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,5,9773,1,1,130.0,1,34,38,0,8,128.3,1,0,0,0,0,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,3,9670,1,1,110.0,1,19,1,4,4,107.5,1,0,0,1,0,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,135.0,1,37,37,5,5,126.3,1,1,0,1,0,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,Graduate +2,1,1,9254,1,1,140.0,1,19,38,4,7,133.0,0,0,0,1,1,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,1,150.0,1,37,37,9,9,115.0,0,0,0,1,1,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9070,1,1,130.0,1,1,1,5,3,112.0,1,0,0,1,1,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,110.0,1,1,37,9,9,105.1,1,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,131.0,1,37,37,9,7,118.4,0,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,136.0,1,38,38,7,7,127.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9773,1,1,127.0,1,19,19,5,8,120.0,0,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,139.0,1,37,19,9,8,142.2,1,0,0,1,1,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,4,127.3,1,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,16,4,9773,1,1,109.0,1,37,37,9,3,137.0,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,Graduate +1,53,1,9085,1,42,130.0,1,19,1,9,9,130.0,1,0,1,0,0,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,Enrolled +1,7,1,171,1,3,130.0,1,1,2,9,2,130.0,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,120.0,1,37,37,9,9,120.0,1,0,1,1,0,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,Dropout +1,2,1,9853,1,1,120.0,1,19,38,9,9,122.5,0,0,0,0,0,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,19,133.1,1,2,1,8,8,120.0,1,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,43,1,9773,1,1,121.0,1,1,1,4,5,121.0,1,0,0,1,1,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9147,1,1,120.0,1,38,19,9,9,111.3,1,0,0,1,0,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,38,19,5,0,141.8,0,0,0,1,0,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,131.0,1,1,1,7,4,127.2,1,0,1,1,1,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,11,9,10,131.5,0,0,0,1,0,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,3,19,2,3,125.7,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9556,1,1,136.0,1,19,19,9,9,129.5,1,0,0,1,0,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,Graduate +1,42,1,9119,1,1,120.0,1,5,5,2,2,115.0,0,0,0,1,1,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,Dropout +1,17,6,9119,1,1,124.0,1,19,19,4,0,126.1,1,0,0,1,1,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,160.0,1,19,38,9,9,140.8,1,0,0,1,1,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,123.0,1,37,37,9,9,115.0,1,0,0,1,0,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,Graduate +2,39,2,9670,1,1,133.1,41,37,19,9,9,130.0,0,0,0,1,0,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9670,1,6,170.0,1,34,34,0,0,111.6,0,0,0,1,1,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,138.0,1,1,3,9,1,123.0,1,0,0,1,0,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,1,37,6,6,130.0,1,0,0,1,1,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,Graduate +1,17,2,9119,1,1,133.1,1,1,2,3,3,117.0,1,0,0,1,1,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,Enrolled +1,1,5,9254,1,1,131.0,1,19,37,9,9,123.7,0,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,130.0,1,1,1,9,4,140.0,0,0,0,0,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9773,1,1,135.0,1,1,19,4,10,129.4,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,132.0,1,1,19,3,3,122.9,1,0,0,1,0,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,115.0,1,37,37,9,8,129.0,1,0,1,0,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9238,1,1,160.0,1,3,19,2,1,116.1,0,0,1,1,0,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,12,133.1,1,37,1,9,10,130.0,0,0,0,1,1,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,129.0,1,37,38,4,9,121.0,1,0,0,1,0,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9119,1,1,130.0,1,38,19,7,3,119.9,1,0,1,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,133.1,1,37,37,9,9,100.2,1,0,0,0,0,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,4,38,4,5,140.0,1,0,0,1,0,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9991,0,43,140.0,1,40,5,3,3,140.0,0,0,0,1,0,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,Graduate +1,43,2,9670,1,1,129.0,1,3,3,5,5,122.4,1,0,0,1,0,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,6,116.4,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,130.0,1,1,3,9,2,130.0,1,0,1,1,0,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,139.0,1,38,38,9,5,130.5,1,0,0,1,0,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,1,100.0,1,19,19,9,9,100.0,0,0,1,1,1,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,Dropout +1,7,1,9773,1,43,140.0,1,19,1,4,8,140.0,0,0,0,1,1,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9003,1,1,125.0,1,1,38,4,7,125.0,1,0,0,1,0,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,Graduate +1,39,2,9147,1,19,133.1,1,38,19,4,10,116.3,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,3,9500,1,1,132.0,1,37,37,4,3,127.3,1,0,0,1,0,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,127.0,1,1,37,4,8,121.1,1,0,0,1,1,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9670,1,1,140.0,1,37,37,6,6,120.0,0,0,0,1,0,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,133.0,1,37,37,9,5,139.2,1,0,1,1,1,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,140.0,1,19,19,1,4,133.3,1,0,0,1,0,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,120.0,1,3,3,2,2,112.0,0,0,0,1,0,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,Enrolled +2,1,1,9147,1,1,137.0,1,19,37,9,9,124.4,0,0,0,1,0,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,130.0,1,38,38,9,3,145.6,0,0,0,1,1,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,6,9670,1,1,120.0,1,1,14,4,5,113.7,1,0,0,1,0,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,120.0,1,38,19,9,3,112.7,0,0,0,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,122.0,1,37,37,9,9,114.3,1,0,0,0,0,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,8014,0,1,133.1,1,3,1,1,7,100.0,0,0,0,1,0,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,4,19,3,5,123.7,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,4,4,4,2,120.0,1,0,0,1,1,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,3,9238,1,1,137.0,1,1,1,3,3,131.4,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,Graduate +1,43,1,9130,1,1,130.0,1,1,1,1,1,130.0,1,0,0,1,1,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9773,1,1,121.0,1,1,19,9,7,118.9,1,0,0,1,0,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,133.1,1,19,38,9,8,128.2,1,0,0,1,1,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,Enrolled +1,43,1,9070,1,1,134.0,1,19,37,7,7,132.7,1,0,0,1,1,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9147,1,1,125.0,1,1,38,7,7,120.1,0,0,1,1,1,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,129.0,1,37,37,9,9,117.1,1,0,0,1,0,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,145.0,1,38,38,5,7,138.0,1,0,0,1,0,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,120.0,105,1,1,9,9,119.0,1,0,1,0,0,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,131.0,1,1,19,9,9,127.0,0,0,0,1,1,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,100.0,1,38,19,6,10,112.8,0,0,0,1,0,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,2,9070,1,1,145.0,1,38,19,7,7,130.0,1,0,0,1,1,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,126.0,1,37,38,7,7,119.0,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,Graduate +1,1,2,9773,1,1,137.0,1,1,19,7,7,133.2,1,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,128.0,1,38,38,9,7,128.4,1,0,0,1,0,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9085,1,39,150.0,1,19,38,194,193,150.0,1,0,0,1,0,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,Enrolled +1,1,4,171,1,1,146.0,1,1,1,9,5,151.3,1,0,0,1,0,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,Graduate +1,1,6,9147,1,1,139.0,1,19,12,4,4,125.0,1,0,0,1,0,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,1,1,9,4,123.4,1,0,0,1,0,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9670,1,1,127.0,1,3,4,2,2,122.8,0,0,0,1,1,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,127.0,1,38,37,5,7,121.8,1,0,1,1,0,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,39,1,9003,1,1,130.0,1,38,37,7,7,120.0,0,0,0,1,1,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,Graduate +1,1,2,9238,1,1,100.0,1,38,1,7,7,99.3,1,0,0,1,0,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9119,1,1,160.0,1,37,37,9,6,153.7,0,0,0,1,1,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9500,1,1,138.0,1,3,1,2,5,134.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,Graduate +1,17,4,9254,1,1,124.0,1,3,3,3,3,126.1,1,0,0,1,0,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,Dropout +2,7,1,9147,1,3,110.0,1,19,1,9,9,110.0,0,0,0,1,0,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,143.0,1,3,19,3,10,126.8,0,0,0,1,1,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,Graduate +1,17,2,9670,1,1,110.0,1,1,1,4,10,115.3,1,0,0,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,9119,1,1,129.0,1,2,37,2,9,121.6,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Enrolled +1,15,1,9254,1,1,140.0,26,19,1,9,7,140.0,1,0,0,0,0,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,118.0,1,19,38,7,9,113.5,1,0,0,1,0,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,5,9853,1,1,110.0,1,19,37,7,7,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,171,1,1,145.0,1,3,1,2,10,114.5,1,0,0,1,1,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,43,2,9670,1,1,125.0,1,38,19,4,3,106.6,1,0,0,1,0,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Dropout +4,39,1,9500,1,19,133.1,1,37,37,5,7,100.0,0,0,0,0,0,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,133.0,1,1,1,9,9,119.7,1,1,1,1,1,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,Graduate +1,1,2,9853,1,1,134.0,1,1,38,9,8,122.5,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,120.0,1,19,37,3,9,100.0,0,0,0,1,0,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,37,37,6,6,100.0,0,0,1,0,1,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,160.0,1,38,38,6,6,160.0,1,0,0,1,0,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,7,116.0,0,0,0,1,0,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,Graduate +1,18,3,9500,1,1,145.0,1,1,1,4,8,133.6,1,0,0,1,0,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,3,19,2,3,124.5,0,0,0,1,0,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,125.0,1,19,38,9,8,118.3,0,0,0,1,1,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,Dropout +1,5,1,9085,1,1,150.0,1,1,1,4,4,139.4,0,0,0,1,0,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9773,1,1,133.1,1,38,38,9,5,117.0,0,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,142.0,1,1,1,4,7,131.0,1,0,0,1,0,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,1,19,3,3,154.3,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9147,1,1,135.0,1,37,38,9,9,128.0,1,0,1,1,0,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,149.0,1,37,37,9,9,138.0,0,0,0,1,1,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,38,9,9,129.2,1,0,0,1,0,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9556,1,1,147.0,1,3,4,3,2,100.0,0,0,0,1,0,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,12,133.1,1,37,37,10,9,144.0,0,0,0,1,1,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9254,1,1,100.0,1,3,19,3,5,115.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9670,1,1,140.0,1,1,1,4,3,133.4,0,0,0,1,1,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,Enrolled +1,1,2,171,1,1,127.0,1,3,39,1,3,133.5,1,0,0,1,1,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9147,1,1,112.0,1,1,19,3,5,107.8,1,0,0,1,0,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,Enrolled +2,39,1,9147,1,1,110.0,1,37,37,9,10,140.0,0,0,0,1,0,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,120.0,1,1,3,175,121,105.9,0,0,0,1,0,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,Enrolled +1,1,1,9238,1,1,168.0,1,37,37,9,9,149.5,0,0,0,1,0,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,Graduate +1,17,1,8014,0,1,141.0,1,34,34,0,0,136.1,0,0,0,1,0,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,140.0,1,1,1,4,3,130.7,1,0,0,1,1,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,Dropout +1,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,134.0,1,1,37,8,7,120.5,1,0,0,1,1,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,160.0,1,1,38,4,7,141.5,1,0,0,1,1,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,122.0,1,38,37,191,195,112.9,1,0,0,1,0,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,41,1,1,9,7,163.1,1,0,0,0,0,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,1,110.0,1,1,37,9,9,126.0,1,0,0,1,1,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,Enrolled +1,17,1,9670,1,1,109.0,1,1,1,4,4,108.0,0,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,131.0,2,37,1,9,3,126.1,1,0,0,1,1,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,1,2,9556,1,1,125.0,1,38,1,9,3,116.3,1,0,0,1,0,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,Graduate +1,17,1,9085,1,1,138.0,1,2,19,2,9,126.8,1,0,0,1,0,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,Enrolled +1,1,5,9853,1,1,128.0,1,38,37,9,9,120.3,1,0,1,0,0,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,130.0,1,1,38,4,9,122.7,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,9,133.1,1,37,34,90,90,118.1,1,0,0,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,125.0,1,1,19,4,9,114.5,1,0,0,1,0,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,Graduate +1,1,5,9773,1,1,138.0,1,19,19,9,9,139.4,1,0,0,1,0,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,125.0,1,19,38,3,5,115.9,0,0,0,1,0,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,134.0,1,38,19,5,8,120.7,0,0,0,1,0,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,133.1,41,3,1,3,10,100.0,1,0,0,0,0,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,Dropout +5,39,1,9003,1,1,133.1,1,37,37,9,7,110.0,0,0,1,0,0,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,Dropout +1,17,1,9254,1,1,128.0,1,19,1,5,7,120.7,1,0,1,1,0,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,162.0,1,19,19,4,7,152.9,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,51,1,9238,1,1,121.0,1,3,19,3,10,111.9,1,0,0,1,0,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,Graduate +1,39,2,9991,0,1,172.0,1,19,37,9,8,150.0,1,0,0,1,0,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,116.0,1,19,19,9,8,119.9,1,0,0,1,0,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,125.0,1,19,19,3,10,131.0,1,0,0,1,1,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,39,1,9500,1,4,150.0,1,3,38,3,7,127.0,1,0,0,1,1,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,128.0,1,38,38,9,9,129.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,120.0,1,3,19,4,5,115.5,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,38,38,9,6,160.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,130.0,1,3,1,2,9,130.0,1,0,0,1,0,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,140.0,1,1,19,4,8,124.6,1,0,0,1,0,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,3,3,2,2,150.0,1,0,0,1,0,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9853,1,1,133.1,1,37,19,9,5,138.3,0,0,0,1,0,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,Dropout +1,43,1,9991,0,1,150.0,1,3,3,4,4,100.0,1,0,0,1,1,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,Graduate +1,44,1,9238,1,1,150.0,1,1,38,4,9,145.9,0,0,0,1,0,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,Graduate +1,18,3,9500,1,1,131.0,1,19,1,4,7,127.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,Graduate +1,7,1,9085,1,3,150.0,1,19,37,90,90,140.0,0,0,0,1,1,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,167.0,1,19,19,9,7,156.2,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,140.0,1,1,3,4,5,130.0,0,0,0,1,1,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9238,1,1,132.0,1,1,19,4,9,127.1,1,0,0,1,0,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9119,1,1,133.0,1,3,1,3,4,121.8,1,0,0,1,1,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9670,1,1,133.1,1,1,37,4,5,150.0,0,0,0,1,1,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,150.0,103,37,37,9,9,134.6,0,0,0,1,1,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,6,9773,1,1,131.0,1,34,34,0,0,129.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,139.0,1,3,1,4,1,126.0,1,0,0,1,1,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,138.0,1,1,1,4,8,123.0,0,0,1,0,1,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,Enrolled +5,39,1,9853,1,19,133.1,1,37,37,9,8,118.0,0,0,0,1,0,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,142.0,1,37,38,9,9,137.3,1,0,0,1,0,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,136.0,1,3,38,2,9,125.7,1,0,0,1,0,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,1,1,4,10,128.3,1,0,0,1,0,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,132.0,1,1,37,4,9,127.1,0,0,0,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,122.0,1,19,19,7,7,116.1,1,0,0,1,0,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,140.0,1,1,2,3,3,140.0,0,0,0,1,0,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,Enrolled +1,42,1,9853,1,12,133.1,1,1,3,3,2,133.7,0,0,0,1,0,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,Dropout +2,7,1,9500,1,3,120.0,1,37,19,9,7,120.0,1,0,0,1,0,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,Enrolled +1,1,4,9238,1,1,134.0,1,38,19,7,7,128.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,130.0,1,19,38,4,7,121.3,1,0,0,1,0,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,Graduate +1,39,2,9238,1,1,110.0,1,19,1,5,5,136.5,0,0,0,1,1,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9670,1,1,133.1,1,38,19,9,8,122.9,0,0,1,0,1,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,124.0,1,19,1,9,3,123.7,1,0,0,1,0,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,17,1,9991,0,1,120.0,1,38,3,9,3,116.9,1,0,1,0,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,43,2,9147,1,1,160.0,1,37,37,9,9,96.0,0,0,0,0,0,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,154.0,1,19,37,9,7,140.4,1,0,0,1,0,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,Enrolled +1,17,5,9070,1,1,125.0,1,19,1,5,5,122.6,1,0,0,1,1,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9119,1,1,137.0,1,1,1,4,4,130.4,1,0,1,1,1,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,134.0,1,37,19,9,9,136.8,1,0,0,1,1,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,100.0,1,37,37,0,0,128.0,1,0,0,1,1,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +4,39,1,9130,1,19,133.1,1,37,38,9,4,100.9,0,0,0,1,1,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,127.0,1,1,19,5,7,130.5,1,0,0,1,0,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,1,1,9003,1,1,131.0,1,19,38,5,5,118.4,0,0,0,1,0,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,142.0,1,1,38,5,7,127.7,0,0,0,1,0,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,130.0,1,1,38,4,9,115.0,0,0,0,1,1,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,100.0,0,0,0,1,0,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,134.0,1,1,19,9,5,121.8,1,0,0,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,3,9853,1,1,122.0,1,1,3,5,3,113.6,0,0,0,1,0,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,114.0,1,37,37,7,8,116.7,0,0,0,1,1,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,130.0,1,3,1,3,3,120.5,0,0,0,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,148.0,1,19,19,4,5,143.5,0,0,0,1,0,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,19,9,9,107.0,0,0,0,0,1,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,130.0,1,3,19,5,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,6,120.0,0,0,0,0,0,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,1,2,9853,1,1,123.0,1,19,1,194,103,115.3,1,0,0,1,0,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,Enrolled +1,18,1,9130,1,1,135.0,1,38,19,9,5,121.7,1,0,0,1,0,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,116.0,1,38,38,5,8,110.8,1,0,0,1,0,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,7,1,9147,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9991,0,1,133.1,41,37,37,9,8,114.7,0,0,0,1,0,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,122.0,1,37,37,9,7,120.6,1,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,150.0,1,5,5,2,2,146.2,0,0,0,1,0,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,130.0,1,1,4,3,10,130.0,0,0,0,1,0,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9085,1,19,110.0,1,37,37,90,90,110.0,0,0,0,0,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,140.0,1,1,1,9,9,136.9,1,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,44,1,9085,1,39,150.0,1,19,19,9,9,150.0,1,0,0,1,0,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +2,43,1,9003,1,1,149.0,1,1,1,4,5,156.1,1,0,0,0,1,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9119,1,1,133.1,1,1,1,9,3,136.0,0,0,0,1,1,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,Dropout +1,16,2,9238,1,1,122.0,1,19,37,9,7,127.3,1,0,0,1,0,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,133.0,1,1,1,6,7,134.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,141.0,1,19,38,9,9,130.5,0,0,0,1,1,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,121.0,1,1,3,9,3,123.8,0,0,0,0,1,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,39,140.0,1,1,1,4,3,138.6,0,0,0,1,1,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9991,0,1,145.0,1,2,37,4,9,127.5,1,0,0,1,1,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,100.0,1,37,19,9,2,121.9,0,0,0,0,0,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,120.0,1,38,38,9,9,148.5,0,0,0,1,0,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +5,39,1,9991,0,1,110.0,1,1,1,3,3,119.0,0,0,0,1,1,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9254,1,1,137.0,1,1,38,2,8,122.3,1,0,0,1,1,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,42,1,9238,1,1,133.1,1,1,19,4,9,134.0,0,0,0,1,0,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,38,37,9,7,130.0,1,0,0,1,1,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,Graduate +5,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,120.0,1,37,37,9,9,111.1,0,0,0,1,0,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,124.0,1,38,19,6,10,126.8,1,0,0,1,0,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,Graduate +2,1,1,9500,1,1,151.0,1,37,38,9,7,134.5,0,0,1,1,0,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,133.0,1,19,37,9,8,121.8,1,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,148.0,1,1,19,4,5,135.1,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,120.0,1,19,38,4,8,122.5,0,0,0,0,1,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9070,1,1,140.0,1,37,37,9,10,118.0,0,0,1,1,1,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,3,133.1,1,9,9,90,90,130.0,0,0,0,1,0,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,150.0,1,34,34,0,0,108.0,0,0,0,1,0,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,1,150.0,1,1,38,3,5,120.0,0,0,0,1,1,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,Enrolled +1,44,1,9085,1,39,150.0,1,38,1,5,5,150.0,0,0,0,1,0,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,1,2,9238,1,1,133.1,1,19,19,9,9,106.0,1,0,0,1,0,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,102.0,1,38,38,9,9,99.6,1,0,0,1,0,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,140.0,1,38,19,9,5,130.0,0,0,1,1,0,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9773,1,1,138.0,1,3,1,2,3,135.9,1,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,1,9,4,150.0,1,0,0,1,1,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,Dropout +1,1,6,9147,1,1,127.0,1,1,19,1,6,120.0,1,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,0,0,0,1,1,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,137.0,1,38,38,4,8,126.5,1,0,0,1,0,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,1,19,4,4,132.6,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,130.0,1,1,1,4,9,150.0,0,0,0,1,1,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,146.0,1,3,1,1,3,149.2,1,0,0,1,0,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,129.0,1,38,38,6,6,118.5,1,0,0,1,0,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,131.0,1,19,3,3,2,126.1,1,0,0,1,0,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,Enrolled +1,39,1,9085,1,43,160.0,1,3,39,2,3,172.0,0,0,0,1,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,39,1,9670,1,1,133.1,1,1,1,4,4,112.9,0,0,0,1,0,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,Dropout +2,39,1,9003,1,1,150.0,1,37,37,9,6,140.0,0,0,0,1,1,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,127.0,1,37,38,9,7,115.8,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,133.1,1,1,37,5,9,143.0,1,0,1,1,0,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,9,138.4,1,0,1,1,0,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9070,1,1,125.0,1,1,1,4,4,132.0,0,0,0,0,0,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,5,9130,1,1,160.0,1,3,1,2,9,150.2,1,0,0,1,0,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,1,110.0,1,37,37,9,4,160.0,0,0,0,1,0,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,135.0,1,19,37,5,7,121.4,0,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9670,1,1,135.0,1,19,19,7,10,121.4,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,125.0,1,1,38,4,9,118.4,1,0,0,1,0,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,145.0,1,38,37,5,6,127.5,1,0,0,1,0,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,Graduate +1,43,3,171,1,1,140.0,1,37,38,7,7,143.4,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,134.0,1,37,19,9,10,141.4,1,0,0,1,0,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,130.0,1,29,38,9,8,122.0,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,109.0,1,19,19,4,9,104.1,1,0,1,0,0,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,116.0,1,34,34,0,0,127.0,1,0,0,1,1,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,3,8014,0,19,100.0,1,37,37,9,9,120.0,1,0,0,1,1,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9238,1,1,122.0,1,37,38,4,7,118.2,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,8014,0,1,100.0,1,12,5,9,4,116.5,0,0,1,0,0,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,122.0,1,19,19,193,194,112.6,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,42,3,9500,1,1,136.0,1,1,1,4,4,148.8,1,0,0,1,0,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,137.0,1,19,1,9,9,132.8,0,0,0,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,130.0,1,37,37,6,6,111.9,0,0,1,1,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9254,1,1,116.0,1,19,38,5,5,116.0,1,0,0,1,0,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9500,1,1,131.0,1,1,3,3,2,121.2,1,0,0,1,0,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,141.0,1,1,19,3,3,131.9,1,0,0,1,0,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,120.0,1,37,37,9,10,122.6,0,0,0,1,0,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,Dropout +1,18,5,9119,1,1,136.0,1,3,2,2,3,125.2,1,0,0,1,1,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,125.0,1,19,1,7,4,122.6,0,0,0,1,1,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,139.0,1,19,37,9,9,131.5,1,0,0,1,0,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,Graduate +1,5,1,9853,1,1,119.0,1,1,38,5,8,118.3,1,0,0,1,0,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9773,1,1,125.0,1,1,38,5,6,115.9,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,126.0,1,1,19,4,8,120.1,1,0,0,1,0,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,Graduate +1,17,1,9085,1,1,125.0,1,1,37,4,9,117.0,1,0,0,1,0,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,135.0,1,19,38,7,5,121.0,0,0,0,1,0,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,138.0,1,38,37,3,3,133.1,0,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,148.0,1,19,37,9,5,130.9,0,0,0,0,1,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,145.0,1,12,1,4,10,139.8,1,0,0,1,0,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,118.0,1,37,37,3,5,110.0,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9147,1,1,99.0,1,3,1,3,3,99.7,1,0,1,0,0,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,17,2,9556,1,1,137.0,41,1,1,7,7,124.4,1,0,0,1,0,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,Graduate +1,17,3,9853,1,1,133.1,1,34,34,0,0,115.0,0,0,0,1,0,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,123.0,1,37,38,9,9,113.9,1,0,1,0,0,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,1,4,9238,1,1,125.0,1,19,38,9,6,114.9,1,0,1,1,0,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,Enrolled +1,18,1,8014,0,1,137.0,1,1,1,4,3,123.0,0,0,1,1,0,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,Graduate +1,43,1,8014,0,1,131.0,1,19,37,8,5,125.0,0,0,0,1,1,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9147,1,3,150.0,1,6,27,1,7,150.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,9,4,117.0,0,0,0,1,0,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,133.1,1,37,1,9,10,100.0,0,0,0,1,0,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,Dropout +1,1,3,9670,1,1,121.0,1,1,19,5,5,111.9,1,0,0,1,1,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,133.1,1,1,19,3,3,112.0,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,43,1,9991,0,1,140.0,1,1,1,6,6,100.0,0,0,0,1,1,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,Graduate +2,42,1,9556,1,1,110.0,1,37,37,9,6,140.0,0,0,0,1,1,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,130.0,1,1,1,4,4,124.8,0,0,0,1,0,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,138.0,1,38,37,9,6,126.8,1,0,0,1,1,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,127.0,1,2,37,9,9,115.8,1,0,1,0,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9085,1,1,170.0,1,1,1,4,5,166.6,0,0,1,0,0,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,130.0,1,1,1,4,4,130.0,1,1,0,1,1,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,3,1,2,8,100.0,1,0,0,1,1,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9670,1,1,106.0,1,3,1,2,3,105.7,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,43,1,9556,1,1,140.0,1,37,37,9,9,128.0,1,0,0,0,0,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,127.0,1,1,4,9,10,121.8,0,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,134.0,1,1,1,9,6,130.9,0,0,1,1,0,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,133.1,1,37,37,7,4,132.0,0,0,0,1,1,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,110.0,1,12,3,5,2,100.0,1,0,0,1,1,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,6,9238,1,1,113.0,1,1,38,194,163,112.3,1,0,1,1,0,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,118.0,1,19,19,5,7,121.2,0,0,0,1,1,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,51,1,9773,1,1,158.0,1,1,19,8,8,117.1,1,0,0,1,1,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,Dropout +1,17,1,9070,1,1,119.0,1,37,38,9,8,124.6,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,111.0,1,19,19,3,10,117.7,0,0,0,1,0,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,140.0,1,3,1,5,9,130.0,0,0,0,1,1,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,122.0,1,3,1,9,10,114.7,0,0,0,1,0,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,Graduate +2,39,1,9238,1,19,133.1,1,1,2,4,6,130.0,0,0,0,1,0,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9500,1,1,131.0,1,38,1,5,7,118.4,1,0,0,1,0,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Dropout +1,43,5,9853,1,1,150.0,1,34,34,0,0,150.2,1,0,0,0,0,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,140.0,1,37,19,9,9,166.0,1,0,1,1,1,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9085,1,1,133.1,1,19,37,9,6,130.0,1,0,0,1,0,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,Graduate +1,1,4,9147,1,1,120.0,1,38,38,5,10,111.3,0,0,0,1,1,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,Enrolled +1,1,5,9500,1,1,125.0,1,3,19,4,8,120.3,1,0,0,1,0,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,Enrolled +1,17,2,9556,1,1,136.0,1,1,1,9,9,128.3,0,0,0,1,0,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,133.1,1,38,19,5,5,128.0,0,0,0,1,0,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,9,133.1,1,37,37,5,3,110.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9254,1,1,118.0,1,19,1,4,4,115.9,1,0,0,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,134.0,1,19,37,7,7,136.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,130.0,1,37,37,9,7,119.9,0,0,0,1,0,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9773,1,1,153.0,1,34,34,99,99,133.1,1,0,1,1,0,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,10,133.1,1,12,36,90,90,128.2,0,0,0,0,1,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,1,9991,0,1,112.0,1,43,40,2,2,106.4,0,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,122.0,1,3,3,2,2,122.0,1,0,0,1,0,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,137.0,1,1,19,4,3,121.3,1,0,0,1,1,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,19,133.1,1,3,1,2,5,103.0,0,0,0,1,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,136.0,1,1,19,9,9,131.5,0,0,0,1,0,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,154.0,1,1,3,4,2,164.9,0,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,6,9147,1,1,129.0,1,19,1,9,4,122.0,1,0,0,1,1,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,132.0,1,19,19,9,7,128.0,1,0,0,1,1,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,Graduate +2,39,1,9773,1,19,133.1,1,19,19,9,4,131.0,0,0,1,0,1,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,Dropout +4,39,1,8014,0,1,160.0,1,37,37,5,5,126.0,0,0,0,1,0,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,16,2,9238,1,1,126.0,1,38,37,3,5,127.1,1,0,0,1,0,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9254,1,1,111.0,1,1,19,5,7,109.3,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,133.1,1,37,37,3,10,108.0,0,0,0,1,0,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,Graduate +1,1,4,9773,1,1,140.0,22,1,37,3,9,130.5,1,0,0,1,0,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,140.0,1,1,1,9,5,140.0,0,0,0,1,0,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,Dropout +1,17,3,9670,1,1,125.0,1,1,3,4,3,117.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,150.0,1,37,38,9,9,131.5,1,0,0,1,0,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,5,100.0,0,0,0,0,1,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9773,1,1,133.0,1,19,19,7,7,134.4,1,0,0,1,1,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,135.0,1,19,37,9,9,128.0,1,0,0,1,0,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,5,9670,1,1,115.0,1,1,19,5,5,117.1,0,0,0,1,0,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,Enrolled +1,51,1,9003,1,39,130.0,1,1,19,4,4,120.0,1,0,1,0,1,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,Dropout +1,1,3,9773,1,1,117.0,1,38,19,7,7,110.4,1,0,1,0,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9773,1,1,127.0,1,19,38,8,3,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,38,37,1,1,115.0,1,0,0,1,0,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,18,2,9853,1,1,123.0,1,1,3,9,2,123.7,1,0,1,0,0,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,Dropout +1,1,3,9853,1,1,122.0,1,3,3,2,2,112.6,1,0,0,1,0,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,17,3,9254,1,1,127.0,1,37,37,9,6,123.5,1,0,0,1,0,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,141.0,1,37,37,9,9,136.3,1,0,0,1,1,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,140.0,1,3,3,2,2,124.3,0,0,0,0,1,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,125.0,1,1,3,4,1,121.9,1,0,0,1,1,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,Dropout +1,17,1,9070,1,1,134.0,1,1,1,5,0,133.3,1,0,0,1,1,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9670,1,1,127.0,22,37,37,9,9,127.0,1,0,0,1,1,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,Graduate +1,42,1,9853,1,1,120.0,1,37,38,3,3,113.7,0,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,3,9670,1,1,121.0,1,3,19,2,8,122.4,1,0,0,1,1,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,Enrolled +1,1,3,171,1,1,139.0,1,19,19,5,3,128.2,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,42,1,9085,1,1,100.0,1,1,38,4,9,100.0,1,0,0,1,0,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,10,1,9500,1,1,140.0,24,3,3,2,9,140.0,1,0,1,0,0,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,132.0,1,37,19,9,9,131.0,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,124.0,1,1,1,4,4,127.9,1,0,0,1,1,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9119,1,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9773,1,1,117.0,1,38,38,9,9,111.1,0,0,1,1,1,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,19,133.1,1,19,37,9,9,149.4,0,0,0,0,1,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,1,1,161.9,0,0,0,1,1,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,140.0,1,38,37,4,7,130.0,1,0,0,0,0,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,43,1,171,1,1,145.0,1,19,38,9,9,100.0,0,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9773,1,1,120.0,1,37,38,9,3,155.5,0,0,0,1,1,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,121.8,0,0,0,0,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9130,1,3,140.0,1,5,4,2,0,140.0,0,0,1,0,0,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,Dropout +1,51,1,171,1,1,128.0,1,2,1,3,3,131.2,1,0,0,1,1,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,12,110.0,1,37,37,7,9,120.0,0,0,0,1,0,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,150.0,1,2,3,3,2,140.8,0,0,0,1,0,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,Enrolled +1,43,1,9070,1,1,125.0,1,19,19,7,8,133.4,1,0,0,1,1,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,Enrolled +1,1,5,171,1,1,160.0,1,1,1,4,4,139.7,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,1,120.0,1,1,38,9,9,150.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,154.0,1,19,19,3,3,142.0,0,0,0,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9254,1,1,110.0,1,4,19,4,3,114.8,1,0,0,0,1,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9119,1,1,140.0,1,34,34,9,9,140.0,0,0,0,0,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,125.0,1,1,1,4,2,134.1,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9254,1,40,130.0,1,1,1,3,6,130.0,0,0,0,1,0,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9254,1,1,122.0,1,37,37,9,3,124.5,1,0,0,1,0,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,130.0,1,1,3,9,2,128.6,1,0,0,1,0,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,Graduate +1,17,4,9670,1,1,122.0,1,3,1,2,3,119.6,1,0,0,1,1,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,Graduate +1,44,3,9085,1,39,150.0,1,1,19,4,1,150.0,1,0,0,1,0,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,19,37,9,9,130.0,1,0,0,1,1,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,133.1,1,38,19,4,7,98.0,1,0,0,1,1,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,Enrolled +1,17,2,9556,1,1,125.0,1,38,19,7,7,121.5,1,0,0,1,0,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,Dropout +2,1,4,9500,1,1,143.0,1,38,38,5,5,128.7,1,0,0,1,0,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,1,100.0,1,1,19,4,8,122.0,0,0,0,1,0,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,Graduate +1,51,1,9500,1,1,170.0,1,1,1,4,10,125.0,0,0,0,1,1,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,Graduate +1,18,4,9500,1,1,137.0,1,3,1,3,4,126.7,1,0,0,1,0,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,19,133.1,1,38,38,9,8,106.0,1,0,0,1,1,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,40,130.0,1,19,1,3,4,152.0,1,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9085,1,39,140.0,1,1,39,3,9,140.0,1,0,0,1,0,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9773,1,1,133.1,1,3,1,4,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +2,43,1,9853,1,1,110.0,1,37,37,7,7,100.0,0,0,0,1,1,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,Graduate +1,7,1,9119,1,3,120.0,1,19,19,1,1,120.0,0,0,0,0,1,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,1,130.0,1,34,34,99,99,114.8,0,0,0,1,0,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,140.0,1,37,3,9,10,172.0,0,0,0,1,1,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,Enrolled +1,17,2,9670,1,1,123.0,1,34,37,0,0,114.6,1,0,1,0,0,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,Dropout +1,43,2,9500,1,1,136.0,1,19,1,9,10,124.1,0,0,0,1,1,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,116.0,1,1,1,1,1,110.8,1,0,0,1,0,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9003,1,1,133.1,1,37,37,4,7,130.0,0,0,1,0,1,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,Dropout +1,1,3,9085,1,1,158.0,1,1,19,9,9,153.6,1,0,0,1,0,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,Graduate +1,17,4,9773,1,1,121.0,1,1,19,9,8,120.3,1,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,5,3,9085,1,1,141.0,1,1,19,7,5,128.8,1,0,0,1,0,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,Enrolled +1,18,4,9556,1,1,127.0,1,1,38,4,7,121.8,1,0,0,1,0,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,110.0,1,34,34,0,0,114.6,1,0,0,1,0,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9085,1,1,128.0,1,38,19,8,8,117.2,0,0,0,1,1,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,143.0,1,1,38,3,3,133.2,1,0,0,1,0,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,Graduate +1,1,4,9853,1,1,134.0,1,19,1,5,9,127.4,1,0,0,1,0,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Enrolled +1,1,1,9670,1,1,133.1,1,3,1,1,7,155.0,0,0,0,1,0,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,114.0,1,19,38,9,7,129.1,0,0,0,1,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,149.0,1,19,37,7,4,134.3,0,1,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,130.0,1,1,38,3,5,128.6,1,0,0,1,1,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,42,1,9147,1,1,139.0,1,3,38,2,5,112.3,1,0,0,1,0,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,Enrolled +1,1,3,9773,1,1,130.0,1,19,19,9,9,123.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,38,38,9,5,100.0,0,0,0,1,0,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,Enrolled +6,39,1,8014,0,1,133.1,1,37,1,9,7,114.8,0,0,0,1,0,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,121.0,1,1,38,4,9,114.4,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,18,1,9238,1,1,122.0,1,38,38,9,7,114.7,0,0,1,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9773,1,1,120.0,1,1,1,2,5,127.0,1,0,0,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,4,1,2,8,120.0,0,0,0,1,1,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,3,9500,1,1,143.0,1,38,1,9,5,133.8,1,0,0,1,0,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,130.0,1,1,19,9,7,133.8,0,0,1,1,0,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,Graduate +2,39,1,9556,1,1,100.0,1,37,37,9,9,120.0,0,0,0,1,0,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,133.1,1,1,19,5,4,102.5,0,0,0,1,0,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9003,1,1,111.0,1,1,3,4,2,162.4,0,0,1,0,1,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,133.1,1,19,1,9,3,107.0,1,0,0,1,0,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,128.0,1,19,1,4,4,124.3,1,0,0,1,1,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,140.0,1,36,14,9,10,130.0,1,0,0,1,1,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,150.0,1,38,19,7,10,134.6,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9070,1,1,134.0,1,34,1,5,7,129.8,1,0,0,1,0,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,150.0,1,37,37,9,3,150.0,1,0,0,1,1,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,Dropout +2,39,1,9238,1,1,126.6,1,38,38,9,7,107.5,0,0,1,1,0,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,120.0,1,37,37,9,7,106.8,0,0,0,1,0,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9254,1,1,117.0,1,1,1,5,5,116.3,1,0,0,1,1,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,130.0,1,19,19,5,5,157.0,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9556,1,1,133.1,1,44,40,2,2,115.5,0,0,0,1,0,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,133.1,1,3,1,2,4,125.0,0,0,0,1,1,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,9,9,100.0,0,0,0,0,1,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9500,1,1,141.0,1,37,1,9,4,127.3,1,0,0,1,0,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,117.0,1,38,38,175,183,113.2,1,0,1,1,0,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,133.1,1,37,37,7,7,124.5,0,0,0,0,1,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,Dropout +1,17,2,9070,1,1,133.1,1,37,38,9,10,178.0,1,0,0,1,1,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,19,9,9,115.0,1,0,0,1,1,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,146.0,1,1,1,3,4,128.2,0,0,1,1,0,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,4,9070,1,1,128.0,1,1,1,9,10,136.1,1,0,1,0,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,Dropout +5,39,1,9500,1,3,140.0,1,37,38,9,9,160.0,0,0,0,1,0,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,8,121.0,0,0,1,0,0,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,140.0,1,2,1,2,3,140.0,1,0,0,1,0,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,3,9670,1,1,126.0,1,37,37,0,0,136.5,1,0,0,1,0,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,140.0,1,19,37,9,9,130.2,1,0,0,1,0,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,1,3,1,2,133.0,0,0,0,1,0,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,136.0,1,19,38,9,9,121.7,1,0,0,1,1,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,4,9085,1,1,106.0,1,37,1,3,9,106.0,0,0,0,1,0,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,Enrolled +1,1,3,9500,1,1,135.0,1,1,37,7,7,120.5,1,0,0,1,0,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,115.0,1,19,19,7,7,115.0,1,0,0,1,0,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9238,1,1,160.0,1,38,1,9,3,124.0,0,0,1,1,1,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,129.0,1,38,38,5,5,120.8,1,0,0,1,0,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,160.0,41,37,19,9,9,160.0,0,0,0,1,0,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,132.0,1,1,19,7,5,129.9,1,0,0,1,1,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,136.0,1,37,38,9,8,139.2,1,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,127.0,1,19,37,9,7,121.3,1,0,0,1,0,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9119,1,1,142.0,1,1,38,4,3,129.8,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,5,8,133.2,0,0,0,0,1,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,Dropout +1,1,1,9147,1,1,150.0,1,1,19,5,5,137.8,1,0,0,1,1,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,135.0,1,3,1,2,4,129.8,1,0,0,1,1,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,Graduate +1,43,2,9773,1,1,132.0,1,19,19,0,0,127.1,0,0,0,1,1,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,3,9500,1,1,140.0,1,3,2,3,3,126.4,1,0,0,1,0,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,Dropout +2,39,2,9119,1,19,133.1,1,37,37,7,7,118.0,0,0,0,0,1,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,110.0,1,3,4,2,2,110.0,1,0,0,1,1,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,Dropout +2,39,1,9500,1,38,133.1,1,37,37,9,3,146.6,0,0,0,1,1,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,146.0,1,1,3,4,1,135.2,1,0,0,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,3,5,2,2,135.8,0,0,1,1,1,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9773,1,19,100.0,1,37,37,0,0,163.5,0,0,1,0,1,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,7,113.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,143.0,1,3,3,9,7,129.0,1,0,0,1,1,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,Graduate +1,1,2,9853,1,1,117.0,1,1,38,4,9,109.7,1,0,0,1,0,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9130,1,2,133.1,6,42,1,4,9,100.0,0,0,0,1,1,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,115.8,0,0,1,0,1,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9773,1,1,167.0,1,38,38,6,7,153.0,1,0,0,1,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,51,1,9238,1,1,141.0,1,1,1,5,9,125.0,0,0,0,1,1,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,4,9500,1,1,132.0,1,38,19,5,7,125.5,0,0,0,1,0,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,Graduate +1,1,1,9119,1,1,132.0,1,1,12,3,3,133.1,1,0,0,1,1,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,149.0,1,1,1,4,4,129.3,1,0,0,1,1,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,142.5,0,0,0,1,0,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,Enrolled +1,1,6,9773,1,1,133.1,1,1,37,3,3,100.0,1,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,138.0,1,37,37,9,6,145.0,1,0,0,1,0,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,19,19,3,6,124.3,1,0,0,1,0,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,135.0,1,37,37,9,7,132.6,1,0,0,1,0,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,159.0,1,34,26,0,6,160.1,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,133.1,1,37,37,6,8,100.0,0,0,1,1,0,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9070,1,1,153.0,1,3,3,1,2,146.7,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,43,1,171,1,2,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,141.0,1,19,19,9,8,142.8,0,0,0,1,0,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,39,2,9556,1,1,130.0,1,19,19,4,5,100.0,0,0,0,1,1,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,120.0,1,38,19,3,5,120.0,0,0,0,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,2,9147,1,1,120.0,1,37,37,9,9,104.0,0,0,0,0,1,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,150.0,1,38,38,9,9,132.0,1,0,0,1,0,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,142.0,1,38,38,9,9,132.9,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9085,1,1,160.0,1,4,19,2,5,162.1,1,0,0,1,0,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,8,130.2,1,0,0,1,0,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,118.0,1,1,1,9,9,111.0,0,0,0,0,1,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,119.0,1,37,37,10,6,119.7,1,0,0,1,0,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,Enrolled +1,17,2,171,1,1,137.0,1,1,1,4,1,143.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,18,3,9085,1,1,149.0,103,1,1,9,9,132.2,1,0,0,1,0,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,130.0,1,37,37,90,90,125.1,0,0,0,1,0,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,Graduate +4,17,5,8014,0,1,100.0,1,19,19,90,90,107.0,0,0,0,1,0,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,19,133.1,1,38,19,9,10,142.7,0,0,1,1,1,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,139.0,1,19,37,5,5,125.5,0,0,0,1,0,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,133.0,1,4,1,5,5,131.6,0,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,148.0,1,19,19,9,3,125.0,1,0,0,1,0,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,110.0,1,37,37,9,9,110.3,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,53,1,9003,1,42,130.0,1,38,38,9,9,130.0,1,0,1,1,1,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,Enrolled +1,1,4,9070,1,1,140.0,1,4,19,2,10,125.0,1,0,0,1,1,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9003,1,39,140.0,1,19,1,5,5,140.0,0,0,0,1,0,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,Enrolled +1,1,4,9070,1,1,136.0,1,37,37,9,8,136.7,1,0,0,1,0,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,1,5,9773,1,1,125.0,1,37,3,5,2,126.1,1,0,0,1,1,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,8014,0,1,126.0,1,37,38,9,10,119.4,0,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,123.0,1,1,3,2,2,118.8,0,0,0,1,1,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9500,1,1,144.0,1,1,37,9,9,127.5,1,0,0,1,0,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,125.0,1,38,37,8,7,131.7,1,0,0,1,1,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,144.0,1,37,37,8,8,138.4,0,0,0,1,0,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,160.0,1,37,37,3,4,97.0,0,0,0,1,0,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,37,38,9,9,125.0,1,0,0,1,0,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,117.0,1,37,37,9,9,109.3,0,0,0,0,0,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,3,130.0,1,37,37,9,9,146.2,0,0,0,1,0,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,150.0,1,37,37,9,9,130.3,0,0,0,1,0,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,Graduate +2,39,2,8014,0,19,100.0,1,37,37,4,7,100.0,0,0,1,1,0,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,38,133.1,1,38,37,4,8,95.5,0,0,0,1,1,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,120.7,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9119,1,19,120.0,1,37,37,9,4,98.6,0,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9130,1,1,120.0,1,19,37,1,9,116.1,1,0,0,1,1,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9500,1,1,136.0,1,1,1,4,9,128.5,1,0,0,1,0,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,132.0,1,38,37,7,7,131.3,1,0,0,1,0,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,115.0,1,38,38,9,8,108.4,1,0,0,1,0,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,120.0,1,37,37,9,9,98.7,0,0,0,1,1,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,120.0,1,37,37,9,9,155.8,0,0,0,1,1,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,151.0,1,19,1,5,0,144.4,1,0,0,1,0,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,Graduate +1,43,2,9147,1,1,131.0,1,19,37,5,9,123.7,1,0,0,1,0,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,Enrolled +1,17,4,9085,1,1,128.0,1,38,37,4,9,117.9,1,0,0,1,0,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,8014,0,12,133.1,1,37,1,9,10,112.5,0,0,0,1,1,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,19,133.1,1,37,37,4,8,140.0,0,0,0,1,0,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,7,1,9147,1,2,150.0,1,3,37,2,5,150.0,1,0,1,0,0,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,2,9147,1,1,102.0,1,37,38,191,143,101.7,1,0,0,1,0,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,128.0,1,19,1,4,1,118.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,133.1,1,19,1,4,8,144.3,0,0,0,1,1,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,5,9254,1,1,128.0,1,19,1,7,10,116.5,1,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,140.0,1,19,19,7,5,135.1,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,18,2,9500,1,1,129.0,1,38,37,5,5,119.0,1,0,0,1,0,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,3,1,3,3,131.5,1,0,0,1,0,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,143.0,1,3,3,2,5,144.8,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,127.0,1,37,37,9,8,123.2,1,0,0,1,0,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9500,1,1,125.0,1,37,37,9,7,123.6,1,0,0,1,0,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,138.0,1,1,38,3,9,123.0,1,0,0,1,0,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,139.0,1,38,38,9,9,145.0,1,0,0,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,121.0,1,37,19,6,7,116.8,1,0,0,1,0,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,2,9085,1,1,123.0,1,1,19,4,9,113.6,1,0,0,1,0,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,17,6,9773,1,1,126.0,1,1,19,5,5,119.0,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,4,9119,1,1,139.0,1,37,19,9,4,133.1,1,0,0,1,1,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,158.0,1,1,38,3,6,155.2,0,0,0,1,1,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,8014,0,1,133.1,1,19,1,1,1,118.0,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,136.0,1,22,30,0,8,135.7,1,0,0,1,0,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,120.0,1,37,37,9,9,110.0,0,0,0,0,1,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,124.0,1,19,19,7,9,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,Enrolled +5,7,1,9991,0,2,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,4,9238,1,1,123.0,1,38,1,4,10,129.0,1,0,0,1,0,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,4,9119,1,1,135.0,1,38,37,5,7,126.6,1,0,0,1,1,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,129.0,1,5,3,5,7,124.8,1,0,0,1,0,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,Graduate +1,17,5,9147,1,1,127.0,1,1,38,4,5,124.6,1,0,0,1,0,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,135.0,1,1,1,4,4,118.5,0,0,0,1,0,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,171,1,1,142.0,1,3,1,2,6,139.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9147,1,1,133.1,1,19,19,9,9,119.8,0,0,0,1,1,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,123.0,1,1,37,9,9,132.1,0,0,0,1,0,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9853,1,1,115.0,1,3,37,2,5,108.7,1,0,0,1,0,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,12,133.1,1,37,34,90,90,110.7,1,0,0,1,0,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,155.0,1,4,3,1,1,144.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9254,1,1,105.0,1,1,19,9,6,106.1,1,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,150.0,1,19,19,3,4,135.0,0,0,0,1,0,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,152.0,1,37,37,5,7,136.3,0,0,0,1,0,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,34,34,0,0,120.5,1,0,0,1,1,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,140.0,1,1,37,4,5,123.6,1,0,0,1,0,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,120.0,1,37,37,9,9,150.1,1,0,0,1,1,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,144.0,1,37,38,9,9,126.9,0,0,0,1,0,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,120.0,1,37,37,9,9,128.2,0,0,0,0,1,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,Dropout +1,18,2,9147,1,1,115.0,1,1,37,5,5,108.7,1,0,0,1,0,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,140.0,1,19,19,4,4,140.0,1,0,0,0,1,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,1,1,3,7,140.0,1,0,0,1,0,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9500,1,1,129.0,1,19,19,5,5,119.6,1,0,0,1,0,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,Graduate +1,17,6,9773,1,1,141.0,1,37,37,5,5,127.7,1,0,0,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,137.0,1,19,37,4,7,126.3,1,0,0,1,0,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,1,168.0,1,1,41,9,3,153.9,0,0,1,0,1,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,133.0,1,37,37,9,9,121.8,1,0,0,1,0,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,119.0,1,2,1,4,3,113.1,1,0,0,1,0,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,142.0,1,38,19,141,171,115.0,0,0,0,1,0,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,4,9773,1,1,138.0,1,37,19,5,7,133.5,1,0,0,0,0,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +2,7,1,8014,0,3,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,133.0,1,3,19,2,5,130.8,1,0,0,1,0,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,137.0,1,38,19,152,171,131.1,1,0,0,1,0,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9119,1,1,130.0,1,1,38,3,3,129.3,0,0,0,1,1,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Graduate +1,43,1,9773,1,1,126.0,1,1,37,3,0,110.0,0,0,1,1,0,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,116.0,1,1,12,5,8,110.4,1,0,0,1,1,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,1,1,4,10,110.0,0,0,1,1,0,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,5,9238,1,1,134.0,1,38,37,9,9,126.0,0,0,1,0,0,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,Dropout +2,39,1,9147,1,1,130.0,1,1,19,9,9,109.9,0,0,0,0,0,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9085,1,1,133.1,41,37,37,9,9,109.6,0,0,0,1,0,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,1,140.0,0,0,0,1,1,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,Enrolled +2,39,1,9991,0,19,133.1,1,38,38,90,90,121.7,1,0,0,1,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,143.0,1,1,3,4,7,129.7,1,0,0,1,0,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,133.0,1,1,19,9,6,121.5,1,0,0,1,0,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,133.0,1,38,37,9,9,125.3,1,0,0,1,0,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,Graduate +1,42,1,9991,0,1,160.0,1,1,2,4,3,120.0,0,0,0,1,0,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,Graduate +2,39,2,9556,1,1,133.1,105,1,3,9,2,152.8,1,0,0,1,0,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,123.0,1,1,1,4,6,118.8,1,0,0,1,0,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,122.0,1,3,19,2,3,112.9,0,0,0,1,0,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,Graduate +1,1,5,9853,1,1,123.0,1,1,12,4,9,113.2,1,0,0,1,0,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,140.0,1,37,37,9,9,141.5,1,0,1,0,0,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,129.0,1,19,19,4,8,127.3,1,0,0,1,0,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,1,130.0,1,37,37,6,6,110.0,0,0,0,1,0,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,Enrolled +4,39,1,8014,0,19,133.1,1,37,37,9,9,95.0,0,0,1,0,0,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9853,1,1,127.0,1,37,19,9,8,137.5,1,0,0,1,0,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,142.0,1,38,37,5,7,128.8,1,0,0,1,0,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,Graduate +1,17,2,9147,1,1,142.0,1,19,19,4,8,127.3,0,0,0,1,0,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +3,39,1,9991,0,1,120.0,1,37,1,9,2,170.0,0,0,0,1,1,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,138.0,1,19,37,4,9,141.0,0,0,0,1,1,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,132.0,1,1,38,9,9,120.1,1,0,0,1,1,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,140.0,1,1,1,2,7,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,121.0,1,37,19,9,10,113.7,0,0,0,1,0,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,Enrolled +1,39,1,8014,0,38,133.1,1,1,1,4,4,107.5,0,0,1,0,1,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,150.0,1,1,1,5,1,155.6,0,0,0,1,0,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,150.0,1,37,37,9,6,131.1,0,0,0,1,0,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,100.0,1,3,19,1,1,117.9,0,0,0,0,1,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,2,9991,0,1,150.0,1,37,37,9,9,120.0,0,0,0,1,0,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,150.0,1,1,38,4,9,150.0,0,0,0,1,1,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,Enrolled +2,43,1,9130,1,9,133.1,1,34,34,0,0,128.2,0,0,0,1,1,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,141.0,1,1,1,90,3,127.8,0,0,0,1,0,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,116.0,1,3,3,0,1,108.7,1,0,0,1,1,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,Dropout +2,39,1,9500,1,1,140.0,1,19,19,9,7,110.5,0,0,0,1,0,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9254,1,19,133.1,1,34,34,0,0,120.0,0,0,1,0,1,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,133.1,1,37,37,191,172,115.2,0,0,0,1,0,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,6,160.0,0,0,0,1,0,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,133.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9556,1,1,131.0,1,19,38,9,7,128.5,0,0,0,1,0,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,160.0,1,37,38,9,7,161.0,1,0,0,1,0,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,136.0,1,3,3,1,2,152.5,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9853,1,1,114.0,1,19,37,5,5,109.5,1,0,0,1,0,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,150.0,1,37,37,9,7,122.5,0,0,0,1,1,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,Dropout +1,44,1,9991,0,39,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,8014,0,42,140.0,1,19,37,134,193,138.0,1,0,1,1,0,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,127.0,1,2,19,3,9,121.5,0,0,0,1,1,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,133.1,1,19,19,3,3,125.3,0,1,0,1,1,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,4,9670,1,1,125.0,1,4,19,2,5,118.0,1,0,0,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,Graduate +2,42,1,9070,1,1,170.0,1,37,25,0,4,148.5,0,0,0,1,1,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,Dropout +1,17,5,9254,1,1,121.0,1,1,19,4,7,116.5,1,0,0,0,1,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,120.0,1,19,38,5,9,130.2,0,0,0,1,0,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,140.0,1,19,37,9,9,140.7,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,140.0,1,19,19,5,9,131.3,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,42,1,9119,1,1,140.0,1,3,3,3,2,133.6,1,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,8014,0,1,150.0,1,19,2,4,6,148.0,0,0,0,1,0,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,127.0,1,37,2,9,4,123.2,1,0,0,1,0,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,119.0,1,19,37,9,9,119.4,1,0,0,1,0,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,132.0,1,2,1,4,1,127.8,0,0,0,1,1,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,Dropout +1,42,1,9119,1,1,136.0,1,1,37,5,5,117.5,0,0,0,1,1,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9991,0,1,122.0,1,37,37,9,3,113.6,0,0,0,1,1,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,5,6,137.4,0,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,128.0,1,19,19,5,4,116.5,0,0,0,1,0,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,139.0,1,1,38,6,6,143.6,1,0,1,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9130,1,1,154.0,1,3,3,2,2,137.2,1,0,1,1,1,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,6,9500,1,1,142.0,1,19,37,4,9,131.9,1,0,0,1,0,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Dropout +1,1,2,9773,1,1,131.0,1,19,37,9,10,121.9,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +2,7,1,9130,1,3,120.0,1,3,3,1,1,128.2,0,0,0,1,0,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,19,133.1,1,37,37,9,9,150.3,0,0,0,1,0,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,125.0,1,37,37,5,5,124.0,0,0,0,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,135.0,1,37,19,9,9,125.2,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,9,124.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,175.0,1,3,38,2,10,157.5,1,0,0,1,0,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,139.0,1,1,1,4,10,140.7,0,0,0,1,1,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,Dropout +1,1,4,9500,1,1,128.0,1,1,1,4,10,125.2,1,0,0,1,1,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,150.0,1,1,37,1,1,131.5,1,0,0,1,0,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,168.0,1,38,1,9,10,166.0,1,0,0,1,0,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,Graduate +1,51,1,9070,1,1,125.0,1,42,3,125,124,130.0,1,0,0,1,1,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,135.0,1,1,38,4,5,127.5,1,0,0,1,0,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,Graduate +1,18,1,9119,1,1,148.0,1,3,19,3,5,147.7,0,0,0,1,1,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9773,1,1,130.0,109,19,1,9,9,126.9,1,0,0,1,0,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,125.0,1,19,38,3,7,114.9,0,0,0,1,0,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,Graduate +1,7,1,9119,1,3,130.0,1,37,37,9,9,130.0,0,0,0,0,1,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9853,1,1,130.0,1,37,19,7,3,140.0,0,0,1,1,0,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,112.0,1,3,1,3,5,111.0,0,0,0,1,0,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,37,38,193,181,125.9,0,0,0,1,0,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,Graduate +1,42,1,9119,1,1,120.0,1,34,34,0,0,128.2,1,0,0,1,1,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,19,133.1,1,37,37,9,9,117.2,0,0,0,1,0,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9147,1,1,131.0,1,19,38,9,7,132.4,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9003,1,1,180.0,1,1,1,4,8,179.6,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,5,9119,1,1,135.0,1,37,37,90,90,122.1,1,0,0,1,1,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.0,1,1,38,5,10,131.3,1,0,0,1,0,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,126.0,1,37,19,5,5,119.3,0,0,0,1,0,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,110.0,1,19,37,9,6,120.0,0,0,1,0,1,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9556,1,1,130.0,1,37,37,9,9,159.0,1,0,0,1,0,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,141.0,1,19,38,4,5,133.7,1,0,0,1,1,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,1,37,4,6,120.0,0,0,0,1,1,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9085,1,1,123.0,1,3,19,2,9,118.9,0,0,0,1,1,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,17,1,9991,0,1,140.0,1,38,37,6,7,127.3,0,0,0,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,151.0,1,3,1,2,1,129.8,1,0,0,1,1,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,113.0,1,37,37,0,6,128.2,0,0,0,0,0,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9070,1,1,117.0,1,1,37,4,7,127.9,1,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,145.0,1,19,19,9,7,136.6,0,0,0,1,0,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.0,1,34,37,4,9,134.4,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,9238,1,39,130.0,1,38,38,5,10,126.7,0,0,1,1,0,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9773,1,1,122.0,1,1,1,4,7,116.8,1,0,1,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,3,9147,1,1,124.0,1,1,1,5,3,116.7,1,0,0,1,1,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,38,1,9,4,123.2,0,0,0,1,0,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,Enrolled +1,39,1,9556,1,40,130.0,1,1,1,4,5,145.0,0,0,0,1,0,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,Enrolled +1,43,1,9147,1,1,127.0,25,1,5,9,10,124.2,1,0,0,1,1,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,43,1,9670,1,1,120.0,1,34,34,0,0,128.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9238,1,1,122.0,1,1,3,9,2,112.6,1,0,0,1,1,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,122.0,1,1,1,4,4,119.6,1,0,0,1,0,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,Enrolled +1,17,5,9670,1,1,125.0,1,1,19,9,7,119.4,1,0,0,1,0,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,146.0,1,19,37,9,7,153.0,1,0,0,1,0,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,108.0,1,38,38,7,7,115.0,1,0,1,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,133.1,1,1,1,3,9,138.0,1,0,0,1,0,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,140.0,1,37,37,9,5,140.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,19,133.1,1,2,1,2,4,100.0,0,0,0,1,1,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9147,1,1,129.0,1,38,37,3,5,132.9,1,0,0,1,0,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,149.0,1,3,2,2,5,151.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,135.0,1,19,4,9,2,143.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9147,1,1,158.0,1,19,37,9,7,130.0,1,0,0,1,0,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,Graduate +1,17,6,9556,1,1,122.0,1,1,1,4,5,117.1,1,0,0,1,0,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9556,1,12,133.1,1,34,34,99,99,100.5,0,0,0,1,0,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9003,1,1,123.0,1,37,37,9,9,110.0,0,0,1,0,0,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,138.0,1,3,3,2,2,127.5,1,0,0,1,0,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,Graduate +1,43,1,9500,1,1,121.0,1,38,19,5,5,115.4,1,0,0,1,0,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,Enrolled +1,17,4,9147,1,1,114.0,1,19,19,4,4,109.5,1,0,0,1,1,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,148.0,1,1,1,4,8,145.2,0,0,0,1,1,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,121.0,1,1,1,4,4,123.1,1,0,0,1,1,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,150.0,1,3,3,2,5,154.6,1,0,0,1,0,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,151.0,1,19,38,9,9,157.0,1,0,1,1,0,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,101.0,0,0,0,1,0,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,2,9254,1,1,127.0,1,3,19,3,10,130.9,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,146.0,1,1,1,9,8,149.5,1,0,0,1,1,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9130,1,6,133.1,1,1,29,4,90,123.3,1,0,0,1,0,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,3,3,7,146.5,1,0,1,1,1,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,Enrolled +1,7,1,8014,0,40,120.0,1,37,19,9,3,120.0,0,0,0,1,0,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9853,1,1,125.0,1,37,37,9,9,114.9,1,0,1,0,0,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,2,9773,1,1,140.0,1,1,1,4,3,131.6,0,0,0,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,142.0,1,1,19,9,9,136.1,0,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,113.0,1,1,1,4,4,106.7,1,0,0,1,0,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,130.0,1,1,2,4,2,130.0,0,0,0,1,1,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,39,1,9119,1,1,130.0,1,19,37,9,9,134.0,0,0,0,1,1,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,Enrolled +1,18,1,9500,1,1,123.0,1,37,37,3,3,118.0,1,0,0,1,0,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,Graduate +1,10,2,9085,1,1,163.3,22,19,1,4,9,163.3,0,0,0,1,0,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,5,135.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,136.0,1,4,5,2,2,126.2,0,0,0,1,1,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,150.0,1,1,37,4,8,150.0,1,0,0,0,0,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9085,1,3,140.0,1,19,20,4,90,140.0,1,0,0,1,0,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,43,1,9070,1,1,135.0,1,1,38,3,9,126.4,1,0,0,1,0,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,140.0,1,19,38,7,8,129.9,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,133.1,1,1,1,9,9,155.0,0,0,0,1,0,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,5,9773,1,1,122.0,1,38,38,7,7,123.1,1,0,0,0,0,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,117.0,1,1,1,9,9,109.3,1,0,0,1,0,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9500,1,1,130.0,1,1,38,9,9,125.1,1,0,0,1,0,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,Enrolled +1,1,2,9773,1,1,144.0,1,3,3,3,2,140.2,1,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,145.0,1,1,1,4,10,145.0,0,0,0,1,0,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,Dropout +1,51,1,9070,1,1,143.0,1,1,1,4,4,120.0,1,0,0,1,0,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,145.0,1,1,38,90,8,132.8,1,0,0,0,1,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9556,1,1,120.0,1,38,38,191,193,120.0,0,0,1,1,0,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,148.0,1,19,1,7,5,138.3,1,0,0,1,1,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,146.0,1,3,3,3,6,133.4,1,0,0,1,0,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,Graduate +1,17,1,9130,1,1,131.0,1,12,12,2,8,128.2,1,0,0,1,1,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,6,9556,1,1,115.0,1,19,2,5,3,112.2,1,0,0,1,0,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,Graduate +1,43,1,9556,1,1,126.0,1,2,3,3,2,100.0,0,0,0,1,0,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,Enrolled +1,17,1,9238,1,1,120.0,1,19,37,9,9,113.0,1,0,0,1,0,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,132.0,1,19,38,5,5,118.0,1,0,0,1,0,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,Graduate +2,1,1,9238,1,1,145.0,1,37,34,9,7,139.4,0,0,0,0,0,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,131.0,1,38,38,191,174,125.4,1,0,0,1,0,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,39,1,9119,1,1,120.0,1,37,38,9,10,145.4,0,0,1,1,1,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,Dropout +1,1,1,9130,1,1,138.0,1,4,5,2,2,123.0,1,0,0,1,0,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,127.0,1,5,3,4,4,122.8,1,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,136.0,1,1,1,4,4,127.0,1,0,0,1,0,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,Enrolled +1,17,3,9119,1,1,115.0,1,3,1,3,3,116.1,1,0,0,0,1,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,143.0,1,38,37,4,9,116.5,1,0,0,1,0,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,3,19,3,8,134.9,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,Graduate +1,44,1,9119,1,39,140.0,1,5,41,3,2,140.0,0,0,0,1,1,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,124.0,1,19,19,9,3,115.6,1,0,0,0,1,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9500,1,3,130.0,1,19,38,5,3,130.0,0,0,0,1,0,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,137.0,1,1,1,4,10,124.8,1,0,0,1,1,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,138.0,1,1,3,1,4,127.5,1,0,0,1,1,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,112.0,1,1,1,5,1,111.7,0,0,1,0,1,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,Dropout +1,1,4,9500,1,1,147.0,1,1,1,4,9,124.5,1,0,0,1,0,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,Graduate +1,7,1,9500,1,3,140.0,1,3,19,2,6,140.0,0,0,0,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,121.0,1,19,19,7,7,113.0,1,0,0,1,0,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,8014,0,1,96.0,1,3,1,3,9,100.0,0,0,0,1,0,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,152.0,1,1,38,4,5,144.7,0,0,0,1,0,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,Graduate +2,1,1,9070,1,1,127.0,1,12,19,9,9,123.2,0,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,Graduate +1,1,3,9070,1,1,147.0,1,34,37,5,7,135.8,1,0,0,1,0,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,7,1,9119,1,4,180.0,1,4,3,2,7,180.0,0,0,1,1,1,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,Enrolled +1,1,6,9500,1,1,129.0,1,37,19,9,7,127.8,1,0,0,1,0,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,100.0,1,37,37,7,7,160.0,1,0,0,1,0,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,127.0,1,19,1,5,5,117.6,1,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9003,1,1,110.0,1,1,1,9,4,120.0,0,0,1,0,1,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9773,1,1,143.0,11,19,19,4,9,133.9,1,0,0,1,1,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,160.0,1,37,37,7,7,156.1,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,43,2,9670,1,1,135.0,1,3,19,1,7,123.5,1,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,1,130.0,1,38,3,132,122,100.0,0,0,0,1,1,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,Enrolled +1,15,1,9238,1,1,150.0,26,19,1,9,9,146.5,1,0,1,0,1,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,Graduate +1,17,6,9119,1,1,129.0,1,37,13,4,90,117.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,3,130.0,1,3,3,3,10,147.6,0,0,0,1,1,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,171,1,1,145.0,1,1,1,3,3,140.1,1,0,0,1,0,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,43,3,9254,1,1,135.0,1,3,3,2,2,122.1,0,0,0,1,1,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,171,1,1,140.0,41,1,1,5,7,146.3,1,0,0,1,0,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9070,1,1,126.0,1,38,38,9,8,129.9,1,0,0,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Graduate +1,7,1,9070,1,3,120.0,1,4,4,2,2,120.0,0,0,0,1,1,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,Dropout +1,17,4,9070,1,1,144.0,1,38,1,9,9,137.4,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,125.0,1,3,3,2,3,118.0,1,0,0,1,1,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,Dropout +5,39,1,9238,1,1,130.0,1,19,38,9,10,146.0,0,0,0,1,1,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,5,107.5,0,0,0,1,0,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9773,1,1,130.0,1,1,19,1,3,161.5,0,0,0,1,1,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,140.0,1,19,19,9,4,127.8,1,0,0,1,1,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,113.0,1,1,37,1,10,116.5,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,Graduate +1,1,2,9238,1,1,145.0,1,1,19,4,8,121.4,0,0,0,1,0,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9003,1,19,133.1,1,19,37,9,10,120.0,0,0,1,1,0,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,Enrolled +1,1,1,9085,1,1,150.0,1,12,2,4,2,144.6,0,0,1,0,0,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,40,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,Dropout +1,17,5,9500,1,1,137.0,1,1,1,5,5,132.6,1,0,0,1,0,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,3,19,4,7,119.0,0,0,0,1,1,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,128.0,1,1,1,4,5,124.7,0,0,0,1,1,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,Enrolled +1,39,2,9670,1,19,133.1,1,34,34,0,0,100.0,1,0,0,0,1,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,Dropout +1,39,1,9556,1,1,120.0,1,19,19,4,5,122.8,0,0,0,1,0,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,Dropout +1,1,2,171,1,1,165.0,1,3,3,2,2,163.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,133.8,1,3,37,2,10,184.0,0,0,0,1,0,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,120.0,1,37,19,9,4,148.8,0,0,0,1,0,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,5,9500,1,1,151.0,1,1,1,9,9,127.8,0,0,0,1,0,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,131.0,1,38,19,7,7,125.3,1,0,0,1,0,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,128.0,1,1,1,9,6,120.3,0,0,0,1,1,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,118.0,1,3,1,5,10,113.5,1,0,0,1,0,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,140.0,1,37,37,7,9,126.8,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,117.0,1,38,37,9,9,113.5,1,0,0,1,0,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,135.0,1,19,19,9,9,122.8,1,0,0,1,1,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,151.0,1,37,37,9,7,147.5,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,1,3,4,4,147.5,1,0,0,1,0,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,128.0,1,38,37,9,9,124.9,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9085,1,1,124.0,1,3,19,2,3,113.9,1,0,0,1,0,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,120.0,1,3,19,4,7,119.7,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,171,1,1,147.0,1,1,12,4,4,148.4,1,0,0,1,1,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,136.0,1,19,1,9,8,123.4,1,0,0,1,0,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,123.0,1,3,1,2,5,112.9,0,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,2,9556,1,1,133.1,1,3,1,2,4,136.1,0,0,0,1,1,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,141.0,1,3,1,4,4,142.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9003,1,1,120.0,1,37,37,9,9,120.5,1,0,1,1,1,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,6,140.0,1,0,0,1,1,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,147.0,1,19,1,4,3,138.5,1,0,0,1,0,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,123.0,1,34,34,90,90,113.3,1,0,0,1,0,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,38,4,5,130.4,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,7,7,134.0,0,0,0,1,1,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,38,38,4,7,111.6,1,0,0,1,0,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9119,1,1,148.0,1,19,38,9,7,133.0,0,0,0,1,1,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,128.0,1,3,1,2,1,127.8,0,0,0,1,0,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,172.0,1,38,37,9,9,149.3,0,0,0,1,1,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,138.0,1,37,37,9,8,127.2,1,0,0,1,0,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,140.0,1,3,1,2,6,137.6,1,0,0,1,1,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,110.0,1,37,19,9,3,100.0,0,0,0,1,0,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,2,1,2,4,140.7,1,0,0,1,1,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,137.0,1,3,38,3,5,129.3,1,0,0,1,0,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,136.0,1,38,38,0,7,133.2,1,0,0,1,0,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,145.0,6,34,34,0,0,134.5,1,0,0,1,1,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,147.0,1,19,19,3,10,151.9,1,0,0,1,0,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,118.0,1,37,37,9,9,112.1,1,0,0,1,0,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,Dropout +1,43,1,9773,1,1,122.0,1,1,1,4,5,126.9,0,0,0,1,0,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,126.0,1,12,38,9,5,122.2,0,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,143.0,1,3,3,2,2,129.0,0,0,0,1,1,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,Graduate +1,39,1,9556,1,1,130.0,1,19,38,9,8,113.3,0,0,0,1,0,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,101.0,1,1,37,4,9,98.9,1,0,0,1,0,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,133.1,1,34,34,90,90,116.0,0,0,0,0,0,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,Dropout +2,39,1,9991,0,1,170.0,1,37,19,9,3,151.1,0,0,0,1,1,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,Graduate +2,17,5,9119,1,1,126.0,1,37,38,4,4,122.9,1,0,0,1,1,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,125.0,1,19,19,9,9,114.9,0,0,0,1,0,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,Graduate +1,18,3,9773,1,1,128.0,1,19,1,9,9,122.1,1,0,0,1,1,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,149.0,1,38,37,9,9,139.5,0,0,0,1,1,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,1,3,9,5,137.1,0,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,126.0,1,38,37,5,5,114.8,1,0,0,1,0,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9085,1,1,120.0,1,37,37,6,6,150.0,0,0,0,1,1,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,137.0,1,38,19,0,90,122.3,0,0,0,1,0,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9853,1,19,133.1,1,37,19,3,7,100.0,0,0,0,1,0,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,145.0,1,4,2,2,3,127.3,1,0,0,1,1,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,129.0,1,1,1,4,8,129.0,0,0,0,0,0,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,143.0,1,1,1,4,4,129.0,1,0,0,1,1,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,136.0,1,19,38,9,9,119.3,1,0,0,1,0,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,151.6,0,0,0,1,0,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,Enrolled +1,1,1,9238,1,1,108.0,1,19,38,9,9,107.3,0,1,0,1,0,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,134.0,1,1,1,2,7,128.4,1,0,0,1,0,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,Graduate +1,42,1,9119,1,1,120.0,1,3,1,2,9,108.2,1,0,0,1,1,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,Dropout +1,16,2,9500,1,1,127.0,1,2,38,4,9,119.0,1,0,0,1,0,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,131.0,1,1,1,9,9,122.0,0,0,0,1,0,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9070,1,3,133.1,1,3,5,2,2,120.0,1,0,0,1,0,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,150.0,1,19,19,5,5,132.8,1,0,0,1,0,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,Graduate +1,18,2,9670,1,1,121.0,1,37,38,4,1,111.9,1,0,0,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,108.0,41,3,3,9,9,107.0,0,0,1,0,0,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,150.0,1,34,19,0,4,152.8,1,0,0,1,1,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,18,2,9238,1,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,130.0,6,19,1,6,4,130.0,1,0,0,1,0,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,Enrolled +1,51,1,9119,1,1,136.0,1,1,19,3,5,133.6,1,0,0,1,1,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,Dropout +1,1,4,9773,1,1,155.0,1,3,19,1,4,149.8,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9070,1,1,124.0,1,19,38,4,0,117.6,1,0,0,1,1,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,9,100.0,0,0,0,1,1,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,Enrolled +1,44,1,9238,1,1,140.0,1,1,1,5,5,143.4,0,0,0,1,0,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,120.0,1,1,19,7,7,111.3,0,0,0,1,1,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,Enrolled +2,1,1,9556,1,1,144.0,1,19,19,193,144,139.8,0,0,1,1,1,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,110.0,1,1,1,5,5,160.0,1,0,1,1,0,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,Dropout +2,39,1,9853,1,19,133.1,1,37,37,9,9,131.0,0,0,0,1,0,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,139.0,1,4,1,2,10,136.4,1,0,0,1,0,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,Graduate +1,17,3,9085,1,1,134.0,1,37,38,9,9,120.4,1,0,0,1,0,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,148.0,1,3,2,4,2,131.6,1,0,0,1,0,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,145.0,1,19,37,7,7,141.5,1,0,0,1,0,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9130,1,19,133.1,1,37,38,9,9,120.0,0,0,0,1,1,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,3,9254,1,1,121.0,1,19,37,4,7,116.8,1,0,0,1,0,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,123.0,1,1,1,4,3,123.4,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,38,38,9,9,133.4,1,0,0,1,1,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,Graduate +1,42,1,9500,1,1,124.0,1,19,19,4,9,124.0,0,0,0,1,0,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,40,130.0,1,37,37,9,7,130.0,0,0,0,1,0,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,140.0,1,3,38,2,9,140.0,1,0,0,1,0,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,158.0,1,38,38,9,7,144.7,1,0,0,1,0,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,18,2,9238,1,1,121.0,1,19,1,4,3,121.4,1,0,0,1,0,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,12,133.1,1,37,19,9,10,120.0,0,0,0,1,1,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,122.0,1,3,1,4,3,114.8,1,0,0,1,0,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,Enrolled +4,43,1,9991,0,1,164.0,1,37,37,6,6,131.8,0,0,0,1,0,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,3,9773,1,1,145.0,1,38,38,9,5,133.1,0,0,0,1,0,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9853,1,19,133.1,1,38,19,9,9,108.0,0,0,1,0,0,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,3,9070,1,1,131.0,1,38,37,5,5,120.2,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,Enrolled +1,43,1,9238,1,1,130.0,1,38,37,9,7,133.2,0,0,0,1,0,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,112.0,1,1,1,3,3,106.4,1,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,125.0,1,1,38,144,181,123.3,0,0,0,1,0,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,125.0,1,3,2,2,1,119.1,1,0,0,1,0,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9853,1,3,140.0,1,34,34,0,0,140.0,1,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,135.0,1,1,19,3,9,137.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9991,0,3,120.0,1,37,37,6,7,120.0,0,0,1,0,1,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,130.0,1,1,1,4,3,125.1,1,0,0,1,0,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,Graduate +2,39,1,33,1,1,120.0,1,38,1,9,5,153.8,0,0,1,1,1,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,37,37,9,9,140.0,0,0,0,0,1,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,127.0,1,1,38,9,7,120.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,43,180.0,1,19,19,9,4,180.0,0,0,0,1,0,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,Graduate +1,1,3,9147,1,1,143.0,1,1,1,5,7,133.2,1,0,0,1,0,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,Graduate +1,15,1,9853,1,1,133.1,41,43,1,153,135,128.2,0,0,0,1,0,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,12,133.1,1,1,1,9,4,140.0,1,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,151.0,1,1,38,4,7,137.0,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,Graduate +1,17,4,171,1,1,172.0,1,3,1,2,10,155.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,129.0,1,19,1,9,5,112.0,0,0,0,1,1,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,150.0,1,38,3,9,1,140.0,0,0,0,1,1,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,Graduate +1,1,1,9773,1,1,124.0,17,1,1,3,5,118.1,1,0,1,0,0,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9670,1,1,124.0,1,37,19,5,8,114.2,1,0,1,1,0,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,122.0,1,1,19,3,5,116.8,1,0,0,1,0,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,144.0,1,38,1,9,10,137.4,0,0,0,1,0,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,19,19,9,9,120.0,0,0,0,1,0,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,138.0,1,38,38,7,6,124.7,1,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,18,2,9147,1,1,132.0,1,3,3,5,7,119.1,1,0,1,0,0,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,17,6,9119,1,1,111.0,1,19,3,5,10,106.5,1,0,0,1,1,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,Dropout +1,7,1,9500,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,1,140.0,1,37,37,9,9,130.0,1,0,0,1,1,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,125.0,1,37,37,3,3,124.0,0,0,0,1,1,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,128.0,1,19,2,7,3,126.3,1,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +2,39,1,9500,1,1,110.0,1,37,37,9,6,114.3,0,0,0,1,0,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,9085,1,1,133.1,1,1,9,4,4,128.2,0,0,0,1,0,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,Graduate +1,1,3,9238,1,1,126.0,1,38,19,5,8,120.8,1,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,121.0,1,1,1,9,8,118.9,1,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,109.0,1,19,37,5,5,108.3,0,0,0,1,0,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,Enrolled +1,1,4,9670,1,1,127.0,1,1,1,7,7,116.5,1,0,0,1,0,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,171,1,19,133.1,101,1,19,2,7,110.0,0,0,0,1,1,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,133.0,1,37,37,9,7,124.6,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,39,137.0,1,1,1,5,10,124.5,0,0,0,0,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,130.0,1,19,19,7,7,121.6,0,0,0,1,0,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,130.0,1,37,37,6,5,113.5,1,0,0,1,0,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9670,1,1,120.0,1,38,38,5,7,115.1,1,0,0,1,0,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,115.0,1,38,1,9,4,116.1,1,0,0,1,1,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,130.1,0,0,0,1,0,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,Enrolled +1,1,3,9238,1,1,133.1,1,1,1,9,9,100.0,1,0,0,1,1,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,168.0,0,0,0,1,1,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,148.0,1,1,1,9,9,141.7,0,0,0,0,1,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,Dropout +1,15,1,33,1,1,133.1,41,2,3,2,4,100.0,0,0,0,1,1,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,135.0,1,37,37,6,5,121.0,1,0,0,1,1,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,151.0,1,3,3,1,90,161.9,0,0,0,1,0,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,8,108.5,0,0,0,1,1,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9670,1,1,130.0,1,26,30,0,5,128.6,1,0,1,1,0,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,Graduate +1,43,1,9500,1,1,140.0,100,1,1,6,6,128.2,0,0,0,1,0,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,140.0,1,19,37,5,7,140.0,1,0,0,1,1,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,Dropout +1,39,1,33,1,1,140.0,1,3,1,2,4,152.8,0,0,0,1,0,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,Enrolled +1,43,1,9070,1,1,117.0,1,1,1,4,7,112.5,1,0,0,1,1,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,126.0,1,37,19,7,7,125.7,0,0,0,1,0,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,Enrolled +1,1,2,9773,1,1,140.0,1,38,38,5,7,126.4,1,0,0,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,121.0,1,37,38,6,9,121.0,0,0,0,1,0,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,136.0,1,12,1,4,4,122.0,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,117.0,1,37,37,9,9,120.2,1,0,0,1,0,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,133.1,1,38,1,9,9,121.0,0,0,1,0,1,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,Dropout +1,44,1,9991,0,39,130.0,1,37,37,5,5,130.0,1,0,0,1,1,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,138.0,1,1,19,4,9,142.2,1,0,0,1,0,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,148.0,1,3,1,2,10,148.0,1,0,0,1,0,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,Graduate +1,17,6,9556,1,1,134.0,1,19,38,7,7,128.5,1,0,0,1,0,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,141.0,1,1,19,5,8,141.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,149.0,1,3,1,9,9,137.5,0,0,0,1,1,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,Graduate +1,1,3,9085,1,1,142.0,1,11,11,90,90,155.3,0,0,0,1,0,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,135.0,1,19,37,9,9,134.0,1,0,0,1,0,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,132.0,1,19,38,9,7,120.1,0,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9147,1,1,133.0,1,37,37,9,5,119.7,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,139.0,1,3,4,2,2,130.6,0,0,0,1,0,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,2,130.0,1,0,1,0,1,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,Dropout +1,17,3,9500,1,1,138.0,1,3,3,4,5,130.0,1,0,0,1,0,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,121.0,1,19,19,3,3,116.1,1,0,0,1,0,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,160.0,1,3,38,1,9,152.0,1,0,0,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,130.0,41,37,19,9,8,125.5,1,0,0,1,0,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,133.1,1,38,38,191,193,146.0,0,0,1,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,Graduate +4,39,1,9003,1,1,140.0,1,37,37,9,8,150.0,0,0,0,1,1,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,Enrolled +1,17,2,9670,1,1,132.0,1,1,19,5,3,124.0,1,0,0,1,1,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,117.0,1,19,19,5,7,118.4,0,0,0,1,1,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,140.0,6,1,19,4,7,131.6,1,0,0,1,0,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,142.0,1,38,1,8,10,138.5,1,0,0,1,1,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9130,1,1,132.0,1,3,1,4,9,121.9,1,0,0,1,0,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,122.0,1,1,1,9,9,116.1,1,0,0,1,1,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,Dropout +1,7,1,8014,0,3,130.0,1,37,38,0,5,130.0,0,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,138.0,1,19,19,9,5,124.8,1,0,0,1,0,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,140.0,1,19,38,3,9,140.0,1,0,0,1,1,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +4,39,1,8014,0,1,138.0,1,19,19,90,90,127.0,0,0,0,0,0,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9500,1,19,133.1,1,1,3,2,2,100.0,0,0,1,1,1,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,117.0,1,3,1,3,5,110.7,1,0,0,1,1,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,120.0,1,19,19,5,5,113.0,1,0,0,1,0,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,160.0,1,37,37,7,7,133.0,1,0,0,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,137.0,1,1,1,4,5,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,19,37,9,7,123.9,1,0,0,1,0,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,38,38,9,5,130.0,0,0,1,0,1,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,137.0,1,19,37,9,7,130.8,0,0,1,1,0,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,38,37,4,6,150.0,1,0,0,1,0,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,115.0,1,34,38,0,5,108.4,1,0,0,1,0,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,140.0,1,3,38,141,151,135.3,0,0,0,1,1,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,148.0,1,19,19,7,7,130.9,0,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,127.0,1,1,1,4,3,126.3,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,2,9670,1,1,100.0,1,37,37,9,9,100.0,0,0,0,1,0,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,2,171,1,1,141.0,1,19,37,9,9,136.1,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,123.0,1,30,19,4,90,122.3,0,0,0,1,0,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,145.0,1,1,38,5,7,127.5,1,0,0,1,1,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,1,150.0,1,37,37,90,10,112.0,0,0,0,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,128.0,1,37,1,9,7,124.2,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,Dropout +1,43,1,9070,1,39,130.0,1,19,37,5,9,124.0,1,0,0,1,0,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,Graduate +1,17,1,9003,1,1,170.0,1,1,4,9,5,144.1,1,0,1,0,1,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9670,1,1,110.0,1,19,19,90,99,107.2,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9238,1,19,133.1,1,37,37,9,9,130.0,1,0,0,1,0,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9119,1,1,144.0,1,34,34,0,0,119.5,0,0,0,1,1,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,19,133.1,1,37,37,6,6,162.0,0,0,1,1,1,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,16,1,9085,1,1,138.0,1,37,37,9,9,123.0,1,0,0,1,0,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9500,1,1,133.1,1,19,19,5,6,121.4,0,0,1,1,0,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,138.0,1,1,1,4,7,132.1,1,0,0,1,0,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,Graduate +1,39,1,9119,1,1,133.1,1,37,37,9,9,101.6,0,0,0,1,1,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9500,1,1,126.0,1,1,19,131,181,120.1,1,0,0,1,0,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,38,9,9,142.0,1,0,0,1,0,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,Graduate +1,18,1,8014,0,1,138.0,1,19,1,9,5,134.5,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,19,9,9,150.0,0,0,0,1,1,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,126.0,1,38,37,9,9,123.6,1,0,0,1,0,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9254,1,19,133.1,1,19,19,3,1,101.5,0,0,1,0,1,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,2,9119,1,1,115.0,1,38,19,9,6,112.2,1,0,1,1,1,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,39,1,9003,1,1,120.0,1,37,37,9,9,125.7,0,0,1,0,0,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,Dropout +1,17,2,9773,1,1,115.0,1,1,1,5,5,119.6,1,0,0,1,0,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,19,9,4,140.0,0,0,0,1,0,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,125.0,1,37,19,90,90,137.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,120.0,1,3,38,3,7,124.2,1,0,0,1,1,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9147,1,1,146.0,1,5,1,1,5,144.6,0,0,0,1,1,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,116.0,1,1,1,3,4,113.6,1,0,0,1,0,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,Graduate +4,42,1,9147,1,1,133.1,1,37,38,7,3,123.0,1,0,0,1,1,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,118.9,1,38,37,5,9,118.9,1,0,0,1,0,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,123.0,1,12,1,9,9,119.2,1,0,0,1,0,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,2,140.0,1,38,37,7,8,140.0,0,0,0,1,0,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,110.0,1,37,37,90,90,108.4,1,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9119,1,1,146.0,1,1,37,7,7,132.4,1,0,0,1,1,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,19,133.1,1,19,3,9,2,140.0,1,0,1,1,1,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,2,9853,1,1,111.0,1,38,38,191,171,105.8,1,0,0,1,0,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,6,130.2,0,0,0,1,0,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,130.0,1,1,3,9,10,118.1,1,0,0,1,1,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,118.0,1,1,19,5,4,118.0,0,0,0,1,0,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,153.0,1,38,38,7,7,159.7,1,0,0,1,0,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,171,1,12,110.0,1,37,37,7,7,106.0,1,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,134.0,1,19,1,9,4,124.9,1,0,0,1,0,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,3,9254,1,1,121.0,1,19,19,9,9,125.9,1,0,0,1,0,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,160.0,1,19,19,4,9,154.4,0,0,0,1,0,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,3,140.0,1,19,19,9,7,152.4,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9130,1,1,130.0,1,19,1,191,144,110.0,0,0,0,1,1,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,142.0,1,38,37,9,5,127.3,1,0,0,1,0,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,37,37,9,9,130.0,0,0,1,1,0,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,124.0,1,37,19,9,4,121.2,0,0,0,1,1,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,120.0,1,19,19,9,3,113.9,1,0,0,1,0,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,114.0,1,19,38,5,3,112.6,1,0,0,1,0,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,Graduate +1,7,1,9991,0,40,120.0,1,1,19,4,9,120.0,0,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,128.0,1,19,38,9,9,118.2,0,0,0,1,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,4,9070,1,1,126.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,130.0,1,1,1,0,0,119.5,0,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,184.4,22,2,19,2,8,184.4,0,0,0,1,0,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,37,9,9,132.8,0,0,1,0,1,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9085,1,1,120.0,1,38,19,90,90,127.0,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,Graduate +1,17,4,9147,1,1,132.0,1,38,19,5,5,120.8,1,0,0,1,1,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,Dropout +1,10,1,9670,1,1,148.9,22,37,37,9,9,148.9,0,0,0,1,0,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,4,150.0,1,1,1,4,6,150.0,0,0,0,1,1,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,150.0,1,19,1,9,3,110.0,1,0,0,1,1,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,Graduate +1,15,1,9670,1,1,130.0,26,42,1,2,7,130.0,0,1,1,1,0,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,Graduate +2,7,1,8014,0,3,120.0,1,38,1,9,9,120.0,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,149.0,1,19,37,9,9,158.1,1,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,4,9147,1,1,124.0,1,37,37,9,9,117.4,0,0,0,1,0,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,142.0,1,34,1,5,10,136.1,1,0,0,0,1,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,1,1,8014,0,1,165.0,1,37,37,0,0,162.9,1,0,0,1,1,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,130.0,1,37,37,5,7,123.4,1,0,0,1,1,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,1,133.1,1,37,37,7,7,143.0,0,0,0,1,1,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,121.0,1,38,37,8,8,115.4,1,0,0,1,0,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9556,1,3,140.0,1,3,3,2,2,140.0,0,0,1,0,1,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,116.0,1,38,19,0,2,116.7,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,132.0,1,38,1,5,5,124.3,0,1,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,133.1,1,38,12,7,0,111.5,0,0,0,0,0,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,Dropout +1,53,1,9147,1,42,140.0,1,1,1,6,6,142.2,0,0,0,1,1,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,Graduate +2,44,1,9991,0,39,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9773,1,1,170.0,1,1,19,9,7,155.0,0,0,0,1,1,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,8014,0,19,133.1,1,37,37,4,8,112.5,0,0,0,1,0,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,120.0,1,1,1,5,8,112.0,1,0,0,1,0,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,123.0,1,1,1,3,3,113.6,1,0,0,1,0,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,Graduate +1,39,1,9085,1,1,133.1,1,1,19,9,9,162.3,1,0,0,1,0,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,116.0,1,37,1,9,8,115.7,1,0,1,0,0,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,160.0,1,9,19,4,3,151.3,0,0,0,1,0,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,19,149.0,1,34,34,0,0,126.3,0,0,0,1,0,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9238,1,39,140.0,41,1,1,4,6,137.5,0,0,1,1,0,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,130.0,1,37,37,9,9,129.0,1,0,0,1,0,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,19,38,7,7,118.7,0,0,0,1,1,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,128.0,0,0,0,1,0,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,Graduate +1,17,1,9070,1,1,135.0,1,19,37,5,9,145.9,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,128.0,1,1,19,9,7,118.2,0,0,0,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,128.0,1,19,38,9,9,127.0,0,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,140.0,1,37,12,9,9,150.0,0,0,1,1,1,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,Dropout +2,43,1,8014,0,1,160.0,1,37,39,9,4,140.9,0,0,0,1,0,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,133.0,1,38,19,8,7,127.3,1,0,0,1,0,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,Graduate +1,15,1,9670,1,1,160.0,1,37,12,9,9,149.5,1,0,0,0,1,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,152.0,101,2,1,9,1,168.5,1,0,0,1,1,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,Graduate +1,1,3,9085,1,1,147.0,1,19,19,9,1,135.6,1,0,0,1,0,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,2,8014,0,1,120.0,1,37,34,0,0,117.6,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,141.0,1,37,37,9,9,130.2,0,0,0,1,1,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,Graduate +1,16,2,9147,1,1,139.0,1,38,37,9,9,123.7,1,0,0,1,0,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,134.0,1,19,38,4,8,129.5,0,0,0,1,0,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,113.0,1,1,37,9,10,117.2,1,0,0,1,0,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,18,2,9556,1,1,126.0,1,3,3,2,2,115.5,0,0,0,1,1,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,1,134.0,1,37,38,4,7,110.0,1,0,0,1,0,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,171,1,1,132.0,1,1,1,1,4,132.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9003,1,1,130.0,1,19,19,9,1,140.0,0,0,0,1,0,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9773,1,1,132.0,1,38,19,9,9,125.0,1,0,0,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,140.0,1,37,37,9,6,132.8,0,0,0,1,1,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,130.0,1,37,19,9,5,140.2,1,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9070,1,1,118.0,1,43,3,123,123,110.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,19,100.0,1,37,37,5,5,111.0,1,0,0,1,0,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,3,9085,1,1,138.0,1,1,3,4,4,126.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,132.0,1,2,19,4,4,125.0,1,0,0,1,0,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,38,100.0,1,37,37,9,7,154.0,1,0,0,1,1,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,138.0,1,1,19,4,4,131.7,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,Graduate +2,39,2,9147,1,1,140.0,1,37,37,9,8,108.0,0,0,0,1,0,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,Enrolled +1,1,5,9147,1,1,134.0,1,3,2,2,2,134.7,0,0,0,1,1,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9130,1,1,120.0,1,2,3,3,2,120.0,1,0,0,0,1,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,Dropout +1,1,3,9085,1,1,140.0,1,10,19,90,90,135.8,1,0,0,1,0,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,142.0,1,37,38,5,1,129.4,0,0,0,1,0,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9670,1,1,120.0,1,1,19,5,5,117.2,1,0,0,1,0,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,136.0,1,1,19,5,7,136.4,0,0,0,1,0,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,120.0,1,37,37,5,5,124.6,0,0,0,1,0,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,Enrolled +1,39,1,9500,1,1,133.1,1,1,37,9,9,100.0,0,0,0,1,1,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,123.0,1,19,1,9,3,117.8,1,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,Graduate +5,39,1,9254,1,1,133.1,1,2,2,2,2,103.0,0,0,0,1,0,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,171,1,1,133.0,1,1,37,4,7,126.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,119.0,1,1,1,4,4,115.0,1,0,0,1,1,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,143.0,1,38,19,151,193,134.3,1,1,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,135.0,1,1,19,4,4,129.1,0,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,43,2,9670,1,1,130.0,1,19,1,4,4,127.6,1,0,0,1,1,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,126.0,1,37,37,5,1,126.0,0,0,0,0,1,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,42,1,9119,1,1,120.0,1,19,37,9,9,113.8,0,0,0,0,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9991,0,1,140.0,1,37,37,9,9,135.8,1,0,0,1,1,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,17,5,9085,1,1,118.0,1,38,38,9,9,112.4,1,0,0,1,0,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,3,9773,1,1,134.0,1,2,1,3,3,129.5,1,0,0,1,1,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,129.0,1,1,38,4,7,123.4,0,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,132.0,1,19,37,4,9,128.0,1,0,0,1,0,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,137.0,1,38,37,7,5,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,Graduate +1,17,5,9119,1,1,138.0,1,19,19,5,5,123.3,1,0,1,1,1,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,138.0,1,1,1,3,4,132.5,1,0,0,1,0,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,Graduate +1,16,2,9070,1,1,133.0,1,1,3,4,2,122.5,1,0,0,1,0,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,Enrolled +1,17,1,9130,1,1,137.0,1,38,19,5,7,130.0,1,0,0,1,0,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,Enrolled +1,17,1,9238,1,1,131.0,1,37,37,9,7,121.9,0,0,0,1,0,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,Graduate +2,1,1,9500,1,1,142.0,1,19,38,4,5,130.3,0,0,0,1,0,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,Graduate +2,39,1,9556,1,1,160.0,1,37,37,9,6,120.0,0,0,0,1,0,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,Dropout +1,51,1,9670,1,1,126.0,1,3,3,1,10,111.0,0,0,1,1,1,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,5,9853,1,1,141.0,1,37,19,9,5,133.0,1,0,0,1,0,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,Dropout +1,1,2,9670,1,1,124.0,1,19,1,9,4,117.7,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,133.0,1,19,19,9,5,120.1,1,0,0,1,0,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,Graduate +1,43,1,9147,1,1,133.1,1,4,19,2,1,128.2,0,0,0,1,0,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,Dropout +4,27,1,9070,1,2,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9003,1,1,150.0,1,2,4,4,1,150.0,0,0,0,1,1,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,19,133.1,1,19,37,7,5,155.5,1,0,1,0,1,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,1,9238,1,1,106.0,1,1,1,3,3,105.0,0,0,0,1,1,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,111.0,1,19,38,3,3,111.4,1,0,0,0,0,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,Dropout +1,43,1,9254,1,1,130.0,1,1,19,5,7,130.0,0,0,0,1,0,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,Dropout +1,17,1,8014,0,1,120.0,1,38,37,6,6,113.0,0,0,0,1,0,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,139.0,1,1,37,4,9,131.3,1,0,0,1,0,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,Graduate +1,43,3,9254,1,1,110.0,1,37,37,9,9,107.2,1,0,0,1,1,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,147.0,1,1,1,4,4,134.3,1,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,130.0,1,37,38,9,6,130.0,1,0,0,1,0,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,139.0,1,37,38,9,9,124.0,1,0,0,1,1,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,122.0,1,37,37,9,9,126.9,1,0,0,1,0,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,11,11,90,4,114.0,1,0,0,1,1,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9147,1,1,132.0,1,39,39,3,3,127.8,1,0,0,0,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,128.0,1,38,37,5,6,122.1,0,0,0,1,0,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9085,1,1,127.0,1,19,38,194,193,117.6,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9500,1,1,145.0,1,3,3,2,3,141.8,0,0,0,1,0,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,Graduate +1,53,1,9556,1,42,140.0,1,1,19,4,5,140.0,0,0,0,1,0,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,Graduate +1,18,1,9147,1,1,160.0,1,19,19,5,8,137.6,1,0,0,1,0,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,19,133.1,1,2,1,3,10,120.0,0,0,1,1,1,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,19,133.1,1,19,39,5,3,121.7,0,0,1,0,0,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,126.0,0,0,0,1,1,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,Graduate +1,1,3,171,1,1,140.0,1,37,37,9,9,124.3,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,136.0,1,38,37,9,9,126.9,1,0,0,1,0,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,136.0,1,19,1,9,9,129.0,1,0,0,1,0,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,144.0,1,38,38,7,7,136.0,1,0,0,1,0,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,154.0,1,38,38,9,9,156.5,1,1,0,1,0,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,131.0,1,19,19,9,9,134.9,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +4,43,1,8014,0,1,140.0,1,38,37,9,9,126.0,0,0,0,1,0,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,7,126.3,1,0,0,1,0,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,Graduate +1,44,1,8014,0,39,150.0,1,1,37,9,7,146.7,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,2,9119,1,1,140.0,1,19,19,9,9,125.7,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,12,100.0,1,1,1,4,4,100.0,0,0,0,1,0,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,Graduate +1,42,1,9500,1,1,111.0,1,1,3,9,10,128.2,1,0,0,1,1,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,Graduate +1,17,2,9773,1,1,132.0,1,19,19,9,6,120.1,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,131.0,1,4,4,2,1,120.5,0,0,0,1,0,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,44,1,9003,1,39,170.0,1,19,19,5,5,170.0,1,0,0,1,1,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,150.0,1,38,38,7,7,137.8,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,10,120.0,0,0,1,0,1,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9670,1,39,110.0,1,37,1,9,4,110.0,0,0,0,1,0,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,130.0,1,5,3,2,2,130.0,0,0,0,1,1,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9670,1,1,133.1,1,34,3,7,2,130.6,1,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,38,9,10,140.0,0,0,0,1,1,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,133.1,1,19,38,9,9,119.6,1,0,0,1,0,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,118.0,1,19,19,3,3,110.0,1,0,0,1,0,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,137.0,1,1,1,5,5,129.3,1,0,0,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,127.0,1,19,38,5,9,129.5,1,0,0,1,0,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,126.0,1,38,19,9,6,119.4,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,116.5,0,0,0,1,0,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,125.0,1,19,19,4,7,128.5,1,0,0,1,0,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,Enrolled +1,43,1,9773,1,1,133.1,22,34,34,90,90,130.0,0,0,1,1,0,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,125.0,1,1,1,5,5,128.5,0,0,0,1,1,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9500,1,1,133.1,1,19,37,9,9,120.0,0,0,0,1,0,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,Graduate +2,39,2,9147,1,1,133.1,1,37,37,5,7,110.0,0,0,0,1,1,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,6,9500,1,1,141.0,1,1,19,1,1,126.7,1,0,0,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,146.0,1,40,43,4,4,150.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,148.0,1,1,1,4,9,129.8,0,0,0,1,0,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,Enrolled +1,17,1,9853,1,1,133.0,1,38,38,9,9,127.4,0,0,1,1,0,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,43,1,9147,1,1,120.0,1,37,37,5,3,113.4,0,0,0,1,1,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,148.0,1,19,3,4,2,136.5,0,0,0,1,0,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,178.0,1,2,1,2,3,157.7,0,0,0,1,1,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +2,7,1,9254,1,3,130.0,1,1,3,4,3,130.0,0,0,0,1,0,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,33,1,40,120.0,1,38,37,5,6,120.0,1,0,1,0,1,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,Dropout +2,1,1,9147,1,1,151.0,1,38,37,9,8,132.1,1,0,0,1,0,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Dropout +1,43,2,9556,1,1,120.0,1,1,19,4,3,110.2,0,0,0,1,0,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,Graduate +2,1,4,9500,1,1,140.0,1,1,37,4,9,128.0,0,0,0,1,0,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,6,120.0,1,35,35,6,6,128.2,1,0,0,1,1,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,120.0,1,37,37,9,6,120.0,1,0,0,1,0,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,8,7,150.0,0,0,0,1,1,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,145.0,1,19,37,4,7,148.9,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,34,34,0,0,104.0,1,0,0,1,0,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9085,1,1,110.0,1,3,19,4,6,105.0,0,0,1,0,1,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Dropout +1,17,2,9254,1,1,108.0,1,37,37,9,7,108.0,1,0,0,1,0,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,Graduate +4,43,1,9238,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,0,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,136.0,1,19,37,173,183,118.4,1,0,0,1,0,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,18,1,9556,1,1,140.0,1,38,37,9,9,122.8,0,0,0,1,0,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,Graduate +1,39,1,9119,1,1,150.0,1,3,3,4,4,150.0,1,0,0,1,1,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,141.0,1,1,1,4,10,138.9,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,Graduate +1,18,4,9773,1,1,130.0,1,19,19,4,4,121.3,1,0,0,1,0,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,1,130.0,1,37,37,9,6,160.0,0,0,0,1,1,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,149.0,1,37,37,9,9,136.0,0,0,0,1,0,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,151.0,1,37,1,4,10,138.4,0,0,0,1,0,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9254,1,1,130.0,1,37,37,9,9,126.5,0,0,0,1,1,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,143.0,1,19,37,7,7,127.0,1,0,0,1,0,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,Graduate +2,57,1,9991,0,1,133.1,41,38,37,4,6,100.0,0,0,0,1,0,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,138.0,1,37,37,9,9,135.9,1,0,0,1,0,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,43,1,8014,0,1,145.7,22,37,37,9,9,145.7,1,0,0,1,0,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,Graduate +4,39,1,9773,1,19,133.1,1,37,37,9,1,117.5,0,0,0,1,0,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9238,1,1,118.0,1,1,19,4,10,112.4,1,0,0,1,0,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,8014,0,1,133.1,1,37,37,9,7,162.5,0,0,0,1,1,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,1,3,9254,1,1,115.0,1,1,1,3,3,117.5,1,0,0,1,0,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,133.0,1,37,38,9,9,130.2,1,0,0,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,152.0,1,2,22,4,3,146.1,1,0,0,1,0,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +2,39,1,9085,1,12,133.1,1,1,39,5,3,140.0,1,0,1,0,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9003,1,1,140.0,1,38,1,9,4,138.3,0,0,0,1,1,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,130.0,1,38,37,9,6,133.9,0,0,0,1,1,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,140.0,1,37,37,9,9,142.5,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,120.0,1,38,1,9,3,118.3,1,0,0,1,0,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,117.0,1,1,19,4,7,113.5,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,141.0,1,19,1,7,3,128.8,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9147,1,1,125.0,1,3,38,2,10,118.7,1,0,0,1,0,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,116.0,1,37,1,5,3,124.8,1,0,0,1,1,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,120.0,1,36,37,0,0,126.7,1,0,0,1,1,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,4,9853,1,1,140.0,1,19,38,4,1,128.5,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,1,3,10,130.0,0,0,0,1,1,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,136.0,1,3,37,2,8,121.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,154.0,1,37,37,9,9,149.5,1,0,0,1,0,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,138.0,1,19,38,5,8,133.5,0,0,0,1,0,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,128.0,1,1,37,4,3,117.9,1,0,0,1,0,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,Graduate +1,43,1,9130,1,1,150.0,1,3,3,3,4,150.0,1,0,0,1,0,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,110.0,1,19,38,3,5,117.4,1,0,0,1,0,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,135.0,1,37,38,9,6,122.1,1,0,0,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9003,1,1,140.0,1,37,37,9,6,104.8,0,0,0,1,0,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,143.0,1,37,37,9,7,131.8,1,0,0,1,0,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,142.0,1,1,1,3,3,133.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,141.0,1,1,19,5,10,127.0,0,0,0,1,0,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,Graduate +3,1,2,9085,1,1,135.0,1,19,1,4,4,129.4,1,0,0,1,0,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,39,1,9254,1,1,133.1,1,19,19,4,7,123.0,0,0,1,0,0,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9500,1,1,131.0,1,19,37,9,7,129.8,1,0,0,1,0,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,Graduate +1,39,1,9670,1,9,133.1,1,6,22,3,3,120.0,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,131.0,1,37,37,3,3,131.7,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,137.0,1,19,19,5,5,134.6,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,131.0,1,1,1,4,10,129.3,0,0,0,1,0,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,140.0,1,1,37,141,192,129.7,0,0,0,1,0,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,140.0,1,37,37,9,9,124.6,0,0,0,1,0,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,138.0,1,37,37,5,9,125.1,1,1,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Dropout +1,2,1,9147,1,1,150.0,1,37,37,9,9,122.0,1,0,0,1,0,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,135.0,1,3,1,4,4,136.1,1,0,0,1,1,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,Enrolled +1,39,1,9991,0,1,150.0,1,1,19,4,8,123.0,0,0,0,1,1,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,141.0,1,19,37,5,8,130.2,0,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,106.0,1,37,37,9,9,108.0,1,0,1,1,0,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,19,133.1,1,37,38,9,7,100.5,1,0,0,1,1,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,Enrolled +1,43,1,9254,1,1,142.0,1,38,38,9,9,125.9,0,0,0,1,0,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,150.0,1,1,37,9,7,130.2,0,0,0,1,0,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,Graduate +4,39,1,9670,1,1,140.0,1,2,1,3,9,170.0,0,0,1,0,1,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9773,1,1,119.0,1,38,19,9,9,118.3,0,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,117.0,1,34,34,0,0,109.3,0,0,0,1,0,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,120.0,1,34,34,99,99,111.6,0,0,1,1,1,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,139.0,1,19,19,9,7,110.3,0,0,1,1,1,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,3,19,9,9,113.2,0,0,0,1,0,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,Enrolled +1,43,1,9991,0,1,120.0,1,38,38,9,7,141.0,0,0,0,1,1,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,151.0,1,3,1,2,4,151.0,1,0,0,1,0,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,130.0,1,37,37,9,6,110.0,1,0,0,1,0,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9853,1,1,130.0,1,2,39,2,5,124.6,0,0,0,1,1,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,138.0,1,1,1,4,3,141.5,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,120.0,1,37,37,9,5,100.0,0,0,0,1,0,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9991,0,39,150.0,1,37,37,6,6,150.0,0,0,0,1,0,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9085,1,19,133.1,1,38,38,4,7,128.2,0,0,0,1,0,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.0,41,19,19,9,9,119.7,1,0,1,1,0,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9085,1,1,128.0,1,1,19,4,90,124.2,0,0,0,0,0,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,120.0,1,1,1,9,9,129.1,1,0,0,1,1,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9773,1,1,125.0,1,19,19,9,7,129.6,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,137.0,1,40,19,2,9,130.7,1,0,0,1,0,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,Dropout +1,51,1,9147,1,1,116.0,1,3,3,2,2,115.2,0,0,1,1,1,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,5,9853,1,1,132.0,1,12,12,4,4,123.3,1,0,0,1,0,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,Dropout +1,7,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,1,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,135.0,1,19,38,9,5,136.8,1,0,0,1,0,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,137.0,1,1,1,4,7,134.6,1,0,0,1,1,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,4,171,1,1,133.1,1,38,38,9,9,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,133.1,1,19,37,7,8,120.0,0,0,1,0,0,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,140.0,1,1,19,9,7,127.0,1,0,0,1,0,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,Graduate +1,18,1,9500,1,1,124.0,1,38,37,9,7,119.3,1,0,0,1,0,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,3,19,2,4,150.0,1,0,0,1,0,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,19,133.1,1,3,19,90,90,123.5,0,0,0,1,0,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9853,1,1,133.1,1,37,37,5,5,116.5,0,0,0,1,0,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,Dropout +1,18,6,9500,1,1,144.0,1,1,1,3,6,130.8,1,0,0,1,0,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9670,1,1,151.0,1,19,19,1,1,100.0,0,0,1,1,0,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,125.0,1,1,19,4,6,115.2,0,1,0,1,0,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,37,38,4,9,110.0,0,0,1,0,0,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,133.1,1,19,19,5,5,108.5,1,0,0,1,0,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,130.0,1,37,11,90,90,122.6,0,0,0,1,0,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,113.0,1,19,37,9,9,118.6,1,0,0,1,0,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,140.0,6,2,3,5,2,124.3,1,0,0,1,0,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,Enrolled +1,1,4,9119,1,1,111.0,1,37,37,9,5,107.5,1,0,0,1,1,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,143.0,1,19,38,9,9,133.4,1,0,0,1,0,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,Graduate +1,17,1,9773,1,1,141.0,1,2,3,2,2,133.7,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,151.0,41,3,3,2,5,161.9,1,0,0,1,0,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,43,1,33,1,1,143.0,1,37,1,9,10,121.2,1,0,0,1,1,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,0,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,141.0,1,1,19,8,7,128.8,1,0,0,1,0,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Enrolled +1,1,1,9238,1,1,115.0,1,19,38,7,7,108.7,0,0,0,1,0,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,114.0,1,1,1,4,0,108.8,1,0,0,1,0,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,2,9853,1,1,112.0,1,37,37,191,182,106.1,1,0,1,1,0,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,2,9085,1,1,157.0,1,3,38,4,6,142.3,0,0,0,1,0,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,Graduate +2,44,1,8014,0,39,160.0,1,37,19,9,10,155.9,0,0,0,1,0,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,Graduate +1,1,4,171,1,1,137.0,1,1,38,4,8,141.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,144.0,1,1,37,9,9,126.5,1,0,0,1,0,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,145.0,1,1,1,4,10,131.4,0,0,0,1,0,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,115.0,1,1,1,9,4,109.1,1,0,1,0,0,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,170.0,1,37,37,0,0,150.8,1,0,0,1,0,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,5,3,9070,1,1,157.0,1,3,1,9,6,138.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,Graduate +1,43,2,9238,1,1,129.0,1,34,30,0,5,118.9,1,0,0,1,1,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,5,9853,1,1,141.0,1,3,19,2,7,130.9,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Graduate +4,39,1,9991,0,1,133.1,1,37,37,9,9,130.4,0,0,0,1,0,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,130.0,1,19,38,9,9,126.9,0,0,1,1,0,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,136.0,1,19,1,4,3,125.2,1,0,0,1,0,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,37,9,9,140.2,0,0,0,1,1,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,132.0,1,37,38,9,5,120.8,0,0,0,1,0,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,150.0,1,19,37,6,6,150.0,0,0,1,1,0,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,Graduate +2,42,1,9991,0,1,130.0,1,3,2,2,2,130.0,0,0,0,1,1,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,Enrolled +4,39,1,8014,0,1,133.1,1,38,37,5,7,144.5,0,0,0,1,0,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,2,9773,1,1,150.0,41,1,37,9,7,130.8,0,0,0,1,0,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,Graduate +2,1,1,8014,0,1,151.0,1,37,37,9,9,152.4,0,0,0,1,0,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,Graduate +6,39,1,9500,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,Dropout +2,43,1,9670,1,1,100.0,1,34,34,0,0,128.2,0,0,0,1,1,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,148.0,1,1,19,3,3,131.7,1,0,0,1,0,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,142.0,1,19,19,7,7,142.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,127.0,1,1,38,4,7,125.6,0,0,1,1,0,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,146.0,1,38,38,9,7,134.1,1,0,0,1,1,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,115.0,1,1,1,4,4,109.1,1,0,0,1,0,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,Enrolled +1,1,2,9773,1,1,148.0,1,1,19,9,9,141.7,0,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,116.0,1,37,37,0,5,114.3,1,0,0,1,0,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,139.0,1,38,19,5,7,130.6,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,Graduate +1,1,6,9147,1,1,128.0,1,37,37,9,9,116.5,0,0,0,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9130,1,3,150.0,1,3,1,90,90,150.0,1,0,0,1,0,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9670,1,1,122.0,1,1,19,4,4,116.1,0,0,0,1,1,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,Enrolled +1,39,1,9119,1,1,100.0,1,37,37,9,8,160.0,0,0,1,0,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9254,1,1,128.0,1,19,1,7,9,121.7,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,143.0,1,37,38,7,7,133.8,1,0,0,1,0,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,107.0,1,38,38,7,7,103.5,1,0,0,1,0,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,Graduate +1,39,2,9147,1,1,143.0,1,19,5,4,1,100.0,1,0,0,1,1,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,140.0,0,0,1,0,0,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,160.0,1,1,1,5,4,160.0,1,1,0,0,1,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,Dropout +2,39,1,9500,1,19,133.1,1,38,38,2,10,120.0,0,0,0,1,0,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,2,9853,1,1,122.0,1,19,19,4,5,112.6,1,0,0,1,0,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,3,9500,1,1,137.0,1,19,37,7,7,126.7,1,0,0,1,0,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,Graduate +1,7,1,9070,1,40,120.0,1,1,19,3,9,120.0,1,0,0,1,0,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,157.0,1,38,3,5,2,141.4,0,0,0,1,0,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,Graduate +2,1,2,8014,0,1,110.0,1,37,1,9,10,108.7,1,0,0,1,0,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,129.0,1,19,37,7,6,120.0,1,0,0,1,0,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,108.0,1,19,1,4,3,111.9,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9070,1,12,110.0,1,37,38,5,10,130.0,0,0,1,0,1,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,122.0,1,1,1,193,101,126.2,0,0,0,1,0,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,4,4,3,3,143.6,0,0,1,1,1,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,Enrolled +1,7,1,9119,1,3,130.0,1,34,34,90,90,130.0,0,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,8014,0,39,120.0,1,19,37,7,6,121.8,1,0,0,1,0,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,142.0,1,37,38,9,9,137.5,1,0,0,1,1,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,138.0,1,3,19,2,4,131.0,1,0,0,1,1,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,Dropout +1,17,2,9853,1,1,125.0,1,1,19,5,5,119.4,1,0,0,1,0,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,137.0,1,1,1,5,4,131.1,1,0,0,1,0,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,133.0,1,38,38,9,9,128.1,1,0,0,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Dropout +4,39,1,9991,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,0,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,17,1,9130,1,1,138.0,1,2,19,2,6,126.3,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,Enrolled +1,17,4,9500,1,1,135.0,1,1,1,4,4,127.0,1,0,0,1,0,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,140.0,1,4,3,3,3,127.8,0,0,0,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,5,1,9147,1,1,126.0,1,19,38,5,6,117.3,1,0,0,1,0,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,Enrolled +1,39,1,9670,1,1,133.1,1,1,19,4,9,140.0,0,0,0,1,1,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,126.0,1,38,38,9,8,118.8,1,0,0,1,0,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,Graduate +2,42,1,9147,1,1,133.1,1,37,37,9,9,115.8,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,126.0,1,1,37,7,9,132.7,0,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,133.0,1,19,19,5,7,123.6,0,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,4,9556,1,1,135.0,1,38,37,3,7,129.0,1,0,0,1,0,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,110.0,1,37,37,9,9,107.6,1,0,0,1,1,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Enrolled +1,17,4,9147,1,1,135.0,1,19,1,0,4,128.7,1,0,0,1,1,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +2,1,1,8014,0,1,150.0,1,1,37,4,7,139.9,1,0,0,1,0,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,116.0,1,1,38,4,3,114.6,1,0,0,1,0,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,121.0,1,19,37,1,3,131.5,0,0,0,1,0,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,100.0,1,19,1,1,90,114.0,1,0,1,0,0,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,146.0,1,19,37,5,8,135.8,1,0,0,1,0,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9119,1,39,140.0,1,1,19,4,5,140.0,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9670,1,1,136.0,1,19,19,5,5,122.0,0,0,1,0,0,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9003,1,1,133.1,1,19,19,4,4,107.5,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9070,1,1,164.0,1,38,38,9,7,165.8,1,0,0,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,154.0,1,38,38,9,9,133.4,1,0,0,1,0,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,127.0,1,19,37,7,7,121.5,1,0,0,1,1,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,Enrolled +1,43,6,9238,1,1,129.0,1,34,34,0,0,125.2,0,0,0,1,0,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,125.0,1,19,1,4,5,122.6,1,1,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,136.0,1,38,19,7,7,121.7,1,0,0,1,0,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,131.0,1,38,1,7,4,128.3,1,0,0,1,0,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,Graduate +1,1,4,171,1,1,132.0,1,1,19,4,5,138.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9254,1,1,115.0,1,12,1,9,3,108.7,1,0,0,1,0,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,131.0,1,1,37,3,7,120.2,0,0,0,1,0,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,134.0,1,1,1,4,9,124.2,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,142.0,1,19,1,9,1,132.6,0,0,0,1,0,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,2,1,3,6,150.0,1,0,0,1,1,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,130.0,1,19,38,9,7,113.5,0,0,0,1,0,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,135.0,1,2,1,2,8,126.6,0,0,0,1,0,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,12,133.1,1,37,37,5,7,119.3,1,0,0,1,1,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9130,1,1,110.0,1,3,19,2,9,105.5,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9130,1,1,134.0,41,1,19,5,5,125.6,1,0,0,1,0,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,151.0,2,1,1,5,9,146.5,0,0,0,1,0,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,133.0,1,1,3,3,3,135.8,1,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,7,1,9070,1,3,140.0,1,37,2,9,3,140.0,0,0,0,0,0,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,147.0,1,37,19,9,5,133.7,1,0,0,1,0,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,Enrolled +1,51,1,9500,1,1,127.0,1,19,1,5,9,150.0,0,0,0,1,0,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,143.0,1,1,37,5,9,126.6,0,0,1,0,0,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,9,160.0,0,0,1,1,0,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,Graduate +4,39,1,8014,0,19,133.1,1,34,34,0,0,100.0,0,0,0,1,0,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +4,43,1,9853,1,1,133.1,100,19,22,90,90,100.0,0,0,0,1,0,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,2,120.0,1,37,37,9,8,120.0,0,0,0,1,0,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9130,1,40,129.0,1,3,3,2,2,155.3,1,0,0,1,0,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,150.0,1,38,37,9,9,150.0,1,0,0,1,1,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,160.0,1,1,37,3,3,160.0,1,0,1,0,0,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,Dropout +2,39,1,9003,1,1,133.1,1,1,19,4,4,120.0,0,0,1,0,1,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,115.0,1,19,38,9,9,108.0,0,0,0,1,0,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,134.0,1,1,19,4,5,126.0,0,0,0,1,0,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,135.0,1,38,38,5,8,133.3,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,5,1,9670,1,1,135.0,1,1,12,4,4,140.3,1,0,0,1,0,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,122.0,1,19,1,4,8,135.8,0,0,0,1,0,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,19,19,3,9,112.6,1,0,0,1,0,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,4,9773,1,1,147.0,1,1,1,4,5,139.7,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,140.0,1,19,19,4,5,140.0,1,0,0,1,0,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,130.0,1,12,12,9,9,126.1,0,0,0,1,1,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,2,9147,1,1,130.0,1,34,37,9,9,118.5,1,0,0,1,1,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,138.0,1,4,1,2,1,133.0,1,0,0,1,0,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,138.0,1,37,37,194,171,131.0,1,0,0,1,0,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,19,5,8,147.3,0,0,0,1,0,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,6,9500,1,1,149.0,1,1,1,4,9,133.0,1,0,0,1,0,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,Graduate +1,16,6,9773,1,1,136.0,1,38,14,0,0,129.7,1,0,0,1,0,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,130.0,1,1,34,9,9,124.8,1,0,0,1,0,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,111.0,1,1,1,3,3,112.4,1,0,0,1,1,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,121.0,1,1,19,4,7,135.4,1,0,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,Graduate +1,1,1,9556,1,1,135.0,1,37,38,7,9,125.8,0,0,0,1,0,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,136.0,1,37,19,5,8,129.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,4,9670,1,1,110.0,1,1,37,7,7,111.1,1,0,0,0,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,128.0,1,38,38,5,5,118.6,1,0,0,1,0,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,Graduate +2,39,1,9500,1,19,133.1,1,37,38,9,10,120.9,1,0,0,1,0,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,Dropout +1,5,3,9085,1,1,143.0,1,37,37,0,90,159.1,0,0,1,1,0,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Dropout +4,39,1,9238,1,1,120.0,1,37,37,9,9,125.5,1,0,0,1,0,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,126.0,1,3,1,2,5,116.9,1,1,0,1,0,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,16,1,9556,1,1,137.0,1,37,37,9,7,122.7,1,0,0,1,0,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,136.0,1,1,1,9,9,123.8,1,0,0,1,0,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +4,39,1,9130,1,1,133.1,1,3,1,5,5,110.0,1,0,0,1,0,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,Dropout +1,17,4,9085,1,1,138.0,1,19,36,90,7,134.9,1,0,0,1,0,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,130.0,1,1,4,4,2,131.4,0,0,0,1,1,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,Graduate +2,42,1,9853,1,1,133.1,1,37,37,4,7,100.0,0,0,0,1,0,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,115.0,1,1,1,9,9,134.3,1,0,0,1,1,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,108.0,1,1,38,5,8,105.9,0,0,0,1,0,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9991,0,1,120.0,1,19,37,5,5,128.2,0,0,0,0,1,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +5,7,1,9130,1,3,160.0,1,19,38,9,6,160.0,0,0,0,0,0,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,121.0,1,3,19,2,9,115.4,1,0,0,1,1,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..92db5db9a6143e84d4ca37f25e2fb4c176360620 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/staged/public/val.csv @@ -0,0 +1,443 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,17,1,9254,1,1,118.0,1,11,34,5,0,122.2,1,0,0,1,0,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,43,1,9238,1,1,120.0,1,1,38,4,3,118.3,0,0,0,1,0,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,108.0,1,3,1,3,4,109.1,1,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,9991,0,40,130.0,1,19,19,7,3,130.0,0,0,0,1,0,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,19,9,10,150.0,0,0,0,1,1,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9119,1,40,130.0,1,1,1,4,4,130.0,0,0,0,1,1,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,128.0,1,19,19,5,5,124.5,1,0,0,1,0,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,170.0,1,19,19,5,1,170.0,1,0,0,1,0,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,Enrolled +1,1,3,9500,1,1,113.0,1,3,1,134,135,107.8,1,0,0,1,0,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,Enrolled +1,1,2,9670,1,1,117.0,1,37,37,9,9,111.8,0,0,0,1,0,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,1,1,9,4,126.2,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,145.0,1,19,38,7,6,128.6,1,0,0,1,0,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9147,1,3,130.0,1,38,38,1,9,130.0,0,0,0,1,0,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,170.0,1,19,37,8,8,100.0,0,0,0,1,0,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9147,1,1,148.0,1,38,37,5,5,134.0,0,0,0,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,5,9085,1,1,118.0,1,1,38,4,7,122.2,1,0,0,1,0,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,133.1,1,38,38,191,192,118.0,0,0,1,1,0,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,Graduate +1,18,1,9853,1,1,132.0,1,37,37,9,5,126.1,0,0,0,1,0,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +6,39,1,8014,0,1,133.1,1,37,37,9,9,119.0,0,0,0,1,0,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,133.1,1,1,37,7,7,118.0,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,123.0,1,38,38,4,7,114.3,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9991,0,1,143.0,1,19,37,5,8,135.0,0,0,0,1,0,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,128.0,1,1,1,2,10,116.5,0,0,0,1,1,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,Dropout +2,39,1,9085,1,1,120.0,1,19,19,1,4,130.0,0,0,0,1,0,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,Dropout +2,39,1,171,1,19,100.0,1,37,37,9,9,139.0,0,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,3,9500,1,1,139.0,1,38,37,9,8,146.5,0,0,0,1,0,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,120.0,1,37,37,9,1,123.2,0,0,0,1,0,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,1,140.0,1,3,3,4,2,141.7,1,0,0,1,0,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,127.0,1,2,2,3,4,115.8,1,0,0,1,1,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,117.0,1,19,19,9,9,116.3,1,0,0,1,0,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,152.0,1,19,37,3,8,156.9,0,0,0,1,0,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,140.0,1,1,19,4,4,140.7,0,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,133.0,1,3,19,2,7,120.4,1,0,0,1,0,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,1,160.0,1,38,38,7,9,121.4,0,1,0,1,0,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,120.0,1,1,2,9,3,130.0,1,0,0,1,0,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,139.0,1,2,3,3,3,132.7,1,0,0,1,0,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,6,108.3,0,0,0,1,1,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,8014,0,1,107.0,1,19,11,0,0,103.5,1,0,0,1,0,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,113.0,1,38,38,191,175,110.2,1,0,1,1,0,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,1,19,1,5,100.0,1,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,39,140.0,1,38,19,9,5,110.0,0,0,0,1,0,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,Enrolled +1,18,2,9238,1,1,126.0,1,19,37,5,7,129.9,1,0,0,1,1,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,18,1,9254,1,1,137.0,1,19,19,4,5,126.9,0,0,0,1,1,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,121.0,1,37,37,9,9,122.4,0,0,0,1,0,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,51,1,9070,1,1,122.0,1,38,38,9,9,128.8,1,0,0,1,1,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,141.0,1,1,1,3,10,142.8,0,0,0,1,0,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,130.0,1,19,38,9,9,162.3,0,0,0,1,1,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,Dropout +1,18,1,9853,1,1,133.1,1,1,19,141,182,106.0,1,0,1,1,0,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,17,1,9147,1,1,120.0,1,19,19,3,3,113.4,0,0,0,1,0,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,147.0,1,37,19,7,7,134.4,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,1,120.0,1,1,3,144,123,120.0,0,0,0,1,1,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,17,4,9500,1,1,137.0,1,1,37,9,9,128.4,1,0,0,1,0,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,120.0,0,1,1,1,0,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9085,1,1,140.0,1,37,37,9,9,154.6,0,0,0,0,0,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,19,133.1,1,37,19,9,7,134.3,0,0,0,1,1,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,Dropout +1,39,1,9119,1,1,130.0,1,19,37,9,4,149.0,1,0,0,1,1,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,Enrolled +1,17,1,9254,1,1,115.0,1,1,19,3,3,109.4,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,126.0,1,37,3,5,2,116.9,0,0,0,1,1,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,128.0,1,1,1,2,2,130.8,1,0,0,1,0,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,127.0,1,19,19,4,6,120.7,0,0,1,0,0,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9238,1,1,110.0,1,14,14,90,90,112.5,1,0,0,1,0,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,19,5,5,130.8,1,0,0,1,0,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9130,1,1,150.0,1,1,1,4,10,110.0,0,0,1,1,1,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,5,9238,1,3,135.0,1,1,38,9,3,129.4,0,0,1,1,0,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,133.0,1,19,37,1,9,128.5,1,0,0,1,0,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,Graduate +1,39,2,9991,0,1,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9773,1,1,136.0,1,1,38,9,8,131.5,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,138.0,1,37,38,9,8,134.2,1,0,0,1,0,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,7,2,9500,1,3,140.0,1,37,38,9,9,138.0,0,0,0,1,1,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,Dropout +1,43,1,9003,1,1,120.0,1,1,1,4,10,134.4,0,0,0,1,1,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,140.0,1,19,19,9,9,124.3,1,0,0,1,0,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,Graduate +1,17,3,9254,1,1,127.0,1,12,38,5,7,116.9,1,0,1,1,0,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,1,9238,1,1,145.0,1,38,38,9,7,145.0,0,0,0,1,0,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,140.0,1,19,19,9,7,102.5,0,0,0,1,0,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,17,6,9500,1,1,131.0,1,1,19,7,7,126.5,1,0,0,1,0,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,34,34,0,0,123.3,1,0,0,1,0,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,120.0,1,37,3,9,3,168.2,0,0,0,1,1,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,5,9773,1,1,118.0,1,38,19,9,9,113.8,1,0,0,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,122.0,1,19,38,7,7,117.1,1,0,0,1,0,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,115.0,1,19,1,3,7,113.6,0,0,0,1,1,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,141.0,1,1,4,4,4,127.7,0,0,0,1,0,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,130.0,1,37,38,6,6,130.0,1,0,0,1,0,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,120.0,1,37,37,5,5,111.3,1,0,0,1,0,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,145.0,1,1,19,10,5,150.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,129.0,1,38,19,3,7,118.9,1,0,0,1,0,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,Enrolled +1,1,5,9085,1,1,121.0,1,38,37,9,8,114.0,1,0,0,0,0,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,17,1,9254,1,1,126.0,1,1,1,9,9,124.3,0,0,0,1,0,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,149.0,1,1,3,0,0,148.7,0,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9147,1,1,125.0,1,38,38,6,8,114.5,1,0,0,1,0,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,Graduate +1,16,3,9085,1,1,130.0,1,37,37,9,2,119.5,1,0,0,1,0,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,145.0,1,19,37,9,9,132.3,1,0,0,1,0,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,128.0,1,19,38,5,7,125.6,1,0,0,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9254,1,1,135.0,1,38,37,9,7,139.2,0,0,0,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,139.0,1,37,38,6,6,121.3,1,0,0,1,0,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9070,1,39,150.0,1,12,37,3,9,147.7,0,0,1,1,0,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,110.0,1,3,19,4,5,109.0,0,0,0,1,1,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,133.1,1,38,38,5,9,105.0,1,0,0,1,0,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,Graduate +2,51,1,9991,0,1,127.0,1,37,37,8,4,100.1,0,0,0,1,0,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,135.0,1,19,1,4,1,131.9,1,0,0,1,1,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +4,39,1,9556,1,1,160.0,1,19,3,9,2,130.0,0,0,0,1,0,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,Enrolled +1,17,5,9119,1,1,123.0,1,3,1,2,9,116.0,1,0,1,0,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9500,1,1,140.0,1,19,19,7,7,138.6,0,0,0,1,0,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,19,38,9,7,125.6,1,0,0,1,0,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,3,130.0,1,2,2,1,1,130.0,0,0,0,1,0,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,7,9,111.0,0,0,0,0,1,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,148.0,1,1,1,4,8,141.4,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9147,1,1,115.0,1,1,38,3,8,109.8,1,0,0,1,0,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +1,7,3,9130,1,3,130.0,1,19,37,90,5,130.0,0,0,1,0,0,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,5,9500,1,1,141.0,1,38,19,7,7,132.5,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,19,37,9,9,129.9,0,0,0,1,1,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,142.0,1,19,37,4,7,141.3,0,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,19,38,7,4,125.7,0,0,0,1,0,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,129.0,1,19,37,9,9,117.5,1,0,0,1,0,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,103.0,1,1,19,9,9,108.3,0,0,0,1,0,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9853,1,1,133.1,1,19,19,9,9,97.0,1,0,0,1,0,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9238,1,3,150.0,1,37,37,191,192,150.0,0,0,0,1,0,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9085,1,12,133.1,1,34,34,99,99,128.2,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9070,1,1,129.0,1,3,4,2,2,136.4,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Enrolled +1,39,2,9147,1,38,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,133.1,1,34,34,0,0,118.9,1,0,0,1,0,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,135.0,1,19,38,9,9,129.2,0,0,0,1,0,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,122.0,1,37,37,9,3,115.7,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,9853,1,1,120.0,1,1,19,4,7,111.3,0,0,0,1,0,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,141.0,1,38,19,9,10,125.6,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,4,9500,1,1,133.0,1,19,19,3,10,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,106.0,1,1,19,4,4,106.4,1,0,0,1,0,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,Enrolled +2,39,1,9147,1,1,133.1,1,37,37,9,9,140.0,0,0,0,0,0,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,51,1,9070,1,1,130.0,1,3,1,2,8,122.2,0,0,1,1,0,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,Graduate +1,17,6,9500,1,1,143.0,1,38,1,9,10,127.3,1,0,0,1,0,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,154.0,1,1,1,5,7,154.7,0,0,0,1,0,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,120.0,1,37,37,9,7,120.0,0,0,0,1,0,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,151.0,1,37,1,9,9,138.4,1,0,0,1,0,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Graduate +2,39,2,9003,1,19,133.1,1,38,19,4,1,110.0,0,0,0,0,1,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9119,1,1,129.0,1,12,1,4,10,124.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,120.0,1,37,37,4,9,117.1,1,0,0,1,0,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,133.1,1,3,1,4,9,105.0,1,0,0,1,1,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9147,1,1,120.0,1,38,38,9,8,118.3,0,0,0,1,1,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9147,1,1,147.0,1,19,1,9,7,139.3,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,140.0,1,19,19,5,5,131.3,0,0,0,1,1,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,133.0,1,38,19,9,8,128.8,1,0,0,1,1,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,Graduate +1,17,1,9254,1,1,127.0,1,1,1,4,8,126.7,1,0,0,0,1,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9147,1,1,131.0,1,1,19,4,5,120.2,1,0,0,1,0,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,143.0,1,38,38,5,5,133.9,0,0,0,1,0,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,Graduate +4,39,1,9147,1,1,140.0,1,37,37,9,9,142.8,0,0,0,1,0,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,138.0,1,19,1,5,5,128.0,1,0,0,1,0,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,Graduate +1,43,1,9500,1,1,150.0,1,37,37,9,9,130.8,1,0,0,1,0,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,160.0,1,19,38,9,9,152.0,0,0,0,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,42,1,9254,1,1,154.0,1,38,37,1,1,154.0,1,0,0,1,0,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,141.0,1,37,37,4,4,138.9,0,0,0,1,0,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,135.0,1,38,37,9,8,126.3,1,0,0,1,0,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,Graduate +1,17,2,9853,1,1,138.0,1,1,1,9,4,123.0,1,0,0,1,0,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +2,1,1,9085,1,1,139.0,1,19,19,192,144,127.1,0,0,0,1,1,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,Graduate +1,17,4,9070,1,1,116.0,1,38,37,9,9,109.0,0,0,0,1,0,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,38,38,6,3,140.0,0,0,0,1,0,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9254,1,1,120.0,1,19,19,4,4,125.5,0,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9991,0,1,120.0,1,37,37,9,8,122.5,1,0,0,1,0,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,136.0,1,1,37,4,5,130.8,0,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,116.0,1,38,19,8,10,110.8,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9853,1,1,146.0,1,19,38,9,3,145.3,1,0,0,1,0,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,150.0,1,37,37,9,7,150.0,0,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,124.0,1,1,19,5,4,124.4,0,0,0,1,0,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,37,38,9,9,148.5,0,0,0,1,1,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,9,9,127.0,1,0,0,1,1,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,Graduate +4,1,1,8014,0,1,133.1,1,39,19,4,10,143.0,1,0,0,1,0,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,133.1,1,1,19,3,5,115.0,0,0,0,0,1,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,Dropout +2,44,1,9003,1,39,160.0,1,37,38,9,4,160.0,0,0,0,1,0,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,Graduate +1,16,3,9070,1,1,152.0,1,1,38,4,8,156.9,1,0,0,1,0,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,9,9,126.3,0,0,0,1,0,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9773,1,1,131.0,1,1,38,9,5,132.4,1,0,1,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9556,1,1,140.0,1,37,37,9,8,105.0,1,0,0,1,0,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9070,1,1,128.0,1,19,19,3,3,129.8,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,7,9,125.5,1,0,0,1,0,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,140.0,1,38,37,7,7,143.0,0,0,0,1,0,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,139.0,1,19,38,4,9,146.7,1,0,0,1,0,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,129.0,1,1,37,9,9,118.2,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,142.0,1,34,34,99,99,131.9,0,0,0,1,0,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,139.0,1,1,19,9,3,130.3,1,0,0,1,0,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,38,5,5,152.4,0,0,0,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,19,19,4,6,147.6,1,0,0,1,0,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,Graduate +1,51,1,8014,0,2,110.0,1,19,38,9,10,110.0,0,0,0,1,1,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,Graduate +1,17,3,9119,1,1,135.0,1,1,19,141,193,121.7,1,0,0,1,1,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,1,4,9773,1,1,122.0,1,19,19,9,7,121.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9003,1,3,120.0,1,1,19,4,1,120.0,1,0,0,1,1,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,140.0,1,19,37,4,8,133.3,1,0,0,1,0,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,121.0,1,1,1,5,4,111.9,1,0,0,0,1,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,3,130.0,1,1,38,90,90,143.4,0,0,0,1,1,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,1,120.0,1,37,37,6,9,121.0,0,0,0,1,0,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,154.0,1,38,37,4,4,141.4,0,0,0,1,0,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,40,130.0,1,19,1,5,10,130.0,1,0,1,0,0,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,133.1,1,1,1,4,4,120.0,0,0,1,0,1,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,120.0,1,37,1,9,5,113.4,1,0,0,1,0,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,139.0,1,38,37,7,7,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,135.0,1,38,19,194,193,135.4,1,0,0,1,1,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,150.0,1,3,2,2,2,150.0,0,0,0,1,1,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +2,43,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,1,1,7,4,136.0,1,0,0,1,1,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,3,130.0,1,3,3,1,2,150.0,0,0,0,1,0,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,123.0,1,1,38,4,7,115.3,1,0,0,1,0,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,101.0,1,38,38,9,9,104.5,1,0,0,1,0,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,140.0,1,1,19,9,9,128.8,0,0,0,1,1,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,Graduate +1,39,2,9119,1,1,120.0,1,37,37,5,5,128.0,0,0,0,1,1,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,15,133.1,1,34,34,0,0,100.0,1,0,0,0,0,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,133.1,1,6,11,4,5,138.4,0,0,0,1,1,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,142.0,1,37,37,6,7,136.1,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,132.0,1,37,37,9,9,123.6,1,0,0,1,0,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,9,9,126.9,1,0,0,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,15,1,9238,1,1,150.0,26,3,37,2,8,132.5,1,0,0,0,0,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,142.0,1,12,12,9,4,132.6,1,0,0,1,0,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,4,9254,1,1,106.0,1,37,19,9,7,116.9,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,160.0,1,1,19,5,7,155.5,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,42,1,9500,1,1,157.0,1,3,3,3,3,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,131.0,1,3,19,1,4,118.8,0,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,Graduate +1,43,2,9773,1,1,120.0,1,34,34,0,0,103.6,1,0,0,1,0,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,125.0,1,34,37,9,9,129.2,1,0,1,0,0,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,4,9085,1,1,145.0,1,37,1,9,9,145.0,1,0,0,1,0,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,136.0,1,1,1,9,3,122.7,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,1,4,9147,1,1,120.0,1,19,38,5,5,122.8,1,0,0,1,1,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,2,9085,1,1,140.0,1,37,38,9,7,137.0,0,0,0,1,0,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,120.0,1,4,1,4,10,112.0,1,0,0,1,0,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,37,38,7,7,110.0,0,0,0,1,1,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,138.0,1,38,19,9,5,144.3,0,0,0,1,0,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,12,133.1,1,37,37,9,9,120.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9147,1,1,140.0,1,19,19,9,7,120.4,0,0,1,0,0,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,145.0,1,37,1,9,4,138.8,1,0,0,1,0,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,19,38,5,0,133.7,1,0,0,1,0,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9130,1,39,150.0,1,5,1,2,5,150.0,1,0,0,1,1,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,Enrolled +1,43,1,9991,0,1,140.0,1,37,38,9,8,135.5,0,0,1,0,0,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,Dropout +1,1,1,9254,1,1,123.0,1,38,19,9,4,117.8,0,0,0,1,1,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9500,1,1,125.0,1,1,12,3,6,115.2,1,0,0,1,0,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,Graduate +1,17,2,9254,1,1,129.0,1,12,37,9,9,122.0,1,0,0,1,0,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,2,9070,1,1,143.0,1,1,1,4,10,146.2,1,0,0,1,1,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,117.0,1,38,38,4,9,120.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,3,130.0,1,3,1,1,10,160.0,0,0,0,1,0,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,Dropout +1,17,1,9556,1,1,133.0,1,38,37,9,9,124.4,1,0,0,1,0,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,Graduate +1,1,1,9003,1,1,124.0,1,38,19,9,7,116.0,0,0,0,1,1,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,164.0,1,19,1,9,9,161.2,0,0,0,1,1,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,1,130.0,1,37,37,9,9,119.5,1,0,0,1,0,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,1,19,1,5,130.0,0,0,1,1,0,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,142.0,1,19,19,7,3,132.9,0,0,0,1,1,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,126.0,1,19,19,3,7,123.9,0,0,0,1,0,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9254,1,1,132.0,1,1,38,5,6,122.6,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,1,6,9238,1,1,125.0,1,38,1,7,4,118.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,1,140.0,1,3,3,2,2,110.0,0,0,0,1,1,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,138.0,1,1,40,4,3,149.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,43,1,171,1,1,144.0,1,19,19,9,4,121.6,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9773,1,1,129.0,1,37,37,9,7,117.1,1,0,0,1,0,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,Enrolled +1,1,6,9853,1,1,114.0,1,19,19,9,9,110.2,1,0,0,1,1,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Dropout +2,42,1,9147,1,1,100.0,1,37,37,9,9,100.0,1,0,0,1,0,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,135.0,1,38,19,9,5,126.3,0,0,0,1,1,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,156.0,1,3,3,2,2,147.7,1,0,0,1,0,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,Graduate +1,1,1,9147,1,1,139.0,1,38,1,5,5,127.1,1,0,0,1,1,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,127.0,1,1,37,4,9,128.1,0,0,0,1,1,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,5,9070,1,1,124.0,1,37,37,9,9,113.9,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,129.0,1,38,37,9,5,120.0,1,0,0,1,0,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,118.0,1,19,19,9,9,122.2,0,0,0,1,0,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,Graduate +2,39,1,9556,1,19,133.1,1,38,37,7,7,99.5,1,0,1,0,0,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,130.0,1,38,38,7,7,136.3,1,0,0,1,1,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,1,9853,1,1,112.0,1,2,19,3,9,106.1,1,0,0,1,0,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,43,1,9119,1,1,146.0,1,3,1,2,3,100.0,0,0,0,1,1,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,132.0,1,1,12,4,5,124.3,0,0,0,1,0,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,8014,0,1,136.0,1,37,37,5,8,132.5,0,0,1,1,0,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,37,37,90,90,130.0,1,0,0,1,1,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,135.0,1,1,1,4,4,122.8,0,0,0,1,0,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,Graduate +2,39,1,9254,1,1,130.0,1,37,37,9,9,125.0,0,0,0,1,0,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,133.1,1,19,19,9,8,132.0,1,0,0,1,0,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,Dropout +2,39,1,9070,1,1,160.0,1,3,1,2,5,126.5,0,0,0,1,0,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,15,1,9556,1,1,137.0,26,19,1,9,4,137.0,0,0,1,1,0,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9773,1,1,133.1,1,3,5,0,2,125.8,1,0,0,0,1,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,16,4,9238,1,1,135.0,1,37,37,9,9,121.0,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,2,9556,1,1,130.0,1,37,19,9,8,110.0,0,0,0,1,1,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,Enrolled +1,1,1,9853,1,1,123.0,1,1,38,9,6,121.6,1,0,0,1,0,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9119,1,1,126.0,1,38,19,5,5,130.2,0,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,5,9500,1,1,122.0,1,37,3,9,2,116.8,1,0,0,1,0,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,132.0,1,38,38,9,9,119.3,1,0,0,1,0,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,116.0,1,38,1,5,1,111.1,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9500,1,1,113.0,1,38,19,9,7,106.7,1,0,0,1,0,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,Enrolled +1,39,1,9670,1,1,120.0,1,34,34,0,0,106.0,1,0,0,0,1,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,145.0,1,19,37,5,9,130.5,1,0,0,1,0,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,Graduate +2,39,1,9238,1,19,133.1,1,37,37,4,4,98.5,0,0,0,1,0,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,152.0,1,41,19,3,5,137.8,0,0,0,1,0,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,Graduate +1,43,2,8014,0,3,130.0,1,34,34,0,0,130.0,0,0,0,1,1,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,152.0,1,38,37,9,9,139.1,0,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,18,1,9003,1,1,133.1,1,1,38,9,6,101.0,0,0,0,1,1,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,19,1,9,8,105.0,0,0,0,1,0,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,162.0,1,19,1,5,5,147.5,1,0,0,1,0,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,19,1,4,1,101.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9119,1,1,116.0,1,19,1,9,7,112.2,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,133.0,1,38,37,9,7,120.1,1,0,0,1,0,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,110.0,1,37,37,5,6,108.3,0,0,0,0,0,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,Dropout +1,17,2,9773,1,1,121.0,1,1,1,5,5,123.1,1,0,0,1,1,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,17,1,9556,1,1,133.0,1,1,38,4,9,119.0,0,0,0,1,0,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,Enrolled +1,17,1,9147,1,1,139.0,1,1,38,4,5,152.0,0,0,0,1,0,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,160.0,1,12,38,4,8,160.0,1,0,0,1,1,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,133.1,1,19,19,7,7,117.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,128.0,1,3,1,3,3,121.0,1,1,1,1,1,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,116.0,1,1,19,4,7,127.6,1,0,0,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,Dropout +1,18,3,9119,1,1,111.0,1,1,19,9,8,111.0,1,0,0,1,1,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,146.0,1,1,1,9,7,126.0,0,0,0,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,Enrolled +1,53,1,9085,1,42,140.0,1,1,1,5,5,143.3,1,0,0,0,0,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,Enrolled +1,1,1,9070,1,1,144.0,1,1,1,3,5,127.2,1,0,0,1,0,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,141.0,1,38,1,5,7,132.6,0,0,0,1,0,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,18,1,9085,1,1,153.0,1,37,37,9,9,138.0,1,0,0,1,0,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,137.0,1,1,3,5,2,133.9,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,150.0,1,19,38,9,5,143.0,0,0,0,1,0,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,1,9,6,126.1,1,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9070,1,1,133.0,1,4,1,4,4,132.0,1,1,0,1,0,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,140.0,1,1,19,9,9,140.0,1,0,0,1,0,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,133.1,1,3,1,2,4,128.2,1,0,0,1,0,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,1,133.1,1,37,36,90,7,128.2,0,0,0,1,1,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,114.0,1,19,38,9,7,135.9,0,0,0,1,1,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,Graduate +2,51,1,9500,1,1,130.0,1,37,37,5,5,120.0,0,0,0,1,1,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,Dropout +1,43,1,9670,1,39,110.0,1,19,3,7,10,110.0,0,0,0,1,0,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,43,1,9500,1,1,148.0,1,29,38,90,3,131.0,1,0,0,1,0,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,Graduate +1,18,1,9254,1,1,118.0,1,38,38,5,5,123.3,1,0,0,1,1,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9003,1,3,130.0,1,1,38,9,7,130.0,1,0,0,0,1,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,3,38,2,7,121.7,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9991,0,1,133.1,1,38,38,5,5,145.0,0,0,0,1,0,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,136.0,1,1,12,9,10,121.7,1,0,0,1,0,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,160.0,1,19,1,4,10,153.0,1,0,0,1,0,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,Graduate +2,53,1,9147,1,42,130.0,1,19,19,175,152,132.4,0,0,0,1,0,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9119,1,40,120.0,1,1,1,5,10,146.8,0,0,0,1,1,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,150.0,1,19,11,0,0,131.1,1,0,0,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,122.0,1,1,19,4,3,130.4,1,0,0,1,0,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,5,9119,1,1,132.0,1,38,19,5,3,119.1,0,0,0,1,0,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,137.0,1,1,3,4,3,124.6,0,0,0,1,0,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,126.0,1,1,38,4,7,124.3,1,0,0,1,0,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,Graduate +1,43,1,9238,1,39,120.0,1,2,1,1,2,118.6,0,0,0,1,1,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,34,34,0,0,119.1,1,0,0,1,0,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,127.0,1,1,1,4,4,120.4,1,0,0,1,0,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,135.0,1,1,38,5,5,122.4,0,0,1,1,0,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,Graduate +1,18,2,9773,1,1,109.0,1,1,1,4,4,109.0,1,0,0,0,0,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9500,1,1,132.0,1,19,3,9,5,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,Enrolled +1,43,1,33,1,19,133.1,1,38,38,4,4,140.0,0,0,1,1,1,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,Dropout +1,17,1,9773,1,1,120.0,1,37,37,5,5,125.3,0,0,0,1,0,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,1,19,5,10,141.1,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,145.0,1,19,38,4,4,132.1,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9254,1,1,122.0,1,19,19,5,5,118.2,0,0,0,1,0,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,Enrolled +1,17,1,8014,0,1,119.0,1,34,34,0,0,112.4,1,0,0,1,0,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,5,9500,1,1,125.0,1,1,1,3,8,115.6,1,0,0,1,0,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,Enrolled +2,39,1,9991,0,1,150.0,1,1,4,4,2,146.0,0,0,0,1,1,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,132.0,1,4,2,123,112,143.6,1,0,0,1,1,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9085,1,1,144.0,1,1,19,4,10,132.1,1,0,0,1,0,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,19,19,1,1,125.5,1,0,0,1,0,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,130.0,1,19,19,9,6,135.0,0,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,1,140.0,1,19,19,90,90,120.0,0,0,1,0,1,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,143.0,1,1,37,3,8,128.0,0,0,0,1,0,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,Graduate +1,1,3,9070,1,1,146.0,1,34,34,0,0,143.6,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9130,1,1,130.0,1,1,19,6,6,154.0,1,0,0,1,1,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,10,170.0,0,0,0,1,0,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,Enrolled +6,39,1,9991,0,12,130.0,1,37,37,90,90,119.0,1,0,0,0,1,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,53,1,9003,1,42,130.0,1,1,1,144,144,125.8,0,0,1,1,0,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,145.0,1,40,1,2,4,160.1,0,0,0,1,0,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9070,1,1,140.0,1,1,1,9,8,144.3,1,0,0,1,0,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,150.0,1,1,38,6,6,150.0,1,0,0,1,1,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,148.0,1,37,37,9,9,143.5,0,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,123.0,1,19,19,9,8,125.5,0,0,0,0,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,130.0,1,34,1,0,2,128.2,0,0,0,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,1,130.0,1,1,1,3,7,140.0,0,0,0,1,1,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,17,4,9556,1,1,112.0,1,1,1,4,10,107.1,1,0,0,1,0,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,101.0,1,1,1,3,4,102.4,0,0,0,1,0,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,133.0,1,37,37,9,7,121.8,0,0,0,1,1,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9500,1,1,133.1,1,3,1,5,5,148.8,0,0,0,1,0,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,157.0,1,19,38,5,3,149.3,0,0,0,1,0,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,163.0,1,3,4,2,5,175.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,148.0,1,1,3,4,1,163.4,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,Graduate +1,53,1,9085,1,42,130.0,1,38,38,9,9,128.8,0,0,0,1,0,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,Dropout +1,39,1,8014,0,1,120.0,1,1,1,4,4,150.5,0,0,0,1,0,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Graduate +1,51,1,9147,1,1,130.0,1,1,1,4,4,120.0,0,0,0,1,0,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,Enrolled +4,39,2,9556,1,19,133.1,1,19,19,4,6,123.0,0,0,0,1,0,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,Graduate +4,39,1,8014,0,19,140.0,1,37,37,9,3,131.0,0,0,0,1,0,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,131.0,1,19,38,9,9,129.7,1,0,0,1,0,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,Graduate +1,7,1,9238,1,40,130.0,1,37,37,5,5,130.0,0,0,0,1,1,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,Graduate +1,1,1,9130,1,1,133.0,1,3,1,2,4,126.0,0,0,0,1,1,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,100.0,1,1,1,4,4,120.0,0,0,0,1,1,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,138.7,1,1,12,4,3,111.3,0,0,0,1,1,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,135.0,1,38,38,5,7,121.0,0,0,0,1,0,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,1,19,5,9,111.1,0,0,0,1,1,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,43,1,9130,1,1,100.0,41,3,4,3,2,100.0,0,0,0,1,0,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9147,1,3,130.0,1,37,19,9,8,130.0,0,0,0,1,0,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,Graduate +1,1,4,9085,1,1,138.0,1,3,1,1,4,123.3,1,0,0,1,0,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,Graduate +1,17,1,9003,1,1,131.0,1,19,1,9,2,134.5,1,0,0,1,0,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,139.0,1,38,1,9,5,131.8,1,0,0,1,0,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,133.1,1,37,37,6,6,136.2,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,123.9,1,37,1,9,7,123.9,0,0,0,1,1,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,Dropout +1,1,1,9147,1,1,143.0,1,3,1,5,5,152.1,1,0,1,1,1,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,Dropout +1,1,6,9500,1,1,142.0,1,1,37,7,7,123.5,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,124.0,1,2,1,4,10,117.4,1,0,0,1,0,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,5,9119,1,1,130.0,1,19,1,4,5,118.1,1,0,1,0,1,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,Dropout +1,17,4,9147,1,1,121.0,1,38,37,6,7,113.0,1,0,0,1,0,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,150.0,1,19,19,4,10,100.0,0,0,0,1,0,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,151.0,1,37,37,9,9,138.0,1,0,0,1,0,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,138.0,1,38,38,9,9,126.8,0,0,0,1,1,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,Graduate +6,17,3,8014,0,1,115.0,1,19,1,5,90,115.0,0,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,127.0,1,1,19,3,3,120.2,1,0,0,1,0,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,Graduate +1,51,1,9991,0,1,134.0,1,1,1,5,3,120.6,1,0,0,1,1,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,121.0,1,19,1,7,9,117.9,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,131.0,1,1,38,4,8,121.9,1,0,0,1,0,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,19,133.1,1,38,38,7,8,170.0,0,0,0,1,1,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,100.0,1,37,37,9,5,170.0,0,0,0,1,1,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,95.0,1,37,37,5,8,95.0,0,0,0,0,1,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,148.0,1,37,37,9,9,134.7,0,0,0,1,0,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,Enrolled +1,1,2,9238,1,1,121.0,1,19,19,191,171,119.3,1,0,1,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9119,1,1,136.0,1,1,2,5,4,122.7,1,0,0,1,1,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,Dropout +1,17,4,9254,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,1,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,4,9,100.0,0,0,0,0,0,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9254,1,1,160.0,1,1,3,3,3,142.5,1,0,0,0,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,138.0,1,1,19,7,8,129.3,1,0,0,1,0,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,90,90,100.0,0,0,0,1,1,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,148.0,1,1,37,9,7,143.3,0,0,0,1,0,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,19,38,4,10,130.0,1,0,0,1,0,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,19,37,9,7,110.0,1,0,0,1,1,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9254,1,1,131.0,1,4,3,7,4,126.1,1,0,0,1,0,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,Graduate +1,43,2,9500,1,1,136.0,1,38,38,9,5,131.3,0,0,0,1,0,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,119.0,1,1,1,4,10,125.0,0,0,0,1,1,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,Enrolled +1,17,2,9238,1,1,132.0,1,38,1,7,7,133.1,1,0,0,1,0,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,126.0,1,12,1,5,10,120.2,0,0,0,1,0,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,Enrolled +1,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,161.0,22,37,37,9,9,137.9,0,0,1,0,0,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,Graduate +1,17,2,9147,1,1,133.0,1,19,1,9,3,120.1,1,0,0,1,0,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9085,1,1,127.0,1,3,3,2,8,138.8,1,0,0,1,0,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,121.0,1,1,1,1,1,115.1,1,0,0,1,0,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9130,1,1,130.0,1,3,19,2,9,115.9,0,0,0,1,0,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +2,7,1,9991,0,3,140.0,1,34,34,99,99,140.0,1,0,0,0,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,113.2,0,0,0,1,0,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9500,1,1,137.0,1,1,1,9,9,127.9,1,0,0,1,0,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,Dropout +1,1,5,9500,1,1,130.0,1,19,37,9,7,127.6,1,0,0,1,0,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,133.1,1,1,38,3,7,121.7,0,0,0,1,0,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,130.0,1,3,1,4,1,130.0,1,0,0,0,0,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,107.0,1,2,12,3,10,104.2,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,9,113.5,0,0,0,1,0,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,145.0,1,19,37,4,8,136.8,1,0,0,1,0,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,120.0,1,19,38,5,6,112.3,0,0,0,1,0,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,133.1,1,34,34,0,0,125.3,0,0,0,1,1,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,Dropout +1,1,6,9853,1,1,136.0,1,1,19,5,5,122.0,0,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,121.0,1,4,1,2,3,120.7,1,0,0,1,0,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,1,1,9147,1,1,133.1,1,34,34,0,0,131.8,0,0,0,1,0,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,4,100.0,0,0,0,1,0,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,127.0,1,19,38,3,3,121.1,1,0,0,1,1,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/train_20260422_060152.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/train_20260422_060152.log new file mode 100644 index 0000000000000000000000000000000000000000..0091f895ae680f0e7004976bbd63afaaa954b14a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/train_20260422_060152.log @@ -0,0 +1,57 @@ + +========== +== CUDA == +========== + +CUDA Version 12.8.1 + +Container image Copyright (c) 2016-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + +This container image and its contents are governed by the NVIDIA Deep Learning Container License. +By pulling and using the container, you accept the terms and conditions of this license: +https://developer.nvidia.com/ngc/nvidia-deep-learning-container-license + +A copy of this license is made available in this container at /NGC-DL-CONTAINER-LICENSE for your convenience. + +WARNING: The NVIDIA Driver was not detected. GPU functionality will not be available. + Use the NVIDIA Container Toolkit to start this container with GPU support; see + https://docs.nvidia.com/datacenter/cloud-native/ . + +/usr/local/lib/python3.10/dist-packages/pgmpy/estimators/__init__.py:4: FutureWarning: `pgmpy.estimators.StructureScore` is deprecated and will be removed in a future release. Use `pgmpy.structure_score` instead. + from .StructureScore import ( +ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. +synthcity 0.2.12 requires arfpy, which is not installed. +synthcity 0.2.12 requires be-great>=0.0.5; python_version >= "3.9", which is not installed. +synthcity 0.2.12 requires decaf-synthetic-data>=0.1.6, which is not installed. +synthcity 0.2.12 requires fastai<2.8, which is not installed. +synthcity 0.2.12 requires fastcore<1.8, which is not installed. +synthcity 0.2.12 requires fflows, which is not installed. +synthcity 0.2.12 requires geomloss, which is not installed. +synthcity 0.2.12 requires importlib-metadata, which is not installed. +synthcity 0.2.12 requires lifelines<0.30.0,>=0.29.0, which is not installed. +synthcity 0.2.12 requires monai, which is not installed. +synthcity 0.2.12 requires nflows>=0.14, which is not installed. +synthcity 0.2.12 requires opacus>=1.3, which is not installed. +synthcity 0.2.12 requires pycox, which is not installed. +synthcity 0.2.12 requires pykeops, which is not installed. +synthcity 0.2.12 requires redis, which is not installed. +synthcity 0.2.12 requires shap, which is not installed. +synthcity 0.2.12 requires tenacity, which is not installed. +synthcity 0.2.12 requires tsai; python_version > "3.7", which is not installed. +synthcity 0.2.12 requires xgbse>=0.3.1, which is not installed. +synthcity 0.2.12 requires networkx<3.0,>2.0, but you have networkx 3.4.2 which is incompatible. +synthcity 0.2.12 requires numpy<2.0,>=1.20, but you have numpy 2.2.6 which is incompatible. +synthcity 0.2.12 requires pgmpy<1.0, but you have pgmpy 1.1.0 which is incompatible. +synthcity 0.2.12 requires torch<2.3,>=2.1, but you have torch 2.8.0+cu128 which is incompatible. +synthcity 0.2.12 requires xgboost<3.0.0, but you have xgboost 3.2.0 which is incompatible. +WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. +[BayesNet] max_bins=5 (cols_in_df=37, rows=3539) +[BayesNet] Training on 3539 rows, 37 cols (encoded) +[BayesNet] Added isolated node to DAG: Marital status +[BayesNet] Added isolated node to DAG: Previous qualification +[BayesNet] Added isolated node to DAG: Nacionality +[BayesNet] Added isolated node to DAG: Curricular units 1st sem (credited) +[BayesNet] Added isolated node to DAG: Curricular units 1st sem (without evaluations) +[BayesNet] Added isolated node to DAG: Curricular units 2nd sem (credited) +[BayesNet] Added isolated node to DAG: Curricular units 2nd sem (without evaluations) +[BayesNet] Model saved -> /work/output-SpecializedModels/m5/bayesnet/bayesnet-m5-20260422_060152/bayesnet_model.pkl diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/_ctgan_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..f3001f89d81c27ebcc04083ddf9363aef41f5379 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/_ctgan_generate.py @@ -0,0 +1,18 @@ +import sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_rdt_inverse_fix import apply_ctgan_inverse_fix +apply_ctgan_inverse_fix() +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN +model = CTGAN.load("/work/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/models_300epochs/ctgan_300epochs.pt") +total = 3539 +chunk = min(50000, total) if total > 50000 else total +parts = [] +left = total +while left > 0: + take = min(chunk, left) + parts.append(model.sample(take)) + left -= take +sampled = pd.concat(parts, ignore_index=True) if len(parts) > 1 else parts[0] +sampled.to_csv("/work/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/ctgan-m5-3539-20260422_030436.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/ctgan-m5-3539-20260422_030436.csv") \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/ctgan_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..78428a5013d9449b0de0dcdca59aeab32ecc52d3 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/ctgan_metadata.json @@ -0,0 +1,152 @@ +{ + "columns": [ + { + "name": "Marital status", + "type": "continuous" + }, + { + "name": "Application mode", + "type": "continuous" + }, + { + "name": "Application order", + "type": "continuous" + }, + { + "name": "Course", + "type": "continuous" + }, + { + "name": "Daytime/evening attendance", + "type": "categorical" + }, + { + "name": "Previous qualification", + "type": "continuous" + }, + { + "name": "Previous qualification (grade)", + "type": "continuous" + }, + { + "name": "Nacionality", + "type": "continuous" + }, + { + "name": "Mother's qualification", + "type": "continuous" + }, + { + "name": "Father's qualification", + "type": "continuous" + }, + { + "name": "Mother's occupation", + "type": "continuous" + }, + { + "name": "Father's occupation", + "type": "continuous" + }, + { + "name": "Admission grade", + "type": "continuous" + }, + { + "name": "Displaced", + "type": "categorical" + }, + { + "name": "Educational special needs", + "type": "categorical" + }, + { + "name": "Debtor", + "type": "categorical" + }, + { + "name": "Tuition fees up to date", + "type": "categorical" + }, + { + "name": "Gender", + "type": "categorical" + }, + { + "name": "Scholarship holder", + "type": "categorical" + }, + { + "name": "Age at enrollment", + "type": "continuous" + }, + { + "name": "International", + "type": "categorical" + }, + { + "name": "Curricular units 1st sem (credited)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (enrolled)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (approved)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (grade)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (credited)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (approved)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (grade)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "type": "continuous" + }, + { + "name": "Unemployment rate", + "type": "continuous" + }, + { + "name": "Inflation rate", + "type": "continuous" + }, + { + "name": "GDP", + "type": "continuous" + }, + { + "name": "Target", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/gen_20260422_030436.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/gen_20260422_030436.log new file mode 100644 index 0000000000000000000000000000000000000000..2e1ae0349152bb0c901ad9767155cad117516616 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/gen_20260422_030436.log @@ -0,0 +1,2 @@ +[CTGAN] Generated 3539 rows in 1 chunks -> /work/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/ctgan-m5-3539-20260422_030436.csv +[W421 19:04:48.334151320 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0b661077f498b13a0aacdf82feb90bfe71ba8d80 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/models_300epochs/train_20260422_025942.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/models_300epochs/train_20260422_025942.log new file mode 100644 index 0000000000000000000000000000000000000000..9381e8099d0113e603d0168b0ffd1476985992c8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/models_300epochs/train_20260422_025942.log @@ -0,0 +1,40 @@ +/opt/conda/lib/python3.11/site-packages/torch/autograd/graph.py:841: UserWarning: Attempting to run cuBLAS, but there was no current CUDA context! Attempting to set the primary context... (Triggered internally at /pytorch/aten/src/ATen/cuda/CublasHandlePool.cpp:270.) + return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass +[W421 19:04:31.996222867 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.996287668 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.007849201 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.016296916 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.017369852 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.027052071 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.028075124 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.028194411 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.028813098 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.030346540 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.031835049 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.036039542 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.041542375 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.041983167 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:31.046260288 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.063371822 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.064638077 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.096243243 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.105100233 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.117679262 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.118791842 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.125250087 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.130352058 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.167109769 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.177691825 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.191646467 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.335316973 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.433529664 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.491274508 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.549498815 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.636422158 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.675240319 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.687014457 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.707226976 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.718332247 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.979283887 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:32.001707079 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:04:34.813979804 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6a2fd35d3815ae545e5da203f6bfb5a0bb658ae4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..bd5aeac6a8cafdd2b0ca79314b7c12a6a1a6e50f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "ctgan", + "run_id": "ctgan-m5-20260422_025941", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/ctgan-m5-3539-20260422_030436.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/models_300epochs/ctgan_300epochs.pt" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..94edade5d16f10cf5d8638b49d39146adca936f1 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..203e5543baa9ba530c66b1de8771003bc9cb1d7e --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/ctgan/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "ctgan", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a22a371258ab8267b23b3b79730d7e0f64866e52 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,0,1,126.0,1,38,37,5,5,118.7,0,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,19,37,9,7,111.4,0,0,0,1,1,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,140.0,1,1,1,4,3,140.0,1,0,0,1,0,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,Graduate +1,1,2,9085,1,1,141.0,1,1,38,9,8,128.9,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,128.0,1,19,19,7,8,120.0,1,0,0,1,0,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,123.0,1,4,37,2,9,113.9,0,0,0,1,0,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,1,140.0,41,1,1,9,9,100.0,0,0,1,0,0,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,133.1,1,1,3,9,9,116.0,0,0,0,1,1,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,143.0,1,3,3,2,10,141.3,0,0,1,0,0,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,106.0,1,37,38,191,163,102.2,1,0,1,1,1,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,Enrolled +1,16,2,9085,1,1,136.0,1,37,37,9,9,123.4,1,0,0,1,0,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,125.0,1,38,38,9,9,125.4,0,0,1,0,0,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,Dropout +4,39,1,9773,1,12,120.0,1,37,37,4,9,130.0,0,0,0,0,1,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,Dropout +1,44,1,9853,1,39,150.0,1,3,37,2,7,150.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,145.0,1,1,19,9,9,129.3,0,0,1,1,0,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Graduate +1,44,1,9119,1,39,180.0,1,1,1,9,8,180.0,0,0,0,1,1,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,Enrolled +1,1,4,9085,1,1,135.0,1,38,37,9,9,132.6,1,0,0,1,0,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,130.0,1,3,1,3,6,130.0,1,0,1,1,1,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,182.0,1,19,1,5,7,156.8,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,142.0,1,19,38,7,10,128.4,1,0,0,1,0,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,19,133.1,1,37,37,9,4,103.5,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,1,1,3,3,119.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,44,1,9991,0,39,140.0,1,37,19,9,8,140.0,0,0,0,1,0,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,133.0,1,38,38,9,9,128.8,1,0,0,1,0,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,3,3,132,132,110.6,0,0,0,1,0,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,Enrolled +1,42,1,9773,1,1,133.1,1,19,6,4,3,120.0,0,0,0,1,1,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9147,1,1,160.0,1,37,37,9,7,110.0,0,0,0,1,1,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,100.0,1,19,37,5,5,120.7,0,0,0,1,0,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,136.0,1,19,19,9,9,140.0,1,0,0,1,0,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,135.0,1,3,3,2,2,132.9,1,0,0,0,0,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,Dropout +1,53,1,9003,1,42,130.0,1,1,38,9,6,128.5,0,0,0,1,1,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,140.0,1,37,37,9,9,140.0,0,0,0,1,1,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,124.0,1,19,37,5,7,119.1,0,0,0,1,1,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9556,1,1,140.0,1,37,38,9,9,106.0,1,0,1,0,0,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,Dropout +1,42,4,9500,1,6,133.0,1,1,19,2,9,127.8,1,0,0,1,0,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,130.0,1,19,19,90,90,122.0,0,0,0,1,0,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,125.0,1,37,19,9,9,122.4,1,0,0,1,1,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,3,110.0,1,3,19,4,6,150.0,0,0,0,1,1,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,123.0,1,19,19,1,1,114.6,0,0,0,1,0,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,131.0,1,38,38,9,9,126.5,0,0,0,1,0,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,133.1,1,38,19,132,103,146.0,0,0,1,1,0,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,3,3,2,2,124.9,1,0,0,1,0,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,136.0,1,3,4,2,2,133.9,0,0,0,0,1,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,2,1,4,6,140.0,0,0,0,1,1,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,111.0,1,19,19,9,9,114.2,1,0,0,1,0,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,130.0,1,19,38,7,7,120.2,1,0,0,1,0,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,Graduate +1,7,1,9670,1,3,110.0,1,27,37,3,3,110.0,1,0,0,1,1,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,142.0,1,38,19,7,10,128.4,0,0,0,1,0,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9773,1,1,158.0,1,1,38,4,7,157.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,127.0,1,1,33,3,3,129.8,0,0,0,0,1,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9773,1,1,140.0,1,34,37,0,0,102.5,0,0,0,1,0,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,130.0,1,1,38,5,7,122.0,1,0,0,1,1,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,145.0,1,19,1,6,5,127.9,1,0,0,1,0,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,132.0,1,38,38,9,8,122.6,1,0,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,37,37,9,7,129.9,1,0,0,1,0,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,121.0,1,1,1,4,4,114.9,0,0,0,1,1,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,Graduate +1,7,1,8014,0,3,140.0,1,1,1,4,4,140.0,0,0,0,1,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,137.0,1,1,19,4,4,125.3,0,0,0,1,1,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,Enrolled +1,18,1,9670,1,1,133.0,1,1,1,9,9,121.5,1,0,0,1,0,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,42,1,9500,1,1,100.0,1,3,37,2,6,130.0,1,0,0,1,0,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,19,38,9,8,140.9,0,1,0,1,0,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,133.1,1,37,37,9,9,120.0,0,0,0,0,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,8014,0,1,128.0,1,38,38,0,0,122.1,0,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9119,1,1,130.0,1,1,3,4,2,123.0,0,0,0,1,1,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,121.0,1,19,38,7,9,123.8,0,0,0,1,0,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,9070,1,1,122.0,1,1,1,4,8,123.8,1,0,1,0,0,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,12,133.1,1,37,37,9,9,133.8,1,0,0,1,1,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,3,3,2,2,149.0,0,0,0,0,1,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,1,38,1,9,140.0,0,0,0,1,1,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,Dropout +1,1,5,9773,1,1,135.0,1,37,1,5,5,124.9,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,9119,1,1,132.0,1,37,37,9,6,119.4,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,9670,1,3,110.0,1,37,37,7,7,110.0,0,0,0,1,0,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,Graduate +1,17,5,9119,1,1,118.0,1,1,19,9,9,120.5,1,0,0,1,1,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,19,133.1,1,37,19,9,4,140.0,0,0,1,1,0,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,126.0,1,1,1,4,7,115.2,0,0,0,0,0,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9254,1,1,158.0,1,19,39,4,8,153.5,1,0,0,1,0,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,129.0,1,37,38,7,7,122.0,1,0,0,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,12,133.1,1,37,1,9,4,138.4,0,0,0,1,1,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,Dropout +1,7,1,9238,1,3,130.0,1,1,1,4,10,125.1,0,0,1,0,0,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,1,110.0,1,40,1,5,6,142.5,0,0,1,0,1,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,Dropout +1,16,1,9070,1,1,125.0,1,1,1,4,4,120.8,1,0,0,1,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,128.0,1,19,1,5,4,135.7,1,0,0,1,0,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,142.0,1,19,19,9,9,139.9,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,123.0,1,3,12,2,9,116.4,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,125.0,1,19,1,9,10,123.6,1,0,0,1,0,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,12,133.1,1,12,12,9,9,120.0,0,0,0,1,1,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,Dropout +1,17,5,9500,1,1,144.0,1,19,38,9,5,130.7,1,0,0,1,0,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,Graduate +1,17,6,9500,1,1,136.0,1,19,38,9,3,132.5,1,0,0,1,0,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,Graduate +2,43,1,9991,0,1,140.0,1,38,37,5,6,117.3,0,0,0,1,0,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,43,1,9500,1,1,140.0,1,37,37,9,10,105.7,1,0,0,1,0,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,19,133.1,1,1,5,4,3,100.0,0,0,0,1,0,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,3,9238,1,1,143.0,1,37,38,0,7,126.9,1,0,0,1,0,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,138.0,1,37,1,9,9,123.7,1,0,1,1,0,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,34,34,0,0,112.5,0,0,0,1,0,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,141.0,1,3,2,2,3,130.2,1,0,0,1,0,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,139.0,1,1,19,3,9,134.9,1,0,0,1,1,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,3,102.0,1,0,0,1,0,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,153.0,1,38,37,7,8,147.9,0,0,0,1,0,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,Graduate +1,17,3,9085,1,1,121.0,1,38,1,9,9,111.9,1,0,0,1,1,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,149.0,1,37,37,9,6,130.5,1,0,0,1,0,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,Graduate +1,17,5,9773,1,1,139.0,1,38,1,4,4,123.6,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9119,1,1,120.0,1,3,1,123,152,116.9,0,0,0,1,1,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9238,1,1,130.0,1,1,19,4,5,124.8,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,Graduate +1,53,1,9085,1,42,150.0,1,1,19,4,8,145.2,1,0,0,1,0,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,Graduate +4,39,1,9130,1,1,140.0,1,37,37,6,7,150.0,1,0,0,1,1,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,4,171,1,1,133.1,1,1,1,9,10,110.0,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,124.0,1,19,1,9,9,121.2,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9119,1,39,130.0,1,38,19,9,5,130.0,1,0,0,1,1,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,Enrolled +4,7,1,9500,1,3,140.0,1,37,38,9,7,140.0,0,0,0,1,1,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,37,5,9,118.4,0,0,0,1,1,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,33,1,1,130.0,1,19,19,9,9,117.7,0,0,0,1,0,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,Dropout +4,7,1,9500,1,40,130.0,1,19,19,4,6,130.0,0,0,0,0,0,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,144.0,13,3,3,6,6,137.6,1,0,0,1,0,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,132.0,1,38,37,9,9,122.9,0,0,0,0,1,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,Dropout +1,1,2,9773,1,1,124.0,1,3,3,3,4,114.6,1,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,100.0,1,38,38,9,10,100.0,0,0,0,1,0,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,Graduate +1,18,2,9853,1,1,120.0,1,19,37,9,4,113.7,1,0,1,0,0,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9500,1,1,136.0,1,3,3,2,2,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,Graduate +1,39,1,9130,1,1,133.1,1,3,34,3,0,120.0,0,0,1,0,1,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,140.0,1,1,19,3,3,140.0,1,0,0,1,0,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9085,1,1,128.0,1,38,37,9,9,116.5,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,132.0,1,6,6,0,4,119.1,1,0,1,1,0,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,Dropout +1,43,1,9500,1,6,134.0,1,1,37,9,9,120.4,1,0,0,1,0,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,34,34,0,0,100.0,0,0,0,1,0,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,122.0,1,3,1,4,7,116.1,1,0,0,1,0,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,120.0,1,37,37,9,9,117.0,1,0,0,1,0,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,5,9254,1,1,126.0,1,19,19,4,7,116.6,1,0,0,1,0,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,4,160.0,1,3,3,2,1,125.0,0,0,0,1,1,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,130.0,1,37,37,0,0,117.8,1,0,0,1,0,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,169.0,1,19,37,9,7,176.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9500,1,1,137.0,1,3,38,2,4,121.0,0,0,0,1,0,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,132.0,1,19,1,9,5,123.4,0,0,0,1,0,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,3,105.0,1,37,37,7,8,129.7,1,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9254,1,1,119.0,1,19,19,9,9,118.7,1,0,0,1,1,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,120.0,1,37,37,9,6,117.0,0,0,0,1,1,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,6,130.0,0,0,0,1,1,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,143.0,1,19,37,9,9,126.2,1,0,0,1,0,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,39,150.0,1,19,19,9,9,150.3,0,0,0,1,1,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9130,1,1,143.0,1,3,3,2,2,131.8,1,0,1,0,0,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,Enrolled +1,44,1,9238,1,39,140.0,1,19,19,8,8,144.3,1,0,0,1,0,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,131.0,1,19,19,4,4,122.0,1,0,0,1,0,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,Enrolled +1,17,2,9500,1,1,127.0,1,3,3,1,10,118.8,1,0,0,1,1,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,146.0,1,37,38,9,7,128.5,0,0,1,1,0,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,3,140.0,1,39,39,9,4,140.0,0,0,0,1,1,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,123.0,1,38,19,4,90,127.2,0,0,1,0,1,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,5,128.2,0,0,1,0,1,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,126.0,1,1,1,9,9,127.4,1,0,0,1,0,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,37,37,9,9,150.0,0,0,0,1,0,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,130.0,1,38,19,9,6,120.0,1,0,0,1,1,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,103.0,1,19,37,7,9,104.1,0,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,145.0,1,3,19,1,5,130.0,1,0,0,1,0,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,123.0,1,1,38,9,9,116.7,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,5,1,120.0,1,0,0,1,0,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,141.0,1,19,1,90,90,128.0,0,0,0,1,1,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,124.0,1,3,3,2,2,119.1,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,4,9853,1,1,116.0,1,3,38,3,8,110.4,1,0,0,1,0,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,119.0,1,38,19,9,9,115.2,0,0,0,1,1,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,37,37,7,7,113.9,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +2,43,1,9147,1,2,120.0,1,37,37,9,9,122.8,0,0,1,0,0,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,6,122.0,1,19,19,9,9,126.2,1,0,0,1,0,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,122.0,1,1,1,2,5,113.3,1,0,0,1,0,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,142.0,1,1,1,9,9,127.7,1,0,0,1,1,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,116.0,1,1,1,3,3,120.9,0,0,0,1,1,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,128.0,1,1,19,4,7,125.6,1,0,0,1,1,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,Graduate +1,7,1,9991,0,40,130.0,1,1,3,4,2,130.0,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,1,19,9,7,120.0,0,0,0,1,1,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,137.0,1,38,37,9,9,122.3,0,0,0,1,1,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,122.0,1,41,1,4,3,119.6,1,0,0,1,0,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,157.0,1,38,37,9,5,137.8,0,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9130,1,1,132.0,1,19,38,9,9,130.4,1,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Graduate +4,43,1,8014,0,12,133.1,1,34,34,0,0,106.0,1,0,0,1,0,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9130,1,1,127.0,1,3,1,2,1,116.5,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,8014,0,1,125.0,1,37,37,5,6,122.2,1,0,1,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9556,1,1,128.0,1,38,38,7,8,123.5,1,0,0,1,0,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,Enrolled +1,43,1,9130,1,1,156.0,1,19,1,9,4,156.0,0,0,1,0,1,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,Dropout +1,7,1,9130,1,3,140.0,1,19,38,9,9,140.0,1,0,0,1,0,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,8014,0,1,123.0,1,34,37,9,90,121.3,1,0,0,1,0,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,19,133.1,1,19,37,7,90,104.0,0,0,0,1,0,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,18,4,9254,1,1,106.0,1,19,37,7,7,106.0,1,0,0,1,1,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,119.0,1,37,37,4,6,113.2,0,0,1,1,0,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,19,19,9,9,100.0,0,0,0,1,0,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,145.0,1,3,1,4,3,149.9,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,166.0,1,19,37,4,8,146.4,0,0,0,1,1,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,145.0,1,38,37,5,5,142.2,0,0,0,1,0,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,156.0,1,19,38,9,1,153.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9853,1,1,117.0,1,19,38,4,0,113.5,1,0,0,1,0,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,138.0,1,37,19,9,9,127.8,1,0,0,1,0,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,40,130.0,1,1,1,4,4,190.0,1,0,0,1,0,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,Graduate +1,17,5,9070,1,1,131.0,1,37,37,9,9,126.1,1,0,0,0,0,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.1,1,19,37,9,9,95.0,1,0,1,0,0,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,143.0,1,1,38,8,8,136.7,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Dropout +1,42,1,8014,0,1,120.0,1,37,38,90,7,120.0,1,0,0,1,0,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,121.0,1,19,19,5,8,117.5,1,0,0,1,0,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,160.0,1,3,1,6,6,116.3,1,0,0,1,0,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,134.0,1,1,38,4,5,122.8,0,0,0,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,7,1,8014,0,3,120.0,1,19,37,5,3,121.3,0,0,0,1,0,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,134.0,1,38,19,9,4,128.4,1,0,0,1,0,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,130.0,1,19,1,7,4,117.8,1,0,0,1,1,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9130,1,1,132.0,1,1,1,3,3,143.9,1,0,0,1,1,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,130.0,1,19,1,9,4,101.3,1,0,0,1,1,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,135.0,1,37,19,5,10,121.0,0,0,1,1,0,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9991,0,39,120.0,1,37,37,7,7,120.0,1,0,0,1,0,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,133.1,1,3,3,2,3,135.0,0,0,0,1,0,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,110.0,1,19,19,9,7,105.8,1,0,0,1,1,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,160.0,1,1,38,4,10,144.3,1,0,0,1,0,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +4,39,1,9254,1,1,120.0,1,37,37,9,8,95.0,0,0,0,1,0,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,137.0,1,19,19,7,7,120.8,1,0,0,1,0,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,144.0,1,19,38,4,8,141.3,1,0,0,1,0,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,148.0,1,19,1,3,9,140.0,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,128.0,1,38,38,7,7,131.5,0,0,0,1,0,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,128.0,1,38,19,191,175,118.6,1,0,0,1,0,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,122.0,1,3,38,123,171,116.1,1,0,1,1,1,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9773,1,1,128.0,1,38,38,6,3,116.5,0,0,0,1,1,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,97.0,1,1,19,2,7,98.1,1,0,0,1,0,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,53,1,9991,0,1,140.0,1,38,38,191,193,135.0,0,0,1,1,0,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,Enrolled +1,1,2,9773,1,1,122.0,1,37,37,9,9,130.8,1,0,0,1,0,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,117.9,0,0,0,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9991,0,1,100.0,1,37,19,9,4,130.0,0,0,0,1,1,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,Dropout +1,17,6,9670,1,1,125.0,1,38,1,9,7,125.0,1,0,0,1,1,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,Graduate +2,7,1,9070,1,43,140.0,1,37,1,9,7,140.0,0,0,0,1,0,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,Graduate +1,7,1,9254,1,3,110.0,1,19,19,3,3,110.0,0,0,0,1,1,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9500,1,1,135.0,1,19,1,5,4,127.3,1,0,0,1,0,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,Graduate +1,17,4,9238,1,1,129.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,8,9,144.9,1,0,1,0,0,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9500,1,1,136.0,1,1,1,4,4,123.8,0,0,0,1,0,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,Graduate +4,43,1,9991,0,1,140.0,1,37,37,5,5,149.8,0,0,0,1,1,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,150.0,1,38,19,9,9,137.8,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +5,39,1,9147,1,1,180.0,1,1,1,4,8,140.5,0,0,1,0,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,131.0,1,19,19,3,7,127.9,1,0,0,1,0,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,110.0,1,1,1,4,4,99.0,0,0,0,1,1,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,Enrolled +1,39,1,9070,1,1,139.3,1,38,38,5,5,117.5,0,0,0,1,1,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9130,1,1,147.0,1,4,1,2,10,141.8,1,0,0,1,0,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,Graduate +2,44,1,8014,0,39,150.0,1,1,1,5,5,154.0,0,0,0,1,1,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,133.1,1,1,1,4,5,131.0,1,0,0,1,0,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,132.0,1,1,38,9,7,127.1,1,0,0,1,0,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,4,9147,1,1,125.0,1,19,19,5,5,118.0,1,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,108.0,1,19,1,9,3,107.8,1,0,0,1,0,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,143.0,1,37,37,9,8,130.6,1,0,0,1,0,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,126.0,1,37,1,7,7,118.7,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9238,1,1,140.0,1,1,44,4,2,124.6,1,0,1,0,1,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,112.0,1,9,22,4,3,106.1,0,0,0,1,0,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,130.0,1,37,37,191,183,163.7,0,0,0,1,0,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,Enrolled +4,39,1,9500,1,19,133.1,1,37,37,6,6,117.8,0,0,1,0,0,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,Dropout +1,18,2,9853,1,1,120.0,1,1,1,9,0,115.8,0,0,0,1,0,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,118.0,1,38,19,9,3,111.0,1,0,0,1,0,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,16,1,171,1,1,150.0,1,37,37,9,9,134.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,133.1,6,37,37,9,6,100.0,0,0,0,1,0,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,137.0,1,1,37,5,9,131.4,1,0,0,1,1,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Dropout +2,44,1,9991,0,39,130.0,1,1,37,4,9,130.0,0,0,0,0,0,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9238,1,1,136.0,1,19,19,4,7,121.7,1,0,0,1,0,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,133.1,1,1,38,9,7,110.5,0,0,0,1,0,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,Graduate +1,39,1,9556,1,19,100.0,1,37,38,9,9,120.0,0,0,0,1,0,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,142.0,1,1,38,3,5,146.9,1,0,0,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,127.0,1,19,19,7,8,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,130.0,1,1,38,7,8,135.6,1,0,0,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,137.0,1,19,38,9,3,125.0,1,0,0,1,0,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,135.0,1,37,37,7,7,124.0,1,0,0,1,0,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,Enrolled +2,39,1,9556,1,1,100.0,6,38,38,9,9,130.0,0,0,0,1,0,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,Graduate +1,42,1,9003,1,39,120.0,1,3,1,2,6,128.2,1,0,0,1,1,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,Enrolled +1,1,3,9773,1,1,121.0,1,19,19,3,3,116.1,0,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,136.0,1,1,19,4,9,131.1,1,0,0,1,0,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,141.0,1,3,19,2,10,126.8,1,0,0,1,1,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9773,1,1,136.0,1,38,38,9,9,132.9,1,0,0,1,1,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,133.1,1,1,1,90,1,120.0,1,0,1,0,1,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,Dropout +1,17,1,8014,0,1,132.0,1,37,19,5,5,121.2,0,0,0,1,0,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,2,9500,1,6,119.1,1,1,19,4,10,119.1,0,0,0,1,1,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,153.0,1,1,19,9,4,139.7,1,0,0,1,0,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,150.0,1,1,1,3,3,143.4,0,0,0,0,1,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Enrolled +1,1,4,9500,1,1,130.0,1,19,19,9,7,119.9,1,0,0,1,0,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,6,140.0,0,0,0,1,1,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,115.0,1,38,37,5,5,115.0,0,0,0,1,0,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,150.0,1,19,37,5,4,142.7,1,0,0,1,0,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,133.1,1,34,5,0,1,118.5,1,0,0,1,0,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9130,1,1,125.0,1,3,3,2,2,132.4,0,0,0,1,1,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,116.0,1,37,37,9,9,110.8,0,0,0,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,Enrolled +1,43,1,9070,1,1,115.0,1,12,12,1,10,115.0,0,0,1,1,1,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,125.0,1,37,37,9,9,118.8,0,0,0,1,1,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,130.0,1,3,1,2,5,133.8,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9500,1,1,141.0,1,12,1,5,5,133.0,1,0,0,1,0,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,141.0,1,38,38,7,10,139.8,1,0,0,1,0,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,Graduate +1,51,1,9147,1,19,133.1,1,19,19,9,5,112.1,0,0,1,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,132.0,1,19,2,9,3,126.0,1,0,0,1,0,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,131.0,1,2,38,4,5,132.3,1,0,0,1,0,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,124.0,1,1,19,9,8,116.7,1,0,0,1,0,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,180.0,103,5,3,1,1,183.5,1,0,0,1,0,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,10,1,9773,1,1,151.0,22,38,37,0,5,151.0,1,0,0,1,0,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,135.0,1,19,19,9,10,133.4,1,0,0,1,0,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,135.0,1,3,3,2,2,137.1,1,0,0,1,0,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.1,1,38,38,5,10,101.0,0,0,0,1,1,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,40,130.0,1,3,2,3,2,160.0,1,0,0,1,0,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,18,1,9773,1,1,124.0,1,38,37,9,8,126.8,0,0,0,1,1,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,140.0,1,19,37,9,9,125.5,1,0,0,1,0,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,1,133.1,1,37,38,9,8,118.9,0,0,0,1,0,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9991,0,1,160.0,1,34,34,0,0,161.8,1,0,1,1,1,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,140.0,1,1,38,4,7,100.0,0,0,0,1,0,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Graduate +1,44,1,9070,1,39,120.0,1,2,19,3,8,120.0,0,0,0,1,1,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,124.0,1,38,19,3,10,128.6,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,Enrolled +1,44,1,9085,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,0,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,145.0,1,1,19,4,3,133.5,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,Graduate +4,39,1,9085,1,1,110.0,1,37,37,90,90,110.0,0,0,0,0,0,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,134.0,1,19,37,4,7,133.5,1,0,0,1,0,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,132.0,1,1,19,4,3,126.4,1,0,0,1,0,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,19,133.1,1,4,1,2,4,120.0,0,0,0,1,1,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,151.0,1,40,4,2,2,144.5,1,0,0,1,0,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +2,39,1,9147,1,19,133.1,1,37,19,9,3,128.0,0,0,0,1,1,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,Dropout +1,39,2,8014,0,1,141.0,1,37,37,9,9,150.5,0,0,0,1,0,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,122.0,1,19,19,4,6,119.9,0,0,0,1,0,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,9,133.1,1,34,34,0,0,110.0,1,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,1,9500,1,1,128.0,1,19,1,9,4,125.8,0,0,0,1,0,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,3,9773,1,1,133.1,1,38,38,5,5,131.3,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,16,6,9147,1,1,128.0,1,37,37,9,9,116.5,1,0,0,1,0,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,1,147.0,1,34,34,90,90,111.7,1,0,0,1,0,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,1,19,6,8,122.0,0,0,0,1,0,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,Graduate +2,39,2,9254,1,19,133.1,1,19,19,9,5,123.5,0,0,0,1,1,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,114.0,1,37,37,9,9,130.0,0,0,0,1,1,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,Graduate +2,39,1,8014,0,1,100.0,1,37,38,9,9,141.5,0,0,0,1,0,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9556,1,1,118.0,1,38,38,5,5,117.8,1,0,0,1,0,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9773,1,19,133.1,1,19,19,171,163,104.0,0,0,1,0,0,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,39,110.0,1,19,37,9,8,127.5,0,0,1,0,0,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,1,120.0,1,37,38,9,8,100.0,0,0,1,1,1,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,133.0,1,19,3,9,9,123.2,1,0,0,1,1,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,133.1,1,34,34,0,0,142.8,0,0,0,1,1,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9119,1,1,120.0,1,34,34,0,0,140.0,1,0,0,1,1,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,120.0,1,3,37,4,7,115.1,1,0,0,1,0,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,Graduate +1,51,1,9119,1,1,140.0,1,1,19,4,4,150.0,0,0,0,1,1,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,Dropout +1,43,1,9556,1,1,149.0,1,1,1,4,8,140.2,1,1,0,1,0,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,160.0,1,37,19,9,10,160.0,1,0,0,1,0,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,115.0,1,19,38,7,8,116.4,1,0,0,1,0,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,140.0,1,4,4,2,10,140.0,1,0,0,1,1,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,19,133.1,1,1,1,4,4,130.0,0,0,0,1,1,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,5,9773,1,1,146.0,1,1,37,5,5,146.7,1,0,0,1,1,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,142.0,1,1,38,9,9,127.0,0,0,1,0,1,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,130.0,1,37,37,9,7,138.0,0,0,0,1,0,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9773,1,9,133.1,1,38,1,5,4,102.0,1,0,0,1,1,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,125.0,1,19,19,7,5,118.0,1,0,0,1,0,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,145.0,1,19,38,4,10,131.7,1,0,0,1,0,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,133.1,1,37,19,9,9,114.0,0,0,0,1,0,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,140.0,1,38,37,4,10,140.0,0,0,1,0,0,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,128.0,1,1,19,4,4,124.5,0,0,0,1,1,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,126.0,1,37,19,9,8,116.9,1,0,0,1,0,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,1,9773,1,1,177.0,1,2,1,123,135,155.7,0,0,1,1,0,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,135.0,1,37,1,5,5,126.8,1,0,0,1,0,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,125.0,1,4,3,1,1,119.8,0,0,0,1,0,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,Graduate +1,53,1,9147,1,42,130.0,1,1,19,143,172,133.8,1,0,0,1,0,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,Graduate +1,17,3,9670,1,1,123.0,1,38,38,7,8,118.8,1,1,0,1,0,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,112.0,1,38,19,9,5,113.8,1,0,0,1,0,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,124.0,1,34,34,0,0,129.3,0,0,0,1,0,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9773,1,12,120.0,1,1,1,9,9,129.8,1,0,0,1,1,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,111.0,1,19,19,9,9,110.0,1,0,0,1,0,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,163.0,1,37,37,5,6,155.0,0,0,0,1,0,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,145.0,1,19,1,9,5,145.0,0,0,0,1,0,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,160.0,1,38,37,9,7,155.5,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,137.0,1,1,3,7,3,131.1,1,0,1,1,0,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,133.1,1,38,38,9,9,113.5,0,0,0,1,0,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,130.0,1,1,1,9,9,131.8,0,0,0,1,1,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,137.0,1,38,37,7,7,126.0,1,0,0,1,0,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,160.0,1,19,1,9,5,107.8,1,0,0,0,1,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9070,1,39,120.0,1,3,38,3,9,120.0,0,0,0,1,1,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,145.0,1,3,3,2,1,129.3,1,0,0,1,0,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,117.0,1,38,19,5,7,118.1,0,0,0,1,1,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,130.0,1,1,1,4,3,130.0,1,0,0,1,0,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,Enrolled +2,43,1,9238,1,12,100.0,1,37,37,9,9,134.4,0,0,0,1,0,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,Graduate +2,43,1,8014,0,14,133.1,1,34,34,0,0,100.0,0,0,0,0,0,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,Dropout +1,17,4,9254,1,1,122.0,1,1,1,4,2,116.1,1,0,0,1,1,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,4,9254,1,1,110.0,1,37,37,9,7,113.2,1,0,0,1,0,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,131.0,1,38,37,4,9,131.7,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,1,19,4,10,150.0,0,0,0,1,1,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,142.0,1,19,38,9,7,127.3,0,0,0,1,1,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,Enrolled +1,7,1,9556,1,43,160.0,1,38,19,9,9,160.0,0,0,0,1,1,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,1,1,9853,1,1,130.0,1,19,12,9,4,133.2,1,0,0,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,43,1,9119,1,1,130.0,1,37,38,9,9,120.0,0,0,1,0,0,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,42,1,3,7,110.5,0,0,0,1,1,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +2,39,1,9003,1,1,130.0,1,1,19,4,9,152.4,1,0,0,1,0,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,Graduate +1,16,1,171,1,1,155.0,1,1,3,5,10,167.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,3,9254,1,1,114.0,26,38,3,9,3,127.3,1,0,1,0,0,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,37,37,9,9,125.4,1,0,0,1,1,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,5,9773,1,1,127.0,1,38,1,4,5,121.1,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Enrolled +1,17,2,171,1,1,130.0,41,1,1,2,3,148.6,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9130,1,1,120.0,1,1,19,9,9,120.0,1,0,0,1,0,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,133.0,1,1,37,4,10,143.2,0,0,0,1,0,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,38,38,9,7,125.2,1,0,0,1,0,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,102.0,1,37,37,7,7,102.0,0,0,0,1,0,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,19,38,5,7,128.5,1,0,0,1,0,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,140.0,1,38,38,7,7,133.2,1,0,0,1,0,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,123.0,1,1,1,3,3,120.9,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,2,9500,1,1,135.0,1,19,1,5,5,128.9,1,0,0,1,0,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,1,3,137.7,0,0,0,0,0,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,158.0,1,3,3,3,3,151.4,1,0,0,0,0,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,37,1,9,3,120.0,0,0,1,0,1,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,51,1,9773,1,1,135.0,1,1,42,5,3,110.0,1,0,0,1,1,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,143.0,1,3,38,2,9,144.1,1,0,0,1,0,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,Enrolled +1,1,3,9070,1,1,132.0,1,1,3,9,7,126.1,1,0,0,1,0,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,141.0,1,19,1,9,10,126.8,1,0,0,1,0,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,130.0,1,38,38,6,9,126.3,1,0,0,1,0,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,1,140.0,1,1,1,4,5,140.0,0,0,0,1,1,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,Enrolled +1,39,2,9147,1,1,130.0,1,19,19,5,9,121.5,0,0,0,0,1,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,51,1,8014,0,19,133.1,1,37,37,9,9,104.0,0,0,1,1,0,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,120.0,1,3,4,2,2,120.0,0,0,0,1,1,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,Graduate +1,1,4,171,1,1,131.0,1,19,19,4,4,119.8,1,1,0,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,18,3,9070,1,1,134.0,1,1,1,3,4,121.4,0,0,0,1,0,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,140.0,1,37,37,9,9,118.2,0,0,0,1,1,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,130.0,1,19,37,9,9,131.8,1,0,0,1,0,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,134.0,1,38,19,3,10,121.2,0,0,0,1,0,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,Graduate +1,43,2,9500,1,1,120.0,1,41,3,2,2,112.7,0,0,0,1,0,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,134.0,1,1,19,4,9,129.8,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,133.0,1,19,1,4,5,127.1,1,0,0,1,0,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,148.0,1,38,37,5,9,137.8,1,0,0,1,0,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,129.0,1,37,37,9,7,117.8,0,0,0,1,0,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,Enrolled +4,39,1,8014,0,3,100.0,1,37,37,9,9,130.0,0,0,0,1,0,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,145.0,1,1,40,9,2,129.6,0,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,4,9254,1,1,124.0,1,1,1,4,4,122.3,1,0,0,1,0,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Dropout +2,43,2,9147,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,Graduate +1,51,1,9556,1,1,131.0,1,1,37,152,193,126.6,1,0,0,1,1,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,44,1,9085,1,39,110.0,1,3,5,2,2,110.0,0,0,0,1,1,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,15,1,9147,1,1,140.0,26,37,2,6,4,140.0,0,0,1,1,1,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,Graduate +2,51,1,9853,1,1,130.0,1,37,37,7,8,120.3,0,0,0,1,0,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,19,133.1,1,37,37,6,6,139.0,0,0,0,1,1,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9670,1,1,120.0,1,37,37,7,7,111.3,1,0,0,1,1,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,3,120.0,1,37,37,7,7,120.0,0,0,0,1,0,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,Dropout +1,17,3,9147,1,1,147.0,1,19,38,5,7,132.3,1,0,0,1,0,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,3,9130,1,1,167.0,1,37,37,90,90,159.3,0,0,0,1,0,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,132.0,1,1,1,4,9,136.6,1,0,0,1,1,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,Enrolled +1,5,2,9853,1,1,124.0,1,19,19,3,3,113.9,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,3,130.0,1,3,1,2,9,130.0,0,0,0,1,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,160.0,1,1,38,4,7,146.5,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,141.0,1,19,3,4,0,137.9,1,0,0,0,1,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,19,37,8,7,100.0,1,0,0,1,0,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,134.0,1,38,19,7,7,124.2,0,0,0,1,0,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,150.0,1,1,37,4,8,145.6,1,0,0,1,0,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,146.0,1,3,1,3,10,138.7,0,0,0,1,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9991,0,40,133.1,1,1,37,4,1,100.0,0,0,0,1,0,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,127.0,1,38,19,9,10,117.9,0,0,0,1,0,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,131.0,1,37,38,9,7,137.0,0,0,0,1,0,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Graduate +1,7,1,9238,1,3,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,Graduate +2,39,1,9085,1,1,133.1,1,37,37,90,90,110.3,0,0,0,1,1,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,125.0,1,38,1,3,10,114.5,1,0,0,1,1,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,152.0,1,19,19,9,5,154.1,0,0,1,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,120.0,1,37,37,4,5,120.0,0,0,1,0,0,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,Dropout +2,39,1,8014,0,1,146.0,1,37,37,9,8,120.5,0,0,0,1,0,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,39,1,9119,1,12,133.1,1,34,34,0,0,95.1,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,128.0,1,19,37,9,8,116.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9307cf4b524ffa38ff4a36db610667ac23d91634 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/train.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,1,1,127.0,1,1,1,9,6,110.0,0,0,1,0,1,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9773,1,1,122.0,1,38,37,5,3,119.6,1,0,0,1,0,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,6,9147,1,1,121.0,1,3,19,4,5,116.8,0,0,0,1,1,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,158.0,1,38,37,5,5,140.2,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,19,19,9,7,131.7,1,0,0,1,0,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,Graduate +1,1,3,9085,1,1,133.0,1,1,38,9,90,128.2,0,0,0,1,0,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,122.0,1,1,19,9,9,120.3,1,0,0,1,1,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,Dropout +1,43,1,9119,1,1,130.0,1,1,1,9,2,128.0,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,3,9254,1,1,122.0,1,1,1,4,4,126.6,0,0,0,0,0,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,1,100.0,1,37,37,9,9,133.0,0,0,0,1,1,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,44,1,9119,1,39,130.0,1,19,3,3,4,130.0,0,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9085,1,39,140.0,1,1,1,4,7,140.0,1,0,1,1,0,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9070,1,1,130.0,1,37,37,9,9,123.7,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +4,1,1,9991,0,1,130.0,1,37,37,9,9,118.1,0,0,1,0,0,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9500,1,1,190.0,108,3,2,122,4,190.0,1,0,0,1,0,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,102.0,1,1,19,9,5,100.6,1,0,0,1,0,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,3,120.0,1,19,3,4,2,120.0,1,0,0,1,0,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,130.0,1,38,19,9,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,111.0,1,3,4,4,3,108.2,1,0,0,1,0,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9119,1,1,160.0,1,1,38,4,7,112.0,0,0,0,0,1,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,149.0,1,19,1,4,4,134.8,0,0,0,1,0,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,135.0,1,19,38,3,9,136.1,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,2,9500,1,1,120.0,1,37,34,90,0,121.5,0,0,1,1,0,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,147.0,1,12,19,9,3,151.6,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,128.0,1,37,37,9,9,123.5,1,0,0,1,1,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,2,9070,1,1,129.0,1,1,1,4,9,132.9,1,0,0,1,1,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,Enrolled +1,17,2,9500,1,1,138.0,1,1,38,5,8,132.8,1,0,0,1,0,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,134.0,1,19,37,9,9,131.6,1,1,0,1,0,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,130.0,1,37,37,9,9,122.0,1,0,0,1,0,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,1,0,0,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,2,9085,1,1,130.0,1,37,19,9,8,129.0,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,Enrolled +1,17,5,9119,1,1,126.0,1,38,38,5,9,116.9,1,0,1,1,1,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,37,38,5,6,140.0,1,0,0,1,0,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,18,4,9853,1,1,123.0,1,19,38,4,10,123.7,1,0,0,1,0,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,118.0,1,4,3,2,3,110.7,1,0,0,1,0,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,2,130.0,1,37,37,5,7,147.5,0,0,0,1,0,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,146.0,1,4,1,2,3,140.0,1,0,0,1,0,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,Graduate +1,44,1,9003,1,39,160.0,1,37,38,9,7,160.0,0,0,0,1,0,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,7,0,9003,1,3,130.0,1,1,37,4,9,130.0,1,0,0,1,0,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,19,133.1,1,34,34,99,99,96.0,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,136.0,1,37,37,7,7,140.9,1,0,0,1,1,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,1,9853,1,1,127.0,1,1,1,5,7,121.4,1,0,0,1,0,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,134.0,1,3,19,2,10,128.8,0,0,0,1,0,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,140.0,1,1,3,4,2,142.8,1,0,0,0,0,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,126.3,0,0,0,1,1,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.1,1,19,1,1,3,101.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9147,1,1,122.0,1,1,38,1,7,118.9,0,0,0,1,1,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,107.0,1,19,37,7,7,103.5,1,0,0,1,0,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,156.0,1,38,37,9,9,156.3,0,0,0,1,1,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,128.0,1,1,1,9,9,120.0,1,0,0,1,0,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9119,1,1,127.0,1,19,1,9,10,121.1,1,0,0,1,1,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,4,160.0,1,3,3,4,2,180.4,0,0,1,1,1,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,Dropout +1,43,1,9670,1,1,132.0,1,3,19,4,8,120.5,0,0,0,1,1,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,134.0,1,1,19,4,5,122.5,1,0,0,1,0,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,142.0,1,1,19,4,4,128.0,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,133.0,1,2,37,9,7,125.7,1,0,0,1,1,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,135.0,1,1,3,4,3,133.3,0,0,0,1,0,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,3,140.0,1,37,12,9,4,140.0,0,0,0,0,0,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9500,1,1,141.0,1,2,38,2,10,135.4,1,0,0,1,0,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,Enrolled +2,43,1,9991,0,2,120.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,147.0,1,1,19,4,4,137.2,0,0,0,0,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9085,1,1,120.0,1,37,38,9,9,111.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,141.0,1,3,1,9,9,124.3,0,0,0,1,0,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,Enrolled +1,18,1,9773,1,1,125.0,1,1,1,4,7,121.5,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,140.0,1,37,37,5,5,150.0,0,0,1,1,0,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,112.0,1,1,37,4,9,106.8,1,0,0,1,0,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,168.0,1,38,37,9,8,155.1,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,15,1,9119,1,1,133.1,41,2,2,2,2,100.0,0,0,1,1,1,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,Enrolled +2,1,1,8014,0,1,121.0,1,37,37,9,9,114.4,1,0,0,1,0,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,136.0,1,1,38,4,5,132.2,0,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,Graduate +1,16,1,9070,1,1,145.0,1,1,1,3,3,146.1,1,0,0,1,0,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,40,140.0,1,5,3,2,2,140.0,0,0,1,1,1,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,Dropout +1,1,3,9085,1,1,126.0,1,38,1,9,9,132.0,1,0,0,1,0,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,146.0,1,1,37,9,9,129.3,0,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,131.0,1,37,37,9,6,127.2,0,0,0,1,0,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,139.0,1,37,37,9,9,124.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,133.1,1,37,1,5,4,151.2,0,0,0,1,1,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,170.0,1,38,19,9,2,160.6,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,131.0,1,37,37,9,6,130.7,0,0,1,1,0,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,122.0,1,19,37,3,5,116.6,1,0,1,1,1,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,Graduate +1,17,3,171,1,1,147.0,1,19,1,5,4,137.6,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,9,120.0,0,0,0,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,5,1,9130,1,1,157.0,1,5,43,2,2,149.7,1,0,0,1,0,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9003,1,39,160.0,1,3,1,2,6,160.0,1,0,0,0,0,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,140.0,1,9,19,4,4,131.2,0,0,0,1,1,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,1,130.0,1,1,3,2,6,110.0,0,0,0,1,1,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,Graduate +1,39,1,171,1,1,147.0,1,37,38,175,193,133.3,0,0,0,0,0,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,148.0,1,38,19,4,9,134.7,1,0,0,1,0,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,130.0,1,19,1,9,7,130.4,1,0,0,1,0,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,133.1,1,1,37,4,9,96.0,1,0,0,1,0,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,Enrolled +1,39,1,9991,0,12,120.0,1,37,38,5,5,155.7,0,0,0,1,1,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,117.0,1,3,1,3,3,113.2,0,1,0,1,0,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,Graduate +1,17,2,9853,1,1,150.0,1,38,19,5,5,142.0,1,0,0,1,0,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,144.0,1,1,19,9,4,130.8,1,0,0,1,0,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,Graduate +1,17,4,9254,1,1,118.0,1,38,37,5,7,111.7,1,0,0,1,1,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,6,9500,1,1,141.0,1,2,1,4,4,136.3,1,0,0,1,0,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,Graduate +2,39,1,9003,1,1,120.0,1,2,2,1,4,100.0,0,0,0,1,1,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,141.0,1,4,3,2,1,136.3,1,0,0,1,1,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,120.0,1,1,19,5,4,140.4,0,0,0,1,0,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,154.0,1,1,37,4,9,134.8,1,0,0,1,0,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,100.0,1,19,19,5,5,101.8,1,0,0,1,0,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,3,9670,1,1,137.0,1,1,38,4,7,138.4,0,0,0,1,1,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,152.0,1,37,37,7,5,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,118.0,1,37,1,9,7,117.0,1,0,0,0,1,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,140.0,1,12,3,4,3,118.0,1,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,133.0,1,1,2,9,2,128.8,0,0,0,1,1,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,171,1,1,140.0,1,37,37,9,9,100.8,0,1,0,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9070,1,42,130.0,1,40,19,3,5,130.0,1,0,0,0,0,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,143.0,1,1,19,3,3,133.9,0,0,0,1,0,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,Graduate +2,1,5,9500,1,1,130.0,1,1,19,4,4,122.3,0,0,0,1,0,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,9,9,125.0,1,0,0,1,0,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,120.0,1,37,37,7,8,120.0,0,0,0,1,0,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,Graduate +1,1,2,9147,1,1,125.0,1,1,19,4,9,124.0,1,0,0,1,0,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,131.0,1,38,19,9,9,130.0,1,0,0,1,1,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,132.0,1,1,1,4,1,119.4,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9500,1,1,135.0,1,19,19,7,7,128.0,1,0,0,1,0,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,19,133.1,1,38,38,9,9,114.8,0,0,0,1,0,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,130.0,1,2,2,6,6,130.0,0,0,0,0,1,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,112.0,1,19,38,9,10,112.0,1,0,0,1,0,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9254,1,1,170.0,1,37,37,4,6,138.3,0,0,0,1,0,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9147,1,19,100.0,1,38,19,7,9,132.0,0,0,1,0,1,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,133.1,1,19,19,9,9,119.0,1,0,0,0,0,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,Dropout +1,17,2,9085,1,1,138.0,1,37,37,9,7,123.3,1,0,0,1,0,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,1,133.1,1,37,37,9,9,112.5,0,0,0,1,0,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,1,140.0,1,12,5,3,3,126.6,0,0,0,1,1,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,1,125.0,1,1,1,9,4,120.0,0,0,0,1,0,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,151.0,1,1,1,4,3,132.3,0,0,0,1,1,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,Graduate +1,43,1,9556,1,1,130.0,1,1,37,5,5,128.0,1,0,0,1,1,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,Graduate +1,17,6,9670,1,1,113.0,1,4,1,3,10,112.3,0,0,0,1,0,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9773,1,1,125.0,1,37,37,5,7,120.1,0,0,0,1,0,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,53,1,171,1,42,130.0,1,1,19,9,9,130.0,1,0,0,0,1,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,51,1,33,1,1,121.0,1,19,37,5,7,118.6,0,0,0,1,0,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,131.0,1,37,37,90,90,137.0,0,0,0,1,0,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,150.0,1,19,1,4,4,137.8,0,0,0,1,0,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,140.0,1,37,37,5,6,128.5,0,0,0,1,0,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,130.0,1,37,2,9,4,126.5,1,0,0,0,1,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,Dropout +1,1,2,9238,1,1,147.0,1,19,38,9,8,135.8,1,0,0,1,0,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,106.0,1,19,37,9,7,109.5,1,0,0,1,0,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,110.0,1,37,37,9,10,140.0,0,0,1,0,1,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,105.0,1,19,37,8,8,102.6,0,1,0,1,0,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,Enrolled +1,17,6,9147,1,1,133.0,1,19,38,5,6,123.2,1,0,0,1,1,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9670,1,1,160.0,1,34,34,99,99,100.1,0,0,0,0,1,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,Dropout +4,7,1,9500,1,40,130.0,1,37,37,3,3,130.0,1,0,0,1,0,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,Enrolled +1,43,2,9853,1,1,118.0,1,19,1,5,4,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,Enrolled +1,43,1,8014,0,1,117.0,1,37,37,9,9,100.0,0,0,0,1,0,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,Dropout +1,53,1,9238,1,42,130.0,1,1,19,5,5,128.3,0,0,1,0,0,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,127.0,1,19,38,4,5,120.7,1,0,1,1,0,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,38,37,9,4,150.0,1,0,0,1,1,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,1,133.1,1,37,29,0,4,120.5,0,0,0,0,1,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,121.0,1,37,19,9,9,141.4,0,0,1,0,1,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,120.0,1,38,37,9,7,108.0,0,0,0,1,1,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,153.0,6,37,37,9,9,131.8,1,0,0,1,0,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,153.0,1,38,19,9,5,138.5,1,0,0,1,0,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,107.0,1,12,19,5,5,102.8,1,0,0,1,0,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9238,1,1,135.0,1,1,19,7,7,126.6,1,0,0,1,0,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,124.0,1,1,19,123,103,113.9,1,1,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,144.0,1,37,37,7,9,126.8,1,0,1,0,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9556,1,1,120.0,1,37,37,9,4,150.0,0,0,0,0,0,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,Dropout +1,43,3,171,1,1,120.0,1,37,37,9,9,143.3,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,140.0,1,38,19,4,10,122.3,1,0,0,1,0,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,157.0,1,3,38,1,5,136.7,1,0,0,1,0,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,150.0,1,3,1,2,8,153.8,1,0,0,1,0,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,130.0,1,2,1,2,7,126.2,1,0,0,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,142.0,1,37,37,9,9,132.9,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9238,1,1,124.0,1,1,1,3,1,118.8,1,0,1,0,0,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,1,19,4,5,100.0,0,0,0,1,1,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,Enrolled +1,17,5,9238,1,1,122.0,1,37,37,7,5,112.9,1,0,0,1,0,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,97.5,1,0,0,1,1,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,171,1,1,140.0,1,1,3,3,3,138.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,132.0,1,1,1,3,3,119.4,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,Graduate +1,42,1,9500,1,1,100.0,1,3,19,2,8,153.0,0,0,0,1,1,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,Enrolled +1,1,1,9254,1,1,123.0,1,38,37,5,5,125.1,0,0,0,1,0,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9130,1,1,133.0,1,38,38,5,8,120.4,1,0,0,1,0,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,Graduate +1,17,4,9773,1,1,129.0,1,3,1,2,7,132.5,1,0,0,1,1,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Enrolled +4,39,1,9003,1,19,133.1,1,37,37,9,9,110.0,0,0,0,1,1,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,133.0,1,3,1,9,3,123.2,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,137.0,1,38,19,9,5,129.3,1,0,0,1,0,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,123.0,1,3,1,2,9,127.6,1,0,0,1,1,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,19,133.1,1,19,19,9,5,101.0,1,0,0,1,0,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,19,19,7,7,111.1,1,0,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9070,1,1,147.0,1,3,1,2,3,149.8,1,0,0,1,1,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,100.0,1,37,37,7,9,100.0,1,0,0,1,0,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,141.0,1,38,38,7,7,132.5,1,0,0,1,0,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,168.0,1,1,1,5,5,161.0,1,0,0,1,1,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,Dropout +5,39,1,9003,1,19,133.1,1,19,1,9,9,119.4,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,114.0,1,1,19,9,9,111.9,1,0,0,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,Enrolled +1,39,1,9500,1,1,130.0,1,37,37,3,7,143.8,0,0,0,1,1,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,133.1,1,19,19,9,7,100.0,0,0,0,1,1,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,Dropout +1,17,3,9853,1,1,132.0,1,34,34,0,0,131.3,1,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,157.0,1,37,37,9,9,143.0,0,0,0,1,1,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,Graduate +5,42,1,9254,1,2,120.0,1,37,37,4,9,120.0,0,0,0,1,0,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,6,1,1,192,144,129.8,0,0,0,1,1,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,Enrolled +1,1,2,9500,1,1,139.0,1,38,37,9,7,125.0,1,0,0,1,0,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,133.1,1,1,19,9,5,95.0,1,0,0,1,0,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,180.0,1,37,37,7,4,153.8,1,0,0,1,0,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,4,9773,1,1,133.0,1,1,19,9,9,119.7,1,0,0,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,Graduate +1,17,5,9500,1,1,124.0,1,3,38,2,1,119.8,0,0,0,1,1,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,133.1,1,37,37,9,9,148.2,1,0,1,1,0,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,19,133.1,1,37,37,9,7,114.8,0,0,1,1,1,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,133.1,1,1,19,4,8,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,180.0,41,37,37,9,9,152.7,1,0,1,0,1,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9085,1,1,130.0,1,19,19,90,7,115.8,0,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,161.0,1,38,37,5,5,154.4,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,148.0,1,1,38,4,5,148.7,0,0,0,1,1,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,19,38,9,7,131.3,1,0,1,1,0,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,122.0,1,1,1,4,9,112.9,1,0,0,1,0,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,4,9500,1,1,142.0,1,38,38,9,8,129.8,1,0,0,1,0,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,Graduate +3,39,1,9003,1,1,170.0,1,1,37,6,6,170.0,0,0,1,1,0,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Enrolled +1,1,2,9147,1,1,130.0,1,37,37,9,9,117.8,0,0,0,1,0,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9147,1,1,140.0,1,37,37,9,7,132.3,1,0,0,1,0,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,132.0,1,2,1,9,9,126.4,1,1,0,1,0,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,140.0,1,1,3,9,2,140.0,1,0,0,1,0,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,19,4,4,109.3,0,0,0,1,1,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,176.0,1,3,38,3,7,169.7,0,0,0,1,0,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,133.1,1,37,38,7,7,98.0,1,0,0,1,1,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,136.0,1,3,3,2,2,128.7,0,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,12,38,4,9,107.0,1,0,0,1,0,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,Dropout +1,17,1,9130,1,1,156.0,1,2,9,3,5,166.9,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,Graduate +1,17,1,9130,1,1,123.0,1,19,3,3,2,121.6,1,0,1,1,0,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,129.0,1,1,1,9,9,124.8,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9119,1,1,125.0,1,19,1,5,4,121.5,1,0,0,1,1,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,Dropout +1,17,1,9085,1,1,163.0,14,37,37,9,9,150.8,1,0,0,1,0,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,Graduate +1,7,2,9130,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,135.0,1,1,2,9,1,134.3,1,0,0,1,0,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,19,37,6,6,120.0,0,0,0,1,0,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,1,130.0,1,37,37,9,7,133.0,1,0,0,1,0,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,143.0,1,1,19,4,6,135.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +4,43,2,9991,0,38,133.1,1,3,1,2,9,125.4,0,0,0,1,1,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,140.0,1,3,1,2,4,124.1,0,0,0,1,0,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,37,38,175,103,127.0,0,0,0,1,1,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,151.0,1,1,3,1,1,111.0,0,0,0,1,1,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,133.0,1,37,19,9,8,141.4,0,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,133.1,1,38,37,5,5,108.0,0,0,0,1,0,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,9147,1,1,118.0,1,3,19,2,4,113.8,1,0,0,1,0,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,1,1,3,5,141.7,0,0,0,1,0,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,42,1,9119,1,1,130.0,1,19,37,9,3,135.0,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,Dropout +4,39,2,9147,1,19,133.1,1,37,37,9,7,116.4,0,0,1,0,1,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,148.0,1,19,38,9,8,134.8,1,0,0,1,1,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,116.0,1,19,19,4,7,110.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,5,9147,1,1,122.0,1,38,38,9,9,117.5,1,0,1,0,0,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,122.0,1,37,37,9,9,125.9,1,0,0,1,1,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,171,1,1,127.0,1,1,1,9,5,124.2,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9147,1,39,117.4,1,19,1,4,9,117.4,1,0,0,1,0,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,150.0,1,37,38,9,9,146.2,0,0,0,1,0,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,Enrolled +1,17,1,9254,1,1,158.0,1,37,37,5,9,138.1,1,0,0,1,0,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,Dropout +1,7,1,9500,1,3,140.0,1,1,37,9,5,140.0,0,0,0,1,0,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,140.0,1,1,1,9,3,135.7,1,0,0,1,0,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +2,7,1,171,1,3,120.0,1,19,19,9,9,130.0,1,0,0,1,1,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,10,100.0,1,34,34,0,0,113.0,1,0,0,1,0,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,1,8014,0,1,125.0,1,37,37,9,7,114.9,0,0,0,1,0,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,Graduate +1,18,6,9500,1,1,124.0,1,37,37,9,7,117.8,0,0,0,1,0,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,109.0,1,2,3,3,3,111.8,1,0,1,1,1,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,149.0,1,1,1,9,3,156.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +2,44,1,9119,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,120.0,6,4,4,3,6,120.0,0,0,1,0,0,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,Dropout +5,1,3,9085,1,1,133.0,1,19,19,4,7,119.7,1,0,0,1,0,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9085,1,1,127.0,1,37,37,9,9,122.8,1,0,0,1,0,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,171,1,39,140.0,1,1,1,9,9,140.0,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9773,1,1,132.0,1,1,1,4,9,124.3,1,0,1,1,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +4,39,2,9670,1,19,133.1,1,19,1,90,90,103.0,0,0,0,0,1,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,26,1,9147,1,2,133.1,1,34,34,0,0,121.5,1,0,0,1,0,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,143.0,1,19,38,9,6,131.5,1,0,0,1,1,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,123.0,1,1,19,3,4,122.0,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,171,1,1,133.1,1,3,1,2,3,141.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,19,37,9,4,120.0,0,0,0,1,0,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,1,1,3,3,125.7,1,0,0,1,0,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,121.0,1,37,37,5,5,118.9,1,0,0,1,0,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,Graduate +1,51,1,9500,1,1,129.0,1,37,38,3,3,137.8,1,0,0,1,0,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,2,4,134.9,1,0,1,1,0,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9254,1,1,113.0,1,1,1,2,3,110.2,1,0,0,1,1,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,1,133.1,1,1,19,4,5,120.0,1,0,0,1,1,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,Dropout +1,39,1,9254,1,19,133.1,1,19,1,9,5,97.0,0,0,1,0,1,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9500,1,1,126.0,1,1,19,6,7,115.5,1,0,0,1,0,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,Graduate +1,42,1,9853,1,1,141.0,1,37,19,9,3,133.0,0,0,0,1,0,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,19,133.1,1,19,19,4,9,139.9,1,0,0,1,0,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,2,9254,1,1,140.0,1,19,19,9,9,126.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,108.0,1,34,38,0,3,105.9,0,0,0,1,1,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,114.0,1,19,19,9,7,107.7,0,0,0,1,0,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,130.0,1,3,1,9,9,126.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.1,1,19,37,0,0,137.0,1,0,0,1,0,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9119,1,1,117.0,1,1,2,3,2,119.8,1,0,0,1,1,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9147,1,1,115.0,1,1,37,4,9,117.1,1,0,1,1,0,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,130.0,1,12,19,4,5,118.5,0,1,0,1,0,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,34,37,5,5,120.4,0,0,0,0,0,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,171,1,39,150.0,1,19,1,9,9,154.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,43,1,9147,1,1,140.0,1,37,37,6,6,122.9,0,0,0,1,0,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,Dropout +1,42,1,9070,1,1,100.0,1,3,2,2,2,115.9,0,0,0,1,0,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,Enrolled +1,17,1,171,1,1,128.0,1,1,1,4,10,134.7,0,0,0,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,1,1,9,9,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,7,133.9,0,0,0,1,0,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Dropout +1,43,1,9773,1,1,119.0,1,19,37,5,5,105.0,1,0,0,1,0,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,Enrolled +2,43,1,9991,0,1,140.0,1,37,37,4,1,122.7,0,0,0,1,1,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,135.0,1,37,1,3,5,121.0,0,0,0,1,0,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,123.0,1,3,1,2,3,124.1,1,0,0,1,0,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9670,1,1,132.0,1,19,1,5,4,119.1,0,0,1,1,1,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,5,9254,1,1,130.0,1,37,38,9,9,122.7,1,0,1,1,1,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9147,1,1,117.0,1,1,38,8,9,117.0,1,0,0,1,1,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,140.0,1,19,19,9,6,135.4,1,0,0,1,0,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,162.0,1,37,37,9,6,132.0,0,0,1,1,1,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,139.0,1,19,38,4,9,128.5,1,0,0,1,0,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,Dropout +4,39,1,9991,0,1,130.0,1,38,19,9,7,148.0,0,0,0,1,0,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,43,1,9500,1,1,131.0,1,1,38,5,5,118.8,0,0,0,1,0,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,5,9238,1,1,126.0,1,38,1,9,5,125.7,1,0,0,1,0,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,53,1,9085,1,42,140.0,1,1,1,4,3,140.0,1,0,1,1,0,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,128.0,1,1,1,4,5,120.8,1,0,0,1,0,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,139.0,1,37,37,9,6,133.5,1,0,0,1,0,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,150.0,1,38,38,4,1,150.0,1,0,0,1,1,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,133.1,1,1,1,4,4,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9853,1,1,140.0,1,37,19,9,8,122.3,0,0,0,1,0,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,120.0,1,38,19,5,4,118.3,0,0,0,1,0,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,Enrolled +1,7,1,9130,1,3,140.0,1,2,38,2,3,140.0,1,0,0,0,1,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,122.0,1,9,19,90,6,103.4,0,0,0,1,0,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,Graduate +2,39,1,9070,1,19,133.1,1,37,37,9,10,126.3,0,0,0,0,1,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,160.0,1,38,38,7,7,147.8,0,0,0,1,0,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9238,1,12,100.0,1,37,37,9,9,124.3,0,0,0,1,1,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,Graduate +1,18,2,8014,0,1,117.0,1,3,1,3,4,111.8,1,0,0,1,0,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,38,37,7,7,140.0,0,0,0,1,1,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,Dropout +1,43,1,9853,1,1,140.0,1,3,1,3,3,128.3,1,0,0,1,0,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,127.0,1,37,38,9,9,120.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,1,161.0,1,19,37,4,10,100.0,0,0,0,1,1,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,Graduate +1,16,4,9500,1,1,145.0,1,1,1,4,4,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9853,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,Dropout +1,1,2,171,1,1,127.0,1,2,19,5,5,139.6,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,148.0,1,19,19,4,4,133.8,0,0,0,1,0,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,140.0,1,19,19,1,1,129.5,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,171,1,1,129.0,1,37,37,9,9,122.0,1,0,0,0,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,1,12,3,10,131.6,1,0,0,1,0,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,130.0,1,38,37,3,6,135.6,1,0,0,1,0,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,51,1,9991,0,39,120.0,1,1,4,4,10,118.1,0,0,0,1,1,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,39,1,9853,1,19,133.1,1,19,4,9,4,116.0,1,0,0,1,0,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9238,1,1,133.1,1,1,37,8,9,118.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,4,9500,1,1,125.0,1,19,1,1,1,117.8,1,0,0,1,0,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,141.0,1,1,38,4,5,125.0,1,0,0,1,0,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,121.0,1,38,38,7,5,120.0,1,0,0,1,0,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,Enrolled +1,17,3,9500,1,1,142.0,1,3,3,3,3,132.9,1,0,0,1,1,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,Dropout +1,44,1,9238,1,39,140.0,1,37,19,191,102,136.1,1,0,1,1,0,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9991,0,2,140.0,1,3,3,2,2,155.7,1,0,0,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9119,1,1,135.0,1,12,19,5,5,121.0,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,135.0,1,3,3,2,2,123.0,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,117.0,1,1,1,4,4,117.7,1,0,0,1,1,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,43,1,171,1,1,120.0,1,3,3,2,2,120.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,1,38,1,7,120.0,0,0,0,1,0,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,Graduate +1,17,3,9238,1,1,122.0,1,19,19,7,7,117.5,1,0,0,1,0,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,1,37,37,9,9,144.2,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +4,39,1,9500,1,1,140.0,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,131.0,1,19,19,9,9,139.8,1,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,127.0,1,3,3,2,5,100.0,0,0,0,1,0,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,39,1,9085,1,1,133.1,1,3,19,2,9,110.0,0,0,0,1,0,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,Dropout +4,39,1,9500,1,19,133.1,1,38,1,9,4,120.0,0,0,0,1,0,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,Graduate +1,16,1,9085,1,1,150.0,1,3,3,2,1,153.5,1,0,0,1,0,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,153.0,1,19,37,9,9,153.7,0,0,0,1,0,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,130.0,1,19,19,3,8,131.8,0,0,0,1,0,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,2,9853,1,1,131.0,1,1,1,2,9,121.9,1,0,0,1,0,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,136.0,1,3,3,3,3,130.8,0,0,0,1,0,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,126.0,1,1,19,4,0,120.1,0,1,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,1,120.0,1,3,2,2,6,120.0,1,0,0,1,1,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,Enrolled +2,39,1,9130,1,19,133.1,1,2,1,2,9,157.0,1,0,0,1,1,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,Graduate +1,7,1,9853,1,3,150.0,1,19,19,4,5,150.0,0,0,1,0,0,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,51,1,9070,1,12,133.1,1,37,19,3,7,106.6,0,0,1,1,0,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,Enrolled +1,1,2,9085,1,1,157.0,1,3,3,5,2,153.9,1,0,0,1,0,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,171,1,1,117.0,1,1,19,3,3,121.6,1,0,0,1,0,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,Graduate +1,1,2,9147,1,1,113.0,1,38,38,9,5,107.4,1,0,0,1,1,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,Enrolled +1,39,2,9147,1,12,133.1,1,19,38,9,9,120.0,1,0,1,0,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,152.0,1,37,37,9,9,139.0,1,0,0,1,0,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,138.0,1,1,19,9,9,124.0,0,0,0,1,0,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9853,1,1,110.0,1,37,37,9,9,95.5,0,0,1,0,0,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9130,1,1,150.0,1,19,19,4,4,130.0,0,0,0,0,1,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,3,9119,1,1,138.0,1,1,19,4,3,125.4,1,0,0,1,1,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,17,6,9147,1,1,120.0,1,37,38,9,9,115.5,1,0,1,0,1,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,Enrolled +1,1,3,9670,1,1,134.0,1,14,11,0,0,128.4,1,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,145.0,1,38,37,9,7,129.3,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,18,6,9500,1,1,126.0,1,37,37,5,5,122.8,1,0,0,1,0,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,133.0,1,1,1,4,4,129.2,1,0,0,1,0,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,Dropout +1,44,1,9070,1,39,120.0,1,1,19,4,7,120.0,0,0,1,0,1,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,136.0,1,19,38,9,9,121.7,0,1,0,1,0,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,126.0,1,1,1,9,10,126.7,1,0,0,1,0,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,Graduate +1,1,3,9085,1,1,134.0,1,38,19,9,5,129.1,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,133.1,1,1,37,9,9,117.0,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,5,9238,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,0,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,40,140.0,1,19,37,5,9,148.0,0,0,0,1,0,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,137.0,1,3,38,1,9,131.4,0,0,0,0,1,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,Dropout +1,1,2,9670,1,1,123.0,1,1,38,7,7,120.6,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,139.0,1,3,1,2,7,124.0,1,0,0,1,0,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,Dropout +1,1,2,171,1,1,152.0,1,38,19,9,9,151.7,1,0,0,1,0,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,110.0,1,37,37,9,4,114.3,1,0,0,1,1,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,Enrolled +1,51,1,9991,0,1,120.0,1,38,3,5,3,128.2,0,0,1,1,1,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,141.0,1,3,2,2,2,133.3,1,0,0,1,1,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,Enrolled +1,5,1,171,1,1,137.0,1,3,19,1,10,144.7,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,43,1,9003,1,1,130.0,1,37,1,5,4,130.0,0,0,0,1,1,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,Dropout +1,18,1,9773,1,1,135.0,1,1,1,3,3,129.8,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,38,38,9,8,150.0,1,0,0,1,1,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,Graduate +1,17,2,9773,1,1,150.0,1,1,1,4,5,130.8,0,0,0,1,1,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9773,1,1,123.0,1,1,1,4,7,125.1,1,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,4,9119,1,1,129.0,1,34,36,0,5,118.9,1,0,0,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,144.0,1,38,37,9,9,128.8,1,0,0,1,1,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,130.0,1,38,38,9,9,150.0,0,0,1,0,1,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,128.0,1,1,1,7,7,120.5,1,0,0,1,0,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,Enrolled +1,7,1,9500,1,3,140.0,1,3,1,4,4,140.0,0,0,0,1,0,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,134.0,1,19,19,1,1,120.4,1,0,0,1,1,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,147.0,1,1,38,4,8,141.1,1,0,0,1,0,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,126.0,1,3,1,5,5,125.7,0,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +2,1,4,9853,1,1,134.0,1,37,37,5,7,122.5,0,1,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,148.0,1,38,38,4,9,131.6,0,0,0,1,1,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,Dropout +2,39,1,9085,1,9,133.1,1,1,1,4,4,120.0,1,0,0,0,1,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,39,1,9254,1,1,150.0,1,3,1,3,4,122.3,0,0,0,1,1,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,125.0,1,19,37,3,7,126.8,0,0,0,1,0,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,Enrolled +1,18,1,9670,1,1,128.0,1,19,3,9,7,120.0,1,0,0,1,0,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,160.0,1,2,1,4,4,137.3,1,0,0,1,0,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,Graduate +2,39,1,9238,1,42,170.0,1,19,38,8,8,159.5,0,0,0,1,1,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9773,1,1,143.0,1,1,1,4,9,144.1,1,0,0,1,1,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,9991,0,1,130.0,1,37,37,9,9,127.8,0,0,0,1,1,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,51,1,9147,1,1,130.0,1,19,38,9,8,115.7,0,0,0,1,1,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,Enrolled +1,17,3,9773,1,1,135.0,1,1,19,5,7,135.0,0,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,135.0,1,1,1,9,9,133.3,0,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,136.0,1,1,1,4,5,123.3,0,0,0,0,0,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,143.0,1,5,5,2,2,137.8,0,0,0,1,1,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,133.1,1,1,19,141,114,140.0,1,0,0,1,0,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9670,1,1,117.0,1,38,19,0,1,114.6,0,0,0,0,1,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,133.1,1,1,19,4,10,145.8,0,0,0,1,1,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,129.0,1,1,37,4,9,118.2,0,0,0,1,1,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,7,1,9500,1,3,130.0,1,37,37,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,Graduate +1,17,4,9670,1,1,135.0,1,38,38,9,7,127.0,1,0,0,1,0,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,126.0,1,1,1,90,90,119.0,1,0,1,1,1,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9773,1,1,120.0,1,1,38,5,5,121.4,0,0,0,0,0,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,136.0,1,1,38,9,9,130.8,1,0,0,1,0,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,131.0,1,19,37,9,9,123.8,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,144.0,1,19,19,9,9,142.6,1,0,0,1,0,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,126.0,1,38,38,7,8,126.7,1,0,0,1,0,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,3,171,1,1,125.0,1,37,37,5,10,120.5,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,7,1,9130,1,2,110.0,1,19,19,4,8,110.0,1,0,0,1,1,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,3,1,2,8,150.0,0,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,5,171,1,1,139.0,1,19,3,9,2,136.9,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9147,1,1,100.0,1,38,38,5,5,101.8,1,0,0,1,0,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,Enrolled +1,44,2,9238,1,39,150.0,1,3,19,4,9,147.0,1,0,0,1,0,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,9,4,100.0,0,0,0,1,1,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9130,1,1,130.0,1,19,38,4,7,122.5,0,0,0,1,1,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,19,37,1,1,140.0,0,0,1,1,1,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,Enrolled +1,17,1,9070,1,1,157.0,1,3,3,3,3,146.2,0,0,0,1,1,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,150.0,1,37,19,8,4,130.8,0,0,0,1,1,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,133.1,1,19,19,7,7,130.0,1,0,0,1,0,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,150.0,1,19,1,9,8,150.0,1,0,0,1,1,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,127.0,1,1,19,7,7,121.8,1,0,0,1,0,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9853,1,1,148.0,1,19,19,5,7,141.7,0,0,0,1,0,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,130.0,1,1,19,9,9,133.4,0,0,0,1,0,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,123.0,1,37,38,3,3,122.0,0,0,1,1,1,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9070,1,1,132.0,1,37,38,9,7,138.0,0,0,0,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,146.0,1,2,19,3,9,130.3,1,0,0,1,1,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,Graduate +1,44,1,171,1,39,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,116.0,1,3,1,3,4,115.7,0,0,0,0,1,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9670,1,1,130.0,1,19,37,4,5,118.8,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,124.0,1,37,37,7,9,121.2,0,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,127.0,1,19,37,9,3,120.7,1,0,0,1,0,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +2,43,1,9070,1,2,140.0,1,37,37,6,6,140.0,1,0,0,1,1,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,Graduate +1,39,1,9500,1,1,100.0,1,3,1,2,5,121.3,1,0,0,1,0,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,Enrolled +1,39,1,9991,0,19,133.1,1,37,37,9,6,105.3,0,0,1,1,0,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,1,155.0,1,1,19,4,8,134.7,1,0,0,1,0,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,15,1,9119,1,1,160.0,32,1,3,143,152,160.0,0,0,1,1,0,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,Enrolled +1,53,1,9670,1,42,140.0,1,19,37,3,6,140.0,1,0,1,1,0,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9853,1,1,140.0,1,38,38,9,7,137.6,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,140.0,1,19,19,7,7,129.5,1,0,0,1,0,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,133.1,1,19,19,3,4,104.0,0,0,1,0,0,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,130.0,1,37,37,9,9,118.8,0,0,1,1,1,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,136.0,1,1,1,9,1,133.0,1,0,0,1,0,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,143.0,1,38,38,9,9,138.8,1,0,0,1,0,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,Graduate +2,39,1,9147,1,1,140.0,1,37,37,6,10,131.8,0,0,0,1,0,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,1,130.0,1,4,1,2,9,120.0,0,0,0,0,0,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,Enrolled +1,1,4,9500,1,1,148.0,1,19,19,4,5,137.0,1,0,0,1,0,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,120.0,1,37,19,5,3,156.0,1,0,0,1,1,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9853,1,1,133.1,1,12,1,4,0,134.8,1,0,0,1,0,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,122.0,1,1,1,9,8,120.3,0,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,156.0,1,19,38,9,5,170.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,129.0,1,38,37,9,3,127.3,1,0,1,0,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,142.0,1,38,38,9,10,127.0,1,0,0,1,0,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,150.0,1,38,19,3,3,120.1,0,0,0,0,0,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,141.0,1,37,37,9,9,126.7,1,0,1,1,0,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,43,3,9147,1,1,127.0,21,3,37,3,3,117.9,1,0,0,1,0,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,1,120.0,1,1,19,4,7,110.0,0,0,0,1,1,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,Dropout +2,42,1,9254,1,1,136.0,1,2,2,134,112,130.0,1,0,0,1,1,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,Dropout +1,18,1,9119,1,1,122.0,1,19,1,90,3,116.1,1,0,1,0,1,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9500,1,1,120.0,1,2,4,4,5,136.6,0,0,0,1,1,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,Dropout +1,18,1,9070,1,1,143.0,1,38,38,7,5,141.6,0,0,0,1,0,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,Graduate +1,43,1,9119,1,1,140.0,1,37,38,5,7,146.5,0,0,0,1,1,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,125.0,1,19,19,9,9,121.5,1,0,0,1,0,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,1,0,0,1,0,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,159.0,1,3,3,2,2,165.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,127.0,1,3,1,2,9,119.3,1,0,0,1,0,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,Graduate +1,17,6,9238,1,1,117.0,1,1,38,4,7,114.6,0,0,0,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9119,1,1,148.0,1,19,19,9,8,129.8,0,0,0,0,1,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,Enrolled +1,17,4,9119,1,1,127.0,1,19,19,5,5,120.4,1,0,1,0,1,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9500,1,1,144.0,1,19,1,5,3,141.0,1,0,0,1,0,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,Graduate +1,17,3,9556,1,1,126.0,1,19,19,9,4,119.0,1,0,0,1,0,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,Dropout +1,1,4,9119,1,1,126.0,1,3,19,2,9,123.6,1,0,0,1,1,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,120.0,1,1,2,144,123,125.3,0,0,1,1,1,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9070,1,1,130.0,1,1,19,4,4,110.0,1,0,0,1,0,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,37,37,90,5,115.5,0,0,0,0,1,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,130.0,1,38,38,9,9,120.0,0,0,0,1,0,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9853,1,1,141.0,1,3,1,1,5,130.2,1,0,0,1,0,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,Enrolled +2,1,1,9500,1,1,156.0,1,1,1,9,10,135.5,0,0,0,1,0,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,Graduate +2,7,1,8014,0,3,170.0,1,19,19,4,4,170.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9147,1,1,134.0,1,37,19,9,8,126.3,1,0,0,1,0,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,122.0,1,12,12,5,7,126.6,1,0,0,1,0,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,38,38,9,7,138.8,1,0,0,1,0,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,132.0,1,37,37,5,7,127.5,1,0,0,1,0,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,Graduate +1,16,2,9238,1,1,130.0,1,37,37,5,6,126.9,1,0,0,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,110.0,1,3,2,3,3,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,127.0,1,2,19,4,5,121.8,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,12,133.1,1,38,19,9,8,138.3,1,0,1,0,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9147,1,19,133.1,1,3,1,3,5,153.2,1,0,1,1,0,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,37,19,5,9,130.0,1,0,0,1,0,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,2,9147,1,1,130.0,1,19,37,4,7,140.0,0,0,0,1,1,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,128.0,1,19,19,7,7,124.4,0,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,19,3,8,150.3,1,0,0,1,1,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,143.0,1,38,19,7,9,129.5,1,0,0,1,0,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,6,141.0,1,37,1,9,4,145.0,0,0,0,1,0,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,Graduate +1,17,1,9238,1,1,160.0,1,19,37,6,6,144.3,0,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,2,9238,1,1,133.1,1,19,19,4,5,120.6,1,0,0,1,0,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,3,116.5,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,127.0,1,1,1,3,4,130.2,1,0,0,1,1,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9254,1,1,131.0,1,38,36,9,9,124.0,1,0,0,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,5,9254,1,1,120.0,1,37,37,9,7,127.0,1,0,0,1,0,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,135.0,1,34,34,0,0,134.1,1,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9254,1,1,133.1,1,37,37,9,6,121.5,0,0,0,1,1,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,144.0,1,38,38,5,7,128.0,1,0,0,1,0,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,132.0,1,1,19,6,6,124.7,1,0,0,1,1,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,Graduate +1,17,2,9991,0,1,116.0,1,37,19,9,4,118.5,0,0,0,1,1,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,133.1,1,1,1,9,1,103.0,1,0,0,1,0,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,16,5,9085,1,1,134.0,1,19,37,8,8,123.9,1,0,0,1,1,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9773,1,1,114.0,1,37,38,9,5,107.4,1,0,0,0,1,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,38,37,5,7,120.0,1,0,0,1,0,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,135.0,1,1,38,4,6,122.1,0,1,1,0,1,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,1,150.0,1,37,37,7,5,143.0,0,0,0,1,0,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,Graduate +1,44,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,Graduate +4,39,1,9238,1,19,133.1,1,37,37,9,10,103.5,0,0,0,0,0,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,126.0,1,19,38,9,9,132.0,1,0,0,1,0,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,125.0,1,1,1,7,3,143.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9147,1,1,120.0,1,37,1,9,1,122.7,0,0,0,0,0,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,7,1,8014,0,3,124.4,1,37,34,0,0,130.0,0,0,0,1,0,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,Graduate +1,18,1,9085,1,1,106.0,1,1,19,3,5,104.6,0,0,0,0,1,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,Enrolled +1,44,1,9119,1,39,160.0,1,3,38,2,3,160.0,0,0,1,0,1,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,148.0,1,3,19,2,5,130.0,0,0,0,1,0,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,Enrolled +1,1,1,9130,1,1,133.0,1,1,37,9,9,123.2,1,0,0,1,0,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9500,1,1,130.0,1,19,1,9,4,128.8,1,0,0,1,0,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,149.0,1,19,1,9,9,137.8,1,0,0,1,1,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,Graduate +4,43,1,9670,1,1,150.0,1,37,37,9,6,110.0,0,0,0,1,0,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,Graduate +2,39,1,9119,1,1,110.0,1,19,19,0,5,137.0,0,0,1,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9556,1,1,122.0,1,19,19,3,10,113.3,1,0,0,1,0,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,140.0,1,1,19,4,5,127.5,0,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,128.0,1,37,37,5,5,124.5,1,0,0,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,39,150.0,6,5,4,1,1,150.0,0,0,0,1,0,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,131.0,1,38,37,7,7,127.2,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,130.0,1,37,37,9,6,126.5,1,0,0,1,0,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,116.0,1,19,37,90,5,116.7,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,Dropout +1,17,3,9853,1,1,140.0,1,38,38,5,7,126.7,1,0,0,1,0,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,4,9238,1,1,129.0,1,37,37,9,8,117.1,1,0,0,1,1,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,144.0,1,19,19,9,9,130.5,1,0,0,1,0,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,124.0,1,19,1,7,10,116.0,1,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,122.0,1,1,19,4,4,127.3,1,0,1,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,12,12,4,1,155.3,1,1,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +2,15,1,9773,1,1,133.1,41,37,37,9,6,100.0,0,0,0,1,0,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,138.0,41,1,1,9,9,126.5,1,0,0,1,0,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,Graduate +1,18,6,9500,1,1,142.0,1,38,37,9,5,128.0,1,0,0,0,0,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,3,1,2,3,140.0,1,0,0,1,0,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,Enrolled +1,42,1,9991,0,1,150.0,1,19,19,5,5,113.7,0,0,0,1,1,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,135.0,1,1,19,5,5,130.1,1,0,0,1,0,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9254,1,1,120.0,1,19,1,9,8,117.2,0,0,0,1,1,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,130.0,1,19,19,9,7,119.5,1,0,0,1,1,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,133.0,1,1,1,4,5,136.2,1,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,15,1,9147,1,1,133.1,21,1,3,192,3,100.0,0,0,1,1,1,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9670,1,1,112.0,1,37,1,7,0,110.6,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9238,1,1,117.0,1,19,19,9,9,117.0,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9991,0,1,140.0,1,1,37,9,8,154.5,0,0,0,1,0,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,97.0,1,0,0,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,119.0,1,37,37,5,4,118.0,1,0,0,1,1,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,112.0,1,19,38,5,7,107.1,1,0,0,1,0,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +2,18,2,8014,0,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,144.0,1,37,37,9,6,129.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,120.0,100,1,1,4,7,119.5,0,0,1,1,0,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,136.0,1,19,38,5,8,130.3,1,0,0,1,0,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,7,9,121.3,1,0,0,1,0,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,135.0,1,1,4,5,3,124.9,0,0,0,1,0,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,4,9670,1,1,128.0,1,38,38,3,7,121.0,1,0,0,1,0,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,15,1,9556,1,1,114.0,26,3,19,122,144,114.0,0,0,0,1,0,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9238,1,1,125.0,1,19,19,3,3,118.0,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,118.0,1,37,37,7,7,114.2,0,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,Enrolled +1,17,1,9147,1,1,115.0,1,19,37,5,7,112.9,1,0,0,0,1,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,120.0,1,19,37,9,9,118.3,0,0,1,0,1,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9119,1,10,133.1,1,34,37,0,0,128.8,1,0,0,1,1,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,115.0,1,19,38,5,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,137.0,1,37,37,9,9,132.8,1,0,0,1,0,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9003,1,1,148.0,1,19,37,9,9,131.6,1,0,0,1,1,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9773,1,1,161.0,1,1,19,4,7,148.4,0,0,0,1,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,43,1,9991,0,1,133.1,1,37,37,9,7,113.5,0,0,0,1,0,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,132.0,1,1,1,9,9,133.8,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9254,1,1,125.0,1,37,37,9,9,122.9,0,0,0,1,1,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,123.0,1,3,1,9,3,121.3,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,Enrolled +1,17,1,9991,0,1,154.0,1,38,38,4,5,134.1,0,0,0,1,0,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,Enrolled +1,44,1,9130,1,39,140.0,1,19,19,5,5,140.0,1,0,1,0,0,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,Enrolled +1,53,1,9085,1,42,170.0,1,1,19,4,7,170.0,0,0,0,1,0,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,Graduate +1,17,5,9147,1,1,131.0,1,19,38,3,10,119.8,1,0,0,1,0,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,141.0,1,19,19,9,9,126.0,1,0,0,1,0,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,Graduate +1,1,3,9500,1,1,137.0,1,19,19,5,4,131.5,1,0,0,1,0,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,118.0,1,19,1,9,3,113.5,1,0,1,1,0,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,100.0,1,37,37,99,99,100.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9130,1,1,120.0,6,1,3,9,2,120.0,0,0,1,1,0,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,127.0,1,19,19,5,5,129.8,1,0,0,1,0,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,134.0,1,37,37,9,9,129.8,1,0,0,1,0,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,121.0,1,37,37,5,9,116.5,1,0,0,1,0,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9070,1,1,117.0,1,19,37,5,5,131.0,1,0,1,0,1,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,125.0,1,1,38,9,7,119.8,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,5,9500,1,1,140.0,1,1,1,4,3,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,1,5,9254,1,1,101.0,1,3,19,3,9,98.9,1,0,0,1,1,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,130.0,1,37,38,7,9,117.8,0,0,1,1,0,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,128.0,1,34,19,3,0,141.0,1,0,0,0,0,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,150.0,1,38,37,9,9,130.8,0,0,0,1,1,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,125.0,1,1,19,4,7,116.6,0,0,0,1,1,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,Graduate +1,43,1,9670,1,1,130.0,1,34,34,0,0,114.8,0,0,0,1,1,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,Graduate +2,42,1,9003,1,1,120.0,1,3,1,2,2,113.3,0,0,0,1,1,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +4,39,1,9991,0,1,133.1,1,37,37,5,5,138.7,0,0,0,1,0,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,Dropout +1,39,1,9238,1,1,140.0,1,34,34,0,0,114.0,1,0,0,0,0,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9991,0,1,133.1,1,37,19,3,10,136.1,0,0,0,1,1,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9070,1,1,110.0,1,37,37,7,7,110.2,0,0,0,1,1,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,150.0,1,4,5,4,2,150.0,0,0,0,1,1,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,Enrolled +1,1,2,9119,1,1,149.0,1,38,38,5,5,141.0,0,0,0,1,1,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,Enrolled +1,42,1,9085,1,39,150.0,1,1,1,4,7,150.0,1,0,0,1,0,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,1,38,4,9,131.7,1,0,0,1,0,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,42,1,9853,1,1,120.0,1,1,37,5,5,113.9,1,0,0,1,0,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9085,1,1,130.0,1,37,19,9,7,130.0,1,0,0,1,0,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,Enrolled +1,17,4,9500,1,1,133.0,1,38,37,5,7,126.4,1,0,0,1,1,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,147.0,1,3,1,2,3,131.6,0,0,0,1,0,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,12,133.1,1,37,37,9,9,121.5,0,0,0,1,1,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,1,1,9991,0,1,150.0,1,37,37,9,9,131.8,0,0,0,0,0,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,43,4,8014,0,1,116.0,1,34,34,0,0,116.2,0,0,0,1,1,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,7,140.0,0,0,0,1,1,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9773,1,1,136.0,1,3,1,2,3,132.5,1,0,0,1,0,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,19,110.0,1,37,38,5,5,151.0,0,0,1,0,1,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,19,19,5,5,113.2,1,0,1,1,0,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,137.0,1,3,19,2,9,122.3,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +4,39,1,9254,1,1,120.0,1,37,19,9,9,131.0,1,0,0,1,1,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9556,1,1,123.0,1,19,19,4,9,113.8,1,0,0,1,0,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,150.0,1,3,37,4,7,139.5,0,0,0,1,1,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,145.0,1,38,37,3,9,138.4,1,0,0,0,0,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,39,1,8014,0,1,140.0,1,37,37,9,7,122.0,1,0,1,0,1,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,3,9991,0,1,120.0,1,37,37,9,9,128.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,6,9500,1,1,126.0,1,12,37,5,9,121.8,1,0,0,1,0,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,Dropout +2,39,1,9991,0,1,130.0,1,37,37,9,9,140.0,1,0,0,1,1,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,130.0,1,37,19,9,8,130.8,0,0,0,1,1,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,Enrolled +1,1,3,9070,1,1,125.0,1,19,38,9,9,125.4,1,0,0,1,0,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,132.0,1,38,38,4,9,119.1,0,0,0,1,0,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,Graduate +4,7,1,9147,1,3,130.0,1,19,1,5,5,130.0,0,0,0,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,130.0,1,19,19,7,7,121.6,1,0,0,1,0,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9773,1,1,126.0,1,37,38,5,5,129.5,1,0,1,0,0,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,133.0,1,38,38,5,5,123.2,0,0,0,1,0,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,140.0,1,37,37,9,9,121.0,0,0,0,1,0,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,3,9500,1,1,131.0,1,37,37,9,9,118.0,1,0,0,1,0,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,120.0,1,38,19,4,8,115.1,0,0,0,1,0,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,Enrolled +1,17,5,9773,1,1,111.0,1,19,12,7,3,115.9,1,0,0,1,0,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,135.0,1,1,19,9,7,123.5,1,0,0,1,0,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,37,4,9,130.0,1,0,0,1,0,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,Enrolled +1,44,1,9119,1,39,130.0,1,3,19,3,4,130.0,0,0,0,1,1,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,Enrolled +1,44,1,9147,1,39,130.0,22,2,37,2,8,130.0,0,0,1,0,1,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,119.0,1,37,37,9,6,119.0,0,0,1,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9500,1,1,142.0,1,38,37,9,8,130.8,1,0,0,1,0,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,136.0,1,38,1,9,4,129.7,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,140.0,1,19,19,4,4,140.0,1,0,0,1,1,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,19,133.1,1,1,19,4,10,114.0,0,0,0,1,1,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +1,17,5,9670,1,1,125.0,1,19,30,7,7,118.4,1,0,0,1,0,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,135.0,1,19,19,9,10,122.9,1,0,0,1,0,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,100.0,1,37,37,9,9,108.0,1,0,0,1,1,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,127.0,1,37,37,9,9,119.3,1,1,0,1,1,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,133.0,1,38,19,9,10,125.0,1,0,0,1,0,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,116.0,1,3,3,3,3,110.1,1,0,0,1,1,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,133.1,1,1,1,5,8,123.0,1,0,0,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,144.0,1,37,37,9,3,150.5,0,0,0,1,0,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,3,1,2,4,130.2,0,0,0,1,1,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,116.0,1,38,37,9,6,109.7,1,0,0,1,0,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,Graduate +1,18,3,9853,1,1,128.0,1,38,37,5,9,116.8,1,0,0,0,1,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,150.0,1,37,37,4,9,132.1,1,0,1,1,0,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,160.0,1,1,19,4,6,155.7,1,0,0,1,0,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,130.0,1,19,1,9,9,131.9,0,0,0,1,0,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,126.0,1,3,3,2,2,121.1,0,0,1,1,0,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,38,38,7,7,147.0,0,0,0,1,0,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,137.0,1,37,37,9,9,126.2,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,38,37,5,5,137.1,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,143.0,1,2,37,1,1,133.2,1,0,0,1,0,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,Enrolled +1,17,5,9070,1,1,122.0,1,19,38,5,7,119.6,0,0,1,0,0,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,137.0,1,19,38,9,9,127.2,1,0,0,1,0,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,110.0,1,1,1,4,4,125.9,0,0,0,1,1,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,130.0,1,1,38,5,9,118.1,0,0,1,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9853,1,1,130.0,1,37,19,9,5,102.5,0,0,0,1,0,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.0,1,19,1,9,1,122.2,0,0,0,1,0,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,39,140.0,1,3,3,2,2,140.0,1,0,0,1,0,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,134.0,1,37,38,9,9,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,1,1,37,4,7,110.0,0,0,0,1,1,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,Dropout +1,15,1,9085,1,1,133.1,41,3,3,4,2,101.3,0,0,0,1,0,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,113.0,1,1,1,5,4,106.7,1,0,1,1,0,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,Dropout +2,39,1,9991,0,19,133.1,1,37,37,5,5,111.9,1,0,0,1,1,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9853,1,1,134.0,1,19,38,4,8,122.1,1,0,0,1,0,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9853,1,1,133.0,1,19,37,4,9,130.2,1,0,0,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,127.0,1,19,19,5,5,160.0,0,0,0,1,1,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,Graduate +1,7,1,9500,1,3,130.0,1,37,38,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,140.0,1,19,38,7,7,136.5,1,0,0,1,0,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,Graduate +2,39,1,9773,1,19,133.1,1,37,37,9,6,110.0,0,0,0,0,0,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,Dropout +2,39,1,8014,0,1,120.0,1,34,34,99,99,101.8,0,0,0,0,0,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,135.0,1,1,1,4,7,129.8,1,0,0,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,131.0,1,37,38,5,5,128.9,0,0,0,1,0,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,Graduate +1,1,4,9070,1,1,139.0,1,3,19,1,5,138.3,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9500,1,1,122.0,1,1,1,3,7,114.3,1,0,0,1,1,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,150.0,1,37,37,9,7,136.5,1,0,0,1,0,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,3,1,2,8,121.4,0,0,0,1,1,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,117.0,1,19,19,194,193,117.4,1,0,0,1,0,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,Enrolled +2,39,1,9085,1,1,133.1,1,36,36,99,5,128.2,0,0,0,0,0,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,121.0,1,3,1,2,3,114.0,0,0,0,1,1,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,Enrolled +1,51,1,9853,1,1,139.0,1,1,1,4,10,134.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9070,1,1,137.0,1,1,1,3,1,141.2,1,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,133.1,1,37,37,6,3,140.0,0,0,1,1,1,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,1,9147,1,1,126.0,1,37,37,4,7,116.9,0,0,0,1,1,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,44,1,9130,1,39,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,1,9991,0,1,130.0,1,37,37,9,9,128.2,0,0,0,1,0,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,131.0,1,19,9,5,3,118.4,0,0,0,1,0,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,138.0,1,19,19,3,3,131.0,1,0,0,1,0,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,1,130.0,1,37,12,9,8,129.4,1,0,1,0,1,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,9991,0,1,134.0,1,37,37,9,9,113.7,0,0,0,1,0,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9853,1,1,117.0,1,38,38,9,7,114.6,1,0,0,1,0,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,145.0,1,3,3,4,4,153.1,1,0,0,1,0,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9085,1,1,130.0,1,19,38,4,9,130.0,1,0,0,0,0,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9119,1,1,146.0,1,37,37,9,9,148.5,1,0,0,1,1,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,136.0,1,1,1,4,4,124.1,0,0,0,1,0,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,100.0,1,37,38,9,4,140.0,0,0,0,1,1,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,Enrolled +1,44,1,9003,1,39,180.0,1,1,3,4,2,180.0,0,0,0,1,0,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,Graduate +1,15,1,9773,1,1,120.0,26,19,19,4,5,120.0,1,0,0,1,0,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,141.0,1,4,19,4,10,100.0,0,0,0,1,1,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,1,150.0,1,29,10,6,6,150.0,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,5,9254,1,1,122.0,1,1,37,9,7,119.6,1,0,0,1,0,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,128.0,1,19,38,9,7,124.2,1,0,0,1,1,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9130,1,1,172.0,1,19,19,9,9,163.3,1,0,0,1,0,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,129.0,1,38,37,5,5,142.0,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,100.0,1,1,3,9,10,120.0,0,0,1,0,1,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,Graduate +1,1,3,9238,1,1,135.0,1,1,12,9,10,121.0,1,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,136.0,1,2,2,3,3,120.0,1,0,0,1,1,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,6,9147,1,1,143.0,1,38,37,9,9,128.7,1,0,0,1,1,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9500,1,1,126.0,1,37,37,7,7,126.2,1,0,0,1,0,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,135.0,1,19,19,4,3,135.0,1,0,0,1,1,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,Enrolled +1,1,2,9254,1,1,132.0,1,1,19,9,9,129.9,1,0,0,1,0,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,120.0,1,34,34,0,0,104.0,0,0,0,1,0,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,9,133.1,1,37,37,8,10,100.0,1,0,0,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,43,1,9147,1,1,130.0,1,19,37,7,10,138.0,0,0,0,1,0,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,Graduate +1,17,2,9119,1,1,120.0,1,1,19,9,8,117.2,0,0,0,1,1,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,133.1,1,1,12,4,5,116.5,0,0,0,1,1,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,105.0,1,19,19,6,6,106.1,1,0,0,1,0,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,118.0,1,1,19,4,8,118.7,0,0,0,1,1,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,6,9500,1,1,140.0,1,3,19,3,8,129.0,1,0,0,1,0,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,168.0,1,19,19,4,4,171.2,0,0,0,1,1,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,133.0,1,19,9,0,0,121.5,1,0,0,1,0,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,177.0,1,1,38,3,9,162.3,0,0,0,1,0,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,130.0,1,38,38,2,9,124.8,0,0,0,1,0,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,136.0,1,38,1,5,6,133.9,1,0,0,1,0,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,154.0,1,1,1,5,3,144.9,0,0,0,1,1,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,Graduate +1,44,1,9119,1,39,150.0,1,19,37,9,9,150.0,1,0,1,1,1,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,Dropout +1,1,4,9254,1,1,132.0,1,12,19,9,9,124.7,1,0,0,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,33,1,1,100.0,41,38,37,9,8,100.0,0,0,1,0,1,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,120.0,1,4,1,2,9,113.4,0,0,0,1,0,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,134.0,1,1,19,9,9,136.1,1,0,0,1,0,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9500,1,1,150.0,1,1,19,5,3,140.0,0,1,0,1,0,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,129.0,1,37,37,9,9,128.8,1,0,0,1,0,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +2,39,1,9500,1,1,100.0,1,37,38,4,4,130.0,0,0,0,1,1,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,Enrolled +1,1,1,9773,1,1,140.0,1,19,37,9,6,135.8,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,40,150.0,1,19,19,9,5,150.0,0,0,1,0,0,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,148.0,1,1,37,4,8,132.0,1,0,0,1,0,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,Graduate +1,7,1,9119,1,40,140.0,1,3,1,2,5,140.0,0,0,0,1,1,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,163.0,1,19,1,9,7,143.1,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,3,9070,1,1,164.0,1,1,1,5,3,161.2,1,0,0,1,0,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,Graduate +1,1,6,9773,1,1,141.0,1,30,37,7,7,128.4,1,0,1,0,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,Dropout +1,43,2,9147,1,1,126.0,1,1,19,3,3,100.0,1,0,0,1,1,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,141.0,1,19,19,5,10,135.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,4,9670,1,1,117.0,1,3,3,4,4,113.2,0,0,0,1,1,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +2,43,1,9991,0,3,140.0,1,37,19,9,4,140.0,0,0,1,1,0,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,134.3,0,0,0,1,1,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,137.0,1,38,19,9,7,125.1,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,6,134.0,0,0,0,1,0,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,123.0,1,37,37,7,7,119.7,0,0,0,1,1,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9147,1,1,120.0,1,37,37,9,9,104.7,1,0,0,1,1,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,137.0,62,1,1,9,9,129.3,0,0,0,1,0,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,8014,0,1,122.0,1,37,19,9,9,123.8,0,0,0,1,0,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,Graduate +2,39,2,8014,0,1,100.0,1,34,34,0,0,100.0,1,0,0,1,0,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,Graduate +2,1,1,9991,0,2,120.0,1,37,37,6,3,129.2,0,0,0,1,0,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,150.0,1,3,19,2,6,150.0,0,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9991,0,1,123.0,1,1,3,4,2,113.2,0,0,0,0,1,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,Dropout +1,1,3,9773,1,1,130.0,1,1,37,4,5,120.9,1,0,1,1,0,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,146.0,1,19,3,4,9,127.0,0,0,0,1,1,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,160.0,1,19,38,9,9,160.0,1,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9085,1,39,150.0,1,38,37,6,6,150.0,1,0,0,1,0,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,136.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,150.0,1,37,19,9,4,135.6,0,0,0,1,0,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,6,171,1,1,134.0,1,19,37,5,5,126.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +4,39,1,9773,1,38,133.1,1,19,19,7,9,133.0,0,0,0,1,0,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,Enrolled +1,17,2,9119,1,1,120.0,1,10,12,9,9,120.4,1,0,0,1,1,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,4,9254,1,1,113.0,1,38,19,7,7,107.4,1,0,0,1,0,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,137.0,1,1,19,4,5,136.3,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,142.0,1,37,37,9,7,132.7,1,0,0,1,0,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,Graduate +1,18,5,9085,1,1,121.0,1,5,3,2,3,111.9,1,0,0,1,0,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,9,133.1,1,34,36,0,90,107.5,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,19,133.1,1,19,37,6,8,149.5,0,0,0,1,1,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9147,1,1,120.0,1,1,37,4,9,113.4,1,0,0,1,1,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,130.0,1,37,38,9,5,130.5,1,0,0,1,0,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,153.0,1,1,19,9,10,147.8,0,0,0,1,0,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,159.0,1,3,1,4,4,162.2,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,122.0,1,37,37,5,6,114.3,0,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,2,9556,1,19,133.1,1,37,37,3,7,117.8,0,0,0,1,0,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,132.0,1,38,1,9,9,124.3,1,0,0,1,0,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,141.0,1,19,19,9,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,Graduate +1,17,1,9500,1,1,152.0,1,19,19,4,9,132.5,0,0,0,1,1,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,Graduate +1,17,1,9991,0,40,127.0,1,37,37,6,6,124.9,0,0,0,1,0,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,133.1,1,1,19,4,6,106.0,1,0,0,1,0,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,19,37,4,7,150.0,1,0,0,1,0,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9254,1,1,125.0,1,1,1,191,193,114.5,0,0,0,1,1,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,134.0,1,19,19,4,7,131.0,1,0,0,1,1,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,134.0,1,19,19,9,9,125.8,1,0,0,1,0,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,Graduate +1,17,1,171,1,1,125.0,1,37,37,7,9,134.1,1,0,0,1,1,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,Dropout +1,51,1,9254,1,1,120.0,1,38,38,9,9,118.0,0,0,0,1,0,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,155.0,1,1,1,4,3,140.5,1,0,0,1,0,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,125.0,1,1,1,4,90,125.4,1,0,0,1,1,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,1,5,5,126.3,0,0,0,1,1,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,Graduate +1,39,1,9147,1,1,140.0,1,37,3,9,2,135.1,0,0,0,1,1,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,171,1,1,122.0,1,19,12,5,9,127.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,2,9670,1,1,150.0,1,34,34,0,0,107.0,1,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,3,130.0,1,19,19,3,9,130.0,0,0,0,0,1,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,Dropout +1,39,1,33,1,1,133.1,1,19,37,9,9,96.1,0,0,0,1,1,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,Dropout +2,42,1,9500,1,2,130.0,1,37,37,9,9,130.0,0,0,0,1,0,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,Graduate +1,18,1,9238,1,1,137.0,1,19,38,5,8,137.4,1,0,0,1,0,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9254,1,1,140.0,1,19,1,9,8,140.9,1,0,0,1,0,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,132.0,1,1,2,9,3,128.2,1,0,0,1,0,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9085,1,1,126.0,1,1,3,5,5,123.9,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,19,133.1,1,37,37,9,7,106.5,0,0,0,1,0,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,132.0,1,37,19,7,7,132.4,1,0,0,1,0,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,139.0,1,37,38,9,9,126.1,0,0,0,1,0,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,136.0,1,19,38,9,9,123.0,1,0,0,1,0,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,1,140.0,1,0,0,1,1,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,123.0,1,19,19,9,8,134.0,0,0,0,1,0,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,130.0,1,38,19,9,4,118.4,0,0,1,1,0,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,126.0,1,1,1,9,9,116.2,0,0,1,0,1,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,19,1,7,10,105.0,0,0,0,1,1,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,Dropout +1,17,1,9119,1,1,130.0,1,19,19,7,9,121.3,1,0,0,1,1,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,Dropout +1,43,1,9500,1,19,133.1,1,34,34,0,0,110.0,1,0,0,1,1,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,Dropout +1,1,3,9070,1,1,139.0,1,1,38,4,7,142.2,1,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,142.0,1,38,1,5,4,136.6,0,0,0,1,0,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,Graduate +1,17,2,9670,1,1,128.0,1,37,38,5,8,121.7,0,0,0,1,1,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,140.0,1,1,3,9,4,140.0,0,0,1,0,0,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,125.0,1,19,19,9,10,122.0,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,8014,0,1,130.0,1,37,37,9,8,103.5,0,0,0,1,0,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,3,9085,1,1,117.0,1,19,38,5,7,111.1,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,42,1,9085,1,39,140.0,1,19,3,9,1,159.9,1,0,0,1,0,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9254,1,1,112.0,1,37,37,6,6,106.1,1,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9070,1,1,117.0,1,5,1,2,10,120.0,1,0,0,1,0,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,Enrolled +1,7,1,9556,1,2,130.0,1,37,37,9,9,130.0,1,0,0,1,0,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,40,140.0,1,1,19,9,9,139.0,0,0,0,1,0,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,10,130.0,0,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,9070,1,1,135.0,1,3,1,3,5,121.8,0,0,0,1,0,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,135.0,1,19,3,9,4,121.5,1,0,0,1,0,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,136.0,1,19,38,4,8,125.5,1,0,0,1,0,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,37,4,8,132.4,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,142.0,1,34,38,4,7,127.3,0,0,0,1,0,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,15,1,9147,1,1,130.0,26,1,1,2,3,130.0,0,0,0,1,0,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,17,2,8014,0,1,133.0,1,19,1,5,5,119.7,1,0,0,1,0,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,6,133.1,1,1,1,90,3,107.0,1,0,0,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,130.0,1,1,1,4,5,123.8,0,0,0,1,0,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9670,1,1,130.0,1,38,37,5,5,123.4,1,0,0,1,0,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,130.0,1,37,36,4,90,127.6,0,0,0,1,1,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +2,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,Enrolled +1,1,5,9070,1,1,122.0,1,37,37,9,9,124.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,3,120.0,1,37,37,9,9,141.0,0,0,0,1,0,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,Dropout +1,43,1,33,1,1,134.0,1,37,37,1,1,100.0,1,0,0,1,1,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9773,1,1,125.0,1,19,37,9,5,122.2,0,0,0,0,0,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,113.4,0,0,0,1,0,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,142.0,1,19,39,5,4,141.7,0,0,0,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,137.0,1,1,38,5,8,125.8,0,0,0,0,0,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,141.0,1,1,37,4,3,126.8,1,0,0,1,0,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Graduate +1,17,4,9500,1,1,133.0,1,4,4,4,4,130.7,1,0,0,1,0,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,Graduate +1,1,2,9500,1,1,119.0,1,1,1,4,4,115.2,1,0,0,1,0,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,128.0,1,1,1,4,10,118.9,1,0,0,1,0,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,130.0,1,37,38,7,8,119.3,1,0,0,1,0,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,148.0,1,3,1,4,5,132.8,0,0,0,1,0,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,143.0,1,37,19,4,4,123.3,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9147,1,1,130.0,1,34,34,99,99,109.8,1,0,0,0,1,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9085,1,2,140.0,1,38,38,9,10,150.0,0,0,0,1,1,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9670,1,42,110.0,1,1,19,9,9,114.2,0,0,0,1,1,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,Graduate +1,53,1,9147,1,42,140.0,1,3,4,2,1,140.2,0,0,0,1,0,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,145.0,1,19,38,9,7,136.3,1,0,0,1,0,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,38,37,9,9,154.4,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,127.0,1,38,38,9,6,122.8,0,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,120.2,1,0,0,1,1,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,124.0,1,3,1,2,5,121.6,0,0,0,1,0,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Enrolled +1,17,5,9853,1,1,132.0,1,37,38,5,6,119.1,1,0,0,1,0,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,Graduate +1,17,6,9670,1,1,110.0,1,1,19,4,10,111.3,0,0,0,1,1,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,120.0,1,38,37,9,9,114.8,1,1,0,1,0,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,140.0,1,19,19,9,3,130.0,0,0,0,1,1,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9254,1,1,120.0,1,37,37,9,9,115.1,1,0,0,0,1,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,142.0,1,1,37,5,7,128.0,0,0,0,1,0,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,168.0,1,37,1,9,4,133.4,1,0,0,1,0,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,Graduate +1,43,4,9085,1,1,133.1,1,34,34,99,99,125.2,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9147,1,1,123.0,1,1,1,9,7,117.4,1,0,0,1,0,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,Graduate +1,1,6,9119,1,1,135.0,1,2,1,3,5,123.5,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,Enrolled +1,17,2,9254,1,1,118.0,22,19,37,9,9,110.3,1,0,0,0,0,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,126.0,1,1,19,4,4,116.9,0,0,0,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,117.0,1,1,38,3,9,109.3,0,0,1,0,0,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,133.1,1,37,37,9,8,113.0,0,0,0,1,0,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,Graduate +2,42,1,9991,0,6,123.0,1,37,37,9,9,123.0,0,0,0,1,1,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9003,1,1,100.0,1,37,37,9,5,110.0,0,0,0,1,0,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,127.0,1,37,38,9,5,131.2,1,0,0,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,110.0,1,37,37,9,7,112.5,1,0,0,1,0,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,126.0,1,19,37,7,5,119.4,0,0,0,1,0,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,121.0,1,1,1,4,3,120.5,1,0,0,1,0,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,134.0,1,1,1,3,3,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,3,9500,1,1,150.0,1,19,38,1,1,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,5,9119,1,1,124.0,11,4,12,2,9,119.5,1,0,0,1,1,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,117.0,1,19,1,4,7,112.1,0,0,0,1,0,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,Enrolled +1,1,5,9500,1,1,132.0,1,37,37,7,7,120.3,1,0,0,1,0,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,1,110.0,1,37,37,90,5,150.0,1,0,0,1,1,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9773,1,1,130.0,1,38,37,5,3,122.3,1,0,1,0,0,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9556,1,1,118.0,1,19,38,9,9,116.3,1,0,0,1,0,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,120.0,1,3,3,3,3,111.6,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,131.0,1,37,19,9,9,134.5,1,0,0,1,1,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Enrolled +1,17,2,9556,1,1,133.1,1,37,38,9,8,106.0,1,0,0,1,0,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,2,110.0,1,37,37,9,9,112.9,0,0,0,1,0,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,2,9773,1,1,126.0,1,19,38,9,8,118.7,1,0,0,1,0,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,140.0,1,1,1,3,3,127.6,1,0,0,1,0,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,163.0,1,19,1,5,10,146.6,1,0,1,1,0,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,39,151.0,1,19,37,4,7,151.0,0,0,1,1,0,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,165.0,1,19,37,5,5,142.3,0,0,0,1,0,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9773,1,19,133.1,1,19,1,7,9,115.0,1,0,1,0,1,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,Dropout +1,1,2,9556,1,1,130.0,1,1,38,3,8,119.5,1,0,0,1,0,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,Graduate +1,17,3,171,1,1,125.0,1,3,39,2,5,117.0,1,1,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9147,1,1,133.0,1,19,1,5,10,121.8,0,0,0,1,1,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9119,1,1,131.0,1,1,3,9,10,123.7,1,0,0,1,1,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,148.0,1,37,38,9,8,133.0,1,0,0,1,0,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9254,1,1,120.0,1,3,19,3,9,114.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9773,1,1,114.0,1,1,1,9,9,111.6,1,0,0,1,0,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,115.0,1,38,1,9,8,118.5,0,0,0,1,1,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,2,5,127.0,0,0,0,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,117.0,1,1,1,4,7,109.3,1,0,0,1,0,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,9,9,138.2,0,0,1,0,0,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,125.0,1,1,1,3,3,114.5,0,0,0,1,1,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,44,1,9147,1,39,130.0,1,19,1,9,3,130.0,0,0,0,1,0,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,145.0,1,38,19,4,9,127.9,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,128.0,1,37,37,9,8,124.3,1,0,0,1,0,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,Graduate +1,18,3,9070,1,1,138.0,1,38,37,9,7,125.1,1,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,5,9119,1,1,131.0,1,19,37,9,7,123.3,1,0,0,1,1,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,130.0,1,37,19,9,8,106.2,1,0,0,1,0,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,131.0,1,19,38,4,5,132.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9003,1,1,120.0,1,37,37,5,9,120.0,1,0,0,1,1,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,132.0,1,4,39,2,2,136.6,1,0,0,1,0,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,Enrolled +1,7,1,9500,1,40,170.0,1,1,1,9,4,170.0,0,0,0,1,0,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,Graduate +1,16,1,9003,1,1,147.0,1,1,37,4,9,140.7,1,0,1,1,0,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,125.0,1,1,1,4,8,115.6,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,150.0,1,37,37,9,6,138.5,0,0,0,1,0,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,2,9991,0,1,143.0,1,5,1,4,4,131.5,0,0,0,1,1,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,9556,1,1,133.1,6,3,3,4,4,169.2,0,0,1,0,0,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,2,9556,1,1,133.1,1,1,1,9,10,100.5,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,120.0,1,19,38,9,7,117.9,1,0,0,1,0,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,146.0,1,1,38,9,9,135.5,1,0,1,1,0,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,Enrolled +1,1,3,9254,1,1,122.0,1,19,38,3,10,114.3,1,0,0,1,0,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,9130,1,1,130.0,1,2,3,9,1,117.6,0,0,0,1,1,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,Enrolled +4,43,4,9991,0,12,133.1,1,37,37,9,9,153.0,0,0,0,0,0,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,2,9500,1,1,135.0,1,38,37,9,5,125.3,1,0,0,1,0,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,38,37,9,9,133.0,0,0,0,1,0,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,129.0,1,38,37,4,6,128.0,0,0,0,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,128.0,1,2,19,2,4,123.3,1,0,0,1,0,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,130.0,1,19,3,4,2,159.0,0,0,0,1,0,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,Graduate +2,7,1,8014,0,3,130.0,1,19,38,3,7,130.0,0,0,0,1,0,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,116.0,1,19,37,3,3,109.0,1,0,0,1,0,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,123.0,1,1,1,3,9,116.7,1,0,0,1,0,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,144.0,1,19,19,4,4,130.7,1,0,0,1,0,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,42,1,9500,1,1,100.0,1,19,37,5,7,134.3,1,0,0,1,0,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,143.0,1,1,19,4,4,129.9,0,0,0,1,0,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,19,133.1,1,19,37,7,9,137.2,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9853,1,1,123.0,1,19,19,9,7,117.4,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,144.0,1,19,19,5,5,130.3,1,0,0,1,0,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,137.0,1,1,19,4,7,126.7,1,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,4,9773,1,1,124.0,1,3,12,2,9,137.0,1,0,0,1,1,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,135.0,1,37,37,9,8,123.0,1,0,0,1,0,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,123.0,1,38,37,9,7,120.6,1,0,0,0,0,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,Dropout +2,2,1,9147,1,2,120.0,1,37,37,9,9,120.0,0,0,0,0,1,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,103.0,1,1,3,2,2,100.6,1,1,0,1,0,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,126.0,1,3,1,2,8,123.9,1,0,0,1,0,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,Enrolled +1,17,4,9500,1,1,136.0,1,3,3,2,2,132.5,1,0,0,1,0,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,114.0,1,3,29,3,5,111.9,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,125.0,1,19,1,9,9,130.6,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,147.0,1,37,38,9,5,134.8,1,0,0,1,0,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,131.0,1,1,19,9,9,130.3,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,118.0,1,3,1,2,5,110.0,1,0,0,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,130.0,1,19,19,4,10,116.8,0,0,0,1,0,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,Graduate +1,43,1,8014,0,6,133.1,1,34,34,0,0,100.0,0,0,1,1,0,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9670,1,12,170.0,1,1,37,3,5,110.0,0,0,0,1,1,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,Graduate +2,1,1,9991,0,3,160.0,1,1,3,4,9,137.3,0,0,0,1,0,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,108.0,1,19,1,5,5,107.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,121.0,1,3,3,2,2,112.3,1,0,1,0,0,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,Dropout +1,1,2,9773,1,1,138.0,1,19,1,9,3,133.5,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,136.0,1,38,38,9,9,121.7,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,132.0,1,38,37,9,7,122.0,1,0,0,1,0,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9003,1,1,125.0,1,3,3,2,2,100.0,0,0,0,1,1,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,137.0,1,1,1,1,5,131.8,0,0,0,1,0,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,140.0,1,37,37,9,9,148.0,1,0,0,0,1,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,127.0,1,3,1,3,7,137.2,1,0,0,1,0,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,150.0,1,37,19,9,9,150.0,0,0,0,1,1,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,Graduate +1,43,4,171,1,1,136.0,1,37,37,9,9,123.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,162.0,1,37,19,9,8,142.8,0,0,1,1,0,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,127.0,1,1,38,5,7,123.5,1,0,0,1,0,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,133.1,1,19,37,9,9,130.0,0,0,0,0,0,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,Graduate +1,17,2,9070,1,1,121.0,1,1,19,144,144,111.9,1,0,0,1,1,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,115.0,1,19,37,9,9,114.3,0,0,0,1,1,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,Dropout +1,10,1,9254,1,1,115.0,24,3,1,9,9,116.1,1,0,0,1,0,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,143.0,1,19,3,4,4,147.2,0,0,0,1,0,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,160.0,1,1,38,4,4,160.0,1,0,0,1,1,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,Graduate +2,1,1,9238,1,1,134.0,1,37,37,5,5,120.4,0,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,38,37,9,4,120.0,0,0,0,1,1,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Graduate +1,18,1,9119,1,1,108.0,1,1,1,4,3,105.6,1,0,0,1,1,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,137.0,1,37,37,9,9,141.0,0,0,0,1,1,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9254,1,1,113.0,1,1,2,5,3,106.7,1,0,1,1,1,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,16,1,9085,1,1,140.0,1,1,1,9,9,127.1,1,0,0,1,0,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,Graduate +1,53,1,9238,1,42,140.0,1,37,37,9,10,136.9,1,0,0,1,0,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,7,134.5,0,0,0,1,0,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,2,9773,1,1,125.0,1,19,1,4,5,122.2,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9070,1,1,134.0,1,1,19,3,3,127.7,1,0,0,0,0,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,96.0,1,38,37,6,4,96.0,1,0,0,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,Dropout +1,10,1,9085,1,1,134.0,1,37,37,5,5,134.0,1,0,0,1,0,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,143.0,1,1,3,3,3,149.0,1,0,0,1,0,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,Dropout +1,18,3,9070,1,1,142.0,1,1,37,4,7,130.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,7,1,9003,1,3,140.0,1,3,19,2,10,140.0,0,0,0,0,1,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,151.0,1,38,37,9,5,138.4,1,0,0,1,0,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,143.0,1,19,19,4,4,135.3,1,0,0,1,0,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,133.0,1,1,19,9,9,132.0,0,0,0,1,1,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,19,133.1,1,37,37,9,5,135.5,0,0,0,1,0,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9254,1,1,134.0,1,37,37,9,9,133.3,1,0,1,1,0,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,3,9085,1,1,135.0,1,3,2,4,3,121.0,1,0,0,1,0,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,140.0,1,1,1,4,4,123.5,1,0,0,1,0,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,188.0,1,3,3,2,2,178.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9238,1,1,126.0,1,30,19,0,2,121.5,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,131.0,1,3,19,5,5,127.2,1,0,0,1,0,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,Graduate +1,17,4,9853,1,1,143.0,1,37,37,9,5,127.3,1,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,111.0,1,19,38,9,9,110.7,1,0,0,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,140.0,1,19,38,9,7,125.7,1,0,0,1,1,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,6,9500,1,1,126.0,1,19,37,3,9,119.4,1,0,0,1,0,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,131.0,1,1,1,4,9,122.3,0,0,0,1,1,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,128.0,1,1,19,9,8,100.0,1,0,0,1,0,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,138.0,1,19,19,5,1,130.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,1,140.0,1,3,3,1,1,140.0,1,0,0,1,0,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,3,130.0,1,1,19,5,9,130.0,0,0,0,1,1,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,131.0,1,38,1,5,7,131.0,1,0,0,1,1,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,19,133.1,1,19,19,9,7,140.0,0,0,1,0,0,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,133.1,1,37,37,9,9,126.5,0,0,0,1,0,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9500,1,1,132.0,1,37,37,9,7,128.3,1,0,0,1,0,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,Graduate +1,16,1,171,1,1,145.0,1,3,3,3,3,155.0,1,0,0,1,0,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,Enrolled +4,1,1,9991,0,1,140.0,1,37,37,9,7,139.0,0,0,0,1,0,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9070,1,1,152.0,1,39,39,3,3,134.2,1,0,0,1,1,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,141.0,1,19,19,7,9,139.8,0,0,0,1,0,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,Graduate +1,1,4,9670,1,1,133.0,1,1,2,4,7,121.1,1,0,0,1,0,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,Graduate +1,15,1,9147,1,1,135.0,26,1,1,9,7,135.0,0,0,1,1,1,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,Enrolled +2,1,1,9991,0,1,144.0,1,19,19,9,9,151.4,0,0,0,1,0,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,18,4,9853,1,1,118.0,1,19,37,9,6,111.4,1,0,1,0,0,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9500,1,1,134.0,1,38,1,9,6,133.5,1,0,0,1,1,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,37,37,9,6,107.0,0,0,0,1,1,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,141.0,1,38,38,9,9,128.4,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,133.0,1,1,1,9,9,128.5,1,0,0,1,0,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,40,120.0,1,3,3,4,2,125.0,0,0,0,1,0,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,150.0,1,37,38,3,7,134.5,0,0,0,1,0,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,127.0,1,3,19,4,4,116.9,0,0,0,1,1,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,136.0,1,2,38,143,163,129.7,1,0,0,1,1,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,159.0,1,1,1,3,3,151.0,1,0,0,1,0,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,165.0,1,37,38,9,8,152.4,1,0,0,1,0,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,6,9500,1,1,139.0,1,1,1,4,4,124.5,1,0,0,1,0,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,134.0,1,1,1,5,3,128.4,1,0,0,1,0,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,133.0,1,2,1,3,4,136.2,1,0,0,1,0,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,120.0,1,19,1,8,7,115.1,1,0,0,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,131.0,1,1,39,5,3,122.6,1,0,0,1,0,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,8014,0,1,130.0,1,1,1,9,9,118.1,0,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,Graduate +1,39,9,9991,0,1,120.0,1,38,38,9,5,144.8,0,0,0,1,1,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9500,1,19,133.1,1,37,37,9,9,129.0,1,0,0,1,0,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,138.0,1,1,19,4,7,123.0,1,0,1,0,0,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,143.0,1,1,37,9,9,135.0,1,0,0,1,0,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,120.0,1,19,1,9,3,120.0,1,0,0,1,1,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,162.0,1,37,1,9,9,165.2,1,0,0,1,0,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,142.0,1,37,37,5,5,131.3,1,0,0,1,0,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,Graduate +1,1,3,171,1,1,125.0,1,38,37,4,9,115.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,120.0,1,38,37,5,3,110.5,0,0,0,1,0,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,Graduate +1,42,1,9773,1,6,120.0,1,34,34,0,0,122.0,1,0,0,1,0,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,162.0,1,1,38,4,5,138.6,1,0,0,1,0,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,152.0,1,1,1,4,4,141.0,1,0,0,1,0,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,139.0,1,3,19,3,5,120.8,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,135.0,1,1,1,3,5,130.1,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9670,1,1,127.0,1,3,3,1,1,121.4,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,135.0,1,1,1,1,1,131.5,0,0,0,1,1,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,Enrolled +1,17,3,9670,1,1,147.0,1,37,37,8,8,128.8,0,0,1,1,0,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,133.1,41,38,38,9,8,134.8,0,0,0,1,0,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,90,8,128.2,0,0,0,1,0,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,131.0,1,1,37,4,4,126.1,1,0,0,1,0,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,9,9,125.3,1,0,0,1,1,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,Dropout +2,39,1,8014,0,3,110.0,1,37,37,9,9,160.5,0,0,0,1,0,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,138.0,1,38,1,9,4,127.5,1,0,0,1,0,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,Enrolled +1,39,1,9238,1,1,170.0,1,38,19,9,9,140.0,1,0,0,1,0,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,1,19,4,10,142.3,1,0,0,1,0,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,154.0,1,38,37,9,9,140.4,0,0,0,1,0,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,133.1,41,19,1,9,9,105.0,1,0,0,0,0,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +2,44,1,9085,1,39,160.0,1,37,37,192,192,160.0,0,0,0,1,0,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,141.0,1,38,38,9,9,142.3,1,0,0,1,0,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,119.0,1,37,37,7,7,112.0,1,0,0,0,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,137.0,1,37,37,9,9,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,Graduate +4,39,1,9670,1,1,100.0,1,37,37,4,10,120.0,0,0,1,1,0,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,130.0,1,3,3,2,2,131.1,0,0,0,1,1,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,120.0,1,1,19,9,3,116.9,1,0,1,0,1,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,42,1,9500,1,1,100.0,1,1,19,4,8,136.0,1,0,0,1,0,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,Graduate +1,1,2,171,1,1,125.0,1,38,19,9,9,117.3,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,152.0,1,1,38,4,9,160.4,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,12,133.1,1,37,37,9,7,139.4,0,0,1,1,0,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,150.0,1,1,1,4,8,131.5,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,7,1,9556,1,4,190.0,1,5,5,2,2,190.0,1,0,0,1,1,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,Dropout +1,17,3,9238,1,1,121.0,1,1,1,4,5,117.2,0,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,130.0,1,37,37,9,7,113.0,1,0,0,0,1,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,123.0,1,19,19,4,10,124.4,1,0,0,1,0,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,Graduate +1,17,2,9238,1,1,133.0,1,37,37,3,9,119.7,0,1,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,138.0,1,38,19,9,10,133.1,0,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,108.0,1,38,38,7,7,105.2,1,0,0,1,1,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,Dropout +1,1,3,171,1,1,115.0,1,9,1,6,6,108.7,1,0,0,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,4,4,119.8,1,0,0,1,0,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9119,1,1,126.0,1,19,19,7,3,116.6,1,0,0,1,1,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,Graduate +2,39,1,9500,1,1,133.1,1,37,37,9,9,130.1,0,0,0,0,1,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,124.0,1,37,38,9,3,114.2,0,0,0,1,0,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,3,9147,1,1,137.0,1,1,1,4,7,124.4,1,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9130,1,19,133.1,1,37,37,9,10,156.4,1,0,1,1,1,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,5,9853,1,1,121.0,1,38,19,7,7,117.5,1,0,1,0,0,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,2,9238,1,1,117.0,1,19,1,9,8,110.0,1,0,1,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9147,1,1,148.0,1,1,19,9,6,118.4,1,0,0,1,1,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,133.0,1,1,1,4,4,100.0,0,0,0,1,0,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,17,1,9238,1,1,158.0,1,1,1,5,6,140.5,0,0,0,1,0,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,157.0,1,19,38,9,7,146.2,1,0,0,1,0,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,131.0,1,3,1,4,1,135.9,0,0,0,1,1,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,38,37,5,10,117.8,1,0,0,1,1,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,Graduate +1,1,2,9119,1,1,126.0,1,1,38,141,192,122.5,1,0,0,1,1,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,117.0,1,37,37,0,4,120.5,1,0,0,1,1,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9254,1,1,110.0,1,12,19,9,9,125.0,0,0,0,0,1,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,Dropout +1,18,1,9147,1,1,121.0,1,19,3,5,5,115.8,1,0,0,1,0,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,139.0,0,0,1,0,1,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9003,1,3,130.0,1,3,3,6,2,130.0,1,0,0,1,1,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,132.0,1,19,37,3,5,125.4,1,0,0,0,0,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,38,38,4,7,115.6,1,0,0,0,0,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,129.0,1,1,2,3,1,125.9,1,0,0,1,0,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,9,9,143.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,126.0,1,3,19,3,3,115.2,0,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,123.0,1,19,38,9,10,116.7,1,0,0,1,0,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,Graduate +1,17,2,9254,1,1,125.0,1,37,37,9,8,122.6,1,0,1,0,0,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9119,1,1,160.0,1,38,37,7,7,129.0,0,0,0,1,1,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,3,19,2,3,133.8,1,0,0,1,0,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,120.0,1,19,19,4,7,115.5,1,0,1,1,1,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,120.0,1,38,38,3,3,140.0,0,0,0,1,0,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9238,1,1,127.0,1,1,19,4,3,141.7,1,0,0,1,1,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,111.0,1,37,37,9,10,95.8,1,0,0,0,1,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,130.0,1,38,1,9,4,140.0,1,0,0,1,0,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,Graduate +1,1,2,9147,1,1,131.0,1,1,1,9,9,118.8,0,0,0,1,1,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,161.0,1,1,19,4,4,152.3,0,0,0,1,0,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,124.0,1,38,38,9,9,115.6,0,0,0,1,1,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,160.0,1,3,3,1,2,149.2,0,0,0,1,1,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,16,3,9853,1,1,134.0,1,19,37,9,9,121.1,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,Enrolled +1,43,2,9991,0,1,140.0,1,37,37,5,5,124.3,1,0,0,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,127.0,1,38,37,5,7,123.9,1,0,0,1,0,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,120.0,1,19,37,6,8,160.0,0,0,0,1,1,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,1,133.1,1,3,3,4,2,144.9,1,0,0,1,0,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,130.0,1,1,19,3,10,130.0,1,0,0,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,Graduate +1,42,1,9003,1,1,130.0,1,3,2,2,6,105.3,0,0,0,0,1,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9991,0,1,130.0,1,37,37,9,9,127.6,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,100.0,1,1,38,4,6,104.8,0,0,1,0,0,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,Dropout +1,1,5,9070,1,1,125.0,1,3,3,2,2,140.8,1,0,0,1,1,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,133.1,1,34,38,0,4,147.0,0,0,0,1,0,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,126.0,1,34,34,0,0,142.4,0,0,0,1,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,121.0,1,19,38,4,10,114.4,0,0,0,1,0,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,133.1,1,37,37,5,0,111.5,0,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,130.0,1,1,19,5,5,129.1,1,0,0,1,0,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,3,1,4,6,130.0,0,0,0,1,1,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,1,123.0,1,19,1,1,1,140.8,0,0,0,1,0,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,130.0,1,1,1,4,10,130.0,1,0,0,1,0,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,Graduate +4,39,1,9085,1,1,133.1,1,34,34,0,0,128.2,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,128.0,1,37,37,9,9,135.7,1,0,0,1,1,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,135.0,1,38,38,4,7,121.7,1,0,0,1,0,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9085,1,1,110.0,25,38,38,9,6,117.2,1,0,0,1,1,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,Graduate +1,43,3,9500,1,1,140.0,1,1,19,9,7,127.5,1,0,1,1,0,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,Graduate +1,17,3,9238,1,1,133.1,1,41,1,2,3,117.0,1,0,0,1,0,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,1,112.0,1,37,37,9,9,108.5,0,0,0,1,1,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,51,1,9238,1,39,140.0,1,38,38,5,7,129.1,1,0,0,1,0,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,122.0,1,38,19,9,9,126.6,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,123.0,1,1,1,4,4,114.4,0,0,0,1,1,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,Dropout +1,18,4,171,1,1,133.0,1,1,4,9,5,129.2,1,0,1,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,128.0,1,19,19,9,5,121.7,1,0,0,1,0,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,Graduate +1,39,1,9130,1,1,150.0,1,19,19,9,5,160.0,1,0,0,1,1,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,160.0,1,19,37,5,3,152.0,0,0,0,1,0,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,53,1,9085,1,42,140.0,1,19,37,9,8,142.5,1,0,0,1,0,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,130.0,1,9,19,4,1,134.2,1,0,0,1,0,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,3,9254,1,1,121.0,1,19,19,9,6,125.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,128.0,1,19,1,9,10,157.4,1,0,0,1,0,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,146.0,1,37,37,9,7,149.2,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9853,1,12,133.1,1,37,37,7,8,103.0,0,0,0,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,143.0,1,19,19,5,6,142.3,0,0,0,1,0,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,Enrolled +1,1,2,9085,1,1,118.0,1,1,19,3,3,112.4,1,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,Enrolled +2,43,1,9991,0,1,100.0,1,37,37,9,9,128.2,0,0,0,1,1,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,118.0,1,38,38,5,5,110.0,0,0,0,1,0,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9147,1,1,136.0,1,38,38,9,9,127.3,1,0,0,1,1,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,170.0,1,19,19,8,8,176.7,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,124.0,41,19,38,9,9,123.3,1,0,0,1,0,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9070,1,1,170.0,1,3,3,2,2,165.8,1,0,0,1,1,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,3,37,9,9,142.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9147,1,1,122.0,1,1,38,4,5,116.4,0,0,0,1,1,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,150.0,1,1,1,4,4,138.1,1,0,0,1,0,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,Enrolled +1,17,6,9238,1,1,138.0,1,3,3,1,2,123.0,1,0,0,1,0,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,135.0,1,19,12,9,7,137.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9070,1,1,125.0,1,1,3,3,3,128.9,0,0,0,1,0,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,128.0,1,38,19,9,10,125.2,1,0,0,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Enrolled +1,42,1,9003,1,1,140.0,1,1,3,4,2,140.0,1,0,0,1,1,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,Enrolled +1,39,1,9500,1,19,133.1,1,37,38,151,161,143.7,0,0,0,1,0,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,118.0,1,38,38,7,7,115.2,1,0,0,1,0,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,152.0,1,19,37,9,8,135.6,1,0,0,1,1,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,12,110.0,1,34,34,0,0,157.8,0,0,0,1,0,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,Graduate +1,1,6,9147,1,1,112.0,1,38,38,9,9,117.3,1,0,0,1,0,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,Graduate +1,17,3,9147,1,1,118.0,1,1,19,5,7,118.0,0,0,0,1,0,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,Enrolled +1,44,1,9070,1,39,120.0,1,1,19,5,8,119.8,0,0,0,1,1,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9670,1,1,133.1,1,19,19,3,9,118.0,0,0,0,1,1,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,159.0,1,1,19,9,9,151.3,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,118.0,1,1,38,5,7,120.8,1,0,0,1,0,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,132.0,1,1,37,8,9,128.0,1,0,0,1,0,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,Graduate +1,42,1,9147,1,1,135.0,1,19,1,4,4,120.0,0,0,0,0,1,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9670,1,1,122.0,1,1,38,3,3,114.3,1,0,0,1,0,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,171,1,1,131.0,1,1,1,0,3,149.9,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +4,39,2,9556,1,1,133.1,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,5,9119,1,1,126.0,1,12,19,4,5,122.5,1,0,0,1,1,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,145.0,1,2,38,3,8,136.3,1,0,0,1,0,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,Enrolled +1,15,1,9147,1,1,150.0,1,38,1,9,1,150.0,0,0,0,1,1,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,150.0,1,3,39,3,7,126.4,0,0,0,1,1,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,Enrolled +1,17,2,9773,1,1,148.0,1,3,38,2,6,144.2,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,124.0,1,37,19,9,3,116.3,1,0,0,1,0,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +2,39,1,9003,1,1,130.0,1,1,37,9,1,122.0,0,0,1,0,1,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,160.0,1,19,38,5,7,139.0,1,0,0,1,0,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,157.0,1,3,2,3,6,150.9,1,0,0,1,0,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,Dropout +1,42,1,9119,1,1,120.0,1,1,1,5,7,108.6,0,0,0,0,1,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9773,1,1,138.0,1,37,38,4,9,134.2,1,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,110.0,1,0,0,1,0,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,Dropout +4,39,1,9853,1,1,143.0,1,37,1,9,10,140.0,0,0,1,0,0,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,130.0,1,3,19,4,8,133.0,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,19,38,6,7,140.0,1,0,0,1,1,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,132.0,1,2,2,6,6,128.5,0,0,0,1,0,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,Dropout +1,1,2,171,1,1,135.0,1,19,19,4,7,149.0,1,0,0,1,1,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,130.0,1,19,38,3,9,126.5,1,0,0,1,0,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,125.0,1,19,38,9,8,121.5,0,0,0,1,0,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,7,129.0,0,0,0,1,0,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,Dropout +1,7,3,9130,1,3,130.0,1,37,26,90,10,130.0,0,0,0,0,1,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,123.0,1,19,19,7,7,120.8,1,0,0,1,0,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,Graduate +1,18,2,9853,1,1,168.0,1,1,19,3,9,126.8,1,0,0,1,1,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9085,1,39,140.0,1,3,1,4,3,140.0,1,0,0,1,0,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,148.0,1,19,19,9,9,138.7,0,0,0,1,0,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,Graduate +1,18,1,171,1,1,110.0,1,19,2,5,5,117.7,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9070,1,1,136.0,1,37,38,9,9,125.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +2,39,1,8014,0,1,133.1,1,37,37,5,4,134.5,0,0,0,1,0,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,Enrolled +1,42,1,9119,1,1,150.0,1,38,37,5,8,133.5,1,0,0,1,1,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,140.0,1,1,3,4,6,139.2,0,0,1,1,0,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,125.0,1,19,19,5,5,117.0,0,0,0,1,0,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,Graduate +1,39,1,9147,1,12,133.1,1,19,37,7,9,118.2,0,0,0,1,0,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,2,9147,1,1,121.0,1,1,19,9,9,113.7,1,0,0,0,0,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,131.0,1,3,19,2,3,132.8,1,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,136.0,1,37,38,4,5,126.0,1,0,0,1,0,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,Graduate +1,1,1,9853,1,1,145.0,1,37,37,9,5,146.8,0,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,123.0,1,1,1,4,9,116.7,1,0,0,1,1,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,Dropout +1,18,1,171,1,1,121.0,1,1,1,4,3,116.8,1,0,0,1,0,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,141.0,1,38,1,9,4,129.0,1,0,0,1,0,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,133.1,1,34,34,0,0,130.0,0,0,0,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,126.0,1,1,3,4,3,122.5,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,Dropout +2,1,1,9254,1,1,136.0,1,37,37,9,9,122.7,0,0,0,1,0,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,37,37,9,10,100.0,0,0,0,1,1,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9500,1,1,133.1,1,38,19,7,9,115.5,1,0,0,1,1,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9991,0,1,131.0,1,19,37,9,9,118.4,1,0,0,1,0,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,153.0,1,1,38,4,3,146.7,0,0,0,1,0,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,Graduate +1,43,1,8014,0,12,114.0,1,34,34,0,99,110.0,0,0,0,1,0,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,147.0,1,1,1,5,5,134.9,0,1,0,1,0,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,Graduate +1,1,2,9085,1,1,156.0,1,40,40,3,7,150.9,1,0,0,1,0,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,137.0,1,38,38,5,7,122.7,1,0,0,1,0,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,123.0,1,1,19,4,5,117.8,0,0,0,1,1,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9238,1,1,135.0,1,37,37,8,6,127.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,131.0,1,37,37,9,9,123.0,1,0,0,1,0,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9670,1,1,123.0,1,3,1,3,1,116.7,0,0,0,1,0,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,9085,1,40,140.0,1,1,19,5,5,140.0,1,0,0,1,0,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,Graduate +4,39,1,9500,1,19,133.1,1,38,19,5,7,140.0,0,0,0,1,0,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,127.0,1,3,19,3,9,127.0,1,0,0,1,1,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,Graduate +1,17,2,8014,0,1,120.0,1,19,1,5,10,114.8,1,0,0,1,0,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9670,1,19,133.1,1,37,37,9,7,130.0,0,0,1,1,1,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,171,1,1,131.0,41,19,1,4,7,131.4,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,16,2,171,1,1,145.0,1,3,3,2,2,143.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,120.0,1,19,38,6,6,120.0,1,0,0,1,1,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,6,9238,1,1,131.0,1,1,3,4,2,131.7,1,0,0,1,0,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,137.0,1,3,1,4,9,128.6,0,0,0,1,0,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,170.0,1,19,19,9,7,170.0,1,0,1,1,1,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9853,1,1,122.0,1,38,37,9,9,118.9,1,0,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,5,9500,1,1,148.0,1,1,19,4,8,130.2,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9003,1,19,133.1,1,1,19,9,8,120.0,0,0,1,0,1,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,2,9147,1,1,143.0,1,19,38,9,7,132.2,1,0,0,1,0,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9556,1,1,132.0,1,38,37,7,7,119.0,1,0,0,1,0,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,133.1,1,3,1,4,4,95.0,0,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,154.0,1,3,1,2,1,137.2,0,0,0,1,1,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,Enrolled +1,1,1,9853,1,1,129.0,1,38,37,6,6,138.1,0,0,0,1,0,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,17,2,9670,1,1,129.0,1,1,19,5,5,119.2,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,43,1,9500,1,1,137.0,1,3,3,2,2,115.0,0,0,0,1,0,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,Graduate +1,17,2,9254,1,1,115.0,1,19,19,9,7,113.3,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,133.0,1,38,38,7,7,125.3,1,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,10,150.0,0,0,0,0,0,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,19,133.1,1,19,19,144,141,131.5,0,0,1,1,0,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,133.0,1,38,1,2,4,126.0,0,0,0,1,0,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,15,1,9147,1,1,133.1,41,41,1,3,4,100.0,0,0,1,0,1,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,Dropout +1,10,2,9773,1,1,154.4,22,19,38,3,5,154.4,1,0,0,0,0,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9070,1,39,100.0,1,1,1,4,4,106.0,0,0,0,1,1,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,135.0,1,38,19,8,8,126.3,1,0,1,1,0,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,120.0,41,1,1,9,6,114.8,1,0,0,1,0,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,Enrolled +1,17,1,9085,1,1,124.0,1,19,38,7,7,113.9,1,0,0,1,0,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,Graduate +1,1,6,9254,1,1,126.0,1,38,37,5,7,123.9,1,0,0,1,0,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,125.0,1,37,37,9,9,121.5,1,0,0,1,1,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,6,9773,1,1,125.0,1,1,1,5,4,122.2,0,0,0,1,1,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,135.0,1,19,19,4,5,126.8,1,0,0,1,1,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9238,1,1,133.0,1,1,37,7,9,127.4,1,0,0,1,0,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,3,9070,1,1,127.0,1,19,38,5,7,141.0,1,0,0,1,1,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,3,120.0,1,37,37,4,7,122.5,0,0,0,0,0,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,2,9147,1,1,150.0,1,19,37,9,7,101.0,0,0,1,0,0,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,4,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,Graduate +1,17,5,9500,1,1,143.0,1,38,1,9,7,130.6,1,0,0,1,0,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,129.0,1,38,19,5,7,124.0,1,0,0,1,0,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,Graduate +1,17,2,9500,1,1,140.0,1,1,1,5,10,128.5,1,0,0,1,0,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,Enrolled +4,39,1,8014,0,19,100.0,1,1,37,9,1,111.5,0,0,0,1,1,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,Dropout +2,39,2,9556,1,1,110.0,1,19,38,9,9,112.8,0,0,0,1,0,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,116.0,1,19,19,5,8,127.9,0,0,1,0,0,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,Dropout +1,43,4,171,1,1,117.0,1,19,12,9,10,109.3,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,130.0,1,1,38,5,5,122.3,1,0,0,1,0,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,Graduate +1,15,1,9119,1,1,130.0,26,38,3,9,2,137.0,1,0,0,1,1,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,Enrolled +1,39,1,9556,1,1,133.1,1,38,19,9,6,100.0,1,0,0,1,0,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,150.0,1,3,1,3,9,154.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9147,1,1,131.0,1,3,19,2,9,126.1,0,0,0,1,0,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,1,6,9773,1,1,145.0,1,1,19,4,4,131.0,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,136.0,1,19,38,4,7,140.9,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,155.0,1,19,37,4,5,117.5,0,0,0,1,0,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9147,1,1,128.0,1,3,3,5,10,116.5,0,0,0,1,1,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,4,9254,1,1,133.0,1,37,37,5,8,128.5,1,0,0,1,0,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9119,1,1,141.0,1,37,1,9,2,133.0,1,0,0,1,1,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,Enrolled +1,51,1,8014,0,1,120.0,1,1,1,4,4,128.5,0,0,1,0,1,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,Dropout +1,43,1,9003,1,1,120.0,1,3,3,1,2,115.0,0,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,136.0,1,19,19,4,7,136.0,0,0,0,1,0,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,Graduate +1,17,1,9070,1,1,116.0,1,38,38,9,9,123.7,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,125.0,1,19,19,4,8,117.0,1,0,0,1,0,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,135.0,1,1,38,5,7,137.5,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,140.0,1,19,19,7,7,124.6,1,0,0,1,0,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,Enrolled +1,39,1,9670,1,19,133.1,1,1,1,4,7,100.0,0,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,122.0,1,37,37,9,9,131.0,1,0,0,1,0,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,Dropout +2,43,1,9773,1,1,160.0,1,37,37,5,0,160.0,0,0,1,0,1,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9670,1,1,113.0,1,37,19,9,9,110.2,1,0,0,1,0,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,125.0,1,37,37,9,9,126.0,1,0,1,1,0,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,Graduate +1,43,1,171,1,39,140.0,1,38,37,9,7,140.0,0,0,0,0,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9853,1,1,134.0,1,37,19,9,5,121.4,1,0,0,1,0,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,8014,0,1,120.0,1,1,37,7,3,122.8,0,0,0,1,0,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,1,1,4,2,127.7,0,0,0,1,0,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,Enrolled +2,39,1,9991,0,1,120.0,1,19,37,3,9,132.9,0,0,0,1,1,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,138.0,1,1,38,4,9,132.5,1,0,0,1,0,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,133.1,1,19,37,7,7,126.0,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9500,1,1,110.0,1,38,38,9,9,110.0,0,0,0,0,0,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,Dropout +5,7,1,9500,1,40,150.0,1,37,37,4,9,150.0,0,0,0,1,0,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,Graduate +1,17,1,9070,1,1,126.0,1,19,38,9,7,118.7,0,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,16,4,9254,1,1,126.0,1,38,37,9,7,118.7,1,0,0,1,0,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9773,1,1,110.0,1,19,19,5,5,105.5,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,9,133.1,1,34,34,0,0,118.0,0,0,0,1,0,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,140.0,1,3,2,4,6,133.4,1,0,0,0,1,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,Enrolled +1,1,1,171,1,1,134.0,1,3,2,2,2,141.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9773,1,1,133.1,1,1,1,90,90,129.6,0,0,0,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,133.1,1,38,19,5,6,138.0,0,0,1,1,1,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,Enrolled +1,17,3,9500,1,1,156.0,1,19,37,4,9,132.3,1,0,0,1,1,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,Graduate +1,44,1,9085,1,39,140.0,1,3,3,4,2,140.0,1,0,0,1,0,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,Graduate +1,43,1,171,1,1,116.0,1,3,1,2,3,117.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,141.0,1,38,19,9,6,126.3,1,0,0,1,0,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,44,1,9238,1,39,140.0,1,1,19,191,102,143.0,0,0,0,1,0,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,Graduate +1,43,5,8014,0,1,110.0,1,34,34,0,0,110.0,0,0,0,1,1,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9238,1,1,143.0,1,1,11,4,3,128.0,1,0,0,1,0,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +3,17,1,9238,1,1,138.0,1,37,37,9,9,133.5,1,0,0,1,0,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,Enrolled +1,7,1,9119,1,3,150.0,1,3,2,2,2,150.0,0,0,0,1,0,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,150.0,1,19,1,1,1,150.0,0,0,0,1,1,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,Enrolled +1,17,1,9085,1,1,134.0,1,19,37,2,7,131.2,0,0,0,1,0,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,171,1,1,133.1,1,37,37,9,7,100.0,0,0,1,1,1,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,1,9556,1,1,133.1,1,3,19,2,8,106.0,1,0,0,1,1,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,Graduate +1,17,2,9500,1,1,135.0,1,19,19,9,4,129.8,1,0,0,1,0,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,Graduate +1,39,1,33,1,1,130.0,1,38,37,9,6,102.5,0,0,1,0,1,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,Dropout +1,18,1,9500,1,1,144.0,1,37,37,6,6,127.5,1,0,0,1,0,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,130.0,1,37,38,9,9,133.9,1,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,44,1,9003,1,39,140.0,1,37,37,4,7,140.0,0,0,0,1,1,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,Dropout +1,1,4,9773,1,1,137.0,1,3,19,2,3,139.8,1,1,0,1,0,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,1,9991,0,1,130.0,1,2,37,3,9,131.4,0,0,0,1,1,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,135.0,1,3,3,1,1,125.8,1,0,0,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Graduate +1,18,1,9238,1,1,147.0,1,38,34,4,0,130.2,0,0,0,1,0,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +5,17,5,9500,1,1,143.0,1,37,38,5,8,133.5,1,0,0,1,0,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,99.0,1,1,3,5,10,100.0,1,0,0,1,1,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,Graduate +1,16,2,9147,1,1,131.0,1,37,37,9,9,135.9,1,0,0,1,1,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,146.0,1,38,37,6,6,143.9,0,0,0,1,0,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9085,1,1,139.0,1,38,38,5,3,136.2,0,0,0,1,0,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,153.0,1,3,1,2,8,137.6,1,0,0,1,0,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,2,9085,1,1,133.1,1,19,38,9,1,100.0,1,0,1,0,1,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,2,9773,1,1,121.0,1,19,19,9,9,122.8,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,141.0,1,37,38,9,10,138.9,0,0,0,1,0,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,6,9500,1,1,117.0,1,4,12,5,9,119.8,1,0,0,1,0,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,Graduate +1,17,4,9119,1,1,122.0,62,1,1,191,171,121.0,1,0,0,1,1,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,38,19,3,3,98.6,0,0,0,1,0,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,140.0,1,38,37,5,6,124.3,1,0,0,1,0,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,140.0,1,37,37,9,9,127.7,1,0,0,1,0,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,121.0,1,37,37,9,9,124.2,1,0,0,1,0,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,Graduate +1,18,1,9130,1,1,146.0,1,3,3,5,2,137.8,0,0,0,1,1,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,3,120.0,1,1,1,7,10,120.0,1,0,0,0,1,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,120.0,1,37,37,7,8,120.0,1,0,1,0,0,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,178.0,1,19,1,4,8,174.7,0,0,0,1,0,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,Graduate +1,17,5,9254,1,1,114.0,1,38,1,5,9,109.5,0,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,143.0,1,38,38,9,9,140.0,0,0,0,1,1,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,160.0,1,38,37,9,5,159.3,0,0,0,1,0,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,143.0,1,38,34,9,9,133.6,1,0,0,1,0,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,Graduate +4,43,1,9500,1,19,100.0,1,34,34,0,0,110.0,0,0,0,1,1,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,125.0,1,1,19,4,1,121.5,1,0,0,1,1,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,19,7,3,120.0,1,0,0,1,1,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,3,120.0,1,19,1,9,5,134.0,0,0,0,1,0,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,Dropout +1,39,1,9254,1,1,160.0,1,19,37,7,10,100.0,0,0,0,1,1,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,Enrolled +1,15,1,171,1,1,130.0,26,1,1,2,9,130.0,0,0,0,1,1,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,140.0,1,19,37,5,6,137.9,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,123.0,1,19,37,9,9,124.1,1,0,0,1,0,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,140.0,1,38,38,6,6,140.0,0,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,9,133.1,1,34,34,0,0,118.4,0,0,0,0,0,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,6,9254,1,1,125.0,1,1,1,4,3,120.5,1,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,6,171,1,1,126.0,1,10,10,4,4,130.2,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,120.0,1,1,19,4,7,120.0,0,0,0,1,1,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,Enrolled +1,17,5,9773,1,1,143.0,1,1,1,7,7,136.7,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,42,1,9147,1,1,130.0,1,37,38,9,1,130.0,1,0,0,1,0,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,1,130.0,1,37,37,9,9,124.0,0,0,0,1,1,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,Graduate +1,17,2,9238,1,1,136.0,1,1,3,3,4,126.6,1,0,0,1,0,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,127.0,1,19,1,5,7,118.3,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,Enrolled +4,39,1,9991,0,1,147.0,1,19,19,7,8,147.9,0,0,0,1,0,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,124.0,1,19,37,99,90,124.0,0,0,0,0,0,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +2,43,1,9003,1,1,133.1,1,37,37,9,7,136.0,0,0,0,1,1,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,1,9085,1,1,140.0,1,12,1,1,90,141.8,0,0,0,1,0,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,133.1,1,37,37,191,154,95.0,0,0,0,1,0,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,147.0,1,2,3,4,8,145.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9238,1,3,130.0,1,37,19,4,5,130.0,0,0,0,1,0,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,Graduate +1,7,2,9085,1,3,130.0,1,3,3,1,1,130.0,0,0,0,0,0,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,Dropout +2,39,2,9147,1,3,130.0,1,3,37,9,9,103.4,0,0,0,1,0,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,Dropout +1,17,1,9085,1,1,135.0,1,1,19,4,10,125.6,1,0,0,1,0,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,1,1,5,5,96.0,1,0,0,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +5,39,1,9853,1,19,133.1,1,38,1,5,3,105.5,0,0,1,1,0,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,136.0,1,37,37,7,7,121.7,1,0,0,1,0,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9119,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,1,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,19,133.1,1,19,19,4,4,100.0,0,0,0,1,1,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,124.0,1,2,2,3,2,118.4,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9085,1,1,120.0,1,2,3,2,2,116.1,0,0,0,1,0,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,162.0,1,37,37,9,9,142.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,131.0,1,37,1,9,9,135.9,1,0,0,1,0,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,7,100.0,0,0,0,1,1,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,Graduate +1,43,1,9500,1,1,127.0,1,19,19,4,7,121.1,0,0,0,1,0,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,143.0,1,37,37,9,5,131.6,1,0,0,1,0,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,Graduate +1,17,4,9085,1,1,140.0,1,19,37,4,7,123.7,0,0,0,1,0,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,156.0,1,19,1,5,10,136.8,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Dropout +2,39,1,9853,1,10,133.1,1,37,34,0,0,115.5,0,0,0,1,0,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,Dropout +1,1,3,9119,1,1,113.0,1,4,38,2,7,107.4,1,0,0,1,1,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,Graduate +2,39,1,9670,1,1,130.0,1,37,37,9,0,158.0,0,0,1,0,0,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,Dropout +1,43,1,9853,1,1,110.0,1,37,37,9,9,107.7,0,0,1,0,0,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,124.0,1,2,2,3,3,124.7,1,0,0,1,1,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,127.0,1,37,37,5,10,125.3,0,0,0,1,1,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Graduate +1,16,1,9500,1,1,133.1,1,37,37,9,9,95.0,1,0,0,1,0,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,4,9238,1,1,127.0,1,19,19,4,0,127.4,1,0,0,1,0,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,113.0,1,38,38,3,7,112.3,0,0,0,1,0,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,110.0,1,19,37,9,99,106.1,1,1,1,0,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,141.0,1,1,38,4,8,136.8,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,133.1,1,37,37,9,7,140.0,0,0,0,1,0,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,124.0,1,1,1,4,4,118.8,0,0,0,1,1,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,4,120.0,1,2,3,2,2,120.0,0,0,0,1,0,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,110.0,1,3,3,4,10,115.6,1,0,0,1,1,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,118.0,1,1,19,4,10,110.7,1,1,0,1,0,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +4,39,1,9238,1,1,130.0,1,19,3,9,2,140.0,0,0,0,1,1,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,1,140.0,1,1,19,3,9,140.0,1,0,1,0,0,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,3,9773,1,1,123.0,1,1,19,5,5,117.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,115.0,1,38,38,8,7,112.9,1,0,0,1,0,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,1,6,9147,1,1,142.0,1,38,37,7,7,134.3,0,1,0,1,1,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9085,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,0,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,129.0,1,19,1,3,7,121.0,0,0,0,1,0,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,156.0,1,3,3,123,122,155.0,0,0,0,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,136.0,1,37,37,9,9,126.3,1,0,0,1,0,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,Graduate +2,43,1,9991,0,1,110.0,1,37,37,9,9,132.5,0,0,0,1,1,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,19,133.1,1,37,1,5,5,138.3,0,0,0,1,1,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,Dropout +1,1,2,9130,1,1,140.0,1,19,37,9,9,129.5,1,0,0,1,0,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,Enrolled +1,7,1,9500,1,3,140.0,1,37,37,4,4,140.0,0,0,0,1,0,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,Graduate +4,42,1,9147,1,1,110.0,1,37,37,9,9,128.2,0,0,0,1,0,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,Graduate +1,39,1,9119,1,19,133.1,1,1,1,4,3,134.4,0,0,1,0,1,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,136.0,1,37,1,5,4,120.8,1,0,0,1,0,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,Graduate +1,17,2,9500,1,1,140.0,1,37,37,9,9,132.5,1,0,0,1,0,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,Graduate +1,17,6,9147,1,1,130.0,1,37,37,9,9,110.4,1,0,0,1,1,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,4,5,105.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,136.0,1,19,19,4,3,126.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,116.0,1,38,2,9,2,112.2,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9238,1,1,122.0,1,19,3,5,2,112.6,0,0,1,1,0,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9147,1,1,118.0,1,1,38,9,9,118.4,1,0,0,1,1,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,Enrolled +1,17,1,9130,1,1,117.0,1,19,19,4,4,113.5,1,0,0,1,0,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,117.0,1,19,19,9,9,111.8,1,0,0,1,1,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,Dropout +1,1,6,9500,1,1,118.0,1,38,19,3,3,113.5,1,0,0,1,1,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +2,43,2,9853,1,1,130.0,1,38,31,4,1,124.2,0,0,0,1,0,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,128.0,1,38,38,9,7,124.5,1,0,0,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,8,108.7,1,0,0,1,1,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9254,1,19,133.1,1,37,19,9,10,156.5,0,0,0,1,1,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,Graduate +1,39,1,9003,1,1,160.0,1,1,37,191,193,140.0,0,0,0,1,1,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,10,150.0,0,0,0,1,1,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,Graduate +1,18,2,9070,1,1,122.0,1,38,19,5,5,119.9,0,0,0,1,1,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,125.0,1,19,38,9,7,116.3,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,37,37,6,6,147.8,0,0,0,1,0,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,171,1,1,174.0,1,5,3,3,3,157.9,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,131.0,1,1,1,4,4,127.2,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,3,110.0,1,12,3,5,8,106.5,1,0,1,0,0,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,124.0,1,37,37,9,9,116.0,1,0,0,1,0,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,38,38,5,7,146.2,0,0,0,1,0,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,9,97.0,0,0,0,1,0,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,132.0,1,19,1,9,9,141.8,1,0,0,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +2,43,1,9254,1,3,120.0,1,38,37,9,3,120.0,1,0,0,1,0,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,135.0,1,3,2,1,1,133.6,1,0,0,0,0,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,133.0,1,38,38,5,2,135.5,0,0,0,1,0,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,125.0,1,39,3,3,2,125.0,1,0,0,1,0,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,4,112.0,0,0,0,1,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,141.0,1,1,1,5,9,126.3,0,0,0,1,1,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,1,133.1,1,1,37,9,8,130.0,0,0,0,1,1,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,3,10,107.8,0,0,0,1,0,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,Enrolled +1,43,1,9500,1,1,120.0,1,3,4,2,4,120.6,0,0,0,1,1,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,1,133.1,1,1,19,9,9,120.0,0,0,0,1,1,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,Graduate +1,39,1,9853,1,1,140.0,1,19,1,9,4,128.2,0,0,0,0,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,133.1,1,37,19,9,3,123.0,0,0,0,1,1,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9147,1,1,150.0,1,37,1,7,3,148.8,0,0,0,1,1,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,Graduate +1,17,1,9670,1,1,125.0,1,38,37,7,5,126.4,0,0,0,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,Graduate +1,44,1,9003,1,39,140.0,1,38,1,134,134,140.0,1,0,1,1,1,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,44,1,9070,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,1,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,130.0,1,1,1,9,9,124.1,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Enrolled +1,51,1,9070,1,1,130.0,1,19,19,5,7,124.5,0,0,0,1,0,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,101.0,1,37,37,9,4,101.0,1,0,1,1,0,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,Enrolled +1,1,1,8014,0,1,115.0,1,38,38,9,7,115.0,1,0,0,1,0,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9130,1,1,122.0,1,19,19,9,9,121.7,1,0,0,0,0,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,135.0,1,38,38,9,6,138.1,0,0,1,0,0,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9147,1,1,130.0,1,37,37,9,9,119.9,1,0,0,0,0,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,134.0,1,1,1,9,9,133.0,1,0,0,1,0,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,19,37,9,9,117.8,1,0,0,1,0,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,119.0,1,1,19,4,10,115.5,1,0,0,1,0,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,Enrolled +1,17,3,9119,1,1,138.0,1,3,3,3,4,125.4,1,1,0,1,1,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,164.0,1,19,19,9,9,149.0,1,0,0,1,0,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,1,140.0,1,4,4,2,6,140.0,0,0,0,1,0,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,Graduate +1,43,1,9070,1,1,160.0,1,1,2,4,2,100.0,0,0,0,1,1,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,132.0,1,37,37,9,5,135.9,0,0,0,1,0,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,142.0,1,37,19,7,7,133.0,1,0,0,1,0,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9556,1,3,130.0,1,1,37,4,8,130.0,0,0,0,0,1,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,Dropout +1,44,1,171,1,39,110.0,1,1,1,1,7,114.2,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9147,1,1,129.0,1,19,19,4,9,127.6,1,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,164.0,1,34,1,0,0,163.0,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9556,1,1,122.0,1,19,38,4,8,118.3,1,0,0,1,0,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,141.0,1,38,37,3,3,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,Graduate +1,1,1,9003,1,1,148.0,1,1,19,194,194,143.5,0,0,1,1,1,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,150.0,1,37,19,6,4,137.0,0,0,0,1,1,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,38,38,1,4,138.7,0,0,0,1,1,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,103.8,0,0,0,1,0,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,Dropout +1,17,1,8014,0,1,127.0,1,19,37,4,7,115.8,0,0,0,1,0,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,143.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,130.0,1,38,19,5,6,125.1,1,0,0,1,0,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9254,1,1,133.0,1,19,1,9,9,137.2,0,0,0,1,1,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +2,1,4,8014,0,1,140.0,1,34,34,0,0,128.0,1,0,0,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,120.0,1,1,1,9,10,118.3,0,0,0,1,1,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Enrolled +2,39,1,8014,0,12,133.1,1,37,37,9,1,113.0,0,0,0,1,0,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,128.0,1,19,1,0,5,122.1,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,37,38,3,3,123.0,0,0,0,1,0,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,120.0,1,37,1,7,4,95.0,1,0,0,1,0,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,Dropout +1,17,4,9238,1,1,123.0,1,19,19,191,144,116.0,1,0,0,1,0,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,140.0,1,37,37,90,90,106.3,0,0,1,0,1,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,159.0,1,3,3,2,2,162.5,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,125.0,1,19,19,9,9,115.9,0,0,0,1,0,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,130.0,1,19,19,3,7,129.0,0,0,1,0,0,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,133.1,1,38,37,5,5,136.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,156.0,1,5,4,2,1,140.8,0,0,0,1,0,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,161.0,1,37,37,9,9,100.0,1,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,8014,0,3,130.0,1,35,35,90,90,140.0,0,0,0,0,0,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,Dropout +2,1,1,9991,0,1,120.0,1,37,19,9,9,135.0,1,0,0,1,1,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,1,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,148.0,1,3,3,2,2,137.3,1,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,120.0,1,19,37,5,7,115.1,0,0,0,1,0,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,6,9773,1,1,138.0,1,1,1,4,2,140.5,1,0,0,1,0,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,Graduate +2,43,1,9085,1,1,160.0,1,37,37,9,7,120.0,0,0,0,1,1,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,Enrolled +1,17,2,8014,0,1,134.0,1,1,19,4,99,126.0,1,0,0,1,1,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,100.0,1,0,0,1,0,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,131.0,1,1,1,5,9,129.5,1,0,0,1,0,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,Graduate +1,1,4,171,1,1,139.0,1,37,38,9,9,127.8,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,150.0,1,37,37,5,6,132.5,1,0,0,1,0,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,133.1,1,19,38,5,7,110.0,1,0,0,1,0,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,6,138.6,1,34,34,0,0,138.6,1,0,0,1,1,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,133.1,1,1,1,4,10,100.8,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,5,140.0,1,19,1,4,1,140.0,1,0,0,0,0,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,118.0,1,1,19,9,10,113.1,1,0,0,1,0,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,115.0,1,3,3,2,2,111.5,1,0,1,0,0,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9254,1,39,170.0,1,19,2,9,3,170.0,0,0,0,0,1,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,9,120.0,0,0,0,1,0,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,137.0,1,19,38,7,7,126.5,1,0,0,1,0,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,136.0,1,19,19,90,8,133.9,1,0,0,0,1,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,Dropout +1,18,2,9500,1,1,141.0,24,1,1,4,3,126.8,1,0,0,1,0,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,Graduate +1,17,4,9238,1,1,124.0,1,19,19,5,8,117.7,1,0,0,1,0,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,149.0,1,19,38,9,9,126.5,1,0,0,1,0,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,153.0,1,1,1,141,175,157.9,0,0,1,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,140.0,1,1,2,4,6,140.0,1,0,0,1,0,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,137.0,1,1,3,3,2,121.3,1,0,0,1,0,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,143.0,1,1,1,4,6,138.8,0,0,0,0,1,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,160.0,1,1,3,1,2,130.0,0,0,0,0,1,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,19,19,9,8,105.8,0,0,0,1,0,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,Dropout +1,5,4,9119,1,1,115.0,1,19,37,4,6,113.3,1,0,0,1,1,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,19,4,3,125.4,1,0,0,1,0,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,Graduate +4,42,1,9500,1,19,133.1,1,1,1,5,5,126.0,1,0,0,1,1,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9254,1,3,133.1,1,19,19,4,6,130.5,0,0,0,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,108.0,1,1,19,4,4,105.9,1,0,0,1,1,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,126.0,1,19,19,9,9,115.2,0,0,1,1,0,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9853,1,1,140.0,1,37,37,9,9,145.3,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,6,9070,1,6,119.0,1,1,1,9,9,123.2,1,0,0,1,1,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,160.0,1,1,38,5,6,168.6,0,0,0,1,1,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9254,1,1,120.0,1,1,19,9,9,148.3,0,0,0,1,1,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,3,130.0,1,1,19,9,10,130.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,137.0,1,38,38,151,151,141.6,0,0,0,1,1,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,4,140.0,0,0,0,1,1,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,Enrolled +1,43,1,9085,1,1,162.0,1,2,1,4,4,162.0,0,0,0,1,0,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,43,1,171,1,1,133.0,1,19,19,5,7,133.0,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,154.0,1,37,37,9,7,150.2,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,19,100.0,1,38,19,0,10,111.3,0,0,1,0,0,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,38,4,9,126.2,0,0,0,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,132.0,1,3,1,2,7,125.5,1,0,0,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,127.0,1,37,37,5,7,116.2,0,0,0,1,1,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9773,1,1,121.0,1,19,38,9,7,113.0,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,130.0,1,19,19,9,9,127.6,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,160.0,1,34,34,99,99,114.3,0,0,0,1,1,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,Enrolled +1,18,4,9254,1,1,119.0,1,37,37,9,9,113.1,1,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,130.0,1,38,37,5,6,130.0,0,0,0,1,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,163.0,1,19,37,5,8,150.8,1,0,0,1,1,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,Enrolled +1,43,1,9238,1,1,122.0,1,19,19,5,5,114.3,1,0,0,1,0,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,Enrolled +1,18,1,9147,1,1,131.0,1,34,34,90,90,131.0,0,0,0,1,1,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,4,9773,1,1,137.0,1,1,1,5,5,125.8,0,0,1,1,1,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9670,1,1,133.1,1,37,37,90,90,97.4,0,0,1,0,1,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,37,38,7,5,106.0,1,0,0,1,0,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,Graduate +1,17,6,9254,1,1,108.0,1,1,19,4,5,112.2,1,0,0,1,1,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,19,133.1,1,1,19,4,10,111.8,1,0,0,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,133.1,1,1,37,9,10,139.0,0,0,0,1,1,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,122.0,1,12,19,4,8,117.8,1,0,0,1,0,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,128.0,1,19,19,0,5,120.3,1,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,133.1,1,34,19,0,3,117.1,1,0,0,1,0,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9556,1,19,133.1,1,37,38,9,9,123.0,0,0,0,1,0,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,Graduate +1,17,2,9238,1,1,133.0,1,37,37,9,4,123.6,0,0,0,1,0,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,5,9670,1,1,132.0,1,19,19,5,5,134.1,1,0,0,1,1,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,129.0,1,38,1,4,10,129.4,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,136.0,1,19,19,4,8,150.4,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,154.0,1,3,3,1,3,129.0,1,0,0,1,0,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,Enrolled +1,44,1,9130,1,39,150.0,1,1,1,4,4,150.0,1,0,0,1,0,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,115.0,1,37,37,9,8,116.1,1,0,0,1,0,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,157.0,1,19,3,4,9,138.8,0,0,0,1,1,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9670,1,19,133.1,1,19,1,5,8,97.2,1,0,0,1,1,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,141.0,1,37,38,6,6,125.6,1,0,0,1,0,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,143.0,1,19,1,9,9,144.4,1,0,0,1,0,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9119,1,1,127.0,1,19,1,4,5,115.8,0,0,0,1,1,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,150.0,1,1,1,9,10,142.7,0,0,1,1,0,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,132.0,11,12,12,90,4,129.9,1,0,0,1,0,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,115.0,1,19,19,191,171,109.1,0,0,1,0,1,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,Enrolled +1,17,1,9773,1,1,121.0,1,38,38,9,8,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,7,1,9085,1,40,130.0,1,1,1,4,4,130.0,1,0,0,1,0,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,140.0,1,19,38,4,4,138.3,0,0,0,1,1,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,6,9773,1,1,116.0,1,19,1,4,4,110.1,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,131.0,1,38,38,9,9,127.9,0,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,Graduate +1,51,1,9991,0,42,110.0,1,19,37,5,9,128.2,0,0,0,0,0,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,138.0,1,19,19,5,8,124.9,1,0,0,1,0,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,172.0,1,1,1,4,9,167.1,0,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +5,39,1,9991,0,1,120.0,1,37,37,9,9,138.1,0,0,0,1,1,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,37,38,3,7,96.7,0,0,0,1,1,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,15,1,9130,1,1,133.1,41,1,1,4,4,100.0,0,0,0,1,0,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9119,1,1,122.0,1,19,19,9,9,114.7,0,0,0,1,1,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,192,192,96.0,1,0,0,1,0,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,160.0,1,1,37,9,10,118.0,0,0,0,1,0,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,Enrolled +1,18,4,9119,1,1,134.0,1,19,38,194,175,124.9,1,0,1,1,1,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,4,19,4,5,98.0,0,0,0,1,1,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +5,43,1,9991,0,3,130.0,1,3,3,1,1,130.0,0,0,0,1,0,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,120.0,1,19,19,4,5,114.8,1,0,1,0,0,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,6,8014,0,1,134.0,1,3,19,2,4,120.7,1,0,0,1,0,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,133.1,1,37,37,9,9,109.7,0,0,0,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9070,1,1,128.0,1,19,19,3,3,123.5,1,1,0,0,1,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,133.1,1,1,19,5,9,130.0,0,0,0,1,1,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,Graduate +1,7,1,9991,0,40,120.0,1,43,3,3,3,120.0,0,0,0,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,Enrolled +1,17,5,9556,1,1,139.0,1,19,19,9,8,121.3,1,0,0,1,0,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,156.0,1,3,19,3,3,151.1,0,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,Graduate +1,16,2,9147,1,1,132.0,1,37,37,9,9,122.6,1,0,0,1,0,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,130.0,1,2,3,9,6,130.0,0,0,0,1,1,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,133.1,1,1,1,1,6,120.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,1,1,1,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,133.0,1,3,3,1,1,126.2,1,0,0,1,0,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,Graduate +1,18,2,9147,1,1,140.0,1,37,37,5,9,124.3,1,0,0,1,1,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,44,1,9003,1,39,150.0,1,37,38,4,8,150.0,0,0,0,1,0,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,140.0,1,37,19,191,163,129.3,1,0,1,1,0,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +4,7,1,9500,1,3,130.0,1,3,19,2,3,130.0,0,0,0,1,0,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9070,1,1,131.0,1,19,19,7,7,125.1,0,0,0,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,Enrolled +1,10,1,9773,1,1,152.0,22,38,37,5,9,152.0,1,0,0,1,0,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,123.0,1,34,38,0,7,120.2,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,131.0,1,3,19,4,4,130.3,1,0,0,1,1,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,115.0,1,1,1,5,4,108.0,1,0,0,1,0,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,130.0,1,38,37,9,9,144.0,0,0,0,1,0,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9238,1,1,134.0,1,3,1,3,4,133.0,1,0,0,1,0,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,Graduate +1,51,1,9670,1,1,133.1,1,3,1,3,10,116.2,0,0,0,1,1,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,139.0,0,0,0,1,1,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,126.0,1,19,1,9,9,122.5,1,0,0,0,0,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,121.0,1,19,19,9,9,126.3,1,0,0,1,0,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9003,1,1,133.1,1,38,38,4,8,115.0,0,0,1,1,1,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,19,37,9,9,151.5,0,0,1,0,1,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9853,1,40,110.0,1,41,3,2,1,110.0,0,0,1,1,0,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,17,5,9238,1,1,131.0,1,19,37,5,7,120.2,1,0,0,1,0,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,7,1,9070,1,3,140.0,1,37,37,7,7,140.0,0,0,0,0,1,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +4,39,1,9254,1,1,140.0,1,38,37,9,9,112.0,0,0,1,1,0,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,Dropout +1,18,3,9853,1,1,122.0,1,38,37,9,5,120.3,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9070,1,1,125.0,1,1,38,9,7,118.0,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Enrolled +1,1,3,9670,1,1,111.0,1,1,1,5,5,105.4,0,0,0,1,0,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +2,39,1,9254,1,1,130.0,1,37,37,4,7,120.0,1,0,0,1,0,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,160.0,1,37,37,9,9,160.0,1,0,0,1,0,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,39,1,9147,1,12,133.1,1,37,37,9,9,140.0,0,0,0,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9147,1,1,118.0,1,1,2,10,10,117.3,1,0,0,1,0,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,3,9085,1,1,130.0,1,1,19,9,9,121.3,1,0,0,1,0,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,9,130.0,0,0,0,1,0,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,3,9085,1,1,130.0,1,19,37,5,5,121.3,1,0,0,1,0,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,Enrolled +1,1,2,9254,1,1,120.0,1,19,19,9,9,116.5,1,0,0,1,0,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,Graduate +2,39,1,9500,1,1,140.0,1,37,37,9,4,127.3,0,0,0,1,1,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,118.0,1,37,38,8,7,115.2,1,0,0,1,0,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,17,3,9238,1,1,125.0,1,19,19,7,8,121.5,0,0,0,1,0,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,125.0,1,19,19,5,5,114.5,1,0,0,1,0,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,136.0,1,39,1,3,4,134.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,115.0,1,3,2,4,5,112.6,0,0,0,1,1,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,53,1,9003,1,1,130.0,1,19,1,9,9,130.0,0,0,1,1,1,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,Enrolled +1,1,3,9773,1,1,136.0,1,3,1,5,3,129.0,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,3,150.0,1,2,3,4,7,173.3,1,0,0,1,0,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,140.0,1,1,19,7,7,129.9,1,0,0,1,0,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,Dropout +1,7,1,9119,1,1,140.8,1,34,34,0,0,134.0,0,0,0,1,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9254,1,1,115.0,1,37,19,5,5,109.8,1,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,137.0,1,1,1,4,4,127.6,1,0,0,1,0,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,Graduate +4,7,1,9238,1,40,130.0,1,34,34,99,99,130.0,0,0,1,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9147,1,1,123.0,1,37,37,9,9,106.2,0,0,0,1,0,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,121.0,1,1,3,3,7,113.0,1,0,0,1,1,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,140.0,1,3,1,2,3,129.9,0,0,0,1,0,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,130.0,1,38,38,9,7,130.0,0,0,0,1,1,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,Dropout +1,51,1,9070,1,1,132.0,1,19,19,153,153,120.0,0,0,0,1,0,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,9119,1,1,110.0,1,37,37,9,9,106.8,0,0,0,1,1,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,124.0,1,19,37,4,4,126.8,0,0,0,1,0,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,Enrolled +1,18,3,9147,1,1,133.1,1,1,38,4,7,101.0,1,0,0,0,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9147,1,1,125.0,1,38,19,7,7,125.7,0,0,0,1,0,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,4,9853,1,1,121.0,1,38,38,5,7,113.7,1,0,0,1,0,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,1,1,9,6,105.0,1,0,1,0,0,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,143.0,1,5,1,2,5,136.7,0,0,0,1,0,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,Graduate +1,1,2,9556,1,1,142.0,1,1,19,4,5,130.5,1,0,0,1,0,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,131.0,1,19,19,7,5,122.1,1,0,0,1,0,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,132.0,1,1,37,4,7,121.8,1,0,0,1,0,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,123.0,1,37,37,3,3,123.0,1,0,0,1,0,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,129.0,1,19,38,2,7,126.9,1,0,0,1,0,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Enrolled +1,1,4,9238,1,1,118.0,1,19,38,9,9,110.0,0,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,125.0,1,3,1,4,4,119.4,1,0,0,1,0,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,Enrolled +1,17,1,9085,1,1,131.0,1,1,3,4,1,129.3,1,0,0,1,0,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,147.0,1,37,37,9,9,134.3,0,0,0,1,0,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,Graduate +2,39,2,9670,1,19,133.1,1,37,37,9,9,135.6,0,0,0,1,0,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,152.0,1,37,19,9,9,137.0,1,0,0,1,0,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,118.0,1,12,1,4,10,115.7,0,0,0,1,1,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,Enrolled +1,15,1,9119,1,1,133.1,41,1,3,5,8,100.0,0,0,1,1,1,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,5,9119,1,1,131.0,1,1,19,4,7,126.8,0,0,0,0,1,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,132.0,1,19,38,9,7,119.1,0,0,0,0,1,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,8014,0,1,120.0,1,37,37,5,5,161.1,0,0,0,1,1,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,18,5,9500,1,1,137.0,1,19,1,1,10,129.3,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,118.0,1,37,19,5,5,119.1,1,0,0,1,0,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,134.0,1,38,38,9,9,122.0,1,0,0,1,1,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,163.0,1,1,1,4,3,149.7,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,140.0,1,38,38,9,7,140.0,0,0,0,1,0,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,Enrolled +1,17,4,9147,1,1,122.0,1,19,19,5,7,116.4,1,0,1,1,0,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,140.0,1,3,37,3,7,116.9,0,0,0,1,1,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,5,2,9238,1,1,123.0,1,40,38,2,9,118.1,1,0,0,1,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,130.0,1,3,19,2,3,133.9,0,0,0,1,0,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,125.0,1,1,38,4,7,114.9,1,0,0,1,0,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,130.0,1,1,1,4,10,115.2,0,0,0,1,1,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,124.0,1,38,19,9,7,129.6,1,0,0,1,1,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,139.0,1,38,38,7,5,133.4,0,0,0,1,0,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9254,1,1,125.0,1,38,38,5,5,115.6,1,0,0,1,0,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,147.0,1,37,37,9,9,142.8,1,0,0,1,0,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9003,1,1,144.0,1,19,19,9,9,132.8,0,0,0,1,1,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,12,133.1,1,19,1,9,1,130.0,0,0,0,1,1,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,140.0,1,37,37,9,6,135.5,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,6,9254,1,1,102.0,1,3,1,2,2,101.7,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,133.1,1,19,38,5,5,131.8,1,0,1,1,0,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,Graduate +1,44,1,171,1,39,150.0,1,4,4,2,2,150.0,0,0,0,1,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,53,1,9254,1,42,110.0,1,1,1,4,7,111.8,1,0,0,1,0,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,121.0,1,19,38,6,6,116.1,1,0,0,1,1,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,Graduate +1,17,4,9773,1,1,127.0,1,1,19,4,1,115.8,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,37,37,9,7,160.0,1,0,0,0,1,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,15,170.0,1,34,1,90,2,101.0,0,0,0,1,0,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,125.0,1,3,3,3,3,116.6,1,0,0,0,0,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,4,9070,1,1,117.0,1,1,1,3,3,125.4,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,146.0,1,19,37,7,7,133.8,1,0,0,1,0,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,142.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,3,116.0,1,3,3,2,2,128.2,0,0,0,1,0,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,37,37,7,7,116.5,1,0,0,1,0,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,118.0,1,19,19,5,7,117.8,0,0,0,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,Graduate +1,18,3,9670,1,1,119.0,1,38,38,9,9,115.2,1,0,0,1,0,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,131.0,1,3,19,3,10,123.3,0,0,0,1,1,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,Enrolled +1,17,1,9254,1,1,136.0,1,39,3,3,3,128.7,1,0,0,1,0,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9500,1,1,140.0,1,37,38,5,7,126.0,1,0,0,1,0,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +1,44,1,9119,1,39,150.0,1,19,3,5,2,150.0,0,0,0,1,1,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,43,1,9773,1,1,137.0,1,38,37,9,5,127.9,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,119.9,0,0,0,1,0,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,18,2,9773,1,1,132.0,24,37,19,9,7,119.1,1,0,0,1,0,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,43,1,8014,0,1,133.1,1,34,34,0,0,100.0,0,0,0,1,0,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,1,133.1,1,38,19,9,9,128.0,1,0,0,0,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,125.0,1,19,19,5,4,136.2,1,0,1,1,1,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,132.0,1,38,38,0,5,126.1,0,0,0,1,1,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9670,1,1,130.0,1,1,1,9,10,116.3,1,0,0,1,0,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,3,9773,1,1,150.0,1,19,38,4,4,146.5,1,0,0,1,0,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +4,39,2,8014,0,1,160.0,1,37,38,7,5,115.0,0,0,0,1,0,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,135.0,1,19,1,9,9,122.1,1,0,0,1,0,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,136.0,1,3,3,9,9,136.0,1,0,1,0,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,3,3,7,1,130.0,1,0,0,1,1,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9119,1,19,133.1,1,19,19,5,3,100.9,1,0,0,1,1,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,Enrolled +1,17,1,9254,1,1,137.0,1,34,38,0,7,137.7,1,0,1,0,0,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,19,133.1,1,37,37,90,7,110.0,0,0,0,0,0,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,144.0,1,38,37,9,9,125.8,0,0,0,1,0,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,1,4,9070,1,1,167.0,1,1,1,7,3,158.3,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,133.0,1,37,19,7,7,126.7,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,118.0,1,38,38,7,7,121.2,1,0,0,1,0,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,19,133.1,1,19,19,4,4,150.0,0,0,0,0,1,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9085,1,1,166.0,1,1,19,4,3,158.7,0,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Graduate +1,44,1,9254,1,39,130.0,1,39,39,194,193,130.0,1,0,1,1,1,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,1,9085,1,1,140.0,1,37,38,7,9,129.9,0,0,0,1,0,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,9147,1,3,120.0,1,1,39,4,7,120.0,0,0,0,1,0,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,5,9254,1,1,118.0,1,19,37,5,5,120.5,1,0,0,1,1,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,Dropout +1,17,3,9070,1,1,120.0,1,3,1,4,4,116.9,1,0,0,1,0,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Graduate +1,43,5,9238,1,1,101.0,24,37,19,9,7,119.9,1,0,1,0,0,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,128.0,1,19,1,4,3,117.2,1,0,0,1,0,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,Graduate +1,1,3,9254,1,1,118.0,1,1,19,9,9,111.7,1,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,137.0,1,37,37,0,90,134.2,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,144.0,1,3,39,2,3,129.0,1,0,0,1,0,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,125.0,1,37,38,7,7,122.2,1,0,0,1,0,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,147.0,1,3,1,4,3,136.7,0,0,0,1,0,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,39,120.0,1,37,37,1,9,137.7,1,0,0,0,1,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,160.0,1,1,37,9,9,146.0,1,0,0,1,0,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9238,1,39,130.0,1,1,19,4,5,127.4,0,0,1,0,1,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,3,1,2,4,154.9,0,0,1,0,1,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,Dropout +1,17,2,9670,1,1,129.0,1,19,19,5,4,129.4,0,0,0,1,0,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,137.0,1,3,19,3,5,136.3,1,0,0,1,0,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,100.0,1,37,37,9,6,153.5,0,0,1,0,1,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,134.0,1,38,38,7,9,132.8,1,0,0,1,0,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,137.0,1,37,37,7,9,130.8,1,0,0,1,0,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,133.1,1,37,37,1,1,97.0,0,0,0,1,1,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,143.0,1,3,38,2,10,129.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,9,3,127.1,0,0,0,1,0,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,Enrolled +2,7,1,9147,1,3,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,160.0,1,37,37,9,9,160.0,0,0,0,1,1,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,162.0,1,3,4,3,3,154.1,0,0,0,1,0,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,Graduate +1,1,2,9147,1,1,119.0,1,19,37,4,5,113.8,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,139.0,1,19,1,9,5,135.0,1,0,0,1,0,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,120.0,1,1,38,5,5,116.3,1,1,0,1,1,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,2,9500,1,1,135.0,1,1,19,4,10,133.5,1,0,0,1,0,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,Graduate +1,1,3,9119,1,1,117.0,1,1,1,3,5,111.1,0,0,0,1,1,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,140.0,1,1,39,4,1,128.1,1,1,0,1,1,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9003,1,1,133.1,1,37,37,3,8,130.0,0,0,1,1,0,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,134.0,1,19,37,5,5,125.3,1,0,0,1,1,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,37,38,9,9,114.0,0,0,0,1,0,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,38,37,4,5,102.5,0,0,1,0,1,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,143.0,1,19,37,5,9,156.3,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,130.0,1,19,1,9,5,122.1,1,0,0,1,0,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,Graduate +1,39,2,8014,0,1,100.0,1,35,37,90,90,100.0,0,0,0,1,0,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +2,39,2,9670,1,1,100.0,1,37,37,9,9,110.0,0,0,0,1,1,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,2,9853,1,1,126.0,1,1,19,2,10,126.0,1,0,0,1,0,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,Enrolled +1,18,3,9070,1,1,131.0,1,1,37,5,5,122.3,1,0,0,0,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,150.0,1,19,37,9,8,138.5,0,0,0,1,0,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,2,171,1,1,146.0,1,3,3,3,3,155.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,120.0,1,19,19,9,7,118.6,1,0,0,1,0,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,145.0,1,38,38,9,9,125.5,1,0,0,1,0,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9070,1,1,143.0,1,1,1,9,7,134.6,1,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Dropout +1,51,1,8014,0,1,121.0,1,1,38,5,7,112.3,0,0,0,1,0,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,130.0,1,37,1,9,8,120.2,1,0,0,1,1,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +2,7,1,9254,1,2,100.0,1,37,37,9,9,100.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,1,130.0,1,37,3,9,3,137.0,1,0,0,1,1,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,0,0,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,140.0,1,38,37,7,7,105.2,0,0,0,1,1,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,131.0,1,1,19,4,7,135.9,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,108.0,1,19,38,9,7,110.5,1,0,0,1,0,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,111.0,1,1,38,5,9,107.5,0,0,0,1,1,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9147,1,1,147.0,1,37,37,9,6,142.8,1,0,1,0,0,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,170.0,1,38,19,4,8,134.7,0,0,0,1,0,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,138.0,1,4,19,2,3,124.7,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,125.0,1,37,38,9,9,125.0,1,0,1,0,0,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,118.0,1,38,38,5,5,114.2,1,0,0,1,0,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,3,3,1,5,118.8,0,0,0,1,0,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,Graduate +1,1,3,9085,1,1,131.0,1,37,19,9,8,136.3,1,0,1,0,0,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,Dropout +1,43,1,9991,0,1,141.0,1,37,37,9,9,131.9,0,0,0,1,0,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,42,1,9070,1,1,120.0,1,3,2,3,1,116.9,0,0,0,1,1,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,130.0,1,1,1,9,7,152.1,0,0,0,1,1,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,12,133.1,1,34,34,0,0,135.0,0,0,0,1,0,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,130.0,1,38,38,7,7,122.5,1,0,0,1,0,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,160.0,1,1,1,194,131,128.4,0,0,0,1,0,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,132.0,1,1,38,7,7,129.6,0,1,0,1,1,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,1,1,3,9,118.4,0,0,0,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,Graduate +1,1,2,9556,1,1,133.1,1,19,19,9,9,104.5,1,0,0,1,0,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,53,1,9003,1,42,150.0,1,1,38,8,8,150.0,0,0,0,1,0,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,144.0,1,3,1,2,3,126.9,0,0,0,1,0,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,150.0,1,3,3,2,2,120.0,0,0,1,0,0,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,3,3,2,10,160.0,1,0,0,1,1,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,129.0,1,1,1,9,9,120.0,0,0,0,1,1,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,Graduate +4,39,1,9003,1,12,133.1,1,37,37,9,6,160.0,0,0,0,1,0,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,Graduate +2,39,2,9991,0,1,100.0,1,37,37,9,9,100.0,1,0,0,1,1,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,115.0,1,19,1,3,8,123.4,0,0,0,1,0,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,124.0,1,19,37,3,8,117.5,1,0,0,1,1,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,Enrolled +1,1,6,9254,1,1,129.0,1,38,19,9,5,117.8,1,0,0,1,0,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,127.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,19,133.1,1,38,38,7,8,120.0,0,0,0,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +6,39,2,9147,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,4,9500,1,1,148.0,1,3,19,4,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,39,150.0,1,1,3,4,1,150.0,0,0,0,1,1,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,145.0,1,37,37,9,1,150.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,115.7,1,0,0,1,0,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,16,1,171,1,1,122.0,1,19,37,9,7,133.9,1,0,0,1,1,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,124.0,1,37,38,9,8,114.6,1,0,0,1,1,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,120.0,1,38,37,9,8,113.4,1,0,0,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,40,140.0,1,37,37,6,6,140.0,0,0,0,1,0,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,Graduate +1,1,5,9670,1,1,133.1,1,9,1,2,4,133.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,100.0,1,19,19,4,4,113.0,0,0,0,1,1,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,Enrolled +4,39,1,9003,1,1,133.1,1,19,19,9,4,100.7,0,0,0,1,0,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,Enrolled +1,17,2,9147,1,1,133.1,1,38,38,4,7,109.0,1,0,0,1,1,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,15,1,9238,1,1,140.0,26,19,19,9,6,140.0,0,0,0,1,1,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,3,9500,1,1,114.0,1,1,1,5,5,114.5,1,0,0,1,0,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,134.0,1,1,38,4,4,120.7,0,0,1,0,0,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,1,133.1,1,37,11,9,7,96.0,0,0,1,0,1,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,131.0,1,3,3,3,3,135.9,0,0,0,1,0,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,Graduate +1,43,2,9500,1,1,130.0,1,38,37,4,4,126.8,1,0,0,1,1,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,19,37,7,7,124.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9670,1,1,120.0,1,1,19,4,5,100.0,0,0,0,1,0,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,145.0,1,38,38,9,10,139.8,1,0,0,1,0,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,141.0,1,19,38,5,7,125.5,0,0,0,1,0,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,Graduate +5,39,1,9147,1,1,133.1,1,1,19,4,7,114.0,0,0,0,0,1,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9991,0,1,110.0,1,37,37,1,4,120.0,1,0,0,0,1,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,172.0,41,37,37,5,5,153.8,1,0,0,1,0,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,1,9556,1,1,140.0,1,3,3,1,7,131.6,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,4,3,137.5,0,0,0,1,1,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,137.0,1,19,38,3,9,124.9,0,0,0,1,0,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,139.0,1,18,18,1,1,130.8,1,0,0,0,0,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,120.0,1,38,37,5,9,131.4,1,0,0,1,1,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,Graduate +1,53,1,9085,1,42,160.0,1,19,37,4,9,160.0,1,0,0,1,0,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,Graduate +1,18,1,9670,1,1,140.0,1,1,37,9,9,130.2,1,0,0,1,1,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9853,1,1,140.0,1,37,37,6,6,125.2,0,0,1,1,0,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,Graduate +1,1,4,9556,1,1,122.0,1,37,1,5,4,123.9,0,0,0,1,0,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,1,19,3,3,123.0,0,0,0,1,0,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,140.0,1,19,38,4,0,140.0,1,0,0,1,1,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,129.0,1,1,1,4,2,126.2,0,0,1,0,0,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Dropout +2,17,3,8014,0,1,123.0,1,19,37,3,3,113.2,0,0,1,0,0,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,133.1,1,38,19,9,10,114.5,0,0,0,1,0,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,Enrolled +1,51,1,9991,0,1,141.0,1,19,38,5,7,100.0,0,0,0,1,0,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,Graduate +1,17,2,171,1,1,131.0,1,2,1,3,3,148.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,19,133.1,1,37,37,9,9,100.0,1,0,1,0,0,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,117.0,1,1,38,5,1,113.5,1,0,0,1,0,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,116.0,1,19,38,9,9,119.5,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,1,19,3,4,116.7,0,0,0,1,0,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,129.0,1,2,3,2,2,128.3,1,0,0,1,0,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,Enrolled +1,1,3,9085,1,1,138.0,1,1,1,4,8,128.7,1,0,0,1,0,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,5,9147,1,1,118.0,1,19,19,9,9,114.2,1,0,0,1,1,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.0,1,3,19,2,8,126.7,0,0,0,1,0,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,Enrolled +1,16,1,171,1,1,158.0,1,38,37,9,9,164.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,43,3,9500,1,1,126.0,1,38,37,6,5,124.3,1,0,0,1,0,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,123.0,1,38,38,9,5,124.8,0,0,0,0,0,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9130,1,1,160.0,1,3,3,3,2,155.1,1,0,0,1,0,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Graduate +4,43,1,9500,1,1,130.0,1,37,37,9,9,103.7,0,0,0,1,0,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,Enrolled +1,16,2,9238,1,1,133.0,1,19,38,4,5,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,130.0,1,38,37,9,9,124.8,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,135.0,1,37,1,7,7,132.8,1,0,0,1,0,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9119,1,1,128.0,1,1,38,4,7,100.0,0,0,0,1,1,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9085,1,1,120.0,1,1,1,9,10,115.0,0,0,0,0,0,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,2,9070,1,1,142.0,1,3,1,2,4,141.0,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9853,1,1,124.0,1,38,37,5,3,118.1,1,0,0,0,0,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,145.0,1,37,37,9,9,132.0,1,0,0,1,0,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,114.0,1,38,38,9,10,120.0,0,0,0,1,0,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,140.0,1,3,3,2,2,146.4,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,5,9773,1,1,130.0,1,34,38,0,8,128.3,1,0,0,0,0,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,3,9670,1,1,110.0,1,19,1,4,4,107.5,1,0,0,1,0,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,135.0,1,37,37,5,5,126.3,1,1,0,1,0,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,Graduate +2,1,1,9254,1,1,140.0,1,19,38,4,7,133.0,0,0,0,1,1,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,1,150.0,1,37,37,9,9,115.0,0,0,0,1,1,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9070,1,1,130.0,1,1,1,5,3,112.0,1,0,0,1,1,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,110.0,1,1,37,9,9,105.1,1,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,131.0,1,37,37,9,7,118.4,0,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,136.0,1,38,38,7,7,127.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9773,1,1,127.0,1,19,19,5,8,120.0,0,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,139.0,1,37,19,9,8,142.2,1,0,0,1,1,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,4,127.3,1,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,16,4,9773,1,1,109.0,1,37,37,9,3,137.0,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,Graduate +1,53,1,9085,1,42,130.0,1,19,1,9,9,130.0,1,0,1,0,0,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,Enrolled +1,7,1,171,1,3,130.0,1,1,2,9,2,130.0,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,120.0,1,37,37,9,9,120.0,1,0,1,1,0,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,Dropout +1,2,1,9853,1,1,120.0,1,19,38,9,9,122.5,0,0,0,0,0,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,19,133.1,1,2,1,8,8,120.0,1,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,43,1,9773,1,1,121.0,1,1,1,4,5,121.0,1,0,0,1,1,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9147,1,1,120.0,1,38,19,9,9,111.3,1,0,0,1,0,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,38,19,5,0,141.8,0,0,0,1,0,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,131.0,1,1,1,7,4,127.2,1,0,1,1,1,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,11,9,10,131.5,0,0,0,1,0,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,3,19,2,3,125.7,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9556,1,1,136.0,1,19,19,9,9,129.5,1,0,0,1,0,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,Graduate +1,42,1,9119,1,1,120.0,1,5,5,2,2,115.0,0,0,0,1,1,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,Dropout +1,17,6,9119,1,1,124.0,1,19,19,4,0,126.1,1,0,0,1,1,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,160.0,1,19,38,9,9,140.8,1,0,0,1,1,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,123.0,1,37,37,9,9,115.0,1,0,0,1,0,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,Graduate +2,39,2,9670,1,1,133.1,41,37,19,9,9,130.0,0,0,0,1,0,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9670,1,6,170.0,1,34,34,0,0,111.6,0,0,0,1,1,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,138.0,1,1,3,9,1,123.0,1,0,0,1,0,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,1,37,6,6,130.0,1,0,0,1,1,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,Graduate +1,17,2,9119,1,1,133.1,1,1,2,3,3,117.0,1,0,0,1,1,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,Enrolled +1,1,5,9254,1,1,131.0,1,19,37,9,9,123.7,0,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,130.0,1,1,1,9,4,140.0,0,0,0,0,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9773,1,1,135.0,1,1,19,4,10,129.4,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,132.0,1,1,19,3,3,122.9,1,0,0,1,0,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,115.0,1,37,37,9,8,129.0,1,0,1,0,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9238,1,1,160.0,1,3,19,2,1,116.1,0,0,1,1,0,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,12,133.1,1,37,1,9,10,130.0,0,0,0,1,1,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,129.0,1,37,38,4,9,121.0,1,0,0,1,0,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9119,1,1,130.0,1,38,19,7,3,119.9,1,0,1,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,133.1,1,37,37,9,9,100.2,1,0,0,0,0,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,4,38,4,5,140.0,1,0,0,1,0,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9991,0,43,140.0,1,40,5,3,3,140.0,0,0,0,1,0,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,Graduate +1,43,2,9670,1,1,129.0,1,3,3,5,5,122.4,1,0,0,1,0,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,6,116.4,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,130.0,1,1,3,9,2,130.0,1,0,1,1,0,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,139.0,1,38,38,9,5,130.5,1,0,0,1,0,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,1,100.0,1,19,19,9,9,100.0,0,0,1,1,1,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,Dropout +1,7,1,9773,1,43,140.0,1,19,1,4,8,140.0,0,0,0,1,1,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9003,1,1,125.0,1,1,38,4,7,125.0,1,0,0,1,0,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,Graduate +1,39,2,9147,1,19,133.1,1,38,19,4,10,116.3,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,3,9500,1,1,132.0,1,37,37,4,3,127.3,1,0,0,1,0,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,127.0,1,1,37,4,8,121.1,1,0,0,1,1,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9670,1,1,140.0,1,37,37,6,6,120.0,0,0,0,1,0,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,133.0,1,37,37,9,5,139.2,1,0,1,1,1,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,140.0,1,19,19,1,4,133.3,1,0,0,1,0,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,120.0,1,3,3,2,2,112.0,0,0,0,1,0,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,Enrolled +2,1,1,9147,1,1,137.0,1,19,37,9,9,124.4,0,0,0,1,0,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,130.0,1,38,38,9,3,145.6,0,0,0,1,1,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,6,9670,1,1,120.0,1,1,14,4,5,113.7,1,0,0,1,0,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,120.0,1,38,19,9,3,112.7,0,0,0,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,122.0,1,37,37,9,9,114.3,1,0,0,0,0,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,8014,0,1,133.1,1,3,1,1,7,100.0,0,0,0,1,0,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,4,19,3,5,123.7,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,4,4,4,2,120.0,1,0,0,1,1,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,3,9238,1,1,137.0,1,1,1,3,3,131.4,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,Graduate +1,43,1,9130,1,1,130.0,1,1,1,1,1,130.0,1,0,0,1,1,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9773,1,1,121.0,1,1,19,9,7,118.9,1,0,0,1,0,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,133.1,1,19,38,9,8,128.2,1,0,0,1,1,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,Enrolled +1,43,1,9070,1,1,134.0,1,19,37,7,7,132.7,1,0,0,1,1,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9147,1,1,125.0,1,1,38,7,7,120.1,0,0,1,1,1,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,129.0,1,37,37,9,9,117.1,1,0,0,1,0,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,145.0,1,38,38,5,7,138.0,1,0,0,1,0,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,120.0,105,1,1,9,9,119.0,1,0,1,0,0,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,131.0,1,1,19,9,9,127.0,0,0,0,1,1,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,100.0,1,38,19,6,10,112.8,0,0,0,1,0,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,2,9070,1,1,145.0,1,38,19,7,7,130.0,1,0,0,1,1,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,126.0,1,37,38,7,7,119.0,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,Graduate +1,1,2,9773,1,1,137.0,1,1,19,7,7,133.2,1,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,128.0,1,38,38,9,7,128.4,1,0,0,1,0,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9085,1,39,150.0,1,19,38,194,193,150.0,1,0,0,1,0,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,Enrolled +1,1,4,171,1,1,146.0,1,1,1,9,5,151.3,1,0,0,1,0,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,Graduate +1,1,6,9147,1,1,139.0,1,19,12,4,4,125.0,1,0,0,1,0,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,1,1,9,4,123.4,1,0,0,1,0,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9670,1,1,127.0,1,3,4,2,2,122.8,0,0,0,1,1,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,127.0,1,38,37,5,7,121.8,1,0,1,1,0,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,39,1,9003,1,1,130.0,1,38,37,7,7,120.0,0,0,0,1,1,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,Graduate +1,1,2,9238,1,1,100.0,1,38,1,7,7,99.3,1,0,0,1,0,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9119,1,1,160.0,1,37,37,9,6,153.7,0,0,0,1,1,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9500,1,1,138.0,1,3,1,2,5,134.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,Graduate +1,17,4,9254,1,1,124.0,1,3,3,3,3,126.1,1,0,0,1,0,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,Dropout +2,7,1,9147,1,3,110.0,1,19,1,9,9,110.0,0,0,0,1,0,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,143.0,1,3,19,3,10,126.8,0,0,0,1,1,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,Graduate +1,17,2,9670,1,1,110.0,1,1,1,4,10,115.3,1,0,0,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,9119,1,1,129.0,1,2,37,2,9,121.6,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Enrolled +1,15,1,9254,1,1,140.0,26,19,1,9,7,140.0,1,0,0,0,0,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,118.0,1,19,38,7,9,113.5,1,0,0,1,0,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,5,9853,1,1,110.0,1,19,37,7,7,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,171,1,1,145.0,1,3,1,2,10,114.5,1,0,0,1,1,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,43,2,9670,1,1,125.0,1,38,19,4,3,106.6,1,0,0,1,0,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Dropout +4,39,1,9500,1,19,133.1,1,37,37,5,7,100.0,0,0,0,0,0,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,133.0,1,1,1,9,9,119.7,1,1,1,1,1,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,Graduate +1,1,2,9853,1,1,134.0,1,1,38,9,8,122.5,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,120.0,1,19,37,3,9,100.0,0,0,0,1,0,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,37,37,6,6,100.0,0,0,1,0,1,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,160.0,1,38,38,6,6,160.0,1,0,0,1,0,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,7,116.0,0,0,0,1,0,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,Graduate +1,18,3,9500,1,1,145.0,1,1,1,4,8,133.6,1,0,0,1,0,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,3,19,2,3,124.5,0,0,0,1,0,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,125.0,1,19,38,9,8,118.3,0,0,0,1,1,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,Dropout +1,5,1,9085,1,1,150.0,1,1,1,4,4,139.4,0,0,0,1,0,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9773,1,1,133.1,1,38,38,9,5,117.0,0,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,142.0,1,1,1,4,7,131.0,1,0,0,1,0,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,1,19,3,3,154.3,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9147,1,1,135.0,1,37,38,9,9,128.0,1,0,1,1,0,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,149.0,1,37,37,9,9,138.0,0,0,0,1,1,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,38,9,9,129.2,1,0,0,1,0,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9556,1,1,147.0,1,3,4,3,2,100.0,0,0,0,1,0,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,12,133.1,1,37,37,10,9,144.0,0,0,0,1,1,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9254,1,1,100.0,1,3,19,3,5,115.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9670,1,1,140.0,1,1,1,4,3,133.4,0,0,0,1,1,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,Enrolled +1,1,2,171,1,1,127.0,1,3,39,1,3,133.5,1,0,0,1,1,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9147,1,1,112.0,1,1,19,3,5,107.8,1,0,0,1,0,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,Enrolled +2,39,1,9147,1,1,110.0,1,37,37,9,10,140.0,0,0,0,1,0,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,120.0,1,1,3,175,121,105.9,0,0,0,1,0,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,Enrolled +1,1,1,9238,1,1,168.0,1,37,37,9,9,149.5,0,0,0,1,0,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,Graduate +1,17,1,8014,0,1,141.0,1,34,34,0,0,136.1,0,0,0,1,0,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,140.0,1,1,1,4,3,130.7,1,0,0,1,1,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,Dropout +1,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,134.0,1,1,37,8,7,120.5,1,0,0,1,1,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,160.0,1,1,38,4,7,141.5,1,0,0,1,1,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,122.0,1,38,37,191,195,112.9,1,0,0,1,0,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,41,1,1,9,7,163.1,1,0,0,0,0,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,1,110.0,1,1,37,9,9,126.0,1,0,0,1,1,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,Enrolled +1,17,1,9670,1,1,109.0,1,1,1,4,4,108.0,0,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,131.0,2,37,1,9,3,126.1,1,0,0,1,1,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,1,2,9556,1,1,125.0,1,38,1,9,3,116.3,1,0,0,1,0,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,Graduate +1,17,1,9085,1,1,138.0,1,2,19,2,9,126.8,1,0,0,1,0,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,Enrolled +1,1,5,9853,1,1,128.0,1,38,37,9,9,120.3,1,0,1,0,0,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,130.0,1,1,38,4,9,122.7,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,9,133.1,1,37,34,90,90,118.1,1,0,0,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,125.0,1,1,19,4,9,114.5,1,0,0,1,0,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,Graduate +1,1,5,9773,1,1,138.0,1,19,19,9,9,139.4,1,0,0,1,0,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,125.0,1,19,38,3,5,115.9,0,0,0,1,0,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,134.0,1,38,19,5,8,120.7,0,0,0,1,0,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,133.1,41,3,1,3,10,100.0,1,0,0,0,0,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,Dropout +5,39,1,9003,1,1,133.1,1,37,37,9,7,110.0,0,0,1,0,0,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,Dropout +1,17,1,9254,1,1,128.0,1,19,1,5,7,120.7,1,0,1,1,0,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,162.0,1,19,19,4,7,152.9,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,51,1,9238,1,1,121.0,1,3,19,3,10,111.9,1,0,0,1,0,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,Graduate +1,39,2,9991,0,1,172.0,1,19,37,9,8,150.0,1,0,0,1,0,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,116.0,1,19,19,9,8,119.9,1,0,0,1,0,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,125.0,1,19,19,3,10,131.0,1,0,0,1,1,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,39,1,9500,1,4,150.0,1,3,38,3,7,127.0,1,0,0,1,1,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,128.0,1,38,38,9,9,129.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,120.0,1,3,19,4,5,115.5,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,38,38,9,6,160.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,130.0,1,3,1,2,9,130.0,1,0,0,1,0,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,140.0,1,1,19,4,8,124.6,1,0,0,1,0,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,3,3,2,2,150.0,1,0,0,1,0,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9853,1,1,133.1,1,37,19,9,5,138.3,0,0,0,1,0,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,Dropout +1,43,1,9991,0,1,150.0,1,3,3,4,4,100.0,1,0,0,1,1,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,Graduate +1,44,1,9238,1,1,150.0,1,1,38,4,9,145.9,0,0,0,1,0,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,Graduate +1,18,3,9500,1,1,131.0,1,19,1,4,7,127.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,Graduate +1,7,1,9085,1,3,150.0,1,19,37,90,90,140.0,0,0,0,1,1,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,167.0,1,19,19,9,7,156.2,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,140.0,1,1,3,4,5,130.0,0,0,0,1,1,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9238,1,1,132.0,1,1,19,4,9,127.1,1,0,0,1,0,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9119,1,1,133.0,1,3,1,3,4,121.8,1,0,0,1,1,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9670,1,1,133.1,1,1,37,4,5,150.0,0,0,0,1,1,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,150.0,103,37,37,9,9,134.6,0,0,0,1,1,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,6,9773,1,1,131.0,1,34,34,0,0,129.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,139.0,1,3,1,4,1,126.0,1,0,0,1,1,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,138.0,1,1,1,4,8,123.0,0,0,1,0,1,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,Enrolled +5,39,1,9853,1,19,133.1,1,37,37,9,8,118.0,0,0,0,1,0,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,142.0,1,37,38,9,9,137.3,1,0,0,1,0,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,136.0,1,3,38,2,9,125.7,1,0,0,1,0,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,1,1,4,10,128.3,1,0,0,1,0,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,132.0,1,1,37,4,9,127.1,0,0,0,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,122.0,1,19,19,7,7,116.1,1,0,0,1,0,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,140.0,1,1,2,3,3,140.0,0,0,0,1,0,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,Enrolled +1,42,1,9853,1,12,133.1,1,1,3,3,2,133.7,0,0,0,1,0,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,Dropout +2,7,1,9500,1,3,120.0,1,37,19,9,7,120.0,1,0,0,1,0,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,Enrolled +1,1,4,9238,1,1,134.0,1,38,19,7,7,128.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,130.0,1,19,38,4,7,121.3,1,0,0,1,0,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,Graduate +1,39,2,9238,1,1,110.0,1,19,1,5,5,136.5,0,0,0,1,1,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9670,1,1,133.1,1,38,19,9,8,122.9,0,0,1,0,1,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,124.0,1,19,1,9,3,123.7,1,0,0,1,0,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,17,1,9991,0,1,120.0,1,38,3,9,3,116.9,1,0,1,0,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,43,2,9147,1,1,160.0,1,37,37,9,9,96.0,0,0,0,0,0,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,154.0,1,19,37,9,7,140.4,1,0,0,1,0,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,Enrolled +1,17,5,9070,1,1,125.0,1,19,1,5,5,122.6,1,0,0,1,1,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9119,1,1,137.0,1,1,1,4,4,130.4,1,0,1,1,1,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,134.0,1,37,19,9,9,136.8,1,0,0,1,1,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,100.0,1,37,37,0,0,128.0,1,0,0,1,1,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +4,39,1,9130,1,19,133.1,1,37,38,9,4,100.9,0,0,0,1,1,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,127.0,1,1,19,5,7,130.5,1,0,0,1,0,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,1,1,9003,1,1,131.0,1,19,38,5,5,118.4,0,0,0,1,0,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,142.0,1,1,38,5,7,127.7,0,0,0,1,0,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,130.0,1,1,38,4,9,115.0,0,0,0,1,1,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,100.0,0,0,0,1,0,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,134.0,1,1,19,9,5,121.8,1,0,0,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,3,9853,1,1,122.0,1,1,3,5,3,113.6,0,0,0,1,0,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,114.0,1,37,37,7,8,116.7,0,0,0,1,1,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,130.0,1,3,1,3,3,120.5,0,0,0,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,148.0,1,19,19,4,5,143.5,0,0,0,1,0,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,19,9,9,107.0,0,0,0,0,1,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,130.0,1,3,19,5,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,6,120.0,0,0,0,0,0,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,1,2,9853,1,1,123.0,1,19,1,194,103,115.3,1,0,0,1,0,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,Enrolled +1,18,1,9130,1,1,135.0,1,38,19,9,5,121.7,1,0,0,1,0,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,116.0,1,38,38,5,8,110.8,1,0,0,1,0,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,7,1,9147,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9991,0,1,133.1,41,37,37,9,8,114.7,0,0,0,1,0,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,122.0,1,37,37,9,7,120.6,1,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,150.0,1,5,5,2,2,146.2,0,0,0,1,0,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,130.0,1,1,4,3,10,130.0,0,0,0,1,0,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9085,1,19,110.0,1,37,37,90,90,110.0,0,0,0,0,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,140.0,1,1,1,9,9,136.9,1,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,44,1,9085,1,39,150.0,1,19,19,9,9,150.0,1,0,0,1,0,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +2,43,1,9003,1,1,149.0,1,1,1,4,5,156.1,1,0,0,0,1,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9119,1,1,133.1,1,1,1,9,3,136.0,0,0,0,1,1,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,Dropout +1,16,2,9238,1,1,122.0,1,19,37,9,7,127.3,1,0,0,1,0,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,133.0,1,1,1,6,7,134.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,141.0,1,19,38,9,9,130.5,0,0,0,1,1,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,121.0,1,1,3,9,3,123.8,0,0,0,0,1,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,39,140.0,1,1,1,4,3,138.6,0,0,0,1,1,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9991,0,1,145.0,1,2,37,4,9,127.5,1,0,0,1,1,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,100.0,1,37,19,9,2,121.9,0,0,0,0,0,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,120.0,1,38,38,9,9,148.5,0,0,0,1,0,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +5,39,1,9991,0,1,110.0,1,1,1,3,3,119.0,0,0,0,1,1,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9254,1,1,137.0,1,1,38,2,8,122.3,1,0,0,1,1,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,42,1,9238,1,1,133.1,1,1,19,4,9,134.0,0,0,0,1,0,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,38,37,9,7,130.0,1,0,0,1,1,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,Graduate +5,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,120.0,1,37,37,9,9,111.1,0,0,0,1,0,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,124.0,1,38,19,6,10,126.8,1,0,0,1,0,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,Graduate +2,1,1,9500,1,1,151.0,1,37,38,9,7,134.5,0,0,1,1,0,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,133.0,1,19,37,9,8,121.8,1,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,148.0,1,1,19,4,5,135.1,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,120.0,1,19,38,4,8,122.5,0,0,0,0,1,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9070,1,1,140.0,1,37,37,9,10,118.0,0,0,1,1,1,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,3,133.1,1,9,9,90,90,130.0,0,0,0,1,0,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,150.0,1,34,34,0,0,108.0,0,0,0,1,0,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,1,150.0,1,1,38,3,5,120.0,0,0,0,1,1,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,Enrolled +1,44,1,9085,1,39,150.0,1,38,1,5,5,150.0,0,0,0,1,0,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,1,2,9238,1,1,133.1,1,19,19,9,9,106.0,1,0,0,1,0,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,102.0,1,38,38,9,9,99.6,1,0,0,1,0,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,140.0,1,38,19,9,5,130.0,0,0,1,1,0,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9773,1,1,138.0,1,3,1,2,3,135.9,1,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,1,9,4,150.0,1,0,0,1,1,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,Dropout +1,1,6,9147,1,1,127.0,1,1,19,1,6,120.0,1,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,0,0,0,1,1,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,137.0,1,38,38,4,8,126.5,1,0,0,1,0,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,1,19,4,4,132.6,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,130.0,1,1,1,4,9,150.0,0,0,0,1,1,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,146.0,1,3,1,1,3,149.2,1,0,0,1,0,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,129.0,1,38,38,6,6,118.5,1,0,0,1,0,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,131.0,1,19,3,3,2,126.1,1,0,0,1,0,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,Enrolled +1,39,1,9085,1,43,160.0,1,3,39,2,3,172.0,0,0,0,1,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,39,1,9670,1,1,133.1,1,1,1,4,4,112.9,0,0,0,1,0,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,Dropout +2,39,1,9003,1,1,150.0,1,37,37,9,6,140.0,0,0,0,1,1,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,127.0,1,37,38,9,7,115.8,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,133.1,1,1,37,5,9,143.0,1,0,1,1,0,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,9,138.4,1,0,1,1,0,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9070,1,1,125.0,1,1,1,4,4,132.0,0,0,0,0,0,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,5,9130,1,1,160.0,1,3,1,2,9,150.2,1,0,0,1,0,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,1,110.0,1,37,37,9,4,160.0,0,0,0,1,0,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,135.0,1,19,37,5,7,121.4,0,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9670,1,1,135.0,1,19,19,7,10,121.4,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,125.0,1,1,38,4,9,118.4,1,0,0,1,0,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,145.0,1,38,37,5,6,127.5,1,0,0,1,0,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,Graduate +1,43,3,171,1,1,140.0,1,37,38,7,7,143.4,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,134.0,1,37,19,9,10,141.4,1,0,0,1,0,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,130.0,1,29,38,9,8,122.0,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,109.0,1,19,19,4,9,104.1,1,0,1,0,0,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,116.0,1,34,34,0,0,127.0,1,0,0,1,1,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,3,8014,0,19,100.0,1,37,37,9,9,120.0,1,0,0,1,1,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9238,1,1,122.0,1,37,38,4,7,118.2,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,8014,0,1,100.0,1,12,5,9,4,116.5,0,0,1,0,0,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,122.0,1,19,19,193,194,112.6,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,42,3,9500,1,1,136.0,1,1,1,4,4,148.8,1,0,0,1,0,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,137.0,1,19,1,9,9,132.8,0,0,0,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,130.0,1,37,37,6,6,111.9,0,0,1,1,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9254,1,1,116.0,1,19,38,5,5,116.0,1,0,0,1,0,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9500,1,1,131.0,1,1,3,3,2,121.2,1,0,0,1,0,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,141.0,1,1,19,3,3,131.9,1,0,0,1,0,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,120.0,1,37,37,9,10,122.6,0,0,0,1,0,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,Dropout +1,18,5,9119,1,1,136.0,1,3,2,2,3,125.2,1,0,0,1,1,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,125.0,1,19,1,7,4,122.6,0,0,0,1,1,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,139.0,1,19,37,9,9,131.5,1,0,0,1,0,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,Graduate +1,5,1,9853,1,1,119.0,1,1,38,5,8,118.3,1,0,0,1,0,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9773,1,1,125.0,1,1,38,5,6,115.9,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,126.0,1,1,19,4,8,120.1,1,0,0,1,0,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,Graduate +1,17,1,9085,1,1,125.0,1,1,37,4,9,117.0,1,0,0,1,0,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,135.0,1,19,38,7,5,121.0,0,0,0,1,0,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,138.0,1,38,37,3,3,133.1,0,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,148.0,1,19,37,9,5,130.9,0,0,0,0,1,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,145.0,1,12,1,4,10,139.8,1,0,0,1,0,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,118.0,1,37,37,3,5,110.0,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9147,1,1,99.0,1,3,1,3,3,99.7,1,0,1,0,0,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,17,2,9556,1,1,137.0,41,1,1,7,7,124.4,1,0,0,1,0,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,Graduate +1,17,3,9853,1,1,133.1,1,34,34,0,0,115.0,0,0,0,1,0,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,123.0,1,37,38,9,9,113.9,1,0,1,0,0,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,1,4,9238,1,1,125.0,1,19,38,9,6,114.9,1,0,1,1,0,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,Enrolled +1,18,1,8014,0,1,137.0,1,1,1,4,3,123.0,0,0,1,1,0,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,Graduate +1,43,1,8014,0,1,131.0,1,19,37,8,5,125.0,0,0,0,1,1,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9147,1,3,150.0,1,6,27,1,7,150.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,9,4,117.0,0,0,0,1,0,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,133.1,1,37,1,9,10,100.0,0,0,0,1,0,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,Dropout +1,1,3,9670,1,1,121.0,1,1,19,5,5,111.9,1,0,0,1,1,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,133.1,1,1,19,3,3,112.0,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,43,1,9991,0,1,140.0,1,1,1,6,6,100.0,0,0,0,1,1,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,Graduate +2,42,1,9556,1,1,110.0,1,37,37,9,6,140.0,0,0,0,1,1,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,130.0,1,1,1,4,4,124.8,0,0,0,1,0,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,138.0,1,38,37,9,6,126.8,1,0,0,1,1,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,127.0,1,2,37,9,9,115.8,1,0,1,0,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9085,1,1,170.0,1,1,1,4,5,166.6,0,0,1,0,0,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,130.0,1,1,1,4,4,130.0,1,1,0,1,1,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,3,1,2,8,100.0,1,0,0,1,1,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9670,1,1,106.0,1,3,1,2,3,105.7,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,43,1,9556,1,1,140.0,1,37,37,9,9,128.0,1,0,0,0,0,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,127.0,1,1,4,9,10,121.8,0,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,134.0,1,1,1,9,6,130.9,0,0,1,1,0,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,133.1,1,37,37,7,4,132.0,0,0,0,1,1,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,110.0,1,12,3,5,2,100.0,1,0,0,1,1,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,6,9238,1,1,113.0,1,1,38,194,163,112.3,1,0,1,1,0,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,118.0,1,19,19,5,7,121.2,0,0,0,1,1,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,51,1,9773,1,1,158.0,1,1,19,8,8,117.1,1,0,0,1,1,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,Dropout +1,17,1,9070,1,1,119.0,1,37,38,9,8,124.6,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,111.0,1,19,19,3,10,117.7,0,0,0,1,0,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,140.0,1,3,1,5,9,130.0,0,0,0,1,1,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,122.0,1,3,1,9,10,114.7,0,0,0,1,0,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,Graduate +2,39,1,9238,1,19,133.1,1,1,2,4,6,130.0,0,0,0,1,0,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9500,1,1,131.0,1,38,1,5,7,118.4,1,0,0,1,0,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Dropout +1,43,5,9853,1,1,150.0,1,34,34,0,0,150.2,1,0,0,0,0,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,140.0,1,37,19,9,9,166.0,1,0,1,1,1,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9085,1,1,133.1,1,19,37,9,6,130.0,1,0,0,1,0,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,Graduate +1,1,4,9147,1,1,120.0,1,38,38,5,10,111.3,0,0,0,1,1,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,Enrolled +1,1,5,9500,1,1,125.0,1,3,19,4,8,120.3,1,0,0,1,0,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,Enrolled +1,17,2,9556,1,1,136.0,1,1,1,9,9,128.3,0,0,0,1,0,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,133.1,1,38,19,5,5,128.0,0,0,0,1,0,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,9,133.1,1,37,37,5,3,110.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9254,1,1,118.0,1,19,1,4,4,115.9,1,0,0,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,134.0,1,19,37,7,7,136.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,130.0,1,37,37,9,7,119.9,0,0,0,1,0,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9773,1,1,153.0,1,34,34,99,99,133.1,1,0,1,1,0,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,10,133.1,1,12,36,90,90,128.2,0,0,0,0,1,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,1,9991,0,1,112.0,1,43,40,2,2,106.4,0,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,122.0,1,3,3,2,2,122.0,1,0,0,1,0,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,137.0,1,1,19,4,3,121.3,1,0,0,1,1,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,19,133.1,1,3,1,2,5,103.0,0,0,0,1,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,136.0,1,1,19,9,9,131.5,0,0,0,1,0,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,154.0,1,1,3,4,2,164.9,0,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,6,9147,1,1,129.0,1,19,1,9,4,122.0,1,0,0,1,1,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,132.0,1,19,19,9,7,128.0,1,0,0,1,1,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,Graduate +2,39,1,9773,1,19,133.1,1,19,19,9,4,131.0,0,0,1,0,1,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,Dropout +4,39,1,8014,0,1,160.0,1,37,37,5,5,126.0,0,0,0,1,0,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,16,2,9238,1,1,126.0,1,38,37,3,5,127.1,1,0,0,1,0,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9254,1,1,111.0,1,1,19,5,7,109.3,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,133.1,1,37,37,3,10,108.0,0,0,0,1,0,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,Graduate +1,1,4,9773,1,1,140.0,22,1,37,3,9,130.5,1,0,0,1,0,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,140.0,1,1,1,9,5,140.0,0,0,0,1,0,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,Dropout +1,17,3,9670,1,1,125.0,1,1,3,4,3,117.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,150.0,1,37,38,9,9,131.5,1,0,0,1,0,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,5,100.0,0,0,0,0,1,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9773,1,1,133.0,1,19,19,7,7,134.4,1,0,0,1,1,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,135.0,1,19,37,9,9,128.0,1,0,0,1,0,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,5,9670,1,1,115.0,1,1,19,5,5,117.1,0,0,0,1,0,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,Enrolled +1,51,1,9003,1,39,130.0,1,1,19,4,4,120.0,1,0,1,0,1,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,Dropout +1,1,3,9773,1,1,117.0,1,38,19,7,7,110.4,1,0,1,0,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9773,1,1,127.0,1,19,38,8,3,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,38,37,1,1,115.0,1,0,0,1,0,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,18,2,9853,1,1,123.0,1,1,3,9,2,123.7,1,0,1,0,0,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,Dropout +1,1,3,9853,1,1,122.0,1,3,3,2,2,112.6,1,0,0,1,0,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,17,3,9254,1,1,127.0,1,37,37,9,6,123.5,1,0,0,1,0,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,141.0,1,37,37,9,9,136.3,1,0,0,1,1,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,140.0,1,3,3,2,2,124.3,0,0,0,0,1,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,125.0,1,1,3,4,1,121.9,1,0,0,1,1,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,Dropout +1,17,1,9070,1,1,134.0,1,1,1,5,0,133.3,1,0,0,1,1,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9670,1,1,127.0,22,37,37,9,9,127.0,1,0,0,1,1,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,Graduate +1,42,1,9853,1,1,120.0,1,37,38,3,3,113.7,0,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,3,9670,1,1,121.0,1,3,19,2,8,122.4,1,0,0,1,1,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,Enrolled +1,1,3,171,1,1,139.0,1,19,19,5,3,128.2,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,42,1,9085,1,1,100.0,1,1,38,4,9,100.0,1,0,0,1,0,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,10,1,9500,1,1,140.0,24,3,3,2,9,140.0,1,0,1,0,0,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,132.0,1,37,19,9,9,131.0,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,124.0,1,1,1,4,4,127.9,1,0,0,1,1,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9119,1,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9773,1,1,117.0,1,38,38,9,9,111.1,0,0,1,1,1,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,19,133.1,1,19,37,9,9,149.4,0,0,0,0,1,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,1,1,161.9,0,0,0,1,1,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,140.0,1,38,37,4,7,130.0,1,0,0,0,0,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,43,1,171,1,1,145.0,1,19,38,9,9,100.0,0,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9773,1,1,120.0,1,37,38,9,3,155.5,0,0,0,1,1,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,121.8,0,0,0,0,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9130,1,3,140.0,1,5,4,2,0,140.0,0,0,1,0,0,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,Dropout +1,51,1,171,1,1,128.0,1,2,1,3,3,131.2,1,0,0,1,1,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,12,110.0,1,37,37,7,9,120.0,0,0,0,1,0,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,150.0,1,2,3,3,2,140.8,0,0,0,1,0,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,Enrolled +1,43,1,9070,1,1,125.0,1,19,19,7,8,133.4,1,0,0,1,1,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,Enrolled +1,1,5,171,1,1,160.0,1,1,1,4,4,139.7,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,1,120.0,1,1,38,9,9,150.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,154.0,1,19,19,3,3,142.0,0,0,0,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9254,1,1,110.0,1,4,19,4,3,114.8,1,0,0,0,1,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9119,1,1,140.0,1,34,34,9,9,140.0,0,0,0,0,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,125.0,1,1,1,4,2,134.1,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9254,1,40,130.0,1,1,1,3,6,130.0,0,0,0,1,0,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9254,1,1,122.0,1,37,37,9,3,124.5,1,0,0,1,0,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,130.0,1,1,3,9,2,128.6,1,0,0,1,0,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,Graduate +1,17,4,9670,1,1,122.0,1,3,1,2,3,119.6,1,0,0,1,1,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,Graduate +1,44,3,9085,1,39,150.0,1,1,19,4,1,150.0,1,0,0,1,0,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,19,37,9,9,130.0,1,0,0,1,1,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,133.1,1,38,19,4,7,98.0,1,0,0,1,1,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,Enrolled +1,17,2,9556,1,1,125.0,1,38,19,7,7,121.5,1,0,0,1,0,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,Dropout +2,1,4,9500,1,1,143.0,1,38,38,5,5,128.7,1,0,0,1,0,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,1,100.0,1,1,19,4,8,122.0,0,0,0,1,0,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,Graduate +1,51,1,9500,1,1,170.0,1,1,1,4,10,125.0,0,0,0,1,1,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,Graduate +1,18,4,9500,1,1,137.0,1,3,1,3,4,126.7,1,0,0,1,0,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,19,133.1,1,38,38,9,8,106.0,1,0,0,1,1,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,40,130.0,1,19,1,3,4,152.0,1,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9085,1,39,140.0,1,1,39,3,9,140.0,1,0,0,1,0,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9773,1,1,133.1,1,3,1,4,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +2,43,1,9853,1,1,110.0,1,37,37,7,7,100.0,0,0,0,1,1,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,Graduate +1,7,1,9119,1,3,120.0,1,19,19,1,1,120.0,0,0,0,0,1,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,1,130.0,1,34,34,99,99,114.8,0,0,0,1,0,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,140.0,1,37,3,9,10,172.0,0,0,0,1,1,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,Enrolled +1,17,2,9670,1,1,123.0,1,34,37,0,0,114.6,1,0,1,0,0,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,Dropout +1,43,2,9500,1,1,136.0,1,19,1,9,10,124.1,0,0,0,1,1,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,116.0,1,1,1,1,1,110.8,1,0,0,1,0,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9003,1,1,133.1,1,37,37,4,7,130.0,0,0,1,0,1,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,Dropout +1,1,3,9085,1,1,158.0,1,1,19,9,9,153.6,1,0,0,1,0,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,Graduate +1,17,4,9773,1,1,121.0,1,1,19,9,8,120.3,1,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,5,3,9085,1,1,141.0,1,1,19,7,5,128.8,1,0,0,1,0,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,Enrolled +1,18,4,9556,1,1,127.0,1,1,38,4,7,121.8,1,0,0,1,0,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,110.0,1,34,34,0,0,114.6,1,0,0,1,0,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9085,1,1,128.0,1,38,19,8,8,117.2,0,0,0,1,1,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,143.0,1,1,38,3,3,133.2,1,0,0,1,0,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,Graduate +1,1,4,9853,1,1,134.0,1,19,1,5,9,127.4,1,0,0,1,0,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Enrolled +1,1,1,9670,1,1,133.1,1,3,1,1,7,155.0,0,0,0,1,0,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,114.0,1,19,38,9,7,129.1,0,0,0,1,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,149.0,1,19,37,7,4,134.3,0,1,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,130.0,1,1,38,3,5,128.6,1,0,0,1,1,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,42,1,9147,1,1,139.0,1,3,38,2,5,112.3,1,0,0,1,0,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,Enrolled +1,1,3,9773,1,1,130.0,1,19,19,9,9,123.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,38,38,9,5,100.0,0,0,0,1,0,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,Enrolled +6,39,1,8014,0,1,133.1,1,37,1,9,7,114.8,0,0,0,1,0,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,121.0,1,1,38,4,9,114.4,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,18,1,9238,1,1,122.0,1,38,38,9,7,114.7,0,0,1,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9773,1,1,120.0,1,1,1,2,5,127.0,1,0,0,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,4,1,2,8,120.0,0,0,0,1,1,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,3,9500,1,1,143.0,1,38,1,9,5,133.8,1,0,0,1,0,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,130.0,1,1,19,9,7,133.8,0,0,1,1,0,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,Graduate +2,39,1,9556,1,1,100.0,1,37,37,9,9,120.0,0,0,0,1,0,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,133.1,1,1,19,5,4,102.5,0,0,0,1,0,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9003,1,1,111.0,1,1,3,4,2,162.4,0,0,1,0,1,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,133.1,1,19,1,9,3,107.0,1,0,0,1,0,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,128.0,1,19,1,4,4,124.3,1,0,0,1,1,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,140.0,1,36,14,9,10,130.0,1,0,0,1,1,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,150.0,1,38,19,7,10,134.6,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9070,1,1,134.0,1,34,1,5,7,129.8,1,0,0,1,0,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,150.0,1,37,37,9,3,150.0,1,0,0,1,1,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,Dropout +2,39,1,9238,1,1,126.6,1,38,38,9,7,107.5,0,0,1,1,0,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,120.0,1,37,37,9,7,106.8,0,0,0,1,0,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9254,1,1,117.0,1,1,1,5,5,116.3,1,0,0,1,1,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,130.0,1,19,19,5,5,157.0,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9556,1,1,133.1,1,44,40,2,2,115.5,0,0,0,1,0,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,133.1,1,3,1,2,4,125.0,0,0,0,1,1,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,9,9,100.0,0,0,0,0,1,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9500,1,1,141.0,1,37,1,9,4,127.3,1,0,0,1,0,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,117.0,1,38,38,175,183,113.2,1,0,1,1,0,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,133.1,1,37,37,7,7,124.5,0,0,0,0,1,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,Dropout +1,17,2,9070,1,1,133.1,1,37,38,9,10,178.0,1,0,0,1,1,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,19,9,9,115.0,1,0,0,1,1,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,146.0,1,1,1,3,4,128.2,0,0,1,1,0,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,4,9070,1,1,128.0,1,1,1,9,10,136.1,1,0,1,0,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,Dropout +5,39,1,9500,1,3,140.0,1,37,38,9,9,160.0,0,0,0,1,0,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,8,121.0,0,0,1,0,0,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,140.0,1,2,1,2,3,140.0,1,0,0,1,0,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,3,9670,1,1,126.0,1,37,37,0,0,136.5,1,0,0,1,0,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,140.0,1,19,37,9,9,130.2,1,0,0,1,0,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,1,3,1,2,133.0,0,0,0,1,0,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,136.0,1,19,38,9,9,121.7,1,0,0,1,1,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,4,9085,1,1,106.0,1,37,1,3,9,106.0,0,0,0,1,0,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,Enrolled +1,1,3,9500,1,1,135.0,1,1,37,7,7,120.5,1,0,0,1,0,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,115.0,1,19,19,7,7,115.0,1,0,0,1,0,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9238,1,1,160.0,1,38,1,9,3,124.0,0,0,1,1,1,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,129.0,1,38,38,5,5,120.8,1,0,0,1,0,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,160.0,41,37,19,9,9,160.0,0,0,0,1,0,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,132.0,1,1,19,7,5,129.9,1,0,0,1,1,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,136.0,1,37,38,9,8,139.2,1,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,127.0,1,19,37,9,7,121.3,1,0,0,1,0,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9119,1,1,142.0,1,1,38,4,3,129.8,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,5,8,133.2,0,0,0,0,1,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,Dropout +1,1,1,9147,1,1,150.0,1,1,19,5,5,137.8,1,0,0,1,1,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,135.0,1,3,1,2,4,129.8,1,0,0,1,1,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,Graduate +1,43,2,9773,1,1,132.0,1,19,19,0,0,127.1,0,0,0,1,1,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,3,9500,1,1,140.0,1,3,2,3,3,126.4,1,0,0,1,0,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,Dropout +2,39,2,9119,1,19,133.1,1,37,37,7,7,118.0,0,0,0,0,1,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,110.0,1,3,4,2,2,110.0,1,0,0,1,1,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,Dropout +2,39,1,9500,1,38,133.1,1,37,37,9,3,146.6,0,0,0,1,1,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,146.0,1,1,3,4,1,135.2,1,0,0,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,3,5,2,2,135.8,0,0,1,1,1,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9773,1,19,100.0,1,37,37,0,0,163.5,0,0,1,0,1,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,7,113.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,143.0,1,3,3,9,7,129.0,1,0,0,1,1,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,Graduate +1,1,2,9853,1,1,117.0,1,1,38,4,9,109.7,1,0,0,1,0,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9130,1,2,133.1,6,42,1,4,9,100.0,0,0,0,1,1,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,115.8,0,0,1,0,1,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9773,1,1,167.0,1,38,38,6,7,153.0,1,0,0,1,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,51,1,9238,1,1,141.0,1,1,1,5,9,125.0,0,0,0,1,1,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,4,9500,1,1,132.0,1,38,19,5,7,125.5,0,0,0,1,0,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,Graduate +1,1,1,9119,1,1,132.0,1,1,12,3,3,133.1,1,0,0,1,1,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,149.0,1,1,1,4,4,129.3,1,0,0,1,1,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,142.5,0,0,0,1,0,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,Enrolled +1,1,6,9773,1,1,133.1,1,1,37,3,3,100.0,1,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,138.0,1,37,37,9,6,145.0,1,0,0,1,0,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,19,19,3,6,124.3,1,0,0,1,0,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,135.0,1,37,37,9,7,132.6,1,0,0,1,0,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,159.0,1,34,26,0,6,160.1,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,133.1,1,37,37,6,8,100.0,0,0,1,1,0,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9070,1,1,153.0,1,3,3,1,2,146.7,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,43,1,171,1,2,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,141.0,1,19,19,9,8,142.8,0,0,0,1,0,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,39,2,9556,1,1,130.0,1,19,19,4,5,100.0,0,0,0,1,1,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,120.0,1,38,19,3,5,120.0,0,0,0,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,2,9147,1,1,120.0,1,37,37,9,9,104.0,0,0,0,0,1,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,150.0,1,38,38,9,9,132.0,1,0,0,1,0,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,142.0,1,38,38,9,9,132.9,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9085,1,1,160.0,1,4,19,2,5,162.1,1,0,0,1,0,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,8,130.2,1,0,0,1,0,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,118.0,1,1,1,9,9,111.0,0,0,0,0,1,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,119.0,1,37,37,10,6,119.7,1,0,0,1,0,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,Enrolled +1,17,2,171,1,1,137.0,1,1,1,4,1,143.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,18,3,9085,1,1,149.0,103,1,1,9,9,132.2,1,0,0,1,0,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,130.0,1,37,37,90,90,125.1,0,0,0,1,0,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,Graduate +4,17,5,8014,0,1,100.0,1,19,19,90,90,107.0,0,0,0,1,0,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,19,133.1,1,38,19,9,10,142.7,0,0,1,1,1,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,139.0,1,19,37,5,5,125.5,0,0,0,1,0,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,133.0,1,4,1,5,5,131.6,0,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,148.0,1,19,19,9,3,125.0,1,0,0,1,0,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,110.0,1,37,37,9,9,110.3,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,53,1,9003,1,42,130.0,1,38,38,9,9,130.0,1,0,1,1,1,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,Enrolled +1,1,4,9070,1,1,140.0,1,4,19,2,10,125.0,1,0,0,1,1,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9003,1,39,140.0,1,19,1,5,5,140.0,0,0,0,1,0,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,Enrolled +1,1,4,9070,1,1,136.0,1,37,37,9,8,136.7,1,0,0,1,0,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,1,5,9773,1,1,125.0,1,37,3,5,2,126.1,1,0,0,1,1,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,8014,0,1,126.0,1,37,38,9,10,119.4,0,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,123.0,1,1,3,2,2,118.8,0,0,0,1,1,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9500,1,1,144.0,1,1,37,9,9,127.5,1,0,0,1,0,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,125.0,1,38,37,8,7,131.7,1,0,0,1,1,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,144.0,1,37,37,8,8,138.4,0,0,0,1,0,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,160.0,1,37,37,3,4,97.0,0,0,0,1,0,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,37,38,9,9,125.0,1,0,0,1,0,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,117.0,1,37,37,9,9,109.3,0,0,0,0,0,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,3,130.0,1,37,37,9,9,146.2,0,0,0,1,0,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,150.0,1,37,37,9,9,130.3,0,0,0,1,0,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,Graduate +2,39,2,8014,0,19,100.0,1,37,37,4,7,100.0,0,0,1,1,0,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,38,133.1,1,38,37,4,8,95.5,0,0,0,1,1,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,120.7,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9119,1,19,120.0,1,37,37,9,4,98.6,0,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9130,1,1,120.0,1,19,37,1,9,116.1,1,0,0,1,1,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9500,1,1,136.0,1,1,1,4,9,128.5,1,0,0,1,0,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,132.0,1,38,37,7,7,131.3,1,0,0,1,0,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,115.0,1,38,38,9,8,108.4,1,0,0,1,0,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,120.0,1,37,37,9,9,98.7,0,0,0,1,1,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,120.0,1,37,37,9,9,155.8,0,0,0,1,1,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,151.0,1,19,1,5,0,144.4,1,0,0,1,0,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,Graduate +1,43,2,9147,1,1,131.0,1,19,37,5,9,123.7,1,0,0,1,0,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,Enrolled +1,17,4,9085,1,1,128.0,1,38,37,4,9,117.9,1,0,0,1,0,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,8014,0,12,133.1,1,37,1,9,10,112.5,0,0,0,1,1,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,19,133.1,1,37,37,4,8,140.0,0,0,0,1,0,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,7,1,9147,1,2,150.0,1,3,37,2,5,150.0,1,0,1,0,0,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,2,9147,1,1,102.0,1,37,38,191,143,101.7,1,0,0,1,0,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,128.0,1,19,1,4,1,118.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,133.1,1,19,1,4,8,144.3,0,0,0,1,1,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,5,9254,1,1,128.0,1,19,1,7,10,116.5,1,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,140.0,1,19,19,7,5,135.1,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,18,2,9500,1,1,129.0,1,38,37,5,5,119.0,1,0,0,1,0,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,3,1,3,3,131.5,1,0,0,1,0,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,143.0,1,3,3,2,5,144.8,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,127.0,1,37,37,9,8,123.2,1,0,0,1,0,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9500,1,1,125.0,1,37,37,9,7,123.6,1,0,0,1,0,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,138.0,1,1,38,3,9,123.0,1,0,0,1,0,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,139.0,1,38,38,9,9,145.0,1,0,0,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,121.0,1,37,19,6,7,116.8,1,0,0,1,0,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,2,9085,1,1,123.0,1,1,19,4,9,113.6,1,0,0,1,0,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,17,6,9773,1,1,126.0,1,1,19,5,5,119.0,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,4,9119,1,1,139.0,1,37,19,9,4,133.1,1,0,0,1,1,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,158.0,1,1,38,3,6,155.2,0,0,0,1,1,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,8014,0,1,133.1,1,19,1,1,1,118.0,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,136.0,1,22,30,0,8,135.7,1,0,0,1,0,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,120.0,1,37,37,9,9,110.0,0,0,0,0,1,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,124.0,1,19,19,7,9,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,Enrolled +5,7,1,9991,0,2,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,4,9238,1,1,123.0,1,38,1,4,10,129.0,1,0,0,1,0,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,4,9119,1,1,135.0,1,38,37,5,7,126.6,1,0,0,1,1,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,129.0,1,5,3,5,7,124.8,1,0,0,1,0,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,Graduate +1,17,5,9147,1,1,127.0,1,1,38,4,5,124.6,1,0,0,1,0,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,135.0,1,1,1,4,4,118.5,0,0,0,1,0,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,171,1,1,142.0,1,3,1,2,6,139.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9147,1,1,133.1,1,19,19,9,9,119.8,0,0,0,1,1,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,123.0,1,1,37,9,9,132.1,0,0,0,1,0,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9853,1,1,115.0,1,3,37,2,5,108.7,1,0,0,1,0,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,12,133.1,1,37,34,90,90,110.7,1,0,0,1,0,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,155.0,1,4,3,1,1,144.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9254,1,1,105.0,1,1,19,9,6,106.1,1,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,150.0,1,19,19,3,4,135.0,0,0,0,1,0,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,152.0,1,37,37,5,7,136.3,0,0,0,1,0,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,34,34,0,0,120.5,1,0,0,1,1,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,140.0,1,1,37,4,5,123.6,1,0,0,1,0,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,120.0,1,37,37,9,9,150.1,1,0,0,1,1,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,144.0,1,37,38,9,9,126.9,0,0,0,1,0,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,120.0,1,37,37,9,9,128.2,0,0,0,0,1,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,Dropout +1,18,2,9147,1,1,115.0,1,1,37,5,5,108.7,1,0,0,1,0,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,140.0,1,19,19,4,4,140.0,1,0,0,0,1,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,1,1,3,7,140.0,1,0,0,1,0,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9500,1,1,129.0,1,19,19,5,5,119.6,1,0,0,1,0,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,Graduate +1,17,6,9773,1,1,141.0,1,37,37,5,5,127.7,1,0,0,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,137.0,1,19,37,4,7,126.3,1,0,0,1,0,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,1,168.0,1,1,41,9,3,153.9,0,0,1,0,1,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,133.0,1,37,37,9,9,121.8,1,0,0,1,0,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,119.0,1,2,1,4,3,113.1,1,0,0,1,0,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,142.0,1,38,19,141,171,115.0,0,0,0,1,0,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,4,9773,1,1,138.0,1,37,19,5,7,133.5,1,0,0,0,0,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +2,7,1,8014,0,3,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,133.0,1,3,19,2,5,130.8,1,0,0,1,0,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,137.0,1,38,19,152,171,131.1,1,0,0,1,0,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9119,1,1,130.0,1,1,38,3,3,129.3,0,0,0,1,1,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Graduate +1,43,1,9773,1,1,126.0,1,1,37,3,0,110.0,0,0,1,1,0,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,116.0,1,1,12,5,8,110.4,1,0,0,1,1,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,1,1,4,10,110.0,0,0,1,1,0,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,5,9238,1,1,134.0,1,38,37,9,9,126.0,0,0,1,0,0,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,Dropout +2,39,1,9147,1,1,130.0,1,1,19,9,9,109.9,0,0,0,0,0,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9085,1,1,133.1,41,37,37,9,9,109.6,0,0,0,1,0,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,1,140.0,0,0,0,1,1,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,Enrolled +2,39,1,9991,0,19,133.1,1,38,38,90,90,121.7,1,0,0,1,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,143.0,1,1,3,4,7,129.7,1,0,0,1,0,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,133.0,1,1,19,9,6,121.5,1,0,0,1,0,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,133.0,1,38,37,9,9,125.3,1,0,0,1,0,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,Graduate +1,42,1,9991,0,1,160.0,1,1,2,4,3,120.0,0,0,0,1,0,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,Graduate +2,39,2,9556,1,1,133.1,105,1,3,9,2,152.8,1,0,0,1,0,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,123.0,1,1,1,4,6,118.8,1,0,0,1,0,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,122.0,1,3,19,2,3,112.9,0,0,0,1,0,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,Graduate +1,1,5,9853,1,1,123.0,1,1,12,4,9,113.2,1,0,0,1,0,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,140.0,1,37,37,9,9,141.5,1,0,1,0,0,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,129.0,1,19,19,4,8,127.3,1,0,0,1,0,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,1,130.0,1,37,37,6,6,110.0,0,0,0,1,0,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,Enrolled +4,39,1,8014,0,19,133.1,1,37,37,9,9,95.0,0,0,1,0,0,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9853,1,1,127.0,1,37,19,9,8,137.5,1,0,0,1,0,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,142.0,1,38,37,5,7,128.8,1,0,0,1,0,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,Graduate +1,17,2,9147,1,1,142.0,1,19,19,4,8,127.3,0,0,0,1,0,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +3,39,1,9991,0,1,120.0,1,37,1,9,2,170.0,0,0,0,1,1,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,138.0,1,19,37,4,9,141.0,0,0,0,1,1,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,132.0,1,1,38,9,9,120.1,1,0,0,1,1,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,140.0,1,1,1,2,7,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,121.0,1,37,19,9,10,113.7,0,0,0,1,0,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,Enrolled +1,39,1,8014,0,38,133.1,1,1,1,4,4,107.5,0,0,1,0,1,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,150.0,1,1,1,5,1,155.6,0,0,0,1,0,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,150.0,1,37,37,9,6,131.1,0,0,0,1,0,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,100.0,1,3,19,1,1,117.9,0,0,0,0,1,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,2,9991,0,1,150.0,1,37,37,9,9,120.0,0,0,0,1,0,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,150.0,1,1,38,4,9,150.0,0,0,0,1,1,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,Enrolled +2,43,1,9130,1,9,133.1,1,34,34,0,0,128.2,0,0,0,1,1,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,141.0,1,1,1,90,3,127.8,0,0,0,1,0,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,116.0,1,3,3,0,1,108.7,1,0,0,1,1,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,Dropout +2,39,1,9500,1,1,140.0,1,19,19,9,7,110.5,0,0,0,1,0,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9254,1,19,133.1,1,34,34,0,0,120.0,0,0,1,0,1,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,133.1,1,37,37,191,172,115.2,0,0,0,1,0,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,6,160.0,0,0,0,1,0,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,133.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9556,1,1,131.0,1,19,38,9,7,128.5,0,0,0,1,0,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,160.0,1,37,38,9,7,161.0,1,0,0,1,0,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,136.0,1,3,3,1,2,152.5,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9853,1,1,114.0,1,19,37,5,5,109.5,1,0,0,1,0,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,150.0,1,37,37,9,7,122.5,0,0,0,1,1,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,Dropout +1,44,1,9991,0,39,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,8014,0,42,140.0,1,19,37,134,193,138.0,1,0,1,1,0,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,127.0,1,2,19,3,9,121.5,0,0,0,1,1,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,133.1,1,19,19,3,3,125.3,0,1,0,1,1,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,4,9670,1,1,125.0,1,4,19,2,5,118.0,1,0,0,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,Graduate +2,42,1,9070,1,1,170.0,1,37,25,0,4,148.5,0,0,0,1,1,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,Dropout +1,17,5,9254,1,1,121.0,1,1,19,4,7,116.5,1,0,0,0,1,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,120.0,1,19,38,5,9,130.2,0,0,0,1,0,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,140.0,1,19,37,9,9,140.7,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,140.0,1,19,19,5,9,131.3,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,42,1,9119,1,1,140.0,1,3,3,3,2,133.6,1,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,8014,0,1,150.0,1,19,2,4,6,148.0,0,0,0,1,0,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,127.0,1,37,2,9,4,123.2,1,0,0,1,0,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,119.0,1,19,37,9,9,119.4,1,0,0,1,0,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,132.0,1,2,1,4,1,127.8,0,0,0,1,1,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,Dropout +1,42,1,9119,1,1,136.0,1,1,37,5,5,117.5,0,0,0,1,1,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9991,0,1,122.0,1,37,37,9,3,113.6,0,0,0,1,1,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,5,6,137.4,0,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,128.0,1,19,19,5,4,116.5,0,0,0,1,0,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,139.0,1,1,38,6,6,143.6,1,0,1,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9130,1,1,154.0,1,3,3,2,2,137.2,1,0,1,1,1,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,6,9500,1,1,142.0,1,19,37,4,9,131.9,1,0,0,1,0,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Dropout +1,1,2,9773,1,1,131.0,1,19,37,9,10,121.9,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +2,7,1,9130,1,3,120.0,1,3,3,1,1,128.2,0,0,0,1,0,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,19,133.1,1,37,37,9,9,150.3,0,0,0,1,0,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,125.0,1,37,37,5,5,124.0,0,0,0,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,135.0,1,37,19,9,9,125.2,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,9,124.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,175.0,1,3,38,2,10,157.5,1,0,0,1,0,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,139.0,1,1,1,4,10,140.7,0,0,0,1,1,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,Dropout +1,1,4,9500,1,1,128.0,1,1,1,4,10,125.2,1,0,0,1,1,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,150.0,1,1,37,1,1,131.5,1,0,0,1,0,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,168.0,1,38,1,9,10,166.0,1,0,0,1,0,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,Graduate +1,51,1,9070,1,1,125.0,1,42,3,125,124,130.0,1,0,0,1,1,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,135.0,1,1,38,4,5,127.5,1,0,0,1,0,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,Graduate +1,18,1,9119,1,1,148.0,1,3,19,3,5,147.7,0,0,0,1,1,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9773,1,1,130.0,109,19,1,9,9,126.9,1,0,0,1,0,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,125.0,1,19,38,3,7,114.9,0,0,0,1,0,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,Graduate +1,7,1,9119,1,3,130.0,1,37,37,9,9,130.0,0,0,0,0,1,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9853,1,1,130.0,1,37,19,7,3,140.0,0,0,1,1,0,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,112.0,1,3,1,3,5,111.0,0,0,0,1,0,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,37,38,193,181,125.9,0,0,0,1,0,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,Graduate +1,42,1,9119,1,1,120.0,1,34,34,0,0,128.2,1,0,0,1,1,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,19,133.1,1,37,37,9,9,117.2,0,0,0,1,0,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9147,1,1,131.0,1,19,38,9,7,132.4,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9003,1,1,180.0,1,1,1,4,8,179.6,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,5,9119,1,1,135.0,1,37,37,90,90,122.1,1,0,0,1,1,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.0,1,1,38,5,10,131.3,1,0,0,1,0,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,126.0,1,37,19,5,5,119.3,0,0,0,1,0,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,110.0,1,19,37,9,6,120.0,0,0,1,0,1,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9556,1,1,130.0,1,37,37,9,9,159.0,1,0,0,1,0,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,141.0,1,19,38,4,5,133.7,1,0,0,1,1,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,1,37,4,6,120.0,0,0,0,1,1,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9085,1,1,123.0,1,3,19,2,9,118.9,0,0,0,1,1,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,17,1,9991,0,1,140.0,1,38,37,6,7,127.3,0,0,0,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,151.0,1,3,1,2,1,129.8,1,0,0,1,1,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,113.0,1,37,37,0,6,128.2,0,0,0,0,0,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9070,1,1,117.0,1,1,37,4,7,127.9,1,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,145.0,1,19,19,9,7,136.6,0,0,0,1,0,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.0,1,34,37,4,9,134.4,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,9238,1,39,130.0,1,38,38,5,10,126.7,0,0,1,1,0,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9773,1,1,122.0,1,1,1,4,7,116.8,1,0,1,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,3,9147,1,1,124.0,1,1,1,5,3,116.7,1,0,0,1,1,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,38,1,9,4,123.2,0,0,0,1,0,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,Enrolled +1,39,1,9556,1,40,130.0,1,1,1,4,5,145.0,0,0,0,1,0,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,Enrolled +1,43,1,9147,1,1,127.0,25,1,5,9,10,124.2,1,0,0,1,1,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,43,1,9670,1,1,120.0,1,34,34,0,0,128.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9238,1,1,122.0,1,1,3,9,2,112.6,1,0,0,1,1,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,122.0,1,1,1,4,4,119.6,1,0,0,1,0,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,Enrolled +1,17,5,9670,1,1,125.0,1,1,19,9,7,119.4,1,0,0,1,0,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,146.0,1,19,37,9,7,153.0,1,0,0,1,0,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,108.0,1,38,38,7,7,115.0,1,0,1,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,133.1,1,1,1,3,9,138.0,1,0,0,1,0,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,140.0,1,37,37,9,5,140.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,19,133.1,1,2,1,2,4,100.0,0,0,0,1,1,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9147,1,1,129.0,1,38,37,3,5,132.9,1,0,0,1,0,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,149.0,1,3,2,2,5,151.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,135.0,1,19,4,9,2,143.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9147,1,1,158.0,1,19,37,9,7,130.0,1,0,0,1,0,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,Graduate +1,17,6,9556,1,1,122.0,1,1,1,4,5,117.1,1,0,0,1,0,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9556,1,12,133.1,1,34,34,99,99,100.5,0,0,0,1,0,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9003,1,1,123.0,1,37,37,9,9,110.0,0,0,1,0,0,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,138.0,1,3,3,2,2,127.5,1,0,0,1,0,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,Graduate +1,43,1,9500,1,1,121.0,1,38,19,5,5,115.4,1,0,0,1,0,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,Enrolled +1,17,4,9147,1,1,114.0,1,19,19,4,4,109.5,1,0,0,1,1,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,148.0,1,1,1,4,8,145.2,0,0,0,1,1,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,121.0,1,1,1,4,4,123.1,1,0,0,1,1,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,150.0,1,3,3,2,5,154.6,1,0,0,1,0,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,151.0,1,19,38,9,9,157.0,1,0,1,1,0,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,101.0,0,0,0,1,0,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,2,9254,1,1,127.0,1,3,19,3,10,130.9,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,146.0,1,1,1,9,8,149.5,1,0,0,1,1,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9130,1,6,133.1,1,1,29,4,90,123.3,1,0,0,1,0,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,3,3,7,146.5,1,0,1,1,1,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,Enrolled +1,7,1,8014,0,40,120.0,1,37,19,9,3,120.0,0,0,0,1,0,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9853,1,1,125.0,1,37,37,9,9,114.9,1,0,1,0,0,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,2,9773,1,1,140.0,1,1,1,4,3,131.6,0,0,0,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,142.0,1,1,19,9,9,136.1,0,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,113.0,1,1,1,4,4,106.7,1,0,0,1,0,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,130.0,1,1,2,4,2,130.0,0,0,0,1,1,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,39,1,9119,1,1,130.0,1,19,37,9,9,134.0,0,0,0,1,1,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,Enrolled +1,18,1,9500,1,1,123.0,1,37,37,3,3,118.0,1,0,0,1,0,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,Graduate +1,10,2,9085,1,1,163.3,22,19,1,4,9,163.3,0,0,0,1,0,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,5,135.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,136.0,1,4,5,2,2,126.2,0,0,0,1,1,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,150.0,1,1,37,4,8,150.0,1,0,0,0,0,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9085,1,3,140.0,1,19,20,4,90,140.0,1,0,0,1,0,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,43,1,9070,1,1,135.0,1,1,38,3,9,126.4,1,0,0,1,0,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,140.0,1,19,38,7,8,129.9,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,133.1,1,1,1,9,9,155.0,0,0,0,1,0,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,5,9773,1,1,122.0,1,38,38,7,7,123.1,1,0,0,0,0,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,117.0,1,1,1,9,9,109.3,1,0,0,1,0,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9500,1,1,130.0,1,1,38,9,9,125.1,1,0,0,1,0,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,Enrolled +1,1,2,9773,1,1,144.0,1,3,3,3,2,140.2,1,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,145.0,1,1,1,4,10,145.0,0,0,0,1,0,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,Dropout +1,51,1,9070,1,1,143.0,1,1,1,4,4,120.0,1,0,0,1,0,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,145.0,1,1,38,90,8,132.8,1,0,0,0,1,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9556,1,1,120.0,1,38,38,191,193,120.0,0,0,1,1,0,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,148.0,1,19,1,7,5,138.3,1,0,0,1,1,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,146.0,1,3,3,3,6,133.4,1,0,0,1,0,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,Graduate +1,17,1,9130,1,1,131.0,1,12,12,2,8,128.2,1,0,0,1,1,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,6,9556,1,1,115.0,1,19,2,5,3,112.2,1,0,0,1,0,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,Graduate +1,43,1,9556,1,1,126.0,1,2,3,3,2,100.0,0,0,0,1,0,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,Enrolled +1,17,1,9238,1,1,120.0,1,19,37,9,9,113.0,1,0,0,1,0,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,132.0,1,19,38,5,5,118.0,1,0,0,1,0,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,Graduate +2,1,1,9238,1,1,145.0,1,37,34,9,7,139.4,0,0,0,0,0,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,131.0,1,38,38,191,174,125.4,1,0,0,1,0,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,39,1,9119,1,1,120.0,1,37,38,9,10,145.4,0,0,1,1,1,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,Dropout +1,1,1,9130,1,1,138.0,1,4,5,2,2,123.0,1,0,0,1,0,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,127.0,1,5,3,4,4,122.8,1,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,136.0,1,1,1,4,4,127.0,1,0,0,1,0,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,Enrolled +1,17,3,9119,1,1,115.0,1,3,1,3,3,116.1,1,0,0,0,1,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,143.0,1,38,37,4,9,116.5,1,0,0,1,0,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,3,19,3,8,134.9,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,Graduate +1,44,1,9119,1,39,140.0,1,5,41,3,2,140.0,0,0,0,1,1,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,124.0,1,19,19,9,3,115.6,1,0,0,0,1,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9500,1,3,130.0,1,19,38,5,3,130.0,0,0,0,1,0,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,137.0,1,1,1,4,10,124.8,1,0,0,1,1,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,138.0,1,1,3,1,4,127.5,1,0,0,1,1,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,112.0,1,1,1,5,1,111.7,0,0,1,0,1,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,Dropout +1,1,4,9500,1,1,147.0,1,1,1,4,9,124.5,1,0,0,1,0,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,Graduate +1,7,1,9500,1,3,140.0,1,3,19,2,6,140.0,0,0,0,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,121.0,1,19,19,7,7,113.0,1,0,0,1,0,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,8014,0,1,96.0,1,3,1,3,9,100.0,0,0,0,1,0,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,152.0,1,1,38,4,5,144.7,0,0,0,1,0,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,Graduate +2,1,1,9070,1,1,127.0,1,12,19,9,9,123.2,0,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,Graduate +1,1,3,9070,1,1,147.0,1,34,37,5,7,135.8,1,0,0,1,0,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,7,1,9119,1,4,180.0,1,4,3,2,7,180.0,0,0,1,1,1,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,Enrolled +1,1,6,9500,1,1,129.0,1,37,19,9,7,127.8,1,0,0,1,0,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,100.0,1,37,37,7,7,160.0,1,0,0,1,0,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,127.0,1,19,1,5,5,117.6,1,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9003,1,1,110.0,1,1,1,9,4,120.0,0,0,1,0,1,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9773,1,1,143.0,11,19,19,4,9,133.9,1,0,0,1,1,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,160.0,1,37,37,7,7,156.1,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,43,2,9670,1,1,135.0,1,3,19,1,7,123.5,1,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,1,130.0,1,38,3,132,122,100.0,0,0,0,1,1,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,Enrolled +1,15,1,9238,1,1,150.0,26,19,1,9,9,146.5,1,0,1,0,1,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,Graduate +1,17,6,9119,1,1,129.0,1,37,13,4,90,117.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,3,130.0,1,3,3,3,10,147.6,0,0,0,1,1,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,171,1,1,145.0,1,1,1,3,3,140.1,1,0,0,1,0,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,43,3,9254,1,1,135.0,1,3,3,2,2,122.1,0,0,0,1,1,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,171,1,1,140.0,41,1,1,5,7,146.3,1,0,0,1,0,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9070,1,1,126.0,1,38,38,9,8,129.9,1,0,0,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Graduate +1,7,1,9070,1,3,120.0,1,4,4,2,2,120.0,0,0,0,1,1,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,Dropout +1,17,4,9070,1,1,144.0,1,38,1,9,9,137.4,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,125.0,1,3,3,2,3,118.0,1,0,0,1,1,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,Dropout +5,39,1,9238,1,1,130.0,1,19,38,9,10,146.0,0,0,0,1,1,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,5,107.5,0,0,0,1,0,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9773,1,1,130.0,1,1,19,1,3,161.5,0,0,0,1,1,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,140.0,1,19,19,9,4,127.8,1,0,0,1,1,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,113.0,1,1,37,1,10,116.5,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,Graduate +1,1,2,9238,1,1,145.0,1,1,19,4,8,121.4,0,0,0,1,0,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9003,1,19,133.1,1,19,37,9,10,120.0,0,0,1,1,0,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,Enrolled +1,1,1,9085,1,1,150.0,1,12,2,4,2,144.6,0,0,1,0,0,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,40,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,Dropout +1,17,5,9500,1,1,137.0,1,1,1,5,5,132.6,1,0,0,1,0,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,3,19,4,7,119.0,0,0,0,1,1,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,128.0,1,1,1,4,5,124.7,0,0,0,1,1,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,Enrolled +1,39,2,9670,1,19,133.1,1,34,34,0,0,100.0,1,0,0,0,1,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,Dropout +1,39,1,9556,1,1,120.0,1,19,19,4,5,122.8,0,0,0,1,0,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,Dropout +1,1,2,171,1,1,165.0,1,3,3,2,2,163.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,133.8,1,3,37,2,10,184.0,0,0,0,1,0,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,120.0,1,37,19,9,4,148.8,0,0,0,1,0,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,5,9500,1,1,151.0,1,1,1,9,9,127.8,0,0,0,1,0,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,131.0,1,38,19,7,7,125.3,1,0,0,1,0,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,128.0,1,1,1,9,6,120.3,0,0,0,1,1,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,118.0,1,3,1,5,10,113.5,1,0,0,1,0,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,140.0,1,37,37,7,9,126.8,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,117.0,1,38,37,9,9,113.5,1,0,0,1,0,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,135.0,1,19,19,9,9,122.8,1,0,0,1,1,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,151.0,1,37,37,9,7,147.5,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,1,3,4,4,147.5,1,0,0,1,0,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,128.0,1,38,37,9,9,124.9,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9085,1,1,124.0,1,3,19,2,3,113.9,1,0,0,1,0,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,120.0,1,3,19,4,7,119.7,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,171,1,1,147.0,1,1,12,4,4,148.4,1,0,0,1,1,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,136.0,1,19,1,9,8,123.4,1,0,0,1,0,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,123.0,1,3,1,2,5,112.9,0,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,2,9556,1,1,133.1,1,3,1,2,4,136.1,0,0,0,1,1,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,141.0,1,3,1,4,4,142.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9003,1,1,120.0,1,37,37,9,9,120.5,1,0,1,1,1,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,6,140.0,1,0,0,1,1,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,147.0,1,19,1,4,3,138.5,1,0,0,1,0,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,123.0,1,34,34,90,90,113.3,1,0,0,1,0,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,38,4,5,130.4,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,7,7,134.0,0,0,0,1,1,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,38,38,4,7,111.6,1,0,0,1,0,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9119,1,1,148.0,1,19,38,9,7,133.0,0,0,0,1,1,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,128.0,1,3,1,2,1,127.8,0,0,0,1,0,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,172.0,1,38,37,9,9,149.3,0,0,0,1,1,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,138.0,1,37,37,9,8,127.2,1,0,0,1,0,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,140.0,1,3,1,2,6,137.6,1,0,0,1,1,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,110.0,1,37,19,9,3,100.0,0,0,0,1,0,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,2,1,2,4,140.7,1,0,0,1,1,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,137.0,1,3,38,3,5,129.3,1,0,0,1,0,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,136.0,1,38,38,0,7,133.2,1,0,0,1,0,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,145.0,6,34,34,0,0,134.5,1,0,0,1,1,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,147.0,1,19,19,3,10,151.9,1,0,0,1,0,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,118.0,1,37,37,9,9,112.1,1,0,0,1,0,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,Dropout +1,43,1,9773,1,1,122.0,1,1,1,4,5,126.9,0,0,0,1,0,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,126.0,1,12,38,9,5,122.2,0,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,143.0,1,3,3,2,2,129.0,0,0,0,1,1,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,Graduate +1,39,1,9556,1,1,130.0,1,19,38,9,8,113.3,0,0,0,1,0,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,101.0,1,1,37,4,9,98.9,1,0,0,1,0,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,133.1,1,34,34,90,90,116.0,0,0,0,0,0,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,Dropout +2,39,1,9991,0,1,170.0,1,37,19,9,3,151.1,0,0,0,1,1,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,Graduate +2,17,5,9119,1,1,126.0,1,37,38,4,4,122.9,1,0,0,1,1,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,125.0,1,19,19,9,9,114.9,0,0,0,1,0,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,Graduate +1,18,3,9773,1,1,128.0,1,19,1,9,9,122.1,1,0,0,1,1,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,149.0,1,38,37,9,9,139.5,0,0,0,1,1,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,1,3,9,5,137.1,0,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,126.0,1,38,37,5,5,114.8,1,0,0,1,0,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9085,1,1,120.0,1,37,37,6,6,150.0,0,0,0,1,1,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,137.0,1,38,19,0,90,122.3,0,0,0,1,0,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9853,1,19,133.1,1,37,19,3,7,100.0,0,0,0,1,0,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,145.0,1,4,2,2,3,127.3,1,0,0,1,1,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,129.0,1,1,1,4,8,129.0,0,0,0,0,0,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,143.0,1,1,1,4,4,129.0,1,0,0,1,1,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,136.0,1,19,38,9,9,119.3,1,0,0,1,0,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,151.6,0,0,0,1,0,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,Enrolled +1,1,1,9238,1,1,108.0,1,19,38,9,9,107.3,0,1,0,1,0,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,134.0,1,1,1,2,7,128.4,1,0,0,1,0,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,Graduate +1,42,1,9119,1,1,120.0,1,3,1,2,9,108.2,1,0,0,1,1,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,Dropout +1,16,2,9500,1,1,127.0,1,2,38,4,9,119.0,1,0,0,1,0,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,131.0,1,1,1,9,9,122.0,0,0,0,1,0,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9070,1,3,133.1,1,3,5,2,2,120.0,1,0,0,1,0,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,150.0,1,19,19,5,5,132.8,1,0,0,1,0,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,Graduate +1,18,2,9670,1,1,121.0,1,37,38,4,1,111.9,1,0,0,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,108.0,41,3,3,9,9,107.0,0,0,1,0,0,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,150.0,1,34,19,0,4,152.8,1,0,0,1,1,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,18,2,9238,1,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,130.0,6,19,1,6,4,130.0,1,0,0,1,0,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,Enrolled +1,51,1,9119,1,1,136.0,1,1,19,3,5,133.6,1,0,0,1,1,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,Dropout +1,1,4,9773,1,1,155.0,1,3,19,1,4,149.8,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9070,1,1,124.0,1,19,38,4,0,117.6,1,0,0,1,1,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,9,100.0,0,0,0,1,1,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,Enrolled +1,44,1,9238,1,1,140.0,1,1,1,5,5,143.4,0,0,0,1,0,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,120.0,1,1,19,7,7,111.3,0,0,0,1,1,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,Enrolled +2,1,1,9556,1,1,144.0,1,19,19,193,144,139.8,0,0,1,1,1,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,110.0,1,1,1,5,5,160.0,1,0,1,1,0,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,Dropout +2,39,1,9853,1,19,133.1,1,37,37,9,9,131.0,0,0,0,1,0,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,139.0,1,4,1,2,10,136.4,1,0,0,1,0,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,Graduate +1,17,3,9085,1,1,134.0,1,37,38,9,9,120.4,1,0,0,1,0,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,148.0,1,3,2,4,2,131.6,1,0,0,1,0,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,145.0,1,19,37,7,7,141.5,1,0,0,1,0,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9130,1,19,133.1,1,37,38,9,9,120.0,0,0,0,1,1,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,3,9254,1,1,121.0,1,19,37,4,7,116.8,1,0,0,1,0,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,123.0,1,1,1,4,3,123.4,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,38,38,9,9,133.4,1,0,0,1,1,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,Graduate +1,42,1,9500,1,1,124.0,1,19,19,4,9,124.0,0,0,0,1,0,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,40,130.0,1,37,37,9,7,130.0,0,0,0,1,0,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,140.0,1,3,38,2,9,140.0,1,0,0,1,0,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,158.0,1,38,38,9,7,144.7,1,0,0,1,0,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,18,2,9238,1,1,121.0,1,19,1,4,3,121.4,1,0,0,1,0,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,12,133.1,1,37,19,9,10,120.0,0,0,0,1,1,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,122.0,1,3,1,4,3,114.8,1,0,0,1,0,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,Enrolled +4,43,1,9991,0,1,164.0,1,37,37,6,6,131.8,0,0,0,1,0,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,3,9773,1,1,145.0,1,38,38,9,5,133.1,0,0,0,1,0,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9853,1,19,133.1,1,38,19,9,9,108.0,0,0,1,0,0,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,3,9070,1,1,131.0,1,38,37,5,5,120.2,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,Enrolled +1,43,1,9238,1,1,130.0,1,38,37,9,7,133.2,0,0,0,1,0,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,112.0,1,1,1,3,3,106.4,1,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,125.0,1,1,38,144,181,123.3,0,0,0,1,0,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,125.0,1,3,2,2,1,119.1,1,0,0,1,0,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9853,1,3,140.0,1,34,34,0,0,140.0,1,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,135.0,1,1,19,3,9,137.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9991,0,3,120.0,1,37,37,6,7,120.0,0,0,1,0,1,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,130.0,1,1,1,4,3,125.1,1,0,0,1,0,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,Graduate +2,39,1,33,1,1,120.0,1,38,1,9,5,153.8,0,0,1,1,1,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,37,37,9,9,140.0,0,0,0,0,1,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,127.0,1,1,38,9,7,120.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,43,180.0,1,19,19,9,4,180.0,0,0,0,1,0,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,Graduate +1,1,3,9147,1,1,143.0,1,1,1,5,7,133.2,1,0,0,1,0,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,Graduate +1,15,1,9853,1,1,133.1,41,43,1,153,135,128.2,0,0,0,1,0,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,12,133.1,1,1,1,9,4,140.0,1,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,151.0,1,1,38,4,7,137.0,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,Graduate +1,17,4,171,1,1,172.0,1,3,1,2,10,155.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,129.0,1,19,1,9,5,112.0,0,0,0,1,1,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,150.0,1,38,3,9,1,140.0,0,0,0,1,1,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,Graduate +1,1,1,9773,1,1,124.0,17,1,1,3,5,118.1,1,0,1,0,0,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9670,1,1,124.0,1,37,19,5,8,114.2,1,0,1,1,0,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,122.0,1,1,19,3,5,116.8,1,0,0,1,0,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,144.0,1,38,1,9,10,137.4,0,0,0,1,0,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,19,19,9,9,120.0,0,0,0,1,0,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,138.0,1,38,38,7,6,124.7,1,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,18,2,9147,1,1,132.0,1,3,3,5,7,119.1,1,0,1,0,0,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,17,6,9119,1,1,111.0,1,19,3,5,10,106.5,1,0,0,1,1,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,Dropout +1,7,1,9500,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,1,140.0,1,37,37,9,9,130.0,1,0,0,1,1,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,125.0,1,37,37,3,3,124.0,0,0,0,1,1,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,128.0,1,19,2,7,3,126.3,1,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +2,39,1,9500,1,1,110.0,1,37,37,9,6,114.3,0,0,0,1,0,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,9085,1,1,133.1,1,1,9,4,4,128.2,0,0,0,1,0,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,Graduate +1,1,3,9238,1,1,126.0,1,38,19,5,8,120.8,1,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,121.0,1,1,1,9,8,118.9,1,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,109.0,1,19,37,5,5,108.3,0,0,0,1,0,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,Enrolled +1,1,4,9670,1,1,127.0,1,1,1,7,7,116.5,1,0,0,1,0,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,171,1,19,133.1,101,1,19,2,7,110.0,0,0,0,1,1,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,133.0,1,37,37,9,7,124.6,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,39,137.0,1,1,1,5,10,124.5,0,0,0,0,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,130.0,1,19,19,7,7,121.6,0,0,0,1,0,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,130.0,1,37,37,6,5,113.5,1,0,0,1,0,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9670,1,1,120.0,1,38,38,5,7,115.1,1,0,0,1,0,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,115.0,1,38,1,9,4,116.1,1,0,0,1,1,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,130.1,0,0,0,1,0,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,Enrolled +1,1,3,9238,1,1,133.1,1,1,1,9,9,100.0,1,0,0,1,1,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,168.0,0,0,0,1,1,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,148.0,1,1,1,9,9,141.7,0,0,0,0,1,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,Dropout +1,15,1,33,1,1,133.1,41,2,3,2,4,100.0,0,0,0,1,1,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,135.0,1,37,37,6,5,121.0,1,0,0,1,1,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,151.0,1,3,3,1,90,161.9,0,0,0,1,0,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,8,108.5,0,0,0,1,1,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9670,1,1,130.0,1,26,30,0,5,128.6,1,0,1,1,0,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,Graduate +1,43,1,9500,1,1,140.0,100,1,1,6,6,128.2,0,0,0,1,0,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,140.0,1,19,37,5,7,140.0,1,0,0,1,1,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,Dropout +1,39,1,33,1,1,140.0,1,3,1,2,4,152.8,0,0,0,1,0,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,Enrolled +1,43,1,9070,1,1,117.0,1,1,1,4,7,112.5,1,0,0,1,1,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,126.0,1,37,19,7,7,125.7,0,0,0,1,0,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,Enrolled +1,1,2,9773,1,1,140.0,1,38,38,5,7,126.4,1,0,0,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,121.0,1,37,38,6,9,121.0,0,0,0,1,0,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,136.0,1,12,1,4,4,122.0,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,117.0,1,37,37,9,9,120.2,1,0,0,1,0,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,133.1,1,38,1,9,9,121.0,0,0,1,0,1,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,Dropout +1,44,1,9991,0,39,130.0,1,37,37,5,5,130.0,1,0,0,1,1,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,138.0,1,1,19,4,9,142.2,1,0,0,1,0,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,148.0,1,3,1,2,10,148.0,1,0,0,1,0,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,Graduate +1,17,6,9556,1,1,134.0,1,19,38,7,7,128.5,1,0,0,1,0,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,141.0,1,1,19,5,8,141.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,149.0,1,3,1,9,9,137.5,0,0,0,1,1,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,Graduate +1,1,3,9085,1,1,142.0,1,11,11,90,90,155.3,0,0,0,1,0,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,135.0,1,19,37,9,9,134.0,1,0,0,1,0,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,132.0,1,19,38,9,7,120.1,0,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9147,1,1,133.0,1,37,37,9,5,119.7,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,139.0,1,3,4,2,2,130.6,0,0,0,1,0,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,2,130.0,1,0,1,0,1,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,Dropout +1,17,3,9500,1,1,138.0,1,3,3,4,5,130.0,1,0,0,1,0,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,121.0,1,19,19,3,3,116.1,1,0,0,1,0,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,160.0,1,3,38,1,9,152.0,1,0,0,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,130.0,41,37,19,9,8,125.5,1,0,0,1,0,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,133.1,1,38,38,191,193,146.0,0,0,1,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,Graduate +4,39,1,9003,1,1,140.0,1,37,37,9,8,150.0,0,0,0,1,1,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,Enrolled +1,17,2,9670,1,1,132.0,1,1,19,5,3,124.0,1,0,0,1,1,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,117.0,1,19,19,5,7,118.4,0,0,0,1,1,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,140.0,6,1,19,4,7,131.6,1,0,0,1,0,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,142.0,1,38,1,8,10,138.5,1,0,0,1,1,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9130,1,1,132.0,1,3,1,4,9,121.9,1,0,0,1,0,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,122.0,1,1,1,9,9,116.1,1,0,0,1,1,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,Dropout +1,7,1,8014,0,3,130.0,1,37,38,0,5,130.0,0,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,138.0,1,19,19,9,5,124.8,1,0,0,1,0,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,140.0,1,19,38,3,9,140.0,1,0,0,1,1,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +4,39,1,8014,0,1,138.0,1,19,19,90,90,127.0,0,0,0,0,0,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9500,1,19,133.1,1,1,3,2,2,100.0,0,0,1,1,1,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,117.0,1,3,1,3,5,110.7,1,0,0,1,1,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,120.0,1,19,19,5,5,113.0,1,0,0,1,0,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,160.0,1,37,37,7,7,133.0,1,0,0,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,137.0,1,1,1,4,5,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,19,37,9,7,123.9,1,0,0,1,0,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,38,38,9,5,130.0,0,0,1,0,1,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,137.0,1,19,37,9,7,130.8,0,0,1,1,0,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,38,37,4,6,150.0,1,0,0,1,0,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,115.0,1,34,38,0,5,108.4,1,0,0,1,0,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,140.0,1,3,38,141,151,135.3,0,0,0,1,1,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,148.0,1,19,19,7,7,130.9,0,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,127.0,1,1,1,4,3,126.3,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,2,9670,1,1,100.0,1,37,37,9,9,100.0,0,0,0,1,0,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,2,171,1,1,141.0,1,19,37,9,9,136.1,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,123.0,1,30,19,4,90,122.3,0,0,0,1,0,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,145.0,1,1,38,5,7,127.5,1,0,0,1,1,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,1,150.0,1,37,37,90,10,112.0,0,0,0,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,128.0,1,37,1,9,7,124.2,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,Dropout +1,43,1,9070,1,39,130.0,1,19,37,5,9,124.0,1,0,0,1,0,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,Graduate +1,17,1,9003,1,1,170.0,1,1,4,9,5,144.1,1,0,1,0,1,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9670,1,1,110.0,1,19,19,90,99,107.2,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9238,1,19,133.1,1,37,37,9,9,130.0,1,0,0,1,0,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9119,1,1,144.0,1,34,34,0,0,119.5,0,0,0,1,1,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,19,133.1,1,37,37,6,6,162.0,0,0,1,1,1,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,16,1,9085,1,1,138.0,1,37,37,9,9,123.0,1,0,0,1,0,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9500,1,1,133.1,1,19,19,5,6,121.4,0,0,1,1,0,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,138.0,1,1,1,4,7,132.1,1,0,0,1,0,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,Graduate +1,39,1,9119,1,1,133.1,1,37,37,9,9,101.6,0,0,0,1,1,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9500,1,1,126.0,1,1,19,131,181,120.1,1,0,0,1,0,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,38,9,9,142.0,1,0,0,1,0,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,Graduate +1,18,1,8014,0,1,138.0,1,19,1,9,5,134.5,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,19,9,9,150.0,0,0,0,1,1,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,126.0,1,38,37,9,9,123.6,1,0,0,1,0,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9254,1,19,133.1,1,19,19,3,1,101.5,0,0,1,0,1,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,2,9119,1,1,115.0,1,38,19,9,6,112.2,1,0,1,1,1,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,39,1,9003,1,1,120.0,1,37,37,9,9,125.7,0,0,1,0,0,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,Dropout +1,17,2,9773,1,1,115.0,1,1,1,5,5,119.6,1,0,0,1,0,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,19,9,4,140.0,0,0,0,1,0,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,125.0,1,37,19,90,90,137.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,120.0,1,3,38,3,7,124.2,1,0,0,1,1,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9147,1,1,146.0,1,5,1,1,5,144.6,0,0,0,1,1,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,116.0,1,1,1,3,4,113.6,1,0,0,1,0,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,Graduate +4,42,1,9147,1,1,133.1,1,37,38,7,3,123.0,1,0,0,1,1,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,118.9,1,38,37,5,9,118.9,1,0,0,1,0,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,123.0,1,12,1,9,9,119.2,1,0,0,1,0,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,2,140.0,1,38,37,7,8,140.0,0,0,0,1,0,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,110.0,1,37,37,90,90,108.4,1,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9119,1,1,146.0,1,1,37,7,7,132.4,1,0,0,1,1,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,19,133.1,1,19,3,9,2,140.0,1,0,1,1,1,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,2,9853,1,1,111.0,1,38,38,191,171,105.8,1,0,0,1,0,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,6,130.2,0,0,0,1,0,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,130.0,1,1,3,9,10,118.1,1,0,0,1,1,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,118.0,1,1,19,5,4,118.0,0,0,0,1,0,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,153.0,1,38,38,7,7,159.7,1,0,0,1,0,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,171,1,12,110.0,1,37,37,7,7,106.0,1,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,134.0,1,19,1,9,4,124.9,1,0,0,1,0,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,3,9254,1,1,121.0,1,19,19,9,9,125.9,1,0,0,1,0,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,160.0,1,19,19,4,9,154.4,0,0,0,1,0,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,3,140.0,1,19,19,9,7,152.4,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9130,1,1,130.0,1,19,1,191,144,110.0,0,0,0,1,1,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,142.0,1,38,37,9,5,127.3,1,0,0,1,0,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,37,37,9,9,130.0,0,0,1,1,0,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,124.0,1,37,19,9,4,121.2,0,0,0,1,1,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,120.0,1,19,19,9,3,113.9,1,0,0,1,0,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,114.0,1,19,38,5,3,112.6,1,0,0,1,0,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,Graduate +1,7,1,9991,0,40,120.0,1,1,19,4,9,120.0,0,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,128.0,1,19,38,9,9,118.2,0,0,0,1,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,4,9070,1,1,126.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,130.0,1,1,1,0,0,119.5,0,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,184.4,22,2,19,2,8,184.4,0,0,0,1,0,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,37,9,9,132.8,0,0,1,0,1,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9085,1,1,120.0,1,38,19,90,90,127.0,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,Graduate +1,17,4,9147,1,1,132.0,1,38,19,5,5,120.8,1,0,0,1,1,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,Dropout +1,10,1,9670,1,1,148.9,22,37,37,9,9,148.9,0,0,0,1,0,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,4,150.0,1,1,1,4,6,150.0,0,0,0,1,1,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,150.0,1,19,1,9,3,110.0,1,0,0,1,1,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,Graduate +1,15,1,9670,1,1,130.0,26,42,1,2,7,130.0,0,1,1,1,0,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,Graduate +2,7,1,8014,0,3,120.0,1,38,1,9,9,120.0,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,149.0,1,19,37,9,9,158.1,1,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,4,9147,1,1,124.0,1,37,37,9,9,117.4,0,0,0,1,0,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,142.0,1,34,1,5,10,136.1,1,0,0,0,1,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,1,1,8014,0,1,165.0,1,37,37,0,0,162.9,1,0,0,1,1,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,130.0,1,37,37,5,7,123.4,1,0,0,1,1,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,1,133.1,1,37,37,7,7,143.0,0,0,0,1,1,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,121.0,1,38,37,8,8,115.4,1,0,0,1,0,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9556,1,3,140.0,1,3,3,2,2,140.0,0,0,1,0,1,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,116.0,1,38,19,0,2,116.7,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,132.0,1,38,1,5,5,124.3,0,1,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,133.1,1,38,12,7,0,111.5,0,0,0,0,0,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,Dropout +1,53,1,9147,1,42,140.0,1,1,1,6,6,142.2,0,0,0,1,1,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,Graduate +2,44,1,9991,0,39,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9773,1,1,170.0,1,1,19,9,7,155.0,0,0,0,1,1,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,8014,0,19,133.1,1,37,37,4,8,112.5,0,0,0,1,0,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,120.0,1,1,1,5,8,112.0,1,0,0,1,0,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,123.0,1,1,1,3,3,113.6,1,0,0,1,0,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,Graduate +1,39,1,9085,1,1,133.1,1,1,19,9,9,162.3,1,0,0,1,0,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,116.0,1,37,1,9,8,115.7,1,0,1,0,0,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,160.0,1,9,19,4,3,151.3,0,0,0,1,0,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,19,149.0,1,34,34,0,0,126.3,0,0,0,1,0,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9238,1,39,140.0,41,1,1,4,6,137.5,0,0,1,1,0,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,130.0,1,37,37,9,9,129.0,1,0,0,1,0,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,19,38,7,7,118.7,0,0,0,1,1,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,128.0,0,0,0,1,0,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,Graduate +1,17,1,9070,1,1,135.0,1,19,37,5,9,145.9,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,128.0,1,1,19,9,7,118.2,0,0,0,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,128.0,1,19,38,9,9,127.0,0,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,140.0,1,37,12,9,9,150.0,0,0,1,1,1,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,Dropout +2,43,1,8014,0,1,160.0,1,37,39,9,4,140.9,0,0,0,1,0,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,133.0,1,38,19,8,7,127.3,1,0,0,1,0,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,Graduate +1,15,1,9670,1,1,160.0,1,37,12,9,9,149.5,1,0,0,0,1,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,152.0,101,2,1,9,1,168.5,1,0,0,1,1,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,Graduate +1,1,3,9085,1,1,147.0,1,19,19,9,1,135.6,1,0,0,1,0,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,2,8014,0,1,120.0,1,37,34,0,0,117.6,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,141.0,1,37,37,9,9,130.2,0,0,0,1,1,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,Graduate +1,16,2,9147,1,1,139.0,1,38,37,9,9,123.7,1,0,0,1,0,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,134.0,1,19,38,4,8,129.5,0,0,0,1,0,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,113.0,1,1,37,9,10,117.2,1,0,0,1,0,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,18,2,9556,1,1,126.0,1,3,3,2,2,115.5,0,0,0,1,1,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,1,134.0,1,37,38,4,7,110.0,1,0,0,1,0,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,171,1,1,132.0,1,1,1,1,4,132.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9003,1,1,130.0,1,19,19,9,1,140.0,0,0,0,1,0,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9773,1,1,132.0,1,38,19,9,9,125.0,1,0,0,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,140.0,1,37,37,9,6,132.8,0,0,0,1,1,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,130.0,1,37,19,9,5,140.2,1,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9070,1,1,118.0,1,43,3,123,123,110.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,19,100.0,1,37,37,5,5,111.0,1,0,0,1,0,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,3,9085,1,1,138.0,1,1,3,4,4,126.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,132.0,1,2,19,4,4,125.0,1,0,0,1,0,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,38,100.0,1,37,37,9,7,154.0,1,0,0,1,1,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,138.0,1,1,19,4,4,131.7,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,Graduate +2,39,2,9147,1,1,140.0,1,37,37,9,8,108.0,0,0,0,1,0,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,Enrolled +1,1,5,9147,1,1,134.0,1,3,2,2,2,134.7,0,0,0,1,1,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9130,1,1,120.0,1,2,3,3,2,120.0,1,0,0,0,1,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,Dropout +1,1,3,9085,1,1,140.0,1,10,19,90,90,135.8,1,0,0,1,0,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,142.0,1,37,38,5,1,129.4,0,0,0,1,0,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9670,1,1,120.0,1,1,19,5,5,117.2,1,0,0,1,0,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,136.0,1,1,19,5,7,136.4,0,0,0,1,0,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,120.0,1,37,37,5,5,124.6,0,0,0,1,0,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,Enrolled +1,39,1,9500,1,1,133.1,1,1,37,9,9,100.0,0,0,0,1,1,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,123.0,1,19,1,9,3,117.8,1,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,Graduate +5,39,1,9254,1,1,133.1,1,2,2,2,2,103.0,0,0,0,1,0,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,171,1,1,133.0,1,1,37,4,7,126.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,119.0,1,1,1,4,4,115.0,1,0,0,1,1,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,143.0,1,38,19,151,193,134.3,1,1,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,135.0,1,1,19,4,4,129.1,0,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,43,2,9670,1,1,130.0,1,19,1,4,4,127.6,1,0,0,1,1,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,126.0,1,37,37,5,1,126.0,0,0,0,0,1,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,42,1,9119,1,1,120.0,1,19,37,9,9,113.8,0,0,0,0,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9991,0,1,140.0,1,37,37,9,9,135.8,1,0,0,1,1,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,17,5,9085,1,1,118.0,1,38,38,9,9,112.4,1,0,0,1,0,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,3,9773,1,1,134.0,1,2,1,3,3,129.5,1,0,0,1,1,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,129.0,1,1,38,4,7,123.4,0,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,132.0,1,19,37,4,9,128.0,1,0,0,1,0,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,137.0,1,38,37,7,5,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,Graduate +1,17,5,9119,1,1,138.0,1,19,19,5,5,123.3,1,0,1,1,1,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,138.0,1,1,1,3,4,132.5,1,0,0,1,0,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,Graduate +1,16,2,9070,1,1,133.0,1,1,3,4,2,122.5,1,0,0,1,0,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,Enrolled +1,17,1,9130,1,1,137.0,1,38,19,5,7,130.0,1,0,0,1,0,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,Enrolled +1,17,1,9238,1,1,131.0,1,37,37,9,7,121.9,0,0,0,1,0,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,Graduate +2,1,1,9500,1,1,142.0,1,19,38,4,5,130.3,0,0,0,1,0,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,Graduate +2,39,1,9556,1,1,160.0,1,37,37,9,6,120.0,0,0,0,1,0,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,Dropout +1,51,1,9670,1,1,126.0,1,3,3,1,10,111.0,0,0,1,1,1,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,5,9853,1,1,141.0,1,37,19,9,5,133.0,1,0,0,1,0,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,Dropout +1,1,2,9670,1,1,124.0,1,19,1,9,4,117.7,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,133.0,1,19,19,9,5,120.1,1,0,0,1,0,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,Graduate +1,43,1,9147,1,1,133.1,1,4,19,2,1,128.2,0,0,0,1,0,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,Dropout +4,27,1,9070,1,2,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9003,1,1,150.0,1,2,4,4,1,150.0,0,0,0,1,1,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,19,133.1,1,19,37,7,5,155.5,1,0,1,0,1,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,1,9238,1,1,106.0,1,1,1,3,3,105.0,0,0,0,1,1,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,111.0,1,19,38,3,3,111.4,1,0,0,0,0,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,Dropout +1,43,1,9254,1,1,130.0,1,1,19,5,7,130.0,0,0,0,1,0,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,Dropout +1,17,1,8014,0,1,120.0,1,38,37,6,6,113.0,0,0,0,1,0,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,139.0,1,1,37,4,9,131.3,1,0,0,1,0,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,Graduate +1,43,3,9254,1,1,110.0,1,37,37,9,9,107.2,1,0,0,1,1,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,147.0,1,1,1,4,4,134.3,1,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,130.0,1,37,38,9,6,130.0,1,0,0,1,0,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,139.0,1,37,38,9,9,124.0,1,0,0,1,1,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,122.0,1,37,37,9,9,126.9,1,0,0,1,0,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,11,11,90,4,114.0,1,0,0,1,1,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9147,1,1,132.0,1,39,39,3,3,127.8,1,0,0,0,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,128.0,1,38,37,5,6,122.1,0,0,0,1,0,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9085,1,1,127.0,1,19,38,194,193,117.6,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9500,1,1,145.0,1,3,3,2,3,141.8,0,0,0,1,0,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,Graduate +1,53,1,9556,1,42,140.0,1,1,19,4,5,140.0,0,0,0,1,0,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,Graduate +1,18,1,9147,1,1,160.0,1,19,19,5,8,137.6,1,0,0,1,0,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,19,133.1,1,2,1,3,10,120.0,0,0,1,1,1,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,19,133.1,1,19,39,5,3,121.7,0,0,1,0,0,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,126.0,0,0,0,1,1,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,Graduate +1,1,3,171,1,1,140.0,1,37,37,9,9,124.3,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,136.0,1,38,37,9,9,126.9,1,0,0,1,0,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,136.0,1,19,1,9,9,129.0,1,0,0,1,0,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,144.0,1,38,38,7,7,136.0,1,0,0,1,0,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,154.0,1,38,38,9,9,156.5,1,1,0,1,0,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,131.0,1,19,19,9,9,134.9,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +4,43,1,8014,0,1,140.0,1,38,37,9,9,126.0,0,0,0,1,0,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,7,126.3,1,0,0,1,0,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,Graduate +1,44,1,8014,0,39,150.0,1,1,37,9,7,146.7,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,2,9119,1,1,140.0,1,19,19,9,9,125.7,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,12,100.0,1,1,1,4,4,100.0,0,0,0,1,0,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,Graduate +1,42,1,9500,1,1,111.0,1,1,3,9,10,128.2,1,0,0,1,1,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,Graduate +1,17,2,9773,1,1,132.0,1,19,19,9,6,120.1,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,131.0,1,4,4,2,1,120.5,0,0,0,1,0,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,44,1,9003,1,39,170.0,1,19,19,5,5,170.0,1,0,0,1,1,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,150.0,1,38,38,7,7,137.8,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,10,120.0,0,0,1,0,1,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9670,1,39,110.0,1,37,1,9,4,110.0,0,0,0,1,0,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,130.0,1,5,3,2,2,130.0,0,0,0,1,1,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9670,1,1,133.1,1,34,3,7,2,130.6,1,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,38,9,10,140.0,0,0,0,1,1,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,133.1,1,19,38,9,9,119.6,1,0,0,1,0,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,118.0,1,19,19,3,3,110.0,1,0,0,1,0,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,137.0,1,1,1,5,5,129.3,1,0,0,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,127.0,1,19,38,5,9,129.5,1,0,0,1,0,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,126.0,1,38,19,9,6,119.4,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,116.5,0,0,0,1,0,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,125.0,1,19,19,4,7,128.5,1,0,0,1,0,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,Enrolled +1,43,1,9773,1,1,133.1,22,34,34,90,90,130.0,0,0,1,1,0,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,125.0,1,1,1,5,5,128.5,0,0,0,1,1,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9500,1,1,133.1,1,19,37,9,9,120.0,0,0,0,1,0,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,Graduate +2,39,2,9147,1,1,133.1,1,37,37,5,7,110.0,0,0,0,1,1,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,6,9500,1,1,141.0,1,1,19,1,1,126.7,1,0,0,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,146.0,1,40,43,4,4,150.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,148.0,1,1,1,4,9,129.8,0,0,0,1,0,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,Enrolled +1,17,1,9853,1,1,133.0,1,38,38,9,9,127.4,0,0,1,1,0,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,43,1,9147,1,1,120.0,1,37,37,5,3,113.4,0,0,0,1,1,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,148.0,1,19,3,4,2,136.5,0,0,0,1,0,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,178.0,1,2,1,2,3,157.7,0,0,0,1,1,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +2,7,1,9254,1,3,130.0,1,1,3,4,3,130.0,0,0,0,1,0,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,33,1,40,120.0,1,38,37,5,6,120.0,1,0,1,0,1,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,Dropout +2,1,1,9147,1,1,151.0,1,38,37,9,8,132.1,1,0,0,1,0,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Dropout +1,43,2,9556,1,1,120.0,1,1,19,4,3,110.2,0,0,0,1,0,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,Graduate +2,1,4,9500,1,1,140.0,1,1,37,4,9,128.0,0,0,0,1,0,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,6,120.0,1,35,35,6,6,128.2,1,0,0,1,1,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,120.0,1,37,37,9,6,120.0,1,0,0,1,0,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,8,7,150.0,0,0,0,1,1,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,145.0,1,19,37,4,7,148.9,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,34,34,0,0,104.0,1,0,0,1,0,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9085,1,1,110.0,1,3,19,4,6,105.0,0,0,1,0,1,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Dropout +1,17,2,9254,1,1,108.0,1,37,37,9,7,108.0,1,0,0,1,0,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,Graduate +4,43,1,9238,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,0,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,136.0,1,19,37,173,183,118.4,1,0,0,1,0,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,18,1,9556,1,1,140.0,1,38,37,9,9,122.8,0,0,0,1,0,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,Graduate +1,39,1,9119,1,1,150.0,1,3,3,4,4,150.0,1,0,0,1,1,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,141.0,1,1,1,4,10,138.9,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,Graduate +1,18,4,9773,1,1,130.0,1,19,19,4,4,121.3,1,0,0,1,0,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,1,130.0,1,37,37,9,6,160.0,0,0,0,1,1,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,149.0,1,37,37,9,9,136.0,0,0,0,1,0,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,151.0,1,37,1,4,10,138.4,0,0,0,1,0,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9254,1,1,130.0,1,37,37,9,9,126.5,0,0,0,1,1,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,143.0,1,19,37,7,7,127.0,1,0,0,1,0,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,Graduate +2,57,1,9991,0,1,133.1,41,38,37,4,6,100.0,0,0,0,1,0,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,138.0,1,37,37,9,9,135.9,1,0,0,1,0,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,43,1,8014,0,1,145.7,22,37,37,9,9,145.7,1,0,0,1,0,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,Graduate +4,39,1,9773,1,19,133.1,1,37,37,9,1,117.5,0,0,0,1,0,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9238,1,1,118.0,1,1,19,4,10,112.4,1,0,0,1,0,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,8014,0,1,133.1,1,37,37,9,7,162.5,0,0,0,1,1,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,1,3,9254,1,1,115.0,1,1,1,3,3,117.5,1,0,0,1,0,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,133.0,1,37,38,9,9,130.2,1,0,0,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,152.0,1,2,22,4,3,146.1,1,0,0,1,0,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +2,39,1,9085,1,12,133.1,1,1,39,5,3,140.0,1,0,1,0,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9003,1,1,140.0,1,38,1,9,4,138.3,0,0,0,1,1,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,130.0,1,38,37,9,6,133.9,0,0,0,1,1,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,140.0,1,37,37,9,9,142.5,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,120.0,1,38,1,9,3,118.3,1,0,0,1,0,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,117.0,1,1,19,4,7,113.5,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,141.0,1,19,1,7,3,128.8,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9147,1,1,125.0,1,3,38,2,10,118.7,1,0,0,1,0,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,116.0,1,37,1,5,3,124.8,1,0,0,1,1,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,120.0,1,36,37,0,0,126.7,1,0,0,1,1,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,4,9853,1,1,140.0,1,19,38,4,1,128.5,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,1,3,10,130.0,0,0,0,1,1,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,136.0,1,3,37,2,8,121.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,154.0,1,37,37,9,9,149.5,1,0,0,1,0,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,138.0,1,19,38,5,8,133.5,0,0,0,1,0,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,128.0,1,1,37,4,3,117.9,1,0,0,1,0,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,Graduate +1,43,1,9130,1,1,150.0,1,3,3,3,4,150.0,1,0,0,1,0,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,110.0,1,19,38,3,5,117.4,1,0,0,1,0,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,135.0,1,37,38,9,6,122.1,1,0,0,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9003,1,1,140.0,1,37,37,9,6,104.8,0,0,0,1,0,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,143.0,1,37,37,9,7,131.8,1,0,0,1,0,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,142.0,1,1,1,3,3,133.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,141.0,1,1,19,5,10,127.0,0,0,0,1,0,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,Graduate +3,1,2,9085,1,1,135.0,1,19,1,4,4,129.4,1,0,0,1,0,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,39,1,9254,1,1,133.1,1,19,19,4,7,123.0,0,0,1,0,0,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9500,1,1,131.0,1,19,37,9,7,129.8,1,0,0,1,0,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,Graduate +1,39,1,9670,1,9,133.1,1,6,22,3,3,120.0,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,131.0,1,37,37,3,3,131.7,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,137.0,1,19,19,5,5,134.6,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,131.0,1,1,1,4,10,129.3,0,0,0,1,0,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,140.0,1,1,37,141,192,129.7,0,0,0,1,0,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,140.0,1,37,37,9,9,124.6,0,0,0,1,0,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,138.0,1,37,37,5,9,125.1,1,1,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Dropout +1,2,1,9147,1,1,150.0,1,37,37,9,9,122.0,1,0,0,1,0,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,135.0,1,3,1,4,4,136.1,1,0,0,1,1,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,Enrolled +1,39,1,9991,0,1,150.0,1,1,19,4,8,123.0,0,0,0,1,1,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,141.0,1,19,37,5,8,130.2,0,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,106.0,1,37,37,9,9,108.0,1,0,1,1,0,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,19,133.1,1,37,38,9,7,100.5,1,0,0,1,1,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,Enrolled +1,43,1,9254,1,1,142.0,1,38,38,9,9,125.9,0,0,0,1,0,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,150.0,1,1,37,9,7,130.2,0,0,0,1,0,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,Graduate +4,39,1,9670,1,1,140.0,1,2,1,3,9,170.0,0,0,1,0,1,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9773,1,1,119.0,1,38,19,9,9,118.3,0,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,117.0,1,34,34,0,0,109.3,0,0,0,1,0,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,120.0,1,34,34,99,99,111.6,0,0,1,1,1,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,139.0,1,19,19,9,7,110.3,0,0,1,1,1,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,3,19,9,9,113.2,0,0,0,1,0,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,Enrolled +1,43,1,9991,0,1,120.0,1,38,38,9,7,141.0,0,0,0,1,1,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,151.0,1,3,1,2,4,151.0,1,0,0,1,0,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,130.0,1,37,37,9,6,110.0,1,0,0,1,0,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9853,1,1,130.0,1,2,39,2,5,124.6,0,0,0,1,1,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,138.0,1,1,1,4,3,141.5,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,120.0,1,37,37,9,5,100.0,0,0,0,1,0,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9991,0,39,150.0,1,37,37,6,6,150.0,0,0,0,1,0,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9085,1,19,133.1,1,38,38,4,7,128.2,0,0,0,1,0,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.0,41,19,19,9,9,119.7,1,0,1,1,0,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9085,1,1,128.0,1,1,19,4,90,124.2,0,0,0,0,0,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,120.0,1,1,1,9,9,129.1,1,0,0,1,1,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9773,1,1,125.0,1,19,19,9,7,129.6,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,137.0,1,40,19,2,9,130.7,1,0,0,1,0,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,Dropout +1,51,1,9147,1,1,116.0,1,3,3,2,2,115.2,0,0,1,1,1,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,5,9853,1,1,132.0,1,12,12,4,4,123.3,1,0,0,1,0,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,Dropout +1,7,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,1,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,135.0,1,19,38,9,5,136.8,1,0,0,1,0,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,137.0,1,1,1,4,7,134.6,1,0,0,1,1,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,4,171,1,1,133.1,1,38,38,9,9,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,133.1,1,19,37,7,8,120.0,0,0,1,0,0,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,140.0,1,1,19,9,7,127.0,1,0,0,1,0,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,Graduate +1,18,1,9500,1,1,124.0,1,38,37,9,7,119.3,1,0,0,1,0,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,3,19,2,4,150.0,1,0,0,1,0,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,19,133.1,1,3,19,90,90,123.5,0,0,0,1,0,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9853,1,1,133.1,1,37,37,5,5,116.5,0,0,0,1,0,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,Dropout +1,18,6,9500,1,1,144.0,1,1,1,3,6,130.8,1,0,0,1,0,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9670,1,1,151.0,1,19,19,1,1,100.0,0,0,1,1,0,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,125.0,1,1,19,4,6,115.2,0,1,0,1,0,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,37,38,4,9,110.0,0,0,1,0,0,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,133.1,1,19,19,5,5,108.5,1,0,0,1,0,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,130.0,1,37,11,90,90,122.6,0,0,0,1,0,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,113.0,1,19,37,9,9,118.6,1,0,0,1,0,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,140.0,6,2,3,5,2,124.3,1,0,0,1,0,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,Enrolled +1,1,4,9119,1,1,111.0,1,37,37,9,5,107.5,1,0,0,1,1,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,143.0,1,19,38,9,9,133.4,1,0,0,1,0,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,Graduate +1,17,1,9773,1,1,141.0,1,2,3,2,2,133.7,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,151.0,41,3,3,2,5,161.9,1,0,0,1,0,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,43,1,33,1,1,143.0,1,37,1,9,10,121.2,1,0,0,1,1,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,0,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,141.0,1,1,19,8,7,128.8,1,0,0,1,0,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Enrolled +1,1,1,9238,1,1,115.0,1,19,38,7,7,108.7,0,0,0,1,0,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,114.0,1,1,1,4,0,108.8,1,0,0,1,0,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,2,9853,1,1,112.0,1,37,37,191,182,106.1,1,0,1,1,0,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,2,9085,1,1,157.0,1,3,38,4,6,142.3,0,0,0,1,0,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,Graduate +2,44,1,8014,0,39,160.0,1,37,19,9,10,155.9,0,0,0,1,0,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,Graduate +1,1,4,171,1,1,137.0,1,1,38,4,8,141.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,144.0,1,1,37,9,9,126.5,1,0,0,1,0,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,145.0,1,1,1,4,10,131.4,0,0,0,1,0,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,115.0,1,1,1,9,4,109.1,1,0,1,0,0,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,170.0,1,37,37,0,0,150.8,1,0,0,1,0,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,5,3,9070,1,1,157.0,1,3,1,9,6,138.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,Graduate +1,43,2,9238,1,1,129.0,1,34,30,0,5,118.9,1,0,0,1,1,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,5,9853,1,1,141.0,1,3,19,2,7,130.9,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Graduate +4,39,1,9991,0,1,133.1,1,37,37,9,9,130.4,0,0,0,1,0,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,130.0,1,19,38,9,9,126.9,0,0,1,1,0,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,136.0,1,19,1,4,3,125.2,1,0,0,1,0,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,37,9,9,140.2,0,0,0,1,1,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,132.0,1,37,38,9,5,120.8,0,0,0,1,0,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,150.0,1,19,37,6,6,150.0,0,0,1,1,0,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,Graduate +2,42,1,9991,0,1,130.0,1,3,2,2,2,130.0,0,0,0,1,1,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,Enrolled +4,39,1,8014,0,1,133.1,1,38,37,5,7,144.5,0,0,0,1,0,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,2,9773,1,1,150.0,41,1,37,9,7,130.8,0,0,0,1,0,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,Graduate +2,1,1,8014,0,1,151.0,1,37,37,9,9,152.4,0,0,0,1,0,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,Graduate +6,39,1,9500,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,Dropout +2,43,1,9670,1,1,100.0,1,34,34,0,0,128.2,0,0,0,1,1,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,148.0,1,1,19,3,3,131.7,1,0,0,1,0,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,142.0,1,19,19,7,7,142.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,127.0,1,1,38,4,7,125.6,0,0,1,1,0,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,146.0,1,38,38,9,7,134.1,1,0,0,1,1,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,115.0,1,1,1,4,4,109.1,1,0,0,1,0,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,Enrolled +1,1,2,9773,1,1,148.0,1,1,19,9,9,141.7,0,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,116.0,1,37,37,0,5,114.3,1,0,0,1,0,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,139.0,1,38,19,5,7,130.6,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,Graduate +1,1,6,9147,1,1,128.0,1,37,37,9,9,116.5,0,0,0,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9130,1,3,150.0,1,3,1,90,90,150.0,1,0,0,1,0,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9670,1,1,122.0,1,1,19,4,4,116.1,0,0,0,1,1,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,Enrolled +1,39,1,9119,1,1,100.0,1,37,37,9,8,160.0,0,0,1,0,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9254,1,1,128.0,1,19,1,7,9,121.7,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,143.0,1,37,38,7,7,133.8,1,0,0,1,0,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,107.0,1,38,38,7,7,103.5,1,0,0,1,0,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,Graduate +1,39,2,9147,1,1,143.0,1,19,5,4,1,100.0,1,0,0,1,1,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,140.0,0,0,1,0,0,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,160.0,1,1,1,5,4,160.0,1,1,0,0,1,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,Dropout +2,39,1,9500,1,19,133.1,1,38,38,2,10,120.0,0,0,0,1,0,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,2,9853,1,1,122.0,1,19,19,4,5,112.6,1,0,0,1,0,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,3,9500,1,1,137.0,1,19,37,7,7,126.7,1,0,0,1,0,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,Graduate +1,7,1,9070,1,40,120.0,1,1,19,3,9,120.0,1,0,0,1,0,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,157.0,1,38,3,5,2,141.4,0,0,0,1,0,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,Graduate +2,1,2,8014,0,1,110.0,1,37,1,9,10,108.7,1,0,0,1,0,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,129.0,1,19,37,7,6,120.0,1,0,0,1,0,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,108.0,1,19,1,4,3,111.9,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9070,1,12,110.0,1,37,38,5,10,130.0,0,0,1,0,1,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,122.0,1,1,1,193,101,126.2,0,0,0,1,0,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,4,4,3,3,143.6,0,0,1,1,1,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,Enrolled +1,7,1,9119,1,3,130.0,1,34,34,90,90,130.0,0,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,8014,0,39,120.0,1,19,37,7,6,121.8,1,0,0,1,0,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,142.0,1,37,38,9,9,137.5,1,0,0,1,1,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,138.0,1,3,19,2,4,131.0,1,0,0,1,1,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,Dropout +1,17,2,9853,1,1,125.0,1,1,19,5,5,119.4,1,0,0,1,0,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,137.0,1,1,1,5,4,131.1,1,0,0,1,0,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,133.0,1,38,38,9,9,128.1,1,0,0,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Dropout +4,39,1,9991,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,0,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,17,1,9130,1,1,138.0,1,2,19,2,6,126.3,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,Enrolled +1,17,4,9500,1,1,135.0,1,1,1,4,4,127.0,1,0,0,1,0,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,140.0,1,4,3,3,3,127.8,0,0,0,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,5,1,9147,1,1,126.0,1,19,38,5,6,117.3,1,0,0,1,0,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,Enrolled +1,39,1,9670,1,1,133.1,1,1,19,4,9,140.0,0,0,0,1,1,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,126.0,1,38,38,9,8,118.8,1,0,0,1,0,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,Graduate +2,42,1,9147,1,1,133.1,1,37,37,9,9,115.8,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,126.0,1,1,37,7,9,132.7,0,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,133.0,1,19,19,5,7,123.6,0,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,4,9556,1,1,135.0,1,38,37,3,7,129.0,1,0,0,1,0,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,110.0,1,37,37,9,9,107.6,1,0,0,1,1,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Enrolled +1,17,4,9147,1,1,135.0,1,19,1,0,4,128.7,1,0,0,1,1,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +2,1,1,8014,0,1,150.0,1,1,37,4,7,139.9,1,0,0,1,0,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,116.0,1,1,38,4,3,114.6,1,0,0,1,0,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,121.0,1,19,37,1,3,131.5,0,0,0,1,0,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,100.0,1,19,1,1,90,114.0,1,0,1,0,0,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,146.0,1,19,37,5,8,135.8,1,0,0,1,0,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9119,1,39,140.0,1,1,19,4,5,140.0,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9670,1,1,136.0,1,19,19,5,5,122.0,0,0,1,0,0,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9003,1,1,133.1,1,19,19,4,4,107.5,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9070,1,1,164.0,1,38,38,9,7,165.8,1,0,0,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,154.0,1,38,38,9,9,133.4,1,0,0,1,0,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,127.0,1,19,37,7,7,121.5,1,0,0,1,1,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,Enrolled +1,43,6,9238,1,1,129.0,1,34,34,0,0,125.2,0,0,0,1,0,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,125.0,1,19,1,4,5,122.6,1,1,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,136.0,1,38,19,7,7,121.7,1,0,0,1,0,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,131.0,1,38,1,7,4,128.3,1,0,0,1,0,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,Graduate +1,1,4,171,1,1,132.0,1,1,19,4,5,138.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9254,1,1,115.0,1,12,1,9,3,108.7,1,0,0,1,0,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,131.0,1,1,37,3,7,120.2,0,0,0,1,0,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,134.0,1,1,1,4,9,124.2,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,142.0,1,19,1,9,1,132.6,0,0,0,1,0,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,2,1,3,6,150.0,1,0,0,1,1,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,130.0,1,19,38,9,7,113.5,0,0,0,1,0,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,135.0,1,2,1,2,8,126.6,0,0,0,1,0,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,12,133.1,1,37,37,5,7,119.3,1,0,0,1,1,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9130,1,1,110.0,1,3,19,2,9,105.5,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9130,1,1,134.0,41,1,19,5,5,125.6,1,0,0,1,0,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,151.0,2,1,1,5,9,146.5,0,0,0,1,0,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,133.0,1,1,3,3,3,135.8,1,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,7,1,9070,1,3,140.0,1,37,2,9,3,140.0,0,0,0,0,0,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,147.0,1,37,19,9,5,133.7,1,0,0,1,0,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,Enrolled +1,51,1,9500,1,1,127.0,1,19,1,5,9,150.0,0,0,0,1,0,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,143.0,1,1,37,5,9,126.6,0,0,1,0,0,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,9,160.0,0,0,1,1,0,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,Graduate +4,39,1,8014,0,19,133.1,1,34,34,0,0,100.0,0,0,0,1,0,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +4,43,1,9853,1,1,133.1,100,19,22,90,90,100.0,0,0,0,1,0,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,2,120.0,1,37,37,9,8,120.0,0,0,0,1,0,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9130,1,40,129.0,1,3,3,2,2,155.3,1,0,0,1,0,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,150.0,1,38,37,9,9,150.0,1,0,0,1,1,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,160.0,1,1,37,3,3,160.0,1,0,1,0,0,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,Dropout +2,39,1,9003,1,1,133.1,1,1,19,4,4,120.0,0,0,1,0,1,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,115.0,1,19,38,9,9,108.0,0,0,0,1,0,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,134.0,1,1,19,4,5,126.0,0,0,0,1,0,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,135.0,1,38,38,5,8,133.3,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,5,1,9670,1,1,135.0,1,1,12,4,4,140.3,1,0,0,1,0,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,122.0,1,19,1,4,8,135.8,0,0,0,1,0,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,19,19,3,9,112.6,1,0,0,1,0,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,4,9773,1,1,147.0,1,1,1,4,5,139.7,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,140.0,1,19,19,4,5,140.0,1,0,0,1,0,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,130.0,1,12,12,9,9,126.1,0,0,0,1,1,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,2,9147,1,1,130.0,1,34,37,9,9,118.5,1,0,0,1,1,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,138.0,1,4,1,2,1,133.0,1,0,0,1,0,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,138.0,1,37,37,194,171,131.0,1,0,0,1,0,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,19,5,8,147.3,0,0,0,1,0,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,6,9500,1,1,149.0,1,1,1,4,9,133.0,1,0,0,1,0,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,Graduate +1,16,6,9773,1,1,136.0,1,38,14,0,0,129.7,1,0,0,1,0,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,130.0,1,1,34,9,9,124.8,1,0,0,1,0,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,111.0,1,1,1,3,3,112.4,1,0,0,1,1,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,121.0,1,1,19,4,7,135.4,1,0,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,Graduate +1,1,1,9556,1,1,135.0,1,37,38,7,9,125.8,0,0,0,1,0,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,136.0,1,37,19,5,8,129.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,4,9670,1,1,110.0,1,1,37,7,7,111.1,1,0,0,0,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,128.0,1,38,38,5,5,118.6,1,0,0,1,0,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,Graduate +2,39,1,9500,1,19,133.1,1,37,38,9,10,120.9,1,0,0,1,0,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,Dropout +1,5,3,9085,1,1,143.0,1,37,37,0,90,159.1,0,0,1,1,0,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Dropout +4,39,1,9238,1,1,120.0,1,37,37,9,9,125.5,1,0,0,1,0,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,126.0,1,3,1,2,5,116.9,1,1,0,1,0,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,16,1,9556,1,1,137.0,1,37,37,9,7,122.7,1,0,0,1,0,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,136.0,1,1,1,9,9,123.8,1,0,0,1,0,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +4,39,1,9130,1,1,133.1,1,3,1,5,5,110.0,1,0,0,1,0,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,Dropout +1,17,4,9085,1,1,138.0,1,19,36,90,7,134.9,1,0,0,1,0,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,130.0,1,1,4,4,2,131.4,0,0,0,1,1,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,Graduate +2,42,1,9853,1,1,133.1,1,37,37,4,7,100.0,0,0,0,1,0,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,115.0,1,1,1,9,9,134.3,1,0,0,1,1,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,108.0,1,1,38,5,8,105.9,0,0,0,1,0,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9991,0,1,120.0,1,19,37,5,5,128.2,0,0,0,0,1,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +5,7,1,9130,1,3,160.0,1,19,38,9,6,160.0,0,0,0,0,0,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,121.0,1,3,19,2,9,115.4,1,0,0,1,1,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..92db5db9a6143e84d4ca37f25e2fb4c176360620 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/ctgan/ctgan-m5-20260422_025941/staged/public/val.csv @@ -0,0 +1,443 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,17,1,9254,1,1,118.0,1,11,34,5,0,122.2,1,0,0,1,0,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,43,1,9238,1,1,120.0,1,1,38,4,3,118.3,0,0,0,1,0,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,108.0,1,3,1,3,4,109.1,1,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,9991,0,40,130.0,1,19,19,7,3,130.0,0,0,0,1,0,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,19,9,10,150.0,0,0,0,1,1,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9119,1,40,130.0,1,1,1,4,4,130.0,0,0,0,1,1,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,128.0,1,19,19,5,5,124.5,1,0,0,1,0,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,170.0,1,19,19,5,1,170.0,1,0,0,1,0,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,Enrolled +1,1,3,9500,1,1,113.0,1,3,1,134,135,107.8,1,0,0,1,0,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,Enrolled +1,1,2,9670,1,1,117.0,1,37,37,9,9,111.8,0,0,0,1,0,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,1,1,9,4,126.2,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,145.0,1,19,38,7,6,128.6,1,0,0,1,0,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9147,1,3,130.0,1,38,38,1,9,130.0,0,0,0,1,0,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,170.0,1,19,37,8,8,100.0,0,0,0,1,0,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9147,1,1,148.0,1,38,37,5,5,134.0,0,0,0,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,5,9085,1,1,118.0,1,1,38,4,7,122.2,1,0,0,1,0,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,133.1,1,38,38,191,192,118.0,0,0,1,1,0,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,Graduate +1,18,1,9853,1,1,132.0,1,37,37,9,5,126.1,0,0,0,1,0,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +6,39,1,8014,0,1,133.1,1,37,37,9,9,119.0,0,0,0,1,0,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,133.1,1,1,37,7,7,118.0,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,123.0,1,38,38,4,7,114.3,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9991,0,1,143.0,1,19,37,5,8,135.0,0,0,0,1,0,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,128.0,1,1,1,2,10,116.5,0,0,0,1,1,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,Dropout +2,39,1,9085,1,1,120.0,1,19,19,1,4,130.0,0,0,0,1,0,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,Dropout +2,39,1,171,1,19,100.0,1,37,37,9,9,139.0,0,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,3,9500,1,1,139.0,1,38,37,9,8,146.5,0,0,0,1,0,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,120.0,1,37,37,9,1,123.2,0,0,0,1,0,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,1,140.0,1,3,3,4,2,141.7,1,0,0,1,0,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,127.0,1,2,2,3,4,115.8,1,0,0,1,1,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,117.0,1,19,19,9,9,116.3,1,0,0,1,0,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,152.0,1,19,37,3,8,156.9,0,0,0,1,0,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,140.0,1,1,19,4,4,140.7,0,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,133.0,1,3,19,2,7,120.4,1,0,0,1,0,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,1,160.0,1,38,38,7,9,121.4,0,1,0,1,0,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,120.0,1,1,2,9,3,130.0,1,0,0,1,0,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,139.0,1,2,3,3,3,132.7,1,0,0,1,0,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,6,108.3,0,0,0,1,1,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,8014,0,1,107.0,1,19,11,0,0,103.5,1,0,0,1,0,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,113.0,1,38,38,191,175,110.2,1,0,1,1,0,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,1,19,1,5,100.0,1,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,39,140.0,1,38,19,9,5,110.0,0,0,0,1,0,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,Enrolled +1,18,2,9238,1,1,126.0,1,19,37,5,7,129.9,1,0,0,1,1,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,18,1,9254,1,1,137.0,1,19,19,4,5,126.9,0,0,0,1,1,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,121.0,1,37,37,9,9,122.4,0,0,0,1,0,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,51,1,9070,1,1,122.0,1,38,38,9,9,128.8,1,0,0,1,1,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,141.0,1,1,1,3,10,142.8,0,0,0,1,0,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,130.0,1,19,38,9,9,162.3,0,0,0,1,1,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,Dropout +1,18,1,9853,1,1,133.1,1,1,19,141,182,106.0,1,0,1,1,0,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,17,1,9147,1,1,120.0,1,19,19,3,3,113.4,0,0,0,1,0,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,147.0,1,37,19,7,7,134.4,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,1,120.0,1,1,3,144,123,120.0,0,0,0,1,1,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,17,4,9500,1,1,137.0,1,1,37,9,9,128.4,1,0,0,1,0,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,120.0,0,1,1,1,0,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9085,1,1,140.0,1,37,37,9,9,154.6,0,0,0,0,0,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,19,133.1,1,37,19,9,7,134.3,0,0,0,1,1,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,Dropout +1,39,1,9119,1,1,130.0,1,19,37,9,4,149.0,1,0,0,1,1,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,Enrolled +1,17,1,9254,1,1,115.0,1,1,19,3,3,109.4,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,126.0,1,37,3,5,2,116.9,0,0,0,1,1,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,128.0,1,1,1,2,2,130.8,1,0,0,1,0,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,127.0,1,19,19,4,6,120.7,0,0,1,0,0,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9238,1,1,110.0,1,14,14,90,90,112.5,1,0,0,1,0,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,19,5,5,130.8,1,0,0,1,0,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9130,1,1,150.0,1,1,1,4,10,110.0,0,0,1,1,1,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,5,9238,1,3,135.0,1,1,38,9,3,129.4,0,0,1,1,0,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,133.0,1,19,37,1,9,128.5,1,0,0,1,0,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,Graduate +1,39,2,9991,0,1,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9773,1,1,136.0,1,1,38,9,8,131.5,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,138.0,1,37,38,9,8,134.2,1,0,0,1,0,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,7,2,9500,1,3,140.0,1,37,38,9,9,138.0,0,0,0,1,1,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,Dropout +1,43,1,9003,1,1,120.0,1,1,1,4,10,134.4,0,0,0,1,1,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,140.0,1,19,19,9,9,124.3,1,0,0,1,0,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,Graduate +1,17,3,9254,1,1,127.0,1,12,38,5,7,116.9,1,0,1,1,0,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,1,9238,1,1,145.0,1,38,38,9,7,145.0,0,0,0,1,0,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,140.0,1,19,19,9,7,102.5,0,0,0,1,0,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,17,6,9500,1,1,131.0,1,1,19,7,7,126.5,1,0,0,1,0,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,34,34,0,0,123.3,1,0,0,1,0,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,120.0,1,37,3,9,3,168.2,0,0,0,1,1,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,5,9773,1,1,118.0,1,38,19,9,9,113.8,1,0,0,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,122.0,1,19,38,7,7,117.1,1,0,0,1,0,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,115.0,1,19,1,3,7,113.6,0,0,0,1,1,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,141.0,1,1,4,4,4,127.7,0,0,0,1,0,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,130.0,1,37,38,6,6,130.0,1,0,0,1,0,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,120.0,1,37,37,5,5,111.3,1,0,0,1,0,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,145.0,1,1,19,10,5,150.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,129.0,1,38,19,3,7,118.9,1,0,0,1,0,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,Enrolled +1,1,5,9085,1,1,121.0,1,38,37,9,8,114.0,1,0,0,0,0,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,17,1,9254,1,1,126.0,1,1,1,9,9,124.3,0,0,0,1,0,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,149.0,1,1,3,0,0,148.7,0,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9147,1,1,125.0,1,38,38,6,8,114.5,1,0,0,1,0,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,Graduate +1,16,3,9085,1,1,130.0,1,37,37,9,2,119.5,1,0,0,1,0,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,145.0,1,19,37,9,9,132.3,1,0,0,1,0,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,128.0,1,19,38,5,7,125.6,1,0,0,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9254,1,1,135.0,1,38,37,9,7,139.2,0,0,0,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,139.0,1,37,38,6,6,121.3,1,0,0,1,0,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9070,1,39,150.0,1,12,37,3,9,147.7,0,0,1,1,0,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,110.0,1,3,19,4,5,109.0,0,0,0,1,1,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,133.1,1,38,38,5,9,105.0,1,0,0,1,0,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,Graduate +2,51,1,9991,0,1,127.0,1,37,37,8,4,100.1,0,0,0,1,0,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,135.0,1,19,1,4,1,131.9,1,0,0,1,1,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +4,39,1,9556,1,1,160.0,1,19,3,9,2,130.0,0,0,0,1,0,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,Enrolled +1,17,5,9119,1,1,123.0,1,3,1,2,9,116.0,1,0,1,0,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9500,1,1,140.0,1,19,19,7,7,138.6,0,0,0,1,0,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,19,38,9,7,125.6,1,0,0,1,0,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,3,130.0,1,2,2,1,1,130.0,0,0,0,1,0,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,7,9,111.0,0,0,0,0,1,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,148.0,1,1,1,4,8,141.4,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9147,1,1,115.0,1,1,38,3,8,109.8,1,0,0,1,0,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +1,7,3,9130,1,3,130.0,1,19,37,90,5,130.0,0,0,1,0,0,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,5,9500,1,1,141.0,1,38,19,7,7,132.5,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,19,37,9,9,129.9,0,0,0,1,1,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,142.0,1,19,37,4,7,141.3,0,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,19,38,7,4,125.7,0,0,0,1,0,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,129.0,1,19,37,9,9,117.5,1,0,0,1,0,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,103.0,1,1,19,9,9,108.3,0,0,0,1,0,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9853,1,1,133.1,1,19,19,9,9,97.0,1,0,0,1,0,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9238,1,3,150.0,1,37,37,191,192,150.0,0,0,0,1,0,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9085,1,12,133.1,1,34,34,99,99,128.2,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9070,1,1,129.0,1,3,4,2,2,136.4,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Enrolled +1,39,2,9147,1,38,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,133.1,1,34,34,0,0,118.9,1,0,0,1,0,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,135.0,1,19,38,9,9,129.2,0,0,0,1,0,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,122.0,1,37,37,9,3,115.7,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,9853,1,1,120.0,1,1,19,4,7,111.3,0,0,0,1,0,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,141.0,1,38,19,9,10,125.6,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,4,9500,1,1,133.0,1,19,19,3,10,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,106.0,1,1,19,4,4,106.4,1,0,0,1,0,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,Enrolled +2,39,1,9147,1,1,133.1,1,37,37,9,9,140.0,0,0,0,0,0,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,51,1,9070,1,1,130.0,1,3,1,2,8,122.2,0,0,1,1,0,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,Graduate +1,17,6,9500,1,1,143.0,1,38,1,9,10,127.3,1,0,0,1,0,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,154.0,1,1,1,5,7,154.7,0,0,0,1,0,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,120.0,1,37,37,9,7,120.0,0,0,0,1,0,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,151.0,1,37,1,9,9,138.4,1,0,0,1,0,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Graduate +2,39,2,9003,1,19,133.1,1,38,19,4,1,110.0,0,0,0,0,1,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9119,1,1,129.0,1,12,1,4,10,124.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,120.0,1,37,37,4,9,117.1,1,0,0,1,0,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,133.1,1,3,1,4,9,105.0,1,0,0,1,1,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9147,1,1,120.0,1,38,38,9,8,118.3,0,0,0,1,1,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9147,1,1,147.0,1,19,1,9,7,139.3,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,140.0,1,19,19,5,5,131.3,0,0,0,1,1,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,133.0,1,38,19,9,8,128.8,1,0,0,1,1,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,Graduate +1,17,1,9254,1,1,127.0,1,1,1,4,8,126.7,1,0,0,0,1,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9147,1,1,131.0,1,1,19,4,5,120.2,1,0,0,1,0,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,143.0,1,38,38,5,5,133.9,0,0,0,1,0,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,Graduate +4,39,1,9147,1,1,140.0,1,37,37,9,9,142.8,0,0,0,1,0,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,138.0,1,19,1,5,5,128.0,1,0,0,1,0,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,Graduate +1,43,1,9500,1,1,150.0,1,37,37,9,9,130.8,1,0,0,1,0,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,160.0,1,19,38,9,9,152.0,0,0,0,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,42,1,9254,1,1,154.0,1,38,37,1,1,154.0,1,0,0,1,0,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,141.0,1,37,37,4,4,138.9,0,0,0,1,0,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,135.0,1,38,37,9,8,126.3,1,0,0,1,0,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,Graduate +1,17,2,9853,1,1,138.0,1,1,1,9,4,123.0,1,0,0,1,0,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +2,1,1,9085,1,1,139.0,1,19,19,192,144,127.1,0,0,0,1,1,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,Graduate +1,17,4,9070,1,1,116.0,1,38,37,9,9,109.0,0,0,0,1,0,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,38,38,6,3,140.0,0,0,0,1,0,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9254,1,1,120.0,1,19,19,4,4,125.5,0,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9991,0,1,120.0,1,37,37,9,8,122.5,1,0,0,1,0,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,136.0,1,1,37,4,5,130.8,0,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,116.0,1,38,19,8,10,110.8,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9853,1,1,146.0,1,19,38,9,3,145.3,1,0,0,1,0,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,150.0,1,37,37,9,7,150.0,0,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,124.0,1,1,19,5,4,124.4,0,0,0,1,0,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,37,38,9,9,148.5,0,0,0,1,1,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,9,9,127.0,1,0,0,1,1,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,Graduate +4,1,1,8014,0,1,133.1,1,39,19,4,10,143.0,1,0,0,1,0,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,133.1,1,1,19,3,5,115.0,0,0,0,0,1,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,Dropout +2,44,1,9003,1,39,160.0,1,37,38,9,4,160.0,0,0,0,1,0,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,Graduate +1,16,3,9070,1,1,152.0,1,1,38,4,8,156.9,1,0,0,1,0,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,9,9,126.3,0,0,0,1,0,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9773,1,1,131.0,1,1,38,9,5,132.4,1,0,1,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9556,1,1,140.0,1,37,37,9,8,105.0,1,0,0,1,0,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9070,1,1,128.0,1,19,19,3,3,129.8,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,7,9,125.5,1,0,0,1,0,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,140.0,1,38,37,7,7,143.0,0,0,0,1,0,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,139.0,1,19,38,4,9,146.7,1,0,0,1,0,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,129.0,1,1,37,9,9,118.2,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,142.0,1,34,34,99,99,131.9,0,0,0,1,0,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,139.0,1,1,19,9,3,130.3,1,0,0,1,0,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,38,5,5,152.4,0,0,0,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,19,19,4,6,147.6,1,0,0,1,0,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,Graduate +1,51,1,8014,0,2,110.0,1,19,38,9,10,110.0,0,0,0,1,1,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,Graduate +1,17,3,9119,1,1,135.0,1,1,19,141,193,121.7,1,0,0,1,1,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,1,4,9773,1,1,122.0,1,19,19,9,7,121.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9003,1,3,120.0,1,1,19,4,1,120.0,1,0,0,1,1,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,140.0,1,19,37,4,8,133.3,1,0,0,1,0,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,121.0,1,1,1,5,4,111.9,1,0,0,0,1,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,3,130.0,1,1,38,90,90,143.4,0,0,0,1,1,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,1,120.0,1,37,37,6,9,121.0,0,0,0,1,0,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,154.0,1,38,37,4,4,141.4,0,0,0,1,0,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,40,130.0,1,19,1,5,10,130.0,1,0,1,0,0,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,133.1,1,1,1,4,4,120.0,0,0,1,0,1,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,120.0,1,37,1,9,5,113.4,1,0,0,1,0,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,139.0,1,38,37,7,7,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,135.0,1,38,19,194,193,135.4,1,0,0,1,1,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,150.0,1,3,2,2,2,150.0,0,0,0,1,1,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +2,43,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,1,1,7,4,136.0,1,0,0,1,1,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,3,130.0,1,3,3,1,2,150.0,0,0,0,1,0,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,123.0,1,1,38,4,7,115.3,1,0,0,1,0,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,101.0,1,38,38,9,9,104.5,1,0,0,1,0,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,140.0,1,1,19,9,9,128.8,0,0,0,1,1,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,Graduate +1,39,2,9119,1,1,120.0,1,37,37,5,5,128.0,0,0,0,1,1,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,15,133.1,1,34,34,0,0,100.0,1,0,0,0,0,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,133.1,1,6,11,4,5,138.4,0,0,0,1,1,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,142.0,1,37,37,6,7,136.1,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,132.0,1,37,37,9,9,123.6,1,0,0,1,0,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,9,9,126.9,1,0,0,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,15,1,9238,1,1,150.0,26,3,37,2,8,132.5,1,0,0,0,0,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,142.0,1,12,12,9,4,132.6,1,0,0,1,0,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,4,9254,1,1,106.0,1,37,19,9,7,116.9,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,160.0,1,1,19,5,7,155.5,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,42,1,9500,1,1,157.0,1,3,3,3,3,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,131.0,1,3,19,1,4,118.8,0,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,Graduate +1,43,2,9773,1,1,120.0,1,34,34,0,0,103.6,1,0,0,1,0,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,125.0,1,34,37,9,9,129.2,1,0,1,0,0,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,4,9085,1,1,145.0,1,37,1,9,9,145.0,1,0,0,1,0,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,136.0,1,1,1,9,3,122.7,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,1,4,9147,1,1,120.0,1,19,38,5,5,122.8,1,0,0,1,1,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,2,9085,1,1,140.0,1,37,38,9,7,137.0,0,0,0,1,0,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,120.0,1,4,1,4,10,112.0,1,0,0,1,0,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,37,38,7,7,110.0,0,0,0,1,1,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,138.0,1,38,19,9,5,144.3,0,0,0,1,0,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,12,133.1,1,37,37,9,9,120.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9147,1,1,140.0,1,19,19,9,7,120.4,0,0,1,0,0,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,145.0,1,37,1,9,4,138.8,1,0,0,1,0,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,19,38,5,0,133.7,1,0,0,1,0,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9130,1,39,150.0,1,5,1,2,5,150.0,1,0,0,1,1,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,Enrolled +1,43,1,9991,0,1,140.0,1,37,38,9,8,135.5,0,0,1,0,0,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,Dropout +1,1,1,9254,1,1,123.0,1,38,19,9,4,117.8,0,0,0,1,1,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9500,1,1,125.0,1,1,12,3,6,115.2,1,0,0,1,0,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,Graduate +1,17,2,9254,1,1,129.0,1,12,37,9,9,122.0,1,0,0,1,0,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,2,9070,1,1,143.0,1,1,1,4,10,146.2,1,0,0,1,1,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,117.0,1,38,38,4,9,120.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,3,130.0,1,3,1,1,10,160.0,0,0,0,1,0,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,Dropout +1,17,1,9556,1,1,133.0,1,38,37,9,9,124.4,1,0,0,1,0,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,Graduate +1,1,1,9003,1,1,124.0,1,38,19,9,7,116.0,0,0,0,1,1,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,164.0,1,19,1,9,9,161.2,0,0,0,1,1,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,1,130.0,1,37,37,9,9,119.5,1,0,0,1,0,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,1,19,1,5,130.0,0,0,1,1,0,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,142.0,1,19,19,7,3,132.9,0,0,0,1,1,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,126.0,1,19,19,3,7,123.9,0,0,0,1,0,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9254,1,1,132.0,1,1,38,5,6,122.6,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,1,6,9238,1,1,125.0,1,38,1,7,4,118.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,1,140.0,1,3,3,2,2,110.0,0,0,0,1,1,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,138.0,1,1,40,4,3,149.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,43,1,171,1,1,144.0,1,19,19,9,4,121.6,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9773,1,1,129.0,1,37,37,9,7,117.1,1,0,0,1,0,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,Enrolled +1,1,6,9853,1,1,114.0,1,19,19,9,9,110.2,1,0,0,1,1,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Dropout +2,42,1,9147,1,1,100.0,1,37,37,9,9,100.0,1,0,0,1,0,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,135.0,1,38,19,9,5,126.3,0,0,0,1,1,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,156.0,1,3,3,2,2,147.7,1,0,0,1,0,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,Graduate +1,1,1,9147,1,1,139.0,1,38,1,5,5,127.1,1,0,0,1,1,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,127.0,1,1,37,4,9,128.1,0,0,0,1,1,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,5,9070,1,1,124.0,1,37,37,9,9,113.9,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,129.0,1,38,37,9,5,120.0,1,0,0,1,0,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,118.0,1,19,19,9,9,122.2,0,0,0,1,0,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,Graduate +2,39,1,9556,1,19,133.1,1,38,37,7,7,99.5,1,0,1,0,0,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,130.0,1,38,38,7,7,136.3,1,0,0,1,1,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,1,9853,1,1,112.0,1,2,19,3,9,106.1,1,0,0,1,0,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,43,1,9119,1,1,146.0,1,3,1,2,3,100.0,0,0,0,1,1,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,132.0,1,1,12,4,5,124.3,0,0,0,1,0,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,8014,0,1,136.0,1,37,37,5,8,132.5,0,0,1,1,0,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,37,37,90,90,130.0,1,0,0,1,1,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,135.0,1,1,1,4,4,122.8,0,0,0,1,0,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,Graduate +2,39,1,9254,1,1,130.0,1,37,37,9,9,125.0,0,0,0,1,0,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,133.1,1,19,19,9,8,132.0,1,0,0,1,0,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,Dropout +2,39,1,9070,1,1,160.0,1,3,1,2,5,126.5,0,0,0,1,0,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,15,1,9556,1,1,137.0,26,19,1,9,4,137.0,0,0,1,1,0,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9773,1,1,133.1,1,3,5,0,2,125.8,1,0,0,0,1,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,16,4,9238,1,1,135.0,1,37,37,9,9,121.0,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,2,9556,1,1,130.0,1,37,19,9,8,110.0,0,0,0,1,1,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,Enrolled +1,1,1,9853,1,1,123.0,1,1,38,9,6,121.6,1,0,0,1,0,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9119,1,1,126.0,1,38,19,5,5,130.2,0,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,5,9500,1,1,122.0,1,37,3,9,2,116.8,1,0,0,1,0,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,132.0,1,38,38,9,9,119.3,1,0,0,1,0,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,116.0,1,38,1,5,1,111.1,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9500,1,1,113.0,1,38,19,9,7,106.7,1,0,0,1,0,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,Enrolled +1,39,1,9670,1,1,120.0,1,34,34,0,0,106.0,1,0,0,0,1,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,145.0,1,19,37,5,9,130.5,1,0,0,1,0,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,Graduate +2,39,1,9238,1,19,133.1,1,37,37,4,4,98.5,0,0,0,1,0,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,152.0,1,41,19,3,5,137.8,0,0,0,1,0,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,Graduate +1,43,2,8014,0,3,130.0,1,34,34,0,0,130.0,0,0,0,1,1,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,152.0,1,38,37,9,9,139.1,0,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,18,1,9003,1,1,133.1,1,1,38,9,6,101.0,0,0,0,1,1,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,19,1,9,8,105.0,0,0,0,1,0,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,162.0,1,19,1,5,5,147.5,1,0,0,1,0,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,19,1,4,1,101.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9119,1,1,116.0,1,19,1,9,7,112.2,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,133.0,1,38,37,9,7,120.1,1,0,0,1,0,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,110.0,1,37,37,5,6,108.3,0,0,0,0,0,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,Dropout +1,17,2,9773,1,1,121.0,1,1,1,5,5,123.1,1,0,0,1,1,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,17,1,9556,1,1,133.0,1,1,38,4,9,119.0,0,0,0,1,0,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,Enrolled +1,17,1,9147,1,1,139.0,1,1,38,4,5,152.0,0,0,0,1,0,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,160.0,1,12,38,4,8,160.0,1,0,0,1,1,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,133.1,1,19,19,7,7,117.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,128.0,1,3,1,3,3,121.0,1,1,1,1,1,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,116.0,1,1,19,4,7,127.6,1,0,0,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,Dropout +1,18,3,9119,1,1,111.0,1,1,19,9,8,111.0,1,0,0,1,1,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,146.0,1,1,1,9,7,126.0,0,0,0,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,Enrolled +1,53,1,9085,1,42,140.0,1,1,1,5,5,143.3,1,0,0,0,0,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,Enrolled +1,1,1,9070,1,1,144.0,1,1,1,3,5,127.2,1,0,0,1,0,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,141.0,1,38,1,5,7,132.6,0,0,0,1,0,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,18,1,9085,1,1,153.0,1,37,37,9,9,138.0,1,0,0,1,0,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,137.0,1,1,3,5,2,133.9,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,150.0,1,19,38,9,5,143.0,0,0,0,1,0,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,1,9,6,126.1,1,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9070,1,1,133.0,1,4,1,4,4,132.0,1,1,0,1,0,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,140.0,1,1,19,9,9,140.0,1,0,0,1,0,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,133.1,1,3,1,2,4,128.2,1,0,0,1,0,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,1,133.1,1,37,36,90,7,128.2,0,0,0,1,1,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,114.0,1,19,38,9,7,135.9,0,0,0,1,1,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,Graduate +2,51,1,9500,1,1,130.0,1,37,37,5,5,120.0,0,0,0,1,1,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,Dropout +1,43,1,9670,1,39,110.0,1,19,3,7,10,110.0,0,0,0,1,0,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,43,1,9500,1,1,148.0,1,29,38,90,3,131.0,1,0,0,1,0,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,Graduate +1,18,1,9254,1,1,118.0,1,38,38,5,5,123.3,1,0,0,1,1,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9003,1,3,130.0,1,1,38,9,7,130.0,1,0,0,0,1,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,3,38,2,7,121.7,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9991,0,1,133.1,1,38,38,5,5,145.0,0,0,0,1,0,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,136.0,1,1,12,9,10,121.7,1,0,0,1,0,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,160.0,1,19,1,4,10,153.0,1,0,0,1,0,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,Graduate +2,53,1,9147,1,42,130.0,1,19,19,175,152,132.4,0,0,0,1,0,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9119,1,40,120.0,1,1,1,5,10,146.8,0,0,0,1,1,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,150.0,1,19,11,0,0,131.1,1,0,0,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,122.0,1,1,19,4,3,130.4,1,0,0,1,0,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,5,9119,1,1,132.0,1,38,19,5,3,119.1,0,0,0,1,0,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,137.0,1,1,3,4,3,124.6,0,0,0,1,0,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,126.0,1,1,38,4,7,124.3,1,0,0,1,0,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,Graduate +1,43,1,9238,1,39,120.0,1,2,1,1,2,118.6,0,0,0,1,1,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,34,34,0,0,119.1,1,0,0,1,0,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,127.0,1,1,1,4,4,120.4,1,0,0,1,0,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,135.0,1,1,38,5,5,122.4,0,0,1,1,0,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,Graduate +1,18,2,9773,1,1,109.0,1,1,1,4,4,109.0,1,0,0,0,0,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9500,1,1,132.0,1,19,3,9,5,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,Enrolled +1,43,1,33,1,19,133.1,1,38,38,4,4,140.0,0,0,1,1,1,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,Dropout +1,17,1,9773,1,1,120.0,1,37,37,5,5,125.3,0,0,0,1,0,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,1,19,5,10,141.1,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,145.0,1,19,38,4,4,132.1,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9254,1,1,122.0,1,19,19,5,5,118.2,0,0,0,1,0,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,Enrolled +1,17,1,8014,0,1,119.0,1,34,34,0,0,112.4,1,0,0,1,0,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,5,9500,1,1,125.0,1,1,1,3,8,115.6,1,0,0,1,0,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,Enrolled +2,39,1,9991,0,1,150.0,1,1,4,4,2,146.0,0,0,0,1,1,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,132.0,1,4,2,123,112,143.6,1,0,0,1,1,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9085,1,1,144.0,1,1,19,4,10,132.1,1,0,0,1,0,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,19,19,1,1,125.5,1,0,0,1,0,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,130.0,1,19,19,9,6,135.0,0,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,1,140.0,1,19,19,90,90,120.0,0,0,1,0,1,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,143.0,1,1,37,3,8,128.0,0,0,0,1,0,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,Graduate +1,1,3,9070,1,1,146.0,1,34,34,0,0,143.6,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9130,1,1,130.0,1,1,19,6,6,154.0,1,0,0,1,1,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,10,170.0,0,0,0,1,0,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,Enrolled +6,39,1,9991,0,12,130.0,1,37,37,90,90,119.0,1,0,0,0,1,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,53,1,9003,1,42,130.0,1,1,1,144,144,125.8,0,0,1,1,0,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,145.0,1,40,1,2,4,160.1,0,0,0,1,0,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9070,1,1,140.0,1,1,1,9,8,144.3,1,0,0,1,0,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,150.0,1,1,38,6,6,150.0,1,0,0,1,1,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,148.0,1,37,37,9,9,143.5,0,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,123.0,1,19,19,9,8,125.5,0,0,0,0,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,130.0,1,34,1,0,2,128.2,0,0,0,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,1,130.0,1,1,1,3,7,140.0,0,0,0,1,1,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,17,4,9556,1,1,112.0,1,1,1,4,10,107.1,1,0,0,1,0,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,101.0,1,1,1,3,4,102.4,0,0,0,1,0,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,133.0,1,37,37,9,7,121.8,0,0,0,1,1,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9500,1,1,133.1,1,3,1,5,5,148.8,0,0,0,1,0,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,157.0,1,19,38,5,3,149.3,0,0,0,1,0,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,163.0,1,3,4,2,5,175.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,148.0,1,1,3,4,1,163.4,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,Graduate +1,53,1,9085,1,42,130.0,1,38,38,9,9,128.8,0,0,0,1,0,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,Dropout +1,39,1,8014,0,1,120.0,1,1,1,4,4,150.5,0,0,0,1,0,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Graduate +1,51,1,9147,1,1,130.0,1,1,1,4,4,120.0,0,0,0,1,0,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,Enrolled +4,39,2,9556,1,19,133.1,1,19,19,4,6,123.0,0,0,0,1,0,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,Graduate +4,39,1,8014,0,19,140.0,1,37,37,9,3,131.0,0,0,0,1,0,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,131.0,1,19,38,9,9,129.7,1,0,0,1,0,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,Graduate +1,7,1,9238,1,40,130.0,1,37,37,5,5,130.0,0,0,0,1,1,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,Graduate +1,1,1,9130,1,1,133.0,1,3,1,2,4,126.0,0,0,0,1,1,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,100.0,1,1,1,4,4,120.0,0,0,0,1,1,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,138.7,1,1,12,4,3,111.3,0,0,0,1,1,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,135.0,1,38,38,5,7,121.0,0,0,0,1,0,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,1,19,5,9,111.1,0,0,0,1,1,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,43,1,9130,1,1,100.0,41,3,4,3,2,100.0,0,0,0,1,0,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9147,1,3,130.0,1,37,19,9,8,130.0,0,0,0,1,0,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,Graduate +1,1,4,9085,1,1,138.0,1,3,1,1,4,123.3,1,0,0,1,0,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,Graduate +1,17,1,9003,1,1,131.0,1,19,1,9,2,134.5,1,0,0,1,0,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,139.0,1,38,1,9,5,131.8,1,0,0,1,0,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,133.1,1,37,37,6,6,136.2,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,123.9,1,37,1,9,7,123.9,0,0,0,1,1,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,Dropout +1,1,1,9147,1,1,143.0,1,3,1,5,5,152.1,1,0,1,1,1,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,Dropout +1,1,6,9500,1,1,142.0,1,1,37,7,7,123.5,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,124.0,1,2,1,4,10,117.4,1,0,0,1,0,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,5,9119,1,1,130.0,1,19,1,4,5,118.1,1,0,1,0,1,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,Dropout +1,17,4,9147,1,1,121.0,1,38,37,6,7,113.0,1,0,0,1,0,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,150.0,1,19,19,4,10,100.0,0,0,0,1,0,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,151.0,1,37,37,9,9,138.0,1,0,0,1,0,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,138.0,1,38,38,9,9,126.8,0,0,0,1,1,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,Graduate +6,17,3,8014,0,1,115.0,1,19,1,5,90,115.0,0,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,127.0,1,1,19,3,3,120.2,1,0,0,1,0,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,Graduate +1,51,1,9991,0,1,134.0,1,1,1,5,3,120.6,1,0,0,1,1,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,121.0,1,19,1,7,9,117.9,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,131.0,1,1,38,4,8,121.9,1,0,0,1,0,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,19,133.1,1,38,38,7,8,170.0,0,0,0,1,1,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,100.0,1,37,37,9,5,170.0,0,0,0,1,1,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,95.0,1,37,37,5,8,95.0,0,0,0,0,1,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,148.0,1,37,37,9,9,134.7,0,0,0,1,0,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,Enrolled +1,1,2,9238,1,1,121.0,1,19,19,191,171,119.3,1,0,1,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9119,1,1,136.0,1,1,2,5,4,122.7,1,0,0,1,1,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,Dropout +1,17,4,9254,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,1,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,4,9,100.0,0,0,0,0,0,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9254,1,1,160.0,1,1,3,3,3,142.5,1,0,0,0,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,138.0,1,1,19,7,8,129.3,1,0,0,1,0,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,90,90,100.0,0,0,0,1,1,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,148.0,1,1,37,9,7,143.3,0,0,0,1,0,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,19,38,4,10,130.0,1,0,0,1,0,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,19,37,9,7,110.0,1,0,0,1,1,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9254,1,1,131.0,1,4,3,7,4,126.1,1,0,0,1,0,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,Graduate +1,43,2,9500,1,1,136.0,1,38,38,9,5,131.3,0,0,0,1,0,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,119.0,1,1,1,4,10,125.0,0,0,0,1,1,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,Enrolled +1,17,2,9238,1,1,132.0,1,38,1,7,7,133.1,1,0,0,1,0,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,126.0,1,12,1,5,10,120.2,0,0,0,1,0,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,Enrolled +1,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,161.0,22,37,37,9,9,137.9,0,0,1,0,0,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,Graduate +1,17,2,9147,1,1,133.0,1,19,1,9,3,120.1,1,0,0,1,0,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9085,1,1,127.0,1,3,3,2,8,138.8,1,0,0,1,0,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,121.0,1,1,1,1,1,115.1,1,0,0,1,0,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9130,1,1,130.0,1,3,19,2,9,115.9,0,0,0,1,0,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +2,7,1,9991,0,3,140.0,1,34,34,99,99,140.0,1,0,0,0,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,113.2,0,0,0,1,0,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9500,1,1,137.0,1,1,1,9,9,127.9,1,0,0,1,0,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,Dropout +1,1,5,9500,1,1,130.0,1,19,37,9,7,127.6,1,0,0,1,0,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,133.1,1,1,38,3,7,121.7,0,0,0,1,0,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,130.0,1,3,1,4,1,130.0,1,0,0,0,0,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,107.0,1,2,12,3,10,104.2,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,9,113.5,0,0,0,1,0,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,145.0,1,19,37,4,8,136.8,1,0,0,1,0,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,120.0,1,19,38,5,6,112.3,0,0,0,1,0,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,133.1,1,34,34,0,0,125.3,0,0,0,1,1,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,Dropout +1,1,6,9853,1,1,136.0,1,1,19,5,5,122.0,0,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,121.0,1,4,1,2,3,120.7,1,0,0,1,0,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,1,1,9147,1,1,133.1,1,34,34,0,0,131.8,0,0,0,1,0,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,4,100.0,0,0,0,1,0,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,127.0,1,19,38,3,3,121.1,1,0,0,1,1,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/gen_20260330_014804.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/gen_20260330_014804.log new file mode 100644 index 0000000000000000000000000000000000000000..e721c1ba68d21480c62fedb0c2c63a45dce6a3b6 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/gen_20260330_014804.log @@ -0,0 +1,13 @@ + + 0%| | 0/1000 [00:00 /work/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/rtf-m5-1000-20260330_014804.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/gen_20260418_111310.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/gen_20260418_111310.log new file mode 100644 index 0000000000000000000000000000000000000000..9d03e59ed24fbfac17e498374d331e12d1a0f1d1 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/gen_20260418_111310.log @@ -0,0 +1,33 @@ + + 0%| | 0/3539 [00:00 /work/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/rtf-m5-3539-20260418_111310.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..737ec12ad23da38fd39679af43a1093443997bce --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b7950a20deddf0b2b710e7a018e44063dba5b104 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/realtabformer_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/realtabformer_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c5598c832a9f8d007299c5cde32942a80a0617aa --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "m5", + "model": "realtabformer", + "run_id": "rtf-m5-20260330_005221", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/rtf-m5-3539-20260418_111310.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a22a371258ab8267b23b3b79730d7e0f64866e52 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,0,1,126.0,1,38,37,5,5,118.7,0,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,19,37,9,7,111.4,0,0,0,1,1,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,140.0,1,1,1,4,3,140.0,1,0,0,1,0,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,Graduate +1,1,2,9085,1,1,141.0,1,1,38,9,8,128.9,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,128.0,1,19,19,7,8,120.0,1,0,0,1,0,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,123.0,1,4,37,2,9,113.9,0,0,0,1,0,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,1,140.0,41,1,1,9,9,100.0,0,0,1,0,0,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,133.1,1,1,3,9,9,116.0,0,0,0,1,1,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,143.0,1,3,3,2,10,141.3,0,0,1,0,0,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,106.0,1,37,38,191,163,102.2,1,0,1,1,1,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,Enrolled +1,16,2,9085,1,1,136.0,1,37,37,9,9,123.4,1,0,0,1,0,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,125.0,1,38,38,9,9,125.4,0,0,1,0,0,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,Dropout +4,39,1,9773,1,12,120.0,1,37,37,4,9,130.0,0,0,0,0,1,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,Dropout +1,44,1,9853,1,39,150.0,1,3,37,2,7,150.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,145.0,1,1,19,9,9,129.3,0,0,1,1,0,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Graduate +1,44,1,9119,1,39,180.0,1,1,1,9,8,180.0,0,0,0,1,1,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,Enrolled +1,1,4,9085,1,1,135.0,1,38,37,9,9,132.6,1,0,0,1,0,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,130.0,1,3,1,3,6,130.0,1,0,1,1,1,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,182.0,1,19,1,5,7,156.8,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,142.0,1,19,38,7,10,128.4,1,0,0,1,0,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,19,133.1,1,37,37,9,4,103.5,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,1,1,3,3,119.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,44,1,9991,0,39,140.0,1,37,19,9,8,140.0,0,0,0,1,0,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,133.0,1,38,38,9,9,128.8,1,0,0,1,0,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,3,3,132,132,110.6,0,0,0,1,0,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,Enrolled +1,42,1,9773,1,1,133.1,1,19,6,4,3,120.0,0,0,0,1,1,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9147,1,1,160.0,1,37,37,9,7,110.0,0,0,0,1,1,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,100.0,1,19,37,5,5,120.7,0,0,0,1,0,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,136.0,1,19,19,9,9,140.0,1,0,0,1,0,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,135.0,1,3,3,2,2,132.9,1,0,0,0,0,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,Dropout +1,53,1,9003,1,42,130.0,1,1,38,9,6,128.5,0,0,0,1,1,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,140.0,1,37,37,9,9,140.0,0,0,0,1,1,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,124.0,1,19,37,5,7,119.1,0,0,0,1,1,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9556,1,1,140.0,1,37,38,9,9,106.0,1,0,1,0,0,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,Dropout +1,42,4,9500,1,6,133.0,1,1,19,2,9,127.8,1,0,0,1,0,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,130.0,1,19,19,90,90,122.0,0,0,0,1,0,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,125.0,1,37,19,9,9,122.4,1,0,0,1,1,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,3,110.0,1,3,19,4,6,150.0,0,0,0,1,1,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,123.0,1,19,19,1,1,114.6,0,0,0,1,0,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,131.0,1,38,38,9,9,126.5,0,0,0,1,0,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,133.1,1,38,19,132,103,146.0,0,0,1,1,0,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,3,3,2,2,124.9,1,0,0,1,0,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,136.0,1,3,4,2,2,133.9,0,0,0,0,1,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,2,1,4,6,140.0,0,0,0,1,1,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,111.0,1,19,19,9,9,114.2,1,0,0,1,0,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,130.0,1,19,38,7,7,120.2,1,0,0,1,0,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,Graduate +1,7,1,9670,1,3,110.0,1,27,37,3,3,110.0,1,0,0,1,1,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,142.0,1,38,19,7,10,128.4,0,0,0,1,0,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9773,1,1,158.0,1,1,38,4,7,157.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,127.0,1,1,33,3,3,129.8,0,0,0,0,1,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9773,1,1,140.0,1,34,37,0,0,102.5,0,0,0,1,0,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,130.0,1,1,38,5,7,122.0,1,0,0,1,1,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,145.0,1,19,1,6,5,127.9,1,0,0,1,0,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,132.0,1,38,38,9,8,122.6,1,0,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,37,37,9,7,129.9,1,0,0,1,0,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,121.0,1,1,1,4,4,114.9,0,0,0,1,1,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,Graduate +1,7,1,8014,0,3,140.0,1,1,1,4,4,140.0,0,0,0,1,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,137.0,1,1,19,4,4,125.3,0,0,0,1,1,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,Enrolled +1,18,1,9670,1,1,133.0,1,1,1,9,9,121.5,1,0,0,1,0,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,42,1,9500,1,1,100.0,1,3,37,2,6,130.0,1,0,0,1,0,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,19,38,9,8,140.9,0,1,0,1,0,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,133.1,1,37,37,9,9,120.0,0,0,0,0,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,8014,0,1,128.0,1,38,38,0,0,122.1,0,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9119,1,1,130.0,1,1,3,4,2,123.0,0,0,0,1,1,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,121.0,1,19,38,7,9,123.8,0,0,0,1,0,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,9070,1,1,122.0,1,1,1,4,8,123.8,1,0,1,0,0,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,12,133.1,1,37,37,9,9,133.8,1,0,0,1,1,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,3,3,2,2,149.0,0,0,0,0,1,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,1,38,1,9,140.0,0,0,0,1,1,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,Dropout +1,1,5,9773,1,1,135.0,1,37,1,5,5,124.9,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,9119,1,1,132.0,1,37,37,9,6,119.4,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,9670,1,3,110.0,1,37,37,7,7,110.0,0,0,0,1,0,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,Graduate +1,17,5,9119,1,1,118.0,1,1,19,9,9,120.5,1,0,0,1,1,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,19,133.1,1,37,19,9,4,140.0,0,0,1,1,0,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,126.0,1,1,1,4,7,115.2,0,0,0,0,0,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9254,1,1,158.0,1,19,39,4,8,153.5,1,0,0,1,0,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,129.0,1,37,38,7,7,122.0,1,0,0,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,12,133.1,1,37,1,9,4,138.4,0,0,0,1,1,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,Dropout +1,7,1,9238,1,3,130.0,1,1,1,4,10,125.1,0,0,1,0,0,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,1,110.0,1,40,1,5,6,142.5,0,0,1,0,1,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,Dropout +1,16,1,9070,1,1,125.0,1,1,1,4,4,120.8,1,0,0,1,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,128.0,1,19,1,5,4,135.7,1,0,0,1,0,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,142.0,1,19,19,9,9,139.9,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,123.0,1,3,12,2,9,116.4,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,125.0,1,19,1,9,10,123.6,1,0,0,1,0,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,12,133.1,1,12,12,9,9,120.0,0,0,0,1,1,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,Dropout +1,17,5,9500,1,1,144.0,1,19,38,9,5,130.7,1,0,0,1,0,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,Graduate +1,17,6,9500,1,1,136.0,1,19,38,9,3,132.5,1,0,0,1,0,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,Graduate +2,43,1,9991,0,1,140.0,1,38,37,5,6,117.3,0,0,0,1,0,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,43,1,9500,1,1,140.0,1,37,37,9,10,105.7,1,0,0,1,0,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,19,133.1,1,1,5,4,3,100.0,0,0,0,1,0,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,3,9238,1,1,143.0,1,37,38,0,7,126.9,1,0,0,1,0,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,138.0,1,37,1,9,9,123.7,1,0,1,1,0,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,34,34,0,0,112.5,0,0,0,1,0,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,141.0,1,3,2,2,3,130.2,1,0,0,1,0,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,139.0,1,1,19,3,9,134.9,1,0,0,1,1,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,3,102.0,1,0,0,1,0,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,153.0,1,38,37,7,8,147.9,0,0,0,1,0,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,Graduate +1,17,3,9085,1,1,121.0,1,38,1,9,9,111.9,1,0,0,1,1,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,149.0,1,37,37,9,6,130.5,1,0,0,1,0,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,Graduate +1,17,5,9773,1,1,139.0,1,38,1,4,4,123.6,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9119,1,1,120.0,1,3,1,123,152,116.9,0,0,0,1,1,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9238,1,1,130.0,1,1,19,4,5,124.8,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,Graduate +1,53,1,9085,1,42,150.0,1,1,19,4,8,145.2,1,0,0,1,0,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,Graduate +4,39,1,9130,1,1,140.0,1,37,37,6,7,150.0,1,0,0,1,1,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,4,171,1,1,133.1,1,1,1,9,10,110.0,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,124.0,1,19,1,9,9,121.2,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9119,1,39,130.0,1,38,19,9,5,130.0,1,0,0,1,1,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,Enrolled +4,7,1,9500,1,3,140.0,1,37,38,9,7,140.0,0,0,0,1,1,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,37,5,9,118.4,0,0,0,1,1,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,33,1,1,130.0,1,19,19,9,9,117.7,0,0,0,1,0,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,Dropout +4,7,1,9500,1,40,130.0,1,19,19,4,6,130.0,0,0,0,0,0,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,144.0,13,3,3,6,6,137.6,1,0,0,1,0,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,132.0,1,38,37,9,9,122.9,0,0,0,0,1,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,Dropout +1,1,2,9773,1,1,124.0,1,3,3,3,4,114.6,1,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,100.0,1,38,38,9,10,100.0,0,0,0,1,0,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,Graduate +1,18,2,9853,1,1,120.0,1,19,37,9,4,113.7,1,0,1,0,0,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9500,1,1,136.0,1,3,3,2,2,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,Graduate +1,39,1,9130,1,1,133.1,1,3,34,3,0,120.0,0,0,1,0,1,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,140.0,1,1,19,3,3,140.0,1,0,0,1,0,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9085,1,1,128.0,1,38,37,9,9,116.5,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,132.0,1,6,6,0,4,119.1,1,0,1,1,0,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,Dropout +1,43,1,9500,1,6,134.0,1,1,37,9,9,120.4,1,0,0,1,0,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,34,34,0,0,100.0,0,0,0,1,0,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,122.0,1,3,1,4,7,116.1,1,0,0,1,0,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,120.0,1,37,37,9,9,117.0,1,0,0,1,0,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,5,9254,1,1,126.0,1,19,19,4,7,116.6,1,0,0,1,0,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,4,160.0,1,3,3,2,1,125.0,0,0,0,1,1,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,130.0,1,37,37,0,0,117.8,1,0,0,1,0,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,169.0,1,19,37,9,7,176.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9500,1,1,137.0,1,3,38,2,4,121.0,0,0,0,1,0,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,132.0,1,19,1,9,5,123.4,0,0,0,1,0,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,3,105.0,1,37,37,7,8,129.7,1,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9254,1,1,119.0,1,19,19,9,9,118.7,1,0,0,1,1,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,120.0,1,37,37,9,6,117.0,0,0,0,1,1,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,6,130.0,0,0,0,1,1,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,143.0,1,19,37,9,9,126.2,1,0,0,1,0,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,39,150.0,1,19,19,9,9,150.3,0,0,0,1,1,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9130,1,1,143.0,1,3,3,2,2,131.8,1,0,1,0,0,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,Enrolled +1,44,1,9238,1,39,140.0,1,19,19,8,8,144.3,1,0,0,1,0,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,131.0,1,19,19,4,4,122.0,1,0,0,1,0,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,Enrolled +1,17,2,9500,1,1,127.0,1,3,3,1,10,118.8,1,0,0,1,1,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,146.0,1,37,38,9,7,128.5,0,0,1,1,0,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,3,140.0,1,39,39,9,4,140.0,0,0,0,1,1,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,123.0,1,38,19,4,90,127.2,0,0,1,0,1,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,5,128.2,0,0,1,0,1,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,126.0,1,1,1,9,9,127.4,1,0,0,1,0,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,37,37,9,9,150.0,0,0,0,1,0,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,130.0,1,38,19,9,6,120.0,1,0,0,1,1,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,103.0,1,19,37,7,9,104.1,0,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,145.0,1,3,19,1,5,130.0,1,0,0,1,0,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,123.0,1,1,38,9,9,116.7,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,5,1,120.0,1,0,0,1,0,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,141.0,1,19,1,90,90,128.0,0,0,0,1,1,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,124.0,1,3,3,2,2,119.1,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,4,9853,1,1,116.0,1,3,38,3,8,110.4,1,0,0,1,0,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,119.0,1,38,19,9,9,115.2,0,0,0,1,1,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,37,37,7,7,113.9,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +2,43,1,9147,1,2,120.0,1,37,37,9,9,122.8,0,0,1,0,0,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,6,122.0,1,19,19,9,9,126.2,1,0,0,1,0,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,122.0,1,1,1,2,5,113.3,1,0,0,1,0,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,142.0,1,1,1,9,9,127.7,1,0,0,1,1,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,116.0,1,1,1,3,3,120.9,0,0,0,1,1,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,128.0,1,1,19,4,7,125.6,1,0,0,1,1,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,Graduate +1,7,1,9991,0,40,130.0,1,1,3,4,2,130.0,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,1,19,9,7,120.0,0,0,0,1,1,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,137.0,1,38,37,9,9,122.3,0,0,0,1,1,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,122.0,1,41,1,4,3,119.6,1,0,0,1,0,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,157.0,1,38,37,9,5,137.8,0,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9130,1,1,132.0,1,19,38,9,9,130.4,1,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Graduate +4,43,1,8014,0,12,133.1,1,34,34,0,0,106.0,1,0,0,1,0,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9130,1,1,127.0,1,3,1,2,1,116.5,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,8014,0,1,125.0,1,37,37,5,6,122.2,1,0,1,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9556,1,1,128.0,1,38,38,7,8,123.5,1,0,0,1,0,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,Enrolled +1,43,1,9130,1,1,156.0,1,19,1,9,4,156.0,0,0,1,0,1,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,Dropout +1,7,1,9130,1,3,140.0,1,19,38,9,9,140.0,1,0,0,1,0,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,8014,0,1,123.0,1,34,37,9,90,121.3,1,0,0,1,0,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,19,133.1,1,19,37,7,90,104.0,0,0,0,1,0,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,18,4,9254,1,1,106.0,1,19,37,7,7,106.0,1,0,0,1,1,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,119.0,1,37,37,4,6,113.2,0,0,1,1,0,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,19,19,9,9,100.0,0,0,0,1,0,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,145.0,1,3,1,4,3,149.9,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,166.0,1,19,37,4,8,146.4,0,0,0,1,1,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,145.0,1,38,37,5,5,142.2,0,0,0,1,0,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,156.0,1,19,38,9,1,153.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9853,1,1,117.0,1,19,38,4,0,113.5,1,0,0,1,0,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,138.0,1,37,19,9,9,127.8,1,0,0,1,0,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,40,130.0,1,1,1,4,4,190.0,1,0,0,1,0,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,Graduate +1,17,5,9070,1,1,131.0,1,37,37,9,9,126.1,1,0,0,0,0,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.1,1,19,37,9,9,95.0,1,0,1,0,0,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,143.0,1,1,38,8,8,136.7,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Dropout +1,42,1,8014,0,1,120.0,1,37,38,90,7,120.0,1,0,0,1,0,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,121.0,1,19,19,5,8,117.5,1,0,0,1,0,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,160.0,1,3,1,6,6,116.3,1,0,0,1,0,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,134.0,1,1,38,4,5,122.8,0,0,0,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,7,1,8014,0,3,120.0,1,19,37,5,3,121.3,0,0,0,1,0,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,134.0,1,38,19,9,4,128.4,1,0,0,1,0,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,130.0,1,19,1,7,4,117.8,1,0,0,1,1,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9130,1,1,132.0,1,1,1,3,3,143.9,1,0,0,1,1,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,130.0,1,19,1,9,4,101.3,1,0,0,1,1,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,135.0,1,37,19,5,10,121.0,0,0,1,1,0,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9991,0,39,120.0,1,37,37,7,7,120.0,1,0,0,1,0,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,133.1,1,3,3,2,3,135.0,0,0,0,1,0,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,110.0,1,19,19,9,7,105.8,1,0,0,1,1,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,160.0,1,1,38,4,10,144.3,1,0,0,1,0,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +4,39,1,9254,1,1,120.0,1,37,37,9,8,95.0,0,0,0,1,0,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,137.0,1,19,19,7,7,120.8,1,0,0,1,0,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,144.0,1,19,38,4,8,141.3,1,0,0,1,0,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,148.0,1,19,1,3,9,140.0,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,128.0,1,38,38,7,7,131.5,0,0,0,1,0,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,128.0,1,38,19,191,175,118.6,1,0,0,1,0,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,122.0,1,3,38,123,171,116.1,1,0,1,1,1,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9773,1,1,128.0,1,38,38,6,3,116.5,0,0,0,1,1,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,97.0,1,1,19,2,7,98.1,1,0,0,1,0,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,53,1,9991,0,1,140.0,1,38,38,191,193,135.0,0,0,1,1,0,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,Enrolled +1,1,2,9773,1,1,122.0,1,37,37,9,9,130.8,1,0,0,1,0,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,117.9,0,0,0,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9991,0,1,100.0,1,37,19,9,4,130.0,0,0,0,1,1,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,Dropout +1,17,6,9670,1,1,125.0,1,38,1,9,7,125.0,1,0,0,1,1,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,Graduate +2,7,1,9070,1,43,140.0,1,37,1,9,7,140.0,0,0,0,1,0,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,Graduate +1,7,1,9254,1,3,110.0,1,19,19,3,3,110.0,0,0,0,1,1,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9500,1,1,135.0,1,19,1,5,4,127.3,1,0,0,1,0,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,Graduate +1,17,4,9238,1,1,129.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,8,9,144.9,1,0,1,0,0,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9500,1,1,136.0,1,1,1,4,4,123.8,0,0,0,1,0,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,Graduate +4,43,1,9991,0,1,140.0,1,37,37,5,5,149.8,0,0,0,1,1,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,150.0,1,38,19,9,9,137.8,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +5,39,1,9147,1,1,180.0,1,1,1,4,8,140.5,0,0,1,0,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,131.0,1,19,19,3,7,127.9,1,0,0,1,0,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,110.0,1,1,1,4,4,99.0,0,0,0,1,1,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,Enrolled +1,39,1,9070,1,1,139.3,1,38,38,5,5,117.5,0,0,0,1,1,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9130,1,1,147.0,1,4,1,2,10,141.8,1,0,0,1,0,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,Graduate +2,44,1,8014,0,39,150.0,1,1,1,5,5,154.0,0,0,0,1,1,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,133.1,1,1,1,4,5,131.0,1,0,0,1,0,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,132.0,1,1,38,9,7,127.1,1,0,0,1,0,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,4,9147,1,1,125.0,1,19,19,5,5,118.0,1,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,108.0,1,19,1,9,3,107.8,1,0,0,1,0,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,143.0,1,37,37,9,8,130.6,1,0,0,1,0,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,126.0,1,37,1,7,7,118.7,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9238,1,1,140.0,1,1,44,4,2,124.6,1,0,1,0,1,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,112.0,1,9,22,4,3,106.1,0,0,0,1,0,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,130.0,1,37,37,191,183,163.7,0,0,0,1,0,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,Enrolled +4,39,1,9500,1,19,133.1,1,37,37,6,6,117.8,0,0,1,0,0,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,Dropout +1,18,2,9853,1,1,120.0,1,1,1,9,0,115.8,0,0,0,1,0,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,118.0,1,38,19,9,3,111.0,1,0,0,1,0,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,16,1,171,1,1,150.0,1,37,37,9,9,134.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,133.1,6,37,37,9,6,100.0,0,0,0,1,0,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,137.0,1,1,37,5,9,131.4,1,0,0,1,1,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Dropout +2,44,1,9991,0,39,130.0,1,1,37,4,9,130.0,0,0,0,0,0,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9238,1,1,136.0,1,19,19,4,7,121.7,1,0,0,1,0,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,133.1,1,1,38,9,7,110.5,0,0,0,1,0,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,Graduate +1,39,1,9556,1,19,100.0,1,37,38,9,9,120.0,0,0,0,1,0,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,142.0,1,1,38,3,5,146.9,1,0,0,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,127.0,1,19,19,7,8,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,130.0,1,1,38,7,8,135.6,1,0,0,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,137.0,1,19,38,9,3,125.0,1,0,0,1,0,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,135.0,1,37,37,7,7,124.0,1,0,0,1,0,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,Enrolled +2,39,1,9556,1,1,100.0,6,38,38,9,9,130.0,0,0,0,1,0,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,Graduate +1,42,1,9003,1,39,120.0,1,3,1,2,6,128.2,1,0,0,1,1,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,Enrolled +1,1,3,9773,1,1,121.0,1,19,19,3,3,116.1,0,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,136.0,1,1,19,4,9,131.1,1,0,0,1,0,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,141.0,1,3,19,2,10,126.8,1,0,0,1,1,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9773,1,1,136.0,1,38,38,9,9,132.9,1,0,0,1,1,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,133.1,1,1,1,90,1,120.0,1,0,1,0,1,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,Dropout +1,17,1,8014,0,1,132.0,1,37,19,5,5,121.2,0,0,0,1,0,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,2,9500,1,6,119.1,1,1,19,4,10,119.1,0,0,0,1,1,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,153.0,1,1,19,9,4,139.7,1,0,0,1,0,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,150.0,1,1,1,3,3,143.4,0,0,0,0,1,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Enrolled +1,1,4,9500,1,1,130.0,1,19,19,9,7,119.9,1,0,0,1,0,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,6,140.0,0,0,0,1,1,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,115.0,1,38,37,5,5,115.0,0,0,0,1,0,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,150.0,1,19,37,5,4,142.7,1,0,0,1,0,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,133.1,1,34,5,0,1,118.5,1,0,0,1,0,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9130,1,1,125.0,1,3,3,2,2,132.4,0,0,0,1,1,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,116.0,1,37,37,9,9,110.8,0,0,0,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,Enrolled +1,43,1,9070,1,1,115.0,1,12,12,1,10,115.0,0,0,1,1,1,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,125.0,1,37,37,9,9,118.8,0,0,0,1,1,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,130.0,1,3,1,2,5,133.8,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9500,1,1,141.0,1,12,1,5,5,133.0,1,0,0,1,0,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,141.0,1,38,38,7,10,139.8,1,0,0,1,0,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,Graduate +1,51,1,9147,1,19,133.1,1,19,19,9,5,112.1,0,0,1,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,132.0,1,19,2,9,3,126.0,1,0,0,1,0,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,131.0,1,2,38,4,5,132.3,1,0,0,1,0,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,124.0,1,1,19,9,8,116.7,1,0,0,1,0,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,180.0,103,5,3,1,1,183.5,1,0,0,1,0,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,10,1,9773,1,1,151.0,22,38,37,0,5,151.0,1,0,0,1,0,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,135.0,1,19,19,9,10,133.4,1,0,0,1,0,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,135.0,1,3,3,2,2,137.1,1,0,0,1,0,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.1,1,38,38,5,10,101.0,0,0,0,1,1,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,40,130.0,1,3,2,3,2,160.0,1,0,0,1,0,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,18,1,9773,1,1,124.0,1,38,37,9,8,126.8,0,0,0,1,1,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,140.0,1,19,37,9,9,125.5,1,0,0,1,0,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,1,133.1,1,37,38,9,8,118.9,0,0,0,1,0,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9991,0,1,160.0,1,34,34,0,0,161.8,1,0,1,1,1,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,140.0,1,1,38,4,7,100.0,0,0,0,1,0,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Graduate +1,44,1,9070,1,39,120.0,1,2,19,3,8,120.0,0,0,0,1,1,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,124.0,1,38,19,3,10,128.6,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,Enrolled +1,44,1,9085,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,0,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,145.0,1,1,19,4,3,133.5,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,Graduate +4,39,1,9085,1,1,110.0,1,37,37,90,90,110.0,0,0,0,0,0,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,134.0,1,19,37,4,7,133.5,1,0,0,1,0,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,132.0,1,1,19,4,3,126.4,1,0,0,1,0,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,19,133.1,1,4,1,2,4,120.0,0,0,0,1,1,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,151.0,1,40,4,2,2,144.5,1,0,0,1,0,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +2,39,1,9147,1,19,133.1,1,37,19,9,3,128.0,0,0,0,1,1,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,Dropout +1,39,2,8014,0,1,141.0,1,37,37,9,9,150.5,0,0,0,1,0,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,122.0,1,19,19,4,6,119.9,0,0,0,1,0,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,9,133.1,1,34,34,0,0,110.0,1,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,1,9500,1,1,128.0,1,19,1,9,4,125.8,0,0,0,1,0,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,3,9773,1,1,133.1,1,38,38,5,5,131.3,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,16,6,9147,1,1,128.0,1,37,37,9,9,116.5,1,0,0,1,0,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,1,147.0,1,34,34,90,90,111.7,1,0,0,1,0,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,1,19,6,8,122.0,0,0,0,1,0,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,Graduate +2,39,2,9254,1,19,133.1,1,19,19,9,5,123.5,0,0,0,1,1,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,114.0,1,37,37,9,9,130.0,0,0,0,1,1,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,Graduate +2,39,1,8014,0,1,100.0,1,37,38,9,9,141.5,0,0,0,1,0,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9556,1,1,118.0,1,38,38,5,5,117.8,1,0,0,1,0,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9773,1,19,133.1,1,19,19,171,163,104.0,0,0,1,0,0,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,39,110.0,1,19,37,9,8,127.5,0,0,1,0,0,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,1,120.0,1,37,38,9,8,100.0,0,0,1,1,1,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,133.0,1,19,3,9,9,123.2,1,0,0,1,1,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,133.1,1,34,34,0,0,142.8,0,0,0,1,1,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9119,1,1,120.0,1,34,34,0,0,140.0,1,0,0,1,1,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,120.0,1,3,37,4,7,115.1,1,0,0,1,0,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,Graduate +1,51,1,9119,1,1,140.0,1,1,19,4,4,150.0,0,0,0,1,1,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,Dropout +1,43,1,9556,1,1,149.0,1,1,1,4,8,140.2,1,1,0,1,0,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,160.0,1,37,19,9,10,160.0,1,0,0,1,0,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,115.0,1,19,38,7,8,116.4,1,0,0,1,0,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,140.0,1,4,4,2,10,140.0,1,0,0,1,1,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,19,133.1,1,1,1,4,4,130.0,0,0,0,1,1,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,5,9773,1,1,146.0,1,1,37,5,5,146.7,1,0,0,1,1,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,142.0,1,1,38,9,9,127.0,0,0,1,0,1,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,130.0,1,37,37,9,7,138.0,0,0,0,1,0,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9773,1,9,133.1,1,38,1,5,4,102.0,1,0,0,1,1,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,125.0,1,19,19,7,5,118.0,1,0,0,1,0,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,145.0,1,19,38,4,10,131.7,1,0,0,1,0,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,133.1,1,37,19,9,9,114.0,0,0,0,1,0,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,140.0,1,38,37,4,10,140.0,0,0,1,0,0,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,128.0,1,1,19,4,4,124.5,0,0,0,1,1,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,126.0,1,37,19,9,8,116.9,1,0,0,1,0,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,1,9773,1,1,177.0,1,2,1,123,135,155.7,0,0,1,1,0,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,135.0,1,37,1,5,5,126.8,1,0,0,1,0,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,125.0,1,4,3,1,1,119.8,0,0,0,1,0,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,Graduate +1,53,1,9147,1,42,130.0,1,1,19,143,172,133.8,1,0,0,1,0,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,Graduate +1,17,3,9670,1,1,123.0,1,38,38,7,8,118.8,1,1,0,1,0,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,112.0,1,38,19,9,5,113.8,1,0,0,1,0,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,124.0,1,34,34,0,0,129.3,0,0,0,1,0,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9773,1,12,120.0,1,1,1,9,9,129.8,1,0,0,1,1,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,111.0,1,19,19,9,9,110.0,1,0,0,1,0,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,163.0,1,37,37,5,6,155.0,0,0,0,1,0,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,145.0,1,19,1,9,5,145.0,0,0,0,1,0,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,160.0,1,38,37,9,7,155.5,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,137.0,1,1,3,7,3,131.1,1,0,1,1,0,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,133.1,1,38,38,9,9,113.5,0,0,0,1,0,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,130.0,1,1,1,9,9,131.8,0,0,0,1,1,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,137.0,1,38,37,7,7,126.0,1,0,0,1,0,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,160.0,1,19,1,9,5,107.8,1,0,0,0,1,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9070,1,39,120.0,1,3,38,3,9,120.0,0,0,0,1,1,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,145.0,1,3,3,2,1,129.3,1,0,0,1,0,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,117.0,1,38,19,5,7,118.1,0,0,0,1,1,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,130.0,1,1,1,4,3,130.0,1,0,0,1,0,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,Enrolled +2,43,1,9238,1,12,100.0,1,37,37,9,9,134.4,0,0,0,1,0,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,Graduate +2,43,1,8014,0,14,133.1,1,34,34,0,0,100.0,0,0,0,0,0,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,Dropout +1,17,4,9254,1,1,122.0,1,1,1,4,2,116.1,1,0,0,1,1,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,4,9254,1,1,110.0,1,37,37,9,7,113.2,1,0,0,1,0,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,131.0,1,38,37,4,9,131.7,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,1,19,4,10,150.0,0,0,0,1,1,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,142.0,1,19,38,9,7,127.3,0,0,0,1,1,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,Enrolled +1,7,1,9556,1,43,160.0,1,38,19,9,9,160.0,0,0,0,1,1,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,1,1,9853,1,1,130.0,1,19,12,9,4,133.2,1,0,0,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,43,1,9119,1,1,130.0,1,37,38,9,9,120.0,0,0,1,0,0,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,42,1,3,7,110.5,0,0,0,1,1,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +2,39,1,9003,1,1,130.0,1,1,19,4,9,152.4,1,0,0,1,0,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,Graduate +1,16,1,171,1,1,155.0,1,1,3,5,10,167.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,3,9254,1,1,114.0,26,38,3,9,3,127.3,1,0,1,0,0,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,37,37,9,9,125.4,1,0,0,1,1,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,5,9773,1,1,127.0,1,38,1,4,5,121.1,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Enrolled +1,17,2,171,1,1,130.0,41,1,1,2,3,148.6,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9130,1,1,120.0,1,1,19,9,9,120.0,1,0,0,1,0,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,133.0,1,1,37,4,10,143.2,0,0,0,1,0,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,38,38,9,7,125.2,1,0,0,1,0,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,102.0,1,37,37,7,7,102.0,0,0,0,1,0,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,19,38,5,7,128.5,1,0,0,1,0,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,140.0,1,38,38,7,7,133.2,1,0,0,1,0,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,123.0,1,1,1,3,3,120.9,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,2,9500,1,1,135.0,1,19,1,5,5,128.9,1,0,0,1,0,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,1,3,137.7,0,0,0,0,0,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,158.0,1,3,3,3,3,151.4,1,0,0,0,0,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,37,1,9,3,120.0,0,0,1,0,1,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,51,1,9773,1,1,135.0,1,1,42,5,3,110.0,1,0,0,1,1,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,143.0,1,3,38,2,9,144.1,1,0,0,1,0,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,Enrolled +1,1,3,9070,1,1,132.0,1,1,3,9,7,126.1,1,0,0,1,0,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,141.0,1,19,1,9,10,126.8,1,0,0,1,0,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,130.0,1,38,38,6,9,126.3,1,0,0,1,0,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,1,140.0,1,1,1,4,5,140.0,0,0,0,1,1,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,Enrolled +1,39,2,9147,1,1,130.0,1,19,19,5,9,121.5,0,0,0,0,1,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,51,1,8014,0,19,133.1,1,37,37,9,9,104.0,0,0,1,1,0,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,120.0,1,3,4,2,2,120.0,0,0,0,1,1,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,Graduate +1,1,4,171,1,1,131.0,1,19,19,4,4,119.8,1,1,0,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,18,3,9070,1,1,134.0,1,1,1,3,4,121.4,0,0,0,1,0,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,140.0,1,37,37,9,9,118.2,0,0,0,1,1,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,130.0,1,19,37,9,9,131.8,1,0,0,1,0,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,134.0,1,38,19,3,10,121.2,0,0,0,1,0,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,Graduate +1,43,2,9500,1,1,120.0,1,41,3,2,2,112.7,0,0,0,1,0,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,134.0,1,1,19,4,9,129.8,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,133.0,1,19,1,4,5,127.1,1,0,0,1,0,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,148.0,1,38,37,5,9,137.8,1,0,0,1,0,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,129.0,1,37,37,9,7,117.8,0,0,0,1,0,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,Enrolled +4,39,1,8014,0,3,100.0,1,37,37,9,9,130.0,0,0,0,1,0,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,145.0,1,1,40,9,2,129.6,0,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,4,9254,1,1,124.0,1,1,1,4,4,122.3,1,0,0,1,0,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Dropout +2,43,2,9147,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,Graduate +1,51,1,9556,1,1,131.0,1,1,37,152,193,126.6,1,0,0,1,1,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,44,1,9085,1,39,110.0,1,3,5,2,2,110.0,0,0,0,1,1,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,15,1,9147,1,1,140.0,26,37,2,6,4,140.0,0,0,1,1,1,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,Graduate +2,51,1,9853,1,1,130.0,1,37,37,7,8,120.3,0,0,0,1,0,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,19,133.1,1,37,37,6,6,139.0,0,0,0,1,1,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9670,1,1,120.0,1,37,37,7,7,111.3,1,0,0,1,1,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,3,120.0,1,37,37,7,7,120.0,0,0,0,1,0,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,Dropout +1,17,3,9147,1,1,147.0,1,19,38,5,7,132.3,1,0,0,1,0,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,3,9130,1,1,167.0,1,37,37,90,90,159.3,0,0,0,1,0,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,132.0,1,1,1,4,9,136.6,1,0,0,1,1,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,Enrolled +1,5,2,9853,1,1,124.0,1,19,19,3,3,113.9,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,3,130.0,1,3,1,2,9,130.0,0,0,0,1,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,160.0,1,1,38,4,7,146.5,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,141.0,1,19,3,4,0,137.9,1,0,0,0,1,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,19,37,8,7,100.0,1,0,0,1,0,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,134.0,1,38,19,7,7,124.2,0,0,0,1,0,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,150.0,1,1,37,4,8,145.6,1,0,0,1,0,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,146.0,1,3,1,3,10,138.7,0,0,0,1,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9991,0,40,133.1,1,1,37,4,1,100.0,0,0,0,1,0,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,127.0,1,38,19,9,10,117.9,0,0,0,1,0,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,131.0,1,37,38,9,7,137.0,0,0,0,1,0,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Graduate +1,7,1,9238,1,3,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,Graduate +2,39,1,9085,1,1,133.1,1,37,37,90,90,110.3,0,0,0,1,1,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,125.0,1,38,1,3,10,114.5,1,0,0,1,1,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,152.0,1,19,19,9,5,154.1,0,0,1,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,120.0,1,37,37,4,5,120.0,0,0,1,0,0,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,Dropout +2,39,1,8014,0,1,146.0,1,37,37,9,8,120.5,0,0,0,1,0,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,39,1,9119,1,12,133.1,1,34,34,0,0,95.1,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,128.0,1,19,37,9,8,116.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9307cf4b524ffa38ff4a36db610667ac23d91634 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/train.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,1,1,127.0,1,1,1,9,6,110.0,0,0,1,0,1,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9773,1,1,122.0,1,38,37,5,3,119.6,1,0,0,1,0,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,6,9147,1,1,121.0,1,3,19,4,5,116.8,0,0,0,1,1,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,158.0,1,38,37,5,5,140.2,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,19,19,9,7,131.7,1,0,0,1,0,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,Graduate +1,1,3,9085,1,1,133.0,1,1,38,9,90,128.2,0,0,0,1,0,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,122.0,1,1,19,9,9,120.3,1,0,0,1,1,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,Dropout +1,43,1,9119,1,1,130.0,1,1,1,9,2,128.0,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,3,9254,1,1,122.0,1,1,1,4,4,126.6,0,0,0,0,0,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,1,100.0,1,37,37,9,9,133.0,0,0,0,1,1,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,44,1,9119,1,39,130.0,1,19,3,3,4,130.0,0,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9085,1,39,140.0,1,1,1,4,7,140.0,1,0,1,1,0,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9070,1,1,130.0,1,37,37,9,9,123.7,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +4,1,1,9991,0,1,130.0,1,37,37,9,9,118.1,0,0,1,0,0,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9500,1,1,190.0,108,3,2,122,4,190.0,1,0,0,1,0,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,102.0,1,1,19,9,5,100.6,1,0,0,1,0,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,3,120.0,1,19,3,4,2,120.0,1,0,0,1,0,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,130.0,1,38,19,9,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,111.0,1,3,4,4,3,108.2,1,0,0,1,0,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9119,1,1,160.0,1,1,38,4,7,112.0,0,0,0,0,1,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,149.0,1,19,1,4,4,134.8,0,0,0,1,0,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,135.0,1,19,38,3,9,136.1,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,2,9500,1,1,120.0,1,37,34,90,0,121.5,0,0,1,1,0,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,147.0,1,12,19,9,3,151.6,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,128.0,1,37,37,9,9,123.5,1,0,0,1,1,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,2,9070,1,1,129.0,1,1,1,4,9,132.9,1,0,0,1,1,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,Enrolled +1,17,2,9500,1,1,138.0,1,1,38,5,8,132.8,1,0,0,1,0,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,134.0,1,19,37,9,9,131.6,1,1,0,1,0,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,130.0,1,37,37,9,9,122.0,1,0,0,1,0,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,1,0,0,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,2,9085,1,1,130.0,1,37,19,9,8,129.0,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,Enrolled +1,17,5,9119,1,1,126.0,1,38,38,5,9,116.9,1,0,1,1,1,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,37,38,5,6,140.0,1,0,0,1,0,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,18,4,9853,1,1,123.0,1,19,38,4,10,123.7,1,0,0,1,0,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,118.0,1,4,3,2,3,110.7,1,0,0,1,0,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,2,130.0,1,37,37,5,7,147.5,0,0,0,1,0,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,146.0,1,4,1,2,3,140.0,1,0,0,1,0,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,Graduate +1,44,1,9003,1,39,160.0,1,37,38,9,7,160.0,0,0,0,1,0,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,7,0,9003,1,3,130.0,1,1,37,4,9,130.0,1,0,0,1,0,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,19,133.1,1,34,34,99,99,96.0,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,136.0,1,37,37,7,7,140.9,1,0,0,1,1,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,1,9853,1,1,127.0,1,1,1,5,7,121.4,1,0,0,1,0,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,134.0,1,3,19,2,10,128.8,0,0,0,1,0,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,140.0,1,1,3,4,2,142.8,1,0,0,0,0,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,126.3,0,0,0,1,1,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.1,1,19,1,1,3,101.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9147,1,1,122.0,1,1,38,1,7,118.9,0,0,0,1,1,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,107.0,1,19,37,7,7,103.5,1,0,0,1,0,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,156.0,1,38,37,9,9,156.3,0,0,0,1,1,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,128.0,1,1,1,9,9,120.0,1,0,0,1,0,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9119,1,1,127.0,1,19,1,9,10,121.1,1,0,0,1,1,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,4,160.0,1,3,3,4,2,180.4,0,0,1,1,1,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,Dropout +1,43,1,9670,1,1,132.0,1,3,19,4,8,120.5,0,0,0,1,1,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,134.0,1,1,19,4,5,122.5,1,0,0,1,0,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,142.0,1,1,19,4,4,128.0,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,133.0,1,2,37,9,7,125.7,1,0,0,1,1,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,135.0,1,1,3,4,3,133.3,0,0,0,1,0,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,3,140.0,1,37,12,9,4,140.0,0,0,0,0,0,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9500,1,1,141.0,1,2,38,2,10,135.4,1,0,0,1,0,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,Enrolled +2,43,1,9991,0,2,120.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,147.0,1,1,19,4,4,137.2,0,0,0,0,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9085,1,1,120.0,1,37,38,9,9,111.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,141.0,1,3,1,9,9,124.3,0,0,0,1,0,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,Enrolled +1,18,1,9773,1,1,125.0,1,1,1,4,7,121.5,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,140.0,1,37,37,5,5,150.0,0,0,1,1,0,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,112.0,1,1,37,4,9,106.8,1,0,0,1,0,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,168.0,1,38,37,9,8,155.1,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,15,1,9119,1,1,133.1,41,2,2,2,2,100.0,0,0,1,1,1,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,Enrolled +2,1,1,8014,0,1,121.0,1,37,37,9,9,114.4,1,0,0,1,0,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,136.0,1,1,38,4,5,132.2,0,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,Graduate +1,16,1,9070,1,1,145.0,1,1,1,3,3,146.1,1,0,0,1,0,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,40,140.0,1,5,3,2,2,140.0,0,0,1,1,1,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,Dropout +1,1,3,9085,1,1,126.0,1,38,1,9,9,132.0,1,0,0,1,0,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,146.0,1,1,37,9,9,129.3,0,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,131.0,1,37,37,9,6,127.2,0,0,0,1,0,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,139.0,1,37,37,9,9,124.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,133.1,1,37,1,5,4,151.2,0,0,0,1,1,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,170.0,1,38,19,9,2,160.6,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,131.0,1,37,37,9,6,130.7,0,0,1,1,0,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,122.0,1,19,37,3,5,116.6,1,0,1,1,1,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,Graduate +1,17,3,171,1,1,147.0,1,19,1,5,4,137.6,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,9,120.0,0,0,0,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,5,1,9130,1,1,157.0,1,5,43,2,2,149.7,1,0,0,1,0,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9003,1,39,160.0,1,3,1,2,6,160.0,1,0,0,0,0,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,140.0,1,9,19,4,4,131.2,0,0,0,1,1,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,1,130.0,1,1,3,2,6,110.0,0,0,0,1,1,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,Graduate +1,39,1,171,1,1,147.0,1,37,38,175,193,133.3,0,0,0,0,0,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,148.0,1,38,19,4,9,134.7,1,0,0,1,0,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,130.0,1,19,1,9,7,130.4,1,0,0,1,0,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,133.1,1,1,37,4,9,96.0,1,0,0,1,0,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,Enrolled +1,39,1,9991,0,12,120.0,1,37,38,5,5,155.7,0,0,0,1,1,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,117.0,1,3,1,3,3,113.2,0,1,0,1,0,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,Graduate +1,17,2,9853,1,1,150.0,1,38,19,5,5,142.0,1,0,0,1,0,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,144.0,1,1,19,9,4,130.8,1,0,0,1,0,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,Graduate +1,17,4,9254,1,1,118.0,1,38,37,5,7,111.7,1,0,0,1,1,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,6,9500,1,1,141.0,1,2,1,4,4,136.3,1,0,0,1,0,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,Graduate +2,39,1,9003,1,1,120.0,1,2,2,1,4,100.0,0,0,0,1,1,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,141.0,1,4,3,2,1,136.3,1,0,0,1,1,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,120.0,1,1,19,5,4,140.4,0,0,0,1,0,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,154.0,1,1,37,4,9,134.8,1,0,0,1,0,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,100.0,1,19,19,5,5,101.8,1,0,0,1,0,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,3,9670,1,1,137.0,1,1,38,4,7,138.4,0,0,0,1,1,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,152.0,1,37,37,7,5,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,118.0,1,37,1,9,7,117.0,1,0,0,0,1,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,140.0,1,12,3,4,3,118.0,1,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,133.0,1,1,2,9,2,128.8,0,0,0,1,1,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,171,1,1,140.0,1,37,37,9,9,100.8,0,1,0,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9070,1,42,130.0,1,40,19,3,5,130.0,1,0,0,0,0,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,143.0,1,1,19,3,3,133.9,0,0,0,1,0,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,Graduate +2,1,5,9500,1,1,130.0,1,1,19,4,4,122.3,0,0,0,1,0,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,9,9,125.0,1,0,0,1,0,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,120.0,1,37,37,7,8,120.0,0,0,0,1,0,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,Graduate +1,1,2,9147,1,1,125.0,1,1,19,4,9,124.0,1,0,0,1,0,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,131.0,1,38,19,9,9,130.0,1,0,0,1,1,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,132.0,1,1,1,4,1,119.4,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9500,1,1,135.0,1,19,19,7,7,128.0,1,0,0,1,0,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,19,133.1,1,38,38,9,9,114.8,0,0,0,1,0,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,130.0,1,2,2,6,6,130.0,0,0,0,0,1,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,112.0,1,19,38,9,10,112.0,1,0,0,1,0,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9254,1,1,170.0,1,37,37,4,6,138.3,0,0,0,1,0,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9147,1,19,100.0,1,38,19,7,9,132.0,0,0,1,0,1,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,133.1,1,19,19,9,9,119.0,1,0,0,0,0,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,Dropout +1,17,2,9085,1,1,138.0,1,37,37,9,7,123.3,1,0,0,1,0,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,1,133.1,1,37,37,9,9,112.5,0,0,0,1,0,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,1,140.0,1,12,5,3,3,126.6,0,0,0,1,1,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,1,125.0,1,1,1,9,4,120.0,0,0,0,1,0,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,151.0,1,1,1,4,3,132.3,0,0,0,1,1,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,Graduate +1,43,1,9556,1,1,130.0,1,1,37,5,5,128.0,1,0,0,1,1,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,Graduate +1,17,6,9670,1,1,113.0,1,4,1,3,10,112.3,0,0,0,1,0,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9773,1,1,125.0,1,37,37,5,7,120.1,0,0,0,1,0,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,53,1,171,1,42,130.0,1,1,19,9,9,130.0,1,0,0,0,1,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,51,1,33,1,1,121.0,1,19,37,5,7,118.6,0,0,0,1,0,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,131.0,1,37,37,90,90,137.0,0,0,0,1,0,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,150.0,1,19,1,4,4,137.8,0,0,0,1,0,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,140.0,1,37,37,5,6,128.5,0,0,0,1,0,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,130.0,1,37,2,9,4,126.5,1,0,0,0,1,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,Dropout +1,1,2,9238,1,1,147.0,1,19,38,9,8,135.8,1,0,0,1,0,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,106.0,1,19,37,9,7,109.5,1,0,0,1,0,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,110.0,1,37,37,9,10,140.0,0,0,1,0,1,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,105.0,1,19,37,8,8,102.6,0,1,0,1,0,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,Enrolled +1,17,6,9147,1,1,133.0,1,19,38,5,6,123.2,1,0,0,1,1,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9670,1,1,160.0,1,34,34,99,99,100.1,0,0,0,0,1,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,Dropout +4,7,1,9500,1,40,130.0,1,37,37,3,3,130.0,1,0,0,1,0,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,Enrolled +1,43,2,9853,1,1,118.0,1,19,1,5,4,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,Enrolled +1,43,1,8014,0,1,117.0,1,37,37,9,9,100.0,0,0,0,1,0,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,Dropout +1,53,1,9238,1,42,130.0,1,1,19,5,5,128.3,0,0,1,0,0,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,127.0,1,19,38,4,5,120.7,1,0,1,1,0,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,38,37,9,4,150.0,1,0,0,1,1,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,1,133.1,1,37,29,0,4,120.5,0,0,0,0,1,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,121.0,1,37,19,9,9,141.4,0,0,1,0,1,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,120.0,1,38,37,9,7,108.0,0,0,0,1,1,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,153.0,6,37,37,9,9,131.8,1,0,0,1,0,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,153.0,1,38,19,9,5,138.5,1,0,0,1,0,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,107.0,1,12,19,5,5,102.8,1,0,0,1,0,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9238,1,1,135.0,1,1,19,7,7,126.6,1,0,0,1,0,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,124.0,1,1,19,123,103,113.9,1,1,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,144.0,1,37,37,7,9,126.8,1,0,1,0,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9556,1,1,120.0,1,37,37,9,4,150.0,0,0,0,0,0,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,Dropout +1,43,3,171,1,1,120.0,1,37,37,9,9,143.3,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,140.0,1,38,19,4,10,122.3,1,0,0,1,0,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,157.0,1,3,38,1,5,136.7,1,0,0,1,0,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,150.0,1,3,1,2,8,153.8,1,0,0,1,0,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,130.0,1,2,1,2,7,126.2,1,0,0,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,142.0,1,37,37,9,9,132.9,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9238,1,1,124.0,1,1,1,3,1,118.8,1,0,1,0,0,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,1,19,4,5,100.0,0,0,0,1,1,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,Enrolled +1,17,5,9238,1,1,122.0,1,37,37,7,5,112.9,1,0,0,1,0,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,97.5,1,0,0,1,1,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,171,1,1,140.0,1,1,3,3,3,138.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,132.0,1,1,1,3,3,119.4,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,Graduate +1,42,1,9500,1,1,100.0,1,3,19,2,8,153.0,0,0,0,1,1,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,Enrolled +1,1,1,9254,1,1,123.0,1,38,37,5,5,125.1,0,0,0,1,0,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9130,1,1,133.0,1,38,38,5,8,120.4,1,0,0,1,0,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,Graduate +1,17,4,9773,1,1,129.0,1,3,1,2,7,132.5,1,0,0,1,1,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Enrolled +4,39,1,9003,1,19,133.1,1,37,37,9,9,110.0,0,0,0,1,1,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,133.0,1,3,1,9,3,123.2,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,137.0,1,38,19,9,5,129.3,1,0,0,1,0,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,123.0,1,3,1,2,9,127.6,1,0,0,1,1,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,19,133.1,1,19,19,9,5,101.0,1,0,0,1,0,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,19,19,7,7,111.1,1,0,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9070,1,1,147.0,1,3,1,2,3,149.8,1,0,0,1,1,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,100.0,1,37,37,7,9,100.0,1,0,0,1,0,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,141.0,1,38,38,7,7,132.5,1,0,0,1,0,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,168.0,1,1,1,5,5,161.0,1,0,0,1,1,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,Dropout +5,39,1,9003,1,19,133.1,1,19,1,9,9,119.4,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,114.0,1,1,19,9,9,111.9,1,0,0,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,Enrolled +1,39,1,9500,1,1,130.0,1,37,37,3,7,143.8,0,0,0,1,1,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,133.1,1,19,19,9,7,100.0,0,0,0,1,1,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,Dropout +1,17,3,9853,1,1,132.0,1,34,34,0,0,131.3,1,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,157.0,1,37,37,9,9,143.0,0,0,0,1,1,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,Graduate +5,42,1,9254,1,2,120.0,1,37,37,4,9,120.0,0,0,0,1,0,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,6,1,1,192,144,129.8,0,0,0,1,1,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,Enrolled +1,1,2,9500,1,1,139.0,1,38,37,9,7,125.0,1,0,0,1,0,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,133.1,1,1,19,9,5,95.0,1,0,0,1,0,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,180.0,1,37,37,7,4,153.8,1,0,0,1,0,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,4,9773,1,1,133.0,1,1,19,9,9,119.7,1,0,0,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,Graduate +1,17,5,9500,1,1,124.0,1,3,38,2,1,119.8,0,0,0,1,1,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,133.1,1,37,37,9,9,148.2,1,0,1,1,0,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,19,133.1,1,37,37,9,7,114.8,0,0,1,1,1,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,133.1,1,1,19,4,8,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,180.0,41,37,37,9,9,152.7,1,0,1,0,1,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9085,1,1,130.0,1,19,19,90,7,115.8,0,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,161.0,1,38,37,5,5,154.4,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,148.0,1,1,38,4,5,148.7,0,0,0,1,1,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,19,38,9,7,131.3,1,0,1,1,0,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,122.0,1,1,1,4,9,112.9,1,0,0,1,0,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,4,9500,1,1,142.0,1,38,38,9,8,129.8,1,0,0,1,0,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,Graduate +3,39,1,9003,1,1,170.0,1,1,37,6,6,170.0,0,0,1,1,0,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Enrolled +1,1,2,9147,1,1,130.0,1,37,37,9,9,117.8,0,0,0,1,0,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9147,1,1,140.0,1,37,37,9,7,132.3,1,0,0,1,0,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,132.0,1,2,1,9,9,126.4,1,1,0,1,0,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,140.0,1,1,3,9,2,140.0,1,0,0,1,0,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,19,4,4,109.3,0,0,0,1,1,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,176.0,1,3,38,3,7,169.7,0,0,0,1,0,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,133.1,1,37,38,7,7,98.0,1,0,0,1,1,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,136.0,1,3,3,2,2,128.7,0,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,12,38,4,9,107.0,1,0,0,1,0,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,Dropout +1,17,1,9130,1,1,156.0,1,2,9,3,5,166.9,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,Graduate +1,17,1,9130,1,1,123.0,1,19,3,3,2,121.6,1,0,1,1,0,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,129.0,1,1,1,9,9,124.8,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9119,1,1,125.0,1,19,1,5,4,121.5,1,0,0,1,1,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,Dropout +1,17,1,9085,1,1,163.0,14,37,37,9,9,150.8,1,0,0,1,0,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,Graduate +1,7,2,9130,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,135.0,1,1,2,9,1,134.3,1,0,0,1,0,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,19,37,6,6,120.0,0,0,0,1,0,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,1,130.0,1,37,37,9,7,133.0,1,0,0,1,0,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,143.0,1,1,19,4,6,135.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +4,43,2,9991,0,38,133.1,1,3,1,2,9,125.4,0,0,0,1,1,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,140.0,1,3,1,2,4,124.1,0,0,0,1,0,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,37,38,175,103,127.0,0,0,0,1,1,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,151.0,1,1,3,1,1,111.0,0,0,0,1,1,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,133.0,1,37,19,9,8,141.4,0,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,133.1,1,38,37,5,5,108.0,0,0,0,1,0,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,9147,1,1,118.0,1,3,19,2,4,113.8,1,0,0,1,0,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,1,1,3,5,141.7,0,0,0,1,0,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,42,1,9119,1,1,130.0,1,19,37,9,3,135.0,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,Dropout +4,39,2,9147,1,19,133.1,1,37,37,9,7,116.4,0,0,1,0,1,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,148.0,1,19,38,9,8,134.8,1,0,0,1,1,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,116.0,1,19,19,4,7,110.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,5,9147,1,1,122.0,1,38,38,9,9,117.5,1,0,1,0,0,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,122.0,1,37,37,9,9,125.9,1,0,0,1,1,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,171,1,1,127.0,1,1,1,9,5,124.2,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9147,1,39,117.4,1,19,1,4,9,117.4,1,0,0,1,0,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,150.0,1,37,38,9,9,146.2,0,0,0,1,0,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,Enrolled +1,17,1,9254,1,1,158.0,1,37,37,5,9,138.1,1,0,0,1,0,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,Dropout +1,7,1,9500,1,3,140.0,1,1,37,9,5,140.0,0,0,0,1,0,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,140.0,1,1,1,9,3,135.7,1,0,0,1,0,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +2,7,1,171,1,3,120.0,1,19,19,9,9,130.0,1,0,0,1,1,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,10,100.0,1,34,34,0,0,113.0,1,0,0,1,0,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,1,8014,0,1,125.0,1,37,37,9,7,114.9,0,0,0,1,0,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,Graduate +1,18,6,9500,1,1,124.0,1,37,37,9,7,117.8,0,0,0,1,0,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,109.0,1,2,3,3,3,111.8,1,0,1,1,1,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,149.0,1,1,1,9,3,156.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +2,44,1,9119,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,120.0,6,4,4,3,6,120.0,0,0,1,0,0,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,Dropout +5,1,3,9085,1,1,133.0,1,19,19,4,7,119.7,1,0,0,1,0,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9085,1,1,127.0,1,37,37,9,9,122.8,1,0,0,1,0,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,171,1,39,140.0,1,1,1,9,9,140.0,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9773,1,1,132.0,1,1,1,4,9,124.3,1,0,1,1,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +4,39,2,9670,1,19,133.1,1,19,1,90,90,103.0,0,0,0,0,1,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,26,1,9147,1,2,133.1,1,34,34,0,0,121.5,1,0,0,1,0,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,143.0,1,19,38,9,6,131.5,1,0,0,1,1,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,123.0,1,1,19,3,4,122.0,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,171,1,1,133.1,1,3,1,2,3,141.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,19,37,9,4,120.0,0,0,0,1,0,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,1,1,3,3,125.7,1,0,0,1,0,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,121.0,1,37,37,5,5,118.9,1,0,0,1,0,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,Graduate +1,51,1,9500,1,1,129.0,1,37,38,3,3,137.8,1,0,0,1,0,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,2,4,134.9,1,0,1,1,0,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9254,1,1,113.0,1,1,1,2,3,110.2,1,0,0,1,1,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,1,133.1,1,1,19,4,5,120.0,1,0,0,1,1,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,Dropout +1,39,1,9254,1,19,133.1,1,19,1,9,5,97.0,0,0,1,0,1,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9500,1,1,126.0,1,1,19,6,7,115.5,1,0,0,1,0,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,Graduate +1,42,1,9853,1,1,141.0,1,37,19,9,3,133.0,0,0,0,1,0,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,19,133.1,1,19,19,4,9,139.9,1,0,0,1,0,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,2,9254,1,1,140.0,1,19,19,9,9,126.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,108.0,1,34,38,0,3,105.9,0,0,0,1,1,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,114.0,1,19,19,9,7,107.7,0,0,0,1,0,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,130.0,1,3,1,9,9,126.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.1,1,19,37,0,0,137.0,1,0,0,1,0,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9119,1,1,117.0,1,1,2,3,2,119.8,1,0,0,1,1,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9147,1,1,115.0,1,1,37,4,9,117.1,1,0,1,1,0,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,130.0,1,12,19,4,5,118.5,0,1,0,1,0,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,34,37,5,5,120.4,0,0,0,0,0,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,171,1,39,150.0,1,19,1,9,9,154.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,43,1,9147,1,1,140.0,1,37,37,6,6,122.9,0,0,0,1,0,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,Dropout +1,42,1,9070,1,1,100.0,1,3,2,2,2,115.9,0,0,0,1,0,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,Enrolled +1,17,1,171,1,1,128.0,1,1,1,4,10,134.7,0,0,0,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,1,1,9,9,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,7,133.9,0,0,0,1,0,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Dropout +1,43,1,9773,1,1,119.0,1,19,37,5,5,105.0,1,0,0,1,0,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,Enrolled +2,43,1,9991,0,1,140.0,1,37,37,4,1,122.7,0,0,0,1,1,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,135.0,1,37,1,3,5,121.0,0,0,0,1,0,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,123.0,1,3,1,2,3,124.1,1,0,0,1,0,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9670,1,1,132.0,1,19,1,5,4,119.1,0,0,1,1,1,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,5,9254,1,1,130.0,1,37,38,9,9,122.7,1,0,1,1,1,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9147,1,1,117.0,1,1,38,8,9,117.0,1,0,0,1,1,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,140.0,1,19,19,9,6,135.4,1,0,0,1,0,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,162.0,1,37,37,9,6,132.0,0,0,1,1,1,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,139.0,1,19,38,4,9,128.5,1,0,0,1,0,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,Dropout +4,39,1,9991,0,1,130.0,1,38,19,9,7,148.0,0,0,0,1,0,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,43,1,9500,1,1,131.0,1,1,38,5,5,118.8,0,0,0,1,0,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,5,9238,1,1,126.0,1,38,1,9,5,125.7,1,0,0,1,0,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,53,1,9085,1,42,140.0,1,1,1,4,3,140.0,1,0,1,1,0,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,128.0,1,1,1,4,5,120.8,1,0,0,1,0,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,139.0,1,37,37,9,6,133.5,1,0,0,1,0,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,150.0,1,38,38,4,1,150.0,1,0,0,1,1,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,133.1,1,1,1,4,4,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9853,1,1,140.0,1,37,19,9,8,122.3,0,0,0,1,0,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,120.0,1,38,19,5,4,118.3,0,0,0,1,0,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,Enrolled +1,7,1,9130,1,3,140.0,1,2,38,2,3,140.0,1,0,0,0,1,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,122.0,1,9,19,90,6,103.4,0,0,0,1,0,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,Graduate +2,39,1,9070,1,19,133.1,1,37,37,9,10,126.3,0,0,0,0,1,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,160.0,1,38,38,7,7,147.8,0,0,0,1,0,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9238,1,12,100.0,1,37,37,9,9,124.3,0,0,0,1,1,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,Graduate +1,18,2,8014,0,1,117.0,1,3,1,3,4,111.8,1,0,0,1,0,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,38,37,7,7,140.0,0,0,0,1,1,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,Dropout +1,43,1,9853,1,1,140.0,1,3,1,3,3,128.3,1,0,0,1,0,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,127.0,1,37,38,9,9,120.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,1,161.0,1,19,37,4,10,100.0,0,0,0,1,1,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,Graduate +1,16,4,9500,1,1,145.0,1,1,1,4,4,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9853,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,Dropout +1,1,2,171,1,1,127.0,1,2,19,5,5,139.6,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,148.0,1,19,19,4,4,133.8,0,0,0,1,0,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,140.0,1,19,19,1,1,129.5,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,171,1,1,129.0,1,37,37,9,9,122.0,1,0,0,0,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,1,12,3,10,131.6,1,0,0,1,0,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,130.0,1,38,37,3,6,135.6,1,0,0,1,0,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,51,1,9991,0,39,120.0,1,1,4,4,10,118.1,0,0,0,1,1,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,39,1,9853,1,19,133.1,1,19,4,9,4,116.0,1,0,0,1,0,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9238,1,1,133.1,1,1,37,8,9,118.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,4,9500,1,1,125.0,1,19,1,1,1,117.8,1,0,0,1,0,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,141.0,1,1,38,4,5,125.0,1,0,0,1,0,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,121.0,1,38,38,7,5,120.0,1,0,0,1,0,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,Enrolled +1,17,3,9500,1,1,142.0,1,3,3,3,3,132.9,1,0,0,1,1,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,Dropout +1,44,1,9238,1,39,140.0,1,37,19,191,102,136.1,1,0,1,1,0,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9991,0,2,140.0,1,3,3,2,2,155.7,1,0,0,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9119,1,1,135.0,1,12,19,5,5,121.0,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,135.0,1,3,3,2,2,123.0,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,117.0,1,1,1,4,4,117.7,1,0,0,1,1,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,43,1,171,1,1,120.0,1,3,3,2,2,120.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,1,38,1,7,120.0,0,0,0,1,0,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,Graduate +1,17,3,9238,1,1,122.0,1,19,19,7,7,117.5,1,0,0,1,0,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,1,37,37,9,9,144.2,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +4,39,1,9500,1,1,140.0,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,131.0,1,19,19,9,9,139.8,1,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,127.0,1,3,3,2,5,100.0,0,0,0,1,0,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,39,1,9085,1,1,133.1,1,3,19,2,9,110.0,0,0,0,1,0,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,Dropout +4,39,1,9500,1,19,133.1,1,38,1,9,4,120.0,0,0,0,1,0,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,Graduate +1,16,1,9085,1,1,150.0,1,3,3,2,1,153.5,1,0,0,1,0,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,153.0,1,19,37,9,9,153.7,0,0,0,1,0,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,130.0,1,19,19,3,8,131.8,0,0,0,1,0,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,2,9853,1,1,131.0,1,1,1,2,9,121.9,1,0,0,1,0,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,136.0,1,3,3,3,3,130.8,0,0,0,1,0,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,126.0,1,1,19,4,0,120.1,0,1,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,1,120.0,1,3,2,2,6,120.0,1,0,0,1,1,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,Enrolled +2,39,1,9130,1,19,133.1,1,2,1,2,9,157.0,1,0,0,1,1,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,Graduate +1,7,1,9853,1,3,150.0,1,19,19,4,5,150.0,0,0,1,0,0,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,51,1,9070,1,12,133.1,1,37,19,3,7,106.6,0,0,1,1,0,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,Enrolled +1,1,2,9085,1,1,157.0,1,3,3,5,2,153.9,1,0,0,1,0,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,171,1,1,117.0,1,1,19,3,3,121.6,1,0,0,1,0,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,Graduate +1,1,2,9147,1,1,113.0,1,38,38,9,5,107.4,1,0,0,1,1,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,Enrolled +1,39,2,9147,1,12,133.1,1,19,38,9,9,120.0,1,0,1,0,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,152.0,1,37,37,9,9,139.0,1,0,0,1,0,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,138.0,1,1,19,9,9,124.0,0,0,0,1,0,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9853,1,1,110.0,1,37,37,9,9,95.5,0,0,1,0,0,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9130,1,1,150.0,1,19,19,4,4,130.0,0,0,0,0,1,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,3,9119,1,1,138.0,1,1,19,4,3,125.4,1,0,0,1,1,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,17,6,9147,1,1,120.0,1,37,38,9,9,115.5,1,0,1,0,1,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,Enrolled +1,1,3,9670,1,1,134.0,1,14,11,0,0,128.4,1,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,145.0,1,38,37,9,7,129.3,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,18,6,9500,1,1,126.0,1,37,37,5,5,122.8,1,0,0,1,0,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,133.0,1,1,1,4,4,129.2,1,0,0,1,0,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,Dropout +1,44,1,9070,1,39,120.0,1,1,19,4,7,120.0,0,0,1,0,1,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,136.0,1,19,38,9,9,121.7,0,1,0,1,0,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,126.0,1,1,1,9,10,126.7,1,0,0,1,0,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,Graduate +1,1,3,9085,1,1,134.0,1,38,19,9,5,129.1,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,133.1,1,1,37,9,9,117.0,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,5,9238,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,0,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,40,140.0,1,19,37,5,9,148.0,0,0,0,1,0,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,137.0,1,3,38,1,9,131.4,0,0,0,0,1,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,Dropout +1,1,2,9670,1,1,123.0,1,1,38,7,7,120.6,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,139.0,1,3,1,2,7,124.0,1,0,0,1,0,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,Dropout +1,1,2,171,1,1,152.0,1,38,19,9,9,151.7,1,0,0,1,0,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,110.0,1,37,37,9,4,114.3,1,0,0,1,1,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,Enrolled +1,51,1,9991,0,1,120.0,1,38,3,5,3,128.2,0,0,1,1,1,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,141.0,1,3,2,2,2,133.3,1,0,0,1,1,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,Enrolled +1,5,1,171,1,1,137.0,1,3,19,1,10,144.7,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,43,1,9003,1,1,130.0,1,37,1,5,4,130.0,0,0,0,1,1,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,Dropout +1,18,1,9773,1,1,135.0,1,1,1,3,3,129.8,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,38,38,9,8,150.0,1,0,0,1,1,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,Graduate +1,17,2,9773,1,1,150.0,1,1,1,4,5,130.8,0,0,0,1,1,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9773,1,1,123.0,1,1,1,4,7,125.1,1,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,4,9119,1,1,129.0,1,34,36,0,5,118.9,1,0,0,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,144.0,1,38,37,9,9,128.8,1,0,0,1,1,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,130.0,1,38,38,9,9,150.0,0,0,1,0,1,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,128.0,1,1,1,7,7,120.5,1,0,0,1,0,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,Enrolled +1,7,1,9500,1,3,140.0,1,3,1,4,4,140.0,0,0,0,1,0,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,134.0,1,19,19,1,1,120.4,1,0,0,1,1,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,147.0,1,1,38,4,8,141.1,1,0,0,1,0,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,126.0,1,3,1,5,5,125.7,0,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +2,1,4,9853,1,1,134.0,1,37,37,5,7,122.5,0,1,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,148.0,1,38,38,4,9,131.6,0,0,0,1,1,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,Dropout +2,39,1,9085,1,9,133.1,1,1,1,4,4,120.0,1,0,0,0,1,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,39,1,9254,1,1,150.0,1,3,1,3,4,122.3,0,0,0,1,1,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,125.0,1,19,37,3,7,126.8,0,0,0,1,0,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,Enrolled +1,18,1,9670,1,1,128.0,1,19,3,9,7,120.0,1,0,0,1,0,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,160.0,1,2,1,4,4,137.3,1,0,0,1,0,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,Graduate +2,39,1,9238,1,42,170.0,1,19,38,8,8,159.5,0,0,0,1,1,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9773,1,1,143.0,1,1,1,4,9,144.1,1,0,0,1,1,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,9991,0,1,130.0,1,37,37,9,9,127.8,0,0,0,1,1,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,51,1,9147,1,1,130.0,1,19,38,9,8,115.7,0,0,0,1,1,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,Enrolled +1,17,3,9773,1,1,135.0,1,1,19,5,7,135.0,0,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,135.0,1,1,1,9,9,133.3,0,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,136.0,1,1,1,4,5,123.3,0,0,0,0,0,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,143.0,1,5,5,2,2,137.8,0,0,0,1,1,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,133.1,1,1,19,141,114,140.0,1,0,0,1,0,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9670,1,1,117.0,1,38,19,0,1,114.6,0,0,0,0,1,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,133.1,1,1,19,4,10,145.8,0,0,0,1,1,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,129.0,1,1,37,4,9,118.2,0,0,0,1,1,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,7,1,9500,1,3,130.0,1,37,37,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,Graduate +1,17,4,9670,1,1,135.0,1,38,38,9,7,127.0,1,0,0,1,0,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,126.0,1,1,1,90,90,119.0,1,0,1,1,1,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9773,1,1,120.0,1,1,38,5,5,121.4,0,0,0,0,0,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,136.0,1,1,38,9,9,130.8,1,0,0,1,0,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,131.0,1,19,37,9,9,123.8,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,144.0,1,19,19,9,9,142.6,1,0,0,1,0,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,126.0,1,38,38,7,8,126.7,1,0,0,1,0,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,3,171,1,1,125.0,1,37,37,5,10,120.5,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,7,1,9130,1,2,110.0,1,19,19,4,8,110.0,1,0,0,1,1,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,3,1,2,8,150.0,0,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,5,171,1,1,139.0,1,19,3,9,2,136.9,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9147,1,1,100.0,1,38,38,5,5,101.8,1,0,0,1,0,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,Enrolled +1,44,2,9238,1,39,150.0,1,3,19,4,9,147.0,1,0,0,1,0,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,9,4,100.0,0,0,0,1,1,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9130,1,1,130.0,1,19,38,4,7,122.5,0,0,0,1,1,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,19,37,1,1,140.0,0,0,1,1,1,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,Enrolled +1,17,1,9070,1,1,157.0,1,3,3,3,3,146.2,0,0,0,1,1,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,150.0,1,37,19,8,4,130.8,0,0,0,1,1,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,133.1,1,19,19,7,7,130.0,1,0,0,1,0,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,150.0,1,19,1,9,8,150.0,1,0,0,1,1,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,127.0,1,1,19,7,7,121.8,1,0,0,1,0,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9853,1,1,148.0,1,19,19,5,7,141.7,0,0,0,1,0,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,130.0,1,1,19,9,9,133.4,0,0,0,1,0,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,123.0,1,37,38,3,3,122.0,0,0,1,1,1,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9070,1,1,132.0,1,37,38,9,7,138.0,0,0,0,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,146.0,1,2,19,3,9,130.3,1,0,0,1,1,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,Graduate +1,44,1,171,1,39,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,116.0,1,3,1,3,4,115.7,0,0,0,0,1,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9670,1,1,130.0,1,19,37,4,5,118.8,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,124.0,1,37,37,7,9,121.2,0,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,127.0,1,19,37,9,3,120.7,1,0,0,1,0,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +2,43,1,9070,1,2,140.0,1,37,37,6,6,140.0,1,0,0,1,1,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,Graduate +1,39,1,9500,1,1,100.0,1,3,1,2,5,121.3,1,0,0,1,0,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,Enrolled +1,39,1,9991,0,19,133.1,1,37,37,9,6,105.3,0,0,1,1,0,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,1,155.0,1,1,19,4,8,134.7,1,0,0,1,0,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,15,1,9119,1,1,160.0,32,1,3,143,152,160.0,0,0,1,1,0,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,Enrolled +1,53,1,9670,1,42,140.0,1,19,37,3,6,140.0,1,0,1,1,0,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9853,1,1,140.0,1,38,38,9,7,137.6,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,140.0,1,19,19,7,7,129.5,1,0,0,1,0,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,133.1,1,19,19,3,4,104.0,0,0,1,0,0,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,130.0,1,37,37,9,9,118.8,0,0,1,1,1,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,136.0,1,1,1,9,1,133.0,1,0,0,1,0,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,143.0,1,38,38,9,9,138.8,1,0,0,1,0,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,Graduate +2,39,1,9147,1,1,140.0,1,37,37,6,10,131.8,0,0,0,1,0,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,1,130.0,1,4,1,2,9,120.0,0,0,0,0,0,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,Enrolled +1,1,4,9500,1,1,148.0,1,19,19,4,5,137.0,1,0,0,1,0,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,120.0,1,37,19,5,3,156.0,1,0,0,1,1,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9853,1,1,133.1,1,12,1,4,0,134.8,1,0,0,1,0,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,122.0,1,1,1,9,8,120.3,0,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,156.0,1,19,38,9,5,170.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,129.0,1,38,37,9,3,127.3,1,0,1,0,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,142.0,1,38,38,9,10,127.0,1,0,0,1,0,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,150.0,1,38,19,3,3,120.1,0,0,0,0,0,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,141.0,1,37,37,9,9,126.7,1,0,1,1,0,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,43,3,9147,1,1,127.0,21,3,37,3,3,117.9,1,0,0,1,0,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,1,120.0,1,1,19,4,7,110.0,0,0,0,1,1,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,Dropout +2,42,1,9254,1,1,136.0,1,2,2,134,112,130.0,1,0,0,1,1,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,Dropout +1,18,1,9119,1,1,122.0,1,19,1,90,3,116.1,1,0,1,0,1,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9500,1,1,120.0,1,2,4,4,5,136.6,0,0,0,1,1,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,Dropout +1,18,1,9070,1,1,143.0,1,38,38,7,5,141.6,0,0,0,1,0,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,Graduate +1,43,1,9119,1,1,140.0,1,37,38,5,7,146.5,0,0,0,1,1,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,125.0,1,19,19,9,9,121.5,1,0,0,1,0,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,1,0,0,1,0,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,159.0,1,3,3,2,2,165.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,127.0,1,3,1,2,9,119.3,1,0,0,1,0,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,Graduate +1,17,6,9238,1,1,117.0,1,1,38,4,7,114.6,0,0,0,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9119,1,1,148.0,1,19,19,9,8,129.8,0,0,0,0,1,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,Enrolled +1,17,4,9119,1,1,127.0,1,19,19,5,5,120.4,1,0,1,0,1,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9500,1,1,144.0,1,19,1,5,3,141.0,1,0,0,1,0,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,Graduate +1,17,3,9556,1,1,126.0,1,19,19,9,4,119.0,1,0,0,1,0,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,Dropout +1,1,4,9119,1,1,126.0,1,3,19,2,9,123.6,1,0,0,1,1,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,120.0,1,1,2,144,123,125.3,0,0,1,1,1,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9070,1,1,130.0,1,1,19,4,4,110.0,1,0,0,1,0,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,37,37,90,5,115.5,0,0,0,0,1,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,130.0,1,38,38,9,9,120.0,0,0,0,1,0,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9853,1,1,141.0,1,3,1,1,5,130.2,1,0,0,1,0,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,Enrolled +2,1,1,9500,1,1,156.0,1,1,1,9,10,135.5,0,0,0,1,0,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,Graduate +2,7,1,8014,0,3,170.0,1,19,19,4,4,170.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9147,1,1,134.0,1,37,19,9,8,126.3,1,0,0,1,0,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,122.0,1,12,12,5,7,126.6,1,0,0,1,0,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,38,38,9,7,138.8,1,0,0,1,0,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,132.0,1,37,37,5,7,127.5,1,0,0,1,0,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,Graduate +1,16,2,9238,1,1,130.0,1,37,37,5,6,126.9,1,0,0,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,110.0,1,3,2,3,3,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,127.0,1,2,19,4,5,121.8,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,12,133.1,1,38,19,9,8,138.3,1,0,1,0,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9147,1,19,133.1,1,3,1,3,5,153.2,1,0,1,1,0,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,37,19,5,9,130.0,1,0,0,1,0,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,2,9147,1,1,130.0,1,19,37,4,7,140.0,0,0,0,1,1,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,128.0,1,19,19,7,7,124.4,0,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,19,3,8,150.3,1,0,0,1,1,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,143.0,1,38,19,7,9,129.5,1,0,0,1,0,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,6,141.0,1,37,1,9,4,145.0,0,0,0,1,0,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,Graduate +1,17,1,9238,1,1,160.0,1,19,37,6,6,144.3,0,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,2,9238,1,1,133.1,1,19,19,4,5,120.6,1,0,0,1,0,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,3,116.5,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,127.0,1,1,1,3,4,130.2,1,0,0,1,1,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9254,1,1,131.0,1,38,36,9,9,124.0,1,0,0,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,5,9254,1,1,120.0,1,37,37,9,7,127.0,1,0,0,1,0,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,135.0,1,34,34,0,0,134.1,1,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9254,1,1,133.1,1,37,37,9,6,121.5,0,0,0,1,1,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,144.0,1,38,38,5,7,128.0,1,0,0,1,0,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,132.0,1,1,19,6,6,124.7,1,0,0,1,1,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,Graduate +1,17,2,9991,0,1,116.0,1,37,19,9,4,118.5,0,0,0,1,1,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,133.1,1,1,1,9,1,103.0,1,0,0,1,0,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,16,5,9085,1,1,134.0,1,19,37,8,8,123.9,1,0,0,1,1,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9773,1,1,114.0,1,37,38,9,5,107.4,1,0,0,0,1,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,38,37,5,7,120.0,1,0,0,1,0,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,135.0,1,1,38,4,6,122.1,0,1,1,0,1,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,1,150.0,1,37,37,7,5,143.0,0,0,0,1,0,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,Graduate +1,44,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,Graduate +4,39,1,9238,1,19,133.1,1,37,37,9,10,103.5,0,0,0,0,0,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,126.0,1,19,38,9,9,132.0,1,0,0,1,0,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,125.0,1,1,1,7,3,143.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9147,1,1,120.0,1,37,1,9,1,122.7,0,0,0,0,0,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,7,1,8014,0,3,124.4,1,37,34,0,0,130.0,0,0,0,1,0,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,Graduate +1,18,1,9085,1,1,106.0,1,1,19,3,5,104.6,0,0,0,0,1,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,Enrolled +1,44,1,9119,1,39,160.0,1,3,38,2,3,160.0,0,0,1,0,1,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,148.0,1,3,19,2,5,130.0,0,0,0,1,0,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,Enrolled +1,1,1,9130,1,1,133.0,1,1,37,9,9,123.2,1,0,0,1,0,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9500,1,1,130.0,1,19,1,9,4,128.8,1,0,0,1,0,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,149.0,1,19,1,9,9,137.8,1,0,0,1,1,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,Graduate +4,43,1,9670,1,1,150.0,1,37,37,9,6,110.0,0,0,0,1,0,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,Graduate +2,39,1,9119,1,1,110.0,1,19,19,0,5,137.0,0,0,1,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9556,1,1,122.0,1,19,19,3,10,113.3,1,0,0,1,0,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,140.0,1,1,19,4,5,127.5,0,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,128.0,1,37,37,5,5,124.5,1,0,0,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,39,150.0,6,5,4,1,1,150.0,0,0,0,1,0,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,131.0,1,38,37,7,7,127.2,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,130.0,1,37,37,9,6,126.5,1,0,0,1,0,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,116.0,1,19,37,90,5,116.7,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,Dropout +1,17,3,9853,1,1,140.0,1,38,38,5,7,126.7,1,0,0,1,0,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,4,9238,1,1,129.0,1,37,37,9,8,117.1,1,0,0,1,1,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,144.0,1,19,19,9,9,130.5,1,0,0,1,0,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,124.0,1,19,1,7,10,116.0,1,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,122.0,1,1,19,4,4,127.3,1,0,1,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,12,12,4,1,155.3,1,1,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +2,15,1,9773,1,1,133.1,41,37,37,9,6,100.0,0,0,0,1,0,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,138.0,41,1,1,9,9,126.5,1,0,0,1,0,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,Graduate +1,18,6,9500,1,1,142.0,1,38,37,9,5,128.0,1,0,0,0,0,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,3,1,2,3,140.0,1,0,0,1,0,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,Enrolled +1,42,1,9991,0,1,150.0,1,19,19,5,5,113.7,0,0,0,1,1,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,135.0,1,1,19,5,5,130.1,1,0,0,1,0,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9254,1,1,120.0,1,19,1,9,8,117.2,0,0,0,1,1,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,130.0,1,19,19,9,7,119.5,1,0,0,1,1,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,133.0,1,1,1,4,5,136.2,1,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,15,1,9147,1,1,133.1,21,1,3,192,3,100.0,0,0,1,1,1,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9670,1,1,112.0,1,37,1,7,0,110.6,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9238,1,1,117.0,1,19,19,9,9,117.0,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9991,0,1,140.0,1,1,37,9,8,154.5,0,0,0,1,0,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,97.0,1,0,0,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,119.0,1,37,37,5,4,118.0,1,0,0,1,1,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,112.0,1,19,38,5,7,107.1,1,0,0,1,0,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +2,18,2,8014,0,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,144.0,1,37,37,9,6,129.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,120.0,100,1,1,4,7,119.5,0,0,1,1,0,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,136.0,1,19,38,5,8,130.3,1,0,0,1,0,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,7,9,121.3,1,0,0,1,0,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,135.0,1,1,4,5,3,124.9,0,0,0,1,0,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,4,9670,1,1,128.0,1,38,38,3,7,121.0,1,0,0,1,0,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,15,1,9556,1,1,114.0,26,3,19,122,144,114.0,0,0,0,1,0,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9238,1,1,125.0,1,19,19,3,3,118.0,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,118.0,1,37,37,7,7,114.2,0,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,Enrolled +1,17,1,9147,1,1,115.0,1,19,37,5,7,112.9,1,0,0,0,1,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,120.0,1,19,37,9,9,118.3,0,0,1,0,1,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9119,1,10,133.1,1,34,37,0,0,128.8,1,0,0,1,1,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,115.0,1,19,38,5,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,137.0,1,37,37,9,9,132.8,1,0,0,1,0,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9003,1,1,148.0,1,19,37,9,9,131.6,1,0,0,1,1,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9773,1,1,161.0,1,1,19,4,7,148.4,0,0,0,1,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,43,1,9991,0,1,133.1,1,37,37,9,7,113.5,0,0,0,1,0,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,132.0,1,1,1,9,9,133.8,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9254,1,1,125.0,1,37,37,9,9,122.9,0,0,0,1,1,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,123.0,1,3,1,9,3,121.3,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,Enrolled +1,17,1,9991,0,1,154.0,1,38,38,4,5,134.1,0,0,0,1,0,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,Enrolled +1,44,1,9130,1,39,140.0,1,19,19,5,5,140.0,1,0,1,0,0,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,Enrolled +1,53,1,9085,1,42,170.0,1,1,19,4,7,170.0,0,0,0,1,0,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,Graduate +1,17,5,9147,1,1,131.0,1,19,38,3,10,119.8,1,0,0,1,0,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,141.0,1,19,19,9,9,126.0,1,0,0,1,0,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,Graduate +1,1,3,9500,1,1,137.0,1,19,19,5,4,131.5,1,0,0,1,0,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,118.0,1,19,1,9,3,113.5,1,0,1,1,0,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,100.0,1,37,37,99,99,100.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9130,1,1,120.0,6,1,3,9,2,120.0,0,0,1,1,0,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,127.0,1,19,19,5,5,129.8,1,0,0,1,0,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,134.0,1,37,37,9,9,129.8,1,0,0,1,0,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,121.0,1,37,37,5,9,116.5,1,0,0,1,0,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9070,1,1,117.0,1,19,37,5,5,131.0,1,0,1,0,1,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,125.0,1,1,38,9,7,119.8,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,5,9500,1,1,140.0,1,1,1,4,3,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,1,5,9254,1,1,101.0,1,3,19,3,9,98.9,1,0,0,1,1,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,130.0,1,37,38,7,9,117.8,0,0,1,1,0,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,128.0,1,34,19,3,0,141.0,1,0,0,0,0,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,150.0,1,38,37,9,9,130.8,0,0,0,1,1,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,125.0,1,1,19,4,7,116.6,0,0,0,1,1,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,Graduate +1,43,1,9670,1,1,130.0,1,34,34,0,0,114.8,0,0,0,1,1,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,Graduate +2,42,1,9003,1,1,120.0,1,3,1,2,2,113.3,0,0,0,1,1,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +4,39,1,9991,0,1,133.1,1,37,37,5,5,138.7,0,0,0,1,0,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,Dropout +1,39,1,9238,1,1,140.0,1,34,34,0,0,114.0,1,0,0,0,0,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9991,0,1,133.1,1,37,19,3,10,136.1,0,0,0,1,1,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9070,1,1,110.0,1,37,37,7,7,110.2,0,0,0,1,1,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,150.0,1,4,5,4,2,150.0,0,0,0,1,1,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,Enrolled +1,1,2,9119,1,1,149.0,1,38,38,5,5,141.0,0,0,0,1,1,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,Enrolled +1,42,1,9085,1,39,150.0,1,1,1,4,7,150.0,1,0,0,1,0,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,1,38,4,9,131.7,1,0,0,1,0,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,42,1,9853,1,1,120.0,1,1,37,5,5,113.9,1,0,0,1,0,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9085,1,1,130.0,1,37,19,9,7,130.0,1,0,0,1,0,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,Enrolled +1,17,4,9500,1,1,133.0,1,38,37,5,7,126.4,1,0,0,1,1,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,147.0,1,3,1,2,3,131.6,0,0,0,1,0,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,12,133.1,1,37,37,9,9,121.5,0,0,0,1,1,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,1,1,9991,0,1,150.0,1,37,37,9,9,131.8,0,0,0,0,0,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,43,4,8014,0,1,116.0,1,34,34,0,0,116.2,0,0,0,1,1,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,7,140.0,0,0,0,1,1,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9773,1,1,136.0,1,3,1,2,3,132.5,1,0,0,1,0,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,19,110.0,1,37,38,5,5,151.0,0,0,1,0,1,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,19,19,5,5,113.2,1,0,1,1,0,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,137.0,1,3,19,2,9,122.3,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +4,39,1,9254,1,1,120.0,1,37,19,9,9,131.0,1,0,0,1,1,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9556,1,1,123.0,1,19,19,4,9,113.8,1,0,0,1,0,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,150.0,1,3,37,4,7,139.5,0,0,0,1,1,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,145.0,1,38,37,3,9,138.4,1,0,0,0,0,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,39,1,8014,0,1,140.0,1,37,37,9,7,122.0,1,0,1,0,1,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,3,9991,0,1,120.0,1,37,37,9,9,128.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,6,9500,1,1,126.0,1,12,37,5,9,121.8,1,0,0,1,0,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,Dropout +2,39,1,9991,0,1,130.0,1,37,37,9,9,140.0,1,0,0,1,1,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,130.0,1,37,19,9,8,130.8,0,0,0,1,1,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,Enrolled +1,1,3,9070,1,1,125.0,1,19,38,9,9,125.4,1,0,0,1,0,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,132.0,1,38,38,4,9,119.1,0,0,0,1,0,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,Graduate +4,7,1,9147,1,3,130.0,1,19,1,5,5,130.0,0,0,0,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,130.0,1,19,19,7,7,121.6,1,0,0,1,0,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9773,1,1,126.0,1,37,38,5,5,129.5,1,0,1,0,0,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,133.0,1,38,38,5,5,123.2,0,0,0,1,0,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,140.0,1,37,37,9,9,121.0,0,0,0,1,0,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,3,9500,1,1,131.0,1,37,37,9,9,118.0,1,0,0,1,0,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,120.0,1,38,19,4,8,115.1,0,0,0,1,0,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,Enrolled +1,17,5,9773,1,1,111.0,1,19,12,7,3,115.9,1,0,0,1,0,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,135.0,1,1,19,9,7,123.5,1,0,0,1,0,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,37,4,9,130.0,1,0,0,1,0,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,Enrolled +1,44,1,9119,1,39,130.0,1,3,19,3,4,130.0,0,0,0,1,1,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,Enrolled +1,44,1,9147,1,39,130.0,22,2,37,2,8,130.0,0,0,1,0,1,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,119.0,1,37,37,9,6,119.0,0,0,1,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9500,1,1,142.0,1,38,37,9,8,130.8,1,0,0,1,0,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,136.0,1,38,1,9,4,129.7,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,140.0,1,19,19,4,4,140.0,1,0,0,1,1,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,19,133.1,1,1,19,4,10,114.0,0,0,0,1,1,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +1,17,5,9670,1,1,125.0,1,19,30,7,7,118.4,1,0,0,1,0,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,135.0,1,19,19,9,10,122.9,1,0,0,1,0,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,100.0,1,37,37,9,9,108.0,1,0,0,1,1,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,127.0,1,37,37,9,9,119.3,1,1,0,1,1,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,133.0,1,38,19,9,10,125.0,1,0,0,1,0,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,116.0,1,3,3,3,3,110.1,1,0,0,1,1,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,133.1,1,1,1,5,8,123.0,1,0,0,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,144.0,1,37,37,9,3,150.5,0,0,0,1,0,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,3,1,2,4,130.2,0,0,0,1,1,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,116.0,1,38,37,9,6,109.7,1,0,0,1,0,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,Graduate +1,18,3,9853,1,1,128.0,1,38,37,5,9,116.8,1,0,0,0,1,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,150.0,1,37,37,4,9,132.1,1,0,1,1,0,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,160.0,1,1,19,4,6,155.7,1,0,0,1,0,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,130.0,1,19,1,9,9,131.9,0,0,0,1,0,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,126.0,1,3,3,2,2,121.1,0,0,1,1,0,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,38,38,7,7,147.0,0,0,0,1,0,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,137.0,1,37,37,9,9,126.2,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,38,37,5,5,137.1,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,143.0,1,2,37,1,1,133.2,1,0,0,1,0,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,Enrolled +1,17,5,9070,1,1,122.0,1,19,38,5,7,119.6,0,0,1,0,0,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,137.0,1,19,38,9,9,127.2,1,0,0,1,0,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,110.0,1,1,1,4,4,125.9,0,0,0,1,1,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,130.0,1,1,38,5,9,118.1,0,0,1,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9853,1,1,130.0,1,37,19,9,5,102.5,0,0,0,1,0,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.0,1,19,1,9,1,122.2,0,0,0,1,0,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,39,140.0,1,3,3,2,2,140.0,1,0,0,1,0,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,134.0,1,37,38,9,9,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,1,1,37,4,7,110.0,0,0,0,1,1,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,Dropout +1,15,1,9085,1,1,133.1,41,3,3,4,2,101.3,0,0,0,1,0,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,113.0,1,1,1,5,4,106.7,1,0,1,1,0,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,Dropout +2,39,1,9991,0,19,133.1,1,37,37,5,5,111.9,1,0,0,1,1,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9853,1,1,134.0,1,19,38,4,8,122.1,1,0,0,1,0,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9853,1,1,133.0,1,19,37,4,9,130.2,1,0,0,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,127.0,1,19,19,5,5,160.0,0,0,0,1,1,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,Graduate +1,7,1,9500,1,3,130.0,1,37,38,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,140.0,1,19,38,7,7,136.5,1,0,0,1,0,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,Graduate +2,39,1,9773,1,19,133.1,1,37,37,9,6,110.0,0,0,0,0,0,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,Dropout +2,39,1,8014,0,1,120.0,1,34,34,99,99,101.8,0,0,0,0,0,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,135.0,1,1,1,4,7,129.8,1,0,0,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,131.0,1,37,38,5,5,128.9,0,0,0,1,0,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,Graduate +1,1,4,9070,1,1,139.0,1,3,19,1,5,138.3,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9500,1,1,122.0,1,1,1,3,7,114.3,1,0,0,1,1,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,150.0,1,37,37,9,7,136.5,1,0,0,1,0,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,3,1,2,8,121.4,0,0,0,1,1,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,117.0,1,19,19,194,193,117.4,1,0,0,1,0,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,Enrolled +2,39,1,9085,1,1,133.1,1,36,36,99,5,128.2,0,0,0,0,0,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,121.0,1,3,1,2,3,114.0,0,0,0,1,1,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,Enrolled +1,51,1,9853,1,1,139.0,1,1,1,4,10,134.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9070,1,1,137.0,1,1,1,3,1,141.2,1,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,133.1,1,37,37,6,3,140.0,0,0,1,1,1,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,1,9147,1,1,126.0,1,37,37,4,7,116.9,0,0,0,1,1,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,44,1,9130,1,39,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,1,9991,0,1,130.0,1,37,37,9,9,128.2,0,0,0,1,0,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,131.0,1,19,9,5,3,118.4,0,0,0,1,0,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,138.0,1,19,19,3,3,131.0,1,0,0,1,0,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,1,130.0,1,37,12,9,8,129.4,1,0,1,0,1,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,9991,0,1,134.0,1,37,37,9,9,113.7,0,0,0,1,0,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9853,1,1,117.0,1,38,38,9,7,114.6,1,0,0,1,0,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,145.0,1,3,3,4,4,153.1,1,0,0,1,0,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9085,1,1,130.0,1,19,38,4,9,130.0,1,0,0,0,0,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9119,1,1,146.0,1,37,37,9,9,148.5,1,0,0,1,1,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,136.0,1,1,1,4,4,124.1,0,0,0,1,0,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,100.0,1,37,38,9,4,140.0,0,0,0,1,1,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,Enrolled +1,44,1,9003,1,39,180.0,1,1,3,4,2,180.0,0,0,0,1,0,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,Graduate +1,15,1,9773,1,1,120.0,26,19,19,4,5,120.0,1,0,0,1,0,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,141.0,1,4,19,4,10,100.0,0,0,0,1,1,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,1,150.0,1,29,10,6,6,150.0,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,5,9254,1,1,122.0,1,1,37,9,7,119.6,1,0,0,1,0,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,128.0,1,19,38,9,7,124.2,1,0,0,1,1,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9130,1,1,172.0,1,19,19,9,9,163.3,1,0,0,1,0,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,129.0,1,38,37,5,5,142.0,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,100.0,1,1,3,9,10,120.0,0,0,1,0,1,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,Graduate +1,1,3,9238,1,1,135.0,1,1,12,9,10,121.0,1,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,136.0,1,2,2,3,3,120.0,1,0,0,1,1,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,6,9147,1,1,143.0,1,38,37,9,9,128.7,1,0,0,1,1,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9500,1,1,126.0,1,37,37,7,7,126.2,1,0,0,1,0,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,135.0,1,19,19,4,3,135.0,1,0,0,1,1,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,Enrolled +1,1,2,9254,1,1,132.0,1,1,19,9,9,129.9,1,0,0,1,0,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,120.0,1,34,34,0,0,104.0,0,0,0,1,0,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,9,133.1,1,37,37,8,10,100.0,1,0,0,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,43,1,9147,1,1,130.0,1,19,37,7,10,138.0,0,0,0,1,0,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,Graduate +1,17,2,9119,1,1,120.0,1,1,19,9,8,117.2,0,0,0,1,1,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,133.1,1,1,12,4,5,116.5,0,0,0,1,1,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,105.0,1,19,19,6,6,106.1,1,0,0,1,0,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,118.0,1,1,19,4,8,118.7,0,0,0,1,1,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,6,9500,1,1,140.0,1,3,19,3,8,129.0,1,0,0,1,0,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,168.0,1,19,19,4,4,171.2,0,0,0,1,1,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,133.0,1,19,9,0,0,121.5,1,0,0,1,0,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,177.0,1,1,38,3,9,162.3,0,0,0,1,0,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,130.0,1,38,38,2,9,124.8,0,0,0,1,0,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,136.0,1,38,1,5,6,133.9,1,0,0,1,0,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,154.0,1,1,1,5,3,144.9,0,0,0,1,1,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,Graduate +1,44,1,9119,1,39,150.0,1,19,37,9,9,150.0,1,0,1,1,1,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,Dropout +1,1,4,9254,1,1,132.0,1,12,19,9,9,124.7,1,0,0,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,33,1,1,100.0,41,38,37,9,8,100.0,0,0,1,0,1,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,120.0,1,4,1,2,9,113.4,0,0,0,1,0,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,134.0,1,1,19,9,9,136.1,1,0,0,1,0,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9500,1,1,150.0,1,1,19,5,3,140.0,0,1,0,1,0,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,129.0,1,37,37,9,9,128.8,1,0,0,1,0,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +2,39,1,9500,1,1,100.0,1,37,38,4,4,130.0,0,0,0,1,1,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,Enrolled +1,1,1,9773,1,1,140.0,1,19,37,9,6,135.8,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,40,150.0,1,19,19,9,5,150.0,0,0,1,0,0,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,148.0,1,1,37,4,8,132.0,1,0,0,1,0,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,Graduate +1,7,1,9119,1,40,140.0,1,3,1,2,5,140.0,0,0,0,1,1,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,163.0,1,19,1,9,7,143.1,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,3,9070,1,1,164.0,1,1,1,5,3,161.2,1,0,0,1,0,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,Graduate +1,1,6,9773,1,1,141.0,1,30,37,7,7,128.4,1,0,1,0,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,Dropout +1,43,2,9147,1,1,126.0,1,1,19,3,3,100.0,1,0,0,1,1,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,141.0,1,19,19,5,10,135.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,4,9670,1,1,117.0,1,3,3,4,4,113.2,0,0,0,1,1,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +2,43,1,9991,0,3,140.0,1,37,19,9,4,140.0,0,0,1,1,0,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,134.3,0,0,0,1,1,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,137.0,1,38,19,9,7,125.1,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,6,134.0,0,0,0,1,0,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,123.0,1,37,37,7,7,119.7,0,0,0,1,1,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9147,1,1,120.0,1,37,37,9,9,104.7,1,0,0,1,1,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,137.0,62,1,1,9,9,129.3,0,0,0,1,0,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,8014,0,1,122.0,1,37,19,9,9,123.8,0,0,0,1,0,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,Graduate +2,39,2,8014,0,1,100.0,1,34,34,0,0,100.0,1,0,0,1,0,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,Graduate +2,1,1,9991,0,2,120.0,1,37,37,6,3,129.2,0,0,0,1,0,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,150.0,1,3,19,2,6,150.0,0,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9991,0,1,123.0,1,1,3,4,2,113.2,0,0,0,0,1,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,Dropout +1,1,3,9773,1,1,130.0,1,1,37,4,5,120.9,1,0,1,1,0,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,146.0,1,19,3,4,9,127.0,0,0,0,1,1,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,160.0,1,19,38,9,9,160.0,1,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9085,1,39,150.0,1,38,37,6,6,150.0,1,0,0,1,0,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,136.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,150.0,1,37,19,9,4,135.6,0,0,0,1,0,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,6,171,1,1,134.0,1,19,37,5,5,126.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +4,39,1,9773,1,38,133.1,1,19,19,7,9,133.0,0,0,0,1,0,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,Enrolled +1,17,2,9119,1,1,120.0,1,10,12,9,9,120.4,1,0,0,1,1,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,4,9254,1,1,113.0,1,38,19,7,7,107.4,1,0,0,1,0,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,137.0,1,1,19,4,5,136.3,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,142.0,1,37,37,9,7,132.7,1,0,0,1,0,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,Graduate +1,18,5,9085,1,1,121.0,1,5,3,2,3,111.9,1,0,0,1,0,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,9,133.1,1,34,36,0,90,107.5,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,19,133.1,1,19,37,6,8,149.5,0,0,0,1,1,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9147,1,1,120.0,1,1,37,4,9,113.4,1,0,0,1,1,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,130.0,1,37,38,9,5,130.5,1,0,0,1,0,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,153.0,1,1,19,9,10,147.8,0,0,0,1,0,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,159.0,1,3,1,4,4,162.2,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,122.0,1,37,37,5,6,114.3,0,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,2,9556,1,19,133.1,1,37,37,3,7,117.8,0,0,0,1,0,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,132.0,1,38,1,9,9,124.3,1,0,0,1,0,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,141.0,1,19,19,9,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,Graduate +1,17,1,9500,1,1,152.0,1,19,19,4,9,132.5,0,0,0,1,1,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,Graduate +1,17,1,9991,0,40,127.0,1,37,37,6,6,124.9,0,0,0,1,0,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,133.1,1,1,19,4,6,106.0,1,0,0,1,0,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,19,37,4,7,150.0,1,0,0,1,0,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9254,1,1,125.0,1,1,1,191,193,114.5,0,0,0,1,1,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,134.0,1,19,19,4,7,131.0,1,0,0,1,1,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,134.0,1,19,19,9,9,125.8,1,0,0,1,0,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,Graduate +1,17,1,171,1,1,125.0,1,37,37,7,9,134.1,1,0,0,1,1,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,Dropout +1,51,1,9254,1,1,120.0,1,38,38,9,9,118.0,0,0,0,1,0,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,155.0,1,1,1,4,3,140.5,1,0,0,1,0,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,125.0,1,1,1,4,90,125.4,1,0,0,1,1,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,1,5,5,126.3,0,0,0,1,1,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,Graduate +1,39,1,9147,1,1,140.0,1,37,3,9,2,135.1,0,0,0,1,1,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,171,1,1,122.0,1,19,12,5,9,127.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,2,9670,1,1,150.0,1,34,34,0,0,107.0,1,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,3,130.0,1,19,19,3,9,130.0,0,0,0,0,1,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,Dropout +1,39,1,33,1,1,133.1,1,19,37,9,9,96.1,0,0,0,1,1,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,Dropout +2,42,1,9500,1,2,130.0,1,37,37,9,9,130.0,0,0,0,1,0,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,Graduate +1,18,1,9238,1,1,137.0,1,19,38,5,8,137.4,1,0,0,1,0,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9254,1,1,140.0,1,19,1,9,8,140.9,1,0,0,1,0,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,132.0,1,1,2,9,3,128.2,1,0,0,1,0,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9085,1,1,126.0,1,1,3,5,5,123.9,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,19,133.1,1,37,37,9,7,106.5,0,0,0,1,0,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,132.0,1,37,19,7,7,132.4,1,0,0,1,0,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,139.0,1,37,38,9,9,126.1,0,0,0,1,0,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,136.0,1,19,38,9,9,123.0,1,0,0,1,0,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,1,140.0,1,0,0,1,1,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,123.0,1,19,19,9,8,134.0,0,0,0,1,0,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,130.0,1,38,19,9,4,118.4,0,0,1,1,0,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,126.0,1,1,1,9,9,116.2,0,0,1,0,1,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,19,1,7,10,105.0,0,0,0,1,1,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,Dropout +1,17,1,9119,1,1,130.0,1,19,19,7,9,121.3,1,0,0,1,1,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,Dropout +1,43,1,9500,1,19,133.1,1,34,34,0,0,110.0,1,0,0,1,1,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,Dropout +1,1,3,9070,1,1,139.0,1,1,38,4,7,142.2,1,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,142.0,1,38,1,5,4,136.6,0,0,0,1,0,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,Graduate +1,17,2,9670,1,1,128.0,1,37,38,5,8,121.7,0,0,0,1,1,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,140.0,1,1,3,9,4,140.0,0,0,1,0,0,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,125.0,1,19,19,9,10,122.0,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,8014,0,1,130.0,1,37,37,9,8,103.5,0,0,0,1,0,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,3,9085,1,1,117.0,1,19,38,5,7,111.1,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,42,1,9085,1,39,140.0,1,19,3,9,1,159.9,1,0,0,1,0,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9254,1,1,112.0,1,37,37,6,6,106.1,1,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9070,1,1,117.0,1,5,1,2,10,120.0,1,0,0,1,0,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,Enrolled +1,7,1,9556,1,2,130.0,1,37,37,9,9,130.0,1,0,0,1,0,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,40,140.0,1,1,19,9,9,139.0,0,0,0,1,0,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,10,130.0,0,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,9070,1,1,135.0,1,3,1,3,5,121.8,0,0,0,1,0,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,135.0,1,19,3,9,4,121.5,1,0,0,1,0,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,136.0,1,19,38,4,8,125.5,1,0,0,1,0,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,37,4,8,132.4,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,142.0,1,34,38,4,7,127.3,0,0,0,1,0,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,15,1,9147,1,1,130.0,26,1,1,2,3,130.0,0,0,0,1,0,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,17,2,8014,0,1,133.0,1,19,1,5,5,119.7,1,0,0,1,0,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,6,133.1,1,1,1,90,3,107.0,1,0,0,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,130.0,1,1,1,4,5,123.8,0,0,0,1,0,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9670,1,1,130.0,1,38,37,5,5,123.4,1,0,0,1,0,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,130.0,1,37,36,4,90,127.6,0,0,0,1,1,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +2,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,Enrolled +1,1,5,9070,1,1,122.0,1,37,37,9,9,124.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,3,120.0,1,37,37,9,9,141.0,0,0,0,1,0,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,Dropout +1,43,1,33,1,1,134.0,1,37,37,1,1,100.0,1,0,0,1,1,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9773,1,1,125.0,1,19,37,9,5,122.2,0,0,0,0,0,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,113.4,0,0,0,1,0,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,142.0,1,19,39,5,4,141.7,0,0,0,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,137.0,1,1,38,5,8,125.8,0,0,0,0,0,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,141.0,1,1,37,4,3,126.8,1,0,0,1,0,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Graduate +1,17,4,9500,1,1,133.0,1,4,4,4,4,130.7,1,0,0,1,0,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,Graduate +1,1,2,9500,1,1,119.0,1,1,1,4,4,115.2,1,0,0,1,0,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,128.0,1,1,1,4,10,118.9,1,0,0,1,0,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,130.0,1,37,38,7,8,119.3,1,0,0,1,0,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,148.0,1,3,1,4,5,132.8,0,0,0,1,0,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,143.0,1,37,19,4,4,123.3,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9147,1,1,130.0,1,34,34,99,99,109.8,1,0,0,0,1,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9085,1,2,140.0,1,38,38,9,10,150.0,0,0,0,1,1,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9670,1,42,110.0,1,1,19,9,9,114.2,0,0,0,1,1,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,Graduate +1,53,1,9147,1,42,140.0,1,3,4,2,1,140.2,0,0,0,1,0,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,145.0,1,19,38,9,7,136.3,1,0,0,1,0,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,38,37,9,9,154.4,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,127.0,1,38,38,9,6,122.8,0,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,120.2,1,0,0,1,1,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,124.0,1,3,1,2,5,121.6,0,0,0,1,0,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Enrolled +1,17,5,9853,1,1,132.0,1,37,38,5,6,119.1,1,0,0,1,0,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,Graduate +1,17,6,9670,1,1,110.0,1,1,19,4,10,111.3,0,0,0,1,1,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,120.0,1,38,37,9,9,114.8,1,1,0,1,0,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,140.0,1,19,19,9,3,130.0,0,0,0,1,1,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9254,1,1,120.0,1,37,37,9,9,115.1,1,0,0,0,1,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,142.0,1,1,37,5,7,128.0,0,0,0,1,0,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,168.0,1,37,1,9,4,133.4,1,0,0,1,0,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,Graduate +1,43,4,9085,1,1,133.1,1,34,34,99,99,125.2,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9147,1,1,123.0,1,1,1,9,7,117.4,1,0,0,1,0,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,Graduate +1,1,6,9119,1,1,135.0,1,2,1,3,5,123.5,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,Enrolled +1,17,2,9254,1,1,118.0,22,19,37,9,9,110.3,1,0,0,0,0,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,126.0,1,1,19,4,4,116.9,0,0,0,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,117.0,1,1,38,3,9,109.3,0,0,1,0,0,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,133.1,1,37,37,9,8,113.0,0,0,0,1,0,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,Graduate +2,42,1,9991,0,6,123.0,1,37,37,9,9,123.0,0,0,0,1,1,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9003,1,1,100.0,1,37,37,9,5,110.0,0,0,0,1,0,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,127.0,1,37,38,9,5,131.2,1,0,0,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,110.0,1,37,37,9,7,112.5,1,0,0,1,0,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,126.0,1,19,37,7,5,119.4,0,0,0,1,0,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,121.0,1,1,1,4,3,120.5,1,0,0,1,0,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,134.0,1,1,1,3,3,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,3,9500,1,1,150.0,1,19,38,1,1,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,5,9119,1,1,124.0,11,4,12,2,9,119.5,1,0,0,1,1,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,117.0,1,19,1,4,7,112.1,0,0,0,1,0,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,Enrolled +1,1,5,9500,1,1,132.0,1,37,37,7,7,120.3,1,0,0,1,0,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,1,110.0,1,37,37,90,5,150.0,1,0,0,1,1,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9773,1,1,130.0,1,38,37,5,3,122.3,1,0,1,0,0,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9556,1,1,118.0,1,19,38,9,9,116.3,1,0,0,1,0,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,120.0,1,3,3,3,3,111.6,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,131.0,1,37,19,9,9,134.5,1,0,0,1,1,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Enrolled +1,17,2,9556,1,1,133.1,1,37,38,9,8,106.0,1,0,0,1,0,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,2,110.0,1,37,37,9,9,112.9,0,0,0,1,0,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,2,9773,1,1,126.0,1,19,38,9,8,118.7,1,0,0,1,0,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,140.0,1,1,1,3,3,127.6,1,0,0,1,0,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,163.0,1,19,1,5,10,146.6,1,0,1,1,0,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,39,151.0,1,19,37,4,7,151.0,0,0,1,1,0,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,165.0,1,19,37,5,5,142.3,0,0,0,1,0,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9773,1,19,133.1,1,19,1,7,9,115.0,1,0,1,0,1,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,Dropout +1,1,2,9556,1,1,130.0,1,1,38,3,8,119.5,1,0,0,1,0,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,Graduate +1,17,3,171,1,1,125.0,1,3,39,2,5,117.0,1,1,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9147,1,1,133.0,1,19,1,5,10,121.8,0,0,0,1,1,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9119,1,1,131.0,1,1,3,9,10,123.7,1,0,0,1,1,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,148.0,1,37,38,9,8,133.0,1,0,0,1,0,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9254,1,1,120.0,1,3,19,3,9,114.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9773,1,1,114.0,1,1,1,9,9,111.6,1,0,0,1,0,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,115.0,1,38,1,9,8,118.5,0,0,0,1,1,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,2,5,127.0,0,0,0,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,117.0,1,1,1,4,7,109.3,1,0,0,1,0,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,9,9,138.2,0,0,1,0,0,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,125.0,1,1,1,3,3,114.5,0,0,0,1,1,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,44,1,9147,1,39,130.0,1,19,1,9,3,130.0,0,0,0,1,0,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,145.0,1,38,19,4,9,127.9,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,128.0,1,37,37,9,8,124.3,1,0,0,1,0,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,Graduate +1,18,3,9070,1,1,138.0,1,38,37,9,7,125.1,1,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,5,9119,1,1,131.0,1,19,37,9,7,123.3,1,0,0,1,1,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,130.0,1,37,19,9,8,106.2,1,0,0,1,0,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,131.0,1,19,38,4,5,132.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9003,1,1,120.0,1,37,37,5,9,120.0,1,0,0,1,1,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,132.0,1,4,39,2,2,136.6,1,0,0,1,0,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,Enrolled +1,7,1,9500,1,40,170.0,1,1,1,9,4,170.0,0,0,0,1,0,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,Graduate +1,16,1,9003,1,1,147.0,1,1,37,4,9,140.7,1,0,1,1,0,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,125.0,1,1,1,4,8,115.6,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,150.0,1,37,37,9,6,138.5,0,0,0,1,0,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,2,9991,0,1,143.0,1,5,1,4,4,131.5,0,0,0,1,1,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,9556,1,1,133.1,6,3,3,4,4,169.2,0,0,1,0,0,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,2,9556,1,1,133.1,1,1,1,9,10,100.5,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,120.0,1,19,38,9,7,117.9,1,0,0,1,0,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,146.0,1,1,38,9,9,135.5,1,0,1,1,0,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,Enrolled +1,1,3,9254,1,1,122.0,1,19,38,3,10,114.3,1,0,0,1,0,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,9130,1,1,130.0,1,2,3,9,1,117.6,0,0,0,1,1,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,Enrolled +4,43,4,9991,0,12,133.1,1,37,37,9,9,153.0,0,0,0,0,0,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,2,9500,1,1,135.0,1,38,37,9,5,125.3,1,0,0,1,0,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,38,37,9,9,133.0,0,0,0,1,0,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,129.0,1,38,37,4,6,128.0,0,0,0,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,128.0,1,2,19,2,4,123.3,1,0,0,1,0,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,130.0,1,19,3,4,2,159.0,0,0,0,1,0,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,Graduate +2,7,1,8014,0,3,130.0,1,19,38,3,7,130.0,0,0,0,1,0,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,116.0,1,19,37,3,3,109.0,1,0,0,1,0,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,123.0,1,1,1,3,9,116.7,1,0,0,1,0,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,144.0,1,19,19,4,4,130.7,1,0,0,1,0,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,42,1,9500,1,1,100.0,1,19,37,5,7,134.3,1,0,0,1,0,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,143.0,1,1,19,4,4,129.9,0,0,0,1,0,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,19,133.1,1,19,37,7,9,137.2,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9853,1,1,123.0,1,19,19,9,7,117.4,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,144.0,1,19,19,5,5,130.3,1,0,0,1,0,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,137.0,1,1,19,4,7,126.7,1,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,4,9773,1,1,124.0,1,3,12,2,9,137.0,1,0,0,1,1,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,135.0,1,37,37,9,8,123.0,1,0,0,1,0,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,123.0,1,38,37,9,7,120.6,1,0,0,0,0,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,Dropout +2,2,1,9147,1,2,120.0,1,37,37,9,9,120.0,0,0,0,0,1,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,103.0,1,1,3,2,2,100.6,1,1,0,1,0,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,126.0,1,3,1,2,8,123.9,1,0,0,1,0,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,Enrolled +1,17,4,9500,1,1,136.0,1,3,3,2,2,132.5,1,0,0,1,0,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,114.0,1,3,29,3,5,111.9,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,125.0,1,19,1,9,9,130.6,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,147.0,1,37,38,9,5,134.8,1,0,0,1,0,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,131.0,1,1,19,9,9,130.3,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,118.0,1,3,1,2,5,110.0,1,0,0,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,130.0,1,19,19,4,10,116.8,0,0,0,1,0,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,Graduate +1,43,1,8014,0,6,133.1,1,34,34,0,0,100.0,0,0,1,1,0,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9670,1,12,170.0,1,1,37,3,5,110.0,0,0,0,1,1,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,Graduate +2,1,1,9991,0,3,160.0,1,1,3,4,9,137.3,0,0,0,1,0,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,108.0,1,19,1,5,5,107.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,121.0,1,3,3,2,2,112.3,1,0,1,0,0,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,Dropout +1,1,2,9773,1,1,138.0,1,19,1,9,3,133.5,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,136.0,1,38,38,9,9,121.7,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,132.0,1,38,37,9,7,122.0,1,0,0,1,0,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9003,1,1,125.0,1,3,3,2,2,100.0,0,0,0,1,1,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,137.0,1,1,1,1,5,131.8,0,0,0,1,0,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,140.0,1,37,37,9,9,148.0,1,0,0,0,1,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,127.0,1,3,1,3,7,137.2,1,0,0,1,0,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,150.0,1,37,19,9,9,150.0,0,0,0,1,1,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,Graduate +1,43,4,171,1,1,136.0,1,37,37,9,9,123.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,162.0,1,37,19,9,8,142.8,0,0,1,1,0,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,127.0,1,1,38,5,7,123.5,1,0,0,1,0,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,133.1,1,19,37,9,9,130.0,0,0,0,0,0,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,Graduate +1,17,2,9070,1,1,121.0,1,1,19,144,144,111.9,1,0,0,1,1,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,115.0,1,19,37,9,9,114.3,0,0,0,1,1,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,Dropout +1,10,1,9254,1,1,115.0,24,3,1,9,9,116.1,1,0,0,1,0,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,143.0,1,19,3,4,4,147.2,0,0,0,1,0,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,160.0,1,1,38,4,4,160.0,1,0,0,1,1,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,Graduate +2,1,1,9238,1,1,134.0,1,37,37,5,5,120.4,0,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,38,37,9,4,120.0,0,0,0,1,1,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Graduate +1,18,1,9119,1,1,108.0,1,1,1,4,3,105.6,1,0,0,1,1,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,137.0,1,37,37,9,9,141.0,0,0,0,1,1,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9254,1,1,113.0,1,1,2,5,3,106.7,1,0,1,1,1,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,16,1,9085,1,1,140.0,1,1,1,9,9,127.1,1,0,0,1,0,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,Graduate +1,53,1,9238,1,42,140.0,1,37,37,9,10,136.9,1,0,0,1,0,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,7,134.5,0,0,0,1,0,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,2,9773,1,1,125.0,1,19,1,4,5,122.2,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9070,1,1,134.0,1,1,19,3,3,127.7,1,0,0,0,0,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,96.0,1,38,37,6,4,96.0,1,0,0,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,Dropout +1,10,1,9085,1,1,134.0,1,37,37,5,5,134.0,1,0,0,1,0,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,143.0,1,1,3,3,3,149.0,1,0,0,1,0,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,Dropout +1,18,3,9070,1,1,142.0,1,1,37,4,7,130.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,7,1,9003,1,3,140.0,1,3,19,2,10,140.0,0,0,0,0,1,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,151.0,1,38,37,9,5,138.4,1,0,0,1,0,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,143.0,1,19,19,4,4,135.3,1,0,0,1,0,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,133.0,1,1,19,9,9,132.0,0,0,0,1,1,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,19,133.1,1,37,37,9,5,135.5,0,0,0,1,0,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9254,1,1,134.0,1,37,37,9,9,133.3,1,0,1,1,0,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,3,9085,1,1,135.0,1,3,2,4,3,121.0,1,0,0,1,0,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,140.0,1,1,1,4,4,123.5,1,0,0,1,0,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,188.0,1,3,3,2,2,178.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9238,1,1,126.0,1,30,19,0,2,121.5,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,131.0,1,3,19,5,5,127.2,1,0,0,1,0,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,Graduate +1,17,4,9853,1,1,143.0,1,37,37,9,5,127.3,1,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,111.0,1,19,38,9,9,110.7,1,0,0,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,140.0,1,19,38,9,7,125.7,1,0,0,1,1,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,6,9500,1,1,126.0,1,19,37,3,9,119.4,1,0,0,1,0,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,131.0,1,1,1,4,9,122.3,0,0,0,1,1,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,128.0,1,1,19,9,8,100.0,1,0,0,1,0,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,138.0,1,19,19,5,1,130.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,1,140.0,1,3,3,1,1,140.0,1,0,0,1,0,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,3,130.0,1,1,19,5,9,130.0,0,0,0,1,1,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,131.0,1,38,1,5,7,131.0,1,0,0,1,1,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,19,133.1,1,19,19,9,7,140.0,0,0,1,0,0,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,133.1,1,37,37,9,9,126.5,0,0,0,1,0,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9500,1,1,132.0,1,37,37,9,7,128.3,1,0,0,1,0,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,Graduate +1,16,1,171,1,1,145.0,1,3,3,3,3,155.0,1,0,0,1,0,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,Enrolled +4,1,1,9991,0,1,140.0,1,37,37,9,7,139.0,0,0,0,1,0,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9070,1,1,152.0,1,39,39,3,3,134.2,1,0,0,1,1,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,141.0,1,19,19,7,9,139.8,0,0,0,1,0,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,Graduate +1,1,4,9670,1,1,133.0,1,1,2,4,7,121.1,1,0,0,1,0,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,Graduate +1,15,1,9147,1,1,135.0,26,1,1,9,7,135.0,0,0,1,1,1,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,Enrolled +2,1,1,9991,0,1,144.0,1,19,19,9,9,151.4,0,0,0,1,0,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,18,4,9853,1,1,118.0,1,19,37,9,6,111.4,1,0,1,0,0,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9500,1,1,134.0,1,38,1,9,6,133.5,1,0,0,1,1,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,37,37,9,6,107.0,0,0,0,1,1,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,141.0,1,38,38,9,9,128.4,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,133.0,1,1,1,9,9,128.5,1,0,0,1,0,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,40,120.0,1,3,3,4,2,125.0,0,0,0,1,0,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,150.0,1,37,38,3,7,134.5,0,0,0,1,0,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,127.0,1,3,19,4,4,116.9,0,0,0,1,1,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,136.0,1,2,38,143,163,129.7,1,0,0,1,1,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,159.0,1,1,1,3,3,151.0,1,0,0,1,0,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,165.0,1,37,38,9,8,152.4,1,0,0,1,0,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,6,9500,1,1,139.0,1,1,1,4,4,124.5,1,0,0,1,0,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,134.0,1,1,1,5,3,128.4,1,0,0,1,0,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,133.0,1,2,1,3,4,136.2,1,0,0,1,0,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,120.0,1,19,1,8,7,115.1,1,0,0,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,131.0,1,1,39,5,3,122.6,1,0,0,1,0,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,8014,0,1,130.0,1,1,1,9,9,118.1,0,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,Graduate +1,39,9,9991,0,1,120.0,1,38,38,9,5,144.8,0,0,0,1,1,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9500,1,19,133.1,1,37,37,9,9,129.0,1,0,0,1,0,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,138.0,1,1,19,4,7,123.0,1,0,1,0,0,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,143.0,1,1,37,9,9,135.0,1,0,0,1,0,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,120.0,1,19,1,9,3,120.0,1,0,0,1,1,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,162.0,1,37,1,9,9,165.2,1,0,0,1,0,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,142.0,1,37,37,5,5,131.3,1,0,0,1,0,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,Graduate +1,1,3,171,1,1,125.0,1,38,37,4,9,115.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,120.0,1,38,37,5,3,110.5,0,0,0,1,0,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,Graduate +1,42,1,9773,1,6,120.0,1,34,34,0,0,122.0,1,0,0,1,0,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,162.0,1,1,38,4,5,138.6,1,0,0,1,0,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,152.0,1,1,1,4,4,141.0,1,0,0,1,0,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,139.0,1,3,19,3,5,120.8,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,135.0,1,1,1,3,5,130.1,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9670,1,1,127.0,1,3,3,1,1,121.4,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,135.0,1,1,1,1,1,131.5,0,0,0,1,1,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,Enrolled +1,17,3,9670,1,1,147.0,1,37,37,8,8,128.8,0,0,1,1,0,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,133.1,41,38,38,9,8,134.8,0,0,0,1,0,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,90,8,128.2,0,0,0,1,0,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,131.0,1,1,37,4,4,126.1,1,0,0,1,0,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,9,9,125.3,1,0,0,1,1,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,Dropout +2,39,1,8014,0,3,110.0,1,37,37,9,9,160.5,0,0,0,1,0,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,138.0,1,38,1,9,4,127.5,1,0,0,1,0,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,Enrolled +1,39,1,9238,1,1,170.0,1,38,19,9,9,140.0,1,0,0,1,0,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,1,19,4,10,142.3,1,0,0,1,0,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,154.0,1,38,37,9,9,140.4,0,0,0,1,0,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,133.1,41,19,1,9,9,105.0,1,0,0,0,0,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +2,44,1,9085,1,39,160.0,1,37,37,192,192,160.0,0,0,0,1,0,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,141.0,1,38,38,9,9,142.3,1,0,0,1,0,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,119.0,1,37,37,7,7,112.0,1,0,0,0,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,137.0,1,37,37,9,9,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,Graduate +4,39,1,9670,1,1,100.0,1,37,37,4,10,120.0,0,0,1,1,0,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,130.0,1,3,3,2,2,131.1,0,0,0,1,1,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,120.0,1,1,19,9,3,116.9,1,0,1,0,1,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,42,1,9500,1,1,100.0,1,1,19,4,8,136.0,1,0,0,1,0,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,Graduate +1,1,2,171,1,1,125.0,1,38,19,9,9,117.3,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,152.0,1,1,38,4,9,160.4,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,12,133.1,1,37,37,9,7,139.4,0,0,1,1,0,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,150.0,1,1,1,4,8,131.5,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,7,1,9556,1,4,190.0,1,5,5,2,2,190.0,1,0,0,1,1,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,Dropout +1,17,3,9238,1,1,121.0,1,1,1,4,5,117.2,0,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,130.0,1,37,37,9,7,113.0,1,0,0,0,1,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,123.0,1,19,19,4,10,124.4,1,0,0,1,0,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,Graduate +1,17,2,9238,1,1,133.0,1,37,37,3,9,119.7,0,1,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,138.0,1,38,19,9,10,133.1,0,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,108.0,1,38,38,7,7,105.2,1,0,0,1,1,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,Dropout +1,1,3,171,1,1,115.0,1,9,1,6,6,108.7,1,0,0,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,4,4,119.8,1,0,0,1,0,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9119,1,1,126.0,1,19,19,7,3,116.6,1,0,0,1,1,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,Graduate +2,39,1,9500,1,1,133.1,1,37,37,9,9,130.1,0,0,0,0,1,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,124.0,1,37,38,9,3,114.2,0,0,0,1,0,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,3,9147,1,1,137.0,1,1,1,4,7,124.4,1,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9130,1,19,133.1,1,37,37,9,10,156.4,1,0,1,1,1,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,5,9853,1,1,121.0,1,38,19,7,7,117.5,1,0,1,0,0,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,2,9238,1,1,117.0,1,19,1,9,8,110.0,1,0,1,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9147,1,1,148.0,1,1,19,9,6,118.4,1,0,0,1,1,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,133.0,1,1,1,4,4,100.0,0,0,0,1,0,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,17,1,9238,1,1,158.0,1,1,1,5,6,140.5,0,0,0,1,0,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,157.0,1,19,38,9,7,146.2,1,0,0,1,0,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,131.0,1,3,1,4,1,135.9,0,0,0,1,1,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,38,37,5,10,117.8,1,0,0,1,1,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,Graduate +1,1,2,9119,1,1,126.0,1,1,38,141,192,122.5,1,0,0,1,1,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,117.0,1,37,37,0,4,120.5,1,0,0,1,1,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9254,1,1,110.0,1,12,19,9,9,125.0,0,0,0,0,1,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,Dropout +1,18,1,9147,1,1,121.0,1,19,3,5,5,115.8,1,0,0,1,0,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,139.0,0,0,1,0,1,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9003,1,3,130.0,1,3,3,6,2,130.0,1,0,0,1,1,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,132.0,1,19,37,3,5,125.4,1,0,0,0,0,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,38,38,4,7,115.6,1,0,0,0,0,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,129.0,1,1,2,3,1,125.9,1,0,0,1,0,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,9,9,143.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,126.0,1,3,19,3,3,115.2,0,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,123.0,1,19,38,9,10,116.7,1,0,0,1,0,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,Graduate +1,17,2,9254,1,1,125.0,1,37,37,9,8,122.6,1,0,1,0,0,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9119,1,1,160.0,1,38,37,7,7,129.0,0,0,0,1,1,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,3,19,2,3,133.8,1,0,0,1,0,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,120.0,1,19,19,4,7,115.5,1,0,1,1,1,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,120.0,1,38,38,3,3,140.0,0,0,0,1,0,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9238,1,1,127.0,1,1,19,4,3,141.7,1,0,0,1,1,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,111.0,1,37,37,9,10,95.8,1,0,0,0,1,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,130.0,1,38,1,9,4,140.0,1,0,0,1,0,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,Graduate +1,1,2,9147,1,1,131.0,1,1,1,9,9,118.8,0,0,0,1,1,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,161.0,1,1,19,4,4,152.3,0,0,0,1,0,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,124.0,1,38,38,9,9,115.6,0,0,0,1,1,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,160.0,1,3,3,1,2,149.2,0,0,0,1,1,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,16,3,9853,1,1,134.0,1,19,37,9,9,121.1,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,Enrolled +1,43,2,9991,0,1,140.0,1,37,37,5,5,124.3,1,0,0,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,127.0,1,38,37,5,7,123.9,1,0,0,1,0,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,120.0,1,19,37,6,8,160.0,0,0,0,1,1,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,1,133.1,1,3,3,4,2,144.9,1,0,0,1,0,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,130.0,1,1,19,3,10,130.0,1,0,0,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,Graduate +1,42,1,9003,1,1,130.0,1,3,2,2,6,105.3,0,0,0,0,1,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9991,0,1,130.0,1,37,37,9,9,127.6,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,100.0,1,1,38,4,6,104.8,0,0,1,0,0,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,Dropout +1,1,5,9070,1,1,125.0,1,3,3,2,2,140.8,1,0,0,1,1,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,133.1,1,34,38,0,4,147.0,0,0,0,1,0,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,126.0,1,34,34,0,0,142.4,0,0,0,1,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,121.0,1,19,38,4,10,114.4,0,0,0,1,0,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,133.1,1,37,37,5,0,111.5,0,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,130.0,1,1,19,5,5,129.1,1,0,0,1,0,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,3,1,4,6,130.0,0,0,0,1,1,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,1,123.0,1,19,1,1,1,140.8,0,0,0,1,0,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,130.0,1,1,1,4,10,130.0,1,0,0,1,0,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,Graduate +4,39,1,9085,1,1,133.1,1,34,34,0,0,128.2,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,128.0,1,37,37,9,9,135.7,1,0,0,1,1,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,135.0,1,38,38,4,7,121.7,1,0,0,1,0,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9085,1,1,110.0,25,38,38,9,6,117.2,1,0,0,1,1,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,Graduate +1,43,3,9500,1,1,140.0,1,1,19,9,7,127.5,1,0,1,1,0,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,Graduate +1,17,3,9238,1,1,133.1,1,41,1,2,3,117.0,1,0,0,1,0,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,1,112.0,1,37,37,9,9,108.5,0,0,0,1,1,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,51,1,9238,1,39,140.0,1,38,38,5,7,129.1,1,0,0,1,0,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,122.0,1,38,19,9,9,126.6,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,123.0,1,1,1,4,4,114.4,0,0,0,1,1,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,Dropout +1,18,4,171,1,1,133.0,1,1,4,9,5,129.2,1,0,1,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,128.0,1,19,19,9,5,121.7,1,0,0,1,0,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,Graduate +1,39,1,9130,1,1,150.0,1,19,19,9,5,160.0,1,0,0,1,1,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,160.0,1,19,37,5,3,152.0,0,0,0,1,0,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,53,1,9085,1,42,140.0,1,19,37,9,8,142.5,1,0,0,1,0,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,130.0,1,9,19,4,1,134.2,1,0,0,1,0,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,3,9254,1,1,121.0,1,19,19,9,6,125.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,128.0,1,19,1,9,10,157.4,1,0,0,1,0,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,146.0,1,37,37,9,7,149.2,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9853,1,12,133.1,1,37,37,7,8,103.0,0,0,0,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,143.0,1,19,19,5,6,142.3,0,0,0,1,0,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,Enrolled +1,1,2,9085,1,1,118.0,1,1,19,3,3,112.4,1,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,Enrolled +2,43,1,9991,0,1,100.0,1,37,37,9,9,128.2,0,0,0,1,1,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,118.0,1,38,38,5,5,110.0,0,0,0,1,0,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9147,1,1,136.0,1,38,38,9,9,127.3,1,0,0,1,1,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,170.0,1,19,19,8,8,176.7,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,124.0,41,19,38,9,9,123.3,1,0,0,1,0,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9070,1,1,170.0,1,3,3,2,2,165.8,1,0,0,1,1,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,3,37,9,9,142.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9147,1,1,122.0,1,1,38,4,5,116.4,0,0,0,1,1,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,150.0,1,1,1,4,4,138.1,1,0,0,1,0,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,Enrolled +1,17,6,9238,1,1,138.0,1,3,3,1,2,123.0,1,0,0,1,0,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,135.0,1,19,12,9,7,137.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9070,1,1,125.0,1,1,3,3,3,128.9,0,0,0,1,0,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,128.0,1,38,19,9,10,125.2,1,0,0,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Enrolled +1,42,1,9003,1,1,140.0,1,1,3,4,2,140.0,1,0,0,1,1,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,Enrolled +1,39,1,9500,1,19,133.1,1,37,38,151,161,143.7,0,0,0,1,0,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,118.0,1,38,38,7,7,115.2,1,0,0,1,0,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,152.0,1,19,37,9,8,135.6,1,0,0,1,1,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,12,110.0,1,34,34,0,0,157.8,0,0,0,1,0,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,Graduate +1,1,6,9147,1,1,112.0,1,38,38,9,9,117.3,1,0,0,1,0,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,Graduate +1,17,3,9147,1,1,118.0,1,1,19,5,7,118.0,0,0,0,1,0,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,Enrolled +1,44,1,9070,1,39,120.0,1,1,19,5,8,119.8,0,0,0,1,1,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9670,1,1,133.1,1,19,19,3,9,118.0,0,0,0,1,1,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,159.0,1,1,19,9,9,151.3,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,118.0,1,1,38,5,7,120.8,1,0,0,1,0,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,132.0,1,1,37,8,9,128.0,1,0,0,1,0,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,Graduate +1,42,1,9147,1,1,135.0,1,19,1,4,4,120.0,0,0,0,0,1,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9670,1,1,122.0,1,1,38,3,3,114.3,1,0,0,1,0,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,171,1,1,131.0,1,1,1,0,3,149.9,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +4,39,2,9556,1,1,133.1,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,5,9119,1,1,126.0,1,12,19,4,5,122.5,1,0,0,1,1,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,145.0,1,2,38,3,8,136.3,1,0,0,1,0,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,Enrolled +1,15,1,9147,1,1,150.0,1,38,1,9,1,150.0,0,0,0,1,1,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,150.0,1,3,39,3,7,126.4,0,0,0,1,1,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,Enrolled +1,17,2,9773,1,1,148.0,1,3,38,2,6,144.2,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,124.0,1,37,19,9,3,116.3,1,0,0,1,0,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +2,39,1,9003,1,1,130.0,1,1,37,9,1,122.0,0,0,1,0,1,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,160.0,1,19,38,5,7,139.0,1,0,0,1,0,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,157.0,1,3,2,3,6,150.9,1,0,0,1,0,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,Dropout +1,42,1,9119,1,1,120.0,1,1,1,5,7,108.6,0,0,0,0,1,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9773,1,1,138.0,1,37,38,4,9,134.2,1,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,110.0,1,0,0,1,0,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,Dropout +4,39,1,9853,1,1,143.0,1,37,1,9,10,140.0,0,0,1,0,0,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,130.0,1,3,19,4,8,133.0,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,19,38,6,7,140.0,1,0,0,1,1,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,132.0,1,2,2,6,6,128.5,0,0,0,1,0,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,Dropout +1,1,2,171,1,1,135.0,1,19,19,4,7,149.0,1,0,0,1,1,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,130.0,1,19,38,3,9,126.5,1,0,0,1,0,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,125.0,1,19,38,9,8,121.5,0,0,0,1,0,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,7,129.0,0,0,0,1,0,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,Dropout +1,7,3,9130,1,3,130.0,1,37,26,90,10,130.0,0,0,0,0,1,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,123.0,1,19,19,7,7,120.8,1,0,0,1,0,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,Graduate +1,18,2,9853,1,1,168.0,1,1,19,3,9,126.8,1,0,0,1,1,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9085,1,39,140.0,1,3,1,4,3,140.0,1,0,0,1,0,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,148.0,1,19,19,9,9,138.7,0,0,0,1,0,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,Graduate +1,18,1,171,1,1,110.0,1,19,2,5,5,117.7,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9070,1,1,136.0,1,37,38,9,9,125.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +2,39,1,8014,0,1,133.1,1,37,37,5,4,134.5,0,0,0,1,0,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,Enrolled +1,42,1,9119,1,1,150.0,1,38,37,5,8,133.5,1,0,0,1,1,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,140.0,1,1,3,4,6,139.2,0,0,1,1,0,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,125.0,1,19,19,5,5,117.0,0,0,0,1,0,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,Graduate +1,39,1,9147,1,12,133.1,1,19,37,7,9,118.2,0,0,0,1,0,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,2,9147,1,1,121.0,1,1,19,9,9,113.7,1,0,0,0,0,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,131.0,1,3,19,2,3,132.8,1,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,136.0,1,37,38,4,5,126.0,1,0,0,1,0,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,Graduate +1,1,1,9853,1,1,145.0,1,37,37,9,5,146.8,0,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,123.0,1,1,1,4,9,116.7,1,0,0,1,1,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,Dropout +1,18,1,171,1,1,121.0,1,1,1,4,3,116.8,1,0,0,1,0,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,141.0,1,38,1,9,4,129.0,1,0,0,1,0,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,133.1,1,34,34,0,0,130.0,0,0,0,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,126.0,1,1,3,4,3,122.5,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,Dropout +2,1,1,9254,1,1,136.0,1,37,37,9,9,122.7,0,0,0,1,0,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,37,37,9,10,100.0,0,0,0,1,1,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9500,1,1,133.1,1,38,19,7,9,115.5,1,0,0,1,1,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9991,0,1,131.0,1,19,37,9,9,118.4,1,0,0,1,0,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,153.0,1,1,38,4,3,146.7,0,0,0,1,0,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,Graduate +1,43,1,8014,0,12,114.0,1,34,34,0,99,110.0,0,0,0,1,0,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,147.0,1,1,1,5,5,134.9,0,1,0,1,0,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,Graduate +1,1,2,9085,1,1,156.0,1,40,40,3,7,150.9,1,0,0,1,0,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,137.0,1,38,38,5,7,122.7,1,0,0,1,0,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,123.0,1,1,19,4,5,117.8,0,0,0,1,1,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9238,1,1,135.0,1,37,37,8,6,127.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,131.0,1,37,37,9,9,123.0,1,0,0,1,0,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9670,1,1,123.0,1,3,1,3,1,116.7,0,0,0,1,0,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,9085,1,40,140.0,1,1,19,5,5,140.0,1,0,0,1,0,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,Graduate +4,39,1,9500,1,19,133.1,1,38,19,5,7,140.0,0,0,0,1,0,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,127.0,1,3,19,3,9,127.0,1,0,0,1,1,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,Graduate +1,17,2,8014,0,1,120.0,1,19,1,5,10,114.8,1,0,0,1,0,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9670,1,19,133.1,1,37,37,9,7,130.0,0,0,1,1,1,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,171,1,1,131.0,41,19,1,4,7,131.4,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,16,2,171,1,1,145.0,1,3,3,2,2,143.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,120.0,1,19,38,6,6,120.0,1,0,0,1,1,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,6,9238,1,1,131.0,1,1,3,4,2,131.7,1,0,0,1,0,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,137.0,1,3,1,4,9,128.6,0,0,0,1,0,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,170.0,1,19,19,9,7,170.0,1,0,1,1,1,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9853,1,1,122.0,1,38,37,9,9,118.9,1,0,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,5,9500,1,1,148.0,1,1,19,4,8,130.2,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9003,1,19,133.1,1,1,19,9,8,120.0,0,0,1,0,1,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,2,9147,1,1,143.0,1,19,38,9,7,132.2,1,0,0,1,0,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9556,1,1,132.0,1,38,37,7,7,119.0,1,0,0,1,0,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,133.1,1,3,1,4,4,95.0,0,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,154.0,1,3,1,2,1,137.2,0,0,0,1,1,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,Enrolled +1,1,1,9853,1,1,129.0,1,38,37,6,6,138.1,0,0,0,1,0,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,17,2,9670,1,1,129.0,1,1,19,5,5,119.2,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,43,1,9500,1,1,137.0,1,3,3,2,2,115.0,0,0,0,1,0,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,Graduate +1,17,2,9254,1,1,115.0,1,19,19,9,7,113.3,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,133.0,1,38,38,7,7,125.3,1,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,10,150.0,0,0,0,0,0,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,19,133.1,1,19,19,144,141,131.5,0,0,1,1,0,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,133.0,1,38,1,2,4,126.0,0,0,0,1,0,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,15,1,9147,1,1,133.1,41,41,1,3,4,100.0,0,0,1,0,1,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,Dropout +1,10,2,9773,1,1,154.4,22,19,38,3,5,154.4,1,0,0,0,0,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9070,1,39,100.0,1,1,1,4,4,106.0,0,0,0,1,1,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,135.0,1,38,19,8,8,126.3,1,0,1,1,0,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,120.0,41,1,1,9,6,114.8,1,0,0,1,0,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,Enrolled +1,17,1,9085,1,1,124.0,1,19,38,7,7,113.9,1,0,0,1,0,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,Graduate +1,1,6,9254,1,1,126.0,1,38,37,5,7,123.9,1,0,0,1,0,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,125.0,1,37,37,9,9,121.5,1,0,0,1,1,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,6,9773,1,1,125.0,1,1,1,5,4,122.2,0,0,0,1,1,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,135.0,1,19,19,4,5,126.8,1,0,0,1,1,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9238,1,1,133.0,1,1,37,7,9,127.4,1,0,0,1,0,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,3,9070,1,1,127.0,1,19,38,5,7,141.0,1,0,0,1,1,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,3,120.0,1,37,37,4,7,122.5,0,0,0,0,0,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,2,9147,1,1,150.0,1,19,37,9,7,101.0,0,0,1,0,0,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,4,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,Graduate +1,17,5,9500,1,1,143.0,1,38,1,9,7,130.6,1,0,0,1,0,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,129.0,1,38,19,5,7,124.0,1,0,0,1,0,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,Graduate +1,17,2,9500,1,1,140.0,1,1,1,5,10,128.5,1,0,0,1,0,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,Enrolled +4,39,1,8014,0,19,100.0,1,1,37,9,1,111.5,0,0,0,1,1,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,Dropout +2,39,2,9556,1,1,110.0,1,19,38,9,9,112.8,0,0,0,1,0,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,116.0,1,19,19,5,8,127.9,0,0,1,0,0,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,Dropout +1,43,4,171,1,1,117.0,1,19,12,9,10,109.3,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,130.0,1,1,38,5,5,122.3,1,0,0,1,0,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,Graduate +1,15,1,9119,1,1,130.0,26,38,3,9,2,137.0,1,0,0,1,1,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,Enrolled +1,39,1,9556,1,1,133.1,1,38,19,9,6,100.0,1,0,0,1,0,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,150.0,1,3,1,3,9,154.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9147,1,1,131.0,1,3,19,2,9,126.1,0,0,0,1,0,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,1,6,9773,1,1,145.0,1,1,19,4,4,131.0,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,136.0,1,19,38,4,7,140.9,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,155.0,1,19,37,4,5,117.5,0,0,0,1,0,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9147,1,1,128.0,1,3,3,5,10,116.5,0,0,0,1,1,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,4,9254,1,1,133.0,1,37,37,5,8,128.5,1,0,0,1,0,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9119,1,1,141.0,1,37,1,9,2,133.0,1,0,0,1,1,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,Enrolled +1,51,1,8014,0,1,120.0,1,1,1,4,4,128.5,0,0,1,0,1,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,Dropout +1,43,1,9003,1,1,120.0,1,3,3,1,2,115.0,0,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,136.0,1,19,19,4,7,136.0,0,0,0,1,0,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,Graduate +1,17,1,9070,1,1,116.0,1,38,38,9,9,123.7,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,125.0,1,19,19,4,8,117.0,1,0,0,1,0,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,135.0,1,1,38,5,7,137.5,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,140.0,1,19,19,7,7,124.6,1,0,0,1,0,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,Enrolled +1,39,1,9670,1,19,133.1,1,1,1,4,7,100.0,0,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,122.0,1,37,37,9,9,131.0,1,0,0,1,0,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,Dropout +2,43,1,9773,1,1,160.0,1,37,37,5,0,160.0,0,0,1,0,1,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9670,1,1,113.0,1,37,19,9,9,110.2,1,0,0,1,0,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,125.0,1,37,37,9,9,126.0,1,0,1,1,0,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,Graduate +1,43,1,171,1,39,140.0,1,38,37,9,7,140.0,0,0,0,0,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9853,1,1,134.0,1,37,19,9,5,121.4,1,0,0,1,0,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,8014,0,1,120.0,1,1,37,7,3,122.8,0,0,0,1,0,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,1,1,4,2,127.7,0,0,0,1,0,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,Enrolled +2,39,1,9991,0,1,120.0,1,19,37,3,9,132.9,0,0,0,1,1,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,138.0,1,1,38,4,9,132.5,1,0,0,1,0,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,133.1,1,19,37,7,7,126.0,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9500,1,1,110.0,1,38,38,9,9,110.0,0,0,0,0,0,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,Dropout +5,7,1,9500,1,40,150.0,1,37,37,4,9,150.0,0,0,0,1,0,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,Graduate +1,17,1,9070,1,1,126.0,1,19,38,9,7,118.7,0,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,16,4,9254,1,1,126.0,1,38,37,9,7,118.7,1,0,0,1,0,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9773,1,1,110.0,1,19,19,5,5,105.5,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,9,133.1,1,34,34,0,0,118.0,0,0,0,1,0,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,140.0,1,3,2,4,6,133.4,1,0,0,0,1,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,Enrolled +1,1,1,171,1,1,134.0,1,3,2,2,2,141.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9773,1,1,133.1,1,1,1,90,90,129.6,0,0,0,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,133.1,1,38,19,5,6,138.0,0,0,1,1,1,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,Enrolled +1,17,3,9500,1,1,156.0,1,19,37,4,9,132.3,1,0,0,1,1,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,Graduate +1,44,1,9085,1,39,140.0,1,3,3,4,2,140.0,1,0,0,1,0,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,Graduate +1,43,1,171,1,1,116.0,1,3,1,2,3,117.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,141.0,1,38,19,9,6,126.3,1,0,0,1,0,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,44,1,9238,1,39,140.0,1,1,19,191,102,143.0,0,0,0,1,0,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,Graduate +1,43,5,8014,0,1,110.0,1,34,34,0,0,110.0,0,0,0,1,1,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9238,1,1,143.0,1,1,11,4,3,128.0,1,0,0,1,0,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +3,17,1,9238,1,1,138.0,1,37,37,9,9,133.5,1,0,0,1,0,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,Enrolled +1,7,1,9119,1,3,150.0,1,3,2,2,2,150.0,0,0,0,1,0,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,150.0,1,19,1,1,1,150.0,0,0,0,1,1,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,Enrolled +1,17,1,9085,1,1,134.0,1,19,37,2,7,131.2,0,0,0,1,0,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,171,1,1,133.1,1,37,37,9,7,100.0,0,0,1,1,1,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,1,9556,1,1,133.1,1,3,19,2,8,106.0,1,0,0,1,1,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,Graduate +1,17,2,9500,1,1,135.0,1,19,19,9,4,129.8,1,0,0,1,0,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,Graduate +1,39,1,33,1,1,130.0,1,38,37,9,6,102.5,0,0,1,0,1,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,Dropout +1,18,1,9500,1,1,144.0,1,37,37,6,6,127.5,1,0,0,1,0,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,130.0,1,37,38,9,9,133.9,1,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,44,1,9003,1,39,140.0,1,37,37,4,7,140.0,0,0,0,1,1,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,Dropout +1,1,4,9773,1,1,137.0,1,3,19,2,3,139.8,1,1,0,1,0,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,1,9991,0,1,130.0,1,2,37,3,9,131.4,0,0,0,1,1,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,135.0,1,3,3,1,1,125.8,1,0,0,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Graduate +1,18,1,9238,1,1,147.0,1,38,34,4,0,130.2,0,0,0,1,0,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +5,17,5,9500,1,1,143.0,1,37,38,5,8,133.5,1,0,0,1,0,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,99.0,1,1,3,5,10,100.0,1,0,0,1,1,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,Graduate +1,16,2,9147,1,1,131.0,1,37,37,9,9,135.9,1,0,0,1,1,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,146.0,1,38,37,6,6,143.9,0,0,0,1,0,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9085,1,1,139.0,1,38,38,5,3,136.2,0,0,0,1,0,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,153.0,1,3,1,2,8,137.6,1,0,0,1,0,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,2,9085,1,1,133.1,1,19,38,9,1,100.0,1,0,1,0,1,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,2,9773,1,1,121.0,1,19,19,9,9,122.8,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,141.0,1,37,38,9,10,138.9,0,0,0,1,0,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,6,9500,1,1,117.0,1,4,12,5,9,119.8,1,0,0,1,0,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,Graduate +1,17,4,9119,1,1,122.0,62,1,1,191,171,121.0,1,0,0,1,1,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,38,19,3,3,98.6,0,0,0,1,0,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,140.0,1,38,37,5,6,124.3,1,0,0,1,0,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,140.0,1,37,37,9,9,127.7,1,0,0,1,0,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,121.0,1,37,37,9,9,124.2,1,0,0,1,0,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,Graduate +1,18,1,9130,1,1,146.0,1,3,3,5,2,137.8,0,0,0,1,1,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,3,120.0,1,1,1,7,10,120.0,1,0,0,0,1,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,120.0,1,37,37,7,8,120.0,1,0,1,0,0,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,178.0,1,19,1,4,8,174.7,0,0,0,1,0,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,Graduate +1,17,5,9254,1,1,114.0,1,38,1,5,9,109.5,0,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,143.0,1,38,38,9,9,140.0,0,0,0,1,1,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,160.0,1,38,37,9,5,159.3,0,0,0,1,0,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,143.0,1,38,34,9,9,133.6,1,0,0,1,0,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,Graduate +4,43,1,9500,1,19,100.0,1,34,34,0,0,110.0,0,0,0,1,1,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,125.0,1,1,19,4,1,121.5,1,0,0,1,1,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,19,7,3,120.0,1,0,0,1,1,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,3,120.0,1,19,1,9,5,134.0,0,0,0,1,0,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,Dropout +1,39,1,9254,1,1,160.0,1,19,37,7,10,100.0,0,0,0,1,1,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,Enrolled +1,15,1,171,1,1,130.0,26,1,1,2,9,130.0,0,0,0,1,1,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,140.0,1,19,37,5,6,137.9,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,123.0,1,19,37,9,9,124.1,1,0,0,1,0,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,140.0,1,38,38,6,6,140.0,0,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,9,133.1,1,34,34,0,0,118.4,0,0,0,0,0,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,6,9254,1,1,125.0,1,1,1,4,3,120.5,1,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,6,171,1,1,126.0,1,10,10,4,4,130.2,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,120.0,1,1,19,4,7,120.0,0,0,0,1,1,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,Enrolled +1,17,5,9773,1,1,143.0,1,1,1,7,7,136.7,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,42,1,9147,1,1,130.0,1,37,38,9,1,130.0,1,0,0,1,0,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,1,130.0,1,37,37,9,9,124.0,0,0,0,1,1,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,Graduate +1,17,2,9238,1,1,136.0,1,1,3,3,4,126.6,1,0,0,1,0,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,127.0,1,19,1,5,7,118.3,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,Enrolled +4,39,1,9991,0,1,147.0,1,19,19,7,8,147.9,0,0,0,1,0,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,124.0,1,19,37,99,90,124.0,0,0,0,0,0,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +2,43,1,9003,1,1,133.1,1,37,37,9,7,136.0,0,0,0,1,1,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,1,9085,1,1,140.0,1,12,1,1,90,141.8,0,0,0,1,0,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,133.1,1,37,37,191,154,95.0,0,0,0,1,0,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,147.0,1,2,3,4,8,145.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9238,1,3,130.0,1,37,19,4,5,130.0,0,0,0,1,0,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,Graduate +1,7,2,9085,1,3,130.0,1,3,3,1,1,130.0,0,0,0,0,0,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,Dropout +2,39,2,9147,1,3,130.0,1,3,37,9,9,103.4,0,0,0,1,0,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,Dropout +1,17,1,9085,1,1,135.0,1,1,19,4,10,125.6,1,0,0,1,0,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,1,1,5,5,96.0,1,0,0,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +5,39,1,9853,1,19,133.1,1,38,1,5,3,105.5,0,0,1,1,0,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,136.0,1,37,37,7,7,121.7,1,0,0,1,0,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9119,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,1,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,19,133.1,1,19,19,4,4,100.0,0,0,0,1,1,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,124.0,1,2,2,3,2,118.4,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9085,1,1,120.0,1,2,3,2,2,116.1,0,0,0,1,0,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,162.0,1,37,37,9,9,142.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,131.0,1,37,1,9,9,135.9,1,0,0,1,0,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,7,100.0,0,0,0,1,1,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,Graduate +1,43,1,9500,1,1,127.0,1,19,19,4,7,121.1,0,0,0,1,0,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,143.0,1,37,37,9,5,131.6,1,0,0,1,0,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,Graduate +1,17,4,9085,1,1,140.0,1,19,37,4,7,123.7,0,0,0,1,0,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,156.0,1,19,1,5,10,136.8,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Dropout +2,39,1,9853,1,10,133.1,1,37,34,0,0,115.5,0,0,0,1,0,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,Dropout +1,1,3,9119,1,1,113.0,1,4,38,2,7,107.4,1,0,0,1,1,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,Graduate +2,39,1,9670,1,1,130.0,1,37,37,9,0,158.0,0,0,1,0,0,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,Dropout +1,43,1,9853,1,1,110.0,1,37,37,9,9,107.7,0,0,1,0,0,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,124.0,1,2,2,3,3,124.7,1,0,0,1,1,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,127.0,1,37,37,5,10,125.3,0,0,0,1,1,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Graduate +1,16,1,9500,1,1,133.1,1,37,37,9,9,95.0,1,0,0,1,0,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,4,9238,1,1,127.0,1,19,19,4,0,127.4,1,0,0,1,0,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,113.0,1,38,38,3,7,112.3,0,0,0,1,0,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,110.0,1,19,37,9,99,106.1,1,1,1,0,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,141.0,1,1,38,4,8,136.8,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,133.1,1,37,37,9,7,140.0,0,0,0,1,0,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,124.0,1,1,1,4,4,118.8,0,0,0,1,1,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,4,120.0,1,2,3,2,2,120.0,0,0,0,1,0,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,110.0,1,3,3,4,10,115.6,1,0,0,1,1,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,118.0,1,1,19,4,10,110.7,1,1,0,1,0,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +4,39,1,9238,1,1,130.0,1,19,3,9,2,140.0,0,0,0,1,1,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,1,140.0,1,1,19,3,9,140.0,1,0,1,0,0,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,3,9773,1,1,123.0,1,1,19,5,5,117.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,115.0,1,38,38,8,7,112.9,1,0,0,1,0,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,1,6,9147,1,1,142.0,1,38,37,7,7,134.3,0,1,0,1,1,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9085,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,0,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,129.0,1,19,1,3,7,121.0,0,0,0,1,0,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,156.0,1,3,3,123,122,155.0,0,0,0,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,136.0,1,37,37,9,9,126.3,1,0,0,1,0,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,Graduate +2,43,1,9991,0,1,110.0,1,37,37,9,9,132.5,0,0,0,1,1,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,19,133.1,1,37,1,5,5,138.3,0,0,0,1,1,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,Dropout +1,1,2,9130,1,1,140.0,1,19,37,9,9,129.5,1,0,0,1,0,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,Enrolled +1,7,1,9500,1,3,140.0,1,37,37,4,4,140.0,0,0,0,1,0,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,Graduate +4,42,1,9147,1,1,110.0,1,37,37,9,9,128.2,0,0,0,1,0,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,Graduate +1,39,1,9119,1,19,133.1,1,1,1,4,3,134.4,0,0,1,0,1,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,136.0,1,37,1,5,4,120.8,1,0,0,1,0,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,Graduate +1,17,2,9500,1,1,140.0,1,37,37,9,9,132.5,1,0,0,1,0,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,Graduate +1,17,6,9147,1,1,130.0,1,37,37,9,9,110.4,1,0,0,1,1,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,4,5,105.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,136.0,1,19,19,4,3,126.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,116.0,1,38,2,9,2,112.2,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9238,1,1,122.0,1,19,3,5,2,112.6,0,0,1,1,0,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9147,1,1,118.0,1,1,38,9,9,118.4,1,0,0,1,1,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,Enrolled +1,17,1,9130,1,1,117.0,1,19,19,4,4,113.5,1,0,0,1,0,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,117.0,1,19,19,9,9,111.8,1,0,0,1,1,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,Dropout +1,1,6,9500,1,1,118.0,1,38,19,3,3,113.5,1,0,0,1,1,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +2,43,2,9853,1,1,130.0,1,38,31,4,1,124.2,0,0,0,1,0,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,128.0,1,38,38,9,7,124.5,1,0,0,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,8,108.7,1,0,0,1,1,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9254,1,19,133.1,1,37,19,9,10,156.5,0,0,0,1,1,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,Graduate +1,39,1,9003,1,1,160.0,1,1,37,191,193,140.0,0,0,0,1,1,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,10,150.0,0,0,0,1,1,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,Graduate +1,18,2,9070,1,1,122.0,1,38,19,5,5,119.9,0,0,0,1,1,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,125.0,1,19,38,9,7,116.3,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,37,37,6,6,147.8,0,0,0,1,0,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,171,1,1,174.0,1,5,3,3,3,157.9,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,131.0,1,1,1,4,4,127.2,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,3,110.0,1,12,3,5,8,106.5,1,0,1,0,0,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,124.0,1,37,37,9,9,116.0,1,0,0,1,0,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,38,38,5,7,146.2,0,0,0,1,0,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,9,97.0,0,0,0,1,0,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,132.0,1,19,1,9,9,141.8,1,0,0,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +2,43,1,9254,1,3,120.0,1,38,37,9,3,120.0,1,0,0,1,0,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,135.0,1,3,2,1,1,133.6,1,0,0,0,0,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,133.0,1,38,38,5,2,135.5,0,0,0,1,0,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,125.0,1,39,3,3,2,125.0,1,0,0,1,0,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,4,112.0,0,0,0,1,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,141.0,1,1,1,5,9,126.3,0,0,0,1,1,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,1,133.1,1,1,37,9,8,130.0,0,0,0,1,1,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,3,10,107.8,0,0,0,1,0,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,Enrolled +1,43,1,9500,1,1,120.0,1,3,4,2,4,120.6,0,0,0,1,1,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,1,133.1,1,1,19,9,9,120.0,0,0,0,1,1,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,Graduate +1,39,1,9853,1,1,140.0,1,19,1,9,4,128.2,0,0,0,0,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,133.1,1,37,19,9,3,123.0,0,0,0,1,1,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9147,1,1,150.0,1,37,1,7,3,148.8,0,0,0,1,1,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,Graduate +1,17,1,9670,1,1,125.0,1,38,37,7,5,126.4,0,0,0,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,Graduate +1,44,1,9003,1,39,140.0,1,38,1,134,134,140.0,1,0,1,1,1,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,44,1,9070,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,1,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,130.0,1,1,1,9,9,124.1,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Enrolled +1,51,1,9070,1,1,130.0,1,19,19,5,7,124.5,0,0,0,1,0,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,101.0,1,37,37,9,4,101.0,1,0,1,1,0,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,Enrolled +1,1,1,8014,0,1,115.0,1,38,38,9,7,115.0,1,0,0,1,0,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9130,1,1,122.0,1,19,19,9,9,121.7,1,0,0,0,0,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,135.0,1,38,38,9,6,138.1,0,0,1,0,0,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9147,1,1,130.0,1,37,37,9,9,119.9,1,0,0,0,0,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,134.0,1,1,1,9,9,133.0,1,0,0,1,0,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,19,37,9,9,117.8,1,0,0,1,0,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,119.0,1,1,19,4,10,115.5,1,0,0,1,0,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,Enrolled +1,17,3,9119,1,1,138.0,1,3,3,3,4,125.4,1,1,0,1,1,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,164.0,1,19,19,9,9,149.0,1,0,0,1,0,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,1,140.0,1,4,4,2,6,140.0,0,0,0,1,0,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,Graduate +1,43,1,9070,1,1,160.0,1,1,2,4,2,100.0,0,0,0,1,1,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,132.0,1,37,37,9,5,135.9,0,0,0,1,0,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,142.0,1,37,19,7,7,133.0,1,0,0,1,0,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9556,1,3,130.0,1,1,37,4,8,130.0,0,0,0,0,1,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,Dropout +1,44,1,171,1,39,110.0,1,1,1,1,7,114.2,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9147,1,1,129.0,1,19,19,4,9,127.6,1,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,164.0,1,34,1,0,0,163.0,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9556,1,1,122.0,1,19,38,4,8,118.3,1,0,0,1,0,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,141.0,1,38,37,3,3,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,Graduate +1,1,1,9003,1,1,148.0,1,1,19,194,194,143.5,0,0,1,1,1,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,150.0,1,37,19,6,4,137.0,0,0,0,1,1,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,38,38,1,4,138.7,0,0,0,1,1,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,103.8,0,0,0,1,0,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,Dropout +1,17,1,8014,0,1,127.0,1,19,37,4,7,115.8,0,0,0,1,0,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,143.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,130.0,1,38,19,5,6,125.1,1,0,0,1,0,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9254,1,1,133.0,1,19,1,9,9,137.2,0,0,0,1,1,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +2,1,4,8014,0,1,140.0,1,34,34,0,0,128.0,1,0,0,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,120.0,1,1,1,9,10,118.3,0,0,0,1,1,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Enrolled +2,39,1,8014,0,12,133.1,1,37,37,9,1,113.0,0,0,0,1,0,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,128.0,1,19,1,0,5,122.1,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,37,38,3,3,123.0,0,0,0,1,0,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,120.0,1,37,1,7,4,95.0,1,0,0,1,0,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,Dropout +1,17,4,9238,1,1,123.0,1,19,19,191,144,116.0,1,0,0,1,0,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,140.0,1,37,37,90,90,106.3,0,0,1,0,1,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,159.0,1,3,3,2,2,162.5,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,125.0,1,19,19,9,9,115.9,0,0,0,1,0,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,130.0,1,19,19,3,7,129.0,0,0,1,0,0,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,133.1,1,38,37,5,5,136.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,156.0,1,5,4,2,1,140.8,0,0,0,1,0,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,161.0,1,37,37,9,9,100.0,1,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,8014,0,3,130.0,1,35,35,90,90,140.0,0,0,0,0,0,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,Dropout +2,1,1,9991,0,1,120.0,1,37,19,9,9,135.0,1,0,0,1,1,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,1,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,148.0,1,3,3,2,2,137.3,1,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,120.0,1,19,37,5,7,115.1,0,0,0,1,0,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,6,9773,1,1,138.0,1,1,1,4,2,140.5,1,0,0,1,0,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,Graduate +2,43,1,9085,1,1,160.0,1,37,37,9,7,120.0,0,0,0,1,1,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,Enrolled +1,17,2,8014,0,1,134.0,1,1,19,4,99,126.0,1,0,0,1,1,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,100.0,1,0,0,1,0,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,131.0,1,1,1,5,9,129.5,1,0,0,1,0,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,Graduate +1,1,4,171,1,1,139.0,1,37,38,9,9,127.8,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,150.0,1,37,37,5,6,132.5,1,0,0,1,0,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,133.1,1,19,38,5,7,110.0,1,0,0,1,0,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,6,138.6,1,34,34,0,0,138.6,1,0,0,1,1,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,133.1,1,1,1,4,10,100.8,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,5,140.0,1,19,1,4,1,140.0,1,0,0,0,0,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,118.0,1,1,19,9,10,113.1,1,0,0,1,0,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,115.0,1,3,3,2,2,111.5,1,0,1,0,0,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9254,1,39,170.0,1,19,2,9,3,170.0,0,0,0,0,1,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,9,120.0,0,0,0,1,0,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,137.0,1,19,38,7,7,126.5,1,0,0,1,0,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,136.0,1,19,19,90,8,133.9,1,0,0,0,1,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,Dropout +1,18,2,9500,1,1,141.0,24,1,1,4,3,126.8,1,0,0,1,0,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,Graduate +1,17,4,9238,1,1,124.0,1,19,19,5,8,117.7,1,0,0,1,0,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,149.0,1,19,38,9,9,126.5,1,0,0,1,0,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,153.0,1,1,1,141,175,157.9,0,0,1,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,140.0,1,1,2,4,6,140.0,1,0,0,1,0,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,137.0,1,1,3,3,2,121.3,1,0,0,1,0,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,143.0,1,1,1,4,6,138.8,0,0,0,0,1,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,160.0,1,1,3,1,2,130.0,0,0,0,0,1,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,19,19,9,8,105.8,0,0,0,1,0,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,Dropout +1,5,4,9119,1,1,115.0,1,19,37,4,6,113.3,1,0,0,1,1,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,19,4,3,125.4,1,0,0,1,0,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,Graduate +4,42,1,9500,1,19,133.1,1,1,1,5,5,126.0,1,0,0,1,1,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9254,1,3,133.1,1,19,19,4,6,130.5,0,0,0,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,108.0,1,1,19,4,4,105.9,1,0,0,1,1,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,126.0,1,19,19,9,9,115.2,0,0,1,1,0,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9853,1,1,140.0,1,37,37,9,9,145.3,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,6,9070,1,6,119.0,1,1,1,9,9,123.2,1,0,0,1,1,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,160.0,1,1,38,5,6,168.6,0,0,0,1,1,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9254,1,1,120.0,1,1,19,9,9,148.3,0,0,0,1,1,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,3,130.0,1,1,19,9,10,130.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,137.0,1,38,38,151,151,141.6,0,0,0,1,1,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,4,140.0,0,0,0,1,1,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,Enrolled +1,43,1,9085,1,1,162.0,1,2,1,4,4,162.0,0,0,0,1,0,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,43,1,171,1,1,133.0,1,19,19,5,7,133.0,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,154.0,1,37,37,9,7,150.2,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,19,100.0,1,38,19,0,10,111.3,0,0,1,0,0,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,38,4,9,126.2,0,0,0,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,132.0,1,3,1,2,7,125.5,1,0,0,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,127.0,1,37,37,5,7,116.2,0,0,0,1,1,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9773,1,1,121.0,1,19,38,9,7,113.0,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,130.0,1,19,19,9,9,127.6,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,160.0,1,34,34,99,99,114.3,0,0,0,1,1,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,Enrolled +1,18,4,9254,1,1,119.0,1,37,37,9,9,113.1,1,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,130.0,1,38,37,5,6,130.0,0,0,0,1,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,163.0,1,19,37,5,8,150.8,1,0,0,1,1,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,Enrolled +1,43,1,9238,1,1,122.0,1,19,19,5,5,114.3,1,0,0,1,0,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,Enrolled +1,18,1,9147,1,1,131.0,1,34,34,90,90,131.0,0,0,0,1,1,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,4,9773,1,1,137.0,1,1,1,5,5,125.8,0,0,1,1,1,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9670,1,1,133.1,1,37,37,90,90,97.4,0,0,1,0,1,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,37,38,7,5,106.0,1,0,0,1,0,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,Graduate +1,17,6,9254,1,1,108.0,1,1,19,4,5,112.2,1,0,0,1,1,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,19,133.1,1,1,19,4,10,111.8,1,0,0,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,133.1,1,1,37,9,10,139.0,0,0,0,1,1,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,122.0,1,12,19,4,8,117.8,1,0,0,1,0,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,128.0,1,19,19,0,5,120.3,1,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,133.1,1,34,19,0,3,117.1,1,0,0,1,0,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9556,1,19,133.1,1,37,38,9,9,123.0,0,0,0,1,0,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,Graduate +1,17,2,9238,1,1,133.0,1,37,37,9,4,123.6,0,0,0,1,0,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,5,9670,1,1,132.0,1,19,19,5,5,134.1,1,0,0,1,1,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,129.0,1,38,1,4,10,129.4,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,136.0,1,19,19,4,8,150.4,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,154.0,1,3,3,1,3,129.0,1,0,0,1,0,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,Enrolled +1,44,1,9130,1,39,150.0,1,1,1,4,4,150.0,1,0,0,1,0,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,115.0,1,37,37,9,8,116.1,1,0,0,1,0,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,157.0,1,19,3,4,9,138.8,0,0,0,1,1,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9670,1,19,133.1,1,19,1,5,8,97.2,1,0,0,1,1,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,141.0,1,37,38,6,6,125.6,1,0,0,1,0,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,143.0,1,19,1,9,9,144.4,1,0,0,1,0,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9119,1,1,127.0,1,19,1,4,5,115.8,0,0,0,1,1,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,150.0,1,1,1,9,10,142.7,0,0,1,1,0,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,132.0,11,12,12,90,4,129.9,1,0,0,1,0,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,115.0,1,19,19,191,171,109.1,0,0,1,0,1,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,Enrolled +1,17,1,9773,1,1,121.0,1,38,38,9,8,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,7,1,9085,1,40,130.0,1,1,1,4,4,130.0,1,0,0,1,0,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,140.0,1,19,38,4,4,138.3,0,0,0,1,1,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,6,9773,1,1,116.0,1,19,1,4,4,110.1,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,131.0,1,38,38,9,9,127.9,0,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,Graduate +1,51,1,9991,0,42,110.0,1,19,37,5,9,128.2,0,0,0,0,0,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,138.0,1,19,19,5,8,124.9,1,0,0,1,0,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,172.0,1,1,1,4,9,167.1,0,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +5,39,1,9991,0,1,120.0,1,37,37,9,9,138.1,0,0,0,1,1,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,37,38,3,7,96.7,0,0,0,1,1,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,15,1,9130,1,1,133.1,41,1,1,4,4,100.0,0,0,0,1,0,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9119,1,1,122.0,1,19,19,9,9,114.7,0,0,0,1,1,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,192,192,96.0,1,0,0,1,0,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,160.0,1,1,37,9,10,118.0,0,0,0,1,0,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,Enrolled +1,18,4,9119,1,1,134.0,1,19,38,194,175,124.9,1,0,1,1,1,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,4,19,4,5,98.0,0,0,0,1,1,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +5,43,1,9991,0,3,130.0,1,3,3,1,1,130.0,0,0,0,1,0,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,120.0,1,19,19,4,5,114.8,1,0,1,0,0,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,6,8014,0,1,134.0,1,3,19,2,4,120.7,1,0,0,1,0,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,133.1,1,37,37,9,9,109.7,0,0,0,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9070,1,1,128.0,1,19,19,3,3,123.5,1,1,0,0,1,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,133.1,1,1,19,5,9,130.0,0,0,0,1,1,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,Graduate +1,7,1,9991,0,40,120.0,1,43,3,3,3,120.0,0,0,0,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,Enrolled +1,17,5,9556,1,1,139.0,1,19,19,9,8,121.3,1,0,0,1,0,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,156.0,1,3,19,3,3,151.1,0,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,Graduate +1,16,2,9147,1,1,132.0,1,37,37,9,9,122.6,1,0,0,1,0,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,130.0,1,2,3,9,6,130.0,0,0,0,1,1,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,133.1,1,1,1,1,6,120.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,1,1,1,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,133.0,1,3,3,1,1,126.2,1,0,0,1,0,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,Graduate +1,18,2,9147,1,1,140.0,1,37,37,5,9,124.3,1,0,0,1,1,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,44,1,9003,1,39,150.0,1,37,38,4,8,150.0,0,0,0,1,0,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,140.0,1,37,19,191,163,129.3,1,0,1,1,0,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +4,7,1,9500,1,3,130.0,1,3,19,2,3,130.0,0,0,0,1,0,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9070,1,1,131.0,1,19,19,7,7,125.1,0,0,0,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,Enrolled +1,10,1,9773,1,1,152.0,22,38,37,5,9,152.0,1,0,0,1,0,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,123.0,1,34,38,0,7,120.2,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,131.0,1,3,19,4,4,130.3,1,0,0,1,1,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,115.0,1,1,1,5,4,108.0,1,0,0,1,0,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,130.0,1,38,37,9,9,144.0,0,0,0,1,0,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9238,1,1,134.0,1,3,1,3,4,133.0,1,0,0,1,0,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,Graduate +1,51,1,9670,1,1,133.1,1,3,1,3,10,116.2,0,0,0,1,1,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,139.0,0,0,0,1,1,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,126.0,1,19,1,9,9,122.5,1,0,0,0,0,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,121.0,1,19,19,9,9,126.3,1,0,0,1,0,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9003,1,1,133.1,1,38,38,4,8,115.0,0,0,1,1,1,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,19,37,9,9,151.5,0,0,1,0,1,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9853,1,40,110.0,1,41,3,2,1,110.0,0,0,1,1,0,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,17,5,9238,1,1,131.0,1,19,37,5,7,120.2,1,0,0,1,0,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,7,1,9070,1,3,140.0,1,37,37,7,7,140.0,0,0,0,0,1,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +4,39,1,9254,1,1,140.0,1,38,37,9,9,112.0,0,0,1,1,0,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,Dropout +1,18,3,9853,1,1,122.0,1,38,37,9,5,120.3,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9070,1,1,125.0,1,1,38,9,7,118.0,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Enrolled +1,1,3,9670,1,1,111.0,1,1,1,5,5,105.4,0,0,0,1,0,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +2,39,1,9254,1,1,130.0,1,37,37,4,7,120.0,1,0,0,1,0,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,160.0,1,37,37,9,9,160.0,1,0,0,1,0,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,39,1,9147,1,12,133.1,1,37,37,9,9,140.0,0,0,0,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9147,1,1,118.0,1,1,2,10,10,117.3,1,0,0,1,0,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,3,9085,1,1,130.0,1,1,19,9,9,121.3,1,0,0,1,0,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,9,130.0,0,0,0,1,0,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,3,9085,1,1,130.0,1,19,37,5,5,121.3,1,0,0,1,0,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,Enrolled +1,1,2,9254,1,1,120.0,1,19,19,9,9,116.5,1,0,0,1,0,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,Graduate +2,39,1,9500,1,1,140.0,1,37,37,9,4,127.3,0,0,0,1,1,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,118.0,1,37,38,8,7,115.2,1,0,0,1,0,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,17,3,9238,1,1,125.0,1,19,19,7,8,121.5,0,0,0,1,0,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,125.0,1,19,19,5,5,114.5,1,0,0,1,0,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,136.0,1,39,1,3,4,134.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,115.0,1,3,2,4,5,112.6,0,0,0,1,1,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,53,1,9003,1,1,130.0,1,19,1,9,9,130.0,0,0,1,1,1,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,Enrolled +1,1,3,9773,1,1,136.0,1,3,1,5,3,129.0,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,3,150.0,1,2,3,4,7,173.3,1,0,0,1,0,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,140.0,1,1,19,7,7,129.9,1,0,0,1,0,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,Dropout +1,7,1,9119,1,1,140.8,1,34,34,0,0,134.0,0,0,0,1,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9254,1,1,115.0,1,37,19,5,5,109.8,1,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,137.0,1,1,1,4,4,127.6,1,0,0,1,0,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,Graduate +4,7,1,9238,1,40,130.0,1,34,34,99,99,130.0,0,0,1,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9147,1,1,123.0,1,37,37,9,9,106.2,0,0,0,1,0,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,121.0,1,1,3,3,7,113.0,1,0,0,1,1,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,140.0,1,3,1,2,3,129.9,0,0,0,1,0,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,130.0,1,38,38,9,7,130.0,0,0,0,1,1,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,Dropout +1,51,1,9070,1,1,132.0,1,19,19,153,153,120.0,0,0,0,1,0,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,9119,1,1,110.0,1,37,37,9,9,106.8,0,0,0,1,1,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,124.0,1,19,37,4,4,126.8,0,0,0,1,0,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,Enrolled +1,18,3,9147,1,1,133.1,1,1,38,4,7,101.0,1,0,0,0,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9147,1,1,125.0,1,38,19,7,7,125.7,0,0,0,1,0,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,4,9853,1,1,121.0,1,38,38,5,7,113.7,1,0,0,1,0,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,1,1,9,6,105.0,1,0,1,0,0,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,143.0,1,5,1,2,5,136.7,0,0,0,1,0,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,Graduate +1,1,2,9556,1,1,142.0,1,1,19,4,5,130.5,1,0,0,1,0,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,131.0,1,19,19,7,5,122.1,1,0,0,1,0,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,132.0,1,1,37,4,7,121.8,1,0,0,1,0,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,123.0,1,37,37,3,3,123.0,1,0,0,1,0,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,129.0,1,19,38,2,7,126.9,1,0,0,1,0,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Enrolled +1,1,4,9238,1,1,118.0,1,19,38,9,9,110.0,0,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,125.0,1,3,1,4,4,119.4,1,0,0,1,0,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,Enrolled +1,17,1,9085,1,1,131.0,1,1,3,4,1,129.3,1,0,0,1,0,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,147.0,1,37,37,9,9,134.3,0,0,0,1,0,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,Graduate +2,39,2,9670,1,19,133.1,1,37,37,9,9,135.6,0,0,0,1,0,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,152.0,1,37,19,9,9,137.0,1,0,0,1,0,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,118.0,1,12,1,4,10,115.7,0,0,0,1,1,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,Enrolled +1,15,1,9119,1,1,133.1,41,1,3,5,8,100.0,0,0,1,1,1,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,5,9119,1,1,131.0,1,1,19,4,7,126.8,0,0,0,0,1,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,132.0,1,19,38,9,7,119.1,0,0,0,0,1,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,8014,0,1,120.0,1,37,37,5,5,161.1,0,0,0,1,1,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,18,5,9500,1,1,137.0,1,19,1,1,10,129.3,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,118.0,1,37,19,5,5,119.1,1,0,0,1,0,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,134.0,1,38,38,9,9,122.0,1,0,0,1,1,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,163.0,1,1,1,4,3,149.7,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,140.0,1,38,38,9,7,140.0,0,0,0,1,0,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,Enrolled +1,17,4,9147,1,1,122.0,1,19,19,5,7,116.4,1,0,1,1,0,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,140.0,1,3,37,3,7,116.9,0,0,0,1,1,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,5,2,9238,1,1,123.0,1,40,38,2,9,118.1,1,0,0,1,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,130.0,1,3,19,2,3,133.9,0,0,0,1,0,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,125.0,1,1,38,4,7,114.9,1,0,0,1,0,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,130.0,1,1,1,4,10,115.2,0,0,0,1,1,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,124.0,1,38,19,9,7,129.6,1,0,0,1,1,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,139.0,1,38,38,7,5,133.4,0,0,0,1,0,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9254,1,1,125.0,1,38,38,5,5,115.6,1,0,0,1,0,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,147.0,1,37,37,9,9,142.8,1,0,0,1,0,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9003,1,1,144.0,1,19,19,9,9,132.8,0,0,0,1,1,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,12,133.1,1,19,1,9,1,130.0,0,0,0,1,1,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,140.0,1,37,37,9,6,135.5,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,6,9254,1,1,102.0,1,3,1,2,2,101.7,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,133.1,1,19,38,5,5,131.8,1,0,1,1,0,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,Graduate +1,44,1,171,1,39,150.0,1,4,4,2,2,150.0,0,0,0,1,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,53,1,9254,1,42,110.0,1,1,1,4,7,111.8,1,0,0,1,0,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,121.0,1,19,38,6,6,116.1,1,0,0,1,1,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,Graduate +1,17,4,9773,1,1,127.0,1,1,19,4,1,115.8,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,37,37,9,7,160.0,1,0,0,0,1,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,15,170.0,1,34,1,90,2,101.0,0,0,0,1,0,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,125.0,1,3,3,3,3,116.6,1,0,0,0,0,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,4,9070,1,1,117.0,1,1,1,3,3,125.4,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,146.0,1,19,37,7,7,133.8,1,0,0,1,0,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,142.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,3,116.0,1,3,3,2,2,128.2,0,0,0,1,0,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,37,37,7,7,116.5,1,0,0,1,0,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,118.0,1,19,19,5,7,117.8,0,0,0,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,Graduate +1,18,3,9670,1,1,119.0,1,38,38,9,9,115.2,1,0,0,1,0,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,131.0,1,3,19,3,10,123.3,0,0,0,1,1,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,Enrolled +1,17,1,9254,1,1,136.0,1,39,3,3,3,128.7,1,0,0,1,0,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9500,1,1,140.0,1,37,38,5,7,126.0,1,0,0,1,0,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +1,44,1,9119,1,39,150.0,1,19,3,5,2,150.0,0,0,0,1,1,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,43,1,9773,1,1,137.0,1,38,37,9,5,127.9,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,119.9,0,0,0,1,0,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,18,2,9773,1,1,132.0,24,37,19,9,7,119.1,1,0,0,1,0,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,43,1,8014,0,1,133.1,1,34,34,0,0,100.0,0,0,0,1,0,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,1,133.1,1,38,19,9,9,128.0,1,0,0,0,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,125.0,1,19,19,5,4,136.2,1,0,1,1,1,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,132.0,1,38,38,0,5,126.1,0,0,0,1,1,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9670,1,1,130.0,1,1,1,9,10,116.3,1,0,0,1,0,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,3,9773,1,1,150.0,1,19,38,4,4,146.5,1,0,0,1,0,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +4,39,2,8014,0,1,160.0,1,37,38,7,5,115.0,0,0,0,1,0,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,135.0,1,19,1,9,9,122.1,1,0,0,1,0,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,136.0,1,3,3,9,9,136.0,1,0,1,0,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,3,3,7,1,130.0,1,0,0,1,1,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9119,1,19,133.1,1,19,19,5,3,100.9,1,0,0,1,1,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,Enrolled +1,17,1,9254,1,1,137.0,1,34,38,0,7,137.7,1,0,1,0,0,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,19,133.1,1,37,37,90,7,110.0,0,0,0,0,0,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,144.0,1,38,37,9,9,125.8,0,0,0,1,0,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,1,4,9070,1,1,167.0,1,1,1,7,3,158.3,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,133.0,1,37,19,7,7,126.7,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,118.0,1,38,38,7,7,121.2,1,0,0,1,0,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,19,133.1,1,19,19,4,4,150.0,0,0,0,0,1,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9085,1,1,166.0,1,1,19,4,3,158.7,0,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Graduate +1,44,1,9254,1,39,130.0,1,39,39,194,193,130.0,1,0,1,1,1,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,1,9085,1,1,140.0,1,37,38,7,9,129.9,0,0,0,1,0,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,9147,1,3,120.0,1,1,39,4,7,120.0,0,0,0,1,0,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,5,9254,1,1,118.0,1,19,37,5,5,120.5,1,0,0,1,1,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,Dropout +1,17,3,9070,1,1,120.0,1,3,1,4,4,116.9,1,0,0,1,0,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Graduate +1,43,5,9238,1,1,101.0,24,37,19,9,7,119.9,1,0,1,0,0,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,128.0,1,19,1,4,3,117.2,1,0,0,1,0,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,Graduate +1,1,3,9254,1,1,118.0,1,1,19,9,9,111.7,1,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,137.0,1,37,37,0,90,134.2,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,144.0,1,3,39,2,3,129.0,1,0,0,1,0,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,125.0,1,37,38,7,7,122.2,1,0,0,1,0,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,147.0,1,3,1,4,3,136.7,0,0,0,1,0,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,39,120.0,1,37,37,1,9,137.7,1,0,0,0,1,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,160.0,1,1,37,9,9,146.0,1,0,0,1,0,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9238,1,39,130.0,1,1,19,4,5,127.4,0,0,1,0,1,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,3,1,2,4,154.9,0,0,1,0,1,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,Dropout +1,17,2,9670,1,1,129.0,1,19,19,5,4,129.4,0,0,0,1,0,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,137.0,1,3,19,3,5,136.3,1,0,0,1,0,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,100.0,1,37,37,9,6,153.5,0,0,1,0,1,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,134.0,1,38,38,7,9,132.8,1,0,0,1,0,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,137.0,1,37,37,7,9,130.8,1,0,0,1,0,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,133.1,1,37,37,1,1,97.0,0,0,0,1,1,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,143.0,1,3,38,2,10,129.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,9,3,127.1,0,0,0,1,0,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,Enrolled +2,7,1,9147,1,3,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,160.0,1,37,37,9,9,160.0,0,0,0,1,1,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,162.0,1,3,4,3,3,154.1,0,0,0,1,0,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,Graduate +1,1,2,9147,1,1,119.0,1,19,37,4,5,113.8,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,139.0,1,19,1,9,5,135.0,1,0,0,1,0,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,120.0,1,1,38,5,5,116.3,1,1,0,1,1,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,2,9500,1,1,135.0,1,1,19,4,10,133.5,1,0,0,1,0,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,Graduate +1,1,3,9119,1,1,117.0,1,1,1,3,5,111.1,0,0,0,1,1,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,140.0,1,1,39,4,1,128.1,1,1,0,1,1,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9003,1,1,133.1,1,37,37,3,8,130.0,0,0,1,1,0,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,134.0,1,19,37,5,5,125.3,1,0,0,1,1,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,37,38,9,9,114.0,0,0,0,1,0,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,38,37,4,5,102.5,0,0,1,0,1,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,143.0,1,19,37,5,9,156.3,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,130.0,1,19,1,9,5,122.1,1,0,0,1,0,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,Graduate +1,39,2,8014,0,1,100.0,1,35,37,90,90,100.0,0,0,0,1,0,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +2,39,2,9670,1,1,100.0,1,37,37,9,9,110.0,0,0,0,1,1,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,2,9853,1,1,126.0,1,1,19,2,10,126.0,1,0,0,1,0,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,Enrolled +1,18,3,9070,1,1,131.0,1,1,37,5,5,122.3,1,0,0,0,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,150.0,1,19,37,9,8,138.5,0,0,0,1,0,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,2,171,1,1,146.0,1,3,3,3,3,155.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,120.0,1,19,19,9,7,118.6,1,0,0,1,0,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,145.0,1,38,38,9,9,125.5,1,0,0,1,0,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9070,1,1,143.0,1,1,1,9,7,134.6,1,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Dropout +1,51,1,8014,0,1,121.0,1,1,38,5,7,112.3,0,0,0,1,0,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,130.0,1,37,1,9,8,120.2,1,0,0,1,1,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +2,7,1,9254,1,2,100.0,1,37,37,9,9,100.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,1,130.0,1,37,3,9,3,137.0,1,0,0,1,1,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,0,0,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,140.0,1,38,37,7,7,105.2,0,0,0,1,1,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,131.0,1,1,19,4,7,135.9,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,108.0,1,19,38,9,7,110.5,1,0,0,1,0,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,111.0,1,1,38,5,9,107.5,0,0,0,1,1,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9147,1,1,147.0,1,37,37,9,6,142.8,1,0,1,0,0,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,170.0,1,38,19,4,8,134.7,0,0,0,1,0,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,138.0,1,4,19,2,3,124.7,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,125.0,1,37,38,9,9,125.0,1,0,1,0,0,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,118.0,1,38,38,5,5,114.2,1,0,0,1,0,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,3,3,1,5,118.8,0,0,0,1,0,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,Graduate +1,1,3,9085,1,1,131.0,1,37,19,9,8,136.3,1,0,1,0,0,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,Dropout +1,43,1,9991,0,1,141.0,1,37,37,9,9,131.9,0,0,0,1,0,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,42,1,9070,1,1,120.0,1,3,2,3,1,116.9,0,0,0,1,1,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,130.0,1,1,1,9,7,152.1,0,0,0,1,1,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,12,133.1,1,34,34,0,0,135.0,0,0,0,1,0,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,130.0,1,38,38,7,7,122.5,1,0,0,1,0,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,160.0,1,1,1,194,131,128.4,0,0,0,1,0,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,132.0,1,1,38,7,7,129.6,0,1,0,1,1,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,1,1,3,9,118.4,0,0,0,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,Graduate +1,1,2,9556,1,1,133.1,1,19,19,9,9,104.5,1,0,0,1,0,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,53,1,9003,1,42,150.0,1,1,38,8,8,150.0,0,0,0,1,0,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,144.0,1,3,1,2,3,126.9,0,0,0,1,0,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,150.0,1,3,3,2,2,120.0,0,0,1,0,0,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,3,3,2,10,160.0,1,0,0,1,1,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,129.0,1,1,1,9,9,120.0,0,0,0,1,1,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,Graduate +4,39,1,9003,1,12,133.1,1,37,37,9,6,160.0,0,0,0,1,0,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,Graduate +2,39,2,9991,0,1,100.0,1,37,37,9,9,100.0,1,0,0,1,1,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,115.0,1,19,1,3,8,123.4,0,0,0,1,0,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,124.0,1,19,37,3,8,117.5,1,0,0,1,1,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,Enrolled +1,1,6,9254,1,1,129.0,1,38,19,9,5,117.8,1,0,0,1,0,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,127.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,19,133.1,1,38,38,7,8,120.0,0,0,0,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +6,39,2,9147,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,4,9500,1,1,148.0,1,3,19,4,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,39,150.0,1,1,3,4,1,150.0,0,0,0,1,1,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,145.0,1,37,37,9,1,150.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,115.7,1,0,0,1,0,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,16,1,171,1,1,122.0,1,19,37,9,7,133.9,1,0,0,1,1,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,124.0,1,37,38,9,8,114.6,1,0,0,1,1,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,120.0,1,38,37,9,8,113.4,1,0,0,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,40,140.0,1,37,37,6,6,140.0,0,0,0,1,0,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,Graduate +1,1,5,9670,1,1,133.1,1,9,1,2,4,133.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,100.0,1,19,19,4,4,113.0,0,0,0,1,1,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,Enrolled +4,39,1,9003,1,1,133.1,1,19,19,9,4,100.7,0,0,0,1,0,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,Enrolled +1,17,2,9147,1,1,133.1,1,38,38,4,7,109.0,1,0,0,1,1,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,15,1,9238,1,1,140.0,26,19,19,9,6,140.0,0,0,0,1,1,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,3,9500,1,1,114.0,1,1,1,5,5,114.5,1,0,0,1,0,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,134.0,1,1,38,4,4,120.7,0,0,1,0,0,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,1,133.1,1,37,11,9,7,96.0,0,0,1,0,1,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,131.0,1,3,3,3,3,135.9,0,0,0,1,0,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,Graduate +1,43,2,9500,1,1,130.0,1,38,37,4,4,126.8,1,0,0,1,1,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,19,37,7,7,124.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9670,1,1,120.0,1,1,19,4,5,100.0,0,0,0,1,0,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,145.0,1,38,38,9,10,139.8,1,0,0,1,0,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,141.0,1,19,38,5,7,125.5,0,0,0,1,0,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,Graduate +5,39,1,9147,1,1,133.1,1,1,19,4,7,114.0,0,0,0,0,1,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9991,0,1,110.0,1,37,37,1,4,120.0,1,0,0,0,1,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,172.0,41,37,37,5,5,153.8,1,0,0,1,0,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,1,9556,1,1,140.0,1,3,3,1,7,131.6,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,4,3,137.5,0,0,0,1,1,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,137.0,1,19,38,3,9,124.9,0,0,0,1,0,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,139.0,1,18,18,1,1,130.8,1,0,0,0,0,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,120.0,1,38,37,5,9,131.4,1,0,0,1,1,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,Graduate +1,53,1,9085,1,42,160.0,1,19,37,4,9,160.0,1,0,0,1,0,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,Graduate +1,18,1,9670,1,1,140.0,1,1,37,9,9,130.2,1,0,0,1,1,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9853,1,1,140.0,1,37,37,6,6,125.2,0,0,1,1,0,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,Graduate +1,1,4,9556,1,1,122.0,1,37,1,5,4,123.9,0,0,0,1,0,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,1,19,3,3,123.0,0,0,0,1,0,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,140.0,1,19,38,4,0,140.0,1,0,0,1,1,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,129.0,1,1,1,4,2,126.2,0,0,1,0,0,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Dropout +2,17,3,8014,0,1,123.0,1,19,37,3,3,113.2,0,0,1,0,0,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,133.1,1,38,19,9,10,114.5,0,0,0,1,0,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,Enrolled +1,51,1,9991,0,1,141.0,1,19,38,5,7,100.0,0,0,0,1,0,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,Graduate +1,17,2,171,1,1,131.0,1,2,1,3,3,148.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,19,133.1,1,37,37,9,9,100.0,1,0,1,0,0,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,117.0,1,1,38,5,1,113.5,1,0,0,1,0,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,116.0,1,19,38,9,9,119.5,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,1,19,3,4,116.7,0,0,0,1,0,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,129.0,1,2,3,2,2,128.3,1,0,0,1,0,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,Enrolled +1,1,3,9085,1,1,138.0,1,1,1,4,8,128.7,1,0,0,1,0,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,5,9147,1,1,118.0,1,19,19,9,9,114.2,1,0,0,1,1,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.0,1,3,19,2,8,126.7,0,0,0,1,0,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,Enrolled +1,16,1,171,1,1,158.0,1,38,37,9,9,164.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,43,3,9500,1,1,126.0,1,38,37,6,5,124.3,1,0,0,1,0,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,123.0,1,38,38,9,5,124.8,0,0,0,0,0,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9130,1,1,160.0,1,3,3,3,2,155.1,1,0,0,1,0,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Graduate +4,43,1,9500,1,1,130.0,1,37,37,9,9,103.7,0,0,0,1,0,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,Enrolled +1,16,2,9238,1,1,133.0,1,19,38,4,5,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,130.0,1,38,37,9,9,124.8,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,135.0,1,37,1,7,7,132.8,1,0,0,1,0,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9119,1,1,128.0,1,1,38,4,7,100.0,0,0,0,1,1,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9085,1,1,120.0,1,1,1,9,10,115.0,0,0,0,0,0,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,2,9070,1,1,142.0,1,3,1,2,4,141.0,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9853,1,1,124.0,1,38,37,5,3,118.1,1,0,0,0,0,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,145.0,1,37,37,9,9,132.0,1,0,0,1,0,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,114.0,1,38,38,9,10,120.0,0,0,0,1,0,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,140.0,1,3,3,2,2,146.4,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,5,9773,1,1,130.0,1,34,38,0,8,128.3,1,0,0,0,0,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,3,9670,1,1,110.0,1,19,1,4,4,107.5,1,0,0,1,0,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,135.0,1,37,37,5,5,126.3,1,1,0,1,0,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,Graduate +2,1,1,9254,1,1,140.0,1,19,38,4,7,133.0,0,0,0,1,1,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,1,150.0,1,37,37,9,9,115.0,0,0,0,1,1,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9070,1,1,130.0,1,1,1,5,3,112.0,1,0,0,1,1,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,110.0,1,1,37,9,9,105.1,1,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,131.0,1,37,37,9,7,118.4,0,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,136.0,1,38,38,7,7,127.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9773,1,1,127.0,1,19,19,5,8,120.0,0,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,139.0,1,37,19,9,8,142.2,1,0,0,1,1,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,4,127.3,1,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,16,4,9773,1,1,109.0,1,37,37,9,3,137.0,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,Graduate +1,53,1,9085,1,42,130.0,1,19,1,9,9,130.0,1,0,1,0,0,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,Enrolled +1,7,1,171,1,3,130.0,1,1,2,9,2,130.0,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,120.0,1,37,37,9,9,120.0,1,0,1,1,0,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,Dropout +1,2,1,9853,1,1,120.0,1,19,38,9,9,122.5,0,0,0,0,0,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,19,133.1,1,2,1,8,8,120.0,1,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,43,1,9773,1,1,121.0,1,1,1,4,5,121.0,1,0,0,1,1,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9147,1,1,120.0,1,38,19,9,9,111.3,1,0,0,1,0,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,38,19,5,0,141.8,0,0,0,1,0,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,131.0,1,1,1,7,4,127.2,1,0,1,1,1,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,11,9,10,131.5,0,0,0,1,0,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,3,19,2,3,125.7,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9556,1,1,136.0,1,19,19,9,9,129.5,1,0,0,1,0,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,Graduate +1,42,1,9119,1,1,120.0,1,5,5,2,2,115.0,0,0,0,1,1,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,Dropout +1,17,6,9119,1,1,124.0,1,19,19,4,0,126.1,1,0,0,1,1,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,160.0,1,19,38,9,9,140.8,1,0,0,1,1,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,123.0,1,37,37,9,9,115.0,1,0,0,1,0,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,Graduate +2,39,2,9670,1,1,133.1,41,37,19,9,9,130.0,0,0,0,1,0,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9670,1,6,170.0,1,34,34,0,0,111.6,0,0,0,1,1,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,138.0,1,1,3,9,1,123.0,1,0,0,1,0,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,1,37,6,6,130.0,1,0,0,1,1,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,Graduate +1,17,2,9119,1,1,133.1,1,1,2,3,3,117.0,1,0,0,1,1,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,Enrolled +1,1,5,9254,1,1,131.0,1,19,37,9,9,123.7,0,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,130.0,1,1,1,9,4,140.0,0,0,0,0,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9773,1,1,135.0,1,1,19,4,10,129.4,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,132.0,1,1,19,3,3,122.9,1,0,0,1,0,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,115.0,1,37,37,9,8,129.0,1,0,1,0,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9238,1,1,160.0,1,3,19,2,1,116.1,0,0,1,1,0,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,12,133.1,1,37,1,9,10,130.0,0,0,0,1,1,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,129.0,1,37,38,4,9,121.0,1,0,0,1,0,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9119,1,1,130.0,1,38,19,7,3,119.9,1,0,1,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,133.1,1,37,37,9,9,100.2,1,0,0,0,0,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,4,38,4,5,140.0,1,0,0,1,0,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9991,0,43,140.0,1,40,5,3,3,140.0,0,0,0,1,0,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,Graduate +1,43,2,9670,1,1,129.0,1,3,3,5,5,122.4,1,0,0,1,0,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,6,116.4,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,130.0,1,1,3,9,2,130.0,1,0,1,1,0,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,139.0,1,38,38,9,5,130.5,1,0,0,1,0,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,1,100.0,1,19,19,9,9,100.0,0,0,1,1,1,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,Dropout +1,7,1,9773,1,43,140.0,1,19,1,4,8,140.0,0,0,0,1,1,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9003,1,1,125.0,1,1,38,4,7,125.0,1,0,0,1,0,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,Graduate +1,39,2,9147,1,19,133.1,1,38,19,4,10,116.3,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,3,9500,1,1,132.0,1,37,37,4,3,127.3,1,0,0,1,0,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,127.0,1,1,37,4,8,121.1,1,0,0,1,1,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9670,1,1,140.0,1,37,37,6,6,120.0,0,0,0,1,0,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,133.0,1,37,37,9,5,139.2,1,0,1,1,1,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,140.0,1,19,19,1,4,133.3,1,0,0,1,0,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,120.0,1,3,3,2,2,112.0,0,0,0,1,0,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,Enrolled +2,1,1,9147,1,1,137.0,1,19,37,9,9,124.4,0,0,0,1,0,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,130.0,1,38,38,9,3,145.6,0,0,0,1,1,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,6,9670,1,1,120.0,1,1,14,4,5,113.7,1,0,0,1,0,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,120.0,1,38,19,9,3,112.7,0,0,0,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,122.0,1,37,37,9,9,114.3,1,0,0,0,0,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,8014,0,1,133.1,1,3,1,1,7,100.0,0,0,0,1,0,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,4,19,3,5,123.7,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,4,4,4,2,120.0,1,0,0,1,1,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,3,9238,1,1,137.0,1,1,1,3,3,131.4,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,Graduate +1,43,1,9130,1,1,130.0,1,1,1,1,1,130.0,1,0,0,1,1,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9773,1,1,121.0,1,1,19,9,7,118.9,1,0,0,1,0,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,133.1,1,19,38,9,8,128.2,1,0,0,1,1,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,Enrolled +1,43,1,9070,1,1,134.0,1,19,37,7,7,132.7,1,0,0,1,1,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9147,1,1,125.0,1,1,38,7,7,120.1,0,0,1,1,1,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,129.0,1,37,37,9,9,117.1,1,0,0,1,0,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,145.0,1,38,38,5,7,138.0,1,0,0,1,0,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,120.0,105,1,1,9,9,119.0,1,0,1,0,0,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,131.0,1,1,19,9,9,127.0,0,0,0,1,1,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,100.0,1,38,19,6,10,112.8,0,0,0,1,0,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,2,9070,1,1,145.0,1,38,19,7,7,130.0,1,0,0,1,1,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,126.0,1,37,38,7,7,119.0,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,Graduate +1,1,2,9773,1,1,137.0,1,1,19,7,7,133.2,1,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,128.0,1,38,38,9,7,128.4,1,0,0,1,0,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9085,1,39,150.0,1,19,38,194,193,150.0,1,0,0,1,0,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,Enrolled +1,1,4,171,1,1,146.0,1,1,1,9,5,151.3,1,0,0,1,0,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,Graduate +1,1,6,9147,1,1,139.0,1,19,12,4,4,125.0,1,0,0,1,0,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,1,1,9,4,123.4,1,0,0,1,0,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9670,1,1,127.0,1,3,4,2,2,122.8,0,0,0,1,1,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,127.0,1,38,37,5,7,121.8,1,0,1,1,0,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,39,1,9003,1,1,130.0,1,38,37,7,7,120.0,0,0,0,1,1,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,Graduate +1,1,2,9238,1,1,100.0,1,38,1,7,7,99.3,1,0,0,1,0,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9119,1,1,160.0,1,37,37,9,6,153.7,0,0,0,1,1,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9500,1,1,138.0,1,3,1,2,5,134.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,Graduate +1,17,4,9254,1,1,124.0,1,3,3,3,3,126.1,1,0,0,1,0,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,Dropout +2,7,1,9147,1,3,110.0,1,19,1,9,9,110.0,0,0,0,1,0,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,143.0,1,3,19,3,10,126.8,0,0,0,1,1,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,Graduate +1,17,2,9670,1,1,110.0,1,1,1,4,10,115.3,1,0,0,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,9119,1,1,129.0,1,2,37,2,9,121.6,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Enrolled +1,15,1,9254,1,1,140.0,26,19,1,9,7,140.0,1,0,0,0,0,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,118.0,1,19,38,7,9,113.5,1,0,0,1,0,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,5,9853,1,1,110.0,1,19,37,7,7,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,171,1,1,145.0,1,3,1,2,10,114.5,1,0,0,1,1,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,43,2,9670,1,1,125.0,1,38,19,4,3,106.6,1,0,0,1,0,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Dropout +4,39,1,9500,1,19,133.1,1,37,37,5,7,100.0,0,0,0,0,0,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,133.0,1,1,1,9,9,119.7,1,1,1,1,1,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,Graduate +1,1,2,9853,1,1,134.0,1,1,38,9,8,122.5,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,120.0,1,19,37,3,9,100.0,0,0,0,1,0,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,37,37,6,6,100.0,0,0,1,0,1,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,160.0,1,38,38,6,6,160.0,1,0,0,1,0,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,7,116.0,0,0,0,1,0,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,Graduate +1,18,3,9500,1,1,145.0,1,1,1,4,8,133.6,1,0,0,1,0,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,3,19,2,3,124.5,0,0,0,1,0,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,125.0,1,19,38,9,8,118.3,0,0,0,1,1,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,Dropout +1,5,1,9085,1,1,150.0,1,1,1,4,4,139.4,0,0,0,1,0,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9773,1,1,133.1,1,38,38,9,5,117.0,0,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,142.0,1,1,1,4,7,131.0,1,0,0,1,0,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,1,19,3,3,154.3,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9147,1,1,135.0,1,37,38,9,9,128.0,1,0,1,1,0,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,149.0,1,37,37,9,9,138.0,0,0,0,1,1,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,38,9,9,129.2,1,0,0,1,0,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9556,1,1,147.0,1,3,4,3,2,100.0,0,0,0,1,0,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,12,133.1,1,37,37,10,9,144.0,0,0,0,1,1,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9254,1,1,100.0,1,3,19,3,5,115.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9670,1,1,140.0,1,1,1,4,3,133.4,0,0,0,1,1,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,Enrolled +1,1,2,171,1,1,127.0,1,3,39,1,3,133.5,1,0,0,1,1,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9147,1,1,112.0,1,1,19,3,5,107.8,1,0,0,1,0,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,Enrolled +2,39,1,9147,1,1,110.0,1,37,37,9,10,140.0,0,0,0,1,0,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,120.0,1,1,3,175,121,105.9,0,0,0,1,0,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,Enrolled +1,1,1,9238,1,1,168.0,1,37,37,9,9,149.5,0,0,0,1,0,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,Graduate +1,17,1,8014,0,1,141.0,1,34,34,0,0,136.1,0,0,0,1,0,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,140.0,1,1,1,4,3,130.7,1,0,0,1,1,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,Dropout +1,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,134.0,1,1,37,8,7,120.5,1,0,0,1,1,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,160.0,1,1,38,4,7,141.5,1,0,0,1,1,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,122.0,1,38,37,191,195,112.9,1,0,0,1,0,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,41,1,1,9,7,163.1,1,0,0,0,0,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,1,110.0,1,1,37,9,9,126.0,1,0,0,1,1,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,Enrolled +1,17,1,9670,1,1,109.0,1,1,1,4,4,108.0,0,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,131.0,2,37,1,9,3,126.1,1,0,0,1,1,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,1,2,9556,1,1,125.0,1,38,1,9,3,116.3,1,0,0,1,0,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,Graduate +1,17,1,9085,1,1,138.0,1,2,19,2,9,126.8,1,0,0,1,0,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,Enrolled +1,1,5,9853,1,1,128.0,1,38,37,9,9,120.3,1,0,1,0,0,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,130.0,1,1,38,4,9,122.7,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,9,133.1,1,37,34,90,90,118.1,1,0,0,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,125.0,1,1,19,4,9,114.5,1,0,0,1,0,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,Graduate +1,1,5,9773,1,1,138.0,1,19,19,9,9,139.4,1,0,0,1,0,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,125.0,1,19,38,3,5,115.9,0,0,0,1,0,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,134.0,1,38,19,5,8,120.7,0,0,0,1,0,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,133.1,41,3,1,3,10,100.0,1,0,0,0,0,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,Dropout +5,39,1,9003,1,1,133.1,1,37,37,9,7,110.0,0,0,1,0,0,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,Dropout +1,17,1,9254,1,1,128.0,1,19,1,5,7,120.7,1,0,1,1,0,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,162.0,1,19,19,4,7,152.9,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,51,1,9238,1,1,121.0,1,3,19,3,10,111.9,1,0,0,1,0,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,Graduate +1,39,2,9991,0,1,172.0,1,19,37,9,8,150.0,1,0,0,1,0,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,116.0,1,19,19,9,8,119.9,1,0,0,1,0,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,125.0,1,19,19,3,10,131.0,1,0,0,1,1,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,39,1,9500,1,4,150.0,1,3,38,3,7,127.0,1,0,0,1,1,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,128.0,1,38,38,9,9,129.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,120.0,1,3,19,4,5,115.5,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,38,38,9,6,160.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,130.0,1,3,1,2,9,130.0,1,0,0,1,0,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,140.0,1,1,19,4,8,124.6,1,0,0,1,0,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,3,3,2,2,150.0,1,0,0,1,0,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9853,1,1,133.1,1,37,19,9,5,138.3,0,0,0,1,0,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,Dropout +1,43,1,9991,0,1,150.0,1,3,3,4,4,100.0,1,0,0,1,1,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,Graduate +1,44,1,9238,1,1,150.0,1,1,38,4,9,145.9,0,0,0,1,0,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,Graduate +1,18,3,9500,1,1,131.0,1,19,1,4,7,127.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,Graduate +1,7,1,9085,1,3,150.0,1,19,37,90,90,140.0,0,0,0,1,1,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,167.0,1,19,19,9,7,156.2,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,140.0,1,1,3,4,5,130.0,0,0,0,1,1,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9238,1,1,132.0,1,1,19,4,9,127.1,1,0,0,1,0,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9119,1,1,133.0,1,3,1,3,4,121.8,1,0,0,1,1,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9670,1,1,133.1,1,1,37,4,5,150.0,0,0,0,1,1,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,150.0,103,37,37,9,9,134.6,0,0,0,1,1,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,6,9773,1,1,131.0,1,34,34,0,0,129.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,139.0,1,3,1,4,1,126.0,1,0,0,1,1,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,138.0,1,1,1,4,8,123.0,0,0,1,0,1,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,Enrolled +5,39,1,9853,1,19,133.1,1,37,37,9,8,118.0,0,0,0,1,0,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,142.0,1,37,38,9,9,137.3,1,0,0,1,0,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,136.0,1,3,38,2,9,125.7,1,0,0,1,0,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,1,1,4,10,128.3,1,0,0,1,0,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,132.0,1,1,37,4,9,127.1,0,0,0,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,122.0,1,19,19,7,7,116.1,1,0,0,1,0,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,140.0,1,1,2,3,3,140.0,0,0,0,1,0,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,Enrolled +1,42,1,9853,1,12,133.1,1,1,3,3,2,133.7,0,0,0,1,0,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,Dropout +2,7,1,9500,1,3,120.0,1,37,19,9,7,120.0,1,0,0,1,0,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,Enrolled +1,1,4,9238,1,1,134.0,1,38,19,7,7,128.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,130.0,1,19,38,4,7,121.3,1,0,0,1,0,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,Graduate +1,39,2,9238,1,1,110.0,1,19,1,5,5,136.5,0,0,0,1,1,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9670,1,1,133.1,1,38,19,9,8,122.9,0,0,1,0,1,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,124.0,1,19,1,9,3,123.7,1,0,0,1,0,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,17,1,9991,0,1,120.0,1,38,3,9,3,116.9,1,0,1,0,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,43,2,9147,1,1,160.0,1,37,37,9,9,96.0,0,0,0,0,0,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,154.0,1,19,37,9,7,140.4,1,0,0,1,0,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,Enrolled +1,17,5,9070,1,1,125.0,1,19,1,5,5,122.6,1,0,0,1,1,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9119,1,1,137.0,1,1,1,4,4,130.4,1,0,1,1,1,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,134.0,1,37,19,9,9,136.8,1,0,0,1,1,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,100.0,1,37,37,0,0,128.0,1,0,0,1,1,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +4,39,1,9130,1,19,133.1,1,37,38,9,4,100.9,0,0,0,1,1,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,127.0,1,1,19,5,7,130.5,1,0,0,1,0,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,1,1,9003,1,1,131.0,1,19,38,5,5,118.4,0,0,0,1,0,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,142.0,1,1,38,5,7,127.7,0,0,0,1,0,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,130.0,1,1,38,4,9,115.0,0,0,0,1,1,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,100.0,0,0,0,1,0,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,134.0,1,1,19,9,5,121.8,1,0,0,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,3,9853,1,1,122.0,1,1,3,5,3,113.6,0,0,0,1,0,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,114.0,1,37,37,7,8,116.7,0,0,0,1,1,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,130.0,1,3,1,3,3,120.5,0,0,0,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,148.0,1,19,19,4,5,143.5,0,0,0,1,0,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,19,9,9,107.0,0,0,0,0,1,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,130.0,1,3,19,5,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,6,120.0,0,0,0,0,0,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,1,2,9853,1,1,123.0,1,19,1,194,103,115.3,1,0,0,1,0,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,Enrolled +1,18,1,9130,1,1,135.0,1,38,19,9,5,121.7,1,0,0,1,0,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,116.0,1,38,38,5,8,110.8,1,0,0,1,0,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,7,1,9147,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9991,0,1,133.1,41,37,37,9,8,114.7,0,0,0,1,0,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,122.0,1,37,37,9,7,120.6,1,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,150.0,1,5,5,2,2,146.2,0,0,0,1,0,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,130.0,1,1,4,3,10,130.0,0,0,0,1,0,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9085,1,19,110.0,1,37,37,90,90,110.0,0,0,0,0,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,140.0,1,1,1,9,9,136.9,1,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,44,1,9085,1,39,150.0,1,19,19,9,9,150.0,1,0,0,1,0,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +2,43,1,9003,1,1,149.0,1,1,1,4,5,156.1,1,0,0,0,1,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9119,1,1,133.1,1,1,1,9,3,136.0,0,0,0,1,1,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,Dropout +1,16,2,9238,1,1,122.0,1,19,37,9,7,127.3,1,0,0,1,0,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,133.0,1,1,1,6,7,134.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,141.0,1,19,38,9,9,130.5,0,0,0,1,1,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,121.0,1,1,3,9,3,123.8,0,0,0,0,1,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,39,140.0,1,1,1,4,3,138.6,0,0,0,1,1,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9991,0,1,145.0,1,2,37,4,9,127.5,1,0,0,1,1,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,100.0,1,37,19,9,2,121.9,0,0,0,0,0,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,120.0,1,38,38,9,9,148.5,0,0,0,1,0,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +5,39,1,9991,0,1,110.0,1,1,1,3,3,119.0,0,0,0,1,1,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9254,1,1,137.0,1,1,38,2,8,122.3,1,0,0,1,1,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,42,1,9238,1,1,133.1,1,1,19,4,9,134.0,0,0,0,1,0,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,38,37,9,7,130.0,1,0,0,1,1,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,Graduate +5,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,120.0,1,37,37,9,9,111.1,0,0,0,1,0,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,124.0,1,38,19,6,10,126.8,1,0,0,1,0,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,Graduate +2,1,1,9500,1,1,151.0,1,37,38,9,7,134.5,0,0,1,1,0,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,133.0,1,19,37,9,8,121.8,1,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,148.0,1,1,19,4,5,135.1,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,120.0,1,19,38,4,8,122.5,0,0,0,0,1,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9070,1,1,140.0,1,37,37,9,10,118.0,0,0,1,1,1,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,3,133.1,1,9,9,90,90,130.0,0,0,0,1,0,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,150.0,1,34,34,0,0,108.0,0,0,0,1,0,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,1,150.0,1,1,38,3,5,120.0,0,0,0,1,1,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,Enrolled +1,44,1,9085,1,39,150.0,1,38,1,5,5,150.0,0,0,0,1,0,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,1,2,9238,1,1,133.1,1,19,19,9,9,106.0,1,0,0,1,0,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,102.0,1,38,38,9,9,99.6,1,0,0,1,0,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,140.0,1,38,19,9,5,130.0,0,0,1,1,0,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9773,1,1,138.0,1,3,1,2,3,135.9,1,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,1,9,4,150.0,1,0,0,1,1,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,Dropout +1,1,6,9147,1,1,127.0,1,1,19,1,6,120.0,1,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,0,0,0,1,1,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,137.0,1,38,38,4,8,126.5,1,0,0,1,0,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,1,19,4,4,132.6,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,130.0,1,1,1,4,9,150.0,0,0,0,1,1,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,146.0,1,3,1,1,3,149.2,1,0,0,1,0,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,129.0,1,38,38,6,6,118.5,1,0,0,1,0,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,131.0,1,19,3,3,2,126.1,1,0,0,1,0,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,Enrolled +1,39,1,9085,1,43,160.0,1,3,39,2,3,172.0,0,0,0,1,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,39,1,9670,1,1,133.1,1,1,1,4,4,112.9,0,0,0,1,0,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,Dropout +2,39,1,9003,1,1,150.0,1,37,37,9,6,140.0,0,0,0,1,1,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,127.0,1,37,38,9,7,115.8,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,133.1,1,1,37,5,9,143.0,1,0,1,1,0,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,9,138.4,1,0,1,1,0,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9070,1,1,125.0,1,1,1,4,4,132.0,0,0,0,0,0,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,5,9130,1,1,160.0,1,3,1,2,9,150.2,1,0,0,1,0,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,1,110.0,1,37,37,9,4,160.0,0,0,0,1,0,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,135.0,1,19,37,5,7,121.4,0,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9670,1,1,135.0,1,19,19,7,10,121.4,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,125.0,1,1,38,4,9,118.4,1,0,0,1,0,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,145.0,1,38,37,5,6,127.5,1,0,0,1,0,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,Graduate +1,43,3,171,1,1,140.0,1,37,38,7,7,143.4,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,134.0,1,37,19,9,10,141.4,1,0,0,1,0,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,130.0,1,29,38,9,8,122.0,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,109.0,1,19,19,4,9,104.1,1,0,1,0,0,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,116.0,1,34,34,0,0,127.0,1,0,0,1,1,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,3,8014,0,19,100.0,1,37,37,9,9,120.0,1,0,0,1,1,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9238,1,1,122.0,1,37,38,4,7,118.2,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,8014,0,1,100.0,1,12,5,9,4,116.5,0,0,1,0,0,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,122.0,1,19,19,193,194,112.6,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,42,3,9500,1,1,136.0,1,1,1,4,4,148.8,1,0,0,1,0,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,137.0,1,19,1,9,9,132.8,0,0,0,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,130.0,1,37,37,6,6,111.9,0,0,1,1,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9254,1,1,116.0,1,19,38,5,5,116.0,1,0,0,1,0,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9500,1,1,131.0,1,1,3,3,2,121.2,1,0,0,1,0,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,141.0,1,1,19,3,3,131.9,1,0,0,1,0,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,120.0,1,37,37,9,10,122.6,0,0,0,1,0,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,Dropout +1,18,5,9119,1,1,136.0,1,3,2,2,3,125.2,1,0,0,1,1,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,125.0,1,19,1,7,4,122.6,0,0,0,1,1,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,139.0,1,19,37,9,9,131.5,1,0,0,1,0,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,Graduate +1,5,1,9853,1,1,119.0,1,1,38,5,8,118.3,1,0,0,1,0,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9773,1,1,125.0,1,1,38,5,6,115.9,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,126.0,1,1,19,4,8,120.1,1,0,0,1,0,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,Graduate +1,17,1,9085,1,1,125.0,1,1,37,4,9,117.0,1,0,0,1,0,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,135.0,1,19,38,7,5,121.0,0,0,0,1,0,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,138.0,1,38,37,3,3,133.1,0,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,148.0,1,19,37,9,5,130.9,0,0,0,0,1,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,145.0,1,12,1,4,10,139.8,1,0,0,1,0,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,118.0,1,37,37,3,5,110.0,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9147,1,1,99.0,1,3,1,3,3,99.7,1,0,1,0,0,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,17,2,9556,1,1,137.0,41,1,1,7,7,124.4,1,0,0,1,0,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,Graduate +1,17,3,9853,1,1,133.1,1,34,34,0,0,115.0,0,0,0,1,0,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,123.0,1,37,38,9,9,113.9,1,0,1,0,0,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,1,4,9238,1,1,125.0,1,19,38,9,6,114.9,1,0,1,1,0,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,Enrolled +1,18,1,8014,0,1,137.0,1,1,1,4,3,123.0,0,0,1,1,0,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,Graduate +1,43,1,8014,0,1,131.0,1,19,37,8,5,125.0,0,0,0,1,1,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9147,1,3,150.0,1,6,27,1,7,150.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,9,4,117.0,0,0,0,1,0,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,133.1,1,37,1,9,10,100.0,0,0,0,1,0,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,Dropout +1,1,3,9670,1,1,121.0,1,1,19,5,5,111.9,1,0,0,1,1,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,133.1,1,1,19,3,3,112.0,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,43,1,9991,0,1,140.0,1,1,1,6,6,100.0,0,0,0,1,1,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,Graduate +2,42,1,9556,1,1,110.0,1,37,37,9,6,140.0,0,0,0,1,1,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,130.0,1,1,1,4,4,124.8,0,0,0,1,0,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,138.0,1,38,37,9,6,126.8,1,0,0,1,1,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,127.0,1,2,37,9,9,115.8,1,0,1,0,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9085,1,1,170.0,1,1,1,4,5,166.6,0,0,1,0,0,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,130.0,1,1,1,4,4,130.0,1,1,0,1,1,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,3,1,2,8,100.0,1,0,0,1,1,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9670,1,1,106.0,1,3,1,2,3,105.7,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,43,1,9556,1,1,140.0,1,37,37,9,9,128.0,1,0,0,0,0,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,127.0,1,1,4,9,10,121.8,0,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,134.0,1,1,1,9,6,130.9,0,0,1,1,0,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,133.1,1,37,37,7,4,132.0,0,0,0,1,1,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,110.0,1,12,3,5,2,100.0,1,0,0,1,1,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,6,9238,1,1,113.0,1,1,38,194,163,112.3,1,0,1,1,0,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,118.0,1,19,19,5,7,121.2,0,0,0,1,1,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,51,1,9773,1,1,158.0,1,1,19,8,8,117.1,1,0,0,1,1,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,Dropout +1,17,1,9070,1,1,119.0,1,37,38,9,8,124.6,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,111.0,1,19,19,3,10,117.7,0,0,0,1,0,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,140.0,1,3,1,5,9,130.0,0,0,0,1,1,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,122.0,1,3,1,9,10,114.7,0,0,0,1,0,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,Graduate +2,39,1,9238,1,19,133.1,1,1,2,4,6,130.0,0,0,0,1,0,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9500,1,1,131.0,1,38,1,5,7,118.4,1,0,0,1,0,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Dropout +1,43,5,9853,1,1,150.0,1,34,34,0,0,150.2,1,0,0,0,0,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,140.0,1,37,19,9,9,166.0,1,0,1,1,1,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9085,1,1,133.1,1,19,37,9,6,130.0,1,0,0,1,0,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,Graduate +1,1,4,9147,1,1,120.0,1,38,38,5,10,111.3,0,0,0,1,1,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,Enrolled +1,1,5,9500,1,1,125.0,1,3,19,4,8,120.3,1,0,0,1,0,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,Enrolled +1,17,2,9556,1,1,136.0,1,1,1,9,9,128.3,0,0,0,1,0,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,133.1,1,38,19,5,5,128.0,0,0,0,1,0,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,9,133.1,1,37,37,5,3,110.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9254,1,1,118.0,1,19,1,4,4,115.9,1,0,0,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,134.0,1,19,37,7,7,136.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,130.0,1,37,37,9,7,119.9,0,0,0,1,0,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9773,1,1,153.0,1,34,34,99,99,133.1,1,0,1,1,0,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,10,133.1,1,12,36,90,90,128.2,0,0,0,0,1,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,1,9991,0,1,112.0,1,43,40,2,2,106.4,0,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,122.0,1,3,3,2,2,122.0,1,0,0,1,0,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,137.0,1,1,19,4,3,121.3,1,0,0,1,1,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,19,133.1,1,3,1,2,5,103.0,0,0,0,1,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,136.0,1,1,19,9,9,131.5,0,0,0,1,0,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,154.0,1,1,3,4,2,164.9,0,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,6,9147,1,1,129.0,1,19,1,9,4,122.0,1,0,0,1,1,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,132.0,1,19,19,9,7,128.0,1,0,0,1,1,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,Graduate +2,39,1,9773,1,19,133.1,1,19,19,9,4,131.0,0,0,1,0,1,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,Dropout +4,39,1,8014,0,1,160.0,1,37,37,5,5,126.0,0,0,0,1,0,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,16,2,9238,1,1,126.0,1,38,37,3,5,127.1,1,0,0,1,0,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9254,1,1,111.0,1,1,19,5,7,109.3,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,133.1,1,37,37,3,10,108.0,0,0,0,1,0,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,Graduate +1,1,4,9773,1,1,140.0,22,1,37,3,9,130.5,1,0,0,1,0,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,140.0,1,1,1,9,5,140.0,0,0,0,1,0,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,Dropout +1,17,3,9670,1,1,125.0,1,1,3,4,3,117.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,150.0,1,37,38,9,9,131.5,1,0,0,1,0,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,5,100.0,0,0,0,0,1,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9773,1,1,133.0,1,19,19,7,7,134.4,1,0,0,1,1,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,135.0,1,19,37,9,9,128.0,1,0,0,1,0,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,5,9670,1,1,115.0,1,1,19,5,5,117.1,0,0,0,1,0,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,Enrolled +1,51,1,9003,1,39,130.0,1,1,19,4,4,120.0,1,0,1,0,1,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,Dropout +1,1,3,9773,1,1,117.0,1,38,19,7,7,110.4,1,0,1,0,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9773,1,1,127.0,1,19,38,8,3,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,38,37,1,1,115.0,1,0,0,1,0,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,18,2,9853,1,1,123.0,1,1,3,9,2,123.7,1,0,1,0,0,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,Dropout +1,1,3,9853,1,1,122.0,1,3,3,2,2,112.6,1,0,0,1,0,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,17,3,9254,1,1,127.0,1,37,37,9,6,123.5,1,0,0,1,0,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,141.0,1,37,37,9,9,136.3,1,0,0,1,1,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,140.0,1,3,3,2,2,124.3,0,0,0,0,1,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,125.0,1,1,3,4,1,121.9,1,0,0,1,1,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,Dropout +1,17,1,9070,1,1,134.0,1,1,1,5,0,133.3,1,0,0,1,1,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9670,1,1,127.0,22,37,37,9,9,127.0,1,0,0,1,1,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,Graduate +1,42,1,9853,1,1,120.0,1,37,38,3,3,113.7,0,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,3,9670,1,1,121.0,1,3,19,2,8,122.4,1,0,0,1,1,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,Enrolled +1,1,3,171,1,1,139.0,1,19,19,5,3,128.2,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,42,1,9085,1,1,100.0,1,1,38,4,9,100.0,1,0,0,1,0,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,10,1,9500,1,1,140.0,24,3,3,2,9,140.0,1,0,1,0,0,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,132.0,1,37,19,9,9,131.0,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,124.0,1,1,1,4,4,127.9,1,0,0,1,1,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9119,1,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9773,1,1,117.0,1,38,38,9,9,111.1,0,0,1,1,1,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,19,133.1,1,19,37,9,9,149.4,0,0,0,0,1,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,1,1,161.9,0,0,0,1,1,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,140.0,1,38,37,4,7,130.0,1,0,0,0,0,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,43,1,171,1,1,145.0,1,19,38,9,9,100.0,0,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9773,1,1,120.0,1,37,38,9,3,155.5,0,0,0,1,1,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,121.8,0,0,0,0,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9130,1,3,140.0,1,5,4,2,0,140.0,0,0,1,0,0,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,Dropout +1,51,1,171,1,1,128.0,1,2,1,3,3,131.2,1,0,0,1,1,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,12,110.0,1,37,37,7,9,120.0,0,0,0,1,0,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,150.0,1,2,3,3,2,140.8,0,0,0,1,0,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,Enrolled +1,43,1,9070,1,1,125.0,1,19,19,7,8,133.4,1,0,0,1,1,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,Enrolled +1,1,5,171,1,1,160.0,1,1,1,4,4,139.7,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,1,120.0,1,1,38,9,9,150.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,154.0,1,19,19,3,3,142.0,0,0,0,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9254,1,1,110.0,1,4,19,4,3,114.8,1,0,0,0,1,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9119,1,1,140.0,1,34,34,9,9,140.0,0,0,0,0,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,125.0,1,1,1,4,2,134.1,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9254,1,40,130.0,1,1,1,3,6,130.0,0,0,0,1,0,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9254,1,1,122.0,1,37,37,9,3,124.5,1,0,0,1,0,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,130.0,1,1,3,9,2,128.6,1,0,0,1,0,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,Graduate +1,17,4,9670,1,1,122.0,1,3,1,2,3,119.6,1,0,0,1,1,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,Graduate +1,44,3,9085,1,39,150.0,1,1,19,4,1,150.0,1,0,0,1,0,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,19,37,9,9,130.0,1,0,0,1,1,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,133.1,1,38,19,4,7,98.0,1,0,0,1,1,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,Enrolled +1,17,2,9556,1,1,125.0,1,38,19,7,7,121.5,1,0,0,1,0,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,Dropout +2,1,4,9500,1,1,143.0,1,38,38,5,5,128.7,1,0,0,1,0,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,1,100.0,1,1,19,4,8,122.0,0,0,0,1,0,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,Graduate +1,51,1,9500,1,1,170.0,1,1,1,4,10,125.0,0,0,0,1,1,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,Graduate +1,18,4,9500,1,1,137.0,1,3,1,3,4,126.7,1,0,0,1,0,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,19,133.1,1,38,38,9,8,106.0,1,0,0,1,1,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,40,130.0,1,19,1,3,4,152.0,1,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9085,1,39,140.0,1,1,39,3,9,140.0,1,0,0,1,0,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9773,1,1,133.1,1,3,1,4,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +2,43,1,9853,1,1,110.0,1,37,37,7,7,100.0,0,0,0,1,1,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,Graduate +1,7,1,9119,1,3,120.0,1,19,19,1,1,120.0,0,0,0,0,1,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,1,130.0,1,34,34,99,99,114.8,0,0,0,1,0,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,140.0,1,37,3,9,10,172.0,0,0,0,1,1,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,Enrolled +1,17,2,9670,1,1,123.0,1,34,37,0,0,114.6,1,0,1,0,0,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,Dropout +1,43,2,9500,1,1,136.0,1,19,1,9,10,124.1,0,0,0,1,1,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,116.0,1,1,1,1,1,110.8,1,0,0,1,0,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9003,1,1,133.1,1,37,37,4,7,130.0,0,0,1,0,1,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,Dropout +1,1,3,9085,1,1,158.0,1,1,19,9,9,153.6,1,0,0,1,0,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,Graduate +1,17,4,9773,1,1,121.0,1,1,19,9,8,120.3,1,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,5,3,9085,1,1,141.0,1,1,19,7,5,128.8,1,0,0,1,0,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,Enrolled +1,18,4,9556,1,1,127.0,1,1,38,4,7,121.8,1,0,0,1,0,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,110.0,1,34,34,0,0,114.6,1,0,0,1,0,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9085,1,1,128.0,1,38,19,8,8,117.2,0,0,0,1,1,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,143.0,1,1,38,3,3,133.2,1,0,0,1,0,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,Graduate +1,1,4,9853,1,1,134.0,1,19,1,5,9,127.4,1,0,0,1,0,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Enrolled +1,1,1,9670,1,1,133.1,1,3,1,1,7,155.0,0,0,0,1,0,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,114.0,1,19,38,9,7,129.1,0,0,0,1,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,149.0,1,19,37,7,4,134.3,0,1,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,130.0,1,1,38,3,5,128.6,1,0,0,1,1,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,42,1,9147,1,1,139.0,1,3,38,2,5,112.3,1,0,0,1,0,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,Enrolled +1,1,3,9773,1,1,130.0,1,19,19,9,9,123.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,38,38,9,5,100.0,0,0,0,1,0,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,Enrolled +6,39,1,8014,0,1,133.1,1,37,1,9,7,114.8,0,0,0,1,0,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,121.0,1,1,38,4,9,114.4,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,18,1,9238,1,1,122.0,1,38,38,9,7,114.7,0,0,1,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9773,1,1,120.0,1,1,1,2,5,127.0,1,0,0,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,4,1,2,8,120.0,0,0,0,1,1,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,3,9500,1,1,143.0,1,38,1,9,5,133.8,1,0,0,1,0,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,130.0,1,1,19,9,7,133.8,0,0,1,1,0,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,Graduate +2,39,1,9556,1,1,100.0,1,37,37,9,9,120.0,0,0,0,1,0,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,133.1,1,1,19,5,4,102.5,0,0,0,1,0,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9003,1,1,111.0,1,1,3,4,2,162.4,0,0,1,0,1,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,133.1,1,19,1,9,3,107.0,1,0,0,1,0,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,128.0,1,19,1,4,4,124.3,1,0,0,1,1,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,140.0,1,36,14,9,10,130.0,1,0,0,1,1,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,150.0,1,38,19,7,10,134.6,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9070,1,1,134.0,1,34,1,5,7,129.8,1,0,0,1,0,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,150.0,1,37,37,9,3,150.0,1,0,0,1,1,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,Dropout +2,39,1,9238,1,1,126.6,1,38,38,9,7,107.5,0,0,1,1,0,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,120.0,1,37,37,9,7,106.8,0,0,0,1,0,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9254,1,1,117.0,1,1,1,5,5,116.3,1,0,0,1,1,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,130.0,1,19,19,5,5,157.0,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9556,1,1,133.1,1,44,40,2,2,115.5,0,0,0,1,0,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,133.1,1,3,1,2,4,125.0,0,0,0,1,1,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,9,9,100.0,0,0,0,0,1,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9500,1,1,141.0,1,37,1,9,4,127.3,1,0,0,1,0,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,117.0,1,38,38,175,183,113.2,1,0,1,1,0,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,133.1,1,37,37,7,7,124.5,0,0,0,0,1,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,Dropout +1,17,2,9070,1,1,133.1,1,37,38,9,10,178.0,1,0,0,1,1,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,19,9,9,115.0,1,0,0,1,1,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,146.0,1,1,1,3,4,128.2,0,0,1,1,0,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,4,9070,1,1,128.0,1,1,1,9,10,136.1,1,0,1,0,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,Dropout +5,39,1,9500,1,3,140.0,1,37,38,9,9,160.0,0,0,0,1,0,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,8,121.0,0,0,1,0,0,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,140.0,1,2,1,2,3,140.0,1,0,0,1,0,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,3,9670,1,1,126.0,1,37,37,0,0,136.5,1,0,0,1,0,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,140.0,1,19,37,9,9,130.2,1,0,0,1,0,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,1,3,1,2,133.0,0,0,0,1,0,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,136.0,1,19,38,9,9,121.7,1,0,0,1,1,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,4,9085,1,1,106.0,1,37,1,3,9,106.0,0,0,0,1,0,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,Enrolled +1,1,3,9500,1,1,135.0,1,1,37,7,7,120.5,1,0,0,1,0,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,115.0,1,19,19,7,7,115.0,1,0,0,1,0,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9238,1,1,160.0,1,38,1,9,3,124.0,0,0,1,1,1,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,129.0,1,38,38,5,5,120.8,1,0,0,1,0,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,160.0,41,37,19,9,9,160.0,0,0,0,1,0,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,132.0,1,1,19,7,5,129.9,1,0,0,1,1,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,136.0,1,37,38,9,8,139.2,1,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,127.0,1,19,37,9,7,121.3,1,0,0,1,0,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9119,1,1,142.0,1,1,38,4,3,129.8,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,5,8,133.2,0,0,0,0,1,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,Dropout +1,1,1,9147,1,1,150.0,1,1,19,5,5,137.8,1,0,0,1,1,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,135.0,1,3,1,2,4,129.8,1,0,0,1,1,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,Graduate +1,43,2,9773,1,1,132.0,1,19,19,0,0,127.1,0,0,0,1,1,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,3,9500,1,1,140.0,1,3,2,3,3,126.4,1,0,0,1,0,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,Dropout +2,39,2,9119,1,19,133.1,1,37,37,7,7,118.0,0,0,0,0,1,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,110.0,1,3,4,2,2,110.0,1,0,0,1,1,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,Dropout +2,39,1,9500,1,38,133.1,1,37,37,9,3,146.6,0,0,0,1,1,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,146.0,1,1,3,4,1,135.2,1,0,0,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,3,5,2,2,135.8,0,0,1,1,1,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9773,1,19,100.0,1,37,37,0,0,163.5,0,0,1,0,1,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,7,113.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,143.0,1,3,3,9,7,129.0,1,0,0,1,1,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,Graduate +1,1,2,9853,1,1,117.0,1,1,38,4,9,109.7,1,0,0,1,0,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9130,1,2,133.1,6,42,1,4,9,100.0,0,0,0,1,1,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,115.8,0,0,1,0,1,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9773,1,1,167.0,1,38,38,6,7,153.0,1,0,0,1,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,51,1,9238,1,1,141.0,1,1,1,5,9,125.0,0,0,0,1,1,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,4,9500,1,1,132.0,1,38,19,5,7,125.5,0,0,0,1,0,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,Graduate +1,1,1,9119,1,1,132.0,1,1,12,3,3,133.1,1,0,0,1,1,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,149.0,1,1,1,4,4,129.3,1,0,0,1,1,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,142.5,0,0,0,1,0,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,Enrolled +1,1,6,9773,1,1,133.1,1,1,37,3,3,100.0,1,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,138.0,1,37,37,9,6,145.0,1,0,0,1,0,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,19,19,3,6,124.3,1,0,0,1,0,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,135.0,1,37,37,9,7,132.6,1,0,0,1,0,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,159.0,1,34,26,0,6,160.1,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,133.1,1,37,37,6,8,100.0,0,0,1,1,0,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9070,1,1,153.0,1,3,3,1,2,146.7,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,43,1,171,1,2,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,141.0,1,19,19,9,8,142.8,0,0,0,1,0,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,39,2,9556,1,1,130.0,1,19,19,4,5,100.0,0,0,0,1,1,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,120.0,1,38,19,3,5,120.0,0,0,0,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,2,9147,1,1,120.0,1,37,37,9,9,104.0,0,0,0,0,1,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,150.0,1,38,38,9,9,132.0,1,0,0,1,0,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,142.0,1,38,38,9,9,132.9,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9085,1,1,160.0,1,4,19,2,5,162.1,1,0,0,1,0,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,8,130.2,1,0,0,1,0,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,118.0,1,1,1,9,9,111.0,0,0,0,0,1,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,119.0,1,37,37,10,6,119.7,1,0,0,1,0,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,Enrolled +1,17,2,171,1,1,137.0,1,1,1,4,1,143.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,18,3,9085,1,1,149.0,103,1,1,9,9,132.2,1,0,0,1,0,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,130.0,1,37,37,90,90,125.1,0,0,0,1,0,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,Graduate +4,17,5,8014,0,1,100.0,1,19,19,90,90,107.0,0,0,0,1,0,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,19,133.1,1,38,19,9,10,142.7,0,0,1,1,1,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,139.0,1,19,37,5,5,125.5,0,0,0,1,0,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,133.0,1,4,1,5,5,131.6,0,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,148.0,1,19,19,9,3,125.0,1,0,0,1,0,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,110.0,1,37,37,9,9,110.3,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,53,1,9003,1,42,130.0,1,38,38,9,9,130.0,1,0,1,1,1,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,Enrolled +1,1,4,9070,1,1,140.0,1,4,19,2,10,125.0,1,0,0,1,1,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9003,1,39,140.0,1,19,1,5,5,140.0,0,0,0,1,0,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,Enrolled +1,1,4,9070,1,1,136.0,1,37,37,9,8,136.7,1,0,0,1,0,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,1,5,9773,1,1,125.0,1,37,3,5,2,126.1,1,0,0,1,1,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,8014,0,1,126.0,1,37,38,9,10,119.4,0,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,123.0,1,1,3,2,2,118.8,0,0,0,1,1,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9500,1,1,144.0,1,1,37,9,9,127.5,1,0,0,1,0,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,125.0,1,38,37,8,7,131.7,1,0,0,1,1,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,144.0,1,37,37,8,8,138.4,0,0,0,1,0,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,160.0,1,37,37,3,4,97.0,0,0,0,1,0,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,37,38,9,9,125.0,1,0,0,1,0,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,117.0,1,37,37,9,9,109.3,0,0,0,0,0,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,3,130.0,1,37,37,9,9,146.2,0,0,0,1,0,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,150.0,1,37,37,9,9,130.3,0,0,0,1,0,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,Graduate +2,39,2,8014,0,19,100.0,1,37,37,4,7,100.0,0,0,1,1,0,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,38,133.1,1,38,37,4,8,95.5,0,0,0,1,1,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,120.7,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9119,1,19,120.0,1,37,37,9,4,98.6,0,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9130,1,1,120.0,1,19,37,1,9,116.1,1,0,0,1,1,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9500,1,1,136.0,1,1,1,4,9,128.5,1,0,0,1,0,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,132.0,1,38,37,7,7,131.3,1,0,0,1,0,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,115.0,1,38,38,9,8,108.4,1,0,0,1,0,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,120.0,1,37,37,9,9,98.7,0,0,0,1,1,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,120.0,1,37,37,9,9,155.8,0,0,0,1,1,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,151.0,1,19,1,5,0,144.4,1,0,0,1,0,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,Graduate +1,43,2,9147,1,1,131.0,1,19,37,5,9,123.7,1,0,0,1,0,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,Enrolled +1,17,4,9085,1,1,128.0,1,38,37,4,9,117.9,1,0,0,1,0,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,8014,0,12,133.1,1,37,1,9,10,112.5,0,0,0,1,1,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,19,133.1,1,37,37,4,8,140.0,0,0,0,1,0,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,7,1,9147,1,2,150.0,1,3,37,2,5,150.0,1,0,1,0,0,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,2,9147,1,1,102.0,1,37,38,191,143,101.7,1,0,0,1,0,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,128.0,1,19,1,4,1,118.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,133.1,1,19,1,4,8,144.3,0,0,0,1,1,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,5,9254,1,1,128.0,1,19,1,7,10,116.5,1,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,140.0,1,19,19,7,5,135.1,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,18,2,9500,1,1,129.0,1,38,37,5,5,119.0,1,0,0,1,0,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,3,1,3,3,131.5,1,0,0,1,0,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,143.0,1,3,3,2,5,144.8,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,127.0,1,37,37,9,8,123.2,1,0,0,1,0,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9500,1,1,125.0,1,37,37,9,7,123.6,1,0,0,1,0,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,138.0,1,1,38,3,9,123.0,1,0,0,1,0,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,139.0,1,38,38,9,9,145.0,1,0,0,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,121.0,1,37,19,6,7,116.8,1,0,0,1,0,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,2,9085,1,1,123.0,1,1,19,4,9,113.6,1,0,0,1,0,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,17,6,9773,1,1,126.0,1,1,19,5,5,119.0,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,4,9119,1,1,139.0,1,37,19,9,4,133.1,1,0,0,1,1,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,158.0,1,1,38,3,6,155.2,0,0,0,1,1,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,8014,0,1,133.1,1,19,1,1,1,118.0,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,136.0,1,22,30,0,8,135.7,1,0,0,1,0,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,120.0,1,37,37,9,9,110.0,0,0,0,0,1,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,124.0,1,19,19,7,9,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,Enrolled +5,7,1,9991,0,2,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,4,9238,1,1,123.0,1,38,1,4,10,129.0,1,0,0,1,0,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,4,9119,1,1,135.0,1,38,37,5,7,126.6,1,0,0,1,1,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,129.0,1,5,3,5,7,124.8,1,0,0,1,0,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,Graduate +1,17,5,9147,1,1,127.0,1,1,38,4,5,124.6,1,0,0,1,0,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,135.0,1,1,1,4,4,118.5,0,0,0,1,0,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,171,1,1,142.0,1,3,1,2,6,139.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9147,1,1,133.1,1,19,19,9,9,119.8,0,0,0,1,1,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,123.0,1,1,37,9,9,132.1,0,0,0,1,0,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9853,1,1,115.0,1,3,37,2,5,108.7,1,0,0,1,0,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,12,133.1,1,37,34,90,90,110.7,1,0,0,1,0,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,155.0,1,4,3,1,1,144.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9254,1,1,105.0,1,1,19,9,6,106.1,1,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,150.0,1,19,19,3,4,135.0,0,0,0,1,0,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,152.0,1,37,37,5,7,136.3,0,0,0,1,0,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,34,34,0,0,120.5,1,0,0,1,1,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,140.0,1,1,37,4,5,123.6,1,0,0,1,0,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,120.0,1,37,37,9,9,150.1,1,0,0,1,1,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,144.0,1,37,38,9,9,126.9,0,0,0,1,0,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,120.0,1,37,37,9,9,128.2,0,0,0,0,1,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,Dropout +1,18,2,9147,1,1,115.0,1,1,37,5,5,108.7,1,0,0,1,0,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,140.0,1,19,19,4,4,140.0,1,0,0,0,1,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,1,1,3,7,140.0,1,0,0,1,0,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9500,1,1,129.0,1,19,19,5,5,119.6,1,0,0,1,0,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,Graduate +1,17,6,9773,1,1,141.0,1,37,37,5,5,127.7,1,0,0,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,137.0,1,19,37,4,7,126.3,1,0,0,1,0,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,1,168.0,1,1,41,9,3,153.9,0,0,1,0,1,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,133.0,1,37,37,9,9,121.8,1,0,0,1,0,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,119.0,1,2,1,4,3,113.1,1,0,0,1,0,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,142.0,1,38,19,141,171,115.0,0,0,0,1,0,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,4,9773,1,1,138.0,1,37,19,5,7,133.5,1,0,0,0,0,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +2,7,1,8014,0,3,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,133.0,1,3,19,2,5,130.8,1,0,0,1,0,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,137.0,1,38,19,152,171,131.1,1,0,0,1,0,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9119,1,1,130.0,1,1,38,3,3,129.3,0,0,0,1,1,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Graduate +1,43,1,9773,1,1,126.0,1,1,37,3,0,110.0,0,0,1,1,0,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,116.0,1,1,12,5,8,110.4,1,0,0,1,1,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,1,1,4,10,110.0,0,0,1,1,0,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,5,9238,1,1,134.0,1,38,37,9,9,126.0,0,0,1,0,0,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,Dropout +2,39,1,9147,1,1,130.0,1,1,19,9,9,109.9,0,0,0,0,0,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9085,1,1,133.1,41,37,37,9,9,109.6,0,0,0,1,0,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,1,140.0,0,0,0,1,1,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,Enrolled +2,39,1,9991,0,19,133.1,1,38,38,90,90,121.7,1,0,0,1,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,143.0,1,1,3,4,7,129.7,1,0,0,1,0,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,133.0,1,1,19,9,6,121.5,1,0,0,1,0,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,133.0,1,38,37,9,9,125.3,1,0,0,1,0,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,Graduate +1,42,1,9991,0,1,160.0,1,1,2,4,3,120.0,0,0,0,1,0,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,Graduate +2,39,2,9556,1,1,133.1,105,1,3,9,2,152.8,1,0,0,1,0,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,123.0,1,1,1,4,6,118.8,1,0,0,1,0,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,122.0,1,3,19,2,3,112.9,0,0,0,1,0,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,Graduate +1,1,5,9853,1,1,123.0,1,1,12,4,9,113.2,1,0,0,1,0,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,140.0,1,37,37,9,9,141.5,1,0,1,0,0,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,129.0,1,19,19,4,8,127.3,1,0,0,1,0,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,1,130.0,1,37,37,6,6,110.0,0,0,0,1,0,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,Enrolled +4,39,1,8014,0,19,133.1,1,37,37,9,9,95.0,0,0,1,0,0,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9853,1,1,127.0,1,37,19,9,8,137.5,1,0,0,1,0,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,142.0,1,38,37,5,7,128.8,1,0,0,1,0,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,Graduate +1,17,2,9147,1,1,142.0,1,19,19,4,8,127.3,0,0,0,1,0,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +3,39,1,9991,0,1,120.0,1,37,1,9,2,170.0,0,0,0,1,1,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,138.0,1,19,37,4,9,141.0,0,0,0,1,1,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,132.0,1,1,38,9,9,120.1,1,0,0,1,1,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,140.0,1,1,1,2,7,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,121.0,1,37,19,9,10,113.7,0,0,0,1,0,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,Enrolled +1,39,1,8014,0,38,133.1,1,1,1,4,4,107.5,0,0,1,0,1,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,150.0,1,1,1,5,1,155.6,0,0,0,1,0,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,150.0,1,37,37,9,6,131.1,0,0,0,1,0,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,100.0,1,3,19,1,1,117.9,0,0,0,0,1,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,2,9991,0,1,150.0,1,37,37,9,9,120.0,0,0,0,1,0,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,150.0,1,1,38,4,9,150.0,0,0,0,1,1,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,Enrolled +2,43,1,9130,1,9,133.1,1,34,34,0,0,128.2,0,0,0,1,1,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,141.0,1,1,1,90,3,127.8,0,0,0,1,0,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,116.0,1,3,3,0,1,108.7,1,0,0,1,1,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,Dropout +2,39,1,9500,1,1,140.0,1,19,19,9,7,110.5,0,0,0,1,0,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9254,1,19,133.1,1,34,34,0,0,120.0,0,0,1,0,1,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,133.1,1,37,37,191,172,115.2,0,0,0,1,0,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,6,160.0,0,0,0,1,0,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,133.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9556,1,1,131.0,1,19,38,9,7,128.5,0,0,0,1,0,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,160.0,1,37,38,9,7,161.0,1,0,0,1,0,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,136.0,1,3,3,1,2,152.5,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9853,1,1,114.0,1,19,37,5,5,109.5,1,0,0,1,0,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,150.0,1,37,37,9,7,122.5,0,0,0,1,1,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,Dropout +1,44,1,9991,0,39,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,8014,0,42,140.0,1,19,37,134,193,138.0,1,0,1,1,0,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,127.0,1,2,19,3,9,121.5,0,0,0,1,1,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,133.1,1,19,19,3,3,125.3,0,1,0,1,1,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,4,9670,1,1,125.0,1,4,19,2,5,118.0,1,0,0,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,Graduate +2,42,1,9070,1,1,170.0,1,37,25,0,4,148.5,0,0,0,1,1,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,Dropout +1,17,5,9254,1,1,121.0,1,1,19,4,7,116.5,1,0,0,0,1,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,120.0,1,19,38,5,9,130.2,0,0,0,1,0,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,140.0,1,19,37,9,9,140.7,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,140.0,1,19,19,5,9,131.3,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,42,1,9119,1,1,140.0,1,3,3,3,2,133.6,1,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,8014,0,1,150.0,1,19,2,4,6,148.0,0,0,0,1,0,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,127.0,1,37,2,9,4,123.2,1,0,0,1,0,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,119.0,1,19,37,9,9,119.4,1,0,0,1,0,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,132.0,1,2,1,4,1,127.8,0,0,0,1,1,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,Dropout +1,42,1,9119,1,1,136.0,1,1,37,5,5,117.5,0,0,0,1,1,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9991,0,1,122.0,1,37,37,9,3,113.6,0,0,0,1,1,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,5,6,137.4,0,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,128.0,1,19,19,5,4,116.5,0,0,0,1,0,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,139.0,1,1,38,6,6,143.6,1,0,1,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9130,1,1,154.0,1,3,3,2,2,137.2,1,0,1,1,1,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,6,9500,1,1,142.0,1,19,37,4,9,131.9,1,0,0,1,0,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Dropout +1,1,2,9773,1,1,131.0,1,19,37,9,10,121.9,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +2,7,1,9130,1,3,120.0,1,3,3,1,1,128.2,0,0,0,1,0,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,19,133.1,1,37,37,9,9,150.3,0,0,0,1,0,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,125.0,1,37,37,5,5,124.0,0,0,0,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,135.0,1,37,19,9,9,125.2,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,9,124.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,175.0,1,3,38,2,10,157.5,1,0,0,1,0,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,139.0,1,1,1,4,10,140.7,0,0,0,1,1,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,Dropout +1,1,4,9500,1,1,128.0,1,1,1,4,10,125.2,1,0,0,1,1,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,150.0,1,1,37,1,1,131.5,1,0,0,1,0,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,168.0,1,38,1,9,10,166.0,1,0,0,1,0,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,Graduate +1,51,1,9070,1,1,125.0,1,42,3,125,124,130.0,1,0,0,1,1,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,135.0,1,1,38,4,5,127.5,1,0,0,1,0,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,Graduate +1,18,1,9119,1,1,148.0,1,3,19,3,5,147.7,0,0,0,1,1,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9773,1,1,130.0,109,19,1,9,9,126.9,1,0,0,1,0,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,125.0,1,19,38,3,7,114.9,0,0,0,1,0,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,Graduate +1,7,1,9119,1,3,130.0,1,37,37,9,9,130.0,0,0,0,0,1,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9853,1,1,130.0,1,37,19,7,3,140.0,0,0,1,1,0,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,112.0,1,3,1,3,5,111.0,0,0,0,1,0,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,37,38,193,181,125.9,0,0,0,1,0,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,Graduate +1,42,1,9119,1,1,120.0,1,34,34,0,0,128.2,1,0,0,1,1,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,19,133.1,1,37,37,9,9,117.2,0,0,0,1,0,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9147,1,1,131.0,1,19,38,9,7,132.4,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9003,1,1,180.0,1,1,1,4,8,179.6,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,5,9119,1,1,135.0,1,37,37,90,90,122.1,1,0,0,1,1,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.0,1,1,38,5,10,131.3,1,0,0,1,0,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,126.0,1,37,19,5,5,119.3,0,0,0,1,0,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,110.0,1,19,37,9,6,120.0,0,0,1,0,1,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9556,1,1,130.0,1,37,37,9,9,159.0,1,0,0,1,0,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,141.0,1,19,38,4,5,133.7,1,0,0,1,1,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,1,37,4,6,120.0,0,0,0,1,1,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9085,1,1,123.0,1,3,19,2,9,118.9,0,0,0,1,1,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,17,1,9991,0,1,140.0,1,38,37,6,7,127.3,0,0,0,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,151.0,1,3,1,2,1,129.8,1,0,0,1,1,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,113.0,1,37,37,0,6,128.2,0,0,0,0,0,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9070,1,1,117.0,1,1,37,4,7,127.9,1,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,145.0,1,19,19,9,7,136.6,0,0,0,1,0,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.0,1,34,37,4,9,134.4,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,9238,1,39,130.0,1,38,38,5,10,126.7,0,0,1,1,0,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9773,1,1,122.0,1,1,1,4,7,116.8,1,0,1,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,3,9147,1,1,124.0,1,1,1,5,3,116.7,1,0,0,1,1,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,38,1,9,4,123.2,0,0,0,1,0,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,Enrolled +1,39,1,9556,1,40,130.0,1,1,1,4,5,145.0,0,0,0,1,0,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,Enrolled +1,43,1,9147,1,1,127.0,25,1,5,9,10,124.2,1,0,0,1,1,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,43,1,9670,1,1,120.0,1,34,34,0,0,128.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9238,1,1,122.0,1,1,3,9,2,112.6,1,0,0,1,1,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,122.0,1,1,1,4,4,119.6,1,0,0,1,0,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,Enrolled +1,17,5,9670,1,1,125.0,1,1,19,9,7,119.4,1,0,0,1,0,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,146.0,1,19,37,9,7,153.0,1,0,0,1,0,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,108.0,1,38,38,7,7,115.0,1,0,1,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,133.1,1,1,1,3,9,138.0,1,0,0,1,0,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,140.0,1,37,37,9,5,140.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,19,133.1,1,2,1,2,4,100.0,0,0,0,1,1,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9147,1,1,129.0,1,38,37,3,5,132.9,1,0,0,1,0,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,149.0,1,3,2,2,5,151.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,135.0,1,19,4,9,2,143.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9147,1,1,158.0,1,19,37,9,7,130.0,1,0,0,1,0,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,Graduate +1,17,6,9556,1,1,122.0,1,1,1,4,5,117.1,1,0,0,1,0,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9556,1,12,133.1,1,34,34,99,99,100.5,0,0,0,1,0,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9003,1,1,123.0,1,37,37,9,9,110.0,0,0,1,0,0,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,138.0,1,3,3,2,2,127.5,1,0,0,1,0,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,Graduate +1,43,1,9500,1,1,121.0,1,38,19,5,5,115.4,1,0,0,1,0,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,Enrolled +1,17,4,9147,1,1,114.0,1,19,19,4,4,109.5,1,0,0,1,1,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,148.0,1,1,1,4,8,145.2,0,0,0,1,1,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,121.0,1,1,1,4,4,123.1,1,0,0,1,1,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,150.0,1,3,3,2,5,154.6,1,0,0,1,0,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,151.0,1,19,38,9,9,157.0,1,0,1,1,0,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,101.0,0,0,0,1,0,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,2,9254,1,1,127.0,1,3,19,3,10,130.9,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,146.0,1,1,1,9,8,149.5,1,0,0,1,1,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9130,1,6,133.1,1,1,29,4,90,123.3,1,0,0,1,0,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,3,3,7,146.5,1,0,1,1,1,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,Enrolled +1,7,1,8014,0,40,120.0,1,37,19,9,3,120.0,0,0,0,1,0,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9853,1,1,125.0,1,37,37,9,9,114.9,1,0,1,0,0,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,2,9773,1,1,140.0,1,1,1,4,3,131.6,0,0,0,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,142.0,1,1,19,9,9,136.1,0,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,113.0,1,1,1,4,4,106.7,1,0,0,1,0,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,130.0,1,1,2,4,2,130.0,0,0,0,1,1,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,39,1,9119,1,1,130.0,1,19,37,9,9,134.0,0,0,0,1,1,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,Enrolled +1,18,1,9500,1,1,123.0,1,37,37,3,3,118.0,1,0,0,1,0,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,Graduate +1,10,2,9085,1,1,163.3,22,19,1,4,9,163.3,0,0,0,1,0,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,5,135.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,136.0,1,4,5,2,2,126.2,0,0,0,1,1,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,150.0,1,1,37,4,8,150.0,1,0,0,0,0,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9085,1,3,140.0,1,19,20,4,90,140.0,1,0,0,1,0,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,43,1,9070,1,1,135.0,1,1,38,3,9,126.4,1,0,0,1,0,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,140.0,1,19,38,7,8,129.9,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,133.1,1,1,1,9,9,155.0,0,0,0,1,0,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,5,9773,1,1,122.0,1,38,38,7,7,123.1,1,0,0,0,0,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,117.0,1,1,1,9,9,109.3,1,0,0,1,0,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9500,1,1,130.0,1,1,38,9,9,125.1,1,0,0,1,0,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,Enrolled +1,1,2,9773,1,1,144.0,1,3,3,3,2,140.2,1,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,145.0,1,1,1,4,10,145.0,0,0,0,1,0,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,Dropout +1,51,1,9070,1,1,143.0,1,1,1,4,4,120.0,1,0,0,1,0,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,145.0,1,1,38,90,8,132.8,1,0,0,0,1,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9556,1,1,120.0,1,38,38,191,193,120.0,0,0,1,1,0,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,148.0,1,19,1,7,5,138.3,1,0,0,1,1,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,146.0,1,3,3,3,6,133.4,1,0,0,1,0,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,Graduate +1,17,1,9130,1,1,131.0,1,12,12,2,8,128.2,1,0,0,1,1,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,6,9556,1,1,115.0,1,19,2,5,3,112.2,1,0,0,1,0,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,Graduate +1,43,1,9556,1,1,126.0,1,2,3,3,2,100.0,0,0,0,1,0,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,Enrolled +1,17,1,9238,1,1,120.0,1,19,37,9,9,113.0,1,0,0,1,0,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,132.0,1,19,38,5,5,118.0,1,0,0,1,0,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,Graduate +2,1,1,9238,1,1,145.0,1,37,34,9,7,139.4,0,0,0,0,0,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,131.0,1,38,38,191,174,125.4,1,0,0,1,0,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,39,1,9119,1,1,120.0,1,37,38,9,10,145.4,0,0,1,1,1,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,Dropout +1,1,1,9130,1,1,138.0,1,4,5,2,2,123.0,1,0,0,1,0,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,127.0,1,5,3,4,4,122.8,1,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,136.0,1,1,1,4,4,127.0,1,0,0,1,0,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,Enrolled +1,17,3,9119,1,1,115.0,1,3,1,3,3,116.1,1,0,0,0,1,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,143.0,1,38,37,4,9,116.5,1,0,0,1,0,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,3,19,3,8,134.9,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,Graduate +1,44,1,9119,1,39,140.0,1,5,41,3,2,140.0,0,0,0,1,1,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,124.0,1,19,19,9,3,115.6,1,0,0,0,1,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9500,1,3,130.0,1,19,38,5,3,130.0,0,0,0,1,0,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,137.0,1,1,1,4,10,124.8,1,0,0,1,1,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,138.0,1,1,3,1,4,127.5,1,0,0,1,1,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,112.0,1,1,1,5,1,111.7,0,0,1,0,1,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,Dropout +1,1,4,9500,1,1,147.0,1,1,1,4,9,124.5,1,0,0,1,0,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,Graduate +1,7,1,9500,1,3,140.0,1,3,19,2,6,140.0,0,0,0,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,121.0,1,19,19,7,7,113.0,1,0,0,1,0,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,8014,0,1,96.0,1,3,1,3,9,100.0,0,0,0,1,0,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,152.0,1,1,38,4,5,144.7,0,0,0,1,0,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,Graduate +2,1,1,9070,1,1,127.0,1,12,19,9,9,123.2,0,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,Graduate +1,1,3,9070,1,1,147.0,1,34,37,5,7,135.8,1,0,0,1,0,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,7,1,9119,1,4,180.0,1,4,3,2,7,180.0,0,0,1,1,1,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,Enrolled +1,1,6,9500,1,1,129.0,1,37,19,9,7,127.8,1,0,0,1,0,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,100.0,1,37,37,7,7,160.0,1,0,0,1,0,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,127.0,1,19,1,5,5,117.6,1,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9003,1,1,110.0,1,1,1,9,4,120.0,0,0,1,0,1,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9773,1,1,143.0,11,19,19,4,9,133.9,1,0,0,1,1,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,160.0,1,37,37,7,7,156.1,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,43,2,9670,1,1,135.0,1,3,19,1,7,123.5,1,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,1,130.0,1,38,3,132,122,100.0,0,0,0,1,1,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,Enrolled +1,15,1,9238,1,1,150.0,26,19,1,9,9,146.5,1,0,1,0,1,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,Graduate +1,17,6,9119,1,1,129.0,1,37,13,4,90,117.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,3,130.0,1,3,3,3,10,147.6,0,0,0,1,1,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,171,1,1,145.0,1,1,1,3,3,140.1,1,0,0,1,0,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,43,3,9254,1,1,135.0,1,3,3,2,2,122.1,0,0,0,1,1,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,171,1,1,140.0,41,1,1,5,7,146.3,1,0,0,1,0,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9070,1,1,126.0,1,38,38,9,8,129.9,1,0,0,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Graduate +1,7,1,9070,1,3,120.0,1,4,4,2,2,120.0,0,0,0,1,1,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,Dropout +1,17,4,9070,1,1,144.0,1,38,1,9,9,137.4,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,125.0,1,3,3,2,3,118.0,1,0,0,1,1,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,Dropout +5,39,1,9238,1,1,130.0,1,19,38,9,10,146.0,0,0,0,1,1,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,5,107.5,0,0,0,1,0,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9773,1,1,130.0,1,1,19,1,3,161.5,0,0,0,1,1,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,140.0,1,19,19,9,4,127.8,1,0,0,1,1,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,113.0,1,1,37,1,10,116.5,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,Graduate +1,1,2,9238,1,1,145.0,1,1,19,4,8,121.4,0,0,0,1,0,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9003,1,19,133.1,1,19,37,9,10,120.0,0,0,1,1,0,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,Enrolled +1,1,1,9085,1,1,150.0,1,12,2,4,2,144.6,0,0,1,0,0,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,40,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,Dropout +1,17,5,9500,1,1,137.0,1,1,1,5,5,132.6,1,0,0,1,0,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,3,19,4,7,119.0,0,0,0,1,1,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,128.0,1,1,1,4,5,124.7,0,0,0,1,1,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,Enrolled +1,39,2,9670,1,19,133.1,1,34,34,0,0,100.0,1,0,0,0,1,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,Dropout +1,39,1,9556,1,1,120.0,1,19,19,4,5,122.8,0,0,0,1,0,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,Dropout +1,1,2,171,1,1,165.0,1,3,3,2,2,163.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,133.8,1,3,37,2,10,184.0,0,0,0,1,0,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,120.0,1,37,19,9,4,148.8,0,0,0,1,0,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,5,9500,1,1,151.0,1,1,1,9,9,127.8,0,0,0,1,0,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,131.0,1,38,19,7,7,125.3,1,0,0,1,0,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,128.0,1,1,1,9,6,120.3,0,0,0,1,1,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,118.0,1,3,1,5,10,113.5,1,0,0,1,0,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,140.0,1,37,37,7,9,126.8,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,117.0,1,38,37,9,9,113.5,1,0,0,1,0,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,135.0,1,19,19,9,9,122.8,1,0,0,1,1,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,151.0,1,37,37,9,7,147.5,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,1,3,4,4,147.5,1,0,0,1,0,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,128.0,1,38,37,9,9,124.9,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9085,1,1,124.0,1,3,19,2,3,113.9,1,0,0,1,0,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,120.0,1,3,19,4,7,119.7,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,171,1,1,147.0,1,1,12,4,4,148.4,1,0,0,1,1,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,136.0,1,19,1,9,8,123.4,1,0,0,1,0,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,123.0,1,3,1,2,5,112.9,0,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,2,9556,1,1,133.1,1,3,1,2,4,136.1,0,0,0,1,1,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,141.0,1,3,1,4,4,142.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9003,1,1,120.0,1,37,37,9,9,120.5,1,0,1,1,1,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,6,140.0,1,0,0,1,1,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,147.0,1,19,1,4,3,138.5,1,0,0,1,0,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,123.0,1,34,34,90,90,113.3,1,0,0,1,0,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,38,4,5,130.4,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,7,7,134.0,0,0,0,1,1,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,38,38,4,7,111.6,1,0,0,1,0,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9119,1,1,148.0,1,19,38,9,7,133.0,0,0,0,1,1,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,128.0,1,3,1,2,1,127.8,0,0,0,1,0,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,172.0,1,38,37,9,9,149.3,0,0,0,1,1,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,138.0,1,37,37,9,8,127.2,1,0,0,1,0,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,140.0,1,3,1,2,6,137.6,1,0,0,1,1,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,110.0,1,37,19,9,3,100.0,0,0,0,1,0,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,2,1,2,4,140.7,1,0,0,1,1,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,137.0,1,3,38,3,5,129.3,1,0,0,1,0,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,136.0,1,38,38,0,7,133.2,1,0,0,1,0,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,145.0,6,34,34,0,0,134.5,1,0,0,1,1,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,147.0,1,19,19,3,10,151.9,1,0,0,1,0,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,118.0,1,37,37,9,9,112.1,1,0,0,1,0,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,Dropout +1,43,1,9773,1,1,122.0,1,1,1,4,5,126.9,0,0,0,1,0,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,126.0,1,12,38,9,5,122.2,0,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,143.0,1,3,3,2,2,129.0,0,0,0,1,1,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,Graduate +1,39,1,9556,1,1,130.0,1,19,38,9,8,113.3,0,0,0,1,0,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,101.0,1,1,37,4,9,98.9,1,0,0,1,0,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,133.1,1,34,34,90,90,116.0,0,0,0,0,0,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,Dropout +2,39,1,9991,0,1,170.0,1,37,19,9,3,151.1,0,0,0,1,1,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,Graduate +2,17,5,9119,1,1,126.0,1,37,38,4,4,122.9,1,0,0,1,1,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,125.0,1,19,19,9,9,114.9,0,0,0,1,0,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,Graduate +1,18,3,9773,1,1,128.0,1,19,1,9,9,122.1,1,0,0,1,1,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,149.0,1,38,37,9,9,139.5,0,0,0,1,1,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,1,3,9,5,137.1,0,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,126.0,1,38,37,5,5,114.8,1,0,0,1,0,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9085,1,1,120.0,1,37,37,6,6,150.0,0,0,0,1,1,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,137.0,1,38,19,0,90,122.3,0,0,0,1,0,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9853,1,19,133.1,1,37,19,3,7,100.0,0,0,0,1,0,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,145.0,1,4,2,2,3,127.3,1,0,0,1,1,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,129.0,1,1,1,4,8,129.0,0,0,0,0,0,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,143.0,1,1,1,4,4,129.0,1,0,0,1,1,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,136.0,1,19,38,9,9,119.3,1,0,0,1,0,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,151.6,0,0,0,1,0,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,Enrolled +1,1,1,9238,1,1,108.0,1,19,38,9,9,107.3,0,1,0,1,0,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,134.0,1,1,1,2,7,128.4,1,0,0,1,0,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,Graduate +1,42,1,9119,1,1,120.0,1,3,1,2,9,108.2,1,0,0,1,1,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,Dropout +1,16,2,9500,1,1,127.0,1,2,38,4,9,119.0,1,0,0,1,0,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,131.0,1,1,1,9,9,122.0,0,0,0,1,0,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9070,1,3,133.1,1,3,5,2,2,120.0,1,0,0,1,0,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,150.0,1,19,19,5,5,132.8,1,0,0,1,0,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,Graduate +1,18,2,9670,1,1,121.0,1,37,38,4,1,111.9,1,0,0,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,108.0,41,3,3,9,9,107.0,0,0,1,0,0,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,150.0,1,34,19,0,4,152.8,1,0,0,1,1,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,18,2,9238,1,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,130.0,6,19,1,6,4,130.0,1,0,0,1,0,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,Enrolled +1,51,1,9119,1,1,136.0,1,1,19,3,5,133.6,1,0,0,1,1,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,Dropout +1,1,4,9773,1,1,155.0,1,3,19,1,4,149.8,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9070,1,1,124.0,1,19,38,4,0,117.6,1,0,0,1,1,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,9,100.0,0,0,0,1,1,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,Enrolled +1,44,1,9238,1,1,140.0,1,1,1,5,5,143.4,0,0,0,1,0,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,120.0,1,1,19,7,7,111.3,0,0,0,1,1,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,Enrolled +2,1,1,9556,1,1,144.0,1,19,19,193,144,139.8,0,0,1,1,1,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,110.0,1,1,1,5,5,160.0,1,0,1,1,0,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,Dropout +2,39,1,9853,1,19,133.1,1,37,37,9,9,131.0,0,0,0,1,0,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,139.0,1,4,1,2,10,136.4,1,0,0,1,0,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,Graduate +1,17,3,9085,1,1,134.0,1,37,38,9,9,120.4,1,0,0,1,0,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,148.0,1,3,2,4,2,131.6,1,0,0,1,0,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,145.0,1,19,37,7,7,141.5,1,0,0,1,0,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9130,1,19,133.1,1,37,38,9,9,120.0,0,0,0,1,1,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,3,9254,1,1,121.0,1,19,37,4,7,116.8,1,0,0,1,0,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,123.0,1,1,1,4,3,123.4,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,38,38,9,9,133.4,1,0,0,1,1,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,Graduate +1,42,1,9500,1,1,124.0,1,19,19,4,9,124.0,0,0,0,1,0,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,40,130.0,1,37,37,9,7,130.0,0,0,0,1,0,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,140.0,1,3,38,2,9,140.0,1,0,0,1,0,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,158.0,1,38,38,9,7,144.7,1,0,0,1,0,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,18,2,9238,1,1,121.0,1,19,1,4,3,121.4,1,0,0,1,0,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,12,133.1,1,37,19,9,10,120.0,0,0,0,1,1,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,122.0,1,3,1,4,3,114.8,1,0,0,1,0,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,Enrolled +4,43,1,9991,0,1,164.0,1,37,37,6,6,131.8,0,0,0,1,0,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,3,9773,1,1,145.0,1,38,38,9,5,133.1,0,0,0,1,0,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9853,1,19,133.1,1,38,19,9,9,108.0,0,0,1,0,0,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,3,9070,1,1,131.0,1,38,37,5,5,120.2,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,Enrolled +1,43,1,9238,1,1,130.0,1,38,37,9,7,133.2,0,0,0,1,0,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,112.0,1,1,1,3,3,106.4,1,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,125.0,1,1,38,144,181,123.3,0,0,0,1,0,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,125.0,1,3,2,2,1,119.1,1,0,0,1,0,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9853,1,3,140.0,1,34,34,0,0,140.0,1,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,135.0,1,1,19,3,9,137.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9991,0,3,120.0,1,37,37,6,7,120.0,0,0,1,0,1,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,130.0,1,1,1,4,3,125.1,1,0,0,1,0,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,Graduate +2,39,1,33,1,1,120.0,1,38,1,9,5,153.8,0,0,1,1,1,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,37,37,9,9,140.0,0,0,0,0,1,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,127.0,1,1,38,9,7,120.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,43,180.0,1,19,19,9,4,180.0,0,0,0,1,0,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,Graduate +1,1,3,9147,1,1,143.0,1,1,1,5,7,133.2,1,0,0,1,0,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,Graduate +1,15,1,9853,1,1,133.1,41,43,1,153,135,128.2,0,0,0,1,0,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,12,133.1,1,1,1,9,4,140.0,1,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,151.0,1,1,38,4,7,137.0,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,Graduate +1,17,4,171,1,1,172.0,1,3,1,2,10,155.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,129.0,1,19,1,9,5,112.0,0,0,0,1,1,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,150.0,1,38,3,9,1,140.0,0,0,0,1,1,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,Graduate +1,1,1,9773,1,1,124.0,17,1,1,3,5,118.1,1,0,1,0,0,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9670,1,1,124.0,1,37,19,5,8,114.2,1,0,1,1,0,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,122.0,1,1,19,3,5,116.8,1,0,0,1,0,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,144.0,1,38,1,9,10,137.4,0,0,0,1,0,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,19,19,9,9,120.0,0,0,0,1,0,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,138.0,1,38,38,7,6,124.7,1,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,18,2,9147,1,1,132.0,1,3,3,5,7,119.1,1,0,1,0,0,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,17,6,9119,1,1,111.0,1,19,3,5,10,106.5,1,0,0,1,1,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,Dropout +1,7,1,9500,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,1,140.0,1,37,37,9,9,130.0,1,0,0,1,1,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,125.0,1,37,37,3,3,124.0,0,0,0,1,1,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,128.0,1,19,2,7,3,126.3,1,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +2,39,1,9500,1,1,110.0,1,37,37,9,6,114.3,0,0,0,1,0,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,9085,1,1,133.1,1,1,9,4,4,128.2,0,0,0,1,0,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,Graduate +1,1,3,9238,1,1,126.0,1,38,19,5,8,120.8,1,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,121.0,1,1,1,9,8,118.9,1,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,109.0,1,19,37,5,5,108.3,0,0,0,1,0,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,Enrolled +1,1,4,9670,1,1,127.0,1,1,1,7,7,116.5,1,0,0,1,0,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,171,1,19,133.1,101,1,19,2,7,110.0,0,0,0,1,1,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,133.0,1,37,37,9,7,124.6,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,39,137.0,1,1,1,5,10,124.5,0,0,0,0,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,130.0,1,19,19,7,7,121.6,0,0,0,1,0,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,130.0,1,37,37,6,5,113.5,1,0,0,1,0,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9670,1,1,120.0,1,38,38,5,7,115.1,1,0,0,1,0,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,115.0,1,38,1,9,4,116.1,1,0,0,1,1,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,130.1,0,0,0,1,0,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,Enrolled +1,1,3,9238,1,1,133.1,1,1,1,9,9,100.0,1,0,0,1,1,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,168.0,0,0,0,1,1,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,148.0,1,1,1,9,9,141.7,0,0,0,0,1,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,Dropout +1,15,1,33,1,1,133.1,41,2,3,2,4,100.0,0,0,0,1,1,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,135.0,1,37,37,6,5,121.0,1,0,0,1,1,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,151.0,1,3,3,1,90,161.9,0,0,0,1,0,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,8,108.5,0,0,0,1,1,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9670,1,1,130.0,1,26,30,0,5,128.6,1,0,1,1,0,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,Graduate +1,43,1,9500,1,1,140.0,100,1,1,6,6,128.2,0,0,0,1,0,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,140.0,1,19,37,5,7,140.0,1,0,0,1,1,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,Dropout +1,39,1,33,1,1,140.0,1,3,1,2,4,152.8,0,0,0,1,0,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,Enrolled +1,43,1,9070,1,1,117.0,1,1,1,4,7,112.5,1,0,0,1,1,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,126.0,1,37,19,7,7,125.7,0,0,0,1,0,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,Enrolled +1,1,2,9773,1,1,140.0,1,38,38,5,7,126.4,1,0,0,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,121.0,1,37,38,6,9,121.0,0,0,0,1,0,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,136.0,1,12,1,4,4,122.0,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,117.0,1,37,37,9,9,120.2,1,0,0,1,0,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,133.1,1,38,1,9,9,121.0,0,0,1,0,1,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,Dropout +1,44,1,9991,0,39,130.0,1,37,37,5,5,130.0,1,0,0,1,1,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,138.0,1,1,19,4,9,142.2,1,0,0,1,0,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,148.0,1,3,1,2,10,148.0,1,0,0,1,0,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,Graduate +1,17,6,9556,1,1,134.0,1,19,38,7,7,128.5,1,0,0,1,0,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,141.0,1,1,19,5,8,141.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,149.0,1,3,1,9,9,137.5,0,0,0,1,1,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,Graduate +1,1,3,9085,1,1,142.0,1,11,11,90,90,155.3,0,0,0,1,0,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,135.0,1,19,37,9,9,134.0,1,0,0,1,0,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,132.0,1,19,38,9,7,120.1,0,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9147,1,1,133.0,1,37,37,9,5,119.7,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,139.0,1,3,4,2,2,130.6,0,0,0,1,0,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,2,130.0,1,0,1,0,1,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,Dropout +1,17,3,9500,1,1,138.0,1,3,3,4,5,130.0,1,0,0,1,0,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,121.0,1,19,19,3,3,116.1,1,0,0,1,0,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,160.0,1,3,38,1,9,152.0,1,0,0,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,130.0,41,37,19,9,8,125.5,1,0,0,1,0,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,133.1,1,38,38,191,193,146.0,0,0,1,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,Graduate +4,39,1,9003,1,1,140.0,1,37,37,9,8,150.0,0,0,0,1,1,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,Enrolled +1,17,2,9670,1,1,132.0,1,1,19,5,3,124.0,1,0,0,1,1,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,117.0,1,19,19,5,7,118.4,0,0,0,1,1,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,140.0,6,1,19,4,7,131.6,1,0,0,1,0,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,142.0,1,38,1,8,10,138.5,1,0,0,1,1,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9130,1,1,132.0,1,3,1,4,9,121.9,1,0,0,1,0,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,122.0,1,1,1,9,9,116.1,1,0,0,1,1,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,Dropout +1,7,1,8014,0,3,130.0,1,37,38,0,5,130.0,0,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,138.0,1,19,19,9,5,124.8,1,0,0,1,0,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,140.0,1,19,38,3,9,140.0,1,0,0,1,1,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +4,39,1,8014,0,1,138.0,1,19,19,90,90,127.0,0,0,0,0,0,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9500,1,19,133.1,1,1,3,2,2,100.0,0,0,1,1,1,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,117.0,1,3,1,3,5,110.7,1,0,0,1,1,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,120.0,1,19,19,5,5,113.0,1,0,0,1,0,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,160.0,1,37,37,7,7,133.0,1,0,0,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,137.0,1,1,1,4,5,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,19,37,9,7,123.9,1,0,0,1,0,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,38,38,9,5,130.0,0,0,1,0,1,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,137.0,1,19,37,9,7,130.8,0,0,1,1,0,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,38,37,4,6,150.0,1,0,0,1,0,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,115.0,1,34,38,0,5,108.4,1,0,0,1,0,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,140.0,1,3,38,141,151,135.3,0,0,0,1,1,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,148.0,1,19,19,7,7,130.9,0,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,127.0,1,1,1,4,3,126.3,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,2,9670,1,1,100.0,1,37,37,9,9,100.0,0,0,0,1,0,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,2,171,1,1,141.0,1,19,37,9,9,136.1,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,123.0,1,30,19,4,90,122.3,0,0,0,1,0,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,145.0,1,1,38,5,7,127.5,1,0,0,1,1,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,1,150.0,1,37,37,90,10,112.0,0,0,0,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,128.0,1,37,1,9,7,124.2,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,Dropout +1,43,1,9070,1,39,130.0,1,19,37,5,9,124.0,1,0,0,1,0,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,Graduate +1,17,1,9003,1,1,170.0,1,1,4,9,5,144.1,1,0,1,0,1,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9670,1,1,110.0,1,19,19,90,99,107.2,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9238,1,19,133.1,1,37,37,9,9,130.0,1,0,0,1,0,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9119,1,1,144.0,1,34,34,0,0,119.5,0,0,0,1,1,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,19,133.1,1,37,37,6,6,162.0,0,0,1,1,1,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,16,1,9085,1,1,138.0,1,37,37,9,9,123.0,1,0,0,1,0,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9500,1,1,133.1,1,19,19,5,6,121.4,0,0,1,1,0,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,138.0,1,1,1,4,7,132.1,1,0,0,1,0,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,Graduate +1,39,1,9119,1,1,133.1,1,37,37,9,9,101.6,0,0,0,1,1,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9500,1,1,126.0,1,1,19,131,181,120.1,1,0,0,1,0,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,38,9,9,142.0,1,0,0,1,0,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,Graduate +1,18,1,8014,0,1,138.0,1,19,1,9,5,134.5,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,19,9,9,150.0,0,0,0,1,1,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,126.0,1,38,37,9,9,123.6,1,0,0,1,0,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9254,1,19,133.1,1,19,19,3,1,101.5,0,0,1,0,1,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,2,9119,1,1,115.0,1,38,19,9,6,112.2,1,0,1,1,1,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,39,1,9003,1,1,120.0,1,37,37,9,9,125.7,0,0,1,0,0,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,Dropout +1,17,2,9773,1,1,115.0,1,1,1,5,5,119.6,1,0,0,1,0,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,19,9,4,140.0,0,0,0,1,0,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,125.0,1,37,19,90,90,137.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,120.0,1,3,38,3,7,124.2,1,0,0,1,1,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9147,1,1,146.0,1,5,1,1,5,144.6,0,0,0,1,1,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,116.0,1,1,1,3,4,113.6,1,0,0,1,0,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,Graduate +4,42,1,9147,1,1,133.1,1,37,38,7,3,123.0,1,0,0,1,1,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,118.9,1,38,37,5,9,118.9,1,0,0,1,0,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,123.0,1,12,1,9,9,119.2,1,0,0,1,0,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,2,140.0,1,38,37,7,8,140.0,0,0,0,1,0,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,110.0,1,37,37,90,90,108.4,1,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9119,1,1,146.0,1,1,37,7,7,132.4,1,0,0,1,1,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,19,133.1,1,19,3,9,2,140.0,1,0,1,1,1,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,2,9853,1,1,111.0,1,38,38,191,171,105.8,1,0,0,1,0,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,6,130.2,0,0,0,1,0,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,130.0,1,1,3,9,10,118.1,1,0,0,1,1,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,118.0,1,1,19,5,4,118.0,0,0,0,1,0,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,153.0,1,38,38,7,7,159.7,1,0,0,1,0,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,171,1,12,110.0,1,37,37,7,7,106.0,1,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,134.0,1,19,1,9,4,124.9,1,0,0,1,0,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,3,9254,1,1,121.0,1,19,19,9,9,125.9,1,0,0,1,0,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,160.0,1,19,19,4,9,154.4,0,0,0,1,0,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,3,140.0,1,19,19,9,7,152.4,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9130,1,1,130.0,1,19,1,191,144,110.0,0,0,0,1,1,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,142.0,1,38,37,9,5,127.3,1,0,0,1,0,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,37,37,9,9,130.0,0,0,1,1,0,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,124.0,1,37,19,9,4,121.2,0,0,0,1,1,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,120.0,1,19,19,9,3,113.9,1,0,0,1,0,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,114.0,1,19,38,5,3,112.6,1,0,0,1,0,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,Graduate +1,7,1,9991,0,40,120.0,1,1,19,4,9,120.0,0,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,128.0,1,19,38,9,9,118.2,0,0,0,1,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,4,9070,1,1,126.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,130.0,1,1,1,0,0,119.5,0,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,184.4,22,2,19,2,8,184.4,0,0,0,1,0,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,37,9,9,132.8,0,0,1,0,1,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9085,1,1,120.0,1,38,19,90,90,127.0,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,Graduate +1,17,4,9147,1,1,132.0,1,38,19,5,5,120.8,1,0,0,1,1,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,Dropout +1,10,1,9670,1,1,148.9,22,37,37,9,9,148.9,0,0,0,1,0,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,4,150.0,1,1,1,4,6,150.0,0,0,0,1,1,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,150.0,1,19,1,9,3,110.0,1,0,0,1,1,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,Graduate +1,15,1,9670,1,1,130.0,26,42,1,2,7,130.0,0,1,1,1,0,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,Graduate +2,7,1,8014,0,3,120.0,1,38,1,9,9,120.0,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,149.0,1,19,37,9,9,158.1,1,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,4,9147,1,1,124.0,1,37,37,9,9,117.4,0,0,0,1,0,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,142.0,1,34,1,5,10,136.1,1,0,0,0,1,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,1,1,8014,0,1,165.0,1,37,37,0,0,162.9,1,0,0,1,1,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,130.0,1,37,37,5,7,123.4,1,0,0,1,1,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,1,133.1,1,37,37,7,7,143.0,0,0,0,1,1,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,121.0,1,38,37,8,8,115.4,1,0,0,1,0,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9556,1,3,140.0,1,3,3,2,2,140.0,0,0,1,0,1,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,116.0,1,38,19,0,2,116.7,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,132.0,1,38,1,5,5,124.3,0,1,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,133.1,1,38,12,7,0,111.5,0,0,0,0,0,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,Dropout +1,53,1,9147,1,42,140.0,1,1,1,6,6,142.2,0,0,0,1,1,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,Graduate +2,44,1,9991,0,39,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9773,1,1,170.0,1,1,19,9,7,155.0,0,0,0,1,1,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,8014,0,19,133.1,1,37,37,4,8,112.5,0,0,0,1,0,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,120.0,1,1,1,5,8,112.0,1,0,0,1,0,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,123.0,1,1,1,3,3,113.6,1,0,0,1,0,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,Graduate +1,39,1,9085,1,1,133.1,1,1,19,9,9,162.3,1,0,0,1,0,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,116.0,1,37,1,9,8,115.7,1,0,1,0,0,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,160.0,1,9,19,4,3,151.3,0,0,0,1,0,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,19,149.0,1,34,34,0,0,126.3,0,0,0,1,0,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9238,1,39,140.0,41,1,1,4,6,137.5,0,0,1,1,0,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,130.0,1,37,37,9,9,129.0,1,0,0,1,0,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,19,38,7,7,118.7,0,0,0,1,1,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,128.0,0,0,0,1,0,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,Graduate +1,17,1,9070,1,1,135.0,1,19,37,5,9,145.9,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,128.0,1,1,19,9,7,118.2,0,0,0,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,128.0,1,19,38,9,9,127.0,0,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,140.0,1,37,12,9,9,150.0,0,0,1,1,1,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,Dropout +2,43,1,8014,0,1,160.0,1,37,39,9,4,140.9,0,0,0,1,0,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,133.0,1,38,19,8,7,127.3,1,0,0,1,0,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,Graduate +1,15,1,9670,1,1,160.0,1,37,12,9,9,149.5,1,0,0,0,1,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,152.0,101,2,1,9,1,168.5,1,0,0,1,1,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,Graduate +1,1,3,9085,1,1,147.0,1,19,19,9,1,135.6,1,0,0,1,0,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,2,8014,0,1,120.0,1,37,34,0,0,117.6,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,141.0,1,37,37,9,9,130.2,0,0,0,1,1,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,Graduate +1,16,2,9147,1,1,139.0,1,38,37,9,9,123.7,1,0,0,1,0,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,134.0,1,19,38,4,8,129.5,0,0,0,1,0,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,113.0,1,1,37,9,10,117.2,1,0,0,1,0,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,18,2,9556,1,1,126.0,1,3,3,2,2,115.5,0,0,0,1,1,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,1,134.0,1,37,38,4,7,110.0,1,0,0,1,0,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,171,1,1,132.0,1,1,1,1,4,132.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9003,1,1,130.0,1,19,19,9,1,140.0,0,0,0,1,0,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9773,1,1,132.0,1,38,19,9,9,125.0,1,0,0,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,140.0,1,37,37,9,6,132.8,0,0,0,1,1,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,130.0,1,37,19,9,5,140.2,1,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9070,1,1,118.0,1,43,3,123,123,110.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,19,100.0,1,37,37,5,5,111.0,1,0,0,1,0,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,3,9085,1,1,138.0,1,1,3,4,4,126.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,132.0,1,2,19,4,4,125.0,1,0,0,1,0,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,38,100.0,1,37,37,9,7,154.0,1,0,0,1,1,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,138.0,1,1,19,4,4,131.7,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,Graduate +2,39,2,9147,1,1,140.0,1,37,37,9,8,108.0,0,0,0,1,0,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,Enrolled +1,1,5,9147,1,1,134.0,1,3,2,2,2,134.7,0,0,0,1,1,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9130,1,1,120.0,1,2,3,3,2,120.0,1,0,0,0,1,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,Dropout +1,1,3,9085,1,1,140.0,1,10,19,90,90,135.8,1,0,0,1,0,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,142.0,1,37,38,5,1,129.4,0,0,0,1,0,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9670,1,1,120.0,1,1,19,5,5,117.2,1,0,0,1,0,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,136.0,1,1,19,5,7,136.4,0,0,0,1,0,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,120.0,1,37,37,5,5,124.6,0,0,0,1,0,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,Enrolled +1,39,1,9500,1,1,133.1,1,1,37,9,9,100.0,0,0,0,1,1,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,123.0,1,19,1,9,3,117.8,1,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,Graduate +5,39,1,9254,1,1,133.1,1,2,2,2,2,103.0,0,0,0,1,0,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,171,1,1,133.0,1,1,37,4,7,126.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,119.0,1,1,1,4,4,115.0,1,0,0,1,1,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,143.0,1,38,19,151,193,134.3,1,1,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,135.0,1,1,19,4,4,129.1,0,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,43,2,9670,1,1,130.0,1,19,1,4,4,127.6,1,0,0,1,1,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,126.0,1,37,37,5,1,126.0,0,0,0,0,1,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,42,1,9119,1,1,120.0,1,19,37,9,9,113.8,0,0,0,0,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9991,0,1,140.0,1,37,37,9,9,135.8,1,0,0,1,1,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,17,5,9085,1,1,118.0,1,38,38,9,9,112.4,1,0,0,1,0,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,3,9773,1,1,134.0,1,2,1,3,3,129.5,1,0,0,1,1,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,129.0,1,1,38,4,7,123.4,0,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,132.0,1,19,37,4,9,128.0,1,0,0,1,0,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,137.0,1,38,37,7,5,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,Graduate +1,17,5,9119,1,1,138.0,1,19,19,5,5,123.3,1,0,1,1,1,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,138.0,1,1,1,3,4,132.5,1,0,0,1,0,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,Graduate +1,16,2,9070,1,1,133.0,1,1,3,4,2,122.5,1,0,0,1,0,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,Enrolled +1,17,1,9130,1,1,137.0,1,38,19,5,7,130.0,1,0,0,1,0,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,Enrolled +1,17,1,9238,1,1,131.0,1,37,37,9,7,121.9,0,0,0,1,0,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,Graduate +2,1,1,9500,1,1,142.0,1,19,38,4,5,130.3,0,0,0,1,0,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,Graduate +2,39,1,9556,1,1,160.0,1,37,37,9,6,120.0,0,0,0,1,0,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,Dropout +1,51,1,9670,1,1,126.0,1,3,3,1,10,111.0,0,0,1,1,1,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,5,9853,1,1,141.0,1,37,19,9,5,133.0,1,0,0,1,0,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,Dropout +1,1,2,9670,1,1,124.0,1,19,1,9,4,117.7,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,133.0,1,19,19,9,5,120.1,1,0,0,1,0,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,Graduate +1,43,1,9147,1,1,133.1,1,4,19,2,1,128.2,0,0,0,1,0,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,Dropout +4,27,1,9070,1,2,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9003,1,1,150.0,1,2,4,4,1,150.0,0,0,0,1,1,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,19,133.1,1,19,37,7,5,155.5,1,0,1,0,1,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,1,9238,1,1,106.0,1,1,1,3,3,105.0,0,0,0,1,1,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,111.0,1,19,38,3,3,111.4,1,0,0,0,0,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,Dropout +1,43,1,9254,1,1,130.0,1,1,19,5,7,130.0,0,0,0,1,0,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,Dropout +1,17,1,8014,0,1,120.0,1,38,37,6,6,113.0,0,0,0,1,0,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,139.0,1,1,37,4,9,131.3,1,0,0,1,0,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,Graduate +1,43,3,9254,1,1,110.0,1,37,37,9,9,107.2,1,0,0,1,1,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,147.0,1,1,1,4,4,134.3,1,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,130.0,1,37,38,9,6,130.0,1,0,0,1,0,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,139.0,1,37,38,9,9,124.0,1,0,0,1,1,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,122.0,1,37,37,9,9,126.9,1,0,0,1,0,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,11,11,90,4,114.0,1,0,0,1,1,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9147,1,1,132.0,1,39,39,3,3,127.8,1,0,0,0,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,128.0,1,38,37,5,6,122.1,0,0,0,1,0,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9085,1,1,127.0,1,19,38,194,193,117.6,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9500,1,1,145.0,1,3,3,2,3,141.8,0,0,0,1,0,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,Graduate +1,53,1,9556,1,42,140.0,1,1,19,4,5,140.0,0,0,0,1,0,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,Graduate +1,18,1,9147,1,1,160.0,1,19,19,5,8,137.6,1,0,0,1,0,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,19,133.1,1,2,1,3,10,120.0,0,0,1,1,1,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,19,133.1,1,19,39,5,3,121.7,0,0,1,0,0,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,126.0,0,0,0,1,1,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,Graduate +1,1,3,171,1,1,140.0,1,37,37,9,9,124.3,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,136.0,1,38,37,9,9,126.9,1,0,0,1,0,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,136.0,1,19,1,9,9,129.0,1,0,0,1,0,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,144.0,1,38,38,7,7,136.0,1,0,0,1,0,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,154.0,1,38,38,9,9,156.5,1,1,0,1,0,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,131.0,1,19,19,9,9,134.9,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +4,43,1,8014,0,1,140.0,1,38,37,9,9,126.0,0,0,0,1,0,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,7,126.3,1,0,0,1,0,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,Graduate +1,44,1,8014,0,39,150.0,1,1,37,9,7,146.7,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,2,9119,1,1,140.0,1,19,19,9,9,125.7,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,12,100.0,1,1,1,4,4,100.0,0,0,0,1,0,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,Graduate +1,42,1,9500,1,1,111.0,1,1,3,9,10,128.2,1,0,0,1,1,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,Graduate +1,17,2,9773,1,1,132.0,1,19,19,9,6,120.1,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,131.0,1,4,4,2,1,120.5,0,0,0,1,0,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,44,1,9003,1,39,170.0,1,19,19,5,5,170.0,1,0,0,1,1,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,150.0,1,38,38,7,7,137.8,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,10,120.0,0,0,1,0,1,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9670,1,39,110.0,1,37,1,9,4,110.0,0,0,0,1,0,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,130.0,1,5,3,2,2,130.0,0,0,0,1,1,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9670,1,1,133.1,1,34,3,7,2,130.6,1,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,38,9,10,140.0,0,0,0,1,1,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,133.1,1,19,38,9,9,119.6,1,0,0,1,0,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,118.0,1,19,19,3,3,110.0,1,0,0,1,0,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,137.0,1,1,1,5,5,129.3,1,0,0,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,127.0,1,19,38,5,9,129.5,1,0,0,1,0,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,126.0,1,38,19,9,6,119.4,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,116.5,0,0,0,1,0,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,125.0,1,19,19,4,7,128.5,1,0,0,1,0,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,Enrolled +1,43,1,9773,1,1,133.1,22,34,34,90,90,130.0,0,0,1,1,0,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,125.0,1,1,1,5,5,128.5,0,0,0,1,1,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9500,1,1,133.1,1,19,37,9,9,120.0,0,0,0,1,0,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,Graduate +2,39,2,9147,1,1,133.1,1,37,37,5,7,110.0,0,0,0,1,1,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,6,9500,1,1,141.0,1,1,19,1,1,126.7,1,0,0,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,146.0,1,40,43,4,4,150.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,148.0,1,1,1,4,9,129.8,0,0,0,1,0,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,Enrolled +1,17,1,9853,1,1,133.0,1,38,38,9,9,127.4,0,0,1,1,0,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,43,1,9147,1,1,120.0,1,37,37,5,3,113.4,0,0,0,1,1,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,148.0,1,19,3,4,2,136.5,0,0,0,1,0,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,178.0,1,2,1,2,3,157.7,0,0,0,1,1,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +2,7,1,9254,1,3,130.0,1,1,3,4,3,130.0,0,0,0,1,0,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,33,1,40,120.0,1,38,37,5,6,120.0,1,0,1,0,1,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,Dropout +2,1,1,9147,1,1,151.0,1,38,37,9,8,132.1,1,0,0,1,0,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Dropout +1,43,2,9556,1,1,120.0,1,1,19,4,3,110.2,0,0,0,1,0,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,Graduate +2,1,4,9500,1,1,140.0,1,1,37,4,9,128.0,0,0,0,1,0,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,6,120.0,1,35,35,6,6,128.2,1,0,0,1,1,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,120.0,1,37,37,9,6,120.0,1,0,0,1,0,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,8,7,150.0,0,0,0,1,1,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,145.0,1,19,37,4,7,148.9,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,34,34,0,0,104.0,1,0,0,1,0,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9085,1,1,110.0,1,3,19,4,6,105.0,0,0,1,0,1,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Dropout +1,17,2,9254,1,1,108.0,1,37,37,9,7,108.0,1,0,0,1,0,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,Graduate +4,43,1,9238,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,0,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,136.0,1,19,37,173,183,118.4,1,0,0,1,0,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,18,1,9556,1,1,140.0,1,38,37,9,9,122.8,0,0,0,1,0,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,Graduate +1,39,1,9119,1,1,150.0,1,3,3,4,4,150.0,1,0,0,1,1,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,141.0,1,1,1,4,10,138.9,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,Graduate +1,18,4,9773,1,1,130.0,1,19,19,4,4,121.3,1,0,0,1,0,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,1,130.0,1,37,37,9,6,160.0,0,0,0,1,1,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,149.0,1,37,37,9,9,136.0,0,0,0,1,0,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,151.0,1,37,1,4,10,138.4,0,0,0,1,0,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9254,1,1,130.0,1,37,37,9,9,126.5,0,0,0,1,1,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,143.0,1,19,37,7,7,127.0,1,0,0,1,0,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,Graduate +2,57,1,9991,0,1,133.1,41,38,37,4,6,100.0,0,0,0,1,0,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,138.0,1,37,37,9,9,135.9,1,0,0,1,0,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,43,1,8014,0,1,145.7,22,37,37,9,9,145.7,1,0,0,1,0,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,Graduate +4,39,1,9773,1,19,133.1,1,37,37,9,1,117.5,0,0,0,1,0,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9238,1,1,118.0,1,1,19,4,10,112.4,1,0,0,1,0,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,8014,0,1,133.1,1,37,37,9,7,162.5,0,0,0,1,1,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,1,3,9254,1,1,115.0,1,1,1,3,3,117.5,1,0,0,1,0,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,133.0,1,37,38,9,9,130.2,1,0,0,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,152.0,1,2,22,4,3,146.1,1,0,0,1,0,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +2,39,1,9085,1,12,133.1,1,1,39,5,3,140.0,1,0,1,0,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9003,1,1,140.0,1,38,1,9,4,138.3,0,0,0,1,1,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,130.0,1,38,37,9,6,133.9,0,0,0,1,1,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,140.0,1,37,37,9,9,142.5,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,120.0,1,38,1,9,3,118.3,1,0,0,1,0,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,117.0,1,1,19,4,7,113.5,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,141.0,1,19,1,7,3,128.8,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9147,1,1,125.0,1,3,38,2,10,118.7,1,0,0,1,0,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,116.0,1,37,1,5,3,124.8,1,0,0,1,1,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,120.0,1,36,37,0,0,126.7,1,0,0,1,1,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,4,9853,1,1,140.0,1,19,38,4,1,128.5,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,1,3,10,130.0,0,0,0,1,1,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,136.0,1,3,37,2,8,121.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,154.0,1,37,37,9,9,149.5,1,0,0,1,0,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,138.0,1,19,38,5,8,133.5,0,0,0,1,0,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,128.0,1,1,37,4,3,117.9,1,0,0,1,0,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,Graduate +1,43,1,9130,1,1,150.0,1,3,3,3,4,150.0,1,0,0,1,0,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,110.0,1,19,38,3,5,117.4,1,0,0,1,0,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,135.0,1,37,38,9,6,122.1,1,0,0,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9003,1,1,140.0,1,37,37,9,6,104.8,0,0,0,1,0,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,143.0,1,37,37,9,7,131.8,1,0,0,1,0,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,142.0,1,1,1,3,3,133.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,141.0,1,1,19,5,10,127.0,0,0,0,1,0,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,Graduate +3,1,2,9085,1,1,135.0,1,19,1,4,4,129.4,1,0,0,1,0,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,39,1,9254,1,1,133.1,1,19,19,4,7,123.0,0,0,1,0,0,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9500,1,1,131.0,1,19,37,9,7,129.8,1,0,0,1,0,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,Graduate +1,39,1,9670,1,9,133.1,1,6,22,3,3,120.0,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,131.0,1,37,37,3,3,131.7,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,137.0,1,19,19,5,5,134.6,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,131.0,1,1,1,4,10,129.3,0,0,0,1,0,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,140.0,1,1,37,141,192,129.7,0,0,0,1,0,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,140.0,1,37,37,9,9,124.6,0,0,0,1,0,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,138.0,1,37,37,5,9,125.1,1,1,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Dropout +1,2,1,9147,1,1,150.0,1,37,37,9,9,122.0,1,0,0,1,0,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,135.0,1,3,1,4,4,136.1,1,0,0,1,1,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,Enrolled +1,39,1,9991,0,1,150.0,1,1,19,4,8,123.0,0,0,0,1,1,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,141.0,1,19,37,5,8,130.2,0,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,106.0,1,37,37,9,9,108.0,1,0,1,1,0,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,19,133.1,1,37,38,9,7,100.5,1,0,0,1,1,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,Enrolled +1,43,1,9254,1,1,142.0,1,38,38,9,9,125.9,0,0,0,1,0,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,150.0,1,1,37,9,7,130.2,0,0,0,1,0,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,Graduate +4,39,1,9670,1,1,140.0,1,2,1,3,9,170.0,0,0,1,0,1,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9773,1,1,119.0,1,38,19,9,9,118.3,0,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,117.0,1,34,34,0,0,109.3,0,0,0,1,0,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,120.0,1,34,34,99,99,111.6,0,0,1,1,1,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,139.0,1,19,19,9,7,110.3,0,0,1,1,1,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,3,19,9,9,113.2,0,0,0,1,0,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,Enrolled +1,43,1,9991,0,1,120.0,1,38,38,9,7,141.0,0,0,0,1,1,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,151.0,1,3,1,2,4,151.0,1,0,0,1,0,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,130.0,1,37,37,9,6,110.0,1,0,0,1,0,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9853,1,1,130.0,1,2,39,2,5,124.6,0,0,0,1,1,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,138.0,1,1,1,4,3,141.5,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,120.0,1,37,37,9,5,100.0,0,0,0,1,0,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9991,0,39,150.0,1,37,37,6,6,150.0,0,0,0,1,0,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9085,1,19,133.1,1,38,38,4,7,128.2,0,0,0,1,0,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.0,41,19,19,9,9,119.7,1,0,1,1,0,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9085,1,1,128.0,1,1,19,4,90,124.2,0,0,0,0,0,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,120.0,1,1,1,9,9,129.1,1,0,0,1,1,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9773,1,1,125.0,1,19,19,9,7,129.6,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,137.0,1,40,19,2,9,130.7,1,0,0,1,0,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,Dropout +1,51,1,9147,1,1,116.0,1,3,3,2,2,115.2,0,0,1,1,1,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,5,9853,1,1,132.0,1,12,12,4,4,123.3,1,0,0,1,0,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,Dropout +1,7,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,1,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,135.0,1,19,38,9,5,136.8,1,0,0,1,0,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,137.0,1,1,1,4,7,134.6,1,0,0,1,1,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,4,171,1,1,133.1,1,38,38,9,9,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,133.1,1,19,37,7,8,120.0,0,0,1,0,0,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,140.0,1,1,19,9,7,127.0,1,0,0,1,0,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,Graduate +1,18,1,9500,1,1,124.0,1,38,37,9,7,119.3,1,0,0,1,0,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,3,19,2,4,150.0,1,0,0,1,0,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,19,133.1,1,3,19,90,90,123.5,0,0,0,1,0,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9853,1,1,133.1,1,37,37,5,5,116.5,0,0,0,1,0,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,Dropout +1,18,6,9500,1,1,144.0,1,1,1,3,6,130.8,1,0,0,1,0,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9670,1,1,151.0,1,19,19,1,1,100.0,0,0,1,1,0,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,125.0,1,1,19,4,6,115.2,0,1,0,1,0,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,37,38,4,9,110.0,0,0,1,0,0,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,133.1,1,19,19,5,5,108.5,1,0,0,1,0,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,130.0,1,37,11,90,90,122.6,0,0,0,1,0,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,113.0,1,19,37,9,9,118.6,1,0,0,1,0,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,140.0,6,2,3,5,2,124.3,1,0,0,1,0,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,Enrolled +1,1,4,9119,1,1,111.0,1,37,37,9,5,107.5,1,0,0,1,1,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,143.0,1,19,38,9,9,133.4,1,0,0,1,0,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,Graduate +1,17,1,9773,1,1,141.0,1,2,3,2,2,133.7,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,151.0,41,3,3,2,5,161.9,1,0,0,1,0,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,43,1,33,1,1,143.0,1,37,1,9,10,121.2,1,0,0,1,1,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,0,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,141.0,1,1,19,8,7,128.8,1,0,0,1,0,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Enrolled +1,1,1,9238,1,1,115.0,1,19,38,7,7,108.7,0,0,0,1,0,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,114.0,1,1,1,4,0,108.8,1,0,0,1,0,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,2,9853,1,1,112.0,1,37,37,191,182,106.1,1,0,1,1,0,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,2,9085,1,1,157.0,1,3,38,4,6,142.3,0,0,0,1,0,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,Graduate +2,44,1,8014,0,39,160.0,1,37,19,9,10,155.9,0,0,0,1,0,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,Graduate +1,1,4,171,1,1,137.0,1,1,38,4,8,141.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,144.0,1,1,37,9,9,126.5,1,0,0,1,0,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,145.0,1,1,1,4,10,131.4,0,0,0,1,0,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,115.0,1,1,1,9,4,109.1,1,0,1,0,0,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,170.0,1,37,37,0,0,150.8,1,0,0,1,0,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,5,3,9070,1,1,157.0,1,3,1,9,6,138.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,Graduate +1,43,2,9238,1,1,129.0,1,34,30,0,5,118.9,1,0,0,1,1,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,5,9853,1,1,141.0,1,3,19,2,7,130.9,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Graduate +4,39,1,9991,0,1,133.1,1,37,37,9,9,130.4,0,0,0,1,0,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,130.0,1,19,38,9,9,126.9,0,0,1,1,0,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,136.0,1,19,1,4,3,125.2,1,0,0,1,0,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,37,9,9,140.2,0,0,0,1,1,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,132.0,1,37,38,9,5,120.8,0,0,0,1,0,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,150.0,1,19,37,6,6,150.0,0,0,1,1,0,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,Graduate +2,42,1,9991,0,1,130.0,1,3,2,2,2,130.0,0,0,0,1,1,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,Enrolled +4,39,1,8014,0,1,133.1,1,38,37,5,7,144.5,0,0,0,1,0,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,2,9773,1,1,150.0,41,1,37,9,7,130.8,0,0,0,1,0,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,Graduate +2,1,1,8014,0,1,151.0,1,37,37,9,9,152.4,0,0,0,1,0,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,Graduate +6,39,1,9500,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,Dropout +2,43,1,9670,1,1,100.0,1,34,34,0,0,128.2,0,0,0,1,1,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,148.0,1,1,19,3,3,131.7,1,0,0,1,0,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,142.0,1,19,19,7,7,142.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,127.0,1,1,38,4,7,125.6,0,0,1,1,0,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,146.0,1,38,38,9,7,134.1,1,0,0,1,1,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,115.0,1,1,1,4,4,109.1,1,0,0,1,0,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,Enrolled +1,1,2,9773,1,1,148.0,1,1,19,9,9,141.7,0,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,116.0,1,37,37,0,5,114.3,1,0,0,1,0,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,139.0,1,38,19,5,7,130.6,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,Graduate +1,1,6,9147,1,1,128.0,1,37,37,9,9,116.5,0,0,0,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9130,1,3,150.0,1,3,1,90,90,150.0,1,0,0,1,0,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9670,1,1,122.0,1,1,19,4,4,116.1,0,0,0,1,1,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,Enrolled +1,39,1,9119,1,1,100.0,1,37,37,9,8,160.0,0,0,1,0,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9254,1,1,128.0,1,19,1,7,9,121.7,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,143.0,1,37,38,7,7,133.8,1,0,0,1,0,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,107.0,1,38,38,7,7,103.5,1,0,0,1,0,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,Graduate +1,39,2,9147,1,1,143.0,1,19,5,4,1,100.0,1,0,0,1,1,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,140.0,0,0,1,0,0,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,160.0,1,1,1,5,4,160.0,1,1,0,0,1,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,Dropout +2,39,1,9500,1,19,133.1,1,38,38,2,10,120.0,0,0,0,1,0,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,2,9853,1,1,122.0,1,19,19,4,5,112.6,1,0,0,1,0,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,3,9500,1,1,137.0,1,19,37,7,7,126.7,1,0,0,1,0,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,Graduate +1,7,1,9070,1,40,120.0,1,1,19,3,9,120.0,1,0,0,1,0,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,157.0,1,38,3,5,2,141.4,0,0,0,1,0,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,Graduate +2,1,2,8014,0,1,110.0,1,37,1,9,10,108.7,1,0,0,1,0,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,129.0,1,19,37,7,6,120.0,1,0,0,1,0,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,108.0,1,19,1,4,3,111.9,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9070,1,12,110.0,1,37,38,5,10,130.0,0,0,1,0,1,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,122.0,1,1,1,193,101,126.2,0,0,0,1,0,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,4,4,3,3,143.6,0,0,1,1,1,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,Enrolled +1,7,1,9119,1,3,130.0,1,34,34,90,90,130.0,0,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,8014,0,39,120.0,1,19,37,7,6,121.8,1,0,0,1,0,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,142.0,1,37,38,9,9,137.5,1,0,0,1,1,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,138.0,1,3,19,2,4,131.0,1,0,0,1,1,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,Dropout +1,17,2,9853,1,1,125.0,1,1,19,5,5,119.4,1,0,0,1,0,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,137.0,1,1,1,5,4,131.1,1,0,0,1,0,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,133.0,1,38,38,9,9,128.1,1,0,0,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Dropout +4,39,1,9991,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,0,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,17,1,9130,1,1,138.0,1,2,19,2,6,126.3,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,Enrolled +1,17,4,9500,1,1,135.0,1,1,1,4,4,127.0,1,0,0,1,0,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,140.0,1,4,3,3,3,127.8,0,0,0,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,5,1,9147,1,1,126.0,1,19,38,5,6,117.3,1,0,0,1,0,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,Enrolled +1,39,1,9670,1,1,133.1,1,1,19,4,9,140.0,0,0,0,1,1,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,126.0,1,38,38,9,8,118.8,1,0,0,1,0,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,Graduate +2,42,1,9147,1,1,133.1,1,37,37,9,9,115.8,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,126.0,1,1,37,7,9,132.7,0,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,133.0,1,19,19,5,7,123.6,0,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,4,9556,1,1,135.0,1,38,37,3,7,129.0,1,0,0,1,0,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,110.0,1,37,37,9,9,107.6,1,0,0,1,1,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Enrolled +1,17,4,9147,1,1,135.0,1,19,1,0,4,128.7,1,0,0,1,1,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +2,1,1,8014,0,1,150.0,1,1,37,4,7,139.9,1,0,0,1,0,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,116.0,1,1,38,4,3,114.6,1,0,0,1,0,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,121.0,1,19,37,1,3,131.5,0,0,0,1,0,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,100.0,1,19,1,1,90,114.0,1,0,1,0,0,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,146.0,1,19,37,5,8,135.8,1,0,0,1,0,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9119,1,39,140.0,1,1,19,4,5,140.0,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9670,1,1,136.0,1,19,19,5,5,122.0,0,0,1,0,0,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9003,1,1,133.1,1,19,19,4,4,107.5,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9070,1,1,164.0,1,38,38,9,7,165.8,1,0,0,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,154.0,1,38,38,9,9,133.4,1,0,0,1,0,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,127.0,1,19,37,7,7,121.5,1,0,0,1,1,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,Enrolled +1,43,6,9238,1,1,129.0,1,34,34,0,0,125.2,0,0,0,1,0,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,125.0,1,19,1,4,5,122.6,1,1,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,136.0,1,38,19,7,7,121.7,1,0,0,1,0,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,131.0,1,38,1,7,4,128.3,1,0,0,1,0,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,Graduate +1,1,4,171,1,1,132.0,1,1,19,4,5,138.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9254,1,1,115.0,1,12,1,9,3,108.7,1,0,0,1,0,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,131.0,1,1,37,3,7,120.2,0,0,0,1,0,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,134.0,1,1,1,4,9,124.2,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,142.0,1,19,1,9,1,132.6,0,0,0,1,0,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,2,1,3,6,150.0,1,0,0,1,1,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,130.0,1,19,38,9,7,113.5,0,0,0,1,0,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,135.0,1,2,1,2,8,126.6,0,0,0,1,0,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,12,133.1,1,37,37,5,7,119.3,1,0,0,1,1,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9130,1,1,110.0,1,3,19,2,9,105.5,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9130,1,1,134.0,41,1,19,5,5,125.6,1,0,0,1,0,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,151.0,2,1,1,5,9,146.5,0,0,0,1,0,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,133.0,1,1,3,3,3,135.8,1,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,7,1,9070,1,3,140.0,1,37,2,9,3,140.0,0,0,0,0,0,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,147.0,1,37,19,9,5,133.7,1,0,0,1,0,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,Enrolled +1,51,1,9500,1,1,127.0,1,19,1,5,9,150.0,0,0,0,1,0,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,143.0,1,1,37,5,9,126.6,0,0,1,0,0,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,9,160.0,0,0,1,1,0,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,Graduate +4,39,1,8014,0,19,133.1,1,34,34,0,0,100.0,0,0,0,1,0,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +4,43,1,9853,1,1,133.1,100,19,22,90,90,100.0,0,0,0,1,0,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,2,120.0,1,37,37,9,8,120.0,0,0,0,1,0,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9130,1,40,129.0,1,3,3,2,2,155.3,1,0,0,1,0,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,150.0,1,38,37,9,9,150.0,1,0,0,1,1,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,160.0,1,1,37,3,3,160.0,1,0,1,0,0,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,Dropout +2,39,1,9003,1,1,133.1,1,1,19,4,4,120.0,0,0,1,0,1,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,115.0,1,19,38,9,9,108.0,0,0,0,1,0,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,134.0,1,1,19,4,5,126.0,0,0,0,1,0,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,135.0,1,38,38,5,8,133.3,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,5,1,9670,1,1,135.0,1,1,12,4,4,140.3,1,0,0,1,0,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,122.0,1,19,1,4,8,135.8,0,0,0,1,0,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,19,19,3,9,112.6,1,0,0,1,0,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,4,9773,1,1,147.0,1,1,1,4,5,139.7,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,140.0,1,19,19,4,5,140.0,1,0,0,1,0,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,130.0,1,12,12,9,9,126.1,0,0,0,1,1,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,2,9147,1,1,130.0,1,34,37,9,9,118.5,1,0,0,1,1,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,138.0,1,4,1,2,1,133.0,1,0,0,1,0,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,138.0,1,37,37,194,171,131.0,1,0,0,1,0,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,19,5,8,147.3,0,0,0,1,0,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,6,9500,1,1,149.0,1,1,1,4,9,133.0,1,0,0,1,0,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,Graduate +1,16,6,9773,1,1,136.0,1,38,14,0,0,129.7,1,0,0,1,0,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,130.0,1,1,34,9,9,124.8,1,0,0,1,0,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,111.0,1,1,1,3,3,112.4,1,0,0,1,1,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,121.0,1,1,19,4,7,135.4,1,0,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,Graduate +1,1,1,9556,1,1,135.0,1,37,38,7,9,125.8,0,0,0,1,0,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,136.0,1,37,19,5,8,129.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,4,9670,1,1,110.0,1,1,37,7,7,111.1,1,0,0,0,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,128.0,1,38,38,5,5,118.6,1,0,0,1,0,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,Graduate +2,39,1,9500,1,19,133.1,1,37,38,9,10,120.9,1,0,0,1,0,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,Dropout +1,5,3,9085,1,1,143.0,1,37,37,0,90,159.1,0,0,1,1,0,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Dropout +4,39,1,9238,1,1,120.0,1,37,37,9,9,125.5,1,0,0,1,0,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,126.0,1,3,1,2,5,116.9,1,1,0,1,0,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,16,1,9556,1,1,137.0,1,37,37,9,7,122.7,1,0,0,1,0,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,136.0,1,1,1,9,9,123.8,1,0,0,1,0,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +4,39,1,9130,1,1,133.1,1,3,1,5,5,110.0,1,0,0,1,0,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,Dropout +1,17,4,9085,1,1,138.0,1,19,36,90,7,134.9,1,0,0,1,0,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,130.0,1,1,4,4,2,131.4,0,0,0,1,1,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,Graduate +2,42,1,9853,1,1,133.1,1,37,37,4,7,100.0,0,0,0,1,0,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,115.0,1,1,1,9,9,134.3,1,0,0,1,1,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,108.0,1,1,38,5,8,105.9,0,0,0,1,0,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9991,0,1,120.0,1,19,37,5,5,128.2,0,0,0,0,1,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +5,7,1,9130,1,3,160.0,1,19,38,9,6,160.0,0,0,0,0,0,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,121.0,1,3,19,2,9,115.4,1,0,0,1,1,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..92db5db9a6143e84d4ca37f25e2fb4c176360620 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/val.csv @@ -0,0 +1,443 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,17,1,9254,1,1,118.0,1,11,34,5,0,122.2,1,0,0,1,0,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,43,1,9238,1,1,120.0,1,1,38,4,3,118.3,0,0,0,1,0,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,108.0,1,3,1,3,4,109.1,1,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,9991,0,40,130.0,1,19,19,7,3,130.0,0,0,0,1,0,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,19,9,10,150.0,0,0,0,1,1,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9119,1,40,130.0,1,1,1,4,4,130.0,0,0,0,1,1,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,128.0,1,19,19,5,5,124.5,1,0,0,1,0,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,170.0,1,19,19,5,1,170.0,1,0,0,1,0,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,Enrolled +1,1,3,9500,1,1,113.0,1,3,1,134,135,107.8,1,0,0,1,0,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,Enrolled +1,1,2,9670,1,1,117.0,1,37,37,9,9,111.8,0,0,0,1,0,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,1,1,9,4,126.2,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,145.0,1,19,38,7,6,128.6,1,0,0,1,0,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9147,1,3,130.0,1,38,38,1,9,130.0,0,0,0,1,0,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,170.0,1,19,37,8,8,100.0,0,0,0,1,0,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9147,1,1,148.0,1,38,37,5,5,134.0,0,0,0,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,5,9085,1,1,118.0,1,1,38,4,7,122.2,1,0,0,1,0,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,133.1,1,38,38,191,192,118.0,0,0,1,1,0,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,Graduate +1,18,1,9853,1,1,132.0,1,37,37,9,5,126.1,0,0,0,1,0,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +6,39,1,8014,0,1,133.1,1,37,37,9,9,119.0,0,0,0,1,0,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,133.1,1,1,37,7,7,118.0,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,123.0,1,38,38,4,7,114.3,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9991,0,1,143.0,1,19,37,5,8,135.0,0,0,0,1,0,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,128.0,1,1,1,2,10,116.5,0,0,0,1,1,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,Dropout +2,39,1,9085,1,1,120.0,1,19,19,1,4,130.0,0,0,0,1,0,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,Dropout +2,39,1,171,1,19,100.0,1,37,37,9,9,139.0,0,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,3,9500,1,1,139.0,1,38,37,9,8,146.5,0,0,0,1,0,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,120.0,1,37,37,9,1,123.2,0,0,0,1,0,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,1,140.0,1,3,3,4,2,141.7,1,0,0,1,0,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,127.0,1,2,2,3,4,115.8,1,0,0,1,1,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,117.0,1,19,19,9,9,116.3,1,0,0,1,0,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,152.0,1,19,37,3,8,156.9,0,0,0,1,0,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,140.0,1,1,19,4,4,140.7,0,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,133.0,1,3,19,2,7,120.4,1,0,0,1,0,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,1,160.0,1,38,38,7,9,121.4,0,1,0,1,0,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,120.0,1,1,2,9,3,130.0,1,0,0,1,0,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,139.0,1,2,3,3,3,132.7,1,0,0,1,0,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,6,108.3,0,0,0,1,1,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,8014,0,1,107.0,1,19,11,0,0,103.5,1,0,0,1,0,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,113.0,1,38,38,191,175,110.2,1,0,1,1,0,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,1,19,1,5,100.0,1,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,39,140.0,1,38,19,9,5,110.0,0,0,0,1,0,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,Enrolled +1,18,2,9238,1,1,126.0,1,19,37,5,7,129.9,1,0,0,1,1,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,18,1,9254,1,1,137.0,1,19,19,4,5,126.9,0,0,0,1,1,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,121.0,1,37,37,9,9,122.4,0,0,0,1,0,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,51,1,9070,1,1,122.0,1,38,38,9,9,128.8,1,0,0,1,1,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,141.0,1,1,1,3,10,142.8,0,0,0,1,0,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,130.0,1,19,38,9,9,162.3,0,0,0,1,1,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,Dropout +1,18,1,9853,1,1,133.1,1,1,19,141,182,106.0,1,0,1,1,0,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,17,1,9147,1,1,120.0,1,19,19,3,3,113.4,0,0,0,1,0,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,147.0,1,37,19,7,7,134.4,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,1,120.0,1,1,3,144,123,120.0,0,0,0,1,1,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,17,4,9500,1,1,137.0,1,1,37,9,9,128.4,1,0,0,1,0,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,120.0,0,1,1,1,0,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9085,1,1,140.0,1,37,37,9,9,154.6,0,0,0,0,0,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,19,133.1,1,37,19,9,7,134.3,0,0,0,1,1,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,Dropout +1,39,1,9119,1,1,130.0,1,19,37,9,4,149.0,1,0,0,1,1,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,Enrolled +1,17,1,9254,1,1,115.0,1,1,19,3,3,109.4,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,126.0,1,37,3,5,2,116.9,0,0,0,1,1,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,128.0,1,1,1,2,2,130.8,1,0,0,1,0,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,127.0,1,19,19,4,6,120.7,0,0,1,0,0,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9238,1,1,110.0,1,14,14,90,90,112.5,1,0,0,1,0,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,19,5,5,130.8,1,0,0,1,0,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9130,1,1,150.0,1,1,1,4,10,110.0,0,0,1,1,1,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,5,9238,1,3,135.0,1,1,38,9,3,129.4,0,0,1,1,0,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,133.0,1,19,37,1,9,128.5,1,0,0,1,0,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,Graduate +1,39,2,9991,0,1,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9773,1,1,136.0,1,1,38,9,8,131.5,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,138.0,1,37,38,9,8,134.2,1,0,0,1,0,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,7,2,9500,1,3,140.0,1,37,38,9,9,138.0,0,0,0,1,1,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,Dropout +1,43,1,9003,1,1,120.0,1,1,1,4,10,134.4,0,0,0,1,1,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,140.0,1,19,19,9,9,124.3,1,0,0,1,0,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,Graduate +1,17,3,9254,1,1,127.0,1,12,38,5,7,116.9,1,0,1,1,0,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,1,9238,1,1,145.0,1,38,38,9,7,145.0,0,0,0,1,0,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,140.0,1,19,19,9,7,102.5,0,0,0,1,0,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,17,6,9500,1,1,131.0,1,1,19,7,7,126.5,1,0,0,1,0,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,34,34,0,0,123.3,1,0,0,1,0,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,120.0,1,37,3,9,3,168.2,0,0,0,1,1,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,5,9773,1,1,118.0,1,38,19,9,9,113.8,1,0,0,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,122.0,1,19,38,7,7,117.1,1,0,0,1,0,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,115.0,1,19,1,3,7,113.6,0,0,0,1,1,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,141.0,1,1,4,4,4,127.7,0,0,0,1,0,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,130.0,1,37,38,6,6,130.0,1,0,0,1,0,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,120.0,1,37,37,5,5,111.3,1,0,0,1,0,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,145.0,1,1,19,10,5,150.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,129.0,1,38,19,3,7,118.9,1,0,0,1,0,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,Enrolled +1,1,5,9085,1,1,121.0,1,38,37,9,8,114.0,1,0,0,0,0,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,17,1,9254,1,1,126.0,1,1,1,9,9,124.3,0,0,0,1,0,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,149.0,1,1,3,0,0,148.7,0,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9147,1,1,125.0,1,38,38,6,8,114.5,1,0,0,1,0,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,Graduate +1,16,3,9085,1,1,130.0,1,37,37,9,2,119.5,1,0,0,1,0,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,145.0,1,19,37,9,9,132.3,1,0,0,1,0,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,128.0,1,19,38,5,7,125.6,1,0,0,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9254,1,1,135.0,1,38,37,9,7,139.2,0,0,0,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,139.0,1,37,38,6,6,121.3,1,0,0,1,0,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9070,1,39,150.0,1,12,37,3,9,147.7,0,0,1,1,0,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,110.0,1,3,19,4,5,109.0,0,0,0,1,1,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,133.1,1,38,38,5,9,105.0,1,0,0,1,0,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,Graduate +2,51,1,9991,0,1,127.0,1,37,37,8,4,100.1,0,0,0,1,0,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,135.0,1,19,1,4,1,131.9,1,0,0,1,1,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +4,39,1,9556,1,1,160.0,1,19,3,9,2,130.0,0,0,0,1,0,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,Enrolled +1,17,5,9119,1,1,123.0,1,3,1,2,9,116.0,1,0,1,0,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9500,1,1,140.0,1,19,19,7,7,138.6,0,0,0,1,0,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,19,38,9,7,125.6,1,0,0,1,0,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,3,130.0,1,2,2,1,1,130.0,0,0,0,1,0,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,7,9,111.0,0,0,0,0,1,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,148.0,1,1,1,4,8,141.4,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9147,1,1,115.0,1,1,38,3,8,109.8,1,0,0,1,0,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +1,7,3,9130,1,3,130.0,1,19,37,90,5,130.0,0,0,1,0,0,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,5,9500,1,1,141.0,1,38,19,7,7,132.5,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,19,37,9,9,129.9,0,0,0,1,1,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,142.0,1,19,37,4,7,141.3,0,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,19,38,7,4,125.7,0,0,0,1,0,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,129.0,1,19,37,9,9,117.5,1,0,0,1,0,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,103.0,1,1,19,9,9,108.3,0,0,0,1,0,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9853,1,1,133.1,1,19,19,9,9,97.0,1,0,0,1,0,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9238,1,3,150.0,1,37,37,191,192,150.0,0,0,0,1,0,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9085,1,12,133.1,1,34,34,99,99,128.2,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9070,1,1,129.0,1,3,4,2,2,136.4,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Enrolled +1,39,2,9147,1,38,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,133.1,1,34,34,0,0,118.9,1,0,0,1,0,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,135.0,1,19,38,9,9,129.2,0,0,0,1,0,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,122.0,1,37,37,9,3,115.7,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,9853,1,1,120.0,1,1,19,4,7,111.3,0,0,0,1,0,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,141.0,1,38,19,9,10,125.6,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,4,9500,1,1,133.0,1,19,19,3,10,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,106.0,1,1,19,4,4,106.4,1,0,0,1,0,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,Enrolled +2,39,1,9147,1,1,133.1,1,37,37,9,9,140.0,0,0,0,0,0,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,51,1,9070,1,1,130.0,1,3,1,2,8,122.2,0,0,1,1,0,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,Graduate +1,17,6,9500,1,1,143.0,1,38,1,9,10,127.3,1,0,0,1,0,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,154.0,1,1,1,5,7,154.7,0,0,0,1,0,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,120.0,1,37,37,9,7,120.0,0,0,0,1,0,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,151.0,1,37,1,9,9,138.4,1,0,0,1,0,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Graduate +2,39,2,9003,1,19,133.1,1,38,19,4,1,110.0,0,0,0,0,1,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9119,1,1,129.0,1,12,1,4,10,124.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,120.0,1,37,37,4,9,117.1,1,0,0,1,0,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,133.1,1,3,1,4,9,105.0,1,0,0,1,1,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9147,1,1,120.0,1,38,38,9,8,118.3,0,0,0,1,1,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9147,1,1,147.0,1,19,1,9,7,139.3,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,140.0,1,19,19,5,5,131.3,0,0,0,1,1,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,133.0,1,38,19,9,8,128.8,1,0,0,1,1,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,Graduate +1,17,1,9254,1,1,127.0,1,1,1,4,8,126.7,1,0,0,0,1,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9147,1,1,131.0,1,1,19,4,5,120.2,1,0,0,1,0,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,143.0,1,38,38,5,5,133.9,0,0,0,1,0,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,Graduate +4,39,1,9147,1,1,140.0,1,37,37,9,9,142.8,0,0,0,1,0,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,138.0,1,19,1,5,5,128.0,1,0,0,1,0,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,Graduate +1,43,1,9500,1,1,150.0,1,37,37,9,9,130.8,1,0,0,1,0,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,160.0,1,19,38,9,9,152.0,0,0,0,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,42,1,9254,1,1,154.0,1,38,37,1,1,154.0,1,0,0,1,0,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,141.0,1,37,37,4,4,138.9,0,0,0,1,0,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,135.0,1,38,37,9,8,126.3,1,0,0,1,0,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,Graduate +1,17,2,9853,1,1,138.0,1,1,1,9,4,123.0,1,0,0,1,0,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +2,1,1,9085,1,1,139.0,1,19,19,192,144,127.1,0,0,0,1,1,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,Graduate +1,17,4,9070,1,1,116.0,1,38,37,9,9,109.0,0,0,0,1,0,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,38,38,6,3,140.0,0,0,0,1,0,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9254,1,1,120.0,1,19,19,4,4,125.5,0,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9991,0,1,120.0,1,37,37,9,8,122.5,1,0,0,1,0,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,136.0,1,1,37,4,5,130.8,0,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,116.0,1,38,19,8,10,110.8,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9853,1,1,146.0,1,19,38,9,3,145.3,1,0,0,1,0,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,150.0,1,37,37,9,7,150.0,0,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,124.0,1,1,19,5,4,124.4,0,0,0,1,0,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,37,38,9,9,148.5,0,0,0,1,1,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,9,9,127.0,1,0,0,1,1,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,Graduate +4,1,1,8014,0,1,133.1,1,39,19,4,10,143.0,1,0,0,1,0,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,133.1,1,1,19,3,5,115.0,0,0,0,0,1,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,Dropout +2,44,1,9003,1,39,160.0,1,37,38,9,4,160.0,0,0,0,1,0,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,Graduate +1,16,3,9070,1,1,152.0,1,1,38,4,8,156.9,1,0,0,1,0,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,9,9,126.3,0,0,0,1,0,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9773,1,1,131.0,1,1,38,9,5,132.4,1,0,1,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9556,1,1,140.0,1,37,37,9,8,105.0,1,0,0,1,0,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9070,1,1,128.0,1,19,19,3,3,129.8,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,7,9,125.5,1,0,0,1,0,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,140.0,1,38,37,7,7,143.0,0,0,0,1,0,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,139.0,1,19,38,4,9,146.7,1,0,0,1,0,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,129.0,1,1,37,9,9,118.2,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,142.0,1,34,34,99,99,131.9,0,0,0,1,0,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,139.0,1,1,19,9,3,130.3,1,0,0,1,0,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,38,5,5,152.4,0,0,0,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,19,19,4,6,147.6,1,0,0,1,0,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,Graduate +1,51,1,8014,0,2,110.0,1,19,38,9,10,110.0,0,0,0,1,1,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,Graduate +1,17,3,9119,1,1,135.0,1,1,19,141,193,121.7,1,0,0,1,1,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,1,4,9773,1,1,122.0,1,19,19,9,7,121.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9003,1,3,120.0,1,1,19,4,1,120.0,1,0,0,1,1,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,140.0,1,19,37,4,8,133.3,1,0,0,1,0,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,121.0,1,1,1,5,4,111.9,1,0,0,0,1,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,3,130.0,1,1,38,90,90,143.4,0,0,0,1,1,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,1,120.0,1,37,37,6,9,121.0,0,0,0,1,0,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,154.0,1,38,37,4,4,141.4,0,0,0,1,0,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,40,130.0,1,19,1,5,10,130.0,1,0,1,0,0,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,133.1,1,1,1,4,4,120.0,0,0,1,0,1,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,120.0,1,37,1,9,5,113.4,1,0,0,1,0,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,139.0,1,38,37,7,7,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,135.0,1,38,19,194,193,135.4,1,0,0,1,1,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,150.0,1,3,2,2,2,150.0,0,0,0,1,1,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +2,43,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,1,1,7,4,136.0,1,0,0,1,1,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,3,130.0,1,3,3,1,2,150.0,0,0,0,1,0,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,123.0,1,1,38,4,7,115.3,1,0,0,1,0,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,101.0,1,38,38,9,9,104.5,1,0,0,1,0,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,140.0,1,1,19,9,9,128.8,0,0,0,1,1,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,Graduate +1,39,2,9119,1,1,120.0,1,37,37,5,5,128.0,0,0,0,1,1,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,15,133.1,1,34,34,0,0,100.0,1,0,0,0,0,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,133.1,1,6,11,4,5,138.4,0,0,0,1,1,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,142.0,1,37,37,6,7,136.1,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,132.0,1,37,37,9,9,123.6,1,0,0,1,0,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,9,9,126.9,1,0,0,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,15,1,9238,1,1,150.0,26,3,37,2,8,132.5,1,0,0,0,0,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,142.0,1,12,12,9,4,132.6,1,0,0,1,0,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,4,9254,1,1,106.0,1,37,19,9,7,116.9,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,160.0,1,1,19,5,7,155.5,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,42,1,9500,1,1,157.0,1,3,3,3,3,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,131.0,1,3,19,1,4,118.8,0,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,Graduate +1,43,2,9773,1,1,120.0,1,34,34,0,0,103.6,1,0,0,1,0,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,125.0,1,34,37,9,9,129.2,1,0,1,0,0,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,4,9085,1,1,145.0,1,37,1,9,9,145.0,1,0,0,1,0,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,136.0,1,1,1,9,3,122.7,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,1,4,9147,1,1,120.0,1,19,38,5,5,122.8,1,0,0,1,1,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,2,9085,1,1,140.0,1,37,38,9,7,137.0,0,0,0,1,0,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,120.0,1,4,1,4,10,112.0,1,0,0,1,0,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,37,38,7,7,110.0,0,0,0,1,1,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,138.0,1,38,19,9,5,144.3,0,0,0,1,0,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,12,133.1,1,37,37,9,9,120.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9147,1,1,140.0,1,19,19,9,7,120.4,0,0,1,0,0,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,145.0,1,37,1,9,4,138.8,1,0,0,1,0,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,19,38,5,0,133.7,1,0,0,1,0,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9130,1,39,150.0,1,5,1,2,5,150.0,1,0,0,1,1,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,Enrolled +1,43,1,9991,0,1,140.0,1,37,38,9,8,135.5,0,0,1,0,0,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,Dropout +1,1,1,9254,1,1,123.0,1,38,19,9,4,117.8,0,0,0,1,1,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9500,1,1,125.0,1,1,12,3,6,115.2,1,0,0,1,0,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,Graduate +1,17,2,9254,1,1,129.0,1,12,37,9,9,122.0,1,0,0,1,0,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,2,9070,1,1,143.0,1,1,1,4,10,146.2,1,0,0,1,1,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,117.0,1,38,38,4,9,120.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,3,130.0,1,3,1,1,10,160.0,0,0,0,1,0,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,Dropout +1,17,1,9556,1,1,133.0,1,38,37,9,9,124.4,1,0,0,1,0,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,Graduate +1,1,1,9003,1,1,124.0,1,38,19,9,7,116.0,0,0,0,1,1,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,164.0,1,19,1,9,9,161.2,0,0,0,1,1,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,1,130.0,1,37,37,9,9,119.5,1,0,0,1,0,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,1,19,1,5,130.0,0,0,1,1,0,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,142.0,1,19,19,7,3,132.9,0,0,0,1,1,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,126.0,1,19,19,3,7,123.9,0,0,0,1,0,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9254,1,1,132.0,1,1,38,5,6,122.6,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,1,6,9238,1,1,125.0,1,38,1,7,4,118.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,1,140.0,1,3,3,2,2,110.0,0,0,0,1,1,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,138.0,1,1,40,4,3,149.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,43,1,171,1,1,144.0,1,19,19,9,4,121.6,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9773,1,1,129.0,1,37,37,9,7,117.1,1,0,0,1,0,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,Enrolled +1,1,6,9853,1,1,114.0,1,19,19,9,9,110.2,1,0,0,1,1,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Dropout +2,42,1,9147,1,1,100.0,1,37,37,9,9,100.0,1,0,0,1,0,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,135.0,1,38,19,9,5,126.3,0,0,0,1,1,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,156.0,1,3,3,2,2,147.7,1,0,0,1,0,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,Graduate +1,1,1,9147,1,1,139.0,1,38,1,5,5,127.1,1,0,0,1,1,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,127.0,1,1,37,4,9,128.1,0,0,0,1,1,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,5,9070,1,1,124.0,1,37,37,9,9,113.9,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,129.0,1,38,37,9,5,120.0,1,0,0,1,0,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,118.0,1,19,19,9,9,122.2,0,0,0,1,0,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,Graduate +2,39,1,9556,1,19,133.1,1,38,37,7,7,99.5,1,0,1,0,0,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,130.0,1,38,38,7,7,136.3,1,0,0,1,1,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,1,9853,1,1,112.0,1,2,19,3,9,106.1,1,0,0,1,0,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,43,1,9119,1,1,146.0,1,3,1,2,3,100.0,0,0,0,1,1,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,132.0,1,1,12,4,5,124.3,0,0,0,1,0,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,8014,0,1,136.0,1,37,37,5,8,132.5,0,0,1,1,0,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,37,37,90,90,130.0,1,0,0,1,1,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,135.0,1,1,1,4,4,122.8,0,0,0,1,0,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,Graduate +2,39,1,9254,1,1,130.0,1,37,37,9,9,125.0,0,0,0,1,0,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,133.1,1,19,19,9,8,132.0,1,0,0,1,0,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,Dropout +2,39,1,9070,1,1,160.0,1,3,1,2,5,126.5,0,0,0,1,0,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,15,1,9556,1,1,137.0,26,19,1,9,4,137.0,0,0,1,1,0,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9773,1,1,133.1,1,3,5,0,2,125.8,1,0,0,0,1,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,16,4,9238,1,1,135.0,1,37,37,9,9,121.0,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,2,9556,1,1,130.0,1,37,19,9,8,110.0,0,0,0,1,1,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,Enrolled +1,1,1,9853,1,1,123.0,1,1,38,9,6,121.6,1,0,0,1,0,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9119,1,1,126.0,1,38,19,5,5,130.2,0,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,5,9500,1,1,122.0,1,37,3,9,2,116.8,1,0,0,1,0,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,132.0,1,38,38,9,9,119.3,1,0,0,1,0,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,116.0,1,38,1,5,1,111.1,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9500,1,1,113.0,1,38,19,9,7,106.7,1,0,0,1,0,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,Enrolled +1,39,1,9670,1,1,120.0,1,34,34,0,0,106.0,1,0,0,0,1,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,145.0,1,19,37,5,9,130.5,1,0,0,1,0,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,Graduate +2,39,1,9238,1,19,133.1,1,37,37,4,4,98.5,0,0,0,1,0,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,152.0,1,41,19,3,5,137.8,0,0,0,1,0,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,Graduate +1,43,2,8014,0,3,130.0,1,34,34,0,0,130.0,0,0,0,1,1,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,152.0,1,38,37,9,9,139.1,0,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,18,1,9003,1,1,133.1,1,1,38,9,6,101.0,0,0,0,1,1,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,19,1,9,8,105.0,0,0,0,1,0,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,162.0,1,19,1,5,5,147.5,1,0,0,1,0,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,19,1,4,1,101.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9119,1,1,116.0,1,19,1,9,7,112.2,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,133.0,1,38,37,9,7,120.1,1,0,0,1,0,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,110.0,1,37,37,5,6,108.3,0,0,0,0,0,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,Dropout +1,17,2,9773,1,1,121.0,1,1,1,5,5,123.1,1,0,0,1,1,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,17,1,9556,1,1,133.0,1,1,38,4,9,119.0,0,0,0,1,0,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,Enrolled +1,17,1,9147,1,1,139.0,1,1,38,4,5,152.0,0,0,0,1,0,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,160.0,1,12,38,4,8,160.0,1,0,0,1,1,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,133.1,1,19,19,7,7,117.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,128.0,1,3,1,3,3,121.0,1,1,1,1,1,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,116.0,1,1,19,4,7,127.6,1,0,0,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,Dropout +1,18,3,9119,1,1,111.0,1,1,19,9,8,111.0,1,0,0,1,1,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,146.0,1,1,1,9,7,126.0,0,0,0,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,Enrolled +1,53,1,9085,1,42,140.0,1,1,1,5,5,143.3,1,0,0,0,0,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,Enrolled +1,1,1,9070,1,1,144.0,1,1,1,3,5,127.2,1,0,0,1,0,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,141.0,1,38,1,5,7,132.6,0,0,0,1,0,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,18,1,9085,1,1,153.0,1,37,37,9,9,138.0,1,0,0,1,0,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,137.0,1,1,3,5,2,133.9,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,150.0,1,19,38,9,5,143.0,0,0,0,1,0,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,1,9,6,126.1,1,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9070,1,1,133.0,1,4,1,4,4,132.0,1,1,0,1,0,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,140.0,1,1,19,9,9,140.0,1,0,0,1,0,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,133.1,1,3,1,2,4,128.2,1,0,0,1,0,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,1,133.1,1,37,36,90,7,128.2,0,0,0,1,1,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,114.0,1,19,38,9,7,135.9,0,0,0,1,1,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,Graduate +2,51,1,9500,1,1,130.0,1,37,37,5,5,120.0,0,0,0,1,1,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,Dropout +1,43,1,9670,1,39,110.0,1,19,3,7,10,110.0,0,0,0,1,0,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,43,1,9500,1,1,148.0,1,29,38,90,3,131.0,1,0,0,1,0,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,Graduate +1,18,1,9254,1,1,118.0,1,38,38,5,5,123.3,1,0,0,1,1,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9003,1,3,130.0,1,1,38,9,7,130.0,1,0,0,0,1,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,3,38,2,7,121.7,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9991,0,1,133.1,1,38,38,5,5,145.0,0,0,0,1,0,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,136.0,1,1,12,9,10,121.7,1,0,0,1,0,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,160.0,1,19,1,4,10,153.0,1,0,0,1,0,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,Graduate +2,53,1,9147,1,42,130.0,1,19,19,175,152,132.4,0,0,0,1,0,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9119,1,40,120.0,1,1,1,5,10,146.8,0,0,0,1,1,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,150.0,1,19,11,0,0,131.1,1,0,0,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,122.0,1,1,19,4,3,130.4,1,0,0,1,0,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,5,9119,1,1,132.0,1,38,19,5,3,119.1,0,0,0,1,0,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,137.0,1,1,3,4,3,124.6,0,0,0,1,0,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,126.0,1,1,38,4,7,124.3,1,0,0,1,0,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,Graduate +1,43,1,9238,1,39,120.0,1,2,1,1,2,118.6,0,0,0,1,1,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,34,34,0,0,119.1,1,0,0,1,0,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,127.0,1,1,1,4,4,120.4,1,0,0,1,0,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,135.0,1,1,38,5,5,122.4,0,0,1,1,0,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,Graduate +1,18,2,9773,1,1,109.0,1,1,1,4,4,109.0,1,0,0,0,0,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9500,1,1,132.0,1,19,3,9,5,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,Enrolled +1,43,1,33,1,19,133.1,1,38,38,4,4,140.0,0,0,1,1,1,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,Dropout +1,17,1,9773,1,1,120.0,1,37,37,5,5,125.3,0,0,0,1,0,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,1,19,5,10,141.1,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,145.0,1,19,38,4,4,132.1,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9254,1,1,122.0,1,19,19,5,5,118.2,0,0,0,1,0,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,Enrolled +1,17,1,8014,0,1,119.0,1,34,34,0,0,112.4,1,0,0,1,0,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,5,9500,1,1,125.0,1,1,1,3,8,115.6,1,0,0,1,0,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,Enrolled +2,39,1,9991,0,1,150.0,1,1,4,4,2,146.0,0,0,0,1,1,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,132.0,1,4,2,123,112,143.6,1,0,0,1,1,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9085,1,1,144.0,1,1,19,4,10,132.1,1,0,0,1,0,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,19,19,1,1,125.5,1,0,0,1,0,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,130.0,1,19,19,9,6,135.0,0,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,1,140.0,1,19,19,90,90,120.0,0,0,1,0,1,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,143.0,1,1,37,3,8,128.0,0,0,0,1,0,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,Graduate +1,1,3,9070,1,1,146.0,1,34,34,0,0,143.6,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9130,1,1,130.0,1,1,19,6,6,154.0,1,0,0,1,1,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,10,170.0,0,0,0,1,0,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,Enrolled +6,39,1,9991,0,12,130.0,1,37,37,90,90,119.0,1,0,0,0,1,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,53,1,9003,1,42,130.0,1,1,1,144,144,125.8,0,0,1,1,0,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,145.0,1,40,1,2,4,160.1,0,0,0,1,0,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9070,1,1,140.0,1,1,1,9,8,144.3,1,0,0,1,0,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,150.0,1,1,38,6,6,150.0,1,0,0,1,1,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,148.0,1,37,37,9,9,143.5,0,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,123.0,1,19,19,9,8,125.5,0,0,0,0,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,130.0,1,34,1,0,2,128.2,0,0,0,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,1,130.0,1,1,1,3,7,140.0,0,0,0,1,1,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,17,4,9556,1,1,112.0,1,1,1,4,10,107.1,1,0,0,1,0,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,101.0,1,1,1,3,4,102.4,0,0,0,1,0,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,133.0,1,37,37,9,7,121.8,0,0,0,1,1,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9500,1,1,133.1,1,3,1,5,5,148.8,0,0,0,1,0,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,157.0,1,19,38,5,3,149.3,0,0,0,1,0,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,163.0,1,3,4,2,5,175.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,148.0,1,1,3,4,1,163.4,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,Graduate +1,53,1,9085,1,42,130.0,1,38,38,9,9,128.8,0,0,0,1,0,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,Dropout +1,39,1,8014,0,1,120.0,1,1,1,4,4,150.5,0,0,0,1,0,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Graduate +1,51,1,9147,1,1,130.0,1,1,1,4,4,120.0,0,0,0,1,0,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,Enrolled +4,39,2,9556,1,19,133.1,1,19,19,4,6,123.0,0,0,0,1,0,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,Graduate +4,39,1,8014,0,19,140.0,1,37,37,9,3,131.0,0,0,0,1,0,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,131.0,1,19,38,9,9,129.7,1,0,0,1,0,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,Graduate +1,7,1,9238,1,40,130.0,1,37,37,5,5,130.0,0,0,0,1,1,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,Graduate +1,1,1,9130,1,1,133.0,1,3,1,2,4,126.0,0,0,0,1,1,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,100.0,1,1,1,4,4,120.0,0,0,0,1,1,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,138.7,1,1,12,4,3,111.3,0,0,0,1,1,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,135.0,1,38,38,5,7,121.0,0,0,0,1,0,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,1,19,5,9,111.1,0,0,0,1,1,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,43,1,9130,1,1,100.0,41,3,4,3,2,100.0,0,0,0,1,0,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9147,1,3,130.0,1,37,19,9,8,130.0,0,0,0,1,0,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,Graduate +1,1,4,9085,1,1,138.0,1,3,1,1,4,123.3,1,0,0,1,0,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,Graduate +1,17,1,9003,1,1,131.0,1,19,1,9,2,134.5,1,0,0,1,0,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,139.0,1,38,1,9,5,131.8,1,0,0,1,0,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,133.1,1,37,37,6,6,136.2,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,123.9,1,37,1,9,7,123.9,0,0,0,1,1,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,Dropout +1,1,1,9147,1,1,143.0,1,3,1,5,5,152.1,1,0,1,1,1,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,Dropout +1,1,6,9500,1,1,142.0,1,1,37,7,7,123.5,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,124.0,1,2,1,4,10,117.4,1,0,0,1,0,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,5,9119,1,1,130.0,1,19,1,4,5,118.1,1,0,1,0,1,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,Dropout +1,17,4,9147,1,1,121.0,1,38,37,6,7,113.0,1,0,0,1,0,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,150.0,1,19,19,4,10,100.0,0,0,0,1,0,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,151.0,1,37,37,9,9,138.0,1,0,0,1,0,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,138.0,1,38,38,9,9,126.8,0,0,0,1,1,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,Graduate +6,17,3,8014,0,1,115.0,1,19,1,5,90,115.0,0,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,127.0,1,1,19,3,3,120.2,1,0,0,1,0,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,Graduate +1,51,1,9991,0,1,134.0,1,1,1,5,3,120.6,1,0,0,1,1,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,121.0,1,19,1,7,9,117.9,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,131.0,1,1,38,4,8,121.9,1,0,0,1,0,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,19,133.1,1,38,38,7,8,170.0,0,0,0,1,1,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,100.0,1,37,37,9,5,170.0,0,0,0,1,1,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,95.0,1,37,37,5,8,95.0,0,0,0,0,1,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,148.0,1,37,37,9,9,134.7,0,0,0,1,0,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,Enrolled +1,1,2,9238,1,1,121.0,1,19,19,191,171,119.3,1,0,1,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9119,1,1,136.0,1,1,2,5,4,122.7,1,0,0,1,1,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,Dropout +1,17,4,9254,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,1,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,4,9,100.0,0,0,0,0,0,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9254,1,1,160.0,1,1,3,3,3,142.5,1,0,0,0,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,138.0,1,1,19,7,8,129.3,1,0,0,1,0,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,90,90,100.0,0,0,0,1,1,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,148.0,1,1,37,9,7,143.3,0,0,0,1,0,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,19,38,4,10,130.0,1,0,0,1,0,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,19,37,9,7,110.0,1,0,0,1,1,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9254,1,1,131.0,1,4,3,7,4,126.1,1,0,0,1,0,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,Graduate +1,43,2,9500,1,1,136.0,1,38,38,9,5,131.3,0,0,0,1,0,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,119.0,1,1,1,4,10,125.0,0,0,0,1,1,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,Enrolled +1,17,2,9238,1,1,132.0,1,38,1,7,7,133.1,1,0,0,1,0,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,126.0,1,12,1,5,10,120.2,0,0,0,1,0,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,Enrolled +1,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,161.0,22,37,37,9,9,137.9,0,0,1,0,0,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,Graduate +1,17,2,9147,1,1,133.0,1,19,1,9,3,120.1,1,0,0,1,0,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9085,1,1,127.0,1,3,3,2,8,138.8,1,0,0,1,0,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,121.0,1,1,1,1,1,115.1,1,0,0,1,0,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9130,1,1,130.0,1,3,19,2,9,115.9,0,0,0,1,0,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +2,7,1,9991,0,3,140.0,1,34,34,99,99,140.0,1,0,0,0,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,113.2,0,0,0,1,0,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9500,1,1,137.0,1,1,1,9,9,127.9,1,0,0,1,0,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,Dropout +1,1,5,9500,1,1,130.0,1,19,37,9,7,127.6,1,0,0,1,0,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,133.1,1,1,38,3,7,121.7,0,0,0,1,0,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,130.0,1,3,1,4,1,130.0,1,0,0,0,0,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,107.0,1,2,12,3,10,104.2,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,9,113.5,0,0,0,1,0,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,145.0,1,19,37,4,8,136.8,1,0,0,1,0,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,120.0,1,19,38,5,6,112.3,0,0,0,1,0,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,133.1,1,34,34,0,0,125.3,0,0,0,1,1,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,Dropout +1,1,6,9853,1,1,136.0,1,1,19,5,5,122.0,0,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,121.0,1,4,1,2,3,120.7,1,0,0,1,0,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,1,1,9147,1,1,133.1,1,34,34,0,0,131.8,0,0,0,1,0,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,4,100.0,0,0,0,1,0,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,127.0,1,19,38,3,3,121.1,1,0,0,1,1,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d60881325a0c01981992cbec58982060c0d2fb6b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..21a918d5e77c0c9215262662025096c818b8cc92 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "realtabformer", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/train_20260330_005222.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/train_20260330_005222.log new file mode 100644 index 0000000000000000000000000000000000000000..573fde8b810522d8e5e5b54b1389fd0e5d29b6b0 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/train_20260330_005222.log @@ -0,0 +1,12896 @@ + +Map: 0%| | 0/3539 [00:00 /work/output-SpecializedModels/m5/realtabformer/rtf-m5-20260330_005221/models_100epochs diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/_tabddpm_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..38889bd77144c988e85fd99b4198f1bb60ed8b93 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/config.toml b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..1e59fa20f47132709be3c593577dd12104c6e4d5 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/output" +real_data_path = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 0 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/data/info.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f9a468f14a4f7e6403c68cc255d14d0e2c3b81c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/data/info.json @@ -0,0 +1,15 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 0, + "n_cat_features": 0, + "train_size": 3539, + "num_col_idx": [], + "cat_col_idx": [], + "target_col_idx": [ + 0 + ], + "column_names": [ + "Marital status;Application mode;Application order;Course;Daytime/evening attendance;Previous qualification;Previous qualification (grade);Nacionality;Mother's qualification;Father's qualification;Mother's occupation;Father's occupation;Admission grade;Displaced;Educational special needs;Debtor;Tuition fees up to date;Gender;Scholarship holder;Age at enrollment;International;Curricular units 1st sem (credited);Curricular units 1st sem (enrolled);Curricular units 1st sem (evaluations);Curricular units 1st sem (approved);Curricular units 1st sem (grade);Curricular units 1st sem (without evaluations);Curricular units 2nd sem (credited);Curricular units 2nd sem (enrolled);Curricular units 2nd sem (evaluations);Curricular units 2nd sem (approved);Curricular units 2nd sem (grade);Curricular units 2nd sem (without evaluations);Unemployment rate;Inflation rate;GDP;Target" + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/data/y_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/data/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..389c237ac3c806093311bd98a03f007f8e371932 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/data/y_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/data/y_val.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/data/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1d02f9c300652752222db143e91f9f135158f85a Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/data/y_val.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/train_20260319_073023.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/train_20260319_073023.log new file mode 100644 index 0000000000000000000000000000000000000000..194f346ddb144a080883687c70d21efaf9b8c9bd --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/train_20260319_073023.log @@ -0,0 +1,29 @@ +/opt/conda/lib/python3.11/site-packages/skorch/__init__.py:6: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. + import pkg_resources +Traceback (most recent call last): + File "/workspace/tabddpm/code/_compat_run.py", line 6, in + runpy.run_path(sys.argv[0], run_name='__main__') + File "", line 291, in run_path + File "", line 98, in _run_module_code + File "", line 88, in _run_code + File "scripts/pipeline.py", line 112, in + main() + File "scripts/pipeline.py", line 48, in main + train( + File "/workspace/tabddpm/code/scripts/train.py", line 102, in train + dataset = make_dataset( + ^^^^^^^^^^^^^ + File "/workspace/tabddpm/code/scripts/utils_train.py", line 89, in make_dataset + return lib.transform_dataset(D, T, None) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/workspace/tabddpm/code/lib/data.py", line 432, in transform_dataset + y, y_info = build_target(dataset.y, transformations.y_policy, dataset.task_type) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/workspace/tabddpm/code/lib/data.py", line 344, in build_target + mean, std = float(y['train'].mean()), float(y['train'].std()) + ^^^^^^^^^^^^^^^^^ + File "/opt/conda/lib/python3.11/site-packages/numpy/core/_methods.py", line 131, in _mean + ret = ret / rcount + ~~~~^~~~~~~~ +TypeError: ufunc 'divide' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe'' +[TabDDPM] Training, config=/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_073019/config.toml diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/_tabddpm_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..799b538bec79e11858e49db6c909dbee455bb748 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/config.toml b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..c50e6b1ee69891504be397e63af44c31274c0764 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/output" +real_data_path = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 0 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/data/info.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f9a468f14a4f7e6403c68cc255d14d0e2c3b81c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/data/info.json @@ -0,0 +1,15 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 0, + "n_cat_features": 0, + "train_size": 3539, + "num_col_idx": [], + "cat_col_idx": [], + "target_col_idx": [ + 0 + ], + "column_names": [ + "Marital status;Application mode;Application order;Course;Daytime/evening attendance;Previous qualification;Previous qualification (grade);Nacionality;Mother's qualification;Father's qualification;Mother's occupation;Father's occupation;Admission grade;Displaced;Educational special needs;Debtor;Tuition fees up to date;Gender;Scholarship holder;Age at enrollment;International;Curricular units 1st sem (credited);Curricular units 1st sem (enrolled);Curricular units 1st sem (evaluations);Curricular units 1st sem (approved);Curricular units 1st sem (grade);Curricular units 1st sem (without evaluations);Curricular units 2nd sem (credited);Curricular units 2nd sem (enrolled);Curricular units 2nd sem (evaluations);Curricular units 2nd sem (approved);Curricular units 2nd sem (grade);Curricular units 2nd sem (without evaluations);Unemployment rate;Inflation rate;GDP;Target" + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/data/y_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/data/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..389c237ac3c806093311bd98a03f007f8e371932 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/data/y_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/data/y_val.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/data/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1d02f9c300652752222db143e91f9f135158f85a Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/data/y_val.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/train_20260319_225325.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/train_20260319_225325.log new file mode 100644 index 0000000000000000000000000000000000000000..9315813666a139cc51ad3175bc4157a11cad47ba --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/train_20260319_225325.log @@ -0,0 +1,29 @@ +/opt/conda/lib/python3.11/site-packages/skorch/__init__.py:6: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. + import pkg_resources +Traceback (most recent call last): + File "/workspace/tabddpm/code/_compat_run.py", line 6, in + runpy.run_path(sys.argv[0], run_name='__main__') + File "", line 291, in run_path + File "", line 98, in _run_module_code + File "", line 88, in _run_code + File "scripts/pipeline.py", line 112, in + main() + File "scripts/pipeline.py", line 48, in main + train( + File "/workspace/tabddpm/code/scripts/train.py", line 102, in train + dataset = make_dataset( + ^^^^^^^^^^^^^ + File "/workspace/tabddpm/code/scripts/utils_train.py", line 89, in make_dataset + return lib.transform_dataset(D, T, None) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/workspace/tabddpm/code/lib/data.py", line 432, in transform_dataset + y, y_info = build_target(dataset.y, transformations.y_policy, dataset.task_type) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/workspace/tabddpm/code/lib/data.py", line 344, in build_target + mean, std = float(y['train'].mean()), float(y['train'].std()) + ^^^^^^^^^^^^^^^^^ + File "/opt/conda/lib/python3.11/site-packages/numpy/core/_methods.py", line 131, in _mean + ret = ret / rcount + ~~~~^~~~~~~~ +TypeError: ufunc 'divide' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe'' +[TabDDPM] Training, config=/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260319_225322/config.toml diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/_tabddpm_sample.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/_tabddpm_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..6e8cc58deac3c7d4a7ea2ad808ff5e28fc16cd23 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/_tabddpm_sample.py @@ -0,0 +1,67 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 3539 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/config_sample_20260424_034106.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV +work_dir = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725" +info_path = os.path.join(work_dir, "data", "info.json") +with open(info_path) as f: + info = json.load(f) + +output_dir = os.path.join(work_dir, "output") +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/tabddpm-m5-3539-20260424_034106.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/tabddpm-m5-3539-20260424_034106.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/_tabddpm_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6bd0dfcd1cc4c8847c3e177c85731f0aee7d6d30 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/config.toml b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..53eda911241faac2511f571b2a4bf000902a1e40 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/output" +real_data_path = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/data" +model_type = "mlp" +num_numerical_features = 28 +device = "cuda:0" + +[model_params] +d_in = 36 +num_classes = 3 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/config_sample_20260424_034106.toml b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/config_sample_20260424_034106.toml new file mode 100644 index 0000000000000000000000000000000000000000..00ca8ba41e6309dd857986fdc9852ce4cfc34af3 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/config_sample_20260424_034106.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/output" +real_data_path = "/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/data" +model_type = "mlp" +num_numerical_features = 28 +device = "cuda:0" + +[model_params] +d_in = 36 +num_classes = 3 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3539 +batch_size = 1000 +seed = 0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/data/info.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..ab57d51fb5905131daac354f3079fe8418d0d479 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/data/info.json @@ -0,0 +1,90 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 28, + "n_cat_features": 8, + "train_size": 3539, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27 + ], + "cat_col_idx": [ + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ], + "target_col_idx": [ + 36 + ], + "column_names": [ + "Marital status", + "Application mode", + "Application order", + "Course", + "Previous qualification", + "Previous qualification (grade)", + "Nacionality", + "Mother's qualification", + "Father's qualification", + "Mother's occupation", + "Father's occupation", + "Admission grade", + "Age at enrollment", + "Curricular units 1st sem (credited)", + "Curricular units 1st sem (enrolled)", + "Curricular units 1st sem (evaluations)", + "Curricular units 1st sem (approved)", + "Curricular units 1st sem (grade)", + "Curricular units 1st sem (without evaluations)", + "Curricular units 2nd sem (credited)", + "Curricular units 2nd sem (enrolled)", + "Curricular units 2nd sem (evaluations)", + "Curricular units 2nd sem (approved)", + "Curricular units 2nd sem (grade)", + "Curricular units 2nd sem (without evaluations)", + "Unemployment rate", + "Inflation rate", + "GDP", + "Daytime/evening attendance", + "Displaced", + "Educational special needs", + "Debtor", + "Tuition fees up to date", + "Gender", + "Scholarship holder", + "International", + "Target" + ], + "num_classes": 3 +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/data/y_train.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..982ed87b0f9fe9a0ebc55e0016913ea73d0355c4 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/data/y_train.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/gen_20260424_034106.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/gen_20260424_034106.log new file mode 100644 index 0000000000000000000000000000000000000000..ea035422d5d1420f4f28b350aa11c6c72c5b61c7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/gen_20260424_034106.log @@ -0,0 +1,4006 @@ +mlp +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Discrete cols: [0, 1, 2, 3, 4, 6, 7, 8, 9, 13, 14, 16, 18, 19, 20, 21, 22, 24] +Num shape: (3539, 28) +Elapsed time: 0:01:18 +[TabDDPM] Sampling 3539 rows +[TabDDPM] Saved 3539 rows -> /work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/tabddpm-m5-3539-20260424_034106.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0e63af4a8a9ca4623224dbfcc37c2ef120bc056a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a7ee9ab77ff2d0a98921bb7aa2ab873fc9c21ff4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..42b9c66b7977f45c2677a06faa4702b9c5d10f73 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "tabddpm", + "run_id": "tabddpm-m5-20260424_033725", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/tabddpm-m5-3539-20260424_034106.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a22a371258ab8267b23b3b79730d7e0f64866e52 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,0,1,126.0,1,38,37,5,5,118.7,0,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,19,37,9,7,111.4,0,0,0,1,1,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,140.0,1,1,1,4,3,140.0,1,0,0,1,0,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,Graduate +1,1,2,9085,1,1,141.0,1,1,38,9,8,128.9,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,128.0,1,19,19,7,8,120.0,1,0,0,1,0,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,123.0,1,4,37,2,9,113.9,0,0,0,1,0,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,1,140.0,41,1,1,9,9,100.0,0,0,1,0,0,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,133.1,1,1,3,9,9,116.0,0,0,0,1,1,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,143.0,1,3,3,2,10,141.3,0,0,1,0,0,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,106.0,1,37,38,191,163,102.2,1,0,1,1,1,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,Enrolled +1,16,2,9085,1,1,136.0,1,37,37,9,9,123.4,1,0,0,1,0,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,125.0,1,38,38,9,9,125.4,0,0,1,0,0,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,Dropout +4,39,1,9773,1,12,120.0,1,37,37,4,9,130.0,0,0,0,0,1,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,Dropout +1,44,1,9853,1,39,150.0,1,3,37,2,7,150.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,145.0,1,1,19,9,9,129.3,0,0,1,1,0,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Graduate +1,44,1,9119,1,39,180.0,1,1,1,9,8,180.0,0,0,0,1,1,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,Enrolled +1,1,4,9085,1,1,135.0,1,38,37,9,9,132.6,1,0,0,1,0,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,130.0,1,3,1,3,6,130.0,1,0,1,1,1,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,182.0,1,19,1,5,7,156.8,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,142.0,1,19,38,7,10,128.4,1,0,0,1,0,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,19,133.1,1,37,37,9,4,103.5,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,1,1,3,3,119.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,44,1,9991,0,39,140.0,1,37,19,9,8,140.0,0,0,0,1,0,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,133.0,1,38,38,9,9,128.8,1,0,0,1,0,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,3,3,132,132,110.6,0,0,0,1,0,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,Enrolled +1,42,1,9773,1,1,133.1,1,19,6,4,3,120.0,0,0,0,1,1,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9147,1,1,160.0,1,37,37,9,7,110.0,0,0,0,1,1,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,100.0,1,19,37,5,5,120.7,0,0,0,1,0,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,136.0,1,19,19,9,9,140.0,1,0,0,1,0,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,135.0,1,3,3,2,2,132.9,1,0,0,0,0,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,Dropout +1,53,1,9003,1,42,130.0,1,1,38,9,6,128.5,0,0,0,1,1,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,140.0,1,37,37,9,9,140.0,0,0,0,1,1,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,124.0,1,19,37,5,7,119.1,0,0,0,1,1,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9556,1,1,140.0,1,37,38,9,9,106.0,1,0,1,0,0,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,Dropout +1,42,4,9500,1,6,133.0,1,1,19,2,9,127.8,1,0,0,1,0,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,130.0,1,19,19,90,90,122.0,0,0,0,1,0,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,125.0,1,37,19,9,9,122.4,1,0,0,1,1,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,3,110.0,1,3,19,4,6,150.0,0,0,0,1,1,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,123.0,1,19,19,1,1,114.6,0,0,0,1,0,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,131.0,1,38,38,9,9,126.5,0,0,0,1,0,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,133.1,1,38,19,132,103,146.0,0,0,1,1,0,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,3,3,2,2,124.9,1,0,0,1,0,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,136.0,1,3,4,2,2,133.9,0,0,0,0,1,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,2,1,4,6,140.0,0,0,0,1,1,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,111.0,1,19,19,9,9,114.2,1,0,0,1,0,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,130.0,1,19,38,7,7,120.2,1,0,0,1,0,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,Graduate +1,7,1,9670,1,3,110.0,1,27,37,3,3,110.0,1,0,0,1,1,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,142.0,1,38,19,7,10,128.4,0,0,0,1,0,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9773,1,1,158.0,1,1,38,4,7,157.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,127.0,1,1,33,3,3,129.8,0,0,0,0,1,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9773,1,1,140.0,1,34,37,0,0,102.5,0,0,0,1,0,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,130.0,1,1,38,5,7,122.0,1,0,0,1,1,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,145.0,1,19,1,6,5,127.9,1,0,0,1,0,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,132.0,1,38,38,9,8,122.6,1,0,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,37,37,9,7,129.9,1,0,0,1,0,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,121.0,1,1,1,4,4,114.9,0,0,0,1,1,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,Graduate +1,7,1,8014,0,3,140.0,1,1,1,4,4,140.0,0,0,0,1,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,137.0,1,1,19,4,4,125.3,0,0,0,1,1,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,Enrolled +1,18,1,9670,1,1,133.0,1,1,1,9,9,121.5,1,0,0,1,0,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,42,1,9500,1,1,100.0,1,3,37,2,6,130.0,1,0,0,1,0,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,19,38,9,8,140.9,0,1,0,1,0,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,133.1,1,37,37,9,9,120.0,0,0,0,0,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,8014,0,1,128.0,1,38,38,0,0,122.1,0,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9119,1,1,130.0,1,1,3,4,2,123.0,0,0,0,1,1,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,121.0,1,19,38,7,9,123.8,0,0,0,1,0,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,9070,1,1,122.0,1,1,1,4,8,123.8,1,0,1,0,0,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,12,133.1,1,37,37,9,9,133.8,1,0,0,1,1,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,3,3,2,2,149.0,0,0,0,0,1,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,1,38,1,9,140.0,0,0,0,1,1,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,Dropout +1,1,5,9773,1,1,135.0,1,37,1,5,5,124.9,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,9119,1,1,132.0,1,37,37,9,6,119.4,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,9670,1,3,110.0,1,37,37,7,7,110.0,0,0,0,1,0,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,Graduate +1,17,5,9119,1,1,118.0,1,1,19,9,9,120.5,1,0,0,1,1,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,19,133.1,1,37,19,9,4,140.0,0,0,1,1,0,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,126.0,1,1,1,4,7,115.2,0,0,0,0,0,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9254,1,1,158.0,1,19,39,4,8,153.5,1,0,0,1,0,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,129.0,1,37,38,7,7,122.0,1,0,0,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,12,133.1,1,37,1,9,4,138.4,0,0,0,1,1,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,Dropout +1,7,1,9238,1,3,130.0,1,1,1,4,10,125.1,0,0,1,0,0,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,1,110.0,1,40,1,5,6,142.5,0,0,1,0,1,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,Dropout +1,16,1,9070,1,1,125.0,1,1,1,4,4,120.8,1,0,0,1,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,128.0,1,19,1,5,4,135.7,1,0,0,1,0,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,142.0,1,19,19,9,9,139.9,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,123.0,1,3,12,2,9,116.4,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,125.0,1,19,1,9,10,123.6,1,0,0,1,0,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,12,133.1,1,12,12,9,9,120.0,0,0,0,1,1,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,Dropout +1,17,5,9500,1,1,144.0,1,19,38,9,5,130.7,1,0,0,1,0,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,Graduate +1,17,6,9500,1,1,136.0,1,19,38,9,3,132.5,1,0,0,1,0,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,Graduate +2,43,1,9991,0,1,140.0,1,38,37,5,6,117.3,0,0,0,1,0,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,43,1,9500,1,1,140.0,1,37,37,9,10,105.7,1,0,0,1,0,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,19,133.1,1,1,5,4,3,100.0,0,0,0,1,0,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,3,9238,1,1,143.0,1,37,38,0,7,126.9,1,0,0,1,0,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,138.0,1,37,1,9,9,123.7,1,0,1,1,0,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,34,34,0,0,112.5,0,0,0,1,0,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,141.0,1,3,2,2,3,130.2,1,0,0,1,0,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,139.0,1,1,19,3,9,134.9,1,0,0,1,1,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,3,102.0,1,0,0,1,0,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,153.0,1,38,37,7,8,147.9,0,0,0,1,0,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,Graduate +1,17,3,9085,1,1,121.0,1,38,1,9,9,111.9,1,0,0,1,1,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,149.0,1,37,37,9,6,130.5,1,0,0,1,0,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,Graduate +1,17,5,9773,1,1,139.0,1,38,1,4,4,123.6,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9119,1,1,120.0,1,3,1,123,152,116.9,0,0,0,1,1,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9238,1,1,130.0,1,1,19,4,5,124.8,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,Graduate +1,53,1,9085,1,42,150.0,1,1,19,4,8,145.2,1,0,0,1,0,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,Graduate +4,39,1,9130,1,1,140.0,1,37,37,6,7,150.0,1,0,0,1,1,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,4,171,1,1,133.1,1,1,1,9,10,110.0,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,124.0,1,19,1,9,9,121.2,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9119,1,39,130.0,1,38,19,9,5,130.0,1,0,0,1,1,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,Enrolled +4,7,1,9500,1,3,140.0,1,37,38,9,7,140.0,0,0,0,1,1,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,37,5,9,118.4,0,0,0,1,1,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,33,1,1,130.0,1,19,19,9,9,117.7,0,0,0,1,0,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,Dropout +4,7,1,9500,1,40,130.0,1,19,19,4,6,130.0,0,0,0,0,0,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,144.0,13,3,3,6,6,137.6,1,0,0,1,0,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,132.0,1,38,37,9,9,122.9,0,0,0,0,1,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,Dropout +1,1,2,9773,1,1,124.0,1,3,3,3,4,114.6,1,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,100.0,1,38,38,9,10,100.0,0,0,0,1,0,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,Graduate +1,18,2,9853,1,1,120.0,1,19,37,9,4,113.7,1,0,1,0,0,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9500,1,1,136.0,1,3,3,2,2,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,Graduate +1,39,1,9130,1,1,133.1,1,3,34,3,0,120.0,0,0,1,0,1,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,140.0,1,1,19,3,3,140.0,1,0,0,1,0,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9085,1,1,128.0,1,38,37,9,9,116.5,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,132.0,1,6,6,0,4,119.1,1,0,1,1,0,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,Dropout +1,43,1,9500,1,6,134.0,1,1,37,9,9,120.4,1,0,0,1,0,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,34,34,0,0,100.0,0,0,0,1,0,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,122.0,1,3,1,4,7,116.1,1,0,0,1,0,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,120.0,1,37,37,9,9,117.0,1,0,0,1,0,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,5,9254,1,1,126.0,1,19,19,4,7,116.6,1,0,0,1,0,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,4,160.0,1,3,3,2,1,125.0,0,0,0,1,1,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,130.0,1,37,37,0,0,117.8,1,0,0,1,0,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,169.0,1,19,37,9,7,176.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9500,1,1,137.0,1,3,38,2,4,121.0,0,0,0,1,0,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,132.0,1,19,1,9,5,123.4,0,0,0,1,0,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,3,105.0,1,37,37,7,8,129.7,1,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9254,1,1,119.0,1,19,19,9,9,118.7,1,0,0,1,1,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,120.0,1,37,37,9,6,117.0,0,0,0,1,1,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,6,130.0,0,0,0,1,1,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,143.0,1,19,37,9,9,126.2,1,0,0,1,0,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,39,150.0,1,19,19,9,9,150.3,0,0,0,1,1,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9130,1,1,143.0,1,3,3,2,2,131.8,1,0,1,0,0,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,Enrolled +1,44,1,9238,1,39,140.0,1,19,19,8,8,144.3,1,0,0,1,0,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,131.0,1,19,19,4,4,122.0,1,0,0,1,0,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,Enrolled +1,17,2,9500,1,1,127.0,1,3,3,1,10,118.8,1,0,0,1,1,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,146.0,1,37,38,9,7,128.5,0,0,1,1,0,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,3,140.0,1,39,39,9,4,140.0,0,0,0,1,1,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,123.0,1,38,19,4,90,127.2,0,0,1,0,1,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,5,128.2,0,0,1,0,1,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,126.0,1,1,1,9,9,127.4,1,0,0,1,0,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,37,37,9,9,150.0,0,0,0,1,0,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,130.0,1,38,19,9,6,120.0,1,0,0,1,1,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,103.0,1,19,37,7,9,104.1,0,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,145.0,1,3,19,1,5,130.0,1,0,0,1,0,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,123.0,1,1,38,9,9,116.7,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,5,1,120.0,1,0,0,1,0,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,141.0,1,19,1,90,90,128.0,0,0,0,1,1,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,124.0,1,3,3,2,2,119.1,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,4,9853,1,1,116.0,1,3,38,3,8,110.4,1,0,0,1,0,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,119.0,1,38,19,9,9,115.2,0,0,0,1,1,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,37,37,7,7,113.9,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +2,43,1,9147,1,2,120.0,1,37,37,9,9,122.8,0,0,1,0,0,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,6,122.0,1,19,19,9,9,126.2,1,0,0,1,0,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,122.0,1,1,1,2,5,113.3,1,0,0,1,0,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,142.0,1,1,1,9,9,127.7,1,0,0,1,1,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,116.0,1,1,1,3,3,120.9,0,0,0,1,1,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,128.0,1,1,19,4,7,125.6,1,0,0,1,1,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,Graduate +1,7,1,9991,0,40,130.0,1,1,3,4,2,130.0,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,1,19,9,7,120.0,0,0,0,1,1,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,137.0,1,38,37,9,9,122.3,0,0,0,1,1,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,122.0,1,41,1,4,3,119.6,1,0,0,1,0,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,157.0,1,38,37,9,5,137.8,0,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9130,1,1,132.0,1,19,38,9,9,130.4,1,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Graduate +4,43,1,8014,0,12,133.1,1,34,34,0,0,106.0,1,0,0,1,0,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9130,1,1,127.0,1,3,1,2,1,116.5,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,8014,0,1,125.0,1,37,37,5,6,122.2,1,0,1,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9556,1,1,128.0,1,38,38,7,8,123.5,1,0,0,1,0,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,Enrolled +1,43,1,9130,1,1,156.0,1,19,1,9,4,156.0,0,0,1,0,1,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,Dropout +1,7,1,9130,1,3,140.0,1,19,38,9,9,140.0,1,0,0,1,0,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,8014,0,1,123.0,1,34,37,9,90,121.3,1,0,0,1,0,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,19,133.1,1,19,37,7,90,104.0,0,0,0,1,0,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,18,4,9254,1,1,106.0,1,19,37,7,7,106.0,1,0,0,1,1,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,119.0,1,37,37,4,6,113.2,0,0,1,1,0,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,19,19,9,9,100.0,0,0,0,1,0,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,145.0,1,3,1,4,3,149.9,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,166.0,1,19,37,4,8,146.4,0,0,0,1,1,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,145.0,1,38,37,5,5,142.2,0,0,0,1,0,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,156.0,1,19,38,9,1,153.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9853,1,1,117.0,1,19,38,4,0,113.5,1,0,0,1,0,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,138.0,1,37,19,9,9,127.8,1,0,0,1,0,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,40,130.0,1,1,1,4,4,190.0,1,0,0,1,0,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,Graduate +1,17,5,9070,1,1,131.0,1,37,37,9,9,126.1,1,0,0,0,0,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.1,1,19,37,9,9,95.0,1,0,1,0,0,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,143.0,1,1,38,8,8,136.7,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Dropout +1,42,1,8014,0,1,120.0,1,37,38,90,7,120.0,1,0,0,1,0,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,121.0,1,19,19,5,8,117.5,1,0,0,1,0,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,160.0,1,3,1,6,6,116.3,1,0,0,1,0,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,134.0,1,1,38,4,5,122.8,0,0,0,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,7,1,8014,0,3,120.0,1,19,37,5,3,121.3,0,0,0,1,0,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,134.0,1,38,19,9,4,128.4,1,0,0,1,0,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,130.0,1,19,1,7,4,117.8,1,0,0,1,1,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9130,1,1,132.0,1,1,1,3,3,143.9,1,0,0,1,1,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,130.0,1,19,1,9,4,101.3,1,0,0,1,1,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,135.0,1,37,19,5,10,121.0,0,0,1,1,0,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9991,0,39,120.0,1,37,37,7,7,120.0,1,0,0,1,0,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,133.1,1,3,3,2,3,135.0,0,0,0,1,0,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,110.0,1,19,19,9,7,105.8,1,0,0,1,1,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,160.0,1,1,38,4,10,144.3,1,0,0,1,0,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +4,39,1,9254,1,1,120.0,1,37,37,9,8,95.0,0,0,0,1,0,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,137.0,1,19,19,7,7,120.8,1,0,0,1,0,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,144.0,1,19,38,4,8,141.3,1,0,0,1,0,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,148.0,1,19,1,3,9,140.0,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,128.0,1,38,38,7,7,131.5,0,0,0,1,0,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,128.0,1,38,19,191,175,118.6,1,0,0,1,0,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,122.0,1,3,38,123,171,116.1,1,0,1,1,1,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9773,1,1,128.0,1,38,38,6,3,116.5,0,0,0,1,1,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,97.0,1,1,19,2,7,98.1,1,0,0,1,0,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,53,1,9991,0,1,140.0,1,38,38,191,193,135.0,0,0,1,1,0,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,Enrolled +1,1,2,9773,1,1,122.0,1,37,37,9,9,130.8,1,0,0,1,0,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,117.9,0,0,0,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9991,0,1,100.0,1,37,19,9,4,130.0,0,0,0,1,1,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,Dropout +1,17,6,9670,1,1,125.0,1,38,1,9,7,125.0,1,0,0,1,1,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,Graduate +2,7,1,9070,1,43,140.0,1,37,1,9,7,140.0,0,0,0,1,0,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,Graduate +1,7,1,9254,1,3,110.0,1,19,19,3,3,110.0,0,0,0,1,1,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9500,1,1,135.0,1,19,1,5,4,127.3,1,0,0,1,0,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,Graduate +1,17,4,9238,1,1,129.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,8,9,144.9,1,0,1,0,0,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9500,1,1,136.0,1,1,1,4,4,123.8,0,0,0,1,0,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,Graduate +4,43,1,9991,0,1,140.0,1,37,37,5,5,149.8,0,0,0,1,1,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,150.0,1,38,19,9,9,137.8,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +5,39,1,9147,1,1,180.0,1,1,1,4,8,140.5,0,0,1,0,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,131.0,1,19,19,3,7,127.9,1,0,0,1,0,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,110.0,1,1,1,4,4,99.0,0,0,0,1,1,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,Enrolled +1,39,1,9070,1,1,139.3,1,38,38,5,5,117.5,0,0,0,1,1,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9130,1,1,147.0,1,4,1,2,10,141.8,1,0,0,1,0,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,Graduate +2,44,1,8014,0,39,150.0,1,1,1,5,5,154.0,0,0,0,1,1,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,133.1,1,1,1,4,5,131.0,1,0,0,1,0,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,132.0,1,1,38,9,7,127.1,1,0,0,1,0,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,4,9147,1,1,125.0,1,19,19,5,5,118.0,1,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,108.0,1,19,1,9,3,107.8,1,0,0,1,0,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,143.0,1,37,37,9,8,130.6,1,0,0,1,0,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,126.0,1,37,1,7,7,118.7,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9238,1,1,140.0,1,1,44,4,2,124.6,1,0,1,0,1,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,112.0,1,9,22,4,3,106.1,0,0,0,1,0,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,130.0,1,37,37,191,183,163.7,0,0,0,1,0,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,Enrolled +4,39,1,9500,1,19,133.1,1,37,37,6,6,117.8,0,0,1,0,0,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,Dropout +1,18,2,9853,1,1,120.0,1,1,1,9,0,115.8,0,0,0,1,0,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,118.0,1,38,19,9,3,111.0,1,0,0,1,0,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,16,1,171,1,1,150.0,1,37,37,9,9,134.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,133.1,6,37,37,9,6,100.0,0,0,0,1,0,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,137.0,1,1,37,5,9,131.4,1,0,0,1,1,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Dropout +2,44,1,9991,0,39,130.0,1,1,37,4,9,130.0,0,0,0,0,0,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9238,1,1,136.0,1,19,19,4,7,121.7,1,0,0,1,0,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,133.1,1,1,38,9,7,110.5,0,0,0,1,0,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,Graduate +1,39,1,9556,1,19,100.0,1,37,38,9,9,120.0,0,0,0,1,0,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,142.0,1,1,38,3,5,146.9,1,0,0,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,127.0,1,19,19,7,8,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,130.0,1,1,38,7,8,135.6,1,0,0,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,137.0,1,19,38,9,3,125.0,1,0,0,1,0,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,135.0,1,37,37,7,7,124.0,1,0,0,1,0,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,Enrolled +2,39,1,9556,1,1,100.0,6,38,38,9,9,130.0,0,0,0,1,0,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,Graduate +1,42,1,9003,1,39,120.0,1,3,1,2,6,128.2,1,0,0,1,1,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,Enrolled +1,1,3,9773,1,1,121.0,1,19,19,3,3,116.1,0,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,136.0,1,1,19,4,9,131.1,1,0,0,1,0,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,141.0,1,3,19,2,10,126.8,1,0,0,1,1,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9773,1,1,136.0,1,38,38,9,9,132.9,1,0,0,1,1,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,133.1,1,1,1,90,1,120.0,1,0,1,0,1,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,Dropout +1,17,1,8014,0,1,132.0,1,37,19,5,5,121.2,0,0,0,1,0,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,2,9500,1,6,119.1,1,1,19,4,10,119.1,0,0,0,1,1,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,153.0,1,1,19,9,4,139.7,1,0,0,1,0,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,150.0,1,1,1,3,3,143.4,0,0,0,0,1,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Enrolled +1,1,4,9500,1,1,130.0,1,19,19,9,7,119.9,1,0,0,1,0,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,6,140.0,0,0,0,1,1,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,115.0,1,38,37,5,5,115.0,0,0,0,1,0,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,150.0,1,19,37,5,4,142.7,1,0,0,1,0,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,133.1,1,34,5,0,1,118.5,1,0,0,1,0,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9130,1,1,125.0,1,3,3,2,2,132.4,0,0,0,1,1,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,116.0,1,37,37,9,9,110.8,0,0,0,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,Enrolled +1,43,1,9070,1,1,115.0,1,12,12,1,10,115.0,0,0,1,1,1,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,125.0,1,37,37,9,9,118.8,0,0,0,1,1,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,130.0,1,3,1,2,5,133.8,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9500,1,1,141.0,1,12,1,5,5,133.0,1,0,0,1,0,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,141.0,1,38,38,7,10,139.8,1,0,0,1,0,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,Graduate +1,51,1,9147,1,19,133.1,1,19,19,9,5,112.1,0,0,1,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,132.0,1,19,2,9,3,126.0,1,0,0,1,0,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,131.0,1,2,38,4,5,132.3,1,0,0,1,0,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,124.0,1,1,19,9,8,116.7,1,0,0,1,0,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,180.0,103,5,3,1,1,183.5,1,0,0,1,0,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,10,1,9773,1,1,151.0,22,38,37,0,5,151.0,1,0,0,1,0,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,135.0,1,19,19,9,10,133.4,1,0,0,1,0,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,135.0,1,3,3,2,2,137.1,1,0,0,1,0,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.1,1,38,38,5,10,101.0,0,0,0,1,1,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,40,130.0,1,3,2,3,2,160.0,1,0,0,1,0,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,18,1,9773,1,1,124.0,1,38,37,9,8,126.8,0,0,0,1,1,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,140.0,1,19,37,9,9,125.5,1,0,0,1,0,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,1,133.1,1,37,38,9,8,118.9,0,0,0,1,0,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9991,0,1,160.0,1,34,34,0,0,161.8,1,0,1,1,1,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,140.0,1,1,38,4,7,100.0,0,0,0,1,0,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Graduate +1,44,1,9070,1,39,120.0,1,2,19,3,8,120.0,0,0,0,1,1,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,124.0,1,38,19,3,10,128.6,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,Enrolled +1,44,1,9085,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,0,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,145.0,1,1,19,4,3,133.5,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,Graduate +4,39,1,9085,1,1,110.0,1,37,37,90,90,110.0,0,0,0,0,0,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,134.0,1,19,37,4,7,133.5,1,0,0,1,0,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,132.0,1,1,19,4,3,126.4,1,0,0,1,0,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,19,133.1,1,4,1,2,4,120.0,0,0,0,1,1,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,151.0,1,40,4,2,2,144.5,1,0,0,1,0,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +2,39,1,9147,1,19,133.1,1,37,19,9,3,128.0,0,0,0,1,1,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,Dropout +1,39,2,8014,0,1,141.0,1,37,37,9,9,150.5,0,0,0,1,0,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,122.0,1,19,19,4,6,119.9,0,0,0,1,0,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,9,133.1,1,34,34,0,0,110.0,1,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,1,9500,1,1,128.0,1,19,1,9,4,125.8,0,0,0,1,0,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,3,9773,1,1,133.1,1,38,38,5,5,131.3,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,16,6,9147,1,1,128.0,1,37,37,9,9,116.5,1,0,0,1,0,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,1,147.0,1,34,34,90,90,111.7,1,0,0,1,0,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,1,19,6,8,122.0,0,0,0,1,0,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,Graduate +2,39,2,9254,1,19,133.1,1,19,19,9,5,123.5,0,0,0,1,1,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,114.0,1,37,37,9,9,130.0,0,0,0,1,1,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,Graduate +2,39,1,8014,0,1,100.0,1,37,38,9,9,141.5,0,0,0,1,0,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9556,1,1,118.0,1,38,38,5,5,117.8,1,0,0,1,0,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9773,1,19,133.1,1,19,19,171,163,104.0,0,0,1,0,0,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,39,110.0,1,19,37,9,8,127.5,0,0,1,0,0,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,1,120.0,1,37,38,9,8,100.0,0,0,1,1,1,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,133.0,1,19,3,9,9,123.2,1,0,0,1,1,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,133.1,1,34,34,0,0,142.8,0,0,0,1,1,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9119,1,1,120.0,1,34,34,0,0,140.0,1,0,0,1,1,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,120.0,1,3,37,4,7,115.1,1,0,0,1,0,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,Graduate +1,51,1,9119,1,1,140.0,1,1,19,4,4,150.0,0,0,0,1,1,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,Dropout +1,43,1,9556,1,1,149.0,1,1,1,4,8,140.2,1,1,0,1,0,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,160.0,1,37,19,9,10,160.0,1,0,0,1,0,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,115.0,1,19,38,7,8,116.4,1,0,0,1,0,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,140.0,1,4,4,2,10,140.0,1,0,0,1,1,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,19,133.1,1,1,1,4,4,130.0,0,0,0,1,1,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,5,9773,1,1,146.0,1,1,37,5,5,146.7,1,0,0,1,1,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,142.0,1,1,38,9,9,127.0,0,0,1,0,1,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,130.0,1,37,37,9,7,138.0,0,0,0,1,0,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9773,1,9,133.1,1,38,1,5,4,102.0,1,0,0,1,1,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,125.0,1,19,19,7,5,118.0,1,0,0,1,0,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,145.0,1,19,38,4,10,131.7,1,0,0,1,0,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,133.1,1,37,19,9,9,114.0,0,0,0,1,0,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,140.0,1,38,37,4,10,140.0,0,0,1,0,0,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,128.0,1,1,19,4,4,124.5,0,0,0,1,1,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,126.0,1,37,19,9,8,116.9,1,0,0,1,0,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,1,9773,1,1,177.0,1,2,1,123,135,155.7,0,0,1,1,0,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,135.0,1,37,1,5,5,126.8,1,0,0,1,0,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,125.0,1,4,3,1,1,119.8,0,0,0,1,0,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,Graduate +1,53,1,9147,1,42,130.0,1,1,19,143,172,133.8,1,0,0,1,0,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,Graduate +1,17,3,9670,1,1,123.0,1,38,38,7,8,118.8,1,1,0,1,0,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,112.0,1,38,19,9,5,113.8,1,0,0,1,0,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,124.0,1,34,34,0,0,129.3,0,0,0,1,0,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9773,1,12,120.0,1,1,1,9,9,129.8,1,0,0,1,1,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,111.0,1,19,19,9,9,110.0,1,0,0,1,0,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,163.0,1,37,37,5,6,155.0,0,0,0,1,0,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,145.0,1,19,1,9,5,145.0,0,0,0,1,0,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,160.0,1,38,37,9,7,155.5,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,137.0,1,1,3,7,3,131.1,1,0,1,1,0,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,133.1,1,38,38,9,9,113.5,0,0,0,1,0,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,130.0,1,1,1,9,9,131.8,0,0,0,1,1,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,137.0,1,38,37,7,7,126.0,1,0,0,1,0,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,160.0,1,19,1,9,5,107.8,1,0,0,0,1,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9070,1,39,120.0,1,3,38,3,9,120.0,0,0,0,1,1,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,145.0,1,3,3,2,1,129.3,1,0,0,1,0,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,117.0,1,38,19,5,7,118.1,0,0,0,1,1,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,130.0,1,1,1,4,3,130.0,1,0,0,1,0,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,Enrolled +2,43,1,9238,1,12,100.0,1,37,37,9,9,134.4,0,0,0,1,0,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,Graduate +2,43,1,8014,0,14,133.1,1,34,34,0,0,100.0,0,0,0,0,0,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,Dropout +1,17,4,9254,1,1,122.0,1,1,1,4,2,116.1,1,0,0,1,1,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,4,9254,1,1,110.0,1,37,37,9,7,113.2,1,0,0,1,0,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,131.0,1,38,37,4,9,131.7,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,1,19,4,10,150.0,0,0,0,1,1,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,142.0,1,19,38,9,7,127.3,0,0,0,1,1,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,Enrolled +1,7,1,9556,1,43,160.0,1,38,19,9,9,160.0,0,0,0,1,1,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,1,1,9853,1,1,130.0,1,19,12,9,4,133.2,1,0,0,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,43,1,9119,1,1,130.0,1,37,38,9,9,120.0,0,0,1,0,0,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,42,1,3,7,110.5,0,0,0,1,1,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +2,39,1,9003,1,1,130.0,1,1,19,4,9,152.4,1,0,0,1,0,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,Graduate +1,16,1,171,1,1,155.0,1,1,3,5,10,167.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,3,9254,1,1,114.0,26,38,3,9,3,127.3,1,0,1,0,0,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,37,37,9,9,125.4,1,0,0,1,1,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,5,9773,1,1,127.0,1,38,1,4,5,121.1,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Enrolled +1,17,2,171,1,1,130.0,41,1,1,2,3,148.6,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9130,1,1,120.0,1,1,19,9,9,120.0,1,0,0,1,0,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,133.0,1,1,37,4,10,143.2,0,0,0,1,0,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,38,38,9,7,125.2,1,0,0,1,0,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,102.0,1,37,37,7,7,102.0,0,0,0,1,0,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,19,38,5,7,128.5,1,0,0,1,0,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,140.0,1,38,38,7,7,133.2,1,0,0,1,0,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,123.0,1,1,1,3,3,120.9,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,2,9500,1,1,135.0,1,19,1,5,5,128.9,1,0,0,1,0,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,1,3,137.7,0,0,0,0,0,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,158.0,1,3,3,3,3,151.4,1,0,0,0,0,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,37,1,9,3,120.0,0,0,1,0,1,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,51,1,9773,1,1,135.0,1,1,42,5,3,110.0,1,0,0,1,1,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,143.0,1,3,38,2,9,144.1,1,0,0,1,0,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,Enrolled +1,1,3,9070,1,1,132.0,1,1,3,9,7,126.1,1,0,0,1,0,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,141.0,1,19,1,9,10,126.8,1,0,0,1,0,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,130.0,1,38,38,6,9,126.3,1,0,0,1,0,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,1,140.0,1,1,1,4,5,140.0,0,0,0,1,1,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,Enrolled +1,39,2,9147,1,1,130.0,1,19,19,5,9,121.5,0,0,0,0,1,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,51,1,8014,0,19,133.1,1,37,37,9,9,104.0,0,0,1,1,0,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,120.0,1,3,4,2,2,120.0,0,0,0,1,1,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,Graduate +1,1,4,171,1,1,131.0,1,19,19,4,4,119.8,1,1,0,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,18,3,9070,1,1,134.0,1,1,1,3,4,121.4,0,0,0,1,0,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,140.0,1,37,37,9,9,118.2,0,0,0,1,1,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,130.0,1,19,37,9,9,131.8,1,0,0,1,0,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,134.0,1,38,19,3,10,121.2,0,0,0,1,0,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,Graduate +1,43,2,9500,1,1,120.0,1,41,3,2,2,112.7,0,0,0,1,0,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,134.0,1,1,19,4,9,129.8,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,133.0,1,19,1,4,5,127.1,1,0,0,1,0,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,148.0,1,38,37,5,9,137.8,1,0,0,1,0,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,129.0,1,37,37,9,7,117.8,0,0,0,1,0,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,Enrolled +4,39,1,8014,0,3,100.0,1,37,37,9,9,130.0,0,0,0,1,0,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,145.0,1,1,40,9,2,129.6,0,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,4,9254,1,1,124.0,1,1,1,4,4,122.3,1,0,0,1,0,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Dropout +2,43,2,9147,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,Graduate +1,51,1,9556,1,1,131.0,1,1,37,152,193,126.6,1,0,0,1,1,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,44,1,9085,1,39,110.0,1,3,5,2,2,110.0,0,0,0,1,1,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,15,1,9147,1,1,140.0,26,37,2,6,4,140.0,0,0,1,1,1,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,Graduate +2,51,1,9853,1,1,130.0,1,37,37,7,8,120.3,0,0,0,1,0,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,19,133.1,1,37,37,6,6,139.0,0,0,0,1,1,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9670,1,1,120.0,1,37,37,7,7,111.3,1,0,0,1,1,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,3,120.0,1,37,37,7,7,120.0,0,0,0,1,0,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,Dropout +1,17,3,9147,1,1,147.0,1,19,38,5,7,132.3,1,0,0,1,0,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,3,9130,1,1,167.0,1,37,37,90,90,159.3,0,0,0,1,0,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,132.0,1,1,1,4,9,136.6,1,0,0,1,1,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,Enrolled +1,5,2,9853,1,1,124.0,1,19,19,3,3,113.9,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,3,130.0,1,3,1,2,9,130.0,0,0,0,1,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,160.0,1,1,38,4,7,146.5,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,141.0,1,19,3,4,0,137.9,1,0,0,0,1,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,19,37,8,7,100.0,1,0,0,1,0,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,134.0,1,38,19,7,7,124.2,0,0,0,1,0,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,150.0,1,1,37,4,8,145.6,1,0,0,1,0,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,146.0,1,3,1,3,10,138.7,0,0,0,1,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9991,0,40,133.1,1,1,37,4,1,100.0,0,0,0,1,0,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,127.0,1,38,19,9,10,117.9,0,0,0,1,0,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,131.0,1,37,38,9,7,137.0,0,0,0,1,0,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Graduate +1,7,1,9238,1,3,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,Graduate +2,39,1,9085,1,1,133.1,1,37,37,90,90,110.3,0,0,0,1,1,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,125.0,1,38,1,3,10,114.5,1,0,0,1,1,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,152.0,1,19,19,9,5,154.1,0,0,1,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,120.0,1,37,37,4,5,120.0,0,0,1,0,0,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,Dropout +2,39,1,8014,0,1,146.0,1,37,37,9,8,120.5,0,0,0,1,0,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,39,1,9119,1,12,133.1,1,34,34,0,0,95.1,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,128.0,1,19,37,9,8,116.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9307cf4b524ffa38ff4a36db610667ac23d91634 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/train.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,1,1,127.0,1,1,1,9,6,110.0,0,0,1,0,1,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9773,1,1,122.0,1,38,37,5,3,119.6,1,0,0,1,0,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,6,9147,1,1,121.0,1,3,19,4,5,116.8,0,0,0,1,1,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,158.0,1,38,37,5,5,140.2,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,19,19,9,7,131.7,1,0,0,1,0,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,Graduate +1,1,3,9085,1,1,133.0,1,1,38,9,90,128.2,0,0,0,1,0,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,122.0,1,1,19,9,9,120.3,1,0,0,1,1,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,Dropout +1,43,1,9119,1,1,130.0,1,1,1,9,2,128.0,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,3,9254,1,1,122.0,1,1,1,4,4,126.6,0,0,0,0,0,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,1,100.0,1,37,37,9,9,133.0,0,0,0,1,1,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,44,1,9119,1,39,130.0,1,19,3,3,4,130.0,0,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9085,1,39,140.0,1,1,1,4,7,140.0,1,0,1,1,0,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9070,1,1,130.0,1,37,37,9,9,123.7,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +4,1,1,9991,0,1,130.0,1,37,37,9,9,118.1,0,0,1,0,0,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9500,1,1,190.0,108,3,2,122,4,190.0,1,0,0,1,0,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,102.0,1,1,19,9,5,100.6,1,0,0,1,0,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,3,120.0,1,19,3,4,2,120.0,1,0,0,1,0,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,130.0,1,38,19,9,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,111.0,1,3,4,4,3,108.2,1,0,0,1,0,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9119,1,1,160.0,1,1,38,4,7,112.0,0,0,0,0,1,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,149.0,1,19,1,4,4,134.8,0,0,0,1,0,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,135.0,1,19,38,3,9,136.1,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,2,9500,1,1,120.0,1,37,34,90,0,121.5,0,0,1,1,0,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,147.0,1,12,19,9,3,151.6,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,128.0,1,37,37,9,9,123.5,1,0,0,1,1,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,2,9070,1,1,129.0,1,1,1,4,9,132.9,1,0,0,1,1,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,Enrolled +1,17,2,9500,1,1,138.0,1,1,38,5,8,132.8,1,0,0,1,0,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,134.0,1,19,37,9,9,131.6,1,1,0,1,0,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,130.0,1,37,37,9,9,122.0,1,0,0,1,0,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,1,0,0,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,2,9085,1,1,130.0,1,37,19,9,8,129.0,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,Enrolled +1,17,5,9119,1,1,126.0,1,38,38,5,9,116.9,1,0,1,1,1,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,37,38,5,6,140.0,1,0,0,1,0,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,18,4,9853,1,1,123.0,1,19,38,4,10,123.7,1,0,0,1,0,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,118.0,1,4,3,2,3,110.7,1,0,0,1,0,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,2,130.0,1,37,37,5,7,147.5,0,0,0,1,0,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,146.0,1,4,1,2,3,140.0,1,0,0,1,0,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,Graduate +1,44,1,9003,1,39,160.0,1,37,38,9,7,160.0,0,0,0,1,0,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,7,0,9003,1,3,130.0,1,1,37,4,9,130.0,1,0,0,1,0,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,19,133.1,1,34,34,99,99,96.0,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,136.0,1,37,37,7,7,140.9,1,0,0,1,1,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,1,9853,1,1,127.0,1,1,1,5,7,121.4,1,0,0,1,0,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,134.0,1,3,19,2,10,128.8,0,0,0,1,0,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,140.0,1,1,3,4,2,142.8,1,0,0,0,0,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,126.3,0,0,0,1,1,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.1,1,19,1,1,3,101.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9147,1,1,122.0,1,1,38,1,7,118.9,0,0,0,1,1,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,107.0,1,19,37,7,7,103.5,1,0,0,1,0,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,156.0,1,38,37,9,9,156.3,0,0,0,1,1,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,128.0,1,1,1,9,9,120.0,1,0,0,1,0,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9119,1,1,127.0,1,19,1,9,10,121.1,1,0,0,1,1,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,4,160.0,1,3,3,4,2,180.4,0,0,1,1,1,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,Dropout +1,43,1,9670,1,1,132.0,1,3,19,4,8,120.5,0,0,0,1,1,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,134.0,1,1,19,4,5,122.5,1,0,0,1,0,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,142.0,1,1,19,4,4,128.0,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,133.0,1,2,37,9,7,125.7,1,0,0,1,1,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,135.0,1,1,3,4,3,133.3,0,0,0,1,0,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,3,140.0,1,37,12,9,4,140.0,0,0,0,0,0,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9500,1,1,141.0,1,2,38,2,10,135.4,1,0,0,1,0,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,Enrolled +2,43,1,9991,0,2,120.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,147.0,1,1,19,4,4,137.2,0,0,0,0,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9085,1,1,120.0,1,37,38,9,9,111.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,141.0,1,3,1,9,9,124.3,0,0,0,1,0,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,Enrolled +1,18,1,9773,1,1,125.0,1,1,1,4,7,121.5,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,140.0,1,37,37,5,5,150.0,0,0,1,1,0,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,112.0,1,1,37,4,9,106.8,1,0,0,1,0,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,168.0,1,38,37,9,8,155.1,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,15,1,9119,1,1,133.1,41,2,2,2,2,100.0,0,0,1,1,1,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,Enrolled +2,1,1,8014,0,1,121.0,1,37,37,9,9,114.4,1,0,0,1,0,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,136.0,1,1,38,4,5,132.2,0,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,Graduate +1,16,1,9070,1,1,145.0,1,1,1,3,3,146.1,1,0,0,1,0,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,40,140.0,1,5,3,2,2,140.0,0,0,1,1,1,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,Dropout +1,1,3,9085,1,1,126.0,1,38,1,9,9,132.0,1,0,0,1,0,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,146.0,1,1,37,9,9,129.3,0,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,131.0,1,37,37,9,6,127.2,0,0,0,1,0,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,139.0,1,37,37,9,9,124.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,133.1,1,37,1,5,4,151.2,0,0,0,1,1,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,170.0,1,38,19,9,2,160.6,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,131.0,1,37,37,9,6,130.7,0,0,1,1,0,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,122.0,1,19,37,3,5,116.6,1,0,1,1,1,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,Graduate +1,17,3,171,1,1,147.0,1,19,1,5,4,137.6,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,9,120.0,0,0,0,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,5,1,9130,1,1,157.0,1,5,43,2,2,149.7,1,0,0,1,0,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9003,1,39,160.0,1,3,1,2,6,160.0,1,0,0,0,0,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,140.0,1,9,19,4,4,131.2,0,0,0,1,1,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,1,130.0,1,1,3,2,6,110.0,0,0,0,1,1,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,Graduate +1,39,1,171,1,1,147.0,1,37,38,175,193,133.3,0,0,0,0,0,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,148.0,1,38,19,4,9,134.7,1,0,0,1,0,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,130.0,1,19,1,9,7,130.4,1,0,0,1,0,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,133.1,1,1,37,4,9,96.0,1,0,0,1,0,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,Enrolled +1,39,1,9991,0,12,120.0,1,37,38,5,5,155.7,0,0,0,1,1,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,117.0,1,3,1,3,3,113.2,0,1,0,1,0,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,Graduate +1,17,2,9853,1,1,150.0,1,38,19,5,5,142.0,1,0,0,1,0,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,144.0,1,1,19,9,4,130.8,1,0,0,1,0,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,Graduate +1,17,4,9254,1,1,118.0,1,38,37,5,7,111.7,1,0,0,1,1,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,6,9500,1,1,141.0,1,2,1,4,4,136.3,1,0,0,1,0,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,Graduate +2,39,1,9003,1,1,120.0,1,2,2,1,4,100.0,0,0,0,1,1,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,141.0,1,4,3,2,1,136.3,1,0,0,1,1,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,120.0,1,1,19,5,4,140.4,0,0,0,1,0,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,154.0,1,1,37,4,9,134.8,1,0,0,1,0,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,100.0,1,19,19,5,5,101.8,1,0,0,1,0,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,3,9670,1,1,137.0,1,1,38,4,7,138.4,0,0,0,1,1,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,152.0,1,37,37,7,5,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,118.0,1,37,1,9,7,117.0,1,0,0,0,1,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,140.0,1,12,3,4,3,118.0,1,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,133.0,1,1,2,9,2,128.8,0,0,0,1,1,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,171,1,1,140.0,1,37,37,9,9,100.8,0,1,0,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9070,1,42,130.0,1,40,19,3,5,130.0,1,0,0,0,0,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,143.0,1,1,19,3,3,133.9,0,0,0,1,0,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,Graduate +2,1,5,9500,1,1,130.0,1,1,19,4,4,122.3,0,0,0,1,0,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,9,9,125.0,1,0,0,1,0,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,120.0,1,37,37,7,8,120.0,0,0,0,1,0,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,Graduate +1,1,2,9147,1,1,125.0,1,1,19,4,9,124.0,1,0,0,1,0,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,131.0,1,38,19,9,9,130.0,1,0,0,1,1,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,132.0,1,1,1,4,1,119.4,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9500,1,1,135.0,1,19,19,7,7,128.0,1,0,0,1,0,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,19,133.1,1,38,38,9,9,114.8,0,0,0,1,0,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,130.0,1,2,2,6,6,130.0,0,0,0,0,1,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,112.0,1,19,38,9,10,112.0,1,0,0,1,0,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9254,1,1,170.0,1,37,37,4,6,138.3,0,0,0,1,0,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9147,1,19,100.0,1,38,19,7,9,132.0,0,0,1,0,1,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,133.1,1,19,19,9,9,119.0,1,0,0,0,0,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,Dropout +1,17,2,9085,1,1,138.0,1,37,37,9,7,123.3,1,0,0,1,0,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,1,133.1,1,37,37,9,9,112.5,0,0,0,1,0,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,1,140.0,1,12,5,3,3,126.6,0,0,0,1,1,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,1,125.0,1,1,1,9,4,120.0,0,0,0,1,0,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,151.0,1,1,1,4,3,132.3,0,0,0,1,1,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,Graduate +1,43,1,9556,1,1,130.0,1,1,37,5,5,128.0,1,0,0,1,1,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,Graduate +1,17,6,9670,1,1,113.0,1,4,1,3,10,112.3,0,0,0,1,0,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9773,1,1,125.0,1,37,37,5,7,120.1,0,0,0,1,0,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,53,1,171,1,42,130.0,1,1,19,9,9,130.0,1,0,0,0,1,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,51,1,33,1,1,121.0,1,19,37,5,7,118.6,0,0,0,1,0,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,131.0,1,37,37,90,90,137.0,0,0,0,1,0,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,150.0,1,19,1,4,4,137.8,0,0,0,1,0,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,140.0,1,37,37,5,6,128.5,0,0,0,1,0,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,130.0,1,37,2,9,4,126.5,1,0,0,0,1,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,Dropout +1,1,2,9238,1,1,147.0,1,19,38,9,8,135.8,1,0,0,1,0,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,106.0,1,19,37,9,7,109.5,1,0,0,1,0,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,110.0,1,37,37,9,10,140.0,0,0,1,0,1,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,105.0,1,19,37,8,8,102.6,0,1,0,1,0,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,Enrolled +1,17,6,9147,1,1,133.0,1,19,38,5,6,123.2,1,0,0,1,1,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9670,1,1,160.0,1,34,34,99,99,100.1,0,0,0,0,1,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,Dropout +4,7,1,9500,1,40,130.0,1,37,37,3,3,130.0,1,0,0,1,0,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,Enrolled +1,43,2,9853,1,1,118.0,1,19,1,5,4,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,Enrolled +1,43,1,8014,0,1,117.0,1,37,37,9,9,100.0,0,0,0,1,0,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,Dropout +1,53,1,9238,1,42,130.0,1,1,19,5,5,128.3,0,0,1,0,0,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,127.0,1,19,38,4,5,120.7,1,0,1,1,0,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,38,37,9,4,150.0,1,0,0,1,1,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,1,133.1,1,37,29,0,4,120.5,0,0,0,0,1,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,121.0,1,37,19,9,9,141.4,0,0,1,0,1,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,120.0,1,38,37,9,7,108.0,0,0,0,1,1,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,153.0,6,37,37,9,9,131.8,1,0,0,1,0,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,153.0,1,38,19,9,5,138.5,1,0,0,1,0,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,107.0,1,12,19,5,5,102.8,1,0,0,1,0,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9238,1,1,135.0,1,1,19,7,7,126.6,1,0,0,1,0,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,124.0,1,1,19,123,103,113.9,1,1,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,144.0,1,37,37,7,9,126.8,1,0,1,0,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9556,1,1,120.0,1,37,37,9,4,150.0,0,0,0,0,0,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,Dropout +1,43,3,171,1,1,120.0,1,37,37,9,9,143.3,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,140.0,1,38,19,4,10,122.3,1,0,0,1,0,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,157.0,1,3,38,1,5,136.7,1,0,0,1,0,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,150.0,1,3,1,2,8,153.8,1,0,0,1,0,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,130.0,1,2,1,2,7,126.2,1,0,0,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,142.0,1,37,37,9,9,132.9,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9238,1,1,124.0,1,1,1,3,1,118.8,1,0,1,0,0,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,1,19,4,5,100.0,0,0,0,1,1,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,Enrolled +1,17,5,9238,1,1,122.0,1,37,37,7,5,112.9,1,0,0,1,0,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,97.5,1,0,0,1,1,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,171,1,1,140.0,1,1,3,3,3,138.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,132.0,1,1,1,3,3,119.4,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,Graduate +1,42,1,9500,1,1,100.0,1,3,19,2,8,153.0,0,0,0,1,1,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,Enrolled +1,1,1,9254,1,1,123.0,1,38,37,5,5,125.1,0,0,0,1,0,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9130,1,1,133.0,1,38,38,5,8,120.4,1,0,0,1,0,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,Graduate +1,17,4,9773,1,1,129.0,1,3,1,2,7,132.5,1,0,0,1,1,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Enrolled +4,39,1,9003,1,19,133.1,1,37,37,9,9,110.0,0,0,0,1,1,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,133.0,1,3,1,9,3,123.2,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,137.0,1,38,19,9,5,129.3,1,0,0,1,0,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,123.0,1,3,1,2,9,127.6,1,0,0,1,1,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,19,133.1,1,19,19,9,5,101.0,1,0,0,1,0,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,19,19,7,7,111.1,1,0,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9070,1,1,147.0,1,3,1,2,3,149.8,1,0,0,1,1,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,100.0,1,37,37,7,9,100.0,1,0,0,1,0,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,141.0,1,38,38,7,7,132.5,1,0,0,1,0,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,168.0,1,1,1,5,5,161.0,1,0,0,1,1,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,Dropout +5,39,1,9003,1,19,133.1,1,19,1,9,9,119.4,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,114.0,1,1,19,9,9,111.9,1,0,0,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,Enrolled +1,39,1,9500,1,1,130.0,1,37,37,3,7,143.8,0,0,0,1,1,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,133.1,1,19,19,9,7,100.0,0,0,0,1,1,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,Dropout +1,17,3,9853,1,1,132.0,1,34,34,0,0,131.3,1,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,157.0,1,37,37,9,9,143.0,0,0,0,1,1,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,Graduate +5,42,1,9254,1,2,120.0,1,37,37,4,9,120.0,0,0,0,1,0,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,6,1,1,192,144,129.8,0,0,0,1,1,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,Enrolled +1,1,2,9500,1,1,139.0,1,38,37,9,7,125.0,1,0,0,1,0,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,133.1,1,1,19,9,5,95.0,1,0,0,1,0,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,180.0,1,37,37,7,4,153.8,1,0,0,1,0,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,4,9773,1,1,133.0,1,1,19,9,9,119.7,1,0,0,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,Graduate +1,17,5,9500,1,1,124.0,1,3,38,2,1,119.8,0,0,0,1,1,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,133.1,1,37,37,9,9,148.2,1,0,1,1,0,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,19,133.1,1,37,37,9,7,114.8,0,0,1,1,1,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,133.1,1,1,19,4,8,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,180.0,41,37,37,9,9,152.7,1,0,1,0,1,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9085,1,1,130.0,1,19,19,90,7,115.8,0,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,161.0,1,38,37,5,5,154.4,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,148.0,1,1,38,4,5,148.7,0,0,0,1,1,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,19,38,9,7,131.3,1,0,1,1,0,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,122.0,1,1,1,4,9,112.9,1,0,0,1,0,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,4,9500,1,1,142.0,1,38,38,9,8,129.8,1,0,0,1,0,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,Graduate +3,39,1,9003,1,1,170.0,1,1,37,6,6,170.0,0,0,1,1,0,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Enrolled +1,1,2,9147,1,1,130.0,1,37,37,9,9,117.8,0,0,0,1,0,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9147,1,1,140.0,1,37,37,9,7,132.3,1,0,0,1,0,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,132.0,1,2,1,9,9,126.4,1,1,0,1,0,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,140.0,1,1,3,9,2,140.0,1,0,0,1,0,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,19,4,4,109.3,0,0,0,1,1,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,176.0,1,3,38,3,7,169.7,0,0,0,1,0,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,133.1,1,37,38,7,7,98.0,1,0,0,1,1,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,136.0,1,3,3,2,2,128.7,0,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,12,38,4,9,107.0,1,0,0,1,0,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,Dropout +1,17,1,9130,1,1,156.0,1,2,9,3,5,166.9,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,Graduate +1,17,1,9130,1,1,123.0,1,19,3,3,2,121.6,1,0,1,1,0,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,129.0,1,1,1,9,9,124.8,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9119,1,1,125.0,1,19,1,5,4,121.5,1,0,0,1,1,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,Dropout +1,17,1,9085,1,1,163.0,14,37,37,9,9,150.8,1,0,0,1,0,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,Graduate +1,7,2,9130,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,135.0,1,1,2,9,1,134.3,1,0,0,1,0,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,19,37,6,6,120.0,0,0,0,1,0,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,1,130.0,1,37,37,9,7,133.0,1,0,0,1,0,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,143.0,1,1,19,4,6,135.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +4,43,2,9991,0,38,133.1,1,3,1,2,9,125.4,0,0,0,1,1,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,140.0,1,3,1,2,4,124.1,0,0,0,1,0,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,37,38,175,103,127.0,0,0,0,1,1,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,151.0,1,1,3,1,1,111.0,0,0,0,1,1,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,133.0,1,37,19,9,8,141.4,0,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,133.1,1,38,37,5,5,108.0,0,0,0,1,0,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,9147,1,1,118.0,1,3,19,2,4,113.8,1,0,0,1,0,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,1,1,3,5,141.7,0,0,0,1,0,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,42,1,9119,1,1,130.0,1,19,37,9,3,135.0,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,Dropout +4,39,2,9147,1,19,133.1,1,37,37,9,7,116.4,0,0,1,0,1,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,148.0,1,19,38,9,8,134.8,1,0,0,1,1,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,116.0,1,19,19,4,7,110.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,5,9147,1,1,122.0,1,38,38,9,9,117.5,1,0,1,0,0,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,122.0,1,37,37,9,9,125.9,1,0,0,1,1,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,171,1,1,127.0,1,1,1,9,5,124.2,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9147,1,39,117.4,1,19,1,4,9,117.4,1,0,0,1,0,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,150.0,1,37,38,9,9,146.2,0,0,0,1,0,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,Enrolled +1,17,1,9254,1,1,158.0,1,37,37,5,9,138.1,1,0,0,1,0,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,Dropout +1,7,1,9500,1,3,140.0,1,1,37,9,5,140.0,0,0,0,1,0,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,140.0,1,1,1,9,3,135.7,1,0,0,1,0,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +2,7,1,171,1,3,120.0,1,19,19,9,9,130.0,1,0,0,1,1,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,10,100.0,1,34,34,0,0,113.0,1,0,0,1,0,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,1,8014,0,1,125.0,1,37,37,9,7,114.9,0,0,0,1,0,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,Graduate +1,18,6,9500,1,1,124.0,1,37,37,9,7,117.8,0,0,0,1,0,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,109.0,1,2,3,3,3,111.8,1,0,1,1,1,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,149.0,1,1,1,9,3,156.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +2,44,1,9119,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,120.0,6,4,4,3,6,120.0,0,0,1,0,0,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,Dropout +5,1,3,9085,1,1,133.0,1,19,19,4,7,119.7,1,0,0,1,0,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9085,1,1,127.0,1,37,37,9,9,122.8,1,0,0,1,0,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,171,1,39,140.0,1,1,1,9,9,140.0,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9773,1,1,132.0,1,1,1,4,9,124.3,1,0,1,1,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +4,39,2,9670,1,19,133.1,1,19,1,90,90,103.0,0,0,0,0,1,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,26,1,9147,1,2,133.1,1,34,34,0,0,121.5,1,0,0,1,0,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,143.0,1,19,38,9,6,131.5,1,0,0,1,1,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,123.0,1,1,19,3,4,122.0,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,171,1,1,133.1,1,3,1,2,3,141.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,19,37,9,4,120.0,0,0,0,1,0,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,1,1,3,3,125.7,1,0,0,1,0,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,121.0,1,37,37,5,5,118.9,1,0,0,1,0,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,Graduate +1,51,1,9500,1,1,129.0,1,37,38,3,3,137.8,1,0,0,1,0,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,2,4,134.9,1,0,1,1,0,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9254,1,1,113.0,1,1,1,2,3,110.2,1,0,0,1,1,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,1,133.1,1,1,19,4,5,120.0,1,0,0,1,1,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,Dropout +1,39,1,9254,1,19,133.1,1,19,1,9,5,97.0,0,0,1,0,1,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9500,1,1,126.0,1,1,19,6,7,115.5,1,0,0,1,0,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,Graduate +1,42,1,9853,1,1,141.0,1,37,19,9,3,133.0,0,0,0,1,0,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,19,133.1,1,19,19,4,9,139.9,1,0,0,1,0,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,2,9254,1,1,140.0,1,19,19,9,9,126.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,108.0,1,34,38,0,3,105.9,0,0,0,1,1,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,114.0,1,19,19,9,7,107.7,0,0,0,1,0,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,130.0,1,3,1,9,9,126.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.1,1,19,37,0,0,137.0,1,0,0,1,0,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9119,1,1,117.0,1,1,2,3,2,119.8,1,0,0,1,1,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9147,1,1,115.0,1,1,37,4,9,117.1,1,0,1,1,0,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,130.0,1,12,19,4,5,118.5,0,1,0,1,0,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,34,37,5,5,120.4,0,0,0,0,0,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,171,1,39,150.0,1,19,1,9,9,154.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,43,1,9147,1,1,140.0,1,37,37,6,6,122.9,0,0,0,1,0,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,Dropout +1,42,1,9070,1,1,100.0,1,3,2,2,2,115.9,0,0,0,1,0,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,Enrolled +1,17,1,171,1,1,128.0,1,1,1,4,10,134.7,0,0,0,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,1,1,9,9,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,7,133.9,0,0,0,1,0,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Dropout +1,43,1,9773,1,1,119.0,1,19,37,5,5,105.0,1,0,0,1,0,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,Enrolled +2,43,1,9991,0,1,140.0,1,37,37,4,1,122.7,0,0,0,1,1,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,135.0,1,37,1,3,5,121.0,0,0,0,1,0,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,123.0,1,3,1,2,3,124.1,1,0,0,1,0,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9670,1,1,132.0,1,19,1,5,4,119.1,0,0,1,1,1,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,5,9254,1,1,130.0,1,37,38,9,9,122.7,1,0,1,1,1,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9147,1,1,117.0,1,1,38,8,9,117.0,1,0,0,1,1,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,140.0,1,19,19,9,6,135.4,1,0,0,1,0,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,162.0,1,37,37,9,6,132.0,0,0,1,1,1,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,139.0,1,19,38,4,9,128.5,1,0,0,1,0,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,Dropout +4,39,1,9991,0,1,130.0,1,38,19,9,7,148.0,0,0,0,1,0,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,43,1,9500,1,1,131.0,1,1,38,5,5,118.8,0,0,0,1,0,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,5,9238,1,1,126.0,1,38,1,9,5,125.7,1,0,0,1,0,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,53,1,9085,1,42,140.0,1,1,1,4,3,140.0,1,0,1,1,0,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,128.0,1,1,1,4,5,120.8,1,0,0,1,0,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,139.0,1,37,37,9,6,133.5,1,0,0,1,0,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,150.0,1,38,38,4,1,150.0,1,0,0,1,1,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,133.1,1,1,1,4,4,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9853,1,1,140.0,1,37,19,9,8,122.3,0,0,0,1,0,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,120.0,1,38,19,5,4,118.3,0,0,0,1,0,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,Enrolled +1,7,1,9130,1,3,140.0,1,2,38,2,3,140.0,1,0,0,0,1,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,122.0,1,9,19,90,6,103.4,0,0,0,1,0,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,Graduate +2,39,1,9070,1,19,133.1,1,37,37,9,10,126.3,0,0,0,0,1,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,160.0,1,38,38,7,7,147.8,0,0,0,1,0,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9238,1,12,100.0,1,37,37,9,9,124.3,0,0,0,1,1,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,Graduate +1,18,2,8014,0,1,117.0,1,3,1,3,4,111.8,1,0,0,1,0,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,38,37,7,7,140.0,0,0,0,1,1,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,Dropout +1,43,1,9853,1,1,140.0,1,3,1,3,3,128.3,1,0,0,1,0,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,127.0,1,37,38,9,9,120.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,1,161.0,1,19,37,4,10,100.0,0,0,0,1,1,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,Graduate +1,16,4,9500,1,1,145.0,1,1,1,4,4,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9853,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,Dropout +1,1,2,171,1,1,127.0,1,2,19,5,5,139.6,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,148.0,1,19,19,4,4,133.8,0,0,0,1,0,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,140.0,1,19,19,1,1,129.5,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,171,1,1,129.0,1,37,37,9,9,122.0,1,0,0,0,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,1,12,3,10,131.6,1,0,0,1,0,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,130.0,1,38,37,3,6,135.6,1,0,0,1,0,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,51,1,9991,0,39,120.0,1,1,4,4,10,118.1,0,0,0,1,1,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,39,1,9853,1,19,133.1,1,19,4,9,4,116.0,1,0,0,1,0,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9238,1,1,133.1,1,1,37,8,9,118.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,4,9500,1,1,125.0,1,19,1,1,1,117.8,1,0,0,1,0,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,141.0,1,1,38,4,5,125.0,1,0,0,1,0,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,121.0,1,38,38,7,5,120.0,1,0,0,1,0,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,Enrolled +1,17,3,9500,1,1,142.0,1,3,3,3,3,132.9,1,0,0,1,1,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,Dropout +1,44,1,9238,1,39,140.0,1,37,19,191,102,136.1,1,0,1,1,0,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9991,0,2,140.0,1,3,3,2,2,155.7,1,0,0,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9119,1,1,135.0,1,12,19,5,5,121.0,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,135.0,1,3,3,2,2,123.0,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,117.0,1,1,1,4,4,117.7,1,0,0,1,1,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,43,1,171,1,1,120.0,1,3,3,2,2,120.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,1,38,1,7,120.0,0,0,0,1,0,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,Graduate +1,17,3,9238,1,1,122.0,1,19,19,7,7,117.5,1,0,0,1,0,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,1,37,37,9,9,144.2,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +4,39,1,9500,1,1,140.0,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,131.0,1,19,19,9,9,139.8,1,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,127.0,1,3,3,2,5,100.0,0,0,0,1,0,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,39,1,9085,1,1,133.1,1,3,19,2,9,110.0,0,0,0,1,0,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,Dropout +4,39,1,9500,1,19,133.1,1,38,1,9,4,120.0,0,0,0,1,0,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,Graduate +1,16,1,9085,1,1,150.0,1,3,3,2,1,153.5,1,0,0,1,0,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,153.0,1,19,37,9,9,153.7,0,0,0,1,0,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,130.0,1,19,19,3,8,131.8,0,0,0,1,0,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,2,9853,1,1,131.0,1,1,1,2,9,121.9,1,0,0,1,0,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,136.0,1,3,3,3,3,130.8,0,0,0,1,0,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,126.0,1,1,19,4,0,120.1,0,1,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,1,120.0,1,3,2,2,6,120.0,1,0,0,1,1,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,Enrolled +2,39,1,9130,1,19,133.1,1,2,1,2,9,157.0,1,0,0,1,1,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,Graduate +1,7,1,9853,1,3,150.0,1,19,19,4,5,150.0,0,0,1,0,0,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,51,1,9070,1,12,133.1,1,37,19,3,7,106.6,0,0,1,1,0,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,Enrolled +1,1,2,9085,1,1,157.0,1,3,3,5,2,153.9,1,0,0,1,0,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,171,1,1,117.0,1,1,19,3,3,121.6,1,0,0,1,0,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,Graduate +1,1,2,9147,1,1,113.0,1,38,38,9,5,107.4,1,0,0,1,1,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,Enrolled +1,39,2,9147,1,12,133.1,1,19,38,9,9,120.0,1,0,1,0,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,152.0,1,37,37,9,9,139.0,1,0,0,1,0,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,138.0,1,1,19,9,9,124.0,0,0,0,1,0,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9853,1,1,110.0,1,37,37,9,9,95.5,0,0,1,0,0,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9130,1,1,150.0,1,19,19,4,4,130.0,0,0,0,0,1,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,3,9119,1,1,138.0,1,1,19,4,3,125.4,1,0,0,1,1,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,17,6,9147,1,1,120.0,1,37,38,9,9,115.5,1,0,1,0,1,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,Enrolled +1,1,3,9670,1,1,134.0,1,14,11,0,0,128.4,1,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,145.0,1,38,37,9,7,129.3,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,18,6,9500,1,1,126.0,1,37,37,5,5,122.8,1,0,0,1,0,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,133.0,1,1,1,4,4,129.2,1,0,0,1,0,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,Dropout +1,44,1,9070,1,39,120.0,1,1,19,4,7,120.0,0,0,1,0,1,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,136.0,1,19,38,9,9,121.7,0,1,0,1,0,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,126.0,1,1,1,9,10,126.7,1,0,0,1,0,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,Graduate +1,1,3,9085,1,1,134.0,1,38,19,9,5,129.1,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,133.1,1,1,37,9,9,117.0,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,5,9238,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,0,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,40,140.0,1,19,37,5,9,148.0,0,0,0,1,0,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,137.0,1,3,38,1,9,131.4,0,0,0,0,1,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,Dropout +1,1,2,9670,1,1,123.0,1,1,38,7,7,120.6,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,139.0,1,3,1,2,7,124.0,1,0,0,1,0,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,Dropout +1,1,2,171,1,1,152.0,1,38,19,9,9,151.7,1,0,0,1,0,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,110.0,1,37,37,9,4,114.3,1,0,0,1,1,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,Enrolled +1,51,1,9991,0,1,120.0,1,38,3,5,3,128.2,0,0,1,1,1,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,141.0,1,3,2,2,2,133.3,1,0,0,1,1,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,Enrolled +1,5,1,171,1,1,137.0,1,3,19,1,10,144.7,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,43,1,9003,1,1,130.0,1,37,1,5,4,130.0,0,0,0,1,1,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,Dropout +1,18,1,9773,1,1,135.0,1,1,1,3,3,129.8,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,38,38,9,8,150.0,1,0,0,1,1,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,Graduate +1,17,2,9773,1,1,150.0,1,1,1,4,5,130.8,0,0,0,1,1,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9773,1,1,123.0,1,1,1,4,7,125.1,1,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,4,9119,1,1,129.0,1,34,36,0,5,118.9,1,0,0,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,144.0,1,38,37,9,9,128.8,1,0,0,1,1,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,130.0,1,38,38,9,9,150.0,0,0,1,0,1,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,128.0,1,1,1,7,7,120.5,1,0,0,1,0,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,Enrolled +1,7,1,9500,1,3,140.0,1,3,1,4,4,140.0,0,0,0,1,0,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,134.0,1,19,19,1,1,120.4,1,0,0,1,1,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,147.0,1,1,38,4,8,141.1,1,0,0,1,0,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,126.0,1,3,1,5,5,125.7,0,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +2,1,4,9853,1,1,134.0,1,37,37,5,7,122.5,0,1,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,148.0,1,38,38,4,9,131.6,0,0,0,1,1,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,Dropout +2,39,1,9085,1,9,133.1,1,1,1,4,4,120.0,1,0,0,0,1,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,39,1,9254,1,1,150.0,1,3,1,3,4,122.3,0,0,0,1,1,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,125.0,1,19,37,3,7,126.8,0,0,0,1,0,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,Enrolled +1,18,1,9670,1,1,128.0,1,19,3,9,7,120.0,1,0,0,1,0,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,160.0,1,2,1,4,4,137.3,1,0,0,1,0,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,Graduate +2,39,1,9238,1,42,170.0,1,19,38,8,8,159.5,0,0,0,1,1,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9773,1,1,143.0,1,1,1,4,9,144.1,1,0,0,1,1,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,9991,0,1,130.0,1,37,37,9,9,127.8,0,0,0,1,1,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,51,1,9147,1,1,130.0,1,19,38,9,8,115.7,0,0,0,1,1,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,Enrolled +1,17,3,9773,1,1,135.0,1,1,19,5,7,135.0,0,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,135.0,1,1,1,9,9,133.3,0,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,136.0,1,1,1,4,5,123.3,0,0,0,0,0,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,143.0,1,5,5,2,2,137.8,0,0,0,1,1,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,133.1,1,1,19,141,114,140.0,1,0,0,1,0,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9670,1,1,117.0,1,38,19,0,1,114.6,0,0,0,0,1,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,133.1,1,1,19,4,10,145.8,0,0,0,1,1,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,129.0,1,1,37,4,9,118.2,0,0,0,1,1,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,7,1,9500,1,3,130.0,1,37,37,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,Graduate +1,17,4,9670,1,1,135.0,1,38,38,9,7,127.0,1,0,0,1,0,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,126.0,1,1,1,90,90,119.0,1,0,1,1,1,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9773,1,1,120.0,1,1,38,5,5,121.4,0,0,0,0,0,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,136.0,1,1,38,9,9,130.8,1,0,0,1,0,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,131.0,1,19,37,9,9,123.8,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,144.0,1,19,19,9,9,142.6,1,0,0,1,0,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,126.0,1,38,38,7,8,126.7,1,0,0,1,0,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,3,171,1,1,125.0,1,37,37,5,10,120.5,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,7,1,9130,1,2,110.0,1,19,19,4,8,110.0,1,0,0,1,1,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,3,1,2,8,150.0,0,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,5,171,1,1,139.0,1,19,3,9,2,136.9,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9147,1,1,100.0,1,38,38,5,5,101.8,1,0,0,1,0,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,Enrolled +1,44,2,9238,1,39,150.0,1,3,19,4,9,147.0,1,0,0,1,0,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,9,4,100.0,0,0,0,1,1,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9130,1,1,130.0,1,19,38,4,7,122.5,0,0,0,1,1,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,19,37,1,1,140.0,0,0,1,1,1,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,Enrolled +1,17,1,9070,1,1,157.0,1,3,3,3,3,146.2,0,0,0,1,1,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,150.0,1,37,19,8,4,130.8,0,0,0,1,1,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,133.1,1,19,19,7,7,130.0,1,0,0,1,0,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,150.0,1,19,1,9,8,150.0,1,0,0,1,1,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,127.0,1,1,19,7,7,121.8,1,0,0,1,0,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9853,1,1,148.0,1,19,19,5,7,141.7,0,0,0,1,0,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,130.0,1,1,19,9,9,133.4,0,0,0,1,0,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,123.0,1,37,38,3,3,122.0,0,0,1,1,1,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9070,1,1,132.0,1,37,38,9,7,138.0,0,0,0,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,146.0,1,2,19,3,9,130.3,1,0,0,1,1,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,Graduate +1,44,1,171,1,39,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,116.0,1,3,1,3,4,115.7,0,0,0,0,1,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9670,1,1,130.0,1,19,37,4,5,118.8,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,124.0,1,37,37,7,9,121.2,0,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,127.0,1,19,37,9,3,120.7,1,0,0,1,0,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +2,43,1,9070,1,2,140.0,1,37,37,6,6,140.0,1,0,0,1,1,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,Graduate +1,39,1,9500,1,1,100.0,1,3,1,2,5,121.3,1,0,0,1,0,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,Enrolled +1,39,1,9991,0,19,133.1,1,37,37,9,6,105.3,0,0,1,1,0,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,1,155.0,1,1,19,4,8,134.7,1,0,0,1,0,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,15,1,9119,1,1,160.0,32,1,3,143,152,160.0,0,0,1,1,0,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,Enrolled +1,53,1,9670,1,42,140.0,1,19,37,3,6,140.0,1,0,1,1,0,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9853,1,1,140.0,1,38,38,9,7,137.6,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,140.0,1,19,19,7,7,129.5,1,0,0,1,0,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,133.1,1,19,19,3,4,104.0,0,0,1,0,0,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,130.0,1,37,37,9,9,118.8,0,0,1,1,1,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,136.0,1,1,1,9,1,133.0,1,0,0,1,0,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,143.0,1,38,38,9,9,138.8,1,0,0,1,0,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,Graduate +2,39,1,9147,1,1,140.0,1,37,37,6,10,131.8,0,0,0,1,0,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,1,130.0,1,4,1,2,9,120.0,0,0,0,0,0,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,Enrolled +1,1,4,9500,1,1,148.0,1,19,19,4,5,137.0,1,0,0,1,0,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,120.0,1,37,19,5,3,156.0,1,0,0,1,1,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9853,1,1,133.1,1,12,1,4,0,134.8,1,0,0,1,0,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,122.0,1,1,1,9,8,120.3,0,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,156.0,1,19,38,9,5,170.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,129.0,1,38,37,9,3,127.3,1,0,1,0,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,142.0,1,38,38,9,10,127.0,1,0,0,1,0,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,150.0,1,38,19,3,3,120.1,0,0,0,0,0,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,141.0,1,37,37,9,9,126.7,1,0,1,1,0,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,43,3,9147,1,1,127.0,21,3,37,3,3,117.9,1,0,0,1,0,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,1,120.0,1,1,19,4,7,110.0,0,0,0,1,1,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,Dropout +2,42,1,9254,1,1,136.0,1,2,2,134,112,130.0,1,0,0,1,1,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,Dropout +1,18,1,9119,1,1,122.0,1,19,1,90,3,116.1,1,0,1,0,1,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9500,1,1,120.0,1,2,4,4,5,136.6,0,0,0,1,1,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,Dropout +1,18,1,9070,1,1,143.0,1,38,38,7,5,141.6,0,0,0,1,0,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,Graduate +1,43,1,9119,1,1,140.0,1,37,38,5,7,146.5,0,0,0,1,1,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,125.0,1,19,19,9,9,121.5,1,0,0,1,0,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,1,0,0,1,0,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,159.0,1,3,3,2,2,165.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,127.0,1,3,1,2,9,119.3,1,0,0,1,0,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,Graduate +1,17,6,9238,1,1,117.0,1,1,38,4,7,114.6,0,0,0,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9119,1,1,148.0,1,19,19,9,8,129.8,0,0,0,0,1,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,Enrolled +1,17,4,9119,1,1,127.0,1,19,19,5,5,120.4,1,0,1,0,1,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9500,1,1,144.0,1,19,1,5,3,141.0,1,0,0,1,0,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,Graduate +1,17,3,9556,1,1,126.0,1,19,19,9,4,119.0,1,0,0,1,0,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,Dropout +1,1,4,9119,1,1,126.0,1,3,19,2,9,123.6,1,0,0,1,1,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,120.0,1,1,2,144,123,125.3,0,0,1,1,1,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9070,1,1,130.0,1,1,19,4,4,110.0,1,0,0,1,0,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,37,37,90,5,115.5,0,0,0,0,1,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,130.0,1,38,38,9,9,120.0,0,0,0,1,0,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9853,1,1,141.0,1,3,1,1,5,130.2,1,0,0,1,0,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,Enrolled +2,1,1,9500,1,1,156.0,1,1,1,9,10,135.5,0,0,0,1,0,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,Graduate +2,7,1,8014,0,3,170.0,1,19,19,4,4,170.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9147,1,1,134.0,1,37,19,9,8,126.3,1,0,0,1,0,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,122.0,1,12,12,5,7,126.6,1,0,0,1,0,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,38,38,9,7,138.8,1,0,0,1,0,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,132.0,1,37,37,5,7,127.5,1,0,0,1,0,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,Graduate +1,16,2,9238,1,1,130.0,1,37,37,5,6,126.9,1,0,0,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,110.0,1,3,2,3,3,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,127.0,1,2,19,4,5,121.8,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,12,133.1,1,38,19,9,8,138.3,1,0,1,0,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9147,1,19,133.1,1,3,1,3,5,153.2,1,0,1,1,0,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,37,19,5,9,130.0,1,0,0,1,0,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,2,9147,1,1,130.0,1,19,37,4,7,140.0,0,0,0,1,1,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,128.0,1,19,19,7,7,124.4,0,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,19,3,8,150.3,1,0,0,1,1,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,143.0,1,38,19,7,9,129.5,1,0,0,1,0,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,6,141.0,1,37,1,9,4,145.0,0,0,0,1,0,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,Graduate +1,17,1,9238,1,1,160.0,1,19,37,6,6,144.3,0,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,2,9238,1,1,133.1,1,19,19,4,5,120.6,1,0,0,1,0,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,3,116.5,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,127.0,1,1,1,3,4,130.2,1,0,0,1,1,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9254,1,1,131.0,1,38,36,9,9,124.0,1,0,0,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,5,9254,1,1,120.0,1,37,37,9,7,127.0,1,0,0,1,0,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,135.0,1,34,34,0,0,134.1,1,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9254,1,1,133.1,1,37,37,9,6,121.5,0,0,0,1,1,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,144.0,1,38,38,5,7,128.0,1,0,0,1,0,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,132.0,1,1,19,6,6,124.7,1,0,0,1,1,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,Graduate +1,17,2,9991,0,1,116.0,1,37,19,9,4,118.5,0,0,0,1,1,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,133.1,1,1,1,9,1,103.0,1,0,0,1,0,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,16,5,9085,1,1,134.0,1,19,37,8,8,123.9,1,0,0,1,1,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9773,1,1,114.0,1,37,38,9,5,107.4,1,0,0,0,1,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,38,37,5,7,120.0,1,0,0,1,0,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,135.0,1,1,38,4,6,122.1,0,1,1,0,1,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,1,150.0,1,37,37,7,5,143.0,0,0,0,1,0,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,Graduate +1,44,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,Graduate +4,39,1,9238,1,19,133.1,1,37,37,9,10,103.5,0,0,0,0,0,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,126.0,1,19,38,9,9,132.0,1,0,0,1,0,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,125.0,1,1,1,7,3,143.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9147,1,1,120.0,1,37,1,9,1,122.7,0,0,0,0,0,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,7,1,8014,0,3,124.4,1,37,34,0,0,130.0,0,0,0,1,0,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,Graduate +1,18,1,9085,1,1,106.0,1,1,19,3,5,104.6,0,0,0,0,1,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,Enrolled +1,44,1,9119,1,39,160.0,1,3,38,2,3,160.0,0,0,1,0,1,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,148.0,1,3,19,2,5,130.0,0,0,0,1,0,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,Enrolled +1,1,1,9130,1,1,133.0,1,1,37,9,9,123.2,1,0,0,1,0,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9500,1,1,130.0,1,19,1,9,4,128.8,1,0,0,1,0,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,149.0,1,19,1,9,9,137.8,1,0,0,1,1,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,Graduate +4,43,1,9670,1,1,150.0,1,37,37,9,6,110.0,0,0,0,1,0,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,Graduate +2,39,1,9119,1,1,110.0,1,19,19,0,5,137.0,0,0,1,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9556,1,1,122.0,1,19,19,3,10,113.3,1,0,0,1,0,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,140.0,1,1,19,4,5,127.5,0,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,128.0,1,37,37,5,5,124.5,1,0,0,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,39,150.0,6,5,4,1,1,150.0,0,0,0,1,0,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,131.0,1,38,37,7,7,127.2,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,130.0,1,37,37,9,6,126.5,1,0,0,1,0,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,116.0,1,19,37,90,5,116.7,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,Dropout +1,17,3,9853,1,1,140.0,1,38,38,5,7,126.7,1,0,0,1,0,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,4,9238,1,1,129.0,1,37,37,9,8,117.1,1,0,0,1,1,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,144.0,1,19,19,9,9,130.5,1,0,0,1,0,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,124.0,1,19,1,7,10,116.0,1,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,122.0,1,1,19,4,4,127.3,1,0,1,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,12,12,4,1,155.3,1,1,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +2,15,1,9773,1,1,133.1,41,37,37,9,6,100.0,0,0,0,1,0,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,138.0,41,1,1,9,9,126.5,1,0,0,1,0,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,Graduate +1,18,6,9500,1,1,142.0,1,38,37,9,5,128.0,1,0,0,0,0,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,3,1,2,3,140.0,1,0,0,1,0,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,Enrolled +1,42,1,9991,0,1,150.0,1,19,19,5,5,113.7,0,0,0,1,1,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,135.0,1,1,19,5,5,130.1,1,0,0,1,0,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9254,1,1,120.0,1,19,1,9,8,117.2,0,0,0,1,1,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,130.0,1,19,19,9,7,119.5,1,0,0,1,1,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,133.0,1,1,1,4,5,136.2,1,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,15,1,9147,1,1,133.1,21,1,3,192,3,100.0,0,0,1,1,1,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9670,1,1,112.0,1,37,1,7,0,110.6,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9238,1,1,117.0,1,19,19,9,9,117.0,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9991,0,1,140.0,1,1,37,9,8,154.5,0,0,0,1,0,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,97.0,1,0,0,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,119.0,1,37,37,5,4,118.0,1,0,0,1,1,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,112.0,1,19,38,5,7,107.1,1,0,0,1,0,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +2,18,2,8014,0,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,144.0,1,37,37,9,6,129.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,120.0,100,1,1,4,7,119.5,0,0,1,1,0,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,136.0,1,19,38,5,8,130.3,1,0,0,1,0,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,7,9,121.3,1,0,0,1,0,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,135.0,1,1,4,5,3,124.9,0,0,0,1,0,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,4,9670,1,1,128.0,1,38,38,3,7,121.0,1,0,0,1,0,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,15,1,9556,1,1,114.0,26,3,19,122,144,114.0,0,0,0,1,0,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9238,1,1,125.0,1,19,19,3,3,118.0,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,118.0,1,37,37,7,7,114.2,0,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,Enrolled +1,17,1,9147,1,1,115.0,1,19,37,5,7,112.9,1,0,0,0,1,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,120.0,1,19,37,9,9,118.3,0,0,1,0,1,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9119,1,10,133.1,1,34,37,0,0,128.8,1,0,0,1,1,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,115.0,1,19,38,5,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,137.0,1,37,37,9,9,132.8,1,0,0,1,0,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9003,1,1,148.0,1,19,37,9,9,131.6,1,0,0,1,1,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9773,1,1,161.0,1,1,19,4,7,148.4,0,0,0,1,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,43,1,9991,0,1,133.1,1,37,37,9,7,113.5,0,0,0,1,0,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,132.0,1,1,1,9,9,133.8,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9254,1,1,125.0,1,37,37,9,9,122.9,0,0,0,1,1,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,123.0,1,3,1,9,3,121.3,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,Enrolled +1,17,1,9991,0,1,154.0,1,38,38,4,5,134.1,0,0,0,1,0,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,Enrolled +1,44,1,9130,1,39,140.0,1,19,19,5,5,140.0,1,0,1,0,0,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,Enrolled +1,53,1,9085,1,42,170.0,1,1,19,4,7,170.0,0,0,0,1,0,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,Graduate +1,17,5,9147,1,1,131.0,1,19,38,3,10,119.8,1,0,0,1,0,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,141.0,1,19,19,9,9,126.0,1,0,0,1,0,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,Graduate +1,1,3,9500,1,1,137.0,1,19,19,5,4,131.5,1,0,0,1,0,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,118.0,1,19,1,9,3,113.5,1,0,1,1,0,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,100.0,1,37,37,99,99,100.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9130,1,1,120.0,6,1,3,9,2,120.0,0,0,1,1,0,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,127.0,1,19,19,5,5,129.8,1,0,0,1,0,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,134.0,1,37,37,9,9,129.8,1,0,0,1,0,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,121.0,1,37,37,5,9,116.5,1,0,0,1,0,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9070,1,1,117.0,1,19,37,5,5,131.0,1,0,1,0,1,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,125.0,1,1,38,9,7,119.8,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,5,9500,1,1,140.0,1,1,1,4,3,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,1,5,9254,1,1,101.0,1,3,19,3,9,98.9,1,0,0,1,1,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,130.0,1,37,38,7,9,117.8,0,0,1,1,0,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,128.0,1,34,19,3,0,141.0,1,0,0,0,0,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,150.0,1,38,37,9,9,130.8,0,0,0,1,1,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,125.0,1,1,19,4,7,116.6,0,0,0,1,1,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,Graduate +1,43,1,9670,1,1,130.0,1,34,34,0,0,114.8,0,0,0,1,1,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,Graduate +2,42,1,9003,1,1,120.0,1,3,1,2,2,113.3,0,0,0,1,1,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +4,39,1,9991,0,1,133.1,1,37,37,5,5,138.7,0,0,0,1,0,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,Dropout +1,39,1,9238,1,1,140.0,1,34,34,0,0,114.0,1,0,0,0,0,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9991,0,1,133.1,1,37,19,3,10,136.1,0,0,0,1,1,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9070,1,1,110.0,1,37,37,7,7,110.2,0,0,0,1,1,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,150.0,1,4,5,4,2,150.0,0,0,0,1,1,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,Enrolled +1,1,2,9119,1,1,149.0,1,38,38,5,5,141.0,0,0,0,1,1,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,Enrolled +1,42,1,9085,1,39,150.0,1,1,1,4,7,150.0,1,0,0,1,0,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,1,38,4,9,131.7,1,0,0,1,0,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,42,1,9853,1,1,120.0,1,1,37,5,5,113.9,1,0,0,1,0,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9085,1,1,130.0,1,37,19,9,7,130.0,1,0,0,1,0,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,Enrolled +1,17,4,9500,1,1,133.0,1,38,37,5,7,126.4,1,0,0,1,1,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,147.0,1,3,1,2,3,131.6,0,0,0,1,0,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,12,133.1,1,37,37,9,9,121.5,0,0,0,1,1,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,1,1,9991,0,1,150.0,1,37,37,9,9,131.8,0,0,0,0,0,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,43,4,8014,0,1,116.0,1,34,34,0,0,116.2,0,0,0,1,1,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,7,140.0,0,0,0,1,1,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9773,1,1,136.0,1,3,1,2,3,132.5,1,0,0,1,0,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,19,110.0,1,37,38,5,5,151.0,0,0,1,0,1,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,19,19,5,5,113.2,1,0,1,1,0,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,137.0,1,3,19,2,9,122.3,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +4,39,1,9254,1,1,120.0,1,37,19,9,9,131.0,1,0,0,1,1,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9556,1,1,123.0,1,19,19,4,9,113.8,1,0,0,1,0,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,150.0,1,3,37,4,7,139.5,0,0,0,1,1,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,145.0,1,38,37,3,9,138.4,1,0,0,0,0,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,39,1,8014,0,1,140.0,1,37,37,9,7,122.0,1,0,1,0,1,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,3,9991,0,1,120.0,1,37,37,9,9,128.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,6,9500,1,1,126.0,1,12,37,5,9,121.8,1,0,0,1,0,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,Dropout +2,39,1,9991,0,1,130.0,1,37,37,9,9,140.0,1,0,0,1,1,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,130.0,1,37,19,9,8,130.8,0,0,0,1,1,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,Enrolled +1,1,3,9070,1,1,125.0,1,19,38,9,9,125.4,1,0,0,1,0,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,132.0,1,38,38,4,9,119.1,0,0,0,1,0,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,Graduate +4,7,1,9147,1,3,130.0,1,19,1,5,5,130.0,0,0,0,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,130.0,1,19,19,7,7,121.6,1,0,0,1,0,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9773,1,1,126.0,1,37,38,5,5,129.5,1,0,1,0,0,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,133.0,1,38,38,5,5,123.2,0,0,0,1,0,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,140.0,1,37,37,9,9,121.0,0,0,0,1,0,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,3,9500,1,1,131.0,1,37,37,9,9,118.0,1,0,0,1,0,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,120.0,1,38,19,4,8,115.1,0,0,0,1,0,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,Enrolled +1,17,5,9773,1,1,111.0,1,19,12,7,3,115.9,1,0,0,1,0,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,135.0,1,1,19,9,7,123.5,1,0,0,1,0,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,37,4,9,130.0,1,0,0,1,0,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,Enrolled +1,44,1,9119,1,39,130.0,1,3,19,3,4,130.0,0,0,0,1,1,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,Enrolled +1,44,1,9147,1,39,130.0,22,2,37,2,8,130.0,0,0,1,0,1,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,119.0,1,37,37,9,6,119.0,0,0,1,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9500,1,1,142.0,1,38,37,9,8,130.8,1,0,0,1,0,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,136.0,1,38,1,9,4,129.7,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,140.0,1,19,19,4,4,140.0,1,0,0,1,1,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,19,133.1,1,1,19,4,10,114.0,0,0,0,1,1,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +1,17,5,9670,1,1,125.0,1,19,30,7,7,118.4,1,0,0,1,0,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,135.0,1,19,19,9,10,122.9,1,0,0,1,0,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,100.0,1,37,37,9,9,108.0,1,0,0,1,1,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,127.0,1,37,37,9,9,119.3,1,1,0,1,1,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,133.0,1,38,19,9,10,125.0,1,0,0,1,0,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,116.0,1,3,3,3,3,110.1,1,0,0,1,1,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,133.1,1,1,1,5,8,123.0,1,0,0,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,144.0,1,37,37,9,3,150.5,0,0,0,1,0,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,3,1,2,4,130.2,0,0,0,1,1,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,116.0,1,38,37,9,6,109.7,1,0,0,1,0,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,Graduate +1,18,3,9853,1,1,128.0,1,38,37,5,9,116.8,1,0,0,0,1,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,150.0,1,37,37,4,9,132.1,1,0,1,1,0,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,160.0,1,1,19,4,6,155.7,1,0,0,1,0,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,130.0,1,19,1,9,9,131.9,0,0,0,1,0,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,126.0,1,3,3,2,2,121.1,0,0,1,1,0,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,38,38,7,7,147.0,0,0,0,1,0,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,137.0,1,37,37,9,9,126.2,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,38,37,5,5,137.1,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,143.0,1,2,37,1,1,133.2,1,0,0,1,0,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,Enrolled +1,17,5,9070,1,1,122.0,1,19,38,5,7,119.6,0,0,1,0,0,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,137.0,1,19,38,9,9,127.2,1,0,0,1,0,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,110.0,1,1,1,4,4,125.9,0,0,0,1,1,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,130.0,1,1,38,5,9,118.1,0,0,1,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9853,1,1,130.0,1,37,19,9,5,102.5,0,0,0,1,0,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.0,1,19,1,9,1,122.2,0,0,0,1,0,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,39,140.0,1,3,3,2,2,140.0,1,0,0,1,0,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,134.0,1,37,38,9,9,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,1,1,37,4,7,110.0,0,0,0,1,1,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,Dropout +1,15,1,9085,1,1,133.1,41,3,3,4,2,101.3,0,0,0,1,0,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,113.0,1,1,1,5,4,106.7,1,0,1,1,0,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,Dropout +2,39,1,9991,0,19,133.1,1,37,37,5,5,111.9,1,0,0,1,1,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9853,1,1,134.0,1,19,38,4,8,122.1,1,0,0,1,0,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9853,1,1,133.0,1,19,37,4,9,130.2,1,0,0,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,127.0,1,19,19,5,5,160.0,0,0,0,1,1,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,Graduate +1,7,1,9500,1,3,130.0,1,37,38,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,140.0,1,19,38,7,7,136.5,1,0,0,1,0,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,Graduate +2,39,1,9773,1,19,133.1,1,37,37,9,6,110.0,0,0,0,0,0,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,Dropout +2,39,1,8014,0,1,120.0,1,34,34,99,99,101.8,0,0,0,0,0,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,135.0,1,1,1,4,7,129.8,1,0,0,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,131.0,1,37,38,5,5,128.9,0,0,0,1,0,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,Graduate +1,1,4,9070,1,1,139.0,1,3,19,1,5,138.3,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9500,1,1,122.0,1,1,1,3,7,114.3,1,0,0,1,1,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,150.0,1,37,37,9,7,136.5,1,0,0,1,0,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,3,1,2,8,121.4,0,0,0,1,1,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,117.0,1,19,19,194,193,117.4,1,0,0,1,0,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,Enrolled +2,39,1,9085,1,1,133.1,1,36,36,99,5,128.2,0,0,0,0,0,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,121.0,1,3,1,2,3,114.0,0,0,0,1,1,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,Enrolled +1,51,1,9853,1,1,139.0,1,1,1,4,10,134.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9070,1,1,137.0,1,1,1,3,1,141.2,1,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,133.1,1,37,37,6,3,140.0,0,0,1,1,1,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,1,9147,1,1,126.0,1,37,37,4,7,116.9,0,0,0,1,1,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,44,1,9130,1,39,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,1,9991,0,1,130.0,1,37,37,9,9,128.2,0,0,0,1,0,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,131.0,1,19,9,5,3,118.4,0,0,0,1,0,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,138.0,1,19,19,3,3,131.0,1,0,0,1,0,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,1,130.0,1,37,12,9,8,129.4,1,0,1,0,1,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,9991,0,1,134.0,1,37,37,9,9,113.7,0,0,0,1,0,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9853,1,1,117.0,1,38,38,9,7,114.6,1,0,0,1,0,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,145.0,1,3,3,4,4,153.1,1,0,0,1,0,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9085,1,1,130.0,1,19,38,4,9,130.0,1,0,0,0,0,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9119,1,1,146.0,1,37,37,9,9,148.5,1,0,0,1,1,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,136.0,1,1,1,4,4,124.1,0,0,0,1,0,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,100.0,1,37,38,9,4,140.0,0,0,0,1,1,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,Enrolled +1,44,1,9003,1,39,180.0,1,1,3,4,2,180.0,0,0,0,1,0,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,Graduate +1,15,1,9773,1,1,120.0,26,19,19,4,5,120.0,1,0,0,1,0,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,141.0,1,4,19,4,10,100.0,0,0,0,1,1,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,1,150.0,1,29,10,6,6,150.0,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,5,9254,1,1,122.0,1,1,37,9,7,119.6,1,0,0,1,0,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,128.0,1,19,38,9,7,124.2,1,0,0,1,1,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9130,1,1,172.0,1,19,19,9,9,163.3,1,0,0,1,0,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,129.0,1,38,37,5,5,142.0,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,100.0,1,1,3,9,10,120.0,0,0,1,0,1,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,Graduate +1,1,3,9238,1,1,135.0,1,1,12,9,10,121.0,1,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,136.0,1,2,2,3,3,120.0,1,0,0,1,1,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,6,9147,1,1,143.0,1,38,37,9,9,128.7,1,0,0,1,1,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9500,1,1,126.0,1,37,37,7,7,126.2,1,0,0,1,0,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,135.0,1,19,19,4,3,135.0,1,0,0,1,1,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,Enrolled +1,1,2,9254,1,1,132.0,1,1,19,9,9,129.9,1,0,0,1,0,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,120.0,1,34,34,0,0,104.0,0,0,0,1,0,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,9,133.1,1,37,37,8,10,100.0,1,0,0,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,43,1,9147,1,1,130.0,1,19,37,7,10,138.0,0,0,0,1,0,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,Graduate +1,17,2,9119,1,1,120.0,1,1,19,9,8,117.2,0,0,0,1,1,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,133.1,1,1,12,4,5,116.5,0,0,0,1,1,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,105.0,1,19,19,6,6,106.1,1,0,0,1,0,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,118.0,1,1,19,4,8,118.7,0,0,0,1,1,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,6,9500,1,1,140.0,1,3,19,3,8,129.0,1,0,0,1,0,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,168.0,1,19,19,4,4,171.2,0,0,0,1,1,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,133.0,1,19,9,0,0,121.5,1,0,0,1,0,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,177.0,1,1,38,3,9,162.3,0,0,0,1,0,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,130.0,1,38,38,2,9,124.8,0,0,0,1,0,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,136.0,1,38,1,5,6,133.9,1,0,0,1,0,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,154.0,1,1,1,5,3,144.9,0,0,0,1,1,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,Graduate +1,44,1,9119,1,39,150.0,1,19,37,9,9,150.0,1,0,1,1,1,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,Dropout +1,1,4,9254,1,1,132.0,1,12,19,9,9,124.7,1,0,0,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,33,1,1,100.0,41,38,37,9,8,100.0,0,0,1,0,1,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,120.0,1,4,1,2,9,113.4,0,0,0,1,0,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,134.0,1,1,19,9,9,136.1,1,0,0,1,0,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9500,1,1,150.0,1,1,19,5,3,140.0,0,1,0,1,0,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,129.0,1,37,37,9,9,128.8,1,0,0,1,0,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +2,39,1,9500,1,1,100.0,1,37,38,4,4,130.0,0,0,0,1,1,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,Enrolled +1,1,1,9773,1,1,140.0,1,19,37,9,6,135.8,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,40,150.0,1,19,19,9,5,150.0,0,0,1,0,0,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,148.0,1,1,37,4,8,132.0,1,0,0,1,0,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,Graduate +1,7,1,9119,1,40,140.0,1,3,1,2,5,140.0,0,0,0,1,1,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,163.0,1,19,1,9,7,143.1,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,3,9070,1,1,164.0,1,1,1,5,3,161.2,1,0,0,1,0,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,Graduate +1,1,6,9773,1,1,141.0,1,30,37,7,7,128.4,1,0,1,0,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,Dropout +1,43,2,9147,1,1,126.0,1,1,19,3,3,100.0,1,0,0,1,1,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,141.0,1,19,19,5,10,135.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,4,9670,1,1,117.0,1,3,3,4,4,113.2,0,0,0,1,1,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +2,43,1,9991,0,3,140.0,1,37,19,9,4,140.0,0,0,1,1,0,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,134.3,0,0,0,1,1,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,137.0,1,38,19,9,7,125.1,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,6,134.0,0,0,0,1,0,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,123.0,1,37,37,7,7,119.7,0,0,0,1,1,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9147,1,1,120.0,1,37,37,9,9,104.7,1,0,0,1,1,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,137.0,62,1,1,9,9,129.3,0,0,0,1,0,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,8014,0,1,122.0,1,37,19,9,9,123.8,0,0,0,1,0,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,Graduate +2,39,2,8014,0,1,100.0,1,34,34,0,0,100.0,1,0,0,1,0,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,Graduate +2,1,1,9991,0,2,120.0,1,37,37,6,3,129.2,0,0,0,1,0,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,150.0,1,3,19,2,6,150.0,0,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9991,0,1,123.0,1,1,3,4,2,113.2,0,0,0,0,1,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,Dropout +1,1,3,9773,1,1,130.0,1,1,37,4,5,120.9,1,0,1,1,0,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,146.0,1,19,3,4,9,127.0,0,0,0,1,1,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,160.0,1,19,38,9,9,160.0,1,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9085,1,39,150.0,1,38,37,6,6,150.0,1,0,0,1,0,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,136.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,150.0,1,37,19,9,4,135.6,0,0,0,1,0,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,6,171,1,1,134.0,1,19,37,5,5,126.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +4,39,1,9773,1,38,133.1,1,19,19,7,9,133.0,0,0,0,1,0,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,Enrolled +1,17,2,9119,1,1,120.0,1,10,12,9,9,120.4,1,0,0,1,1,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,4,9254,1,1,113.0,1,38,19,7,7,107.4,1,0,0,1,0,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,137.0,1,1,19,4,5,136.3,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,142.0,1,37,37,9,7,132.7,1,0,0,1,0,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,Graduate +1,18,5,9085,1,1,121.0,1,5,3,2,3,111.9,1,0,0,1,0,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,9,133.1,1,34,36,0,90,107.5,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,19,133.1,1,19,37,6,8,149.5,0,0,0,1,1,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9147,1,1,120.0,1,1,37,4,9,113.4,1,0,0,1,1,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,130.0,1,37,38,9,5,130.5,1,0,0,1,0,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,153.0,1,1,19,9,10,147.8,0,0,0,1,0,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,159.0,1,3,1,4,4,162.2,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,122.0,1,37,37,5,6,114.3,0,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,2,9556,1,19,133.1,1,37,37,3,7,117.8,0,0,0,1,0,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,132.0,1,38,1,9,9,124.3,1,0,0,1,0,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,141.0,1,19,19,9,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,Graduate +1,17,1,9500,1,1,152.0,1,19,19,4,9,132.5,0,0,0,1,1,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,Graduate +1,17,1,9991,0,40,127.0,1,37,37,6,6,124.9,0,0,0,1,0,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,133.1,1,1,19,4,6,106.0,1,0,0,1,0,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,19,37,4,7,150.0,1,0,0,1,0,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9254,1,1,125.0,1,1,1,191,193,114.5,0,0,0,1,1,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,134.0,1,19,19,4,7,131.0,1,0,0,1,1,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,134.0,1,19,19,9,9,125.8,1,0,0,1,0,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,Graduate +1,17,1,171,1,1,125.0,1,37,37,7,9,134.1,1,0,0,1,1,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,Dropout +1,51,1,9254,1,1,120.0,1,38,38,9,9,118.0,0,0,0,1,0,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,155.0,1,1,1,4,3,140.5,1,0,0,1,0,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,125.0,1,1,1,4,90,125.4,1,0,0,1,1,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,1,5,5,126.3,0,0,0,1,1,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,Graduate +1,39,1,9147,1,1,140.0,1,37,3,9,2,135.1,0,0,0,1,1,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,171,1,1,122.0,1,19,12,5,9,127.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,2,9670,1,1,150.0,1,34,34,0,0,107.0,1,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,3,130.0,1,19,19,3,9,130.0,0,0,0,0,1,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,Dropout +1,39,1,33,1,1,133.1,1,19,37,9,9,96.1,0,0,0,1,1,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,Dropout +2,42,1,9500,1,2,130.0,1,37,37,9,9,130.0,0,0,0,1,0,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,Graduate +1,18,1,9238,1,1,137.0,1,19,38,5,8,137.4,1,0,0,1,0,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9254,1,1,140.0,1,19,1,9,8,140.9,1,0,0,1,0,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,132.0,1,1,2,9,3,128.2,1,0,0,1,0,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9085,1,1,126.0,1,1,3,5,5,123.9,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,19,133.1,1,37,37,9,7,106.5,0,0,0,1,0,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,132.0,1,37,19,7,7,132.4,1,0,0,1,0,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,139.0,1,37,38,9,9,126.1,0,0,0,1,0,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,136.0,1,19,38,9,9,123.0,1,0,0,1,0,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,1,140.0,1,0,0,1,1,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,123.0,1,19,19,9,8,134.0,0,0,0,1,0,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,130.0,1,38,19,9,4,118.4,0,0,1,1,0,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,126.0,1,1,1,9,9,116.2,0,0,1,0,1,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,19,1,7,10,105.0,0,0,0,1,1,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,Dropout +1,17,1,9119,1,1,130.0,1,19,19,7,9,121.3,1,0,0,1,1,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,Dropout +1,43,1,9500,1,19,133.1,1,34,34,0,0,110.0,1,0,0,1,1,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,Dropout +1,1,3,9070,1,1,139.0,1,1,38,4,7,142.2,1,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,142.0,1,38,1,5,4,136.6,0,0,0,1,0,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,Graduate +1,17,2,9670,1,1,128.0,1,37,38,5,8,121.7,0,0,0,1,1,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,140.0,1,1,3,9,4,140.0,0,0,1,0,0,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,125.0,1,19,19,9,10,122.0,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,8014,0,1,130.0,1,37,37,9,8,103.5,0,0,0,1,0,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,3,9085,1,1,117.0,1,19,38,5,7,111.1,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,42,1,9085,1,39,140.0,1,19,3,9,1,159.9,1,0,0,1,0,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9254,1,1,112.0,1,37,37,6,6,106.1,1,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9070,1,1,117.0,1,5,1,2,10,120.0,1,0,0,1,0,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,Enrolled +1,7,1,9556,1,2,130.0,1,37,37,9,9,130.0,1,0,0,1,0,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,40,140.0,1,1,19,9,9,139.0,0,0,0,1,0,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,10,130.0,0,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,9070,1,1,135.0,1,3,1,3,5,121.8,0,0,0,1,0,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,135.0,1,19,3,9,4,121.5,1,0,0,1,0,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,136.0,1,19,38,4,8,125.5,1,0,0,1,0,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,37,4,8,132.4,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,142.0,1,34,38,4,7,127.3,0,0,0,1,0,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,15,1,9147,1,1,130.0,26,1,1,2,3,130.0,0,0,0,1,0,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,17,2,8014,0,1,133.0,1,19,1,5,5,119.7,1,0,0,1,0,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,6,133.1,1,1,1,90,3,107.0,1,0,0,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,130.0,1,1,1,4,5,123.8,0,0,0,1,0,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9670,1,1,130.0,1,38,37,5,5,123.4,1,0,0,1,0,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,130.0,1,37,36,4,90,127.6,0,0,0,1,1,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +2,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,Enrolled +1,1,5,9070,1,1,122.0,1,37,37,9,9,124.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,3,120.0,1,37,37,9,9,141.0,0,0,0,1,0,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,Dropout +1,43,1,33,1,1,134.0,1,37,37,1,1,100.0,1,0,0,1,1,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9773,1,1,125.0,1,19,37,9,5,122.2,0,0,0,0,0,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,113.4,0,0,0,1,0,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,142.0,1,19,39,5,4,141.7,0,0,0,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,137.0,1,1,38,5,8,125.8,0,0,0,0,0,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,141.0,1,1,37,4,3,126.8,1,0,0,1,0,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Graduate +1,17,4,9500,1,1,133.0,1,4,4,4,4,130.7,1,0,0,1,0,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,Graduate +1,1,2,9500,1,1,119.0,1,1,1,4,4,115.2,1,0,0,1,0,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,128.0,1,1,1,4,10,118.9,1,0,0,1,0,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,130.0,1,37,38,7,8,119.3,1,0,0,1,0,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,148.0,1,3,1,4,5,132.8,0,0,0,1,0,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,143.0,1,37,19,4,4,123.3,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9147,1,1,130.0,1,34,34,99,99,109.8,1,0,0,0,1,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9085,1,2,140.0,1,38,38,9,10,150.0,0,0,0,1,1,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9670,1,42,110.0,1,1,19,9,9,114.2,0,0,0,1,1,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,Graduate +1,53,1,9147,1,42,140.0,1,3,4,2,1,140.2,0,0,0,1,0,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,145.0,1,19,38,9,7,136.3,1,0,0,1,0,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,38,37,9,9,154.4,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,127.0,1,38,38,9,6,122.8,0,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,120.2,1,0,0,1,1,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,124.0,1,3,1,2,5,121.6,0,0,0,1,0,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Enrolled +1,17,5,9853,1,1,132.0,1,37,38,5,6,119.1,1,0,0,1,0,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,Graduate +1,17,6,9670,1,1,110.0,1,1,19,4,10,111.3,0,0,0,1,1,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,120.0,1,38,37,9,9,114.8,1,1,0,1,0,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,140.0,1,19,19,9,3,130.0,0,0,0,1,1,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9254,1,1,120.0,1,37,37,9,9,115.1,1,0,0,0,1,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,142.0,1,1,37,5,7,128.0,0,0,0,1,0,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,168.0,1,37,1,9,4,133.4,1,0,0,1,0,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,Graduate +1,43,4,9085,1,1,133.1,1,34,34,99,99,125.2,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9147,1,1,123.0,1,1,1,9,7,117.4,1,0,0,1,0,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,Graduate +1,1,6,9119,1,1,135.0,1,2,1,3,5,123.5,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,Enrolled +1,17,2,9254,1,1,118.0,22,19,37,9,9,110.3,1,0,0,0,0,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,126.0,1,1,19,4,4,116.9,0,0,0,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,117.0,1,1,38,3,9,109.3,0,0,1,0,0,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,133.1,1,37,37,9,8,113.0,0,0,0,1,0,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,Graduate +2,42,1,9991,0,6,123.0,1,37,37,9,9,123.0,0,0,0,1,1,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9003,1,1,100.0,1,37,37,9,5,110.0,0,0,0,1,0,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,127.0,1,37,38,9,5,131.2,1,0,0,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,110.0,1,37,37,9,7,112.5,1,0,0,1,0,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,126.0,1,19,37,7,5,119.4,0,0,0,1,0,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,121.0,1,1,1,4,3,120.5,1,0,0,1,0,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,134.0,1,1,1,3,3,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,3,9500,1,1,150.0,1,19,38,1,1,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,5,9119,1,1,124.0,11,4,12,2,9,119.5,1,0,0,1,1,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,117.0,1,19,1,4,7,112.1,0,0,0,1,0,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,Enrolled +1,1,5,9500,1,1,132.0,1,37,37,7,7,120.3,1,0,0,1,0,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,1,110.0,1,37,37,90,5,150.0,1,0,0,1,1,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9773,1,1,130.0,1,38,37,5,3,122.3,1,0,1,0,0,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9556,1,1,118.0,1,19,38,9,9,116.3,1,0,0,1,0,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,120.0,1,3,3,3,3,111.6,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,131.0,1,37,19,9,9,134.5,1,0,0,1,1,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Enrolled +1,17,2,9556,1,1,133.1,1,37,38,9,8,106.0,1,0,0,1,0,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,2,110.0,1,37,37,9,9,112.9,0,0,0,1,0,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,2,9773,1,1,126.0,1,19,38,9,8,118.7,1,0,0,1,0,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,140.0,1,1,1,3,3,127.6,1,0,0,1,0,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,163.0,1,19,1,5,10,146.6,1,0,1,1,0,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,39,151.0,1,19,37,4,7,151.0,0,0,1,1,0,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,165.0,1,19,37,5,5,142.3,0,0,0,1,0,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9773,1,19,133.1,1,19,1,7,9,115.0,1,0,1,0,1,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,Dropout +1,1,2,9556,1,1,130.0,1,1,38,3,8,119.5,1,0,0,1,0,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,Graduate +1,17,3,171,1,1,125.0,1,3,39,2,5,117.0,1,1,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9147,1,1,133.0,1,19,1,5,10,121.8,0,0,0,1,1,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9119,1,1,131.0,1,1,3,9,10,123.7,1,0,0,1,1,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,148.0,1,37,38,9,8,133.0,1,0,0,1,0,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9254,1,1,120.0,1,3,19,3,9,114.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9773,1,1,114.0,1,1,1,9,9,111.6,1,0,0,1,0,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,115.0,1,38,1,9,8,118.5,0,0,0,1,1,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,2,5,127.0,0,0,0,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,117.0,1,1,1,4,7,109.3,1,0,0,1,0,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,9,9,138.2,0,0,1,0,0,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,125.0,1,1,1,3,3,114.5,0,0,0,1,1,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,44,1,9147,1,39,130.0,1,19,1,9,3,130.0,0,0,0,1,0,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,145.0,1,38,19,4,9,127.9,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,128.0,1,37,37,9,8,124.3,1,0,0,1,0,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,Graduate +1,18,3,9070,1,1,138.0,1,38,37,9,7,125.1,1,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,5,9119,1,1,131.0,1,19,37,9,7,123.3,1,0,0,1,1,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,130.0,1,37,19,9,8,106.2,1,0,0,1,0,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,131.0,1,19,38,4,5,132.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9003,1,1,120.0,1,37,37,5,9,120.0,1,0,0,1,1,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,132.0,1,4,39,2,2,136.6,1,0,0,1,0,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,Enrolled +1,7,1,9500,1,40,170.0,1,1,1,9,4,170.0,0,0,0,1,0,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,Graduate +1,16,1,9003,1,1,147.0,1,1,37,4,9,140.7,1,0,1,1,0,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,125.0,1,1,1,4,8,115.6,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,150.0,1,37,37,9,6,138.5,0,0,0,1,0,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,2,9991,0,1,143.0,1,5,1,4,4,131.5,0,0,0,1,1,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,9556,1,1,133.1,6,3,3,4,4,169.2,0,0,1,0,0,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,2,9556,1,1,133.1,1,1,1,9,10,100.5,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,120.0,1,19,38,9,7,117.9,1,0,0,1,0,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,146.0,1,1,38,9,9,135.5,1,0,1,1,0,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,Enrolled +1,1,3,9254,1,1,122.0,1,19,38,3,10,114.3,1,0,0,1,0,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,9130,1,1,130.0,1,2,3,9,1,117.6,0,0,0,1,1,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,Enrolled +4,43,4,9991,0,12,133.1,1,37,37,9,9,153.0,0,0,0,0,0,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,2,9500,1,1,135.0,1,38,37,9,5,125.3,1,0,0,1,0,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,38,37,9,9,133.0,0,0,0,1,0,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,129.0,1,38,37,4,6,128.0,0,0,0,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,128.0,1,2,19,2,4,123.3,1,0,0,1,0,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,130.0,1,19,3,4,2,159.0,0,0,0,1,0,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,Graduate +2,7,1,8014,0,3,130.0,1,19,38,3,7,130.0,0,0,0,1,0,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,116.0,1,19,37,3,3,109.0,1,0,0,1,0,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,123.0,1,1,1,3,9,116.7,1,0,0,1,0,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,144.0,1,19,19,4,4,130.7,1,0,0,1,0,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,42,1,9500,1,1,100.0,1,19,37,5,7,134.3,1,0,0,1,0,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,143.0,1,1,19,4,4,129.9,0,0,0,1,0,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,19,133.1,1,19,37,7,9,137.2,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9853,1,1,123.0,1,19,19,9,7,117.4,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,144.0,1,19,19,5,5,130.3,1,0,0,1,0,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,137.0,1,1,19,4,7,126.7,1,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,4,9773,1,1,124.0,1,3,12,2,9,137.0,1,0,0,1,1,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,135.0,1,37,37,9,8,123.0,1,0,0,1,0,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,123.0,1,38,37,9,7,120.6,1,0,0,0,0,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,Dropout +2,2,1,9147,1,2,120.0,1,37,37,9,9,120.0,0,0,0,0,1,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,103.0,1,1,3,2,2,100.6,1,1,0,1,0,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,126.0,1,3,1,2,8,123.9,1,0,0,1,0,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,Enrolled +1,17,4,9500,1,1,136.0,1,3,3,2,2,132.5,1,0,0,1,0,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,114.0,1,3,29,3,5,111.9,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,125.0,1,19,1,9,9,130.6,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,147.0,1,37,38,9,5,134.8,1,0,0,1,0,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,131.0,1,1,19,9,9,130.3,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,118.0,1,3,1,2,5,110.0,1,0,0,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,130.0,1,19,19,4,10,116.8,0,0,0,1,0,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,Graduate +1,43,1,8014,0,6,133.1,1,34,34,0,0,100.0,0,0,1,1,0,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9670,1,12,170.0,1,1,37,3,5,110.0,0,0,0,1,1,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,Graduate +2,1,1,9991,0,3,160.0,1,1,3,4,9,137.3,0,0,0,1,0,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,108.0,1,19,1,5,5,107.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,121.0,1,3,3,2,2,112.3,1,0,1,0,0,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,Dropout +1,1,2,9773,1,1,138.0,1,19,1,9,3,133.5,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,136.0,1,38,38,9,9,121.7,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,132.0,1,38,37,9,7,122.0,1,0,0,1,0,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9003,1,1,125.0,1,3,3,2,2,100.0,0,0,0,1,1,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,137.0,1,1,1,1,5,131.8,0,0,0,1,0,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,140.0,1,37,37,9,9,148.0,1,0,0,0,1,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,127.0,1,3,1,3,7,137.2,1,0,0,1,0,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,150.0,1,37,19,9,9,150.0,0,0,0,1,1,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,Graduate +1,43,4,171,1,1,136.0,1,37,37,9,9,123.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,162.0,1,37,19,9,8,142.8,0,0,1,1,0,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,127.0,1,1,38,5,7,123.5,1,0,0,1,0,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,133.1,1,19,37,9,9,130.0,0,0,0,0,0,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,Graduate +1,17,2,9070,1,1,121.0,1,1,19,144,144,111.9,1,0,0,1,1,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,115.0,1,19,37,9,9,114.3,0,0,0,1,1,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,Dropout +1,10,1,9254,1,1,115.0,24,3,1,9,9,116.1,1,0,0,1,0,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,143.0,1,19,3,4,4,147.2,0,0,0,1,0,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,160.0,1,1,38,4,4,160.0,1,0,0,1,1,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,Graduate +2,1,1,9238,1,1,134.0,1,37,37,5,5,120.4,0,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,38,37,9,4,120.0,0,0,0,1,1,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Graduate +1,18,1,9119,1,1,108.0,1,1,1,4,3,105.6,1,0,0,1,1,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,137.0,1,37,37,9,9,141.0,0,0,0,1,1,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9254,1,1,113.0,1,1,2,5,3,106.7,1,0,1,1,1,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,16,1,9085,1,1,140.0,1,1,1,9,9,127.1,1,0,0,1,0,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,Graduate +1,53,1,9238,1,42,140.0,1,37,37,9,10,136.9,1,0,0,1,0,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,7,134.5,0,0,0,1,0,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,2,9773,1,1,125.0,1,19,1,4,5,122.2,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9070,1,1,134.0,1,1,19,3,3,127.7,1,0,0,0,0,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,96.0,1,38,37,6,4,96.0,1,0,0,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,Dropout +1,10,1,9085,1,1,134.0,1,37,37,5,5,134.0,1,0,0,1,0,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,143.0,1,1,3,3,3,149.0,1,0,0,1,0,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,Dropout +1,18,3,9070,1,1,142.0,1,1,37,4,7,130.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,7,1,9003,1,3,140.0,1,3,19,2,10,140.0,0,0,0,0,1,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,151.0,1,38,37,9,5,138.4,1,0,0,1,0,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,143.0,1,19,19,4,4,135.3,1,0,0,1,0,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,133.0,1,1,19,9,9,132.0,0,0,0,1,1,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,19,133.1,1,37,37,9,5,135.5,0,0,0,1,0,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9254,1,1,134.0,1,37,37,9,9,133.3,1,0,1,1,0,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,3,9085,1,1,135.0,1,3,2,4,3,121.0,1,0,0,1,0,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,140.0,1,1,1,4,4,123.5,1,0,0,1,0,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,188.0,1,3,3,2,2,178.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9238,1,1,126.0,1,30,19,0,2,121.5,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,131.0,1,3,19,5,5,127.2,1,0,0,1,0,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,Graduate +1,17,4,9853,1,1,143.0,1,37,37,9,5,127.3,1,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,111.0,1,19,38,9,9,110.7,1,0,0,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,140.0,1,19,38,9,7,125.7,1,0,0,1,1,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,6,9500,1,1,126.0,1,19,37,3,9,119.4,1,0,0,1,0,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,131.0,1,1,1,4,9,122.3,0,0,0,1,1,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,128.0,1,1,19,9,8,100.0,1,0,0,1,0,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,138.0,1,19,19,5,1,130.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,1,140.0,1,3,3,1,1,140.0,1,0,0,1,0,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,3,130.0,1,1,19,5,9,130.0,0,0,0,1,1,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,131.0,1,38,1,5,7,131.0,1,0,0,1,1,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,19,133.1,1,19,19,9,7,140.0,0,0,1,0,0,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,133.1,1,37,37,9,9,126.5,0,0,0,1,0,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9500,1,1,132.0,1,37,37,9,7,128.3,1,0,0,1,0,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,Graduate +1,16,1,171,1,1,145.0,1,3,3,3,3,155.0,1,0,0,1,0,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,Enrolled +4,1,1,9991,0,1,140.0,1,37,37,9,7,139.0,0,0,0,1,0,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9070,1,1,152.0,1,39,39,3,3,134.2,1,0,0,1,1,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,141.0,1,19,19,7,9,139.8,0,0,0,1,0,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,Graduate +1,1,4,9670,1,1,133.0,1,1,2,4,7,121.1,1,0,0,1,0,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,Graduate +1,15,1,9147,1,1,135.0,26,1,1,9,7,135.0,0,0,1,1,1,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,Enrolled +2,1,1,9991,0,1,144.0,1,19,19,9,9,151.4,0,0,0,1,0,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,18,4,9853,1,1,118.0,1,19,37,9,6,111.4,1,0,1,0,0,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9500,1,1,134.0,1,38,1,9,6,133.5,1,0,0,1,1,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,37,37,9,6,107.0,0,0,0,1,1,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,141.0,1,38,38,9,9,128.4,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,133.0,1,1,1,9,9,128.5,1,0,0,1,0,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,40,120.0,1,3,3,4,2,125.0,0,0,0,1,0,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,150.0,1,37,38,3,7,134.5,0,0,0,1,0,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,127.0,1,3,19,4,4,116.9,0,0,0,1,1,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,136.0,1,2,38,143,163,129.7,1,0,0,1,1,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,159.0,1,1,1,3,3,151.0,1,0,0,1,0,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,165.0,1,37,38,9,8,152.4,1,0,0,1,0,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,6,9500,1,1,139.0,1,1,1,4,4,124.5,1,0,0,1,0,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,134.0,1,1,1,5,3,128.4,1,0,0,1,0,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,133.0,1,2,1,3,4,136.2,1,0,0,1,0,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,120.0,1,19,1,8,7,115.1,1,0,0,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,131.0,1,1,39,5,3,122.6,1,0,0,1,0,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,8014,0,1,130.0,1,1,1,9,9,118.1,0,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,Graduate +1,39,9,9991,0,1,120.0,1,38,38,9,5,144.8,0,0,0,1,1,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9500,1,19,133.1,1,37,37,9,9,129.0,1,0,0,1,0,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,138.0,1,1,19,4,7,123.0,1,0,1,0,0,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,143.0,1,1,37,9,9,135.0,1,0,0,1,0,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,120.0,1,19,1,9,3,120.0,1,0,0,1,1,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,162.0,1,37,1,9,9,165.2,1,0,0,1,0,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,142.0,1,37,37,5,5,131.3,1,0,0,1,0,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,Graduate +1,1,3,171,1,1,125.0,1,38,37,4,9,115.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,120.0,1,38,37,5,3,110.5,0,0,0,1,0,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,Graduate +1,42,1,9773,1,6,120.0,1,34,34,0,0,122.0,1,0,0,1,0,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,162.0,1,1,38,4,5,138.6,1,0,0,1,0,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,152.0,1,1,1,4,4,141.0,1,0,0,1,0,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,139.0,1,3,19,3,5,120.8,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,135.0,1,1,1,3,5,130.1,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9670,1,1,127.0,1,3,3,1,1,121.4,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,135.0,1,1,1,1,1,131.5,0,0,0,1,1,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,Enrolled +1,17,3,9670,1,1,147.0,1,37,37,8,8,128.8,0,0,1,1,0,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,133.1,41,38,38,9,8,134.8,0,0,0,1,0,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,90,8,128.2,0,0,0,1,0,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,131.0,1,1,37,4,4,126.1,1,0,0,1,0,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,9,9,125.3,1,0,0,1,1,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,Dropout +2,39,1,8014,0,3,110.0,1,37,37,9,9,160.5,0,0,0,1,0,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,138.0,1,38,1,9,4,127.5,1,0,0,1,0,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,Enrolled +1,39,1,9238,1,1,170.0,1,38,19,9,9,140.0,1,0,0,1,0,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,1,19,4,10,142.3,1,0,0,1,0,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,154.0,1,38,37,9,9,140.4,0,0,0,1,0,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,133.1,41,19,1,9,9,105.0,1,0,0,0,0,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +2,44,1,9085,1,39,160.0,1,37,37,192,192,160.0,0,0,0,1,0,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,141.0,1,38,38,9,9,142.3,1,0,0,1,0,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,119.0,1,37,37,7,7,112.0,1,0,0,0,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,137.0,1,37,37,9,9,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,Graduate +4,39,1,9670,1,1,100.0,1,37,37,4,10,120.0,0,0,1,1,0,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,130.0,1,3,3,2,2,131.1,0,0,0,1,1,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,120.0,1,1,19,9,3,116.9,1,0,1,0,1,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,42,1,9500,1,1,100.0,1,1,19,4,8,136.0,1,0,0,1,0,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,Graduate +1,1,2,171,1,1,125.0,1,38,19,9,9,117.3,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,152.0,1,1,38,4,9,160.4,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,12,133.1,1,37,37,9,7,139.4,0,0,1,1,0,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,150.0,1,1,1,4,8,131.5,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,7,1,9556,1,4,190.0,1,5,5,2,2,190.0,1,0,0,1,1,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,Dropout +1,17,3,9238,1,1,121.0,1,1,1,4,5,117.2,0,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,130.0,1,37,37,9,7,113.0,1,0,0,0,1,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,123.0,1,19,19,4,10,124.4,1,0,0,1,0,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,Graduate +1,17,2,9238,1,1,133.0,1,37,37,3,9,119.7,0,1,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,138.0,1,38,19,9,10,133.1,0,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,108.0,1,38,38,7,7,105.2,1,0,0,1,1,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,Dropout +1,1,3,171,1,1,115.0,1,9,1,6,6,108.7,1,0,0,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,4,4,119.8,1,0,0,1,0,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9119,1,1,126.0,1,19,19,7,3,116.6,1,0,0,1,1,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,Graduate +2,39,1,9500,1,1,133.1,1,37,37,9,9,130.1,0,0,0,0,1,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,124.0,1,37,38,9,3,114.2,0,0,0,1,0,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,3,9147,1,1,137.0,1,1,1,4,7,124.4,1,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9130,1,19,133.1,1,37,37,9,10,156.4,1,0,1,1,1,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,5,9853,1,1,121.0,1,38,19,7,7,117.5,1,0,1,0,0,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,2,9238,1,1,117.0,1,19,1,9,8,110.0,1,0,1,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9147,1,1,148.0,1,1,19,9,6,118.4,1,0,0,1,1,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,133.0,1,1,1,4,4,100.0,0,0,0,1,0,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,17,1,9238,1,1,158.0,1,1,1,5,6,140.5,0,0,0,1,0,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,157.0,1,19,38,9,7,146.2,1,0,0,1,0,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,131.0,1,3,1,4,1,135.9,0,0,0,1,1,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,38,37,5,10,117.8,1,0,0,1,1,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,Graduate +1,1,2,9119,1,1,126.0,1,1,38,141,192,122.5,1,0,0,1,1,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,117.0,1,37,37,0,4,120.5,1,0,0,1,1,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9254,1,1,110.0,1,12,19,9,9,125.0,0,0,0,0,1,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,Dropout +1,18,1,9147,1,1,121.0,1,19,3,5,5,115.8,1,0,0,1,0,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,139.0,0,0,1,0,1,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9003,1,3,130.0,1,3,3,6,2,130.0,1,0,0,1,1,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,132.0,1,19,37,3,5,125.4,1,0,0,0,0,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,38,38,4,7,115.6,1,0,0,0,0,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,129.0,1,1,2,3,1,125.9,1,0,0,1,0,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,9,9,143.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,126.0,1,3,19,3,3,115.2,0,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,123.0,1,19,38,9,10,116.7,1,0,0,1,0,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,Graduate +1,17,2,9254,1,1,125.0,1,37,37,9,8,122.6,1,0,1,0,0,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9119,1,1,160.0,1,38,37,7,7,129.0,0,0,0,1,1,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,3,19,2,3,133.8,1,0,0,1,0,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,120.0,1,19,19,4,7,115.5,1,0,1,1,1,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,120.0,1,38,38,3,3,140.0,0,0,0,1,0,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9238,1,1,127.0,1,1,19,4,3,141.7,1,0,0,1,1,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,111.0,1,37,37,9,10,95.8,1,0,0,0,1,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,130.0,1,38,1,9,4,140.0,1,0,0,1,0,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,Graduate +1,1,2,9147,1,1,131.0,1,1,1,9,9,118.8,0,0,0,1,1,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,161.0,1,1,19,4,4,152.3,0,0,0,1,0,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,124.0,1,38,38,9,9,115.6,0,0,0,1,1,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,160.0,1,3,3,1,2,149.2,0,0,0,1,1,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,16,3,9853,1,1,134.0,1,19,37,9,9,121.1,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,Enrolled +1,43,2,9991,0,1,140.0,1,37,37,5,5,124.3,1,0,0,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,127.0,1,38,37,5,7,123.9,1,0,0,1,0,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,120.0,1,19,37,6,8,160.0,0,0,0,1,1,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,1,133.1,1,3,3,4,2,144.9,1,0,0,1,0,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,130.0,1,1,19,3,10,130.0,1,0,0,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,Graduate +1,42,1,9003,1,1,130.0,1,3,2,2,6,105.3,0,0,0,0,1,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9991,0,1,130.0,1,37,37,9,9,127.6,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,100.0,1,1,38,4,6,104.8,0,0,1,0,0,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,Dropout +1,1,5,9070,1,1,125.0,1,3,3,2,2,140.8,1,0,0,1,1,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,133.1,1,34,38,0,4,147.0,0,0,0,1,0,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,126.0,1,34,34,0,0,142.4,0,0,0,1,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,121.0,1,19,38,4,10,114.4,0,0,0,1,0,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,133.1,1,37,37,5,0,111.5,0,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,130.0,1,1,19,5,5,129.1,1,0,0,1,0,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,3,1,4,6,130.0,0,0,0,1,1,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,1,123.0,1,19,1,1,1,140.8,0,0,0,1,0,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,130.0,1,1,1,4,10,130.0,1,0,0,1,0,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,Graduate +4,39,1,9085,1,1,133.1,1,34,34,0,0,128.2,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,128.0,1,37,37,9,9,135.7,1,0,0,1,1,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,135.0,1,38,38,4,7,121.7,1,0,0,1,0,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9085,1,1,110.0,25,38,38,9,6,117.2,1,0,0,1,1,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,Graduate +1,43,3,9500,1,1,140.0,1,1,19,9,7,127.5,1,0,1,1,0,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,Graduate +1,17,3,9238,1,1,133.1,1,41,1,2,3,117.0,1,0,0,1,0,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,1,112.0,1,37,37,9,9,108.5,0,0,0,1,1,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,51,1,9238,1,39,140.0,1,38,38,5,7,129.1,1,0,0,1,0,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,122.0,1,38,19,9,9,126.6,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,123.0,1,1,1,4,4,114.4,0,0,0,1,1,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,Dropout +1,18,4,171,1,1,133.0,1,1,4,9,5,129.2,1,0,1,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,128.0,1,19,19,9,5,121.7,1,0,0,1,0,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,Graduate +1,39,1,9130,1,1,150.0,1,19,19,9,5,160.0,1,0,0,1,1,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,160.0,1,19,37,5,3,152.0,0,0,0,1,0,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,53,1,9085,1,42,140.0,1,19,37,9,8,142.5,1,0,0,1,0,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,130.0,1,9,19,4,1,134.2,1,0,0,1,0,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,3,9254,1,1,121.0,1,19,19,9,6,125.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,128.0,1,19,1,9,10,157.4,1,0,0,1,0,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,146.0,1,37,37,9,7,149.2,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9853,1,12,133.1,1,37,37,7,8,103.0,0,0,0,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,143.0,1,19,19,5,6,142.3,0,0,0,1,0,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,Enrolled +1,1,2,9085,1,1,118.0,1,1,19,3,3,112.4,1,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,Enrolled +2,43,1,9991,0,1,100.0,1,37,37,9,9,128.2,0,0,0,1,1,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,118.0,1,38,38,5,5,110.0,0,0,0,1,0,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9147,1,1,136.0,1,38,38,9,9,127.3,1,0,0,1,1,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,170.0,1,19,19,8,8,176.7,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,124.0,41,19,38,9,9,123.3,1,0,0,1,0,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9070,1,1,170.0,1,3,3,2,2,165.8,1,0,0,1,1,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,3,37,9,9,142.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9147,1,1,122.0,1,1,38,4,5,116.4,0,0,0,1,1,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,150.0,1,1,1,4,4,138.1,1,0,0,1,0,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,Enrolled +1,17,6,9238,1,1,138.0,1,3,3,1,2,123.0,1,0,0,1,0,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,135.0,1,19,12,9,7,137.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9070,1,1,125.0,1,1,3,3,3,128.9,0,0,0,1,0,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,128.0,1,38,19,9,10,125.2,1,0,0,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Enrolled +1,42,1,9003,1,1,140.0,1,1,3,4,2,140.0,1,0,0,1,1,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,Enrolled +1,39,1,9500,1,19,133.1,1,37,38,151,161,143.7,0,0,0,1,0,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,118.0,1,38,38,7,7,115.2,1,0,0,1,0,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,152.0,1,19,37,9,8,135.6,1,0,0,1,1,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,12,110.0,1,34,34,0,0,157.8,0,0,0,1,0,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,Graduate +1,1,6,9147,1,1,112.0,1,38,38,9,9,117.3,1,0,0,1,0,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,Graduate +1,17,3,9147,1,1,118.0,1,1,19,5,7,118.0,0,0,0,1,0,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,Enrolled +1,44,1,9070,1,39,120.0,1,1,19,5,8,119.8,0,0,0,1,1,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9670,1,1,133.1,1,19,19,3,9,118.0,0,0,0,1,1,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,159.0,1,1,19,9,9,151.3,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,118.0,1,1,38,5,7,120.8,1,0,0,1,0,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,132.0,1,1,37,8,9,128.0,1,0,0,1,0,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,Graduate +1,42,1,9147,1,1,135.0,1,19,1,4,4,120.0,0,0,0,0,1,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9670,1,1,122.0,1,1,38,3,3,114.3,1,0,0,1,0,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,171,1,1,131.0,1,1,1,0,3,149.9,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +4,39,2,9556,1,1,133.1,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,5,9119,1,1,126.0,1,12,19,4,5,122.5,1,0,0,1,1,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,145.0,1,2,38,3,8,136.3,1,0,0,1,0,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,Enrolled +1,15,1,9147,1,1,150.0,1,38,1,9,1,150.0,0,0,0,1,1,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,150.0,1,3,39,3,7,126.4,0,0,0,1,1,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,Enrolled +1,17,2,9773,1,1,148.0,1,3,38,2,6,144.2,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,124.0,1,37,19,9,3,116.3,1,0,0,1,0,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +2,39,1,9003,1,1,130.0,1,1,37,9,1,122.0,0,0,1,0,1,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,160.0,1,19,38,5,7,139.0,1,0,0,1,0,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,157.0,1,3,2,3,6,150.9,1,0,0,1,0,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,Dropout +1,42,1,9119,1,1,120.0,1,1,1,5,7,108.6,0,0,0,0,1,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9773,1,1,138.0,1,37,38,4,9,134.2,1,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,110.0,1,0,0,1,0,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,Dropout +4,39,1,9853,1,1,143.0,1,37,1,9,10,140.0,0,0,1,0,0,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,130.0,1,3,19,4,8,133.0,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,19,38,6,7,140.0,1,0,0,1,1,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,132.0,1,2,2,6,6,128.5,0,0,0,1,0,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,Dropout +1,1,2,171,1,1,135.0,1,19,19,4,7,149.0,1,0,0,1,1,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,130.0,1,19,38,3,9,126.5,1,0,0,1,0,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,125.0,1,19,38,9,8,121.5,0,0,0,1,0,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,7,129.0,0,0,0,1,0,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,Dropout +1,7,3,9130,1,3,130.0,1,37,26,90,10,130.0,0,0,0,0,1,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,123.0,1,19,19,7,7,120.8,1,0,0,1,0,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,Graduate +1,18,2,9853,1,1,168.0,1,1,19,3,9,126.8,1,0,0,1,1,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9085,1,39,140.0,1,3,1,4,3,140.0,1,0,0,1,0,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,148.0,1,19,19,9,9,138.7,0,0,0,1,0,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,Graduate +1,18,1,171,1,1,110.0,1,19,2,5,5,117.7,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9070,1,1,136.0,1,37,38,9,9,125.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +2,39,1,8014,0,1,133.1,1,37,37,5,4,134.5,0,0,0,1,0,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,Enrolled +1,42,1,9119,1,1,150.0,1,38,37,5,8,133.5,1,0,0,1,1,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,140.0,1,1,3,4,6,139.2,0,0,1,1,0,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,125.0,1,19,19,5,5,117.0,0,0,0,1,0,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,Graduate +1,39,1,9147,1,12,133.1,1,19,37,7,9,118.2,0,0,0,1,0,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,2,9147,1,1,121.0,1,1,19,9,9,113.7,1,0,0,0,0,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,131.0,1,3,19,2,3,132.8,1,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,136.0,1,37,38,4,5,126.0,1,0,0,1,0,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,Graduate +1,1,1,9853,1,1,145.0,1,37,37,9,5,146.8,0,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,123.0,1,1,1,4,9,116.7,1,0,0,1,1,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,Dropout +1,18,1,171,1,1,121.0,1,1,1,4,3,116.8,1,0,0,1,0,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,141.0,1,38,1,9,4,129.0,1,0,0,1,0,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,133.1,1,34,34,0,0,130.0,0,0,0,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,126.0,1,1,3,4,3,122.5,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,Dropout +2,1,1,9254,1,1,136.0,1,37,37,9,9,122.7,0,0,0,1,0,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,37,37,9,10,100.0,0,0,0,1,1,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9500,1,1,133.1,1,38,19,7,9,115.5,1,0,0,1,1,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9991,0,1,131.0,1,19,37,9,9,118.4,1,0,0,1,0,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,153.0,1,1,38,4,3,146.7,0,0,0,1,0,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,Graduate +1,43,1,8014,0,12,114.0,1,34,34,0,99,110.0,0,0,0,1,0,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,147.0,1,1,1,5,5,134.9,0,1,0,1,0,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,Graduate +1,1,2,9085,1,1,156.0,1,40,40,3,7,150.9,1,0,0,1,0,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,137.0,1,38,38,5,7,122.7,1,0,0,1,0,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,123.0,1,1,19,4,5,117.8,0,0,0,1,1,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9238,1,1,135.0,1,37,37,8,6,127.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,131.0,1,37,37,9,9,123.0,1,0,0,1,0,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9670,1,1,123.0,1,3,1,3,1,116.7,0,0,0,1,0,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,9085,1,40,140.0,1,1,19,5,5,140.0,1,0,0,1,0,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,Graduate +4,39,1,9500,1,19,133.1,1,38,19,5,7,140.0,0,0,0,1,0,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,127.0,1,3,19,3,9,127.0,1,0,0,1,1,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,Graduate +1,17,2,8014,0,1,120.0,1,19,1,5,10,114.8,1,0,0,1,0,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9670,1,19,133.1,1,37,37,9,7,130.0,0,0,1,1,1,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,171,1,1,131.0,41,19,1,4,7,131.4,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,16,2,171,1,1,145.0,1,3,3,2,2,143.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,120.0,1,19,38,6,6,120.0,1,0,0,1,1,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,6,9238,1,1,131.0,1,1,3,4,2,131.7,1,0,0,1,0,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,137.0,1,3,1,4,9,128.6,0,0,0,1,0,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,170.0,1,19,19,9,7,170.0,1,0,1,1,1,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9853,1,1,122.0,1,38,37,9,9,118.9,1,0,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,5,9500,1,1,148.0,1,1,19,4,8,130.2,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9003,1,19,133.1,1,1,19,9,8,120.0,0,0,1,0,1,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,2,9147,1,1,143.0,1,19,38,9,7,132.2,1,0,0,1,0,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9556,1,1,132.0,1,38,37,7,7,119.0,1,0,0,1,0,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,133.1,1,3,1,4,4,95.0,0,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,154.0,1,3,1,2,1,137.2,0,0,0,1,1,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,Enrolled +1,1,1,9853,1,1,129.0,1,38,37,6,6,138.1,0,0,0,1,0,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,17,2,9670,1,1,129.0,1,1,19,5,5,119.2,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,43,1,9500,1,1,137.0,1,3,3,2,2,115.0,0,0,0,1,0,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,Graduate +1,17,2,9254,1,1,115.0,1,19,19,9,7,113.3,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,133.0,1,38,38,7,7,125.3,1,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,10,150.0,0,0,0,0,0,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,19,133.1,1,19,19,144,141,131.5,0,0,1,1,0,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,133.0,1,38,1,2,4,126.0,0,0,0,1,0,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,15,1,9147,1,1,133.1,41,41,1,3,4,100.0,0,0,1,0,1,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,Dropout +1,10,2,9773,1,1,154.4,22,19,38,3,5,154.4,1,0,0,0,0,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9070,1,39,100.0,1,1,1,4,4,106.0,0,0,0,1,1,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,135.0,1,38,19,8,8,126.3,1,0,1,1,0,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,120.0,41,1,1,9,6,114.8,1,0,0,1,0,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,Enrolled +1,17,1,9085,1,1,124.0,1,19,38,7,7,113.9,1,0,0,1,0,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,Graduate +1,1,6,9254,1,1,126.0,1,38,37,5,7,123.9,1,0,0,1,0,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,125.0,1,37,37,9,9,121.5,1,0,0,1,1,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,6,9773,1,1,125.0,1,1,1,5,4,122.2,0,0,0,1,1,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,135.0,1,19,19,4,5,126.8,1,0,0,1,1,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9238,1,1,133.0,1,1,37,7,9,127.4,1,0,0,1,0,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,3,9070,1,1,127.0,1,19,38,5,7,141.0,1,0,0,1,1,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,3,120.0,1,37,37,4,7,122.5,0,0,0,0,0,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,2,9147,1,1,150.0,1,19,37,9,7,101.0,0,0,1,0,0,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,4,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,Graduate +1,17,5,9500,1,1,143.0,1,38,1,9,7,130.6,1,0,0,1,0,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,129.0,1,38,19,5,7,124.0,1,0,0,1,0,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,Graduate +1,17,2,9500,1,1,140.0,1,1,1,5,10,128.5,1,0,0,1,0,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,Enrolled +4,39,1,8014,0,19,100.0,1,1,37,9,1,111.5,0,0,0,1,1,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,Dropout +2,39,2,9556,1,1,110.0,1,19,38,9,9,112.8,0,0,0,1,0,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,116.0,1,19,19,5,8,127.9,0,0,1,0,0,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,Dropout +1,43,4,171,1,1,117.0,1,19,12,9,10,109.3,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,130.0,1,1,38,5,5,122.3,1,0,0,1,0,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,Graduate +1,15,1,9119,1,1,130.0,26,38,3,9,2,137.0,1,0,0,1,1,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,Enrolled +1,39,1,9556,1,1,133.1,1,38,19,9,6,100.0,1,0,0,1,0,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,150.0,1,3,1,3,9,154.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9147,1,1,131.0,1,3,19,2,9,126.1,0,0,0,1,0,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,1,6,9773,1,1,145.0,1,1,19,4,4,131.0,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,136.0,1,19,38,4,7,140.9,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,155.0,1,19,37,4,5,117.5,0,0,0,1,0,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9147,1,1,128.0,1,3,3,5,10,116.5,0,0,0,1,1,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,4,9254,1,1,133.0,1,37,37,5,8,128.5,1,0,0,1,0,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9119,1,1,141.0,1,37,1,9,2,133.0,1,0,0,1,1,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,Enrolled +1,51,1,8014,0,1,120.0,1,1,1,4,4,128.5,0,0,1,0,1,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,Dropout +1,43,1,9003,1,1,120.0,1,3,3,1,2,115.0,0,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,136.0,1,19,19,4,7,136.0,0,0,0,1,0,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,Graduate +1,17,1,9070,1,1,116.0,1,38,38,9,9,123.7,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,125.0,1,19,19,4,8,117.0,1,0,0,1,0,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,135.0,1,1,38,5,7,137.5,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,140.0,1,19,19,7,7,124.6,1,0,0,1,0,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,Enrolled +1,39,1,9670,1,19,133.1,1,1,1,4,7,100.0,0,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,122.0,1,37,37,9,9,131.0,1,0,0,1,0,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,Dropout +2,43,1,9773,1,1,160.0,1,37,37,5,0,160.0,0,0,1,0,1,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9670,1,1,113.0,1,37,19,9,9,110.2,1,0,0,1,0,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,125.0,1,37,37,9,9,126.0,1,0,1,1,0,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,Graduate +1,43,1,171,1,39,140.0,1,38,37,9,7,140.0,0,0,0,0,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9853,1,1,134.0,1,37,19,9,5,121.4,1,0,0,1,0,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,8014,0,1,120.0,1,1,37,7,3,122.8,0,0,0,1,0,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,1,1,4,2,127.7,0,0,0,1,0,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,Enrolled +2,39,1,9991,0,1,120.0,1,19,37,3,9,132.9,0,0,0,1,1,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,138.0,1,1,38,4,9,132.5,1,0,0,1,0,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,133.1,1,19,37,7,7,126.0,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9500,1,1,110.0,1,38,38,9,9,110.0,0,0,0,0,0,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,Dropout +5,7,1,9500,1,40,150.0,1,37,37,4,9,150.0,0,0,0,1,0,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,Graduate +1,17,1,9070,1,1,126.0,1,19,38,9,7,118.7,0,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,16,4,9254,1,1,126.0,1,38,37,9,7,118.7,1,0,0,1,0,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9773,1,1,110.0,1,19,19,5,5,105.5,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,9,133.1,1,34,34,0,0,118.0,0,0,0,1,0,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,140.0,1,3,2,4,6,133.4,1,0,0,0,1,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,Enrolled +1,1,1,171,1,1,134.0,1,3,2,2,2,141.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9773,1,1,133.1,1,1,1,90,90,129.6,0,0,0,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,133.1,1,38,19,5,6,138.0,0,0,1,1,1,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,Enrolled +1,17,3,9500,1,1,156.0,1,19,37,4,9,132.3,1,0,0,1,1,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,Graduate +1,44,1,9085,1,39,140.0,1,3,3,4,2,140.0,1,0,0,1,0,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,Graduate +1,43,1,171,1,1,116.0,1,3,1,2,3,117.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,141.0,1,38,19,9,6,126.3,1,0,0,1,0,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,44,1,9238,1,39,140.0,1,1,19,191,102,143.0,0,0,0,1,0,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,Graduate +1,43,5,8014,0,1,110.0,1,34,34,0,0,110.0,0,0,0,1,1,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9238,1,1,143.0,1,1,11,4,3,128.0,1,0,0,1,0,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +3,17,1,9238,1,1,138.0,1,37,37,9,9,133.5,1,0,0,1,0,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,Enrolled +1,7,1,9119,1,3,150.0,1,3,2,2,2,150.0,0,0,0,1,0,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,150.0,1,19,1,1,1,150.0,0,0,0,1,1,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,Enrolled +1,17,1,9085,1,1,134.0,1,19,37,2,7,131.2,0,0,0,1,0,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,171,1,1,133.1,1,37,37,9,7,100.0,0,0,1,1,1,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,1,9556,1,1,133.1,1,3,19,2,8,106.0,1,0,0,1,1,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,Graduate +1,17,2,9500,1,1,135.0,1,19,19,9,4,129.8,1,0,0,1,0,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,Graduate +1,39,1,33,1,1,130.0,1,38,37,9,6,102.5,0,0,1,0,1,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,Dropout +1,18,1,9500,1,1,144.0,1,37,37,6,6,127.5,1,0,0,1,0,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,130.0,1,37,38,9,9,133.9,1,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,44,1,9003,1,39,140.0,1,37,37,4,7,140.0,0,0,0,1,1,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,Dropout +1,1,4,9773,1,1,137.0,1,3,19,2,3,139.8,1,1,0,1,0,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,1,9991,0,1,130.0,1,2,37,3,9,131.4,0,0,0,1,1,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,135.0,1,3,3,1,1,125.8,1,0,0,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Graduate +1,18,1,9238,1,1,147.0,1,38,34,4,0,130.2,0,0,0,1,0,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +5,17,5,9500,1,1,143.0,1,37,38,5,8,133.5,1,0,0,1,0,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,99.0,1,1,3,5,10,100.0,1,0,0,1,1,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,Graduate +1,16,2,9147,1,1,131.0,1,37,37,9,9,135.9,1,0,0,1,1,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,146.0,1,38,37,6,6,143.9,0,0,0,1,0,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9085,1,1,139.0,1,38,38,5,3,136.2,0,0,0,1,0,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,153.0,1,3,1,2,8,137.6,1,0,0,1,0,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,2,9085,1,1,133.1,1,19,38,9,1,100.0,1,0,1,0,1,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,2,9773,1,1,121.0,1,19,19,9,9,122.8,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,141.0,1,37,38,9,10,138.9,0,0,0,1,0,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,6,9500,1,1,117.0,1,4,12,5,9,119.8,1,0,0,1,0,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,Graduate +1,17,4,9119,1,1,122.0,62,1,1,191,171,121.0,1,0,0,1,1,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,38,19,3,3,98.6,0,0,0,1,0,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,140.0,1,38,37,5,6,124.3,1,0,0,1,0,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,140.0,1,37,37,9,9,127.7,1,0,0,1,0,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,121.0,1,37,37,9,9,124.2,1,0,0,1,0,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,Graduate +1,18,1,9130,1,1,146.0,1,3,3,5,2,137.8,0,0,0,1,1,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,3,120.0,1,1,1,7,10,120.0,1,0,0,0,1,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,120.0,1,37,37,7,8,120.0,1,0,1,0,0,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,178.0,1,19,1,4,8,174.7,0,0,0,1,0,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,Graduate +1,17,5,9254,1,1,114.0,1,38,1,5,9,109.5,0,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,143.0,1,38,38,9,9,140.0,0,0,0,1,1,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,160.0,1,38,37,9,5,159.3,0,0,0,1,0,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,143.0,1,38,34,9,9,133.6,1,0,0,1,0,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,Graduate +4,43,1,9500,1,19,100.0,1,34,34,0,0,110.0,0,0,0,1,1,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,125.0,1,1,19,4,1,121.5,1,0,0,1,1,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,19,7,3,120.0,1,0,0,1,1,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,3,120.0,1,19,1,9,5,134.0,0,0,0,1,0,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,Dropout +1,39,1,9254,1,1,160.0,1,19,37,7,10,100.0,0,0,0,1,1,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,Enrolled +1,15,1,171,1,1,130.0,26,1,1,2,9,130.0,0,0,0,1,1,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,140.0,1,19,37,5,6,137.9,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,123.0,1,19,37,9,9,124.1,1,0,0,1,0,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,140.0,1,38,38,6,6,140.0,0,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,9,133.1,1,34,34,0,0,118.4,0,0,0,0,0,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,6,9254,1,1,125.0,1,1,1,4,3,120.5,1,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,6,171,1,1,126.0,1,10,10,4,4,130.2,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,120.0,1,1,19,4,7,120.0,0,0,0,1,1,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,Enrolled +1,17,5,9773,1,1,143.0,1,1,1,7,7,136.7,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,42,1,9147,1,1,130.0,1,37,38,9,1,130.0,1,0,0,1,0,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,1,130.0,1,37,37,9,9,124.0,0,0,0,1,1,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,Graduate +1,17,2,9238,1,1,136.0,1,1,3,3,4,126.6,1,0,0,1,0,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,127.0,1,19,1,5,7,118.3,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,Enrolled +4,39,1,9991,0,1,147.0,1,19,19,7,8,147.9,0,0,0,1,0,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,124.0,1,19,37,99,90,124.0,0,0,0,0,0,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +2,43,1,9003,1,1,133.1,1,37,37,9,7,136.0,0,0,0,1,1,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,1,9085,1,1,140.0,1,12,1,1,90,141.8,0,0,0,1,0,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,133.1,1,37,37,191,154,95.0,0,0,0,1,0,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,147.0,1,2,3,4,8,145.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9238,1,3,130.0,1,37,19,4,5,130.0,0,0,0,1,0,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,Graduate +1,7,2,9085,1,3,130.0,1,3,3,1,1,130.0,0,0,0,0,0,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,Dropout +2,39,2,9147,1,3,130.0,1,3,37,9,9,103.4,0,0,0,1,0,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,Dropout +1,17,1,9085,1,1,135.0,1,1,19,4,10,125.6,1,0,0,1,0,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,1,1,5,5,96.0,1,0,0,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +5,39,1,9853,1,19,133.1,1,38,1,5,3,105.5,0,0,1,1,0,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,136.0,1,37,37,7,7,121.7,1,0,0,1,0,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9119,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,1,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,19,133.1,1,19,19,4,4,100.0,0,0,0,1,1,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,124.0,1,2,2,3,2,118.4,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9085,1,1,120.0,1,2,3,2,2,116.1,0,0,0,1,0,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,162.0,1,37,37,9,9,142.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,131.0,1,37,1,9,9,135.9,1,0,0,1,0,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,7,100.0,0,0,0,1,1,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,Graduate +1,43,1,9500,1,1,127.0,1,19,19,4,7,121.1,0,0,0,1,0,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,143.0,1,37,37,9,5,131.6,1,0,0,1,0,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,Graduate +1,17,4,9085,1,1,140.0,1,19,37,4,7,123.7,0,0,0,1,0,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,156.0,1,19,1,5,10,136.8,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Dropout +2,39,1,9853,1,10,133.1,1,37,34,0,0,115.5,0,0,0,1,0,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,Dropout +1,1,3,9119,1,1,113.0,1,4,38,2,7,107.4,1,0,0,1,1,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,Graduate +2,39,1,9670,1,1,130.0,1,37,37,9,0,158.0,0,0,1,0,0,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,Dropout +1,43,1,9853,1,1,110.0,1,37,37,9,9,107.7,0,0,1,0,0,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,124.0,1,2,2,3,3,124.7,1,0,0,1,1,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,127.0,1,37,37,5,10,125.3,0,0,0,1,1,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Graduate +1,16,1,9500,1,1,133.1,1,37,37,9,9,95.0,1,0,0,1,0,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,4,9238,1,1,127.0,1,19,19,4,0,127.4,1,0,0,1,0,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,113.0,1,38,38,3,7,112.3,0,0,0,1,0,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,110.0,1,19,37,9,99,106.1,1,1,1,0,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,141.0,1,1,38,4,8,136.8,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,133.1,1,37,37,9,7,140.0,0,0,0,1,0,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,124.0,1,1,1,4,4,118.8,0,0,0,1,1,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,4,120.0,1,2,3,2,2,120.0,0,0,0,1,0,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,110.0,1,3,3,4,10,115.6,1,0,0,1,1,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,118.0,1,1,19,4,10,110.7,1,1,0,1,0,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +4,39,1,9238,1,1,130.0,1,19,3,9,2,140.0,0,0,0,1,1,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,1,140.0,1,1,19,3,9,140.0,1,0,1,0,0,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,3,9773,1,1,123.0,1,1,19,5,5,117.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,115.0,1,38,38,8,7,112.9,1,0,0,1,0,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,1,6,9147,1,1,142.0,1,38,37,7,7,134.3,0,1,0,1,1,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9085,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,0,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,129.0,1,19,1,3,7,121.0,0,0,0,1,0,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,156.0,1,3,3,123,122,155.0,0,0,0,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,136.0,1,37,37,9,9,126.3,1,0,0,1,0,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,Graduate +2,43,1,9991,0,1,110.0,1,37,37,9,9,132.5,0,0,0,1,1,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,19,133.1,1,37,1,5,5,138.3,0,0,0,1,1,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,Dropout +1,1,2,9130,1,1,140.0,1,19,37,9,9,129.5,1,0,0,1,0,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,Enrolled +1,7,1,9500,1,3,140.0,1,37,37,4,4,140.0,0,0,0,1,0,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,Graduate +4,42,1,9147,1,1,110.0,1,37,37,9,9,128.2,0,0,0,1,0,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,Graduate +1,39,1,9119,1,19,133.1,1,1,1,4,3,134.4,0,0,1,0,1,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,136.0,1,37,1,5,4,120.8,1,0,0,1,0,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,Graduate +1,17,2,9500,1,1,140.0,1,37,37,9,9,132.5,1,0,0,1,0,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,Graduate +1,17,6,9147,1,1,130.0,1,37,37,9,9,110.4,1,0,0,1,1,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,4,5,105.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,136.0,1,19,19,4,3,126.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,116.0,1,38,2,9,2,112.2,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9238,1,1,122.0,1,19,3,5,2,112.6,0,0,1,1,0,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9147,1,1,118.0,1,1,38,9,9,118.4,1,0,0,1,1,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,Enrolled +1,17,1,9130,1,1,117.0,1,19,19,4,4,113.5,1,0,0,1,0,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,117.0,1,19,19,9,9,111.8,1,0,0,1,1,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,Dropout +1,1,6,9500,1,1,118.0,1,38,19,3,3,113.5,1,0,0,1,1,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +2,43,2,9853,1,1,130.0,1,38,31,4,1,124.2,0,0,0,1,0,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,128.0,1,38,38,9,7,124.5,1,0,0,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,8,108.7,1,0,0,1,1,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9254,1,19,133.1,1,37,19,9,10,156.5,0,0,0,1,1,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,Graduate +1,39,1,9003,1,1,160.0,1,1,37,191,193,140.0,0,0,0,1,1,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,10,150.0,0,0,0,1,1,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,Graduate +1,18,2,9070,1,1,122.0,1,38,19,5,5,119.9,0,0,0,1,1,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,125.0,1,19,38,9,7,116.3,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,37,37,6,6,147.8,0,0,0,1,0,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,171,1,1,174.0,1,5,3,3,3,157.9,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,131.0,1,1,1,4,4,127.2,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,3,110.0,1,12,3,5,8,106.5,1,0,1,0,0,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,124.0,1,37,37,9,9,116.0,1,0,0,1,0,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,38,38,5,7,146.2,0,0,0,1,0,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,9,97.0,0,0,0,1,0,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,132.0,1,19,1,9,9,141.8,1,0,0,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +2,43,1,9254,1,3,120.0,1,38,37,9,3,120.0,1,0,0,1,0,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,135.0,1,3,2,1,1,133.6,1,0,0,0,0,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,133.0,1,38,38,5,2,135.5,0,0,0,1,0,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,125.0,1,39,3,3,2,125.0,1,0,0,1,0,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,4,112.0,0,0,0,1,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,141.0,1,1,1,5,9,126.3,0,0,0,1,1,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,1,133.1,1,1,37,9,8,130.0,0,0,0,1,1,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,3,10,107.8,0,0,0,1,0,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,Enrolled +1,43,1,9500,1,1,120.0,1,3,4,2,4,120.6,0,0,0,1,1,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,1,133.1,1,1,19,9,9,120.0,0,0,0,1,1,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,Graduate +1,39,1,9853,1,1,140.0,1,19,1,9,4,128.2,0,0,0,0,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,133.1,1,37,19,9,3,123.0,0,0,0,1,1,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9147,1,1,150.0,1,37,1,7,3,148.8,0,0,0,1,1,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,Graduate +1,17,1,9670,1,1,125.0,1,38,37,7,5,126.4,0,0,0,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,Graduate +1,44,1,9003,1,39,140.0,1,38,1,134,134,140.0,1,0,1,1,1,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,44,1,9070,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,1,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,130.0,1,1,1,9,9,124.1,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Enrolled +1,51,1,9070,1,1,130.0,1,19,19,5,7,124.5,0,0,0,1,0,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,101.0,1,37,37,9,4,101.0,1,0,1,1,0,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,Enrolled +1,1,1,8014,0,1,115.0,1,38,38,9,7,115.0,1,0,0,1,0,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9130,1,1,122.0,1,19,19,9,9,121.7,1,0,0,0,0,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,135.0,1,38,38,9,6,138.1,0,0,1,0,0,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9147,1,1,130.0,1,37,37,9,9,119.9,1,0,0,0,0,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,134.0,1,1,1,9,9,133.0,1,0,0,1,0,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,19,37,9,9,117.8,1,0,0,1,0,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,119.0,1,1,19,4,10,115.5,1,0,0,1,0,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,Enrolled +1,17,3,9119,1,1,138.0,1,3,3,3,4,125.4,1,1,0,1,1,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,164.0,1,19,19,9,9,149.0,1,0,0,1,0,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,1,140.0,1,4,4,2,6,140.0,0,0,0,1,0,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,Graduate +1,43,1,9070,1,1,160.0,1,1,2,4,2,100.0,0,0,0,1,1,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,132.0,1,37,37,9,5,135.9,0,0,0,1,0,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,142.0,1,37,19,7,7,133.0,1,0,0,1,0,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9556,1,3,130.0,1,1,37,4,8,130.0,0,0,0,0,1,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,Dropout +1,44,1,171,1,39,110.0,1,1,1,1,7,114.2,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9147,1,1,129.0,1,19,19,4,9,127.6,1,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,164.0,1,34,1,0,0,163.0,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9556,1,1,122.0,1,19,38,4,8,118.3,1,0,0,1,0,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,141.0,1,38,37,3,3,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,Graduate +1,1,1,9003,1,1,148.0,1,1,19,194,194,143.5,0,0,1,1,1,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,150.0,1,37,19,6,4,137.0,0,0,0,1,1,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,38,38,1,4,138.7,0,0,0,1,1,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,103.8,0,0,0,1,0,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,Dropout +1,17,1,8014,0,1,127.0,1,19,37,4,7,115.8,0,0,0,1,0,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,143.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,130.0,1,38,19,5,6,125.1,1,0,0,1,0,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9254,1,1,133.0,1,19,1,9,9,137.2,0,0,0,1,1,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +2,1,4,8014,0,1,140.0,1,34,34,0,0,128.0,1,0,0,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,120.0,1,1,1,9,10,118.3,0,0,0,1,1,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Enrolled +2,39,1,8014,0,12,133.1,1,37,37,9,1,113.0,0,0,0,1,0,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,128.0,1,19,1,0,5,122.1,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,37,38,3,3,123.0,0,0,0,1,0,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,120.0,1,37,1,7,4,95.0,1,0,0,1,0,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,Dropout +1,17,4,9238,1,1,123.0,1,19,19,191,144,116.0,1,0,0,1,0,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,140.0,1,37,37,90,90,106.3,0,0,1,0,1,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,159.0,1,3,3,2,2,162.5,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,125.0,1,19,19,9,9,115.9,0,0,0,1,0,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,130.0,1,19,19,3,7,129.0,0,0,1,0,0,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,133.1,1,38,37,5,5,136.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,156.0,1,5,4,2,1,140.8,0,0,0,1,0,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,161.0,1,37,37,9,9,100.0,1,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,8014,0,3,130.0,1,35,35,90,90,140.0,0,0,0,0,0,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,Dropout +2,1,1,9991,0,1,120.0,1,37,19,9,9,135.0,1,0,0,1,1,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,1,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,148.0,1,3,3,2,2,137.3,1,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,120.0,1,19,37,5,7,115.1,0,0,0,1,0,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,6,9773,1,1,138.0,1,1,1,4,2,140.5,1,0,0,1,0,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,Graduate +2,43,1,9085,1,1,160.0,1,37,37,9,7,120.0,0,0,0,1,1,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,Enrolled +1,17,2,8014,0,1,134.0,1,1,19,4,99,126.0,1,0,0,1,1,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,100.0,1,0,0,1,0,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,131.0,1,1,1,5,9,129.5,1,0,0,1,0,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,Graduate +1,1,4,171,1,1,139.0,1,37,38,9,9,127.8,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,150.0,1,37,37,5,6,132.5,1,0,0,1,0,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,133.1,1,19,38,5,7,110.0,1,0,0,1,0,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,6,138.6,1,34,34,0,0,138.6,1,0,0,1,1,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,133.1,1,1,1,4,10,100.8,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,5,140.0,1,19,1,4,1,140.0,1,0,0,0,0,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,118.0,1,1,19,9,10,113.1,1,0,0,1,0,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,115.0,1,3,3,2,2,111.5,1,0,1,0,0,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9254,1,39,170.0,1,19,2,9,3,170.0,0,0,0,0,1,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,9,120.0,0,0,0,1,0,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,137.0,1,19,38,7,7,126.5,1,0,0,1,0,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,136.0,1,19,19,90,8,133.9,1,0,0,0,1,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,Dropout +1,18,2,9500,1,1,141.0,24,1,1,4,3,126.8,1,0,0,1,0,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,Graduate +1,17,4,9238,1,1,124.0,1,19,19,5,8,117.7,1,0,0,1,0,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,149.0,1,19,38,9,9,126.5,1,0,0,1,0,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,153.0,1,1,1,141,175,157.9,0,0,1,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,140.0,1,1,2,4,6,140.0,1,0,0,1,0,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,137.0,1,1,3,3,2,121.3,1,0,0,1,0,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,143.0,1,1,1,4,6,138.8,0,0,0,0,1,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,160.0,1,1,3,1,2,130.0,0,0,0,0,1,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,19,19,9,8,105.8,0,0,0,1,0,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,Dropout +1,5,4,9119,1,1,115.0,1,19,37,4,6,113.3,1,0,0,1,1,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,19,4,3,125.4,1,0,0,1,0,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,Graduate +4,42,1,9500,1,19,133.1,1,1,1,5,5,126.0,1,0,0,1,1,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9254,1,3,133.1,1,19,19,4,6,130.5,0,0,0,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,108.0,1,1,19,4,4,105.9,1,0,0,1,1,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,126.0,1,19,19,9,9,115.2,0,0,1,1,0,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9853,1,1,140.0,1,37,37,9,9,145.3,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,6,9070,1,6,119.0,1,1,1,9,9,123.2,1,0,0,1,1,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,160.0,1,1,38,5,6,168.6,0,0,0,1,1,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9254,1,1,120.0,1,1,19,9,9,148.3,0,0,0,1,1,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,3,130.0,1,1,19,9,10,130.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,137.0,1,38,38,151,151,141.6,0,0,0,1,1,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,4,140.0,0,0,0,1,1,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,Enrolled +1,43,1,9085,1,1,162.0,1,2,1,4,4,162.0,0,0,0,1,0,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,43,1,171,1,1,133.0,1,19,19,5,7,133.0,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,154.0,1,37,37,9,7,150.2,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,19,100.0,1,38,19,0,10,111.3,0,0,1,0,0,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,38,4,9,126.2,0,0,0,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,132.0,1,3,1,2,7,125.5,1,0,0,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,127.0,1,37,37,5,7,116.2,0,0,0,1,1,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9773,1,1,121.0,1,19,38,9,7,113.0,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,130.0,1,19,19,9,9,127.6,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,160.0,1,34,34,99,99,114.3,0,0,0,1,1,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,Enrolled +1,18,4,9254,1,1,119.0,1,37,37,9,9,113.1,1,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,130.0,1,38,37,5,6,130.0,0,0,0,1,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,163.0,1,19,37,5,8,150.8,1,0,0,1,1,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,Enrolled +1,43,1,9238,1,1,122.0,1,19,19,5,5,114.3,1,0,0,1,0,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,Enrolled +1,18,1,9147,1,1,131.0,1,34,34,90,90,131.0,0,0,0,1,1,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,4,9773,1,1,137.0,1,1,1,5,5,125.8,0,0,1,1,1,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9670,1,1,133.1,1,37,37,90,90,97.4,0,0,1,0,1,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,37,38,7,5,106.0,1,0,0,1,0,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,Graduate +1,17,6,9254,1,1,108.0,1,1,19,4,5,112.2,1,0,0,1,1,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,19,133.1,1,1,19,4,10,111.8,1,0,0,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,133.1,1,1,37,9,10,139.0,0,0,0,1,1,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,122.0,1,12,19,4,8,117.8,1,0,0,1,0,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,128.0,1,19,19,0,5,120.3,1,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,133.1,1,34,19,0,3,117.1,1,0,0,1,0,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9556,1,19,133.1,1,37,38,9,9,123.0,0,0,0,1,0,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,Graduate +1,17,2,9238,1,1,133.0,1,37,37,9,4,123.6,0,0,0,1,0,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,5,9670,1,1,132.0,1,19,19,5,5,134.1,1,0,0,1,1,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,129.0,1,38,1,4,10,129.4,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,136.0,1,19,19,4,8,150.4,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,154.0,1,3,3,1,3,129.0,1,0,0,1,0,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,Enrolled +1,44,1,9130,1,39,150.0,1,1,1,4,4,150.0,1,0,0,1,0,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,115.0,1,37,37,9,8,116.1,1,0,0,1,0,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,157.0,1,19,3,4,9,138.8,0,0,0,1,1,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9670,1,19,133.1,1,19,1,5,8,97.2,1,0,0,1,1,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,141.0,1,37,38,6,6,125.6,1,0,0,1,0,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,143.0,1,19,1,9,9,144.4,1,0,0,1,0,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9119,1,1,127.0,1,19,1,4,5,115.8,0,0,0,1,1,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,150.0,1,1,1,9,10,142.7,0,0,1,1,0,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,132.0,11,12,12,90,4,129.9,1,0,0,1,0,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,115.0,1,19,19,191,171,109.1,0,0,1,0,1,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,Enrolled +1,17,1,9773,1,1,121.0,1,38,38,9,8,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,7,1,9085,1,40,130.0,1,1,1,4,4,130.0,1,0,0,1,0,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,140.0,1,19,38,4,4,138.3,0,0,0,1,1,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,6,9773,1,1,116.0,1,19,1,4,4,110.1,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,131.0,1,38,38,9,9,127.9,0,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,Graduate +1,51,1,9991,0,42,110.0,1,19,37,5,9,128.2,0,0,0,0,0,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,138.0,1,19,19,5,8,124.9,1,0,0,1,0,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,172.0,1,1,1,4,9,167.1,0,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +5,39,1,9991,0,1,120.0,1,37,37,9,9,138.1,0,0,0,1,1,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,37,38,3,7,96.7,0,0,0,1,1,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,15,1,9130,1,1,133.1,41,1,1,4,4,100.0,0,0,0,1,0,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9119,1,1,122.0,1,19,19,9,9,114.7,0,0,0,1,1,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,192,192,96.0,1,0,0,1,0,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,160.0,1,1,37,9,10,118.0,0,0,0,1,0,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,Enrolled +1,18,4,9119,1,1,134.0,1,19,38,194,175,124.9,1,0,1,1,1,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,4,19,4,5,98.0,0,0,0,1,1,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +5,43,1,9991,0,3,130.0,1,3,3,1,1,130.0,0,0,0,1,0,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,120.0,1,19,19,4,5,114.8,1,0,1,0,0,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,6,8014,0,1,134.0,1,3,19,2,4,120.7,1,0,0,1,0,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,133.1,1,37,37,9,9,109.7,0,0,0,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9070,1,1,128.0,1,19,19,3,3,123.5,1,1,0,0,1,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,133.1,1,1,19,5,9,130.0,0,0,0,1,1,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,Graduate +1,7,1,9991,0,40,120.0,1,43,3,3,3,120.0,0,0,0,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,Enrolled +1,17,5,9556,1,1,139.0,1,19,19,9,8,121.3,1,0,0,1,0,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,156.0,1,3,19,3,3,151.1,0,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,Graduate +1,16,2,9147,1,1,132.0,1,37,37,9,9,122.6,1,0,0,1,0,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,130.0,1,2,3,9,6,130.0,0,0,0,1,1,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,133.1,1,1,1,1,6,120.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,1,1,1,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,133.0,1,3,3,1,1,126.2,1,0,0,1,0,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,Graduate +1,18,2,9147,1,1,140.0,1,37,37,5,9,124.3,1,0,0,1,1,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,44,1,9003,1,39,150.0,1,37,38,4,8,150.0,0,0,0,1,0,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,140.0,1,37,19,191,163,129.3,1,0,1,1,0,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +4,7,1,9500,1,3,130.0,1,3,19,2,3,130.0,0,0,0,1,0,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9070,1,1,131.0,1,19,19,7,7,125.1,0,0,0,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,Enrolled +1,10,1,9773,1,1,152.0,22,38,37,5,9,152.0,1,0,0,1,0,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,123.0,1,34,38,0,7,120.2,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,131.0,1,3,19,4,4,130.3,1,0,0,1,1,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,115.0,1,1,1,5,4,108.0,1,0,0,1,0,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,130.0,1,38,37,9,9,144.0,0,0,0,1,0,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9238,1,1,134.0,1,3,1,3,4,133.0,1,0,0,1,0,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,Graduate +1,51,1,9670,1,1,133.1,1,3,1,3,10,116.2,0,0,0,1,1,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,139.0,0,0,0,1,1,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,126.0,1,19,1,9,9,122.5,1,0,0,0,0,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,121.0,1,19,19,9,9,126.3,1,0,0,1,0,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9003,1,1,133.1,1,38,38,4,8,115.0,0,0,1,1,1,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,19,37,9,9,151.5,0,0,1,0,1,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9853,1,40,110.0,1,41,3,2,1,110.0,0,0,1,1,0,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,17,5,9238,1,1,131.0,1,19,37,5,7,120.2,1,0,0,1,0,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,7,1,9070,1,3,140.0,1,37,37,7,7,140.0,0,0,0,0,1,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +4,39,1,9254,1,1,140.0,1,38,37,9,9,112.0,0,0,1,1,0,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,Dropout +1,18,3,9853,1,1,122.0,1,38,37,9,5,120.3,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9070,1,1,125.0,1,1,38,9,7,118.0,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Enrolled +1,1,3,9670,1,1,111.0,1,1,1,5,5,105.4,0,0,0,1,0,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +2,39,1,9254,1,1,130.0,1,37,37,4,7,120.0,1,0,0,1,0,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,160.0,1,37,37,9,9,160.0,1,0,0,1,0,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,39,1,9147,1,12,133.1,1,37,37,9,9,140.0,0,0,0,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9147,1,1,118.0,1,1,2,10,10,117.3,1,0,0,1,0,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,3,9085,1,1,130.0,1,1,19,9,9,121.3,1,0,0,1,0,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,9,130.0,0,0,0,1,0,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,3,9085,1,1,130.0,1,19,37,5,5,121.3,1,0,0,1,0,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,Enrolled +1,1,2,9254,1,1,120.0,1,19,19,9,9,116.5,1,0,0,1,0,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,Graduate +2,39,1,9500,1,1,140.0,1,37,37,9,4,127.3,0,0,0,1,1,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,118.0,1,37,38,8,7,115.2,1,0,0,1,0,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,17,3,9238,1,1,125.0,1,19,19,7,8,121.5,0,0,0,1,0,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,125.0,1,19,19,5,5,114.5,1,0,0,1,0,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,136.0,1,39,1,3,4,134.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,115.0,1,3,2,4,5,112.6,0,0,0,1,1,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,53,1,9003,1,1,130.0,1,19,1,9,9,130.0,0,0,1,1,1,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,Enrolled +1,1,3,9773,1,1,136.0,1,3,1,5,3,129.0,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,3,150.0,1,2,3,4,7,173.3,1,0,0,1,0,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,140.0,1,1,19,7,7,129.9,1,0,0,1,0,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,Dropout +1,7,1,9119,1,1,140.8,1,34,34,0,0,134.0,0,0,0,1,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9254,1,1,115.0,1,37,19,5,5,109.8,1,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,137.0,1,1,1,4,4,127.6,1,0,0,1,0,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,Graduate +4,7,1,9238,1,40,130.0,1,34,34,99,99,130.0,0,0,1,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9147,1,1,123.0,1,37,37,9,9,106.2,0,0,0,1,0,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,121.0,1,1,3,3,7,113.0,1,0,0,1,1,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,140.0,1,3,1,2,3,129.9,0,0,0,1,0,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,130.0,1,38,38,9,7,130.0,0,0,0,1,1,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,Dropout +1,51,1,9070,1,1,132.0,1,19,19,153,153,120.0,0,0,0,1,0,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,9119,1,1,110.0,1,37,37,9,9,106.8,0,0,0,1,1,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,124.0,1,19,37,4,4,126.8,0,0,0,1,0,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,Enrolled +1,18,3,9147,1,1,133.1,1,1,38,4,7,101.0,1,0,0,0,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9147,1,1,125.0,1,38,19,7,7,125.7,0,0,0,1,0,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,4,9853,1,1,121.0,1,38,38,5,7,113.7,1,0,0,1,0,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,1,1,9,6,105.0,1,0,1,0,0,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,143.0,1,5,1,2,5,136.7,0,0,0,1,0,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,Graduate +1,1,2,9556,1,1,142.0,1,1,19,4,5,130.5,1,0,0,1,0,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,131.0,1,19,19,7,5,122.1,1,0,0,1,0,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,132.0,1,1,37,4,7,121.8,1,0,0,1,0,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,123.0,1,37,37,3,3,123.0,1,0,0,1,0,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,129.0,1,19,38,2,7,126.9,1,0,0,1,0,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Enrolled +1,1,4,9238,1,1,118.0,1,19,38,9,9,110.0,0,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,125.0,1,3,1,4,4,119.4,1,0,0,1,0,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,Enrolled +1,17,1,9085,1,1,131.0,1,1,3,4,1,129.3,1,0,0,1,0,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,147.0,1,37,37,9,9,134.3,0,0,0,1,0,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,Graduate +2,39,2,9670,1,19,133.1,1,37,37,9,9,135.6,0,0,0,1,0,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,152.0,1,37,19,9,9,137.0,1,0,0,1,0,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,118.0,1,12,1,4,10,115.7,0,0,0,1,1,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,Enrolled +1,15,1,9119,1,1,133.1,41,1,3,5,8,100.0,0,0,1,1,1,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,5,9119,1,1,131.0,1,1,19,4,7,126.8,0,0,0,0,1,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,132.0,1,19,38,9,7,119.1,0,0,0,0,1,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,8014,0,1,120.0,1,37,37,5,5,161.1,0,0,0,1,1,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,18,5,9500,1,1,137.0,1,19,1,1,10,129.3,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,118.0,1,37,19,5,5,119.1,1,0,0,1,0,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,134.0,1,38,38,9,9,122.0,1,0,0,1,1,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,163.0,1,1,1,4,3,149.7,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,140.0,1,38,38,9,7,140.0,0,0,0,1,0,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,Enrolled +1,17,4,9147,1,1,122.0,1,19,19,5,7,116.4,1,0,1,1,0,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,140.0,1,3,37,3,7,116.9,0,0,0,1,1,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,5,2,9238,1,1,123.0,1,40,38,2,9,118.1,1,0,0,1,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,130.0,1,3,19,2,3,133.9,0,0,0,1,0,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,125.0,1,1,38,4,7,114.9,1,0,0,1,0,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,130.0,1,1,1,4,10,115.2,0,0,0,1,1,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,124.0,1,38,19,9,7,129.6,1,0,0,1,1,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,139.0,1,38,38,7,5,133.4,0,0,0,1,0,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9254,1,1,125.0,1,38,38,5,5,115.6,1,0,0,1,0,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,147.0,1,37,37,9,9,142.8,1,0,0,1,0,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9003,1,1,144.0,1,19,19,9,9,132.8,0,0,0,1,1,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,12,133.1,1,19,1,9,1,130.0,0,0,0,1,1,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,140.0,1,37,37,9,6,135.5,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,6,9254,1,1,102.0,1,3,1,2,2,101.7,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,133.1,1,19,38,5,5,131.8,1,0,1,1,0,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,Graduate +1,44,1,171,1,39,150.0,1,4,4,2,2,150.0,0,0,0,1,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,53,1,9254,1,42,110.0,1,1,1,4,7,111.8,1,0,0,1,0,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,121.0,1,19,38,6,6,116.1,1,0,0,1,1,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,Graduate +1,17,4,9773,1,1,127.0,1,1,19,4,1,115.8,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,37,37,9,7,160.0,1,0,0,0,1,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,15,170.0,1,34,1,90,2,101.0,0,0,0,1,0,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,125.0,1,3,3,3,3,116.6,1,0,0,0,0,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,4,9070,1,1,117.0,1,1,1,3,3,125.4,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,146.0,1,19,37,7,7,133.8,1,0,0,1,0,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,142.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,3,116.0,1,3,3,2,2,128.2,0,0,0,1,0,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,37,37,7,7,116.5,1,0,0,1,0,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,118.0,1,19,19,5,7,117.8,0,0,0,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,Graduate +1,18,3,9670,1,1,119.0,1,38,38,9,9,115.2,1,0,0,1,0,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,131.0,1,3,19,3,10,123.3,0,0,0,1,1,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,Enrolled +1,17,1,9254,1,1,136.0,1,39,3,3,3,128.7,1,0,0,1,0,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9500,1,1,140.0,1,37,38,5,7,126.0,1,0,0,1,0,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +1,44,1,9119,1,39,150.0,1,19,3,5,2,150.0,0,0,0,1,1,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,43,1,9773,1,1,137.0,1,38,37,9,5,127.9,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,119.9,0,0,0,1,0,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,18,2,9773,1,1,132.0,24,37,19,9,7,119.1,1,0,0,1,0,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,43,1,8014,0,1,133.1,1,34,34,0,0,100.0,0,0,0,1,0,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,1,133.1,1,38,19,9,9,128.0,1,0,0,0,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,125.0,1,19,19,5,4,136.2,1,0,1,1,1,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,132.0,1,38,38,0,5,126.1,0,0,0,1,1,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9670,1,1,130.0,1,1,1,9,10,116.3,1,0,0,1,0,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,3,9773,1,1,150.0,1,19,38,4,4,146.5,1,0,0,1,0,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +4,39,2,8014,0,1,160.0,1,37,38,7,5,115.0,0,0,0,1,0,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,135.0,1,19,1,9,9,122.1,1,0,0,1,0,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,136.0,1,3,3,9,9,136.0,1,0,1,0,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,3,3,7,1,130.0,1,0,0,1,1,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9119,1,19,133.1,1,19,19,5,3,100.9,1,0,0,1,1,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,Enrolled +1,17,1,9254,1,1,137.0,1,34,38,0,7,137.7,1,0,1,0,0,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,19,133.1,1,37,37,90,7,110.0,0,0,0,0,0,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,144.0,1,38,37,9,9,125.8,0,0,0,1,0,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,1,4,9070,1,1,167.0,1,1,1,7,3,158.3,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,133.0,1,37,19,7,7,126.7,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,118.0,1,38,38,7,7,121.2,1,0,0,1,0,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,19,133.1,1,19,19,4,4,150.0,0,0,0,0,1,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9085,1,1,166.0,1,1,19,4,3,158.7,0,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Graduate +1,44,1,9254,1,39,130.0,1,39,39,194,193,130.0,1,0,1,1,1,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,1,9085,1,1,140.0,1,37,38,7,9,129.9,0,0,0,1,0,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,9147,1,3,120.0,1,1,39,4,7,120.0,0,0,0,1,0,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,5,9254,1,1,118.0,1,19,37,5,5,120.5,1,0,0,1,1,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,Dropout +1,17,3,9070,1,1,120.0,1,3,1,4,4,116.9,1,0,0,1,0,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Graduate +1,43,5,9238,1,1,101.0,24,37,19,9,7,119.9,1,0,1,0,0,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,128.0,1,19,1,4,3,117.2,1,0,0,1,0,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,Graduate +1,1,3,9254,1,1,118.0,1,1,19,9,9,111.7,1,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,137.0,1,37,37,0,90,134.2,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,144.0,1,3,39,2,3,129.0,1,0,0,1,0,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,125.0,1,37,38,7,7,122.2,1,0,0,1,0,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,147.0,1,3,1,4,3,136.7,0,0,0,1,0,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,39,120.0,1,37,37,1,9,137.7,1,0,0,0,1,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,160.0,1,1,37,9,9,146.0,1,0,0,1,0,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9238,1,39,130.0,1,1,19,4,5,127.4,0,0,1,0,1,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,3,1,2,4,154.9,0,0,1,0,1,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,Dropout +1,17,2,9670,1,1,129.0,1,19,19,5,4,129.4,0,0,0,1,0,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,137.0,1,3,19,3,5,136.3,1,0,0,1,0,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,100.0,1,37,37,9,6,153.5,0,0,1,0,1,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,134.0,1,38,38,7,9,132.8,1,0,0,1,0,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,137.0,1,37,37,7,9,130.8,1,0,0,1,0,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,133.1,1,37,37,1,1,97.0,0,0,0,1,1,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,143.0,1,3,38,2,10,129.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,9,3,127.1,0,0,0,1,0,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,Enrolled +2,7,1,9147,1,3,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,160.0,1,37,37,9,9,160.0,0,0,0,1,1,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,162.0,1,3,4,3,3,154.1,0,0,0,1,0,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,Graduate +1,1,2,9147,1,1,119.0,1,19,37,4,5,113.8,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,139.0,1,19,1,9,5,135.0,1,0,0,1,0,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,120.0,1,1,38,5,5,116.3,1,1,0,1,1,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,2,9500,1,1,135.0,1,1,19,4,10,133.5,1,0,0,1,0,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,Graduate +1,1,3,9119,1,1,117.0,1,1,1,3,5,111.1,0,0,0,1,1,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,140.0,1,1,39,4,1,128.1,1,1,0,1,1,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9003,1,1,133.1,1,37,37,3,8,130.0,0,0,1,1,0,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,134.0,1,19,37,5,5,125.3,1,0,0,1,1,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,37,38,9,9,114.0,0,0,0,1,0,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,38,37,4,5,102.5,0,0,1,0,1,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,143.0,1,19,37,5,9,156.3,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,130.0,1,19,1,9,5,122.1,1,0,0,1,0,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,Graduate +1,39,2,8014,0,1,100.0,1,35,37,90,90,100.0,0,0,0,1,0,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +2,39,2,9670,1,1,100.0,1,37,37,9,9,110.0,0,0,0,1,1,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,2,9853,1,1,126.0,1,1,19,2,10,126.0,1,0,0,1,0,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,Enrolled +1,18,3,9070,1,1,131.0,1,1,37,5,5,122.3,1,0,0,0,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,150.0,1,19,37,9,8,138.5,0,0,0,1,0,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,2,171,1,1,146.0,1,3,3,3,3,155.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,120.0,1,19,19,9,7,118.6,1,0,0,1,0,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,145.0,1,38,38,9,9,125.5,1,0,0,1,0,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9070,1,1,143.0,1,1,1,9,7,134.6,1,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Dropout +1,51,1,8014,0,1,121.0,1,1,38,5,7,112.3,0,0,0,1,0,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,130.0,1,37,1,9,8,120.2,1,0,0,1,1,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +2,7,1,9254,1,2,100.0,1,37,37,9,9,100.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,1,130.0,1,37,3,9,3,137.0,1,0,0,1,1,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,0,0,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,140.0,1,38,37,7,7,105.2,0,0,0,1,1,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,131.0,1,1,19,4,7,135.9,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,108.0,1,19,38,9,7,110.5,1,0,0,1,0,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,111.0,1,1,38,5,9,107.5,0,0,0,1,1,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9147,1,1,147.0,1,37,37,9,6,142.8,1,0,1,0,0,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,170.0,1,38,19,4,8,134.7,0,0,0,1,0,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,138.0,1,4,19,2,3,124.7,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,125.0,1,37,38,9,9,125.0,1,0,1,0,0,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,118.0,1,38,38,5,5,114.2,1,0,0,1,0,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,3,3,1,5,118.8,0,0,0,1,0,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,Graduate +1,1,3,9085,1,1,131.0,1,37,19,9,8,136.3,1,0,1,0,0,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,Dropout +1,43,1,9991,0,1,141.0,1,37,37,9,9,131.9,0,0,0,1,0,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,42,1,9070,1,1,120.0,1,3,2,3,1,116.9,0,0,0,1,1,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,130.0,1,1,1,9,7,152.1,0,0,0,1,1,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,12,133.1,1,34,34,0,0,135.0,0,0,0,1,0,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,130.0,1,38,38,7,7,122.5,1,0,0,1,0,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,160.0,1,1,1,194,131,128.4,0,0,0,1,0,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,132.0,1,1,38,7,7,129.6,0,1,0,1,1,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,1,1,3,9,118.4,0,0,0,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,Graduate +1,1,2,9556,1,1,133.1,1,19,19,9,9,104.5,1,0,0,1,0,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,53,1,9003,1,42,150.0,1,1,38,8,8,150.0,0,0,0,1,0,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,144.0,1,3,1,2,3,126.9,0,0,0,1,0,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,150.0,1,3,3,2,2,120.0,0,0,1,0,0,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,3,3,2,10,160.0,1,0,0,1,1,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,129.0,1,1,1,9,9,120.0,0,0,0,1,1,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,Graduate +4,39,1,9003,1,12,133.1,1,37,37,9,6,160.0,0,0,0,1,0,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,Graduate +2,39,2,9991,0,1,100.0,1,37,37,9,9,100.0,1,0,0,1,1,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,115.0,1,19,1,3,8,123.4,0,0,0,1,0,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,124.0,1,19,37,3,8,117.5,1,0,0,1,1,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,Enrolled +1,1,6,9254,1,1,129.0,1,38,19,9,5,117.8,1,0,0,1,0,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,127.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,19,133.1,1,38,38,7,8,120.0,0,0,0,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +6,39,2,9147,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,4,9500,1,1,148.0,1,3,19,4,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,39,150.0,1,1,3,4,1,150.0,0,0,0,1,1,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,145.0,1,37,37,9,1,150.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,115.7,1,0,0,1,0,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,16,1,171,1,1,122.0,1,19,37,9,7,133.9,1,0,0,1,1,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,124.0,1,37,38,9,8,114.6,1,0,0,1,1,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,120.0,1,38,37,9,8,113.4,1,0,0,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,40,140.0,1,37,37,6,6,140.0,0,0,0,1,0,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,Graduate +1,1,5,9670,1,1,133.1,1,9,1,2,4,133.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,100.0,1,19,19,4,4,113.0,0,0,0,1,1,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,Enrolled +4,39,1,9003,1,1,133.1,1,19,19,9,4,100.7,0,0,0,1,0,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,Enrolled +1,17,2,9147,1,1,133.1,1,38,38,4,7,109.0,1,0,0,1,1,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,15,1,9238,1,1,140.0,26,19,19,9,6,140.0,0,0,0,1,1,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,3,9500,1,1,114.0,1,1,1,5,5,114.5,1,0,0,1,0,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,134.0,1,1,38,4,4,120.7,0,0,1,0,0,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,1,133.1,1,37,11,9,7,96.0,0,0,1,0,1,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,131.0,1,3,3,3,3,135.9,0,0,0,1,0,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,Graduate +1,43,2,9500,1,1,130.0,1,38,37,4,4,126.8,1,0,0,1,1,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,19,37,7,7,124.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9670,1,1,120.0,1,1,19,4,5,100.0,0,0,0,1,0,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,145.0,1,38,38,9,10,139.8,1,0,0,1,0,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,141.0,1,19,38,5,7,125.5,0,0,0,1,0,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,Graduate +5,39,1,9147,1,1,133.1,1,1,19,4,7,114.0,0,0,0,0,1,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9991,0,1,110.0,1,37,37,1,4,120.0,1,0,0,0,1,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,172.0,41,37,37,5,5,153.8,1,0,0,1,0,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,1,9556,1,1,140.0,1,3,3,1,7,131.6,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,4,3,137.5,0,0,0,1,1,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,137.0,1,19,38,3,9,124.9,0,0,0,1,0,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,139.0,1,18,18,1,1,130.8,1,0,0,0,0,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,120.0,1,38,37,5,9,131.4,1,0,0,1,1,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,Graduate +1,53,1,9085,1,42,160.0,1,19,37,4,9,160.0,1,0,0,1,0,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,Graduate +1,18,1,9670,1,1,140.0,1,1,37,9,9,130.2,1,0,0,1,1,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9853,1,1,140.0,1,37,37,6,6,125.2,0,0,1,1,0,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,Graduate +1,1,4,9556,1,1,122.0,1,37,1,5,4,123.9,0,0,0,1,0,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,1,19,3,3,123.0,0,0,0,1,0,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,140.0,1,19,38,4,0,140.0,1,0,0,1,1,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,129.0,1,1,1,4,2,126.2,0,0,1,0,0,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Dropout +2,17,3,8014,0,1,123.0,1,19,37,3,3,113.2,0,0,1,0,0,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,133.1,1,38,19,9,10,114.5,0,0,0,1,0,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,Enrolled +1,51,1,9991,0,1,141.0,1,19,38,5,7,100.0,0,0,0,1,0,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,Graduate +1,17,2,171,1,1,131.0,1,2,1,3,3,148.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,19,133.1,1,37,37,9,9,100.0,1,0,1,0,0,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,117.0,1,1,38,5,1,113.5,1,0,0,1,0,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,116.0,1,19,38,9,9,119.5,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,1,19,3,4,116.7,0,0,0,1,0,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,129.0,1,2,3,2,2,128.3,1,0,0,1,0,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,Enrolled +1,1,3,9085,1,1,138.0,1,1,1,4,8,128.7,1,0,0,1,0,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,5,9147,1,1,118.0,1,19,19,9,9,114.2,1,0,0,1,1,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.0,1,3,19,2,8,126.7,0,0,0,1,0,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,Enrolled +1,16,1,171,1,1,158.0,1,38,37,9,9,164.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,43,3,9500,1,1,126.0,1,38,37,6,5,124.3,1,0,0,1,0,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,123.0,1,38,38,9,5,124.8,0,0,0,0,0,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9130,1,1,160.0,1,3,3,3,2,155.1,1,0,0,1,0,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Graduate +4,43,1,9500,1,1,130.0,1,37,37,9,9,103.7,0,0,0,1,0,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,Enrolled +1,16,2,9238,1,1,133.0,1,19,38,4,5,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,130.0,1,38,37,9,9,124.8,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,135.0,1,37,1,7,7,132.8,1,0,0,1,0,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9119,1,1,128.0,1,1,38,4,7,100.0,0,0,0,1,1,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9085,1,1,120.0,1,1,1,9,10,115.0,0,0,0,0,0,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,2,9070,1,1,142.0,1,3,1,2,4,141.0,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9853,1,1,124.0,1,38,37,5,3,118.1,1,0,0,0,0,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,145.0,1,37,37,9,9,132.0,1,0,0,1,0,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,114.0,1,38,38,9,10,120.0,0,0,0,1,0,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,140.0,1,3,3,2,2,146.4,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,5,9773,1,1,130.0,1,34,38,0,8,128.3,1,0,0,0,0,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,3,9670,1,1,110.0,1,19,1,4,4,107.5,1,0,0,1,0,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,135.0,1,37,37,5,5,126.3,1,1,0,1,0,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,Graduate +2,1,1,9254,1,1,140.0,1,19,38,4,7,133.0,0,0,0,1,1,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,1,150.0,1,37,37,9,9,115.0,0,0,0,1,1,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9070,1,1,130.0,1,1,1,5,3,112.0,1,0,0,1,1,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,110.0,1,1,37,9,9,105.1,1,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,131.0,1,37,37,9,7,118.4,0,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,136.0,1,38,38,7,7,127.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9773,1,1,127.0,1,19,19,5,8,120.0,0,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,139.0,1,37,19,9,8,142.2,1,0,0,1,1,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,4,127.3,1,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,16,4,9773,1,1,109.0,1,37,37,9,3,137.0,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,Graduate +1,53,1,9085,1,42,130.0,1,19,1,9,9,130.0,1,0,1,0,0,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,Enrolled +1,7,1,171,1,3,130.0,1,1,2,9,2,130.0,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,120.0,1,37,37,9,9,120.0,1,0,1,1,0,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,Dropout +1,2,1,9853,1,1,120.0,1,19,38,9,9,122.5,0,0,0,0,0,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,19,133.1,1,2,1,8,8,120.0,1,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,43,1,9773,1,1,121.0,1,1,1,4,5,121.0,1,0,0,1,1,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9147,1,1,120.0,1,38,19,9,9,111.3,1,0,0,1,0,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,38,19,5,0,141.8,0,0,0,1,0,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,131.0,1,1,1,7,4,127.2,1,0,1,1,1,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,11,9,10,131.5,0,0,0,1,0,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,3,19,2,3,125.7,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9556,1,1,136.0,1,19,19,9,9,129.5,1,0,0,1,0,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,Graduate +1,42,1,9119,1,1,120.0,1,5,5,2,2,115.0,0,0,0,1,1,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,Dropout +1,17,6,9119,1,1,124.0,1,19,19,4,0,126.1,1,0,0,1,1,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,160.0,1,19,38,9,9,140.8,1,0,0,1,1,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,123.0,1,37,37,9,9,115.0,1,0,0,1,0,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,Graduate +2,39,2,9670,1,1,133.1,41,37,19,9,9,130.0,0,0,0,1,0,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9670,1,6,170.0,1,34,34,0,0,111.6,0,0,0,1,1,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,138.0,1,1,3,9,1,123.0,1,0,0,1,0,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,1,37,6,6,130.0,1,0,0,1,1,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,Graduate +1,17,2,9119,1,1,133.1,1,1,2,3,3,117.0,1,0,0,1,1,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,Enrolled +1,1,5,9254,1,1,131.0,1,19,37,9,9,123.7,0,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,130.0,1,1,1,9,4,140.0,0,0,0,0,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9773,1,1,135.0,1,1,19,4,10,129.4,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,132.0,1,1,19,3,3,122.9,1,0,0,1,0,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,115.0,1,37,37,9,8,129.0,1,0,1,0,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9238,1,1,160.0,1,3,19,2,1,116.1,0,0,1,1,0,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,12,133.1,1,37,1,9,10,130.0,0,0,0,1,1,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,129.0,1,37,38,4,9,121.0,1,0,0,1,0,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9119,1,1,130.0,1,38,19,7,3,119.9,1,0,1,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,133.1,1,37,37,9,9,100.2,1,0,0,0,0,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,4,38,4,5,140.0,1,0,0,1,0,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9991,0,43,140.0,1,40,5,3,3,140.0,0,0,0,1,0,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,Graduate +1,43,2,9670,1,1,129.0,1,3,3,5,5,122.4,1,0,0,1,0,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,6,116.4,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,130.0,1,1,3,9,2,130.0,1,0,1,1,0,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,139.0,1,38,38,9,5,130.5,1,0,0,1,0,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,1,100.0,1,19,19,9,9,100.0,0,0,1,1,1,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,Dropout +1,7,1,9773,1,43,140.0,1,19,1,4,8,140.0,0,0,0,1,1,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9003,1,1,125.0,1,1,38,4,7,125.0,1,0,0,1,0,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,Graduate +1,39,2,9147,1,19,133.1,1,38,19,4,10,116.3,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,3,9500,1,1,132.0,1,37,37,4,3,127.3,1,0,0,1,0,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,127.0,1,1,37,4,8,121.1,1,0,0,1,1,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9670,1,1,140.0,1,37,37,6,6,120.0,0,0,0,1,0,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,133.0,1,37,37,9,5,139.2,1,0,1,1,1,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,140.0,1,19,19,1,4,133.3,1,0,0,1,0,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,120.0,1,3,3,2,2,112.0,0,0,0,1,0,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,Enrolled +2,1,1,9147,1,1,137.0,1,19,37,9,9,124.4,0,0,0,1,0,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,130.0,1,38,38,9,3,145.6,0,0,0,1,1,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,6,9670,1,1,120.0,1,1,14,4,5,113.7,1,0,0,1,0,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,120.0,1,38,19,9,3,112.7,0,0,0,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,122.0,1,37,37,9,9,114.3,1,0,0,0,0,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,8014,0,1,133.1,1,3,1,1,7,100.0,0,0,0,1,0,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,4,19,3,5,123.7,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,4,4,4,2,120.0,1,0,0,1,1,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,3,9238,1,1,137.0,1,1,1,3,3,131.4,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,Graduate +1,43,1,9130,1,1,130.0,1,1,1,1,1,130.0,1,0,0,1,1,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9773,1,1,121.0,1,1,19,9,7,118.9,1,0,0,1,0,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,133.1,1,19,38,9,8,128.2,1,0,0,1,1,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,Enrolled +1,43,1,9070,1,1,134.0,1,19,37,7,7,132.7,1,0,0,1,1,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9147,1,1,125.0,1,1,38,7,7,120.1,0,0,1,1,1,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,129.0,1,37,37,9,9,117.1,1,0,0,1,0,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,145.0,1,38,38,5,7,138.0,1,0,0,1,0,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,120.0,105,1,1,9,9,119.0,1,0,1,0,0,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,131.0,1,1,19,9,9,127.0,0,0,0,1,1,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,100.0,1,38,19,6,10,112.8,0,0,0,1,0,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,2,9070,1,1,145.0,1,38,19,7,7,130.0,1,0,0,1,1,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,126.0,1,37,38,7,7,119.0,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,Graduate +1,1,2,9773,1,1,137.0,1,1,19,7,7,133.2,1,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,128.0,1,38,38,9,7,128.4,1,0,0,1,0,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9085,1,39,150.0,1,19,38,194,193,150.0,1,0,0,1,0,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,Enrolled +1,1,4,171,1,1,146.0,1,1,1,9,5,151.3,1,0,0,1,0,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,Graduate +1,1,6,9147,1,1,139.0,1,19,12,4,4,125.0,1,0,0,1,0,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,1,1,9,4,123.4,1,0,0,1,0,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9670,1,1,127.0,1,3,4,2,2,122.8,0,0,0,1,1,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,127.0,1,38,37,5,7,121.8,1,0,1,1,0,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,39,1,9003,1,1,130.0,1,38,37,7,7,120.0,0,0,0,1,1,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,Graduate +1,1,2,9238,1,1,100.0,1,38,1,7,7,99.3,1,0,0,1,0,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9119,1,1,160.0,1,37,37,9,6,153.7,0,0,0,1,1,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9500,1,1,138.0,1,3,1,2,5,134.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,Graduate +1,17,4,9254,1,1,124.0,1,3,3,3,3,126.1,1,0,0,1,0,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,Dropout +2,7,1,9147,1,3,110.0,1,19,1,9,9,110.0,0,0,0,1,0,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,143.0,1,3,19,3,10,126.8,0,0,0,1,1,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,Graduate +1,17,2,9670,1,1,110.0,1,1,1,4,10,115.3,1,0,0,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,9119,1,1,129.0,1,2,37,2,9,121.6,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Enrolled +1,15,1,9254,1,1,140.0,26,19,1,9,7,140.0,1,0,0,0,0,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,118.0,1,19,38,7,9,113.5,1,0,0,1,0,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,5,9853,1,1,110.0,1,19,37,7,7,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,171,1,1,145.0,1,3,1,2,10,114.5,1,0,0,1,1,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,43,2,9670,1,1,125.0,1,38,19,4,3,106.6,1,0,0,1,0,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Dropout +4,39,1,9500,1,19,133.1,1,37,37,5,7,100.0,0,0,0,0,0,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,133.0,1,1,1,9,9,119.7,1,1,1,1,1,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,Graduate +1,1,2,9853,1,1,134.0,1,1,38,9,8,122.5,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,120.0,1,19,37,3,9,100.0,0,0,0,1,0,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,37,37,6,6,100.0,0,0,1,0,1,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,160.0,1,38,38,6,6,160.0,1,0,0,1,0,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,7,116.0,0,0,0,1,0,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,Graduate +1,18,3,9500,1,1,145.0,1,1,1,4,8,133.6,1,0,0,1,0,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,3,19,2,3,124.5,0,0,0,1,0,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,125.0,1,19,38,9,8,118.3,0,0,0,1,1,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,Dropout +1,5,1,9085,1,1,150.0,1,1,1,4,4,139.4,0,0,0,1,0,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9773,1,1,133.1,1,38,38,9,5,117.0,0,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,142.0,1,1,1,4,7,131.0,1,0,0,1,0,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,1,19,3,3,154.3,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9147,1,1,135.0,1,37,38,9,9,128.0,1,0,1,1,0,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,149.0,1,37,37,9,9,138.0,0,0,0,1,1,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,38,9,9,129.2,1,0,0,1,0,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9556,1,1,147.0,1,3,4,3,2,100.0,0,0,0,1,0,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,12,133.1,1,37,37,10,9,144.0,0,0,0,1,1,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9254,1,1,100.0,1,3,19,3,5,115.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9670,1,1,140.0,1,1,1,4,3,133.4,0,0,0,1,1,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,Enrolled +1,1,2,171,1,1,127.0,1,3,39,1,3,133.5,1,0,0,1,1,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9147,1,1,112.0,1,1,19,3,5,107.8,1,0,0,1,0,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,Enrolled +2,39,1,9147,1,1,110.0,1,37,37,9,10,140.0,0,0,0,1,0,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,120.0,1,1,3,175,121,105.9,0,0,0,1,0,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,Enrolled +1,1,1,9238,1,1,168.0,1,37,37,9,9,149.5,0,0,0,1,0,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,Graduate +1,17,1,8014,0,1,141.0,1,34,34,0,0,136.1,0,0,0,1,0,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,140.0,1,1,1,4,3,130.7,1,0,0,1,1,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,Dropout +1,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,134.0,1,1,37,8,7,120.5,1,0,0,1,1,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,160.0,1,1,38,4,7,141.5,1,0,0,1,1,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,122.0,1,38,37,191,195,112.9,1,0,0,1,0,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,41,1,1,9,7,163.1,1,0,0,0,0,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,1,110.0,1,1,37,9,9,126.0,1,0,0,1,1,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,Enrolled +1,17,1,9670,1,1,109.0,1,1,1,4,4,108.0,0,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,131.0,2,37,1,9,3,126.1,1,0,0,1,1,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,1,2,9556,1,1,125.0,1,38,1,9,3,116.3,1,0,0,1,0,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,Graduate +1,17,1,9085,1,1,138.0,1,2,19,2,9,126.8,1,0,0,1,0,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,Enrolled +1,1,5,9853,1,1,128.0,1,38,37,9,9,120.3,1,0,1,0,0,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,130.0,1,1,38,4,9,122.7,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,9,133.1,1,37,34,90,90,118.1,1,0,0,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,125.0,1,1,19,4,9,114.5,1,0,0,1,0,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,Graduate +1,1,5,9773,1,1,138.0,1,19,19,9,9,139.4,1,0,0,1,0,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,125.0,1,19,38,3,5,115.9,0,0,0,1,0,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,134.0,1,38,19,5,8,120.7,0,0,0,1,0,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,133.1,41,3,1,3,10,100.0,1,0,0,0,0,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,Dropout +5,39,1,9003,1,1,133.1,1,37,37,9,7,110.0,0,0,1,0,0,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,Dropout +1,17,1,9254,1,1,128.0,1,19,1,5,7,120.7,1,0,1,1,0,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,162.0,1,19,19,4,7,152.9,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,51,1,9238,1,1,121.0,1,3,19,3,10,111.9,1,0,0,1,0,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,Graduate +1,39,2,9991,0,1,172.0,1,19,37,9,8,150.0,1,0,0,1,0,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,116.0,1,19,19,9,8,119.9,1,0,0,1,0,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,125.0,1,19,19,3,10,131.0,1,0,0,1,1,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,39,1,9500,1,4,150.0,1,3,38,3,7,127.0,1,0,0,1,1,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,128.0,1,38,38,9,9,129.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,120.0,1,3,19,4,5,115.5,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,38,38,9,6,160.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,130.0,1,3,1,2,9,130.0,1,0,0,1,0,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,140.0,1,1,19,4,8,124.6,1,0,0,1,0,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,3,3,2,2,150.0,1,0,0,1,0,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9853,1,1,133.1,1,37,19,9,5,138.3,0,0,0,1,0,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,Dropout +1,43,1,9991,0,1,150.0,1,3,3,4,4,100.0,1,0,0,1,1,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,Graduate +1,44,1,9238,1,1,150.0,1,1,38,4,9,145.9,0,0,0,1,0,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,Graduate +1,18,3,9500,1,1,131.0,1,19,1,4,7,127.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,Graduate +1,7,1,9085,1,3,150.0,1,19,37,90,90,140.0,0,0,0,1,1,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,167.0,1,19,19,9,7,156.2,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,140.0,1,1,3,4,5,130.0,0,0,0,1,1,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9238,1,1,132.0,1,1,19,4,9,127.1,1,0,0,1,0,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9119,1,1,133.0,1,3,1,3,4,121.8,1,0,0,1,1,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9670,1,1,133.1,1,1,37,4,5,150.0,0,0,0,1,1,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,150.0,103,37,37,9,9,134.6,0,0,0,1,1,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,6,9773,1,1,131.0,1,34,34,0,0,129.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,139.0,1,3,1,4,1,126.0,1,0,0,1,1,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,138.0,1,1,1,4,8,123.0,0,0,1,0,1,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,Enrolled +5,39,1,9853,1,19,133.1,1,37,37,9,8,118.0,0,0,0,1,0,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,142.0,1,37,38,9,9,137.3,1,0,0,1,0,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,136.0,1,3,38,2,9,125.7,1,0,0,1,0,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,1,1,4,10,128.3,1,0,0,1,0,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,132.0,1,1,37,4,9,127.1,0,0,0,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,122.0,1,19,19,7,7,116.1,1,0,0,1,0,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,140.0,1,1,2,3,3,140.0,0,0,0,1,0,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,Enrolled +1,42,1,9853,1,12,133.1,1,1,3,3,2,133.7,0,0,0,1,0,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,Dropout +2,7,1,9500,1,3,120.0,1,37,19,9,7,120.0,1,0,0,1,0,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,Enrolled +1,1,4,9238,1,1,134.0,1,38,19,7,7,128.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,130.0,1,19,38,4,7,121.3,1,0,0,1,0,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,Graduate +1,39,2,9238,1,1,110.0,1,19,1,5,5,136.5,0,0,0,1,1,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9670,1,1,133.1,1,38,19,9,8,122.9,0,0,1,0,1,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,124.0,1,19,1,9,3,123.7,1,0,0,1,0,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,17,1,9991,0,1,120.0,1,38,3,9,3,116.9,1,0,1,0,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,43,2,9147,1,1,160.0,1,37,37,9,9,96.0,0,0,0,0,0,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,154.0,1,19,37,9,7,140.4,1,0,0,1,0,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,Enrolled +1,17,5,9070,1,1,125.0,1,19,1,5,5,122.6,1,0,0,1,1,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9119,1,1,137.0,1,1,1,4,4,130.4,1,0,1,1,1,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,134.0,1,37,19,9,9,136.8,1,0,0,1,1,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,100.0,1,37,37,0,0,128.0,1,0,0,1,1,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +4,39,1,9130,1,19,133.1,1,37,38,9,4,100.9,0,0,0,1,1,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,127.0,1,1,19,5,7,130.5,1,0,0,1,0,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,1,1,9003,1,1,131.0,1,19,38,5,5,118.4,0,0,0,1,0,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,142.0,1,1,38,5,7,127.7,0,0,0,1,0,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,130.0,1,1,38,4,9,115.0,0,0,0,1,1,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,100.0,0,0,0,1,0,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,134.0,1,1,19,9,5,121.8,1,0,0,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,3,9853,1,1,122.0,1,1,3,5,3,113.6,0,0,0,1,0,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,114.0,1,37,37,7,8,116.7,0,0,0,1,1,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,130.0,1,3,1,3,3,120.5,0,0,0,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,148.0,1,19,19,4,5,143.5,0,0,0,1,0,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,19,9,9,107.0,0,0,0,0,1,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,130.0,1,3,19,5,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,6,120.0,0,0,0,0,0,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,1,2,9853,1,1,123.0,1,19,1,194,103,115.3,1,0,0,1,0,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,Enrolled +1,18,1,9130,1,1,135.0,1,38,19,9,5,121.7,1,0,0,1,0,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,116.0,1,38,38,5,8,110.8,1,0,0,1,0,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,7,1,9147,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9991,0,1,133.1,41,37,37,9,8,114.7,0,0,0,1,0,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,122.0,1,37,37,9,7,120.6,1,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,150.0,1,5,5,2,2,146.2,0,0,0,1,0,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,130.0,1,1,4,3,10,130.0,0,0,0,1,0,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9085,1,19,110.0,1,37,37,90,90,110.0,0,0,0,0,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,140.0,1,1,1,9,9,136.9,1,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,44,1,9085,1,39,150.0,1,19,19,9,9,150.0,1,0,0,1,0,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +2,43,1,9003,1,1,149.0,1,1,1,4,5,156.1,1,0,0,0,1,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9119,1,1,133.1,1,1,1,9,3,136.0,0,0,0,1,1,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,Dropout +1,16,2,9238,1,1,122.0,1,19,37,9,7,127.3,1,0,0,1,0,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,133.0,1,1,1,6,7,134.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,141.0,1,19,38,9,9,130.5,0,0,0,1,1,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,121.0,1,1,3,9,3,123.8,0,0,0,0,1,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,39,140.0,1,1,1,4,3,138.6,0,0,0,1,1,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9991,0,1,145.0,1,2,37,4,9,127.5,1,0,0,1,1,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,100.0,1,37,19,9,2,121.9,0,0,0,0,0,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,120.0,1,38,38,9,9,148.5,0,0,0,1,0,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +5,39,1,9991,0,1,110.0,1,1,1,3,3,119.0,0,0,0,1,1,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9254,1,1,137.0,1,1,38,2,8,122.3,1,0,0,1,1,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,42,1,9238,1,1,133.1,1,1,19,4,9,134.0,0,0,0,1,0,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,38,37,9,7,130.0,1,0,0,1,1,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,Graduate +5,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,120.0,1,37,37,9,9,111.1,0,0,0,1,0,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,124.0,1,38,19,6,10,126.8,1,0,0,1,0,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,Graduate +2,1,1,9500,1,1,151.0,1,37,38,9,7,134.5,0,0,1,1,0,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,133.0,1,19,37,9,8,121.8,1,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,148.0,1,1,19,4,5,135.1,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,120.0,1,19,38,4,8,122.5,0,0,0,0,1,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9070,1,1,140.0,1,37,37,9,10,118.0,0,0,1,1,1,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,3,133.1,1,9,9,90,90,130.0,0,0,0,1,0,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,150.0,1,34,34,0,0,108.0,0,0,0,1,0,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,1,150.0,1,1,38,3,5,120.0,0,0,0,1,1,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,Enrolled +1,44,1,9085,1,39,150.0,1,38,1,5,5,150.0,0,0,0,1,0,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,1,2,9238,1,1,133.1,1,19,19,9,9,106.0,1,0,0,1,0,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,102.0,1,38,38,9,9,99.6,1,0,0,1,0,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,140.0,1,38,19,9,5,130.0,0,0,1,1,0,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9773,1,1,138.0,1,3,1,2,3,135.9,1,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,1,9,4,150.0,1,0,0,1,1,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,Dropout +1,1,6,9147,1,1,127.0,1,1,19,1,6,120.0,1,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,0,0,0,1,1,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,137.0,1,38,38,4,8,126.5,1,0,0,1,0,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,1,19,4,4,132.6,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,130.0,1,1,1,4,9,150.0,0,0,0,1,1,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,146.0,1,3,1,1,3,149.2,1,0,0,1,0,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,129.0,1,38,38,6,6,118.5,1,0,0,1,0,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,131.0,1,19,3,3,2,126.1,1,0,0,1,0,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,Enrolled +1,39,1,9085,1,43,160.0,1,3,39,2,3,172.0,0,0,0,1,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,39,1,9670,1,1,133.1,1,1,1,4,4,112.9,0,0,0,1,0,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,Dropout +2,39,1,9003,1,1,150.0,1,37,37,9,6,140.0,0,0,0,1,1,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,127.0,1,37,38,9,7,115.8,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,133.1,1,1,37,5,9,143.0,1,0,1,1,0,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,9,138.4,1,0,1,1,0,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9070,1,1,125.0,1,1,1,4,4,132.0,0,0,0,0,0,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,5,9130,1,1,160.0,1,3,1,2,9,150.2,1,0,0,1,0,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,1,110.0,1,37,37,9,4,160.0,0,0,0,1,0,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,135.0,1,19,37,5,7,121.4,0,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9670,1,1,135.0,1,19,19,7,10,121.4,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,125.0,1,1,38,4,9,118.4,1,0,0,1,0,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,145.0,1,38,37,5,6,127.5,1,0,0,1,0,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,Graduate +1,43,3,171,1,1,140.0,1,37,38,7,7,143.4,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,134.0,1,37,19,9,10,141.4,1,0,0,1,0,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,130.0,1,29,38,9,8,122.0,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,109.0,1,19,19,4,9,104.1,1,0,1,0,0,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,116.0,1,34,34,0,0,127.0,1,0,0,1,1,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,3,8014,0,19,100.0,1,37,37,9,9,120.0,1,0,0,1,1,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9238,1,1,122.0,1,37,38,4,7,118.2,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,8014,0,1,100.0,1,12,5,9,4,116.5,0,0,1,0,0,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,122.0,1,19,19,193,194,112.6,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,42,3,9500,1,1,136.0,1,1,1,4,4,148.8,1,0,0,1,0,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,137.0,1,19,1,9,9,132.8,0,0,0,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,130.0,1,37,37,6,6,111.9,0,0,1,1,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9254,1,1,116.0,1,19,38,5,5,116.0,1,0,0,1,0,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9500,1,1,131.0,1,1,3,3,2,121.2,1,0,0,1,0,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,141.0,1,1,19,3,3,131.9,1,0,0,1,0,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,120.0,1,37,37,9,10,122.6,0,0,0,1,0,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,Dropout +1,18,5,9119,1,1,136.0,1,3,2,2,3,125.2,1,0,0,1,1,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,125.0,1,19,1,7,4,122.6,0,0,0,1,1,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,139.0,1,19,37,9,9,131.5,1,0,0,1,0,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,Graduate +1,5,1,9853,1,1,119.0,1,1,38,5,8,118.3,1,0,0,1,0,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9773,1,1,125.0,1,1,38,5,6,115.9,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,126.0,1,1,19,4,8,120.1,1,0,0,1,0,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,Graduate +1,17,1,9085,1,1,125.0,1,1,37,4,9,117.0,1,0,0,1,0,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,135.0,1,19,38,7,5,121.0,0,0,0,1,0,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,138.0,1,38,37,3,3,133.1,0,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,148.0,1,19,37,9,5,130.9,0,0,0,0,1,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,145.0,1,12,1,4,10,139.8,1,0,0,1,0,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,118.0,1,37,37,3,5,110.0,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9147,1,1,99.0,1,3,1,3,3,99.7,1,0,1,0,0,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,17,2,9556,1,1,137.0,41,1,1,7,7,124.4,1,0,0,1,0,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,Graduate +1,17,3,9853,1,1,133.1,1,34,34,0,0,115.0,0,0,0,1,0,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,123.0,1,37,38,9,9,113.9,1,0,1,0,0,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,1,4,9238,1,1,125.0,1,19,38,9,6,114.9,1,0,1,1,0,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,Enrolled +1,18,1,8014,0,1,137.0,1,1,1,4,3,123.0,0,0,1,1,0,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,Graduate +1,43,1,8014,0,1,131.0,1,19,37,8,5,125.0,0,0,0,1,1,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9147,1,3,150.0,1,6,27,1,7,150.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,9,4,117.0,0,0,0,1,0,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,133.1,1,37,1,9,10,100.0,0,0,0,1,0,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,Dropout +1,1,3,9670,1,1,121.0,1,1,19,5,5,111.9,1,0,0,1,1,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,133.1,1,1,19,3,3,112.0,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,43,1,9991,0,1,140.0,1,1,1,6,6,100.0,0,0,0,1,1,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,Graduate +2,42,1,9556,1,1,110.0,1,37,37,9,6,140.0,0,0,0,1,1,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,130.0,1,1,1,4,4,124.8,0,0,0,1,0,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,138.0,1,38,37,9,6,126.8,1,0,0,1,1,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,127.0,1,2,37,9,9,115.8,1,0,1,0,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9085,1,1,170.0,1,1,1,4,5,166.6,0,0,1,0,0,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,130.0,1,1,1,4,4,130.0,1,1,0,1,1,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,3,1,2,8,100.0,1,0,0,1,1,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9670,1,1,106.0,1,3,1,2,3,105.7,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,43,1,9556,1,1,140.0,1,37,37,9,9,128.0,1,0,0,0,0,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,127.0,1,1,4,9,10,121.8,0,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,134.0,1,1,1,9,6,130.9,0,0,1,1,0,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,133.1,1,37,37,7,4,132.0,0,0,0,1,1,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,110.0,1,12,3,5,2,100.0,1,0,0,1,1,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,6,9238,1,1,113.0,1,1,38,194,163,112.3,1,0,1,1,0,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,118.0,1,19,19,5,7,121.2,0,0,0,1,1,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,51,1,9773,1,1,158.0,1,1,19,8,8,117.1,1,0,0,1,1,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,Dropout +1,17,1,9070,1,1,119.0,1,37,38,9,8,124.6,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,111.0,1,19,19,3,10,117.7,0,0,0,1,0,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,140.0,1,3,1,5,9,130.0,0,0,0,1,1,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,122.0,1,3,1,9,10,114.7,0,0,0,1,0,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,Graduate +2,39,1,9238,1,19,133.1,1,1,2,4,6,130.0,0,0,0,1,0,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9500,1,1,131.0,1,38,1,5,7,118.4,1,0,0,1,0,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Dropout +1,43,5,9853,1,1,150.0,1,34,34,0,0,150.2,1,0,0,0,0,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,140.0,1,37,19,9,9,166.0,1,0,1,1,1,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9085,1,1,133.1,1,19,37,9,6,130.0,1,0,0,1,0,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,Graduate +1,1,4,9147,1,1,120.0,1,38,38,5,10,111.3,0,0,0,1,1,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,Enrolled +1,1,5,9500,1,1,125.0,1,3,19,4,8,120.3,1,0,0,1,0,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,Enrolled +1,17,2,9556,1,1,136.0,1,1,1,9,9,128.3,0,0,0,1,0,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,133.1,1,38,19,5,5,128.0,0,0,0,1,0,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,9,133.1,1,37,37,5,3,110.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9254,1,1,118.0,1,19,1,4,4,115.9,1,0,0,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,134.0,1,19,37,7,7,136.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,130.0,1,37,37,9,7,119.9,0,0,0,1,0,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9773,1,1,153.0,1,34,34,99,99,133.1,1,0,1,1,0,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,10,133.1,1,12,36,90,90,128.2,0,0,0,0,1,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,1,9991,0,1,112.0,1,43,40,2,2,106.4,0,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,122.0,1,3,3,2,2,122.0,1,0,0,1,0,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,137.0,1,1,19,4,3,121.3,1,0,0,1,1,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,19,133.1,1,3,1,2,5,103.0,0,0,0,1,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,136.0,1,1,19,9,9,131.5,0,0,0,1,0,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,154.0,1,1,3,4,2,164.9,0,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,6,9147,1,1,129.0,1,19,1,9,4,122.0,1,0,0,1,1,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,132.0,1,19,19,9,7,128.0,1,0,0,1,1,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,Graduate +2,39,1,9773,1,19,133.1,1,19,19,9,4,131.0,0,0,1,0,1,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,Dropout +4,39,1,8014,0,1,160.0,1,37,37,5,5,126.0,0,0,0,1,0,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,16,2,9238,1,1,126.0,1,38,37,3,5,127.1,1,0,0,1,0,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9254,1,1,111.0,1,1,19,5,7,109.3,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,133.1,1,37,37,3,10,108.0,0,0,0,1,0,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,Graduate +1,1,4,9773,1,1,140.0,22,1,37,3,9,130.5,1,0,0,1,0,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,140.0,1,1,1,9,5,140.0,0,0,0,1,0,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,Dropout +1,17,3,9670,1,1,125.0,1,1,3,4,3,117.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,150.0,1,37,38,9,9,131.5,1,0,0,1,0,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,5,100.0,0,0,0,0,1,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9773,1,1,133.0,1,19,19,7,7,134.4,1,0,0,1,1,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,135.0,1,19,37,9,9,128.0,1,0,0,1,0,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,5,9670,1,1,115.0,1,1,19,5,5,117.1,0,0,0,1,0,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,Enrolled +1,51,1,9003,1,39,130.0,1,1,19,4,4,120.0,1,0,1,0,1,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,Dropout +1,1,3,9773,1,1,117.0,1,38,19,7,7,110.4,1,0,1,0,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9773,1,1,127.0,1,19,38,8,3,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,38,37,1,1,115.0,1,0,0,1,0,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,18,2,9853,1,1,123.0,1,1,3,9,2,123.7,1,0,1,0,0,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,Dropout +1,1,3,9853,1,1,122.0,1,3,3,2,2,112.6,1,0,0,1,0,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,17,3,9254,1,1,127.0,1,37,37,9,6,123.5,1,0,0,1,0,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,141.0,1,37,37,9,9,136.3,1,0,0,1,1,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,140.0,1,3,3,2,2,124.3,0,0,0,0,1,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,125.0,1,1,3,4,1,121.9,1,0,0,1,1,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,Dropout +1,17,1,9070,1,1,134.0,1,1,1,5,0,133.3,1,0,0,1,1,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9670,1,1,127.0,22,37,37,9,9,127.0,1,0,0,1,1,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,Graduate +1,42,1,9853,1,1,120.0,1,37,38,3,3,113.7,0,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,3,9670,1,1,121.0,1,3,19,2,8,122.4,1,0,0,1,1,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,Enrolled +1,1,3,171,1,1,139.0,1,19,19,5,3,128.2,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,42,1,9085,1,1,100.0,1,1,38,4,9,100.0,1,0,0,1,0,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,10,1,9500,1,1,140.0,24,3,3,2,9,140.0,1,0,1,0,0,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,132.0,1,37,19,9,9,131.0,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,124.0,1,1,1,4,4,127.9,1,0,0,1,1,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9119,1,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9773,1,1,117.0,1,38,38,9,9,111.1,0,0,1,1,1,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,19,133.1,1,19,37,9,9,149.4,0,0,0,0,1,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,1,1,161.9,0,0,0,1,1,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,140.0,1,38,37,4,7,130.0,1,0,0,0,0,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,43,1,171,1,1,145.0,1,19,38,9,9,100.0,0,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9773,1,1,120.0,1,37,38,9,3,155.5,0,0,0,1,1,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,121.8,0,0,0,0,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9130,1,3,140.0,1,5,4,2,0,140.0,0,0,1,0,0,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,Dropout +1,51,1,171,1,1,128.0,1,2,1,3,3,131.2,1,0,0,1,1,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,12,110.0,1,37,37,7,9,120.0,0,0,0,1,0,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,150.0,1,2,3,3,2,140.8,0,0,0,1,0,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,Enrolled +1,43,1,9070,1,1,125.0,1,19,19,7,8,133.4,1,0,0,1,1,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,Enrolled +1,1,5,171,1,1,160.0,1,1,1,4,4,139.7,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,1,120.0,1,1,38,9,9,150.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,154.0,1,19,19,3,3,142.0,0,0,0,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9254,1,1,110.0,1,4,19,4,3,114.8,1,0,0,0,1,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9119,1,1,140.0,1,34,34,9,9,140.0,0,0,0,0,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,125.0,1,1,1,4,2,134.1,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9254,1,40,130.0,1,1,1,3,6,130.0,0,0,0,1,0,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9254,1,1,122.0,1,37,37,9,3,124.5,1,0,0,1,0,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,130.0,1,1,3,9,2,128.6,1,0,0,1,0,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,Graduate +1,17,4,9670,1,1,122.0,1,3,1,2,3,119.6,1,0,0,1,1,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,Graduate +1,44,3,9085,1,39,150.0,1,1,19,4,1,150.0,1,0,0,1,0,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,19,37,9,9,130.0,1,0,0,1,1,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,133.1,1,38,19,4,7,98.0,1,0,0,1,1,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,Enrolled +1,17,2,9556,1,1,125.0,1,38,19,7,7,121.5,1,0,0,1,0,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,Dropout +2,1,4,9500,1,1,143.0,1,38,38,5,5,128.7,1,0,0,1,0,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,1,100.0,1,1,19,4,8,122.0,0,0,0,1,0,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,Graduate +1,51,1,9500,1,1,170.0,1,1,1,4,10,125.0,0,0,0,1,1,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,Graduate +1,18,4,9500,1,1,137.0,1,3,1,3,4,126.7,1,0,0,1,0,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,19,133.1,1,38,38,9,8,106.0,1,0,0,1,1,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,40,130.0,1,19,1,3,4,152.0,1,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9085,1,39,140.0,1,1,39,3,9,140.0,1,0,0,1,0,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9773,1,1,133.1,1,3,1,4,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +2,43,1,9853,1,1,110.0,1,37,37,7,7,100.0,0,0,0,1,1,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,Graduate +1,7,1,9119,1,3,120.0,1,19,19,1,1,120.0,0,0,0,0,1,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,1,130.0,1,34,34,99,99,114.8,0,0,0,1,0,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,140.0,1,37,3,9,10,172.0,0,0,0,1,1,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,Enrolled +1,17,2,9670,1,1,123.0,1,34,37,0,0,114.6,1,0,1,0,0,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,Dropout +1,43,2,9500,1,1,136.0,1,19,1,9,10,124.1,0,0,0,1,1,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,116.0,1,1,1,1,1,110.8,1,0,0,1,0,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9003,1,1,133.1,1,37,37,4,7,130.0,0,0,1,0,1,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,Dropout +1,1,3,9085,1,1,158.0,1,1,19,9,9,153.6,1,0,0,1,0,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,Graduate +1,17,4,9773,1,1,121.0,1,1,19,9,8,120.3,1,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,5,3,9085,1,1,141.0,1,1,19,7,5,128.8,1,0,0,1,0,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,Enrolled +1,18,4,9556,1,1,127.0,1,1,38,4,7,121.8,1,0,0,1,0,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,110.0,1,34,34,0,0,114.6,1,0,0,1,0,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9085,1,1,128.0,1,38,19,8,8,117.2,0,0,0,1,1,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,143.0,1,1,38,3,3,133.2,1,0,0,1,0,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,Graduate +1,1,4,9853,1,1,134.0,1,19,1,5,9,127.4,1,0,0,1,0,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Enrolled +1,1,1,9670,1,1,133.1,1,3,1,1,7,155.0,0,0,0,1,0,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,114.0,1,19,38,9,7,129.1,0,0,0,1,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,149.0,1,19,37,7,4,134.3,0,1,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,130.0,1,1,38,3,5,128.6,1,0,0,1,1,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,42,1,9147,1,1,139.0,1,3,38,2,5,112.3,1,0,0,1,0,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,Enrolled +1,1,3,9773,1,1,130.0,1,19,19,9,9,123.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,38,38,9,5,100.0,0,0,0,1,0,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,Enrolled +6,39,1,8014,0,1,133.1,1,37,1,9,7,114.8,0,0,0,1,0,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,121.0,1,1,38,4,9,114.4,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,18,1,9238,1,1,122.0,1,38,38,9,7,114.7,0,0,1,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9773,1,1,120.0,1,1,1,2,5,127.0,1,0,0,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,4,1,2,8,120.0,0,0,0,1,1,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,3,9500,1,1,143.0,1,38,1,9,5,133.8,1,0,0,1,0,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,130.0,1,1,19,9,7,133.8,0,0,1,1,0,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,Graduate +2,39,1,9556,1,1,100.0,1,37,37,9,9,120.0,0,0,0,1,0,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,133.1,1,1,19,5,4,102.5,0,0,0,1,0,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9003,1,1,111.0,1,1,3,4,2,162.4,0,0,1,0,1,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,133.1,1,19,1,9,3,107.0,1,0,0,1,0,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,128.0,1,19,1,4,4,124.3,1,0,0,1,1,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,140.0,1,36,14,9,10,130.0,1,0,0,1,1,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,150.0,1,38,19,7,10,134.6,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9070,1,1,134.0,1,34,1,5,7,129.8,1,0,0,1,0,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,150.0,1,37,37,9,3,150.0,1,0,0,1,1,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,Dropout +2,39,1,9238,1,1,126.6,1,38,38,9,7,107.5,0,0,1,1,0,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,120.0,1,37,37,9,7,106.8,0,0,0,1,0,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9254,1,1,117.0,1,1,1,5,5,116.3,1,0,0,1,1,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,130.0,1,19,19,5,5,157.0,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9556,1,1,133.1,1,44,40,2,2,115.5,0,0,0,1,0,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,133.1,1,3,1,2,4,125.0,0,0,0,1,1,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,9,9,100.0,0,0,0,0,1,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9500,1,1,141.0,1,37,1,9,4,127.3,1,0,0,1,0,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,117.0,1,38,38,175,183,113.2,1,0,1,1,0,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,133.1,1,37,37,7,7,124.5,0,0,0,0,1,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,Dropout +1,17,2,9070,1,1,133.1,1,37,38,9,10,178.0,1,0,0,1,1,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,19,9,9,115.0,1,0,0,1,1,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,146.0,1,1,1,3,4,128.2,0,0,1,1,0,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,4,9070,1,1,128.0,1,1,1,9,10,136.1,1,0,1,0,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,Dropout +5,39,1,9500,1,3,140.0,1,37,38,9,9,160.0,0,0,0,1,0,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,8,121.0,0,0,1,0,0,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,140.0,1,2,1,2,3,140.0,1,0,0,1,0,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,3,9670,1,1,126.0,1,37,37,0,0,136.5,1,0,0,1,0,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,140.0,1,19,37,9,9,130.2,1,0,0,1,0,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,1,3,1,2,133.0,0,0,0,1,0,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,136.0,1,19,38,9,9,121.7,1,0,0,1,1,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,4,9085,1,1,106.0,1,37,1,3,9,106.0,0,0,0,1,0,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,Enrolled +1,1,3,9500,1,1,135.0,1,1,37,7,7,120.5,1,0,0,1,0,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,115.0,1,19,19,7,7,115.0,1,0,0,1,0,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9238,1,1,160.0,1,38,1,9,3,124.0,0,0,1,1,1,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,129.0,1,38,38,5,5,120.8,1,0,0,1,0,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,160.0,41,37,19,9,9,160.0,0,0,0,1,0,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,132.0,1,1,19,7,5,129.9,1,0,0,1,1,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,136.0,1,37,38,9,8,139.2,1,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,127.0,1,19,37,9,7,121.3,1,0,0,1,0,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9119,1,1,142.0,1,1,38,4,3,129.8,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,5,8,133.2,0,0,0,0,1,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,Dropout +1,1,1,9147,1,1,150.0,1,1,19,5,5,137.8,1,0,0,1,1,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,135.0,1,3,1,2,4,129.8,1,0,0,1,1,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,Graduate +1,43,2,9773,1,1,132.0,1,19,19,0,0,127.1,0,0,0,1,1,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,3,9500,1,1,140.0,1,3,2,3,3,126.4,1,0,0,1,0,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,Dropout +2,39,2,9119,1,19,133.1,1,37,37,7,7,118.0,0,0,0,0,1,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,110.0,1,3,4,2,2,110.0,1,0,0,1,1,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,Dropout +2,39,1,9500,1,38,133.1,1,37,37,9,3,146.6,0,0,0,1,1,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,146.0,1,1,3,4,1,135.2,1,0,0,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,3,5,2,2,135.8,0,0,1,1,1,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9773,1,19,100.0,1,37,37,0,0,163.5,0,0,1,0,1,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,7,113.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,143.0,1,3,3,9,7,129.0,1,0,0,1,1,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,Graduate +1,1,2,9853,1,1,117.0,1,1,38,4,9,109.7,1,0,0,1,0,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9130,1,2,133.1,6,42,1,4,9,100.0,0,0,0,1,1,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,115.8,0,0,1,0,1,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9773,1,1,167.0,1,38,38,6,7,153.0,1,0,0,1,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,51,1,9238,1,1,141.0,1,1,1,5,9,125.0,0,0,0,1,1,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,4,9500,1,1,132.0,1,38,19,5,7,125.5,0,0,0,1,0,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,Graduate +1,1,1,9119,1,1,132.0,1,1,12,3,3,133.1,1,0,0,1,1,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,149.0,1,1,1,4,4,129.3,1,0,0,1,1,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,142.5,0,0,0,1,0,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,Enrolled +1,1,6,9773,1,1,133.1,1,1,37,3,3,100.0,1,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,138.0,1,37,37,9,6,145.0,1,0,0,1,0,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,19,19,3,6,124.3,1,0,0,1,0,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,135.0,1,37,37,9,7,132.6,1,0,0,1,0,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,159.0,1,34,26,0,6,160.1,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,133.1,1,37,37,6,8,100.0,0,0,1,1,0,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9070,1,1,153.0,1,3,3,1,2,146.7,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,43,1,171,1,2,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,141.0,1,19,19,9,8,142.8,0,0,0,1,0,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,39,2,9556,1,1,130.0,1,19,19,4,5,100.0,0,0,0,1,1,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,120.0,1,38,19,3,5,120.0,0,0,0,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,2,9147,1,1,120.0,1,37,37,9,9,104.0,0,0,0,0,1,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,150.0,1,38,38,9,9,132.0,1,0,0,1,0,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,142.0,1,38,38,9,9,132.9,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9085,1,1,160.0,1,4,19,2,5,162.1,1,0,0,1,0,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,8,130.2,1,0,0,1,0,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,118.0,1,1,1,9,9,111.0,0,0,0,0,1,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,119.0,1,37,37,10,6,119.7,1,0,0,1,0,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,Enrolled +1,17,2,171,1,1,137.0,1,1,1,4,1,143.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,18,3,9085,1,1,149.0,103,1,1,9,9,132.2,1,0,0,1,0,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,130.0,1,37,37,90,90,125.1,0,0,0,1,0,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,Graduate +4,17,5,8014,0,1,100.0,1,19,19,90,90,107.0,0,0,0,1,0,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,19,133.1,1,38,19,9,10,142.7,0,0,1,1,1,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,139.0,1,19,37,5,5,125.5,0,0,0,1,0,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,133.0,1,4,1,5,5,131.6,0,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,148.0,1,19,19,9,3,125.0,1,0,0,1,0,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,110.0,1,37,37,9,9,110.3,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,53,1,9003,1,42,130.0,1,38,38,9,9,130.0,1,0,1,1,1,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,Enrolled +1,1,4,9070,1,1,140.0,1,4,19,2,10,125.0,1,0,0,1,1,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9003,1,39,140.0,1,19,1,5,5,140.0,0,0,0,1,0,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,Enrolled +1,1,4,9070,1,1,136.0,1,37,37,9,8,136.7,1,0,0,1,0,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,1,5,9773,1,1,125.0,1,37,3,5,2,126.1,1,0,0,1,1,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,8014,0,1,126.0,1,37,38,9,10,119.4,0,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,123.0,1,1,3,2,2,118.8,0,0,0,1,1,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9500,1,1,144.0,1,1,37,9,9,127.5,1,0,0,1,0,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,125.0,1,38,37,8,7,131.7,1,0,0,1,1,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,144.0,1,37,37,8,8,138.4,0,0,0,1,0,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,160.0,1,37,37,3,4,97.0,0,0,0,1,0,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,37,38,9,9,125.0,1,0,0,1,0,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,117.0,1,37,37,9,9,109.3,0,0,0,0,0,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,3,130.0,1,37,37,9,9,146.2,0,0,0,1,0,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,150.0,1,37,37,9,9,130.3,0,0,0,1,0,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,Graduate +2,39,2,8014,0,19,100.0,1,37,37,4,7,100.0,0,0,1,1,0,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,38,133.1,1,38,37,4,8,95.5,0,0,0,1,1,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,120.7,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9119,1,19,120.0,1,37,37,9,4,98.6,0,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9130,1,1,120.0,1,19,37,1,9,116.1,1,0,0,1,1,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9500,1,1,136.0,1,1,1,4,9,128.5,1,0,0,1,0,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,132.0,1,38,37,7,7,131.3,1,0,0,1,0,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,115.0,1,38,38,9,8,108.4,1,0,0,1,0,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,120.0,1,37,37,9,9,98.7,0,0,0,1,1,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,120.0,1,37,37,9,9,155.8,0,0,0,1,1,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,151.0,1,19,1,5,0,144.4,1,0,0,1,0,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,Graduate +1,43,2,9147,1,1,131.0,1,19,37,5,9,123.7,1,0,0,1,0,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,Enrolled +1,17,4,9085,1,1,128.0,1,38,37,4,9,117.9,1,0,0,1,0,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,8014,0,12,133.1,1,37,1,9,10,112.5,0,0,0,1,1,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,19,133.1,1,37,37,4,8,140.0,0,0,0,1,0,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,7,1,9147,1,2,150.0,1,3,37,2,5,150.0,1,0,1,0,0,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,2,9147,1,1,102.0,1,37,38,191,143,101.7,1,0,0,1,0,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,128.0,1,19,1,4,1,118.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,133.1,1,19,1,4,8,144.3,0,0,0,1,1,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,5,9254,1,1,128.0,1,19,1,7,10,116.5,1,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,140.0,1,19,19,7,5,135.1,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,18,2,9500,1,1,129.0,1,38,37,5,5,119.0,1,0,0,1,0,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,3,1,3,3,131.5,1,0,0,1,0,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,143.0,1,3,3,2,5,144.8,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,127.0,1,37,37,9,8,123.2,1,0,0,1,0,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9500,1,1,125.0,1,37,37,9,7,123.6,1,0,0,1,0,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,138.0,1,1,38,3,9,123.0,1,0,0,1,0,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,139.0,1,38,38,9,9,145.0,1,0,0,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,121.0,1,37,19,6,7,116.8,1,0,0,1,0,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,2,9085,1,1,123.0,1,1,19,4,9,113.6,1,0,0,1,0,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,17,6,9773,1,1,126.0,1,1,19,5,5,119.0,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,4,9119,1,1,139.0,1,37,19,9,4,133.1,1,0,0,1,1,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,158.0,1,1,38,3,6,155.2,0,0,0,1,1,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,8014,0,1,133.1,1,19,1,1,1,118.0,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,136.0,1,22,30,0,8,135.7,1,0,0,1,0,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,120.0,1,37,37,9,9,110.0,0,0,0,0,1,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,124.0,1,19,19,7,9,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,Enrolled +5,7,1,9991,0,2,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,4,9238,1,1,123.0,1,38,1,4,10,129.0,1,0,0,1,0,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,4,9119,1,1,135.0,1,38,37,5,7,126.6,1,0,0,1,1,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,129.0,1,5,3,5,7,124.8,1,0,0,1,0,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,Graduate +1,17,5,9147,1,1,127.0,1,1,38,4,5,124.6,1,0,0,1,0,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,135.0,1,1,1,4,4,118.5,0,0,0,1,0,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,171,1,1,142.0,1,3,1,2,6,139.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9147,1,1,133.1,1,19,19,9,9,119.8,0,0,0,1,1,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,123.0,1,1,37,9,9,132.1,0,0,0,1,0,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9853,1,1,115.0,1,3,37,2,5,108.7,1,0,0,1,0,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,12,133.1,1,37,34,90,90,110.7,1,0,0,1,0,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,155.0,1,4,3,1,1,144.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9254,1,1,105.0,1,1,19,9,6,106.1,1,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,150.0,1,19,19,3,4,135.0,0,0,0,1,0,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,152.0,1,37,37,5,7,136.3,0,0,0,1,0,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,34,34,0,0,120.5,1,0,0,1,1,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,140.0,1,1,37,4,5,123.6,1,0,0,1,0,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,120.0,1,37,37,9,9,150.1,1,0,0,1,1,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,144.0,1,37,38,9,9,126.9,0,0,0,1,0,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,120.0,1,37,37,9,9,128.2,0,0,0,0,1,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,Dropout +1,18,2,9147,1,1,115.0,1,1,37,5,5,108.7,1,0,0,1,0,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,140.0,1,19,19,4,4,140.0,1,0,0,0,1,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,1,1,3,7,140.0,1,0,0,1,0,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9500,1,1,129.0,1,19,19,5,5,119.6,1,0,0,1,0,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,Graduate +1,17,6,9773,1,1,141.0,1,37,37,5,5,127.7,1,0,0,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,137.0,1,19,37,4,7,126.3,1,0,0,1,0,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,1,168.0,1,1,41,9,3,153.9,0,0,1,0,1,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,133.0,1,37,37,9,9,121.8,1,0,0,1,0,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,119.0,1,2,1,4,3,113.1,1,0,0,1,0,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,142.0,1,38,19,141,171,115.0,0,0,0,1,0,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,4,9773,1,1,138.0,1,37,19,5,7,133.5,1,0,0,0,0,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +2,7,1,8014,0,3,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,133.0,1,3,19,2,5,130.8,1,0,0,1,0,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,137.0,1,38,19,152,171,131.1,1,0,0,1,0,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9119,1,1,130.0,1,1,38,3,3,129.3,0,0,0,1,1,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Graduate +1,43,1,9773,1,1,126.0,1,1,37,3,0,110.0,0,0,1,1,0,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,116.0,1,1,12,5,8,110.4,1,0,0,1,1,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,1,1,4,10,110.0,0,0,1,1,0,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,5,9238,1,1,134.0,1,38,37,9,9,126.0,0,0,1,0,0,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,Dropout +2,39,1,9147,1,1,130.0,1,1,19,9,9,109.9,0,0,0,0,0,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9085,1,1,133.1,41,37,37,9,9,109.6,0,0,0,1,0,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,1,140.0,0,0,0,1,1,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,Enrolled +2,39,1,9991,0,19,133.1,1,38,38,90,90,121.7,1,0,0,1,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,143.0,1,1,3,4,7,129.7,1,0,0,1,0,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,133.0,1,1,19,9,6,121.5,1,0,0,1,0,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,133.0,1,38,37,9,9,125.3,1,0,0,1,0,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,Graduate +1,42,1,9991,0,1,160.0,1,1,2,4,3,120.0,0,0,0,1,0,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,Graduate +2,39,2,9556,1,1,133.1,105,1,3,9,2,152.8,1,0,0,1,0,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,123.0,1,1,1,4,6,118.8,1,0,0,1,0,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,122.0,1,3,19,2,3,112.9,0,0,0,1,0,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,Graduate +1,1,5,9853,1,1,123.0,1,1,12,4,9,113.2,1,0,0,1,0,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,140.0,1,37,37,9,9,141.5,1,0,1,0,0,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,129.0,1,19,19,4,8,127.3,1,0,0,1,0,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,1,130.0,1,37,37,6,6,110.0,0,0,0,1,0,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,Enrolled +4,39,1,8014,0,19,133.1,1,37,37,9,9,95.0,0,0,1,0,0,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9853,1,1,127.0,1,37,19,9,8,137.5,1,0,0,1,0,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,142.0,1,38,37,5,7,128.8,1,0,0,1,0,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,Graduate +1,17,2,9147,1,1,142.0,1,19,19,4,8,127.3,0,0,0,1,0,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +3,39,1,9991,0,1,120.0,1,37,1,9,2,170.0,0,0,0,1,1,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,138.0,1,19,37,4,9,141.0,0,0,0,1,1,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,132.0,1,1,38,9,9,120.1,1,0,0,1,1,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,140.0,1,1,1,2,7,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,121.0,1,37,19,9,10,113.7,0,0,0,1,0,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,Enrolled +1,39,1,8014,0,38,133.1,1,1,1,4,4,107.5,0,0,1,0,1,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,150.0,1,1,1,5,1,155.6,0,0,0,1,0,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,150.0,1,37,37,9,6,131.1,0,0,0,1,0,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,100.0,1,3,19,1,1,117.9,0,0,0,0,1,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,2,9991,0,1,150.0,1,37,37,9,9,120.0,0,0,0,1,0,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,150.0,1,1,38,4,9,150.0,0,0,0,1,1,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,Enrolled +2,43,1,9130,1,9,133.1,1,34,34,0,0,128.2,0,0,0,1,1,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,141.0,1,1,1,90,3,127.8,0,0,0,1,0,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,116.0,1,3,3,0,1,108.7,1,0,0,1,1,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,Dropout +2,39,1,9500,1,1,140.0,1,19,19,9,7,110.5,0,0,0,1,0,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9254,1,19,133.1,1,34,34,0,0,120.0,0,0,1,0,1,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,133.1,1,37,37,191,172,115.2,0,0,0,1,0,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,6,160.0,0,0,0,1,0,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,133.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9556,1,1,131.0,1,19,38,9,7,128.5,0,0,0,1,0,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,160.0,1,37,38,9,7,161.0,1,0,0,1,0,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,136.0,1,3,3,1,2,152.5,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9853,1,1,114.0,1,19,37,5,5,109.5,1,0,0,1,0,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,150.0,1,37,37,9,7,122.5,0,0,0,1,1,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,Dropout +1,44,1,9991,0,39,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,8014,0,42,140.0,1,19,37,134,193,138.0,1,0,1,1,0,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,127.0,1,2,19,3,9,121.5,0,0,0,1,1,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,133.1,1,19,19,3,3,125.3,0,1,0,1,1,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,4,9670,1,1,125.0,1,4,19,2,5,118.0,1,0,0,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,Graduate +2,42,1,9070,1,1,170.0,1,37,25,0,4,148.5,0,0,0,1,1,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,Dropout +1,17,5,9254,1,1,121.0,1,1,19,4,7,116.5,1,0,0,0,1,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,120.0,1,19,38,5,9,130.2,0,0,0,1,0,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,140.0,1,19,37,9,9,140.7,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,140.0,1,19,19,5,9,131.3,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,42,1,9119,1,1,140.0,1,3,3,3,2,133.6,1,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,8014,0,1,150.0,1,19,2,4,6,148.0,0,0,0,1,0,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,127.0,1,37,2,9,4,123.2,1,0,0,1,0,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,119.0,1,19,37,9,9,119.4,1,0,0,1,0,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,132.0,1,2,1,4,1,127.8,0,0,0,1,1,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,Dropout +1,42,1,9119,1,1,136.0,1,1,37,5,5,117.5,0,0,0,1,1,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9991,0,1,122.0,1,37,37,9,3,113.6,0,0,0,1,1,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,5,6,137.4,0,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,128.0,1,19,19,5,4,116.5,0,0,0,1,0,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,139.0,1,1,38,6,6,143.6,1,0,1,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9130,1,1,154.0,1,3,3,2,2,137.2,1,0,1,1,1,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,6,9500,1,1,142.0,1,19,37,4,9,131.9,1,0,0,1,0,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Dropout +1,1,2,9773,1,1,131.0,1,19,37,9,10,121.9,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +2,7,1,9130,1,3,120.0,1,3,3,1,1,128.2,0,0,0,1,0,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,19,133.1,1,37,37,9,9,150.3,0,0,0,1,0,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,125.0,1,37,37,5,5,124.0,0,0,0,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,135.0,1,37,19,9,9,125.2,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,9,124.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,175.0,1,3,38,2,10,157.5,1,0,0,1,0,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,139.0,1,1,1,4,10,140.7,0,0,0,1,1,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,Dropout +1,1,4,9500,1,1,128.0,1,1,1,4,10,125.2,1,0,0,1,1,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,150.0,1,1,37,1,1,131.5,1,0,0,1,0,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,168.0,1,38,1,9,10,166.0,1,0,0,1,0,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,Graduate +1,51,1,9070,1,1,125.0,1,42,3,125,124,130.0,1,0,0,1,1,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,135.0,1,1,38,4,5,127.5,1,0,0,1,0,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,Graduate +1,18,1,9119,1,1,148.0,1,3,19,3,5,147.7,0,0,0,1,1,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9773,1,1,130.0,109,19,1,9,9,126.9,1,0,0,1,0,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,125.0,1,19,38,3,7,114.9,0,0,0,1,0,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,Graduate +1,7,1,9119,1,3,130.0,1,37,37,9,9,130.0,0,0,0,0,1,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9853,1,1,130.0,1,37,19,7,3,140.0,0,0,1,1,0,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,112.0,1,3,1,3,5,111.0,0,0,0,1,0,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,37,38,193,181,125.9,0,0,0,1,0,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,Graduate +1,42,1,9119,1,1,120.0,1,34,34,0,0,128.2,1,0,0,1,1,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,19,133.1,1,37,37,9,9,117.2,0,0,0,1,0,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9147,1,1,131.0,1,19,38,9,7,132.4,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9003,1,1,180.0,1,1,1,4,8,179.6,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,5,9119,1,1,135.0,1,37,37,90,90,122.1,1,0,0,1,1,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.0,1,1,38,5,10,131.3,1,0,0,1,0,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,126.0,1,37,19,5,5,119.3,0,0,0,1,0,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,110.0,1,19,37,9,6,120.0,0,0,1,0,1,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9556,1,1,130.0,1,37,37,9,9,159.0,1,0,0,1,0,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,141.0,1,19,38,4,5,133.7,1,0,0,1,1,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,1,37,4,6,120.0,0,0,0,1,1,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9085,1,1,123.0,1,3,19,2,9,118.9,0,0,0,1,1,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,17,1,9991,0,1,140.0,1,38,37,6,7,127.3,0,0,0,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,151.0,1,3,1,2,1,129.8,1,0,0,1,1,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,113.0,1,37,37,0,6,128.2,0,0,0,0,0,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9070,1,1,117.0,1,1,37,4,7,127.9,1,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,145.0,1,19,19,9,7,136.6,0,0,0,1,0,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.0,1,34,37,4,9,134.4,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,9238,1,39,130.0,1,38,38,5,10,126.7,0,0,1,1,0,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9773,1,1,122.0,1,1,1,4,7,116.8,1,0,1,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,3,9147,1,1,124.0,1,1,1,5,3,116.7,1,0,0,1,1,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,38,1,9,4,123.2,0,0,0,1,0,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,Enrolled +1,39,1,9556,1,40,130.0,1,1,1,4,5,145.0,0,0,0,1,0,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,Enrolled +1,43,1,9147,1,1,127.0,25,1,5,9,10,124.2,1,0,0,1,1,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,43,1,9670,1,1,120.0,1,34,34,0,0,128.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9238,1,1,122.0,1,1,3,9,2,112.6,1,0,0,1,1,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,122.0,1,1,1,4,4,119.6,1,0,0,1,0,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,Enrolled +1,17,5,9670,1,1,125.0,1,1,19,9,7,119.4,1,0,0,1,0,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,146.0,1,19,37,9,7,153.0,1,0,0,1,0,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,108.0,1,38,38,7,7,115.0,1,0,1,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,133.1,1,1,1,3,9,138.0,1,0,0,1,0,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,140.0,1,37,37,9,5,140.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,19,133.1,1,2,1,2,4,100.0,0,0,0,1,1,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9147,1,1,129.0,1,38,37,3,5,132.9,1,0,0,1,0,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,149.0,1,3,2,2,5,151.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,135.0,1,19,4,9,2,143.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9147,1,1,158.0,1,19,37,9,7,130.0,1,0,0,1,0,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,Graduate +1,17,6,9556,1,1,122.0,1,1,1,4,5,117.1,1,0,0,1,0,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9556,1,12,133.1,1,34,34,99,99,100.5,0,0,0,1,0,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9003,1,1,123.0,1,37,37,9,9,110.0,0,0,1,0,0,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,138.0,1,3,3,2,2,127.5,1,0,0,1,0,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,Graduate +1,43,1,9500,1,1,121.0,1,38,19,5,5,115.4,1,0,0,1,0,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,Enrolled +1,17,4,9147,1,1,114.0,1,19,19,4,4,109.5,1,0,0,1,1,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,148.0,1,1,1,4,8,145.2,0,0,0,1,1,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,121.0,1,1,1,4,4,123.1,1,0,0,1,1,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,150.0,1,3,3,2,5,154.6,1,0,0,1,0,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,151.0,1,19,38,9,9,157.0,1,0,1,1,0,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,101.0,0,0,0,1,0,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,2,9254,1,1,127.0,1,3,19,3,10,130.9,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,146.0,1,1,1,9,8,149.5,1,0,0,1,1,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9130,1,6,133.1,1,1,29,4,90,123.3,1,0,0,1,0,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,3,3,7,146.5,1,0,1,1,1,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,Enrolled +1,7,1,8014,0,40,120.0,1,37,19,9,3,120.0,0,0,0,1,0,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9853,1,1,125.0,1,37,37,9,9,114.9,1,0,1,0,0,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,2,9773,1,1,140.0,1,1,1,4,3,131.6,0,0,0,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,142.0,1,1,19,9,9,136.1,0,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,113.0,1,1,1,4,4,106.7,1,0,0,1,0,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,130.0,1,1,2,4,2,130.0,0,0,0,1,1,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,39,1,9119,1,1,130.0,1,19,37,9,9,134.0,0,0,0,1,1,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,Enrolled +1,18,1,9500,1,1,123.0,1,37,37,3,3,118.0,1,0,0,1,0,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,Graduate +1,10,2,9085,1,1,163.3,22,19,1,4,9,163.3,0,0,0,1,0,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,5,135.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,136.0,1,4,5,2,2,126.2,0,0,0,1,1,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,150.0,1,1,37,4,8,150.0,1,0,0,0,0,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9085,1,3,140.0,1,19,20,4,90,140.0,1,0,0,1,0,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,43,1,9070,1,1,135.0,1,1,38,3,9,126.4,1,0,0,1,0,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,140.0,1,19,38,7,8,129.9,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,133.1,1,1,1,9,9,155.0,0,0,0,1,0,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,5,9773,1,1,122.0,1,38,38,7,7,123.1,1,0,0,0,0,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,117.0,1,1,1,9,9,109.3,1,0,0,1,0,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9500,1,1,130.0,1,1,38,9,9,125.1,1,0,0,1,0,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,Enrolled +1,1,2,9773,1,1,144.0,1,3,3,3,2,140.2,1,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,145.0,1,1,1,4,10,145.0,0,0,0,1,0,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,Dropout +1,51,1,9070,1,1,143.0,1,1,1,4,4,120.0,1,0,0,1,0,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,145.0,1,1,38,90,8,132.8,1,0,0,0,1,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9556,1,1,120.0,1,38,38,191,193,120.0,0,0,1,1,0,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,148.0,1,19,1,7,5,138.3,1,0,0,1,1,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,146.0,1,3,3,3,6,133.4,1,0,0,1,0,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,Graduate +1,17,1,9130,1,1,131.0,1,12,12,2,8,128.2,1,0,0,1,1,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,6,9556,1,1,115.0,1,19,2,5,3,112.2,1,0,0,1,0,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,Graduate +1,43,1,9556,1,1,126.0,1,2,3,3,2,100.0,0,0,0,1,0,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,Enrolled +1,17,1,9238,1,1,120.0,1,19,37,9,9,113.0,1,0,0,1,0,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,132.0,1,19,38,5,5,118.0,1,0,0,1,0,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,Graduate +2,1,1,9238,1,1,145.0,1,37,34,9,7,139.4,0,0,0,0,0,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,131.0,1,38,38,191,174,125.4,1,0,0,1,0,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,39,1,9119,1,1,120.0,1,37,38,9,10,145.4,0,0,1,1,1,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,Dropout +1,1,1,9130,1,1,138.0,1,4,5,2,2,123.0,1,0,0,1,0,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,127.0,1,5,3,4,4,122.8,1,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,136.0,1,1,1,4,4,127.0,1,0,0,1,0,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,Enrolled +1,17,3,9119,1,1,115.0,1,3,1,3,3,116.1,1,0,0,0,1,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,143.0,1,38,37,4,9,116.5,1,0,0,1,0,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,3,19,3,8,134.9,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,Graduate +1,44,1,9119,1,39,140.0,1,5,41,3,2,140.0,0,0,0,1,1,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,124.0,1,19,19,9,3,115.6,1,0,0,0,1,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9500,1,3,130.0,1,19,38,5,3,130.0,0,0,0,1,0,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,137.0,1,1,1,4,10,124.8,1,0,0,1,1,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,138.0,1,1,3,1,4,127.5,1,0,0,1,1,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,112.0,1,1,1,5,1,111.7,0,0,1,0,1,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,Dropout +1,1,4,9500,1,1,147.0,1,1,1,4,9,124.5,1,0,0,1,0,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,Graduate +1,7,1,9500,1,3,140.0,1,3,19,2,6,140.0,0,0,0,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,121.0,1,19,19,7,7,113.0,1,0,0,1,0,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,8014,0,1,96.0,1,3,1,3,9,100.0,0,0,0,1,0,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,152.0,1,1,38,4,5,144.7,0,0,0,1,0,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,Graduate +2,1,1,9070,1,1,127.0,1,12,19,9,9,123.2,0,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,Graduate +1,1,3,9070,1,1,147.0,1,34,37,5,7,135.8,1,0,0,1,0,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,7,1,9119,1,4,180.0,1,4,3,2,7,180.0,0,0,1,1,1,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,Enrolled +1,1,6,9500,1,1,129.0,1,37,19,9,7,127.8,1,0,0,1,0,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,100.0,1,37,37,7,7,160.0,1,0,0,1,0,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,127.0,1,19,1,5,5,117.6,1,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9003,1,1,110.0,1,1,1,9,4,120.0,0,0,1,0,1,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9773,1,1,143.0,11,19,19,4,9,133.9,1,0,0,1,1,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,160.0,1,37,37,7,7,156.1,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,43,2,9670,1,1,135.0,1,3,19,1,7,123.5,1,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,1,130.0,1,38,3,132,122,100.0,0,0,0,1,1,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,Enrolled +1,15,1,9238,1,1,150.0,26,19,1,9,9,146.5,1,0,1,0,1,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,Graduate +1,17,6,9119,1,1,129.0,1,37,13,4,90,117.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,3,130.0,1,3,3,3,10,147.6,0,0,0,1,1,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,171,1,1,145.0,1,1,1,3,3,140.1,1,0,0,1,0,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,43,3,9254,1,1,135.0,1,3,3,2,2,122.1,0,0,0,1,1,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,171,1,1,140.0,41,1,1,5,7,146.3,1,0,0,1,0,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9070,1,1,126.0,1,38,38,9,8,129.9,1,0,0,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Graduate +1,7,1,9070,1,3,120.0,1,4,4,2,2,120.0,0,0,0,1,1,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,Dropout +1,17,4,9070,1,1,144.0,1,38,1,9,9,137.4,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,125.0,1,3,3,2,3,118.0,1,0,0,1,1,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,Dropout +5,39,1,9238,1,1,130.0,1,19,38,9,10,146.0,0,0,0,1,1,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,5,107.5,0,0,0,1,0,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9773,1,1,130.0,1,1,19,1,3,161.5,0,0,0,1,1,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,140.0,1,19,19,9,4,127.8,1,0,0,1,1,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,113.0,1,1,37,1,10,116.5,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,Graduate +1,1,2,9238,1,1,145.0,1,1,19,4,8,121.4,0,0,0,1,0,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9003,1,19,133.1,1,19,37,9,10,120.0,0,0,1,1,0,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,Enrolled +1,1,1,9085,1,1,150.0,1,12,2,4,2,144.6,0,0,1,0,0,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,40,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,Dropout +1,17,5,9500,1,1,137.0,1,1,1,5,5,132.6,1,0,0,1,0,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,3,19,4,7,119.0,0,0,0,1,1,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,128.0,1,1,1,4,5,124.7,0,0,0,1,1,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,Enrolled +1,39,2,9670,1,19,133.1,1,34,34,0,0,100.0,1,0,0,0,1,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,Dropout +1,39,1,9556,1,1,120.0,1,19,19,4,5,122.8,0,0,0,1,0,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,Dropout +1,1,2,171,1,1,165.0,1,3,3,2,2,163.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,133.8,1,3,37,2,10,184.0,0,0,0,1,0,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,120.0,1,37,19,9,4,148.8,0,0,0,1,0,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,5,9500,1,1,151.0,1,1,1,9,9,127.8,0,0,0,1,0,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,131.0,1,38,19,7,7,125.3,1,0,0,1,0,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,128.0,1,1,1,9,6,120.3,0,0,0,1,1,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,118.0,1,3,1,5,10,113.5,1,0,0,1,0,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,140.0,1,37,37,7,9,126.8,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,117.0,1,38,37,9,9,113.5,1,0,0,1,0,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,135.0,1,19,19,9,9,122.8,1,0,0,1,1,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,151.0,1,37,37,9,7,147.5,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,1,3,4,4,147.5,1,0,0,1,0,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,128.0,1,38,37,9,9,124.9,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9085,1,1,124.0,1,3,19,2,3,113.9,1,0,0,1,0,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,120.0,1,3,19,4,7,119.7,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,171,1,1,147.0,1,1,12,4,4,148.4,1,0,0,1,1,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,136.0,1,19,1,9,8,123.4,1,0,0,1,0,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,123.0,1,3,1,2,5,112.9,0,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,2,9556,1,1,133.1,1,3,1,2,4,136.1,0,0,0,1,1,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,141.0,1,3,1,4,4,142.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9003,1,1,120.0,1,37,37,9,9,120.5,1,0,1,1,1,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,6,140.0,1,0,0,1,1,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,147.0,1,19,1,4,3,138.5,1,0,0,1,0,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,123.0,1,34,34,90,90,113.3,1,0,0,1,0,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,38,4,5,130.4,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,7,7,134.0,0,0,0,1,1,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,38,38,4,7,111.6,1,0,0,1,0,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9119,1,1,148.0,1,19,38,9,7,133.0,0,0,0,1,1,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,128.0,1,3,1,2,1,127.8,0,0,0,1,0,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,172.0,1,38,37,9,9,149.3,0,0,0,1,1,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,138.0,1,37,37,9,8,127.2,1,0,0,1,0,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,140.0,1,3,1,2,6,137.6,1,0,0,1,1,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,110.0,1,37,19,9,3,100.0,0,0,0,1,0,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,2,1,2,4,140.7,1,0,0,1,1,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,137.0,1,3,38,3,5,129.3,1,0,0,1,0,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,136.0,1,38,38,0,7,133.2,1,0,0,1,0,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,145.0,6,34,34,0,0,134.5,1,0,0,1,1,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,147.0,1,19,19,3,10,151.9,1,0,0,1,0,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,118.0,1,37,37,9,9,112.1,1,0,0,1,0,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,Dropout +1,43,1,9773,1,1,122.0,1,1,1,4,5,126.9,0,0,0,1,0,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,126.0,1,12,38,9,5,122.2,0,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,143.0,1,3,3,2,2,129.0,0,0,0,1,1,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,Graduate +1,39,1,9556,1,1,130.0,1,19,38,9,8,113.3,0,0,0,1,0,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,101.0,1,1,37,4,9,98.9,1,0,0,1,0,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,133.1,1,34,34,90,90,116.0,0,0,0,0,0,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,Dropout +2,39,1,9991,0,1,170.0,1,37,19,9,3,151.1,0,0,0,1,1,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,Graduate +2,17,5,9119,1,1,126.0,1,37,38,4,4,122.9,1,0,0,1,1,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,125.0,1,19,19,9,9,114.9,0,0,0,1,0,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,Graduate +1,18,3,9773,1,1,128.0,1,19,1,9,9,122.1,1,0,0,1,1,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,149.0,1,38,37,9,9,139.5,0,0,0,1,1,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,1,3,9,5,137.1,0,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,126.0,1,38,37,5,5,114.8,1,0,0,1,0,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9085,1,1,120.0,1,37,37,6,6,150.0,0,0,0,1,1,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,137.0,1,38,19,0,90,122.3,0,0,0,1,0,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9853,1,19,133.1,1,37,19,3,7,100.0,0,0,0,1,0,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,145.0,1,4,2,2,3,127.3,1,0,0,1,1,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,129.0,1,1,1,4,8,129.0,0,0,0,0,0,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,143.0,1,1,1,4,4,129.0,1,0,0,1,1,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,136.0,1,19,38,9,9,119.3,1,0,0,1,0,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,151.6,0,0,0,1,0,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,Enrolled +1,1,1,9238,1,1,108.0,1,19,38,9,9,107.3,0,1,0,1,0,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,134.0,1,1,1,2,7,128.4,1,0,0,1,0,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,Graduate +1,42,1,9119,1,1,120.0,1,3,1,2,9,108.2,1,0,0,1,1,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,Dropout +1,16,2,9500,1,1,127.0,1,2,38,4,9,119.0,1,0,0,1,0,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,131.0,1,1,1,9,9,122.0,0,0,0,1,0,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9070,1,3,133.1,1,3,5,2,2,120.0,1,0,0,1,0,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,150.0,1,19,19,5,5,132.8,1,0,0,1,0,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,Graduate +1,18,2,9670,1,1,121.0,1,37,38,4,1,111.9,1,0,0,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,108.0,41,3,3,9,9,107.0,0,0,1,0,0,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,150.0,1,34,19,0,4,152.8,1,0,0,1,1,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,18,2,9238,1,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,130.0,6,19,1,6,4,130.0,1,0,0,1,0,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,Enrolled +1,51,1,9119,1,1,136.0,1,1,19,3,5,133.6,1,0,0,1,1,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,Dropout +1,1,4,9773,1,1,155.0,1,3,19,1,4,149.8,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9070,1,1,124.0,1,19,38,4,0,117.6,1,0,0,1,1,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,9,100.0,0,0,0,1,1,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,Enrolled +1,44,1,9238,1,1,140.0,1,1,1,5,5,143.4,0,0,0,1,0,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,120.0,1,1,19,7,7,111.3,0,0,0,1,1,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,Enrolled +2,1,1,9556,1,1,144.0,1,19,19,193,144,139.8,0,0,1,1,1,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,110.0,1,1,1,5,5,160.0,1,0,1,1,0,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,Dropout +2,39,1,9853,1,19,133.1,1,37,37,9,9,131.0,0,0,0,1,0,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,139.0,1,4,1,2,10,136.4,1,0,0,1,0,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,Graduate +1,17,3,9085,1,1,134.0,1,37,38,9,9,120.4,1,0,0,1,0,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,148.0,1,3,2,4,2,131.6,1,0,0,1,0,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,145.0,1,19,37,7,7,141.5,1,0,0,1,0,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9130,1,19,133.1,1,37,38,9,9,120.0,0,0,0,1,1,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,3,9254,1,1,121.0,1,19,37,4,7,116.8,1,0,0,1,0,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,123.0,1,1,1,4,3,123.4,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,38,38,9,9,133.4,1,0,0,1,1,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,Graduate +1,42,1,9500,1,1,124.0,1,19,19,4,9,124.0,0,0,0,1,0,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,40,130.0,1,37,37,9,7,130.0,0,0,0,1,0,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,140.0,1,3,38,2,9,140.0,1,0,0,1,0,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,158.0,1,38,38,9,7,144.7,1,0,0,1,0,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,18,2,9238,1,1,121.0,1,19,1,4,3,121.4,1,0,0,1,0,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,12,133.1,1,37,19,9,10,120.0,0,0,0,1,1,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,122.0,1,3,1,4,3,114.8,1,0,0,1,0,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,Enrolled +4,43,1,9991,0,1,164.0,1,37,37,6,6,131.8,0,0,0,1,0,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,3,9773,1,1,145.0,1,38,38,9,5,133.1,0,0,0,1,0,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9853,1,19,133.1,1,38,19,9,9,108.0,0,0,1,0,0,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,3,9070,1,1,131.0,1,38,37,5,5,120.2,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,Enrolled +1,43,1,9238,1,1,130.0,1,38,37,9,7,133.2,0,0,0,1,0,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,112.0,1,1,1,3,3,106.4,1,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,125.0,1,1,38,144,181,123.3,0,0,0,1,0,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,125.0,1,3,2,2,1,119.1,1,0,0,1,0,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9853,1,3,140.0,1,34,34,0,0,140.0,1,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,135.0,1,1,19,3,9,137.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9991,0,3,120.0,1,37,37,6,7,120.0,0,0,1,0,1,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,130.0,1,1,1,4,3,125.1,1,0,0,1,0,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,Graduate +2,39,1,33,1,1,120.0,1,38,1,9,5,153.8,0,0,1,1,1,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,37,37,9,9,140.0,0,0,0,0,1,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,127.0,1,1,38,9,7,120.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,43,180.0,1,19,19,9,4,180.0,0,0,0,1,0,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,Graduate +1,1,3,9147,1,1,143.0,1,1,1,5,7,133.2,1,0,0,1,0,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,Graduate +1,15,1,9853,1,1,133.1,41,43,1,153,135,128.2,0,0,0,1,0,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,12,133.1,1,1,1,9,4,140.0,1,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,151.0,1,1,38,4,7,137.0,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,Graduate +1,17,4,171,1,1,172.0,1,3,1,2,10,155.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,129.0,1,19,1,9,5,112.0,0,0,0,1,1,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,150.0,1,38,3,9,1,140.0,0,0,0,1,1,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,Graduate +1,1,1,9773,1,1,124.0,17,1,1,3,5,118.1,1,0,1,0,0,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9670,1,1,124.0,1,37,19,5,8,114.2,1,0,1,1,0,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,122.0,1,1,19,3,5,116.8,1,0,0,1,0,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,144.0,1,38,1,9,10,137.4,0,0,0,1,0,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,19,19,9,9,120.0,0,0,0,1,0,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,138.0,1,38,38,7,6,124.7,1,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,18,2,9147,1,1,132.0,1,3,3,5,7,119.1,1,0,1,0,0,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,17,6,9119,1,1,111.0,1,19,3,5,10,106.5,1,0,0,1,1,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,Dropout +1,7,1,9500,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,1,140.0,1,37,37,9,9,130.0,1,0,0,1,1,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,125.0,1,37,37,3,3,124.0,0,0,0,1,1,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,128.0,1,19,2,7,3,126.3,1,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +2,39,1,9500,1,1,110.0,1,37,37,9,6,114.3,0,0,0,1,0,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,9085,1,1,133.1,1,1,9,4,4,128.2,0,0,0,1,0,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,Graduate +1,1,3,9238,1,1,126.0,1,38,19,5,8,120.8,1,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,121.0,1,1,1,9,8,118.9,1,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,109.0,1,19,37,5,5,108.3,0,0,0,1,0,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,Enrolled +1,1,4,9670,1,1,127.0,1,1,1,7,7,116.5,1,0,0,1,0,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,171,1,19,133.1,101,1,19,2,7,110.0,0,0,0,1,1,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,133.0,1,37,37,9,7,124.6,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,39,137.0,1,1,1,5,10,124.5,0,0,0,0,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,130.0,1,19,19,7,7,121.6,0,0,0,1,0,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,130.0,1,37,37,6,5,113.5,1,0,0,1,0,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9670,1,1,120.0,1,38,38,5,7,115.1,1,0,0,1,0,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,115.0,1,38,1,9,4,116.1,1,0,0,1,1,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,130.1,0,0,0,1,0,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,Enrolled +1,1,3,9238,1,1,133.1,1,1,1,9,9,100.0,1,0,0,1,1,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,168.0,0,0,0,1,1,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,148.0,1,1,1,9,9,141.7,0,0,0,0,1,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,Dropout +1,15,1,33,1,1,133.1,41,2,3,2,4,100.0,0,0,0,1,1,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,135.0,1,37,37,6,5,121.0,1,0,0,1,1,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,151.0,1,3,3,1,90,161.9,0,0,0,1,0,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,8,108.5,0,0,0,1,1,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9670,1,1,130.0,1,26,30,0,5,128.6,1,0,1,1,0,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,Graduate +1,43,1,9500,1,1,140.0,100,1,1,6,6,128.2,0,0,0,1,0,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,140.0,1,19,37,5,7,140.0,1,0,0,1,1,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,Dropout +1,39,1,33,1,1,140.0,1,3,1,2,4,152.8,0,0,0,1,0,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,Enrolled +1,43,1,9070,1,1,117.0,1,1,1,4,7,112.5,1,0,0,1,1,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,126.0,1,37,19,7,7,125.7,0,0,0,1,0,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,Enrolled +1,1,2,9773,1,1,140.0,1,38,38,5,7,126.4,1,0,0,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,121.0,1,37,38,6,9,121.0,0,0,0,1,0,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,136.0,1,12,1,4,4,122.0,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,117.0,1,37,37,9,9,120.2,1,0,0,1,0,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,133.1,1,38,1,9,9,121.0,0,0,1,0,1,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,Dropout +1,44,1,9991,0,39,130.0,1,37,37,5,5,130.0,1,0,0,1,1,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,138.0,1,1,19,4,9,142.2,1,0,0,1,0,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,148.0,1,3,1,2,10,148.0,1,0,0,1,0,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,Graduate +1,17,6,9556,1,1,134.0,1,19,38,7,7,128.5,1,0,0,1,0,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,141.0,1,1,19,5,8,141.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,149.0,1,3,1,9,9,137.5,0,0,0,1,1,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,Graduate +1,1,3,9085,1,1,142.0,1,11,11,90,90,155.3,0,0,0,1,0,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,135.0,1,19,37,9,9,134.0,1,0,0,1,0,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,132.0,1,19,38,9,7,120.1,0,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9147,1,1,133.0,1,37,37,9,5,119.7,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,139.0,1,3,4,2,2,130.6,0,0,0,1,0,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,2,130.0,1,0,1,0,1,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,Dropout +1,17,3,9500,1,1,138.0,1,3,3,4,5,130.0,1,0,0,1,0,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,121.0,1,19,19,3,3,116.1,1,0,0,1,0,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,160.0,1,3,38,1,9,152.0,1,0,0,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,130.0,41,37,19,9,8,125.5,1,0,0,1,0,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,133.1,1,38,38,191,193,146.0,0,0,1,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,Graduate +4,39,1,9003,1,1,140.0,1,37,37,9,8,150.0,0,0,0,1,1,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,Enrolled +1,17,2,9670,1,1,132.0,1,1,19,5,3,124.0,1,0,0,1,1,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,117.0,1,19,19,5,7,118.4,0,0,0,1,1,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,140.0,6,1,19,4,7,131.6,1,0,0,1,0,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,142.0,1,38,1,8,10,138.5,1,0,0,1,1,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9130,1,1,132.0,1,3,1,4,9,121.9,1,0,0,1,0,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,122.0,1,1,1,9,9,116.1,1,0,0,1,1,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,Dropout +1,7,1,8014,0,3,130.0,1,37,38,0,5,130.0,0,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,138.0,1,19,19,9,5,124.8,1,0,0,1,0,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,140.0,1,19,38,3,9,140.0,1,0,0,1,1,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +4,39,1,8014,0,1,138.0,1,19,19,90,90,127.0,0,0,0,0,0,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9500,1,19,133.1,1,1,3,2,2,100.0,0,0,1,1,1,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,117.0,1,3,1,3,5,110.7,1,0,0,1,1,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,120.0,1,19,19,5,5,113.0,1,0,0,1,0,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,160.0,1,37,37,7,7,133.0,1,0,0,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,137.0,1,1,1,4,5,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,19,37,9,7,123.9,1,0,0,1,0,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,38,38,9,5,130.0,0,0,1,0,1,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,137.0,1,19,37,9,7,130.8,0,0,1,1,0,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,38,37,4,6,150.0,1,0,0,1,0,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,115.0,1,34,38,0,5,108.4,1,0,0,1,0,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,140.0,1,3,38,141,151,135.3,0,0,0,1,1,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,148.0,1,19,19,7,7,130.9,0,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,127.0,1,1,1,4,3,126.3,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,2,9670,1,1,100.0,1,37,37,9,9,100.0,0,0,0,1,0,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,2,171,1,1,141.0,1,19,37,9,9,136.1,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,123.0,1,30,19,4,90,122.3,0,0,0,1,0,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,145.0,1,1,38,5,7,127.5,1,0,0,1,1,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,1,150.0,1,37,37,90,10,112.0,0,0,0,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,128.0,1,37,1,9,7,124.2,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,Dropout +1,43,1,9070,1,39,130.0,1,19,37,5,9,124.0,1,0,0,1,0,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,Graduate +1,17,1,9003,1,1,170.0,1,1,4,9,5,144.1,1,0,1,0,1,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9670,1,1,110.0,1,19,19,90,99,107.2,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9238,1,19,133.1,1,37,37,9,9,130.0,1,0,0,1,0,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9119,1,1,144.0,1,34,34,0,0,119.5,0,0,0,1,1,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,19,133.1,1,37,37,6,6,162.0,0,0,1,1,1,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,16,1,9085,1,1,138.0,1,37,37,9,9,123.0,1,0,0,1,0,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9500,1,1,133.1,1,19,19,5,6,121.4,0,0,1,1,0,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,138.0,1,1,1,4,7,132.1,1,0,0,1,0,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,Graduate +1,39,1,9119,1,1,133.1,1,37,37,9,9,101.6,0,0,0,1,1,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9500,1,1,126.0,1,1,19,131,181,120.1,1,0,0,1,0,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,38,9,9,142.0,1,0,0,1,0,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,Graduate +1,18,1,8014,0,1,138.0,1,19,1,9,5,134.5,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,19,9,9,150.0,0,0,0,1,1,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,126.0,1,38,37,9,9,123.6,1,0,0,1,0,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9254,1,19,133.1,1,19,19,3,1,101.5,0,0,1,0,1,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,2,9119,1,1,115.0,1,38,19,9,6,112.2,1,0,1,1,1,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,39,1,9003,1,1,120.0,1,37,37,9,9,125.7,0,0,1,0,0,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,Dropout +1,17,2,9773,1,1,115.0,1,1,1,5,5,119.6,1,0,0,1,0,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,19,9,4,140.0,0,0,0,1,0,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,125.0,1,37,19,90,90,137.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,120.0,1,3,38,3,7,124.2,1,0,0,1,1,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9147,1,1,146.0,1,5,1,1,5,144.6,0,0,0,1,1,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,116.0,1,1,1,3,4,113.6,1,0,0,1,0,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,Graduate +4,42,1,9147,1,1,133.1,1,37,38,7,3,123.0,1,0,0,1,1,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,118.9,1,38,37,5,9,118.9,1,0,0,1,0,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,123.0,1,12,1,9,9,119.2,1,0,0,1,0,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,2,140.0,1,38,37,7,8,140.0,0,0,0,1,0,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,110.0,1,37,37,90,90,108.4,1,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9119,1,1,146.0,1,1,37,7,7,132.4,1,0,0,1,1,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,19,133.1,1,19,3,9,2,140.0,1,0,1,1,1,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,2,9853,1,1,111.0,1,38,38,191,171,105.8,1,0,0,1,0,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,6,130.2,0,0,0,1,0,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,130.0,1,1,3,9,10,118.1,1,0,0,1,1,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,118.0,1,1,19,5,4,118.0,0,0,0,1,0,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,153.0,1,38,38,7,7,159.7,1,0,0,1,0,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,171,1,12,110.0,1,37,37,7,7,106.0,1,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,134.0,1,19,1,9,4,124.9,1,0,0,1,0,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,3,9254,1,1,121.0,1,19,19,9,9,125.9,1,0,0,1,0,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,160.0,1,19,19,4,9,154.4,0,0,0,1,0,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,3,140.0,1,19,19,9,7,152.4,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9130,1,1,130.0,1,19,1,191,144,110.0,0,0,0,1,1,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,142.0,1,38,37,9,5,127.3,1,0,0,1,0,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,37,37,9,9,130.0,0,0,1,1,0,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,124.0,1,37,19,9,4,121.2,0,0,0,1,1,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,120.0,1,19,19,9,3,113.9,1,0,0,1,0,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,114.0,1,19,38,5,3,112.6,1,0,0,1,0,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,Graduate +1,7,1,9991,0,40,120.0,1,1,19,4,9,120.0,0,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,128.0,1,19,38,9,9,118.2,0,0,0,1,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,4,9070,1,1,126.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,130.0,1,1,1,0,0,119.5,0,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,184.4,22,2,19,2,8,184.4,0,0,0,1,0,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,37,9,9,132.8,0,0,1,0,1,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9085,1,1,120.0,1,38,19,90,90,127.0,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,Graduate +1,17,4,9147,1,1,132.0,1,38,19,5,5,120.8,1,0,0,1,1,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,Dropout +1,10,1,9670,1,1,148.9,22,37,37,9,9,148.9,0,0,0,1,0,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,4,150.0,1,1,1,4,6,150.0,0,0,0,1,1,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,150.0,1,19,1,9,3,110.0,1,0,0,1,1,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,Graduate +1,15,1,9670,1,1,130.0,26,42,1,2,7,130.0,0,1,1,1,0,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,Graduate +2,7,1,8014,0,3,120.0,1,38,1,9,9,120.0,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,149.0,1,19,37,9,9,158.1,1,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,4,9147,1,1,124.0,1,37,37,9,9,117.4,0,0,0,1,0,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,142.0,1,34,1,5,10,136.1,1,0,0,0,1,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,1,1,8014,0,1,165.0,1,37,37,0,0,162.9,1,0,0,1,1,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,130.0,1,37,37,5,7,123.4,1,0,0,1,1,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,1,133.1,1,37,37,7,7,143.0,0,0,0,1,1,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,121.0,1,38,37,8,8,115.4,1,0,0,1,0,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9556,1,3,140.0,1,3,3,2,2,140.0,0,0,1,0,1,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,116.0,1,38,19,0,2,116.7,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,132.0,1,38,1,5,5,124.3,0,1,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,133.1,1,38,12,7,0,111.5,0,0,0,0,0,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,Dropout +1,53,1,9147,1,42,140.0,1,1,1,6,6,142.2,0,0,0,1,1,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,Graduate +2,44,1,9991,0,39,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9773,1,1,170.0,1,1,19,9,7,155.0,0,0,0,1,1,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,8014,0,19,133.1,1,37,37,4,8,112.5,0,0,0,1,0,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,120.0,1,1,1,5,8,112.0,1,0,0,1,0,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,123.0,1,1,1,3,3,113.6,1,0,0,1,0,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,Graduate +1,39,1,9085,1,1,133.1,1,1,19,9,9,162.3,1,0,0,1,0,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,116.0,1,37,1,9,8,115.7,1,0,1,0,0,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,160.0,1,9,19,4,3,151.3,0,0,0,1,0,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,19,149.0,1,34,34,0,0,126.3,0,0,0,1,0,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9238,1,39,140.0,41,1,1,4,6,137.5,0,0,1,1,0,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,130.0,1,37,37,9,9,129.0,1,0,0,1,0,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,19,38,7,7,118.7,0,0,0,1,1,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,128.0,0,0,0,1,0,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,Graduate +1,17,1,9070,1,1,135.0,1,19,37,5,9,145.9,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,128.0,1,1,19,9,7,118.2,0,0,0,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,128.0,1,19,38,9,9,127.0,0,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,140.0,1,37,12,9,9,150.0,0,0,1,1,1,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,Dropout +2,43,1,8014,0,1,160.0,1,37,39,9,4,140.9,0,0,0,1,0,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,133.0,1,38,19,8,7,127.3,1,0,0,1,0,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,Graduate +1,15,1,9670,1,1,160.0,1,37,12,9,9,149.5,1,0,0,0,1,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,152.0,101,2,1,9,1,168.5,1,0,0,1,1,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,Graduate +1,1,3,9085,1,1,147.0,1,19,19,9,1,135.6,1,0,0,1,0,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,2,8014,0,1,120.0,1,37,34,0,0,117.6,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,141.0,1,37,37,9,9,130.2,0,0,0,1,1,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,Graduate +1,16,2,9147,1,1,139.0,1,38,37,9,9,123.7,1,0,0,1,0,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,134.0,1,19,38,4,8,129.5,0,0,0,1,0,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,113.0,1,1,37,9,10,117.2,1,0,0,1,0,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,18,2,9556,1,1,126.0,1,3,3,2,2,115.5,0,0,0,1,1,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,1,134.0,1,37,38,4,7,110.0,1,0,0,1,0,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,171,1,1,132.0,1,1,1,1,4,132.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9003,1,1,130.0,1,19,19,9,1,140.0,0,0,0,1,0,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9773,1,1,132.0,1,38,19,9,9,125.0,1,0,0,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,140.0,1,37,37,9,6,132.8,0,0,0,1,1,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,130.0,1,37,19,9,5,140.2,1,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9070,1,1,118.0,1,43,3,123,123,110.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,19,100.0,1,37,37,5,5,111.0,1,0,0,1,0,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,3,9085,1,1,138.0,1,1,3,4,4,126.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,132.0,1,2,19,4,4,125.0,1,0,0,1,0,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,38,100.0,1,37,37,9,7,154.0,1,0,0,1,1,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,138.0,1,1,19,4,4,131.7,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,Graduate +2,39,2,9147,1,1,140.0,1,37,37,9,8,108.0,0,0,0,1,0,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,Enrolled +1,1,5,9147,1,1,134.0,1,3,2,2,2,134.7,0,0,0,1,1,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9130,1,1,120.0,1,2,3,3,2,120.0,1,0,0,0,1,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,Dropout +1,1,3,9085,1,1,140.0,1,10,19,90,90,135.8,1,0,0,1,0,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,142.0,1,37,38,5,1,129.4,0,0,0,1,0,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9670,1,1,120.0,1,1,19,5,5,117.2,1,0,0,1,0,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,136.0,1,1,19,5,7,136.4,0,0,0,1,0,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,120.0,1,37,37,5,5,124.6,0,0,0,1,0,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,Enrolled +1,39,1,9500,1,1,133.1,1,1,37,9,9,100.0,0,0,0,1,1,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,123.0,1,19,1,9,3,117.8,1,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,Graduate +5,39,1,9254,1,1,133.1,1,2,2,2,2,103.0,0,0,0,1,0,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,171,1,1,133.0,1,1,37,4,7,126.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,119.0,1,1,1,4,4,115.0,1,0,0,1,1,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,143.0,1,38,19,151,193,134.3,1,1,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,135.0,1,1,19,4,4,129.1,0,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,43,2,9670,1,1,130.0,1,19,1,4,4,127.6,1,0,0,1,1,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,126.0,1,37,37,5,1,126.0,0,0,0,0,1,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,42,1,9119,1,1,120.0,1,19,37,9,9,113.8,0,0,0,0,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9991,0,1,140.0,1,37,37,9,9,135.8,1,0,0,1,1,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,17,5,9085,1,1,118.0,1,38,38,9,9,112.4,1,0,0,1,0,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,3,9773,1,1,134.0,1,2,1,3,3,129.5,1,0,0,1,1,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,129.0,1,1,38,4,7,123.4,0,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,132.0,1,19,37,4,9,128.0,1,0,0,1,0,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,137.0,1,38,37,7,5,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,Graduate +1,17,5,9119,1,1,138.0,1,19,19,5,5,123.3,1,0,1,1,1,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,138.0,1,1,1,3,4,132.5,1,0,0,1,0,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,Graduate +1,16,2,9070,1,1,133.0,1,1,3,4,2,122.5,1,0,0,1,0,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,Enrolled +1,17,1,9130,1,1,137.0,1,38,19,5,7,130.0,1,0,0,1,0,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,Enrolled +1,17,1,9238,1,1,131.0,1,37,37,9,7,121.9,0,0,0,1,0,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,Graduate +2,1,1,9500,1,1,142.0,1,19,38,4,5,130.3,0,0,0,1,0,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,Graduate +2,39,1,9556,1,1,160.0,1,37,37,9,6,120.0,0,0,0,1,0,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,Dropout +1,51,1,9670,1,1,126.0,1,3,3,1,10,111.0,0,0,1,1,1,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,5,9853,1,1,141.0,1,37,19,9,5,133.0,1,0,0,1,0,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,Dropout +1,1,2,9670,1,1,124.0,1,19,1,9,4,117.7,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,133.0,1,19,19,9,5,120.1,1,0,0,1,0,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,Graduate +1,43,1,9147,1,1,133.1,1,4,19,2,1,128.2,0,0,0,1,0,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,Dropout +4,27,1,9070,1,2,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9003,1,1,150.0,1,2,4,4,1,150.0,0,0,0,1,1,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,19,133.1,1,19,37,7,5,155.5,1,0,1,0,1,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,1,9238,1,1,106.0,1,1,1,3,3,105.0,0,0,0,1,1,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,111.0,1,19,38,3,3,111.4,1,0,0,0,0,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,Dropout +1,43,1,9254,1,1,130.0,1,1,19,5,7,130.0,0,0,0,1,0,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,Dropout +1,17,1,8014,0,1,120.0,1,38,37,6,6,113.0,0,0,0,1,0,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,139.0,1,1,37,4,9,131.3,1,0,0,1,0,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,Graduate +1,43,3,9254,1,1,110.0,1,37,37,9,9,107.2,1,0,0,1,1,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,147.0,1,1,1,4,4,134.3,1,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,130.0,1,37,38,9,6,130.0,1,0,0,1,0,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,139.0,1,37,38,9,9,124.0,1,0,0,1,1,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,122.0,1,37,37,9,9,126.9,1,0,0,1,0,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,11,11,90,4,114.0,1,0,0,1,1,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9147,1,1,132.0,1,39,39,3,3,127.8,1,0,0,0,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,128.0,1,38,37,5,6,122.1,0,0,0,1,0,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9085,1,1,127.0,1,19,38,194,193,117.6,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9500,1,1,145.0,1,3,3,2,3,141.8,0,0,0,1,0,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,Graduate +1,53,1,9556,1,42,140.0,1,1,19,4,5,140.0,0,0,0,1,0,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,Graduate +1,18,1,9147,1,1,160.0,1,19,19,5,8,137.6,1,0,0,1,0,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,19,133.1,1,2,1,3,10,120.0,0,0,1,1,1,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,19,133.1,1,19,39,5,3,121.7,0,0,1,0,0,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,126.0,0,0,0,1,1,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,Graduate +1,1,3,171,1,1,140.0,1,37,37,9,9,124.3,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,136.0,1,38,37,9,9,126.9,1,0,0,1,0,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,136.0,1,19,1,9,9,129.0,1,0,0,1,0,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,144.0,1,38,38,7,7,136.0,1,0,0,1,0,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,154.0,1,38,38,9,9,156.5,1,1,0,1,0,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,131.0,1,19,19,9,9,134.9,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +4,43,1,8014,0,1,140.0,1,38,37,9,9,126.0,0,0,0,1,0,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,7,126.3,1,0,0,1,0,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,Graduate +1,44,1,8014,0,39,150.0,1,1,37,9,7,146.7,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,2,9119,1,1,140.0,1,19,19,9,9,125.7,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,12,100.0,1,1,1,4,4,100.0,0,0,0,1,0,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,Graduate +1,42,1,9500,1,1,111.0,1,1,3,9,10,128.2,1,0,0,1,1,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,Graduate +1,17,2,9773,1,1,132.0,1,19,19,9,6,120.1,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,131.0,1,4,4,2,1,120.5,0,0,0,1,0,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,44,1,9003,1,39,170.0,1,19,19,5,5,170.0,1,0,0,1,1,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,150.0,1,38,38,7,7,137.8,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,10,120.0,0,0,1,0,1,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9670,1,39,110.0,1,37,1,9,4,110.0,0,0,0,1,0,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,130.0,1,5,3,2,2,130.0,0,0,0,1,1,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9670,1,1,133.1,1,34,3,7,2,130.6,1,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,38,9,10,140.0,0,0,0,1,1,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,133.1,1,19,38,9,9,119.6,1,0,0,1,0,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,118.0,1,19,19,3,3,110.0,1,0,0,1,0,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,137.0,1,1,1,5,5,129.3,1,0,0,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,127.0,1,19,38,5,9,129.5,1,0,0,1,0,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,126.0,1,38,19,9,6,119.4,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,116.5,0,0,0,1,0,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,125.0,1,19,19,4,7,128.5,1,0,0,1,0,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,Enrolled +1,43,1,9773,1,1,133.1,22,34,34,90,90,130.0,0,0,1,1,0,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,125.0,1,1,1,5,5,128.5,0,0,0,1,1,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9500,1,1,133.1,1,19,37,9,9,120.0,0,0,0,1,0,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,Graduate +2,39,2,9147,1,1,133.1,1,37,37,5,7,110.0,0,0,0,1,1,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,6,9500,1,1,141.0,1,1,19,1,1,126.7,1,0,0,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,146.0,1,40,43,4,4,150.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,148.0,1,1,1,4,9,129.8,0,0,0,1,0,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,Enrolled +1,17,1,9853,1,1,133.0,1,38,38,9,9,127.4,0,0,1,1,0,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,43,1,9147,1,1,120.0,1,37,37,5,3,113.4,0,0,0,1,1,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,148.0,1,19,3,4,2,136.5,0,0,0,1,0,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,178.0,1,2,1,2,3,157.7,0,0,0,1,1,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +2,7,1,9254,1,3,130.0,1,1,3,4,3,130.0,0,0,0,1,0,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,33,1,40,120.0,1,38,37,5,6,120.0,1,0,1,0,1,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,Dropout +2,1,1,9147,1,1,151.0,1,38,37,9,8,132.1,1,0,0,1,0,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Dropout +1,43,2,9556,1,1,120.0,1,1,19,4,3,110.2,0,0,0,1,0,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,Graduate +2,1,4,9500,1,1,140.0,1,1,37,4,9,128.0,0,0,0,1,0,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,6,120.0,1,35,35,6,6,128.2,1,0,0,1,1,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,120.0,1,37,37,9,6,120.0,1,0,0,1,0,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,8,7,150.0,0,0,0,1,1,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,145.0,1,19,37,4,7,148.9,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,34,34,0,0,104.0,1,0,0,1,0,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9085,1,1,110.0,1,3,19,4,6,105.0,0,0,1,0,1,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Dropout +1,17,2,9254,1,1,108.0,1,37,37,9,7,108.0,1,0,0,1,0,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,Graduate +4,43,1,9238,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,0,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,136.0,1,19,37,173,183,118.4,1,0,0,1,0,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,18,1,9556,1,1,140.0,1,38,37,9,9,122.8,0,0,0,1,0,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,Graduate +1,39,1,9119,1,1,150.0,1,3,3,4,4,150.0,1,0,0,1,1,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,141.0,1,1,1,4,10,138.9,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,Graduate +1,18,4,9773,1,1,130.0,1,19,19,4,4,121.3,1,0,0,1,0,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,1,130.0,1,37,37,9,6,160.0,0,0,0,1,1,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,149.0,1,37,37,9,9,136.0,0,0,0,1,0,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,151.0,1,37,1,4,10,138.4,0,0,0,1,0,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9254,1,1,130.0,1,37,37,9,9,126.5,0,0,0,1,1,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,143.0,1,19,37,7,7,127.0,1,0,0,1,0,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,Graduate +2,57,1,9991,0,1,133.1,41,38,37,4,6,100.0,0,0,0,1,0,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,138.0,1,37,37,9,9,135.9,1,0,0,1,0,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,43,1,8014,0,1,145.7,22,37,37,9,9,145.7,1,0,0,1,0,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,Graduate +4,39,1,9773,1,19,133.1,1,37,37,9,1,117.5,0,0,0,1,0,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9238,1,1,118.0,1,1,19,4,10,112.4,1,0,0,1,0,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,8014,0,1,133.1,1,37,37,9,7,162.5,0,0,0,1,1,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,1,3,9254,1,1,115.0,1,1,1,3,3,117.5,1,0,0,1,0,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,133.0,1,37,38,9,9,130.2,1,0,0,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,152.0,1,2,22,4,3,146.1,1,0,0,1,0,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +2,39,1,9085,1,12,133.1,1,1,39,5,3,140.0,1,0,1,0,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9003,1,1,140.0,1,38,1,9,4,138.3,0,0,0,1,1,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,130.0,1,38,37,9,6,133.9,0,0,0,1,1,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,140.0,1,37,37,9,9,142.5,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,120.0,1,38,1,9,3,118.3,1,0,0,1,0,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,117.0,1,1,19,4,7,113.5,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,141.0,1,19,1,7,3,128.8,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9147,1,1,125.0,1,3,38,2,10,118.7,1,0,0,1,0,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,116.0,1,37,1,5,3,124.8,1,0,0,1,1,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,120.0,1,36,37,0,0,126.7,1,0,0,1,1,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,4,9853,1,1,140.0,1,19,38,4,1,128.5,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,1,3,10,130.0,0,0,0,1,1,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,136.0,1,3,37,2,8,121.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,154.0,1,37,37,9,9,149.5,1,0,0,1,0,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,138.0,1,19,38,5,8,133.5,0,0,0,1,0,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,128.0,1,1,37,4,3,117.9,1,0,0,1,0,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,Graduate +1,43,1,9130,1,1,150.0,1,3,3,3,4,150.0,1,0,0,1,0,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,110.0,1,19,38,3,5,117.4,1,0,0,1,0,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,135.0,1,37,38,9,6,122.1,1,0,0,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9003,1,1,140.0,1,37,37,9,6,104.8,0,0,0,1,0,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,143.0,1,37,37,9,7,131.8,1,0,0,1,0,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,142.0,1,1,1,3,3,133.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,141.0,1,1,19,5,10,127.0,0,0,0,1,0,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,Graduate +3,1,2,9085,1,1,135.0,1,19,1,4,4,129.4,1,0,0,1,0,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,39,1,9254,1,1,133.1,1,19,19,4,7,123.0,0,0,1,0,0,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9500,1,1,131.0,1,19,37,9,7,129.8,1,0,0,1,0,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,Graduate +1,39,1,9670,1,9,133.1,1,6,22,3,3,120.0,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,131.0,1,37,37,3,3,131.7,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,137.0,1,19,19,5,5,134.6,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,131.0,1,1,1,4,10,129.3,0,0,0,1,0,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,140.0,1,1,37,141,192,129.7,0,0,0,1,0,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,140.0,1,37,37,9,9,124.6,0,0,0,1,0,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,138.0,1,37,37,5,9,125.1,1,1,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Dropout +1,2,1,9147,1,1,150.0,1,37,37,9,9,122.0,1,0,0,1,0,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,135.0,1,3,1,4,4,136.1,1,0,0,1,1,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,Enrolled +1,39,1,9991,0,1,150.0,1,1,19,4,8,123.0,0,0,0,1,1,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,141.0,1,19,37,5,8,130.2,0,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,106.0,1,37,37,9,9,108.0,1,0,1,1,0,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,19,133.1,1,37,38,9,7,100.5,1,0,0,1,1,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,Enrolled +1,43,1,9254,1,1,142.0,1,38,38,9,9,125.9,0,0,0,1,0,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,150.0,1,1,37,9,7,130.2,0,0,0,1,0,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,Graduate +4,39,1,9670,1,1,140.0,1,2,1,3,9,170.0,0,0,1,0,1,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9773,1,1,119.0,1,38,19,9,9,118.3,0,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,117.0,1,34,34,0,0,109.3,0,0,0,1,0,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,120.0,1,34,34,99,99,111.6,0,0,1,1,1,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,139.0,1,19,19,9,7,110.3,0,0,1,1,1,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,3,19,9,9,113.2,0,0,0,1,0,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,Enrolled +1,43,1,9991,0,1,120.0,1,38,38,9,7,141.0,0,0,0,1,1,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,151.0,1,3,1,2,4,151.0,1,0,0,1,0,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,130.0,1,37,37,9,6,110.0,1,0,0,1,0,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9853,1,1,130.0,1,2,39,2,5,124.6,0,0,0,1,1,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,138.0,1,1,1,4,3,141.5,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,120.0,1,37,37,9,5,100.0,0,0,0,1,0,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9991,0,39,150.0,1,37,37,6,6,150.0,0,0,0,1,0,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9085,1,19,133.1,1,38,38,4,7,128.2,0,0,0,1,0,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.0,41,19,19,9,9,119.7,1,0,1,1,0,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9085,1,1,128.0,1,1,19,4,90,124.2,0,0,0,0,0,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,120.0,1,1,1,9,9,129.1,1,0,0,1,1,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9773,1,1,125.0,1,19,19,9,7,129.6,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,137.0,1,40,19,2,9,130.7,1,0,0,1,0,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,Dropout +1,51,1,9147,1,1,116.0,1,3,3,2,2,115.2,0,0,1,1,1,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,5,9853,1,1,132.0,1,12,12,4,4,123.3,1,0,0,1,0,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,Dropout +1,7,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,1,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,135.0,1,19,38,9,5,136.8,1,0,0,1,0,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,137.0,1,1,1,4,7,134.6,1,0,0,1,1,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,4,171,1,1,133.1,1,38,38,9,9,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,133.1,1,19,37,7,8,120.0,0,0,1,0,0,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,140.0,1,1,19,9,7,127.0,1,0,0,1,0,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,Graduate +1,18,1,9500,1,1,124.0,1,38,37,9,7,119.3,1,0,0,1,0,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,3,19,2,4,150.0,1,0,0,1,0,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,19,133.1,1,3,19,90,90,123.5,0,0,0,1,0,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9853,1,1,133.1,1,37,37,5,5,116.5,0,0,0,1,0,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,Dropout +1,18,6,9500,1,1,144.0,1,1,1,3,6,130.8,1,0,0,1,0,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9670,1,1,151.0,1,19,19,1,1,100.0,0,0,1,1,0,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,125.0,1,1,19,4,6,115.2,0,1,0,1,0,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,37,38,4,9,110.0,0,0,1,0,0,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,133.1,1,19,19,5,5,108.5,1,0,0,1,0,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,130.0,1,37,11,90,90,122.6,0,0,0,1,0,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,113.0,1,19,37,9,9,118.6,1,0,0,1,0,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,140.0,6,2,3,5,2,124.3,1,0,0,1,0,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,Enrolled +1,1,4,9119,1,1,111.0,1,37,37,9,5,107.5,1,0,0,1,1,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,143.0,1,19,38,9,9,133.4,1,0,0,1,0,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,Graduate +1,17,1,9773,1,1,141.0,1,2,3,2,2,133.7,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,151.0,41,3,3,2,5,161.9,1,0,0,1,0,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,43,1,33,1,1,143.0,1,37,1,9,10,121.2,1,0,0,1,1,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,0,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,141.0,1,1,19,8,7,128.8,1,0,0,1,0,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Enrolled +1,1,1,9238,1,1,115.0,1,19,38,7,7,108.7,0,0,0,1,0,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,114.0,1,1,1,4,0,108.8,1,0,0,1,0,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,2,9853,1,1,112.0,1,37,37,191,182,106.1,1,0,1,1,0,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,2,9085,1,1,157.0,1,3,38,4,6,142.3,0,0,0,1,0,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,Graduate +2,44,1,8014,0,39,160.0,1,37,19,9,10,155.9,0,0,0,1,0,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,Graduate +1,1,4,171,1,1,137.0,1,1,38,4,8,141.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,144.0,1,1,37,9,9,126.5,1,0,0,1,0,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,145.0,1,1,1,4,10,131.4,0,0,0,1,0,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,115.0,1,1,1,9,4,109.1,1,0,1,0,0,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,170.0,1,37,37,0,0,150.8,1,0,0,1,0,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,5,3,9070,1,1,157.0,1,3,1,9,6,138.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,Graduate +1,43,2,9238,1,1,129.0,1,34,30,0,5,118.9,1,0,0,1,1,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,5,9853,1,1,141.0,1,3,19,2,7,130.9,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Graduate +4,39,1,9991,0,1,133.1,1,37,37,9,9,130.4,0,0,0,1,0,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,130.0,1,19,38,9,9,126.9,0,0,1,1,0,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,136.0,1,19,1,4,3,125.2,1,0,0,1,0,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,37,9,9,140.2,0,0,0,1,1,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,132.0,1,37,38,9,5,120.8,0,0,0,1,0,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,150.0,1,19,37,6,6,150.0,0,0,1,1,0,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,Graduate +2,42,1,9991,0,1,130.0,1,3,2,2,2,130.0,0,0,0,1,1,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,Enrolled +4,39,1,8014,0,1,133.1,1,38,37,5,7,144.5,0,0,0,1,0,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,2,9773,1,1,150.0,41,1,37,9,7,130.8,0,0,0,1,0,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,Graduate +2,1,1,8014,0,1,151.0,1,37,37,9,9,152.4,0,0,0,1,0,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,Graduate +6,39,1,9500,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,Dropout +2,43,1,9670,1,1,100.0,1,34,34,0,0,128.2,0,0,0,1,1,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,148.0,1,1,19,3,3,131.7,1,0,0,1,0,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,142.0,1,19,19,7,7,142.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,127.0,1,1,38,4,7,125.6,0,0,1,1,0,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,146.0,1,38,38,9,7,134.1,1,0,0,1,1,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,115.0,1,1,1,4,4,109.1,1,0,0,1,0,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,Enrolled +1,1,2,9773,1,1,148.0,1,1,19,9,9,141.7,0,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,116.0,1,37,37,0,5,114.3,1,0,0,1,0,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,139.0,1,38,19,5,7,130.6,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,Graduate +1,1,6,9147,1,1,128.0,1,37,37,9,9,116.5,0,0,0,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9130,1,3,150.0,1,3,1,90,90,150.0,1,0,0,1,0,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9670,1,1,122.0,1,1,19,4,4,116.1,0,0,0,1,1,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,Enrolled +1,39,1,9119,1,1,100.0,1,37,37,9,8,160.0,0,0,1,0,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9254,1,1,128.0,1,19,1,7,9,121.7,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,143.0,1,37,38,7,7,133.8,1,0,0,1,0,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,107.0,1,38,38,7,7,103.5,1,0,0,1,0,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,Graduate +1,39,2,9147,1,1,143.0,1,19,5,4,1,100.0,1,0,0,1,1,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,140.0,0,0,1,0,0,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,160.0,1,1,1,5,4,160.0,1,1,0,0,1,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,Dropout +2,39,1,9500,1,19,133.1,1,38,38,2,10,120.0,0,0,0,1,0,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,2,9853,1,1,122.0,1,19,19,4,5,112.6,1,0,0,1,0,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,3,9500,1,1,137.0,1,19,37,7,7,126.7,1,0,0,1,0,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,Graduate +1,7,1,9070,1,40,120.0,1,1,19,3,9,120.0,1,0,0,1,0,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,157.0,1,38,3,5,2,141.4,0,0,0,1,0,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,Graduate +2,1,2,8014,0,1,110.0,1,37,1,9,10,108.7,1,0,0,1,0,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,129.0,1,19,37,7,6,120.0,1,0,0,1,0,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,108.0,1,19,1,4,3,111.9,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9070,1,12,110.0,1,37,38,5,10,130.0,0,0,1,0,1,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,122.0,1,1,1,193,101,126.2,0,0,0,1,0,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,4,4,3,3,143.6,0,0,1,1,1,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,Enrolled +1,7,1,9119,1,3,130.0,1,34,34,90,90,130.0,0,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,8014,0,39,120.0,1,19,37,7,6,121.8,1,0,0,1,0,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,142.0,1,37,38,9,9,137.5,1,0,0,1,1,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,138.0,1,3,19,2,4,131.0,1,0,0,1,1,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,Dropout +1,17,2,9853,1,1,125.0,1,1,19,5,5,119.4,1,0,0,1,0,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,137.0,1,1,1,5,4,131.1,1,0,0,1,0,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,133.0,1,38,38,9,9,128.1,1,0,0,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Dropout +4,39,1,9991,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,0,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,17,1,9130,1,1,138.0,1,2,19,2,6,126.3,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,Enrolled +1,17,4,9500,1,1,135.0,1,1,1,4,4,127.0,1,0,0,1,0,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,140.0,1,4,3,3,3,127.8,0,0,0,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,5,1,9147,1,1,126.0,1,19,38,5,6,117.3,1,0,0,1,0,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,Enrolled +1,39,1,9670,1,1,133.1,1,1,19,4,9,140.0,0,0,0,1,1,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,126.0,1,38,38,9,8,118.8,1,0,0,1,0,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,Graduate +2,42,1,9147,1,1,133.1,1,37,37,9,9,115.8,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,126.0,1,1,37,7,9,132.7,0,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,133.0,1,19,19,5,7,123.6,0,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,4,9556,1,1,135.0,1,38,37,3,7,129.0,1,0,0,1,0,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,110.0,1,37,37,9,9,107.6,1,0,0,1,1,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Enrolled +1,17,4,9147,1,1,135.0,1,19,1,0,4,128.7,1,0,0,1,1,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +2,1,1,8014,0,1,150.0,1,1,37,4,7,139.9,1,0,0,1,0,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,116.0,1,1,38,4,3,114.6,1,0,0,1,0,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,121.0,1,19,37,1,3,131.5,0,0,0,1,0,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,100.0,1,19,1,1,90,114.0,1,0,1,0,0,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,146.0,1,19,37,5,8,135.8,1,0,0,1,0,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9119,1,39,140.0,1,1,19,4,5,140.0,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9670,1,1,136.0,1,19,19,5,5,122.0,0,0,1,0,0,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9003,1,1,133.1,1,19,19,4,4,107.5,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9070,1,1,164.0,1,38,38,9,7,165.8,1,0,0,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,154.0,1,38,38,9,9,133.4,1,0,0,1,0,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,127.0,1,19,37,7,7,121.5,1,0,0,1,1,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,Enrolled +1,43,6,9238,1,1,129.0,1,34,34,0,0,125.2,0,0,0,1,0,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,125.0,1,19,1,4,5,122.6,1,1,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,136.0,1,38,19,7,7,121.7,1,0,0,1,0,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,131.0,1,38,1,7,4,128.3,1,0,0,1,0,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,Graduate +1,1,4,171,1,1,132.0,1,1,19,4,5,138.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9254,1,1,115.0,1,12,1,9,3,108.7,1,0,0,1,0,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,131.0,1,1,37,3,7,120.2,0,0,0,1,0,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,134.0,1,1,1,4,9,124.2,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,142.0,1,19,1,9,1,132.6,0,0,0,1,0,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,2,1,3,6,150.0,1,0,0,1,1,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,130.0,1,19,38,9,7,113.5,0,0,0,1,0,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,135.0,1,2,1,2,8,126.6,0,0,0,1,0,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,12,133.1,1,37,37,5,7,119.3,1,0,0,1,1,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9130,1,1,110.0,1,3,19,2,9,105.5,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9130,1,1,134.0,41,1,19,5,5,125.6,1,0,0,1,0,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,151.0,2,1,1,5,9,146.5,0,0,0,1,0,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,133.0,1,1,3,3,3,135.8,1,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,7,1,9070,1,3,140.0,1,37,2,9,3,140.0,0,0,0,0,0,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,147.0,1,37,19,9,5,133.7,1,0,0,1,0,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,Enrolled +1,51,1,9500,1,1,127.0,1,19,1,5,9,150.0,0,0,0,1,0,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,143.0,1,1,37,5,9,126.6,0,0,1,0,0,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,9,160.0,0,0,1,1,0,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,Graduate +4,39,1,8014,0,19,133.1,1,34,34,0,0,100.0,0,0,0,1,0,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +4,43,1,9853,1,1,133.1,100,19,22,90,90,100.0,0,0,0,1,0,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,2,120.0,1,37,37,9,8,120.0,0,0,0,1,0,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9130,1,40,129.0,1,3,3,2,2,155.3,1,0,0,1,0,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,150.0,1,38,37,9,9,150.0,1,0,0,1,1,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,160.0,1,1,37,3,3,160.0,1,0,1,0,0,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,Dropout +2,39,1,9003,1,1,133.1,1,1,19,4,4,120.0,0,0,1,0,1,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,115.0,1,19,38,9,9,108.0,0,0,0,1,0,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,134.0,1,1,19,4,5,126.0,0,0,0,1,0,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,135.0,1,38,38,5,8,133.3,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,5,1,9670,1,1,135.0,1,1,12,4,4,140.3,1,0,0,1,0,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,122.0,1,19,1,4,8,135.8,0,0,0,1,0,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,19,19,3,9,112.6,1,0,0,1,0,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,4,9773,1,1,147.0,1,1,1,4,5,139.7,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,140.0,1,19,19,4,5,140.0,1,0,0,1,0,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,130.0,1,12,12,9,9,126.1,0,0,0,1,1,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,2,9147,1,1,130.0,1,34,37,9,9,118.5,1,0,0,1,1,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,138.0,1,4,1,2,1,133.0,1,0,0,1,0,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,138.0,1,37,37,194,171,131.0,1,0,0,1,0,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,19,5,8,147.3,0,0,0,1,0,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,6,9500,1,1,149.0,1,1,1,4,9,133.0,1,0,0,1,0,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,Graduate +1,16,6,9773,1,1,136.0,1,38,14,0,0,129.7,1,0,0,1,0,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,130.0,1,1,34,9,9,124.8,1,0,0,1,0,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,111.0,1,1,1,3,3,112.4,1,0,0,1,1,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,121.0,1,1,19,4,7,135.4,1,0,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,Graduate +1,1,1,9556,1,1,135.0,1,37,38,7,9,125.8,0,0,0,1,0,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,136.0,1,37,19,5,8,129.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,4,9670,1,1,110.0,1,1,37,7,7,111.1,1,0,0,0,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,128.0,1,38,38,5,5,118.6,1,0,0,1,0,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,Graduate +2,39,1,9500,1,19,133.1,1,37,38,9,10,120.9,1,0,0,1,0,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,Dropout +1,5,3,9085,1,1,143.0,1,37,37,0,90,159.1,0,0,1,1,0,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Dropout +4,39,1,9238,1,1,120.0,1,37,37,9,9,125.5,1,0,0,1,0,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,126.0,1,3,1,2,5,116.9,1,1,0,1,0,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,16,1,9556,1,1,137.0,1,37,37,9,7,122.7,1,0,0,1,0,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,136.0,1,1,1,9,9,123.8,1,0,0,1,0,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +4,39,1,9130,1,1,133.1,1,3,1,5,5,110.0,1,0,0,1,0,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,Dropout +1,17,4,9085,1,1,138.0,1,19,36,90,7,134.9,1,0,0,1,0,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,130.0,1,1,4,4,2,131.4,0,0,0,1,1,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,Graduate +2,42,1,9853,1,1,133.1,1,37,37,4,7,100.0,0,0,0,1,0,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,115.0,1,1,1,9,9,134.3,1,0,0,1,1,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,108.0,1,1,38,5,8,105.9,0,0,0,1,0,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9991,0,1,120.0,1,19,37,5,5,128.2,0,0,0,0,1,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +5,7,1,9130,1,3,160.0,1,19,38,9,6,160.0,0,0,0,0,0,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,121.0,1,3,19,2,9,115.4,1,0,0,1,1,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..92db5db9a6143e84d4ca37f25e2fb4c176360620 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/val.csv @@ -0,0 +1,443 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,17,1,9254,1,1,118.0,1,11,34,5,0,122.2,1,0,0,1,0,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,43,1,9238,1,1,120.0,1,1,38,4,3,118.3,0,0,0,1,0,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,108.0,1,3,1,3,4,109.1,1,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,9991,0,40,130.0,1,19,19,7,3,130.0,0,0,0,1,0,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,19,9,10,150.0,0,0,0,1,1,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9119,1,40,130.0,1,1,1,4,4,130.0,0,0,0,1,1,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,128.0,1,19,19,5,5,124.5,1,0,0,1,0,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,170.0,1,19,19,5,1,170.0,1,0,0,1,0,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,Enrolled +1,1,3,9500,1,1,113.0,1,3,1,134,135,107.8,1,0,0,1,0,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,Enrolled +1,1,2,9670,1,1,117.0,1,37,37,9,9,111.8,0,0,0,1,0,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,1,1,9,4,126.2,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,145.0,1,19,38,7,6,128.6,1,0,0,1,0,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9147,1,3,130.0,1,38,38,1,9,130.0,0,0,0,1,0,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,170.0,1,19,37,8,8,100.0,0,0,0,1,0,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9147,1,1,148.0,1,38,37,5,5,134.0,0,0,0,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,5,9085,1,1,118.0,1,1,38,4,7,122.2,1,0,0,1,0,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,133.1,1,38,38,191,192,118.0,0,0,1,1,0,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,Graduate +1,18,1,9853,1,1,132.0,1,37,37,9,5,126.1,0,0,0,1,0,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +6,39,1,8014,0,1,133.1,1,37,37,9,9,119.0,0,0,0,1,0,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,133.1,1,1,37,7,7,118.0,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,123.0,1,38,38,4,7,114.3,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9991,0,1,143.0,1,19,37,5,8,135.0,0,0,0,1,0,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,128.0,1,1,1,2,10,116.5,0,0,0,1,1,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,Dropout +2,39,1,9085,1,1,120.0,1,19,19,1,4,130.0,0,0,0,1,0,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,Dropout +2,39,1,171,1,19,100.0,1,37,37,9,9,139.0,0,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,3,9500,1,1,139.0,1,38,37,9,8,146.5,0,0,0,1,0,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,120.0,1,37,37,9,1,123.2,0,0,0,1,0,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,1,140.0,1,3,3,4,2,141.7,1,0,0,1,0,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,127.0,1,2,2,3,4,115.8,1,0,0,1,1,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,117.0,1,19,19,9,9,116.3,1,0,0,1,0,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,152.0,1,19,37,3,8,156.9,0,0,0,1,0,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,140.0,1,1,19,4,4,140.7,0,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,133.0,1,3,19,2,7,120.4,1,0,0,1,0,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,1,160.0,1,38,38,7,9,121.4,0,1,0,1,0,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,120.0,1,1,2,9,3,130.0,1,0,0,1,0,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,139.0,1,2,3,3,3,132.7,1,0,0,1,0,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,6,108.3,0,0,0,1,1,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,8014,0,1,107.0,1,19,11,0,0,103.5,1,0,0,1,0,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,113.0,1,38,38,191,175,110.2,1,0,1,1,0,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,1,19,1,5,100.0,1,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,39,140.0,1,38,19,9,5,110.0,0,0,0,1,0,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,Enrolled +1,18,2,9238,1,1,126.0,1,19,37,5,7,129.9,1,0,0,1,1,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,18,1,9254,1,1,137.0,1,19,19,4,5,126.9,0,0,0,1,1,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,121.0,1,37,37,9,9,122.4,0,0,0,1,0,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,51,1,9070,1,1,122.0,1,38,38,9,9,128.8,1,0,0,1,1,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,141.0,1,1,1,3,10,142.8,0,0,0,1,0,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,130.0,1,19,38,9,9,162.3,0,0,0,1,1,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,Dropout +1,18,1,9853,1,1,133.1,1,1,19,141,182,106.0,1,0,1,1,0,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,17,1,9147,1,1,120.0,1,19,19,3,3,113.4,0,0,0,1,0,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,147.0,1,37,19,7,7,134.4,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,1,120.0,1,1,3,144,123,120.0,0,0,0,1,1,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,17,4,9500,1,1,137.0,1,1,37,9,9,128.4,1,0,0,1,0,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,120.0,0,1,1,1,0,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9085,1,1,140.0,1,37,37,9,9,154.6,0,0,0,0,0,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,19,133.1,1,37,19,9,7,134.3,0,0,0,1,1,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,Dropout +1,39,1,9119,1,1,130.0,1,19,37,9,4,149.0,1,0,0,1,1,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,Enrolled +1,17,1,9254,1,1,115.0,1,1,19,3,3,109.4,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,126.0,1,37,3,5,2,116.9,0,0,0,1,1,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,128.0,1,1,1,2,2,130.8,1,0,0,1,0,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,127.0,1,19,19,4,6,120.7,0,0,1,0,0,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9238,1,1,110.0,1,14,14,90,90,112.5,1,0,0,1,0,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,19,5,5,130.8,1,0,0,1,0,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9130,1,1,150.0,1,1,1,4,10,110.0,0,0,1,1,1,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,5,9238,1,3,135.0,1,1,38,9,3,129.4,0,0,1,1,0,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,133.0,1,19,37,1,9,128.5,1,0,0,1,0,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,Graduate +1,39,2,9991,0,1,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9773,1,1,136.0,1,1,38,9,8,131.5,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,138.0,1,37,38,9,8,134.2,1,0,0,1,0,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,7,2,9500,1,3,140.0,1,37,38,9,9,138.0,0,0,0,1,1,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,Dropout +1,43,1,9003,1,1,120.0,1,1,1,4,10,134.4,0,0,0,1,1,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,140.0,1,19,19,9,9,124.3,1,0,0,1,0,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,Graduate +1,17,3,9254,1,1,127.0,1,12,38,5,7,116.9,1,0,1,1,0,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,1,9238,1,1,145.0,1,38,38,9,7,145.0,0,0,0,1,0,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,140.0,1,19,19,9,7,102.5,0,0,0,1,0,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,17,6,9500,1,1,131.0,1,1,19,7,7,126.5,1,0,0,1,0,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,34,34,0,0,123.3,1,0,0,1,0,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,120.0,1,37,3,9,3,168.2,0,0,0,1,1,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,5,9773,1,1,118.0,1,38,19,9,9,113.8,1,0,0,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,122.0,1,19,38,7,7,117.1,1,0,0,1,0,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,115.0,1,19,1,3,7,113.6,0,0,0,1,1,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,141.0,1,1,4,4,4,127.7,0,0,0,1,0,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,130.0,1,37,38,6,6,130.0,1,0,0,1,0,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,120.0,1,37,37,5,5,111.3,1,0,0,1,0,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,145.0,1,1,19,10,5,150.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,129.0,1,38,19,3,7,118.9,1,0,0,1,0,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,Enrolled +1,1,5,9085,1,1,121.0,1,38,37,9,8,114.0,1,0,0,0,0,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,17,1,9254,1,1,126.0,1,1,1,9,9,124.3,0,0,0,1,0,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,149.0,1,1,3,0,0,148.7,0,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9147,1,1,125.0,1,38,38,6,8,114.5,1,0,0,1,0,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,Graduate +1,16,3,9085,1,1,130.0,1,37,37,9,2,119.5,1,0,0,1,0,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,145.0,1,19,37,9,9,132.3,1,0,0,1,0,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,128.0,1,19,38,5,7,125.6,1,0,0,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9254,1,1,135.0,1,38,37,9,7,139.2,0,0,0,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,139.0,1,37,38,6,6,121.3,1,0,0,1,0,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9070,1,39,150.0,1,12,37,3,9,147.7,0,0,1,1,0,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,110.0,1,3,19,4,5,109.0,0,0,0,1,1,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,133.1,1,38,38,5,9,105.0,1,0,0,1,0,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,Graduate +2,51,1,9991,0,1,127.0,1,37,37,8,4,100.1,0,0,0,1,0,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,135.0,1,19,1,4,1,131.9,1,0,0,1,1,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +4,39,1,9556,1,1,160.0,1,19,3,9,2,130.0,0,0,0,1,0,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,Enrolled +1,17,5,9119,1,1,123.0,1,3,1,2,9,116.0,1,0,1,0,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9500,1,1,140.0,1,19,19,7,7,138.6,0,0,0,1,0,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,19,38,9,7,125.6,1,0,0,1,0,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,3,130.0,1,2,2,1,1,130.0,0,0,0,1,0,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,7,9,111.0,0,0,0,0,1,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,148.0,1,1,1,4,8,141.4,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9147,1,1,115.0,1,1,38,3,8,109.8,1,0,0,1,0,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +1,7,3,9130,1,3,130.0,1,19,37,90,5,130.0,0,0,1,0,0,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,5,9500,1,1,141.0,1,38,19,7,7,132.5,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,19,37,9,9,129.9,0,0,0,1,1,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,142.0,1,19,37,4,7,141.3,0,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,19,38,7,4,125.7,0,0,0,1,0,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,129.0,1,19,37,9,9,117.5,1,0,0,1,0,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,103.0,1,1,19,9,9,108.3,0,0,0,1,0,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9853,1,1,133.1,1,19,19,9,9,97.0,1,0,0,1,0,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9238,1,3,150.0,1,37,37,191,192,150.0,0,0,0,1,0,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9085,1,12,133.1,1,34,34,99,99,128.2,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9070,1,1,129.0,1,3,4,2,2,136.4,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Enrolled +1,39,2,9147,1,38,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,133.1,1,34,34,0,0,118.9,1,0,0,1,0,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,135.0,1,19,38,9,9,129.2,0,0,0,1,0,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,122.0,1,37,37,9,3,115.7,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,9853,1,1,120.0,1,1,19,4,7,111.3,0,0,0,1,0,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,141.0,1,38,19,9,10,125.6,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,4,9500,1,1,133.0,1,19,19,3,10,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,106.0,1,1,19,4,4,106.4,1,0,0,1,0,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,Enrolled +2,39,1,9147,1,1,133.1,1,37,37,9,9,140.0,0,0,0,0,0,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,51,1,9070,1,1,130.0,1,3,1,2,8,122.2,0,0,1,1,0,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,Graduate +1,17,6,9500,1,1,143.0,1,38,1,9,10,127.3,1,0,0,1,0,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,154.0,1,1,1,5,7,154.7,0,0,0,1,0,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,120.0,1,37,37,9,7,120.0,0,0,0,1,0,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,151.0,1,37,1,9,9,138.4,1,0,0,1,0,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Graduate +2,39,2,9003,1,19,133.1,1,38,19,4,1,110.0,0,0,0,0,1,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9119,1,1,129.0,1,12,1,4,10,124.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,120.0,1,37,37,4,9,117.1,1,0,0,1,0,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,133.1,1,3,1,4,9,105.0,1,0,0,1,1,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9147,1,1,120.0,1,38,38,9,8,118.3,0,0,0,1,1,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9147,1,1,147.0,1,19,1,9,7,139.3,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,140.0,1,19,19,5,5,131.3,0,0,0,1,1,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,133.0,1,38,19,9,8,128.8,1,0,0,1,1,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,Graduate +1,17,1,9254,1,1,127.0,1,1,1,4,8,126.7,1,0,0,0,1,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9147,1,1,131.0,1,1,19,4,5,120.2,1,0,0,1,0,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,143.0,1,38,38,5,5,133.9,0,0,0,1,0,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,Graduate +4,39,1,9147,1,1,140.0,1,37,37,9,9,142.8,0,0,0,1,0,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,138.0,1,19,1,5,5,128.0,1,0,0,1,0,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,Graduate +1,43,1,9500,1,1,150.0,1,37,37,9,9,130.8,1,0,0,1,0,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,160.0,1,19,38,9,9,152.0,0,0,0,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,42,1,9254,1,1,154.0,1,38,37,1,1,154.0,1,0,0,1,0,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,141.0,1,37,37,4,4,138.9,0,0,0,1,0,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,135.0,1,38,37,9,8,126.3,1,0,0,1,0,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,Graduate +1,17,2,9853,1,1,138.0,1,1,1,9,4,123.0,1,0,0,1,0,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +2,1,1,9085,1,1,139.0,1,19,19,192,144,127.1,0,0,0,1,1,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,Graduate +1,17,4,9070,1,1,116.0,1,38,37,9,9,109.0,0,0,0,1,0,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,38,38,6,3,140.0,0,0,0,1,0,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9254,1,1,120.0,1,19,19,4,4,125.5,0,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9991,0,1,120.0,1,37,37,9,8,122.5,1,0,0,1,0,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,136.0,1,1,37,4,5,130.8,0,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,116.0,1,38,19,8,10,110.8,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9853,1,1,146.0,1,19,38,9,3,145.3,1,0,0,1,0,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,150.0,1,37,37,9,7,150.0,0,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,124.0,1,1,19,5,4,124.4,0,0,0,1,0,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,37,38,9,9,148.5,0,0,0,1,1,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,9,9,127.0,1,0,0,1,1,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,Graduate +4,1,1,8014,0,1,133.1,1,39,19,4,10,143.0,1,0,0,1,0,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,133.1,1,1,19,3,5,115.0,0,0,0,0,1,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,Dropout +2,44,1,9003,1,39,160.0,1,37,38,9,4,160.0,0,0,0,1,0,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,Graduate +1,16,3,9070,1,1,152.0,1,1,38,4,8,156.9,1,0,0,1,0,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,9,9,126.3,0,0,0,1,0,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9773,1,1,131.0,1,1,38,9,5,132.4,1,0,1,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9556,1,1,140.0,1,37,37,9,8,105.0,1,0,0,1,0,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9070,1,1,128.0,1,19,19,3,3,129.8,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,7,9,125.5,1,0,0,1,0,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,140.0,1,38,37,7,7,143.0,0,0,0,1,0,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,139.0,1,19,38,4,9,146.7,1,0,0,1,0,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,129.0,1,1,37,9,9,118.2,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,142.0,1,34,34,99,99,131.9,0,0,0,1,0,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,139.0,1,1,19,9,3,130.3,1,0,0,1,0,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,38,5,5,152.4,0,0,0,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,19,19,4,6,147.6,1,0,0,1,0,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,Graduate +1,51,1,8014,0,2,110.0,1,19,38,9,10,110.0,0,0,0,1,1,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,Graduate +1,17,3,9119,1,1,135.0,1,1,19,141,193,121.7,1,0,0,1,1,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,1,4,9773,1,1,122.0,1,19,19,9,7,121.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9003,1,3,120.0,1,1,19,4,1,120.0,1,0,0,1,1,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,140.0,1,19,37,4,8,133.3,1,0,0,1,0,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,121.0,1,1,1,5,4,111.9,1,0,0,0,1,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,3,130.0,1,1,38,90,90,143.4,0,0,0,1,1,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,1,120.0,1,37,37,6,9,121.0,0,0,0,1,0,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,154.0,1,38,37,4,4,141.4,0,0,0,1,0,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,40,130.0,1,19,1,5,10,130.0,1,0,1,0,0,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,133.1,1,1,1,4,4,120.0,0,0,1,0,1,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,120.0,1,37,1,9,5,113.4,1,0,0,1,0,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,139.0,1,38,37,7,7,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,135.0,1,38,19,194,193,135.4,1,0,0,1,1,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,150.0,1,3,2,2,2,150.0,0,0,0,1,1,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +2,43,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,1,1,7,4,136.0,1,0,0,1,1,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,3,130.0,1,3,3,1,2,150.0,0,0,0,1,0,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,123.0,1,1,38,4,7,115.3,1,0,0,1,0,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,101.0,1,38,38,9,9,104.5,1,0,0,1,0,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,140.0,1,1,19,9,9,128.8,0,0,0,1,1,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,Graduate +1,39,2,9119,1,1,120.0,1,37,37,5,5,128.0,0,0,0,1,1,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,15,133.1,1,34,34,0,0,100.0,1,0,0,0,0,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,133.1,1,6,11,4,5,138.4,0,0,0,1,1,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,142.0,1,37,37,6,7,136.1,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,132.0,1,37,37,9,9,123.6,1,0,0,1,0,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,9,9,126.9,1,0,0,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,15,1,9238,1,1,150.0,26,3,37,2,8,132.5,1,0,0,0,0,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,142.0,1,12,12,9,4,132.6,1,0,0,1,0,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,4,9254,1,1,106.0,1,37,19,9,7,116.9,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,160.0,1,1,19,5,7,155.5,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,42,1,9500,1,1,157.0,1,3,3,3,3,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,131.0,1,3,19,1,4,118.8,0,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,Graduate +1,43,2,9773,1,1,120.0,1,34,34,0,0,103.6,1,0,0,1,0,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,125.0,1,34,37,9,9,129.2,1,0,1,0,0,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,4,9085,1,1,145.0,1,37,1,9,9,145.0,1,0,0,1,0,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,136.0,1,1,1,9,3,122.7,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,1,4,9147,1,1,120.0,1,19,38,5,5,122.8,1,0,0,1,1,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,2,9085,1,1,140.0,1,37,38,9,7,137.0,0,0,0,1,0,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,120.0,1,4,1,4,10,112.0,1,0,0,1,0,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,37,38,7,7,110.0,0,0,0,1,1,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,138.0,1,38,19,9,5,144.3,0,0,0,1,0,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,12,133.1,1,37,37,9,9,120.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9147,1,1,140.0,1,19,19,9,7,120.4,0,0,1,0,0,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,145.0,1,37,1,9,4,138.8,1,0,0,1,0,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,19,38,5,0,133.7,1,0,0,1,0,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9130,1,39,150.0,1,5,1,2,5,150.0,1,0,0,1,1,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,Enrolled +1,43,1,9991,0,1,140.0,1,37,38,9,8,135.5,0,0,1,0,0,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,Dropout +1,1,1,9254,1,1,123.0,1,38,19,9,4,117.8,0,0,0,1,1,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9500,1,1,125.0,1,1,12,3,6,115.2,1,0,0,1,0,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,Graduate +1,17,2,9254,1,1,129.0,1,12,37,9,9,122.0,1,0,0,1,0,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,2,9070,1,1,143.0,1,1,1,4,10,146.2,1,0,0,1,1,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,117.0,1,38,38,4,9,120.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,3,130.0,1,3,1,1,10,160.0,0,0,0,1,0,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,Dropout +1,17,1,9556,1,1,133.0,1,38,37,9,9,124.4,1,0,0,1,0,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,Graduate +1,1,1,9003,1,1,124.0,1,38,19,9,7,116.0,0,0,0,1,1,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,164.0,1,19,1,9,9,161.2,0,0,0,1,1,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,1,130.0,1,37,37,9,9,119.5,1,0,0,1,0,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,1,19,1,5,130.0,0,0,1,1,0,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,142.0,1,19,19,7,3,132.9,0,0,0,1,1,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,126.0,1,19,19,3,7,123.9,0,0,0,1,0,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9254,1,1,132.0,1,1,38,5,6,122.6,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,1,6,9238,1,1,125.0,1,38,1,7,4,118.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,1,140.0,1,3,3,2,2,110.0,0,0,0,1,1,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,138.0,1,1,40,4,3,149.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,43,1,171,1,1,144.0,1,19,19,9,4,121.6,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9773,1,1,129.0,1,37,37,9,7,117.1,1,0,0,1,0,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,Enrolled +1,1,6,9853,1,1,114.0,1,19,19,9,9,110.2,1,0,0,1,1,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Dropout +2,42,1,9147,1,1,100.0,1,37,37,9,9,100.0,1,0,0,1,0,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,135.0,1,38,19,9,5,126.3,0,0,0,1,1,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,156.0,1,3,3,2,2,147.7,1,0,0,1,0,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,Graduate +1,1,1,9147,1,1,139.0,1,38,1,5,5,127.1,1,0,0,1,1,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,127.0,1,1,37,4,9,128.1,0,0,0,1,1,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,5,9070,1,1,124.0,1,37,37,9,9,113.9,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,129.0,1,38,37,9,5,120.0,1,0,0,1,0,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,118.0,1,19,19,9,9,122.2,0,0,0,1,0,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,Graduate +2,39,1,9556,1,19,133.1,1,38,37,7,7,99.5,1,0,1,0,0,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,130.0,1,38,38,7,7,136.3,1,0,0,1,1,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,1,9853,1,1,112.0,1,2,19,3,9,106.1,1,0,0,1,0,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,43,1,9119,1,1,146.0,1,3,1,2,3,100.0,0,0,0,1,1,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,132.0,1,1,12,4,5,124.3,0,0,0,1,0,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,8014,0,1,136.0,1,37,37,5,8,132.5,0,0,1,1,0,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,37,37,90,90,130.0,1,0,0,1,1,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,135.0,1,1,1,4,4,122.8,0,0,0,1,0,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,Graduate +2,39,1,9254,1,1,130.0,1,37,37,9,9,125.0,0,0,0,1,0,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,133.1,1,19,19,9,8,132.0,1,0,0,1,0,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,Dropout +2,39,1,9070,1,1,160.0,1,3,1,2,5,126.5,0,0,0,1,0,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,15,1,9556,1,1,137.0,26,19,1,9,4,137.0,0,0,1,1,0,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9773,1,1,133.1,1,3,5,0,2,125.8,1,0,0,0,1,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,16,4,9238,1,1,135.0,1,37,37,9,9,121.0,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,2,9556,1,1,130.0,1,37,19,9,8,110.0,0,0,0,1,1,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,Enrolled +1,1,1,9853,1,1,123.0,1,1,38,9,6,121.6,1,0,0,1,0,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9119,1,1,126.0,1,38,19,5,5,130.2,0,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,5,9500,1,1,122.0,1,37,3,9,2,116.8,1,0,0,1,0,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,132.0,1,38,38,9,9,119.3,1,0,0,1,0,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,116.0,1,38,1,5,1,111.1,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9500,1,1,113.0,1,38,19,9,7,106.7,1,0,0,1,0,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,Enrolled +1,39,1,9670,1,1,120.0,1,34,34,0,0,106.0,1,0,0,0,1,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,145.0,1,19,37,5,9,130.5,1,0,0,1,0,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,Graduate +2,39,1,9238,1,19,133.1,1,37,37,4,4,98.5,0,0,0,1,0,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,152.0,1,41,19,3,5,137.8,0,0,0,1,0,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,Graduate +1,43,2,8014,0,3,130.0,1,34,34,0,0,130.0,0,0,0,1,1,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,152.0,1,38,37,9,9,139.1,0,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,18,1,9003,1,1,133.1,1,1,38,9,6,101.0,0,0,0,1,1,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,19,1,9,8,105.0,0,0,0,1,0,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,162.0,1,19,1,5,5,147.5,1,0,0,1,0,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,19,1,4,1,101.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9119,1,1,116.0,1,19,1,9,7,112.2,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,133.0,1,38,37,9,7,120.1,1,0,0,1,0,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,110.0,1,37,37,5,6,108.3,0,0,0,0,0,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,Dropout +1,17,2,9773,1,1,121.0,1,1,1,5,5,123.1,1,0,0,1,1,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,17,1,9556,1,1,133.0,1,1,38,4,9,119.0,0,0,0,1,0,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,Enrolled +1,17,1,9147,1,1,139.0,1,1,38,4,5,152.0,0,0,0,1,0,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,160.0,1,12,38,4,8,160.0,1,0,0,1,1,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,133.1,1,19,19,7,7,117.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,128.0,1,3,1,3,3,121.0,1,1,1,1,1,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,116.0,1,1,19,4,7,127.6,1,0,0,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,Dropout +1,18,3,9119,1,1,111.0,1,1,19,9,8,111.0,1,0,0,1,1,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,146.0,1,1,1,9,7,126.0,0,0,0,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,Enrolled +1,53,1,9085,1,42,140.0,1,1,1,5,5,143.3,1,0,0,0,0,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,Enrolled +1,1,1,9070,1,1,144.0,1,1,1,3,5,127.2,1,0,0,1,0,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,141.0,1,38,1,5,7,132.6,0,0,0,1,0,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,18,1,9085,1,1,153.0,1,37,37,9,9,138.0,1,0,0,1,0,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,137.0,1,1,3,5,2,133.9,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,150.0,1,19,38,9,5,143.0,0,0,0,1,0,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,1,9,6,126.1,1,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9070,1,1,133.0,1,4,1,4,4,132.0,1,1,0,1,0,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,140.0,1,1,19,9,9,140.0,1,0,0,1,0,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,133.1,1,3,1,2,4,128.2,1,0,0,1,0,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,1,133.1,1,37,36,90,7,128.2,0,0,0,1,1,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,114.0,1,19,38,9,7,135.9,0,0,0,1,1,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,Graduate +2,51,1,9500,1,1,130.0,1,37,37,5,5,120.0,0,0,0,1,1,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,Dropout +1,43,1,9670,1,39,110.0,1,19,3,7,10,110.0,0,0,0,1,0,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,43,1,9500,1,1,148.0,1,29,38,90,3,131.0,1,0,0,1,0,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,Graduate +1,18,1,9254,1,1,118.0,1,38,38,5,5,123.3,1,0,0,1,1,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9003,1,3,130.0,1,1,38,9,7,130.0,1,0,0,0,1,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,3,38,2,7,121.7,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9991,0,1,133.1,1,38,38,5,5,145.0,0,0,0,1,0,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,136.0,1,1,12,9,10,121.7,1,0,0,1,0,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,160.0,1,19,1,4,10,153.0,1,0,0,1,0,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,Graduate +2,53,1,9147,1,42,130.0,1,19,19,175,152,132.4,0,0,0,1,0,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9119,1,40,120.0,1,1,1,5,10,146.8,0,0,0,1,1,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,150.0,1,19,11,0,0,131.1,1,0,0,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,122.0,1,1,19,4,3,130.4,1,0,0,1,0,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,5,9119,1,1,132.0,1,38,19,5,3,119.1,0,0,0,1,0,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,137.0,1,1,3,4,3,124.6,0,0,0,1,0,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,126.0,1,1,38,4,7,124.3,1,0,0,1,0,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,Graduate +1,43,1,9238,1,39,120.0,1,2,1,1,2,118.6,0,0,0,1,1,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,34,34,0,0,119.1,1,0,0,1,0,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,127.0,1,1,1,4,4,120.4,1,0,0,1,0,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,135.0,1,1,38,5,5,122.4,0,0,1,1,0,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,Graduate +1,18,2,9773,1,1,109.0,1,1,1,4,4,109.0,1,0,0,0,0,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9500,1,1,132.0,1,19,3,9,5,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,Enrolled +1,43,1,33,1,19,133.1,1,38,38,4,4,140.0,0,0,1,1,1,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,Dropout +1,17,1,9773,1,1,120.0,1,37,37,5,5,125.3,0,0,0,1,0,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,1,19,5,10,141.1,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,145.0,1,19,38,4,4,132.1,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9254,1,1,122.0,1,19,19,5,5,118.2,0,0,0,1,0,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,Enrolled +1,17,1,8014,0,1,119.0,1,34,34,0,0,112.4,1,0,0,1,0,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,5,9500,1,1,125.0,1,1,1,3,8,115.6,1,0,0,1,0,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,Enrolled +2,39,1,9991,0,1,150.0,1,1,4,4,2,146.0,0,0,0,1,1,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,132.0,1,4,2,123,112,143.6,1,0,0,1,1,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9085,1,1,144.0,1,1,19,4,10,132.1,1,0,0,1,0,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,19,19,1,1,125.5,1,0,0,1,0,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,130.0,1,19,19,9,6,135.0,0,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,1,140.0,1,19,19,90,90,120.0,0,0,1,0,1,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,143.0,1,1,37,3,8,128.0,0,0,0,1,0,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,Graduate +1,1,3,9070,1,1,146.0,1,34,34,0,0,143.6,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9130,1,1,130.0,1,1,19,6,6,154.0,1,0,0,1,1,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,10,170.0,0,0,0,1,0,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,Enrolled +6,39,1,9991,0,12,130.0,1,37,37,90,90,119.0,1,0,0,0,1,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,53,1,9003,1,42,130.0,1,1,1,144,144,125.8,0,0,1,1,0,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,145.0,1,40,1,2,4,160.1,0,0,0,1,0,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9070,1,1,140.0,1,1,1,9,8,144.3,1,0,0,1,0,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,150.0,1,1,38,6,6,150.0,1,0,0,1,1,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,148.0,1,37,37,9,9,143.5,0,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,123.0,1,19,19,9,8,125.5,0,0,0,0,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,130.0,1,34,1,0,2,128.2,0,0,0,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,1,130.0,1,1,1,3,7,140.0,0,0,0,1,1,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,17,4,9556,1,1,112.0,1,1,1,4,10,107.1,1,0,0,1,0,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,101.0,1,1,1,3,4,102.4,0,0,0,1,0,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,133.0,1,37,37,9,7,121.8,0,0,0,1,1,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9500,1,1,133.1,1,3,1,5,5,148.8,0,0,0,1,0,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,157.0,1,19,38,5,3,149.3,0,0,0,1,0,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,163.0,1,3,4,2,5,175.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,148.0,1,1,3,4,1,163.4,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,Graduate +1,53,1,9085,1,42,130.0,1,38,38,9,9,128.8,0,0,0,1,0,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,Dropout +1,39,1,8014,0,1,120.0,1,1,1,4,4,150.5,0,0,0,1,0,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Graduate +1,51,1,9147,1,1,130.0,1,1,1,4,4,120.0,0,0,0,1,0,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,Enrolled +4,39,2,9556,1,19,133.1,1,19,19,4,6,123.0,0,0,0,1,0,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,Graduate +4,39,1,8014,0,19,140.0,1,37,37,9,3,131.0,0,0,0,1,0,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,131.0,1,19,38,9,9,129.7,1,0,0,1,0,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,Graduate +1,7,1,9238,1,40,130.0,1,37,37,5,5,130.0,0,0,0,1,1,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,Graduate +1,1,1,9130,1,1,133.0,1,3,1,2,4,126.0,0,0,0,1,1,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,100.0,1,1,1,4,4,120.0,0,0,0,1,1,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,138.7,1,1,12,4,3,111.3,0,0,0,1,1,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,135.0,1,38,38,5,7,121.0,0,0,0,1,0,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,1,19,5,9,111.1,0,0,0,1,1,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,43,1,9130,1,1,100.0,41,3,4,3,2,100.0,0,0,0,1,0,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9147,1,3,130.0,1,37,19,9,8,130.0,0,0,0,1,0,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,Graduate +1,1,4,9085,1,1,138.0,1,3,1,1,4,123.3,1,0,0,1,0,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,Graduate +1,17,1,9003,1,1,131.0,1,19,1,9,2,134.5,1,0,0,1,0,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,139.0,1,38,1,9,5,131.8,1,0,0,1,0,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,133.1,1,37,37,6,6,136.2,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,123.9,1,37,1,9,7,123.9,0,0,0,1,1,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,Dropout +1,1,1,9147,1,1,143.0,1,3,1,5,5,152.1,1,0,1,1,1,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,Dropout +1,1,6,9500,1,1,142.0,1,1,37,7,7,123.5,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,124.0,1,2,1,4,10,117.4,1,0,0,1,0,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,5,9119,1,1,130.0,1,19,1,4,5,118.1,1,0,1,0,1,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,Dropout +1,17,4,9147,1,1,121.0,1,38,37,6,7,113.0,1,0,0,1,0,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,150.0,1,19,19,4,10,100.0,0,0,0,1,0,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,151.0,1,37,37,9,9,138.0,1,0,0,1,0,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,138.0,1,38,38,9,9,126.8,0,0,0,1,1,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,Graduate +6,17,3,8014,0,1,115.0,1,19,1,5,90,115.0,0,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,127.0,1,1,19,3,3,120.2,1,0,0,1,0,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,Graduate +1,51,1,9991,0,1,134.0,1,1,1,5,3,120.6,1,0,0,1,1,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,121.0,1,19,1,7,9,117.9,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,131.0,1,1,38,4,8,121.9,1,0,0,1,0,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,19,133.1,1,38,38,7,8,170.0,0,0,0,1,1,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,100.0,1,37,37,9,5,170.0,0,0,0,1,1,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,95.0,1,37,37,5,8,95.0,0,0,0,0,1,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,148.0,1,37,37,9,9,134.7,0,0,0,1,0,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,Enrolled +1,1,2,9238,1,1,121.0,1,19,19,191,171,119.3,1,0,1,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9119,1,1,136.0,1,1,2,5,4,122.7,1,0,0,1,1,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,Dropout +1,17,4,9254,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,1,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,4,9,100.0,0,0,0,0,0,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9254,1,1,160.0,1,1,3,3,3,142.5,1,0,0,0,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,138.0,1,1,19,7,8,129.3,1,0,0,1,0,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,90,90,100.0,0,0,0,1,1,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,148.0,1,1,37,9,7,143.3,0,0,0,1,0,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,19,38,4,10,130.0,1,0,0,1,0,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,19,37,9,7,110.0,1,0,0,1,1,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9254,1,1,131.0,1,4,3,7,4,126.1,1,0,0,1,0,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,Graduate +1,43,2,9500,1,1,136.0,1,38,38,9,5,131.3,0,0,0,1,0,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,119.0,1,1,1,4,10,125.0,0,0,0,1,1,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,Enrolled +1,17,2,9238,1,1,132.0,1,38,1,7,7,133.1,1,0,0,1,0,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,126.0,1,12,1,5,10,120.2,0,0,0,1,0,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,Enrolled +1,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,161.0,22,37,37,9,9,137.9,0,0,1,0,0,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,Graduate +1,17,2,9147,1,1,133.0,1,19,1,9,3,120.1,1,0,0,1,0,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9085,1,1,127.0,1,3,3,2,8,138.8,1,0,0,1,0,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,121.0,1,1,1,1,1,115.1,1,0,0,1,0,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9130,1,1,130.0,1,3,19,2,9,115.9,0,0,0,1,0,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +2,7,1,9991,0,3,140.0,1,34,34,99,99,140.0,1,0,0,0,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,113.2,0,0,0,1,0,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9500,1,1,137.0,1,1,1,9,9,127.9,1,0,0,1,0,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,Dropout +1,1,5,9500,1,1,130.0,1,19,37,9,7,127.6,1,0,0,1,0,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,133.1,1,1,38,3,7,121.7,0,0,0,1,0,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,130.0,1,3,1,4,1,130.0,1,0,0,0,0,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,107.0,1,2,12,3,10,104.2,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,9,113.5,0,0,0,1,0,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,145.0,1,19,37,4,8,136.8,1,0,0,1,0,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,120.0,1,19,38,5,6,112.3,0,0,0,1,0,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,133.1,1,34,34,0,0,125.3,0,0,0,1,1,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,Dropout +1,1,6,9853,1,1,136.0,1,1,19,5,5,122.0,0,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,121.0,1,4,1,2,3,120.7,1,0,0,1,0,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,1,1,9147,1,1,133.1,1,34,34,0,0,131.8,0,0,0,1,0,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,4,100.0,0,0,0,1,0,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,127.0,1,19,38,3,3,121.1,1,0,0,1,1,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b73175257b2144861b9b26be8c24898dac599209 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..63db39e1696c2dbaa58ac1ba90526a51bfbb6892 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "tabddpm", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/tabddpm-m5-3539-20260424_034106.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/tabddpm-m5-3539-20260424_034106.csv new file mode 100644 index 0000000000000000000000000000000000000000..e40d83d6e631d777e3d7018238dc289776984e09 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/tabddpm-m5-3539-20260424_034106.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,1.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,9.0,9991.0,1.0,39.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,0.0,23.0,33.0,20.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,1.0,19.0,0.0,20.0,26.0,44.9350266177603,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,111.28289696739901,0.0,0.0,0.0,0.0,1.0,0.0,17.000373448010897,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,0.0,43.0,190.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,10.802196147389804,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,15.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,19.0,38.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,168.2060741982547,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,194.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,0.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,39.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,0.0,0.0,45.0,26.0,0.0,0.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,171.0,1.0,1.0,96.0,108.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,0.0,17.994012324218605,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,1.0,33.0,0.0,1.0,145.0,1.0,38.0,43.0,9.0,4.0,189.8628468872235,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,8.0,26.0,11.215606949076387,0.0,0.0,23.0,6.0,0.0,16.03735092040819,0.0,11.100000381469727,2.5999999046325684,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,120.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,0.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,0.0,0.0,45.0,26.0,0.0,0.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,194.99930147686894,190.0,1.0,0.0,0.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,26.0,14.956645674827607,4.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,0.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,7.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,14.9458858399459,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,16.06917238678054,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,37.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,9.289326771670169,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,0.0,19.0,0.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,8.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,96.29747282308814,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,13.899999618530273,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,189.9961515934616,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,6.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,16.13128343084439,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,18.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,21.0,0.0,20.0,0.0,0.0,0.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,2.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,20.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,1.0,20.0,0.0,45.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,9556.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,95.05626643495249,0.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,0.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,20.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,9.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,39.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,1.0,33.0,1.0,1.0,190.0,109.0,37.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,171.0,1.0,1.0,190.0,1.0,38.0,1.0,194.0,193.49049861462387,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,6.0,9.0,17.0,16.08836312968131,0.0,0.0,23.0,0.0,0.0,18.558270474718174,0.0,7.599999904632568,3.700000047683716,-0.9200000166893005,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,0.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,1.0,8014.0,1.0,1.0,149.07460781457408,1.0,1.0,1.0,9.0,10.0,144.11800741857573,1.0,0.0,1.0,1.0,1.0,0.0,28.17560651347541,0.0,0.0,13.0,10.0,17.0,14.57686815101626,0.0,0.0,10.0,13.0,8.0,14.941994710978504,0.0,12.399999618530273,0.5,0.3199999928474426,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,15.5,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,9.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,0.0,0.0,33.0,0.0,18.571428298950195,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,1.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,17.0,1.0,9500.0,1.0,43.0,140.23647804959103,1.0,19.0,19.0,9.0,9.0,124.93252248515556,0.0,0.0,0.0,1.0,0.0,0.0,27.0,0.0,0.0,6.0,10.0,5.0,11.513795054820072,0.0,0.0,6.0,7.0,4.0,13.0,0.0,10.800000190734863,-0.30000001192092896,0.3199999928474426,2.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,95.384115541654,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.00009390417583,1.0,1.0,1.0,0.0,0.0,124.86002885082485,1.0,0.0,1.0,1.0,1.0,0.0,17.008108393838214,0.0,0.0,21.0,0.0,6.0,0.0,0.0,0.0,23.0,17.0,13.0,18.331162863645357,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,38.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,101.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,39.0,96.17027052534618,108.0,1.0,1.0,1.0,0.0,190.0,0.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,0.0,5.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,2.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,10.0,1.0,9670.0,1.0,1.0,130.0,1.0,38.0,19.0,9.0,8.0,116.15271121086826,0.0,0.0,0.0,1.0,0.0,0.0,19.0,0.0,0.0,7.0,7.0,6.0,12.571645420341325,0.0,0.0,6.0,8.0,8.0,13.377179469155744,0.0,16.200000762939453,1.399999976158142,-3.119999885559082,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,42.0,96.0,109.0,38.0,43.0,194.0,195.0,116.70730472906435,1.0,0.0,1.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,15.5,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,100.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,16.2267627406284,26.0,18.0,0.0,19.0,0.0,33.0,0.0,0.0,12.0,12.399999618530273,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,187.81851766751402,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.153255204097036,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,12.0,18.571428298950195,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +1.0,57.0,9.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,1.0,9003.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,15.0,45.0,3.0,14.746680243571461,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,1.0165979708456088,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.00366665483999,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,38.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,13.002047208540908,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,194.0,195.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,16.768457647421197,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,0.0,43.0,190.0,1.0,44.0,43.0,0.0,195.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,0.0,43.0,96.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,0.0,1.0,96.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,5.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,0.0,0.0,0.0,9.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,187.68636913187362,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,44.9910669044518,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,39.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,4.0,9500.0,1.0,1.0,142.0,1.0,37.0,38.0,9.0,4.0,132.1473870958634,1.0,0.0,0.0,1.0,0.0,0.0,18.0,0.0,0.0,7.0,7.915319578646134,6.0,14.578996135330934,0.0,0.0,6.0,7.0,7.0,14.28705039089353,0.0,8.899999618530273,0.5,1.7899999618530273,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,2.5999999046325684,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0099247536967,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,95.95537676906733,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,9.49245400465682,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,5.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,194.99643935645284,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,113.95875587684355,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,12.0,11.100000381469727,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,1.0,9238.0,1.0,1.0,150.0,1.0,37.0,36.0,9.0,10.0,131.81070124421746,1.0,0.0,0.0,1.0,0.0,1.0,19.0,0.0,0.0,7.0,9.0,6.0,13.48723125478041,0.0,0.0,6.0,7.0,7.0,13.577233946904409,0.0,9.399999618530273,1.399999976158142,1.7899999618530273,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.01501757118356,0.0,20.0,0.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-0.9200000166893005,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,17.344578209064302,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,14.165735345956158,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,45.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,1.0,190.0,1.0,3.0,43.0,0.0,0.0,187.7911868391463,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,11.0,14.0,1.0,0.0,0.0,0.0,13.0,33.0,20.0,12.0,0.0,7.599999904632568,1.399999976158142,2.937268985253264,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,120.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,16.0,2.0,9238.0,1.0,1.0,131.0,1.0,37.0,1.0,9.0,8.0,135.16195276191328,1.0,0.0,0.0,1.0,0.0,0.0,19.0,0.0,0.0,7.0,8.0,6.0,13.217639678689803,0.0,0.0,8.0,9.0,6.0,12.69065973928107,0.0,9.399999618530273,1.399999976158142,1.769935990548714,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,44.0,43.0,194.0,195.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.32554208748087,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,3.0,9853.0,1.0,1.0,126.89664117212114,1.0,1.0,1.0,0.0,0.0,125.16259496161526,0.0,0.0,0.0,1.0,0.0,0.0,18.0,0.0,0.0,7.0,5.0,6.0,13.556969846576276,0.0,0.0,8.0,8.0,6.0,14.0,0.0,7.599999904632568,2.5999999046325684,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,37.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,1.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,13.899999618530273,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,0.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,42.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,1.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,118.62866421060231,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,5.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,12.0,19.0,0.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,38.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,69.1726327223525,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,38.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,38.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,9670.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,5.0,21.70178027941508,14.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,2.0199999809265137,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,41.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,6.0,18.0,0.0,19.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,5.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.02480451375071,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,1.399999976158142,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,185.24528772271015,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,17.975962817789558,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,17.816033135722073,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,37.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,2.5999999046325684,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,17.999794597965263,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,1.399999976158142,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9147.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-1.7000000476837158,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,0.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,95.00728164108767,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,17.0,1.0,9670.0,1.0,1.0,133.10000610351562,1.0,1.0,1.0,9.0,9.0,128.55235028418863,1.0,0.0,0.0,1.0,0.0,0.0,27.0,0.0,0.0,6.0,9.0,6.0,13.0,0.0,0.0,6.0,7.0,6.0,13.324424061063741,0.0,13.899999618530273,0.5,0.3199999928474426,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,12.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,0.0,1.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,26.0,44.99926294410852,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,108.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,2.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,6.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,95.00490777551076,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,0.0,1.0,96.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,120.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +5.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,1.0,180.16891134923915,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,1.0,9670.0,1.0,1.0,125.0,1.0,37.0,1.0,4.0,9.0,119.91107939868365,1.0,0.0,0.0,1.0,0.0,1.0,18.0,0.0,0.0,8.0,8.0,6.0,12.203634925811329,0.0,0.0,7.0,8.0,6.0,13.311949285971606,0.0,12.699999809265137,1.399999976158142,1.7400000095367432,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.03809267468311,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,162.66120201747415,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,1.0,44.0,43.0,194.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,120.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,0.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,1.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,18.57132837981145,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.17767844023474,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,51.0,1.0,171.0,1.0,1.0,130.0,1.0,37.0,1.0,7.0,7.0,130.0,0.0,0.0,1.0,0.0,1.0,0.0,21.0,0.0,20.0,26.0,30.362819499446367,26.0,12.612953753398447,0.0,19.0,21.0,20.0,14.0,13.359084773765046,0.0,9.399999618530273,0.30000001192092896,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,1.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,1.0,44.0,43.0,194.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,8.0,44.97525233903605,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,39.0,1.0,33.0,0.0,1.0,189.6719973923467,1.0,2.0,38.0,194.0,9.0,185.21085066562367,0.0,0.0,1.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,9.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,0.3199999928474426,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,38.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,1.0,9500.0,1.0,1.0,133.10000610351562,1.0,38.0,37.0,9.0,9.0,155.83425517692996,1.0,0.0,0.0,1.0,0.0,0.0,37.4627172058032,0.0,0.0,13.0,18.27125291195608,7.0,14.493475381665268,0.0,0.0,11.0,16.0,8.0,13.5098646731791,0.0,7.844695401756326,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,6.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,1.0,9147.0,1.0,1.0,189.94948511349887,1.0,38.0,38.0,194.0,10.0,185.4878816188766,1.0,0.0,0.0,1.0,0.0,0.0,18.0,0.0,0.0,6.0,8.0,11.0,14.41603009171635,0.0,0.0,8.0,7.0,7.0,15.160526622988584,0.0,10.800000190734863,0.30000001192092896,0.7900000214576721,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,38.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.000093894383177,0.0,0.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,0.0,43.0,96.0,109.0,44.0,43.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,17.0,3.0,9670.0,1.0,1.0,115.0,1.0,1.0,1.0,4.0,1.0,111.52123058272228,1.0,0.0,0.0,1.0,1.0,0.0,19.0,0.0,0.0,6.0,8.18461261621656,0.0,0.0,0.0,0.0,6.0,9.0,0.0,0.0,0.0,7.599999904632568,1.399999976158142,1.7899999618530273,1.0 +6.0,57.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9085.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,20.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,1.0,9130.0,1.0,1.0,135.0,1.0,38.0,1.0,192.0,6.0,127.1393411474662,0.0,0.0,0.0,1.0,0.0,1.0,18.0,0.0,0.0,7.0,9.0,7.0,14.738649616395133,0.0,0.0,6.0,9.0,7.0,14.474901686487433,0.0,13.899999618530273,2.799999952316284,-3.119999885559082,2.0 +1.0,39.0,1.0,9003.0,1.0,1.0,166.88149583224373,1.0,35.0,37.0,7.0,5.0,157.51462447453397,1.0,0.0,0.0,1.0,1.0,1.0,18.0,0.0,0.0,6.0,10.0,6.0,12.407729970737345,0.0,0.0,6.0,11.0,2.0,12.0,0.0,8.899999618530273,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,96.21908239076076,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,6.0,9991.0,1.0,1.0,120.0,1.0,37.0,43.0,194.0,189.30303650816842,117.653565433791,1.0,0.0,0.0,1.0,0.0,0.0,42.471652248181925,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,0.5,1.7899999618530273,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,1.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,3.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,0.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,0.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9500.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,0.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,15.835405274657349,0.0,0.0,23.0,5.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,0.0,1.0,96.0,109.0,44.0,1.0,194.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,194.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,44.89600143573872,0.0,18.0,0.0,19.0,0.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.13363241621524,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,1.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,45.0,0.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,9254.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,13.816702460951337,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-1.7000000476837158,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,5.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,7.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,5.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,160.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,18.3984357079531,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,13.551470329136153,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,38.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,15.5,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-3.119999885559082,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,189.91590863088172,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,5.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,189.99888644048391,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,189.9714901367307,109.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,5.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,6.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,17.977525218091987,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,1.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +1.0,1.0,1.0,9238.0,1.0,1.0,137.0,1.0,38.0,34.0,9.0,9.0,119.30154732855699,0.0,0.0,0.0,1.0,1.0,0.0,20.0,0.0,0.0,6.0,9.0,5.0,0.0,0.0,0.0,6.0,5.0,0.0,0.0,0.0,16.200000762939453,0.5,0.6237206791699792,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,4.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,5.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,37.75901258009359,0.0,20.0,0.0,0.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,20.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,17.06601207938327,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,14.0,26.0,18.0,12.0,0.0,0.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,12.136152711617097,12.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,133.35463281122284,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,0.7900000214576721,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,194.0,195.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,20.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +4.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,6.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,35.273761175196164,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,185.8711671778507,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,15.992307409636972,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,19.0,0.0,33.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,14.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,105.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +2.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,19.0,0.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,1.0,9500.0,1.0,1.0,143.79191658991908,1.0,37.0,38.0,9.0,3.6265950526169197,154.2274502759886,1.0,0.0,0.0,1.0,0.0,0.0,20.0,0.0,0.0,6.0,19.5264751475868,0.0,10.364038486566972,0.0,0.0,6.0,24.0,3.0,0.0,0.0,9.399999618530273,2.5999999046325684,0.4758277295674178,1.0 +1.0,1.0,9.0,9670.0,1.0,43.0,96.0,1.0,5.0,37.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,0.6000000238418579,3.509999990463257,1.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.00526739665837,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,1.0,0.0,50.83321227992219,0.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,14.880965436692136,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,19.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,1.0,9991.0,1.0,1.0,96.0,1.0,1.0,1.0,4.0,195.0,189.999740206094,1.0,0.0,1.0,0.0,0.0,0.0,69.20764817456133,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,0.0,6.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.001559915242208,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,21.0,33.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,0.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,39.0,1.0,171.0,0.0,1.0,142.0,1.0,19.0,37.0,3.0,9.0,153.25201019383206,0.0,0.0,0.0,1.0,0.0,0.0,20.0,0.0,20.0,26.0,43.030733937627986,26.0,0.0,0.0,19.0,21.0,33.0,13.0,12.991326061763617,0.0,9.399999618530273,3.700000047683716,2.0199999809265137,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,0.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,0.0,45.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,0.6000000238418579,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,17.999940523918788,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,41.46269911525842,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,1.0,33.0,0.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,38.29310422025552,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,20.0,17.080671573899444,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,37.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,0.0,8.0,44.99748156324753,7.0,13.613467199763393,0.0,19.0,21.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,28.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,193.65941467784438,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,0.7900000214576721,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,0.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,1.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,3.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,189.94642135039624,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,9003.0,1.0,1.0,109.02070752018363,1.0,3.0,43.0,194.0,4.0,182.65713460287316,1.0,0.0,0.0,0.0,0.0,0.0,59.47357789542512,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,17.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,8.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,183.95070838705703,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,0.0,43.0,96.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,108.0,37.0,43.0,90.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.200000762939453,0.5,-1.7000000476837158,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.00024143584056,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,45.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,2.0199999809265137,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,0.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,180.8223460284044,1.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,45.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,2.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,18.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,38.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,103.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,40.44799546076581,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,1.0,144.84041805167655,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,6.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,1.0,9119.0,1.0,1.0,131.0,1.0,1.0,1.0,4.0,8.0,114.90875816336364,1.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,5.0,11.0,0.0,11.420322081314284,0.0,0.0,6.0,12.0,0.0,0.0,0.0,12.399999618530273,0.6000000238418579,1.7899999618530273,0.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,4.0,0.0,0.0,0.0,23.0,33.0,0.0,18.563674328645842,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,190.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,0.0,43.0,96.0,109.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,18.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,110.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,1.0,9500.0,1.0,1.0,133.0,1.0,37.0,37.0,9.0,66.80053027586794,117.489946089078,1.0,0.0,0.0,1.0,0.0,1.0,18.0,0.0,0.0,6.0,7.894433746857358,6.0,14.0,0.0,0.0,6.0,6.0,6.0,12.834524854934443,0.0,12.699999809265137,0.5,2.0199999809265137,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,5.0,9500.0,1.0,1.0,123.50370899534138,1.0,4.0,3.0,9.0,7.0,109.358374447403,1.0,0.0,0.0,1.0,0.0,1.0,19.0,0.0,0.0,6.0,6.0,7.0,13.57016431903004,0.0,0.0,7.0,7.0,6.0,13.577119593275642,0.0,12.699999809265137,3.700000047683716,-0.9200000166893005,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,6.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,135.0060323552754,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,194.9269128551239,190.0,0.0,0.0,1.0,1.0,0.0,0.0,31.445682809492645,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,7.0,17.491724836883527,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,189.99660940256675,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,12.79821860183139,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,3.0,9853.0,1.0,1.0,136.0,1.0,1.0,1.0,1.0,3.4157800819390314,130.0,1.0,0.0,0.0,1.0,0.0,1.0,18.0,0.0,0.0,6.0,6.0,6.0,13.457692245866243,0.0,0.0,6.0,7.0,6.0,14.259095304627914,0.0,9.399999618530273,0.6000000238418579,2.0199999809265137,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,0.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,3.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,1.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,3.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,10.0,0.0,23.0,0.0,20.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,1.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,0.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9773.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.00160282881757,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,0.0,33.0,20.0,0.0,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,44.99190375278225,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +1.0,57.0,6.0,33.0,1.0,1.0,190.0,109.0,2.0,43.0,194.0,191.37468764318925,144.87329373981072,0.0,0.0,0.0,1.0,0.0,0.0,17.10761894751869,1.0,0.0,7.0,0.0,0.0,0.0,0.0,0.0,5.0,8.0,18.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,3.6143569564909996,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,7.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,4.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,192.0,0.0,187.66440875004338,1.0,0.0,0.0,1.0,0.0,0.0,18.0,0.0,20.0,26.0,43.18796931593437,26.0,17.32784231760998,0.0,19.0,23.0,33.0,14.0,17.562194241796142,0.0,7.599999904632568,3.700000047683716,1.1289791034935333,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,108.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,1.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,1.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,1.0,1.0,0.0,70.0,0.0,0.0,0.0,0.0,26.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,128.90744437770041,1.0,0.0,1.0,0.0,0.0,0.0,19.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,17.0,1.0,9500.0,1.0,1.0,133.0975228780817,1.0,38.0,37.0,4.0,9.0,124.52361668189167,0.0,0.0,0.0,1.0,0.0,1.0,19.0,0.0,0.0,6.0,5.0,6.0,14.162455439029909,0.0,0.0,6.0,6.0,4.0,14.80113258716093,0.0,12.399999618530273,-0.30000001192092896,2.0199999809265137,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,33.0,0.0,43.0,96.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,1.0,9500.0,1.0,1.0,164.66452732079196,1.0,37.0,37.0,191.0,9.0,152.80352059403387,0.0,0.0,0.0,1.0,0.0,1.0,18.0,0.0,0.0,6.0,6.0,6.0,13.893807598313877,0.0,0.0,8.0,6.0,3.0,11.687121551634366,0.0,11.100000381469727,2.799999952316284,-3.119999885559082,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,38.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,0.0,43.0,190.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +1.0,1.0,1.0,9773.0,1.0,1.0,120.0,1.0,1.0,1.0,4.0,3.1387218322200194,118.97720820451497,0.0,0.0,0.0,1.0,1.0,0.0,19.0,0.0,0.0,6.0,11.075045324461392,0.0,10.893779415890167,0.0,0.0,6.0,20.0,0.0,13.609531975321095,12.0,12.399999618530273,-0.800000011920929,0.3199999928474426,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,38.0,1.0,0.0,0.0,174.29230192007472,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,0.0,0.0,26.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,33.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,4.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +2.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,10.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,9.0,171.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,189.98901821570738,1.0,0.0,0.0,1.0,0.0,1.0,17.0,0.0,0.0,26.0,0.0,0.0,0.0,10.0,0.0,23.0,33.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,17.016789547289665,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,19.0,0.0,27.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,20.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,18.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,0.0,43.0,96.0,1.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,18.0,0.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.00272695921417,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,15.5348625441338,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,44.95628454567165,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,0.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,20.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,1.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,38.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,0.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,9.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,95.51681374946656,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +5.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,39.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,15.5,-0.800000011920929,3.509999990463257,2.0 +4.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,14.133138172878523,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,3.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,38.0,43.0,2.0,191.8907418736575,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,0.0,0.0,44.88747477350917,5.0,17.999925882719204,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.00060041996217,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,20.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,9.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,43.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,7.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,9.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,1.0,17.0,0.0,0.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,44.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,1.0,0.0,70.0,0.0,0.0,21.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,43.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,26.0,44.86238978902467,26.0,18.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,10.800000190734863,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,0.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +4.0,57.0,0.0,33.0,1.0,42.0,190.0,1.0,43.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,19.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,173.7314936360993,190.0,1.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,0.0,26.0,13.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,171.0,1.0,1.0,190.0,1.0,42.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,19.0,44.90082493849353,6.0,10.15469125165091,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,39.0,5.0,9991.0,1.0,1.0,115.0,1.0,1.0,1.0,2.0,0.0,116.85676876870966,1.0,0.0,0.0,1.0,1.0,0.0,18.0,0.0,0.0,9.0,7.0,7.0,0.0,0.0,0.0,14.0,14.0,8.0,13.0,0.0,16.200000762939453,2.5999999046325684,1.7899999618530273,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,0.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,10.767534462346951,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,11.65468335004663,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,17.996487158585065,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,1.0,8014.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,19.0,19.0,44.67912074860092,6.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,8.899999618530273,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,194.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,4.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,0.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,17.988639231991897,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,17.0,1.0,9085.0,1.0,1.0,100.0,1.0,38.0,38.0,5.0,9.0,119.6274945826062,0.0,0.0,0.0,1.0,0.0,0.0,18.0,0.0,0.0,6.0,7.0,6.0,13.714173363332572,0.0,0.0,7.0,8.0,6.0,13.560418318597957,0.0,10.800000190734863,0.5,2.0199999809265137,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,1.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,43.0,1.0,171.0,0.0,1.0,137.9350348167588,1.0,37.0,38.0,9.0,7.0,151.92190374342687,0.0,0.0,0.0,1.0,0.0,0.0,68.23444092668481,0.0,0.0,5.0,8.0,3.0,11.15266418591564,0.0,0.0,6.0,8.0,0.0,0.0,0.0,11.100000381469727,1.399999976158142,1.8980883841357137,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,51.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,111.74334621882511,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,1.0,9130.0,1.0,1.0,136.95565087171963,1.0,38.0,19.0,9.0,9.0,126.5504120454925,0.0,0.0,0.0,1.0,0.0,0.0,20.0,0.0,13.0,16.0,12.0,14.0,14.439504992492504,0.0,0.0,13.0,10.0,12.0,13.5,0.0,9.399999618530273,2.799999952316284,1.7899999618530273,2.0 +4.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,38.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,0.0,45.0,0.0,0.0,0.0,19.0,23.0,0.0,20.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,6.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,21.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,32.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9119.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,7.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,18.521697393011998,12.0,9.399999618530273,-0.800000011920929,-0.9200000166893005,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,14.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,0.0,0.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9500.0,1.0,1.0,145.0,1.0,38.0,19.0,2.0,0.0,140.3808364878483,1.0,0.0,0.0,1.0,1.0,0.0,18.0,0.0,0.0,13.0,7.0,26.0,15.187493024194117,0.0,0.0,8.0,8.0,13.0,14.516054288119342,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,9.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,8.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,51.0,0.0,33.0,0.0,43.0,96.0,26.0,38.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.113479329156746,0.0,20.0,26.0,11.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,2.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,39.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,38.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,100.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,15.192854511497336,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,0.0,1.0,96.0,1.0,44.0,43.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,1.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,0.0,95.54108046668426,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,16.501958913088494,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,1.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,9003.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,16.0,13.0,44.91905512492137,6.0,15.156963619551423,0.0,0.0,23.0,0.0,0.0,18.57104732525164,3.0,7.599999904632568,0.5,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,1.0,0.0,33.0,1.0,42.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,18.57138902686095,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.66144064101685,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,1.0,9003.0,1.0,1.0,136.0,1.0,38.0,37.0,4.0,5.0,141.98100876303712,0.0,0.0,0.0,1.0,0.0,0.0,19.0,0.0,0.0,7.0,8.0,7.0,14.318083725756804,0.0,0.0,8.0,12.0,6.0,13.216375239282035,0.0,15.5,-0.30000001192092896,1.7400000095367432,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,189.99833916668499,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,33.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,189.93417920182048,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,0.6000000238418579,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,1.0,9147.0,1.0,1.0,133.0,1.0,37.0,38.0,9.0,9.0,120.03824834434863,1.0,0.0,0.0,1.0,0.0,1.0,22.181621730706844,0.0,0.0,6.0,7.0,6.0,11.232989383467109,0.0,0.0,6.0,9.0,5.0,12.5,0.0,12.699999809265137,2.799999952316284,-1.7000000476837158,1.0 +1.0,53.0,5.0,8014.0,1.0,1.0,147.57737619653125,1.0,1.0,1.0,0.0,0.0,185.58880497669387,0.0,0.0,1.0,1.0,1.0,0.0,21.0,0.0,20.0,26.0,20.50651185127791,26.0,13.268055939942835,0.0,19.0,23.0,33.0,20.0,11.075254625129627,0.0,15.5,2.799999952316284,1.7899999618530273,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,18.0,18.545043760178928,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,19.0,190.0,1.0,1.0,1.0,0.0,139.34217886219713,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,69.99353107171049,0.0,20.0,0.0,45.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,1.0,9147.0,1.0,1.0,125.0,1.0,4.0,38.0,9.0,9.0,122.31648623917926,0.0,0.0,0.0,1.0,0.0,0.0,21.0,0.0,0.0,6.0,7.0,6.0,12.216294506988703,0.0,0.0,5.0,8.0,5.0,12.582399830170493,0.0,8.899999618530273,-0.30000001192092896,0.3199999928474426,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-3.119999885559082,1.0 +6.0,57.0,9.0,9991.0,1.0,1.0,133.10000610351562,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,12.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,4.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,9130.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,13.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,0.0,45.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,17.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,0.0,43.0,96.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.00006091665627,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,14.134403574996222,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,0.0,43.0,190.0,1.0,1.0,41.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,43.06619007727491,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,38.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,7.0,45.0,17.0,15.23817141843693,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,97.04042135754747,1.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,1.0,9238.0,1.0,1.0,135.54837085738475,1.0,1.0,1.0,9.0,9.0,130.7791638756552,1.0,0.0,0.0,1.0,0.0,0.0,19.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.100000381469727,1.399999976158142,0.3199999928474426,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,43.0,1.0,9085.0,1.0,1.0,138.76026970202415,1.0,3.0,38.0,9.0,9.0,110.0,0.0,0.0,1.0,0.0,1.0,0.0,32.0,0.0,0.0,5.0,9.0,0.0,0.0,0.0,0.0,5.0,5.0,0.0,0.0,0.0,13.899999618530273,-0.30000001192092896,-0.9200000166893005,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,39.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,5.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,33.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,17.712813277595068,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,17.305118000446708,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,1.0,9773.0,1.0,1.0,131.64673106933316,1.0,38.0,37.0,9.0,57.849766855100135,121.25435509691609,1.0,0.0,0.0,1.0,0.0,0.0,19.0,0.0,0.0,6.0,10.0,6.0,13.0,0.0,0.0,6.0,6.0,6.0,14.0,0.0,11.100000381469727,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,189.99684514266917,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,5.0,9254.0,1.0,1.0,133.10000610351562,1.0,38.0,38.0,9.0,9.0,127.33560306348848,1.0,0.0,0.0,1.0,0.0,0.0,18.0,0.0,0.0,7.0,9.0,7.0,13.462386486762652,0.0,0.0,8.0,8.0,5.0,13.809894868388481,0.0,10.10920048012595,3.700000047683716,1.7400000095367432,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,121.41934735397889,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,1.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,16.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.00034381656893,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,12.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,97.09555617392431,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.00027943620196,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,1.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,0.0,26.0,45.0,0.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,17.9994687226478,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,12.699999809265137,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,13.0,12.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,10.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +2.0,18.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,97.60853217524651,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,37.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,16.576532083127123,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,0.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,40.70567347684947,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,14.86487064018986,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,9.0,9085.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,3.0,9130.0,1.0,1.0,127.0,1.0,19.0,38.0,9.0,9.0,99.41481298221221,1.0,0.0,0.0,1.0,0.0,0.0,18.0,0.0,0.0,6.0,12.585557901656804,4.0,10.5,0.0,0.0,6.0,17.0,6.0,12.892356022107238,0.0,13.899999618530273,1.399999976158142,0.3199999928474426,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,0.0,43.0,190.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,0.3199999928474426,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.00015725741555,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,8.0,0.0,17.99888253393799,0.0,0.0,23.0,0.0,20.0,18.571428298950195,0.0,13.899999618530273,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,4.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,15.5,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,6.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,1.0,9500.0,1.0,1.0,136.47179467347485,1.0,37.0,37.0,9.0,5.0,126.87391359797685,0.0,0.0,0.0,1.0,0.0,0.0,43.996659661397075,0.0,0.0,6.0,8.0,5.0,12.331414959273015,0.0,0.0,6.0,7.0,5.0,11.617345896668882,0.0,8.899999618530273,-0.800000011920929,0.3199999928474426,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,13.3360583109324,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,10.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,1.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,9991.0,1.0,1.0,189.5095450503356,1.0,1.0,43.0,194.0,194.99361632670474,189.84285497329847,1.0,0.0,0.0,1.0,1.0,0.0,17.0,0.0,10.0,26.0,0.0,2.0,18.0,0.0,0.0,0.0,0.0,0.0,15.726815221580939,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,17.983286466513484,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,9.0,9991.0,1.0,39.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,5.0,9853.0,1.0,1.0,107.27097986730641,1.0,1.0,1.0,9.0,9.0,105.13113449478561,1.0,0.0,0.0,1.0,1.0,1.0,19.0,0.0,0.0,6.0,8.0,6.0,14.0,0.0,0.0,8.0,6.0,6.0,12.910523246552499,0.0,16.200000762939453,0.6000000238418579,-0.9200000166893005,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,9.399999618530273,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,0.0,19.0,0.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,1.0,9500.0,1.0,1.0,134.0,1.0,1.0,1.0,2.0,9.0,133.6897932153978,1.0,0.0,0.0,1.0,1.0,0.0,17.41303133896221,0.0,0.0,6.0,14.611930737888002,0.0,10.0,0.0,0.0,6.0,8.0,0.0,0.0,0.0,15.5,2.799999952316284,-3.556656457832159,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,7.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,0.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,2.0,9119.0,1.0,1.0,100.0,1.0,19.0,38.0,1.0,9.0,107.88889848596891,1.0,0.0,0.0,1.0,0.0,0.0,18.0,0.0,0.0,5.0,8.0,0.0,0.0,0.0,0.0,6.0,14.0,0.0,0.0,12.0,7.599999904632568,3.553431733073228,0.7900000214576721,1.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,132.9307922435603,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,21.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,11.333333015441895,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,189.99789572778337,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,6.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,38.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,43.0,1.0,9238.0,1.0,1.0,130.0,1.0,4.0,1.0,4.0,7.0,113.58823999421456,1.0,0.0,0.0,1.0,1.0,0.0,21.0,0.0,0.0,6.0,7.0,6.0,13.065975373223903,0.0,0.0,6.0,7.0,4.0,12.5,0.0,11.158171697079533,-0.30000001192092896,2.5477389791253318,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,1.0,9500.0,1.0,1.0,130.0,1.0,37.0,38.0,9.0,5.0,120.51214822070986,1.0,0.0,0.0,1.0,1.0,1.0,18.0,0.0,0.0,6.0,7.0,6.0,13.585184496320187,0.0,0.0,6.0,11.0,6.0,12.787085904321291,0.0,11.038331977138588,-0.800000011920929,-3.119999885559082,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,24.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,5.0,9991.0,1.0,1.0,190.0,1.0,38.0,1.0,194.0,195.0,125.86168183032053,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,12.699999809265137,3.700000047683716,-4.059999942779541,0.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,5.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,39.0,96.0,1.0,44.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,7.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,5.0,7.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,51.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +5.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,171.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,168.22783784066596,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,19.0,19.0,33.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,65.58844878014605,1.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,6.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,1.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,0.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,1.0,1.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,17.9963697915059,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,6.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,189.57670199179375,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,69.75783048156917,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,2.799999952316284,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,39.0,2.0,33.0,1.0,1.0,129.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,0.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,5.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,195.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,19.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,1.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,0.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,44.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,1.0,70.0,0.0,0.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,8.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,43.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,5.0,12.959767996515033,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9119.0,1.0,1.0,190.0,41.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,6.0,44.9946333198957,0.0,12.185496093597576,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,8.899999618530273,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,12.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,39.0,1.0,33.0,1.0,43.0,150.0,1.0,37.0,38.0,2.0,9.0,162.92710172318107,1.0,0.0,0.0,1.0,0.0,0.0,29.784855632908403,0.0,0.0,6.0,0.45952150111353757,6.0,13.57897017258813,0.0,0.0,6.0,8.0,4.0,15.853938347666004,0.0,16.200000762939453,-0.800000011920929,0.7900000214576721,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,9.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,6.0,18.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.42672991944916,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,1.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,6.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,140.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,100.0,41.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,10.800000190734863,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,17.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,42.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,14.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,43.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,17.0,4.0,9238.0,1.0,1.0,100.0,1.0,1.0,1.0,5.0,4.0,109.32079980552886,1.0,0.0,0.0,1.0,1.0,0.0,18.0,0.0,0.0,5.0,6.0,0.0,10.716770031493466,0.0,0.0,6.0,7.0,0.0,0.0,0.0,7.599999904632568,2.5999999046325684,1.7400000095367432,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,2.0,9991.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +2.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,53.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,15.763025631720012,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,18.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,1.0,9500.0,1.0,1.0,130.1339476031112,1.0,37.0,9.0,3.0,3.0,133.71725398557874,0.0,0.0,0.0,1.0,0.0,0.0,23.789854503420706,0.0,0.0,7.0,7.470880784043758,7.0,13.5,0.0,0.0,7.0,7.0,7.0,14.461013408856452,0.0,16.200000762939453,1.399999976158142,-1.7000000476837158,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,1.0,9085.0,1.0,1.0,189.99953785275397,1.0,44.0,1.0,194.0,195.0,189.96268642812467,1.0,0.0,1.0,0.0,0.0,0.0,17.016618855624152,0.0,0.0,6.0,15.150451935840502,3.0,15.529920476266822,0.0,0.0,23.0,6.0,5.0,18.274789308805634,0.0,8.899999618530273,0.6000000238418579,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,19.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +5.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,17.0,2.0,33.0,0.0,1.0,181.16266060958688,1.0,26.0,38.0,7.0,0.0,189.99830895164266,1.0,0.0,0.0,1.0,1.0,0.0,24.0,0.0,3.0,10.0,37.78956457686442,9.0,13.370229011997287,0.0,0.0,12.0,8.0,5.0,14.438899061683493,0.0,12.699999809265137,-0.30000001192092896,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,18.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,125.78242163349432,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,5.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,2.0199999809265137,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,38.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,4.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,8.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,42.0,96.0,109.0,1.0,37.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.00082146132326,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,9.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,0.0,26.0,0.0,0.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,19.0,0.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,67.93168865286364,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,7.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,6.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,8014.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,17.0,45.0,5.0,17.848602139299327,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,100.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,21.0,0.0,0.0,0.0,23.0,6.0,20.0,18.571428298950195,8.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,5.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,1.0,9670.0,1.0,1.0,105.40882830643653,1.0,37.0,3.0,9.0,10.0,110.90062746922597,0.0,0.0,0.0,1.0,0.0,1.0,20.0,0.0,0.0,6.0,9.0,5.0,11.395016503807012,0.0,0.0,6.0,7.0,6.0,12.592005024297746,0.0,12.699999809265137,0.5,1.7899999618530273,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,9991.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,38.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.30000001192092896,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,43.0,3.0,9147.0,1.0,1.0,113.88468360634982,1.0,19.0,38.0,9.0,9.0,114.21154238105218,1.0,0.0,0.0,1.0,1.0,1.0,19.0,0.0,0.0,6.0,7.0,7.0,13.5,0.0,0.0,6.0,9.0,4.0,13.606741482381128,0.0,12.399999618530273,2.5999999046325684,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,13.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,13.0,45.0,10.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,42.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,4.0,0.0,3.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,69.08630973865257,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,187.5738081013326,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,190.0,1.0,44.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,1.0,9670.0,1.0,1.0,175.59726722445896,1.0,38.0,37.0,194.0,193.01111532806243,175.6556357912275,1.0,0.0,0.0,1.0,0.0,0.0,17.304953742484155,0.0,0.0,8.0,9.0,11.0,16.007897929613645,0.0,0.0,23.0,8.0,8.0,15.289395577605124,0.0,7.599999904632568,0.6000000238418579,1.7400000095367432,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,1.0,9130.0,1.0,1.0,190.0,1.0,44.0,38.0,194.0,195.0,140.1984011393553,1.0,0.0,1.0,0.0,0.0,0.0,18.0,0.0,0.0,26.0,14.908337235371974,26.0,12.475616131855196,0.0,0.0,23.0,6.0,5.0,18.571428298950195,0.0,7.599999904632568,0.5,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,171.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,7.0,15.211873738841046,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,172.50905247695925,0.0,0.0,0.0,1.0,0.0,0.0,39.798736496060215,0.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,120.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,1.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,10.681397199969764,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,0.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,26.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,1.0,44.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,20.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,8.899999618530273,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,14.166347376550684,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,17.89099556188459,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,6.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,0.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,15.743667516467486,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,41.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,189.9995427609092,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,7.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +1.0,1.0,0.0,9070.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,194.86987341737228,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,6.0,15.588690396533153,7.0,17.74271925900278,0.0,0.0,23.0,0.0,0.0,18.571065177496276,0.0,7.599999904632568,0.30000001192092896,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,18.0,45.0,0.0,17.9671235243412,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,9.0,195.0,95.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,3.0,18.53272478148989,12.0,9.399999618530273,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,1.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0007863832921,0.0,0.0,0.0,1.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0041827734169,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,1.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,1.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0000644583715,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,8.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,6.0,44.995954840166384,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9003.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,95.59598835665548,0.0,0.0,0.0,1.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,189.98329546970388,109.0,3.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,0.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,38.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,1.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.00008140923195,109.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,5.0,9991.0,1.0,1.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +4.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,21.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,15.698794345557697,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,95.94258605081798,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,17.93173154652795,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,0.0,1.0,96.0,109.0,44.0,1.0,194.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,17.977462315743708,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,0.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,5.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,41.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,3.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,9.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,194.8859183626976,181.51740388026133,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,8.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,33.97704113135154,1.0,0.0,0.0,45.0,26.0,17.629247967022636,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,57.0,0.0,33.0,0.0,1.0,96.0,109.0,37.0,43.0,194.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,0.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,2.799999952316284,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,12.699999809265137,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,20.0,18.545033508483932,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,131.75144486206258,1.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,19.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.00110616139838,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,32.46967739523633,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,8014.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,0.0,0.0,19.0,0.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,1.0,190.0,1.0,38.0,1.0,194.0,195.0,95.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.6044643843035,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,194.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,43.0,194.0,195.0,100.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,18.0,0.0,4.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,6.0,0.0,0.0,18.0,12.0,16.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.00014944553115,109.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,189.96295022280643,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,1.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,18.0,1.0,9773.0,1.0,1.0,122.0,1.0,2.0,38.0,6.0,9.0,109.9938429724569,1.0,0.0,0.0,1.0,0.0,0.0,19.0,0.0,0.0,8.0,18.03767149946156,6.0,12.741545949337812,0.0,0.0,8.0,8.0,7.0,13.751499340537599,0.0,9.399999618530273,2.5999999046325684,-1.7000000476837158,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,4.0,9500.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,185.39216888270076,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,1.0,1.0,0.0,0.0,164.7542517869047,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,0.0,33.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,179.29115510093982,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,115.05007597747516,1.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.059678460437866,0.0,0.0,0.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,6.0,9254.0,1.0,1.0,190.0,1.0,3.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,26.0,17.851642188671587,0.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,1.0,9147.0,1.0,1.0,134.4437736939744,1.0,38.0,1.0,9.0,7.0,129.94920869323198,1.0,0.0,0.0,1.0,0.0,0.0,18.0,0.0,0.0,6.0,11.0,6.0,12.874156370220799,0.0,0.0,7.0,8.0,3.0,12.144734814158488,0.0,11.100000381469727,0.6000000238418579,-0.9200000166893005,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,15.170127364551533,21.0,18.0,0.0,0.0,23.0,0.0,4.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,9.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,195.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,1.0,0.0,1.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,20.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,1.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.00005322373354,1.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,8.899999618530273,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,9991.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,0.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,9.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,0.0,0.0,45.0,26.0,0.0,0.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,2.0,190.0,109.0,42.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,1.0,96.0,1.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,0.0,45.0,26.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,57.0,9.0,33.0,1.0,1.0,190.0,1.0,44.0,43.0,194.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,96.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,19.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,110.04295379873113,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,1.0,171.0,1.0,1.0,160.0,1.0,38.0,37.0,4.0,8.0,147.67050829131685,1.0,0.0,0.0,1.0,0.0,1.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,1.399999976158142,1.7899999618530273,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,5.0,45.0,0.0,11.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,33.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,95.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,195.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,0.0,45.0,26.0,0.0,12.0,0.0,23.0,0.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,0.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,1.0,0.0,44.94232729260664,0.0,20.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,9991.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,1.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,18.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,9.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,39.0,5.0,9556.0,1.0,1.0,130.0,1.0,38.0,37.0,9.0,9.0,130.0,1.0,0.0,0.0,1.0,0.0,0.0,18.0,0.0,0.0,7.0,8.0,6.0,12.804757286128917,0.0,0.0,8.0,12.0,5.0,13.0,0.0,9.399999618530273,1.399999976158142,2.0199999809265137,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,43.0,9.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +6.0,57.0,9.0,9991.0,1.0,1.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,26.0,0.0,12.0,0.0,23.0,17.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,-4.059999942779541,2.0 +1.0,1.0,0.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,10.800000190734863,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,57.0,9.0,9991.0,1.0,43.0,190.0,109.0,44.0,1.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,57.0,9.0,9991.0,1.0,1.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,0.0,45.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,9.0,195.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,194.9994989911844,190.0,1.0,0.0,1.0,0.0,0.0,1.0,17.0,0.0,20.0,26.0,0.0,26.0,17.872622576858575,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,0.0,26.0,0.0,0.0,19.0,23.0,0.0,5.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,9.0,33.0,0.0,43.0,96.0,1.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,0.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,-4.059999942779541,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,194.0,195.0,95.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,0.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,18.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,57.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,44.0,43.0,194.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,18.571428298950195,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,9.0,9991.0,1.0,1.0,96.0,1.0,44.0,1.0,0.0,0.0,189.78198306081447,1.0,0.0,0.0,0.0,0.0,0.0,70.0,0.0,0.0,26.0,45.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,-0.800000011920929,-4.059999942779541,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,1.0,1.0,1.0,194.0,0.0,95.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,0.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,9991.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,26.0,18.0,0.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,0.0,16.200000762939453,3.700000047683716,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,6.0,45.0,0.0,18.0,12.0,0.0,23.0,0.0,20.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,44.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,1.0,96.0,109.0,44.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,26.0,0.0,0.0,0.0,23.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,41.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,0.0,26.0,45.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +1.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,17.999530082169066,12.0,0.0,23.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,9.0,9991.0,1.0,43.0,96.0,109.0,1.0,43.0,194.0,195.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,70.0,0.0,20.0,26.0,45.0,0.0,0.0,0.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,9.0,9991.0,1.0,1.0,190.0,109.0,1.0,1.0,194.0,195.0,190.0,0.0,0.0,0.0,0.0,1.0,0.0,17.0,0.0,0.0,26.0,0.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,195.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,18.0,12.0,0.0,0.0,33.0,0.0,14.601585465744591,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,43.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,1.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +6.0,57.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,1.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,1.0 +6.0,1.0,9.0,33.0,1.0,1.0,96.0,109.0,1.0,43.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,18.0,12.0,0.0,0.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,0.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,44.0,1.0,194.0,0.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,18.571428298950195,12.0,7.599999904632568,3.700000047683716,3.509999990463257,1.0 +6.0,1.0,0.0,33.0,0.0,1.0,96.0,109.0,1.0,43.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.599999904632568,3.700000047683716,-4.059999942779541,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,9991.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,95.0,1.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,0.0,0.0,12.0,0.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,0.0 +1.0,57.0,0.0,33.0,1.0,43.0,96.0,109.0,44.0,1.0,0.0,0.0,190.0,1.0,0.0,0.0,0.0,0.0,0.0,70.0,1.0,20.0,26.0,0.0,26.0,0.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,7.599999904632568,3.700000047683716,3.509999990463257,2.0 +1.0,1.0,0.0,33.0,1.0,43.0,190.0,1.0,1.0,1.0,194.0,0.0,190.0,0.0,0.0,1.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,0.0,0.0,0.0,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,43.0,190.0,109.0,1.0,43.0,0.0,195.0,190.0,0.0,0.0,0.0,1.0,0.0,0.0,70.0,0.0,20.0,26.0,0.0,26.0,18.0,12.0,19.0,23.0,33.0,0.0,18.571428298950195,12.0,16.200000762939453,-0.800000011920929,3.509999990463257,2.0 +6.0,1.0,0.0,33.0,1.0,1.0,190.0,109.0,1.0,1.0,0.0,0.0,190.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,20.0,26.0,45.0,26.0,0.0,0.0,19.0,23.0,33.0,20.0,0.0,12.0,7.599999904632568,-0.800000011920929,3.509999990463257,2.0 +1.0,1.0,9.0,33.0,1.0,43.0,96.0,1.0,1.0,43.0,0.0,195.0,95.0,0.0,0.0,1.0,1.0,0.0,0.0,17.0,0.0,20.0,0.0,45.0,0.0,0.0,12.0,0.0,23.0,33.0,0.0,0.0,12.0,16.200000762939453,3.700000047683716,3.509999990463257,1.0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/train_20260424_033725.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/train_20260424_033725.log new file mode 100644 index 0000000000000000000000000000000000000000..6f25d0e539603b94c055c6dc999773a09a7c1c1b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/train_20260424_033725.log @@ -0,0 +1,17 @@ +[2 2 2 2 2 2 2 2] +44 +{'d_in': 44, 'num_classes': 3, 'is_y_cond': True, 'rtdl_params': {'d_layers': [256, 256], 'dropout': 0.0}} +mlp +Step 500/5000 MLoss: 0.3481 GLoss: 0.872 Sum: 1.2201 +Step 1000/5000 MLoss: 0.3255 GLoss: 0.6231 Sum: 0.9486 +Step 1500/5000 MLoss: 0.3173 GLoss: 0.5419 Sum: 0.8592000000000001 +Step 2000/5000 MLoss: 0.3082 GLoss: 0.4909 Sum: 0.7990999999999999 +Step 2500/5000 MLoss: 0.3059 GLoss: 0.4634 Sum: 0.7693 +Step 3000/5000 MLoss: 0.3211 GLoss: 0.4496 Sum: 0.7706999999999999 +Step 3500/5000 MLoss: 0.2925 GLoss: 0.4398 Sum: 0.7323 +Step 4000/5000 MLoss: 0.2967 GLoss: 0.4275 Sum: 0.7242 +Step 4500/5000 MLoss: 0.2843 GLoss: 0.4222 Sum: 0.7065 +Step 5000/5000 MLoss: 0.2873 GLoss: 0.4147 Sum: 0.702 +Elapsed time: 0:03:32 +[TabDDPM] Training, config=/work/output-SpecializedModels/m5/tabddpm/tabddpm-m5-20260424_033725/config.toml +[TabDDPM] Training complete diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/_tabpfgen_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..d0a98f7e247752a1411525a325b9dc8cd88182b6 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/_tabpfgen_generate.py @@ -0,0 +1,70 @@ +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/DatasetNew/m5/m5-train.csv") +target_col = "Marital status;Application mode;Application order;Course;Daytime/evening attendance;Previous qualification;Previous qualification (grade);Nacionality;Mother's qualification;Father's qualification;Mother's occupation;Father's occupation;Admission grade;Displaced;Educational special needs;Debtor;Tuition fees up to date;Gender;Scholarship holder;Age at enrollment;International;Curricular units 1st sem (credited);Curricular units 1st sem (enrolled);Curricular units 1st sem (evaluations);Curricular units 1st sem (approved);Curricular units 1st sem (grade);Curricular units 1st sem (without evaluations);Curricular units 2nd sem (credited);Curricular units 2nd sem (enrolled);Curricular units 2nd sem (evaluations);Curricular units 2nd sem (approved);Curricular units 2nd sem (grade);Curricular units 2nd sem (without evaluations);Unemployment rate;Inflation rate;GDP;Target" +if target_col == "__LAST__": + target_col = df.columns[-1] + +feature_cols = [c for c in df.columns if c != target_col] + +# --- Label-encode categorical / object columns --- +cat_encodings = {} # col -> list of unique values (index = code) +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +# Encode target if categorical +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values + +# Handle NaN +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating 3539 rows via generate_regression") +X_syn, y_syn = gen.generate_regression(X, y, n_samples=3539) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +# --- Inverse label-encoding for categorical columns --- +for col, cats in cat_encodings.items(): + # Round to nearest integer index, clamp to valid range + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +syn_df = syn_df[list(df.columns)] +syn_df.to_csv("/work/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/tabpfgen-m5-3539-20260318_055248.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/tabpfgen-m5-3539-20260318_055248.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/gen_20260318_055248.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/gen_20260318_055248.log new file mode 100644 index 0000000000000000000000000000000000000000..e54b7bc41b524ea7c58cd64e4052460d0de92fbd --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/gen_20260318_055248.log @@ -0,0 +1,37 @@ + +========== +== CUDA == +========== + +CUDA Version 12.8.1 + +Container image Copyright (c) 2016-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + +This container image and its contents are governed by the NVIDIA Deep Learning Container License. +By pulling and using the container, you accept the terms and conditions of this license: +https://developer.nvidia.com/ngc/nvidia-deep-learning-container-license + +A copy of this license is made available in this container at /NGC-DL-CONTAINER-LICENSE for your convenience. + +[TabPFGen] Label-encoded target 'Marital status;Application mode;Application order;Course;Daytime/evening attendance;Previous qualification;Previous qualification (grade);Nacionality;Mother's qualification;Father's qualification;Mother's occupation;Father's occupation;Admission grade;Displaced;Educational special needs;Debtor;Tuition fees up to date;Gender;Scholarship holder;Age at enrollment;International;Curricular units 1st sem (credited);Curricular units 1st sem (enrolled);Curricular units 1st sem (evaluations);Curricular units 1st sem (approved);Curricular units 1st sem (grade);Curricular units 1st sem (without evaluations);Curricular units 2nd sem (credited);Curricular units 2nd sem (enrolled);Curricular units 2nd sem (evaluations);Curricular units 2nd sem (approved);Curricular units 2nd sem (grade);Curricular units 2nd sem (without evaluations);Unemployment rate;Inflation rate;GDP;Target' (3539 categories) +[TabPFGen] Generating 3539 rows via generate_regression +Traceback (most recent call last): + File "/work/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/_tabpfgen_generate.py", line 51, in + X_syn, y_syn = gen.generate_regression(X, y, n_samples=3539) + File "/workspace/tabpfgen_src/tabpfgen/tabpfgen.py", line 463, in generate_regression + X_scaled = self.scaler.fit_transform(X_train) + File "/usr/local/lib/python3.10/dist-packages/sklearn/utils/_set_output.py", line 319, in wrapped + data_to_wrap = f(self, X, *args, **kwargs) + File "/usr/local/lib/python3.10/dist-packages/sklearn/base.py", line 918, in fit_transform + return self.fit(X, **fit_params).transform(X) + File "/usr/local/lib/python3.10/dist-packages/sklearn/preprocessing/_data.py", line 894, in fit + return self.partial_fit(X, y, sample_weight) + File "/usr/local/lib/python3.10/dist-packages/sklearn/base.py", line 1389, in wrapper + return fit_method(estimator, *args, **kwargs) + File "/usr/local/lib/python3.10/dist-packages/sklearn/preprocessing/_data.py", line 930, in partial_fit + X = validate_data( + File "/usr/local/lib/python3.10/dist-packages/sklearn/utils/validation.py", line 2944, in validate_data + out = check_array(X, input_name="X", **check_params) + File "/usr/local/lib/python3.10/dist-packages/sklearn/utils/validation.py", line 1139, in check_array + raise ValueError( +ValueError: Found array with 0 feature(s) (shape=(3539, 0)) while a minimum of 1 is required by StandardScaler. diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/tabpfgen_meta.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..6de52dcaefd46fa804a48703a7299f46a02032fa --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/tabpfgen_meta.json @@ -0,0 +1,8 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "target_col": "Marital status;Application mode;Application order;Course;Daytime/evening attendance;Previous qualification;Previous qualification (grade);Nacionality;Mother's qualification;Father's qualification;Mother's occupation;Father's occupation;Admission grade;Displaced;Educational special needs;Debtor;Tuition fees up to date;Gender;Scholarship holder;Age at enrollment;International;Curricular units 1st sem (credited);Curricular units 1st sem (enrolled);Curricular units 1st sem (evaluations);Curricular units 1st sem (approved);Curricular units 1st sem (grade);Curricular units 1st sem (without evaluations);Curricular units 2nd sem (credited);Curricular units 2nd sem (enrolled);Curricular units 2nd sem (evaluations);Curricular units 2nd sem (approved);Curricular units 2nd sem (grade);Curricular units 2nd sem (without evaluations);Unemployment rate;Inflation rate;GDP;Target", + "is_classification": false, + "n_rows": 3539, + "n_cols": 1 +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/train_20260318_055248.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/train_20260318_055248.log new file mode 100644 index 0000000000000000000000000000000000000000..221efcb2c3094f1cc503da8a5b87888757c4e9bf --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/train_20260318_055248.log @@ -0,0 +1 @@ +[TabPFGen] No training needed (pretrained). Meta saved to /data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260318_055248/tabpfgen_meta.json diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/_tabpfgen_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..e0c264c77174c2578f0cd23a3bcc518e4ef7ebc8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/_tabpfgen_generate.py @@ -0,0 +1,70 @@ +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/DatasetNew/m5/m5-train.csv") +target_col = "Marital status;Application mode;Application order;Course;Daytime/evening attendance;Previous qualification;Previous qualification (grade);Nacionality;Mother's qualification;Father's qualification;Mother's occupation;Father's occupation;Admission grade;Displaced;Educational special needs;Debtor;Tuition fees up to date;Gender;Scholarship holder;Age at enrollment;International;Curricular units 1st sem (credited);Curricular units 1st sem (enrolled);Curricular units 1st sem (evaluations);Curricular units 1st sem (approved);Curricular units 1st sem (grade);Curricular units 1st sem (without evaluations);Curricular units 2nd sem (credited);Curricular units 2nd sem (enrolled);Curricular units 2nd sem (evaluations);Curricular units 2nd sem (approved);Curricular units 2nd sem (grade);Curricular units 2nd sem (without evaluations);Unemployment rate;Inflation rate;GDP;Target" +if target_col == "__LAST__": + target_col = df.columns[-1] + +feature_cols = [c for c in df.columns if c != target_col] + +# --- Label-encode categorical / object columns --- +cat_encodings = {} # col -> list of unique values (index = code) +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +# Encode target if categorical +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values + +# Handle NaN +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating 1000 rows via generate_regression") +X_syn, y_syn = gen.generate_regression(X, y, n_samples=1000) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +# --- Inverse label-encoding for categorical columns --- +for col, cats in cat_encodings.items(): + # Round to nearest integer index, clamp to valid range + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +syn_df = syn_df[list(df.columns)] +syn_df.to_csv("/work/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/tabpfgen-m5-1000-20260319_224443.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/tabpfgen-m5-1000-20260319_224443.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/gen_20260319_224443.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/gen_20260319_224443.log new file mode 100644 index 0000000000000000000000000000000000000000..8ede254ad68d6a57aa6dd55ecce9c929029214b6 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/gen_20260319_224443.log @@ -0,0 +1,37 @@ + +========== +== CUDA == +========== + +CUDA Version 12.8.1 + +Container image Copyright (c) 2016-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + +This container image and its contents are governed by the NVIDIA Deep Learning Container License. +By pulling and using the container, you accept the terms and conditions of this license: +https://developer.nvidia.com/ngc/nvidia-deep-learning-container-license + +A copy of this license is made available in this container at /NGC-DL-CONTAINER-LICENSE for your convenience. + +[TabPFGen] Label-encoded target 'Marital status;Application mode;Application order;Course;Daytime/evening attendance;Previous qualification;Previous qualification (grade);Nacionality;Mother's qualification;Father's qualification;Mother's occupation;Father's occupation;Admission grade;Displaced;Educational special needs;Debtor;Tuition fees up to date;Gender;Scholarship holder;Age at enrollment;International;Curricular units 1st sem (credited);Curricular units 1st sem (enrolled);Curricular units 1st sem (evaluations);Curricular units 1st sem (approved);Curricular units 1st sem (grade);Curricular units 1st sem (without evaluations);Curricular units 2nd sem (credited);Curricular units 2nd sem (enrolled);Curricular units 2nd sem (evaluations);Curricular units 2nd sem (approved);Curricular units 2nd sem (grade);Curricular units 2nd sem (without evaluations);Unemployment rate;Inflation rate;GDP;Target' (3539 categories) +[TabPFGen] Generating 1000 rows via generate_regression +Traceback (most recent call last): + File "/work/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/_tabpfgen_generate.py", line 51, in + X_syn, y_syn = gen.generate_regression(X, y, n_samples=1000) + File "/workspace/tabpfgen_src/tabpfgen/tabpfgen.py", line 463, in generate_regression + X_scaled = self.scaler.fit_transform(X_train) + File "/usr/local/lib/python3.10/dist-packages/sklearn/utils/_set_output.py", line 319, in wrapped + data_to_wrap = f(self, X, *args, **kwargs) + File "/usr/local/lib/python3.10/dist-packages/sklearn/base.py", line 918, in fit_transform + return self.fit(X, **fit_params).transform(X) + File "/usr/local/lib/python3.10/dist-packages/sklearn/preprocessing/_data.py", line 894, in fit + return self.partial_fit(X, y, sample_weight) + File "/usr/local/lib/python3.10/dist-packages/sklearn/base.py", line 1389, in wrapper + return fit_method(estimator, *args, **kwargs) + File "/usr/local/lib/python3.10/dist-packages/sklearn/preprocessing/_data.py", line 930, in partial_fit + X = validate_data( + File "/usr/local/lib/python3.10/dist-packages/sklearn/utils/validation.py", line 2944, in validate_data + out = check_array(X, input_name="X", **check_params) + File "/usr/local/lib/python3.10/dist-packages/sklearn/utils/validation.py", line 1139, in check_array + raise ValueError( +ValueError: Found array with 0 feature(s) (shape=(3539, 0)) while a minimum of 1 is required by StandardScaler. diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/tabpfgen_meta.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..6de52dcaefd46fa804a48703a7299f46a02032fa --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/tabpfgen_meta.json @@ -0,0 +1,8 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "target_col": "Marital status;Application mode;Application order;Course;Daytime/evening attendance;Previous qualification;Previous qualification (grade);Nacionality;Mother's qualification;Father's qualification;Mother's occupation;Father's occupation;Admission grade;Displaced;Educational special needs;Debtor;Tuition fees up to date;Gender;Scholarship holder;Age at enrollment;International;Curricular units 1st sem (credited);Curricular units 1st sem (enrolled);Curricular units 1st sem (evaluations);Curricular units 1st sem (approved);Curricular units 1st sem (grade);Curricular units 1st sem (without evaluations);Curricular units 2nd sem (credited);Curricular units 2nd sem (enrolled);Curricular units 2nd sem (evaluations);Curricular units 2nd sem (approved);Curricular units 2nd sem (grade);Curricular units 2nd sem (without evaluations);Unemployment rate;Inflation rate;GDP;Target", + "is_classification": false, + "n_rows": 3539, + "n_cols": 1 +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/train_20260319_224443.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/train_20260319_224443.log new file mode 100644 index 0000000000000000000000000000000000000000..b6433f6882f5e59db4a2f1bf0f63cb2ab4675ea4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/train_20260319_224443.log @@ -0,0 +1 @@ +[TabPFGen] No training needed (pretrained). Meta saved to /data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260319_224442/tabpfgen_meta.json diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/_tabpfgen_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..b0b4750975b183345b1ef759525ec7c1fbe4bf91 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/_tabpfgen_generate.py @@ -0,0 +1,87 @@ +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv") +target_col = "Target" + +feature_cols = [c for c in df.columns if c != target_col] + +# --- Label-encode categorical / object columns --- +cat_encodings = {} # col -> list of unique values (index = code) +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +# Encode target if categorical +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(3539) + +# Handle NaN +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification") +X_syn, y_syn = gen.generate_classification(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +# --- Inverse label-encoding for categorical columns --- +for col, cats in cat_encodings.items(): + # Round to nearest integer index, clamp to valid range + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +# Ensure output row count is strictly aligned with target_n. +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat([syn_df.reset_index(drop=True), extra.reset_index(drop=True)], ignore_index=True) + else: + # Defensive fallback: if generator returns empty, bootstrap from training rows. + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError(f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}") +syn_df.to_csv("/work/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen-m5-3539-20260422_200336.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen-m5-3539-20260422_200336.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/gen_20260422_200336.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/gen_20260422_200336.log new file mode 100644 index 0000000000000000000000000000000000000000..677536afd215cdc8eed709f0fcd3a3b5296ace85 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/gen_20260422_200336.log @@ -0,0 +1,15 @@ +[TabPFGen] Label-encoded target 'Target' (3 categories) +[TabPFGen] Generating 3539 rows via generate_classification +Step 0/1000 +Step 100/1000 +Step 200/1000 +Step 300/1000 +Step 400/1000 +Step 500/1000 +Step 600/1000 +Step 700/1000 +Step 800/1000 +Step 900/1000 +[TabPFGen] Padding rows: 3537 -> 3539 (deficit=2) +[TabPFGen] Saved 3539 rows -> /work/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen-m5-3539-20260422_200336.csv +[W422 12:04:19.809533260 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3113f538dabc9cfd3ea70cc3b6426de07065106b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0f913ea8e37ba785079565c10441d4147572afc7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a38d15370c94016482d04391e03df2c1bec7b972 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "tabpfgen", + "run_id": "tabpfgen-m5-20260422_200335", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen-m5-3539-20260422_200336.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a22a371258ab8267b23b3b79730d7e0f64866e52 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,0,1,126.0,1,38,37,5,5,118.7,0,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,19,37,9,7,111.4,0,0,0,1,1,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,140.0,1,1,1,4,3,140.0,1,0,0,1,0,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,Graduate +1,1,2,9085,1,1,141.0,1,1,38,9,8,128.9,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,128.0,1,19,19,7,8,120.0,1,0,0,1,0,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,123.0,1,4,37,2,9,113.9,0,0,0,1,0,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,1,140.0,41,1,1,9,9,100.0,0,0,1,0,0,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,133.1,1,1,3,9,9,116.0,0,0,0,1,1,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,143.0,1,3,3,2,10,141.3,0,0,1,0,0,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,106.0,1,37,38,191,163,102.2,1,0,1,1,1,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,Enrolled +1,16,2,9085,1,1,136.0,1,37,37,9,9,123.4,1,0,0,1,0,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,125.0,1,38,38,9,9,125.4,0,0,1,0,0,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,Dropout +4,39,1,9773,1,12,120.0,1,37,37,4,9,130.0,0,0,0,0,1,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,Dropout +1,44,1,9853,1,39,150.0,1,3,37,2,7,150.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,145.0,1,1,19,9,9,129.3,0,0,1,1,0,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Graduate +1,44,1,9119,1,39,180.0,1,1,1,9,8,180.0,0,0,0,1,1,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,Enrolled +1,1,4,9085,1,1,135.0,1,38,37,9,9,132.6,1,0,0,1,0,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,130.0,1,3,1,3,6,130.0,1,0,1,1,1,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,182.0,1,19,1,5,7,156.8,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,142.0,1,19,38,7,10,128.4,1,0,0,1,0,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,19,133.1,1,37,37,9,4,103.5,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,1,1,3,3,119.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,44,1,9991,0,39,140.0,1,37,19,9,8,140.0,0,0,0,1,0,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,133.0,1,38,38,9,9,128.8,1,0,0,1,0,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,3,3,132,132,110.6,0,0,0,1,0,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,Enrolled +1,42,1,9773,1,1,133.1,1,19,6,4,3,120.0,0,0,0,1,1,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9147,1,1,160.0,1,37,37,9,7,110.0,0,0,0,1,1,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,100.0,1,19,37,5,5,120.7,0,0,0,1,0,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,136.0,1,19,19,9,9,140.0,1,0,0,1,0,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,135.0,1,3,3,2,2,132.9,1,0,0,0,0,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,Dropout +1,53,1,9003,1,42,130.0,1,1,38,9,6,128.5,0,0,0,1,1,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,140.0,1,37,37,9,9,140.0,0,0,0,1,1,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,124.0,1,19,37,5,7,119.1,0,0,0,1,1,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9556,1,1,140.0,1,37,38,9,9,106.0,1,0,1,0,0,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,Dropout +1,42,4,9500,1,6,133.0,1,1,19,2,9,127.8,1,0,0,1,0,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,130.0,1,19,19,90,90,122.0,0,0,0,1,0,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,125.0,1,37,19,9,9,122.4,1,0,0,1,1,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,3,110.0,1,3,19,4,6,150.0,0,0,0,1,1,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,123.0,1,19,19,1,1,114.6,0,0,0,1,0,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,131.0,1,38,38,9,9,126.5,0,0,0,1,0,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,133.1,1,38,19,132,103,146.0,0,0,1,1,0,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,3,3,2,2,124.9,1,0,0,1,0,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,136.0,1,3,4,2,2,133.9,0,0,0,0,1,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,2,1,4,6,140.0,0,0,0,1,1,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,111.0,1,19,19,9,9,114.2,1,0,0,1,0,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,130.0,1,19,38,7,7,120.2,1,0,0,1,0,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,Graduate +1,7,1,9670,1,3,110.0,1,27,37,3,3,110.0,1,0,0,1,1,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,142.0,1,38,19,7,10,128.4,0,0,0,1,0,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9773,1,1,158.0,1,1,38,4,7,157.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,127.0,1,1,33,3,3,129.8,0,0,0,0,1,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9773,1,1,140.0,1,34,37,0,0,102.5,0,0,0,1,0,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,130.0,1,1,38,5,7,122.0,1,0,0,1,1,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,145.0,1,19,1,6,5,127.9,1,0,0,1,0,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,132.0,1,38,38,9,8,122.6,1,0,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,37,37,9,7,129.9,1,0,0,1,0,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,121.0,1,1,1,4,4,114.9,0,0,0,1,1,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,Graduate +1,7,1,8014,0,3,140.0,1,1,1,4,4,140.0,0,0,0,1,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,137.0,1,1,19,4,4,125.3,0,0,0,1,1,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,Enrolled +1,18,1,9670,1,1,133.0,1,1,1,9,9,121.5,1,0,0,1,0,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,42,1,9500,1,1,100.0,1,3,37,2,6,130.0,1,0,0,1,0,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,19,38,9,8,140.9,0,1,0,1,0,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,133.1,1,37,37,9,9,120.0,0,0,0,0,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,8014,0,1,128.0,1,38,38,0,0,122.1,0,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9119,1,1,130.0,1,1,3,4,2,123.0,0,0,0,1,1,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,121.0,1,19,38,7,9,123.8,0,0,0,1,0,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,9070,1,1,122.0,1,1,1,4,8,123.8,1,0,1,0,0,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,12,133.1,1,37,37,9,9,133.8,1,0,0,1,1,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,3,3,2,2,149.0,0,0,0,0,1,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,1,38,1,9,140.0,0,0,0,1,1,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,Dropout +1,1,5,9773,1,1,135.0,1,37,1,5,5,124.9,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,9119,1,1,132.0,1,37,37,9,6,119.4,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,9670,1,3,110.0,1,37,37,7,7,110.0,0,0,0,1,0,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,Graduate +1,17,5,9119,1,1,118.0,1,1,19,9,9,120.5,1,0,0,1,1,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,19,133.1,1,37,19,9,4,140.0,0,0,1,1,0,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,126.0,1,1,1,4,7,115.2,0,0,0,0,0,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9254,1,1,158.0,1,19,39,4,8,153.5,1,0,0,1,0,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,129.0,1,37,38,7,7,122.0,1,0,0,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,12,133.1,1,37,1,9,4,138.4,0,0,0,1,1,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,Dropout +1,7,1,9238,1,3,130.0,1,1,1,4,10,125.1,0,0,1,0,0,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,1,110.0,1,40,1,5,6,142.5,0,0,1,0,1,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,Dropout +1,16,1,9070,1,1,125.0,1,1,1,4,4,120.8,1,0,0,1,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,128.0,1,19,1,5,4,135.7,1,0,0,1,0,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,142.0,1,19,19,9,9,139.9,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,123.0,1,3,12,2,9,116.4,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,125.0,1,19,1,9,10,123.6,1,0,0,1,0,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,12,133.1,1,12,12,9,9,120.0,0,0,0,1,1,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,Dropout +1,17,5,9500,1,1,144.0,1,19,38,9,5,130.7,1,0,0,1,0,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,Graduate +1,17,6,9500,1,1,136.0,1,19,38,9,3,132.5,1,0,0,1,0,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,Graduate +2,43,1,9991,0,1,140.0,1,38,37,5,6,117.3,0,0,0,1,0,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,43,1,9500,1,1,140.0,1,37,37,9,10,105.7,1,0,0,1,0,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,19,133.1,1,1,5,4,3,100.0,0,0,0,1,0,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,3,9238,1,1,143.0,1,37,38,0,7,126.9,1,0,0,1,0,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,138.0,1,37,1,9,9,123.7,1,0,1,1,0,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,34,34,0,0,112.5,0,0,0,1,0,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,141.0,1,3,2,2,3,130.2,1,0,0,1,0,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,139.0,1,1,19,3,9,134.9,1,0,0,1,1,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,3,102.0,1,0,0,1,0,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,153.0,1,38,37,7,8,147.9,0,0,0,1,0,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,Graduate +1,17,3,9085,1,1,121.0,1,38,1,9,9,111.9,1,0,0,1,1,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,149.0,1,37,37,9,6,130.5,1,0,0,1,0,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,Graduate +1,17,5,9773,1,1,139.0,1,38,1,4,4,123.6,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9119,1,1,120.0,1,3,1,123,152,116.9,0,0,0,1,1,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9238,1,1,130.0,1,1,19,4,5,124.8,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,Graduate +1,53,1,9085,1,42,150.0,1,1,19,4,8,145.2,1,0,0,1,0,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,Graduate +4,39,1,9130,1,1,140.0,1,37,37,6,7,150.0,1,0,0,1,1,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,4,171,1,1,133.1,1,1,1,9,10,110.0,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,124.0,1,19,1,9,9,121.2,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9119,1,39,130.0,1,38,19,9,5,130.0,1,0,0,1,1,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,Enrolled +4,7,1,9500,1,3,140.0,1,37,38,9,7,140.0,0,0,0,1,1,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,37,5,9,118.4,0,0,0,1,1,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,33,1,1,130.0,1,19,19,9,9,117.7,0,0,0,1,0,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,Dropout +4,7,1,9500,1,40,130.0,1,19,19,4,6,130.0,0,0,0,0,0,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,144.0,13,3,3,6,6,137.6,1,0,0,1,0,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,132.0,1,38,37,9,9,122.9,0,0,0,0,1,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,Dropout +1,1,2,9773,1,1,124.0,1,3,3,3,4,114.6,1,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,100.0,1,38,38,9,10,100.0,0,0,0,1,0,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,Graduate +1,18,2,9853,1,1,120.0,1,19,37,9,4,113.7,1,0,1,0,0,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9500,1,1,136.0,1,3,3,2,2,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,Graduate +1,39,1,9130,1,1,133.1,1,3,34,3,0,120.0,0,0,1,0,1,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,140.0,1,1,19,3,3,140.0,1,0,0,1,0,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9085,1,1,128.0,1,38,37,9,9,116.5,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,132.0,1,6,6,0,4,119.1,1,0,1,1,0,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,Dropout +1,43,1,9500,1,6,134.0,1,1,37,9,9,120.4,1,0,0,1,0,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,34,34,0,0,100.0,0,0,0,1,0,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,122.0,1,3,1,4,7,116.1,1,0,0,1,0,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,120.0,1,37,37,9,9,117.0,1,0,0,1,0,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,5,9254,1,1,126.0,1,19,19,4,7,116.6,1,0,0,1,0,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,4,160.0,1,3,3,2,1,125.0,0,0,0,1,1,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,130.0,1,37,37,0,0,117.8,1,0,0,1,0,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,169.0,1,19,37,9,7,176.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9500,1,1,137.0,1,3,38,2,4,121.0,0,0,0,1,0,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,132.0,1,19,1,9,5,123.4,0,0,0,1,0,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,3,105.0,1,37,37,7,8,129.7,1,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9254,1,1,119.0,1,19,19,9,9,118.7,1,0,0,1,1,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,120.0,1,37,37,9,6,117.0,0,0,0,1,1,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,6,130.0,0,0,0,1,1,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,143.0,1,19,37,9,9,126.2,1,0,0,1,0,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,39,150.0,1,19,19,9,9,150.3,0,0,0,1,1,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9130,1,1,143.0,1,3,3,2,2,131.8,1,0,1,0,0,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,Enrolled +1,44,1,9238,1,39,140.0,1,19,19,8,8,144.3,1,0,0,1,0,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,131.0,1,19,19,4,4,122.0,1,0,0,1,0,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,Enrolled +1,17,2,9500,1,1,127.0,1,3,3,1,10,118.8,1,0,0,1,1,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,146.0,1,37,38,9,7,128.5,0,0,1,1,0,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,3,140.0,1,39,39,9,4,140.0,0,0,0,1,1,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,123.0,1,38,19,4,90,127.2,0,0,1,0,1,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,5,128.2,0,0,1,0,1,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,126.0,1,1,1,9,9,127.4,1,0,0,1,0,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,37,37,9,9,150.0,0,0,0,1,0,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,130.0,1,38,19,9,6,120.0,1,0,0,1,1,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,103.0,1,19,37,7,9,104.1,0,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,145.0,1,3,19,1,5,130.0,1,0,0,1,0,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,123.0,1,1,38,9,9,116.7,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,5,1,120.0,1,0,0,1,0,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,141.0,1,19,1,90,90,128.0,0,0,0,1,1,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,124.0,1,3,3,2,2,119.1,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,4,9853,1,1,116.0,1,3,38,3,8,110.4,1,0,0,1,0,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,119.0,1,38,19,9,9,115.2,0,0,0,1,1,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,37,37,7,7,113.9,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +2,43,1,9147,1,2,120.0,1,37,37,9,9,122.8,0,0,1,0,0,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,6,122.0,1,19,19,9,9,126.2,1,0,0,1,0,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,122.0,1,1,1,2,5,113.3,1,0,0,1,0,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,142.0,1,1,1,9,9,127.7,1,0,0,1,1,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,116.0,1,1,1,3,3,120.9,0,0,0,1,1,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,128.0,1,1,19,4,7,125.6,1,0,0,1,1,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,Graduate +1,7,1,9991,0,40,130.0,1,1,3,4,2,130.0,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,1,19,9,7,120.0,0,0,0,1,1,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,137.0,1,38,37,9,9,122.3,0,0,0,1,1,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,122.0,1,41,1,4,3,119.6,1,0,0,1,0,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,157.0,1,38,37,9,5,137.8,0,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9130,1,1,132.0,1,19,38,9,9,130.4,1,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Graduate +4,43,1,8014,0,12,133.1,1,34,34,0,0,106.0,1,0,0,1,0,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9130,1,1,127.0,1,3,1,2,1,116.5,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,8014,0,1,125.0,1,37,37,5,6,122.2,1,0,1,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9556,1,1,128.0,1,38,38,7,8,123.5,1,0,0,1,0,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,Enrolled +1,43,1,9130,1,1,156.0,1,19,1,9,4,156.0,0,0,1,0,1,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,Dropout +1,7,1,9130,1,3,140.0,1,19,38,9,9,140.0,1,0,0,1,0,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,8014,0,1,123.0,1,34,37,9,90,121.3,1,0,0,1,0,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,19,133.1,1,19,37,7,90,104.0,0,0,0,1,0,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,18,4,9254,1,1,106.0,1,19,37,7,7,106.0,1,0,0,1,1,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,119.0,1,37,37,4,6,113.2,0,0,1,1,0,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,19,19,9,9,100.0,0,0,0,1,0,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,145.0,1,3,1,4,3,149.9,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,166.0,1,19,37,4,8,146.4,0,0,0,1,1,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,145.0,1,38,37,5,5,142.2,0,0,0,1,0,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,156.0,1,19,38,9,1,153.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9853,1,1,117.0,1,19,38,4,0,113.5,1,0,0,1,0,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,138.0,1,37,19,9,9,127.8,1,0,0,1,0,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,40,130.0,1,1,1,4,4,190.0,1,0,0,1,0,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,Graduate +1,17,5,9070,1,1,131.0,1,37,37,9,9,126.1,1,0,0,0,0,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.1,1,19,37,9,9,95.0,1,0,1,0,0,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,143.0,1,1,38,8,8,136.7,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Dropout +1,42,1,8014,0,1,120.0,1,37,38,90,7,120.0,1,0,0,1,0,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,121.0,1,19,19,5,8,117.5,1,0,0,1,0,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,160.0,1,3,1,6,6,116.3,1,0,0,1,0,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,134.0,1,1,38,4,5,122.8,0,0,0,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,7,1,8014,0,3,120.0,1,19,37,5,3,121.3,0,0,0,1,0,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,134.0,1,38,19,9,4,128.4,1,0,0,1,0,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,130.0,1,19,1,7,4,117.8,1,0,0,1,1,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9130,1,1,132.0,1,1,1,3,3,143.9,1,0,0,1,1,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,130.0,1,19,1,9,4,101.3,1,0,0,1,1,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,135.0,1,37,19,5,10,121.0,0,0,1,1,0,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9991,0,39,120.0,1,37,37,7,7,120.0,1,0,0,1,0,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,133.1,1,3,3,2,3,135.0,0,0,0,1,0,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,110.0,1,19,19,9,7,105.8,1,0,0,1,1,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,160.0,1,1,38,4,10,144.3,1,0,0,1,0,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +4,39,1,9254,1,1,120.0,1,37,37,9,8,95.0,0,0,0,1,0,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,137.0,1,19,19,7,7,120.8,1,0,0,1,0,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,144.0,1,19,38,4,8,141.3,1,0,0,1,0,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,148.0,1,19,1,3,9,140.0,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,128.0,1,38,38,7,7,131.5,0,0,0,1,0,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,128.0,1,38,19,191,175,118.6,1,0,0,1,0,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,122.0,1,3,38,123,171,116.1,1,0,1,1,1,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9773,1,1,128.0,1,38,38,6,3,116.5,0,0,0,1,1,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,97.0,1,1,19,2,7,98.1,1,0,0,1,0,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,53,1,9991,0,1,140.0,1,38,38,191,193,135.0,0,0,1,1,0,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,Enrolled +1,1,2,9773,1,1,122.0,1,37,37,9,9,130.8,1,0,0,1,0,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,117.9,0,0,0,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9991,0,1,100.0,1,37,19,9,4,130.0,0,0,0,1,1,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,Dropout +1,17,6,9670,1,1,125.0,1,38,1,9,7,125.0,1,0,0,1,1,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,Graduate +2,7,1,9070,1,43,140.0,1,37,1,9,7,140.0,0,0,0,1,0,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,Graduate +1,7,1,9254,1,3,110.0,1,19,19,3,3,110.0,0,0,0,1,1,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9500,1,1,135.0,1,19,1,5,4,127.3,1,0,0,1,0,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,Graduate +1,17,4,9238,1,1,129.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,8,9,144.9,1,0,1,0,0,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9500,1,1,136.0,1,1,1,4,4,123.8,0,0,0,1,0,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,Graduate +4,43,1,9991,0,1,140.0,1,37,37,5,5,149.8,0,0,0,1,1,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,150.0,1,38,19,9,9,137.8,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +5,39,1,9147,1,1,180.0,1,1,1,4,8,140.5,0,0,1,0,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,131.0,1,19,19,3,7,127.9,1,0,0,1,0,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,110.0,1,1,1,4,4,99.0,0,0,0,1,1,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,Enrolled +1,39,1,9070,1,1,139.3,1,38,38,5,5,117.5,0,0,0,1,1,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9130,1,1,147.0,1,4,1,2,10,141.8,1,0,0,1,0,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,Graduate +2,44,1,8014,0,39,150.0,1,1,1,5,5,154.0,0,0,0,1,1,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,133.1,1,1,1,4,5,131.0,1,0,0,1,0,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,132.0,1,1,38,9,7,127.1,1,0,0,1,0,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,4,9147,1,1,125.0,1,19,19,5,5,118.0,1,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,108.0,1,19,1,9,3,107.8,1,0,0,1,0,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,143.0,1,37,37,9,8,130.6,1,0,0,1,0,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,126.0,1,37,1,7,7,118.7,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9238,1,1,140.0,1,1,44,4,2,124.6,1,0,1,0,1,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,112.0,1,9,22,4,3,106.1,0,0,0,1,0,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,130.0,1,37,37,191,183,163.7,0,0,0,1,0,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,Enrolled +4,39,1,9500,1,19,133.1,1,37,37,6,6,117.8,0,0,1,0,0,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,Dropout +1,18,2,9853,1,1,120.0,1,1,1,9,0,115.8,0,0,0,1,0,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,118.0,1,38,19,9,3,111.0,1,0,0,1,0,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,16,1,171,1,1,150.0,1,37,37,9,9,134.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,133.1,6,37,37,9,6,100.0,0,0,0,1,0,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,137.0,1,1,37,5,9,131.4,1,0,0,1,1,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Dropout +2,44,1,9991,0,39,130.0,1,1,37,4,9,130.0,0,0,0,0,0,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9238,1,1,136.0,1,19,19,4,7,121.7,1,0,0,1,0,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,133.1,1,1,38,9,7,110.5,0,0,0,1,0,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,Graduate +1,39,1,9556,1,19,100.0,1,37,38,9,9,120.0,0,0,0,1,0,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,142.0,1,1,38,3,5,146.9,1,0,0,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,127.0,1,19,19,7,8,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,130.0,1,1,38,7,8,135.6,1,0,0,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,137.0,1,19,38,9,3,125.0,1,0,0,1,0,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,135.0,1,37,37,7,7,124.0,1,0,0,1,0,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,Enrolled +2,39,1,9556,1,1,100.0,6,38,38,9,9,130.0,0,0,0,1,0,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,Graduate +1,42,1,9003,1,39,120.0,1,3,1,2,6,128.2,1,0,0,1,1,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,Enrolled +1,1,3,9773,1,1,121.0,1,19,19,3,3,116.1,0,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,136.0,1,1,19,4,9,131.1,1,0,0,1,0,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,141.0,1,3,19,2,10,126.8,1,0,0,1,1,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9773,1,1,136.0,1,38,38,9,9,132.9,1,0,0,1,1,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,133.1,1,1,1,90,1,120.0,1,0,1,0,1,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,Dropout +1,17,1,8014,0,1,132.0,1,37,19,5,5,121.2,0,0,0,1,0,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,2,9500,1,6,119.1,1,1,19,4,10,119.1,0,0,0,1,1,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,153.0,1,1,19,9,4,139.7,1,0,0,1,0,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,150.0,1,1,1,3,3,143.4,0,0,0,0,1,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Enrolled +1,1,4,9500,1,1,130.0,1,19,19,9,7,119.9,1,0,0,1,0,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,6,140.0,0,0,0,1,1,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,115.0,1,38,37,5,5,115.0,0,0,0,1,0,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,150.0,1,19,37,5,4,142.7,1,0,0,1,0,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,133.1,1,34,5,0,1,118.5,1,0,0,1,0,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9130,1,1,125.0,1,3,3,2,2,132.4,0,0,0,1,1,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,116.0,1,37,37,9,9,110.8,0,0,0,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,Enrolled +1,43,1,9070,1,1,115.0,1,12,12,1,10,115.0,0,0,1,1,1,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,125.0,1,37,37,9,9,118.8,0,0,0,1,1,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,130.0,1,3,1,2,5,133.8,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9500,1,1,141.0,1,12,1,5,5,133.0,1,0,0,1,0,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,141.0,1,38,38,7,10,139.8,1,0,0,1,0,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,Graduate +1,51,1,9147,1,19,133.1,1,19,19,9,5,112.1,0,0,1,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,132.0,1,19,2,9,3,126.0,1,0,0,1,0,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,131.0,1,2,38,4,5,132.3,1,0,0,1,0,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,124.0,1,1,19,9,8,116.7,1,0,0,1,0,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,180.0,103,5,3,1,1,183.5,1,0,0,1,0,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,10,1,9773,1,1,151.0,22,38,37,0,5,151.0,1,0,0,1,0,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,135.0,1,19,19,9,10,133.4,1,0,0,1,0,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,135.0,1,3,3,2,2,137.1,1,0,0,1,0,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.1,1,38,38,5,10,101.0,0,0,0,1,1,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,40,130.0,1,3,2,3,2,160.0,1,0,0,1,0,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,18,1,9773,1,1,124.0,1,38,37,9,8,126.8,0,0,0,1,1,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,140.0,1,19,37,9,9,125.5,1,0,0,1,0,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,1,133.1,1,37,38,9,8,118.9,0,0,0,1,0,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9991,0,1,160.0,1,34,34,0,0,161.8,1,0,1,1,1,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,140.0,1,1,38,4,7,100.0,0,0,0,1,0,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Graduate +1,44,1,9070,1,39,120.0,1,2,19,3,8,120.0,0,0,0,1,1,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,124.0,1,38,19,3,10,128.6,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,Enrolled +1,44,1,9085,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,0,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,145.0,1,1,19,4,3,133.5,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,Graduate +4,39,1,9085,1,1,110.0,1,37,37,90,90,110.0,0,0,0,0,0,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,134.0,1,19,37,4,7,133.5,1,0,0,1,0,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,132.0,1,1,19,4,3,126.4,1,0,0,1,0,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,19,133.1,1,4,1,2,4,120.0,0,0,0,1,1,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,151.0,1,40,4,2,2,144.5,1,0,0,1,0,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +2,39,1,9147,1,19,133.1,1,37,19,9,3,128.0,0,0,0,1,1,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,Dropout +1,39,2,8014,0,1,141.0,1,37,37,9,9,150.5,0,0,0,1,0,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,122.0,1,19,19,4,6,119.9,0,0,0,1,0,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,9,133.1,1,34,34,0,0,110.0,1,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,1,9500,1,1,128.0,1,19,1,9,4,125.8,0,0,0,1,0,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,3,9773,1,1,133.1,1,38,38,5,5,131.3,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,16,6,9147,1,1,128.0,1,37,37,9,9,116.5,1,0,0,1,0,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,1,147.0,1,34,34,90,90,111.7,1,0,0,1,0,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,1,19,6,8,122.0,0,0,0,1,0,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,Graduate +2,39,2,9254,1,19,133.1,1,19,19,9,5,123.5,0,0,0,1,1,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,114.0,1,37,37,9,9,130.0,0,0,0,1,1,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,Graduate +2,39,1,8014,0,1,100.0,1,37,38,9,9,141.5,0,0,0,1,0,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9556,1,1,118.0,1,38,38,5,5,117.8,1,0,0,1,0,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9773,1,19,133.1,1,19,19,171,163,104.0,0,0,1,0,0,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,39,110.0,1,19,37,9,8,127.5,0,0,1,0,0,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,1,120.0,1,37,38,9,8,100.0,0,0,1,1,1,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,133.0,1,19,3,9,9,123.2,1,0,0,1,1,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,133.1,1,34,34,0,0,142.8,0,0,0,1,1,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9119,1,1,120.0,1,34,34,0,0,140.0,1,0,0,1,1,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,120.0,1,3,37,4,7,115.1,1,0,0,1,0,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,Graduate +1,51,1,9119,1,1,140.0,1,1,19,4,4,150.0,0,0,0,1,1,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,Dropout +1,43,1,9556,1,1,149.0,1,1,1,4,8,140.2,1,1,0,1,0,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,160.0,1,37,19,9,10,160.0,1,0,0,1,0,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,115.0,1,19,38,7,8,116.4,1,0,0,1,0,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,140.0,1,4,4,2,10,140.0,1,0,0,1,1,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,19,133.1,1,1,1,4,4,130.0,0,0,0,1,1,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,5,9773,1,1,146.0,1,1,37,5,5,146.7,1,0,0,1,1,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,142.0,1,1,38,9,9,127.0,0,0,1,0,1,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,130.0,1,37,37,9,7,138.0,0,0,0,1,0,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9773,1,9,133.1,1,38,1,5,4,102.0,1,0,0,1,1,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,125.0,1,19,19,7,5,118.0,1,0,0,1,0,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,145.0,1,19,38,4,10,131.7,1,0,0,1,0,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,133.1,1,37,19,9,9,114.0,0,0,0,1,0,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,140.0,1,38,37,4,10,140.0,0,0,1,0,0,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,128.0,1,1,19,4,4,124.5,0,0,0,1,1,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,126.0,1,37,19,9,8,116.9,1,0,0,1,0,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,1,9773,1,1,177.0,1,2,1,123,135,155.7,0,0,1,1,0,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,135.0,1,37,1,5,5,126.8,1,0,0,1,0,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,125.0,1,4,3,1,1,119.8,0,0,0,1,0,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,Graduate +1,53,1,9147,1,42,130.0,1,1,19,143,172,133.8,1,0,0,1,0,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,Graduate +1,17,3,9670,1,1,123.0,1,38,38,7,8,118.8,1,1,0,1,0,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,112.0,1,38,19,9,5,113.8,1,0,0,1,0,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,124.0,1,34,34,0,0,129.3,0,0,0,1,0,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9773,1,12,120.0,1,1,1,9,9,129.8,1,0,0,1,1,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,111.0,1,19,19,9,9,110.0,1,0,0,1,0,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,163.0,1,37,37,5,6,155.0,0,0,0,1,0,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,145.0,1,19,1,9,5,145.0,0,0,0,1,0,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,160.0,1,38,37,9,7,155.5,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,137.0,1,1,3,7,3,131.1,1,0,1,1,0,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,133.1,1,38,38,9,9,113.5,0,0,0,1,0,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,130.0,1,1,1,9,9,131.8,0,0,0,1,1,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,137.0,1,38,37,7,7,126.0,1,0,0,1,0,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,160.0,1,19,1,9,5,107.8,1,0,0,0,1,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9070,1,39,120.0,1,3,38,3,9,120.0,0,0,0,1,1,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,145.0,1,3,3,2,1,129.3,1,0,0,1,0,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,117.0,1,38,19,5,7,118.1,0,0,0,1,1,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,130.0,1,1,1,4,3,130.0,1,0,0,1,0,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,Enrolled +2,43,1,9238,1,12,100.0,1,37,37,9,9,134.4,0,0,0,1,0,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,Graduate +2,43,1,8014,0,14,133.1,1,34,34,0,0,100.0,0,0,0,0,0,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,Dropout +1,17,4,9254,1,1,122.0,1,1,1,4,2,116.1,1,0,0,1,1,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,4,9254,1,1,110.0,1,37,37,9,7,113.2,1,0,0,1,0,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,131.0,1,38,37,4,9,131.7,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,1,19,4,10,150.0,0,0,0,1,1,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,142.0,1,19,38,9,7,127.3,0,0,0,1,1,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,Enrolled +1,7,1,9556,1,43,160.0,1,38,19,9,9,160.0,0,0,0,1,1,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,1,1,9853,1,1,130.0,1,19,12,9,4,133.2,1,0,0,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,43,1,9119,1,1,130.0,1,37,38,9,9,120.0,0,0,1,0,0,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,42,1,3,7,110.5,0,0,0,1,1,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +2,39,1,9003,1,1,130.0,1,1,19,4,9,152.4,1,0,0,1,0,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,Graduate +1,16,1,171,1,1,155.0,1,1,3,5,10,167.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,3,9254,1,1,114.0,26,38,3,9,3,127.3,1,0,1,0,0,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,37,37,9,9,125.4,1,0,0,1,1,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,5,9773,1,1,127.0,1,38,1,4,5,121.1,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Enrolled +1,17,2,171,1,1,130.0,41,1,1,2,3,148.6,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9130,1,1,120.0,1,1,19,9,9,120.0,1,0,0,1,0,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,133.0,1,1,37,4,10,143.2,0,0,0,1,0,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,38,38,9,7,125.2,1,0,0,1,0,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,102.0,1,37,37,7,7,102.0,0,0,0,1,0,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,19,38,5,7,128.5,1,0,0,1,0,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,140.0,1,38,38,7,7,133.2,1,0,0,1,0,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,123.0,1,1,1,3,3,120.9,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,2,9500,1,1,135.0,1,19,1,5,5,128.9,1,0,0,1,0,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,1,3,137.7,0,0,0,0,0,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,158.0,1,3,3,3,3,151.4,1,0,0,0,0,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,37,1,9,3,120.0,0,0,1,0,1,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,51,1,9773,1,1,135.0,1,1,42,5,3,110.0,1,0,0,1,1,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,143.0,1,3,38,2,9,144.1,1,0,0,1,0,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,Enrolled +1,1,3,9070,1,1,132.0,1,1,3,9,7,126.1,1,0,0,1,0,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,141.0,1,19,1,9,10,126.8,1,0,0,1,0,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,130.0,1,38,38,6,9,126.3,1,0,0,1,0,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,1,140.0,1,1,1,4,5,140.0,0,0,0,1,1,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,Enrolled +1,39,2,9147,1,1,130.0,1,19,19,5,9,121.5,0,0,0,0,1,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,51,1,8014,0,19,133.1,1,37,37,9,9,104.0,0,0,1,1,0,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,120.0,1,3,4,2,2,120.0,0,0,0,1,1,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,Graduate +1,1,4,171,1,1,131.0,1,19,19,4,4,119.8,1,1,0,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,18,3,9070,1,1,134.0,1,1,1,3,4,121.4,0,0,0,1,0,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,140.0,1,37,37,9,9,118.2,0,0,0,1,1,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,130.0,1,19,37,9,9,131.8,1,0,0,1,0,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,134.0,1,38,19,3,10,121.2,0,0,0,1,0,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,Graduate +1,43,2,9500,1,1,120.0,1,41,3,2,2,112.7,0,0,0,1,0,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,134.0,1,1,19,4,9,129.8,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,133.0,1,19,1,4,5,127.1,1,0,0,1,0,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,148.0,1,38,37,5,9,137.8,1,0,0,1,0,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,129.0,1,37,37,9,7,117.8,0,0,0,1,0,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,Enrolled +4,39,1,8014,0,3,100.0,1,37,37,9,9,130.0,0,0,0,1,0,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,145.0,1,1,40,9,2,129.6,0,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,4,9254,1,1,124.0,1,1,1,4,4,122.3,1,0,0,1,0,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Dropout +2,43,2,9147,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,Graduate +1,51,1,9556,1,1,131.0,1,1,37,152,193,126.6,1,0,0,1,1,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,44,1,9085,1,39,110.0,1,3,5,2,2,110.0,0,0,0,1,1,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,15,1,9147,1,1,140.0,26,37,2,6,4,140.0,0,0,1,1,1,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,Graduate +2,51,1,9853,1,1,130.0,1,37,37,7,8,120.3,0,0,0,1,0,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,19,133.1,1,37,37,6,6,139.0,0,0,0,1,1,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9670,1,1,120.0,1,37,37,7,7,111.3,1,0,0,1,1,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,3,120.0,1,37,37,7,7,120.0,0,0,0,1,0,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,Dropout +1,17,3,9147,1,1,147.0,1,19,38,5,7,132.3,1,0,0,1,0,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,3,9130,1,1,167.0,1,37,37,90,90,159.3,0,0,0,1,0,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,132.0,1,1,1,4,9,136.6,1,0,0,1,1,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,Enrolled +1,5,2,9853,1,1,124.0,1,19,19,3,3,113.9,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,3,130.0,1,3,1,2,9,130.0,0,0,0,1,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,160.0,1,1,38,4,7,146.5,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,141.0,1,19,3,4,0,137.9,1,0,0,0,1,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,19,37,8,7,100.0,1,0,0,1,0,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,134.0,1,38,19,7,7,124.2,0,0,0,1,0,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,150.0,1,1,37,4,8,145.6,1,0,0,1,0,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,146.0,1,3,1,3,10,138.7,0,0,0,1,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9991,0,40,133.1,1,1,37,4,1,100.0,0,0,0,1,0,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,127.0,1,38,19,9,10,117.9,0,0,0,1,0,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,131.0,1,37,38,9,7,137.0,0,0,0,1,0,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Graduate +1,7,1,9238,1,3,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,Graduate +2,39,1,9085,1,1,133.1,1,37,37,90,90,110.3,0,0,0,1,1,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,125.0,1,38,1,3,10,114.5,1,0,0,1,1,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,152.0,1,19,19,9,5,154.1,0,0,1,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,120.0,1,37,37,4,5,120.0,0,0,1,0,0,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,Dropout +2,39,1,8014,0,1,146.0,1,37,37,9,8,120.5,0,0,0,1,0,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,39,1,9119,1,12,133.1,1,34,34,0,0,95.1,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,128.0,1,19,37,9,8,116.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9307cf4b524ffa38ff4a36db610667ac23d91634 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,1,1,127.0,1,1,1,9,6,110.0,0,0,1,0,1,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9773,1,1,122.0,1,38,37,5,3,119.6,1,0,0,1,0,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,6,9147,1,1,121.0,1,3,19,4,5,116.8,0,0,0,1,1,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,158.0,1,38,37,5,5,140.2,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,19,19,9,7,131.7,1,0,0,1,0,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,Graduate +1,1,3,9085,1,1,133.0,1,1,38,9,90,128.2,0,0,0,1,0,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,122.0,1,1,19,9,9,120.3,1,0,0,1,1,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,Dropout +1,43,1,9119,1,1,130.0,1,1,1,9,2,128.0,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,3,9254,1,1,122.0,1,1,1,4,4,126.6,0,0,0,0,0,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,1,100.0,1,37,37,9,9,133.0,0,0,0,1,1,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,44,1,9119,1,39,130.0,1,19,3,3,4,130.0,0,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9085,1,39,140.0,1,1,1,4,7,140.0,1,0,1,1,0,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9070,1,1,130.0,1,37,37,9,9,123.7,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +4,1,1,9991,0,1,130.0,1,37,37,9,9,118.1,0,0,1,0,0,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9500,1,1,190.0,108,3,2,122,4,190.0,1,0,0,1,0,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,102.0,1,1,19,9,5,100.6,1,0,0,1,0,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,3,120.0,1,19,3,4,2,120.0,1,0,0,1,0,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,130.0,1,38,19,9,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,111.0,1,3,4,4,3,108.2,1,0,0,1,0,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9119,1,1,160.0,1,1,38,4,7,112.0,0,0,0,0,1,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,149.0,1,19,1,4,4,134.8,0,0,0,1,0,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,135.0,1,19,38,3,9,136.1,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,2,9500,1,1,120.0,1,37,34,90,0,121.5,0,0,1,1,0,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,147.0,1,12,19,9,3,151.6,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,128.0,1,37,37,9,9,123.5,1,0,0,1,1,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,2,9070,1,1,129.0,1,1,1,4,9,132.9,1,0,0,1,1,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,Enrolled +1,17,2,9500,1,1,138.0,1,1,38,5,8,132.8,1,0,0,1,0,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,134.0,1,19,37,9,9,131.6,1,1,0,1,0,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,130.0,1,37,37,9,9,122.0,1,0,0,1,0,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,1,0,0,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,2,9085,1,1,130.0,1,37,19,9,8,129.0,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,Enrolled +1,17,5,9119,1,1,126.0,1,38,38,5,9,116.9,1,0,1,1,1,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,37,38,5,6,140.0,1,0,0,1,0,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,18,4,9853,1,1,123.0,1,19,38,4,10,123.7,1,0,0,1,0,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,118.0,1,4,3,2,3,110.7,1,0,0,1,0,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,2,130.0,1,37,37,5,7,147.5,0,0,0,1,0,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,146.0,1,4,1,2,3,140.0,1,0,0,1,0,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,Graduate +1,44,1,9003,1,39,160.0,1,37,38,9,7,160.0,0,0,0,1,0,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,7,0,9003,1,3,130.0,1,1,37,4,9,130.0,1,0,0,1,0,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,19,133.1,1,34,34,99,99,96.0,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,136.0,1,37,37,7,7,140.9,1,0,0,1,1,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,1,9853,1,1,127.0,1,1,1,5,7,121.4,1,0,0,1,0,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,134.0,1,3,19,2,10,128.8,0,0,0,1,0,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,140.0,1,1,3,4,2,142.8,1,0,0,0,0,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,126.3,0,0,0,1,1,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.1,1,19,1,1,3,101.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9147,1,1,122.0,1,1,38,1,7,118.9,0,0,0,1,1,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,107.0,1,19,37,7,7,103.5,1,0,0,1,0,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,156.0,1,38,37,9,9,156.3,0,0,0,1,1,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,128.0,1,1,1,9,9,120.0,1,0,0,1,0,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9119,1,1,127.0,1,19,1,9,10,121.1,1,0,0,1,1,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,4,160.0,1,3,3,4,2,180.4,0,0,1,1,1,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,Dropout +1,43,1,9670,1,1,132.0,1,3,19,4,8,120.5,0,0,0,1,1,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,134.0,1,1,19,4,5,122.5,1,0,0,1,0,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,142.0,1,1,19,4,4,128.0,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,133.0,1,2,37,9,7,125.7,1,0,0,1,1,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,135.0,1,1,3,4,3,133.3,0,0,0,1,0,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,3,140.0,1,37,12,9,4,140.0,0,0,0,0,0,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9500,1,1,141.0,1,2,38,2,10,135.4,1,0,0,1,0,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,Enrolled +2,43,1,9991,0,2,120.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,147.0,1,1,19,4,4,137.2,0,0,0,0,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9085,1,1,120.0,1,37,38,9,9,111.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,141.0,1,3,1,9,9,124.3,0,0,0,1,0,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,Enrolled +1,18,1,9773,1,1,125.0,1,1,1,4,7,121.5,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,140.0,1,37,37,5,5,150.0,0,0,1,1,0,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,112.0,1,1,37,4,9,106.8,1,0,0,1,0,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,168.0,1,38,37,9,8,155.1,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,15,1,9119,1,1,133.1,41,2,2,2,2,100.0,0,0,1,1,1,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,Enrolled +2,1,1,8014,0,1,121.0,1,37,37,9,9,114.4,1,0,0,1,0,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,136.0,1,1,38,4,5,132.2,0,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,Graduate +1,16,1,9070,1,1,145.0,1,1,1,3,3,146.1,1,0,0,1,0,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,40,140.0,1,5,3,2,2,140.0,0,0,1,1,1,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,Dropout +1,1,3,9085,1,1,126.0,1,38,1,9,9,132.0,1,0,0,1,0,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,146.0,1,1,37,9,9,129.3,0,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,131.0,1,37,37,9,6,127.2,0,0,0,1,0,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,139.0,1,37,37,9,9,124.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,133.1,1,37,1,5,4,151.2,0,0,0,1,1,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,170.0,1,38,19,9,2,160.6,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,131.0,1,37,37,9,6,130.7,0,0,1,1,0,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,122.0,1,19,37,3,5,116.6,1,0,1,1,1,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,Graduate +1,17,3,171,1,1,147.0,1,19,1,5,4,137.6,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,9,120.0,0,0,0,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,5,1,9130,1,1,157.0,1,5,43,2,2,149.7,1,0,0,1,0,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9003,1,39,160.0,1,3,1,2,6,160.0,1,0,0,0,0,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,140.0,1,9,19,4,4,131.2,0,0,0,1,1,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,1,130.0,1,1,3,2,6,110.0,0,0,0,1,1,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,Graduate +1,39,1,171,1,1,147.0,1,37,38,175,193,133.3,0,0,0,0,0,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,148.0,1,38,19,4,9,134.7,1,0,0,1,0,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,130.0,1,19,1,9,7,130.4,1,0,0,1,0,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,133.1,1,1,37,4,9,96.0,1,0,0,1,0,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,Enrolled +1,39,1,9991,0,12,120.0,1,37,38,5,5,155.7,0,0,0,1,1,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,117.0,1,3,1,3,3,113.2,0,1,0,1,0,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,Graduate +1,17,2,9853,1,1,150.0,1,38,19,5,5,142.0,1,0,0,1,0,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,144.0,1,1,19,9,4,130.8,1,0,0,1,0,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,Graduate +1,17,4,9254,1,1,118.0,1,38,37,5,7,111.7,1,0,0,1,1,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,6,9500,1,1,141.0,1,2,1,4,4,136.3,1,0,0,1,0,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,Graduate +2,39,1,9003,1,1,120.0,1,2,2,1,4,100.0,0,0,0,1,1,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,141.0,1,4,3,2,1,136.3,1,0,0,1,1,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,120.0,1,1,19,5,4,140.4,0,0,0,1,0,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,154.0,1,1,37,4,9,134.8,1,0,0,1,0,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,100.0,1,19,19,5,5,101.8,1,0,0,1,0,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,3,9670,1,1,137.0,1,1,38,4,7,138.4,0,0,0,1,1,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,152.0,1,37,37,7,5,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,118.0,1,37,1,9,7,117.0,1,0,0,0,1,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,140.0,1,12,3,4,3,118.0,1,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,133.0,1,1,2,9,2,128.8,0,0,0,1,1,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,171,1,1,140.0,1,37,37,9,9,100.8,0,1,0,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9070,1,42,130.0,1,40,19,3,5,130.0,1,0,0,0,0,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,143.0,1,1,19,3,3,133.9,0,0,0,1,0,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,Graduate +2,1,5,9500,1,1,130.0,1,1,19,4,4,122.3,0,0,0,1,0,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,9,9,125.0,1,0,0,1,0,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,120.0,1,37,37,7,8,120.0,0,0,0,1,0,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,Graduate +1,1,2,9147,1,1,125.0,1,1,19,4,9,124.0,1,0,0,1,0,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,131.0,1,38,19,9,9,130.0,1,0,0,1,1,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,132.0,1,1,1,4,1,119.4,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9500,1,1,135.0,1,19,19,7,7,128.0,1,0,0,1,0,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,19,133.1,1,38,38,9,9,114.8,0,0,0,1,0,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,130.0,1,2,2,6,6,130.0,0,0,0,0,1,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,112.0,1,19,38,9,10,112.0,1,0,0,1,0,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9254,1,1,170.0,1,37,37,4,6,138.3,0,0,0,1,0,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9147,1,19,100.0,1,38,19,7,9,132.0,0,0,1,0,1,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,133.1,1,19,19,9,9,119.0,1,0,0,0,0,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,Dropout +1,17,2,9085,1,1,138.0,1,37,37,9,7,123.3,1,0,0,1,0,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,1,133.1,1,37,37,9,9,112.5,0,0,0,1,0,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,1,140.0,1,12,5,3,3,126.6,0,0,0,1,1,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,1,125.0,1,1,1,9,4,120.0,0,0,0,1,0,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,151.0,1,1,1,4,3,132.3,0,0,0,1,1,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,Graduate +1,43,1,9556,1,1,130.0,1,1,37,5,5,128.0,1,0,0,1,1,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,Graduate +1,17,6,9670,1,1,113.0,1,4,1,3,10,112.3,0,0,0,1,0,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9773,1,1,125.0,1,37,37,5,7,120.1,0,0,0,1,0,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,53,1,171,1,42,130.0,1,1,19,9,9,130.0,1,0,0,0,1,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,51,1,33,1,1,121.0,1,19,37,5,7,118.6,0,0,0,1,0,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,131.0,1,37,37,90,90,137.0,0,0,0,1,0,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,150.0,1,19,1,4,4,137.8,0,0,0,1,0,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,140.0,1,37,37,5,6,128.5,0,0,0,1,0,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,130.0,1,37,2,9,4,126.5,1,0,0,0,1,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,Dropout +1,1,2,9238,1,1,147.0,1,19,38,9,8,135.8,1,0,0,1,0,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,106.0,1,19,37,9,7,109.5,1,0,0,1,0,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,110.0,1,37,37,9,10,140.0,0,0,1,0,1,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,105.0,1,19,37,8,8,102.6,0,1,0,1,0,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,Enrolled +1,17,6,9147,1,1,133.0,1,19,38,5,6,123.2,1,0,0,1,1,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9670,1,1,160.0,1,34,34,99,99,100.1,0,0,0,0,1,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,Dropout +4,7,1,9500,1,40,130.0,1,37,37,3,3,130.0,1,0,0,1,0,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,Enrolled +1,43,2,9853,1,1,118.0,1,19,1,5,4,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,Enrolled +1,43,1,8014,0,1,117.0,1,37,37,9,9,100.0,0,0,0,1,0,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,Dropout +1,53,1,9238,1,42,130.0,1,1,19,5,5,128.3,0,0,1,0,0,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,127.0,1,19,38,4,5,120.7,1,0,1,1,0,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,38,37,9,4,150.0,1,0,0,1,1,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,1,133.1,1,37,29,0,4,120.5,0,0,0,0,1,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,121.0,1,37,19,9,9,141.4,0,0,1,0,1,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,120.0,1,38,37,9,7,108.0,0,0,0,1,1,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,153.0,6,37,37,9,9,131.8,1,0,0,1,0,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,153.0,1,38,19,9,5,138.5,1,0,0,1,0,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,107.0,1,12,19,5,5,102.8,1,0,0,1,0,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9238,1,1,135.0,1,1,19,7,7,126.6,1,0,0,1,0,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,124.0,1,1,19,123,103,113.9,1,1,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,144.0,1,37,37,7,9,126.8,1,0,1,0,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9556,1,1,120.0,1,37,37,9,4,150.0,0,0,0,0,0,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,Dropout +1,43,3,171,1,1,120.0,1,37,37,9,9,143.3,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,140.0,1,38,19,4,10,122.3,1,0,0,1,0,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,157.0,1,3,38,1,5,136.7,1,0,0,1,0,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,150.0,1,3,1,2,8,153.8,1,0,0,1,0,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,130.0,1,2,1,2,7,126.2,1,0,0,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,142.0,1,37,37,9,9,132.9,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9238,1,1,124.0,1,1,1,3,1,118.8,1,0,1,0,0,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,1,19,4,5,100.0,0,0,0,1,1,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,Enrolled +1,17,5,9238,1,1,122.0,1,37,37,7,5,112.9,1,0,0,1,0,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,97.5,1,0,0,1,1,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,171,1,1,140.0,1,1,3,3,3,138.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,132.0,1,1,1,3,3,119.4,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,Graduate +1,42,1,9500,1,1,100.0,1,3,19,2,8,153.0,0,0,0,1,1,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,Enrolled +1,1,1,9254,1,1,123.0,1,38,37,5,5,125.1,0,0,0,1,0,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9130,1,1,133.0,1,38,38,5,8,120.4,1,0,0,1,0,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,Graduate +1,17,4,9773,1,1,129.0,1,3,1,2,7,132.5,1,0,0,1,1,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Enrolled +4,39,1,9003,1,19,133.1,1,37,37,9,9,110.0,0,0,0,1,1,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,133.0,1,3,1,9,3,123.2,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,137.0,1,38,19,9,5,129.3,1,0,0,1,0,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,123.0,1,3,1,2,9,127.6,1,0,0,1,1,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,19,133.1,1,19,19,9,5,101.0,1,0,0,1,0,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,19,19,7,7,111.1,1,0,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9070,1,1,147.0,1,3,1,2,3,149.8,1,0,0,1,1,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,100.0,1,37,37,7,9,100.0,1,0,0,1,0,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,141.0,1,38,38,7,7,132.5,1,0,0,1,0,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,168.0,1,1,1,5,5,161.0,1,0,0,1,1,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,Dropout +5,39,1,9003,1,19,133.1,1,19,1,9,9,119.4,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,114.0,1,1,19,9,9,111.9,1,0,0,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,Enrolled +1,39,1,9500,1,1,130.0,1,37,37,3,7,143.8,0,0,0,1,1,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,133.1,1,19,19,9,7,100.0,0,0,0,1,1,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,Dropout +1,17,3,9853,1,1,132.0,1,34,34,0,0,131.3,1,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,157.0,1,37,37,9,9,143.0,0,0,0,1,1,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,Graduate +5,42,1,9254,1,2,120.0,1,37,37,4,9,120.0,0,0,0,1,0,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,6,1,1,192,144,129.8,0,0,0,1,1,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,Enrolled +1,1,2,9500,1,1,139.0,1,38,37,9,7,125.0,1,0,0,1,0,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,133.1,1,1,19,9,5,95.0,1,0,0,1,0,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,180.0,1,37,37,7,4,153.8,1,0,0,1,0,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,4,9773,1,1,133.0,1,1,19,9,9,119.7,1,0,0,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,Graduate +1,17,5,9500,1,1,124.0,1,3,38,2,1,119.8,0,0,0,1,1,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,133.1,1,37,37,9,9,148.2,1,0,1,1,0,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,19,133.1,1,37,37,9,7,114.8,0,0,1,1,1,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,133.1,1,1,19,4,8,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,180.0,41,37,37,9,9,152.7,1,0,1,0,1,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9085,1,1,130.0,1,19,19,90,7,115.8,0,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,161.0,1,38,37,5,5,154.4,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,148.0,1,1,38,4,5,148.7,0,0,0,1,1,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,19,38,9,7,131.3,1,0,1,1,0,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,122.0,1,1,1,4,9,112.9,1,0,0,1,0,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,4,9500,1,1,142.0,1,38,38,9,8,129.8,1,0,0,1,0,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,Graduate +3,39,1,9003,1,1,170.0,1,1,37,6,6,170.0,0,0,1,1,0,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Enrolled +1,1,2,9147,1,1,130.0,1,37,37,9,9,117.8,0,0,0,1,0,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9147,1,1,140.0,1,37,37,9,7,132.3,1,0,0,1,0,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,132.0,1,2,1,9,9,126.4,1,1,0,1,0,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,140.0,1,1,3,9,2,140.0,1,0,0,1,0,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,19,4,4,109.3,0,0,0,1,1,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,176.0,1,3,38,3,7,169.7,0,0,0,1,0,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,133.1,1,37,38,7,7,98.0,1,0,0,1,1,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,136.0,1,3,3,2,2,128.7,0,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,12,38,4,9,107.0,1,0,0,1,0,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,Dropout +1,17,1,9130,1,1,156.0,1,2,9,3,5,166.9,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,Graduate +1,17,1,9130,1,1,123.0,1,19,3,3,2,121.6,1,0,1,1,0,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,129.0,1,1,1,9,9,124.8,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9119,1,1,125.0,1,19,1,5,4,121.5,1,0,0,1,1,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,Dropout +1,17,1,9085,1,1,163.0,14,37,37,9,9,150.8,1,0,0,1,0,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,Graduate +1,7,2,9130,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,135.0,1,1,2,9,1,134.3,1,0,0,1,0,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,19,37,6,6,120.0,0,0,0,1,0,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,1,130.0,1,37,37,9,7,133.0,1,0,0,1,0,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,143.0,1,1,19,4,6,135.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +4,43,2,9991,0,38,133.1,1,3,1,2,9,125.4,0,0,0,1,1,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,140.0,1,3,1,2,4,124.1,0,0,0,1,0,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,37,38,175,103,127.0,0,0,0,1,1,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,151.0,1,1,3,1,1,111.0,0,0,0,1,1,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,133.0,1,37,19,9,8,141.4,0,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,133.1,1,38,37,5,5,108.0,0,0,0,1,0,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,9147,1,1,118.0,1,3,19,2,4,113.8,1,0,0,1,0,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,1,1,3,5,141.7,0,0,0,1,0,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,42,1,9119,1,1,130.0,1,19,37,9,3,135.0,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,Dropout +4,39,2,9147,1,19,133.1,1,37,37,9,7,116.4,0,0,1,0,1,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,148.0,1,19,38,9,8,134.8,1,0,0,1,1,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,116.0,1,19,19,4,7,110.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,5,9147,1,1,122.0,1,38,38,9,9,117.5,1,0,1,0,0,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,122.0,1,37,37,9,9,125.9,1,0,0,1,1,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,171,1,1,127.0,1,1,1,9,5,124.2,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9147,1,39,117.4,1,19,1,4,9,117.4,1,0,0,1,0,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,150.0,1,37,38,9,9,146.2,0,0,0,1,0,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,Enrolled +1,17,1,9254,1,1,158.0,1,37,37,5,9,138.1,1,0,0,1,0,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,Dropout +1,7,1,9500,1,3,140.0,1,1,37,9,5,140.0,0,0,0,1,0,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,140.0,1,1,1,9,3,135.7,1,0,0,1,0,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +2,7,1,171,1,3,120.0,1,19,19,9,9,130.0,1,0,0,1,1,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,10,100.0,1,34,34,0,0,113.0,1,0,0,1,0,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,1,8014,0,1,125.0,1,37,37,9,7,114.9,0,0,0,1,0,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,Graduate +1,18,6,9500,1,1,124.0,1,37,37,9,7,117.8,0,0,0,1,0,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,109.0,1,2,3,3,3,111.8,1,0,1,1,1,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,149.0,1,1,1,9,3,156.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +2,44,1,9119,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,120.0,6,4,4,3,6,120.0,0,0,1,0,0,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,Dropout +5,1,3,9085,1,1,133.0,1,19,19,4,7,119.7,1,0,0,1,0,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9085,1,1,127.0,1,37,37,9,9,122.8,1,0,0,1,0,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,171,1,39,140.0,1,1,1,9,9,140.0,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9773,1,1,132.0,1,1,1,4,9,124.3,1,0,1,1,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +4,39,2,9670,1,19,133.1,1,19,1,90,90,103.0,0,0,0,0,1,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,26,1,9147,1,2,133.1,1,34,34,0,0,121.5,1,0,0,1,0,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,143.0,1,19,38,9,6,131.5,1,0,0,1,1,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,123.0,1,1,19,3,4,122.0,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,171,1,1,133.1,1,3,1,2,3,141.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,19,37,9,4,120.0,0,0,0,1,0,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,1,1,3,3,125.7,1,0,0,1,0,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,121.0,1,37,37,5,5,118.9,1,0,0,1,0,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,Graduate +1,51,1,9500,1,1,129.0,1,37,38,3,3,137.8,1,0,0,1,0,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,2,4,134.9,1,0,1,1,0,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9254,1,1,113.0,1,1,1,2,3,110.2,1,0,0,1,1,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,1,133.1,1,1,19,4,5,120.0,1,0,0,1,1,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,Dropout +1,39,1,9254,1,19,133.1,1,19,1,9,5,97.0,0,0,1,0,1,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9500,1,1,126.0,1,1,19,6,7,115.5,1,0,0,1,0,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,Graduate +1,42,1,9853,1,1,141.0,1,37,19,9,3,133.0,0,0,0,1,0,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,19,133.1,1,19,19,4,9,139.9,1,0,0,1,0,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,2,9254,1,1,140.0,1,19,19,9,9,126.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,108.0,1,34,38,0,3,105.9,0,0,0,1,1,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,114.0,1,19,19,9,7,107.7,0,0,0,1,0,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,130.0,1,3,1,9,9,126.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.1,1,19,37,0,0,137.0,1,0,0,1,0,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9119,1,1,117.0,1,1,2,3,2,119.8,1,0,0,1,1,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9147,1,1,115.0,1,1,37,4,9,117.1,1,0,1,1,0,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,130.0,1,12,19,4,5,118.5,0,1,0,1,0,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,34,37,5,5,120.4,0,0,0,0,0,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,171,1,39,150.0,1,19,1,9,9,154.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,43,1,9147,1,1,140.0,1,37,37,6,6,122.9,0,0,0,1,0,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,Dropout +1,42,1,9070,1,1,100.0,1,3,2,2,2,115.9,0,0,0,1,0,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,Enrolled +1,17,1,171,1,1,128.0,1,1,1,4,10,134.7,0,0,0,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,1,1,9,9,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,7,133.9,0,0,0,1,0,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Dropout +1,43,1,9773,1,1,119.0,1,19,37,5,5,105.0,1,0,0,1,0,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,Enrolled +2,43,1,9991,0,1,140.0,1,37,37,4,1,122.7,0,0,0,1,1,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,135.0,1,37,1,3,5,121.0,0,0,0,1,0,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,123.0,1,3,1,2,3,124.1,1,0,0,1,0,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9670,1,1,132.0,1,19,1,5,4,119.1,0,0,1,1,1,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,5,9254,1,1,130.0,1,37,38,9,9,122.7,1,0,1,1,1,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9147,1,1,117.0,1,1,38,8,9,117.0,1,0,0,1,1,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,140.0,1,19,19,9,6,135.4,1,0,0,1,0,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,162.0,1,37,37,9,6,132.0,0,0,1,1,1,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,139.0,1,19,38,4,9,128.5,1,0,0,1,0,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,Dropout +4,39,1,9991,0,1,130.0,1,38,19,9,7,148.0,0,0,0,1,0,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,43,1,9500,1,1,131.0,1,1,38,5,5,118.8,0,0,0,1,0,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,5,9238,1,1,126.0,1,38,1,9,5,125.7,1,0,0,1,0,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,53,1,9085,1,42,140.0,1,1,1,4,3,140.0,1,0,1,1,0,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,128.0,1,1,1,4,5,120.8,1,0,0,1,0,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,139.0,1,37,37,9,6,133.5,1,0,0,1,0,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,150.0,1,38,38,4,1,150.0,1,0,0,1,1,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,133.1,1,1,1,4,4,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9853,1,1,140.0,1,37,19,9,8,122.3,0,0,0,1,0,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,120.0,1,38,19,5,4,118.3,0,0,0,1,0,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,Enrolled +1,7,1,9130,1,3,140.0,1,2,38,2,3,140.0,1,0,0,0,1,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,122.0,1,9,19,90,6,103.4,0,0,0,1,0,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,Graduate +2,39,1,9070,1,19,133.1,1,37,37,9,10,126.3,0,0,0,0,1,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,160.0,1,38,38,7,7,147.8,0,0,0,1,0,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9238,1,12,100.0,1,37,37,9,9,124.3,0,0,0,1,1,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,Graduate +1,18,2,8014,0,1,117.0,1,3,1,3,4,111.8,1,0,0,1,0,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,38,37,7,7,140.0,0,0,0,1,1,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,Dropout +1,43,1,9853,1,1,140.0,1,3,1,3,3,128.3,1,0,0,1,0,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,127.0,1,37,38,9,9,120.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,1,161.0,1,19,37,4,10,100.0,0,0,0,1,1,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,Graduate +1,16,4,9500,1,1,145.0,1,1,1,4,4,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9853,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,Dropout +1,1,2,171,1,1,127.0,1,2,19,5,5,139.6,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,148.0,1,19,19,4,4,133.8,0,0,0,1,0,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,140.0,1,19,19,1,1,129.5,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,171,1,1,129.0,1,37,37,9,9,122.0,1,0,0,0,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,1,12,3,10,131.6,1,0,0,1,0,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,130.0,1,38,37,3,6,135.6,1,0,0,1,0,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,51,1,9991,0,39,120.0,1,1,4,4,10,118.1,0,0,0,1,1,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,39,1,9853,1,19,133.1,1,19,4,9,4,116.0,1,0,0,1,0,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9238,1,1,133.1,1,1,37,8,9,118.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,4,9500,1,1,125.0,1,19,1,1,1,117.8,1,0,0,1,0,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,141.0,1,1,38,4,5,125.0,1,0,0,1,0,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,121.0,1,38,38,7,5,120.0,1,0,0,1,0,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,Enrolled +1,17,3,9500,1,1,142.0,1,3,3,3,3,132.9,1,0,0,1,1,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,Dropout +1,44,1,9238,1,39,140.0,1,37,19,191,102,136.1,1,0,1,1,0,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9991,0,2,140.0,1,3,3,2,2,155.7,1,0,0,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9119,1,1,135.0,1,12,19,5,5,121.0,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,135.0,1,3,3,2,2,123.0,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,117.0,1,1,1,4,4,117.7,1,0,0,1,1,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,43,1,171,1,1,120.0,1,3,3,2,2,120.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,1,38,1,7,120.0,0,0,0,1,0,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,Graduate +1,17,3,9238,1,1,122.0,1,19,19,7,7,117.5,1,0,0,1,0,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,1,37,37,9,9,144.2,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +4,39,1,9500,1,1,140.0,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,131.0,1,19,19,9,9,139.8,1,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,127.0,1,3,3,2,5,100.0,0,0,0,1,0,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,39,1,9085,1,1,133.1,1,3,19,2,9,110.0,0,0,0,1,0,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,Dropout +4,39,1,9500,1,19,133.1,1,38,1,9,4,120.0,0,0,0,1,0,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,Graduate +1,16,1,9085,1,1,150.0,1,3,3,2,1,153.5,1,0,0,1,0,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,153.0,1,19,37,9,9,153.7,0,0,0,1,0,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,130.0,1,19,19,3,8,131.8,0,0,0,1,0,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,2,9853,1,1,131.0,1,1,1,2,9,121.9,1,0,0,1,0,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,136.0,1,3,3,3,3,130.8,0,0,0,1,0,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,126.0,1,1,19,4,0,120.1,0,1,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,1,120.0,1,3,2,2,6,120.0,1,0,0,1,1,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,Enrolled +2,39,1,9130,1,19,133.1,1,2,1,2,9,157.0,1,0,0,1,1,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,Graduate +1,7,1,9853,1,3,150.0,1,19,19,4,5,150.0,0,0,1,0,0,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,51,1,9070,1,12,133.1,1,37,19,3,7,106.6,0,0,1,1,0,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,Enrolled +1,1,2,9085,1,1,157.0,1,3,3,5,2,153.9,1,0,0,1,0,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,171,1,1,117.0,1,1,19,3,3,121.6,1,0,0,1,0,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,Graduate +1,1,2,9147,1,1,113.0,1,38,38,9,5,107.4,1,0,0,1,1,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,Enrolled +1,39,2,9147,1,12,133.1,1,19,38,9,9,120.0,1,0,1,0,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,152.0,1,37,37,9,9,139.0,1,0,0,1,0,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,138.0,1,1,19,9,9,124.0,0,0,0,1,0,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9853,1,1,110.0,1,37,37,9,9,95.5,0,0,1,0,0,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9130,1,1,150.0,1,19,19,4,4,130.0,0,0,0,0,1,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,3,9119,1,1,138.0,1,1,19,4,3,125.4,1,0,0,1,1,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,17,6,9147,1,1,120.0,1,37,38,9,9,115.5,1,0,1,0,1,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,Enrolled +1,1,3,9670,1,1,134.0,1,14,11,0,0,128.4,1,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,145.0,1,38,37,9,7,129.3,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,18,6,9500,1,1,126.0,1,37,37,5,5,122.8,1,0,0,1,0,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,133.0,1,1,1,4,4,129.2,1,0,0,1,0,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,Dropout +1,44,1,9070,1,39,120.0,1,1,19,4,7,120.0,0,0,1,0,1,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,136.0,1,19,38,9,9,121.7,0,1,0,1,0,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,126.0,1,1,1,9,10,126.7,1,0,0,1,0,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,Graduate +1,1,3,9085,1,1,134.0,1,38,19,9,5,129.1,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,133.1,1,1,37,9,9,117.0,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,5,9238,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,0,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,40,140.0,1,19,37,5,9,148.0,0,0,0,1,0,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,137.0,1,3,38,1,9,131.4,0,0,0,0,1,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,Dropout +1,1,2,9670,1,1,123.0,1,1,38,7,7,120.6,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,139.0,1,3,1,2,7,124.0,1,0,0,1,0,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,Dropout +1,1,2,171,1,1,152.0,1,38,19,9,9,151.7,1,0,0,1,0,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,110.0,1,37,37,9,4,114.3,1,0,0,1,1,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,Enrolled +1,51,1,9991,0,1,120.0,1,38,3,5,3,128.2,0,0,1,1,1,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,141.0,1,3,2,2,2,133.3,1,0,0,1,1,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,Enrolled +1,5,1,171,1,1,137.0,1,3,19,1,10,144.7,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,43,1,9003,1,1,130.0,1,37,1,5,4,130.0,0,0,0,1,1,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,Dropout +1,18,1,9773,1,1,135.0,1,1,1,3,3,129.8,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,38,38,9,8,150.0,1,0,0,1,1,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,Graduate +1,17,2,9773,1,1,150.0,1,1,1,4,5,130.8,0,0,0,1,1,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9773,1,1,123.0,1,1,1,4,7,125.1,1,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,4,9119,1,1,129.0,1,34,36,0,5,118.9,1,0,0,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,144.0,1,38,37,9,9,128.8,1,0,0,1,1,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,130.0,1,38,38,9,9,150.0,0,0,1,0,1,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,128.0,1,1,1,7,7,120.5,1,0,0,1,0,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,Enrolled +1,7,1,9500,1,3,140.0,1,3,1,4,4,140.0,0,0,0,1,0,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,134.0,1,19,19,1,1,120.4,1,0,0,1,1,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,147.0,1,1,38,4,8,141.1,1,0,0,1,0,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,126.0,1,3,1,5,5,125.7,0,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +2,1,4,9853,1,1,134.0,1,37,37,5,7,122.5,0,1,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,148.0,1,38,38,4,9,131.6,0,0,0,1,1,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,Dropout +2,39,1,9085,1,9,133.1,1,1,1,4,4,120.0,1,0,0,0,1,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,39,1,9254,1,1,150.0,1,3,1,3,4,122.3,0,0,0,1,1,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,125.0,1,19,37,3,7,126.8,0,0,0,1,0,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,Enrolled +1,18,1,9670,1,1,128.0,1,19,3,9,7,120.0,1,0,0,1,0,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,160.0,1,2,1,4,4,137.3,1,0,0,1,0,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,Graduate +2,39,1,9238,1,42,170.0,1,19,38,8,8,159.5,0,0,0,1,1,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9773,1,1,143.0,1,1,1,4,9,144.1,1,0,0,1,1,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,9991,0,1,130.0,1,37,37,9,9,127.8,0,0,0,1,1,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,51,1,9147,1,1,130.0,1,19,38,9,8,115.7,0,0,0,1,1,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,Enrolled +1,17,3,9773,1,1,135.0,1,1,19,5,7,135.0,0,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,135.0,1,1,1,9,9,133.3,0,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,136.0,1,1,1,4,5,123.3,0,0,0,0,0,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,143.0,1,5,5,2,2,137.8,0,0,0,1,1,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,133.1,1,1,19,141,114,140.0,1,0,0,1,0,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9670,1,1,117.0,1,38,19,0,1,114.6,0,0,0,0,1,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,133.1,1,1,19,4,10,145.8,0,0,0,1,1,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,129.0,1,1,37,4,9,118.2,0,0,0,1,1,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,7,1,9500,1,3,130.0,1,37,37,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,Graduate +1,17,4,9670,1,1,135.0,1,38,38,9,7,127.0,1,0,0,1,0,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,126.0,1,1,1,90,90,119.0,1,0,1,1,1,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9773,1,1,120.0,1,1,38,5,5,121.4,0,0,0,0,0,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,136.0,1,1,38,9,9,130.8,1,0,0,1,0,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,131.0,1,19,37,9,9,123.8,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,144.0,1,19,19,9,9,142.6,1,0,0,1,0,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,126.0,1,38,38,7,8,126.7,1,0,0,1,0,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,3,171,1,1,125.0,1,37,37,5,10,120.5,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,7,1,9130,1,2,110.0,1,19,19,4,8,110.0,1,0,0,1,1,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,3,1,2,8,150.0,0,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,5,171,1,1,139.0,1,19,3,9,2,136.9,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9147,1,1,100.0,1,38,38,5,5,101.8,1,0,0,1,0,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,Enrolled +1,44,2,9238,1,39,150.0,1,3,19,4,9,147.0,1,0,0,1,0,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,9,4,100.0,0,0,0,1,1,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9130,1,1,130.0,1,19,38,4,7,122.5,0,0,0,1,1,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,19,37,1,1,140.0,0,0,1,1,1,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,Enrolled +1,17,1,9070,1,1,157.0,1,3,3,3,3,146.2,0,0,0,1,1,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,150.0,1,37,19,8,4,130.8,0,0,0,1,1,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,133.1,1,19,19,7,7,130.0,1,0,0,1,0,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,150.0,1,19,1,9,8,150.0,1,0,0,1,1,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,127.0,1,1,19,7,7,121.8,1,0,0,1,0,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9853,1,1,148.0,1,19,19,5,7,141.7,0,0,0,1,0,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,130.0,1,1,19,9,9,133.4,0,0,0,1,0,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,123.0,1,37,38,3,3,122.0,0,0,1,1,1,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9070,1,1,132.0,1,37,38,9,7,138.0,0,0,0,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,146.0,1,2,19,3,9,130.3,1,0,0,1,1,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,Graduate +1,44,1,171,1,39,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,116.0,1,3,1,3,4,115.7,0,0,0,0,1,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9670,1,1,130.0,1,19,37,4,5,118.8,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,124.0,1,37,37,7,9,121.2,0,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,127.0,1,19,37,9,3,120.7,1,0,0,1,0,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +2,43,1,9070,1,2,140.0,1,37,37,6,6,140.0,1,0,0,1,1,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,Graduate +1,39,1,9500,1,1,100.0,1,3,1,2,5,121.3,1,0,0,1,0,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,Enrolled +1,39,1,9991,0,19,133.1,1,37,37,9,6,105.3,0,0,1,1,0,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,1,155.0,1,1,19,4,8,134.7,1,0,0,1,0,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,15,1,9119,1,1,160.0,32,1,3,143,152,160.0,0,0,1,1,0,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,Enrolled +1,53,1,9670,1,42,140.0,1,19,37,3,6,140.0,1,0,1,1,0,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9853,1,1,140.0,1,38,38,9,7,137.6,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,140.0,1,19,19,7,7,129.5,1,0,0,1,0,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,133.1,1,19,19,3,4,104.0,0,0,1,0,0,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,130.0,1,37,37,9,9,118.8,0,0,1,1,1,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,136.0,1,1,1,9,1,133.0,1,0,0,1,0,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,143.0,1,38,38,9,9,138.8,1,0,0,1,0,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,Graduate +2,39,1,9147,1,1,140.0,1,37,37,6,10,131.8,0,0,0,1,0,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,1,130.0,1,4,1,2,9,120.0,0,0,0,0,0,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,Enrolled +1,1,4,9500,1,1,148.0,1,19,19,4,5,137.0,1,0,0,1,0,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,120.0,1,37,19,5,3,156.0,1,0,0,1,1,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9853,1,1,133.1,1,12,1,4,0,134.8,1,0,0,1,0,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,122.0,1,1,1,9,8,120.3,0,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,156.0,1,19,38,9,5,170.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,129.0,1,38,37,9,3,127.3,1,0,1,0,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,142.0,1,38,38,9,10,127.0,1,0,0,1,0,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,150.0,1,38,19,3,3,120.1,0,0,0,0,0,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,141.0,1,37,37,9,9,126.7,1,0,1,1,0,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,43,3,9147,1,1,127.0,21,3,37,3,3,117.9,1,0,0,1,0,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,1,120.0,1,1,19,4,7,110.0,0,0,0,1,1,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,Dropout +2,42,1,9254,1,1,136.0,1,2,2,134,112,130.0,1,0,0,1,1,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,Dropout +1,18,1,9119,1,1,122.0,1,19,1,90,3,116.1,1,0,1,0,1,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9500,1,1,120.0,1,2,4,4,5,136.6,0,0,0,1,1,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,Dropout +1,18,1,9070,1,1,143.0,1,38,38,7,5,141.6,0,0,0,1,0,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,Graduate +1,43,1,9119,1,1,140.0,1,37,38,5,7,146.5,0,0,0,1,1,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,125.0,1,19,19,9,9,121.5,1,0,0,1,0,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,1,0,0,1,0,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,159.0,1,3,3,2,2,165.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,127.0,1,3,1,2,9,119.3,1,0,0,1,0,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,Graduate +1,17,6,9238,1,1,117.0,1,1,38,4,7,114.6,0,0,0,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9119,1,1,148.0,1,19,19,9,8,129.8,0,0,0,0,1,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,Enrolled +1,17,4,9119,1,1,127.0,1,19,19,5,5,120.4,1,0,1,0,1,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9500,1,1,144.0,1,19,1,5,3,141.0,1,0,0,1,0,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,Graduate +1,17,3,9556,1,1,126.0,1,19,19,9,4,119.0,1,0,0,1,0,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,Dropout +1,1,4,9119,1,1,126.0,1,3,19,2,9,123.6,1,0,0,1,1,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,120.0,1,1,2,144,123,125.3,0,0,1,1,1,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9070,1,1,130.0,1,1,19,4,4,110.0,1,0,0,1,0,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,37,37,90,5,115.5,0,0,0,0,1,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,130.0,1,38,38,9,9,120.0,0,0,0,1,0,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9853,1,1,141.0,1,3,1,1,5,130.2,1,0,0,1,0,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,Enrolled +2,1,1,9500,1,1,156.0,1,1,1,9,10,135.5,0,0,0,1,0,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,Graduate +2,7,1,8014,0,3,170.0,1,19,19,4,4,170.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9147,1,1,134.0,1,37,19,9,8,126.3,1,0,0,1,0,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,122.0,1,12,12,5,7,126.6,1,0,0,1,0,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,38,38,9,7,138.8,1,0,0,1,0,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,132.0,1,37,37,5,7,127.5,1,0,0,1,0,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,Graduate +1,16,2,9238,1,1,130.0,1,37,37,5,6,126.9,1,0,0,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,110.0,1,3,2,3,3,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,127.0,1,2,19,4,5,121.8,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,12,133.1,1,38,19,9,8,138.3,1,0,1,0,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9147,1,19,133.1,1,3,1,3,5,153.2,1,0,1,1,0,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,37,19,5,9,130.0,1,0,0,1,0,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,2,9147,1,1,130.0,1,19,37,4,7,140.0,0,0,0,1,1,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,128.0,1,19,19,7,7,124.4,0,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,19,3,8,150.3,1,0,0,1,1,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,143.0,1,38,19,7,9,129.5,1,0,0,1,0,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,6,141.0,1,37,1,9,4,145.0,0,0,0,1,0,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,Graduate +1,17,1,9238,1,1,160.0,1,19,37,6,6,144.3,0,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,2,9238,1,1,133.1,1,19,19,4,5,120.6,1,0,0,1,0,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,3,116.5,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,127.0,1,1,1,3,4,130.2,1,0,0,1,1,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9254,1,1,131.0,1,38,36,9,9,124.0,1,0,0,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,5,9254,1,1,120.0,1,37,37,9,7,127.0,1,0,0,1,0,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,135.0,1,34,34,0,0,134.1,1,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9254,1,1,133.1,1,37,37,9,6,121.5,0,0,0,1,1,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,144.0,1,38,38,5,7,128.0,1,0,0,1,0,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,132.0,1,1,19,6,6,124.7,1,0,0,1,1,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,Graduate +1,17,2,9991,0,1,116.0,1,37,19,9,4,118.5,0,0,0,1,1,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,133.1,1,1,1,9,1,103.0,1,0,0,1,0,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,16,5,9085,1,1,134.0,1,19,37,8,8,123.9,1,0,0,1,1,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9773,1,1,114.0,1,37,38,9,5,107.4,1,0,0,0,1,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,38,37,5,7,120.0,1,0,0,1,0,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,135.0,1,1,38,4,6,122.1,0,1,1,0,1,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,1,150.0,1,37,37,7,5,143.0,0,0,0,1,0,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,Graduate +1,44,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,Graduate +4,39,1,9238,1,19,133.1,1,37,37,9,10,103.5,0,0,0,0,0,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,126.0,1,19,38,9,9,132.0,1,0,0,1,0,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,125.0,1,1,1,7,3,143.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9147,1,1,120.0,1,37,1,9,1,122.7,0,0,0,0,0,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,7,1,8014,0,3,124.4,1,37,34,0,0,130.0,0,0,0,1,0,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,Graduate +1,18,1,9085,1,1,106.0,1,1,19,3,5,104.6,0,0,0,0,1,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,Enrolled +1,44,1,9119,1,39,160.0,1,3,38,2,3,160.0,0,0,1,0,1,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,148.0,1,3,19,2,5,130.0,0,0,0,1,0,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,Enrolled +1,1,1,9130,1,1,133.0,1,1,37,9,9,123.2,1,0,0,1,0,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9500,1,1,130.0,1,19,1,9,4,128.8,1,0,0,1,0,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,149.0,1,19,1,9,9,137.8,1,0,0,1,1,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,Graduate +4,43,1,9670,1,1,150.0,1,37,37,9,6,110.0,0,0,0,1,0,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,Graduate +2,39,1,9119,1,1,110.0,1,19,19,0,5,137.0,0,0,1,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9556,1,1,122.0,1,19,19,3,10,113.3,1,0,0,1,0,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,140.0,1,1,19,4,5,127.5,0,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,128.0,1,37,37,5,5,124.5,1,0,0,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,39,150.0,6,5,4,1,1,150.0,0,0,0,1,0,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,131.0,1,38,37,7,7,127.2,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,130.0,1,37,37,9,6,126.5,1,0,0,1,0,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,116.0,1,19,37,90,5,116.7,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,Dropout +1,17,3,9853,1,1,140.0,1,38,38,5,7,126.7,1,0,0,1,0,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,4,9238,1,1,129.0,1,37,37,9,8,117.1,1,0,0,1,1,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,144.0,1,19,19,9,9,130.5,1,0,0,1,0,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,124.0,1,19,1,7,10,116.0,1,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,122.0,1,1,19,4,4,127.3,1,0,1,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,12,12,4,1,155.3,1,1,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +2,15,1,9773,1,1,133.1,41,37,37,9,6,100.0,0,0,0,1,0,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,138.0,41,1,1,9,9,126.5,1,0,0,1,0,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,Graduate +1,18,6,9500,1,1,142.0,1,38,37,9,5,128.0,1,0,0,0,0,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,3,1,2,3,140.0,1,0,0,1,0,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,Enrolled +1,42,1,9991,0,1,150.0,1,19,19,5,5,113.7,0,0,0,1,1,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,135.0,1,1,19,5,5,130.1,1,0,0,1,0,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9254,1,1,120.0,1,19,1,9,8,117.2,0,0,0,1,1,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,130.0,1,19,19,9,7,119.5,1,0,0,1,1,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,133.0,1,1,1,4,5,136.2,1,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,15,1,9147,1,1,133.1,21,1,3,192,3,100.0,0,0,1,1,1,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9670,1,1,112.0,1,37,1,7,0,110.6,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9238,1,1,117.0,1,19,19,9,9,117.0,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9991,0,1,140.0,1,1,37,9,8,154.5,0,0,0,1,0,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,97.0,1,0,0,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,119.0,1,37,37,5,4,118.0,1,0,0,1,1,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,112.0,1,19,38,5,7,107.1,1,0,0,1,0,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +2,18,2,8014,0,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,144.0,1,37,37,9,6,129.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,120.0,100,1,1,4,7,119.5,0,0,1,1,0,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,136.0,1,19,38,5,8,130.3,1,0,0,1,0,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,7,9,121.3,1,0,0,1,0,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,135.0,1,1,4,5,3,124.9,0,0,0,1,0,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,4,9670,1,1,128.0,1,38,38,3,7,121.0,1,0,0,1,0,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,15,1,9556,1,1,114.0,26,3,19,122,144,114.0,0,0,0,1,0,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9238,1,1,125.0,1,19,19,3,3,118.0,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,118.0,1,37,37,7,7,114.2,0,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,Enrolled +1,17,1,9147,1,1,115.0,1,19,37,5,7,112.9,1,0,0,0,1,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,120.0,1,19,37,9,9,118.3,0,0,1,0,1,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9119,1,10,133.1,1,34,37,0,0,128.8,1,0,0,1,1,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,115.0,1,19,38,5,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,137.0,1,37,37,9,9,132.8,1,0,0,1,0,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9003,1,1,148.0,1,19,37,9,9,131.6,1,0,0,1,1,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9773,1,1,161.0,1,1,19,4,7,148.4,0,0,0,1,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,43,1,9991,0,1,133.1,1,37,37,9,7,113.5,0,0,0,1,0,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,132.0,1,1,1,9,9,133.8,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9254,1,1,125.0,1,37,37,9,9,122.9,0,0,0,1,1,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,123.0,1,3,1,9,3,121.3,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,Enrolled +1,17,1,9991,0,1,154.0,1,38,38,4,5,134.1,0,0,0,1,0,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,Enrolled +1,44,1,9130,1,39,140.0,1,19,19,5,5,140.0,1,0,1,0,0,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,Enrolled +1,53,1,9085,1,42,170.0,1,1,19,4,7,170.0,0,0,0,1,0,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,Graduate +1,17,5,9147,1,1,131.0,1,19,38,3,10,119.8,1,0,0,1,0,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,141.0,1,19,19,9,9,126.0,1,0,0,1,0,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,Graduate +1,1,3,9500,1,1,137.0,1,19,19,5,4,131.5,1,0,0,1,0,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,118.0,1,19,1,9,3,113.5,1,0,1,1,0,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,100.0,1,37,37,99,99,100.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9130,1,1,120.0,6,1,3,9,2,120.0,0,0,1,1,0,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,127.0,1,19,19,5,5,129.8,1,0,0,1,0,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,134.0,1,37,37,9,9,129.8,1,0,0,1,0,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,121.0,1,37,37,5,9,116.5,1,0,0,1,0,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9070,1,1,117.0,1,19,37,5,5,131.0,1,0,1,0,1,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,125.0,1,1,38,9,7,119.8,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,5,9500,1,1,140.0,1,1,1,4,3,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,1,5,9254,1,1,101.0,1,3,19,3,9,98.9,1,0,0,1,1,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,130.0,1,37,38,7,9,117.8,0,0,1,1,0,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,128.0,1,34,19,3,0,141.0,1,0,0,0,0,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,150.0,1,38,37,9,9,130.8,0,0,0,1,1,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,125.0,1,1,19,4,7,116.6,0,0,0,1,1,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,Graduate +1,43,1,9670,1,1,130.0,1,34,34,0,0,114.8,0,0,0,1,1,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,Graduate +2,42,1,9003,1,1,120.0,1,3,1,2,2,113.3,0,0,0,1,1,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +4,39,1,9991,0,1,133.1,1,37,37,5,5,138.7,0,0,0,1,0,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,Dropout +1,39,1,9238,1,1,140.0,1,34,34,0,0,114.0,1,0,0,0,0,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9991,0,1,133.1,1,37,19,3,10,136.1,0,0,0,1,1,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9070,1,1,110.0,1,37,37,7,7,110.2,0,0,0,1,1,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,150.0,1,4,5,4,2,150.0,0,0,0,1,1,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,Enrolled +1,1,2,9119,1,1,149.0,1,38,38,5,5,141.0,0,0,0,1,1,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,Enrolled +1,42,1,9085,1,39,150.0,1,1,1,4,7,150.0,1,0,0,1,0,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,1,38,4,9,131.7,1,0,0,1,0,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,42,1,9853,1,1,120.0,1,1,37,5,5,113.9,1,0,0,1,0,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9085,1,1,130.0,1,37,19,9,7,130.0,1,0,0,1,0,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,Enrolled +1,17,4,9500,1,1,133.0,1,38,37,5,7,126.4,1,0,0,1,1,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,147.0,1,3,1,2,3,131.6,0,0,0,1,0,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,12,133.1,1,37,37,9,9,121.5,0,0,0,1,1,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,1,1,9991,0,1,150.0,1,37,37,9,9,131.8,0,0,0,0,0,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,43,4,8014,0,1,116.0,1,34,34,0,0,116.2,0,0,0,1,1,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,7,140.0,0,0,0,1,1,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9773,1,1,136.0,1,3,1,2,3,132.5,1,0,0,1,0,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,19,110.0,1,37,38,5,5,151.0,0,0,1,0,1,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,19,19,5,5,113.2,1,0,1,1,0,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,137.0,1,3,19,2,9,122.3,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +4,39,1,9254,1,1,120.0,1,37,19,9,9,131.0,1,0,0,1,1,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9556,1,1,123.0,1,19,19,4,9,113.8,1,0,0,1,0,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,150.0,1,3,37,4,7,139.5,0,0,0,1,1,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,145.0,1,38,37,3,9,138.4,1,0,0,0,0,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,39,1,8014,0,1,140.0,1,37,37,9,7,122.0,1,0,1,0,1,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,3,9991,0,1,120.0,1,37,37,9,9,128.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,6,9500,1,1,126.0,1,12,37,5,9,121.8,1,0,0,1,0,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,Dropout +2,39,1,9991,0,1,130.0,1,37,37,9,9,140.0,1,0,0,1,1,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,130.0,1,37,19,9,8,130.8,0,0,0,1,1,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,Enrolled +1,1,3,9070,1,1,125.0,1,19,38,9,9,125.4,1,0,0,1,0,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,132.0,1,38,38,4,9,119.1,0,0,0,1,0,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,Graduate +4,7,1,9147,1,3,130.0,1,19,1,5,5,130.0,0,0,0,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,130.0,1,19,19,7,7,121.6,1,0,0,1,0,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9773,1,1,126.0,1,37,38,5,5,129.5,1,0,1,0,0,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,133.0,1,38,38,5,5,123.2,0,0,0,1,0,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,140.0,1,37,37,9,9,121.0,0,0,0,1,0,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,3,9500,1,1,131.0,1,37,37,9,9,118.0,1,0,0,1,0,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,120.0,1,38,19,4,8,115.1,0,0,0,1,0,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,Enrolled +1,17,5,9773,1,1,111.0,1,19,12,7,3,115.9,1,0,0,1,0,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,135.0,1,1,19,9,7,123.5,1,0,0,1,0,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,37,4,9,130.0,1,0,0,1,0,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,Enrolled +1,44,1,9119,1,39,130.0,1,3,19,3,4,130.0,0,0,0,1,1,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,Enrolled +1,44,1,9147,1,39,130.0,22,2,37,2,8,130.0,0,0,1,0,1,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,119.0,1,37,37,9,6,119.0,0,0,1,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9500,1,1,142.0,1,38,37,9,8,130.8,1,0,0,1,0,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,136.0,1,38,1,9,4,129.7,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,140.0,1,19,19,4,4,140.0,1,0,0,1,1,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,19,133.1,1,1,19,4,10,114.0,0,0,0,1,1,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +1,17,5,9670,1,1,125.0,1,19,30,7,7,118.4,1,0,0,1,0,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,135.0,1,19,19,9,10,122.9,1,0,0,1,0,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,100.0,1,37,37,9,9,108.0,1,0,0,1,1,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,127.0,1,37,37,9,9,119.3,1,1,0,1,1,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,133.0,1,38,19,9,10,125.0,1,0,0,1,0,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,116.0,1,3,3,3,3,110.1,1,0,0,1,1,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,133.1,1,1,1,5,8,123.0,1,0,0,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,144.0,1,37,37,9,3,150.5,0,0,0,1,0,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,3,1,2,4,130.2,0,0,0,1,1,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,116.0,1,38,37,9,6,109.7,1,0,0,1,0,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,Graduate +1,18,3,9853,1,1,128.0,1,38,37,5,9,116.8,1,0,0,0,1,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,150.0,1,37,37,4,9,132.1,1,0,1,1,0,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,160.0,1,1,19,4,6,155.7,1,0,0,1,0,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,130.0,1,19,1,9,9,131.9,0,0,0,1,0,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,126.0,1,3,3,2,2,121.1,0,0,1,1,0,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,38,38,7,7,147.0,0,0,0,1,0,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,137.0,1,37,37,9,9,126.2,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,38,37,5,5,137.1,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,143.0,1,2,37,1,1,133.2,1,0,0,1,0,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,Enrolled +1,17,5,9070,1,1,122.0,1,19,38,5,7,119.6,0,0,1,0,0,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,137.0,1,19,38,9,9,127.2,1,0,0,1,0,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,110.0,1,1,1,4,4,125.9,0,0,0,1,1,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,130.0,1,1,38,5,9,118.1,0,0,1,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9853,1,1,130.0,1,37,19,9,5,102.5,0,0,0,1,0,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.0,1,19,1,9,1,122.2,0,0,0,1,0,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,39,140.0,1,3,3,2,2,140.0,1,0,0,1,0,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,134.0,1,37,38,9,9,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,1,1,37,4,7,110.0,0,0,0,1,1,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,Dropout +1,15,1,9085,1,1,133.1,41,3,3,4,2,101.3,0,0,0,1,0,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,113.0,1,1,1,5,4,106.7,1,0,1,1,0,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,Dropout +2,39,1,9991,0,19,133.1,1,37,37,5,5,111.9,1,0,0,1,1,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9853,1,1,134.0,1,19,38,4,8,122.1,1,0,0,1,0,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9853,1,1,133.0,1,19,37,4,9,130.2,1,0,0,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,127.0,1,19,19,5,5,160.0,0,0,0,1,1,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,Graduate +1,7,1,9500,1,3,130.0,1,37,38,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,140.0,1,19,38,7,7,136.5,1,0,0,1,0,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,Graduate +2,39,1,9773,1,19,133.1,1,37,37,9,6,110.0,0,0,0,0,0,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,Dropout +2,39,1,8014,0,1,120.0,1,34,34,99,99,101.8,0,0,0,0,0,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,135.0,1,1,1,4,7,129.8,1,0,0,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,131.0,1,37,38,5,5,128.9,0,0,0,1,0,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,Graduate +1,1,4,9070,1,1,139.0,1,3,19,1,5,138.3,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9500,1,1,122.0,1,1,1,3,7,114.3,1,0,0,1,1,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,150.0,1,37,37,9,7,136.5,1,0,0,1,0,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,3,1,2,8,121.4,0,0,0,1,1,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,117.0,1,19,19,194,193,117.4,1,0,0,1,0,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,Enrolled +2,39,1,9085,1,1,133.1,1,36,36,99,5,128.2,0,0,0,0,0,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,121.0,1,3,1,2,3,114.0,0,0,0,1,1,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,Enrolled +1,51,1,9853,1,1,139.0,1,1,1,4,10,134.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9070,1,1,137.0,1,1,1,3,1,141.2,1,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,133.1,1,37,37,6,3,140.0,0,0,1,1,1,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,1,9147,1,1,126.0,1,37,37,4,7,116.9,0,0,0,1,1,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,44,1,9130,1,39,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,1,9991,0,1,130.0,1,37,37,9,9,128.2,0,0,0,1,0,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,131.0,1,19,9,5,3,118.4,0,0,0,1,0,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,138.0,1,19,19,3,3,131.0,1,0,0,1,0,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,1,130.0,1,37,12,9,8,129.4,1,0,1,0,1,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,9991,0,1,134.0,1,37,37,9,9,113.7,0,0,0,1,0,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9853,1,1,117.0,1,38,38,9,7,114.6,1,0,0,1,0,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,145.0,1,3,3,4,4,153.1,1,0,0,1,0,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9085,1,1,130.0,1,19,38,4,9,130.0,1,0,0,0,0,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9119,1,1,146.0,1,37,37,9,9,148.5,1,0,0,1,1,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,136.0,1,1,1,4,4,124.1,0,0,0,1,0,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,100.0,1,37,38,9,4,140.0,0,0,0,1,1,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,Enrolled +1,44,1,9003,1,39,180.0,1,1,3,4,2,180.0,0,0,0,1,0,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,Graduate +1,15,1,9773,1,1,120.0,26,19,19,4,5,120.0,1,0,0,1,0,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,141.0,1,4,19,4,10,100.0,0,0,0,1,1,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,1,150.0,1,29,10,6,6,150.0,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,5,9254,1,1,122.0,1,1,37,9,7,119.6,1,0,0,1,0,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,128.0,1,19,38,9,7,124.2,1,0,0,1,1,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9130,1,1,172.0,1,19,19,9,9,163.3,1,0,0,1,0,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,129.0,1,38,37,5,5,142.0,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,100.0,1,1,3,9,10,120.0,0,0,1,0,1,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,Graduate +1,1,3,9238,1,1,135.0,1,1,12,9,10,121.0,1,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,136.0,1,2,2,3,3,120.0,1,0,0,1,1,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,6,9147,1,1,143.0,1,38,37,9,9,128.7,1,0,0,1,1,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9500,1,1,126.0,1,37,37,7,7,126.2,1,0,0,1,0,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,135.0,1,19,19,4,3,135.0,1,0,0,1,1,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,Enrolled +1,1,2,9254,1,1,132.0,1,1,19,9,9,129.9,1,0,0,1,0,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,120.0,1,34,34,0,0,104.0,0,0,0,1,0,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,9,133.1,1,37,37,8,10,100.0,1,0,0,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,43,1,9147,1,1,130.0,1,19,37,7,10,138.0,0,0,0,1,0,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,Graduate +1,17,2,9119,1,1,120.0,1,1,19,9,8,117.2,0,0,0,1,1,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,133.1,1,1,12,4,5,116.5,0,0,0,1,1,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,105.0,1,19,19,6,6,106.1,1,0,0,1,0,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,118.0,1,1,19,4,8,118.7,0,0,0,1,1,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,6,9500,1,1,140.0,1,3,19,3,8,129.0,1,0,0,1,0,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,168.0,1,19,19,4,4,171.2,0,0,0,1,1,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,133.0,1,19,9,0,0,121.5,1,0,0,1,0,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,177.0,1,1,38,3,9,162.3,0,0,0,1,0,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,130.0,1,38,38,2,9,124.8,0,0,0,1,0,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,136.0,1,38,1,5,6,133.9,1,0,0,1,0,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,154.0,1,1,1,5,3,144.9,0,0,0,1,1,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,Graduate +1,44,1,9119,1,39,150.0,1,19,37,9,9,150.0,1,0,1,1,1,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,Dropout +1,1,4,9254,1,1,132.0,1,12,19,9,9,124.7,1,0,0,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,33,1,1,100.0,41,38,37,9,8,100.0,0,0,1,0,1,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,120.0,1,4,1,2,9,113.4,0,0,0,1,0,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,134.0,1,1,19,9,9,136.1,1,0,0,1,0,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9500,1,1,150.0,1,1,19,5,3,140.0,0,1,0,1,0,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,129.0,1,37,37,9,9,128.8,1,0,0,1,0,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +2,39,1,9500,1,1,100.0,1,37,38,4,4,130.0,0,0,0,1,1,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,Enrolled +1,1,1,9773,1,1,140.0,1,19,37,9,6,135.8,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,40,150.0,1,19,19,9,5,150.0,0,0,1,0,0,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,148.0,1,1,37,4,8,132.0,1,0,0,1,0,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,Graduate +1,7,1,9119,1,40,140.0,1,3,1,2,5,140.0,0,0,0,1,1,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,163.0,1,19,1,9,7,143.1,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,3,9070,1,1,164.0,1,1,1,5,3,161.2,1,0,0,1,0,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,Graduate +1,1,6,9773,1,1,141.0,1,30,37,7,7,128.4,1,0,1,0,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,Dropout +1,43,2,9147,1,1,126.0,1,1,19,3,3,100.0,1,0,0,1,1,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,141.0,1,19,19,5,10,135.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,4,9670,1,1,117.0,1,3,3,4,4,113.2,0,0,0,1,1,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +2,43,1,9991,0,3,140.0,1,37,19,9,4,140.0,0,0,1,1,0,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,134.3,0,0,0,1,1,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,137.0,1,38,19,9,7,125.1,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,6,134.0,0,0,0,1,0,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,123.0,1,37,37,7,7,119.7,0,0,0,1,1,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9147,1,1,120.0,1,37,37,9,9,104.7,1,0,0,1,1,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,137.0,62,1,1,9,9,129.3,0,0,0,1,0,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,8014,0,1,122.0,1,37,19,9,9,123.8,0,0,0,1,0,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,Graduate +2,39,2,8014,0,1,100.0,1,34,34,0,0,100.0,1,0,0,1,0,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,Graduate +2,1,1,9991,0,2,120.0,1,37,37,6,3,129.2,0,0,0,1,0,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,150.0,1,3,19,2,6,150.0,0,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9991,0,1,123.0,1,1,3,4,2,113.2,0,0,0,0,1,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,Dropout +1,1,3,9773,1,1,130.0,1,1,37,4,5,120.9,1,0,1,1,0,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,146.0,1,19,3,4,9,127.0,0,0,0,1,1,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,160.0,1,19,38,9,9,160.0,1,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9085,1,39,150.0,1,38,37,6,6,150.0,1,0,0,1,0,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,136.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,150.0,1,37,19,9,4,135.6,0,0,0,1,0,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,6,171,1,1,134.0,1,19,37,5,5,126.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +4,39,1,9773,1,38,133.1,1,19,19,7,9,133.0,0,0,0,1,0,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,Enrolled +1,17,2,9119,1,1,120.0,1,10,12,9,9,120.4,1,0,0,1,1,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,4,9254,1,1,113.0,1,38,19,7,7,107.4,1,0,0,1,0,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,137.0,1,1,19,4,5,136.3,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,142.0,1,37,37,9,7,132.7,1,0,0,1,0,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,Graduate +1,18,5,9085,1,1,121.0,1,5,3,2,3,111.9,1,0,0,1,0,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,9,133.1,1,34,36,0,90,107.5,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,19,133.1,1,19,37,6,8,149.5,0,0,0,1,1,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9147,1,1,120.0,1,1,37,4,9,113.4,1,0,0,1,1,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,130.0,1,37,38,9,5,130.5,1,0,0,1,0,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,153.0,1,1,19,9,10,147.8,0,0,0,1,0,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,159.0,1,3,1,4,4,162.2,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,122.0,1,37,37,5,6,114.3,0,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,2,9556,1,19,133.1,1,37,37,3,7,117.8,0,0,0,1,0,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,132.0,1,38,1,9,9,124.3,1,0,0,1,0,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,141.0,1,19,19,9,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,Graduate +1,17,1,9500,1,1,152.0,1,19,19,4,9,132.5,0,0,0,1,1,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,Graduate +1,17,1,9991,0,40,127.0,1,37,37,6,6,124.9,0,0,0,1,0,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,133.1,1,1,19,4,6,106.0,1,0,0,1,0,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,19,37,4,7,150.0,1,0,0,1,0,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9254,1,1,125.0,1,1,1,191,193,114.5,0,0,0,1,1,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,134.0,1,19,19,4,7,131.0,1,0,0,1,1,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,134.0,1,19,19,9,9,125.8,1,0,0,1,0,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,Graduate +1,17,1,171,1,1,125.0,1,37,37,7,9,134.1,1,0,0,1,1,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,Dropout +1,51,1,9254,1,1,120.0,1,38,38,9,9,118.0,0,0,0,1,0,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,155.0,1,1,1,4,3,140.5,1,0,0,1,0,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,125.0,1,1,1,4,90,125.4,1,0,0,1,1,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,1,5,5,126.3,0,0,0,1,1,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,Graduate +1,39,1,9147,1,1,140.0,1,37,3,9,2,135.1,0,0,0,1,1,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,171,1,1,122.0,1,19,12,5,9,127.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,2,9670,1,1,150.0,1,34,34,0,0,107.0,1,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,3,130.0,1,19,19,3,9,130.0,0,0,0,0,1,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,Dropout +1,39,1,33,1,1,133.1,1,19,37,9,9,96.1,0,0,0,1,1,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,Dropout +2,42,1,9500,1,2,130.0,1,37,37,9,9,130.0,0,0,0,1,0,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,Graduate +1,18,1,9238,1,1,137.0,1,19,38,5,8,137.4,1,0,0,1,0,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9254,1,1,140.0,1,19,1,9,8,140.9,1,0,0,1,0,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,132.0,1,1,2,9,3,128.2,1,0,0,1,0,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9085,1,1,126.0,1,1,3,5,5,123.9,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,19,133.1,1,37,37,9,7,106.5,0,0,0,1,0,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,132.0,1,37,19,7,7,132.4,1,0,0,1,0,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,139.0,1,37,38,9,9,126.1,0,0,0,1,0,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,136.0,1,19,38,9,9,123.0,1,0,0,1,0,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,1,140.0,1,0,0,1,1,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,123.0,1,19,19,9,8,134.0,0,0,0,1,0,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,130.0,1,38,19,9,4,118.4,0,0,1,1,0,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,126.0,1,1,1,9,9,116.2,0,0,1,0,1,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,19,1,7,10,105.0,0,0,0,1,1,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,Dropout +1,17,1,9119,1,1,130.0,1,19,19,7,9,121.3,1,0,0,1,1,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,Dropout +1,43,1,9500,1,19,133.1,1,34,34,0,0,110.0,1,0,0,1,1,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,Dropout +1,1,3,9070,1,1,139.0,1,1,38,4,7,142.2,1,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,142.0,1,38,1,5,4,136.6,0,0,0,1,0,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,Graduate +1,17,2,9670,1,1,128.0,1,37,38,5,8,121.7,0,0,0,1,1,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,140.0,1,1,3,9,4,140.0,0,0,1,0,0,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,125.0,1,19,19,9,10,122.0,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,8014,0,1,130.0,1,37,37,9,8,103.5,0,0,0,1,0,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,3,9085,1,1,117.0,1,19,38,5,7,111.1,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,42,1,9085,1,39,140.0,1,19,3,9,1,159.9,1,0,0,1,0,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9254,1,1,112.0,1,37,37,6,6,106.1,1,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9070,1,1,117.0,1,5,1,2,10,120.0,1,0,0,1,0,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,Enrolled +1,7,1,9556,1,2,130.0,1,37,37,9,9,130.0,1,0,0,1,0,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,40,140.0,1,1,19,9,9,139.0,0,0,0,1,0,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,10,130.0,0,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,9070,1,1,135.0,1,3,1,3,5,121.8,0,0,0,1,0,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,135.0,1,19,3,9,4,121.5,1,0,0,1,0,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,136.0,1,19,38,4,8,125.5,1,0,0,1,0,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,37,4,8,132.4,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,142.0,1,34,38,4,7,127.3,0,0,0,1,0,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,15,1,9147,1,1,130.0,26,1,1,2,3,130.0,0,0,0,1,0,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,17,2,8014,0,1,133.0,1,19,1,5,5,119.7,1,0,0,1,0,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,6,133.1,1,1,1,90,3,107.0,1,0,0,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,130.0,1,1,1,4,5,123.8,0,0,0,1,0,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9670,1,1,130.0,1,38,37,5,5,123.4,1,0,0,1,0,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,130.0,1,37,36,4,90,127.6,0,0,0,1,1,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +2,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,Enrolled +1,1,5,9070,1,1,122.0,1,37,37,9,9,124.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,3,120.0,1,37,37,9,9,141.0,0,0,0,1,0,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,Dropout +1,43,1,33,1,1,134.0,1,37,37,1,1,100.0,1,0,0,1,1,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9773,1,1,125.0,1,19,37,9,5,122.2,0,0,0,0,0,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,113.4,0,0,0,1,0,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,142.0,1,19,39,5,4,141.7,0,0,0,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,137.0,1,1,38,5,8,125.8,0,0,0,0,0,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,141.0,1,1,37,4,3,126.8,1,0,0,1,0,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Graduate +1,17,4,9500,1,1,133.0,1,4,4,4,4,130.7,1,0,0,1,0,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,Graduate +1,1,2,9500,1,1,119.0,1,1,1,4,4,115.2,1,0,0,1,0,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,128.0,1,1,1,4,10,118.9,1,0,0,1,0,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,130.0,1,37,38,7,8,119.3,1,0,0,1,0,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,148.0,1,3,1,4,5,132.8,0,0,0,1,0,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,143.0,1,37,19,4,4,123.3,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9147,1,1,130.0,1,34,34,99,99,109.8,1,0,0,0,1,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9085,1,2,140.0,1,38,38,9,10,150.0,0,0,0,1,1,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9670,1,42,110.0,1,1,19,9,9,114.2,0,0,0,1,1,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,Graduate +1,53,1,9147,1,42,140.0,1,3,4,2,1,140.2,0,0,0,1,0,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,145.0,1,19,38,9,7,136.3,1,0,0,1,0,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,38,37,9,9,154.4,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,127.0,1,38,38,9,6,122.8,0,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,120.2,1,0,0,1,1,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,124.0,1,3,1,2,5,121.6,0,0,0,1,0,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Enrolled +1,17,5,9853,1,1,132.0,1,37,38,5,6,119.1,1,0,0,1,0,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,Graduate +1,17,6,9670,1,1,110.0,1,1,19,4,10,111.3,0,0,0,1,1,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,120.0,1,38,37,9,9,114.8,1,1,0,1,0,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,140.0,1,19,19,9,3,130.0,0,0,0,1,1,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9254,1,1,120.0,1,37,37,9,9,115.1,1,0,0,0,1,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,142.0,1,1,37,5,7,128.0,0,0,0,1,0,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,168.0,1,37,1,9,4,133.4,1,0,0,1,0,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,Graduate +1,43,4,9085,1,1,133.1,1,34,34,99,99,125.2,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9147,1,1,123.0,1,1,1,9,7,117.4,1,0,0,1,0,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,Graduate +1,1,6,9119,1,1,135.0,1,2,1,3,5,123.5,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,Enrolled +1,17,2,9254,1,1,118.0,22,19,37,9,9,110.3,1,0,0,0,0,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,126.0,1,1,19,4,4,116.9,0,0,0,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,117.0,1,1,38,3,9,109.3,0,0,1,0,0,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,133.1,1,37,37,9,8,113.0,0,0,0,1,0,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,Graduate +2,42,1,9991,0,6,123.0,1,37,37,9,9,123.0,0,0,0,1,1,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9003,1,1,100.0,1,37,37,9,5,110.0,0,0,0,1,0,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,127.0,1,37,38,9,5,131.2,1,0,0,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,110.0,1,37,37,9,7,112.5,1,0,0,1,0,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,126.0,1,19,37,7,5,119.4,0,0,0,1,0,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,121.0,1,1,1,4,3,120.5,1,0,0,1,0,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,134.0,1,1,1,3,3,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,3,9500,1,1,150.0,1,19,38,1,1,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,5,9119,1,1,124.0,11,4,12,2,9,119.5,1,0,0,1,1,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,117.0,1,19,1,4,7,112.1,0,0,0,1,0,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,Enrolled +1,1,5,9500,1,1,132.0,1,37,37,7,7,120.3,1,0,0,1,0,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,1,110.0,1,37,37,90,5,150.0,1,0,0,1,1,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9773,1,1,130.0,1,38,37,5,3,122.3,1,0,1,0,0,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9556,1,1,118.0,1,19,38,9,9,116.3,1,0,0,1,0,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,120.0,1,3,3,3,3,111.6,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,131.0,1,37,19,9,9,134.5,1,0,0,1,1,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Enrolled +1,17,2,9556,1,1,133.1,1,37,38,9,8,106.0,1,0,0,1,0,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,2,110.0,1,37,37,9,9,112.9,0,0,0,1,0,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,2,9773,1,1,126.0,1,19,38,9,8,118.7,1,0,0,1,0,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,140.0,1,1,1,3,3,127.6,1,0,0,1,0,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,163.0,1,19,1,5,10,146.6,1,0,1,1,0,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,39,151.0,1,19,37,4,7,151.0,0,0,1,1,0,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,165.0,1,19,37,5,5,142.3,0,0,0,1,0,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9773,1,19,133.1,1,19,1,7,9,115.0,1,0,1,0,1,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,Dropout +1,1,2,9556,1,1,130.0,1,1,38,3,8,119.5,1,0,0,1,0,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,Graduate +1,17,3,171,1,1,125.0,1,3,39,2,5,117.0,1,1,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9147,1,1,133.0,1,19,1,5,10,121.8,0,0,0,1,1,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9119,1,1,131.0,1,1,3,9,10,123.7,1,0,0,1,1,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,148.0,1,37,38,9,8,133.0,1,0,0,1,0,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9254,1,1,120.0,1,3,19,3,9,114.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9773,1,1,114.0,1,1,1,9,9,111.6,1,0,0,1,0,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,115.0,1,38,1,9,8,118.5,0,0,0,1,1,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,2,5,127.0,0,0,0,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,117.0,1,1,1,4,7,109.3,1,0,0,1,0,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,9,9,138.2,0,0,1,0,0,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,125.0,1,1,1,3,3,114.5,0,0,0,1,1,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,44,1,9147,1,39,130.0,1,19,1,9,3,130.0,0,0,0,1,0,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,145.0,1,38,19,4,9,127.9,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,128.0,1,37,37,9,8,124.3,1,0,0,1,0,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,Graduate +1,18,3,9070,1,1,138.0,1,38,37,9,7,125.1,1,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,5,9119,1,1,131.0,1,19,37,9,7,123.3,1,0,0,1,1,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,130.0,1,37,19,9,8,106.2,1,0,0,1,0,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,131.0,1,19,38,4,5,132.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9003,1,1,120.0,1,37,37,5,9,120.0,1,0,0,1,1,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,132.0,1,4,39,2,2,136.6,1,0,0,1,0,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,Enrolled +1,7,1,9500,1,40,170.0,1,1,1,9,4,170.0,0,0,0,1,0,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,Graduate +1,16,1,9003,1,1,147.0,1,1,37,4,9,140.7,1,0,1,1,0,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,125.0,1,1,1,4,8,115.6,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,150.0,1,37,37,9,6,138.5,0,0,0,1,0,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,2,9991,0,1,143.0,1,5,1,4,4,131.5,0,0,0,1,1,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,9556,1,1,133.1,6,3,3,4,4,169.2,0,0,1,0,0,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,2,9556,1,1,133.1,1,1,1,9,10,100.5,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,120.0,1,19,38,9,7,117.9,1,0,0,1,0,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,146.0,1,1,38,9,9,135.5,1,0,1,1,0,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,Enrolled +1,1,3,9254,1,1,122.0,1,19,38,3,10,114.3,1,0,0,1,0,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,9130,1,1,130.0,1,2,3,9,1,117.6,0,0,0,1,1,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,Enrolled +4,43,4,9991,0,12,133.1,1,37,37,9,9,153.0,0,0,0,0,0,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,2,9500,1,1,135.0,1,38,37,9,5,125.3,1,0,0,1,0,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,38,37,9,9,133.0,0,0,0,1,0,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,129.0,1,38,37,4,6,128.0,0,0,0,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,128.0,1,2,19,2,4,123.3,1,0,0,1,0,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,130.0,1,19,3,4,2,159.0,0,0,0,1,0,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,Graduate +2,7,1,8014,0,3,130.0,1,19,38,3,7,130.0,0,0,0,1,0,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,116.0,1,19,37,3,3,109.0,1,0,0,1,0,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,123.0,1,1,1,3,9,116.7,1,0,0,1,0,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,144.0,1,19,19,4,4,130.7,1,0,0,1,0,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,42,1,9500,1,1,100.0,1,19,37,5,7,134.3,1,0,0,1,0,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,143.0,1,1,19,4,4,129.9,0,0,0,1,0,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,19,133.1,1,19,37,7,9,137.2,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9853,1,1,123.0,1,19,19,9,7,117.4,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,144.0,1,19,19,5,5,130.3,1,0,0,1,0,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,137.0,1,1,19,4,7,126.7,1,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,4,9773,1,1,124.0,1,3,12,2,9,137.0,1,0,0,1,1,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,135.0,1,37,37,9,8,123.0,1,0,0,1,0,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,123.0,1,38,37,9,7,120.6,1,0,0,0,0,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,Dropout +2,2,1,9147,1,2,120.0,1,37,37,9,9,120.0,0,0,0,0,1,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,103.0,1,1,3,2,2,100.6,1,1,0,1,0,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,126.0,1,3,1,2,8,123.9,1,0,0,1,0,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,Enrolled +1,17,4,9500,1,1,136.0,1,3,3,2,2,132.5,1,0,0,1,0,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,114.0,1,3,29,3,5,111.9,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,125.0,1,19,1,9,9,130.6,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,147.0,1,37,38,9,5,134.8,1,0,0,1,0,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,131.0,1,1,19,9,9,130.3,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,118.0,1,3,1,2,5,110.0,1,0,0,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,130.0,1,19,19,4,10,116.8,0,0,0,1,0,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,Graduate +1,43,1,8014,0,6,133.1,1,34,34,0,0,100.0,0,0,1,1,0,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9670,1,12,170.0,1,1,37,3,5,110.0,0,0,0,1,1,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,Graduate +2,1,1,9991,0,3,160.0,1,1,3,4,9,137.3,0,0,0,1,0,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,108.0,1,19,1,5,5,107.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,121.0,1,3,3,2,2,112.3,1,0,1,0,0,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,Dropout +1,1,2,9773,1,1,138.0,1,19,1,9,3,133.5,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,136.0,1,38,38,9,9,121.7,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,132.0,1,38,37,9,7,122.0,1,0,0,1,0,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9003,1,1,125.0,1,3,3,2,2,100.0,0,0,0,1,1,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,137.0,1,1,1,1,5,131.8,0,0,0,1,0,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,140.0,1,37,37,9,9,148.0,1,0,0,0,1,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,127.0,1,3,1,3,7,137.2,1,0,0,1,0,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,150.0,1,37,19,9,9,150.0,0,0,0,1,1,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,Graduate +1,43,4,171,1,1,136.0,1,37,37,9,9,123.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,162.0,1,37,19,9,8,142.8,0,0,1,1,0,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,127.0,1,1,38,5,7,123.5,1,0,0,1,0,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,133.1,1,19,37,9,9,130.0,0,0,0,0,0,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,Graduate +1,17,2,9070,1,1,121.0,1,1,19,144,144,111.9,1,0,0,1,1,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,115.0,1,19,37,9,9,114.3,0,0,0,1,1,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,Dropout +1,10,1,9254,1,1,115.0,24,3,1,9,9,116.1,1,0,0,1,0,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,143.0,1,19,3,4,4,147.2,0,0,0,1,0,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,160.0,1,1,38,4,4,160.0,1,0,0,1,1,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,Graduate +2,1,1,9238,1,1,134.0,1,37,37,5,5,120.4,0,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,38,37,9,4,120.0,0,0,0,1,1,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Graduate +1,18,1,9119,1,1,108.0,1,1,1,4,3,105.6,1,0,0,1,1,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,137.0,1,37,37,9,9,141.0,0,0,0,1,1,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9254,1,1,113.0,1,1,2,5,3,106.7,1,0,1,1,1,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,16,1,9085,1,1,140.0,1,1,1,9,9,127.1,1,0,0,1,0,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,Graduate +1,53,1,9238,1,42,140.0,1,37,37,9,10,136.9,1,0,0,1,0,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,7,134.5,0,0,0,1,0,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,2,9773,1,1,125.0,1,19,1,4,5,122.2,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9070,1,1,134.0,1,1,19,3,3,127.7,1,0,0,0,0,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,96.0,1,38,37,6,4,96.0,1,0,0,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,Dropout +1,10,1,9085,1,1,134.0,1,37,37,5,5,134.0,1,0,0,1,0,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,143.0,1,1,3,3,3,149.0,1,0,0,1,0,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,Dropout +1,18,3,9070,1,1,142.0,1,1,37,4,7,130.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,7,1,9003,1,3,140.0,1,3,19,2,10,140.0,0,0,0,0,1,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,151.0,1,38,37,9,5,138.4,1,0,0,1,0,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,143.0,1,19,19,4,4,135.3,1,0,0,1,0,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,133.0,1,1,19,9,9,132.0,0,0,0,1,1,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,19,133.1,1,37,37,9,5,135.5,0,0,0,1,0,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9254,1,1,134.0,1,37,37,9,9,133.3,1,0,1,1,0,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,3,9085,1,1,135.0,1,3,2,4,3,121.0,1,0,0,1,0,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,140.0,1,1,1,4,4,123.5,1,0,0,1,0,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,188.0,1,3,3,2,2,178.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9238,1,1,126.0,1,30,19,0,2,121.5,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,131.0,1,3,19,5,5,127.2,1,0,0,1,0,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,Graduate +1,17,4,9853,1,1,143.0,1,37,37,9,5,127.3,1,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,111.0,1,19,38,9,9,110.7,1,0,0,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,140.0,1,19,38,9,7,125.7,1,0,0,1,1,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,6,9500,1,1,126.0,1,19,37,3,9,119.4,1,0,0,1,0,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,131.0,1,1,1,4,9,122.3,0,0,0,1,1,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,128.0,1,1,19,9,8,100.0,1,0,0,1,0,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,138.0,1,19,19,5,1,130.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,1,140.0,1,3,3,1,1,140.0,1,0,0,1,0,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,3,130.0,1,1,19,5,9,130.0,0,0,0,1,1,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,131.0,1,38,1,5,7,131.0,1,0,0,1,1,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,19,133.1,1,19,19,9,7,140.0,0,0,1,0,0,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,133.1,1,37,37,9,9,126.5,0,0,0,1,0,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9500,1,1,132.0,1,37,37,9,7,128.3,1,0,0,1,0,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,Graduate +1,16,1,171,1,1,145.0,1,3,3,3,3,155.0,1,0,0,1,0,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,Enrolled +4,1,1,9991,0,1,140.0,1,37,37,9,7,139.0,0,0,0,1,0,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9070,1,1,152.0,1,39,39,3,3,134.2,1,0,0,1,1,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,141.0,1,19,19,7,9,139.8,0,0,0,1,0,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,Graduate +1,1,4,9670,1,1,133.0,1,1,2,4,7,121.1,1,0,0,1,0,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,Graduate +1,15,1,9147,1,1,135.0,26,1,1,9,7,135.0,0,0,1,1,1,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,Enrolled +2,1,1,9991,0,1,144.0,1,19,19,9,9,151.4,0,0,0,1,0,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,18,4,9853,1,1,118.0,1,19,37,9,6,111.4,1,0,1,0,0,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9500,1,1,134.0,1,38,1,9,6,133.5,1,0,0,1,1,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,37,37,9,6,107.0,0,0,0,1,1,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,141.0,1,38,38,9,9,128.4,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,133.0,1,1,1,9,9,128.5,1,0,0,1,0,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,40,120.0,1,3,3,4,2,125.0,0,0,0,1,0,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,150.0,1,37,38,3,7,134.5,0,0,0,1,0,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,127.0,1,3,19,4,4,116.9,0,0,0,1,1,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,136.0,1,2,38,143,163,129.7,1,0,0,1,1,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,159.0,1,1,1,3,3,151.0,1,0,0,1,0,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,165.0,1,37,38,9,8,152.4,1,0,0,1,0,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,6,9500,1,1,139.0,1,1,1,4,4,124.5,1,0,0,1,0,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,134.0,1,1,1,5,3,128.4,1,0,0,1,0,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,133.0,1,2,1,3,4,136.2,1,0,0,1,0,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,120.0,1,19,1,8,7,115.1,1,0,0,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,131.0,1,1,39,5,3,122.6,1,0,0,1,0,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,8014,0,1,130.0,1,1,1,9,9,118.1,0,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,Graduate +1,39,9,9991,0,1,120.0,1,38,38,9,5,144.8,0,0,0,1,1,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9500,1,19,133.1,1,37,37,9,9,129.0,1,0,0,1,0,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,138.0,1,1,19,4,7,123.0,1,0,1,0,0,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,143.0,1,1,37,9,9,135.0,1,0,0,1,0,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,120.0,1,19,1,9,3,120.0,1,0,0,1,1,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,162.0,1,37,1,9,9,165.2,1,0,0,1,0,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,142.0,1,37,37,5,5,131.3,1,0,0,1,0,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,Graduate +1,1,3,171,1,1,125.0,1,38,37,4,9,115.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,120.0,1,38,37,5,3,110.5,0,0,0,1,0,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,Graduate +1,42,1,9773,1,6,120.0,1,34,34,0,0,122.0,1,0,0,1,0,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,162.0,1,1,38,4,5,138.6,1,0,0,1,0,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,152.0,1,1,1,4,4,141.0,1,0,0,1,0,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,139.0,1,3,19,3,5,120.8,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,135.0,1,1,1,3,5,130.1,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9670,1,1,127.0,1,3,3,1,1,121.4,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,135.0,1,1,1,1,1,131.5,0,0,0,1,1,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,Enrolled +1,17,3,9670,1,1,147.0,1,37,37,8,8,128.8,0,0,1,1,0,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,133.1,41,38,38,9,8,134.8,0,0,0,1,0,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,90,8,128.2,0,0,0,1,0,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,131.0,1,1,37,4,4,126.1,1,0,0,1,0,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,9,9,125.3,1,0,0,1,1,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,Dropout +2,39,1,8014,0,3,110.0,1,37,37,9,9,160.5,0,0,0,1,0,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,138.0,1,38,1,9,4,127.5,1,0,0,1,0,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,Enrolled +1,39,1,9238,1,1,170.0,1,38,19,9,9,140.0,1,0,0,1,0,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,1,19,4,10,142.3,1,0,0,1,0,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,154.0,1,38,37,9,9,140.4,0,0,0,1,0,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,133.1,41,19,1,9,9,105.0,1,0,0,0,0,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +2,44,1,9085,1,39,160.0,1,37,37,192,192,160.0,0,0,0,1,0,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,141.0,1,38,38,9,9,142.3,1,0,0,1,0,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,119.0,1,37,37,7,7,112.0,1,0,0,0,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,137.0,1,37,37,9,9,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,Graduate +4,39,1,9670,1,1,100.0,1,37,37,4,10,120.0,0,0,1,1,0,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,130.0,1,3,3,2,2,131.1,0,0,0,1,1,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,120.0,1,1,19,9,3,116.9,1,0,1,0,1,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,42,1,9500,1,1,100.0,1,1,19,4,8,136.0,1,0,0,1,0,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,Graduate +1,1,2,171,1,1,125.0,1,38,19,9,9,117.3,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,152.0,1,1,38,4,9,160.4,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,12,133.1,1,37,37,9,7,139.4,0,0,1,1,0,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,150.0,1,1,1,4,8,131.5,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,7,1,9556,1,4,190.0,1,5,5,2,2,190.0,1,0,0,1,1,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,Dropout +1,17,3,9238,1,1,121.0,1,1,1,4,5,117.2,0,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,130.0,1,37,37,9,7,113.0,1,0,0,0,1,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,123.0,1,19,19,4,10,124.4,1,0,0,1,0,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,Graduate +1,17,2,9238,1,1,133.0,1,37,37,3,9,119.7,0,1,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,138.0,1,38,19,9,10,133.1,0,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,108.0,1,38,38,7,7,105.2,1,0,0,1,1,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,Dropout +1,1,3,171,1,1,115.0,1,9,1,6,6,108.7,1,0,0,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,4,4,119.8,1,0,0,1,0,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9119,1,1,126.0,1,19,19,7,3,116.6,1,0,0,1,1,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,Graduate +2,39,1,9500,1,1,133.1,1,37,37,9,9,130.1,0,0,0,0,1,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,124.0,1,37,38,9,3,114.2,0,0,0,1,0,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,3,9147,1,1,137.0,1,1,1,4,7,124.4,1,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9130,1,19,133.1,1,37,37,9,10,156.4,1,0,1,1,1,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,5,9853,1,1,121.0,1,38,19,7,7,117.5,1,0,1,0,0,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,2,9238,1,1,117.0,1,19,1,9,8,110.0,1,0,1,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9147,1,1,148.0,1,1,19,9,6,118.4,1,0,0,1,1,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,133.0,1,1,1,4,4,100.0,0,0,0,1,0,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,17,1,9238,1,1,158.0,1,1,1,5,6,140.5,0,0,0,1,0,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,157.0,1,19,38,9,7,146.2,1,0,0,1,0,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,131.0,1,3,1,4,1,135.9,0,0,0,1,1,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,38,37,5,10,117.8,1,0,0,1,1,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,Graduate +1,1,2,9119,1,1,126.0,1,1,38,141,192,122.5,1,0,0,1,1,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,117.0,1,37,37,0,4,120.5,1,0,0,1,1,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9254,1,1,110.0,1,12,19,9,9,125.0,0,0,0,0,1,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,Dropout +1,18,1,9147,1,1,121.0,1,19,3,5,5,115.8,1,0,0,1,0,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,139.0,0,0,1,0,1,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9003,1,3,130.0,1,3,3,6,2,130.0,1,0,0,1,1,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,132.0,1,19,37,3,5,125.4,1,0,0,0,0,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,38,38,4,7,115.6,1,0,0,0,0,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,129.0,1,1,2,3,1,125.9,1,0,0,1,0,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,9,9,143.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,126.0,1,3,19,3,3,115.2,0,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,123.0,1,19,38,9,10,116.7,1,0,0,1,0,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,Graduate +1,17,2,9254,1,1,125.0,1,37,37,9,8,122.6,1,0,1,0,0,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9119,1,1,160.0,1,38,37,7,7,129.0,0,0,0,1,1,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,3,19,2,3,133.8,1,0,0,1,0,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,120.0,1,19,19,4,7,115.5,1,0,1,1,1,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,120.0,1,38,38,3,3,140.0,0,0,0,1,0,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9238,1,1,127.0,1,1,19,4,3,141.7,1,0,0,1,1,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,111.0,1,37,37,9,10,95.8,1,0,0,0,1,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,130.0,1,38,1,9,4,140.0,1,0,0,1,0,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,Graduate +1,1,2,9147,1,1,131.0,1,1,1,9,9,118.8,0,0,0,1,1,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,161.0,1,1,19,4,4,152.3,0,0,0,1,0,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,124.0,1,38,38,9,9,115.6,0,0,0,1,1,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,160.0,1,3,3,1,2,149.2,0,0,0,1,1,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,16,3,9853,1,1,134.0,1,19,37,9,9,121.1,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,Enrolled +1,43,2,9991,0,1,140.0,1,37,37,5,5,124.3,1,0,0,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,127.0,1,38,37,5,7,123.9,1,0,0,1,0,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,120.0,1,19,37,6,8,160.0,0,0,0,1,1,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,1,133.1,1,3,3,4,2,144.9,1,0,0,1,0,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,130.0,1,1,19,3,10,130.0,1,0,0,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,Graduate +1,42,1,9003,1,1,130.0,1,3,2,2,6,105.3,0,0,0,0,1,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9991,0,1,130.0,1,37,37,9,9,127.6,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,100.0,1,1,38,4,6,104.8,0,0,1,0,0,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,Dropout +1,1,5,9070,1,1,125.0,1,3,3,2,2,140.8,1,0,0,1,1,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,133.1,1,34,38,0,4,147.0,0,0,0,1,0,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,126.0,1,34,34,0,0,142.4,0,0,0,1,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,121.0,1,19,38,4,10,114.4,0,0,0,1,0,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,133.1,1,37,37,5,0,111.5,0,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,130.0,1,1,19,5,5,129.1,1,0,0,1,0,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,3,1,4,6,130.0,0,0,0,1,1,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,1,123.0,1,19,1,1,1,140.8,0,0,0,1,0,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,130.0,1,1,1,4,10,130.0,1,0,0,1,0,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,Graduate +4,39,1,9085,1,1,133.1,1,34,34,0,0,128.2,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,128.0,1,37,37,9,9,135.7,1,0,0,1,1,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,135.0,1,38,38,4,7,121.7,1,0,0,1,0,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9085,1,1,110.0,25,38,38,9,6,117.2,1,0,0,1,1,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,Graduate +1,43,3,9500,1,1,140.0,1,1,19,9,7,127.5,1,0,1,1,0,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,Graduate +1,17,3,9238,1,1,133.1,1,41,1,2,3,117.0,1,0,0,1,0,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,1,112.0,1,37,37,9,9,108.5,0,0,0,1,1,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,51,1,9238,1,39,140.0,1,38,38,5,7,129.1,1,0,0,1,0,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,122.0,1,38,19,9,9,126.6,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,123.0,1,1,1,4,4,114.4,0,0,0,1,1,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,Dropout +1,18,4,171,1,1,133.0,1,1,4,9,5,129.2,1,0,1,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,128.0,1,19,19,9,5,121.7,1,0,0,1,0,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,Graduate +1,39,1,9130,1,1,150.0,1,19,19,9,5,160.0,1,0,0,1,1,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,160.0,1,19,37,5,3,152.0,0,0,0,1,0,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,53,1,9085,1,42,140.0,1,19,37,9,8,142.5,1,0,0,1,0,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,130.0,1,9,19,4,1,134.2,1,0,0,1,0,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,3,9254,1,1,121.0,1,19,19,9,6,125.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,128.0,1,19,1,9,10,157.4,1,0,0,1,0,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,146.0,1,37,37,9,7,149.2,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9853,1,12,133.1,1,37,37,7,8,103.0,0,0,0,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,143.0,1,19,19,5,6,142.3,0,0,0,1,0,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,Enrolled +1,1,2,9085,1,1,118.0,1,1,19,3,3,112.4,1,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,Enrolled +2,43,1,9991,0,1,100.0,1,37,37,9,9,128.2,0,0,0,1,1,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,118.0,1,38,38,5,5,110.0,0,0,0,1,0,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9147,1,1,136.0,1,38,38,9,9,127.3,1,0,0,1,1,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,170.0,1,19,19,8,8,176.7,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,124.0,41,19,38,9,9,123.3,1,0,0,1,0,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9070,1,1,170.0,1,3,3,2,2,165.8,1,0,0,1,1,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,3,37,9,9,142.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9147,1,1,122.0,1,1,38,4,5,116.4,0,0,0,1,1,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,150.0,1,1,1,4,4,138.1,1,0,0,1,0,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,Enrolled +1,17,6,9238,1,1,138.0,1,3,3,1,2,123.0,1,0,0,1,0,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,135.0,1,19,12,9,7,137.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9070,1,1,125.0,1,1,3,3,3,128.9,0,0,0,1,0,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,128.0,1,38,19,9,10,125.2,1,0,0,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Enrolled +1,42,1,9003,1,1,140.0,1,1,3,4,2,140.0,1,0,0,1,1,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,Enrolled +1,39,1,9500,1,19,133.1,1,37,38,151,161,143.7,0,0,0,1,0,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,118.0,1,38,38,7,7,115.2,1,0,0,1,0,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,152.0,1,19,37,9,8,135.6,1,0,0,1,1,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,12,110.0,1,34,34,0,0,157.8,0,0,0,1,0,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,Graduate +1,1,6,9147,1,1,112.0,1,38,38,9,9,117.3,1,0,0,1,0,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,Graduate +1,17,3,9147,1,1,118.0,1,1,19,5,7,118.0,0,0,0,1,0,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,Enrolled +1,44,1,9070,1,39,120.0,1,1,19,5,8,119.8,0,0,0,1,1,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9670,1,1,133.1,1,19,19,3,9,118.0,0,0,0,1,1,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,159.0,1,1,19,9,9,151.3,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,118.0,1,1,38,5,7,120.8,1,0,0,1,0,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,132.0,1,1,37,8,9,128.0,1,0,0,1,0,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,Graduate +1,42,1,9147,1,1,135.0,1,19,1,4,4,120.0,0,0,0,0,1,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9670,1,1,122.0,1,1,38,3,3,114.3,1,0,0,1,0,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,171,1,1,131.0,1,1,1,0,3,149.9,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +4,39,2,9556,1,1,133.1,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,5,9119,1,1,126.0,1,12,19,4,5,122.5,1,0,0,1,1,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,145.0,1,2,38,3,8,136.3,1,0,0,1,0,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,Enrolled +1,15,1,9147,1,1,150.0,1,38,1,9,1,150.0,0,0,0,1,1,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,150.0,1,3,39,3,7,126.4,0,0,0,1,1,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,Enrolled +1,17,2,9773,1,1,148.0,1,3,38,2,6,144.2,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,124.0,1,37,19,9,3,116.3,1,0,0,1,0,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +2,39,1,9003,1,1,130.0,1,1,37,9,1,122.0,0,0,1,0,1,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,160.0,1,19,38,5,7,139.0,1,0,0,1,0,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,157.0,1,3,2,3,6,150.9,1,0,0,1,0,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,Dropout +1,42,1,9119,1,1,120.0,1,1,1,5,7,108.6,0,0,0,0,1,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9773,1,1,138.0,1,37,38,4,9,134.2,1,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,110.0,1,0,0,1,0,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,Dropout +4,39,1,9853,1,1,143.0,1,37,1,9,10,140.0,0,0,1,0,0,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,130.0,1,3,19,4,8,133.0,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,19,38,6,7,140.0,1,0,0,1,1,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,132.0,1,2,2,6,6,128.5,0,0,0,1,0,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,Dropout +1,1,2,171,1,1,135.0,1,19,19,4,7,149.0,1,0,0,1,1,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,130.0,1,19,38,3,9,126.5,1,0,0,1,0,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,125.0,1,19,38,9,8,121.5,0,0,0,1,0,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,7,129.0,0,0,0,1,0,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,Dropout +1,7,3,9130,1,3,130.0,1,37,26,90,10,130.0,0,0,0,0,1,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,123.0,1,19,19,7,7,120.8,1,0,0,1,0,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,Graduate +1,18,2,9853,1,1,168.0,1,1,19,3,9,126.8,1,0,0,1,1,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9085,1,39,140.0,1,3,1,4,3,140.0,1,0,0,1,0,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,148.0,1,19,19,9,9,138.7,0,0,0,1,0,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,Graduate +1,18,1,171,1,1,110.0,1,19,2,5,5,117.7,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9070,1,1,136.0,1,37,38,9,9,125.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +2,39,1,8014,0,1,133.1,1,37,37,5,4,134.5,0,0,0,1,0,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,Enrolled +1,42,1,9119,1,1,150.0,1,38,37,5,8,133.5,1,0,0,1,1,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,140.0,1,1,3,4,6,139.2,0,0,1,1,0,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,125.0,1,19,19,5,5,117.0,0,0,0,1,0,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,Graduate +1,39,1,9147,1,12,133.1,1,19,37,7,9,118.2,0,0,0,1,0,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,2,9147,1,1,121.0,1,1,19,9,9,113.7,1,0,0,0,0,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,131.0,1,3,19,2,3,132.8,1,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,136.0,1,37,38,4,5,126.0,1,0,0,1,0,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,Graduate +1,1,1,9853,1,1,145.0,1,37,37,9,5,146.8,0,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,123.0,1,1,1,4,9,116.7,1,0,0,1,1,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,Dropout +1,18,1,171,1,1,121.0,1,1,1,4,3,116.8,1,0,0,1,0,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,141.0,1,38,1,9,4,129.0,1,0,0,1,0,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,133.1,1,34,34,0,0,130.0,0,0,0,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,126.0,1,1,3,4,3,122.5,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,Dropout +2,1,1,9254,1,1,136.0,1,37,37,9,9,122.7,0,0,0,1,0,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,37,37,9,10,100.0,0,0,0,1,1,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9500,1,1,133.1,1,38,19,7,9,115.5,1,0,0,1,1,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9991,0,1,131.0,1,19,37,9,9,118.4,1,0,0,1,0,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,153.0,1,1,38,4,3,146.7,0,0,0,1,0,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,Graduate +1,43,1,8014,0,12,114.0,1,34,34,0,99,110.0,0,0,0,1,0,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,147.0,1,1,1,5,5,134.9,0,1,0,1,0,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,Graduate +1,1,2,9085,1,1,156.0,1,40,40,3,7,150.9,1,0,0,1,0,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,137.0,1,38,38,5,7,122.7,1,0,0,1,0,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,123.0,1,1,19,4,5,117.8,0,0,0,1,1,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9238,1,1,135.0,1,37,37,8,6,127.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,131.0,1,37,37,9,9,123.0,1,0,0,1,0,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9670,1,1,123.0,1,3,1,3,1,116.7,0,0,0,1,0,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,9085,1,40,140.0,1,1,19,5,5,140.0,1,0,0,1,0,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,Graduate +4,39,1,9500,1,19,133.1,1,38,19,5,7,140.0,0,0,0,1,0,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,127.0,1,3,19,3,9,127.0,1,0,0,1,1,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,Graduate +1,17,2,8014,0,1,120.0,1,19,1,5,10,114.8,1,0,0,1,0,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9670,1,19,133.1,1,37,37,9,7,130.0,0,0,1,1,1,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,171,1,1,131.0,41,19,1,4,7,131.4,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,16,2,171,1,1,145.0,1,3,3,2,2,143.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,120.0,1,19,38,6,6,120.0,1,0,0,1,1,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,6,9238,1,1,131.0,1,1,3,4,2,131.7,1,0,0,1,0,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,137.0,1,3,1,4,9,128.6,0,0,0,1,0,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,170.0,1,19,19,9,7,170.0,1,0,1,1,1,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9853,1,1,122.0,1,38,37,9,9,118.9,1,0,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,5,9500,1,1,148.0,1,1,19,4,8,130.2,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9003,1,19,133.1,1,1,19,9,8,120.0,0,0,1,0,1,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,2,9147,1,1,143.0,1,19,38,9,7,132.2,1,0,0,1,0,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9556,1,1,132.0,1,38,37,7,7,119.0,1,0,0,1,0,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,133.1,1,3,1,4,4,95.0,0,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,154.0,1,3,1,2,1,137.2,0,0,0,1,1,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,Enrolled +1,1,1,9853,1,1,129.0,1,38,37,6,6,138.1,0,0,0,1,0,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,17,2,9670,1,1,129.0,1,1,19,5,5,119.2,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,43,1,9500,1,1,137.0,1,3,3,2,2,115.0,0,0,0,1,0,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,Graduate +1,17,2,9254,1,1,115.0,1,19,19,9,7,113.3,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,133.0,1,38,38,7,7,125.3,1,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,10,150.0,0,0,0,0,0,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,19,133.1,1,19,19,144,141,131.5,0,0,1,1,0,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,133.0,1,38,1,2,4,126.0,0,0,0,1,0,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,15,1,9147,1,1,133.1,41,41,1,3,4,100.0,0,0,1,0,1,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,Dropout +1,10,2,9773,1,1,154.4,22,19,38,3,5,154.4,1,0,0,0,0,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9070,1,39,100.0,1,1,1,4,4,106.0,0,0,0,1,1,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,135.0,1,38,19,8,8,126.3,1,0,1,1,0,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,120.0,41,1,1,9,6,114.8,1,0,0,1,0,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,Enrolled +1,17,1,9085,1,1,124.0,1,19,38,7,7,113.9,1,0,0,1,0,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,Graduate +1,1,6,9254,1,1,126.0,1,38,37,5,7,123.9,1,0,0,1,0,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,125.0,1,37,37,9,9,121.5,1,0,0,1,1,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,6,9773,1,1,125.0,1,1,1,5,4,122.2,0,0,0,1,1,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,135.0,1,19,19,4,5,126.8,1,0,0,1,1,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9238,1,1,133.0,1,1,37,7,9,127.4,1,0,0,1,0,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,3,9070,1,1,127.0,1,19,38,5,7,141.0,1,0,0,1,1,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,3,120.0,1,37,37,4,7,122.5,0,0,0,0,0,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,2,9147,1,1,150.0,1,19,37,9,7,101.0,0,0,1,0,0,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,4,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,Graduate +1,17,5,9500,1,1,143.0,1,38,1,9,7,130.6,1,0,0,1,0,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,129.0,1,38,19,5,7,124.0,1,0,0,1,0,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,Graduate +1,17,2,9500,1,1,140.0,1,1,1,5,10,128.5,1,0,0,1,0,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,Enrolled +4,39,1,8014,0,19,100.0,1,1,37,9,1,111.5,0,0,0,1,1,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,Dropout +2,39,2,9556,1,1,110.0,1,19,38,9,9,112.8,0,0,0,1,0,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,116.0,1,19,19,5,8,127.9,0,0,1,0,0,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,Dropout +1,43,4,171,1,1,117.0,1,19,12,9,10,109.3,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,130.0,1,1,38,5,5,122.3,1,0,0,1,0,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,Graduate +1,15,1,9119,1,1,130.0,26,38,3,9,2,137.0,1,0,0,1,1,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,Enrolled +1,39,1,9556,1,1,133.1,1,38,19,9,6,100.0,1,0,0,1,0,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,150.0,1,3,1,3,9,154.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9147,1,1,131.0,1,3,19,2,9,126.1,0,0,0,1,0,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,1,6,9773,1,1,145.0,1,1,19,4,4,131.0,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,136.0,1,19,38,4,7,140.9,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,155.0,1,19,37,4,5,117.5,0,0,0,1,0,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9147,1,1,128.0,1,3,3,5,10,116.5,0,0,0,1,1,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,4,9254,1,1,133.0,1,37,37,5,8,128.5,1,0,0,1,0,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9119,1,1,141.0,1,37,1,9,2,133.0,1,0,0,1,1,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,Enrolled +1,51,1,8014,0,1,120.0,1,1,1,4,4,128.5,0,0,1,0,1,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,Dropout +1,43,1,9003,1,1,120.0,1,3,3,1,2,115.0,0,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,136.0,1,19,19,4,7,136.0,0,0,0,1,0,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,Graduate +1,17,1,9070,1,1,116.0,1,38,38,9,9,123.7,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,125.0,1,19,19,4,8,117.0,1,0,0,1,0,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,135.0,1,1,38,5,7,137.5,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,140.0,1,19,19,7,7,124.6,1,0,0,1,0,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,Enrolled +1,39,1,9670,1,19,133.1,1,1,1,4,7,100.0,0,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,122.0,1,37,37,9,9,131.0,1,0,0,1,0,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,Dropout +2,43,1,9773,1,1,160.0,1,37,37,5,0,160.0,0,0,1,0,1,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9670,1,1,113.0,1,37,19,9,9,110.2,1,0,0,1,0,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,125.0,1,37,37,9,9,126.0,1,0,1,1,0,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,Graduate +1,43,1,171,1,39,140.0,1,38,37,9,7,140.0,0,0,0,0,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9853,1,1,134.0,1,37,19,9,5,121.4,1,0,0,1,0,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,8014,0,1,120.0,1,1,37,7,3,122.8,0,0,0,1,0,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,1,1,4,2,127.7,0,0,0,1,0,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,Enrolled +2,39,1,9991,0,1,120.0,1,19,37,3,9,132.9,0,0,0,1,1,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,138.0,1,1,38,4,9,132.5,1,0,0,1,0,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,133.1,1,19,37,7,7,126.0,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9500,1,1,110.0,1,38,38,9,9,110.0,0,0,0,0,0,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,Dropout +5,7,1,9500,1,40,150.0,1,37,37,4,9,150.0,0,0,0,1,0,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,Graduate +1,17,1,9070,1,1,126.0,1,19,38,9,7,118.7,0,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,16,4,9254,1,1,126.0,1,38,37,9,7,118.7,1,0,0,1,0,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9773,1,1,110.0,1,19,19,5,5,105.5,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,9,133.1,1,34,34,0,0,118.0,0,0,0,1,0,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,140.0,1,3,2,4,6,133.4,1,0,0,0,1,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,Enrolled +1,1,1,171,1,1,134.0,1,3,2,2,2,141.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9773,1,1,133.1,1,1,1,90,90,129.6,0,0,0,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,133.1,1,38,19,5,6,138.0,0,0,1,1,1,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,Enrolled +1,17,3,9500,1,1,156.0,1,19,37,4,9,132.3,1,0,0,1,1,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,Graduate +1,44,1,9085,1,39,140.0,1,3,3,4,2,140.0,1,0,0,1,0,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,Graduate +1,43,1,171,1,1,116.0,1,3,1,2,3,117.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,141.0,1,38,19,9,6,126.3,1,0,0,1,0,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,44,1,9238,1,39,140.0,1,1,19,191,102,143.0,0,0,0,1,0,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,Graduate +1,43,5,8014,0,1,110.0,1,34,34,0,0,110.0,0,0,0,1,1,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9238,1,1,143.0,1,1,11,4,3,128.0,1,0,0,1,0,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +3,17,1,9238,1,1,138.0,1,37,37,9,9,133.5,1,0,0,1,0,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,Enrolled +1,7,1,9119,1,3,150.0,1,3,2,2,2,150.0,0,0,0,1,0,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,150.0,1,19,1,1,1,150.0,0,0,0,1,1,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,Enrolled +1,17,1,9085,1,1,134.0,1,19,37,2,7,131.2,0,0,0,1,0,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,171,1,1,133.1,1,37,37,9,7,100.0,0,0,1,1,1,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,1,9556,1,1,133.1,1,3,19,2,8,106.0,1,0,0,1,1,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,Graduate +1,17,2,9500,1,1,135.0,1,19,19,9,4,129.8,1,0,0,1,0,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,Graduate +1,39,1,33,1,1,130.0,1,38,37,9,6,102.5,0,0,1,0,1,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,Dropout +1,18,1,9500,1,1,144.0,1,37,37,6,6,127.5,1,0,0,1,0,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,130.0,1,37,38,9,9,133.9,1,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,44,1,9003,1,39,140.0,1,37,37,4,7,140.0,0,0,0,1,1,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,Dropout +1,1,4,9773,1,1,137.0,1,3,19,2,3,139.8,1,1,0,1,0,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,1,9991,0,1,130.0,1,2,37,3,9,131.4,0,0,0,1,1,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,135.0,1,3,3,1,1,125.8,1,0,0,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Graduate +1,18,1,9238,1,1,147.0,1,38,34,4,0,130.2,0,0,0,1,0,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +5,17,5,9500,1,1,143.0,1,37,38,5,8,133.5,1,0,0,1,0,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,99.0,1,1,3,5,10,100.0,1,0,0,1,1,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,Graduate +1,16,2,9147,1,1,131.0,1,37,37,9,9,135.9,1,0,0,1,1,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,146.0,1,38,37,6,6,143.9,0,0,0,1,0,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9085,1,1,139.0,1,38,38,5,3,136.2,0,0,0,1,0,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,153.0,1,3,1,2,8,137.6,1,0,0,1,0,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,2,9085,1,1,133.1,1,19,38,9,1,100.0,1,0,1,0,1,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,2,9773,1,1,121.0,1,19,19,9,9,122.8,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,141.0,1,37,38,9,10,138.9,0,0,0,1,0,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,6,9500,1,1,117.0,1,4,12,5,9,119.8,1,0,0,1,0,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,Graduate +1,17,4,9119,1,1,122.0,62,1,1,191,171,121.0,1,0,0,1,1,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,38,19,3,3,98.6,0,0,0,1,0,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,140.0,1,38,37,5,6,124.3,1,0,0,1,0,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,140.0,1,37,37,9,9,127.7,1,0,0,1,0,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,121.0,1,37,37,9,9,124.2,1,0,0,1,0,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,Graduate +1,18,1,9130,1,1,146.0,1,3,3,5,2,137.8,0,0,0,1,1,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,3,120.0,1,1,1,7,10,120.0,1,0,0,0,1,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,120.0,1,37,37,7,8,120.0,1,0,1,0,0,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,178.0,1,19,1,4,8,174.7,0,0,0,1,0,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,Graduate +1,17,5,9254,1,1,114.0,1,38,1,5,9,109.5,0,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,143.0,1,38,38,9,9,140.0,0,0,0,1,1,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,160.0,1,38,37,9,5,159.3,0,0,0,1,0,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,143.0,1,38,34,9,9,133.6,1,0,0,1,0,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,Graduate +4,43,1,9500,1,19,100.0,1,34,34,0,0,110.0,0,0,0,1,1,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,125.0,1,1,19,4,1,121.5,1,0,0,1,1,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,19,7,3,120.0,1,0,0,1,1,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,3,120.0,1,19,1,9,5,134.0,0,0,0,1,0,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,Dropout +1,39,1,9254,1,1,160.0,1,19,37,7,10,100.0,0,0,0,1,1,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,Enrolled +1,15,1,171,1,1,130.0,26,1,1,2,9,130.0,0,0,0,1,1,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,140.0,1,19,37,5,6,137.9,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,123.0,1,19,37,9,9,124.1,1,0,0,1,0,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,140.0,1,38,38,6,6,140.0,0,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,9,133.1,1,34,34,0,0,118.4,0,0,0,0,0,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,6,9254,1,1,125.0,1,1,1,4,3,120.5,1,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,6,171,1,1,126.0,1,10,10,4,4,130.2,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,120.0,1,1,19,4,7,120.0,0,0,0,1,1,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,Enrolled +1,17,5,9773,1,1,143.0,1,1,1,7,7,136.7,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,42,1,9147,1,1,130.0,1,37,38,9,1,130.0,1,0,0,1,0,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,1,130.0,1,37,37,9,9,124.0,0,0,0,1,1,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,Graduate +1,17,2,9238,1,1,136.0,1,1,3,3,4,126.6,1,0,0,1,0,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,127.0,1,19,1,5,7,118.3,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,Enrolled +4,39,1,9991,0,1,147.0,1,19,19,7,8,147.9,0,0,0,1,0,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,124.0,1,19,37,99,90,124.0,0,0,0,0,0,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +2,43,1,9003,1,1,133.1,1,37,37,9,7,136.0,0,0,0,1,1,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,1,9085,1,1,140.0,1,12,1,1,90,141.8,0,0,0,1,0,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,133.1,1,37,37,191,154,95.0,0,0,0,1,0,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,147.0,1,2,3,4,8,145.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9238,1,3,130.0,1,37,19,4,5,130.0,0,0,0,1,0,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,Graduate +1,7,2,9085,1,3,130.0,1,3,3,1,1,130.0,0,0,0,0,0,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,Dropout +2,39,2,9147,1,3,130.0,1,3,37,9,9,103.4,0,0,0,1,0,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,Dropout +1,17,1,9085,1,1,135.0,1,1,19,4,10,125.6,1,0,0,1,0,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,1,1,5,5,96.0,1,0,0,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +5,39,1,9853,1,19,133.1,1,38,1,5,3,105.5,0,0,1,1,0,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,136.0,1,37,37,7,7,121.7,1,0,0,1,0,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9119,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,1,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,19,133.1,1,19,19,4,4,100.0,0,0,0,1,1,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,124.0,1,2,2,3,2,118.4,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9085,1,1,120.0,1,2,3,2,2,116.1,0,0,0,1,0,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,162.0,1,37,37,9,9,142.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,131.0,1,37,1,9,9,135.9,1,0,0,1,0,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,7,100.0,0,0,0,1,1,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,Graduate +1,43,1,9500,1,1,127.0,1,19,19,4,7,121.1,0,0,0,1,0,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,143.0,1,37,37,9,5,131.6,1,0,0,1,0,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,Graduate +1,17,4,9085,1,1,140.0,1,19,37,4,7,123.7,0,0,0,1,0,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,156.0,1,19,1,5,10,136.8,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Dropout +2,39,1,9853,1,10,133.1,1,37,34,0,0,115.5,0,0,0,1,0,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,Dropout +1,1,3,9119,1,1,113.0,1,4,38,2,7,107.4,1,0,0,1,1,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,Graduate +2,39,1,9670,1,1,130.0,1,37,37,9,0,158.0,0,0,1,0,0,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,Dropout +1,43,1,9853,1,1,110.0,1,37,37,9,9,107.7,0,0,1,0,0,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,124.0,1,2,2,3,3,124.7,1,0,0,1,1,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,127.0,1,37,37,5,10,125.3,0,0,0,1,1,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Graduate +1,16,1,9500,1,1,133.1,1,37,37,9,9,95.0,1,0,0,1,0,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,4,9238,1,1,127.0,1,19,19,4,0,127.4,1,0,0,1,0,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,113.0,1,38,38,3,7,112.3,0,0,0,1,0,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,110.0,1,19,37,9,99,106.1,1,1,1,0,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,141.0,1,1,38,4,8,136.8,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,133.1,1,37,37,9,7,140.0,0,0,0,1,0,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,124.0,1,1,1,4,4,118.8,0,0,0,1,1,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,4,120.0,1,2,3,2,2,120.0,0,0,0,1,0,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,110.0,1,3,3,4,10,115.6,1,0,0,1,1,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,118.0,1,1,19,4,10,110.7,1,1,0,1,0,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +4,39,1,9238,1,1,130.0,1,19,3,9,2,140.0,0,0,0,1,1,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,1,140.0,1,1,19,3,9,140.0,1,0,1,0,0,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,3,9773,1,1,123.0,1,1,19,5,5,117.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,115.0,1,38,38,8,7,112.9,1,0,0,1,0,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,1,6,9147,1,1,142.0,1,38,37,7,7,134.3,0,1,0,1,1,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9085,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,0,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,129.0,1,19,1,3,7,121.0,0,0,0,1,0,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,156.0,1,3,3,123,122,155.0,0,0,0,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,136.0,1,37,37,9,9,126.3,1,0,0,1,0,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,Graduate +2,43,1,9991,0,1,110.0,1,37,37,9,9,132.5,0,0,0,1,1,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,19,133.1,1,37,1,5,5,138.3,0,0,0,1,1,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,Dropout +1,1,2,9130,1,1,140.0,1,19,37,9,9,129.5,1,0,0,1,0,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,Enrolled +1,7,1,9500,1,3,140.0,1,37,37,4,4,140.0,0,0,0,1,0,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,Graduate +4,42,1,9147,1,1,110.0,1,37,37,9,9,128.2,0,0,0,1,0,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,Graduate +1,39,1,9119,1,19,133.1,1,1,1,4,3,134.4,0,0,1,0,1,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,136.0,1,37,1,5,4,120.8,1,0,0,1,0,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,Graduate +1,17,2,9500,1,1,140.0,1,37,37,9,9,132.5,1,0,0,1,0,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,Graduate +1,17,6,9147,1,1,130.0,1,37,37,9,9,110.4,1,0,0,1,1,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,4,5,105.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,136.0,1,19,19,4,3,126.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,116.0,1,38,2,9,2,112.2,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9238,1,1,122.0,1,19,3,5,2,112.6,0,0,1,1,0,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9147,1,1,118.0,1,1,38,9,9,118.4,1,0,0,1,1,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,Enrolled +1,17,1,9130,1,1,117.0,1,19,19,4,4,113.5,1,0,0,1,0,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,117.0,1,19,19,9,9,111.8,1,0,0,1,1,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,Dropout +1,1,6,9500,1,1,118.0,1,38,19,3,3,113.5,1,0,0,1,1,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +2,43,2,9853,1,1,130.0,1,38,31,4,1,124.2,0,0,0,1,0,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,128.0,1,38,38,9,7,124.5,1,0,0,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,8,108.7,1,0,0,1,1,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9254,1,19,133.1,1,37,19,9,10,156.5,0,0,0,1,1,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,Graduate +1,39,1,9003,1,1,160.0,1,1,37,191,193,140.0,0,0,0,1,1,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,10,150.0,0,0,0,1,1,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,Graduate +1,18,2,9070,1,1,122.0,1,38,19,5,5,119.9,0,0,0,1,1,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,125.0,1,19,38,9,7,116.3,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,37,37,6,6,147.8,0,0,0,1,0,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,171,1,1,174.0,1,5,3,3,3,157.9,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,131.0,1,1,1,4,4,127.2,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,3,110.0,1,12,3,5,8,106.5,1,0,1,0,0,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,124.0,1,37,37,9,9,116.0,1,0,0,1,0,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,38,38,5,7,146.2,0,0,0,1,0,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,9,97.0,0,0,0,1,0,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,132.0,1,19,1,9,9,141.8,1,0,0,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +2,43,1,9254,1,3,120.0,1,38,37,9,3,120.0,1,0,0,1,0,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,135.0,1,3,2,1,1,133.6,1,0,0,0,0,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,133.0,1,38,38,5,2,135.5,0,0,0,1,0,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,125.0,1,39,3,3,2,125.0,1,0,0,1,0,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,4,112.0,0,0,0,1,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,141.0,1,1,1,5,9,126.3,0,0,0,1,1,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,1,133.1,1,1,37,9,8,130.0,0,0,0,1,1,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,3,10,107.8,0,0,0,1,0,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,Enrolled +1,43,1,9500,1,1,120.0,1,3,4,2,4,120.6,0,0,0,1,1,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,1,133.1,1,1,19,9,9,120.0,0,0,0,1,1,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,Graduate +1,39,1,9853,1,1,140.0,1,19,1,9,4,128.2,0,0,0,0,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,133.1,1,37,19,9,3,123.0,0,0,0,1,1,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9147,1,1,150.0,1,37,1,7,3,148.8,0,0,0,1,1,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,Graduate +1,17,1,9670,1,1,125.0,1,38,37,7,5,126.4,0,0,0,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,Graduate +1,44,1,9003,1,39,140.0,1,38,1,134,134,140.0,1,0,1,1,1,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,44,1,9070,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,1,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,130.0,1,1,1,9,9,124.1,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Enrolled +1,51,1,9070,1,1,130.0,1,19,19,5,7,124.5,0,0,0,1,0,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,101.0,1,37,37,9,4,101.0,1,0,1,1,0,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,Enrolled +1,1,1,8014,0,1,115.0,1,38,38,9,7,115.0,1,0,0,1,0,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9130,1,1,122.0,1,19,19,9,9,121.7,1,0,0,0,0,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,135.0,1,38,38,9,6,138.1,0,0,1,0,0,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9147,1,1,130.0,1,37,37,9,9,119.9,1,0,0,0,0,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,134.0,1,1,1,9,9,133.0,1,0,0,1,0,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,19,37,9,9,117.8,1,0,0,1,0,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,119.0,1,1,19,4,10,115.5,1,0,0,1,0,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,Enrolled +1,17,3,9119,1,1,138.0,1,3,3,3,4,125.4,1,1,0,1,1,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,164.0,1,19,19,9,9,149.0,1,0,0,1,0,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,1,140.0,1,4,4,2,6,140.0,0,0,0,1,0,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,Graduate +1,43,1,9070,1,1,160.0,1,1,2,4,2,100.0,0,0,0,1,1,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,132.0,1,37,37,9,5,135.9,0,0,0,1,0,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,142.0,1,37,19,7,7,133.0,1,0,0,1,0,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9556,1,3,130.0,1,1,37,4,8,130.0,0,0,0,0,1,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,Dropout +1,44,1,171,1,39,110.0,1,1,1,1,7,114.2,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9147,1,1,129.0,1,19,19,4,9,127.6,1,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,164.0,1,34,1,0,0,163.0,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9556,1,1,122.0,1,19,38,4,8,118.3,1,0,0,1,0,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,141.0,1,38,37,3,3,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,Graduate +1,1,1,9003,1,1,148.0,1,1,19,194,194,143.5,0,0,1,1,1,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,150.0,1,37,19,6,4,137.0,0,0,0,1,1,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,38,38,1,4,138.7,0,0,0,1,1,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,103.8,0,0,0,1,0,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,Dropout +1,17,1,8014,0,1,127.0,1,19,37,4,7,115.8,0,0,0,1,0,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,143.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,130.0,1,38,19,5,6,125.1,1,0,0,1,0,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9254,1,1,133.0,1,19,1,9,9,137.2,0,0,0,1,1,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +2,1,4,8014,0,1,140.0,1,34,34,0,0,128.0,1,0,0,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,120.0,1,1,1,9,10,118.3,0,0,0,1,1,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Enrolled +2,39,1,8014,0,12,133.1,1,37,37,9,1,113.0,0,0,0,1,0,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,128.0,1,19,1,0,5,122.1,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,37,38,3,3,123.0,0,0,0,1,0,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,120.0,1,37,1,7,4,95.0,1,0,0,1,0,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,Dropout +1,17,4,9238,1,1,123.0,1,19,19,191,144,116.0,1,0,0,1,0,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,140.0,1,37,37,90,90,106.3,0,0,1,0,1,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,159.0,1,3,3,2,2,162.5,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,125.0,1,19,19,9,9,115.9,0,0,0,1,0,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,130.0,1,19,19,3,7,129.0,0,0,1,0,0,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,133.1,1,38,37,5,5,136.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,156.0,1,5,4,2,1,140.8,0,0,0,1,0,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,161.0,1,37,37,9,9,100.0,1,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,8014,0,3,130.0,1,35,35,90,90,140.0,0,0,0,0,0,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,Dropout +2,1,1,9991,0,1,120.0,1,37,19,9,9,135.0,1,0,0,1,1,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,1,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,148.0,1,3,3,2,2,137.3,1,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,120.0,1,19,37,5,7,115.1,0,0,0,1,0,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,6,9773,1,1,138.0,1,1,1,4,2,140.5,1,0,0,1,0,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,Graduate +2,43,1,9085,1,1,160.0,1,37,37,9,7,120.0,0,0,0,1,1,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,Enrolled +1,17,2,8014,0,1,134.0,1,1,19,4,99,126.0,1,0,0,1,1,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,100.0,1,0,0,1,0,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,131.0,1,1,1,5,9,129.5,1,0,0,1,0,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,Graduate +1,1,4,171,1,1,139.0,1,37,38,9,9,127.8,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,150.0,1,37,37,5,6,132.5,1,0,0,1,0,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,133.1,1,19,38,5,7,110.0,1,0,0,1,0,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,6,138.6,1,34,34,0,0,138.6,1,0,0,1,1,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,133.1,1,1,1,4,10,100.8,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,5,140.0,1,19,1,4,1,140.0,1,0,0,0,0,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,118.0,1,1,19,9,10,113.1,1,0,0,1,0,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,115.0,1,3,3,2,2,111.5,1,0,1,0,0,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9254,1,39,170.0,1,19,2,9,3,170.0,0,0,0,0,1,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,9,120.0,0,0,0,1,0,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,137.0,1,19,38,7,7,126.5,1,0,0,1,0,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,136.0,1,19,19,90,8,133.9,1,0,0,0,1,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,Dropout +1,18,2,9500,1,1,141.0,24,1,1,4,3,126.8,1,0,0,1,0,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,Graduate +1,17,4,9238,1,1,124.0,1,19,19,5,8,117.7,1,0,0,1,0,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,149.0,1,19,38,9,9,126.5,1,0,0,1,0,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,153.0,1,1,1,141,175,157.9,0,0,1,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,140.0,1,1,2,4,6,140.0,1,0,0,1,0,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,137.0,1,1,3,3,2,121.3,1,0,0,1,0,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,143.0,1,1,1,4,6,138.8,0,0,0,0,1,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,160.0,1,1,3,1,2,130.0,0,0,0,0,1,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,19,19,9,8,105.8,0,0,0,1,0,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,Dropout +1,5,4,9119,1,1,115.0,1,19,37,4,6,113.3,1,0,0,1,1,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,19,4,3,125.4,1,0,0,1,0,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,Graduate +4,42,1,9500,1,19,133.1,1,1,1,5,5,126.0,1,0,0,1,1,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9254,1,3,133.1,1,19,19,4,6,130.5,0,0,0,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,108.0,1,1,19,4,4,105.9,1,0,0,1,1,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,126.0,1,19,19,9,9,115.2,0,0,1,1,0,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9853,1,1,140.0,1,37,37,9,9,145.3,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,6,9070,1,6,119.0,1,1,1,9,9,123.2,1,0,0,1,1,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,160.0,1,1,38,5,6,168.6,0,0,0,1,1,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9254,1,1,120.0,1,1,19,9,9,148.3,0,0,0,1,1,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,3,130.0,1,1,19,9,10,130.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,137.0,1,38,38,151,151,141.6,0,0,0,1,1,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,4,140.0,0,0,0,1,1,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,Enrolled +1,43,1,9085,1,1,162.0,1,2,1,4,4,162.0,0,0,0,1,0,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,43,1,171,1,1,133.0,1,19,19,5,7,133.0,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,154.0,1,37,37,9,7,150.2,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,19,100.0,1,38,19,0,10,111.3,0,0,1,0,0,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,38,4,9,126.2,0,0,0,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,132.0,1,3,1,2,7,125.5,1,0,0,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,127.0,1,37,37,5,7,116.2,0,0,0,1,1,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9773,1,1,121.0,1,19,38,9,7,113.0,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,130.0,1,19,19,9,9,127.6,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,160.0,1,34,34,99,99,114.3,0,0,0,1,1,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,Enrolled +1,18,4,9254,1,1,119.0,1,37,37,9,9,113.1,1,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,130.0,1,38,37,5,6,130.0,0,0,0,1,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,163.0,1,19,37,5,8,150.8,1,0,0,1,1,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,Enrolled +1,43,1,9238,1,1,122.0,1,19,19,5,5,114.3,1,0,0,1,0,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,Enrolled +1,18,1,9147,1,1,131.0,1,34,34,90,90,131.0,0,0,0,1,1,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,4,9773,1,1,137.0,1,1,1,5,5,125.8,0,0,1,1,1,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9670,1,1,133.1,1,37,37,90,90,97.4,0,0,1,0,1,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,37,38,7,5,106.0,1,0,0,1,0,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,Graduate +1,17,6,9254,1,1,108.0,1,1,19,4,5,112.2,1,0,0,1,1,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,19,133.1,1,1,19,4,10,111.8,1,0,0,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,133.1,1,1,37,9,10,139.0,0,0,0,1,1,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,122.0,1,12,19,4,8,117.8,1,0,0,1,0,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,128.0,1,19,19,0,5,120.3,1,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,133.1,1,34,19,0,3,117.1,1,0,0,1,0,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9556,1,19,133.1,1,37,38,9,9,123.0,0,0,0,1,0,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,Graduate +1,17,2,9238,1,1,133.0,1,37,37,9,4,123.6,0,0,0,1,0,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,5,9670,1,1,132.0,1,19,19,5,5,134.1,1,0,0,1,1,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,129.0,1,38,1,4,10,129.4,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,136.0,1,19,19,4,8,150.4,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,154.0,1,3,3,1,3,129.0,1,0,0,1,0,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,Enrolled +1,44,1,9130,1,39,150.0,1,1,1,4,4,150.0,1,0,0,1,0,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,115.0,1,37,37,9,8,116.1,1,0,0,1,0,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,157.0,1,19,3,4,9,138.8,0,0,0,1,1,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9670,1,19,133.1,1,19,1,5,8,97.2,1,0,0,1,1,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,141.0,1,37,38,6,6,125.6,1,0,0,1,0,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,143.0,1,19,1,9,9,144.4,1,0,0,1,0,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9119,1,1,127.0,1,19,1,4,5,115.8,0,0,0,1,1,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,150.0,1,1,1,9,10,142.7,0,0,1,1,0,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,132.0,11,12,12,90,4,129.9,1,0,0,1,0,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,115.0,1,19,19,191,171,109.1,0,0,1,0,1,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,Enrolled +1,17,1,9773,1,1,121.0,1,38,38,9,8,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,7,1,9085,1,40,130.0,1,1,1,4,4,130.0,1,0,0,1,0,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,140.0,1,19,38,4,4,138.3,0,0,0,1,1,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,6,9773,1,1,116.0,1,19,1,4,4,110.1,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,131.0,1,38,38,9,9,127.9,0,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,Graduate +1,51,1,9991,0,42,110.0,1,19,37,5,9,128.2,0,0,0,0,0,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,138.0,1,19,19,5,8,124.9,1,0,0,1,0,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,172.0,1,1,1,4,9,167.1,0,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +5,39,1,9991,0,1,120.0,1,37,37,9,9,138.1,0,0,0,1,1,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,37,38,3,7,96.7,0,0,0,1,1,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,15,1,9130,1,1,133.1,41,1,1,4,4,100.0,0,0,0,1,0,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9119,1,1,122.0,1,19,19,9,9,114.7,0,0,0,1,1,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,192,192,96.0,1,0,0,1,0,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,160.0,1,1,37,9,10,118.0,0,0,0,1,0,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,Enrolled +1,18,4,9119,1,1,134.0,1,19,38,194,175,124.9,1,0,1,1,1,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,4,19,4,5,98.0,0,0,0,1,1,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +5,43,1,9991,0,3,130.0,1,3,3,1,1,130.0,0,0,0,1,0,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,120.0,1,19,19,4,5,114.8,1,0,1,0,0,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,6,8014,0,1,134.0,1,3,19,2,4,120.7,1,0,0,1,0,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,133.1,1,37,37,9,9,109.7,0,0,0,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9070,1,1,128.0,1,19,19,3,3,123.5,1,1,0,0,1,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,133.1,1,1,19,5,9,130.0,0,0,0,1,1,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,Graduate +1,7,1,9991,0,40,120.0,1,43,3,3,3,120.0,0,0,0,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,Enrolled +1,17,5,9556,1,1,139.0,1,19,19,9,8,121.3,1,0,0,1,0,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,156.0,1,3,19,3,3,151.1,0,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,Graduate +1,16,2,9147,1,1,132.0,1,37,37,9,9,122.6,1,0,0,1,0,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,130.0,1,2,3,9,6,130.0,0,0,0,1,1,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,133.1,1,1,1,1,6,120.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,1,1,1,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,133.0,1,3,3,1,1,126.2,1,0,0,1,0,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,Graduate +1,18,2,9147,1,1,140.0,1,37,37,5,9,124.3,1,0,0,1,1,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,44,1,9003,1,39,150.0,1,37,38,4,8,150.0,0,0,0,1,0,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,140.0,1,37,19,191,163,129.3,1,0,1,1,0,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +4,7,1,9500,1,3,130.0,1,3,19,2,3,130.0,0,0,0,1,0,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9070,1,1,131.0,1,19,19,7,7,125.1,0,0,0,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,Enrolled +1,10,1,9773,1,1,152.0,22,38,37,5,9,152.0,1,0,0,1,0,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,123.0,1,34,38,0,7,120.2,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,131.0,1,3,19,4,4,130.3,1,0,0,1,1,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,115.0,1,1,1,5,4,108.0,1,0,0,1,0,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,130.0,1,38,37,9,9,144.0,0,0,0,1,0,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9238,1,1,134.0,1,3,1,3,4,133.0,1,0,0,1,0,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,Graduate +1,51,1,9670,1,1,133.1,1,3,1,3,10,116.2,0,0,0,1,1,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,139.0,0,0,0,1,1,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,126.0,1,19,1,9,9,122.5,1,0,0,0,0,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,121.0,1,19,19,9,9,126.3,1,0,0,1,0,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9003,1,1,133.1,1,38,38,4,8,115.0,0,0,1,1,1,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,19,37,9,9,151.5,0,0,1,0,1,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9853,1,40,110.0,1,41,3,2,1,110.0,0,0,1,1,0,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,17,5,9238,1,1,131.0,1,19,37,5,7,120.2,1,0,0,1,0,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,7,1,9070,1,3,140.0,1,37,37,7,7,140.0,0,0,0,0,1,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +4,39,1,9254,1,1,140.0,1,38,37,9,9,112.0,0,0,1,1,0,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,Dropout +1,18,3,9853,1,1,122.0,1,38,37,9,5,120.3,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9070,1,1,125.0,1,1,38,9,7,118.0,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Enrolled +1,1,3,9670,1,1,111.0,1,1,1,5,5,105.4,0,0,0,1,0,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +2,39,1,9254,1,1,130.0,1,37,37,4,7,120.0,1,0,0,1,0,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,160.0,1,37,37,9,9,160.0,1,0,0,1,0,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,39,1,9147,1,12,133.1,1,37,37,9,9,140.0,0,0,0,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9147,1,1,118.0,1,1,2,10,10,117.3,1,0,0,1,0,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,3,9085,1,1,130.0,1,1,19,9,9,121.3,1,0,0,1,0,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,9,130.0,0,0,0,1,0,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,3,9085,1,1,130.0,1,19,37,5,5,121.3,1,0,0,1,0,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,Enrolled +1,1,2,9254,1,1,120.0,1,19,19,9,9,116.5,1,0,0,1,0,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,Graduate +2,39,1,9500,1,1,140.0,1,37,37,9,4,127.3,0,0,0,1,1,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,118.0,1,37,38,8,7,115.2,1,0,0,1,0,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,17,3,9238,1,1,125.0,1,19,19,7,8,121.5,0,0,0,1,0,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,125.0,1,19,19,5,5,114.5,1,0,0,1,0,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,136.0,1,39,1,3,4,134.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,115.0,1,3,2,4,5,112.6,0,0,0,1,1,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,53,1,9003,1,1,130.0,1,19,1,9,9,130.0,0,0,1,1,1,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,Enrolled +1,1,3,9773,1,1,136.0,1,3,1,5,3,129.0,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,3,150.0,1,2,3,4,7,173.3,1,0,0,1,0,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,140.0,1,1,19,7,7,129.9,1,0,0,1,0,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,Dropout +1,7,1,9119,1,1,140.8,1,34,34,0,0,134.0,0,0,0,1,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9254,1,1,115.0,1,37,19,5,5,109.8,1,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,137.0,1,1,1,4,4,127.6,1,0,0,1,0,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,Graduate +4,7,1,9238,1,40,130.0,1,34,34,99,99,130.0,0,0,1,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9147,1,1,123.0,1,37,37,9,9,106.2,0,0,0,1,0,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,121.0,1,1,3,3,7,113.0,1,0,0,1,1,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,140.0,1,3,1,2,3,129.9,0,0,0,1,0,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,130.0,1,38,38,9,7,130.0,0,0,0,1,1,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,Dropout +1,51,1,9070,1,1,132.0,1,19,19,153,153,120.0,0,0,0,1,0,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,9119,1,1,110.0,1,37,37,9,9,106.8,0,0,0,1,1,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,124.0,1,19,37,4,4,126.8,0,0,0,1,0,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,Enrolled +1,18,3,9147,1,1,133.1,1,1,38,4,7,101.0,1,0,0,0,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9147,1,1,125.0,1,38,19,7,7,125.7,0,0,0,1,0,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,4,9853,1,1,121.0,1,38,38,5,7,113.7,1,0,0,1,0,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,1,1,9,6,105.0,1,0,1,0,0,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,143.0,1,5,1,2,5,136.7,0,0,0,1,0,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,Graduate +1,1,2,9556,1,1,142.0,1,1,19,4,5,130.5,1,0,0,1,0,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,131.0,1,19,19,7,5,122.1,1,0,0,1,0,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,132.0,1,1,37,4,7,121.8,1,0,0,1,0,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,123.0,1,37,37,3,3,123.0,1,0,0,1,0,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,129.0,1,19,38,2,7,126.9,1,0,0,1,0,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Enrolled +1,1,4,9238,1,1,118.0,1,19,38,9,9,110.0,0,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,125.0,1,3,1,4,4,119.4,1,0,0,1,0,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,Enrolled +1,17,1,9085,1,1,131.0,1,1,3,4,1,129.3,1,0,0,1,0,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,147.0,1,37,37,9,9,134.3,0,0,0,1,0,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,Graduate +2,39,2,9670,1,19,133.1,1,37,37,9,9,135.6,0,0,0,1,0,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,152.0,1,37,19,9,9,137.0,1,0,0,1,0,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,118.0,1,12,1,4,10,115.7,0,0,0,1,1,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,Enrolled +1,15,1,9119,1,1,133.1,41,1,3,5,8,100.0,0,0,1,1,1,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,5,9119,1,1,131.0,1,1,19,4,7,126.8,0,0,0,0,1,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,132.0,1,19,38,9,7,119.1,0,0,0,0,1,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,8014,0,1,120.0,1,37,37,5,5,161.1,0,0,0,1,1,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,18,5,9500,1,1,137.0,1,19,1,1,10,129.3,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,118.0,1,37,19,5,5,119.1,1,0,0,1,0,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,134.0,1,38,38,9,9,122.0,1,0,0,1,1,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,163.0,1,1,1,4,3,149.7,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,140.0,1,38,38,9,7,140.0,0,0,0,1,0,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,Enrolled +1,17,4,9147,1,1,122.0,1,19,19,5,7,116.4,1,0,1,1,0,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,140.0,1,3,37,3,7,116.9,0,0,0,1,1,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,5,2,9238,1,1,123.0,1,40,38,2,9,118.1,1,0,0,1,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,130.0,1,3,19,2,3,133.9,0,0,0,1,0,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,125.0,1,1,38,4,7,114.9,1,0,0,1,0,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,130.0,1,1,1,4,10,115.2,0,0,0,1,1,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,124.0,1,38,19,9,7,129.6,1,0,0,1,1,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,139.0,1,38,38,7,5,133.4,0,0,0,1,0,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9254,1,1,125.0,1,38,38,5,5,115.6,1,0,0,1,0,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,147.0,1,37,37,9,9,142.8,1,0,0,1,0,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9003,1,1,144.0,1,19,19,9,9,132.8,0,0,0,1,1,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,12,133.1,1,19,1,9,1,130.0,0,0,0,1,1,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,140.0,1,37,37,9,6,135.5,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,6,9254,1,1,102.0,1,3,1,2,2,101.7,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,133.1,1,19,38,5,5,131.8,1,0,1,1,0,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,Graduate +1,44,1,171,1,39,150.0,1,4,4,2,2,150.0,0,0,0,1,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,53,1,9254,1,42,110.0,1,1,1,4,7,111.8,1,0,0,1,0,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,121.0,1,19,38,6,6,116.1,1,0,0,1,1,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,Graduate +1,17,4,9773,1,1,127.0,1,1,19,4,1,115.8,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,37,37,9,7,160.0,1,0,0,0,1,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,15,170.0,1,34,1,90,2,101.0,0,0,0,1,0,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,125.0,1,3,3,3,3,116.6,1,0,0,0,0,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,4,9070,1,1,117.0,1,1,1,3,3,125.4,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,146.0,1,19,37,7,7,133.8,1,0,0,1,0,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,142.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,3,116.0,1,3,3,2,2,128.2,0,0,0,1,0,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,37,37,7,7,116.5,1,0,0,1,0,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,118.0,1,19,19,5,7,117.8,0,0,0,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,Graduate +1,18,3,9670,1,1,119.0,1,38,38,9,9,115.2,1,0,0,1,0,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,131.0,1,3,19,3,10,123.3,0,0,0,1,1,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,Enrolled +1,17,1,9254,1,1,136.0,1,39,3,3,3,128.7,1,0,0,1,0,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9500,1,1,140.0,1,37,38,5,7,126.0,1,0,0,1,0,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +1,44,1,9119,1,39,150.0,1,19,3,5,2,150.0,0,0,0,1,1,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,43,1,9773,1,1,137.0,1,38,37,9,5,127.9,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,119.9,0,0,0,1,0,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,18,2,9773,1,1,132.0,24,37,19,9,7,119.1,1,0,0,1,0,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,43,1,8014,0,1,133.1,1,34,34,0,0,100.0,0,0,0,1,0,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,1,133.1,1,38,19,9,9,128.0,1,0,0,0,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,125.0,1,19,19,5,4,136.2,1,0,1,1,1,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,132.0,1,38,38,0,5,126.1,0,0,0,1,1,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9670,1,1,130.0,1,1,1,9,10,116.3,1,0,0,1,0,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,3,9773,1,1,150.0,1,19,38,4,4,146.5,1,0,0,1,0,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +4,39,2,8014,0,1,160.0,1,37,38,7,5,115.0,0,0,0,1,0,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,135.0,1,19,1,9,9,122.1,1,0,0,1,0,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,136.0,1,3,3,9,9,136.0,1,0,1,0,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,3,3,7,1,130.0,1,0,0,1,1,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9119,1,19,133.1,1,19,19,5,3,100.9,1,0,0,1,1,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,Enrolled +1,17,1,9254,1,1,137.0,1,34,38,0,7,137.7,1,0,1,0,0,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,19,133.1,1,37,37,90,7,110.0,0,0,0,0,0,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,144.0,1,38,37,9,9,125.8,0,0,0,1,0,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,1,4,9070,1,1,167.0,1,1,1,7,3,158.3,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,133.0,1,37,19,7,7,126.7,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,118.0,1,38,38,7,7,121.2,1,0,0,1,0,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,19,133.1,1,19,19,4,4,150.0,0,0,0,0,1,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9085,1,1,166.0,1,1,19,4,3,158.7,0,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Graduate +1,44,1,9254,1,39,130.0,1,39,39,194,193,130.0,1,0,1,1,1,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,1,9085,1,1,140.0,1,37,38,7,9,129.9,0,0,0,1,0,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,9147,1,3,120.0,1,1,39,4,7,120.0,0,0,0,1,0,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,5,9254,1,1,118.0,1,19,37,5,5,120.5,1,0,0,1,1,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,Dropout +1,17,3,9070,1,1,120.0,1,3,1,4,4,116.9,1,0,0,1,0,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Graduate +1,43,5,9238,1,1,101.0,24,37,19,9,7,119.9,1,0,1,0,0,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,128.0,1,19,1,4,3,117.2,1,0,0,1,0,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,Graduate +1,1,3,9254,1,1,118.0,1,1,19,9,9,111.7,1,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,137.0,1,37,37,0,90,134.2,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,144.0,1,3,39,2,3,129.0,1,0,0,1,0,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,125.0,1,37,38,7,7,122.2,1,0,0,1,0,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,147.0,1,3,1,4,3,136.7,0,0,0,1,0,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,39,120.0,1,37,37,1,9,137.7,1,0,0,0,1,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,160.0,1,1,37,9,9,146.0,1,0,0,1,0,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9238,1,39,130.0,1,1,19,4,5,127.4,0,0,1,0,1,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,3,1,2,4,154.9,0,0,1,0,1,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,Dropout +1,17,2,9670,1,1,129.0,1,19,19,5,4,129.4,0,0,0,1,0,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,137.0,1,3,19,3,5,136.3,1,0,0,1,0,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,100.0,1,37,37,9,6,153.5,0,0,1,0,1,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,134.0,1,38,38,7,9,132.8,1,0,0,1,0,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,137.0,1,37,37,7,9,130.8,1,0,0,1,0,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,133.1,1,37,37,1,1,97.0,0,0,0,1,1,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,143.0,1,3,38,2,10,129.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,9,3,127.1,0,0,0,1,0,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,Enrolled +2,7,1,9147,1,3,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,160.0,1,37,37,9,9,160.0,0,0,0,1,1,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,162.0,1,3,4,3,3,154.1,0,0,0,1,0,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,Graduate +1,1,2,9147,1,1,119.0,1,19,37,4,5,113.8,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,139.0,1,19,1,9,5,135.0,1,0,0,1,0,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,120.0,1,1,38,5,5,116.3,1,1,0,1,1,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,2,9500,1,1,135.0,1,1,19,4,10,133.5,1,0,0,1,0,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,Graduate +1,1,3,9119,1,1,117.0,1,1,1,3,5,111.1,0,0,0,1,1,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,140.0,1,1,39,4,1,128.1,1,1,0,1,1,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9003,1,1,133.1,1,37,37,3,8,130.0,0,0,1,1,0,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,134.0,1,19,37,5,5,125.3,1,0,0,1,1,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,37,38,9,9,114.0,0,0,0,1,0,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,38,37,4,5,102.5,0,0,1,0,1,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,143.0,1,19,37,5,9,156.3,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,130.0,1,19,1,9,5,122.1,1,0,0,1,0,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,Graduate +1,39,2,8014,0,1,100.0,1,35,37,90,90,100.0,0,0,0,1,0,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +2,39,2,9670,1,1,100.0,1,37,37,9,9,110.0,0,0,0,1,1,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,2,9853,1,1,126.0,1,1,19,2,10,126.0,1,0,0,1,0,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,Enrolled +1,18,3,9070,1,1,131.0,1,1,37,5,5,122.3,1,0,0,0,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,150.0,1,19,37,9,8,138.5,0,0,0,1,0,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,2,171,1,1,146.0,1,3,3,3,3,155.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,120.0,1,19,19,9,7,118.6,1,0,0,1,0,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,145.0,1,38,38,9,9,125.5,1,0,0,1,0,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9070,1,1,143.0,1,1,1,9,7,134.6,1,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Dropout +1,51,1,8014,0,1,121.0,1,1,38,5,7,112.3,0,0,0,1,0,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,130.0,1,37,1,9,8,120.2,1,0,0,1,1,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +2,7,1,9254,1,2,100.0,1,37,37,9,9,100.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,1,130.0,1,37,3,9,3,137.0,1,0,0,1,1,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,0,0,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,140.0,1,38,37,7,7,105.2,0,0,0,1,1,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,131.0,1,1,19,4,7,135.9,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,108.0,1,19,38,9,7,110.5,1,0,0,1,0,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,111.0,1,1,38,5,9,107.5,0,0,0,1,1,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9147,1,1,147.0,1,37,37,9,6,142.8,1,0,1,0,0,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,170.0,1,38,19,4,8,134.7,0,0,0,1,0,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,138.0,1,4,19,2,3,124.7,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,125.0,1,37,38,9,9,125.0,1,0,1,0,0,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,118.0,1,38,38,5,5,114.2,1,0,0,1,0,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,3,3,1,5,118.8,0,0,0,1,0,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,Graduate +1,1,3,9085,1,1,131.0,1,37,19,9,8,136.3,1,0,1,0,0,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,Dropout +1,43,1,9991,0,1,141.0,1,37,37,9,9,131.9,0,0,0,1,0,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,42,1,9070,1,1,120.0,1,3,2,3,1,116.9,0,0,0,1,1,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,130.0,1,1,1,9,7,152.1,0,0,0,1,1,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,12,133.1,1,34,34,0,0,135.0,0,0,0,1,0,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,130.0,1,38,38,7,7,122.5,1,0,0,1,0,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,160.0,1,1,1,194,131,128.4,0,0,0,1,0,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,132.0,1,1,38,7,7,129.6,0,1,0,1,1,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,1,1,3,9,118.4,0,0,0,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,Graduate +1,1,2,9556,1,1,133.1,1,19,19,9,9,104.5,1,0,0,1,0,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,53,1,9003,1,42,150.0,1,1,38,8,8,150.0,0,0,0,1,0,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,144.0,1,3,1,2,3,126.9,0,0,0,1,0,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,150.0,1,3,3,2,2,120.0,0,0,1,0,0,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,3,3,2,10,160.0,1,0,0,1,1,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,129.0,1,1,1,9,9,120.0,0,0,0,1,1,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,Graduate +4,39,1,9003,1,12,133.1,1,37,37,9,6,160.0,0,0,0,1,0,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,Graduate +2,39,2,9991,0,1,100.0,1,37,37,9,9,100.0,1,0,0,1,1,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,115.0,1,19,1,3,8,123.4,0,0,0,1,0,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,124.0,1,19,37,3,8,117.5,1,0,0,1,1,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,Enrolled +1,1,6,9254,1,1,129.0,1,38,19,9,5,117.8,1,0,0,1,0,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,127.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,19,133.1,1,38,38,7,8,120.0,0,0,0,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +6,39,2,9147,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,4,9500,1,1,148.0,1,3,19,4,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,39,150.0,1,1,3,4,1,150.0,0,0,0,1,1,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,145.0,1,37,37,9,1,150.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,115.7,1,0,0,1,0,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,16,1,171,1,1,122.0,1,19,37,9,7,133.9,1,0,0,1,1,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,124.0,1,37,38,9,8,114.6,1,0,0,1,1,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,120.0,1,38,37,9,8,113.4,1,0,0,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,40,140.0,1,37,37,6,6,140.0,0,0,0,1,0,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,Graduate +1,1,5,9670,1,1,133.1,1,9,1,2,4,133.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,100.0,1,19,19,4,4,113.0,0,0,0,1,1,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,Enrolled +4,39,1,9003,1,1,133.1,1,19,19,9,4,100.7,0,0,0,1,0,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,Enrolled +1,17,2,9147,1,1,133.1,1,38,38,4,7,109.0,1,0,0,1,1,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,15,1,9238,1,1,140.0,26,19,19,9,6,140.0,0,0,0,1,1,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,3,9500,1,1,114.0,1,1,1,5,5,114.5,1,0,0,1,0,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,134.0,1,1,38,4,4,120.7,0,0,1,0,0,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,1,133.1,1,37,11,9,7,96.0,0,0,1,0,1,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,131.0,1,3,3,3,3,135.9,0,0,0,1,0,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,Graduate +1,43,2,9500,1,1,130.0,1,38,37,4,4,126.8,1,0,0,1,1,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,19,37,7,7,124.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9670,1,1,120.0,1,1,19,4,5,100.0,0,0,0,1,0,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,145.0,1,38,38,9,10,139.8,1,0,0,1,0,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,141.0,1,19,38,5,7,125.5,0,0,0,1,0,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,Graduate +5,39,1,9147,1,1,133.1,1,1,19,4,7,114.0,0,0,0,0,1,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9991,0,1,110.0,1,37,37,1,4,120.0,1,0,0,0,1,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,172.0,41,37,37,5,5,153.8,1,0,0,1,0,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,1,9556,1,1,140.0,1,3,3,1,7,131.6,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,4,3,137.5,0,0,0,1,1,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,137.0,1,19,38,3,9,124.9,0,0,0,1,0,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,139.0,1,18,18,1,1,130.8,1,0,0,0,0,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,120.0,1,38,37,5,9,131.4,1,0,0,1,1,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,Graduate +1,53,1,9085,1,42,160.0,1,19,37,4,9,160.0,1,0,0,1,0,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,Graduate +1,18,1,9670,1,1,140.0,1,1,37,9,9,130.2,1,0,0,1,1,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9853,1,1,140.0,1,37,37,6,6,125.2,0,0,1,1,0,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,Graduate +1,1,4,9556,1,1,122.0,1,37,1,5,4,123.9,0,0,0,1,0,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,1,19,3,3,123.0,0,0,0,1,0,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,140.0,1,19,38,4,0,140.0,1,0,0,1,1,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,129.0,1,1,1,4,2,126.2,0,0,1,0,0,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Dropout +2,17,3,8014,0,1,123.0,1,19,37,3,3,113.2,0,0,1,0,0,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,133.1,1,38,19,9,10,114.5,0,0,0,1,0,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,Enrolled +1,51,1,9991,0,1,141.0,1,19,38,5,7,100.0,0,0,0,1,0,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,Graduate +1,17,2,171,1,1,131.0,1,2,1,3,3,148.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,19,133.1,1,37,37,9,9,100.0,1,0,1,0,0,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,117.0,1,1,38,5,1,113.5,1,0,0,1,0,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,116.0,1,19,38,9,9,119.5,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,1,19,3,4,116.7,0,0,0,1,0,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,129.0,1,2,3,2,2,128.3,1,0,0,1,0,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,Enrolled +1,1,3,9085,1,1,138.0,1,1,1,4,8,128.7,1,0,0,1,0,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,5,9147,1,1,118.0,1,19,19,9,9,114.2,1,0,0,1,1,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.0,1,3,19,2,8,126.7,0,0,0,1,0,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,Enrolled +1,16,1,171,1,1,158.0,1,38,37,9,9,164.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,43,3,9500,1,1,126.0,1,38,37,6,5,124.3,1,0,0,1,0,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,123.0,1,38,38,9,5,124.8,0,0,0,0,0,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9130,1,1,160.0,1,3,3,3,2,155.1,1,0,0,1,0,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Graduate +4,43,1,9500,1,1,130.0,1,37,37,9,9,103.7,0,0,0,1,0,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,Enrolled +1,16,2,9238,1,1,133.0,1,19,38,4,5,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,130.0,1,38,37,9,9,124.8,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,135.0,1,37,1,7,7,132.8,1,0,0,1,0,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9119,1,1,128.0,1,1,38,4,7,100.0,0,0,0,1,1,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9085,1,1,120.0,1,1,1,9,10,115.0,0,0,0,0,0,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,2,9070,1,1,142.0,1,3,1,2,4,141.0,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9853,1,1,124.0,1,38,37,5,3,118.1,1,0,0,0,0,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,145.0,1,37,37,9,9,132.0,1,0,0,1,0,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,114.0,1,38,38,9,10,120.0,0,0,0,1,0,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,140.0,1,3,3,2,2,146.4,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,5,9773,1,1,130.0,1,34,38,0,8,128.3,1,0,0,0,0,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,3,9670,1,1,110.0,1,19,1,4,4,107.5,1,0,0,1,0,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,135.0,1,37,37,5,5,126.3,1,1,0,1,0,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,Graduate +2,1,1,9254,1,1,140.0,1,19,38,4,7,133.0,0,0,0,1,1,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,1,150.0,1,37,37,9,9,115.0,0,0,0,1,1,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9070,1,1,130.0,1,1,1,5,3,112.0,1,0,0,1,1,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,110.0,1,1,37,9,9,105.1,1,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,131.0,1,37,37,9,7,118.4,0,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,136.0,1,38,38,7,7,127.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9773,1,1,127.0,1,19,19,5,8,120.0,0,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,139.0,1,37,19,9,8,142.2,1,0,0,1,1,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,4,127.3,1,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,16,4,9773,1,1,109.0,1,37,37,9,3,137.0,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,Graduate +1,53,1,9085,1,42,130.0,1,19,1,9,9,130.0,1,0,1,0,0,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,Enrolled +1,7,1,171,1,3,130.0,1,1,2,9,2,130.0,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,120.0,1,37,37,9,9,120.0,1,0,1,1,0,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,Dropout +1,2,1,9853,1,1,120.0,1,19,38,9,9,122.5,0,0,0,0,0,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,19,133.1,1,2,1,8,8,120.0,1,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,43,1,9773,1,1,121.0,1,1,1,4,5,121.0,1,0,0,1,1,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9147,1,1,120.0,1,38,19,9,9,111.3,1,0,0,1,0,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,38,19,5,0,141.8,0,0,0,1,0,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,131.0,1,1,1,7,4,127.2,1,0,1,1,1,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,11,9,10,131.5,0,0,0,1,0,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,3,19,2,3,125.7,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9556,1,1,136.0,1,19,19,9,9,129.5,1,0,0,1,0,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,Graduate +1,42,1,9119,1,1,120.0,1,5,5,2,2,115.0,0,0,0,1,1,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,Dropout +1,17,6,9119,1,1,124.0,1,19,19,4,0,126.1,1,0,0,1,1,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,160.0,1,19,38,9,9,140.8,1,0,0,1,1,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,123.0,1,37,37,9,9,115.0,1,0,0,1,0,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,Graduate +2,39,2,9670,1,1,133.1,41,37,19,9,9,130.0,0,0,0,1,0,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9670,1,6,170.0,1,34,34,0,0,111.6,0,0,0,1,1,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,138.0,1,1,3,9,1,123.0,1,0,0,1,0,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,1,37,6,6,130.0,1,0,0,1,1,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,Graduate +1,17,2,9119,1,1,133.1,1,1,2,3,3,117.0,1,0,0,1,1,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,Enrolled +1,1,5,9254,1,1,131.0,1,19,37,9,9,123.7,0,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,130.0,1,1,1,9,4,140.0,0,0,0,0,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9773,1,1,135.0,1,1,19,4,10,129.4,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,132.0,1,1,19,3,3,122.9,1,0,0,1,0,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,115.0,1,37,37,9,8,129.0,1,0,1,0,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9238,1,1,160.0,1,3,19,2,1,116.1,0,0,1,1,0,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,12,133.1,1,37,1,9,10,130.0,0,0,0,1,1,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,129.0,1,37,38,4,9,121.0,1,0,0,1,0,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9119,1,1,130.0,1,38,19,7,3,119.9,1,0,1,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,133.1,1,37,37,9,9,100.2,1,0,0,0,0,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,4,38,4,5,140.0,1,0,0,1,0,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9991,0,43,140.0,1,40,5,3,3,140.0,0,0,0,1,0,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,Graduate +1,43,2,9670,1,1,129.0,1,3,3,5,5,122.4,1,0,0,1,0,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,6,116.4,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,130.0,1,1,3,9,2,130.0,1,0,1,1,0,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,139.0,1,38,38,9,5,130.5,1,0,0,1,0,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,1,100.0,1,19,19,9,9,100.0,0,0,1,1,1,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,Dropout +1,7,1,9773,1,43,140.0,1,19,1,4,8,140.0,0,0,0,1,1,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9003,1,1,125.0,1,1,38,4,7,125.0,1,0,0,1,0,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,Graduate +1,39,2,9147,1,19,133.1,1,38,19,4,10,116.3,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,3,9500,1,1,132.0,1,37,37,4,3,127.3,1,0,0,1,0,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,127.0,1,1,37,4,8,121.1,1,0,0,1,1,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9670,1,1,140.0,1,37,37,6,6,120.0,0,0,0,1,0,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,133.0,1,37,37,9,5,139.2,1,0,1,1,1,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,140.0,1,19,19,1,4,133.3,1,0,0,1,0,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,120.0,1,3,3,2,2,112.0,0,0,0,1,0,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,Enrolled +2,1,1,9147,1,1,137.0,1,19,37,9,9,124.4,0,0,0,1,0,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,130.0,1,38,38,9,3,145.6,0,0,0,1,1,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,6,9670,1,1,120.0,1,1,14,4,5,113.7,1,0,0,1,0,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,120.0,1,38,19,9,3,112.7,0,0,0,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,122.0,1,37,37,9,9,114.3,1,0,0,0,0,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,8014,0,1,133.1,1,3,1,1,7,100.0,0,0,0,1,0,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,4,19,3,5,123.7,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,4,4,4,2,120.0,1,0,0,1,1,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,3,9238,1,1,137.0,1,1,1,3,3,131.4,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,Graduate +1,43,1,9130,1,1,130.0,1,1,1,1,1,130.0,1,0,0,1,1,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9773,1,1,121.0,1,1,19,9,7,118.9,1,0,0,1,0,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,133.1,1,19,38,9,8,128.2,1,0,0,1,1,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,Enrolled +1,43,1,9070,1,1,134.0,1,19,37,7,7,132.7,1,0,0,1,1,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9147,1,1,125.0,1,1,38,7,7,120.1,0,0,1,1,1,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,129.0,1,37,37,9,9,117.1,1,0,0,1,0,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,145.0,1,38,38,5,7,138.0,1,0,0,1,0,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,120.0,105,1,1,9,9,119.0,1,0,1,0,0,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,131.0,1,1,19,9,9,127.0,0,0,0,1,1,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,100.0,1,38,19,6,10,112.8,0,0,0,1,0,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,2,9070,1,1,145.0,1,38,19,7,7,130.0,1,0,0,1,1,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,126.0,1,37,38,7,7,119.0,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,Graduate +1,1,2,9773,1,1,137.0,1,1,19,7,7,133.2,1,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,128.0,1,38,38,9,7,128.4,1,0,0,1,0,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9085,1,39,150.0,1,19,38,194,193,150.0,1,0,0,1,0,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,Enrolled +1,1,4,171,1,1,146.0,1,1,1,9,5,151.3,1,0,0,1,0,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,Graduate +1,1,6,9147,1,1,139.0,1,19,12,4,4,125.0,1,0,0,1,0,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,1,1,9,4,123.4,1,0,0,1,0,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9670,1,1,127.0,1,3,4,2,2,122.8,0,0,0,1,1,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,127.0,1,38,37,5,7,121.8,1,0,1,1,0,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,39,1,9003,1,1,130.0,1,38,37,7,7,120.0,0,0,0,1,1,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,Graduate +1,1,2,9238,1,1,100.0,1,38,1,7,7,99.3,1,0,0,1,0,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9119,1,1,160.0,1,37,37,9,6,153.7,0,0,0,1,1,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9500,1,1,138.0,1,3,1,2,5,134.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,Graduate +1,17,4,9254,1,1,124.0,1,3,3,3,3,126.1,1,0,0,1,0,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,Dropout +2,7,1,9147,1,3,110.0,1,19,1,9,9,110.0,0,0,0,1,0,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,143.0,1,3,19,3,10,126.8,0,0,0,1,1,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,Graduate +1,17,2,9670,1,1,110.0,1,1,1,4,10,115.3,1,0,0,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,9119,1,1,129.0,1,2,37,2,9,121.6,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Enrolled +1,15,1,9254,1,1,140.0,26,19,1,9,7,140.0,1,0,0,0,0,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,118.0,1,19,38,7,9,113.5,1,0,0,1,0,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,5,9853,1,1,110.0,1,19,37,7,7,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,171,1,1,145.0,1,3,1,2,10,114.5,1,0,0,1,1,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,43,2,9670,1,1,125.0,1,38,19,4,3,106.6,1,0,0,1,0,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Dropout +4,39,1,9500,1,19,133.1,1,37,37,5,7,100.0,0,0,0,0,0,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,133.0,1,1,1,9,9,119.7,1,1,1,1,1,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,Graduate +1,1,2,9853,1,1,134.0,1,1,38,9,8,122.5,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,120.0,1,19,37,3,9,100.0,0,0,0,1,0,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,37,37,6,6,100.0,0,0,1,0,1,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,160.0,1,38,38,6,6,160.0,1,0,0,1,0,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,7,116.0,0,0,0,1,0,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,Graduate +1,18,3,9500,1,1,145.0,1,1,1,4,8,133.6,1,0,0,1,0,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,3,19,2,3,124.5,0,0,0,1,0,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,125.0,1,19,38,9,8,118.3,0,0,0,1,1,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,Dropout +1,5,1,9085,1,1,150.0,1,1,1,4,4,139.4,0,0,0,1,0,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9773,1,1,133.1,1,38,38,9,5,117.0,0,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,142.0,1,1,1,4,7,131.0,1,0,0,1,0,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,1,19,3,3,154.3,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9147,1,1,135.0,1,37,38,9,9,128.0,1,0,1,1,0,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,149.0,1,37,37,9,9,138.0,0,0,0,1,1,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,38,9,9,129.2,1,0,0,1,0,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9556,1,1,147.0,1,3,4,3,2,100.0,0,0,0,1,0,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,12,133.1,1,37,37,10,9,144.0,0,0,0,1,1,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9254,1,1,100.0,1,3,19,3,5,115.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9670,1,1,140.0,1,1,1,4,3,133.4,0,0,0,1,1,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,Enrolled +1,1,2,171,1,1,127.0,1,3,39,1,3,133.5,1,0,0,1,1,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9147,1,1,112.0,1,1,19,3,5,107.8,1,0,0,1,0,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,Enrolled +2,39,1,9147,1,1,110.0,1,37,37,9,10,140.0,0,0,0,1,0,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,120.0,1,1,3,175,121,105.9,0,0,0,1,0,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,Enrolled +1,1,1,9238,1,1,168.0,1,37,37,9,9,149.5,0,0,0,1,0,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,Graduate +1,17,1,8014,0,1,141.0,1,34,34,0,0,136.1,0,0,0,1,0,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,140.0,1,1,1,4,3,130.7,1,0,0,1,1,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,Dropout +1,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,134.0,1,1,37,8,7,120.5,1,0,0,1,1,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,160.0,1,1,38,4,7,141.5,1,0,0,1,1,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,122.0,1,38,37,191,195,112.9,1,0,0,1,0,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,41,1,1,9,7,163.1,1,0,0,0,0,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,1,110.0,1,1,37,9,9,126.0,1,0,0,1,1,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,Enrolled +1,17,1,9670,1,1,109.0,1,1,1,4,4,108.0,0,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,131.0,2,37,1,9,3,126.1,1,0,0,1,1,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,1,2,9556,1,1,125.0,1,38,1,9,3,116.3,1,0,0,1,0,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,Graduate +1,17,1,9085,1,1,138.0,1,2,19,2,9,126.8,1,0,0,1,0,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,Enrolled +1,1,5,9853,1,1,128.0,1,38,37,9,9,120.3,1,0,1,0,0,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,130.0,1,1,38,4,9,122.7,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,9,133.1,1,37,34,90,90,118.1,1,0,0,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,125.0,1,1,19,4,9,114.5,1,0,0,1,0,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,Graduate +1,1,5,9773,1,1,138.0,1,19,19,9,9,139.4,1,0,0,1,0,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,125.0,1,19,38,3,5,115.9,0,0,0,1,0,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,134.0,1,38,19,5,8,120.7,0,0,0,1,0,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,133.1,41,3,1,3,10,100.0,1,0,0,0,0,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,Dropout +5,39,1,9003,1,1,133.1,1,37,37,9,7,110.0,0,0,1,0,0,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,Dropout +1,17,1,9254,1,1,128.0,1,19,1,5,7,120.7,1,0,1,1,0,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,162.0,1,19,19,4,7,152.9,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,51,1,9238,1,1,121.0,1,3,19,3,10,111.9,1,0,0,1,0,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,Graduate +1,39,2,9991,0,1,172.0,1,19,37,9,8,150.0,1,0,0,1,0,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,116.0,1,19,19,9,8,119.9,1,0,0,1,0,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,125.0,1,19,19,3,10,131.0,1,0,0,1,1,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,39,1,9500,1,4,150.0,1,3,38,3,7,127.0,1,0,0,1,1,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,128.0,1,38,38,9,9,129.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,120.0,1,3,19,4,5,115.5,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,38,38,9,6,160.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,130.0,1,3,1,2,9,130.0,1,0,0,1,0,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,140.0,1,1,19,4,8,124.6,1,0,0,1,0,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,3,3,2,2,150.0,1,0,0,1,0,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9853,1,1,133.1,1,37,19,9,5,138.3,0,0,0,1,0,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,Dropout +1,43,1,9991,0,1,150.0,1,3,3,4,4,100.0,1,0,0,1,1,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,Graduate +1,44,1,9238,1,1,150.0,1,1,38,4,9,145.9,0,0,0,1,0,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,Graduate +1,18,3,9500,1,1,131.0,1,19,1,4,7,127.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,Graduate +1,7,1,9085,1,3,150.0,1,19,37,90,90,140.0,0,0,0,1,1,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,167.0,1,19,19,9,7,156.2,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,140.0,1,1,3,4,5,130.0,0,0,0,1,1,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9238,1,1,132.0,1,1,19,4,9,127.1,1,0,0,1,0,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9119,1,1,133.0,1,3,1,3,4,121.8,1,0,0,1,1,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9670,1,1,133.1,1,1,37,4,5,150.0,0,0,0,1,1,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,150.0,103,37,37,9,9,134.6,0,0,0,1,1,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,6,9773,1,1,131.0,1,34,34,0,0,129.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,139.0,1,3,1,4,1,126.0,1,0,0,1,1,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,138.0,1,1,1,4,8,123.0,0,0,1,0,1,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,Enrolled +5,39,1,9853,1,19,133.1,1,37,37,9,8,118.0,0,0,0,1,0,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,142.0,1,37,38,9,9,137.3,1,0,0,1,0,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,136.0,1,3,38,2,9,125.7,1,0,0,1,0,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,1,1,4,10,128.3,1,0,0,1,0,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,132.0,1,1,37,4,9,127.1,0,0,0,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,122.0,1,19,19,7,7,116.1,1,0,0,1,0,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,140.0,1,1,2,3,3,140.0,0,0,0,1,0,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,Enrolled +1,42,1,9853,1,12,133.1,1,1,3,3,2,133.7,0,0,0,1,0,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,Dropout +2,7,1,9500,1,3,120.0,1,37,19,9,7,120.0,1,0,0,1,0,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,Enrolled +1,1,4,9238,1,1,134.0,1,38,19,7,7,128.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,130.0,1,19,38,4,7,121.3,1,0,0,1,0,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,Graduate +1,39,2,9238,1,1,110.0,1,19,1,5,5,136.5,0,0,0,1,1,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9670,1,1,133.1,1,38,19,9,8,122.9,0,0,1,0,1,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,124.0,1,19,1,9,3,123.7,1,0,0,1,0,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,17,1,9991,0,1,120.0,1,38,3,9,3,116.9,1,0,1,0,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,43,2,9147,1,1,160.0,1,37,37,9,9,96.0,0,0,0,0,0,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,154.0,1,19,37,9,7,140.4,1,0,0,1,0,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,Enrolled +1,17,5,9070,1,1,125.0,1,19,1,5,5,122.6,1,0,0,1,1,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9119,1,1,137.0,1,1,1,4,4,130.4,1,0,1,1,1,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,134.0,1,37,19,9,9,136.8,1,0,0,1,1,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,100.0,1,37,37,0,0,128.0,1,0,0,1,1,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +4,39,1,9130,1,19,133.1,1,37,38,9,4,100.9,0,0,0,1,1,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,127.0,1,1,19,5,7,130.5,1,0,0,1,0,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,1,1,9003,1,1,131.0,1,19,38,5,5,118.4,0,0,0,1,0,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,142.0,1,1,38,5,7,127.7,0,0,0,1,0,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,130.0,1,1,38,4,9,115.0,0,0,0,1,1,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,100.0,0,0,0,1,0,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,134.0,1,1,19,9,5,121.8,1,0,0,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,3,9853,1,1,122.0,1,1,3,5,3,113.6,0,0,0,1,0,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,114.0,1,37,37,7,8,116.7,0,0,0,1,1,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,130.0,1,3,1,3,3,120.5,0,0,0,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,148.0,1,19,19,4,5,143.5,0,0,0,1,0,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,19,9,9,107.0,0,0,0,0,1,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,130.0,1,3,19,5,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,6,120.0,0,0,0,0,0,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,1,2,9853,1,1,123.0,1,19,1,194,103,115.3,1,0,0,1,0,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,Enrolled +1,18,1,9130,1,1,135.0,1,38,19,9,5,121.7,1,0,0,1,0,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,116.0,1,38,38,5,8,110.8,1,0,0,1,0,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,7,1,9147,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9991,0,1,133.1,41,37,37,9,8,114.7,0,0,0,1,0,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,122.0,1,37,37,9,7,120.6,1,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,150.0,1,5,5,2,2,146.2,0,0,0,1,0,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,130.0,1,1,4,3,10,130.0,0,0,0,1,0,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9085,1,19,110.0,1,37,37,90,90,110.0,0,0,0,0,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,140.0,1,1,1,9,9,136.9,1,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,44,1,9085,1,39,150.0,1,19,19,9,9,150.0,1,0,0,1,0,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +2,43,1,9003,1,1,149.0,1,1,1,4,5,156.1,1,0,0,0,1,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9119,1,1,133.1,1,1,1,9,3,136.0,0,0,0,1,1,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,Dropout +1,16,2,9238,1,1,122.0,1,19,37,9,7,127.3,1,0,0,1,0,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,133.0,1,1,1,6,7,134.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,141.0,1,19,38,9,9,130.5,0,0,0,1,1,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,121.0,1,1,3,9,3,123.8,0,0,0,0,1,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,39,140.0,1,1,1,4,3,138.6,0,0,0,1,1,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9991,0,1,145.0,1,2,37,4,9,127.5,1,0,0,1,1,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,100.0,1,37,19,9,2,121.9,0,0,0,0,0,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,120.0,1,38,38,9,9,148.5,0,0,0,1,0,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +5,39,1,9991,0,1,110.0,1,1,1,3,3,119.0,0,0,0,1,1,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9254,1,1,137.0,1,1,38,2,8,122.3,1,0,0,1,1,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,42,1,9238,1,1,133.1,1,1,19,4,9,134.0,0,0,0,1,0,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,38,37,9,7,130.0,1,0,0,1,1,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,Graduate +5,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,120.0,1,37,37,9,9,111.1,0,0,0,1,0,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,124.0,1,38,19,6,10,126.8,1,0,0,1,0,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,Graduate +2,1,1,9500,1,1,151.0,1,37,38,9,7,134.5,0,0,1,1,0,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,133.0,1,19,37,9,8,121.8,1,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,148.0,1,1,19,4,5,135.1,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,120.0,1,19,38,4,8,122.5,0,0,0,0,1,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9070,1,1,140.0,1,37,37,9,10,118.0,0,0,1,1,1,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,3,133.1,1,9,9,90,90,130.0,0,0,0,1,0,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,150.0,1,34,34,0,0,108.0,0,0,0,1,0,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,1,150.0,1,1,38,3,5,120.0,0,0,0,1,1,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,Enrolled +1,44,1,9085,1,39,150.0,1,38,1,5,5,150.0,0,0,0,1,0,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,1,2,9238,1,1,133.1,1,19,19,9,9,106.0,1,0,0,1,0,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,102.0,1,38,38,9,9,99.6,1,0,0,1,0,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,140.0,1,38,19,9,5,130.0,0,0,1,1,0,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9773,1,1,138.0,1,3,1,2,3,135.9,1,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,1,9,4,150.0,1,0,0,1,1,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,Dropout +1,1,6,9147,1,1,127.0,1,1,19,1,6,120.0,1,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,0,0,0,1,1,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,137.0,1,38,38,4,8,126.5,1,0,0,1,0,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,1,19,4,4,132.6,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,130.0,1,1,1,4,9,150.0,0,0,0,1,1,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,146.0,1,3,1,1,3,149.2,1,0,0,1,0,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,129.0,1,38,38,6,6,118.5,1,0,0,1,0,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,131.0,1,19,3,3,2,126.1,1,0,0,1,0,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,Enrolled +1,39,1,9085,1,43,160.0,1,3,39,2,3,172.0,0,0,0,1,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,39,1,9670,1,1,133.1,1,1,1,4,4,112.9,0,0,0,1,0,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,Dropout +2,39,1,9003,1,1,150.0,1,37,37,9,6,140.0,0,0,0,1,1,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,127.0,1,37,38,9,7,115.8,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,133.1,1,1,37,5,9,143.0,1,0,1,1,0,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,9,138.4,1,0,1,1,0,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9070,1,1,125.0,1,1,1,4,4,132.0,0,0,0,0,0,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,5,9130,1,1,160.0,1,3,1,2,9,150.2,1,0,0,1,0,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,1,110.0,1,37,37,9,4,160.0,0,0,0,1,0,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,135.0,1,19,37,5,7,121.4,0,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9670,1,1,135.0,1,19,19,7,10,121.4,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,125.0,1,1,38,4,9,118.4,1,0,0,1,0,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,145.0,1,38,37,5,6,127.5,1,0,0,1,0,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,Graduate +1,43,3,171,1,1,140.0,1,37,38,7,7,143.4,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,134.0,1,37,19,9,10,141.4,1,0,0,1,0,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,130.0,1,29,38,9,8,122.0,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,109.0,1,19,19,4,9,104.1,1,0,1,0,0,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,116.0,1,34,34,0,0,127.0,1,0,0,1,1,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,3,8014,0,19,100.0,1,37,37,9,9,120.0,1,0,0,1,1,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9238,1,1,122.0,1,37,38,4,7,118.2,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,8014,0,1,100.0,1,12,5,9,4,116.5,0,0,1,0,0,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,122.0,1,19,19,193,194,112.6,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,42,3,9500,1,1,136.0,1,1,1,4,4,148.8,1,0,0,1,0,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,137.0,1,19,1,9,9,132.8,0,0,0,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,130.0,1,37,37,6,6,111.9,0,0,1,1,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9254,1,1,116.0,1,19,38,5,5,116.0,1,0,0,1,0,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9500,1,1,131.0,1,1,3,3,2,121.2,1,0,0,1,0,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,141.0,1,1,19,3,3,131.9,1,0,0,1,0,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,120.0,1,37,37,9,10,122.6,0,0,0,1,0,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,Dropout +1,18,5,9119,1,1,136.0,1,3,2,2,3,125.2,1,0,0,1,1,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,125.0,1,19,1,7,4,122.6,0,0,0,1,1,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,139.0,1,19,37,9,9,131.5,1,0,0,1,0,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,Graduate +1,5,1,9853,1,1,119.0,1,1,38,5,8,118.3,1,0,0,1,0,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9773,1,1,125.0,1,1,38,5,6,115.9,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,126.0,1,1,19,4,8,120.1,1,0,0,1,0,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,Graduate +1,17,1,9085,1,1,125.0,1,1,37,4,9,117.0,1,0,0,1,0,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,135.0,1,19,38,7,5,121.0,0,0,0,1,0,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,138.0,1,38,37,3,3,133.1,0,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,148.0,1,19,37,9,5,130.9,0,0,0,0,1,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,145.0,1,12,1,4,10,139.8,1,0,0,1,0,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,118.0,1,37,37,3,5,110.0,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9147,1,1,99.0,1,3,1,3,3,99.7,1,0,1,0,0,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,17,2,9556,1,1,137.0,41,1,1,7,7,124.4,1,0,0,1,0,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,Graduate +1,17,3,9853,1,1,133.1,1,34,34,0,0,115.0,0,0,0,1,0,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,123.0,1,37,38,9,9,113.9,1,0,1,0,0,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,1,4,9238,1,1,125.0,1,19,38,9,6,114.9,1,0,1,1,0,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,Enrolled +1,18,1,8014,0,1,137.0,1,1,1,4,3,123.0,0,0,1,1,0,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,Graduate +1,43,1,8014,0,1,131.0,1,19,37,8,5,125.0,0,0,0,1,1,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9147,1,3,150.0,1,6,27,1,7,150.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,9,4,117.0,0,0,0,1,0,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,133.1,1,37,1,9,10,100.0,0,0,0,1,0,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,Dropout +1,1,3,9670,1,1,121.0,1,1,19,5,5,111.9,1,0,0,1,1,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,133.1,1,1,19,3,3,112.0,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,43,1,9991,0,1,140.0,1,1,1,6,6,100.0,0,0,0,1,1,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,Graduate +2,42,1,9556,1,1,110.0,1,37,37,9,6,140.0,0,0,0,1,1,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,130.0,1,1,1,4,4,124.8,0,0,0,1,0,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,138.0,1,38,37,9,6,126.8,1,0,0,1,1,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,127.0,1,2,37,9,9,115.8,1,0,1,0,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9085,1,1,170.0,1,1,1,4,5,166.6,0,0,1,0,0,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,130.0,1,1,1,4,4,130.0,1,1,0,1,1,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,3,1,2,8,100.0,1,0,0,1,1,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9670,1,1,106.0,1,3,1,2,3,105.7,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,43,1,9556,1,1,140.0,1,37,37,9,9,128.0,1,0,0,0,0,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,127.0,1,1,4,9,10,121.8,0,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,134.0,1,1,1,9,6,130.9,0,0,1,1,0,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,133.1,1,37,37,7,4,132.0,0,0,0,1,1,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,110.0,1,12,3,5,2,100.0,1,0,0,1,1,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,6,9238,1,1,113.0,1,1,38,194,163,112.3,1,0,1,1,0,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,118.0,1,19,19,5,7,121.2,0,0,0,1,1,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,51,1,9773,1,1,158.0,1,1,19,8,8,117.1,1,0,0,1,1,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,Dropout +1,17,1,9070,1,1,119.0,1,37,38,9,8,124.6,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,111.0,1,19,19,3,10,117.7,0,0,0,1,0,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,140.0,1,3,1,5,9,130.0,0,0,0,1,1,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,122.0,1,3,1,9,10,114.7,0,0,0,1,0,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,Graduate +2,39,1,9238,1,19,133.1,1,1,2,4,6,130.0,0,0,0,1,0,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9500,1,1,131.0,1,38,1,5,7,118.4,1,0,0,1,0,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Dropout +1,43,5,9853,1,1,150.0,1,34,34,0,0,150.2,1,0,0,0,0,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,140.0,1,37,19,9,9,166.0,1,0,1,1,1,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9085,1,1,133.1,1,19,37,9,6,130.0,1,0,0,1,0,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,Graduate +1,1,4,9147,1,1,120.0,1,38,38,5,10,111.3,0,0,0,1,1,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,Enrolled +1,1,5,9500,1,1,125.0,1,3,19,4,8,120.3,1,0,0,1,0,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,Enrolled +1,17,2,9556,1,1,136.0,1,1,1,9,9,128.3,0,0,0,1,0,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,133.1,1,38,19,5,5,128.0,0,0,0,1,0,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,9,133.1,1,37,37,5,3,110.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9254,1,1,118.0,1,19,1,4,4,115.9,1,0,0,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,134.0,1,19,37,7,7,136.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,130.0,1,37,37,9,7,119.9,0,0,0,1,0,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9773,1,1,153.0,1,34,34,99,99,133.1,1,0,1,1,0,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,10,133.1,1,12,36,90,90,128.2,0,0,0,0,1,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,1,9991,0,1,112.0,1,43,40,2,2,106.4,0,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,122.0,1,3,3,2,2,122.0,1,0,0,1,0,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,137.0,1,1,19,4,3,121.3,1,0,0,1,1,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,19,133.1,1,3,1,2,5,103.0,0,0,0,1,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,136.0,1,1,19,9,9,131.5,0,0,0,1,0,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,154.0,1,1,3,4,2,164.9,0,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,6,9147,1,1,129.0,1,19,1,9,4,122.0,1,0,0,1,1,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,132.0,1,19,19,9,7,128.0,1,0,0,1,1,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,Graduate +2,39,1,9773,1,19,133.1,1,19,19,9,4,131.0,0,0,1,0,1,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,Dropout +4,39,1,8014,0,1,160.0,1,37,37,5,5,126.0,0,0,0,1,0,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,16,2,9238,1,1,126.0,1,38,37,3,5,127.1,1,0,0,1,0,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9254,1,1,111.0,1,1,19,5,7,109.3,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,133.1,1,37,37,3,10,108.0,0,0,0,1,0,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,Graduate +1,1,4,9773,1,1,140.0,22,1,37,3,9,130.5,1,0,0,1,0,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,140.0,1,1,1,9,5,140.0,0,0,0,1,0,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,Dropout +1,17,3,9670,1,1,125.0,1,1,3,4,3,117.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,150.0,1,37,38,9,9,131.5,1,0,0,1,0,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,5,100.0,0,0,0,0,1,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9773,1,1,133.0,1,19,19,7,7,134.4,1,0,0,1,1,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,135.0,1,19,37,9,9,128.0,1,0,0,1,0,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,5,9670,1,1,115.0,1,1,19,5,5,117.1,0,0,0,1,0,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,Enrolled +1,51,1,9003,1,39,130.0,1,1,19,4,4,120.0,1,0,1,0,1,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,Dropout +1,1,3,9773,1,1,117.0,1,38,19,7,7,110.4,1,0,1,0,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9773,1,1,127.0,1,19,38,8,3,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,38,37,1,1,115.0,1,0,0,1,0,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,18,2,9853,1,1,123.0,1,1,3,9,2,123.7,1,0,1,0,0,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,Dropout +1,1,3,9853,1,1,122.0,1,3,3,2,2,112.6,1,0,0,1,0,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,17,3,9254,1,1,127.0,1,37,37,9,6,123.5,1,0,0,1,0,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,141.0,1,37,37,9,9,136.3,1,0,0,1,1,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,140.0,1,3,3,2,2,124.3,0,0,0,0,1,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,125.0,1,1,3,4,1,121.9,1,0,0,1,1,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,Dropout +1,17,1,9070,1,1,134.0,1,1,1,5,0,133.3,1,0,0,1,1,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9670,1,1,127.0,22,37,37,9,9,127.0,1,0,0,1,1,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,Graduate +1,42,1,9853,1,1,120.0,1,37,38,3,3,113.7,0,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,3,9670,1,1,121.0,1,3,19,2,8,122.4,1,0,0,1,1,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,Enrolled +1,1,3,171,1,1,139.0,1,19,19,5,3,128.2,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,42,1,9085,1,1,100.0,1,1,38,4,9,100.0,1,0,0,1,0,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,10,1,9500,1,1,140.0,24,3,3,2,9,140.0,1,0,1,0,0,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,132.0,1,37,19,9,9,131.0,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,124.0,1,1,1,4,4,127.9,1,0,0,1,1,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9119,1,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9773,1,1,117.0,1,38,38,9,9,111.1,0,0,1,1,1,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,19,133.1,1,19,37,9,9,149.4,0,0,0,0,1,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,1,1,161.9,0,0,0,1,1,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,140.0,1,38,37,4,7,130.0,1,0,0,0,0,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,43,1,171,1,1,145.0,1,19,38,9,9,100.0,0,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9773,1,1,120.0,1,37,38,9,3,155.5,0,0,0,1,1,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,121.8,0,0,0,0,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9130,1,3,140.0,1,5,4,2,0,140.0,0,0,1,0,0,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,Dropout +1,51,1,171,1,1,128.0,1,2,1,3,3,131.2,1,0,0,1,1,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,12,110.0,1,37,37,7,9,120.0,0,0,0,1,0,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,150.0,1,2,3,3,2,140.8,0,0,0,1,0,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,Enrolled +1,43,1,9070,1,1,125.0,1,19,19,7,8,133.4,1,0,0,1,1,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,Enrolled +1,1,5,171,1,1,160.0,1,1,1,4,4,139.7,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,1,120.0,1,1,38,9,9,150.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,154.0,1,19,19,3,3,142.0,0,0,0,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9254,1,1,110.0,1,4,19,4,3,114.8,1,0,0,0,1,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9119,1,1,140.0,1,34,34,9,9,140.0,0,0,0,0,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,125.0,1,1,1,4,2,134.1,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9254,1,40,130.0,1,1,1,3,6,130.0,0,0,0,1,0,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9254,1,1,122.0,1,37,37,9,3,124.5,1,0,0,1,0,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,130.0,1,1,3,9,2,128.6,1,0,0,1,0,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,Graduate +1,17,4,9670,1,1,122.0,1,3,1,2,3,119.6,1,0,0,1,1,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,Graduate +1,44,3,9085,1,39,150.0,1,1,19,4,1,150.0,1,0,0,1,0,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,19,37,9,9,130.0,1,0,0,1,1,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,133.1,1,38,19,4,7,98.0,1,0,0,1,1,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,Enrolled +1,17,2,9556,1,1,125.0,1,38,19,7,7,121.5,1,0,0,1,0,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,Dropout +2,1,4,9500,1,1,143.0,1,38,38,5,5,128.7,1,0,0,1,0,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,1,100.0,1,1,19,4,8,122.0,0,0,0,1,0,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,Graduate +1,51,1,9500,1,1,170.0,1,1,1,4,10,125.0,0,0,0,1,1,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,Graduate +1,18,4,9500,1,1,137.0,1,3,1,3,4,126.7,1,0,0,1,0,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,19,133.1,1,38,38,9,8,106.0,1,0,0,1,1,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,40,130.0,1,19,1,3,4,152.0,1,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9085,1,39,140.0,1,1,39,3,9,140.0,1,0,0,1,0,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9773,1,1,133.1,1,3,1,4,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +2,43,1,9853,1,1,110.0,1,37,37,7,7,100.0,0,0,0,1,1,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,Graduate +1,7,1,9119,1,3,120.0,1,19,19,1,1,120.0,0,0,0,0,1,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,1,130.0,1,34,34,99,99,114.8,0,0,0,1,0,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,140.0,1,37,3,9,10,172.0,0,0,0,1,1,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,Enrolled +1,17,2,9670,1,1,123.0,1,34,37,0,0,114.6,1,0,1,0,0,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,Dropout +1,43,2,9500,1,1,136.0,1,19,1,9,10,124.1,0,0,0,1,1,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,116.0,1,1,1,1,1,110.8,1,0,0,1,0,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9003,1,1,133.1,1,37,37,4,7,130.0,0,0,1,0,1,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,Dropout +1,1,3,9085,1,1,158.0,1,1,19,9,9,153.6,1,0,0,1,0,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,Graduate +1,17,4,9773,1,1,121.0,1,1,19,9,8,120.3,1,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,5,3,9085,1,1,141.0,1,1,19,7,5,128.8,1,0,0,1,0,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,Enrolled +1,18,4,9556,1,1,127.0,1,1,38,4,7,121.8,1,0,0,1,0,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,110.0,1,34,34,0,0,114.6,1,0,0,1,0,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9085,1,1,128.0,1,38,19,8,8,117.2,0,0,0,1,1,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,143.0,1,1,38,3,3,133.2,1,0,0,1,0,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,Graduate +1,1,4,9853,1,1,134.0,1,19,1,5,9,127.4,1,0,0,1,0,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Enrolled +1,1,1,9670,1,1,133.1,1,3,1,1,7,155.0,0,0,0,1,0,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,114.0,1,19,38,9,7,129.1,0,0,0,1,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,149.0,1,19,37,7,4,134.3,0,1,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,130.0,1,1,38,3,5,128.6,1,0,0,1,1,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,42,1,9147,1,1,139.0,1,3,38,2,5,112.3,1,0,0,1,0,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,Enrolled +1,1,3,9773,1,1,130.0,1,19,19,9,9,123.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,38,38,9,5,100.0,0,0,0,1,0,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,Enrolled +6,39,1,8014,0,1,133.1,1,37,1,9,7,114.8,0,0,0,1,0,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,121.0,1,1,38,4,9,114.4,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,18,1,9238,1,1,122.0,1,38,38,9,7,114.7,0,0,1,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9773,1,1,120.0,1,1,1,2,5,127.0,1,0,0,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,4,1,2,8,120.0,0,0,0,1,1,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,3,9500,1,1,143.0,1,38,1,9,5,133.8,1,0,0,1,0,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,130.0,1,1,19,9,7,133.8,0,0,1,1,0,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,Graduate +2,39,1,9556,1,1,100.0,1,37,37,9,9,120.0,0,0,0,1,0,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,133.1,1,1,19,5,4,102.5,0,0,0,1,0,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9003,1,1,111.0,1,1,3,4,2,162.4,0,0,1,0,1,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,133.1,1,19,1,9,3,107.0,1,0,0,1,0,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,128.0,1,19,1,4,4,124.3,1,0,0,1,1,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,140.0,1,36,14,9,10,130.0,1,0,0,1,1,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,150.0,1,38,19,7,10,134.6,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9070,1,1,134.0,1,34,1,5,7,129.8,1,0,0,1,0,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,150.0,1,37,37,9,3,150.0,1,0,0,1,1,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,Dropout +2,39,1,9238,1,1,126.6,1,38,38,9,7,107.5,0,0,1,1,0,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,120.0,1,37,37,9,7,106.8,0,0,0,1,0,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9254,1,1,117.0,1,1,1,5,5,116.3,1,0,0,1,1,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,130.0,1,19,19,5,5,157.0,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9556,1,1,133.1,1,44,40,2,2,115.5,0,0,0,1,0,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,133.1,1,3,1,2,4,125.0,0,0,0,1,1,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,9,9,100.0,0,0,0,0,1,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9500,1,1,141.0,1,37,1,9,4,127.3,1,0,0,1,0,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,117.0,1,38,38,175,183,113.2,1,0,1,1,0,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,133.1,1,37,37,7,7,124.5,0,0,0,0,1,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,Dropout +1,17,2,9070,1,1,133.1,1,37,38,9,10,178.0,1,0,0,1,1,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,19,9,9,115.0,1,0,0,1,1,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,146.0,1,1,1,3,4,128.2,0,0,1,1,0,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,4,9070,1,1,128.0,1,1,1,9,10,136.1,1,0,1,0,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,Dropout +5,39,1,9500,1,3,140.0,1,37,38,9,9,160.0,0,0,0,1,0,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,8,121.0,0,0,1,0,0,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,140.0,1,2,1,2,3,140.0,1,0,0,1,0,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,3,9670,1,1,126.0,1,37,37,0,0,136.5,1,0,0,1,0,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,140.0,1,19,37,9,9,130.2,1,0,0,1,0,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,1,3,1,2,133.0,0,0,0,1,0,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,136.0,1,19,38,9,9,121.7,1,0,0,1,1,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,4,9085,1,1,106.0,1,37,1,3,9,106.0,0,0,0,1,0,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,Enrolled +1,1,3,9500,1,1,135.0,1,1,37,7,7,120.5,1,0,0,1,0,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,115.0,1,19,19,7,7,115.0,1,0,0,1,0,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9238,1,1,160.0,1,38,1,9,3,124.0,0,0,1,1,1,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,129.0,1,38,38,5,5,120.8,1,0,0,1,0,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,160.0,41,37,19,9,9,160.0,0,0,0,1,0,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,132.0,1,1,19,7,5,129.9,1,0,0,1,1,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,136.0,1,37,38,9,8,139.2,1,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,127.0,1,19,37,9,7,121.3,1,0,0,1,0,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9119,1,1,142.0,1,1,38,4,3,129.8,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,5,8,133.2,0,0,0,0,1,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,Dropout +1,1,1,9147,1,1,150.0,1,1,19,5,5,137.8,1,0,0,1,1,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,135.0,1,3,1,2,4,129.8,1,0,0,1,1,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,Graduate +1,43,2,9773,1,1,132.0,1,19,19,0,0,127.1,0,0,0,1,1,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,3,9500,1,1,140.0,1,3,2,3,3,126.4,1,0,0,1,0,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,Dropout +2,39,2,9119,1,19,133.1,1,37,37,7,7,118.0,0,0,0,0,1,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,110.0,1,3,4,2,2,110.0,1,0,0,1,1,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,Dropout +2,39,1,9500,1,38,133.1,1,37,37,9,3,146.6,0,0,0,1,1,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,146.0,1,1,3,4,1,135.2,1,0,0,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,3,5,2,2,135.8,0,0,1,1,1,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9773,1,19,100.0,1,37,37,0,0,163.5,0,0,1,0,1,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,7,113.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,143.0,1,3,3,9,7,129.0,1,0,0,1,1,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,Graduate +1,1,2,9853,1,1,117.0,1,1,38,4,9,109.7,1,0,0,1,0,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9130,1,2,133.1,6,42,1,4,9,100.0,0,0,0,1,1,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,115.8,0,0,1,0,1,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9773,1,1,167.0,1,38,38,6,7,153.0,1,0,0,1,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,51,1,9238,1,1,141.0,1,1,1,5,9,125.0,0,0,0,1,1,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,4,9500,1,1,132.0,1,38,19,5,7,125.5,0,0,0,1,0,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,Graduate +1,1,1,9119,1,1,132.0,1,1,12,3,3,133.1,1,0,0,1,1,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,149.0,1,1,1,4,4,129.3,1,0,0,1,1,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,142.5,0,0,0,1,0,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,Enrolled +1,1,6,9773,1,1,133.1,1,1,37,3,3,100.0,1,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,138.0,1,37,37,9,6,145.0,1,0,0,1,0,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,19,19,3,6,124.3,1,0,0,1,0,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,135.0,1,37,37,9,7,132.6,1,0,0,1,0,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,159.0,1,34,26,0,6,160.1,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,133.1,1,37,37,6,8,100.0,0,0,1,1,0,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9070,1,1,153.0,1,3,3,1,2,146.7,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,43,1,171,1,2,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,141.0,1,19,19,9,8,142.8,0,0,0,1,0,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,39,2,9556,1,1,130.0,1,19,19,4,5,100.0,0,0,0,1,1,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,120.0,1,38,19,3,5,120.0,0,0,0,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,2,9147,1,1,120.0,1,37,37,9,9,104.0,0,0,0,0,1,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,150.0,1,38,38,9,9,132.0,1,0,0,1,0,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,142.0,1,38,38,9,9,132.9,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9085,1,1,160.0,1,4,19,2,5,162.1,1,0,0,1,0,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,8,130.2,1,0,0,1,0,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,118.0,1,1,1,9,9,111.0,0,0,0,0,1,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,119.0,1,37,37,10,6,119.7,1,0,0,1,0,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,Enrolled +1,17,2,171,1,1,137.0,1,1,1,4,1,143.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,18,3,9085,1,1,149.0,103,1,1,9,9,132.2,1,0,0,1,0,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,130.0,1,37,37,90,90,125.1,0,0,0,1,0,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,Graduate +4,17,5,8014,0,1,100.0,1,19,19,90,90,107.0,0,0,0,1,0,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,19,133.1,1,38,19,9,10,142.7,0,0,1,1,1,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,139.0,1,19,37,5,5,125.5,0,0,0,1,0,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,133.0,1,4,1,5,5,131.6,0,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,148.0,1,19,19,9,3,125.0,1,0,0,1,0,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,110.0,1,37,37,9,9,110.3,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,53,1,9003,1,42,130.0,1,38,38,9,9,130.0,1,0,1,1,1,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,Enrolled +1,1,4,9070,1,1,140.0,1,4,19,2,10,125.0,1,0,0,1,1,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9003,1,39,140.0,1,19,1,5,5,140.0,0,0,0,1,0,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,Enrolled +1,1,4,9070,1,1,136.0,1,37,37,9,8,136.7,1,0,0,1,0,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,1,5,9773,1,1,125.0,1,37,3,5,2,126.1,1,0,0,1,1,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,8014,0,1,126.0,1,37,38,9,10,119.4,0,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,123.0,1,1,3,2,2,118.8,0,0,0,1,1,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9500,1,1,144.0,1,1,37,9,9,127.5,1,0,0,1,0,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,125.0,1,38,37,8,7,131.7,1,0,0,1,1,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,144.0,1,37,37,8,8,138.4,0,0,0,1,0,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,160.0,1,37,37,3,4,97.0,0,0,0,1,0,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,37,38,9,9,125.0,1,0,0,1,0,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,117.0,1,37,37,9,9,109.3,0,0,0,0,0,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,3,130.0,1,37,37,9,9,146.2,0,0,0,1,0,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,150.0,1,37,37,9,9,130.3,0,0,0,1,0,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,Graduate +2,39,2,8014,0,19,100.0,1,37,37,4,7,100.0,0,0,1,1,0,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,38,133.1,1,38,37,4,8,95.5,0,0,0,1,1,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,120.7,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9119,1,19,120.0,1,37,37,9,4,98.6,0,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9130,1,1,120.0,1,19,37,1,9,116.1,1,0,0,1,1,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9500,1,1,136.0,1,1,1,4,9,128.5,1,0,0,1,0,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,132.0,1,38,37,7,7,131.3,1,0,0,1,0,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,115.0,1,38,38,9,8,108.4,1,0,0,1,0,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,120.0,1,37,37,9,9,98.7,0,0,0,1,1,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,120.0,1,37,37,9,9,155.8,0,0,0,1,1,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,151.0,1,19,1,5,0,144.4,1,0,0,1,0,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,Graduate +1,43,2,9147,1,1,131.0,1,19,37,5,9,123.7,1,0,0,1,0,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,Enrolled +1,17,4,9085,1,1,128.0,1,38,37,4,9,117.9,1,0,0,1,0,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,8014,0,12,133.1,1,37,1,9,10,112.5,0,0,0,1,1,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,19,133.1,1,37,37,4,8,140.0,0,0,0,1,0,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,7,1,9147,1,2,150.0,1,3,37,2,5,150.0,1,0,1,0,0,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,2,9147,1,1,102.0,1,37,38,191,143,101.7,1,0,0,1,0,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,128.0,1,19,1,4,1,118.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,133.1,1,19,1,4,8,144.3,0,0,0,1,1,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,5,9254,1,1,128.0,1,19,1,7,10,116.5,1,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,140.0,1,19,19,7,5,135.1,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,18,2,9500,1,1,129.0,1,38,37,5,5,119.0,1,0,0,1,0,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,3,1,3,3,131.5,1,0,0,1,0,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,143.0,1,3,3,2,5,144.8,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,127.0,1,37,37,9,8,123.2,1,0,0,1,0,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9500,1,1,125.0,1,37,37,9,7,123.6,1,0,0,1,0,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,138.0,1,1,38,3,9,123.0,1,0,0,1,0,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,139.0,1,38,38,9,9,145.0,1,0,0,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,121.0,1,37,19,6,7,116.8,1,0,0,1,0,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,2,9085,1,1,123.0,1,1,19,4,9,113.6,1,0,0,1,0,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,17,6,9773,1,1,126.0,1,1,19,5,5,119.0,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,4,9119,1,1,139.0,1,37,19,9,4,133.1,1,0,0,1,1,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,158.0,1,1,38,3,6,155.2,0,0,0,1,1,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,8014,0,1,133.1,1,19,1,1,1,118.0,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,136.0,1,22,30,0,8,135.7,1,0,0,1,0,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,120.0,1,37,37,9,9,110.0,0,0,0,0,1,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,124.0,1,19,19,7,9,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,Enrolled +5,7,1,9991,0,2,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,4,9238,1,1,123.0,1,38,1,4,10,129.0,1,0,0,1,0,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,4,9119,1,1,135.0,1,38,37,5,7,126.6,1,0,0,1,1,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,129.0,1,5,3,5,7,124.8,1,0,0,1,0,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,Graduate +1,17,5,9147,1,1,127.0,1,1,38,4,5,124.6,1,0,0,1,0,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,135.0,1,1,1,4,4,118.5,0,0,0,1,0,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,171,1,1,142.0,1,3,1,2,6,139.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9147,1,1,133.1,1,19,19,9,9,119.8,0,0,0,1,1,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,123.0,1,1,37,9,9,132.1,0,0,0,1,0,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9853,1,1,115.0,1,3,37,2,5,108.7,1,0,0,1,0,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,12,133.1,1,37,34,90,90,110.7,1,0,0,1,0,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,155.0,1,4,3,1,1,144.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9254,1,1,105.0,1,1,19,9,6,106.1,1,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,150.0,1,19,19,3,4,135.0,0,0,0,1,0,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,152.0,1,37,37,5,7,136.3,0,0,0,1,0,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,34,34,0,0,120.5,1,0,0,1,1,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,140.0,1,1,37,4,5,123.6,1,0,0,1,0,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,120.0,1,37,37,9,9,150.1,1,0,0,1,1,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,144.0,1,37,38,9,9,126.9,0,0,0,1,0,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,120.0,1,37,37,9,9,128.2,0,0,0,0,1,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,Dropout +1,18,2,9147,1,1,115.0,1,1,37,5,5,108.7,1,0,0,1,0,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,140.0,1,19,19,4,4,140.0,1,0,0,0,1,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,1,1,3,7,140.0,1,0,0,1,0,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9500,1,1,129.0,1,19,19,5,5,119.6,1,0,0,1,0,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,Graduate +1,17,6,9773,1,1,141.0,1,37,37,5,5,127.7,1,0,0,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,137.0,1,19,37,4,7,126.3,1,0,0,1,0,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,1,168.0,1,1,41,9,3,153.9,0,0,1,0,1,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,133.0,1,37,37,9,9,121.8,1,0,0,1,0,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,119.0,1,2,1,4,3,113.1,1,0,0,1,0,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,142.0,1,38,19,141,171,115.0,0,0,0,1,0,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,4,9773,1,1,138.0,1,37,19,5,7,133.5,1,0,0,0,0,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +2,7,1,8014,0,3,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,133.0,1,3,19,2,5,130.8,1,0,0,1,0,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,137.0,1,38,19,152,171,131.1,1,0,0,1,0,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9119,1,1,130.0,1,1,38,3,3,129.3,0,0,0,1,1,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Graduate +1,43,1,9773,1,1,126.0,1,1,37,3,0,110.0,0,0,1,1,0,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,116.0,1,1,12,5,8,110.4,1,0,0,1,1,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,1,1,4,10,110.0,0,0,1,1,0,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,5,9238,1,1,134.0,1,38,37,9,9,126.0,0,0,1,0,0,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,Dropout +2,39,1,9147,1,1,130.0,1,1,19,9,9,109.9,0,0,0,0,0,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9085,1,1,133.1,41,37,37,9,9,109.6,0,0,0,1,0,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,1,140.0,0,0,0,1,1,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,Enrolled +2,39,1,9991,0,19,133.1,1,38,38,90,90,121.7,1,0,0,1,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,143.0,1,1,3,4,7,129.7,1,0,0,1,0,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,133.0,1,1,19,9,6,121.5,1,0,0,1,0,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,133.0,1,38,37,9,9,125.3,1,0,0,1,0,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,Graduate +1,42,1,9991,0,1,160.0,1,1,2,4,3,120.0,0,0,0,1,0,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,Graduate +2,39,2,9556,1,1,133.1,105,1,3,9,2,152.8,1,0,0,1,0,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,123.0,1,1,1,4,6,118.8,1,0,0,1,0,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,122.0,1,3,19,2,3,112.9,0,0,0,1,0,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,Graduate +1,1,5,9853,1,1,123.0,1,1,12,4,9,113.2,1,0,0,1,0,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,140.0,1,37,37,9,9,141.5,1,0,1,0,0,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,129.0,1,19,19,4,8,127.3,1,0,0,1,0,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,1,130.0,1,37,37,6,6,110.0,0,0,0,1,0,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,Enrolled +4,39,1,8014,0,19,133.1,1,37,37,9,9,95.0,0,0,1,0,0,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9853,1,1,127.0,1,37,19,9,8,137.5,1,0,0,1,0,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,142.0,1,38,37,5,7,128.8,1,0,0,1,0,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,Graduate +1,17,2,9147,1,1,142.0,1,19,19,4,8,127.3,0,0,0,1,0,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +3,39,1,9991,0,1,120.0,1,37,1,9,2,170.0,0,0,0,1,1,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,138.0,1,19,37,4,9,141.0,0,0,0,1,1,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,132.0,1,1,38,9,9,120.1,1,0,0,1,1,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,140.0,1,1,1,2,7,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,121.0,1,37,19,9,10,113.7,0,0,0,1,0,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,Enrolled +1,39,1,8014,0,38,133.1,1,1,1,4,4,107.5,0,0,1,0,1,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,150.0,1,1,1,5,1,155.6,0,0,0,1,0,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,150.0,1,37,37,9,6,131.1,0,0,0,1,0,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,100.0,1,3,19,1,1,117.9,0,0,0,0,1,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,2,9991,0,1,150.0,1,37,37,9,9,120.0,0,0,0,1,0,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,150.0,1,1,38,4,9,150.0,0,0,0,1,1,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,Enrolled +2,43,1,9130,1,9,133.1,1,34,34,0,0,128.2,0,0,0,1,1,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,141.0,1,1,1,90,3,127.8,0,0,0,1,0,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,116.0,1,3,3,0,1,108.7,1,0,0,1,1,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,Dropout +2,39,1,9500,1,1,140.0,1,19,19,9,7,110.5,0,0,0,1,0,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9254,1,19,133.1,1,34,34,0,0,120.0,0,0,1,0,1,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,133.1,1,37,37,191,172,115.2,0,0,0,1,0,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,6,160.0,0,0,0,1,0,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,133.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9556,1,1,131.0,1,19,38,9,7,128.5,0,0,0,1,0,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,160.0,1,37,38,9,7,161.0,1,0,0,1,0,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,136.0,1,3,3,1,2,152.5,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9853,1,1,114.0,1,19,37,5,5,109.5,1,0,0,1,0,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,150.0,1,37,37,9,7,122.5,0,0,0,1,1,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,Dropout +1,44,1,9991,0,39,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,8014,0,42,140.0,1,19,37,134,193,138.0,1,0,1,1,0,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,127.0,1,2,19,3,9,121.5,0,0,0,1,1,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,133.1,1,19,19,3,3,125.3,0,1,0,1,1,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,4,9670,1,1,125.0,1,4,19,2,5,118.0,1,0,0,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,Graduate +2,42,1,9070,1,1,170.0,1,37,25,0,4,148.5,0,0,0,1,1,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,Dropout +1,17,5,9254,1,1,121.0,1,1,19,4,7,116.5,1,0,0,0,1,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,120.0,1,19,38,5,9,130.2,0,0,0,1,0,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,140.0,1,19,37,9,9,140.7,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,140.0,1,19,19,5,9,131.3,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,42,1,9119,1,1,140.0,1,3,3,3,2,133.6,1,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,8014,0,1,150.0,1,19,2,4,6,148.0,0,0,0,1,0,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,127.0,1,37,2,9,4,123.2,1,0,0,1,0,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,119.0,1,19,37,9,9,119.4,1,0,0,1,0,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,132.0,1,2,1,4,1,127.8,0,0,0,1,1,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,Dropout +1,42,1,9119,1,1,136.0,1,1,37,5,5,117.5,0,0,0,1,1,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9991,0,1,122.0,1,37,37,9,3,113.6,0,0,0,1,1,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,5,6,137.4,0,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,128.0,1,19,19,5,4,116.5,0,0,0,1,0,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,139.0,1,1,38,6,6,143.6,1,0,1,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9130,1,1,154.0,1,3,3,2,2,137.2,1,0,1,1,1,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,6,9500,1,1,142.0,1,19,37,4,9,131.9,1,0,0,1,0,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Dropout +1,1,2,9773,1,1,131.0,1,19,37,9,10,121.9,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +2,7,1,9130,1,3,120.0,1,3,3,1,1,128.2,0,0,0,1,0,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,19,133.1,1,37,37,9,9,150.3,0,0,0,1,0,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,125.0,1,37,37,5,5,124.0,0,0,0,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,135.0,1,37,19,9,9,125.2,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,9,124.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,175.0,1,3,38,2,10,157.5,1,0,0,1,0,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,139.0,1,1,1,4,10,140.7,0,0,0,1,1,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,Dropout +1,1,4,9500,1,1,128.0,1,1,1,4,10,125.2,1,0,0,1,1,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,150.0,1,1,37,1,1,131.5,1,0,0,1,0,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,168.0,1,38,1,9,10,166.0,1,0,0,1,0,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,Graduate +1,51,1,9070,1,1,125.0,1,42,3,125,124,130.0,1,0,0,1,1,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,135.0,1,1,38,4,5,127.5,1,0,0,1,0,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,Graduate +1,18,1,9119,1,1,148.0,1,3,19,3,5,147.7,0,0,0,1,1,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9773,1,1,130.0,109,19,1,9,9,126.9,1,0,0,1,0,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,125.0,1,19,38,3,7,114.9,0,0,0,1,0,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,Graduate +1,7,1,9119,1,3,130.0,1,37,37,9,9,130.0,0,0,0,0,1,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9853,1,1,130.0,1,37,19,7,3,140.0,0,0,1,1,0,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,112.0,1,3,1,3,5,111.0,0,0,0,1,0,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,37,38,193,181,125.9,0,0,0,1,0,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,Graduate +1,42,1,9119,1,1,120.0,1,34,34,0,0,128.2,1,0,0,1,1,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,19,133.1,1,37,37,9,9,117.2,0,0,0,1,0,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9147,1,1,131.0,1,19,38,9,7,132.4,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9003,1,1,180.0,1,1,1,4,8,179.6,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,5,9119,1,1,135.0,1,37,37,90,90,122.1,1,0,0,1,1,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.0,1,1,38,5,10,131.3,1,0,0,1,0,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,126.0,1,37,19,5,5,119.3,0,0,0,1,0,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,110.0,1,19,37,9,6,120.0,0,0,1,0,1,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9556,1,1,130.0,1,37,37,9,9,159.0,1,0,0,1,0,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,141.0,1,19,38,4,5,133.7,1,0,0,1,1,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,1,37,4,6,120.0,0,0,0,1,1,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9085,1,1,123.0,1,3,19,2,9,118.9,0,0,0,1,1,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,17,1,9991,0,1,140.0,1,38,37,6,7,127.3,0,0,0,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,151.0,1,3,1,2,1,129.8,1,0,0,1,1,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,113.0,1,37,37,0,6,128.2,0,0,0,0,0,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9070,1,1,117.0,1,1,37,4,7,127.9,1,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,145.0,1,19,19,9,7,136.6,0,0,0,1,0,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.0,1,34,37,4,9,134.4,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,9238,1,39,130.0,1,38,38,5,10,126.7,0,0,1,1,0,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9773,1,1,122.0,1,1,1,4,7,116.8,1,0,1,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,3,9147,1,1,124.0,1,1,1,5,3,116.7,1,0,0,1,1,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,38,1,9,4,123.2,0,0,0,1,0,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,Enrolled +1,39,1,9556,1,40,130.0,1,1,1,4,5,145.0,0,0,0,1,0,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,Enrolled +1,43,1,9147,1,1,127.0,25,1,5,9,10,124.2,1,0,0,1,1,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,43,1,9670,1,1,120.0,1,34,34,0,0,128.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9238,1,1,122.0,1,1,3,9,2,112.6,1,0,0,1,1,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,122.0,1,1,1,4,4,119.6,1,0,0,1,0,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,Enrolled +1,17,5,9670,1,1,125.0,1,1,19,9,7,119.4,1,0,0,1,0,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,146.0,1,19,37,9,7,153.0,1,0,0,1,0,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,108.0,1,38,38,7,7,115.0,1,0,1,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,133.1,1,1,1,3,9,138.0,1,0,0,1,0,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,140.0,1,37,37,9,5,140.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,19,133.1,1,2,1,2,4,100.0,0,0,0,1,1,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9147,1,1,129.0,1,38,37,3,5,132.9,1,0,0,1,0,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,149.0,1,3,2,2,5,151.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,135.0,1,19,4,9,2,143.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9147,1,1,158.0,1,19,37,9,7,130.0,1,0,0,1,0,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,Graduate +1,17,6,9556,1,1,122.0,1,1,1,4,5,117.1,1,0,0,1,0,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9556,1,12,133.1,1,34,34,99,99,100.5,0,0,0,1,0,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9003,1,1,123.0,1,37,37,9,9,110.0,0,0,1,0,0,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,138.0,1,3,3,2,2,127.5,1,0,0,1,0,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,Graduate +1,43,1,9500,1,1,121.0,1,38,19,5,5,115.4,1,0,0,1,0,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,Enrolled +1,17,4,9147,1,1,114.0,1,19,19,4,4,109.5,1,0,0,1,1,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,148.0,1,1,1,4,8,145.2,0,0,0,1,1,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,121.0,1,1,1,4,4,123.1,1,0,0,1,1,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,150.0,1,3,3,2,5,154.6,1,0,0,1,0,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,151.0,1,19,38,9,9,157.0,1,0,1,1,0,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,101.0,0,0,0,1,0,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,2,9254,1,1,127.0,1,3,19,3,10,130.9,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,146.0,1,1,1,9,8,149.5,1,0,0,1,1,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9130,1,6,133.1,1,1,29,4,90,123.3,1,0,0,1,0,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,3,3,7,146.5,1,0,1,1,1,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,Enrolled +1,7,1,8014,0,40,120.0,1,37,19,9,3,120.0,0,0,0,1,0,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9853,1,1,125.0,1,37,37,9,9,114.9,1,0,1,0,0,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,2,9773,1,1,140.0,1,1,1,4,3,131.6,0,0,0,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,142.0,1,1,19,9,9,136.1,0,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,113.0,1,1,1,4,4,106.7,1,0,0,1,0,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,130.0,1,1,2,4,2,130.0,0,0,0,1,1,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,39,1,9119,1,1,130.0,1,19,37,9,9,134.0,0,0,0,1,1,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,Enrolled +1,18,1,9500,1,1,123.0,1,37,37,3,3,118.0,1,0,0,1,0,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,Graduate +1,10,2,9085,1,1,163.3,22,19,1,4,9,163.3,0,0,0,1,0,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,5,135.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,136.0,1,4,5,2,2,126.2,0,0,0,1,1,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,150.0,1,1,37,4,8,150.0,1,0,0,0,0,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9085,1,3,140.0,1,19,20,4,90,140.0,1,0,0,1,0,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,43,1,9070,1,1,135.0,1,1,38,3,9,126.4,1,0,0,1,0,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,140.0,1,19,38,7,8,129.9,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,133.1,1,1,1,9,9,155.0,0,0,0,1,0,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,5,9773,1,1,122.0,1,38,38,7,7,123.1,1,0,0,0,0,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,117.0,1,1,1,9,9,109.3,1,0,0,1,0,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9500,1,1,130.0,1,1,38,9,9,125.1,1,0,0,1,0,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,Enrolled +1,1,2,9773,1,1,144.0,1,3,3,3,2,140.2,1,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,145.0,1,1,1,4,10,145.0,0,0,0,1,0,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,Dropout +1,51,1,9070,1,1,143.0,1,1,1,4,4,120.0,1,0,0,1,0,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,145.0,1,1,38,90,8,132.8,1,0,0,0,1,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9556,1,1,120.0,1,38,38,191,193,120.0,0,0,1,1,0,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,148.0,1,19,1,7,5,138.3,1,0,0,1,1,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,146.0,1,3,3,3,6,133.4,1,0,0,1,0,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,Graduate +1,17,1,9130,1,1,131.0,1,12,12,2,8,128.2,1,0,0,1,1,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,6,9556,1,1,115.0,1,19,2,5,3,112.2,1,0,0,1,0,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,Graduate +1,43,1,9556,1,1,126.0,1,2,3,3,2,100.0,0,0,0,1,0,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,Enrolled +1,17,1,9238,1,1,120.0,1,19,37,9,9,113.0,1,0,0,1,0,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,132.0,1,19,38,5,5,118.0,1,0,0,1,0,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,Graduate +2,1,1,9238,1,1,145.0,1,37,34,9,7,139.4,0,0,0,0,0,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,131.0,1,38,38,191,174,125.4,1,0,0,1,0,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,39,1,9119,1,1,120.0,1,37,38,9,10,145.4,0,0,1,1,1,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,Dropout +1,1,1,9130,1,1,138.0,1,4,5,2,2,123.0,1,0,0,1,0,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,127.0,1,5,3,4,4,122.8,1,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,136.0,1,1,1,4,4,127.0,1,0,0,1,0,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,Enrolled +1,17,3,9119,1,1,115.0,1,3,1,3,3,116.1,1,0,0,0,1,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,143.0,1,38,37,4,9,116.5,1,0,0,1,0,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,3,19,3,8,134.9,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,Graduate +1,44,1,9119,1,39,140.0,1,5,41,3,2,140.0,0,0,0,1,1,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,124.0,1,19,19,9,3,115.6,1,0,0,0,1,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9500,1,3,130.0,1,19,38,5,3,130.0,0,0,0,1,0,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,137.0,1,1,1,4,10,124.8,1,0,0,1,1,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,138.0,1,1,3,1,4,127.5,1,0,0,1,1,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,112.0,1,1,1,5,1,111.7,0,0,1,0,1,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,Dropout +1,1,4,9500,1,1,147.0,1,1,1,4,9,124.5,1,0,0,1,0,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,Graduate +1,7,1,9500,1,3,140.0,1,3,19,2,6,140.0,0,0,0,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,121.0,1,19,19,7,7,113.0,1,0,0,1,0,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,8014,0,1,96.0,1,3,1,3,9,100.0,0,0,0,1,0,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,152.0,1,1,38,4,5,144.7,0,0,0,1,0,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,Graduate +2,1,1,9070,1,1,127.0,1,12,19,9,9,123.2,0,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,Graduate +1,1,3,9070,1,1,147.0,1,34,37,5,7,135.8,1,0,0,1,0,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,7,1,9119,1,4,180.0,1,4,3,2,7,180.0,0,0,1,1,1,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,Enrolled +1,1,6,9500,1,1,129.0,1,37,19,9,7,127.8,1,0,0,1,0,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,100.0,1,37,37,7,7,160.0,1,0,0,1,0,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,127.0,1,19,1,5,5,117.6,1,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9003,1,1,110.0,1,1,1,9,4,120.0,0,0,1,0,1,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9773,1,1,143.0,11,19,19,4,9,133.9,1,0,0,1,1,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,160.0,1,37,37,7,7,156.1,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,43,2,9670,1,1,135.0,1,3,19,1,7,123.5,1,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,1,130.0,1,38,3,132,122,100.0,0,0,0,1,1,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,Enrolled +1,15,1,9238,1,1,150.0,26,19,1,9,9,146.5,1,0,1,0,1,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,Graduate +1,17,6,9119,1,1,129.0,1,37,13,4,90,117.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,3,130.0,1,3,3,3,10,147.6,0,0,0,1,1,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,171,1,1,145.0,1,1,1,3,3,140.1,1,0,0,1,0,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,43,3,9254,1,1,135.0,1,3,3,2,2,122.1,0,0,0,1,1,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,171,1,1,140.0,41,1,1,5,7,146.3,1,0,0,1,0,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9070,1,1,126.0,1,38,38,9,8,129.9,1,0,0,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Graduate +1,7,1,9070,1,3,120.0,1,4,4,2,2,120.0,0,0,0,1,1,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,Dropout +1,17,4,9070,1,1,144.0,1,38,1,9,9,137.4,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,125.0,1,3,3,2,3,118.0,1,0,0,1,1,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,Dropout +5,39,1,9238,1,1,130.0,1,19,38,9,10,146.0,0,0,0,1,1,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,5,107.5,0,0,0,1,0,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9773,1,1,130.0,1,1,19,1,3,161.5,0,0,0,1,1,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,140.0,1,19,19,9,4,127.8,1,0,0,1,1,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,113.0,1,1,37,1,10,116.5,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,Graduate +1,1,2,9238,1,1,145.0,1,1,19,4,8,121.4,0,0,0,1,0,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9003,1,19,133.1,1,19,37,9,10,120.0,0,0,1,1,0,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,Enrolled +1,1,1,9085,1,1,150.0,1,12,2,4,2,144.6,0,0,1,0,0,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,40,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,Dropout +1,17,5,9500,1,1,137.0,1,1,1,5,5,132.6,1,0,0,1,0,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,3,19,4,7,119.0,0,0,0,1,1,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,128.0,1,1,1,4,5,124.7,0,0,0,1,1,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,Enrolled +1,39,2,9670,1,19,133.1,1,34,34,0,0,100.0,1,0,0,0,1,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,Dropout +1,39,1,9556,1,1,120.0,1,19,19,4,5,122.8,0,0,0,1,0,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,Dropout +1,1,2,171,1,1,165.0,1,3,3,2,2,163.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,133.8,1,3,37,2,10,184.0,0,0,0,1,0,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,120.0,1,37,19,9,4,148.8,0,0,0,1,0,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,5,9500,1,1,151.0,1,1,1,9,9,127.8,0,0,0,1,0,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,131.0,1,38,19,7,7,125.3,1,0,0,1,0,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,128.0,1,1,1,9,6,120.3,0,0,0,1,1,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,118.0,1,3,1,5,10,113.5,1,0,0,1,0,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,140.0,1,37,37,7,9,126.8,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,117.0,1,38,37,9,9,113.5,1,0,0,1,0,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,135.0,1,19,19,9,9,122.8,1,0,0,1,1,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,151.0,1,37,37,9,7,147.5,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,1,3,4,4,147.5,1,0,0,1,0,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,128.0,1,38,37,9,9,124.9,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9085,1,1,124.0,1,3,19,2,3,113.9,1,0,0,1,0,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,120.0,1,3,19,4,7,119.7,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,171,1,1,147.0,1,1,12,4,4,148.4,1,0,0,1,1,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,136.0,1,19,1,9,8,123.4,1,0,0,1,0,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,123.0,1,3,1,2,5,112.9,0,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,2,9556,1,1,133.1,1,3,1,2,4,136.1,0,0,0,1,1,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,141.0,1,3,1,4,4,142.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9003,1,1,120.0,1,37,37,9,9,120.5,1,0,1,1,1,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,6,140.0,1,0,0,1,1,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,147.0,1,19,1,4,3,138.5,1,0,0,1,0,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,123.0,1,34,34,90,90,113.3,1,0,0,1,0,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,38,4,5,130.4,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,7,7,134.0,0,0,0,1,1,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,38,38,4,7,111.6,1,0,0,1,0,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9119,1,1,148.0,1,19,38,9,7,133.0,0,0,0,1,1,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,128.0,1,3,1,2,1,127.8,0,0,0,1,0,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,172.0,1,38,37,9,9,149.3,0,0,0,1,1,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,138.0,1,37,37,9,8,127.2,1,0,0,1,0,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,140.0,1,3,1,2,6,137.6,1,0,0,1,1,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,110.0,1,37,19,9,3,100.0,0,0,0,1,0,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,2,1,2,4,140.7,1,0,0,1,1,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,137.0,1,3,38,3,5,129.3,1,0,0,1,0,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,136.0,1,38,38,0,7,133.2,1,0,0,1,0,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,145.0,6,34,34,0,0,134.5,1,0,0,1,1,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,147.0,1,19,19,3,10,151.9,1,0,0,1,0,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,118.0,1,37,37,9,9,112.1,1,0,0,1,0,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,Dropout +1,43,1,9773,1,1,122.0,1,1,1,4,5,126.9,0,0,0,1,0,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,126.0,1,12,38,9,5,122.2,0,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,143.0,1,3,3,2,2,129.0,0,0,0,1,1,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,Graduate +1,39,1,9556,1,1,130.0,1,19,38,9,8,113.3,0,0,0,1,0,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,101.0,1,1,37,4,9,98.9,1,0,0,1,0,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,133.1,1,34,34,90,90,116.0,0,0,0,0,0,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,Dropout +2,39,1,9991,0,1,170.0,1,37,19,9,3,151.1,0,0,0,1,1,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,Graduate +2,17,5,9119,1,1,126.0,1,37,38,4,4,122.9,1,0,0,1,1,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,125.0,1,19,19,9,9,114.9,0,0,0,1,0,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,Graduate +1,18,3,9773,1,1,128.0,1,19,1,9,9,122.1,1,0,0,1,1,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,149.0,1,38,37,9,9,139.5,0,0,0,1,1,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,1,3,9,5,137.1,0,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,126.0,1,38,37,5,5,114.8,1,0,0,1,0,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9085,1,1,120.0,1,37,37,6,6,150.0,0,0,0,1,1,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,137.0,1,38,19,0,90,122.3,0,0,0,1,0,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9853,1,19,133.1,1,37,19,3,7,100.0,0,0,0,1,0,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,145.0,1,4,2,2,3,127.3,1,0,0,1,1,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,129.0,1,1,1,4,8,129.0,0,0,0,0,0,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,143.0,1,1,1,4,4,129.0,1,0,0,1,1,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,136.0,1,19,38,9,9,119.3,1,0,0,1,0,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,151.6,0,0,0,1,0,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,Enrolled +1,1,1,9238,1,1,108.0,1,19,38,9,9,107.3,0,1,0,1,0,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,134.0,1,1,1,2,7,128.4,1,0,0,1,0,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,Graduate +1,42,1,9119,1,1,120.0,1,3,1,2,9,108.2,1,0,0,1,1,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,Dropout +1,16,2,9500,1,1,127.0,1,2,38,4,9,119.0,1,0,0,1,0,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,131.0,1,1,1,9,9,122.0,0,0,0,1,0,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9070,1,3,133.1,1,3,5,2,2,120.0,1,0,0,1,0,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,150.0,1,19,19,5,5,132.8,1,0,0,1,0,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,Graduate +1,18,2,9670,1,1,121.0,1,37,38,4,1,111.9,1,0,0,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,108.0,41,3,3,9,9,107.0,0,0,1,0,0,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,150.0,1,34,19,0,4,152.8,1,0,0,1,1,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,18,2,9238,1,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,130.0,6,19,1,6,4,130.0,1,0,0,1,0,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,Enrolled +1,51,1,9119,1,1,136.0,1,1,19,3,5,133.6,1,0,0,1,1,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,Dropout +1,1,4,9773,1,1,155.0,1,3,19,1,4,149.8,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9070,1,1,124.0,1,19,38,4,0,117.6,1,0,0,1,1,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,9,100.0,0,0,0,1,1,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,Enrolled +1,44,1,9238,1,1,140.0,1,1,1,5,5,143.4,0,0,0,1,0,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,120.0,1,1,19,7,7,111.3,0,0,0,1,1,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,Enrolled +2,1,1,9556,1,1,144.0,1,19,19,193,144,139.8,0,0,1,1,1,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,110.0,1,1,1,5,5,160.0,1,0,1,1,0,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,Dropout +2,39,1,9853,1,19,133.1,1,37,37,9,9,131.0,0,0,0,1,0,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,139.0,1,4,1,2,10,136.4,1,0,0,1,0,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,Graduate +1,17,3,9085,1,1,134.0,1,37,38,9,9,120.4,1,0,0,1,0,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,148.0,1,3,2,4,2,131.6,1,0,0,1,0,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,145.0,1,19,37,7,7,141.5,1,0,0,1,0,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9130,1,19,133.1,1,37,38,9,9,120.0,0,0,0,1,1,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,3,9254,1,1,121.0,1,19,37,4,7,116.8,1,0,0,1,0,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,123.0,1,1,1,4,3,123.4,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,38,38,9,9,133.4,1,0,0,1,1,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,Graduate +1,42,1,9500,1,1,124.0,1,19,19,4,9,124.0,0,0,0,1,0,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,40,130.0,1,37,37,9,7,130.0,0,0,0,1,0,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,140.0,1,3,38,2,9,140.0,1,0,0,1,0,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,158.0,1,38,38,9,7,144.7,1,0,0,1,0,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,18,2,9238,1,1,121.0,1,19,1,4,3,121.4,1,0,0,1,0,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,12,133.1,1,37,19,9,10,120.0,0,0,0,1,1,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,122.0,1,3,1,4,3,114.8,1,0,0,1,0,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,Enrolled +4,43,1,9991,0,1,164.0,1,37,37,6,6,131.8,0,0,0,1,0,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,3,9773,1,1,145.0,1,38,38,9,5,133.1,0,0,0,1,0,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9853,1,19,133.1,1,38,19,9,9,108.0,0,0,1,0,0,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,3,9070,1,1,131.0,1,38,37,5,5,120.2,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,Enrolled +1,43,1,9238,1,1,130.0,1,38,37,9,7,133.2,0,0,0,1,0,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,112.0,1,1,1,3,3,106.4,1,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,125.0,1,1,38,144,181,123.3,0,0,0,1,0,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,125.0,1,3,2,2,1,119.1,1,0,0,1,0,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9853,1,3,140.0,1,34,34,0,0,140.0,1,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,135.0,1,1,19,3,9,137.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9991,0,3,120.0,1,37,37,6,7,120.0,0,0,1,0,1,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,130.0,1,1,1,4,3,125.1,1,0,0,1,0,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,Graduate +2,39,1,33,1,1,120.0,1,38,1,9,5,153.8,0,0,1,1,1,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,37,37,9,9,140.0,0,0,0,0,1,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,127.0,1,1,38,9,7,120.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,43,180.0,1,19,19,9,4,180.0,0,0,0,1,0,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,Graduate +1,1,3,9147,1,1,143.0,1,1,1,5,7,133.2,1,0,0,1,0,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,Graduate +1,15,1,9853,1,1,133.1,41,43,1,153,135,128.2,0,0,0,1,0,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,12,133.1,1,1,1,9,4,140.0,1,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,151.0,1,1,38,4,7,137.0,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,Graduate +1,17,4,171,1,1,172.0,1,3,1,2,10,155.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,129.0,1,19,1,9,5,112.0,0,0,0,1,1,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,150.0,1,38,3,9,1,140.0,0,0,0,1,1,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,Graduate +1,1,1,9773,1,1,124.0,17,1,1,3,5,118.1,1,0,1,0,0,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9670,1,1,124.0,1,37,19,5,8,114.2,1,0,1,1,0,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,122.0,1,1,19,3,5,116.8,1,0,0,1,0,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,144.0,1,38,1,9,10,137.4,0,0,0,1,0,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,19,19,9,9,120.0,0,0,0,1,0,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,138.0,1,38,38,7,6,124.7,1,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,18,2,9147,1,1,132.0,1,3,3,5,7,119.1,1,0,1,0,0,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,17,6,9119,1,1,111.0,1,19,3,5,10,106.5,1,0,0,1,1,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,Dropout +1,7,1,9500,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,1,140.0,1,37,37,9,9,130.0,1,0,0,1,1,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,125.0,1,37,37,3,3,124.0,0,0,0,1,1,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,128.0,1,19,2,7,3,126.3,1,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +2,39,1,9500,1,1,110.0,1,37,37,9,6,114.3,0,0,0,1,0,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,9085,1,1,133.1,1,1,9,4,4,128.2,0,0,0,1,0,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,Graduate +1,1,3,9238,1,1,126.0,1,38,19,5,8,120.8,1,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,121.0,1,1,1,9,8,118.9,1,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,109.0,1,19,37,5,5,108.3,0,0,0,1,0,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,Enrolled +1,1,4,9670,1,1,127.0,1,1,1,7,7,116.5,1,0,0,1,0,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,171,1,19,133.1,101,1,19,2,7,110.0,0,0,0,1,1,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,133.0,1,37,37,9,7,124.6,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,39,137.0,1,1,1,5,10,124.5,0,0,0,0,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,130.0,1,19,19,7,7,121.6,0,0,0,1,0,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,130.0,1,37,37,6,5,113.5,1,0,0,1,0,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9670,1,1,120.0,1,38,38,5,7,115.1,1,0,0,1,0,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,115.0,1,38,1,9,4,116.1,1,0,0,1,1,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,130.1,0,0,0,1,0,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,Enrolled +1,1,3,9238,1,1,133.1,1,1,1,9,9,100.0,1,0,0,1,1,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,168.0,0,0,0,1,1,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,148.0,1,1,1,9,9,141.7,0,0,0,0,1,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,Dropout +1,15,1,33,1,1,133.1,41,2,3,2,4,100.0,0,0,0,1,1,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,135.0,1,37,37,6,5,121.0,1,0,0,1,1,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,151.0,1,3,3,1,90,161.9,0,0,0,1,0,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,8,108.5,0,0,0,1,1,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9670,1,1,130.0,1,26,30,0,5,128.6,1,0,1,1,0,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,Graduate +1,43,1,9500,1,1,140.0,100,1,1,6,6,128.2,0,0,0,1,0,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,140.0,1,19,37,5,7,140.0,1,0,0,1,1,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,Dropout +1,39,1,33,1,1,140.0,1,3,1,2,4,152.8,0,0,0,1,0,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,Enrolled +1,43,1,9070,1,1,117.0,1,1,1,4,7,112.5,1,0,0,1,1,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,126.0,1,37,19,7,7,125.7,0,0,0,1,0,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,Enrolled +1,1,2,9773,1,1,140.0,1,38,38,5,7,126.4,1,0,0,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,121.0,1,37,38,6,9,121.0,0,0,0,1,0,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,136.0,1,12,1,4,4,122.0,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,117.0,1,37,37,9,9,120.2,1,0,0,1,0,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,133.1,1,38,1,9,9,121.0,0,0,1,0,1,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,Dropout +1,44,1,9991,0,39,130.0,1,37,37,5,5,130.0,1,0,0,1,1,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,138.0,1,1,19,4,9,142.2,1,0,0,1,0,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,148.0,1,3,1,2,10,148.0,1,0,0,1,0,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,Graduate +1,17,6,9556,1,1,134.0,1,19,38,7,7,128.5,1,0,0,1,0,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,141.0,1,1,19,5,8,141.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,149.0,1,3,1,9,9,137.5,0,0,0,1,1,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,Graduate +1,1,3,9085,1,1,142.0,1,11,11,90,90,155.3,0,0,0,1,0,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,135.0,1,19,37,9,9,134.0,1,0,0,1,0,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,132.0,1,19,38,9,7,120.1,0,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9147,1,1,133.0,1,37,37,9,5,119.7,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,139.0,1,3,4,2,2,130.6,0,0,0,1,0,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,2,130.0,1,0,1,0,1,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,Dropout +1,17,3,9500,1,1,138.0,1,3,3,4,5,130.0,1,0,0,1,0,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,121.0,1,19,19,3,3,116.1,1,0,0,1,0,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,160.0,1,3,38,1,9,152.0,1,0,0,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,130.0,41,37,19,9,8,125.5,1,0,0,1,0,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,133.1,1,38,38,191,193,146.0,0,0,1,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,Graduate +4,39,1,9003,1,1,140.0,1,37,37,9,8,150.0,0,0,0,1,1,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,Enrolled +1,17,2,9670,1,1,132.0,1,1,19,5,3,124.0,1,0,0,1,1,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,117.0,1,19,19,5,7,118.4,0,0,0,1,1,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,140.0,6,1,19,4,7,131.6,1,0,0,1,0,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,142.0,1,38,1,8,10,138.5,1,0,0,1,1,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9130,1,1,132.0,1,3,1,4,9,121.9,1,0,0,1,0,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,122.0,1,1,1,9,9,116.1,1,0,0,1,1,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,Dropout +1,7,1,8014,0,3,130.0,1,37,38,0,5,130.0,0,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,138.0,1,19,19,9,5,124.8,1,0,0,1,0,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,140.0,1,19,38,3,9,140.0,1,0,0,1,1,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +4,39,1,8014,0,1,138.0,1,19,19,90,90,127.0,0,0,0,0,0,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9500,1,19,133.1,1,1,3,2,2,100.0,0,0,1,1,1,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,117.0,1,3,1,3,5,110.7,1,0,0,1,1,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,120.0,1,19,19,5,5,113.0,1,0,0,1,0,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,160.0,1,37,37,7,7,133.0,1,0,0,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,137.0,1,1,1,4,5,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,19,37,9,7,123.9,1,0,0,1,0,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,38,38,9,5,130.0,0,0,1,0,1,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,137.0,1,19,37,9,7,130.8,0,0,1,1,0,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,38,37,4,6,150.0,1,0,0,1,0,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,115.0,1,34,38,0,5,108.4,1,0,0,1,0,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,140.0,1,3,38,141,151,135.3,0,0,0,1,1,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,148.0,1,19,19,7,7,130.9,0,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,127.0,1,1,1,4,3,126.3,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,2,9670,1,1,100.0,1,37,37,9,9,100.0,0,0,0,1,0,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,2,171,1,1,141.0,1,19,37,9,9,136.1,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,123.0,1,30,19,4,90,122.3,0,0,0,1,0,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,145.0,1,1,38,5,7,127.5,1,0,0,1,1,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,1,150.0,1,37,37,90,10,112.0,0,0,0,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,128.0,1,37,1,9,7,124.2,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,Dropout +1,43,1,9070,1,39,130.0,1,19,37,5,9,124.0,1,0,0,1,0,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,Graduate +1,17,1,9003,1,1,170.0,1,1,4,9,5,144.1,1,0,1,0,1,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9670,1,1,110.0,1,19,19,90,99,107.2,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9238,1,19,133.1,1,37,37,9,9,130.0,1,0,0,1,0,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9119,1,1,144.0,1,34,34,0,0,119.5,0,0,0,1,1,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,19,133.1,1,37,37,6,6,162.0,0,0,1,1,1,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,16,1,9085,1,1,138.0,1,37,37,9,9,123.0,1,0,0,1,0,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9500,1,1,133.1,1,19,19,5,6,121.4,0,0,1,1,0,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,138.0,1,1,1,4,7,132.1,1,0,0,1,0,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,Graduate +1,39,1,9119,1,1,133.1,1,37,37,9,9,101.6,0,0,0,1,1,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9500,1,1,126.0,1,1,19,131,181,120.1,1,0,0,1,0,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,38,9,9,142.0,1,0,0,1,0,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,Graduate +1,18,1,8014,0,1,138.0,1,19,1,9,5,134.5,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,19,9,9,150.0,0,0,0,1,1,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,126.0,1,38,37,9,9,123.6,1,0,0,1,0,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9254,1,19,133.1,1,19,19,3,1,101.5,0,0,1,0,1,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,2,9119,1,1,115.0,1,38,19,9,6,112.2,1,0,1,1,1,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,39,1,9003,1,1,120.0,1,37,37,9,9,125.7,0,0,1,0,0,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,Dropout +1,17,2,9773,1,1,115.0,1,1,1,5,5,119.6,1,0,0,1,0,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,19,9,4,140.0,0,0,0,1,0,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,125.0,1,37,19,90,90,137.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,120.0,1,3,38,3,7,124.2,1,0,0,1,1,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9147,1,1,146.0,1,5,1,1,5,144.6,0,0,0,1,1,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,116.0,1,1,1,3,4,113.6,1,0,0,1,0,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,Graduate +4,42,1,9147,1,1,133.1,1,37,38,7,3,123.0,1,0,0,1,1,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,118.9,1,38,37,5,9,118.9,1,0,0,1,0,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,123.0,1,12,1,9,9,119.2,1,0,0,1,0,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,2,140.0,1,38,37,7,8,140.0,0,0,0,1,0,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,110.0,1,37,37,90,90,108.4,1,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9119,1,1,146.0,1,1,37,7,7,132.4,1,0,0,1,1,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,19,133.1,1,19,3,9,2,140.0,1,0,1,1,1,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,2,9853,1,1,111.0,1,38,38,191,171,105.8,1,0,0,1,0,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,6,130.2,0,0,0,1,0,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,130.0,1,1,3,9,10,118.1,1,0,0,1,1,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,118.0,1,1,19,5,4,118.0,0,0,0,1,0,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,153.0,1,38,38,7,7,159.7,1,0,0,1,0,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,171,1,12,110.0,1,37,37,7,7,106.0,1,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,134.0,1,19,1,9,4,124.9,1,0,0,1,0,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,3,9254,1,1,121.0,1,19,19,9,9,125.9,1,0,0,1,0,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,160.0,1,19,19,4,9,154.4,0,0,0,1,0,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,3,140.0,1,19,19,9,7,152.4,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9130,1,1,130.0,1,19,1,191,144,110.0,0,0,0,1,1,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,142.0,1,38,37,9,5,127.3,1,0,0,1,0,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,37,37,9,9,130.0,0,0,1,1,0,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,124.0,1,37,19,9,4,121.2,0,0,0,1,1,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,120.0,1,19,19,9,3,113.9,1,0,0,1,0,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,114.0,1,19,38,5,3,112.6,1,0,0,1,0,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,Graduate +1,7,1,9991,0,40,120.0,1,1,19,4,9,120.0,0,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,128.0,1,19,38,9,9,118.2,0,0,0,1,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,4,9070,1,1,126.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,130.0,1,1,1,0,0,119.5,0,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,184.4,22,2,19,2,8,184.4,0,0,0,1,0,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,37,9,9,132.8,0,0,1,0,1,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9085,1,1,120.0,1,38,19,90,90,127.0,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,Graduate +1,17,4,9147,1,1,132.0,1,38,19,5,5,120.8,1,0,0,1,1,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,Dropout +1,10,1,9670,1,1,148.9,22,37,37,9,9,148.9,0,0,0,1,0,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,4,150.0,1,1,1,4,6,150.0,0,0,0,1,1,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,150.0,1,19,1,9,3,110.0,1,0,0,1,1,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,Graduate +1,15,1,9670,1,1,130.0,26,42,1,2,7,130.0,0,1,1,1,0,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,Graduate +2,7,1,8014,0,3,120.0,1,38,1,9,9,120.0,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,149.0,1,19,37,9,9,158.1,1,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,4,9147,1,1,124.0,1,37,37,9,9,117.4,0,0,0,1,0,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,142.0,1,34,1,5,10,136.1,1,0,0,0,1,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,1,1,8014,0,1,165.0,1,37,37,0,0,162.9,1,0,0,1,1,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,130.0,1,37,37,5,7,123.4,1,0,0,1,1,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,1,133.1,1,37,37,7,7,143.0,0,0,0,1,1,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,121.0,1,38,37,8,8,115.4,1,0,0,1,0,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9556,1,3,140.0,1,3,3,2,2,140.0,0,0,1,0,1,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,116.0,1,38,19,0,2,116.7,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,132.0,1,38,1,5,5,124.3,0,1,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,133.1,1,38,12,7,0,111.5,0,0,0,0,0,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,Dropout +1,53,1,9147,1,42,140.0,1,1,1,6,6,142.2,0,0,0,1,1,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,Graduate +2,44,1,9991,0,39,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9773,1,1,170.0,1,1,19,9,7,155.0,0,0,0,1,1,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,8014,0,19,133.1,1,37,37,4,8,112.5,0,0,0,1,0,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,120.0,1,1,1,5,8,112.0,1,0,0,1,0,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,123.0,1,1,1,3,3,113.6,1,0,0,1,0,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,Graduate +1,39,1,9085,1,1,133.1,1,1,19,9,9,162.3,1,0,0,1,0,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,116.0,1,37,1,9,8,115.7,1,0,1,0,0,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,160.0,1,9,19,4,3,151.3,0,0,0,1,0,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,19,149.0,1,34,34,0,0,126.3,0,0,0,1,0,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9238,1,39,140.0,41,1,1,4,6,137.5,0,0,1,1,0,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,130.0,1,37,37,9,9,129.0,1,0,0,1,0,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,19,38,7,7,118.7,0,0,0,1,1,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,128.0,0,0,0,1,0,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,Graduate +1,17,1,9070,1,1,135.0,1,19,37,5,9,145.9,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,128.0,1,1,19,9,7,118.2,0,0,0,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,128.0,1,19,38,9,9,127.0,0,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,140.0,1,37,12,9,9,150.0,0,0,1,1,1,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,Dropout +2,43,1,8014,0,1,160.0,1,37,39,9,4,140.9,0,0,0,1,0,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,133.0,1,38,19,8,7,127.3,1,0,0,1,0,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,Graduate +1,15,1,9670,1,1,160.0,1,37,12,9,9,149.5,1,0,0,0,1,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,152.0,101,2,1,9,1,168.5,1,0,0,1,1,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,Graduate +1,1,3,9085,1,1,147.0,1,19,19,9,1,135.6,1,0,0,1,0,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,2,8014,0,1,120.0,1,37,34,0,0,117.6,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,141.0,1,37,37,9,9,130.2,0,0,0,1,1,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,Graduate +1,16,2,9147,1,1,139.0,1,38,37,9,9,123.7,1,0,0,1,0,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,134.0,1,19,38,4,8,129.5,0,0,0,1,0,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,113.0,1,1,37,9,10,117.2,1,0,0,1,0,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,18,2,9556,1,1,126.0,1,3,3,2,2,115.5,0,0,0,1,1,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,1,134.0,1,37,38,4,7,110.0,1,0,0,1,0,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,171,1,1,132.0,1,1,1,1,4,132.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9003,1,1,130.0,1,19,19,9,1,140.0,0,0,0,1,0,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9773,1,1,132.0,1,38,19,9,9,125.0,1,0,0,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,140.0,1,37,37,9,6,132.8,0,0,0,1,1,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,130.0,1,37,19,9,5,140.2,1,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9070,1,1,118.0,1,43,3,123,123,110.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,19,100.0,1,37,37,5,5,111.0,1,0,0,1,0,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,3,9085,1,1,138.0,1,1,3,4,4,126.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,132.0,1,2,19,4,4,125.0,1,0,0,1,0,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,38,100.0,1,37,37,9,7,154.0,1,0,0,1,1,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,138.0,1,1,19,4,4,131.7,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,Graduate +2,39,2,9147,1,1,140.0,1,37,37,9,8,108.0,0,0,0,1,0,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,Enrolled +1,1,5,9147,1,1,134.0,1,3,2,2,2,134.7,0,0,0,1,1,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9130,1,1,120.0,1,2,3,3,2,120.0,1,0,0,0,1,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,Dropout +1,1,3,9085,1,1,140.0,1,10,19,90,90,135.8,1,0,0,1,0,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,142.0,1,37,38,5,1,129.4,0,0,0,1,0,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9670,1,1,120.0,1,1,19,5,5,117.2,1,0,0,1,0,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,136.0,1,1,19,5,7,136.4,0,0,0,1,0,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,120.0,1,37,37,5,5,124.6,0,0,0,1,0,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,Enrolled +1,39,1,9500,1,1,133.1,1,1,37,9,9,100.0,0,0,0,1,1,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,123.0,1,19,1,9,3,117.8,1,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,Graduate +5,39,1,9254,1,1,133.1,1,2,2,2,2,103.0,0,0,0,1,0,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,171,1,1,133.0,1,1,37,4,7,126.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,119.0,1,1,1,4,4,115.0,1,0,0,1,1,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,143.0,1,38,19,151,193,134.3,1,1,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,135.0,1,1,19,4,4,129.1,0,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,43,2,9670,1,1,130.0,1,19,1,4,4,127.6,1,0,0,1,1,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,126.0,1,37,37,5,1,126.0,0,0,0,0,1,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,42,1,9119,1,1,120.0,1,19,37,9,9,113.8,0,0,0,0,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9991,0,1,140.0,1,37,37,9,9,135.8,1,0,0,1,1,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,17,5,9085,1,1,118.0,1,38,38,9,9,112.4,1,0,0,1,0,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,3,9773,1,1,134.0,1,2,1,3,3,129.5,1,0,0,1,1,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,129.0,1,1,38,4,7,123.4,0,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,132.0,1,19,37,4,9,128.0,1,0,0,1,0,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,137.0,1,38,37,7,5,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,Graduate +1,17,5,9119,1,1,138.0,1,19,19,5,5,123.3,1,0,1,1,1,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,138.0,1,1,1,3,4,132.5,1,0,0,1,0,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,Graduate +1,16,2,9070,1,1,133.0,1,1,3,4,2,122.5,1,0,0,1,0,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,Enrolled +1,17,1,9130,1,1,137.0,1,38,19,5,7,130.0,1,0,0,1,0,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,Enrolled +1,17,1,9238,1,1,131.0,1,37,37,9,7,121.9,0,0,0,1,0,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,Graduate +2,1,1,9500,1,1,142.0,1,19,38,4,5,130.3,0,0,0,1,0,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,Graduate +2,39,1,9556,1,1,160.0,1,37,37,9,6,120.0,0,0,0,1,0,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,Dropout +1,51,1,9670,1,1,126.0,1,3,3,1,10,111.0,0,0,1,1,1,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,5,9853,1,1,141.0,1,37,19,9,5,133.0,1,0,0,1,0,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,Dropout +1,1,2,9670,1,1,124.0,1,19,1,9,4,117.7,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,133.0,1,19,19,9,5,120.1,1,0,0,1,0,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,Graduate +1,43,1,9147,1,1,133.1,1,4,19,2,1,128.2,0,0,0,1,0,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,Dropout +4,27,1,9070,1,2,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9003,1,1,150.0,1,2,4,4,1,150.0,0,0,0,1,1,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,19,133.1,1,19,37,7,5,155.5,1,0,1,0,1,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,1,9238,1,1,106.0,1,1,1,3,3,105.0,0,0,0,1,1,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,111.0,1,19,38,3,3,111.4,1,0,0,0,0,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,Dropout +1,43,1,9254,1,1,130.0,1,1,19,5,7,130.0,0,0,0,1,0,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,Dropout +1,17,1,8014,0,1,120.0,1,38,37,6,6,113.0,0,0,0,1,0,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,139.0,1,1,37,4,9,131.3,1,0,0,1,0,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,Graduate +1,43,3,9254,1,1,110.0,1,37,37,9,9,107.2,1,0,0,1,1,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,147.0,1,1,1,4,4,134.3,1,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,130.0,1,37,38,9,6,130.0,1,0,0,1,0,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,139.0,1,37,38,9,9,124.0,1,0,0,1,1,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,122.0,1,37,37,9,9,126.9,1,0,0,1,0,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,11,11,90,4,114.0,1,0,0,1,1,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9147,1,1,132.0,1,39,39,3,3,127.8,1,0,0,0,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,128.0,1,38,37,5,6,122.1,0,0,0,1,0,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9085,1,1,127.0,1,19,38,194,193,117.6,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9500,1,1,145.0,1,3,3,2,3,141.8,0,0,0,1,0,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,Graduate +1,53,1,9556,1,42,140.0,1,1,19,4,5,140.0,0,0,0,1,0,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,Graduate +1,18,1,9147,1,1,160.0,1,19,19,5,8,137.6,1,0,0,1,0,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,19,133.1,1,2,1,3,10,120.0,0,0,1,1,1,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,19,133.1,1,19,39,5,3,121.7,0,0,1,0,0,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,126.0,0,0,0,1,1,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,Graduate +1,1,3,171,1,1,140.0,1,37,37,9,9,124.3,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,136.0,1,38,37,9,9,126.9,1,0,0,1,0,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,136.0,1,19,1,9,9,129.0,1,0,0,1,0,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,144.0,1,38,38,7,7,136.0,1,0,0,1,0,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,154.0,1,38,38,9,9,156.5,1,1,0,1,0,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,131.0,1,19,19,9,9,134.9,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +4,43,1,8014,0,1,140.0,1,38,37,9,9,126.0,0,0,0,1,0,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,7,126.3,1,0,0,1,0,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,Graduate +1,44,1,8014,0,39,150.0,1,1,37,9,7,146.7,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,2,9119,1,1,140.0,1,19,19,9,9,125.7,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,12,100.0,1,1,1,4,4,100.0,0,0,0,1,0,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,Graduate +1,42,1,9500,1,1,111.0,1,1,3,9,10,128.2,1,0,0,1,1,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,Graduate +1,17,2,9773,1,1,132.0,1,19,19,9,6,120.1,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,131.0,1,4,4,2,1,120.5,0,0,0,1,0,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,44,1,9003,1,39,170.0,1,19,19,5,5,170.0,1,0,0,1,1,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,150.0,1,38,38,7,7,137.8,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,10,120.0,0,0,1,0,1,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9670,1,39,110.0,1,37,1,9,4,110.0,0,0,0,1,0,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,130.0,1,5,3,2,2,130.0,0,0,0,1,1,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9670,1,1,133.1,1,34,3,7,2,130.6,1,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,38,9,10,140.0,0,0,0,1,1,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,133.1,1,19,38,9,9,119.6,1,0,0,1,0,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,118.0,1,19,19,3,3,110.0,1,0,0,1,0,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,137.0,1,1,1,5,5,129.3,1,0,0,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,127.0,1,19,38,5,9,129.5,1,0,0,1,0,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,126.0,1,38,19,9,6,119.4,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,116.5,0,0,0,1,0,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,125.0,1,19,19,4,7,128.5,1,0,0,1,0,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,Enrolled +1,43,1,9773,1,1,133.1,22,34,34,90,90,130.0,0,0,1,1,0,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,125.0,1,1,1,5,5,128.5,0,0,0,1,1,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9500,1,1,133.1,1,19,37,9,9,120.0,0,0,0,1,0,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,Graduate +2,39,2,9147,1,1,133.1,1,37,37,5,7,110.0,0,0,0,1,1,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,6,9500,1,1,141.0,1,1,19,1,1,126.7,1,0,0,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,146.0,1,40,43,4,4,150.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,148.0,1,1,1,4,9,129.8,0,0,0,1,0,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,Enrolled +1,17,1,9853,1,1,133.0,1,38,38,9,9,127.4,0,0,1,1,0,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,43,1,9147,1,1,120.0,1,37,37,5,3,113.4,0,0,0,1,1,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,148.0,1,19,3,4,2,136.5,0,0,0,1,0,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,178.0,1,2,1,2,3,157.7,0,0,0,1,1,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +2,7,1,9254,1,3,130.0,1,1,3,4,3,130.0,0,0,0,1,0,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,33,1,40,120.0,1,38,37,5,6,120.0,1,0,1,0,1,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,Dropout +2,1,1,9147,1,1,151.0,1,38,37,9,8,132.1,1,0,0,1,0,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Dropout +1,43,2,9556,1,1,120.0,1,1,19,4,3,110.2,0,0,0,1,0,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,Graduate +2,1,4,9500,1,1,140.0,1,1,37,4,9,128.0,0,0,0,1,0,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,6,120.0,1,35,35,6,6,128.2,1,0,0,1,1,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,120.0,1,37,37,9,6,120.0,1,0,0,1,0,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,8,7,150.0,0,0,0,1,1,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,145.0,1,19,37,4,7,148.9,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,34,34,0,0,104.0,1,0,0,1,0,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9085,1,1,110.0,1,3,19,4,6,105.0,0,0,1,0,1,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Dropout +1,17,2,9254,1,1,108.0,1,37,37,9,7,108.0,1,0,0,1,0,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,Graduate +4,43,1,9238,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,0,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,136.0,1,19,37,173,183,118.4,1,0,0,1,0,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,18,1,9556,1,1,140.0,1,38,37,9,9,122.8,0,0,0,1,0,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,Graduate +1,39,1,9119,1,1,150.0,1,3,3,4,4,150.0,1,0,0,1,1,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,141.0,1,1,1,4,10,138.9,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,Graduate +1,18,4,9773,1,1,130.0,1,19,19,4,4,121.3,1,0,0,1,0,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,1,130.0,1,37,37,9,6,160.0,0,0,0,1,1,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,149.0,1,37,37,9,9,136.0,0,0,0,1,0,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,151.0,1,37,1,4,10,138.4,0,0,0,1,0,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9254,1,1,130.0,1,37,37,9,9,126.5,0,0,0,1,1,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,143.0,1,19,37,7,7,127.0,1,0,0,1,0,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,Graduate +2,57,1,9991,0,1,133.1,41,38,37,4,6,100.0,0,0,0,1,0,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,138.0,1,37,37,9,9,135.9,1,0,0,1,0,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,43,1,8014,0,1,145.7,22,37,37,9,9,145.7,1,0,0,1,0,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,Graduate +4,39,1,9773,1,19,133.1,1,37,37,9,1,117.5,0,0,0,1,0,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9238,1,1,118.0,1,1,19,4,10,112.4,1,0,0,1,0,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,8014,0,1,133.1,1,37,37,9,7,162.5,0,0,0,1,1,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,1,3,9254,1,1,115.0,1,1,1,3,3,117.5,1,0,0,1,0,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,133.0,1,37,38,9,9,130.2,1,0,0,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,152.0,1,2,22,4,3,146.1,1,0,0,1,0,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +2,39,1,9085,1,12,133.1,1,1,39,5,3,140.0,1,0,1,0,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9003,1,1,140.0,1,38,1,9,4,138.3,0,0,0,1,1,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,130.0,1,38,37,9,6,133.9,0,0,0,1,1,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,140.0,1,37,37,9,9,142.5,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,120.0,1,38,1,9,3,118.3,1,0,0,1,0,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,117.0,1,1,19,4,7,113.5,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,141.0,1,19,1,7,3,128.8,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9147,1,1,125.0,1,3,38,2,10,118.7,1,0,0,1,0,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,116.0,1,37,1,5,3,124.8,1,0,0,1,1,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,120.0,1,36,37,0,0,126.7,1,0,0,1,1,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,4,9853,1,1,140.0,1,19,38,4,1,128.5,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,1,3,10,130.0,0,0,0,1,1,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,136.0,1,3,37,2,8,121.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,154.0,1,37,37,9,9,149.5,1,0,0,1,0,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,138.0,1,19,38,5,8,133.5,0,0,0,1,0,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,128.0,1,1,37,4,3,117.9,1,0,0,1,0,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,Graduate +1,43,1,9130,1,1,150.0,1,3,3,3,4,150.0,1,0,0,1,0,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,110.0,1,19,38,3,5,117.4,1,0,0,1,0,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,135.0,1,37,38,9,6,122.1,1,0,0,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9003,1,1,140.0,1,37,37,9,6,104.8,0,0,0,1,0,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,143.0,1,37,37,9,7,131.8,1,0,0,1,0,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,142.0,1,1,1,3,3,133.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,141.0,1,1,19,5,10,127.0,0,0,0,1,0,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,Graduate +3,1,2,9085,1,1,135.0,1,19,1,4,4,129.4,1,0,0,1,0,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,39,1,9254,1,1,133.1,1,19,19,4,7,123.0,0,0,1,0,0,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9500,1,1,131.0,1,19,37,9,7,129.8,1,0,0,1,0,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,Graduate +1,39,1,9670,1,9,133.1,1,6,22,3,3,120.0,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,131.0,1,37,37,3,3,131.7,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,137.0,1,19,19,5,5,134.6,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,131.0,1,1,1,4,10,129.3,0,0,0,1,0,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,140.0,1,1,37,141,192,129.7,0,0,0,1,0,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,140.0,1,37,37,9,9,124.6,0,0,0,1,0,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,138.0,1,37,37,5,9,125.1,1,1,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Dropout +1,2,1,9147,1,1,150.0,1,37,37,9,9,122.0,1,0,0,1,0,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,135.0,1,3,1,4,4,136.1,1,0,0,1,1,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,Enrolled +1,39,1,9991,0,1,150.0,1,1,19,4,8,123.0,0,0,0,1,1,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,141.0,1,19,37,5,8,130.2,0,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,106.0,1,37,37,9,9,108.0,1,0,1,1,0,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,19,133.1,1,37,38,9,7,100.5,1,0,0,1,1,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,Enrolled +1,43,1,9254,1,1,142.0,1,38,38,9,9,125.9,0,0,0,1,0,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,150.0,1,1,37,9,7,130.2,0,0,0,1,0,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,Graduate +4,39,1,9670,1,1,140.0,1,2,1,3,9,170.0,0,0,1,0,1,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9773,1,1,119.0,1,38,19,9,9,118.3,0,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,117.0,1,34,34,0,0,109.3,0,0,0,1,0,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,120.0,1,34,34,99,99,111.6,0,0,1,1,1,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,139.0,1,19,19,9,7,110.3,0,0,1,1,1,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,3,19,9,9,113.2,0,0,0,1,0,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,Enrolled +1,43,1,9991,0,1,120.0,1,38,38,9,7,141.0,0,0,0,1,1,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,151.0,1,3,1,2,4,151.0,1,0,0,1,0,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,130.0,1,37,37,9,6,110.0,1,0,0,1,0,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9853,1,1,130.0,1,2,39,2,5,124.6,0,0,0,1,1,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,138.0,1,1,1,4,3,141.5,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,120.0,1,37,37,9,5,100.0,0,0,0,1,0,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9991,0,39,150.0,1,37,37,6,6,150.0,0,0,0,1,0,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9085,1,19,133.1,1,38,38,4,7,128.2,0,0,0,1,0,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.0,41,19,19,9,9,119.7,1,0,1,1,0,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9085,1,1,128.0,1,1,19,4,90,124.2,0,0,0,0,0,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,120.0,1,1,1,9,9,129.1,1,0,0,1,1,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9773,1,1,125.0,1,19,19,9,7,129.6,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,137.0,1,40,19,2,9,130.7,1,0,0,1,0,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,Dropout +1,51,1,9147,1,1,116.0,1,3,3,2,2,115.2,0,0,1,1,1,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,5,9853,1,1,132.0,1,12,12,4,4,123.3,1,0,0,1,0,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,Dropout +1,7,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,1,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,135.0,1,19,38,9,5,136.8,1,0,0,1,0,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,137.0,1,1,1,4,7,134.6,1,0,0,1,1,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,4,171,1,1,133.1,1,38,38,9,9,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,133.1,1,19,37,7,8,120.0,0,0,1,0,0,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,140.0,1,1,19,9,7,127.0,1,0,0,1,0,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,Graduate +1,18,1,9500,1,1,124.0,1,38,37,9,7,119.3,1,0,0,1,0,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,3,19,2,4,150.0,1,0,0,1,0,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,19,133.1,1,3,19,90,90,123.5,0,0,0,1,0,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9853,1,1,133.1,1,37,37,5,5,116.5,0,0,0,1,0,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,Dropout +1,18,6,9500,1,1,144.0,1,1,1,3,6,130.8,1,0,0,1,0,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9670,1,1,151.0,1,19,19,1,1,100.0,0,0,1,1,0,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,125.0,1,1,19,4,6,115.2,0,1,0,1,0,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,37,38,4,9,110.0,0,0,1,0,0,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,133.1,1,19,19,5,5,108.5,1,0,0,1,0,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,130.0,1,37,11,90,90,122.6,0,0,0,1,0,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,113.0,1,19,37,9,9,118.6,1,0,0,1,0,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,140.0,6,2,3,5,2,124.3,1,0,0,1,0,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,Enrolled +1,1,4,9119,1,1,111.0,1,37,37,9,5,107.5,1,0,0,1,1,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,143.0,1,19,38,9,9,133.4,1,0,0,1,0,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,Graduate +1,17,1,9773,1,1,141.0,1,2,3,2,2,133.7,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,151.0,41,3,3,2,5,161.9,1,0,0,1,0,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,43,1,33,1,1,143.0,1,37,1,9,10,121.2,1,0,0,1,1,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,0,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,141.0,1,1,19,8,7,128.8,1,0,0,1,0,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Enrolled +1,1,1,9238,1,1,115.0,1,19,38,7,7,108.7,0,0,0,1,0,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,114.0,1,1,1,4,0,108.8,1,0,0,1,0,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,2,9853,1,1,112.0,1,37,37,191,182,106.1,1,0,1,1,0,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,2,9085,1,1,157.0,1,3,38,4,6,142.3,0,0,0,1,0,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,Graduate +2,44,1,8014,0,39,160.0,1,37,19,9,10,155.9,0,0,0,1,0,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,Graduate +1,1,4,171,1,1,137.0,1,1,38,4,8,141.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,144.0,1,1,37,9,9,126.5,1,0,0,1,0,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,145.0,1,1,1,4,10,131.4,0,0,0,1,0,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,115.0,1,1,1,9,4,109.1,1,0,1,0,0,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,170.0,1,37,37,0,0,150.8,1,0,0,1,0,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,5,3,9070,1,1,157.0,1,3,1,9,6,138.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,Graduate +1,43,2,9238,1,1,129.0,1,34,30,0,5,118.9,1,0,0,1,1,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,5,9853,1,1,141.0,1,3,19,2,7,130.9,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Graduate +4,39,1,9991,0,1,133.1,1,37,37,9,9,130.4,0,0,0,1,0,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,130.0,1,19,38,9,9,126.9,0,0,1,1,0,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,136.0,1,19,1,4,3,125.2,1,0,0,1,0,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,37,9,9,140.2,0,0,0,1,1,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,132.0,1,37,38,9,5,120.8,0,0,0,1,0,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,150.0,1,19,37,6,6,150.0,0,0,1,1,0,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,Graduate +2,42,1,9991,0,1,130.0,1,3,2,2,2,130.0,0,0,0,1,1,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,Enrolled +4,39,1,8014,0,1,133.1,1,38,37,5,7,144.5,0,0,0,1,0,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,2,9773,1,1,150.0,41,1,37,9,7,130.8,0,0,0,1,0,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,Graduate +2,1,1,8014,0,1,151.0,1,37,37,9,9,152.4,0,0,0,1,0,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,Graduate +6,39,1,9500,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,Dropout +2,43,1,9670,1,1,100.0,1,34,34,0,0,128.2,0,0,0,1,1,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,148.0,1,1,19,3,3,131.7,1,0,0,1,0,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,142.0,1,19,19,7,7,142.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,127.0,1,1,38,4,7,125.6,0,0,1,1,0,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,146.0,1,38,38,9,7,134.1,1,0,0,1,1,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,115.0,1,1,1,4,4,109.1,1,0,0,1,0,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,Enrolled +1,1,2,9773,1,1,148.0,1,1,19,9,9,141.7,0,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,116.0,1,37,37,0,5,114.3,1,0,0,1,0,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,139.0,1,38,19,5,7,130.6,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,Graduate +1,1,6,9147,1,1,128.0,1,37,37,9,9,116.5,0,0,0,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9130,1,3,150.0,1,3,1,90,90,150.0,1,0,0,1,0,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9670,1,1,122.0,1,1,19,4,4,116.1,0,0,0,1,1,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,Enrolled +1,39,1,9119,1,1,100.0,1,37,37,9,8,160.0,0,0,1,0,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9254,1,1,128.0,1,19,1,7,9,121.7,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,143.0,1,37,38,7,7,133.8,1,0,0,1,0,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,107.0,1,38,38,7,7,103.5,1,0,0,1,0,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,Graduate +1,39,2,9147,1,1,143.0,1,19,5,4,1,100.0,1,0,0,1,1,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,140.0,0,0,1,0,0,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,160.0,1,1,1,5,4,160.0,1,1,0,0,1,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,Dropout +2,39,1,9500,1,19,133.1,1,38,38,2,10,120.0,0,0,0,1,0,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,2,9853,1,1,122.0,1,19,19,4,5,112.6,1,0,0,1,0,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,3,9500,1,1,137.0,1,19,37,7,7,126.7,1,0,0,1,0,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,Graduate +1,7,1,9070,1,40,120.0,1,1,19,3,9,120.0,1,0,0,1,0,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,157.0,1,38,3,5,2,141.4,0,0,0,1,0,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,Graduate +2,1,2,8014,0,1,110.0,1,37,1,9,10,108.7,1,0,0,1,0,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,129.0,1,19,37,7,6,120.0,1,0,0,1,0,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,108.0,1,19,1,4,3,111.9,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9070,1,12,110.0,1,37,38,5,10,130.0,0,0,1,0,1,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,122.0,1,1,1,193,101,126.2,0,0,0,1,0,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,4,4,3,3,143.6,0,0,1,1,1,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,Enrolled +1,7,1,9119,1,3,130.0,1,34,34,90,90,130.0,0,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,8014,0,39,120.0,1,19,37,7,6,121.8,1,0,0,1,0,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,142.0,1,37,38,9,9,137.5,1,0,0,1,1,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,138.0,1,3,19,2,4,131.0,1,0,0,1,1,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,Dropout +1,17,2,9853,1,1,125.0,1,1,19,5,5,119.4,1,0,0,1,0,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,137.0,1,1,1,5,4,131.1,1,0,0,1,0,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,133.0,1,38,38,9,9,128.1,1,0,0,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Dropout +4,39,1,9991,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,0,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,17,1,9130,1,1,138.0,1,2,19,2,6,126.3,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,Enrolled +1,17,4,9500,1,1,135.0,1,1,1,4,4,127.0,1,0,0,1,0,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,140.0,1,4,3,3,3,127.8,0,0,0,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,5,1,9147,1,1,126.0,1,19,38,5,6,117.3,1,0,0,1,0,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,Enrolled +1,39,1,9670,1,1,133.1,1,1,19,4,9,140.0,0,0,0,1,1,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,126.0,1,38,38,9,8,118.8,1,0,0,1,0,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,Graduate +2,42,1,9147,1,1,133.1,1,37,37,9,9,115.8,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,126.0,1,1,37,7,9,132.7,0,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,133.0,1,19,19,5,7,123.6,0,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,4,9556,1,1,135.0,1,38,37,3,7,129.0,1,0,0,1,0,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,110.0,1,37,37,9,9,107.6,1,0,0,1,1,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Enrolled +1,17,4,9147,1,1,135.0,1,19,1,0,4,128.7,1,0,0,1,1,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +2,1,1,8014,0,1,150.0,1,1,37,4,7,139.9,1,0,0,1,0,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,116.0,1,1,38,4,3,114.6,1,0,0,1,0,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,121.0,1,19,37,1,3,131.5,0,0,0,1,0,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,100.0,1,19,1,1,90,114.0,1,0,1,0,0,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,146.0,1,19,37,5,8,135.8,1,0,0,1,0,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9119,1,39,140.0,1,1,19,4,5,140.0,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9670,1,1,136.0,1,19,19,5,5,122.0,0,0,1,0,0,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9003,1,1,133.1,1,19,19,4,4,107.5,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9070,1,1,164.0,1,38,38,9,7,165.8,1,0,0,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,154.0,1,38,38,9,9,133.4,1,0,0,1,0,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,127.0,1,19,37,7,7,121.5,1,0,0,1,1,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,Enrolled +1,43,6,9238,1,1,129.0,1,34,34,0,0,125.2,0,0,0,1,0,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,125.0,1,19,1,4,5,122.6,1,1,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,136.0,1,38,19,7,7,121.7,1,0,0,1,0,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,131.0,1,38,1,7,4,128.3,1,0,0,1,0,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,Graduate +1,1,4,171,1,1,132.0,1,1,19,4,5,138.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9254,1,1,115.0,1,12,1,9,3,108.7,1,0,0,1,0,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,131.0,1,1,37,3,7,120.2,0,0,0,1,0,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,134.0,1,1,1,4,9,124.2,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,142.0,1,19,1,9,1,132.6,0,0,0,1,0,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,2,1,3,6,150.0,1,0,0,1,1,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,130.0,1,19,38,9,7,113.5,0,0,0,1,0,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,135.0,1,2,1,2,8,126.6,0,0,0,1,0,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,12,133.1,1,37,37,5,7,119.3,1,0,0,1,1,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9130,1,1,110.0,1,3,19,2,9,105.5,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9130,1,1,134.0,41,1,19,5,5,125.6,1,0,0,1,0,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,151.0,2,1,1,5,9,146.5,0,0,0,1,0,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,133.0,1,1,3,3,3,135.8,1,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,7,1,9070,1,3,140.0,1,37,2,9,3,140.0,0,0,0,0,0,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,147.0,1,37,19,9,5,133.7,1,0,0,1,0,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,Enrolled +1,51,1,9500,1,1,127.0,1,19,1,5,9,150.0,0,0,0,1,0,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,143.0,1,1,37,5,9,126.6,0,0,1,0,0,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,9,160.0,0,0,1,1,0,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,Graduate +4,39,1,8014,0,19,133.1,1,34,34,0,0,100.0,0,0,0,1,0,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +4,43,1,9853,1,1,133.1,100,19,22,90,90,100.0,0,0,0,1,0,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,2,120.0,1,37,37,9,8,120.0,0,0,0,1,0,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9130,1,40,129.0,1,3,3,2,2,155.3,1,0,0,1,0,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,150.0,1,38,37,9,9,150.0,1,0,0,1,1,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,160.0,1,1,37,3,3,160.0,1,0,1,0,0,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,Dropout +2,39,1,9003,1,1,133.1,1,1,19,4,4,120.0,0,0,1,0,1,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,115.0,1,19,38,9,9,108.0,0,0,0,1,0,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,134.0,1,1,19,4,5,126.0,0,0,0,1,0,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,135.0,1,38,38,5,8,133.3,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,5,1,9670,1,1,135.0,1,1,12,4,4,140.3,1,0,0,1,0,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,122.0,1,19,1,4,8,135.8,0,0,0,1,0,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,19,19,3,9,112.6,1,0,0,1,0,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,4,9773,1,1,147.0,1,1,1,4,5,139.7,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,140.0,1,19,19,4,5,140.0,1,0,0,1,0,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,130.0,1,12,12,9,9,126.1,0,0,0,1,1,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,2,9147,1,1,130.0,1,34,37,9,9,118.5,1,0,0,1,1,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,138.0,1,4,1,2,1,133.0,1,0,0,1,0,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,138.0,1,37,37,194,171,131.0,1,0,0,1,0,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,19,5,8,147.3,0,0,0,1,0,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,6,9500,1,1,149.0,1,1,1,4,9,133.0,1,0,0,1,0,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,Graduate +1,16,6,9773,1,1,136.0,1,38,14,0,0,129.7,1,0,0,1,0,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,130.0,1,1,34,9,9,124.8,1,0,0,1,0,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,111.0,1,1,1,3,3,112.4,1,0,0,1,1,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,121.0,1,1,19,4,7,135.4,1,0,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,Graduate +1,1,1,9556,1,1,135.0,1,37,38,7,9,125.8,0,0,0,1,0,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,136.0,1,37,19,5,8,129.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,4,9670,1,1,110.0,1,1,37,7,7,111.1,1,0,0,0,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,128.0,1,38,38,5,5,118.6,1,0,0,1,0,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,Graduate +2,39,1,9500,1,19,133.1,1,37,38,9,10,120.9,1,0,0,1,0,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,Dropout +1,5,3,9085,1,1,143.0,1,37,37,0,90,159.1,0,0,1,1,0,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Dropout +4,39,1,9238,1,1,120.0,1,37,37,9,9,125.5,1,0,0,1,0,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,126.0,1,3,1,2,5,116.9,1,1,0,1,0,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,16,1,9556,1,1,137.0,1,37,37,9,7,122.7,1,0,0,1,0,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,136.0,1,1,1,9,9,123.8,1,0,0,1,0,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +4,39,1,9130,1,1,133.1,1,3,1,5,5,110.0,1,0,0,1,0,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,Dropout +1,17,4,9085,1,1,138.0,1,19,36,90,7,134.9,1,0,0,1,0,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,130.0,1,1,4,4,2,131.4,0,0,0,1,1,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,Graduate +2,42,1,9853,1,1,133.1,1,37,37,4,7,100.0,0,0,0,1,0,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,115.0,1,1,1,9,9,134.3,1,0,0,1,1,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,108.0,1,1,38,5,8,105.9,0,0,0,1,0,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9991,0,1,120.0,1,19,37,5,5,128.2,0,0,0,0,1,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +5,7,1,9130,1,3,160.0,1,19,38,9,6,160.0,0,0,0,0,0,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,121.0,1,3,19,2,9,115.4,1,0,0,1,1,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..92db5db9a6143e84d4ca37f25e2fb4c176360620 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/val.csv @@ -0,0 +1,443 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,17,1,9254,1,1,118.0,1,11,34,5,0,122.2,1,0,0,1,0,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,43,1,9238,1,1,120.0,1,1,38,4,3,118.3,0,0,0,1,0,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,108.0,1,3,1,3,4,109.1,1,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,9991,0,40,130.0,1,19,19,7,3,130.0,0,0,0,1,0,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,19,9,10,150.0,0,0,0,1,1,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9119,1,40,130.0,1,1,1,4,4,130.0,0,0,0,1,1,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,128.0,1,19,19,5,5,124.5,1,0,0,1,0,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,170.0,1,19,19,5,1,170.0,1,0,0,1,0,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,Enrolled +1,1,3,9500,1,1,113.0,1,3,1,134,135,107.8,1,0,0,1,0,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,Enrolled +1,1,2,9670,1,1,117.0,1,37,37,9,9,111.8,0,0,0,1,0,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,1,1,9,4,126.2,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,145.0,1,19,38,7,6,128.6,1,0,0,1,0,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9147,1,3,130.0,1,38,38,1,9,130.0,0,0,0,1,0,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,170.0,1,19,37,8,8,100.0,0,0,0,1,0,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9147,1,1,148.0,1,38,37,5,5,134.0,0,0,0,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,5,9085,1,1,118.0,1,1,38,4,7,122.2,1,0,0,1,0,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,133.1,1,38,38,191,192,118.0,0,0,1,1,0,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,Graduate +1,18,1,9853,1,1,132.0,1,37,37,9,5,126.1,0,0,0,1,0,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +6,39,1,8014,0,1,133.1,1,37,37,9,9,119.0,0,0,0,1,0,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,133.1,1,1,37,7,7,118.0,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,123.0,1,38,38,4,7,114.3,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9991,0,1,143.0,1,19,37,5,8,135.0,0,0,0,1,0,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,128.0,1,1,1,2,10,116.5,0,0,0,1,1,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,Dropout +2,39,1,9085,1,1,120.0,1,19,19,1,4,130.0,0,0,0,1,0,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,Dropout +2,39,1,171,1,19,100.0,1,37,37,9,9,139.0,0,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,3,9500,1,1,139.0,1,38,37,9,8,146.5,0,0,0,1,0,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,120.0,1,37,37,9,1,123.2,0,0,0,1,0,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,1,140.0,1,3,3,4,2,141.7,1,0,0,1,0,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,127.0,1,2,2,3,4,115.8,1,0,0,1,1,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,117.0,1,19,19,9,9,116.3,1,0,0,1,0,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,152.0,1,19,37,3,8,156.9,0,0,0,1,0,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,140.0,1,1,19,4,4,140.7,0,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,133.0,1,3,19,2,7,120.4,1,0,0,1,0,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,1,160.0,1,38,38,7,9,121.4,0,1,0,1,0,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,120.0,1,1,2,9,3,130.0,1,0,0,1,0,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,139.0,1,2,3,3,3,132.7,1,0,0,1,0,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,6,108.3,0,0,0,1,1,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,8014,0,1,107.0,1,19,11,0,0,103.5,1,0,0,1,0,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,113.0,1,38,38,191,175,110.2,1,0,1,1,0,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,1,19,1,5,100.0,1,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,39,140.0,1,38,19,9,5,110.0,0,0,0,1,0,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,Enrolled +1,18,2,9238,1,1,126.0,1,19,37,5,7,129.9,1,0,0,1,1,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,18,1,9254,1,1,137.0,1,19,19,4,5,126.9,0,0,0,1,1,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,121.0,1,37,37,9,9,122.4,0,0,0,1,0,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,51,1,9070,1,1,122.0,1,38,38,9,9,128.8,1,0,0,1,1,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,141.0,1,1,1,3,10,142.8,0,0,0,1,0,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,130.0,1,19,38,9,9,162.3,0,0,0,1,1,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,Dropout +1,18,1,9853,1,1,133.1,1,1,19,141,182,106.0,1,0,1,1,0,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,17,1,9147,1,1,120.0,1,19,19,3,3,113.4,0,0,0,1,0,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,147.0,1,37,19,7,7,134.4,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,1,120.0,1,1,3,144,123,120.0,0,0,0,1,1,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,17,4,9500,1,1,137.0,1,1,37,9,9,128.4,1,0,0,1,0,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,120.0,0,1,1,1,0,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9085,1,1,140.0,1,37,37,9,9,154.6,0,0,0,0,0,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,19,133.1,1,37,19,9,7,134.3,0,0,0,1,1,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,Dropout +1,39,1,9119,1,1,130.0,1,19,37,9,4,149.0,1,0,0,1,1,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,Enrolled +1,17,1,9254,1,1,115.0,1,1,19,3,3,109.4,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,126.0,1,37,3,5,2,116.9,0,0,0,1,1,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,128.0,1,1,1,2,2,130.8,1,0,0,1,0,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,127.0,1,19,19,4,6,120.7,0,0,1,0,0,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9238,1,1,110.0,1,14,14,90,90,112.5,1,0,0,1,0,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,19,5,5,130.8,1,0,0,1,0,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9130,1,1,150.0,1,1,1,4,10,110.0,0,0,1,1,1,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,5,9238,1,3,135.0,1,1,38,9,3,129.4,0,0,1,1,0,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,133.0,1,19,37,1,9,128.5,1,0,0,1,0,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,Graduate +1,39,2,9991,0,1,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9773,1,1,136.0,1,1,38,9,8,131.5,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,138.0,1,37,38,9,8,134.2,1,0,0,1,0,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,7,2,9500,1,3,140.0,1,37,38,9,9,138.0,0,0,0,1,1,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,Dropout +1,43,1,9003,1,1,120.0,1,1,1,4,10,134.4,0,0,0,1,1,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,140.0,1,19,19,9,9,124.3,1,0,0,1,0,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,Graduate +1,17,3,9254,1,1,127.0,1,12,38,5,7,116.9,1,0,1,1,0,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,1,9238,1,1,145.0,1,38,38,9,7,145.0,0,0,0,1,0,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,140.0,1,19,19,9,7,102.5,0,0,0,1,0,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,17,6,9500,1,1,131.0,1,1,19,7,7,126.5,1,0,0,1,0,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,34,34,0,0,123.3,1,0,0,1,0,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,120.0,1,37,3,9,3,168.2,0,0,0,1,1,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,5,9773,1,1,118.0,1,38,19,9,9,113.8,1,0,0,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,122.0,1,19,38,7,7,117.1,1,0,0,1,0,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,115.0,1,19,1,3,7,113.6,0,0,0,1,1,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,141.0,1,1,4,4,4,127.7,0,0,0,1,0,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,130.0,1,37,38,6,6,130.0,1,0,0,1,0,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,120.0,1,37,37,5,5,111.3,1,0,0,1,0,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,145.0,1,1,19,10,5,150.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,129.0,1,38,19,3,7,118.9,1,0,0,1,0,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,Enrolled +1,1,5,9085,1,1,121.0,1,38,37,9,8,114.0,1,0,0,0,0,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,17,1,9254,1,1,126.0,1,1,1,9,9,124.3,0,0,0,1,0,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,149.0,1,1,3,0,0,148.7,0,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9147,1,1,125.0,1,38,38,6,8,114.5,1,0,0,1,0,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,Graduate +1,16,3,9085,1,1,130.0,1,37,37,9,2,119.5,1,0,0,1,0,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,145.0,1,19,37,9,9,132.3,1,0,0,1,0,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,128.0,1,19,38,5,7,125.6,1,0,0,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9254,1,1,135.0,1,38,37,9,7,139.2,0,0,0,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,139.0,1,37,38,6,6,121.3,1,0,0,1,0,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9070,1,39,150.0,1,12,37,3,9,147.7,0,0,1,1,0,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,110.0,1,3,19,4,5,109.0,0,0,0,1,1,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,133.1,1,38,38,5,9,105.0,1,0,0,1,0,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,Graduate +2,51,1,9991,0,1,127.0,1,37,37,8,4,100.1,0,0,0,1,0,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,135.0,1,19,1,4,1,131.9,1,0,0,1,1,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +4,39,1,9556,1,1,160.0,1,19,3,9,2,130.0,0,0,0,1,0,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,Enrolled +1,17,5,9119,1,1,123.0,1,3,1,2,9,116.0,1,0,1,0,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9500,1,1,140.0,1,19,19,7,7,138.6,0,0,0,1,0,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,19,38,9,7,125.6,1,0,0,1,0,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,3,130.0,1,2,2,1,1,130.0,0,0,0,1,0,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,7,9,111.0,0,0,0,0,1,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,148.0,1,1,1,4,8,141.4,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9147,1,1,115.0,1,1,38,3,8,109.8,1,0,0,1,0,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +1,7,3,9130,1,3,130.0,1,19,37,90,5,130.0,0,0,1,0,0,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,5,9500,1,1,141.0,1,38,19,7,7,132.5,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,19,37,9,9,129.9,0,0,0,1,1,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,142.0,1,19,37,4,7,141.3,0,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,19,38,7,4,125.7,0,0,0,1,0,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,129.0,1,19,37,9,9,117.5,1,0,0,1,0,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,103.0,1,1,19,9,9,108.3,0,0,0,1,0,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9853,1,1,133.1,1,19,19,9,9,97.0,1,0,0,1,0,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9238,1,3,150.0,1,37,37,191,192,150.0,0,0,0,1,0,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9085,1,12,133.1,1,34,34,99,99,128.2,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9070,1,1,129.0,1,3,4,2,2,136.4,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Enrolled +1,39,2,9147,1,38,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,133.1,1,34,34,0,0,118.9,1,0,0,1,0,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,135.0,1,19,38,9,9,129.2,0,0,0,1,0,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,122.0,1,37,37,9,3,115.7,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,9853,1,1,120.0,1,1,19,4,7,111.3,0,0,0,1,0,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,141.0,1,38,19,9,10,125.6,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,4,9500,1,1,133.0,1,19,19,3,10,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,106.0,1,1,19,4,4,106.4,1,0,0,1,0,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,Enrolled +2,39,1,9147,1,1,133.1,1,37,37,9,9,140.0,0,0,0,0,0,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,51,1,9070,1,1,130.0,1,3,1,2,8,122.2,0,0,1,1,0,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,Graduate +1,17,6,9500,1,1,143.0,1,38,1,9,10,127.3,1,0,0,1,0,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,154.0,1,1,1,5,7,154.7,0,0,0,1,0,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,120.0,1,37,37,9,7,120.0,0,0,0,1,0,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,151.0,1,37,1,9,9,138.4,1,0,0,1,0,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Graduate +2,39,2,9003,1,19,133.1,1,38,19,4,1,110.0,0,0,0,0,1,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9119,1,1,129.0,1,12,1,4,10,124.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,120.0,1,37,37,4,9,117.1,1,0,0,1,0,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,133.1,1,3,1,4,9,105.0,1,0,0,1,1,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9147,1,1,120.0,1,38,38,9,8,118.3,0,0,0,1,1,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9147,1,1,147.0,1,19,1,9,7,139.3,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,140.0,1,19,19,5,5,131.3,0,0,0,1,1,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,133.0,1,38,19,9,8,128.8,1,0,0,1,1,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,Graduate +1,17,1,9254,1,1,127.0,1,1,1,4,8,126.7,1,0,0,0,1,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9147,1,1,131.0,1,1,19,4,5,120.2,1,0,0,1,0,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,143.0,1,38,38,5,5,133.9,0,0,0,1,0,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,Graduate +4,39,1,9147,1,1,140.0,1,37,37,9,9,142.8,0,0,0,1,0,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,138.0,1,19,1,5,5,128.0,1,0,0,1,0,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,Graduate +1,43,1,9500,1,1,150.0,1,37,37,9,9,130.8,1,0,0,1,0,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,160.0,1,19,38,9,9,152.0,0,0,0,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,42,1,9254,1,1,154.0,1,38,37,1,1,154.0,1,0,0,1,0,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,141.0,1,37,37,4,4,138.9,0,0,0,1,0,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,135.0,1,38,37,9,8,126.3,1,0,0,1,0,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,Graduate +1,17,2,9853,1,1,138.0,1,1,1,9,4,123.0,1,0,0,1,0,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +2,1,1,9085,1,1,139.0,1,19,19,192,144,127.1,0,0,0,1,1,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,Graduate +1,17,4,9070,1,1,116.0,1,38,37,9,9,109.0,0,0,0,1,0,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,38,38,6,3,140.0,0,0,0,1,0,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9254,1,1,120.0,1,19,19,4,4,125.5,0,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9991,0,1,120.0,1,37,37,9,8,122.5,1,0,0,1,0,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,136.0,1,1,37,4,5,130.8,0,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,116.0,1,38,19,8,10,110.8,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9853,1,1,146.0,1,19,38,9,3,145.3,1,0,0,1,0,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,150.0,1,37,37,9,7,150.0,0,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,124.0,1,1,19,5,4,124.4,0,0,0,1,0,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,37,38,9,9,148.5,0,0,0,1,1,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,9,9,127.0,1,0,0,1,1,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,Graduate +4,1,1,8014,0,1,133.1,1,39,19,4,10,143.0,1,0,0,1,0,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,133.1,1,1,19,3,5,115.0,0,0,0,0,1,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,Dropout +2,44,1,9003,1,39,160.0,1,37,38,9,4,160.0,0,0,0,1,0,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,Graduate +1,16,3,9070,1,1,152.0,1,1,38,4,8,156.9,1,0,0,1,0,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,9,9,126.3,0,0,0,1,0,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9773,1,1,131.0,1,1,38,9,5,132.4,1,0,1,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9556,1,1,140.0,1,37,37,9,8,105.0,1,0,0,1,0,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9070,1,1,128.0,1,19,19,3,3,129.8,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,7,9,125.5,1,0,0,1,0,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,140.0,1,38,37,7,7,143.0,0,0,0,1,0,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,139.0,1,19,38,4,9,146.7,1,0,0,1,0,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,129.0,1,1,37,9,9,118.2,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,142.0,1,34,34,99,99,131.9,0,0,0,1,0,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,139.0,1,1,19,9,3,130.3,1,0,0,1,0,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,38,5,5,152.4,0,0,0,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,19,19,4,6,147.6,1,0,0,1,0,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,Graduate +1,51,1,8014,0,2,110.0,1,19,38,9,10,110.0,0,0,0,1,1,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,Graduate +1,17,3,9119,1,1,135.0,1,1,19,141,193,121.7,1,0,0,1,1,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,1,4,9773,1,1,122.0,1,19,19,9,7,121.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9003,1,3,120.0,1,1,19,4,1,120.0,1,0,0,1,1,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,140.0,1,19,37,4,8,133.3,1,0,0,1,0,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,121.0,1,1,1,5,4,111.9,1,0,0,0,1,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,3,130.0,1,1,38,90,90,143.4,0,0,0,1,1,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,1,120.0,1,37,37,6,9,121.0,0,0,0,1,0,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,154.0,1,38,37,4,4,141.4,0,0,0,1,0,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,40,130.0,1,19,1,5,10,130.0,1,0,1,0,0,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,133.1,1,1,1,4,4,120.0,0,0,1,0,1,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,120.0,1,37,1,9,5,113.4,1,0,0,1,0,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,139.0,1,38,37,7,7,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,135.0,1,38,19,194,193,135.4,1,0,0,1,1,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,150.0,1,3,2,2,2,150.0,0,0,0,1,1,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +2,43,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,1,1,7,4,136.0,1,0,0,1,1,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,3,130.0,1,3,3,1,2,150.0,0,0,0,1,0,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,123.0,1,1,38,4,7,115.3,1,0,0,1,0,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,101.0,1,38,38,9,9,104.5,1,0,0,1,0,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,140.0,1,1,19,9,9,128.8,0,0,0,1,1,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,Graduate +1,39,2,9119,1,1,120.0,1,37,37,5,5,128.0,0,0,0,1,1,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,15,133.1,1,34,34,0,0,100.0,1,0,0,0,0,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,133.1,1,6,11,4,5,138.4,0,0,0,1,1,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,142.0,1,37,37,6,7,136.1,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,132.0,1,37,37,9,9,123.6,1,0,0,1,0,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,9,9,126.9,1,0,0,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,15,1,9238,1,1,150.0,26,3,37,2,8,132.5,1,0,0,0,0,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,142.0,1,12,12,9,4,132.6,1,0,0,1,0,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,4,9254,1,1,106.0,1,37,19,9,7,116.9,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,160.0,1,1,19,5,7,155.5,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,42,1,9500,1,1,157.0,1,3,3,3,3,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,131.0,1,3,19,1,4,118.8,0,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,Graduate +1,43,2,9773,1,1,120.0,1,34,34,0,0,103.6,1,0,0,1,0,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,125.0,1,34,37,9,9,129.2,1,0,1,0,0,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,4,9085,1,1,145.0,1,37,1,9,9,145.0,1,0,0,1,0,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,136.0,1,1,1,9,3,122.7,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,1,4,9147,1,1,120.0,1,19,38,5,5,122.8,1,0,0,1,1,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,2,9085,1,1,140.0,1,37,38,9,7,137.0,0,0,0,1,0,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,120.0,1,4,1,4,10,112.0,1,0,0,1,0,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,37,38,7,7,110.0,0,0,0,1,1,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,138.0,1,38,19,9,5,144.3,0,0,0,1,0,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,12,133.1,1,37,37,9,9,120.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9147,1,1,140.0,1,19,19,9,7,120.4,0,0,1,0,0,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,145.0,1,37,1,9,4,138.8,1,0,0,1,0,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,19,38,5,0,133.7,1,0,0,1,0,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9130,1,39,150.0,1,5,1,2,5,150.0,1,0,0,1,1,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,Enrolled +1,43,1,9991,0,1,140.0,1,37,38,9,8,135.5,0,0,1,0,0,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,Dropout +1,1,1,9254,1,1,123.0,1,38,19,9,4,117.8,0,0,0,1,1,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9500,1,1,125.0,1,1,12,3,6,115.2,1,0,0,1,0,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,Graduate +1,17,2,9254,1,1,129.0,1,12,37,9,9,122.0,1,0,0,1,0,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,2,9070,1,1,143.0,1,1,1,4,10,146.2,1,0,0,1,1,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,117.0,1,38,38,4,9,120.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,3,130.0,1,3,1,1,10,160.0,0,0,0,1,0,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,Dropout +1,17,1,9556,1,1,133.0,1,38,37,9,9,124.4,1,0,0,1,0,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,Graduate +1,1,1,9003,1,1,124.0,1,38,19,9,7,116.0,0,0,0,1,1,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,164.0,1,19,1,9,9,161.2,0,0,0,1,1,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,1,130.0,1,37,37,9,9,119.5,1,0,0,1,0,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,1,19,1,5,130.0,0,0,1,1,0,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,142.0,1,19,19,7,3,132.9,0,0,0,1,1,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,126.0,1,19,19,3,7,123.9,0,0,0,1,0,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9254,1,1,132.0,1,1,38,5,6,122.6,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,1,6,9238,1,1,125.0,1,38,1,7,4,118.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,1,140.0,1,3,3,2,2,110.0,0,0,0,1,1,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,138.0,1,1,40,4,3,149.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,43,1,171,1,1,144.0,1,19,19,9,4,121.6,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9773,1,1,129.0,1,37,37,9,7,117.1,1,0,0,1,0,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,Enrolled +1,1,6,9853,1,1,114.0,1,19,19,9,9,110.2,1,0,0,1,1,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Dropout +2,42,1,9147,1,1,100.0,1,37,37,9,9,100.0,1,0,0,1,0,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,135.0,1,38,19,9,5,126.3,0,0,0,1,1,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,156.0,1,3,3,2,2,147.7,1,0,0,1,0,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,Graduate +1,1,1,9147,1,1,139.0,1,38,1,5,5,127.1,1,0,0,1,1,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,127.0,1,1,37,4,9,128.1,0,0,0,1,1,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,5,9070,1,1,124.0,1,37,37,9,9,113.9,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,129.0,1,38,37,9,5,120.0,1,0,0,1,0,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,118.0,1,19,19,9,9,122.2,0,0,0,1,0,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,Graduate +2,39,1,9556,1,19,133.1,1,38,37,7,7,99.5,1,0,1,0,0,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,130.0,1,38,38,7,7,136.3,1,0,0,1,1,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,1,9853,1,1,112.0,1,2,19,3,9,106.1,1,0,0,1,0,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,43,1,9119,1,1,146.0,1,3,1,2,3,100.0,0,0,0,1,1,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,132.0,1,1,12,4,5,124.3,0,0,0,1,0,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,8014,0,1,136.0,1,37,37,5,8,132.5,0,0,1,1,0,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,37,37,90,90,130.0,1,0,0,1,1,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,135.0,1,1,1,4,4,122.8,0,0,0,1,0,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,Graduate +2,39,1,9254,1,1,130.0,1,37,37,9,9,125.0,0,0,0,1,0,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,133.1,1,19,19,9,8,132.0,1,0,0,1,0,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,Dropout +2,39,1,9070,1,1,160.0,1,3,1,2,5,126.5,0,0,0,1,0,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,15,1,9556,1,1,137.0,26,19,1,9,4,137.0,0,0,1,1,0,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9773,1,1,133.1,1,3,5,0,2,125.8,1,0,0,0,1,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,16,4,9238,1,1,135.0,1,37,37,9,9,121.0,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,2,9556,1,1,130.0,1,37,19,9,8,110.0,0,0,0,1,1,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,Enrolled +1,1,1,9853,1,1,123.0,1,1,38,9,6,121.6,1,0,0,1,0,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9119,1,1,126.0,1,38,19,5,5,130.2,0,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,5,9500,1,1,122.0,1,37,3,9,2,116.8,1,0,0,1,0,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,132.0,1,38,38,9,9,119.3,1,0,0,1,0,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,116.0,1,38,1,5,1,111.1,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9500,1,1,113.0,1,38,19,9,7,106.7,1,0,0,1,0,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,Enrolled +1,39,1,9670,1,1,120.0,1,34,34,0,0,106.0,1,0,0,0,1,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,145.0,1,19,37,5,9,130.5,1,0,0,1,0,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,Graduate +2,39,1,9238,1,19,133.1,1,37,37,4,4,98.5,0,0,0,1,0,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,152.0,1,41,19,3,5,137.8,0,0,0,1,0,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,Graduate +1,43,2,8014,0,3,130.0,1,34,34,0,0,130.0,0,0,0,1,1,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,152.0,1,38,37,9,9,139.1,0,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,18,1,9003,1,1,133.1,1,1,38,9,6,101.0,0,0,0,1,1,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,19,1,9,8,105.0,0,0,0,1,0,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,162.0,1,19,1,5,5,147.5,1,0,0,1,0,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,19,1,4,1,101.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9119,1,1,116.0,1,19,1,9,7,112.2,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,133.0,1,38,37,9,7,120.1,1,0,0,1,0,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,110.0,1,37,37,5,6,108.3,0,0,0,0,0,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,Dropout +1,17,2,9773,1,1,121.0,1,1,1,5,5,123.1,1,0,0,1,1,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,17,1,9556,1,1,133.0,1,1,38,4,9,119.0,0,0,0,1,0,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,Enrolled +1,17,1,9147,1,1,139.0,1,1,38,4,5,152.0,0,0,0,1,0,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,160.0,1,12,38,4,8,160.0,1,0,0,1,1,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,133.1,1,19,19,7,7,117.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,128.0,1,3,1,3,3,121.0,1,1,1,1,1,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,116.0,1,1,19,4,7,127.6,1,0,0,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,Dropout +1,18,3,9119,1,1,111.0,1,1,19,9,8,111.0,1,0,0,1,1,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,146.0,1,1,1,9,7,126.0,0,0,0,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,Enrolled +1,53,1,9085,1,42,140.0,1,1,1,5,5,143.3,1,0,0,0,0,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,Enrolled +1,1,1,9070,1,1,144.0,1,1,1,3,5,127.2,1,0,0,1,0,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,141.0,1,38,1,5,7,132.6,0,0,0,1,0,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,18,1,9085,1,1,153.0,1,37,37,9,9,138.0,1,0,0,1,0,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,137.0,1,1,3,5,2,133.9,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,150.0,1,19,38,9,5,143.0,0,0,0,1,0,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,1,9,6,126.1,1,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9070,1,1,133.0,1,4,1,4,4,132.0,1,1,0,1,0,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,140.0,1,1,19,9,9,140.0,1,0,0,1,0,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,133.1,1,3,1,2,4,128.2,1,0,0,1,0,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,1,133.1,1,37,36,90,7,128.2,0,0,0,1,1,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,114.0,1,19,38,9,7,135.9,0,0,0,1,1,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,Graduate +2,51,1,9500,1,1,130.0,1,37,37,5,5,120.0,0,0,0,1,1,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,Dropout +1,43,1,9670,1,39,110.0,1,19,3,7,10,110.0,0,0,0,1,0,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,43,1,9500,1,1,148.0,1,29,38,90,3,131.0,1,0,0,1,0,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,Graduate +1,18,1,9254,1,1,118.0,1,38,38,5,5,123.3,1,0,0,1,1,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9003,1,3,130.0,1,1,38,9,7,130.0,1,0,0,0,1,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,3,38,2,7,121.7,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9991,0,1,133.1,1,38,38,5,5,145.0,0,0,0,1,0,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,136.0,1,1,12,9,10,121.7,1,0,0,1,0,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,160.0,1,19,1,4,10,153.0,1,0,0,1,0,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,Graduate +2,53,1,9147,1,42,130.0,1,19,19,175,152,132.4,0,0,0,1,0,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9119,1,40,120.0,1,1,1,5,10,146.8,0,0,0,1,1,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,150.0,1,19,11,0,0,131.1,1,0,0,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,122.0,1,1,19,4,3,130.4,1,0,0,1,0,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,5,9119,1,1,132.0,1,38,19,5,3,119.1,0,0,0,1,0,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,137.0,1,1,3,4,3,124.6,0,0,0,1,0,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,126.0,1,1,38,4,7,124.3,1,0,0,1,0,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,Graduate +1,43,1,9238,1,39,120.0,1,2,1,1,2,118.6,0,0,0,1,1,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,34,34,0,0,119.1,1,0,0,1,0,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,127.0,1,1,1,4,4,120.4,1,0,0,1,0,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,135.0,1,1,38,5,5,122.4,0,0,1,1,0,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,Graduate +1,18,2,9773,1,1,109.0,1,1,1,4,4,109.0,1,0,0,0,0,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9500,1,1,132.0,1,19,3,9,5,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,Enrolled +1,43,1,33,1,19,133.1,1,38,38,4,4,140.0,0,0,1,1,1,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,Dropout +1,17,1,9773,1,1,120.0,1,37,37,5,5,125.3,0,0,0,1,0,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,1,19,5,10,141.1,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,145.0,1,19,38,4,4,132.1,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9254,1,1,122.0,1,19,19,5,5,118.2,0,0,0,1,0,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,Enrolled +1,17,1,8014,0,1,119.0,1,34,34,0,0,112.4,1,0,0,1,0,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,5,9500,1,1,125.0,1,1,1,3,8,115.6,1,0,0,1,0,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,Enrolled +2,39,1,9991,0,1,150.0,1,1,4,4,2,146.0,0,0,0,1,1,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,132.0,1,4,2,123,112,143.6,1,0,0,1,1,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9085,1,1,144.0,1,1,19,4,10,132.1,1,0,0,1,0,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,19,19,1,1,125.5,1,0,0,1,0,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,130.0,1,19,19,9,6,135.0,0,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,1,140.0,1,19,19,90,90,120.0,0,0,1,0,1,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,143.0,1,1,37,3,8,128.0,0,0,0,1,0,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,Graduate +1,1,3,9070,1,1,146.0,1,34,34,0,0,143.6,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9130,1,1,130.0,1,1,19,6,6,154.0,1,0,0,1,1,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,10,170.0,0,0,0,1,0,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,Enrolled +6,39,1,9991,0,12,130.0,1,37,37,90,90,119.0,1,0,0,0,1,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,53,1,9003,1,42,130.0,1,1,1,144,144,125.8,0,0,1,1,0,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,145.0,1,40,1,2,4,160.1,0,0,0,1,0,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9070,1,1,140.0,1,1,1,9,8,144.3,1,0,0,1,0,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,150.0,1,1,38,6,6,150.0,1,0,0,1,1,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,148.0,1,37,37,9,9,143.5,0,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,123.0,1,19,19,9,8,125.5,0,0,0,0,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,130.0,1,34,1,0,2,128.2,0,0,0,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,1,130.0,1,1,1,3,7,140.0,0,0,0,1,1,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,17,4,9556,1,1,112.0,1,1,1,4,10,107.1,1,0,0,1,0,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,101.0,1,1,1,3,4,102.4,0,0,0,1,0,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,133.0,1,37,37,9,7,121.8,0,0,0,1,1,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9500,1,1,133.1,1,3,1,5,5,148.8,0,0,0,1,0,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,157.0,1,19,38,5,3,149.3,0,0,0,1,0,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,163.0,1,3,4,2,5,175.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,148.0,1,1,3,4,1,163.4,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,Graduate +1,53,1,9085,1,42,130.0,1,38,38,9,9,128.8,0,0,0,1,0,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,Dropout +1,39,1,8014,0,1,120.0,1,1,1,4,4,150.5,0,0,0,1,0,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Graduate +1,51,1,9147,1,1,130.0,1,1,1,4,4,120.0,0,0,0,1,0,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,Enrolled +4,39,2,9556,1,19,133.1,1,19,19,4,6,123.0,0,0,0,1,0,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,Graduate +4,39,1,8014,0,19,140.0,1,37,37,9,3,131.0,0,0,0,1,0,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,131.0,1,19,38,9,9,129.7,1,0,0,1,0,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,Graduate +1,7,1,9238,1,40,130.0,1,37,37,5,5,130.0,0,0,0,1,1,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,Graduate +1,1,1,9130,1,1,133.0,1,3,1,2,4,126.0,0,0,0,1,1,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,100.0,1,1,1,4,4,120.0,0,0,0,1,1,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,138.7,1,1,12,4,3,111.3,0,0,0,1,1,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,135.0,1,38,38,5,7,121.0,0,0,0,1,0,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,1,19,5,9,111.1,0,0,0,1,1,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,43,1,9130,1,1,100.0,41,3,4,3,2,100.0,0,0,0,1,0,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9147,1,3,130.0,1,37,19,9,8,130.0,0,0,0,1,0,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,Graduate +1,1,4,9085,1,1,138.0,1,3,1,1,4,123.3,1,0,0,1,0,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,Graduate +1,17,1,9003,1,1,131.0,1,19,1,9,2,134.5,1,0,0,1,0,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,139.0,1,38,1,9,5,131.8,1,0,0,1,0,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,133.1,1,37,37,6,6,136.2,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,123.9,1,37,1,9,7,123.9,0,0,0,1,1,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,Dropout +1,1,1,9147,1,1,143.0,1,3,1,5,5,152.1,1,0,1,1,1,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,Dropout +1,1,6,9500,1,1,142.0,1,1,37,7,7,123.5,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,124.0,1,2,1,4,10,117.4,1,0,0,1,0,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,5,9119,1,1,130.0,1,19,1,4,5,118.1,1,0,1,0,1,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,Dropout +1,17,4,9147,1,1,121.0,1,38,37,6,7,113.0,1,0,0,1,0,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,150.0,1,19,19,4,10,100.0,0,0,0,1,0,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,151.0,1,37,37,9,9,138.0,1,0,0,1,0,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,138.0,1,38,38,9,9,126.8,0,0,0,1,1,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,Graduate +6,17,3,8014,0,1,115.0,1,19,1,5,90,115.0,0,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,127.0,1,1,19,3,3,120.2,1,0,0,1,0,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,Graduate +1,51,1,9991,0,1,134.0,1,1,1,5,3,120.6,1,0,0,1,1,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,121.0,1,19,1,7,9,117.9,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,131.0,1,1,38,4,8,121.9,1,0,0,1,0,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,19,133.1,1,38,38,7,8,170.0,0,0,0,1,1,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,100.0,1,37,37,9,5,170.0,0,0,0,1,1,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,95.0,1,37,37,5,8,95.0,0,0,0,0,1,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,148.0,1,37,37,9,9,134.7,0,0,0,1,0,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,Enrolled +1,1,2,9238,1,1,121.0,1,19,19,191,171,119.3,1,0,1,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9119,1,1,136.0,1,1,2,5,4,122.7,1,0,0,1,1,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,Dropout +1,17,4,9254,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,1,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,4,9,100.0,0,0,0,0,0,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9254,1,1,160.0,1,1,3,3,3,142.5,1,0,0,0,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,138.0,1,1,19,7,8,129.3,1,0,0,1,0,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,90,90,100.0,0,0,0,1,1,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,148.0,1,1,37,9,7,143.3,0,0,0,1,0,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,19,38,4,10,130.0,1,0,0,1,0,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,19,37,9,7,110.0,1,0,0,1,1,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9254,1,1,131.0,1,4,3,7,4,126.1,1,0,0,1,0,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,Graduate +1,43,2,9500,1,1,136.0,1,38,38,9,5,131.3,0,0,0,1,0,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,119.0,1,1,1,4,10,125.0,0,0,0,1,1,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,Enrolled +1,17,2,9238,1,1,132.0,1,38,1,7,7,133.1,1,0,0,1,0,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,126.0,1,12,1,5,10,120.2,0,0,0,1,0,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,Enrolled +1,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,161.0,22,37,37,9,9,137.9,0,0,1,0,0,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,Graduate +1,17,2,9147,1,1,133.0,1,19,1,9,3,120.1,1,0,0,1,0,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9085,1,1,127.0,1,3,3,2,8,138.8,1,0,0,1,0,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,121.0,1,1,1,1,1,115.1,1,0,0,1,0,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9130,1,1,130.0,1,3,19,2,9,115.9,0,0,0,1,0,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +2,7,1,9991,0,3,140.0,1,34,34,99,99,140.0,1,0,0,0,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,113.2,0,0,0,1,0,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9500,1,1,137.0,1,1,1,9,9,127.9,1,0,0,1,0,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,Dropout +1,1,5,9500,1,1,130.0,1,19,37,9,7,127.6,1,0,0,1,0,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,133.1,1,1,38,3,7,121.7,0,0,0,1,0,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,130.0,1,3,1,4,1,130.0,1,0,0,0,0,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,107.0,1,2,12,3,10,104.2,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,9,113.5,0,0,0,1,0,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,145.0,1,19,37,4,8,136.8,1,0,0,1,0,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,120.0,1,19,38,5,6,112.3,0,0,0,1,0,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,133.1,1,34,34,0,0,125.3,0,0,0,1,1,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,Dropout +1,1,6,9853,1,1,136.0,1,1,19,5,5,122.0,0,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,121.0,1,4,1,2,3,120.7,1,0,0,1,0,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,1,1,9147,1,1,133.1,1,34,34,0,0,131.8,0,0,0,1,0,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,4,100.0,0,0,0,1,0,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,127.0,1,19,38,3,3,121.1,1,0,0,1,1,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b4de97cc585f253a7b81b8f83e805d35bf1ff4ac --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..98844cf0fa9dd89394a4f4613a6fce3f04043fef --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "tabpfgen", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen_meta.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..6151fc5241047c8d93afe128c45d3e82a9c640ba --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen_meta.json @@ -0,0 +1,8 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/staged/public/staged_features.json", + "target_col": "Target", + "is_classification": true, + "n_rows": 3539, + "n_cols": 37 +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/train_20260422_200336.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/train_20260422_200336.log new file mode 100644 index 0000000000000000000000000000000000000000..21ae416323f7e775363ed314b69f6ffe2a745848 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/train_20260422_200336.log @@ -0,0 +1 @@ +[TabPFGen] No training needed (pretrained). Meta saved to /data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabpfgen/tabpfgen-m5-20260422_200335/tabpfgen_meta.json diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/_tabsyn_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..81b17f64dc776b49e668738b4e722f5a11b3c306 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/_tabsyn_train.py @@ -0,0 +1,83 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121" +dataname = "benchmark_ds" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +pip_libs = "/pip_libs" +# Add pip_libs to PYTHONPATH so cached packages are found +ppath = tabsyn_root + os.pathsep + pip_libs +old = os.environ.get("PYTHONPATH", "") +if old: + ppath += os.pathsep + old +os.environ["PYTHONPATH"] = ppath +sys.path.insert(0, pip_libs) +sys.path.insert(0, tabsyn_root) + +# Install missing deps into persistent cache (first run only) +try: + import icecream +except ModuleNotFoundError: + print("[TabSyn] Installing dependencies (first run, cached for later)...") + # Step 1: main packages (with numpy<2 to avoid torch conflict) + subprocess.run( + [sys.executable, "-m", "pip", "install", "--target", pip_libs, + "icecream", "category_encoders", "tomli", "tomli-w", + "imbalanced-learn", "ml_collections", "rdt", + "xgboost", "xlrd", "openpyxl", "numpy<2", "-q"], + check=True + ) + # Step 2: libzero with --no-deps (avoids dependency conflict) + subprocess.run( + [sys.executable, "-m", "pip", "install", "--target", pip_libs, + "--no-deps", "libzero", "-q"], + check=True + ) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/X_cat_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..c0e1580e25a24bff94098894ce01895f0a6f09e6 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/X_cat_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/X_num_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..ed625a25bb51be5bff61c058b86ef97170c2a751 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/X_num_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/info.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/info.json new file mode 100644 index 0000000000000000000000000000000000000000..9a3f4d02d253a7acac2d7bf09cb2ca2d24c47472 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/info.json @@ -0,0 +1,356 @@ +{ + "name": "benchmark_ds", + "task_type": "multiclass", + "n_num_features": 28, + "n_cat_features": 8, + "train_size": 3981, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 19, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ], + "cat_col_idx": [ + 4, + 13, + 14, + 15, + 16, + 17, + 18, + 20 + ], + "target_col_idx": [ + 36 + ], + "column_names": [ + "Marital status", + "Application mode", + "Application order", + "Course", + "Daytime/evening attendance", + "Previous qualification", + "Previous qualification (grade)", + "Nacionality", + "Mother's qualification", + "Father's qualification", + "Mother's occupation", + "Father's occupation", + "Admission grade", + "Displaced", + "Educational special needs", + "Debtor", + "Tuition fees up to date", + "Gender", + "Scholarship holder", + "Age at enrollment", + "International", + "Curricular units 1st sem (credited)", + "Curricular units 1st sem (enrolled)", + "Curricular units 1st sem (evaluations)", + "Curricular units 1st sem (approved)", + "Curricular units 1st sem (grade)", + "Curricular units 1st sem (without evaluations)", + "Curricular units 2nd sem (credited)", + "Curricular units 2nd sem (enrolled)", + "Curricular units 2nd sem (evaluations)", + "Curricular units 2nd sem (approved)", + "Curricular units 2nd sem (grade)", + "Curricular units 2nd sem (without evaluations)", + "Unemployment rate", + "Inflation rate", + "GDP", + "Target" + ], + "train_num": 3981, + "test_num": 443, + "header": 0, + "file_type": "csv", + "data_path": "data/benchmark_ds/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 28, + "5": 4, + "6": 5, + "7": 6, + "8": 7, + "9": 8, + "10": 9, + "11": 10, + "12": 11, + "13": 29, + "14": 30, + "15": 31, + "16": 32, + "17": 33, + "18": 34, + "19": 12, + "20": 35, + "21": 13, + "22": 14, + "23": 15, + "24": 16, + "25": 17, + "26": 18, + "27": 19, + "28": 20, + "29": 21, + "30": 22, + "31": 23, + "32": 24, + "33": 25, + "34": 26, + "35": 27, + "36": 36 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "28": 4, + "4": 5, + "5": 6, + "6": 7, + "7": 8, + "8": 9, + "9": 10, + "10": 11, + "11": 12, + "29": 13, + "30": 14, + "31": 15, + "32": 16, + "33": 17, + "34": 18, + "12": 19, + "35": 20, + "13": 21, + "14": 22, + "15": 23, + "16": 24, + "17": 25, + "18": 26, + "19": 27, + "20": 28, + "21": 29, + "22": 30, + "23": 31, + "24": 32, + "25": 33, + "26": 34, + "27": 35, + "36": 36 + }, + "idx_name_mapping": { + "0": "Marital status", + "1": "Application mode", + "2": "Application order", + "3": "Course", + "4": "Daytime/evening attendance", + "5": "Previous qualification", + "6": "Previous qualification (grade)", + "7": "Nacionality", + "8": "Mother's qualification", + "9": "Father's qualification", + "10": "Mother's occupation", + "11": "Father's occupation", + "12": "Admission grade", + "13": "Displaced", + "14": "Educational special needs", + "15": "Debtor", + "16": "Tuition fees up to date", + "17": "Gender", + "18": "Scholarship holder", + "19": "Age at enrollment", + "20": "International", + "21": "Curricular units 1st sem (credited)", + "22": "Curricular units 1st sem (enrolled)", + "23": "Curricular units 1st sem (evaluations)", + "24": "Curricular units 1st sem (approved)", + "25": "Curricular units 1st sem (grade)", + "26": "Curricular units 1st sem (without evaluations)", + "27": "Curricular units 2nd sem (credited)", + "28": "Curricular units 2nd sem (enrolled)", + "29": "Curricular units 2nd sem (evaluations)", + "30": "Curricular units 2nd sem (approved)", + "31": "Curricular units 2nd sem (grade)", + "32": "Curricular units 2nd sem (without evaluations)", + "33": "Unemployment rate", + "34": "Inflation rate", + "35": "GDP", + "36": "Target" + }, + "n_classes": 3, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "12": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "19": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "21": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "22": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "23": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "24": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "25": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "26": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "27": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "28": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "29": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "30": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "31": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "32": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "33": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "34": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "35": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "categorical" + }, + "13": { + "sdtype": "categorical" + }, + "14": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + }, + "16": { + "sdtype": "categorical" + }, + "17": { + "sdtype": "categorical" + }, + "18": { + "sdtype": "categorical" + }, + "20": { + "sdtype": "categorical" + }, + "36": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f25e40d604bfed0e9d1581444dcbf633dcdd0869 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,1,1,126.0,1,38,37,5,5,118.7,0,0,1,1,1,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,19,37,9,7,111.4,0,0,1,1,0,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9003,0,39,140.0,1,1,1,4,3,140.0,1,0,1,1,1,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,1 +1,1,2,9085,0,1,141.0,1,1,38,9,8,128.9,1,0,1,1,1,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,128.0,1,19,19,7,8,120.0,1,0,1,1,1,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,2 +1,17,1,9070,0,1,123.0,1,4,37,2,9,113.9,0,0,1,1,1,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,1,140.0,41,1,1,9,9,100.0,0,0,0,0,1,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,133.1,1,1,3,9,9,116.0,0,0,1,1,0,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,143.0,1,3,3,2,10,141.3,0,0,0,0,1,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,2 +1,1,1,9500,0,1,106.0,1,37,38,191,163,102.2,1,0,0,1,0,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,2 +1,16,2,9085,0,1,136.0,1,37,37,9,9,123.4,1,0,1,1,1,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,125.0,1,38,38,9,9,125.4,0,0,0,0,1,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,0 +4,39,1,9773,0,12,120.0,1,37,37,4,9,130.0,0,0,1,0,0,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,0 +1,44,1,9853,0,39,150.0,1,3,37,2,7,150.0,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,145.0,1,1,19,9,9,129.3,0,0,0,1,1,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,1 +1,44,1,9119,0,39,180.0,1,1,1,9,8,180.0,0,0,1,1,0,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,2 +1,1,4,9085,0,1,135.0,1,38,37,9,9,132.6,1,0,1,1,1,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,1 +1,44,1,9130,0,39,130.0,1,3,1,3,6,130.0,1,0,0,1,0,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,182.0,1,19,1,5,7,156.8,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,142.0,1,19,38,7,10,128.4,1,0,1,1,1,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,19,133.1,1,37,37,9,4,103.5,0,0,1,1,0,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,116.0,1,1,1,3,3,119.2,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +1,44,1,9991,1,39,140.0,1,37,19,9,8,140.0,0,0,1,1,1,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,2 +1,1,6,9500,0,1,133.0,1,38,38,9,9,128.8,1,0,1,1,1,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,1 +1,17,1,9853,0,1,119.0,1,3,3,132,132,110.6,0,0,1,1,1,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,2 +1,42,1,9773,0,1,133.1,1,19,6,4,3,120.0,0,0,1,1,0,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9147,0,1,160.0,1,37,37,9,7,110.0,0,0,1,1,0,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,100.0,1,19,37,5,5,120.7,0,0,1,1,1,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,2 +1,1,2,9500,0,1,136.0,1,19,19,9,9,140.0,1,0,1,1,1,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,135.0,1,3,3,2,2,132.9,1,0,1,0,1,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,0 +1,53,1,9003,0,42,130.0,1,1,38,9,6,128.5,0,0,1,1,0,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,1 +1,7,1,9991,1,3,140.0,1,37,37,9,9,140.0,0,0,1,1,0,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,124.0,1,19,37,5,7,119.1,0,0,1,1,0,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,1 +1,39,1,9556,0,1,140.0,1,37,38,9,9,106.0,1,0,0,0,1,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,0 +1,42,4,9500,0,6,133.0,1,1,19,2,9,127.8,1,0,1,1,1,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,1 +1,1,2,9085,0,1,130.0,1,19,19,90,90,122.0,0,0,1,1,1,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,125.0,1,37,19,9,9,122.4,1,0,1,1,0,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,1 +2,39,1,9003,0,3,110.0,1,3,19,4,6,150.0,0,0,1,1,0,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,1 +1,17,1,9670,0,1,123.0,1,19,19,1,1,114.6,0,0,1,1,1,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,131.0,1,38,38,9,9,126.5,0,0,1,1,1,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,133.1,1,38,19,132,103,146.0,0,0,0,1,1,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,1 +1,17,3,9238,0,1,141.0,1,3,3,2,2,124.9,1,0,1,1,1,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,1,136.0,1,3,4,2,2,133.9,0,0,1,0,0,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,2,1,4,6,140.0,0,0,1,1,0,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,111.0,1,19,19,9,9,114.2,1,0,1,1,1,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,1 +1,43,1,9085,0,1,130.0,1,19,38,7,7,120.2,1,0,1,1,1,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,1 +1,7,1,9670,0,3,110.0,1,27,37,3,3,110.0,1,0,1,1,0,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,142.0,1,38,19,7,10,128.4,0,0,1,1,1,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,0 +1,1,3,9773,0,1,158.0,1,1,38,4,7,157.0,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,127.0,1,1,33,3,3,129.8,0,0,1,0,0,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9773,0,1,140.0,1,34,37,0,0,102.5,0,0,1,1,1,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,130.0,1,1,38,5,7,122.0,1,0,1,1,0,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,145.0,1,19,1,6,5,127.9,1,0,1,1,1,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,17,2,9254,0,1,132.0,1,38,38,9,8,122.6,1,0,1,1,1,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,132.0,1,37,37,9,7,129.9,1,0,1,1,1,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,2 +1,1,1,9500,0,1,121.0,1,1,1,4,4,114.9,0,0,1,1,0,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,1 +1,7,1,8014,1,3,140.0,1,1,1,4,4,140.0,0,0,1,1,1,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,137.0,1,1,19,4,4,125.3,0,0,1,1,0,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,2 +1,18,1,9670,0,1,133.0,1,1,1,9,9,121.5,1,0,1,1,1,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,42,1,9500,0,1,100.0,1,3,37,2,6,130.0,1,0,1,1,1,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,1 +1,39,1,9991,1,1,150.0,1,19,38,9,8,140.9,0,1,1,1,1,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,0 +1,39,1,9085,0,1,133.1,1,37,37,9,9,120.0,0,0,1,0,1,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,8014,1,1,128.0,1,38,38,0,0,122.1,0,0,1,1,1,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,1 +1,17,1,9119,0,1,130.0,1,1,3,4,2,123.0,0,0,1,1,0,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,121.0,1,19,38,7,9,123.8,0,0,1,1,1,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,2 +1,17,1,9070,0,1,122.0,1,1,1,4,8,123.8,1,0,0,0,1,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,12,133.1,1,37,37,9,9,133.8,1,0,1,1,0,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,3,3,2,2,149.0,0,0,1,0,0,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,140.0,1,1,38,1,9,140.0,0,0,1,1,0,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,0 +1,1,5,9773,0,1,135.0,1,37,1,5,5,124.9,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,17,1,9119,0,1,132.0,1,37,37,9,6,119.4,1,0,1,1,0,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,7,1,9670,0,3,110.0,1,37,37,7,7,110.0,0,0,1,1,1,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,1 +1,17,5,9119,0,1,118.0,1,1,19,9,9,120.5,1,0,1,1,0,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,1 +2,39,1,9003,0,19,133.1,1,37,19,9,4,140.0,0,0,0,1,1,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +1,17,4,9670,0,1,126.0,1,1,1,4,7,115.2,0,0,1,0,1,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,0 +1,1,1,9254,0,1,158.0,1,19,39,4,8,153.5,1,0,1,1,1,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,1 +1,1,3,9254,0,1,129.0,1,37,38,7,7,122.0,1,0,1,1,1,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,12,133.1,1,37,1,9,4,138.4,0,0,1,1,0,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,0 +1,7,1,9238,0,3,130.0,1,1,1,4,10,125.1,0,0,0,0,1,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9085,0,1,110.0,1,40,1,5,6,142.5,0,0,0,0,0,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,0 +1,16,1,9070,0,1,125.0,1,1,1,4,4,120.8,1,0,1,1,1,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,128.0,1,19,1,5,4,135.7,1,0,1,1,1,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,142.0,1,19,19,9,9,139.9,0,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,1 +1,17,1,171,0,1,123.0,1,3,12,2,9,116.4,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9238,0,1,125.0,1,19,1,9,10,123.6,1,0,1,1,1,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,12,133.1,1,12,12,9,9,120.0,0,0,1,1,0,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,0 +1,17,5,9500,0,1,144.0,1,19,38,9,5,130.7,1,0,1,1,1,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,1 +1,17,6,9500,0,1,136.0,1,19,38,9,3,132.5,1,0,1,1,1,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,1 +2,43,1,9991,1,1,140.0,1,38,37,5,6,117.3,0,0,1,1,1,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,2 +2,43,1,9500,0,1,140.0,1,37,37,9,10,105.7,1,0,1,1,1,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,19,133.1,1,1,5,4,3,100.0,0,0,1,1,1,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,1 +1,17,3,9238,0,1,143.0,1,37,38,0,7,126.9,1,0,1,1,1,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,138.0,1,37,1,9,9,123.7,1,0,0,1,1,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,1,150.0,1,34,34,0,0,112.5,0,0,1,1,1,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,141.0,1,3,2,2,3,130.2,1,0,1,1,1,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,1 +1,1,1,9070,0,1,139.0,1,1,19,3,9,134.9,1,0,1,1,0,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,133.1,1,1,1,3,3,102.0,1,0,1,1,1,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,153.0,1,38,37,7,8,147.9,0,0,1,1,1,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,1 +1,17,3,9085,0,1,121.0,1,38,1,9,9,111.9,1,0,1,1,0,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,1 +1,43,1,9238,0,1,149.0,1,37,37,9,6,130.5,1,0,1,1,1,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,1 +1,17,5,9773,0,1,139.0,1,38,1,4,4,123.6,1,0,1,1,0,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9119,0,1,120.0,1,3,1,123,152,116.9,0,0,1,1,0,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9238,0,1,130.0,1,1,19,4,5,124.8,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,1 +1,53,1,9085,0,42,150.0,1,1,19,4,8,145.2,1,0,1,1,1,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,1 +4,39,1,9130,0,1,140.0,1,37,37,6,7,150.0,1,0,1,1,0,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,1,4,171,0,1,133.1,1,1,1,9,10,110.0,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +1,1,1,171,0,1,124.0,1,19,1,9,9,121.2,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,44,1,9119,0,39,130.0,1,38,19,9,5,130.0,1,0,1,1,0,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,2 +4,7,1,9500,0,3,140.0,1,37,38,9,7,140.0,0,0,1,1,0,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,117.0,1,1,37,5,9,118.4,0,0,1,1,0,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,1 +1,51,1,33,0,1,130.0,1,19,19,9,9,117.7,0,0,1,1,1,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,0 +4,7,1,9500,0,40,130.0,1,19,19,4,6,130.0,0,0,1,0,1,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,144.0,13,3,3,6,6,137.6,1,0,1,1,1,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,1 +1,17,1,9670,0,1,132.0,1,38,37,9,9,122.9,0,0,1,0,0,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,0 +1,1,2,9773,0,1,124.0,1,3,3,3,4,114.6,1,0,1,1,1,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,100.0,1,38,38,9,10,100.0,0,0,1,1,1,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,1 +1,18,2,9853,0,1,120.0,1,19,37,9,4,113.7,1,0,0,0,1,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,0 +1,43,1,9500,0,1,136.0,1,3,3,2,2,100.0,0,0,1,1,1,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,1 +1,39,1,9130,0,1,133.1,1,3,34,3,0,120.0,0,0,0,0,0,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,140.0,1,1,19,3,3,140.0,1,0,1,1,1,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,1 +1,17,1,9085,0,1,128.0,1,38,37,9,9,116.5,1,0,1,1,0,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,1 +1,1,1,9130,0,1,132.0,1,6,6,0,4,119.1,1,0,0,1,1,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,0 +1,43,1,9500,0,6,134.0,1,1,37,9,9,120.4,1,0,1,1,1,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,100.0,1,34,34,0,0,100.0,0,0,1,1,1,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,1 +1,1,2,9085,0,1,122.0,1,3,1,4,7,116.1,1,0,1,1,1,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,1,120.0,1,37,37,9,9,117.0,1,0,1,1,1,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,1 +1,1,5,9254,0,1,126.0,1,19,19,4,7,116.6,1,0,1,1,1,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,1 +1,43,1,9991,1,4,160.0,1,3,3,2,1,125.0,0,0,1,1,0,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,1 +1,1,1,9670,0,1,130.0,1,37,37,0,0,117.8,1,0,1,1,1,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,1 +1,1,1,171,0,1,169.0,1,19,37,9,7,176.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,1,1,9500,0,1,137.0,1,3,38,2,4,121.0,0,0,1,1,1,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,132.0,1,19,1,9,5,123.4,0,0,1,1,1,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,1 +1,17,2,9238,0,3,105.0,1,37,37,7,8,129.7,1,0,1,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,6,9254,0,1,119.0,1,19,19,9,9,118.7,1,0,1,1,0,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,0 +2,39,1,8014,1,1,120.0,1,37,37,9,6,117.0,0,0,1,1,0,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,1,3,9,6,130.0,0,0,1,1,0,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,143.0,1,19,37,9,9,126.2,1,0,1,1,1,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,1 +1,39,1,9991,1,39,150.0,1,19,19,9,9,150.3,0,0,1,1,0,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9130,0,1,143.0,1,3,3,2,2,131.8,1,0,0,0,1,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,2 +1,44,1,9238,0,39,140.0,1,19,19,8,8,144.3,1,0,1,1,1,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,131.0,1,19,19,4,4,122.0,1,0,1,1,1,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,2 +1,17,2,9500,0,1,127.0,1,3,3,1,10,118.8,1,0,1,1,0,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,146.0,1,37,38,9,7,128.5,0,0,0,1,1,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,0 +1,7,1,9003,0,3,140.0,1,39,39,9,4,140.0,0,0,1,1,0,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,123.0,1,38,19,4,90,127.2,0,0,0,0,0,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,0 +1,15,1,9670,0,1,133.1,41,1,1,9,5,128.2,0,0,0,0,0,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,126.0,1,1,1,9,9,127.4,1,0,1,1,1,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,150.0,1,37,37,9,9,150.0,0,0,1,1,1,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,130.0,1,38,19,9,6,120.0,1,0,1,1,0,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,2 +1,17,1,9238,0,1,103.0,1,19,37,7,9,104.1,0,0,1,1,1,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9500,0,1,145.0,1,3,19,1,5,130.0,1,0,1,1,1,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,123.0,1,1,38,9,9,116.7,0,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,9991,1,1,110.0,1,37,37,5,1,120.0,1,0,1,1,1,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,141.0,1,19,1,90,90,128.0,0,0,1,1,0,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,0 +1,1,1,171,0,1,124.0,1,3,3,2,2,119.1,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,5,4,9853,0,1,116.0,1,3,38,3,8,110.4,1,0,1,1,1,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,2 +1,17,1,9070,0,1,119.0,1,38,19,9,9,115.2,0,0,1,1,0,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,0 +1,17,2,9254,0,1,123.0,1,37,37,7,7,113.9,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +2,43,1,9147,0,2,120.0,1,37,37,9,9,122.8,0,0,0,0,1,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,6,122.0,1,19,19,9,9,126.2,1,0,1,1,1,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,122.0,1,1,1,2,5,113.3,1,0,1,1,1,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,2 +1,1,1,9085,0,1,142.0,1,1,1,9,9,127.7,1,0,1,1,0,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,1 +1,43,1,9070,0,1,116.0,1,1,1,3,3,120.9,0,0,1,1,0,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9500,0,1,128.0,1,1,19,4,7,125.6,1,0,1,1,0,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,1 +1,7,1,9991,1,40,130.0,1,1,3,4,2,130.0,0,0,1,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,39,120.0,1,1,19,9,7,120.0,0,0,1,1,0,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,137.0,1,38,37,9,9,122.3,0,0,1,1,0,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,4,9773,0,1,122.0,1,41,1,4,3,119.6,1,0,1,1,1,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,157.0,1,38,37,9,5,137.8,0,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9130,0,1,132.0,1,19,38,9,9,130.4,1,0,1,1,0,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,1 +4,43,1,8014,1,12,133.1,1,34,34,0,0,106.0,1,0,1,1,1,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,2 +1,17,2,9130,0,1,127.0,1,3,1,2,1,116.5,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,8014,1,1,125.0,1,37,37,5,6,122.2,1,0,0,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9556,0,1,128.0,1,38,38,7,8,123.5,1,0,1,1,1,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,2 +1,43,1,9130,0,1,156.0,1,19,1,9,4,156.0,0,0,0,0,0,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,0 +1,7,1,9130,0,3,140.0,1,19,38,9,9,140.0,1,0,1,1,1,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,8014,1,1,123.0,1,34,37,9,90,121.3,1,0,1,1,1,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,39,1,9085,0,19,133.1,1,19,37,7,90,104.0,0,0,1,1,1,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,18,4,9254,0,1,106.0,1,19,37,7,7,106.0,1,0,1,1,0,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,0 +1,17,1,9003,0,1,119.0,1,37,37,4,6,113.2,0,0,0,1,1,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,133.1,1,19,19,9,9,100.0,0,0,1,1,1,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,145.0,1,3,1,4,3,149.9,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,166.0,1,19,37,4,8,146.4,0,0,1,1,0,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,2 +1,1,1,9853,0,1,145.0,1,38,37,5,5,142.2,0,0,1,1,1,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,2 +1,39,1,8014,1,19,133.1,1,37,37,9,9,100.0,0,0,1,1,1,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,156.0,1,19,38,9,1,153.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,1,9853,0,1,117.0,1,19,38,4,0,113.5,1,0,1,1,1,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,138.0,1,37,19,9,9,127.8,1,0,1,1,1,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,1 +1,39,1,9500,0,40,130.0,1,1,1,4,4,190.0,1,0,1,1,1,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,1 +1,17,5,9070,0,1,131.0,1,37,37,9,9,126.1,1,0,1,0,1,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,133.1,1,19,37,9,9,95.0,1,0,0,0,1,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,2 +1,1,1,9773,0,1,143.0,1,1,38,8,8,136.7,1,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,0 +1,42,1,8014,1,1,120.0,1,37,38,90,7,120.0,1,0,1,1,1,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,0 +1,1,1,9254,0,1,121.0,1,19,19,5,8,117.5,1,0,1,1,1,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,1 +1,39,1,9254,0,1,160.0,1,3,1,6,6,116.3,1,0,1,1,1,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,134.0,1,1,38,4,5,122.8,0,0,1,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,7,1,8014,1,3,120.0,1,19,37,5,3,121.3,0,0,1,1,1,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,134.0,1,38,19,9,4,128.4,1,0,1,1,1,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,130.0,1,19,1,7,4,117.8,1,0,1,1,0,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,2 +1,1,1,9130,0,1,132.0,1,1,1,3,3,143.9,1,0,1,1,0,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,130.0,1,19,1,9,4,101.3,1,0,1,1,0,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,135.0,1,37,19,5,10,121.0,0,0,0,1,1,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,2 +1,44,1,9991,1,39,120.0,1,37,37,7,7,120.0,1,0,1,1,1,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,43,1,8014,1,1,133.1,1,3,3,2,3,135.0,0,0,1,1,1,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,110.0,1,19,19,9,7,105.8,1,0,1,1,0,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,160.0,1,1,38,4,10,144.3,1,0,1,1,1,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,1 +4,39,1,9254,0,1,120.0,1,37,37,9,8,95.0,0,0,1,1,1,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,137.0,1,19,19,7,7,120.8,1,0,1,1,1,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,1 +1,1,5,9500,0,1,144.0,1,19,38,4,8,141.3,1,0,1,1,1,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,148.0,1,19,1,3,9,140.0,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,128.0,1,38,38,7,7,131.5,0,0,1,1,1,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,128.0,1,38,19,191,175,118.6,1,0,1,1,1,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,2 +1,17,3,9147,0,1,122.0,1,3,38,123,171,116.1,1,0,0,1,0,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,2 +1,1,1,9773,0,1,128.0,1,38,38,6,3,116.5,0,0,1,1,0,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,97.0,1,1,19,2,7,98.1,1,0,1,1,1,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,1 +1,53,1,9991,1,1,140.0,1,38,38,191,193,135.0,0,0,0,1,1,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,2 +1,1,2,9773,0,1,122.0,1,37,37,9,9,130.8,1,0,1,1,1,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,1 +2,39,1,9147,0,1,130.0,1,37,37,9,9,117.9,0,0,1,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,43,1,9991,1,1,100.0,1,37,19,9,4,130.0,0,0,1,1,0,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,0 +1,17,6,9670,0,1,125.0,1,38,1,9,7,125.0,1,0,1,1,0,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,1 +2,7,1,9070,0,43,140.0,1,37,1,9,7,140.0,0,0,1,1,1,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,1 +1,7,1,9254,0,3,110.0,1,19,19,3,3,110.0,0,0,1,1,0,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,17,2,9500,0,1,135.0,1,19,1,5,4,127.3,1,0,1,1,1,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,1 +1,17,4,9238,0,1,129.0,1,19,19,4,7,123.1,1,0,1,1,1,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,53,1,9085,0,42,140.0,1,19,38,8,9,144.9,1,0,0,0,1,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,9500,0,1,136.0,1,1,1,4,4,123.8,0,0,1,1,1,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,1 +4,43,1,9991,1,1,140.0,1,37,37,5,5,149.8,0,0,1,1,0,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,150.0,1,38,19,9,9,137.8,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +5,39,1,9147,0,1,180.0,1,1,1,4,8,140.5,0,0,0,0,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,131.0,1,19,19,3,7,127.9,1,0,1,1,1,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,1 +1,17,1,9147,0,1,110.0,1,1,1,4,4,99.0,0,0,1,1,0,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,2 +1,39,1,9070,0,1,139.3,1,38,38,5,5,117.5,0,0,1,1,0,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9130,0,1,147.0,1,4,1,2,10,141.8,1,0,1,1,1,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,1 +2,44,1,8014,1,39,150.0,1,1,1,5,5,154.0,0,0,1,1,0,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,1 +1,17,1,9254,0,1,133.1,1,1,1,4,5,131.0,1,0,1,1,1,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,132.0,1,1,38,9,7,127.1,1,0,1,1,1,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,17,4,9147,0,1,125.0,1,19,19,5,5,118.0,1,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,108.0,1,19,1,9,3,107.8,1,0,1,1,1,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,143.0,1,37,37,9,8,130.6,1,0,1,1,1,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,126.0,1,37,1,7,7,118.7,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9238,0,1,140.0,1,1,44,4,2,124.6,1,0,0,0,0,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,112.0,1,9,22,4,3,106.1,0,0,1,1,1,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,1,130.0,1,37,37,191,183,163.7,0,0,1,1,1,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,2 +4,39,1,9500,0,19,133.1,1,37,37,6,6,117.8,0,0,0,0,1,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,0 +1,18,2,9853,0,1,120.0,1,1,1,9,0,115.8,0,0,1,1,1,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,2 +1,17,1,9070,0,1,118.0,1,38,19,9,3,111.0,1,0,1,1,1,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,16,1,171,0,1,150.0,1,37,37,9,9,134.6,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9130,0,1,133.1,6,37,37,9,6,100.0,0,0,1,1,1,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9147,0,1,137.0,1,1,37,5,9,131.4,1,0,1,1,0,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,0 +2,44,1,9991,1,39,130.0,1,1,37,4,9,130.0,0,0,1,0,1,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,0 +1,1,2,9238,0,1,136.0,1,19,19,4,7,121.7,1,0,1,1,1,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,133.1,1,1,38,9,7,110.5,0,0,1,1,1,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,1 +1,39,1,9556,0,19,100.0,1,37,38,9,9,120.0,0,0,1,1,1,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,3,9070,0,1,142.0,1,1,38,3,5,146.9,1,0,1,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,127.0,1,19,19,7,8,120.3,1,0,1,1,1,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,130.0,1,1,38,7,8,135.6,1,0,1,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,137.0,1,19,38,9,3,125.0,1,0,1,1,1,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,1 +1,1,5,9500,0,1,135.0,1,37,37,7,7,124.0,1,0,1,1,1,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,2 +2,39,1,9556,0,1,100.0,6,38,38,9,9,130.0,0,0,1,1,1,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,1 +1,42,1,9003,0,39,120.0,1,3,1,2,6,128.2,1,0,1,1,0,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,2 +1,1,3,9773,0,1,121.0,1,19,19,3,3,116.1,0,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,136.0,1,1,19,4,9,131.1,1,0,1,1,1,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,2 +1,1,3,9500,0,1,141.0,1,3,19,2,10,126.8,1,0,1,1,0,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,1 +1,1,6,9773,0,1,136.0,1,38,38,9,9,132.9,1,0,1,1,0,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,1 +1,39,1,9130,0,1,133.1,1,1,1,90,1,120.0,1,0,0,0,0,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,0 +1,17,1,8014,1,1,132.0,1,37,19,5,5,121.2,0,0,1,1,1,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,1 +1,43,2,9500,0,6,119.1,1,1,19,4,10,119.1,0,0,1,1,0,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,153.0,1,1,19,9,4,139.7,1,0,1,1,1,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,1 +1,1,1,9119,0,1,150.0,1,1,1,3,3,143.4,0,0,1,0,0,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,2 +1,1,4,9500,0,1,130.0,1,19,19,9,7,119.9,1,0,1,1,1,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,1,38,9,6,140.0,0,0,1,1,0,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,2 +1,18,1,9500,0,1,115.0,1,38,37,5,5,115.0,0,0,1,1,1,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,150.0,1,19,37,5,4,142.7,1,0,1,1,1,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,133.1,1,34,5,0,1,118.5,1,0,1,1,1,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9130,0,1,125.0,1,3,3,2,2,132.4,0,0,1,1,0,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,1 +1,17,3,9070,0,1,116.0,1,37,37,9,9,110.8,0,0,1,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,2 +1,43,1,9070,0,1,115.0,1,12,12,1,10,115.0,0,0,0,1,0,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,0 +1,1,1,9500,0,1,125.0,1,37,37,9,9,118.8,0,0,1,1,0,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,130.0,1,3,1,2,5,133.8,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9500,0,1,141.0,1,12,1,5,5,133.0,1,0,1,1,1,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,141.0,1,38,38,7,10,139.8,1,0,1,1,1,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,1 +1,51,1,9147,0,19,133.1,1,19,19,9,5,112.1,0,0,0,0,0,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,132.0,1,19,2,9,3,126.0,1,0,1,1,1,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,131.0,1,2,38,4,5,132.3,1,0,1,1,1,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,124.0,1,1,19,9,8,116.7,1,0,1,1,1,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,0 +1,1,1,9556,0,1,180.0,103,5,3,1,1,183.5,1,0,1,1,1,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,0 +1,10,1,9773,0,1,151.0,22,38,37,0,5,151.0,1,0,1,1,1,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,135.0,1,19,19,9,10,133.4,1,0,1,1,1,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,135.0,1,3,3,2,2,137.1,1,0,1,1,1,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,133.1,1,38,38,5,10,101.0,0,0,1,1,0,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,1 +1,39,1,9085,0,40,130.0,1,3,2,3,2,160.0,1,0,1,1,1,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,18,1,9773,0,1,124.0,1,38,37,9,8,126.8,0,0,1,1,0,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,140.0,1,19,37,9,9,125.5,1,0,1,1,1,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,1 +2,39,1,9500,0,1,133.1,1,37,38,9,8,118.9,0,0,1,1,1,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9991,1,1,160.0,1,34,34,0,0,161.8,1,0,0,1,0,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,140.0,1,1,38,4,7,100.0,0,0,1,1,1,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,1 +1,44,1,9070,0,39,120.0,1,2,19,3,8,120.0,0,0,1,1,0,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,124.0,1,38,19,3,10,128.6,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,2 +1,44,1,9085,0,39,140.0,1,1,19,4,4,140.0,0,0,1,1,1,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,145.0,1,1,19,4,3,133.5,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,1 +4,39,1,9085,0,1,110.0,1,37,37,90,90,110.0,0,0,1,0,1,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,134.0,1,19,37,4,7,133.5,1,0,1,1,1,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,1 +1,1,2,9147,0,1,132.0,1,1,19,4,3,126.4,1,0,1,1,1,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,1 +1,39,1,9003,0,19,133.1,1,4,1,2,4,120.0,0,0,1,1,0,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,151.0,1,40,4,2,2,144.5,1,0,1,1,1,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +2,39,1,9147,0,19,133.1,1,37,19,9,3,128.0,0,0,1,1,0,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,0 +1,39,2,8014,1,1,141.0,1,37,37,9,9,150.5,0,0,1,1,1,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,122.0,1,19,19,4,6,119.9,0,0,1,1,1,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,1 +1,39,1,9254,0,9,133.1,1,34,34,0,0,110.0,1,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,18,1,9500,0,1,128.0,1,19,1,9,4,125.8,0,0,1,1,1,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,2 +1,1,3,9773,0,1,133.1,1,38,38,5,5,131.3,1,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +1,16,6,9147,0,1,128.0,1,37,37,9,9,116.5,1,0,1,1,1,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,1 +2,39,1,9991,1,1,147.0,1,34,34,90,90,111.7,1,0,1,1,1,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,8014,1,1,120.0,1,1,19,6,8,122.0,0,0,1,1,1,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,1 +2,39,2,9254,0,19,133.1,1,19,19,9,5,123.5,0,0,1,1,0,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,114.0,1,37,37,9,9,130.0,0,0,1,1,0,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,1 +2,39,1,8014,1,1,100.0,1,37,38,9,9,141.5,0,0,1,1,1,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,1 +1,17,6,9556,0,1,118.0,1,38,38,5,5,117.8,1,0,1,1,1,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,1 +1,39,1,9773,0,19,133.1,1,19,19,171,163,104.0,0,0,0,0,1,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,1 +1,39,1,8014,1,39,110.0,1,19,37,9,8,127.5,0,0,0,0,1,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,0 +1,39,1,9119,0,1,120.0,1,37,38,9,8,100.0,0,0,0,1,0,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,5,9147,0,1,133.0,1,19,3,9,9,123.2,1,0,1,1,0,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,133.1,1,34,34,0,0,142.8,0,0,1,1,0,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9119,0,1,120.0,1,34,34,0,0,140.0,1,0,1,1,0,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,120.0,1,3,37,4,7,115.1,1,0,1,1,1,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,1 +1,51,1,9119,0,1,140.0,1,1,19,4,4,150.0,0,0,1,1,0,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,0 +1,43,1,9556,0,1,149.0,1,1,1,4,8,140.2,1,1,1,1,1,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,160.0,1,37,19,9,10,160.0,1,0,1,1,1,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,9238,0,1,115.0,1,19,38,7,8,116.4,1,0,1,1,1,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,1 +1,44,1,9130,0,39,140.0,1,4,4,2,10,140.0,1,0,1,1,0,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,19,133.1,1,1,1,4,4,130.0,0,0,1,1,0,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,17,5,9773,0,1,146.0,1,1,37,5,5,146.7,1,0,1,1,0,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,142.0,1,1,38,9,9,127.0,0,0,0,0,0,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,0 +4,39,1,8014,1,1,130.0,1,37,37,9,7,138.0,0,0,1,1,1,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,1 +1,39,1,9773,0,9,133.1,1,38,1,5,4,102.0,1,0,1,1,0,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,125.0,1,19,19,7,5,118.0,1,0,1,1,1,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,145.0,1,19,38,4,10,131.7,1,0,1,1,1,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,133.1,1,37,19,9,9,114.0,0,0,1,1,1,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,140.0,1,38,37,4,10,140.0,0,0,0,0,1,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,0 +1,1,1,9773,0,1,128.0,1,1,19,4,4,124.5,0,0,1,1,0,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,126.0,1,37,19,9,8,116.9,1,0,1,1,1,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,2 +1,17,1,9773,0,1,177.0,1,2,1,123,135,155.7,0,0,0,1,1,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,135.0,1,37,1,5,5,126.8,1,0,1,1,1,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,125.0,1,4,3,1,1,119.8,0,0,1,1,1,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,1 +1,53,1,9147,0,42,130.0,1,1,19,143,172,133.8,1,0,1,1,1,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,1 +1,17,3,9670,0,1,123.0,1,38,38,7,8,118.8,1,1,1,1,1,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,112.0,1,38,19,9,5,113.8,1,0,1,1,1,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,124.0,1,34,34,0,0,129.3,0,0,1,1,1,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,9773,0,12,120.0,1,1,1,9,9,129.8,1,0,1,1,0,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,111.0,1,19,19,9,9,110.0,1,0,1,1,1,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,163.0,1,37,37,5,6,155.0,0,0,1,1,1,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,145.0,1,19,1,9,5,145.0,0,0,1,1,1,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,160.0,1,38,37,9,7,155.5,1,0,1,1,1,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,137.0,1,1,3,7,3,131.1,1,0,0,1,1,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,1 +2,39,1,8014,1,1,133.1,1,38,38,9,9,113.5,0,0,1,1,1,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,130.0,1,1,1,9,9,131.8,0,0,1,1,0,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,137.0,1,38,37,7,7,126.0,1,0,1,1,1,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,1 +1,42,1,9003,0,1,160.0,1,19,1,9,5,107.8,1,0,1,0,0,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9070,0,39,120.0,1,3,38,3,9,120.0,0,0,1,1,0,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,1 +1,17,1,9670,0,1,145.0,1,3,3,2,1,129.3,1,0,1,1,1,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,117.0,1,38,19,5,7,118.1,0,0,1,1,0,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,1 +1,44,1,9085,0,1,130.0,1,1,1,4,3,130.0,1,0,1,1,1,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,2 +2,43,1,9238,0,12,100.0,1,37,37,9,9,134.4,0,0,1,1,1,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,1 +2,43,1,8014,1,14,133.1,1,34,34,0,0,100.0,0,0,1,0,1,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,0 +1,17,4,9254,0,1,122.0,1,1,1,4,2,116.1,1,0,1,1,0,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,2 +1,1,4,9254,0,1,110.0,1,37,37,9,7,113.2,1,0,1,1,1,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,17,1,9254,0,1,131.0,1,38,37,4,9,131.7,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,150.0,1,1,19,4,10,150.0,0,0,1,1,0,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,1 +1,17,1,9119,0,1,142.0,1,19,38,9,7,127.3,0,0,1,1,0,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,2 +1,7,1,9556,0,43,160.0,1,38,19,9,9,160.0,0,0,1,1,0,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +1,1,1,9853,0,1,130.0,1,19,12,9,4,133.2,1,0,1,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,1 +1,43,1,9119,0,1,130.0,1,37,38,9,9,120.0,0,0,0,0,1,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,42,1,3,7,110.5,0,0,1,1,0,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +2,39,1,9003,0,1,130.0,1,1,19,4,9,152.4,1,0,1,1,1,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,1 +1,16,1,171,0,1,155.0,1,1,3,5,10,167.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,3,9254,0,1,114.0,26,38,3,9,3,127.3,1,0,0,0,1,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,124.0,1,37,37,9,9,125.4,1,0,1,1,0,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,5,9773,0,1,127.0,1,38,1,4,5,121.1,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,2 +1,17,2,171,0,1,130.0,41,1,1,2,3,148.6,1,0,1,1,0,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9130,0,1,120.0,1,1,19,9,9,120.0,1,0,1,1,1,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,133.0,1,1,37,4,10,143.2,0,0,1,1,1,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +1,1,2,9254,0,1,136.0,1,38,38,9,7,125.2,1,0,1,1,1,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,1 +1,17,1,9254,0,1,102.0,1,37,37,7,7,102.0,0,0,1,1,1,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,140.0,1,19,38,5,7,128.5,1,0,1,1,1,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,1 +1,1,4,9500,0,1,140.0,1,38,38,7,7,133.2,1,0,1,1,1,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,123.0,1,1,1,3,3,120.9,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,18,2,9500,0,1,135.0,1,19,1,5,5,128.9,1,0,1,1,1,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,144.0,1,3,1,1,3,137.7,0,0,1,0,1,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,0 +1,17,1,171,0,1,158.0,1,3,3,3,3,151.4,1,0,1,0,1,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,1 +1,39,1,9670,0,12,133.1,1,37,1,9,3,120.0,0,0,0,0,0,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,51,1,9773,0,1,135.0,1,1,42,5,3,110.0,1,0,1,1,0,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,143.0,1,3,38,2,9,144.1,1,0,1,1,1,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,2 +1,1,3,9070,0,1,132.0,1,1,3,9,7,126.1,1,0,1,1,1,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,1 +1,1,6,9500,0,1,141.0,1,19,1,9,10,126.8,1,0,1,1,1,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,1 +1,44,1,9238,0,39,130.0,1,38,38,6,9,126.3,1,0,1,1,1,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,1,140.0,1,1,1,4,5,140.0,0,0,1,1,0,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,2 +1,39,2,9147,0,1,130.0,1,19,19,5,9,121.5,0,0,1,0,0,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +2,51,1,8014,1,19,133.1,1,37,37,9,9,104.0,0,0,0,1,1,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,120.0,1,3,4,2,2,120.0,0,0,1,1,0,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,1 +1,1,4,171,0,1,131.0,1,19,19,4,4,119.8,1,1,1,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +1,18,3,9070,0,1,134.0,1,1,1,3,4,121.4,0,0,1,1,1,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,1,140.0,1,37,37,9,9,118.2,0,0,1,1,0,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,1 +1,1,1,9147,0,1,130.0,1,19,37,9,9,131.8,1,0,1,1,1,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,134.0,1,38,19,3,10,121.2,0,0,1,1,1,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,1 +1,43,2,9500,0,1,120.0,1,41,3,2,2,112.7,0,0,1,1,1,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,134.0,1,1,19,4,9,129.8,0,0,1,1,1,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,1 +1,17,1,9085,0,1,133.0,1,19,1,4,5,127.1,1,0,1,1,1,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,1 +1,17,1,9500,0,1,148.0,1,38,37,5,9,137.8,1,0,1,1,1,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,129.0,1,37,37,9,7,117.8,0,0,1,1,1,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,2 +4,39,1,8014,1,3,100.0,1,37,37,9,9,130.0,0,0,1,1,1,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,145.0,1,1,40,9,2,129.6,0,0,1,1,1,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,17,4,9254,0,1,124.0,1,1,1,4,4,122.3,1,0,1,1,1,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,0 +2,43,2,9147,0,1,133.1,1,37,37,9,9,109.0,1,0,1,1,1,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,1 +1,51,1,9556,0,1,131.0,1,1,37,152,193,126.6,1,0,1,1,0,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,2 +1,44,1,9085,0,39,110.0,1,3,5,2,2,110.0,0,0,1,1,0,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,15,1,9147,0,1,140.0,26,37,2,6,4,140.0,0,0,0,1,0,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,1 +2,51,1,9853,0,1,130.0,1,37,37,7,8,120.3,0,0,1,1,1,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,8014,1,19,133.1,1,37,37,6,6,139.0,0,0,1,1,0,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,1 +1,1,3,9670,0,1,120.0,1,37,37,7,7,111.3,1,0,1,1,0,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,2 +1,7,1,9085,0,3,120.0,1,37,37,7,7,120.0,0,0,1,1,1,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,0 +1,17,3,9147,0,1,147.0,1,19,38,5,7,132.3,1,0,1,1,1,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,1 +1,1,3,9130,0,1,167.0,1,37,37,90,90,159.3,0,0,1,1,1,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,132.0,1,1,1,4,9,136.6,1,0,1,1,0,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,2 +1,5,2,9853,0,1,124.0,1,19,19,3,3,113.9,1,0,1,1,1,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,3,130.0,1,3,1,2,9,130.0,0,0,1,1,0,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9773,0,1,160.0,1,1,38,4,7,146.5,0,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,1 +1,1,1,9670,0,1,141.0,1,19,3,4,0,137.9,1,0,1,0,0,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,0 +1,39,1,8014,1,1,120.0,1,19,37,8,7,100.0,1,0,1,1,1,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,134.0,1,38,19,7,7,124.2,0,0,1,1,1,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,1 +1,44,1,9238,0,39,150.0,1,1,37,4,8,145.6,1,0,1,1,1,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,1,4,9147,0,1,146.0,1,3,1,3,10,138.7,0,0,1,1,0,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,7,1,9991,1,40,133.1,1,1,37,4,1,100.0,0,0,1,1,1,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,127.0,1,38,19,9,10,117.9,0,0,1,1,1,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,131.0,1,37,38,9,7,137.0,0,0,1,1,1,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,1 +1,7,1,9238,0,3,140.0,1,37,37,9,9,140.0,1,0,1,1,1,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,1 +2,39,1,9085,0,1,133.1,1,37,37,90,90,110.3,0,0,1,1,0,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,125.0,1,38,1,3,10,114.5,1,0,1,1,0,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,152.0,1,19,19,9,5,154.1,0,0,0,1,1,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,1 +1,7,1,9500,0,3,120.0,1,37,37,4,5,120.0,0,0,0,0,1,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,0 +2,39,1,8014,1,1,146.0,1,37,37,9,8,120.5,0,0,1,1,1,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,39,1,9119,0,12,133.1,1,34,34,0,0,95.1,0,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9238,0,1,128.0,1,19,37,9,8,116.5,0,0,1,1,1,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,1 +2,39,1,9991,1,1,140.0,1,37,37,9,9,120.0,0,0,1,0,1,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..0a6042a3e210bfe563db68aaf16ce01ce4c1e401 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/train.csv @@ -0,0 +1,3982 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,0,1,127.0,1,1,1,9,6,110.0,0,0,0,0,0,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,0 +1,17,2,9773,0,1,122.0,1,38,37,5,3,119.6,1,0,1,1,1,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,1 +1,1,6,9147,0,1,121.0,1,3,19,4,5,116.8,0,0,1,1,0,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,158.0,1,38,37,5,5,140.2,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,19,19,9,7,131.7,1,0,1,1,1,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,1 +1,1,3,9085,0,1,133.0,1,1,38,9,90,128.2,0,0,1,1,1,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,122.0,1,1,19,9,9,120.3,1,0,1,1,0,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,0 +1,43,1,9119,0,1,130.0,1,1,1,9,2,128.0,0,0,0,0,0,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,2 +1,17,3,9254,0,1,122.0,1,1,1,4,4,126.6,0,0,1,0,1,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,1,100.0,1,37,37,9,9,133.0,0,0,1,1,0,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,0 +1,44,1,9119,0,39,130.0,1,19,3,3,4,130.0,0,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9085,0,39,140.0,1,1,1,4,7,140.0,1,0,0,1,1,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,0 +1,17,2,9070,0,1,130.0,1,37,37,9,9,123.7,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +4,1,1,9991,1,1,130.0,1,37,37,9,9,118.1,0,0,0,0,1,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9500,0,1,190.0,108,3,2,122,4,190.0,1,0,1,1,1,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,102.0,1,1,19,9,5,100.6,1,0,1,1,1,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,1 +1,7,1,9500,0,3,120.0,1,19,3,4,2,120.0,1,0,1,1,1,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,130.0,1,38,19,9,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,111.0,1,3,4,4,3,108.2,1,0,1,1,1,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,39,1,9119,0,1,160.0,1,1,38,4,7,112.0,0,0,1,0,0,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,149.0,1,19,1,4,4,134.8,0,0,1,1,1,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,135.0,1,19,38,3,9,136.1,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,2,9500,0,1,120.0,1,37,34,90,0,121.5,0,0,0,1,1,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,1 +1,1,3,171,0,1,147.0,1,12,19,9,3,151.6,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,128.0,1,37,37,9,9,123.5,1,0,1,1,0,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,1,2,9070,0,1,129.0,1,1,1,4,9,132.9,1,0,1,1,0,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,2 +1,17,2,9500,0,1,138.0,1,1,38,5,8,132.8,1,0,1,1,1,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,134.0,1,19,37,9,9,131.6,1,1,1,1,1,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,130.0,1,37,37,9,9,122.0,1,0,1,1,1,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,37,37,9,10,130.0,0,0,0,0,1,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,2,9085,0,1,130.0,1,37,19,9,8,129.0,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,2 +1,17,5,9119,0,1,126.0,1,38,38,5,9,116.9,1,0,0,1,0,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,37,38,5,6,140.0,1,0,1,1,1,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,2 +1,18,4,9853,0,1,123.0,1,19,38,4,10,123.7,1,0,1,1,1,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,118.0,1,4,3,2,3,110.7,1,0,1,1,1,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,1 +1,39,1,8014,1,2,130.0,1,37,37,5,7,147.5,0,0,1,1,1,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,146.0,1,4,1,2,3,140.0,1,0,1,1,1,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,1 +1,44,1,9003,0,39,160.0,1,37,38,9,7,160.0,0,0,1,1,1,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,7,0,9003,0,3,130.0,1,1,37,4,9,130.0,1,0,1,1,1,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,19,133.1,1,34,34,99,99,96.0,0,0,1,1,0,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,136.0,1,37,37,7,7,140.9,1,0,1,1,0,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,1,9853,0,1,127.0,1,1,1,5,7,121.4,1,0,1,1,1,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,134.0,1,3,19,2,10,128.8,0,0,1,1,1,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,140.0,1,1,3,4,2,142.8,1,0,1,0,1,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,126.3,0,0,1,1,0,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.1,1,19,1,1,3,101.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9147,0,1,122.0,1,1,38,1,7,118.9,0,0,1,1,0,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,107.0,1,19,37,7,7,103.5,1,0,1,1,1,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,156.0,1,38,37,9,9,156.3,0,0,1,1,0,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,128.0,1,1,1,9,9,120.0,1,0,1,1,1,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,0 +1,17,2,9119,0,1,127.0,1,19,1,9,10,121.1,1,0,1,1,0,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,2 +1,39,1,9003,0,4,160.0,1,3,3,4,2,180.4,0,0,0,1,0,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,0 +1,43,1,9670,0,1,132.0,1,3,19,4,8,120.5,0,0,1,1,0,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,134.0,1,1,19,4,5,122.5,1,0,1,1,1,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,142.0,1,1,19,4,4,128.0,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,133.0,1,2,37,9,7,125.7,1,0,1,1,0,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,135.0,1,1,3,4,3,133.3,0,0,1,1,1,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,3,140.0,1,37,12,9,4,140.0,0,0,1,0,1,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9500,0,1,141.0,1,2,38,2,10,135.4,1,0,1,1,1,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,2 +2,43,1,9991,1,2,120.0,1,37,37,9,9,120.0,0,0,1,0,1,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,147.0,1,1,19,4,4,137.2,0,0,1,0,1,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9085,0,1,120.0,1,37,38,9,9,111.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,141.0,1,3,1,9,9,124.3,0,0,1,1,1,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,2 +1,18,1,9773,0,1,125.0,1,1,1,4,7,121.5,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,140.0,1,37,37,5,5,150.0,0,0,0,1,1,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,112.0,1,1,37,4,9,106.8,1,0,1,1,1,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,168.0,1,38,37,9,8,155.1,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,15,1,9119,0,1,133.1,41,2,2,2,2,100.0,0,0,0,1,0,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,2 +2,1,1,8014,1,1,121.0,1,37,37,9,9,114.4,1,0,1,1,1,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,136.0,1,1,38,4,5,132.2,0,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,1 +1,16,1,9070,0,1,145.0,1,1,1,3,3,146.1,1,0,1,1,1,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,2 +1,7,1,9085,0,40,140.0,1,5,3,2,2,140.0,0,0,0,1,0,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,0 +1,1,3,9085,0,1,126.0,1,38,1,9,9,132.0,1,0,1,1,1,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,146.0,1,1,37,9,9,129.3,0,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,131.0,1,37,37,9,6,127.2,0,0,1,1,1,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,139.0,1,37,37,9,9,124.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,133.1,1,37,1,5,4,151.2,0,0,1,1,0,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,170.0,1,38,19,9,2,160.6,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,131.0,1,37,37,9,6,130.7,0,0,0,1,1,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,2 +1,1,6,9500,0,1,122.0,1,19,37,3,5,116.6,1,0,0,1,0,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,1 +1,17,3,171,0,1,147.0,1,19,1,5,4,137.6,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,9,120.0,0,0,1,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,5,1,9130,0,1,157.0,1,5,43,2,2,149.7,1,0,1,1,1,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9003,0,39,160.0,1,3,1,2,6,160.0,1,0,1,0,1,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,140.0,1,9,19,4,4,131.2,0,0,1,1,0,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,1,130.0,1,1,3,2,6,110.0,0,0,1,1,0,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,1 +1,39,1,171,0,1,147.0,1,37,38,175,193,133.3,0,0,1,0,1,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,148.0,1,38,19,4,9,134.7,1,0,1,1,1,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,130.0,1,19,1,9,7,130.4,1,0,1,1,1,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,133.1,1,1,37,4,9,96.0,1,0,1,1,1,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,2 +1,39,1,9991,1,12,120.0,1,37,38,5,5,155.7,0,0,1,1,0,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,117.0,1,3,1,3,3,113.2,0,1,1,1,1,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,1 +1,17,2,9853,0,1,150.0,1,38,19,5,5,142.0,1,0,1,1,1,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,144.0,1,1,19,9,4,130.8,1,0,1,1,1,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,1 +1,17,4,9254,0,1,118.0,1,38,37,5,7,111.7,1,0,1,1,0,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,0 +1,1,6,9500,0,1,141.0,1,2,1,4,4,136.3,1,0,1,1,1,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,1 +2,39,1,9003,0,1,120.0,1,2,2,1,4,100.0,0,0,1,1,0,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,141.0,1,4,3,2,1,136.3,1,0,1,1,0,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,120.0,1,1,19,5,4,140.4,0,0,1,1,1,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,154.0,1,1,37,4,9,134.8,1,0,1,1,1,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,100.0,1,19,19,5,5,101.8,1,0,1,1,1,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,2 +1,17,3,9670,0,1,137.0,1,1,38,4,7,138.4,0,0,1,1,0,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,152.0,1,37,37,7,5,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,118.0,1,37,1,9,7,117.0,1,0,1,0,0,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,140.0,1,12,3,4,3,118.0,1,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9070,0,1,133.0,1,1,2,9,2,128.8,0,0,1,1,0,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,1 +1,39,1,171,0,1,140.0,1,37,37,9,9,100.8,0,1,1,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9070,0,42,130.0,1,40,19,3,5,130.0,1,0,1,0,1,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,143.0,1,1,19,3,3,133.9,0,0,1,1,1,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,1 +2,1,5,9500,0,1,130.0,1,1,19,4,4,122.3,0,0,1,1,1,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,9,9,125.0,1,0,1,1,1,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,120.0,1,37,37,7,8,120.0,0,0,1,1,1,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,1 +1,1,2,9147,0,1,125.0,1,1,19,4,9,124.0,1,0,1,1,1,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,131.0,1,38,19,9,9,130.0,1,0,1,1,0,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,132.0,1,1,1,4,1,119.4,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9500,0,1,135.0,1,19,19,7,7,128.0,1,0,1,1,1,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,1 +1,39,1,9500,0,19,133.1,1,38,38,9,9,114.8,0,0,1,1,1,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,130.0,1,2,2,6,6,130.0,0,0,1,0,0,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,112.0,1,19,38,9,10,112.0,1,0,1,1,1,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,2 +1,39,1,9254,0,1,170.0,1,37,37,4,6,138.3,0,0,1,1,1,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,1 +1,39,1,9147,0,19,100.0,1,38,19,7,9,132.0,0,0,0,0,0,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,133.1,1,19,19,9,9,119.0,1,0,1,0,1,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,0 +1,17,2,9085,0,1,138.0,1,37,37,9,7,123.3,1,0,1,1,1,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,2 +1,39,1,8014,1,1,133.1,1,37,37,9,9,112.5,0,0,1,1,1,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,1 +1,51,1,9670,0,1,140.0,1,12,5,3,3,126.6,0,0,1,1,0,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,1 +1,51,1,9085,0,1,125.0,1,1,1,9,4,120.0,0,0,1,1,1,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,151.0,1,1,1,4,3,132.3,0,0,1,1,0,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,1 +1,43,1,9556,0,1,130.0,1,1,37,5,5,128.0,1,0,1,1,0,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,1 +1,17,6,9670,0,1,113.0,1,4,1,3,10,112.3,0,0,1,1,1,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,17,1,9773,0,1,125.0,1,37,37,5,7,120.1,0,0,1,1,1,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,1 +1,53,1,171,0,42,130.0,1,1,19,9,9,130.0,1,0,1,0,0,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,1 +1,51,1,33,0,1,121.0,1,19,37,5,7,118.6,0,0,1,1,1,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,131.0,1,37,37,90,90,137.0,0,0,1,1,1,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,150.0,1,19,1,4,4,137.8,0,0,1,1,1,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,1,140.0,1,37,37,5,6,128.5,0,0,1,1,1,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,130.0,1,37,2,9,4,126.5,1,0,1,0,0,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,0 +1,1,2,9238,0,1,147.0,1,19,38,9,8,135.8,1,0,1,1,1,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,106.0,1,19,37,9,7,109.5,1,0,1,1,1,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,110.0,1,37,37,9,10,140.0,0,0,0,0,0,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,105.0,1,19,37,8,8,102.6,0,1,1,1,1,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,2 +1,17,6,9147,0,1,133.0,1,19,38,5,6,123.2,1,0,1,1,0,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,2 +1,43,1,9670,0,1,160.0,1,34,34,99,99,100.1,0,0,1,0,0,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,0 +4,7,1,9500,0,40,130.0,1,37,37,3,3,130.0,1,0,1,1,1,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,2 +1,43,2,9853,0,1,118.0,1,19,1,5,4,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,2 +1,43,1,8014,1,1,117.0,1,37,37,9,9,100.0,0,0,1,1,1,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,0 +1,53,1,9238,0,42,130.0,1,1,19,5,5,128.3,0,0,0,0,1,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,0 +1,43,1,9130,0,1,127.0,1,19,38,4,5,120.7,1,0,0,1,1,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,38,37,9,4,150.0,1,0,1,1,0,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,1 +1,39,1,9238,0,1,133.1,1,37,29,0,4,120.5,0,0,1,0,0,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,121.0,1,37,19,9,9,141.4,0,0,0,0,0,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,120.0,1,38,37,9,7,108.0,0,0,1,1,0,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,153.0,6,37,37,9,9,131.8,1,0,1,1,1,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,153.0,1,38,19,9,5,138.5,1,0,1,1,1,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,1 +1,17,2,9254,0,1,107.0,1,12,19,5,5,102.8,1,0,1,1,1,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9238,0,1,135.0,1,1,19,7,7,126.6,1,0,1,1,1,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,124.0,1,1,19,123,103,113.9,1,1,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,144.0,1,37,37,7,9,126.8,1,0,0,0,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9556,0,1,120.0,1,37,37,9,4,150.0,0,0,1,0,1,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,0 +1,43,3,171,0,1,120.0,1,37,37,9,9,143.3,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,140.0,1,38,19,4,10,122.3,1,0,1,1,1,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,157.0,1,3,38,1,5,136.7,1,0,1,1,1,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,2 +2,39,1,9991,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,150.0,1,3,1,2,8,153.8,1,0,1,1,1,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,130.0,1,2,1,2,7,126.2,1,0,1,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,142.0,1,37,37,9,9,132.9,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,43,1,9238,0,1,124.0,1,1,1,3,1,118.8,1,0,0,0,1,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,1,19,4,5,100.0,0,0,1,1,0,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,2 +1,17,5,9238,0,1,122.0,1,37,37,7,5,112.9,1,0,1,1,1,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,97.5,1,0,1,1,0,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,171,0,1,140.0,1,1,3,3,3,138.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,132.0,1,1,1,3,3,119.4,1,0,1,1,1,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,1 +1,42,1,9500,0,1,100.0,1,3,19,2,8,153.0,0,0,1,1,0,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,2 +1,1,1,9254,0,1,123.0,1,38,37,5,5,125.1,0,0,1,1,1,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9130,0,1,133.0,1,38,38,5,8,120.4,1,0,1,1,1,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,1 +1,17,4,9773,0,1,129.0,1,3,1,2,7,132.5,1,0,1,1,0,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,2 +4,39,1,9003,0,19,133.1,1,37,37,9,9,110.0,0,0,1,1,0,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,133.0,1,3,1,9,3,123.2,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,137.0,1,38,19,9,5,129.3,1,0,1,1,1,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,123.0,1,3,1,2,9,127.6,1,0,1,1,0,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,2 +2,39,1,9085,0,19,133.1,1,19,19,9,5,101.0,1,0,1,1,1,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,116.0,1,19,19,7,7,111.1,1,0,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,1,1,9070,0,1,147.0,1,3,1,2,3,149.8,1,0,1,1,0,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,100.0,1,37,37,7,9,100.0,1,0,1,1,1,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,141.0,1,38,38,7,7,132.5,1,0,1,1,1,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,168.0,1,1,1,5,5,161.0,1,0,1,1,0,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,0 +5,39,1,9003,0,19,133.1,1,19,1,9,9,119.4,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,114.0,1,1,19,9,9,111.9,1,0,1,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,2 +1,39,1,9500,0,1,130.0,1,37,37,3,7,143.8,0,0,1,1,0,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,133.1,1,19,19,9,7,100.0,0,0,1,1,0,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,0 +1,17,3,9853,0,1,132.0,1,34,34,0,0,131.3,1,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,157.0,1,37,37,9,9,143.0,0,0,1,1,0,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,1 +5,42,1,9254,0,2,120.0,1,37,37,4,9,120.0,0,0,1,1,1,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,6,1,1,192,144,129.8,0,0,1,1,0,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,2 +1,1,2,9500,0,1,139.0,1,38,37,9,7,125.0,1,0,1,1,1,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,1 +1,17,4,9238,0,1,133.1,1,1,19,9,5,95.0,1,0,1,1,1,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,180.0,1,37,37,7,4,153.8,1,0,1,1,1,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,4,9773,0,1,133.0,1,1,19,9,9,119.7,1,0,1,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,1 +1,17,5,9500,0,1,124.0,1,3,38,2,1,119.8,0,0,1,1,0,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,133.1,1,37,37,9,9,148.2,1,0,0,1,1,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,2 +2,39,1,9991,1,19,133.1,1,37,37,9,7,114.8,0,0,0,1,0,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,133.1,1,1,19,4,8,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,180.0,41,37,37,9,9,152.7,1,0,0,0,0,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9085,0,1,130.0,1,19,19,90,7,115.8,0,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,161.0,1,38,37,5,5,154.4,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,148.0,1,1,38,4,5,148.7,0,0,1,1,0,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,19,38,9,7,131.3,1,0,0,1,1,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,122.0,1,1,1,4,9,112.9,1,0,1,1,1,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,1,4,9500,0,1,142.0,1,38,38,9,8,129.8,1,0,1,1,1,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,1 +3,39,1,9003,0,1,170.0,1,1,37,6,6,170.0,0,0,0,1,1,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,2 +1,1,2,9147,0,1,130.0,1,37,37,9,9,117.8,0,0,1,1,1,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9147,0,1,140.0,1,37,37,9,7,132.3,1,0,1,1,1,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,132.0,1,2,1,9,9,126.4,1,1,1,1,1,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,140.0,1,1,3,9,2,140.0,1,0,1,1,1,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,117.0,1,1,19,4,4,109.3,0,0,1,1,0,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,176.0,1,3,38,3,7,169.7,0,0,1,1,1,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,133.1,1,37,38,7,7,98.0,1,0,1,1,0,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,136.0,1,3,3,2,2,128.7,0,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,12,38,4,9,107.0,1,0,1,1,1,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,0 +1,17,1,9130,0,1,156.0,1,2,9,3,5,166.9,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,1 +1,17,1,9130,0,1,123.0,1,19,3,3,2,121.6,1,0,0,1,1,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,171,0,1,129.0,1,1,1,9,9,124.8,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9119,0,1,125.0,1,19,1,5,4,121.5,1,0,1,1,0,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,0 +1,17,1,9085,0,1,163.0,14,37,37,9,9,150.8,1,0,1,1,1,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,1 +1,7,2,9130,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,1,9085,0,1,135.0,1,1,2,9,1,134.3,1,0,1,1,1,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,19,37,6,6,120.0,0,0,1,1,1,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,1,130.0,1,37,37,9,7,133.0,1,0,1,1,1,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,143.0,1,1,19,4,6,135.0,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +4,43,2,9991,1,38,133.1,1,3,1,2,9,125.4,0,0,1,1,0,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,140.0,1,3,1,2,4,124.1,0,0,1,1,1,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,37,38,175,103,127.0,0,0,1,1,0,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,151.0,1,1,3,1,1,111.0,0,0,1,1,0,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,133.0,1,37,19,9,8,141.4,0,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,133.1,1,38,37,5,5,108.0,0,0,1,1,1,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,9147,0,1,118.0,1,3,19,2,4,113.8,1,0,1,1,1,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,1,1,3,5,141.7,0,0,1,1,1,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,42,1,9119,0,1,130.0,1,19,37,9,3,135.0,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,0 +4,39,2,9147,0,19,133.1,1,37,37,9,7,116.4,0,0,0,0,0,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,148.0,1,19,38,9,8,134.8,1,0,1,1,0,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,116.0,1,19,19,4,7,110.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,1 +1,1,5,9147,0,1,122.0,1,38,38,9,9,117.5,1,0,0,0,1,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,122.0,1,37,37,9,9,125.9,1,0,1,1,0,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,171,0,1,127.0,1,1,1,9,5,124.2,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9147,0,39,117.4,1,19,1,4,9,117.4,1,0,1,1,1,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,150.0,1,37,38,9,9,146.2,0,0,1,1,1,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,2 +1,17,1,9254,0,1,158.0,1,37,37,5,9,138.1,1,0,1,1,1,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,0 +1,7,1,9500,0,3,140.0,1,1,37,9,5,140.0,0,0,1,1,1,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,1 +1,44,1,9238,0,39,140.0,1,1,1,9,3,135.7,1,0,1,1,1,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +2,7,1,171,0,3,120.0,1,19,19,9,9,130.0,1,0,1,1,0,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,10,100.0,1,34,34,0,0,113.0,1,0,1,1,1,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,1 +1,1,1,8014,1,1,125.0,1,37,37,9,7,114.9,0,0,1,1,1,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,1 +1,18,6,9500,0,1,124.0,1,37,37,9,7,117.8,0,0,1,1,1,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,1 +1,1,1,9773,0,1,109.0,1,2,3,3,3,111.8,1,0,0,1,0,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,149.0,1,1,1,9,3,156.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +2,44,1,9119,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,2 +1,44,1,9130,0,39,120.0,6,4,4,3,6,120.0,0,0,0,0,1,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,0 +5,1,3,9085,0,1,133.0,1,19,19,4,7,119.7,1,0,1,1,1,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,2 +1,1,1,9085,0,1,127.0,1,37,37,9,9,122.8,1,0,1,1,1,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,171,0,39,140.0,1,1,1,9,9,140.0,0,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9773,0,1,132.0,1,1,1,4,9,124.3,1,0,0,1,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +4,39,2,9670,0,19,133.1,1,19,1,90,90,103.0,0,0,1,0,0,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,26,1,9147,0,2,133.1,1,34,34,0,0,121.5,1,0,1,1,1,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,143.0,1,19,38,9,6,131.5,1,0,1,1,0,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,1 +1,17,1,9147,0,1,123.0,1,1,19,3,4,122.0,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,171,0,1,133.1,1,3,1,2,3,141.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,19,37,9,4,120.0,0,0,1,1,1,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,1,1,3,3,125.7,1,0,1,1,1,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,121.0,1,37,37,5,5,118.9,1,0,1,1,1,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,1 +1,51,1,9500,0,1,129.0,1,37,38,3,3,137.8,1,0,1,1,1,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,144.0,1,3,1,2,4,134.9,1,0,0,1,1,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,0 +1,17,5,9254,0,1,113.0,1,1,1,2,3,110.2,1,0,1,1,0,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,1,133.1,1,1,19,4,5,120.0,1,0,1,1,0,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,0 +1,39,1,9254,0,19,133.1,1,19,1,9,5,97.0,0,0,0,0,0,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9500,0,1,126.0,1,1,19,6,7,115.5,1,0,1,1,1,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,1 +1,42,1,9853,0,1,141.0,1,37,19,9,3,133.0,0,0,1,1,1,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,0 +1,39,1,9085,0,19,133.1,1,19,19,4,9,139.9,1,0,1,1,1,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,43,2,9254,0,1,140.0,1,19,19,9,9,126.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,108.0,1,34,38,0,3,105.9,0,0,1,1,0,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,114.0,1,19,19,9,7,107.7,0,0,1,1,1,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,0 +1,17,1,171,0,1,130.0,1,3,1,9,9,126.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.1,1,19,37,0,0,137.0,1,0,1,1,1,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9119,0,1,117.0,1,1,2,3,2,119.8,1,0,1,1,0,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9147,0,1,115.0,1,1,37,4,9,117.1,1,0,0,1,1,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,130.0,1,12,19,4,5,118.5,0,1,1,1,1,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,34,37,5,5,120.4,0,0,1,0,1,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,0 +1,44,1,171,0,39,150.0,1,19,1,9,9,154.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,43,1,9147,0,1,140.0,1,37,37,6,6,122.9,0,0,1,1,1,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,0 +1,42,1,9070,0,1,100.0,1,3,2,2,2,115.9,0,0,1,1,1,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,2 +1,17,1,171,0,1,128.0,1,1,1,4,10,134.7,0,0,1,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,1,1,9,9,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,110.0,1,37,37,7,7,133.9,0,0,1,1,1,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,0 +1,43,1,9773,0,1,119.0,1,19,37,5,5,105.0,1,0,1,1,1,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,2 +2,43,1,9991,1,1,140.0,1,37,37,4,1,122.7,0,0,1,1,0,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,135.0,1,37,1,3,5,121.0,0,0,1,1,1,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,123.0,1,3,1,2,3,124.1,1,0,1,1,1,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,0 +1,17,1,9670,0,1,132.0,1,19,1,5,4,119.1,0,0,0,1,0,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,5,9254,0,1,130.0,1,37,38,9,9,122.7,1,0,0,1,0,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9147,0,1,117.0,1,1,38,8,9,117.0,1,0,1,1,0,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,140.0,1,19,19,9,6,135.4,1,0,1,1,1,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,162.0,1,37,37,9,6,132.0,0,0,0,1,0,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,139.0,1,19,38,4,9,128.5,1,0,1,1,1,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,0 +4,39,1,9991,1,1,130.0,1,38,19,9,7,148.0,0,0,1,1,1,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +5,43,1,9500,0,1,131.0,1,1,38,5,5,118.8,0,0,1,1,1,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,5,9238,0,1,126.0,1,38,1,9,5,125.7,1,0,1,1,1,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,1 +1,53,1,9085,0,42,140.0,1,1,1,4,3,140.0,1,0,0,1,1,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,128.0,1,1,1,4,5,120.8,1,0,1,1,1,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,139.0,1,37,37,9,6,133.5,1,0,1,1,1,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,150.0,1,38,38,4,1,150.0,1,0,1,1,0,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,9147,0,1,133.1,1,1,1,4,4,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9853,0,1,140.0,1,37,19,9,8,122.3,0,0,1,1,1,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,0 +1,43,1,8014,1,1,120.0,1,38,19,5,4,118.3,0,0,1,1,1,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,2 +1,7,1,9130,0,3,140.0,1,2,38,2,3,140.0,1,0,1,0,0,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,122.0,1,9,19,90,6,103.4,0,0,1,1,1,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,1 +2,39,1,9070,0,19,133.1,1,37,37,9,10,126.3,0,0,1,0,0,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,160.0,1,38,38,7,7,147.8,0,0,1,1,1,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,2 +1,39,1,9238,0,12,100.0,1,37,37,9,9,124.3,0,0,1,1,0,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,1 +1,18,2,8014,1,1,117.0,1,3,1,3,4,111.8,1,0,1,1,1,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,38,37,7,7,140.0,0,0,1,1,0,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,0 +1,43,1,9853,0,1,140.0,1,3,1,3,3,128.3,1,0,1,1,1,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,127.0,1,37,38,9,9,120.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,1,161.0,1,19,37,4,10,100.0,0,0,1,1,0,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,1 +1,16,4,9500,0,1,145.0,1,1,1,4,4,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,1 +1,7,1,9853,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,0 +1,1,2,171,0,1,127.0,1,2,19,5,5,139.6,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,148.0,1,19,19,4,4,133.8,0,0,1,1,1,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,140.0,1,19,19,1,1,129.5,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,171,0,1,129.0,1,37,37,9,9,122.0,1,0,1,0,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,1,12,3,10,131.6,1,0,1,1,1,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,130.0,1,38,37,3,6,135.6,1,0,1,1,1,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,0 +1,51,1,9991,1,39,120.0,1,1,4,4,10,118.1,0,0,1,1,0,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,0 +1,39,1,9853,0,19,133.1,1,19,4,9,4,116.0,1,0,1,1,1,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9238,0,1,133.1,1,1,37,8,9,118.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,4,9500,0,1,125.0,1,19,1,1,1,117.8,1,0,1,1,1,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,141.0,1,1,38,4,5,125.0,1,0,1,1,1,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,121.0,1,38,38,7,5,120.0,1,0,1,1,1,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,2 +1,17,3,9500,0,1,142.0,1,3,3,3,3,132.9,1,0,1,1,0,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,0 +1,44,1,9238,0,39,140.0,1,37,19,191,102,136.1,1,0,0,1,1,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,2 +1,39,1,9991,1,2,140.0,1,3,3,2,2,155.7,1,0,1,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9119,0,1,135.0,1,12,19,5,5,121.0,0,0,1,1,0,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,135.0,1,3,3,2,2,123.0,1,0,1,0,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,117.0,1,1,1,4,4,117.7,1,0,1,1,0,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +1,43,1,171,0,1,120.0,1,3,3,2,2,120.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,1,38,1,7,120.0,0,0,1,1,1,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,1 +1,17,3,9238,0,1,122.0,1,19,19,7,7,117.5,1,0,1,1,1,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,1,37,37,9,9,144.2,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +4,39,1,9500,0,1,140.0,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,131.0,1,19,19,9,9,139.8,1,0,1,1,1,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,127.0,1,3,3,2,5,100.0,0,0,1,1,1,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,2 +1,39,1,9085,0,1,133.1,1,3,19,2,9,110.0,0,0,1,1,1,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,0 +4,39,1,9500,0,19,133.1,1,38,1,9,4,120.0,0,0,1,1,1,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,1 +1,16,1,9085,0,1,150.0,1,3,3,2,1,153.5,1,0,1,1,1,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,153.0,1,19,37,9,9,153.7,0,0,1,1,1,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,130.0,1,19,19,3,8,131.8,0,0,1,1,1,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,1,2,9853,0,1,131.0,1,1,1,2,9,121.9,1,0,1,1,1,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,136.0,1,3,3,3,3,130.8,0,0,1,1,1,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,126.0,1,1,19,4,0,120.1,0,1,1,1,1,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +1,44,1,9003,0,1,120.0,1,3,2,2,6,120.0,1,0,1,1,0,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,2 +2,39,1,9130,0,19,133.1,1,2,1,2,9,157.0,1,0,1,1,0,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,1 +1,7,1,9853,0,3,150.0,1,19,19,4,5,150.0,0,0,0,0,1,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,51,1,9070,0,12,133.1,1,37,19,3,7,106.6,0,0,0,1,1,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,2 +1,1,2,9085,0,1,157.0,1,3,3,5,2,153.9,1,0,1,1,1,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,1 +1,1,2,171,0,1,117.0,1,1,19,3,3,121.6,1,0,1,1,1,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,1 +1,1,2,9147,0,1,113.0,1,38,38,9,5,107.4,1,0,1,1,0,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,2 +1,39,2,9147,0,12,133.1,1,19,38,9,9,120.0,1,0,0,0,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,152.0,1,37,37,9,9,139.0,1,0,1,1,1,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,138.0,1,1,19,9,9,124.0,0,0,1,1,1,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,1 +2,39,1,9853,0,1,110.0,1,37,37,9,9,95.5,0,0,0,0,1,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9130,0,1,150.0,1,19,19,4,4,130.0,0,0,1,0,0,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,3,9119,0,1,138.0,1,1,19,4,3,125.4,1,0,1,1,0,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,0 +1,17,6,9147,0,1,120.0,1,37,38,9,9,115.5,1,0,0,0,0,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,2 +1,1,3,9670,0,1,134.0,1,14,11,0,0,128.4,1,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,145.0,1,38,37,9,7,129.3,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,18,6,9500,0,1,126.0,1,37,37,5,5,122.8,1,0,1,1,1,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,133.0,1,1,1,4,4,129.2,1,0,1,1,1,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,0 +1,44,1,9070,0,39,120.0,1,1,19,4,7,120.0,0,0,0,0,0,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,136.0,1,19,38,9,9,121.7,0,1,1,1,1,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,126.0,1,1,1,9,10,126.7,1,0,1,1,1,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,1 +1,1,3,9085,0,1,134.0,1,38,19,9,5,129.1,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,133.1,1,1,37,9,9,117.0,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,5,9238,0,1,130.0,1,19,1,5,5,130.0,1,0,1,1,1,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,8014,1,40,140.0,1,19,37,5,9,148.0,0,0,1,1,1,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,137.0,1,3,38,1,9,131.4,0,0,1,0,0,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,0 +1,1,2,9670,0,1,123.0,1,1,38,7,7,120.6,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,139.0,1,3,1,2,7,124.0,1,0,1,1,1,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,0 +1,1,2,171,0,1,152.0,1,38,19,9,9,151.7,1,0,1,1,1,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,110.0,1,37,37,9,4,114.3,1,0,1,1,0,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,2 +1,51,1,9991,1,1,120.0,1,38,3,5,3,128.2,0,0,0,1,0,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,141.0,1,3,2,2,2,133.3,1,0,1,1,0,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,2 +1,5,1,171,0,1,137.0,1,3,19,1,10,144.7,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,2 +1,43,1,9003,0,1,130.0,1,37,1,5,4,130.0,0,0,1,1,0,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,0 +1,18,1,9773,0,1,135.0,1,1,1,3,3,129.8,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,150.0,1,38,38,9,8,150.0,1,0,1,1,0,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,1 +1,17,2,9773,0,1,150.0,1,1,1,4,5,130.8,0,0,1,1,0,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9773,0,1,123.0,1,1,1,4,7,125.1,1,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,1 +1,17,4,9119,0,1,129.0,1,34,36,0,5,118.9,1,0,1,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,0 +1,1,2,9500,0,1,144.0,1,38,37,9,9,128.8,1,0,1,1,0,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,130.0,1,38,38,9,9,150.0,0,0,0,0,0,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,128.0,1,1,1,7,7,120.5,1,0,1,1,1,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,2 +1,7,1,9500,0,3,140.0,1,3,1,4,4,140.0,0,0,1,1,1,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,134.0,1,19,19,1,1,120.4,1,0,1,1,0,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,147.0,1,1,38,4,8,141.1,1,0,1,1,1,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,126.0,1,3,1,5,5,125.7,0,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,1 +2,1,4,9853,0,1,134.0,1,37,37,5,7,122.5,0,1,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,148.0,1,38,38,4,9,131.6,0,0,1,1,0,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,0 +2,39,1,9085,0,9,133.1,1,1,1,4,4,120.0,1,0,1,0,0,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,0 +1,39,1,9254,0,1,150.0,1,3,1,3,4,122.3,0,0,1,1,0,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,125.0,1,19,37,3,7,126.8,0,0,1,1,1,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,2 +1,18,1,9670,0,1,128.0,1,19,3,9,7,120.0,1,0,1,1,1,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,160.0,1,2,1,4,4,137.3,1,0,1,1,1,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,1 +2,39,1,9238,0,42,170.0,1,19,38,8,8,159.5,0,0,1,1,0,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9773,0,1,143.0,1,1,1,4,9,144.1,1,0,1,1,0,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,9991,1,1,130.0,1,37,37,9,9,127.8,0,0,1,1,0,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,51,1,9147,0,1,130.0,1,19,38,9,8,115.7,0,0,1,1,0,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,2 +1,17,3,9773,0,1,135.0,1,1,19,5,7,135.0,0,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,135.0,1,1,1,9,9,133.3,0,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,6,9500,0,1,136.0,1,1,1,4,5,123.3,0,0,1,0,1,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,143.0,1,5,5,2,2,137.8,0,0,1,1,0,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,133.1,1,1,19,141,114,140.0,1,0,1,1,1,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,17,6,9670,0,1,117.0,1,38,19,0,1,114.6,0,0,1,0,0,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,133.1,1,1,19,4,10,145.8,0,0,1,1,0,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,129.0,1,1,37,4,9,118.2,0,0,1,1,0,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,1 +1,7,1,9500,0,3,130.0,1,37,37,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,1 +1,17,4,9670,0,1,135.0,1,38,38,9,7,127.0,1,0,1,1,1,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,126.0,1,1,1,90,90,119.0,1,0,0,1,0,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9773,0,1,120.0,1,1,38,5,5,121.4,0,0,1,0,1,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,136.0,1,1,38,9,9,130.8,1,0,1,1,1,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,131.0,1,19,37,9,9,123.8,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,144.0,1,19,19,9,9,142.6,1,0,1,1,1,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,126.0,1,38,38,7,8,126.7,1,0,1,1,1,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,3,171,0,1,125.0,1,37,37,5,10,120.5,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,7,1,9130,0,2,110.0,1,19,19,4,8,110.0,1,0,1,1,0,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,3,1,2,8,150.0,0,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,5,171,0,1,139.0,1,19,3,9,2,136.9,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,1,9147,0,1,100.0,1,38,38,5,5,101.8,1,0,1,1,1,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,2 +1,44,2,9238,0,39,150.0,1,3,19,4,9,147.0,1,0,1,1,1,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,39,1,9254,0,19,133.1,1,37,37,9,4,100.0,0,0,1,1,0,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,0 +1,17,1,9130,0,1,130.0,1,19,38,4,7,122.5,0,0,1,1,0,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,19,37,1,1,140.0,0,0,0,1,0,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,2 +1,17,1,9070,0,1,157.0,1,3,3,3,3,146.2,0,0,1,1,0,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,9500,0,1,150.0,1,37,19,8,4,130.8,0,0,1,1,0,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,133.1,1,19,19,7,7,130.0,1,0,1,1,1,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,150.0,1,19,1,9,8,150.0,1,0,1,1,0,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,127.0,1,1,19,7,7,121.8,1,0,1,1,1,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,2 +1,1,1,9853,0,1,148.0,1,19,19,5,7,141.7,0,0,1,1,1,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,130.0,1,1,19,9,9,133.4,0,0,1,1,1,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,123.0,1,37,38,3,3,122.0,0,0,0,1,0,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,2 +1,17,1,9070,0,1,132.0,1,37,38,9,7,138.0,0,0,1,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,146.0,1,2,19,3,9,130.3,1,0,1,1,0,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,1 +1,44,1,171,0,39,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,116.0,1,3,1,3,4,115.7,0,0,1,0,0,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,2 +1,1,1,9670,0,1,130.0,1,19,37,4,5,118.8,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,124.0,1,37,37,7,9,121.2,0,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,127.0,1,19,37,9,3,120.7,1,0,1,1,1,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +2,43,1,9070,0,2,140.0,1,37,37,6,6,140.0,1,0,1,1,0,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,1 +1,39,1,9500,0,1,100.0,1,3,1,2,5,121.3,1,0,1,1,1,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,2 +1,39,1,9991,1,19,133.1,1,37,37,9,6,105.3,0,0,0,1,1,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9670,0,1,155.0,1,1,19,4,8,134.7,1,0,1,1,1,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,15,1,9119,0,1,160.0,32,1,3,143,152,160.0,0,0,0,1,1,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,2 +1,53,1,9670,0,42,140.0,1,19,37,3,6,140.0,1,0,0,1,1,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,2 +1,1,6,9853,0,1,140.0,1,38,38,9,7,137.6,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,140.0,1,19,19,7,7,129.5,1,0,1,1,1,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,1 +1,39,1,9773,0,19,133.1,1,19,19,3,4,104.0,0,0,0,0,1,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,130.0,1,37,37,9,9,118.8,0,0,0,1,0,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,136.0,1,1,1,9,1,133.0,1,0,1,1,1,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,143.0,1,38,38,9,9,138.8,1,0,1,1,1,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,1 +2,39,1,9147,0,1,140.0,1,37,37,6,10,131.8,0,0,1,1,1,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,2 +1,39,1,9085,0,1,130.0,1,4,1,2,9,120.0,0,0,1,0,1,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,2 +1,1,4,9500,0,1,148.0,1,19,19,4,5,137.0,1,0,1,1,1,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,120.0,1,37,19,5,3,156.0,1,0,1,1,0,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,9853,0,1,133.1,1,12,1,4,0,134.8,1,0,1,1,1,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,122.0,1,1,1,9,8,120.3,0,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,156.0,1,19,38,9,5,170.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,3,171,0,1,129.0,1,38,37,9,3,127.3,1,0,0,0,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,142.0,1,38,38,9,10,127.0,1,0,1,1,1,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,150.0,1,38,19,3,3,120.1,0,0,1,0,1,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,141.0,1,37,37,9,9,126.7,1,0,0,1,1,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,43,3,9147,0,1,127.0,21,3,37,3,3,117.9,1,0,1,1,1,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,1,120.0,1,1,19,4,7,110.0,0,0,1,1,0,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,0 +2,42,1,9254,0,1,136.0,1,2,2,134,112,130.0,1,0,1,1,0,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,0 +1,18,1,9119,0,1,122.0,1,19,1,90,3,116.1,1,0,0,0,0,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9500,0,1,120.0,1,2,4,4,5,136.6,0,0,1,1,0,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,0 +1,18,1,9070,0,1,143.0,1,38,38,7,5,141.6,0,0,1,1,1,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,1 +1,43,1,9119,0,1,140.0,1,37,38,5,7,146.5,0,0,1,1,0,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,125.0,1,19,19,9,9,121.5,1,0,1,1,1,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,1,0,1,1,1,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,159.0,1,3,3,2,2,165.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,127.0,1,3,1,2,9,119.3,1,0,1,1,1,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,1 +1,17,6,9238,0,1,117.0,1,1,38,4,7,114.6,0,0,1,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9119,0,1,148.0,1,19,19,9,8,129.8,0,0,1,0,0,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,2 +1,17,4,9119,0,1,127.0,1,19,19,5,5,120.4,1,0,0,0,0,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,5,9500,0,1,144.0,1,19,1,5,3,141.0,1,0,1,1,1,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,1 +1,17,3,9556,0,1,126.0,1,19,19,9,4,119.0,1,0,1,1,1,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,0 +1,1,4,9119,0,1,126.0,1,3,19,2,9,123.6,1,0,1,1,0,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,120.0,1,1,2,144,123,125.3,0,0,0,1,0,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,2 +1,39,1,9070,0,1,130.0,1,1,19,4,4,110.0,1,0,1,1,1,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,140.0,1,37,37,90,5,115.5,0,0,1,0,0,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,130.0,1,38,38,9,9,120.0,0,0,1,1,1,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,0 +1,17,2,9853,0,1,141.0,1,3,1,1,5,130.2,1,0,1,1,1,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,2 +2,1,1,9500,0,1,156.0,1,1,1,9,10,135.5,0,0,1,1,1,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,1 +2,7,1,8014,1,3,170.0,1,19,19,4,4,170.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,2,9147,0,1,134.0,1,37,19,9,8,126.3,1,0,1,1,1,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,122.0,1,12,12,5,7,126.6,1,0,1,1,1,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,38,38,9,7,138.8,1,0,1,1,1,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,132.0,1,37,37,5,7,127.5,1,0,1,1,1,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,1 +1,16,2,9238,0,1,130.0,1,37,37,5,6,126.9,1,0,1,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,110.0,1,3,2,3,3,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,127.0,1,2,19,4,5,121.8,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,1 +1,39,1,9085,0,12,133.1,1,38,19,9,8,138.3,1,0,0,0,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +1,39,1,9147,0,19,133.1,1,3,1,3,5,153.2,1,0,0,1,1,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,37,19,5,9,130.0,1,0,1,1,1,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +2,39,2,9147,0,1,130.0,1,19,37,4,7,140.0,0,0,1,1,0,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,128.0,1,19,19,7,7,124.4,0,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,19,3,8,150.3,1,0,1,1,0,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,143.0,1,38,19,7,9,129.5,1,0,1,1,1,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,1 +1,42,1,9500,0,6,141.0,1,37,1,9,4,145.0,0,0,1,1,1,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,1 +1,17,1,9238,0,1,160.0,1,19,37,6,6,144.3,0,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,2,9238,0,1,133.1,1,19,19,4,5,120.6,1,0,1,1,1,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,37,19,9,3,116.5,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,127.0,1,1,1,3,4,130.2,1,0,1,1,0,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,4,9254,0,1,131.0,1,38,36,9,9,124.0,1,0,1,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,1 +1,1,5,9254,0,1,120.0,1,37,37,9,7,127.0,1,0,1,1,1,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,135.0,1,34,34,0,0,134.1,1,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9254,0,1,133.1,1,37,37,9,6,121.5,0,0,1,1,0,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,144.0,1,38,38,5,7,128.0,1,0,1,1,1,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,132.0,1,1,19,6,6,124.7,1,0,1,1,0,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,1 +1,17,2,9991,1,1,116.0,1,37,19,9,4,118.5,0,0,1,1,0,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,133.1,1,1,1,9,1,103.0,1,0,1,1,1,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,16,5,9085,0,1,134.0,1,19,37,8,8,123.9,1,0,1,1,0,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,2 +1,43,1,9773,0,1,114.0,1,37,38,9,5,107.4,1,0,1,0,0,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,38,37,5,7,120.0,1,0,1,1,1,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,135.0,1,1,38,4,6,122.1,0,1,0,0,0,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,0 +2,39,1,8014,1,1,150.0,1,37,37,7,5,143.0,0,0,1,1,1,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,1 +1,44,1,9991,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,1 +4,39,1,9238,0,19,133.1,1,37,37,9,10,103.5,0,0,1,0,1,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,126.0,1,19,38,9,9,132.0,1,0,1,1,1,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,125.0,1,1,1,7,3,143.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,39,1,9147,0,1,120.0,1,37,1,9,1,122.7,0,0,1,0,1,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +2,7,1,8014,1,3,124.4,1,37,34,0,0,130.0,0,0,1,1,1,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,1 +1,18,1,9085,0,1,106.0,1,1,19,3,5,104.6,0,0,1,0,0,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,2 +1,44,1,9119,0,39,160.0,1,3,38,2,3,160.0,0,0,0,0,0,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,148.0,1,3,19,2,5,130.0,0,0,1,1,1,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,2 +1,1,1,9130,0,1,133.0,1,1,37,9,9,123.2,1,0,1,1,1,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,17,5,9500,0,1,130.0,1,19,1,9,4,128.8,1,0,1,1,1,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,149.0,1,19,1,9,9,137.8,1,0,1,1,0,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,1 +4,43,1,9670,0,1,150.0,1,37,37,9,6,110.0,0,0,1,1,1,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,1 +2,39,1,9119,0,1,110.0,1,19,19,0,5,137.0,0,0,0,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9556,0,1,122.0,1,19,19,3,10,113.3,1,0,1,1,1,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,140.0,1,1,19,4,5,127.5,0,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,3,9070,0,1,128.0,1,37,37,5,5,124.5,1,0,1,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,1 +1,44,1,9085,0,39,150.0,6,5,4,1,1,150.0,0,0,1,1,1,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,131.0,1,38,37,7,7,127.2,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,130.0,1,37,37,9,6,126.5,1,0,1,1,1,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,1 +1,17,1,9119,0,1,116.0,1,19,37,90,5,116.7,1,0,1,1,0,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,0 +1,17,3,9853,0,1,140.0,1,38,38,5,7,126.7,1,0,1,1,1,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,0 +1,17,4,9238,0,1,129.0,1,37,37,9,8,117.1,1,0,1,1,0,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,144.0,1,19,19,9,9,130.5,1,0,1,1,1,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,124.0,1,19,1,7,10,116.0,1,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,122.0,1,1,19,4,4,127.3,1,0,0,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,12,12,4,1,155.3,1,1,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +2,15,1,9773,0,1,133.1,41,37,37,9,6,100.0,0,0,1,1,1,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,138.0,41,1,1,9,9,126.5,1,0,1,1,1,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,1 +1,18,6,9500,0,1,142.0,1,38,37,9,5,128.0,1,0,1,0,1,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,3,1,2,3,140.0,1,0,1,1,1,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,2 +1,42,1,9991,1,1,150.0,1,19,19,5,5,113.7,0,0,1,1,0,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,135.0,1,1,19,5,5,130.1,1,0,1,1,1,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,2,9254,0,1,120.0,1,19,1,9,8,117.2,0,0,1,1,0,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,130.0,1,19,19,9,7,119.5,1,0,1,1,0,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,133.0,1,1,1,4,5,136.2,1,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,15,1,9147,0,1,133.1,21,1,3,192,3,100.0,0,0,0,1,0,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,2 +1,1,1,9670,0,1,112.0,1,37,1,7,0,110.6,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9238,0,1,117.0,1,19,19,9,9,117.0,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9991,1,1,140.0,1,1,37,9,8,154.5,0,0,1,1,1,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,97.0,1,0,1,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,119.0,1,37,37,5,4,118.0,1,0,1,1,0,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,112.0,1,19,38,5,7,107.1,1,0,1,1,1,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,1 +2,18,2,8014,1,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,144.0,1,37,37,9,6,129.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,120.0,100,1,1,4,7,119.5,0,0,0,1,1,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,136.0,1,19,38,5,8,130.3,1,0,1,1,1,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,7,9,121.3,1,0,1,1,1,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,135.0,1,1,4,5,3,124.9,0,0,1,1,1,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,4,9670,0,1,128.0,1,38,38,3,7,121.0,1,0,1,1,1,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,15,1,9556,0,1,114.0,26,3,19,122,144,114.0,0,0,1,1,1,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,2 +1,17,2,9238,0,1,125.0,1,19,19,3,3,118.0,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,118.0,1,37,37,7,7,114.2,0,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,2 +1,17,1,9147,0,1,115.0,1,19,37,5,7,112.9,1,0,1,0,0,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,120.0,1,19,37,9,9,118.3,0,0,0,0,0,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9119,0,10,133.1,1,34,37,0,0,128.8,1,0,1,1,0,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,115.0,1,19,38,5,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,137.0,1,37,37,9,9,132.8,1,0,1,1,1,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9003,0,1,148.0,1,19,37,9,9,131.6,1,0,1,1,0,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9773,0,1,161.0,1,1,19,4,7,148.4,0,0,1,1,1,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,1 +2,43,1,9991,1,1,133.1,1,37,37,9,7,113.5,0,0,1,1,1,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,132.0,1,1,1,9,9,133.8,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,1,9254,0,1,125.0,1,37,37,9,9,122.9,0,0,1,1,0,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,123.0,1,3,1,9,3,121.3,1,0,1,1,1,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,2 +1,17,1,9991,1,1,154.0,1,38,38,4,5,134.1,0,0,1,1,1,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,2 +1,44,1,9130,0,39,140.0,1,19,19,5,5,140.0,1,0,0,0,1,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,2 +1,53,1,9085,0,42,170.0,1,1,19,4,7,170.0,0,0,1,1,1,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,1 +1,17,5,9147,0,1,131.0,1,19,38,3,10,119.8,1,0,1,1,1,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,141.0,1,19,19,9,9,126.0,1,0,1,1,1,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,1 +1,1,3,9500,0,1,137.0,1,19,19,5,4,131.5,1,0,1,1,1,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,118.0,1,19,1,9,3,113.5,1,0,0,1,1,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,100.0,1,37,37,99,99,100.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9130,0,1,120.0,6,1,3,9,2,120.0,0,0,0,1,1,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,2 +1,1,1,9147,0,1,127.0,1,19,19,5,5,129.8,1,0,1,1,1,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,134.0,1,37,37,9,9,129.8,1,0,1,1,1,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,121.0,1,37,37,5,9,116.5,1,0,1,1,1,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9070,0,1,117.0,1,19,37,5,5,131.0,1,0,0,0,0,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,125.0,1,1,38,9,7,119.8,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,5,9500,0,1,140.0,1,1,1,4,3,131.1,1,0,1,1,1,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,1 +1,1,5,9254,0,1,101.0,1,3,19,3,9,98.9,1,0,1,1,0,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,130.0,1,37,38,7,9,117.8,0,0,0,1,1,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,128.0,1,34,19,3,0,141.0,1,0,1,0,1,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,150.0,1,38,37,9,9,130.8,0,0,1,1,0,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,125.0,1,1,19,4,7,116.6,0,0,1,1,0,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,1 +1,43,1,9670,0,1,130.0,1,34,34,0,0,114.8,0,0,1,1,0,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,1 +2,42,1,9003,0,1,120.0,1,3,1,2,2,113.3,0,0,1,1,0,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +4,39,1,9991,1,1,133.1,1,37,37,5,5,138.7,0,0,1,1,1,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,0 +1,39,1,9238,0,1,140.0,1,34,34,0,0,114.0,1,0,1,0,1,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9991,1,1,133.1,1,37,19,3,10,136.1,0,0,1,1,0,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9070,0,1,110.0,1,37,37,7,7,110.2,0,0,1,1,0,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,150.0,1,4,5,4,2,150.0,0,0,1,1,0,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,2 +1,1,2,9119,0,1,149.0,1,38,38,5,5,141.0,0,0,1,1,0,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,2 +1,42,1,9085,0,39,150.0,1,1,1,4,7,150.0,1,0,1,1,1,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,1,38,4,9,131.7,1,0,1,1,1,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,42,1,9853,0,1,120.0,1,1,37,5,5,113.9,1,0,1,1,1,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9085,0,1,130.0,1,37,19,9,7,130.0,1,0,1,1,1,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,2 +1,17,4,9500,0,1,133.0,1,38,37,5,7,126.4,1,0,1,1,0,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,147.0,1,3,1,2,3,131.6,0,0,1,1,1,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,1 +1,39,1,9991,1,12,133.1,1,37,37,9,9,121.5,0,0,1,1,0,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,2 +2,1,1,9991,1,1,150.0,1,37,37,9,9,131.8,0,0,1,0,1,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,0 +1,43,4,8014,1,1,116.0,1,34,34,0,0,116.2,0,0,1,1,0,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,1 +1,44,1,9130,0,39,140.0,1,1,19,4,7,140.0,0,0,1,1,0,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,2 +1,17,1,9773,0,1,136.0,1,3,1,2,3,132.5,1,0,1,1,1,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,1 +4,39,1,9500,0,19,110.0,1,37,38,5,5,151.0,0,0,0,0,0,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,0 +1,17,2,9254,0,1,123.0,1,19,19,5,5,113.2,1,0,0,1,1,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,137.0,1,3,19,2,9,122.3,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +4,39,1,9254,0,1,120.0,1,37,19,9,9,131.0,1,0,1,1,0,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9556,0,1,123.0,1,19,19,4,9,113.8,1,0,1,1,1,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,150.0,1,3,37,4,7,139.5,0,0,1,1,0,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,145.0,1,38,37,3,9,138.4,1,0,1,0,1,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,2 +1,39,1,8014,1,1,140.0,1,37,37,9,7,122.0,1,0,0,0,0,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,0 +2,43,3,9991,1,1,120.0,1,37,37,9,9,128.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,6,9500,0,1,126.0,1,12,37,5,9,121.8,1,0,1,1,1,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,0 +2,39,1,9991,1,1,130.0,1,37,37,9,9,140.0,1,0,1,1,0,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,130.0,1,37,19,9,8,130.8,0,0,1,1,0,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,2 +1,1,3,9070,0,1,125.0,1,19,38,9,9,125.4,1,0,1,1,1,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,132.0,1,38,38,4,9,119.1,0,0,1,1,1,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,1 +4,7,1,9147,0,3,130.0,1,19,1,5,5,130.0,0,0,1,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,130.0,1,19,19,7,7,121.6,1,0,1,1,1,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9773,0,1,126.0,1,37,38,5,5,129.5,1,0,0,0,1,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,133.0,1,38,38,5,5,123.2,0,0,1,1,1,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,140.0,1,37,37,9,9,121.0,0,0,1,1,1,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,3,9500,0,1,131.0,1,37,37,9,9,118.0,1,0,1,1,1,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,2 +1,1,1,9670,0,1,120.0,1,38,19,4,8,115.1,0,0,1,1,1,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,2 +1,17,5,9773,0,1,111.0,1,19,12,7,3,115.9,1,0,1,1,1,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,135.0,1,1,19,9,7,123.5,1,0,1,1,1,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,37,4,9,130.0,1,0,1,1,1,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,2 +1,44,1,9119,0,39,130.0,1,3,19,3,4,130.0,0,0,1,1,0,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,2 +1,44,1,9147,0,39,130.0,22,2,37,2,8,130.0,0,0,0,0,0,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,119.0,1,37,37,9,6,119.0,0,0,0,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9500,0,1,142.0,1,38,37,9,8,130.8,1,0,1,1,1,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,136.0,1,38,1,9,4,129.7,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,1 +1,42,1,9003,0,1,140.0,1,19,19,4,4,140.0,1,0,1,1,0,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,19,133.1,1,1,19,4,10,114.0,0,0,1,1,0,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,0 +1,17,5,9670,0,1,125.0,1,19,30,7,7,118.4,1,0,1,1,1,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,2 +1,1,2,9500,0,1,135.0,1,19,19,9,10,122.9,1,0,1,1,1,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,100.0,1,37,37,9,9,108.0,1,0,1,1,0,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,127.0,1,37,37,9,9,119.3,1,1,1,1,0,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,133.0,1,38,19,9,10,125.0,1,0,1,1,1,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,116.0,1,3,3,3,3,110.1,1,0,1,1,0,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,133.1,1,1,1,5,8,123.0,1,0,1,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,144.0,1,37,37,9,3,150.5,0,0,1,1,1,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,133.0,1,3,1,2,4,130.2,0,0,1,1,0,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,116.0,1,38,37,9,6,109.7,1,0,1,1,1,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,1 +1,18,3,9853,0,1,128.0,1,38,37,5,9,116.8,1,0,1,0,0,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,150.0,1,37,37,4,9,132.1,1,0,0,1,1,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,160.0,1,1,19,4,6,155.7,1,0,1,1,1,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,130.0,1,19,1,9,9,131.9,0,0,1,1,1,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,126.0,1,3,3,2,2,121.1,0,0,0,1,1,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,133.0,1,38,38,7,7,147.0,0,0,1,1,1,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,137.0,1,37,37,9,9,126.2,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,149.0,1,38,37,5,5,137.1,1,0,1,1,1,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,143.0,1,2,37,1,1,133.2,1,0,1,1,1,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,2 +1,17,5,9070,0,1,122.0,1,19,38,5,7,119.6,0,0,0,0,1,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,137.0,1,19,38,9,9,127.2,1,0,1,1,1,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,110.0,1,1,1,4,4,125.9,0,0,1,1,0,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,130.0,1,1,38,5,9,118.1,0,0,0,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9853,0,1,130.0,1,37,19,9,5,102.5,0,0,1,1,1,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.0,1,19,1,9,1,122.2,0,0,1,1,1,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,39,140.0,1,3,3,2,2,140.0,1,0,1,1,1,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,134.0,1,37,38,9,9,120.3,1,0,1,1,1,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,1,1,37,4,7,110.0,0,0,1,1,0,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,0 +1,15,1,9085,0,1,133.1,41,3,3,4,2,101.3,0,0,1,1,1,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,113.0,1,1,1,5,4,106.7,1,0,0,1,1,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,0 +2,39,1,9991,1,19,133.1,1,37,37,5,5,111.9,1,0,1,1,0,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9853,0,1,134.0,1,19,38,4,8,122.1,1,0,1,1,1,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,0 +1,1,2,9853,0,1,133.0,1,19,37,4,9,130.2,1,0,1,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,127.0,1,19,19,5,5,160.0,0,0,1,1,0,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,1 +1,7,1,9500,0,3,130.0,1,37,38,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,140.0,1,19,38,7,7,136.5,1,0,1,1,1,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,1 +2,39,1,9773,0,19,133.1,1,37,37,9,6,110.0,0,0,1,0,1,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,0 +2,39,1,8014,1,1,120.0,1,34,34,99,99,101.8,0,0,1,0,1,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,135.0,1,1,1,4,7,129.8,1,0,1,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,131.0,1,37,38,5,5,128.9,0,0,1,1,1,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,1 +1,1,4,9070,0,1,139.0,1,3,19,1,5,138.3,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,6,9500,0,1,122.0,1,1,1,3,7,114.3,1,0,1,1,0,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,2 +1,1,1,9500,0,1,150.0,1,37,37,9,7,136.5,1,0,1,1,1,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,3,1,2,8,121.4,0,0,1,1,0,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,117.0,1,19,19,194,193,117.4,1,0,1,1,1,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,2 +2,39,1,9085,0,1,133.1,1,36,36,99,5,128.2,0,0,1,0,1,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,121.0,1,3,1,2,3,114.0,0,0,1,1,0,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,2 +1,51,1,9853,0,1,139.0,1,1,1,4,10,134.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9070,0,1,137.0,1,1,1,3,1,141.2,1,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,133.1,1,37,37,6,3,140.0,0,0,0,1,0,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,1,9147,0,1,126.0,1,37,37,4,7,116.9,0,0,1,1,0,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,2 +1,44,1,9130,0,39,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +2,43,1,9991,1,1,130.0,1,37,37,9,9,128.2,0,0,1,1,1,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,131.0,1,19,9,5,3,118.4,0,0,1,1,1,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,138.0,1,19,19,3,3,131.0,1,0,1,1,1,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,1,130.0,1,37,12,9,8,129.4,1,0,0,0,0,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,9991,1,1,134.0,1,37,37,9,9,113.7,0,0,1,1,1,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,5,9853,0,1,117.0,1,38,38,9,7,114.6,1,0,1,1,1,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,145.0,1,3,3,4,4,153.1,1,0,1,1,1,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,2 +1,43,1,9085,0,1,130.0,1,19,38,4,9,130.0,1,0,1,0,1,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9119,0,1,146.0,1,37,37,9,9,148.5,1,0,1,1,0,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,136.0,1,1,1,4,4,124.1,0,0,1,1,1,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,100.0,1,37,38,9,4,140.0,0,0,1,1,0,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,2 +1,44,1,9003,0,39,180.0,1,1,3,4,2,180.0,0,0,1,1,1,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,1 +1,15,1,9773,0,1,120.0,26,19,19,4,5,120.0,1,0,1,1,1,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,141.0,1,4,19,4,10,100.0,0,0,1,1,0,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,1,150.0,1,29,10,6,6,150.0,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,5,5,9254,0,1,122.0,1,1,37,9,7,119.6,1,0,1,1,1,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,128.0,1,19,38,9,7,124.2,1,0,1,1,0,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9130,0,1,172.0,1,19,19,9,9,163.3,1,0,1,1,1,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,129.0,1,38,37,5,5,142.0,1,0,1,1,1,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,100.0,1,1,3,9,10,120.0,0,0,0,0,0,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,1 +1,1,3,9238,0,1,135.0,1,1,12,9,10,121.0,1,0,1,1,1,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,136.0,1,2,2,3,3,120.0,1,0,1,1,0,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,2 +1,1,6,9147,0,1,143.0,1,38,37,9,9,128.7,1,0,1,1,0,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,2 +1,17,2,9500,0,1,126.0,1,37,37,7,7,126.2,1,0,1,1,1,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,2 +1,17,2,9254,0,1,135.0,1,19,19,4,3,135.0,1,0,1,1,0,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,2 +1,1,2,9254,0,1,132.0,1,1,19,9,9,129.9,1,0,1,1,1,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +2,39,1,8014,1,1,120.0,1,34,34,0,0,104.0,0,0,1,1,1,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,0 +2,39,1,8014,1,9,133.1,1,37,37,8,10,100.0,1,0,1,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,43,1,9147,0,1,130.0,1,19,37,7,10,138.0,0,0,1,1,1,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,1 +1,17,2,9119,0,1,120.0,1,1,19,9,8,117.2,0,0,1,1,0,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,133.1,1,1,12,4,5,116.5,0,0,1,1,0,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,105.0,1,19,19,6,6,106.1,1,0,1,1,1,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,118.0,1,1,19,4,8,118.7,0,0,1,1,0,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,6,9500,0,1,140.0,1,3,19,3,8,129.0,1,0,1,1,1,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,168.0,1,19,19,4,4,171.2,0,0,1,1,0,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,133.0,1,19,9,0,0,121.5,1,0,1,1,1,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,177.0,1,1,38,3,9,162.3,0,0,1,1,1,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,130.0,1,38,38,2,9,124.8,0,0,1,1,1,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,136.0,1,38,1,5,6,133.9,1,0,1,1,1,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,154.0,1,1,1,5,3,144.9,0,0,1,1,0,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,1 +1,44,1,9119,0,39,150.0,1,19,37,9,9,150.0,1,0,0,1,0,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,0 +1,1,4,9254,0,1,132.0,1,12,19,9,9,124.7,1,0,1,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,33,0,1,100.0,41,38,37,9,8,100.0,0,0,0,0,0,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9085,0,1,120.0,1,4,1,2,9,113.4,0,0,1,1,1,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,134.0,1,1,19,9,9,136.1,1,0,1,1,1,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9500,0,1,150.0,1,1,19,5,3,140.0,0,1,1,1,1,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,129.0,1,37,37,9,9,128.8,1,0,1,1,1,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +2,39,1,9500,0,1,100.0,1,37,38,4,4,130.0,0,0,1,1,0,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,2 +1,1,1,9773,0,1,140.0,1,19,37,9,6,135.8,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,7,1,9085,0,40,150.0,1,19,19,9,5,150.0,0,0,0,0,1,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9500,0,1,148.0,1,1,37,4,8,132.0,1,0,1,1,1,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,1 +1,7,1,9119,0,40,140.0,1,3,1,2,5,140.0,0,0,1,1,0,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,163.0,1,19,1,9,7,143.1,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,3,9070,0,1,164.0,1,1,1,5,3,161.2,1,0,1,1,1,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,1 +1,1,6,9773,0,1,141.0,1,30,37,7,7,128.4,1,0,0,0,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,0 +1,43,2,9147,0,1,126.0,1,1,19,3,3,100.0,1,0,1,1,0,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,171,0,1,141.0,1,19,19,5,10,135.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,4,9670,0,1,117.0,1,3,3,4,4,113.2,0,0,1,1,0,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +2,43,1,9991,1,3,140.0,1,37,19,9,4,140.0,0,0,0,1,1,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,134.3,0,0,1,1,0,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,137.0,1,38,19,9,7,125.1,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,130.0,1,37,37,9,6,134.0,0,0,1,1,1,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,123.0,1,37,37,7,7,119.7,0,0,1,1,0,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9147,0,1,120.0,1,37,37,9,9,104.7,1,0,1,1,0,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9238,0,1,137.0,62,1,1,9,9,129.3,0,0,1,1,1,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,8014,1,1,122.0,1,37,19,9,9,123.8,0,0,1,1,1,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,1 +2,39,2,8014,1,1,100.0,1,34,34,0,0,100.0,1,0,1,1,1,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,1 +2,1,1,9991,1,2,120.0,1,37,37,6,3,129.2,0,0,1,1,1,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,150.0,1,3,19,2,6,150.0,0,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9991,1,1,123.0,1,1,3,4,2,113.2,0,0,1,0,0,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,0 +1,1,3,9773,0,1,130.0,1,1,37,4,5,120.9,1,0,0,1,1,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,146.0,1,19,3,4,9,127.0,0,0,1,1,0,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,44,1,171,0,39,160.0,1,19,38,9,9,160.0,1,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9085,0,39,150.0,1,38,37,6,6,150.0,1,0,1,1,1,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,1 +1,17,2,9254,0,1,136.0,1,19,19,4,7,123.1,1,0,1,1,1,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +2,39,1,9670,0,1,150.0,1,37,19,9,4,135.6,0,0,1,1,1,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,1 +1,1,6,171,0,1,134.0,1,19,37,5,5,126.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +4,39,1,9773,0,38,133.1,1,19,19,7,9,133.0,0,0,1,1,1,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,2 +1,17,2,9119,0,1,120.0,1,10,12,9,9,120.4,1,0,1,1,0,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,4,9254,0,1,113.0,1,38,19,7,7,107.4,1,0,1,1,1,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,137.0,1,1,19,4,5,136.3,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,142.0,1,37,37,9,7,132.7,1,0,1,1,1,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,1 +1,18,5,9085,0,1,121.0,1,5,3,2,3,111.9,1,0,1,1,1,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,9,133.1,1,34,36,0,90,107.5,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,8014,1,19,133.1,1,19,37,6,8,149.5,0,0,1,1,0,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9147,0,1,120.0,1,1,37,4,9,113.4,1,0,1,1,0,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,130.0,1,37,38,9,5,130.5,1,0,1,1,1,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,153.0,1,1,19,9,10,147.8,0,0,1,1,1,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,1 +1,1,1,171,0,1,159.0,1,3,1,4,4,162.2,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,122.0,1,37,37,5,6,114.3,0,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,2,9556,0,19,133.1,1,37,37,3,7,117.8,0,0,1,1,1,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,132.0,1,38,1,9,9,124.3,1,0,1,1,1,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,141.0,1,19,19,9,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,1 +1,17,1,9500,0,1,152.0,1,19,19,4,9,132.5,0,0,1,1,0,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,1 +1,17,1,9991,1,40,127.0,1,37,37,6,6,124.9,0,0,1,1,1,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,133.1,1,1,19,4,6,106.0,1,0,1,1,1,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,19,37,4,7,150.0,1,0,1,1,1,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,1 +1,1,1,9254,0,1,125.0,1,1,1,191,193,114.5,0,0,1,1,0,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,134.0,1,19,19,4,7,131.0,1,0,1,1,0,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,1 +1,1,2,9500,0,1,134.0,1,19,19,9,9,125.8,1,0,1,1,1,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,1 +1,17,1,171,0,1,125.0,1,37,37,7,9,134.1,1,0,1,1,0,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,0 +1,51,1,9254,0,1,120.0,1,38,38,9,9,118.0,0,0,1,1,1,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,155.0,1,1,1,4,3,140.5,1,0,1,1,1,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,125.0,1,1,1,4,90,125.4,1,0,1,1,0,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,1,5,5,126.3,0,0,1,1,0,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,1 +1,39,1,9147,0,1,140.0,1,37,3,9,2,135.1,0,0,1,1,0,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,5,171,0,1,122.0,1,19,12,5,9,127.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,2,9670,0,1,150.0,1,34,34,0,0,107.0,1,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,3,130.0,1,19,19,3,9,130.0,0,0,1,0,0,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,0 +1,39,1,33,0,1,133.1,1,19,37,9,9,96.1,0,0,1,1,0,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,0 +2,42,1,9500,0,2,130.0,1,37,37,9,9,130.0,0,0,1,1,1,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,1 +1,18,1,9238,0,1,137.0,1,19,38,5,8,137.4,1,0,1,1,1,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,2 +1,1,1,9254,0,1,140.0,1,19,1,9,8,140.9,1,0,1,1,1,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,132.0,1,1,2,9,3,128.2,1,0,1,1,1,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,17,4,9085,0,1,126.0,1,1,3,5,5,123.9,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,19,133.1,1,37,37,9,7,106.5,0,0,1,1,1,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,132.0,1,37,19,7,7,132.4,1,0,1,1,1,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,139.0,1,37,38,9,9,126.1,0,0,1,1,1,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,136.0,1,19,38,9,9,123.0,1,0,1,1,1,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,140.0,1,1,38,9,1,140.0,1,0,1,1,0,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,123.0,1,19,19,9,8,134.0,0,0,1,1,1,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,130.0,1,38,19,9,4,118.4,0,0,0,1,1,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,126.0,1,1,1,9,9,116.2,0,0,0,0,0,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,19,1,7,10,105.0,0,0,1,1,0,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,0 +1,17,1,9119,0,1,130.0,1,19,19,7,9,121.3,1,0,1,1,0,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,0 +1,43,1,9500,0,19,133.1,1,34,34,0,0,110.0,1,0,1,1,0,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,0 +1,1,3,9070,0,1,139.0,1,1,38,4,7,142.2,1,0,1,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,142.0,1,38,1,5,4,136.6,0,0,1,1,1,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,1 +1,17,2,9670,0,1,128.0,1,37,38,5,8,121.7,0,0,1,1,0,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,140.0,1,1,3,9,4,140.0,0,0,0,0,1,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,125.0,1,19,19,9,10,122.0,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,8014,1,1,130.0,1,37,37,9,8,103.5,0,0,1,1,1,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,1 +1,17,3,9085,0,1,117.0,1,19,38,5,7,111.1,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,42,1,9085,0,39,140.0,1,19,3,9,1,159.9,1,0,1,1,1,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,1 +1,1,2,9254,0,1,112.0,1,37,37,6,6,106.1,1,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9070,0,1,117.0,1,5,1,2,10,120.0,1,0,1,1,1,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,2 +1,7,1,9556,0,2,130.0,1,37,37,9,9,130.0,1,0,1,1,1,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,40,140.0,1,1,19,9,9,139.0,0,0,1,1,1,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,10,130.0,0,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,51,1,9070,0,1,135.0,1,3,1,3,5,121.8,0,0,1,1,1,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,135.0,1,19,3,9,4,121.5,1,0,1,1,1,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,136.0,1,19,38,4,8,125.5,1,0,1,1,1,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,142.0,1,3,37,4,8,132.4,1,0,1,1,1,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,142.0,1,34,38,4,7,127.3,0,0,1,1,1,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,1 +1,15,1,9147,0,1,130.0,26,1,1,2,3,130.0,0,0,1,1,1,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,17,2,8014,1,1,133.0,1,19,1,5,5,119.7,1,0,1,1,1,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,6,133.1,1,1,1,90,3,107.0,1,0,1,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,130.0,1,1,1,4,5,123.8,0,0,1,1,1,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9670,0,1,130.0,1,38,37,5,5,123.4,1,0,1,1,1,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,130.0,1,37,36,4,90,127.6,0,0,1,1,0,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +2,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,2 +1,1,5,9070,0,1,122.0,1,37,37,9,9,124.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,3,120.0,1,37,37,9,9,141.0,0,0,1,1,1,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,0 +1,43,1,33,0,1,134.0,1,37,37,1,1,100.0,1,0,1,1,0,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,0 +1,18,1,9773,0,1,125.0,1,19,37,9,5,122.2,0,0,1,0,1,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,113.4,0,0,1,1,1,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,142.0,1,19,39,5,4,141.7,0,0,1,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,137.0,1,1,38,5,8,125.8,0,0,1,0,1,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,141.0,1,1,37,4,3,126.8,1,0,1,1,1,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,1 +1,17,4,9500,0,1,133.0,1,4,4,4,4,130.7,1,0,1,1,1,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,1 +1,1,2,9500,0,1,119.0,1,1,1,4,4,115.2,1,0,1,1,1,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,128.0,1,1,1,4,10,118.9,1,0,1,1,1,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,130.0,1,37,38,7,8,119.3,1,0,1,1,1,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,148.0,1,3,1,4,5,132.8,0,0,1,1,1,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,1 +1,1,5,9500,0,1,143.0,1,37,19,4,4,123.3,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9147,0,1,130.0,1,34,34,99,99,109.8,1,0,1,0,0,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9085,0,2,140.0,1,38,38,9,10,150.0,0,0,1,1,0,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9670,0,42,110.0,1,1,19,9,9,114.2,0,0,1,1,0,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,1 +1,53,1,9147,0,42,140.0,1,3,4,2,1,140.2,0,0,1,1,1,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,145.0,1,19,38,9,7,136.3,1,0,1,1,1,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,38,37,9,9,154.4,0,0,1,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,127.0,1,38,38,9,6,122.8,0,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,120.2,1,0,1,1,0,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,124.0,1,3,1,2,5,121.6,0,0,1,1,1,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,2 +1,17,5,9853,0,1,132.0,1,37,38,5,6,119.1,1,0,1,1,1,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,1 +1,17,6,9670,0,1,110.0,1,1,19,4,10,111.3,0,0,1,1,0,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,120.0,1,38,37,9,9,114.8,1,1,1,1,1,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,140.0,1,19,19,9,3,130.0,0,0,1,1,0,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9254,0,1,120.0,1,37,37,9,9,115.1,1,0,1,0,0,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,142.0,1,1,37,5,7,128.0,0,0,1,1,1,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,168.0,1,37,1,9,4,133.4,1,0,1,1,1,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,1 +1,43,4,9085,0,1,133.1,1,34,34,99,99,125.2,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9147,0,1,123.0,1,1,1,9,7,117.4,1,0,1,1,1,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,1 +1,1,6,9119,0,1,135.0,1,2,1,3,5,123.5,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,2 +1,17,2,9254,0,1,118.0,22,19,37,9,9,110.3,1,0,1,0,1,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,126.0,1,1,19,4,4,116.9,0,0,1,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,117.0,1,1,38,3,9,109.3,0,0,0,0,1,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,0 +4,39,1,8014,1,1,133.1,1,37,37,9,8,113.0,0,0,1,1,1,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,1 +2,42,1,9991,1,6,123.0,1,37,37,9,9,123.0,0,0,1,1,0,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,2 +1,39,1,9003,0,1,100.0,1,37,37,9,5,110.0,0,0,1,1,1,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,127.0,1,37,38,9,5,131.2,1,0,1,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,110.0,1,37,37,9,7,112.5,1,0,1,1,1,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,126.0,1,19,37,7,5,119.4,0,0,1,1,1,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,121.0,1,1,1,4,3,120.5,1,0,1,1,1,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,134.0,1,1,1,3,3,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,3,9500,0,1,150.0,1,19,38,1,1,130.8,1,0,1,1,1,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,17,5,9119,0,1,124.0,11,4,12,2,9,119.5,1,0,1,1,0,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,117.0,1,19,1,4,7,112.1,0,0,1,1,1,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,2 +1,1,5,9500,0,1,132.0,1,37,37,7,7,120.3,1,0,1,1,1,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,1 +2,39,1,9119,0,1,110.0,1,37,37,90,5,150.0,1,0,1,1,0,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9773,0,1,130.0,1,38,37,5,3,122.3,1,0,0,0,1,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,0 +1,1,1,9556,0,1,118.0,1,19,38,9,9,116.3,1,0,1,1,1,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,120.0,1,3,3,3,3,111.6,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,131.0,1,37,19,9,9,134.5,1,0,1,1,0,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,2 +1,17,2,9556,0,1,133.1,1,37,38,9,8,106.0,1,0,1,1,1,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,2,110.0,1,37,37,9,9,112.9,0,0,1,1,1,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,0 +1,17,2,9773,0,1,126.0,1,19,38,9,8,118.7,1,0,1,1,1,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,140.0,1,1,1,3,3,127.6,1,0,1,1,1,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,163.0,1,19,1,5,10,146.6,1,0,0,1,1,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,39,151.0,1,19,37,4,7,151.0,0,0,0,1,1,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,165.0,1,19,37,5,5,142.3,0,0,1,1,1,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9773,0,19,133.1,1,19,1,7,9,115.0,1,0,0,0,0,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,0 +1,1,2,9556,0,1,130.0,1,1,38,3,8,119.5,1,0,1,1,1,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,1 +1,17,3,171,0,1,125.0,1,3,39,2,5,117.0,1,1,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,2,9147,0,1,133.0,1,19,1,5,10,121.8,0,0,1,1,0,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,2 +1,17,1,9119,0,1,131.0,1,1,3,9,10,123.7,1,0,1,1,0,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,148.0,1,37,38,9,8,133.0,1,0,1,1,1,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9254,0,1,120.0,1,3,19,3,9,114.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9773,0,1,114.0,1,1,1,9,9,111.6,1,0,1,1,1,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,115.0,1,38,1,9,8,118.5,0,0,1,1,0,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,2,5,127.0,0,0,1,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,117.0,1,1,1,4,7,109.3,1,0,1,1,1,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,1 +1,53,1,9085,0,42,140.0,1,19,38,9,9,138.2,0,0,0,0,1,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,125.0,1,1,1,3,3,114.5,0,0,1,1,0,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,1 +1,44,1,9147,0,39,130.0,1,19,1,9,3,130.0,0,0,1,1,1,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,145.0,1,38,19,4,9,127.9,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,128.0,1,37,37,9,8,124.3,1,0,1,1,1,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,1 +1,18,3,9070,0,1,138.0,1,38,37,9,7,125.1,1,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,17,5,9119,0,1,131.0,1,19,37,9,7,123.3,1,0,1,1,0,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,130.0,1,37,19,9,8,106.2,1,0,1,1,1,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,131.0,1,19,38,4,5,132.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,43,1,9003,0,1,120.0,1,37,37,5,9,120.0,1,0,1,1,0,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,132.0,1,4,39,2,2,136.6,1,0,1,1,1,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,2 +1,7,1,9500,0,40,170.0,1,1,1,9,4,170.0,0,0,1,1,1,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,1 +1,16,1,9003,0,1,147.0,1,1,37,4,9,140.7,1,0,0,1,1,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,125.0,1,1,1,4,8,115.6,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,150.0,1,37,37,9,6,138.5,0,0,1,1,1,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,1 +1,1,2,9991,1,1,143.0,1,5,1,4,4,131.5,0,0,1,1,0,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,9556,0,1,133.1,6,3,3,4,4,169.2,0,0,0,0,1,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,39,2,9556,0,1,133.1,1,1,1,9,10,100.5,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +1,17,1,9773,0,1,120.0,1,19,38,9,7,117.9,1,0,1,1,1,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,17,1,171,0,1,146.0,1,1,38,9,9,135.5,1,0,0,1,1,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,2 +1,1,3,9254,0,1,122.0,1,19,38,3,10,114.3,1,0,1,1,1,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,9130,0,1,130.0,1,2,3,9,1,117.6,0,0,1,1,0,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,2 +4,43,4,9991,1,12,133.1,1,37,37,9,9,153.0,0,0,1,0,1,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,18,2,9500,0,1,135.0,1,38,37,9,5,125.3,1,0,1,1,1,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,38,37,9,9,133.0,0,0,1,1,1,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,1 +1,17,1,171,0,1,129.0,1,38,37,4,6,128.0,0,0,1,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,128.0,1,2,19,2,4,123.3,1,0,1,1,1,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,130.0,1,19,3,4,2,159.0,0,0,1,1,1,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,1 +2,7,1,8014,1,3,130.0,1,19,38,3,7,130.0,0,0,1,1,1,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,116.0,1,19,37,3,3,109.0,1,0,1,1,1,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,123.0,1,1,1,3,9,116.7,1,0,1,1,1,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,144.0,1,19,19,4,4,130.7,1,0,1,1,1,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,42,1,9500,0,1,100.0,1,19,37,5,7,134.3,1,0,1,1,1,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,143.0,1,1,19,4,4,129.9,0,0,1,1,1,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,1 +2,39,1,9991,1,19,133.1,1,19,37,7,9,137.2,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9853,0,1,123.0,1,19,19,9,7,117.4,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,144.0,1,19,19,5,5,130.3,1,0,1,1,1,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,137.0,1,1,19,4,7,126.7,1,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,4,9773,0,1,124.0,1,3,12,2,9,137.0,1,0,1,1,0,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,135.0,1,37,37,9,8,123.0,1,0,1,1,1,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,123.0,1,38,37,9,7,120.6,1,0,1,0,1,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,0 +2,2,1,9147,0,2,120.0,1,37,37,9,9,120.0,0,0,1,0,0,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,103.0,1,1,3,2,2,100.6,1,1,1,1,1,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,126.0,1,3,1,2,8,123.9,1,0,1,1,1,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,2 +1,17,4,9500,0,1,136.0,1,3,3,2,2,132.5,1,0,1,1,1,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,114.0,1,3,29,3,5,111.9,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,125.0,1,19,1,9,9,130.6,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,147.0,1,37,38,9,5,134.8,1,0,1,1,1,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,131.0,1,1,19,9,9,130.3,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,118.0,1,3,1,2,5,110.0,1,0,1,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,130.0,1,19,19,4,10,116.8,0,0,1,1,1,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,1 +1,43,1,8014,1,6,133.1,1,34,34,0,0,100.0,0,0,0,1,1,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9670,0,12,170.0,1,1,37,3,5,110.0,0,0,1,1,0,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,1 +2,1,1,9991,1,3,160.0,1,1,3,4,9,137.3,0,0,1,1,1,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,108.0,1,19,1,5,5,107.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,121.0,1,3,3,2,2,112.3,1,0,0,0,1,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,0 +1,1,2,9773,0,1,138.0,1,19,1,9,3,133.5,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,136.0,1,38,38,9,9,121.7,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,0 +1,1,1,9500,0,1,132.0,1,38,37,9,7,122.0,1,0,1,1,1,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,1 +1,17,1,9003,0,1,125.0,1,3,3,2,2,100.0,0,0,1,1,0,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,137.0,1,1,1,1,5,131.8,0,0,1,1,1,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,140.0,1,37,37,9,9,148.0,1,0,1,0,0,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,127.0,1,3,1,3,7,137.2,1,0,1,1,1,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,150.0,1,37,19,9,9,150.0,0,0,1,1,0,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,1 +1,43,4,171,0,1,136.0,1,37,37,9,9,123.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,1,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,1 +1,1,1,9853,0,1,162.0,1,37,19,9,8,142.8,0,0,0,1,1,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,127.0,1,1,38,5,7,123.5,1,0,1,1,1,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,133.1,1,19,37,9,9,130.0,0,0,1,0,1,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,1 +1,17,2,9070,0,1,121.0,1,1,19,144,144,111.9,1,0,1,1,0,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,115.0,1,19,37,9,9,114.3,0,0,1,1,0,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,0 +1,10,1,9254,0,1,115.0,24,3,1,9,9,116.1,1,0,1,1,1,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,143.0,1,19,3,4,4,147.2,0,0,1,1,1,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,160.0,1,1,38,4,4,160.0,1,0,1,1,0,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,1 +2,1,1,9238,0,1,134.0,1,37,37,5,5,120.4,0,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,133.1,1,38,37,9,4,120.0,0,0,1,1,0,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,1 +1,18,1,9119,0,1,108.0,1,1,1,4,3,105.6,1,0,1,1,0,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,137.0,1,37,37,9,9,141.0,0,0,1,1,0,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9254,0,1,113.0,1,1,2,5,3,106.7,1,0,0,1,0,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,16,1,9085,0,1,140.0,1,1,1,9,9,127.1,1,0,1,1,1,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,1 +1,53,1,9238,0,42,140.0,1,37,37,9,10,136.9,1,0,1,1,1,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,1 +4,39,1,8014,1,19,133.1,1,37,37,9,7,134.5,0,0,1,1,1,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,1 +1,1,2,9773,0,1,125.0,1,19,1,4,5,122.2,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9070,0,1,134.0,1,1,19,3,3,127.7,1,0,1,0,1,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,17,1,9147,0,1,96.0,1,38,37,6,4,96.0,1,0,1,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,0 +1,10,1,9085,0,1,134.0,1,37,37,5,5,134.0,1,0,1,1,1,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,143.0,1,1,3,3,3,149.0,1,0,1,1,1,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,0 +1,18,3,9070,0,1,142.0,1,1,37,4,7,130.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,7,1,9003,0,3,140.0,1,3,19,2,10,140.0,0,0,1,0,0,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,151.0,1,38,37,9,5,138.4,1,0,1,1,1,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,143.0,1,19,19,4,4,135.3,1,0,1,1,1,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,133.0,1,1,19,9,9,132.0,0,0,1,1,0,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,19,133.1,1,37,37,9,5,135.5,0,0,1,1,1,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9254,0,1,134.0,1,37,37,9,9,133.3,1,0,0,1,1,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,0 +1,1,3,9085,0,1,135.0,1,3,2,4,3,121.0,1,0,1,1,1,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,140.0,1,1,1,4,4,123.5,1,0,1,1,1,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,188.0,1,3,3,2,2,178.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9238,0,1,126.0,1,30,19,0,2,121.5,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,131.0,1,3,19,5,5,127.2,1,0,1,1,1,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,1 +1,17,4,9853,0,1,143.0,1,37,37,9,5,127.3,1,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,0 +1,17,2,9238,0,1,111.0,1,19,38,9,9,110.7,1,0,1,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,140.0,1,19,38,9,7,125.7,1,0,1,1,0,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,2 +1,17,6,9500,0,1,126.0,1,19,37,3,9,119.4,1,0,1,1,1,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,131.0,1,1,1,4,9,122.3,0,0,1,1,0,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,128.0,1,1,19,9,8,100.0,1,0,1,1,1,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,138.0,1,19,19,5,1,130.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,1,140.0,1,3,3,1,1,140.0,1,0,1,1,1,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,3,130.0,1,1,19,5,9,130.0,0,0,1,1,0,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9773,0,1,131.0,1,38,1,5,7,131.0,1,0,1,1,0,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,19,133.1,1,19,19,9,7,140.0,0,0,0,0,1,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,133.1,1,37,37,9,9,126.5,0,0,1,1,1,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9500,0,1,132.0,1,37,37,9,7,128.3,1,0,1,1,1,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,1 +1,16,1,171,0,1,145.0,1,3,3,3,3,155.0,1,0,1,1,1,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,2 +4,1,1,9991,1,1,140.0,1,37,37,9,7,139.0,0,0,1,1,1,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,2 +1,17,2,9070,0,1,152.0,1,39,39,3,3,134.2,1,0,1,1,0,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,1,1,9500,0,1,141.0,1,19,19,7,9,139.8,0,0,1,1,1,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,1 +1,1,4,9670,0,1,133.0,1,1,2,4,7,121.1,1,0,1,1,1,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,1 +1,15,1,9147,0,1,135.0,26,1,1,9,7,135.0,0,0,0,1,0,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,2 +2,1,1,9991,1,1,144.0,1,19,19,9,9,151.4,0,0,1,1,1,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,1 +1,18,4,9853,0,1,118.0,1,19,37,9,6,111.4,1,0,0,0,1,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9500,0,1,134.0,1,38,1,9,6,133.5,1,0,1,1,0,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,37,37,9,6,107.0,0,0,1,1,0,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,141.0,1,38,38,9,9,128.4,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,133.0,1,1,1,9,9,128.5,1,0,1,1,1,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,1 +1,51,1,9085,0,40,120.0,1,3,3,4,2,125.0,0,0,1,1,1,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,150.0,1,37,38,3,7,134.5,0,0,1,1,1,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,127.0,1,3,19,4,4,116.9,0,0,1,1,0,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,136.0,1,2,38,143,163,129.7,1,0,1,1,0,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,2 +1,1,2,9773,0,1,159.0,1,1,1,3,3,151.0,1,0,1,1,1,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,165.0,1,37,38,9,8,152.4,1,0,1,1,1,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,1 +1,1,6,9500,0,1,139.0,1,1,1,4,4,124.5,1,0,1,1,1,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,134.0,1,1,1,5,3,128.4,1,0,1,1,1,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,1 +1,17,2,9238,0,1,133.0,1,2,1,3,4,136.2,1,0,1,1,1,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,120.0,1,19,1,8,7,115.1,1,0,1,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,131.0,1,1,39,5,3,122.6,1,0,1,1,1,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,8014,1,1,130.0,1,1,1,9,9,118.1,0,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,1 +1,39,9,9991,1,1,120.0,1,38,38,9,5,144.8,0,0,1,1,0,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9500,0,19,133.1,1,37,37,9,9,129.0,1,0,1,1,1,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,138.0,1,1,19,4,7,123.0,1,0,0,0,1,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,143.0,1,1,37,9,9,135.0,1,0,1,1,1,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,120.0,1,19,1,9,3,120.0,1,0,1,1,0,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,162.0,1,37,1,9,9,165.2,1,0,1,1,1,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,142.0,1,37,37,5,5,131.3,1,0,1,1,1,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,1 +1,1,3,171,0,1,125.0,1,38,37,4,9,115.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,120.0,1,38,37,5,3,110.5,0,0,1,1,1,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,1 +1,42,1,9773,0,6,120.0,1,34,34,0,0,122.0,1,0,1,1,1,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,162.0,1,1,38,4,5,138.6,1,0,1,1,1,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9500,0,1,152.0,1,1,1,4,4,141.0,1,0,1,1,1,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,139.0,1,3,19,3,5,120.8,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,135.0,1,1,1,3,5,130.1,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,1,9670,0,1,127.0,1,3,3,1,1,121.4,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9556,0,1,135.0,1,1,1,1,1,131.5,0,0,1,1,0,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,2 +1,17,3,9670,0,1,147.0,1,37,37,8,8,128.8,0,0,0,1,1,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,133.1,41,38,38,9,8,134.8,0,0,1,1,1,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,133.1,1,37,37,90,8,128.2,0,0,1,1,1,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,131.0,1,1,37,4,4,126.1,1,0,1,1,1,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,9,9,125.3,1,0,1,1,0,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,0 +2,39,1,8014,1,3,110.0,1,37,37,9,9,160.5,0,0,1,1,1,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,138.0,1,38,1,9,4,127.5,1,0,1,1,1,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,2 +1,39,1,9238,0,1,170.0,1,38,19,9,9,140.0,1,0,1,1,1,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,1,19,4,10,142.3,1,0,1,1,1,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,154.0,1,38,37,9,9,140.4,0,0,1,1,1,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,133.1,41,19,1,9,9,105.0,1,0,1,0,1,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +2,44,1,9085,0,39,160.0,1,37,37,192,192,160.0,0,0,1,1,1,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,141.0,1,38,38,9,9,142.3,1,0,1,1,1,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,119.0,1,37,37,7,7,112.0,1,0,1,0,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,137.0,1,37,37,9,9,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,1 +4,39,1,9670,0,1,100.0,1,37,37,4,10,120.0,0,0,0,1,1,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,130.0,1,3,3,2,2,131.1,0,0,1,1,0,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,120.0,1,1,19,9,3,116.9,1,0,0,0,0,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,42,1,9500,0,1,100.0,1,1,19,4,8,136.0,1,0,1,1,1,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,1 +1,1,2,171,0,1,125.0,1,38,19,9,9,117.3,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,152.0,1,1,38,4,9,160.4,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,12,133.1,1,37,37,9,7,139.4,0,0,0,1,1,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,2 +1,1,3,9070,0,1,150.0,1,1,1,4,8,131.5,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,7,1,9556,0,4,190.0,1,5,5,2,2,190.0,1,0,1,1,0,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,0 +1,17,3,9238,0,1,121.0,1,1,1,4,5,117.2,0,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,130.0,1,37,37,9,7,113.0,1,0,1,0,0,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,123.0,1,19,19,4,10,124.4,1,0,1,1,1,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,1 +1,17,2,9238,0,1,133.0,1,37,37,3,9,119.7,0,1,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,138.0,1,38,19,9,10,133.1,0,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,108.0,1,38,38,7,7,105.2,1,0,1,1,0,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,0 +1,1,3,171,0,1,115.0,1,9,1,6,6,108.7,1,0,1,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,4,4,119.8,1,0,1,1,1,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,1 +1,1,6,9119,0,1,126.0,1,19,19,7,3,116.6,1,0,1,1,0,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,1 +2,39,1,9500,0,1,133.1,1,37,37,9,9,130.1,0,0,1,0,0,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,124.0,1,37,38,9,3,114.2,0,0,1,1,1,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,1 +1,17,3,9147,0,1,137.0,1,1,1,4,7,124.4,1,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,2 +1,39,1,9130,0,19,133.1,1,37,37,9,10,156.4,1,0,0,1,0,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,0 +1,18,5,9853,0,1,121.0,1,38,19,7,7,117.5,1,0,0,0,1,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,1,2,9238,0,1,117.0,1,19,1,9,8,110.0,1,0,0,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9147,0,1,148.0,1,1,19,9,6,118.4,1,0,1,1,0,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,133.0,1,1,1,4,4,100.0,0,0,1,1,1,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,17,1,9238,0,1,158.0,1,1,1,5,6,140.5,0,0,1,1,1,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,157.0,1,19,38,9,7,146.2,1,0,1,1,1,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9119,0,1,131.0,1,3,1,4,1,135.9,0,0,1,1,0,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,38,37,5,10,117.8,1,0,1,1,0,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,1 +1,1,2,9119,0,1,126.0,1,1,38,141,192,122.5,1,0,1,1,0,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,117.0,1,37,37,0,4,120.5,1,0,1,1,0,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9254,0,1,110.0,1,12,19,9,9,125.0,0,0,1,0,0,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,0 +1,18,1,9147,0,1,121.0,1,19,3,5,5,115.8,1,0,1,1,1,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,1 +1,39,1,9238,0,19,133.1,1,37,37,9,9,139.0,0,0,0,0,0,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9003,0,3,130.0,1,3,3,6,2,130.0,1,0,1,1,0,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,132.0,1,19,37,3,5,125.4,1,0,1,0,1,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,133.1,1,38,38,4,7,115.6,1,0,1,0,1,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,129.0,1,1,2,3,1,125.9,1,0,1,1,1,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,37,37,9,9,143.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,126.0,1,3,19,3,3,115.2,0,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,123.0,1,19,38,9,10,116.7,1,0,1,1,1,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,1 +1,17,2,9254,0,1,125.0,1,37,37,9,8,122.6,1,0,0,0,1,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,39,1,9119,0,1,160.0,1,38,37,7,7,129.0,0,0,1,1,0,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,3,19,2,3,133.8,1,0,1,1,1,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,120.0,1,19,19,4,7,115.5,1,0,0,1,0,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,120.0,1,38,38,3,3,140.0,0,0,1,1,1,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9238,0,1,127.0,1,1,19,4,3,141.7,1,0,1,1,0,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,111.0,1,37,37,9,10,95.8,1,0,1,0,0,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,130.0,1,38,1,9,4,140.0,1,0,1,1,1,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,1 +1,1,2,9147,0,1,131.0,1,1,1,9,9,118.8,0,0,1,1,0,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,161.0,1,1,19,4,4,152.3,0,0,1,1,1,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,124.0,1,38,38,9,9,115.6,0,0,1,1,0,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,160.0,1,3,3,1,2,149.2,0,0,1,1,0,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,16,3,9853,0,1,134.0,1,19,37,9,9,121.1,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,2 +1,43,2,9991,1,1,140.0,1,37,37,5,5,124.3,1,0,1,0,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,127.0,1,38,37,5,7,123.9,1,0,1,1,1,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,120.0,1,19,37,6,8,160.0,0,0,1,1,0,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,1 +1,39,1,9085,0,1,133.1,1,3,3,4,2,144.9,1,0,1,1,1,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,130.0,1,1,19,3,10,130.0,1,0,1,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,1 +1,42,1,9003,0,1,130.0,1,3,2,2,6,105.3,0,0,1,0,0,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9991,1,1,130.0,1,37,37,9,9,127.6,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,100.0,1,1,38,4,6,104.8,0,0,0,0,1,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,0 +1,1,5,9070,0,1,125.0,1,3,3,2,2,140.8,1,0,1,1,0,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,133.1,1,34,38,0,4,147.0,0,0,1,1,1,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,126.0,1,34,34,0,0,142.4,0,0,1,1,1,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,121.0,1,19,38,4,10,114.4,0,0,1,1,1,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,133.1,1,37,37,5,0,111.5,0,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,130.0,1,1,19,5,5,129.1,1,0,1,1,1,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,3,1,4,6,130.0,0,0,1,1,0,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,2 +1,39,1,9500,0,1,123.0,1,19,1,1,1,140.8,0,0,1,1,1,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,1 +1,44,1,9070,0,39,130.0,1,1,1,4,10,130.0,1,0,1,1,1,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,1 +4,39,1,9085,0,1,133.1,1,34,34,0,0,128.2,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,128.0,1,37,37,9,9,135.7,1,0,1,1,0,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,135.0,1,38,38,4,7,121.7,1,0,1,1,1,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,2 +1,43,1,9085,0,1,110.0,25,38,38,9,6,117.2,1,0,1,1,0,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,1 +1,43,3,9500,0,1,140.0,1,1,19,9,7,127.5,1,0,0,1,1,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,1 +1,17,3,9238,0,1,133.1,1,41,1,2,3,117.0,1,0,1,1,1,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9254,0,1,112.0,1,37,37,9,9,108.5,0,0,1,1,0,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,51,1,9238,0,39,140.0,1,38,38,5,7,129.1,1,0,1,1,1,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,122.0,1,38,19,9,9,126.6,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,123.0,1,1,1,4,4,114.4,0,0,1,1,0,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,0 +1,18,4,171,0,1,133.0,1,1,4,9,5,129.2,1,0,0,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,128.0,1,19,19,9,5,121.7,1,0,1,1,1,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,1 +1,39,1,9130,0,1,150.0,1,19,19,9,5,160.0,1,0,1,1,0,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,160.0,1,19,37,5,3,152.0,0,0,1,1,1,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,53,1,9085,0,42,140.0,1,19,37,9,8,142.5,1,0,1,1,1,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,130.0,1,9,19,4,1,134.2,1,0,1,1,1,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,3,9254,0,1,121.0,1,19,19,9,6,125.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,1,128.0,1,19,1,9,10,157.4,1,0,1,1,1,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,146.0,1,37,37,9,7,149.2,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9853,0,12,133.1,1,37,37,7,8,103.0,0,0,1,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,143.0,1,19,19,5,6,142.3,0,0,1,1,1,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,2 +1,1,2,9085,0,1,118.0,1,1,19,3,3,112.4,1,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,2 +2,43,1,9991,1,1,100.0,1,37,37,9,9,128.2,0,0,1,1,0,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,118.0,1,38,38,5,5,110.0,0,0,1,1,1,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9147,0,1,136.0,1,38,38,9,9,127.3,1,0,1,1,0,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,170.0,1,19,19,8,8,176.7,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,124.0,41,19,38,9,9,123.3,1,0,1,1,1,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,1 +1,1,4,9070,0,1,170.0,1,3,3,2,2,165.8,1,0,1,1,0,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,3,37,9,9,142.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9147,0,1,122.0,1,1,38,4,5,116.4,0,0,1,1,0,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,150.0,1,1,1,4,4,138.1,1,0,1,1,1,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,2 +1,17,6,9238,0,1,138.0,1,3,3,1,2,123.0,1,0,1,1,1,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,135.0,1,19,12,9,7,137.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9070,0,1,125.0,1,1,3,3,3,128.9,0,0,1,1,1,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,128.0,1,38,19,9,10,125.2,1,0,1,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,2 +1,42,1,9003,0,1,140.0,1,1,3,4,2,140.0,1,0,1,1,0,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,2 +1,39,1,9500,0,19,133.1,1,37,38,151,161,143.7,0,0,1,1,1,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,118.0,1,38,38,7,7,115.2,1,0,1,1,1,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,152.0,1,19,37,9,8,135.6,1,0,1,1,0,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,12,110.0,1,34,34,0,0,157.8,0,0,1,1,1,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,1 +1,1,6,9147,0,1,112.0,1,38,38,9,9,117.3,1,0,1,1,1,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,1 +1,17,3,9147,0,1,118.0,1,1,19,5,7,118.0,0,0,1,1,1,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,2 +1,44,1,9070,0,39,120.0,1,1,19,5,8,119.8,0,0,1,1,0,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9670,0,1,133.1,1,19,19,3,9,118.0,0,0,1,1,0,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,159.0,1,1,19,9,9,151.3,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,118.0,1,1,38,5,7,120.8,1,0,1,1,1,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,132.0,1,1,37,8,9,128.0,1,0,1,1,1,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,1 +1,42,1,9147,0,1,135.0,1,19,1,4,4,120.0,0,0,1,0,0,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9670,0,1,122.0,1,1,38,3,3,114.3,1,0,1,1,1,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,171,0,1,131.0,1,1,1,0,3,149.9,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +4,39,2,9556,0,1,133.1,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,5,9119,0,1,126.0,1,12,19,4,5,122.5,1,0,1,1,0,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,145.0,1,2,38,3,8,136.3,1,0,1,1,1,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,2 +1,15,1,9147,0,1,150.0,1,38,1,9,1,150.0,0,0,1,1,0,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,150.0,1,3,39,3,7,126.4,0,0,1,1,0,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,2 +1,17,2,9773,0,1,148.0,1,3,38,2,6,144.2,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,124.0,1,37,19,9,3,116.3,1,0,1,1,1,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +2,39,1,9003,0,1,130.0,1,1,37,9,1,122.0,0,0,0,0,0,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,160.0,1,19,38,5,7,139.0,1,0,1,1,1,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,157.0,1,3,2,3,6,150.9,1,0,1,1,1,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,0 +1,42,1,9119,0,1,120.0,1,1,1,5,7,108.6,0,0,1,0,0,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,0 +1,16,3,9773,0,1,138.0,1,37,38,4,9,134.2,1,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,110.0,1,0,1,1,1,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,0 +4,39,1,9853,0,1,143.0,1,37,1,9,10,140.0,0,0,0,0,1,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,130.0,1,3,19,4,8,133.0,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,19,38,6,7,140.0,1,0,1,1,0,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,132.0,1,2,2,6,6,128.5,0,0,1,1,1,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,0 +1,1,2,171,0,1,135.0,1,19,19,4,7,149.0,1,0,1,1,0,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,130.0,1,19,38,3,9,126.5,1,0,1,1,1,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,125.0,1,19,38,9,8,121.5,0,0,1,1,1,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,37,37,9,7,129.0,0,0,1,1,1,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,0 +1,7,3,9130,0,3,130.0,1,37,26,90,10,130.0,0,0,1,0,0,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,2,9500,0,1,123.0,1,19,19,7,7,120.8,1,0,1,1,1,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,1 +1,18,2,9853,0,1,168.0,1,1,19,3,9,126.8,1,0,1,1,0,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,2 +1,44,1,9085,0,39,140.0,1,3,1,4,3,140.0,1,0,1,1,1,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,148.0,1,19,19,9,9,138.7,0,0,1,1,1,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,1 +1,18,1,171,0,1,110.0,1,19,2,5,5,117.7,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9070,0,1,136.0,1,37,38,9,9,125.2,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +2,39,1,8014,1,1,133.1,1,37,37,5,4,134.5,0,0,1,1,1,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,2 +1,42,1,9119,0,1,150.0,1,38,37,5,8,133.5,1,0,1,1,0,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,140.0,1,1,3,4,6,139.2,0,0,0,1,1,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,125.0,1,19,19,5,5,117.0,0,0,1,1,1,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,1 +1,39,1,9147,0,12,133.1,1,19,37,7,9,118.2,0,0,1,1,1,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,0 +1,1,2,9147,0,1,121.0,1,1,19,9,9,113.7,1,0,1,0,1,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,0 +1,43,1,9130,0,1,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,131.0,1,3,19,2,3,132.8,1,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,1 +1,17,3,9500,0,1,136.0,1,37,38,4,5,126.0,1,0,1,1,1,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,1 +1,1,1,9853,0,1,145.0,1,37,37,9,5,146.8,0,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,123.0,1,1,1,4,9,116.7,1,0,1,1,0,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,0 +1,18,1,171,0,1,121.0,1,1,1,4,3,116.8,1,0,1,1,1,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,141.0,1,38,1,9,4,129.0,1,0,1,1,1,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,133.1,1,34,34,0,0,130.0,0,0,1,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,126.0,1,1,3,4,3,122.5,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,0 +2,1,1,9254,0,1,136.0,1,37,37,9,9,122.7,0,0,1,1,1,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,37,37,9,10,100.0,0,0,1,1,0,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9500,0,1,133.1,1,38,19,7,9,115.5,1,0,1,1,0,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,1 +1,1,1,9991,1,1,131.0,1,19,37,9,9,118.4,1,0,1,1,1,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,2 +1,1,1,9147,0,1,153.0,1,1,38,4,3,146.7,0,0,1,1,1,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,1 +1,43,1,8014,1,12,114.0,1,34,34,0,99,110.0,0,0,1,1,1,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,147.0,1,1,1,5,5,134.9,0,1,1,1,1,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,1 +1,1,2,9085,0,1,156.0,1,40,40,3,7,150.9,1,0,1,1,1,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,137.0,1,38,38,5,7,122.7,1,0,1,1,1,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,123.0,1,1,19,4,5,117.8,0,0,1,1,0,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,2 +1,17,1,9238,0,1,135.0,1,37,37,8,6,127.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,131.0,1,37,37,9,9,123.0,1,0,1,1,1,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,2 +1,17,2,9670,0,1,123.0,1,3,1,3,1,116.7,0,0,1,1,1,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,1 +1,7,1,9085,0,40,140.0,1,1,19,5,5,140.0,1,0,1,1,1,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,1 +4,39,1,9500,0,19,133.1,1,38,19,5,7,140.0,0,0,1,1,1,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,127.0,1,3,19,3,9,127.0,1,0,1,1,0,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,1 +1,17,2,8014,1,1,120.0,1,19,1,5,10,114.8,1,0,1,1,1,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9670,0,19,133.1,1,37,37,9,7,130.0,0,0,0,1,0,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,171,0,1,131.0,41,19,1,4,7,131.4,1,0,1,1,0,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,16,2,171,0,1,145.0,1,3,3,2,2,143.6,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,120.0,1,19,38,6,6,120.0,1,0,1,1,0,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,1 +1,17,6,9238,0,1,131.0,1,1,3,4,2,131.7,1,0,1,1,1,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,137.0,1,3,1,4,9,128.6,0,0,1,1,1,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,170.0,1,19,19,9,7,170.0,1,0,0,1,0,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,17,4,9853,0,1,122.0,1,38,37,9,9,118.9,1,0,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,1 +1,17,5,9500,0,1,148.0,1,1,19,4,8,130.2,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9003,0,19,133.1,1,1,19,9,8,120.0,0,0,0,0,0,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,2,9147,0,1,143.0,1,19,38,9,7,132.2,1,0,1,1,1,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9556,0,1,132.0,1,38,37,7,7,119.0,1,0,1,1,1,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,133.1,1,3,1,4,4,95.0,0,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,154.0,1,3,1,2,1,137.2,0,0,1,1,0,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,2 +1,1,1,9853,0,1,129.0,1,38,37,6,6,138.1,0,0,1,1,1,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,17,2,9670,0,1,129.0,1,1,19,5,5,119.2,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,43,1,9500,0,1,137.0,1,3,3,2,2,115.0,0,0,1,1,1,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,1 +1,17,2,9254,0,1,115.0,1,19,19,9,7,113.3,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,133.0,1,38,38,7,7,125.3,1,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,110.0,1,37,37,7,10,150.0,0,0,1,0,1,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,19,133.1,1,19,19,144,141,131.5,0,0,0,1,1,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,133.0,1,38,1,2,4,126.0,0,0,1,1,1,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,15,1,9147,0,1,133.1,41,41,1,3,4,100.0,0,0,0,0,0,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,0 +1,10,2,9773,0,1,154.4,22,19,38,3,5,154.4,1,0,1,0,1,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,9070,0,39,100.0,1,1,1,4,4,106.0,0,0,1,1,0,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,135.0,1,38,19,8,8,126.3,1,0,0,1,1,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,120.0,41,1,1,9,6,114.8,1,0,1,1,1,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,2 +1,17,1,9085,0,1,124.0,1,19,38,7,7,113.9,1,0,1,1,1,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,1 +1,1,6,9254,0,1,126.0,1,38,37,5,7,123.9,1,0,1,1,1,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,125.0,1,37,37,9,9,121.5,1,0,1,1,0,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,1 +1,1,6,9773,0,1,125.0,1,1,1,5,4,122.2,0,0,1,1,0,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,135.0,1,19,19,4,5,126.8,1,0,1,1,0,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9238,0,1,133.0,1,1,37,7,9,127.4,1,0,1,1,1,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,3,9070,0,1,127.0,1,19,38,5,7,141.0,1,0,1,1,0,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +2,39,1,9119,0,3,120.0,1,37,37,4,7,122.5,0,0,1,0,1,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,2,9147,0,1,150.0,1,19,37,9,7,101.0,0,0,0,0,1,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,0 +1,7,1,9003,0,4,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,1 +1,17,5,9500,0,1,143.0,1,38,1,9,7,130.6,1,0,1,1,1,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,129.0,1,38,19,5,7,124.0,1,0,1,1,1,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,1 +1,17,2,9500,0,1,140.0,1,1,1,5,10,128.5,1,0,1,1,1,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,2 +4,39,1,8014,1,19,100.0,1,1,37,9,1,111.5,0,0,1,1,0,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,0 +2,39,2,9556,0,1,110.0,1,19,38,9,9,112.8,0,0,1,1,1,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,2 +1,1,1,9147,0,1,116.0,1,19,19,5,8,127.9,0,0,0,0,1,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,0 +1,43,4,171,0,1,117.0,1,19,12,9,10,109.3,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,130.0,1,1,38,5,5,122.3,1,0,1,1,1,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,1 +1,15,1,9119,0,1,130.0,26,38,3,9,2,137.0,1,0,1,1,0,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,2 +1,39,1,9556,0,1,133.1,1,38,19,9,6,100.0,1,0,1,1,1,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,150.0,1,3,1,3,9,154.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,43,1,9147,0,1,131.0,1,3,19,2,9,126.1,0,0,1,1,1,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,2 +1,1,6,9773,0,1,145.0,1,1,19,4,4,131.0,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,136.0,1,19,38,4,7,140.9,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,155.0,1,19,37,4,5,117.5,0,0,1,1,1,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,2 +1,1,3,9147,0,1,128.0,1,3,3,5,10,116.5,0,0,1,1,0,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,17,4,9254,0,1,133.0,1,37,37,5,8,128.5,1,0,1,1,1,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,0 +1,17,1,9119,0,1,141.0,1,37,1,9,2,133.0,1,0,1,1,0,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,2 +1,51,1,8014,1,1,120.0,1,1,1,4,4,128.5,0,0,0,0,0,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,0 +1,43,1,9003,0,1,120.0,1,3,3,1,2,115.0,0,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,136.0,1,19,19,4,7,136.0,0,0,1,1,1,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,1 +1,17,1,9070,0,1,116.0,1,38,38,9,9,123.7,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,125.0,1,19,19,4,8,117.0,1,0,1,1,1,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,135.0,1,1,38,5,7,137.5,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,140.0,1,19,19,7,7,124.6,1,0,1,1,1,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,2 +1,39,1,9670,0,19,133.1,1,1,1,4,7,100.0,0,0,0,0,1,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,122.0,1,37,37,9,9,131.0,1,0,1,1,1,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,0 +2,43,1,9773,0,1,160.0,1,37,37,5,0,160.0,0,0,0,0,0,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9670,0,1,113.0,1,37,19,9,9,110.2,1,0,1,1,1,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,125.0,1,37,37,9,9,126.0,1,0,0,1,1,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,1 +1,43,1,171,0,39,140.0,1,38,37,9,7,140.0,0,0,1,0,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,16,3,9853,0,1,134.0,1,37,19,9,5,121.4,1,0,1,1,1,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,2 +1,1,1,8014,1,1,120.0,1,1,37,7,3,122.8,0,0,1,1,1,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,1,1,4,2,127.7,0,0,1,1,1,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,2 +2,39,1,9991,1,1,120.0,1,19,37,3,9,132.9,0,0,1,1,0,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,138.0,1,1,38,4,9,132.5,1,0,1,1,1,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,133.1,1,19,37,7,7,126.0,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +5,39,1,9500,0,1,110.0,1,38,38,9,9,110.0,0,0,1,0,1,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,0 +5,7,1,9500,0,40,150.0,1,37,37,4,9,150.0,0,0,1,1,1,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,1 +1,17,1,9070,0,1,126.0,1,19,38,9,7,118.7,0,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,16,4,9254,0,1,126.0,1,38,37,9,7,118.7,1,0,1,1,1,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,3,9773,0,1,110.0,1,19,19,5,5,105.5,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,1 +1,39,1,9238,0,9,133.1,1,34,34,0,0,118.0,0,0,1,1,1,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,140.0,1,3,2,4,6,133.4,1,0,1,0,0,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,2 +1,1,1,171,0,1,134.0,1,3,2,2,2,141.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,6,9773,0,1,133.1,1,1,1,90,90,129.6,0,0,1,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,133.1,1,38,19,5,6,138.0,0,0,0,1,0,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,2 +1,17,3,9500,0,1,156.0,1,19,37,4,9,132.3,1,0,1,1,0,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,1 +1,44,1,9085,0,39,140.0,1,3,3,4,2,140.0,1,0,1,1,1,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,1 +1,43,1,171,0,1,116.0,1,3,1,2,3,117.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,141.0,1,38,19,9,6,126.3,1,0,1,1,1,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,44,1,9238,0,39,140.0,1,1,19,191,102,143.0,0,0,1,1,1,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,1 +1,43,5,8014,1,1,110.0,1,34,34,0,0,110.0,0,0,1,1,0,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9238,0,1,143.0,1,1,11,4,3,128.0,1,0,1,1,1,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +3,17,1,9238,0,1,138.0,1,37,37,9,9,133.5,1,0,1,1,1,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,2 +1,7,1,9119,0,3,150.0,1,3,2,2,2,150.0,0,0,1,1,1,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9003,0,39,150.0,1,19,1,1,1,150.0,0,0,1,1,0,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,2 +1,17,1,9085,0,1,134.0,1,19,37,2,7,131.2,0,0,1,1,1,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,171,0,1,133.1,1,37,37,9,7,100.0,0,0,0,1,0,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,18,1,9556,0,1,133.1,1,3,19,2,8,106.0,1,0,1,1,0,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,1 +1,17,2,9500,0,1,135.0,1,19,19,9,4,129.8,1,0,1,1,1,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,1 +1,39,1,33,0,1,130.0,1,38,37,9,6,102.5,0,0,0,0,0,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,0 +1,18,1,9500,0,1,144.0,1,37,37,6,6,127.5,1,0,1,1,1,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,130.0,1,37,38,9,9,133.9,1,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,1 +2,44,1,9003,0,39,140.0,1,37,37,4,7,140.0,0,0,1,1,0,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,0 +1,1,4,9773,0,1,137.0,1,3,19,2,3,139.8,1,1,1,1,1,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,2 +1,1,1,9991,1,1,130.0,1,2,37,3,9,131.4,0,0,1,1,0,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,135.0,1,3,3,1,1,125.8,1,0,1,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,1 +1,18,1,9238,0,1,147.0,1,38,34,4,0,130.2,0,0,1,1,1,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +5,17,5,9500,0,1,143.0,1,37,38,5,8,133.5,1,0,1,1,1,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,99.0,1,1,3,5,10,100.0,1,0,1,1,0,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,1 +1,16,2,9147,0,1,131.0,1,37,37,9,9,135.9,1,0,1,1,0,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,146.0,1,38,37,6,6,143.9,0,0,1,1,1,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,1 +1,17,1,9085,0,1,139.0,1,38,38,5,3,136.2,0,0,1,1,1,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,153.0,1,3,1,2,8,137.6,1,0,1,1,1,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,17,2,9085,0,1,133.1,1,19,38,9,1,100.0,1,0,0,0,0,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,0 +1,1,2,9773,0,1,121.0,1,19,19,9,9,122.8,0,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,141.0,1,37,38,9,10,138.9,0,0,1,1,1,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,1,6,9500,0,1,117.0,1,4,12,5,9,119.8,1,0,1,1,1,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,1 +1,17,4,9119,0,1,122.0,62,1,1,191,171,121.0,1,0,1,1,0,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,38,19,3,3,98.6,0,0,1,1,1,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,140.0,1,38,37,5,6,124.3,1,0,1,1,1,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,140.0,1,37,37,9,9,127.7,1,0,1,1,1,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,121.0,1,37,37,9,9,124.2,1,0,1,1,1,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,1 +1,18,1,9130,0,1,146.0,1,3,3,5,2,137.8,0,0,1,1,0,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,3,120.0,1,1,1,7,10,120.0,1,0,1,0,0,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,120.0,1,37,37,7,8,120.0,1,0,0,0,1,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,178.0,1,19,1,4,8,174.7,0,0,1,1,1,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,1 +1,17,5,9254,0,1,114.0,1,38,1,5,9,109.5,0,0,1,1,0,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,143.0,1,38,38,9,9,140.0,0,0,1,1,0,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,160.0,1,38,37,9,5,159.3,0,0,1,1,1,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,143.0,1,38,34,9,9,133.6,1,0,1,1,1,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,1 +4,43,1,9500,0,19,100.0,1,34,34,0,0,110.0,0,0,1,1,0,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,1 +1,1,2,9254,0,1,125.0,1,1,19,4,1,121.5,1,0,1,1,0,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,19,7,3,120.0,1,0,1,1,0,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,3,120.0,1,19,1,9,5,134.0,0,0,1,1,1,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,0 +1,39,1,9254,0,1,160.0,1,19,37,7,10,100.0,0,0,1,1,0,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,2 +1,15,1,171,0,1,130.0,26,1,1,2,9,130.0,0,0,1,1,0,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,2 +1,1,1,171,0,1,140.0,1,19,37,5,6,137.9,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,123.0,1,19,37,9,9,124.1,1,0,1,1,1,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,140.0,1,38,38,6,6,140.0,0,0,1,1,1,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,9991,1,9,133.1,1,34,34,0,0,118.4,0,0,1,0,1,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,6,9254,0,1,125.0,1,1,1,4,3,120.5,1,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,1 +1,1,6,171,0,1,126.0,1,10,10,4,4,130.2,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,120.0,1,1,19,4,7,120.0,0,0,1,1,0,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,2 +1,17,5,9773,0,1,143.0,1,1,1,7,7,136.7,1,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,42,1,9147,0,1,130.0,1,37,38,9,1,130.0,1,0,1,1,1,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,1,130.0,1,37,37,9,9,124.0,0,0,1,1,0,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,1 +1,17,2,9238,0,1,136.0,1,1,3,3,4,126.6,1,0,1,1,1,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,127.0,1,19,1,5,7,118.3,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,2 +4,39,1,9991,1,1,147.0,1,19,19,7,8,147.9,0,0,1,1,1,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,2 +1,1,4,9773,0,1,124.0,1,19,37,99,90,124.0,0,0,1,0,1,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +2,43,1,9003,0,1,133.1,1,37,37,9,7,136.0,0,0,1,1,0,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,1 +1,1,1,9085,0,1,140.0,1,12,1,1,90,141.8,0,0,1,1,1,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,133.1,1,37,37,191,154,95.0,0,0,1,1,1,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,147.0,1,2,3,4,8,145.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +2,7,1,9238,0,3,130.0,1,37,19,4,5,130.0,0,0,1,1,1,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,1 +1,7,2,9085,0,3,130.0,1,3,3,1,1,130.0,0,0,1,0,1,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,0 +2,39,2,9147,0,3,130.0,1,3,37,9,9,103.4,0,0,1,1,1,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,0 +1,17,1,9085,0,1,135.0,1,1,19,4,10,125.6,1,0,1,1,1,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,1,1,5,5,96.0,1,0,1,0,0,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +5,39,1,9853,0,19,133.1,1,38,1,5,3,105.5,0,0,0,1,1,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,136.0,1,37,37,7,7,121.7,1,0,1,1,1,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9119,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,0,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,19,133.1,1,19,19,4,4,100.0,0,0,1,1,0,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,2 +1,1,1,171,0,1,124.0,1,2,2,3,2,118.4,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,17,1,9085,0,1,120.0,1,2,3,2,2,116.1,0,0,1,1,1,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,162.0,1,37,37,9,9,142.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,131.0,1,37,1,9,9,135.9,1,0,1,1,1,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,37,37,9,7,100.0,0,0,1,1,0,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,1 +1,43,1,9500,0,1,127.0,1,19,19,4,7,121.1,0,0,1,1,1,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,143.0,1,37,37,9,5,131.6,1,0,1,1,1,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,1 +1,17,4,9085,0,1,140.0,1,19,37,4,7,123.7,0,0,1,1,1,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,156.0,1,19,1,5,10,136.8,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,0 +2,39,1,9853,0,10,133.1,1,37,34,0,0,115.5,0,0,1,1,1,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,0 +1,1,3,9119,0,1,113.0,1,4,38,2,7,107.4,1,0,1,1,0,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,1 +2,39,1,9670,0,1,130.0,1,37,37,9,0,158.0,0,0,0,0,1,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,0 +1,43,1,9853,0,1,110.0,1,37,37,9,9,107.7,0,0,0,0,1,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,124.0,1,2,2,3,3,124.7,1,0,1,1,0,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,127.0,1,37,37,5,10,125.3,0,0,1,1,0,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,1 +1,16,1,9500,0,1,133.1,1,37,37,9,9,95.0,1,0,1,1,1,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,1 +1,1,4,9238,0,1,127.0,1,19,19,4,0,127.4,1,0,1,1,1,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,113.0,1,38,38,3,7,112.3,0,0,1,1,1,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,1 +1,17,4,9670,0,1,110.0,1,19,37,9,99,106.1,1,1,0,0,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,141.0,1,1,38,4,8,136.8,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,133.1,1,37,37,9,7,140.0,0,0,1,1,1,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,124.0,1,1,1,4,4,118.8,0,0,1,1,0,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,4,120.0,1,2,3,2,2,120.0,0,0,1,1,1,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,0 +1,17,2,9670,0,1,110.0,1,3,3,4,10,115.6,1,0,1,1,0,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,118.0,1,1,19,4,10,110.7,1,1,1,1,1,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,2 +4,39,1,9238,0,1,130.0,1,19,3,9,2,140.0,0,0,1,1,0,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,1,140.0,1,1,19,3,9,140.0,1,0,0,0,1,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,0 +1,17,3,9773,0,1,123.0,1,1,19,5,5,117.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,115.0,1,38,38,8,7,112.9,1,0,1,1,1,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,1 +1,1,6,9147,0,1,142.0,1,38,37,7,7,134.3,0,1,1,1,0,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9085,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,1,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,129.0,1,19,1,3,7,121.0,0,0,1,1,1,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,156.0,1,3,3,123,122,155.0,0,0,1,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,136.0,1,37,37,9,9,126.3,1,0,1,1,1,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,1 +2,43,1,9991,1,1,110.0,1,37,37,9,9,132.5,0,0,1,1,0,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,19,133.1,1,37,1,5,5,138.3,0,0,1,1,0,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,0 +1,1,2,9130,0,1,140.0,1,19,37,9,9,129.5,1,0,1,1,1,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,2 +1,7,1,9500,0,3,140.0,1,37,37,4,4,140.0,0,0,1,1,1,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,1 +4,42,1,9147,0,1,110.0,1,37,37,9,9,128.2,0,0,1,1,1,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,1 +1,39,1,9119,0,19,133.1,1,1,1,4,3,134.4,0,0,0,0,0,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,136.0,1,37,1,5,4,120.8,1,0,1,1,1,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,1 +1,17,2,9500,0,1,140.0,1,37,37,9,9,132.5,1,0,1,1,1,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,1 +1,17,6,9147,0,1,130.0,1,37,37,9,9,110.4,1,0,1,1,0,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,4,5,105.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,136.0,1,19,19,4,3,126.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,116.0,1,38,2,9,2,112.2,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9238,0,1,122.0,1,19,3,5,2,112.6,0,0,0,1,1,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,2 +1,17,1,9147,0,1,118.0,1,1,38,9,9,118.4,1,0,1,1,0,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,2 +1,17,1,9130,0,1,117.0,1,19,19,4,4,113.5,1,0,1,1,1,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,117.0,1,19,19,9,9,111.8,1,0,1,1,0,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,0 +1,1,6,9500,0,1,118.0,1,38,19,3,3,113.5,1,0,1,1,0,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,1 +2,43,2,9853,0,1,130.0,1,38,31,4,1,124.2,0,0,1,1,1,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,128.0,1,38,38,9,7,124.5,1,0,1,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,2 +1,1,1,9238,0,1,116.0,1,38,38,9,8,108.7,1,0,1,1,0,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9254,0,19,133.1,1,37,19,9,10,156.5,0,0,1,1,0,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,1 +1,39,1,9003,0,1,160.0,1,1,37,191,193,140.0,0,0,1,1,0,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,110.0,1,37,37,9,10,150.0,0,0,1,1,0,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,1 +1,18,2,9070,0,1,122.0,1,38,19,5,5,119.9,0,0,1,1,0,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,125.0,1,19,38,9,7,116.3,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,37,37,6,6,147.8,0,0,1,1,1,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,2 +1,1,1,171,0,1,174.0,1,5,3,3,3,157.9,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,131.0,1,1,1,4,4,127.2,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,0 +1,17,1,9670,0,3,110.0,1,12,3,5,8,106.5,1,0,0,0,1,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9500,0,1,124.0,1,37,37,9,9,116.0,1,0,1,1,1,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,38,38,5,7,146.2,0,0,1,1,1,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,133.1,1,37,37,9,9,97.0,0,0,1,1,1,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,132.0,1,19,1,9,9,141.8,1,0,1,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,1 +2,43,1,9254,0,3,120.0,1,38,37,9,3,120.0,1,0,1,1,1,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,135.0,1,3,2,1,1,133.6,1,0,1,0,1,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,133.0,1,38,38,5,2,135.5,0,0,1,1,1,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,125.0,1,39,3,3,2,125.0,1,0,1,1,1,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,133.1,1,1,1,3,4,112.0,0,0,1,1,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,141.0,1,1,1,5,9,126.3,0,0,1,1,0,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,1 +1,39,1,9003,0,1,133.1,1,1,37,9,8,130.0,0,0,1,1,0,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,0 +2,43,1,9991,1,1,140.0,1,37,37,3,10,107.8,0,0,1,1,1,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,2 +1,43,1,9500,0,1,120.0,1,3,4,2,4,120.6,0,0,1,1,0,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,1,133.1,1,1,19,9,9,120.0,0,0,1,1,0,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,1 +1,39,1,9853,0,1,140.0,1,19,1,9,4,128.2,0,0,1,0,1,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,133.1,1,37,19,9,3,123.0,0,0,1,1,0,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,2 +1,39,1,9147,0,1,150.0,1,37,1,7,3,148.8,0,0,1,1,0,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,1 +1,17,1,9670,0,1,125.0,1,38,37,7,5,126.4,0,0,1,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,1 +1,44,1,9003,0,39,140.0,1,38,1,134,134,140.0,1,0,0,1,0,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,2 +1,44,1,9070,0,39,140.0,1,1,19,4,4,140.0,0,0,1,1,0,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,130.0,1,1,1,9,9,124.1,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,2 +1,51,1,9070,0,1,130.0,1,19,19,5,7,124.5,0,0,1,1,1,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,101.0,1,37,37,9,4,101.0,1,0,0,1,1,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,2 +1,1,1,8014,1,1,115.0,1,38,38,9,7,115.0,1,0,1,1,1,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,1 +1,17,1,9130,0,1,122.0,1,19,19,9,9,121.7,1,0,1,0,1,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,135.0,1,38,38,9,6,138.1,0,0,0,0,1,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9147,0,1,130.0,1,37,37,9,9,119.9,1,0,1,0,1,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,134.0,1,1,1,9,9,133.0,1,0,1,1,1,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,19,37,9,9,117.8,1,0,1,1,1,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,119.0,1,1,19,4,10,115.5,1,0,1,1,1,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,2 +1,17,3,9119,0,1,138.0,1,3,3,3,4,125.4,1,1,1,1,0,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,164.0,1,19,19,9,9,149.0,1,0,1,1,1,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,44,1,9085,0,1,140.0,1,4,4,2,6,140.0,0,0,1,1,1,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,1 +1,43,1,9070,0,1,160.0,1,1,2,4,2,100.0,0,0,1,1,0,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,132.0,1,37,37,9,5,135.9,0,0,1,1,1,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,142.0,1,37,19,7,7,133.0,1,0,1,1,1,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,1 +1,7,1,9556,0,3,130.0,1,1,37,4,8,130.0,0,0,1,0,0,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,0 +1,44,1,171,0,39,110.0,1,1,1,1,7,114.2,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9147,0,1,129.0,1,19,19,4,9,127.6,1,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,164.0,1,34,1,0,0,163.0,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9556,0,1,122.0,1,19,38,4,8,118.3,1,0,1,1,1,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,1 +1,17,4,9500,0,1,141.0,1,38,37,3,3,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,1 +1,1,1,9003,0,1,148.0,1,1,19,194,194,143.5,0,0,0,1,0,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,150.0,1,37,19,6,4,137.0,0,0,1,1,0,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,38,38,1,4,138.7,0,0,1,1,0,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,103.8,0,0,1,1,1,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,0 +1,17,1,8014,1,1,127.0,1,19,37,4,7,115.8,0,0,1,1,1,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,143.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,130.0,1,38,19,5,6,125.1,1,0,1,1,1,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9254,0,1,133.0,1,19,1,9,9,137.2,0,0,1,1,0,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +2,1,4,8014,1,1,140.0,1,34,34,0,0,128.0,1,0,1,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,120.0,1,1,1,9,10,118.3,0,0,1,1,0,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,2 +2,39,1,8014,1,12,133.1,1,37,37,9,1,113.0,0,0,1,1,1,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,128.0,1,19,1,0,5,122.1,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,37,38,3,3,123.0,0,0,1,1,1,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,120.0,1,37,1,7,4,95.0,1,0,1,1,1,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,0 +1,17,4,9238,0,1,123.0,1,19,19,191,144,116.0,1,0,1,1,1,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,39,1,9085,0,1,140.0,1,37,37,90,90,106.3,0,0,0,0,0,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,159.0,1,3,3,2,2,162.5,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,125.0,1,19,19,9,9,115.9,0,0,1,1,1,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,130.0,1,19,19,3,7,129.0,0,0,0,0,1,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,133.1,1,38,37,5,5,136.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,156.0,1,5,4,2,1,140.8,0,0,1,1,1,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,1,161.0,1,37,37,9,9,100.0,1,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,7,1,8014,1,3,130.0,1,35,35,90,90,140.0,0,0,1,0,1,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,0 +2,1,1,9991,1,1,120.0,1,37,19,9,9,135.0,1,0,1,1,0,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,0,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,148.0,1,3,3,2,2,137.3,1,0,1,1,1,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,120.0,1,19,37,5,7,115.1,0,0,1,1,1,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,2 +1,17,6,9773,0,1,138.0,1,1,1,4,2,140.5,1,0,1,1,1,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,1 +2,43,1,9085,0,1,160.0,1,37,37,9,7,120.0,0,0,1,1,0,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,2 +1,17,2,8014,1,1,134.0,1,1,19,4,99,126.0,1,0,1,1,0,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,100.0,1,0,1,1,1,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,131.0,1,1,1,5,9,129.5,1,0,1,1,1,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,1 +1,1,4,171,0,1,139.0,1,37,38,9,9,127.8,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,150.0,1,37,37,5,6,132.5,1,0,1,1,1,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,2 +1,1,1,9085,0,1,133.1,1,19,38,5,7,110.0,1,0,1,1,1,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,1 +1,43,1,9254,0,6,138.6,1,34,34,0,0,138.6,1,0,1,1,0,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,133.1,1,1,1,4,10,100.8,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,5,140.0,1,19,1,4,1,140.0,1,0,1,0,1,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,118.0,1,1,19,9,10,113.1,1,0,1,1,1,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,115.0,1,3,3,2,2,111.5,1,0,0,0,1,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9254,0,39,170.0,1,19,2,9,3,170.0,0,0,1,0,0,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,37,9,9,120.0,0,0,1,1,1,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,3,9500,0,1,137.0,1,19,38,7,7,126.5,1,0,1,1,1,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,136.0,1,19,19,90,8,133.9,1,0,1,0,0,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,0 +1,18,2,9500,0,1,141.0,24,1,1,4,3,126.8,1,0,1,1,1,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,1 +1,17,4,9238,0,1,124.0,1,19,19,5,8,117.7,1,0,1,1,1,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,149.0,1,19,38,9,9,126.5,1,0,1,1,1,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,153.0,1,1,1,141,175,157.9,0,0,0,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,140.0,1,1,2,4,6,140.0,1,0,1,1,1,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,137.0,1,1,3,3,2,121.3,1,0,1,1,1,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,143.0,1,1,1,4,6,138.8,0,0,1,0,0,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,160.0,1,1,3,1,2,130.0,0,0,1,0,0,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,19,19,9,8,105.8,0,0,1,1,1,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,0 +1,5,4,9119,0,1,115.0,1,19,37,4,6,113.3,1,0,1,1,0,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,19,4,3,125.4,1,0,1,1,1,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,1 +4,42,1,9500,0,19,133.1,1,1,1,5,5,126.0,1,0,1,1,0,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9254,0,3,133.1,1,19,19,4,6,130.5,0,0,1,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9147,0,1,108.0,1,1,19,4,4,105.9,1,0,1,1,0,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,126.0,1,19,19,9,9,115.2,0,0,0,1,1,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,2 +1,1,1,9853,0,1,140.0,1,37,37,9,9,145.3,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,1,6,9070,0,6,119.0,1,1,1,9,9,123.2,1,0,1,1,0,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,160.0,1,1,38,5,6,168.6,0,0,1,1,0,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9254,0,1,120.0,1,1,19,9,9,148.3,0,0,1,1,0,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,1 +1,7,1,9085,0,3,130.0,1,1,19,9,10,130.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,137.0,1,38,38,151,151,141.6,0,0,1,1,0,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,1 +1,39,1,9003,0,19,133.1,1,37,37,9,4,140.0,0,0,1,1,0,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,2 +1,43,1,9085,0,1,162.0,1,2,1,4,4,162.0,0,0,1,1,1,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,1 +1,43,1,171,0,1,133.0,1,19,19,5,7,133.0,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,154.0,1,37,37,9,7,150.2,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,19,100.0,1,38,19,0,10,111.3,0,0,0,0,1,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,38,4,9,126.2,0,0,1,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,132.0,1,3,1,2,7,125.5,1,0,1,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,127.0,1,37,37,5,7,116.2,0,0,1,1,0,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9773,0,1,121.0,1,19,38,9,7,113.0,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,130.0,1,19,19,9,9,127.6,1,0,1,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,160.0,1,34,34,99,99,114.3,0,0,1,1,0,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,2 +1,18,4,9254,0,1,119.0,1,37,37,9,9,113.1,1,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,130.0,1,38,37,5,6,130.0,0,0,1,1,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,163.0,1,19,37,5,8,150.8,1,0,1,1,0,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,2 +1,43,1,9238,0,1,122.0,1,19,19,5,5,114.3,1,0,1,1,1,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,2 +1,18,1,9147,0,1,131.0,1,34,34,90,90,131.0,0,0,1,1,0,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,4,9773,0,1,137.0,1,1,1,5,5,125.8,0,0,0,1,0,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9670,0,1,133.1,1,37,37,90,90,97.4,0,0,0,0,0,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,37,38,7,5,106.0,1,0,1,1,1,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,1 +1,17,6,9254,0,1,108.0,1,1,19,4,5,112.2,1,0,1,1,0,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,19,133.1,1,1,19,4,10,111.8,1,0,1,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,133.1,1,1,37,9,10,139.0,0,0,1,1,0,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,122.0,1,12,19,4,8,117.8,1,0,1,1,1,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,128.0,1,19,19,0,5,120.3,1,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,133.1,1,34,19,0,3,117.1,1,0,1,1,1,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9556,0,19,133.1,1,37,38,9,9,123.0,0,0,1,1,1,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,1 +1,17,2,9238,0,1,133.0,1,37,37,9,4,123.6,0,0,1,1,1,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,5,9670,0,1,132.0,1,19,19,5,5,134.1,1,0,1,1,0,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,129.0,1,38,1,4,10,129.4,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,136.0,1,19,19,4,8,150.4,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,154.0,1,3,3,1,3,129.0,1,0,1,1,1,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,2 +1,44,1,9130,0,39,150.0,1,1,1,4,4,150.0,1,0,1,1,1,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,2 +1,17,1,9773,0,1,115.0,1,37,37,9,8,116.1,1,0,1,1,1,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,157.0,1,19,3,4,9,138.8,0,0,1,1,0,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9670,0,19,133.1,1,19,1,5,8,97.2,1,0,1,1,0,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,141.0,1,37,38,6,6,125.6,1,0,1,1,1,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,143.0,1,19,1,9,9,144.4,1,0,1,1,1,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9119,0,1,127.0,1,19,1,4,5,115.8,0,0,1,1,0,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,150.0,1,1,1,9,10,142.7,0,0,0,1,1,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,132.0,11,12,12,90,4,129.9,1,0,1,1,1,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,115.0,1,19,19,191,171,109.1,0,0,0,0,0,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,2 +1,17,1,9773,0,1,121.0,1,38,38,9,8,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,7,1,9085,0,40,130.0,1,1,1,4,4,130.0,1,0,1,1,1,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,140.0,1,19,38,4,4,138.3,0,0,1,1,0,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,6,9773,0,1,116.0,1,19,1,4,4,110.1,1,0,1,1,1,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,131.0,1,38,38,9,9,127.9,0,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,1 +1,51,1,9991,1,42,110.0,1,19,37,5,9,128.2,0,0,1,0,1,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,0 +1,1,3,9500,0,1,138.0,1,19,19,5,8,124.9,1,0,1,1,1,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,172.0,1,1,1,4,9,167.1,0,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +5,39,1,9991,1,1,120.0,1,37,37,9,9,138.1,0,0,1,1,0,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,37,38,3,7,96.7,0,0,1,1,0,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,15,1,9130,0,1,133.1,41,1,1,4,4,100.0,0,0,1,1,1,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9119,0,1,122.0,1,19,19,9,9,114.7,0,0,1,1,0,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,133.1,1,19,38,192,192,96.0,1,0,1,1,1,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,160.0,1,1,37,9,10,118.0,0,0,1,1,1,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,2 +1,18,4,9119,0,1,134.0,1,19,38,194,175,124.9,1,0,0,1,0,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,4,19,4,5,98.0,0,0,1,1,0,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +5,43,1,9991,1,3,130.0,1,3,3,1,1,130.0,0,0,1,1,1,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,120.0,1,19,19,4,5,114.8,1,0,0,0,1,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,0 +1,18,6,8014,1,1,134.0,1,3,19,2,4,120.7,1,0,1,1,1,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,133.1,1,37,37,9,9,109.7,0,0,1,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9070,0,1,128.0,1,19,19,3,3,123.5,1,1,1,0,0,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,133.1,1,1,19,5,9,130.0,0,0,1,1,0,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,1 +1,7,1,9991,1,40,120.0,1,43,3,3,3,120.0,0,0,1,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,2 +1,17,5,9556,0,1,139.0,1,19,19,9,8,121.3,1,0,1,1,1,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,156.0,1,3,19,3,3,151.1,0,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,1 +1,16,2,9147,0,1,132.0,1,37,37,9,9,122.6,1,0,1,1,1,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,130.0,1,2,3,9,6,130.0,0,0,1,1,0,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,133.1,1,1,1,1,6,120.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,0,1,0,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,133.0,1,3,3,1,1,126.2,1,0,1,1,1,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,1 +1,18,2,9147,0,1,140.0,1,37,37,5,9,124.3,1,0,1,1,0,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,44,1,9003,0,39,150.0,1,37,38,4,8,150.0,0,0,1,1,1,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,140.0,1,37,19,191,163,129.3,1,0,0,1,1,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +4,7,1,9500,0,3,130.0,1,3,19,2,3,130.0,0,0,1,1,1,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9070,0,1,131.0,1,19,19,7,7,125.1,0,0,1,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,2 +1,10,1,9773,0,1,152.0,22,38,37,5,9,152.0,1,0,1,1,1,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,123.0,1,34,38,0,7,120.2,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,1,1,9070,0,1,131.0,1,3,19,4,4,130.3,1,0,1,1,0,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,115.0,1,1,1,5,4,108.0,1,0,1,1,1,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,130.0,1,38,37,9,9,144.0,0,0,1,1,1,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9238,0,1,134.0,1,3,1,3,4,133.0,1,0,1,1,1,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,1 +1,51,1,9670,0,1,133.1,1,3,1,3,10,116.2,0,0,1,1,0,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,139.0,0,0,1,1,0,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,126.0,1,19,1,9,9,122.5,1,0,1,0,1,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,121.0,1,19,19,9,9,126.3,1,0,1,1,1,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9003,0,1,133.1,1,38,38,4,8,115.0,0,0,0,1,0,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,19,37,9,9,151.5,0,0,0,0,0,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9853,0,40,110.0,1,41,3,2,1,110.0,0,0,0,1,1,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,1 +1,17,5,9238,0,1,131.0,1,19,37,5,7,120.2,1,0,1,1,1,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,2 +5,7,1,9070,0,3,140.0,1,37,37,7,7,140.0,0,0,1,0,0,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +4,39,1,9254,0,1,140.0,1,38,37,9,9,112.0,0,0,0,1,1,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,0 +1,18,3,9853,0,1,122.0,1,38,37,9,5,120.3,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9070,0,1,125.0,1,1,38,9,7,118.0,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,2 +1,1,3,9670,0,1,111.0,1,1,1,5,5,105.4,0,0,1,1,1,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +2,39,1,9254,0,1,130.0,1,37,37,4,7,120.0,1,0,1,1,1,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,160.0,1,37,37,9,9,160.0,1,0,1,1,1,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,1 +1,39,1,9147,0,12,133.1,1,37,37,9,9,140.0,0,0,1,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9147,0,1,118.0,1,1,2,10,10,117.3,1,0,1,1,1,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,3,9085,0,1,130.0,1,1,19,9,9,121.3,1,0,1,1,1,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,19,133.1,1,37,37,9,9,130.0,0,0,1,1,1,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,3,9085,0,1,130.0,1,19,37,5,5,121.3,1,0,1,1,1,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,2 +1,1,2,9254,0,1,120.0,1,19,19,9,9,116.5,1,0,1,1,1,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,1 +2,39,1,9500,0,1,140.0,1,37,37,9,4,127.3,0,0,1,1,0,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,1 +1,17,1,9670,0,1,118.0,1,37,38,8,7,115.2,1,0,1,1,1,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,17,3,9238,0,1,125.0,1,19,19,7,8,121.5,0,0,1,1,1,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,125.0,1,19,19,5,5,114.5,1,0,1,1,1,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,136.0,1,39,1,3,4,134.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,115.0,1,3,2,4,5,112.6,0,0,1,1,0,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,53,1,9003,0,1,130.0,1,19,1,9,9,130.0,0,0,0,1,0,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,2 +1,1,3,9773,0,1,136.0,1,3,1,5,3,129.0,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,3,150.0,1,2,3,4,7,173.3,1,0,1,1,1,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,140.0,1,1,19,7,7,129.9,1,0,1,1,1,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,0 +1,7,1,9119,0,1,140.8,1,34,34,0,0,134.0,0,0,1,1,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9254,0,1,115.0,1,37,19,5,5,109.8,1,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,137.0,1,1,1,4,4,127.6,1,0,1,1,1,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,1 +4,7,1,9238,0,40,130.0,1,34,34,99,99,130.0,0,0,0,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9147,0,1,123.0,1,37,37,9,9,106.2,0,0,1,1,1,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,121.0,1,1,3,3,7,113.0,1,0,1,1,0,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,1 +1,17,1,9254,0,1,140.0,1,3,1,2,3,129.9,0,0,1,1,1,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,7,1,9991,1,40,130.0,1,38,38,9,7,130.0,0,0,1,1,0,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,0 +1,51,1,9070,0,1,132.0,1,19,19,153,153,120.0,0,0,1,1,1,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,9119,0,1,110.0,1,37,37,9,9,106.8,0,0,1,1,0,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9070,0,1,124.0,1,19,37,4,4,126.8,0,0,1,1,1,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,2 +1,18,3,9147,0,1,133.1,1,1,38,4,7,101.0,1,0,1,0,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,3,9147,0,1,125.0,1,38,19,7,7,125.7,0,0,1,1,1,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,2 +1,17,4,9853,0,1,121.0,1,38,38,5,7,113.7,1,0,1,1,1,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,1,133.1,1,1,1,9,6,105.0,1,0,0,0,1,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,143.0,1,5,1,2,5,136.7,0,0,1,1,1,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,1 +1,1,2,9556,0,1,142.0,1,1,19,4,5,130.5,1,0,1,1,1,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,131.0,1,19,19,7,5,122.1,1,0,1,1,1,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,132.0,1,1,37,4,7,121.8,1,0,1,1,1,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,123.0,1,37,37,3,3,123.0,1,0,1,1,1,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,129.0,1,19,38,2,7,126.9,1,0,1,1,1,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,2 +1,1,4,9238,0,1,118.0,1,19,38,9,9,110.0,0,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,125.0,1,3,1,4,4,119.4,1,0,1,1,1,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,2 +1,17,1,9085,0,1,131.0,1,1,3,4,1,129.3,1,0,1,1,1,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9500,0,1,147.0,1,37,37,9,9,134.3,0,0,1,1,1,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,1 +2,39,2,9670,0,19,133.1,1,37,37,9,9,135.6,0,0,1,1,1,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,152.0,1,37,19,9,9,137.0,1,0,1,1,1,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,118.0,1,12,1,4,10,115.7,0,0,1,1,0,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,2 +1,15,1,9119,0,1,133.1,41,1,3,5,8,100.0,0,0,0,1,0,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,0 +1,1,5,9119,0,1,131.0,1,1,19,4,7,126.8,0,0,1,0,0,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,132.0,1,19,38,9,7,119.1,0,0,1,0,0,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,8014,1,1,120.0,1,37,37,5,5,161.1,0,0,1,1,0,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,18,5,9500,0,1,137.0,1,19,1,1,10,129.3,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,118.0,1,37,19,5,5,119.1,1,0,1,1,1,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,134.0,1,38,38,9,9,122.0,1,0,1,1,0,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,163.0,1,1,1,4,3,149.7,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,140.0,1,38,38,9,7,140.0,0,0,1,1,1,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,2 +1,17,4,9147,0,1,122.0,1,19,19,5,7,116.4,1,0,0,1,1,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,140.0,1,3,37,3,7,116.9,0,0,1,1,0,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,5,2,9238,0,1,123.0,1,40,38,2,9,118.1,1,0,1,1,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,7,1,9991,1,3,130.0,1,3,19,2,3,133.9,0,0,1,1,1,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,125.0,1,1,38,4,7,114.9,1,0,1,1,1,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,130.0,1,1,1,4,10,115.2,0,0,1,1,0,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,124.0,1,38,19,9,7,129.6,1,0,1,1,0,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,139.0,1,38,38,7,5,133.4,0,0,1,1,1,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,4,9254,0,1,125.0,1,38,38,5,5,115.6,1,0,1,1,1,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,147.0,1,37,37,9,9,142.8,1,0,1,1,1,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,0 +1,1,1,9003,0,1,144.0,1,19,19,9,9,132.8,0,0,1,1,0,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,12,133.1,1,19,1,9,1,130.0,0,0,1,1,0,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,140.0,1,37,37,9,6,135.5,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,6,9254,0,1,102.0,1,3,1,2,2,101.7,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,133.1,1,19,38,5,5,131.8,1,0,0,1,1,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,1 +1,44,1,171,0,39,150.0,1,4,4,2,2,150.0,0,0,1,1,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,53,1,9254,0,42,110.0,1,1,1,4,7,111.8,1,0,1,1,1,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,121.0,1,19,38,6,6,116.1,1,0,1,1,0,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,1 +1,17,4,9773,0,1,127.0,1,1,19,4,1,115.8,1,0,1,1,1,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,37,37,9,7,160.0,1,0,1,0,0,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,15,170.0,1,34,1,90,2,101.0,0,0,1,1,1,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,125.0,1,3,3,3,3,116.6,1,0,1,0,1,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,2 +1,17,4,9070,0,1,117.0,1,1,1,3,3,125.4,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,146.0,1,19,37,7,7,133.8,1,0,1,1,1,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,142.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,1 +1,1,1,171,0,3,116.0,1,3,3,2,2,128.2,0,0,1,1,1,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,1 +1,1,2,9500,0,1,124.0,1,37,37,7,7,116.5,1,0,1,1,1,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,118.0,1,19,19,5,7,117.8,0,0,1,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,1 +1,18,3,9670,0,1,119.0,1,38,38,9,9,115.2,1,0,1,1,1,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,131.0,1,3,19,3,10,123.3,0,0,1,1,0,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,2 +1,17,1,9254,0,1,136.0,1,39,3,3,3,128.7,1,0,1,1,1,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,0 +1,18,1,9500,0,1,140.0,1,37,38,5,7,126.0,1,0,1,1,1,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +1,44,1,9119,0,39,150.0,1,19,3,5,2,150.0,0,0,1,1,0,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,2 +1,43,1,9773,0,1,137.0,1,38,37,9,5,127.9,1,0,1,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,119.9,0,0,1,1,1,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,2 +1,18,2,9773,0,1,132.0,24,37,19,9,7,119.1,1,0,1,1,1,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,43,1,8014,1,1,133.1,1,34,34,0,0,100.0,0,0,1,1,1,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,1,133.1,1,38,19,9,9,128.0,1,0,1,0,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,125.0,1,19,19,5,4,136.2,1,0,0,1,0,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,132.0,1,38,38,0,5,126.1,0,0,1,1,0,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9670,0,1,130.0,1,1,1,9,10,116.3,1,0,1,1,1,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,1 +1,1,3,9773,0,1,150.0,1,19,38,4,4,146.5,1,0,1,1,1,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,1 +4,39,2,8014,1,1,160.0,1,37,38,7,5,115.0,0,0,1,1,1,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,135.0,1,19,1,9,9,122.1,1,0,1,1,1,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,136.0,1,3,3,9,9,136.0,1,0,0,0,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,3,3,7,1,130.0,1,0,1,1,0,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,2 +1,39,1,9119,0,19,133.1,1,19,19,5,3,100.9,1,0,1,1,0,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,2 +1,17,1,9254,0,1,137.0,1,34,38,0,7,137.7,1,0,0,0,1,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +4,39,1,8014,1,19,133.1,1,37,37,90,7,110.0,0,0,1,0,1,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,144.0,1,38,37,9,9,125.8,0,0,1,1,1,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,1,4,9070,0,1,167.0,1,1,1,7,3,158.3,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,133.0,1,37,19,7,7,126.7,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,118.0,1,38,38,7,7,121.2,1,0,1,1,1,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,19,133.1,1,19,19,4,4,150.0,0,0,1,0,0,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,0 +1,17,2,9085,0,1,166.0,1,1,19,4,3,158.7,0,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,1 +1,44,1,9254,0,39,130.0,1,39,39,194,193,130.0,1,0,0,1,0,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,2 +1,17,1,9085,0,1,140.0,1,37,38,7,9,129.9,0,0,1,1,1,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,1 +1,7,1,9147,0,3,120.0,1,1,39,4,7,120.0,0,0,1,1,1,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,5,9254,0,1,118.0,1,19,37,5,5,120.5,1,0,1,1,0,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,0 +1,17,3,9070,0,1,120.0,1,3,1,4,4,116.9,1,0,1,1,1,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,1 +1,43,5,9238,0,1,101.0,24,37,19,9,7,119.9,1,0,0,0,1,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,128.0,1,19,1,4,3,117.2,1,0,1,1,1,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,1 +1,1,3,9254,0,1,118.0,1,1,19,9,9,111.7,1,0,1,1,1,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9773,0,1,137.0,1,37,37,0,90,134.2,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,144.0,1,3,39,2,3,129.0,1,0,1,1,1,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,0 +1,1,5,9147,0,1,125.0,1,37,38,7,7,122.2,1,0,1,1,1,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,2 +1,1,2,9500,0,1,147.0,1,3,1,4,3,136.7,0,0,1,1,1,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,1 +1,39,1,9085,0,39,120.0,1,37,37,1,9,137.7,1,0,1,0,0,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,160.0,1,1,37,9,9,146.0,1,0,1,1,1,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,2 +1,44,1,9238,0,39,130.0,1,1,19,4,5,127.4,0,0,0,0,0,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,3,1,2,4,154.9,0,0,0,0,0,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,0 +1,17,2,9670,0,1,129.0,1,19,19,5,4,129.4,0,0,1,1,1,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,137.0,1,3,19,3,5,136.3,1,0,1,1,1,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,1 +1,39,1,9991,1,1,100.0,1,37,37,9,6,153.5,0,0,0,0,0,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,134.0,1,38,38,7,9,132.8,1,0,1,1,1,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,137.0,1,37,37,7,9,130.8,1,0,1,1,1,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,133.1,1,37,37,1,1,97.0,0,0,1,1,0,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,143.0,1,3,38,2,10,129.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +2,39,1,9991,1,1,110.0,1,37,37,9,3,127.1,0,0,1,1,1,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,2 +2,7,1,9147,0,3,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,160.0,1,37,37,9,9,160.0,0,0,1,1,0,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,162.0,1,3,4,3,3,154.1,0,0,1,1,1,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,1 +1,1,2,9147,0,1,119.0,1,19,37,4,5,113.8,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,139.0,1,19,1,9,5,135.0,1,0,1,1,1,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,120.0,1,1,38,5,5,116.3,1,1,1,1,0,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,1 +1,17,2,9500,0,1,135.0,1,1,19,4,10,133.5,1,0,1,1,1,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,1 +1,1,3,9119,0,1,117.0,1,1,1,3,5,111.1,0,0,1,1,0,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,140.0,1,1,39,4,1,128.1,1,1,1,1,0,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9003,0,1,133.1,1,37,37,3,8,130.0,0,0,0,1,1,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,134.0,1,19,37,5,5,125.3,1,0,1,1,0,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,37,38,9,9,114.0,0,0,1,1,1,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,38,37,4,5,102.5,0,0,0,0,0,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,171,0,1,143.0,1,19,37,5,9,156.3,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,130.0,1,19,1,9,5,122.1,1,0,1,1,1,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,1 +1,39,2,8014,1,1,100.0,1,35,37,90,90,100.0,0,0,1,1,1,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +2,39,2,9670,0,1,100.0,1,37,37,9,9,110.0,0,0,1,1,0,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,2,9853,0,1,126.0,1,1,19,2,10,126.0,1,0,1,1,1,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,2 +1,18,3,9070,0,1,131.0,1,1,37,5,5,122.3,1,0,1,0,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,150.0,1,19,37,9,8,138.5,0,0,1,1,1,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,2,171,0,1,146.0,1,3,3,3,3,155.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9147,0,1,120.0,1,19,19,9,7,118.6,1,0,1,1,1,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,145.0,1,38,38,9,9,125.5,1,0,1,1,1,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,4,9070,0,1,143.0,1,1,1,9,7,134.6,1,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,0 +1,51,1,8014,1,1,121.0,1,1,38,5,7,112.3,0,0,1,1,1,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,130.0,1,37,1,9,8,120.2,1,0,1,1,0,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,1 +2,7,1,9254,0,2,100.0,1,37,37,9,9,100.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9119,0,1,130.0,1,37,3,9,3,137.0,1,0,1,1,0,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,1,0,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,140.0,1,38,37,7,7,105.2,0,0,1,1,0,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,131.0,1,1,19,4,7,135.9,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,108.0,1,19,38,9,7,110.5,1,0,1,1,1,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,111.0,1,1,38,5,9,107.5,0,0,1,1,0,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,1,9147,0,1,147.0,1,37,37,9,6,142.8,1,0,0,0,1,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,170.0,1,38,19,4,8,134.7,0,0,1,1,1,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,138.0,1,4,19,2,3,124.7,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,125.0,1,37,38,9,9,125.0,1,0,0,0,1,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,118.0,1,38,38,5,5,114.2,1,0,1,1,1,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,3,3,1,5,118.8,0,0,1,1,1,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,1 +1,1,3,9085,0,1,131.0,1,37,19,9,8,136.3,1,0,0,0,1,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,0 +1,43,1,9991,1,1,141.0,1,37,37,9,9,131.9,0,0,1,1,1,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,0 +1,42,1,9070,0,1,120.0,1,3,2,3,1,116.9,0,0,1,1,0,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,130.0,1,1,1,9,7,152.1,0,0,1,1,0,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,12,133.1,1,34,34,0,0,135.0,0,0,1,1,1,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,0 +1,17,2,9500,0,1,130.0,1,38,38,7,7,122.5,1,0,1,1,1,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,160.0,1,1,1,194,131,128.4,0,0,1,1,1,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,132.0,1,1,38,7,7,129.6,0,1,1,1,0,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,1,1,3,9,118.4,0,0,1,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,1 +1,1,2,9556,0,1,133.1,1,19,19,9,9,104.5,1,0,1,1,1,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,0 +1,53,1,9003,0,42,150.0,1,1,38,8,8,150.0,0,0,1,1,1,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,144.0,1,3,1,2,3,126.9,0,0,1,1,1,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,150.0,1,3,3,2,2,120.0,0,0,0,0,1,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,3,3,2,10,160.0,1,0,1,1,0,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,129.0,1,1,1,9,9,120.0,0,0,1,1,0,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,1 +4,39,1,9003,0,12,133.1,1,37,37,9,6,160.0,0,0,1,1,1,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,1 +2,39,2,9991,1,1,100.0,1,37,37,9,9,100.0,1,0,1,1,0,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,115.0,1,19,1,3,8,123.4,0,0,1,1,1,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,124.0,1,19,37,3,8,117.5,1,0,1,1,0,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,2 +1,1,6,9254,0,1,129.0,1,38,19,9,5,117.8,1,0,1,1,1,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,127.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,19,133.1,1,38,38,7,8,120.0,0,0,1,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,0 +6,39,2,9147,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,4,9500,0,1,148.0,1,3,19,4,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,39,150.0,1,1,3,4,1,150.0,0,0,1,1,0,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,0 +1,17,1,171,0,1,145.0,1,37,37,9,1,150.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,123.0,1,1,1,9,9,115.7,1,0,1,1,1,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,16,1,171,0,1,122.0,1,19,37,9,7,133.9,1,0,1,1,0,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,124.0,1,37,38,9,8,114.6,1,0,1,1,0,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,120.0,1,38,37,9,8,113.4,1,0,1,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,7,1,9991,1,40,140.0,1,37,37,6,6,140.0,0,0,1,1,1,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,1 +1,1,5,9670,0,1,133.1,1,9,1,2,4,133.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,100.0,1,19,19,4,4,113.0,0,0,1,1,0,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,2 +4,39,1,9003,0,1,133.1,1,19,19,9,4,100.7,0,0,1,1,1,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,2 +1,17,2,9147,0,1,133.1,1,38,38,4,7,109.0,1,0,1,1,0,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,2 +1,15,1,9238,0,1,140.0,26,19,19,9,6,140.0,0,0,1,1,0,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,1,3,9500,0,1,114.0,1,1,1,5,5,114.5,1,0,1,1,1,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,134.0,1,1,38,4,4,120.7,0,0,0,0,1,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,1,133.1,1,37,11,9,7,96.0,0,0,0,0,0,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,131.0,1,3,3,3,3,135.9,0,0,1,1,1,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,1 +1,43,2,9500,0,1,130.0,1,38,37,4,4,126.8,1,0,1,1,0,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,19,37,7,7,124.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9670,0,1,120.0,1,1,19,4,5,100.0,0,0,1,1,1,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,145.0,1,38,38,9,10,139.8,1,0,1,1,1,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,141.0,1,19,38,5,7,125.5,0,0,1,1,1,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,1 +5,39,1,9147,0,1,133.1,1,1,19,4,7,114.0,0,0,1,0,0,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9991,1,1,110.0,1,37,37,1,4,120.0,1,0,1,0,0,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,172.0,41,37,37,5,5,153.8,1,0,1,1,1,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,1 +1,17,1,9556,0,1,140.0,1,3,3,1,7,131.6,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,148.0,1,1,1,4,3,137.5,0,0,1,1,0,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,137.0,1,19,38,3,9,124.9,0,0,1,1,1,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,139.0,1,18,18,1,1,130.8,1,0,1,0,1,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,0 +1,17,1,9003,0,1,120.0,1,38,37,5,9,131.4,1,0,1,1,0,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,1 +1,53,1,9085,0,42,160.0,1,19,37,4,9,160.0,1,0,1,1,1,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,1 +1,18,1,9670,0,1,140.0,1,1,37,9,9,130.2,1,0,1,1,0,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,1 +1,43,1,9853,0,1,140.0,1,37,37,6,6,125.2,0,0,0,1,1,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,1 +1,1,4,9556,0,1,122.0,1,37,1,5,4,123.9,0,0,1,1,1,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,1,19,3,3,123.0,0,0,1,1,1,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,140.0,1,19,38,4,0,140.0,1,0,1,1,0,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,129.0,1,1,1,4,2,126.2,0,0,0,0,1,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,0 +2,17,3,8014,1,1,123.0,1,19,37,3,3,113.2,0,0,0,0,1,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,133.1,1,38,19,9,10,114.5,0,0,1,1,1,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,2 +1,51,1,9991,1,1,141.0,1,19,38,5,7,100.0,0,0,1,1,1,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,1 +1,17,2,171,0,1,131.0,1,2,1,3,3,148.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,39,1,9085,0,19,133.1,1,37,37,9,9,100.0,1,0,0,0,1,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,117.0,1,1,38,5,1,113.5,1,0,1,1,1,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,116.0,1,19,38,9,9,119.5,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,1,19,3,4,116.7,0,0,1,1,1,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,129.0,1,2,3,2,2,128.3,1,0,1,1,1,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,2 +1,1,3,9085,0,1,138.0,1,1,1,4,8,128.7,1,0,1,1,1,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,1,5,9147,0,1,118.0,1,19,19,9,9,114.2,1,0,1,1,0,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,133.0,1,3,19,2,8,126.7,0,0,1,1,1,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,2 +1,16,1,171,0,1,158.0,1,38,37,9,9,164.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,43,3,9500,0,1,126.0,1,38,37,6,5,124.3,1,0,1,1,1,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,123.0,1,38,38,9,5,124.8,0,0,1,0,1,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,2 +1,1,1,9130,0,1,160.0,1,3,3,3,2,155.1,1,0,1,1,1,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,1 +4,43,1,9500,0,1,130.0,1,37,37,9,9,103.7,0,0,1,1,1,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,2 +1,16,2,9238,0,1,133.0,1,19,38,4,5,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,130.0,1,38,37,9,9,124.8,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,135.0,1,37,1,7,7,132.8,1,0,1,1,1,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9119,0,1,128.0,1,1,38,4,7,100.0,0,0,1,1,0,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,2 +1,17,2,9085,0,1,120.0,1,1,1,9,10,115.0,0,0,1,0,1,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,0 +1,17,2,9070,0,1,142.0,1,3,1,2,4,141.0,1,0,1,1,0,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,2,9853,0,1,124.0,1,38,37,5,3,118.1,1,0,1,0,1,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,145.0,1,37,37,9,9,132.0,1,0,1,1,1,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,1 +1,39,1,9130,0,1,114.0,1,38,38,9,10,120.0,0,0,1,1,1,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,140.0,1,3,3,2,2,146.4,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,1 +1,1,5,9773,0,1,130.0,1,34,38,0,8,128.3,1,0,1,0,1,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,3,9670,0,1,110.0,1,19,1,4,4,107.5,1,0,1,1,1,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,135.0,1,37,37,5,5,126.3,1,1,1,1,1,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,1 +2,1,1,9254,0,1,140.0,1,19,38,4,7,133.0,0,0,1,1,0,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9254,0,1,150.0,1,37,37,9,9,115.0,0,0,1,1,0,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,1 +1,39,1,9070,0,1,130.0,1,1,1,5,3,112.0,1,0,1,1,0,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,1 +1,1,1,9070,0,1,110.0,1,1,37,9,9,105.1,1,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,131.0,1,37,37,9,7,118.4,0,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,0 +1,17,1,171,0,1,136.0,1,38,38,7,7,127.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9773,0,1,127.0,1,19,19,5,8,120.0,0,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,3,171,0,1,139.0,1,37,19,9,8,142.2,1,0,1,1,0,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,128.0,1,37,19,9,4,127.3,1,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,16,4,9773,0,1,109.0,1,37,37,9,3,137.0,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,1 +1,53,1,9085,0,42,130.0,1,19,1,9,9,130.0,1,0,0,0,1,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,2 +1,7,1,171,0,3,130.0,1,1,2,9,2,130.0,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,120.0,1,37,37,9,9,120.0,1,0,0,1,1,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,0 +1,2,1,9853,0,1,120.0,1,19,38,9,9,122.5,0,0,1,0,1,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,19,133.1,1,2,1,8,8,120.0,1,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,0 +1,43,1,9773,0,1,121.0,1,1,1,4,5,121.0,1,0,1,1,0,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,4,9147,0,1,120.0,1,38,19,9,9,111.3,1,0,1,1,1,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,38,19,5,0,141.8,0,0,1,1,1,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,131.0,1,1,1,7,4,127.2,1,0,0,1,0,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,11,9,10,131.5,0,0,1,1,1,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,3,19,2,3,125.7,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,1,2,9556,0,1,136.0,1,19,19,9,9,129.5,1,0,1,1,1,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,1 +1,42,1,9119,0,1,120.0,1,5,5,2,2,115.0,0,0,1,1,0,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,0 +1,17,6,9119,0,1,124.0,1,19,19,4,0,126.1,1,0,1,1,0,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,1 +1,1,1,9254,0,1,160.0,1,19,38,9,9,140.8,1,0,1,1,0,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,123.0,1,37,37,9,9,115.0,1,0,1,1,1,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,1 +2,39,2,9670,0,1,133.1,41,37,19,9,9,130.0,0,0,1,1,1,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9670,0,6,170.0,1,34,34,0,0,111.6,0,0,1,1,0,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,138.0,1,1,3,9,1,123.0,1,0,1,1,1,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,1,37,6,6,130.0,1,0,1,1,0,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,1 +1,17,2,9119,0,1,133.1,1,1,2,3,3,117.0,1,0,1,1,0,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,2 +1,1,5,9254,0,1,131.0,1,19,37,9,9,123.7,0,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,130.0,1,1,1,9,4,140.0,0,0,1,0,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9773,0,1,135.0,1,1,19,4,10,129.4,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,132.0,1,1,19,3,3,122.9,1,0,1,1,1,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,115.0,1,37,37,9,8,129.0,1,0,0,0,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,51,1,9238,0,1,160.0,1,3,19,2,1,116.1,0,0,0,1,1,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9003,0,12,133.1,1,37,1,9,10,130.0,0,0,1,1,0,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,129.0,1,37,38,4,9,121.0,1,0,1,1,1,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9119,0,1,130.0,1,38,19,7,3,119.9,1,0,0,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,133.1,1,37,37,9,9,100.2,1,0,1,0,1,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,4,38,4,5,140.0,1,0,1,1,1,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,2 +2,7,1,9991,1,43,140.0,1,40,5,3,3,140.0,0,0,1,1,1,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,1 +1,43,2,9670,0,1,129.0,1,3,3,5,5,122.4,1,0,1,1,1,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,2 +1,1,1,9238,0,1,116.0,1,38,38,9,6,116.4,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,44,1,9130,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,130.0,1,1,3,9,2,130.0,1,0,0,1,1,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,139.0,1,38,38,9,5,130.5,1,0,1,1,1,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,1 +1,42,1,9500,0,1,100.0,1,19,19,9,9,100.0,0,0,0,1,0,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,0 +1,7,1,9773,0,43,140.0,1,19,1,4,8,140.0,0,0,1,1,0,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9003,0,1,125.0,1,1,38,4,7,125.0,1,0,1,1,1,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,1 +1,39,2,9147,0,19,133.1,1,38,19,4,10,116.3,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,3,9500,0,1,132.0,1,37,37,4,3,127.3,1,0,1,1,1,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,127.0,1,1,37,4,8,121.1,1,0,1,1,0,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,1 +1,39,1,9670,0,1,140.0,1,37,37,6,6,120.0,0,0,1,1,1,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,133.0,1,37,37,9,5,139.2,1,0,0,1,0,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,140.0,1,19,19,1,4,133.3,1,0,1,1,1,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,120.0,1,3,3,2,2,112.0,0,0,1,1,1,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,2 +2,1,1,9147,0,1,137.0,1,19,37,9,9,124.4,0,0,1,1,1,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,130.0,1,38,38,9,3,145.6,0,0,1,1,0,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,6,9670,0,1,120.0,1,1,14,4,5,113.7,1,0,1,1,1,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,120.0,1,38,19,9,3,112.7,0,0,1,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,122.0,1,37,37,9,9,114.3,1,0,1,0,1,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,1,8014,1,1,133.1,1,3,1,1,7,100.0,0,0,1,1,1,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,4,19,3,5,123.7,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,4,4,4,2,120.0,1,0,1,1,0,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,2 +1,1,3,9238,0,1,137.0,1,1,1,3,3,131.4,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,1 +1,43,1,9130,0,1,130.0,1,1,1,1,1,130.0,1,0,1,1,0,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,2 +1,1,2,9773,0,1,121.0,1,1,19,9,7,118.9,1,0,1,1,1,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,133.1,1,19,38,9,8,128.2,1,0,1,1,0,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,2 +1,43,1,9070,0,1,134.0,1,19,37,7,7,132.7,1,0,1,1,0,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9147,0,1,125.0,1,1,38,7,7,120.1,0,0,0,1,0,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,129.0,1,37,37,9,9,117.1,1,0,1,1,1,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,145.0,1,38,38,5,7,138.0,1,0,1,1,1,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,120.0,105,1,1,9,9,119.0,1,0,0,0,1,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,131.0,1,1,19,9,9,127.0,0,0,1,1,0,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,100.0,1,38,19,6,10,112.8,0,0,1,1,1,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,2,9070,0,1,145.0,1,38,19,7,7,130.0,1,0,1,1,0,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,126.0,1,37,38,7,7,119.0,0,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,1 +1,1,2,9773,0,1,137.0,1,1,19,7,7,133.2,1,0,1,1,1,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,128.0,1,38,38,9,7,128.4,1,0,1,1,1,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,2 +1,44,1,9085,0,39,150.0,1,19,38,194,193,150.0,1,0,1,1,1,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,2 +1,1,4,171,0,1,146.0,1,1,1,9,5,151.3,1,0,1,1,1,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,1 +1,1,6,9147,0,1,139.0,1,19,12,4,4,125.0,1,0,1,1,1,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,1 +1,1,2,9254,0,1,136.0,1,1,1,9,4,123.4,1,0,1,1,1,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,5,9670,0,1,127.0,1,3,4,2,2,122.8,0,0,1,1,0,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,127.0,1,38,37,5,7,121.8,1,0,0,1,1,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,2 +1,39,1,9003,0,1,130.0,1,38,37,7,7,120.0,0,0,1,1,0,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,1 +1,1,2,9238,0,1,100.0,1,38,1,7,7,99.3,1,0,1,1,1,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9119,0,1,160.0,1,37,37,9,6,153.7,0,0,1,1,0,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,2 +1,17,4,9500,0,1,138.0,1,3,1,2,5,134.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,1 +1,17,4,9254,0,1,124.0,1,3,3,3,3,126.1,1,0,1,1,1,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,0 +2,7,1,9147,0,3,110.0,1,19,1,9,9,110.0,0,0,1,1,1,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,2 +1,1,1,9500,0,1,143.0,1,3,19,3,10,126.8,0,0,1,1,0,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,1 +1,17,2,9670,0,1,110.0,1,1,1,4,10,115.3,1,0,1,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,1 +1,51,1,9119,0,1,129.0,1,2,37,2,9,121.6,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,2 +1,15,1,9254,0,1,140.0,26,19,1,9,7,140.0,1,0,1,0,1,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,118.0,1,19,38,7,9,113.5,1,0,1,1,1,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,5,9853,0,1,110.0,1,19,37,7,7,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,2 +1,39,1,171,0,1,145.0,1,3,1,2,10,114.5,1,0,1,1,0,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,43,2,9670,0,1,125.0,1,38,19,4,3,106.6,1,0,1,1,1,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,0 +4,39,1,9500,0,19,133.1,1,37,37,5,7,100.0,0,0,1,0,1,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,133.0,1,1,1,9,9,119.7,1,1,0,1,0,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,1 +1,1,2,9853,0,1,134.0,1,1,38,9,8,122.5,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,120.0,1,19,37,3,9,100.0,0,0,1,1,1,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,37,37,6,6,100.0,0,0,0,0,0,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,160.0,1,38,38,6,6,160.0,1,0,1,1,1,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,19,133.1,1,37,37,9,7,116.0,0,0,1,1,1,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,1 +1,18,3,9500,0,1,145.0,1,1,1,4,8,133.6,1,0,1,1,1,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,3,19,2,3,124.5,0,0,1,1,1,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,125.0,1,19,38,9,8,118.3,0,0,1,1,0,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,0 +1,5,1,9085,0,1,150.0,1,1,1,4,4,139.4,0,0,1,1,1,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,2 +1,17,1,9773,0,1,133.1,1,38,38,9,5,117.0,0,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,2 +1,1,3,9500,0,1,142.0,1,1,1,4,7,131.0,1,0,1,1,1,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,1,19,3,3,154.3,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9147,0,1,135.0,1,37,38,9,9,128.0,1,0,0,1,1,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,149.0,1,37,37,9,9,138.0,0,0,1,1,0,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,38,9,9,129.2,1,0,1,1,1,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9556,0,1,147.0,1,3,4,3,2,100.0,0,0,1,1,1,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,2 +1,39,1,9085,0,12,133.1,1,37,37,10,9,144.0,0,0,1,1,0,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9254,0,1,100.0,1,3,19,3,5,115.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9670,0,1,140.0,1,1,1,4,3,133.4,0,0,1,1,0,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,2 +1,1,2,171,0,1,127.0,1,3,39,1,3,133.5,1,0,1,1,0,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9147,0,1,112.0,1,1,19,3,5,107.8,1,0,1,1,1,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,2 +2,39,1,9147,0,1,110.0,1,37,37,9,10,140.0,0,0,1,1,1,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,120.0,1,1,3,175,121,105.9,0,0,1,1,1,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,2 +1,1,1,9238,0,1,168.0,1,37,37,9,9,149.5,0,0,1,1,1,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,1 +1,17,1,8014,1,1,141.0,1,34,34,0,0,136.1,0,0,1,1,1,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,140.0,1,1,1,4,3,130.7,1,0,1,1,0,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,0 +1,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,134.0,1,1,37,8,7,120.5,1,0,1,1,0,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,160.0,1,1,38,4,7,141.5,1,0,1,1,0,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,122.0,1,38,37,191,195,112.9,1,0,1,1,1,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,41,1,1,9,7,163.1,1,0,1,0,1,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,1 +1,39,1,9500,0,1,110.0,1,1,37,9,9,126.0,1,0,1,1,0,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,2 +1,17,1,9670,0,1,109.0,1,1,1,4,4,108.0,0,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,131.0,2,37,1,9,3,126.1,1,0,1,1,0,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,1,2,9556,0,1,125.0,1,38,1,9,3,116.3,1,0,1,1,1,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,1 +1,17,1,9085,0,1,138.0,1,2,19,2,9,126.8,1,0,1,1,1,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,2 +1,1,5,9853,0,1,128.0,1,38,37,9,9,120.3,1,0,0,0,1,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,130.0,1,1,38,4,9,122.7,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,0 +1,39,1,9991,1,9,133.1,1,37,34,90,90,118.1,1,0,1,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,1,1,9085,0,1,125.0,1,1,19,4,9,114.5,1,0,1,1,1,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,1 +1,1,5,9773,0,1,138.0,1,19,19,9,9,139.4,1,0,1,1,1,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,125.0,1,19,38,3,5,115.9,0,0,1,1,1,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,1 +1,43,1,9500,0,1,134.0,1,38,19,5,8,120.7,0,0,1,1,1,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,133.1,41,3,1,3,10,100.0,1,0,1,0,1,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,0 +5,39,1,9003,0,1,133.1,1,37,37,9,7,110.0,0,0,0,0,1,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,0 +1,17,1,9254,0,1,128.0,1,19,1,5,7,120.7,1,0,0,1,1,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,162.0,1,19,19,4,7,152.9,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,51,1,9238,0,1,121.0,1,3,19,3,10,111.9,1,0,1,1,1,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,1 +1,39,2,9991,1,1,172.0,1,19,37,9,8,150.0,1,0,1,1,1,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,116.0,1,19,19,9,8,119.9,1,0,1,1,1,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,125.0,1,19,19,3,10,131.0,1,0,1,1,0,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,39,1,9500,0,4,150.0,1,3,38,3,7,127.0,1,0,1,1,0,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,128.0,1,38,38,9,9,129.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,120.0,1,3,19,4,5,115.5,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,38,38,9,6,160.0,1,0,1,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,130.0,1,3,1,2,9,130.0,1,0,1,1,1,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,140.0,1,1,19,4,8,124.6,1,0,1,1,1,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,150.0,1,3,3,2,2,150.0,1,0,1,1,1,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,1 +2,39,1,9853,0,1,133.1,1,37,19,9,5,138.3,0,0,1,1,1,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,0 +1,43,1,9991,1,1,150.0,1,3,3,4,4,100.0,1,0,1,1,0,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,1 +1,44,1,9238,0,1,150.0,1,1,38,4,9,145.9,0,0,1,1,1,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,1 +1,18,3,9500,0,1,131.0,1,19,1,4,7,127.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,1 +1,7,1,9085,0,3,150.0,1,19,37,90,90,140.0,0,0,1,1,0,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,167.0,1,19,19,9,7,156.2,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,140.0,1,1,3,4,5,130.0,0,0,1,1,0,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9238,0,1,132.0,1,1,19,4,9,127.1,1,0,1,1,1,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9119,0,1,133.0,1,3,1,3,4,121.8,1,0,1,1,0,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,2 +1,17,1,9670,0,1,133.1,1,1,37,4,5,150.0,0,0,1,1,0,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,150.0,103,37,37,9,9,134.6,0,0,1,1,0,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,1 +1,17,6,9773,0,1,131.0,1,34,34,0,0,129.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,139.0,1,3,1,4,1,126.0,1,0,1,1,0,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,0 +1,17,1,9670,0,1,138.0,1,1,1,4,8,123.0,0,0,0,0,0,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,2 +5,39,1,9853,0,19,133.1,1,37,37,9,8,118.0,0,0,1,1,1,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,142.0,1,37,38,9,9,137.3,1,0,1,1,1,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,136.0,1,3,38,2,9,125.7,1,0,1,1,1,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,1,1,4,10,128.3,1,0,1,1,1,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,132.0,1,1,37,4,9,127.1,0,0,1,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,122.0,1,19,19,7,7,116.1,1,0,1,1,1,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,1 +1,44,1,9085,0,1,140.0,1,1,2,3,3,140.0,0,0,1,1,1,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,2 +1,42,1,9853,0,12,133.1,1,1,3,3,2,133.7,0,0,1,1,1,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,0 +2,7,1,9500,0,3,120.0,1,37,19,9,7,120.0,1,0,1,1,1,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,2 +1,1,4,9238,0,1,134.0,1,38,19,7,7,128.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,130.0,1,19,38,4,7,121.3,1,0,1,1,1,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,1 +1,39,2,9238,0,1,110.0,1,19,1,5,5,136.5,0,0,1,1,0,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9670,0,1,133.1,1,38,19,9,8,122.9,0,0,0,0,0,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,124.0,1,19,1,9,3,123.7,1,0,1,1,1,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,17,1,9991,1,1,120.0,1,38,3,9,3,116.9,1,0,0,0,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,43,2,9147,0,1,160.0,1,37,37,9,9,96.0,0,0,1,0,1,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,154.0,1,19,37,9,7,140.4,1,0,1,1,1,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,2 +1,17,5,9070,0,1,125.0,1,19,1,5,5,122.6,1,0,1,1,0,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,2,9119,0,1,137.0,1,1,1,4,4,130.4,1,0,0,1,0,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,0 +1,1,1,9085,0,1,134.0,1,37,19,9,9,136.8,1,0,1,1,0,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,1 +1,39,1,9773,0,19,100.0,1,37,37,0,0,128.0,1,0,1,1,0,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +4,39,1,9130,0,19,133.1,1,37,38,9,4,100.9,0,0,1,1,0,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,127.0,1,1,19,5,7,130.5,1,0,1,1,1,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,1 +2,1,1,9003,0,1,131.0,1,19,38,5,5,118.4,0,0,1,1,1,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,142.0,1,1,38,5,7,127.7,0,0,1,1,1,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,130.0,1,1,38,4,9,115.0,0,0,1,1,0,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,100.0,0,0,1,1,1,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,1 +1,17,5,9773,0,1,134.0,1,1,19,9,5,121.8,1,0,1,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,1 +1,1,3,9853,0,1,122.0,1,1,3,5,3,113.6,0,0,1,1,1,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,114.0,1,37,37,7,8,116.7,0,0,1,1,0,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,130.0,1,3,1,3,3,120.5,0,0,1,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,148.0,1,19,19,4,5,143.5,0,0,1,1,1,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,19,9,9,107.0,0,0,1,0,0,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,130.0,1,3,19,5,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,39,1,9500,0,19,133.1,1,37,37,9,6,120.0,0,0,1,0,1,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,0 +1,1,2,9853,0,1,123.0,1,19,1,194,103,115.3,1,0,1,1,1,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,2 +1,18,1,9130,0,1,135.0,1,38,19,9,5,121.7,1,0,1,1,1,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,116.0,1,38,38,5,8,110.8,1,0,1,1,1,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,7,1,9147,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9991,1,1,133.1,41,37,37,9,8,114.7,0,0,1,1,1,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,122.0,1,37,37,9,7,120.6,1,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,150.0,1,5,5,2,2,146.2,0,0,1,1,1,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,0 +2,7,1,9147,0,3,130.0,1,1,4,3,10,130.0,0,0,1,1,1,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9085,0,19,110.0,1,37,37,90,90,110.0,0,0,1,0,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,140.0,1,1,1,9,9,136.9,1,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,44,1,9085,0,39,150.0,1,19,19,9,9,150.0,1,0,1,1,1,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,1 +2,43,1,9003,0,1,149.0,1,1,1,4,5,156.1,1,0,1,0,0,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9119,0,1,133.1,1,1,1,9,3,136.0,0,0,1,1,0,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,0 +1,16,2,9238,0,1,122.0,1,19,37,9,7,127.3,1,0,1,1,1,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,133.0,1,1,1,6,7,134.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,141.0,1,19,38,9,9,130.5,0,0,1,1,0,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,121.0,1,1,3,9,3,123.8,0,0,1,0,0,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,0 +1,44,1,9238,0,39,140.0,1,1,1,4,3,138.6,0,0,1,1,0,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,0 +1,1,1,9991,1,1,145.0,1,2,37,4,9,127.5,1,0,1,1,0,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,100.0,1,37,19,9,2,121.9,0,0,1,0,1,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,120.0,1,38,38,9,9,148.5,0,0,1,1,1,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +5,39,1,9991,1,1,110.0,1,1,1,3,3,119.0,0,0,1,1,0,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9254,0,1,137.0,1,1,38,2,8,122.3,1,0,1,1,0,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,42,1,9238,0,1,133.1,1,1,19,4,9,134.0,0,0,1,1,1,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,38,37,9,7,130.0,1,0,1,1,0,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,1 +5,7,1,9147,0,40,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,120.0,1,37,37,9,9,111.1,0,0,1,1,1,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,124.0,1,38,19,6,10,126.8,1,0,1,1,1,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,1 +2,1,1,9500,0,1,151.0,1,37,38,9,7,134.5,0,0,0,1,1,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,133.0,1,19,37,9,8,121.8,1,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,148.0,1,1,19,4,5,135.1,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,120.0,1,19,38,4,8,122.5,0,0,1,0,0,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,9070,0,1,140.0,1,37,37,9,10,118.0,0,0,0,1,0,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,3,133.1,1,9,9,90,90,130.0,0,0,1,1,1,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,150.0,1,34,34,0,0,108.0,0,0,1,1,1,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,1,150.0,1,1,38,3,5,120.0,0,0,1,1,0,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,2 +1,44,1,9085,0,39,150.0,1,38,1,5,5,150.0,0,0,1,1,1,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,2 +1,1,2,9238,0,1,133.1,1,19,19,9,9,106.0,1,0,1,1,1,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,102.0,1,38,38,9,9,99.6,1,0,1,1,1,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,140.0,1,38,19,9,5,130.0,0,0,0,1,1,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,2 +1,1,3,9773,0,1,138.0,1,3,1,2,3,135.9,1,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,1,9,4,150.0,1,0,1,1,0,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,0 +1,1,6,9147,0,1,127.0,1,1,19,1,6,120.0,1,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,0,0,1,1,0,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,137.0,1,38,38,4,8,126.5,1,0,1,1,1,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,1,19,4,4,132.6,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,130.0,1,1,1,4,9,150.0,0,0,1,1,0,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,146.0,1,3,1,1,3,149.2,1,0,1,1,1,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,129.0,1,38,38,6,6,118.5,1,0,1,1,1,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,131.0,1,19,3,3,2,126.1,1,0,1,1,1,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,2 +1,39,1,9085,0,43,160.0,1,3,39,2,3,172.0,0,0,1,1,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,39,1,9670,0,1,133.1,1,1,1,4,4,112.9,0,0,1,1,1,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,0 +2,39,1,9003,0,1,150.0,1,37,37,9,6,140.0,0,0,1,1,0,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,127.0,1,37,38,9,7,115.8,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,133.1,1,1,37,5,9,143.0,1,0,0,1,1,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,124.0,1,19,19,9,9,138.4,1,0,0,1,1,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,0 +1,1,1,9070,0,1,125.0,1,1,1,4,4,132.0,0,0,1,0,1,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,1,5,9130,0,1,160.0,1,3,1,2,9,150.2,1,0,1,1,1,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,1,110.0,1,37,37,9,4,160.0,0,0,1,1,1,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,135.0,1,19,37,5,7,121.4,0,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,2,9670,0,1,135.0,1,19,19,7,10,121.4,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,125.0,1,1,38,4,9,118.4,1,0,1,1,1,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,2 +1,1,6,9500,0,1,145.0,1,38,37,5,6,127.5,1,0,1,1,1,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,1 +1,43,3,171,0,1,140.0,1,37,38,7,7,143.4,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,134.0,1,37,19,9,10,141.4,1,0,1,1,1,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,130.0,1,29,38,9,8,122.0,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,109.0,1,19,19,4,9,104.1,1,0,0,0,1,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,116.0,1,34,34,0,0,127.0,1,0,1,1,0,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,3,8014,1,19,100.0,1,37,37,9,9,120.0,1,0,1,1,0,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9238,0,1,122.0,1,37,38,4,7,118.2,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,8014,1,1,100.0,1,12,5,9,4,116.5,0,0,0,0,1,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,122.0,1,19,19,193,194,112.6,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,42,3,9500,0,1,136.0,1,1,1,4,4,148.8,1,0,1,1,1,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,137.0,1,19,1,9,9,132.8,0,0,1,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,130.0,1,37,37,6,6,111.9,0,0,0,1,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9254,0,1,116.0,1,19,38,5,5,116.0,1,0,1,1,1,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,18,2,9500,0,1,131.0,1,1,3,3,2,121.2,1,0,1,1,1,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,141.0,1,1,19,3,3,131.9,1,0,1,1,1,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,120.0,1,37,37,9,10,122.6,0,0,1,1,1,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,0 +1,18,5,9119,0,1,136.0,1,3,2,2,3,125.2,1,0,1,1,0,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,125.0,1,19,1,7,4,122.6,0,0,1,1,0,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,139.0,1,19,37,9,9,131.5,1,0,1,1,1,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,1 +1,5,1,9853,0,1,119.0,1,1,38,5,8,118.3,1,0,1,1,1,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,2 +1,17,2,9773,0,1,125.0,1,1,38,5,6,115.9,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,126.0,1,1,19,4,8,120.1,1,0,1,1,1,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,1 +1,17,1,9085,0,1,125.0,1,1,37,4,9,117.0,1,0,1,1,1,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,135.0,1,19,38,7,5,121.0,0,0,1,1,1,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,138.0,1,38,37,3,3,133.1,0,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,148.0,1,19,37,9,5,130.9,0,0,1,0,0,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,145.0,1,12,1,4,10,139.8,1,0,1,1,1,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,118.0,1,37,37,3,5,110.0,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,51,1,9147,0,1,99.0,1,3,1,3,3,99.7,1,0,0,0,1,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,2 +1,17,2,9556,0,1,137.0,41,1,1,7,7,124.4,1,0,1,1,1,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,1 +1,17,3,9853,0,1,133.1,1,34,34,0,0,115.0,0,0,1,1,1,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,123.0,1,37,38,9,9,113.9,1,0,0,0,1,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,0 +1,1,4,9238,0,1,125.0,1,19,38,9,6,114.9,1,0,0,1,1,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,2 +1,18,1,8014,1,1,137.0,1,1,1,4,3,123.0,0,0,0,1,1,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,1 +1,43,1,8014,1,1,131.0,1,19,37,8,5,125.0,0,0,1,1,0,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9147,0,3,150.0,1,6,27,1,7,150.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,9,4,117.0,0,0,1,1,1,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,133.1,1,37,1,9,10,100.0,0,0,1,1,1,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,0 +1,1,3,9670,0,1,121.0,1,1,19,5,5,111.9,1,0,1,1,0,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,133.1,1,1,19,3,3,112.0,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,43,1,9991,1,1,140.0,1,1,1,6,6,100.0,0,0,1,1,0,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,1 +2,42,1,9556,0,1,110.0,1,37,37,9,6,140.0,0,0,1,1,0,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,130.0,1,1,1,4,4,124.8,0,0,1,1,1,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,138.0,1,38,37,9,6,126.8,1,0,1,1,0,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,1 +1,17,4,9773,0,1,127.0,1,2,37,9,9,115.8,1,0,0,0,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9085,0,1,170.0,1,1,1,4,5,166.6,0,0,0,0,1,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,130.0,1,1,1,4,4,130.0,1,1,1,1,0,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,3,1,2,8,100.0,1,0,1,1,0,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9670,0,1,106.0,1,3,1,2,3,105.7,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,43,1,9556,0,1,140.0,1,37,37,9,9,128.0,1,0,1,0,1,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,0 +1,1,1,9147,0,1,127.0,1,1,4,9,10,121.8,0,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,134.0,1,1,1,9,6,130.9,0,0,0,1,1,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,133.1,1,37,37,7,4,132.0,0,0,1,1,0,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,110.0,1,12,3,5,2,100.0,1,0,1,1,0,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,6,9238,0,1,113.0,1,1,38,194,163,112.3,1,0,0,1,1,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,118.0,1,19,19,5,7,121.2,0,0,1,1,0,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,51,1,9773,0,1,158.0,1,1,19,8,8,117.1,1,0,1,1,0,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,0 +1,17,1,9070,0,1,119.0,1,37,38,9,8,124.6,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,111.0,1,19,19,3,10,117.7,0,0,1,1,1,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,140.0,1,3,1,5,9,130.0,0,0,1,1,0,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,122.0,1,3,1,9,10,114.7,0,0,1,1,1,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,1 +2,39,1,9238,0,19,133.1,1,1,2,4,6,130.0,0,0,1,1,1,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,2 +1,17,2,9500,0,1,131.0,1,38,1,5,7,118.4,1,0,1,1,1,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,0 +1,43,5,9853,0,1,150.0,1,34,34,0,0,150.2,1,0,1,0,1,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,140.0,1,37,19,9,9,166.0,1,0,0,1,0,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9085,0,1,133.1,1,19,37,9,6,130.0,1,0,1,1,1,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,1 +1,1,4,9147,0,1,120.0,1,38,38,5,10,111.3,0,0,1,1,0,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,2 +1,1,5,9500,0,1,125.0,1,3,19,4,8,120.3,1,0,1,1,1,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,2 +1,17,2,9556,0,1,136.0,1,1,1,9,9,128.3,0,0,1,1,1,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,133.1,1,38,19,5,5,128.0,0,0,1,1,1,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,9,133.1,1,37,37,5,3,110.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9254,0,1,118.0,1,19,1,4,4,115.9,1,0,1,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,134.0,1,19,37,7,7,136.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,130.0,1,37,37,9,7,119.9,0,0,1,1,1,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9773,0,1,153.0,1,34,34,99,99,133.1,1,0,0,1,1,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,10,133.1,1,12,36,90,90,128.2,0,0,1,0,0,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,1,9991,1,1,112.0,1,43,40,2,2,106.4,0,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,122.0,1,3,3,2,2,122.0,1,0,1,1,1,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,137.0,1,1,19,4,3,121.3,1,0,1,1,0,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,1 +1,39,1,9085,0,19,133.1,1,3,1,2,5,103.0,0,0,1,1,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,136.0,1,1,19,9,9,131.5,0,0,1,1,1,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,154.0,1,1,3,4,2,164.9,0,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,1 +1,17,6,9147,0,1,129.0,1,19,1,9,4,122.0,1,0,1,1,0,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,132.0,1,19,19,9,7,128.0,1,0,1,1,0,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,1 +2,39,1,9773,0,19,133.1,1,19,19,9,4,131.0,0,0,0,0,0,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,0 +4,39,1,8014,1,1,160.0,1,37,37,5,5,126.0,0,0,1,1,1,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,1 +1,16,2,9238,0,1,126.0,1,38,37,3,5,127.1,1,0,1,1,1,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,1 +1,1,2,9254,0,1,111.0,1,1,19,5,7,109.3,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,1 +1,17,2,9556,0,1,133.1,1,37,37,3,10,108.0,0,0,1,1,1,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,1 +1,1,4,9773,0,1,140.0,22,1,37,3,9,130.5,1,0,1,1,1,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,1 +1,7,1,9500,0,3,140.0,1,1,1,9,5,140.0,0,0,1,1,1,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,0 +1,17,3,9670,0,1,125.0,1,1,3,4,3,117.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,150.0,1,37,38,9,9,131.5,1,0,1,1,1,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,5,100.0,0,0,1,0,0,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9773,0,1,133.0,1,19,19,7,7,134.4,1,0,1,1,0,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,135.0,1,19,37,9,9,128.0,1,0,1,1,1,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,5,9670,0,1,115.0,1,1,19,5,5,117.1,0,0,1,1,1,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,2 +1,51,1,9003,0,39,130.0,1,1,19,4,4,120.0,1,0,0,0,0,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,0 +1,1,3,9773,0,1,117.0,1,38,19,7,7,110.4,1,0,0,0,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9773,0,1,127.0,1,19,38,8,3,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,38,37,1,1,115.0,1,0,1,1,1,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,2 +1,18,2,9853,0,1,123.0,1,1,3,9,2,123.7,1,0,0,0,1,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,0 +1,1,3,9853,0,1,122.0,1,3,3,2,2,112.6,1,0,1,1,1,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,17,3,9254,0,1,127.0,1,37,37,9,6,123.5,1,0,1,1,1,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,141.0,1,37,37,9,9,136.3,1,0,1,1,0,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,1 +1,1,1,9773,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,17,2,9254,0,1,140.0,1,3,3,2,2,124.3,0,0,1,0,0,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,125.0,1,1,3,4,1,121.9,1,0,1,1,0,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,0 +1,17,1,9070,0,1,134.0,1,1,1,5,0,133.3,1,0,1,1,0,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9670,0,1,127.0,22,37,37,9,9,127.0,1,0,1,1,0,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,1 +1,42,1,9853,0,1,120.0,1,37,38,3,3,113.7,0,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,0 +1,1,3,9670,0,1,121.0,1,3,19,2,8,122.4,1,0,1,1,0,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,2 +1,1,3,171,0,1,139.0,1,19,19,5,3,128.2,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,42,1,9085,0,1,100.0,1,1,38,4,9,100.0,1,0,1,1,1,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,10,1,9500,0,1,140.0,24,3,3,2,9,140.0,1,0,0,0,1,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,0 +1,1,1,9773,0,1,132.0,1,37,19,9,9,131.0,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,124.0,1,1,1,4,4,127.9,1,0,1,1,0,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,2 +5,39,1,9119,0,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,2 +1,17,1,9773,0,1,117.0,1,38,38,9,9,111.1,0,0,0,1,0,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,19,133.1,1,19,37,9,9,149.4,0,0,1,0,0,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,1,1,161.9,0,0,1,1,0,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9147,0,1,140.0,1,38,37,4,7,130.0,1,0,1,0,1,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,43,1,171,0,1,145.0,1,19,38,9,9,100.0,0,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9773,0,1,120.0,1,37,38,9,3,155.5,0,0,1,1,0,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,121.8,0,0,1,0,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,7,1,9130,0,3,140.0,1,5,4,2,0,140.0,0,0,0,0,1,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,0 +1,51,1,171,0,1,128.0,1,2,1,3,3,131.2,1,0,1,1,0,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,1 +2,39,1,8014,1,12,110.0,1,37,37,7,9,120.0,0,0,1,1,1,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,150.0,1,2,3,3,2,140.8,0,0,1,1,1,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,2 +1,43,1,9070,0,1,125.0,1,19,19,7,8,133.4,1,0,1,1,0,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,2 +1,1,5,171,0,1,160.0,1,1,1,4,4,139.7,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,1,120.0,1,1,38,9,9,150.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,154.0,1,19,19,3,3,142.0,0,0,1,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9254,0,1,110.0,1,4,19,4,3,114.8,1,0,1,0,0,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9119,0,1,140.0,1,34,34,9,9,140.0,0,0,1,0,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,125.0,1,1,1,4,2,134.1,1,0,1,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,7,1,9254,0,40,130.0,1,1,1,3,6,130.0,0,0,1,1,1,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9254,0,1,122.0,1,37,37,9,3,124.5,1,0,1,1,1,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,130.0,1,1,3,9,2,128.6,1,0,1,1,1,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,1 +1,17,4,9670,0,1,122.0,1,3,1,2,3,119.6,1,0,1,1,0,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,1 +1,44,3,9085,0,39,150.0,1,1,19,4,1,150.0,1,0,1,1,1,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,19,37,9,9,130.0,1,0,1,1,0,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,133.1,1,38,19,4,7,98.0,1,0,1,1,0,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,2 +1,17,2,9556,0,1,125.0,1,38,19,7,7,121.5,1,0,1,1,1,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,0 +2,1,4,9500,0,1,143.0,1,38,38,5,5,128.7,1,0,1,1,1,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,1,100.0,1,1,19,4,8,122.0,0,0,1,1,1,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,1 +1,51,1,9500,0,1,170.0,1,1,1,4,10,125.0,0,0,1,1,0,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,1 +1,18,4,9500,0,1,137.0,1,3,1,3,4,126.7,1,0,1,1,1,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,19,133.1,1,38,38,9,8,106.0,1,0,1,1,0,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,1 +1,39,1,9991,1,40,130.0,1,19,1,3,4,152.0,1,0,1,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9085,0,39,140.0,1,1,39,3,9,140.0,1,0,1,1,1,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,2 +1,17,2,9773,0,1,133.1,1,3,1,4,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +2,43,1,9853,0,1,110.0,1,37,37,7,7,100.0,0,0,1,1,0,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,1 +1,7,1,9119,0,3,120.0,1,19,19,1,1,120.0,0,0,1,0,0,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,1,130.0,1,34,34,99,99,114.8,0,0,1,1,1,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,1 +2,39,1,8014,1,1,140.0,1,37,3,9,10,172.0,0,0,1,1,0,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,2 +1,17,2,9670,0,1,123.0,1,34,37,0,0,114.6,1,0,0,0,1,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,0 +1,43,2,9500,0,1,136.0,1,19,1,9,10,124.1,0,0,1,1,0,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,116.0,1,1,1,1,1,110.8,1,0,1,1,1,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,1 +1,39,1,9003,0,1,133.1,1,37,37,4,7,130.0,0,0,0,0,0,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,0 +1,1,3,9085,0,1,158.0,1,1,19,9,9,153.6,1,0,1,1,1,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,1 +1,17,4,9773,0,1,121.0,1,1,19,9,8,120.3,1,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,5,3,9085,0,1,141.0,1,1,19,7,5,128.8,1,0,1,1,1,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,2 +1,18,4,9556,0,1,127.0,1,1,38,4,7,121.8,1,0,1,1,1,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,37,37,9,9,109.0,1,0,1,1,1,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,110.0,1,34,34,0,0,114.6,1,0,1,1,1,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9085,0,1,128.0,1,38,19,8,8,117.2,0,0,1,1,0,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,143.0,1,1,38,3,3,133.2,1,0,1,1,1,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,1 +1,1,4,9853,0,1,134.0,1,19,1,5,9,127.4,1,0,1,1,1,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,2 +1,1,1,9670,0,1,133.1,1,3,1,1,7,155.0,0,0,1,1,1,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,114.0,1,19,38,9,7,129.1,0,0,1,1,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,149.0,1,19,37,7,4,134.3,0,1,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,130.0,1,1,38,3,5,128.6,1,0,1,1,0,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,1 +1,42,1,9147,0,1,139.0,1,3,38,2,5,112.3,1,0,1,1,1,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,2 +1,1,3,9773,0,1,130.0,1,19,19,9,9,123.0,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,43,1,9500,0,1,130.0,1,38,38,9,5,100.0,0,0,1,1,1,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,2 +6,39,1,8014,1,1,133.1,1,37,1,9,7,114.8,0,0,1,1,1,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,121.0,1,1,38,4,9,114.4,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,18,1,9238,0,1,122.0,1,38,38,9,7,114.7,0,0,0,1,1,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,1 +1,17,2,9773,0,1,120.0,1,1,1,2,5,127.0,1,0,1,0,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,39,120.0,1,4,1,2,8,120.0,0,0,1,1,0,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,1 +1,17,3,9500,0,1,143.0,1,38,1,9,5,133.8,1,0,1,1,1,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,130.0,1,1,19,9,7,133.8,0,0,0,1,1,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,1 +2,39,1,9556,0,1,100.0,1,37,37,9,9,120.0,0,0,1,1,1,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,133.1,1,1,19,5,4,102.5,0,0,1,1,1,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9003,0,1,111.0,1,1,3,4,2,162.4,0,0,0,0,0,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,133.1,1,19,1,9,3,107.0,1,0,1,1,1,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,128.0,1,19,1,4,4,124.3,1,0,1,1,0,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,140.0,1,36,14,9,10,130.0,1,0,1,1,0,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,150.0,1,38,19,7,10,134.6,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9070,0,1,134.0,1,34,1,5,7,129.8,1,0,1,1,1,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,150.0,1,37,37,9,3,150.0,1,0,1,1,0,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,0 +2,39,1,9238,0,1,126.6,1,38,38,9,7,107.5,0,0,0,1,1,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,120.0,1,37,37,9,7,106.8,0,0,1,1,1,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,1,9254,0,1,117.0,1,1,1,5,5,116.3,1,0,1,1,0,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,130.0,1,19,19,5,5,157.0,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9556,0,1,133.1,1,44,40,2,2,115.5,0,0,1,1,1,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,133.1,1,3,1,2,4,125.0,0,0,1,1,0,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,2 +2,39,1,9003,0,1,133.1,1,37,37,9,9,100.0,0,0,1,0,0,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,0 +1,17,2,9500,0,1,141.0,1,37,1,9,4,127.3,1,0,1,1,1,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,117.0,1,38,38,175,183,113.2,1,0,0,1,1,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,133.1,1,37,37,7,7,124.5,0,0,1,0,0,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,0 +1,17,2,9070,0,1,133.1,1,37,38,9,10,178.0,1,0,1,1,0,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,120.0,1,19,19,9,9,115.0,1,0,1,1,0,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9853,0,1,146.0,1,1,1,3,4,128.2,0,0,0,1,1,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,2 +1,17,4,9070,0,1,128.0,1,1,1,9,10,136.1,1,0,0,0,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,0 +5,39,1,9500,0,3,140.0,1,37,38,9,9,160.0,0,0,1,1,1,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,1 +1,39,1,8014,1,1,133.1,1,37,37,9,8,121.0,0,0,0,0,1,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,0 +1,43,1,9130,0,1,140.0,1,2,1,2,3,140.0,1,0,1,1,1,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,1 +1,1,3,9670,0,1,126.0,1,37,37,0,0,136.5,1,0,1,1,1,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,1 +1,17,4,9238,0,1,140.0,1,19,37,9,9,130.2,1,0,1,1,1,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,142.0,1,1,3,1,2,133.0,0,0,1,1,1,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,136.0,1,19,38,9,9,121.7,1,0,1,1,0,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,17,4,9085,0,1,106.0,1,37,1,3,9,106.0,0,0,1,1,1,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,2 +1,1,3,9500,0,1,135.0,1,1,37,7,7,120.5,1,0,1,1,1,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,115.0,1,19,19,7,7,115.0,1,0,1,1,1,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9238,0,1,160.0,1,38,1,9,3,124.0,0,0,0,1,0,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,2 +1,1,1,9500,0,1,129.0,1,38,38,5,5,120.8,1,0,1,1,1,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,160.0,41,37,19,9,9,160.0,0,0,1,1,1,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,132.0,1,1,19,7,5,129.9,1,0,1,1,0,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,136.0,1,37,38,9,8,139.2,1,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,127.0,1,19,37,9,7,121.3,1,0,1,1,1,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,1 +1,1,1,9119,0,1,142.0,1,1,38,4,3,129.8,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,133.1,1,37,37,5,8,133.2,0,0,1,0,0,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,0 +1,1,1,9147,0,1,150.0,1,1,19,5,5,137.8,1,0,1,1,0,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,135.0,1,3,1,2,4,129.8,1,0,1,1,0,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,1 +1,43,2,9773,0,1,132.0,1,19,19,0,0,127.1,0,0,1,1,0,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,1 +1,17,3,9500,0,1,140.0,1,3,2,3,3,126.4,1,0,1,1,1,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,0 +2,39,2,9119,0,19,133.1,1,37,37,7,7,118.0,0,0,1,0,0,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,110.0,1,3,4,2,2,110.0,1,0,1,1,0,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,0 +2,39,1,9500,0,38,133.1,1,37,37,9,3,146.6,0,0,1,1,0,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,146.0,1,1,3,4,1,135.2,1,0,1,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,3,5,2,2,135.8,0,0,0,1,0,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,0 +2,39,1,9773,0,19,100.0,1,37,37,0,0,163.5,0,0,0,0,0,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,124.0,1,19,19,9,7,113.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,143.0,1,3,3,9,7,129.0,1,0,1,1,0,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,1 +1,1,2,9853,0,1,117.0,1,1,38,4,9,109.7,1,0,1,1,1,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,2 +1,7,1,9130,0,2,133.1,6,42,1,4,9,100.0,0,0,1,1,0,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,115.8,0,0,0,0,0,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,0 +1,18,1,9773,0,1,167.0,1,38,38,6,7,153.0,1,0,1,1,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,51,1,9238,0,1,141.0,1,1,1,5,9,125.0,0,0,1,1,0,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,17,4,9500,0,1,132.0,1,38,19,5,7,125.5,0,0,1,1,1,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,1 +1,1,1,9119,0,1,132.0,1,1,12,3,3,133.1,1,0,1,1,0,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,149.0,1,1,1,4,4,129.3,1,0,1,1,0,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,1 +2,39,1,9147,0,1,130.0,1,37,37,9,9,142.5,0,0,1,1,1,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,2 +1,1,6,9773,0,1,133.1,1,1,37,3,3,100.0,1,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,138.0,1,37,37,9,6,145.0,1,0,1,1,1,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,19,19,3,6,124.3,1,0,1,1,1,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,135.0,1,37,37,9,7,132.6,1,0,1,1,1,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,159.0,1,34,26,0,6,160.1,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,1 +2,39,1,8014,1,1,133.1,1,37,37,6,8,100.0,0,0,0,1,1,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9070,0,1,153.0,1,3,3,1,2,146.7,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,1 +1,43,1,171,0,2,140.0,1,37,37,9,9,140.0,1,0,1,1,1,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,141.0,1,19,19,9,8,142.8,0,0,1,1,1,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,1 +1,39,2,9556,0,1,130.0,1,19,19,4,5,100.0,0,0,1,1,0,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,120.0,1,38,19,3,5,120.0,0,0,1,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,2 +1,39,2,9147,0,1,120.0,1,37,37,9,9,104.0,0,0,1,0,0,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9085,0,1,150.0,1,38,38,9,9,132.0,1,0,1,1,1,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,142.0,1,38,38,9,9,132.9,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9085,0,1,160.0,1,4,19,2,5,162.1,1,0,1,1,1,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,141.0,1,37,37,9,8,130.2,1,0,1,1,1,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,118.0,1,1,1,9,9,111.0,0,0,1,0,0,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,119.0,1,37,37,10,6,119.7,1,0,1,1,1,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,2 +1,17,2,171,0,1,137.0,1,1,1,4,1,143.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,18,3,9085,0,1,149.0,103,1,1,9,9,132.2,1,0,1,1,1,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,130.0,1,37,37,90,90,125.1,0,0,1,1,1,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,1 +4,17,5,8014,1,1,100.0,1,19,19,90,90,107.0,0,0,1,1,1,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,19,133.1,1,38,19,9,10,142.7,0,0,0,1,0,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,139.0,1,19,37,5,5,125.5,0,0,1,1,1,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,133.0,1,4,1,5,5,131.6,0,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,148.0,1,19,19,9,3,125.0,1,0,1,1,1,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,110.0,1,37,37,9,9,110.3,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,53,1,9003,0,42,130.0,1,38,38,9,9,130.0,1,0,0,1,0,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,2 +1,1,4,9070,0,1,140.0,1,4,19,2,10,125.0,1,0,1,1,0,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,2 +1,42,1,9003,0,39,140.0,1,19,1,5,5,140.0,0,0,1,1,1,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,2 +1,1,4,9070,0,1,136.0,1,37,37,9,8,136.7,1,0,1,1,1,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,1,5,9773,0,1,125.0,1,37,3,5,2,126.1,1,0,1,1,0,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,8014,1,1,126.0,1,37,38,9,10,119.4,0,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,123.0,1,1,3,2,2,118.8,0,0,1,1,0,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,2 +1,1,6,9500,0,1,144.0,1,1,37,9,9,127.5,1,0,1,1,1,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,1 +1,43,1,9070,0,1,125.0,1,38,37,8,7,131.7,1,0,1,1,0,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,144.0,1,37,37,8,8,138.4,0,0,1,1,1,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,160.0,1,37,37,3,4,97.0,0,0,1,1,1,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9853,0,1,119.0,1,37,38,9,9,125.0,1,0,1,1,1,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,117.0,1,37,37,9,9,109.3,0,0,1,0,1,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,3,130.0,1,37,37,9,9,146.2,0,0,1,1,1,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,150.0,1,37,37,9,9,130.3,0,0,1,1,1,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,1 +2,39,2,8014,1,19,100.0,1,37,37,4,7,100.0,0,0,0,1,1,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,39,1,8014,1,38,133.1,1,38,37,4,8,95.5,0,0,1,1,0,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,120.7,0,0,1,1,1,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,1 +1,39,1,9119,0,19,120.0,1,37,37,9,4,98.6,0,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9130,0,1,120.0,1,19,37,1,9,116.1,1,0,1,1,0,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9500,0,1,136.0,1,1,1,4,9,128.5,1,0,1,1,1,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,132.0,1,38,37,7,7,131.3,1,0,1,1,1,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,2 +1,1,2,9500,0,1,115.0,1,38,38,9,8,108.4,1,0,1,1,1,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,120.0,1,37,37,9,9,98.7,0,0,1,1,0,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,120.0,1,37,37,9,9,155.8,0,0,1,1,0,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,151.0,1,19,1,5,0,144.4,1,0,1,1,1,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,1 +1,43,2,9147,0,1,131.0,1,19,37,5,9,123.7,1,0,1,1,1,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,2 +1,17,4,9085,0,1,128.0,1,38,37,4,9,117.9,1,0,1,1,1,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,1 +1,43,1,8014,1,12,133.1,1,37,1,9,10,112.5,0,0,1,1,0,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,0 +1,39,1,9085,0,19,133.1,1,37,37,4,8,140.0,0,0,1,1,1,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,7,1,9147,0,2,150.0,1,3,37,2,5,150.0,1,0,0,0,1,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,18,2,9147,0,1,102.0,1,37,38,191,143,101.7,1,0,1,1,1,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,128.0,1,19,1,4,1,118.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,0 +2,39,1,8014,1,1,133.1,1,19,1,4,8,144.3,0,0,1,1,0,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,1 +1,1,5,9254,0,1,128.0,1,19,1,7,10,116.5,1,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,140.0,1,19,19,7,5,135.1,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,1 +1,18,2,9500,0,1,129.0,1,38,37,5,5,119.0,1,0,1,1,1,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,140.0,1,3,1,3,3,131.5,1,0,1,1,1,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,143.0,1,3,3,2,5,144.8,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,127.0,1,37,37,9,8,123.2,1,0,1,1,1,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,2 +1,43,1,9500,0,1,125.0,1,37,37,9,7,123.6,1,0,1,1,1,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,138.0,1,1,38,3,9,123.0,1,0,1,1,1,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,139.0,1,38,38,9,9,145.0,1,0,1,1,1,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,121.0,1,37,19,6,7,116.8,1,0,1,1,1,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,2,9085,0,1,123.0,1,1,19,4,9,113.6,1,0,1,1,1,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,2 +1,17,6,9773,0,1,126.0,1,1,19,5,5,119.0,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,4,9119,0,1,139.0,1,37,19,9,4,133.1,1,0,1,1,0,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,2 +1,1,1,9147,0,1,158.0,1,1,38,3,6,155.2,0,0,1,1,0,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,1 +1,17,2,8014,1,1,133.1,1,19,1,1,1,118.0,0,0,1,1,1,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,136.0,1,22,30,0,8,135.7,1,0,1,1,1,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,120.0,1,37,37,9,9,110.0,0,0,1,0,0,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,124.0,1,19,19,7,9,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,2 +5,7,1,9991,1,2,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,1 +1,1,4,9238,0,1,123.0,1,38,1,4,10,129.0,1,0,1,1,1,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,17,4,9119,0,1,135.0,1,38,37,5,7,126.6,1,0,1,1,0,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,2 +1,1,3,9070,0,1,129.0,1,5,3,5,7,124.8,1,0,1,1,1,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,1 +1,17,5,9147,0,1,127.0,1,1,38,4,5,124.6,1,0,1,1,1,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,135.0,1,1,1,4,4,118.5,0,0,1,1,1,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,171,0,1,142.0,1,3,1,2,6,139.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +5,39,1,9147,0,1,133.1,1,19,19,9,9,119.8,0,0,1,1,0,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,123.0,1,1,37,9,9,132.1,0,0,1,1,1,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,1 +1,43,1,9853,0,1,115.0,1,3,37,2,5,108.7,1,0,1,1,1,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,12,133.1,1,37,34,90,90,110.7,1,0,1,1,1,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,155.0,1,4,3,1,1,144.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,4,9254,0,1,105.0,1,1,19,9,6,106.1,1,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,150.0,1,19,19,3,4,135.0,0,0,1,1,1,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,152.0,1,37,37,5,7,136.3,0,0,1,1,1,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,34,34,0,0,120.5,1,0,1,1,0,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,140.0,1,1,37,4,5,123.6,1,0,1,1,1,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,120.0,1,37,37,9,9,150.1,1,0,1,1,0,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,144.0,1,37,38,9,9,126.9,0,0,1,1,1,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,120.0,1,37,37,9,9,128.2,0,0,1,0,0,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,0 +1,18,2,9147,0,1,115.0,1,1,37,5,5,108.7,1,0,1,1,1,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,140.0,1,19,19,4,4,140.0,1,0,1,0,0,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,1,1,3,7,140.0,1,0,1,1,1,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9500,0,1,129.0,1,19,19,5,5,119.6,1,0,1,1,1,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,1 +1,17,6,9773,0,1,141.0,1,37,37,5,5,127.7,1,0,1,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,137.0,1,19,37,4,7,126.3,1,0,1,1,1,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,1 +2,39,1,9003,0,1,168.0,1,1,41,9,3,153.9,0,0,0,0,0,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,133.0,1,37,37,9,9,121.8,1,0,1,1,1,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,119.0,1,2,1,4,3,113.1,1,0,1,1,1,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,43,1,9147,0,1,142.0,1,38,19,141,171,115.0,0,0,1,1,1,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,2 +1,17,4,9773,0,1,138.0,1,37,19,5,7,133.5,1,0,1,0,1,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +2,7,1,8014,1,3,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,133.0,1,3,19,2,5,130.8,1,0,1,1,1,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,137.0,1,38,19,152,171,131.1,1,0,1,1,1,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,3,9119,0,1,130.0,1,1,38,3,3,129.3,0,0,1,1,0,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,1 +1,43,1,9773,0,1,126.0,1,1,37,3,0,110.0,0,0,0,1,1,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,116.0,1,1,12,5,8,110.4,1,0,1,1,0,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,1,1,4,10,110.0,0,0,0,1,1,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,17,5,9238,0,1,134.0,1,38,37,9,9,126.0,0,0,0,0,1,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,0 +2,39,1,9147,0,1,130.0,1,1,19,9,9,109.9,0,0,1,0,1,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9085,0,1,133.1,41,37,37,9,9,109.6,0,0,1,1,1,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,0 +1,44,1,9003,0,39,140.0,1,37,37,9,1,140.0,0,0,1,1,0,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,2 +2,39,1,9991,1,19,133.1,1,38,38,90,90,121.7,1,0,1,1,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,143.0,1,1,3,4,7,129.7,1,0,1,1,1,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,133.0,1,1,19,9,6,121.5,1,0,1,1,1,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,1 +1,17,1,9003,0,1,133.0,1,38,37,9,9,125.3,1,0,1,1,1,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,1 +1,42,1,9991,1,1,160.0,1,1,2,4,3,120.0,0,0,1,1,1,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,1 +2,39,2,9556,0,1,133.1,105,1,3,9,2,152.8,1,0,1,1,1,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,123.0,1,1,1,4,6,118.8,1,0,1,1,1,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9853,0,1,122.0,1,3,19,2,3,112.9,0,0,1,1,1,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,1 +1,1,5,9853,0,1,123.0,1,1,12,4,9,113.2,1,0,1,1,1,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,140.0,1,37,37,9,9,141.5,1,0,0,0,1,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,129.0,1,19,19,4,8,127.3,1,0,1,1,1,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,1 +1,39,1,9085,0,1,130.0,1,37,37,6,6,110.0,0,0,1,1,1,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,2 +4,39,1,8014,1,19,133.1,1,37,37,9,9,95.0,0,0,0,0,1,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9853,0,1,127.0,1,37,19,9,8,137.5,1,0,1,1,1,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,1 +1,1,5,9500,0,1,142.0,1,38,37,5,7,128.8,1,0,1,1,1,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,1 +1,17,2,9147,0,1,142.0,1,19,19,4,8,127.3,0,0,1,1,1,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +3,39,1,9991,1,1,120.0,1,37,1,9,2,170.0,0,0,1,1,0,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,138.0,1,19,37,4,9,141.0,0,0,1,1,0,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,132.0,1,1,38,9,9,120.1,1,0,1,1,0,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,140.0,1,1,1,2,7,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,121.0,1,37,19,9,10,113.7,0,0,1,1,1,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,2 +1,39,1,8014,1,38,133.1,1,1,1,4,4,107.5,0,0,0,0,0,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,150.0,1,1,1,5,1,155.6,0,0,1,1,1,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,150.0,1,37,37,9,6,131.1,0,0,1,1,1,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,100.0,1,3,19,1,1,117.9,0,0,1,0,0,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,39,2,9991,1,1,150.0,1,37,37,9,9,120.0,0,0,1,1,1,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,150.0,1,1,38,4,9,150.0,0,0,1,1,0,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,2 +2,43,1,9130,0,9,133.1,1,34,34,0,0,128.2,0,0,1,1,0,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,141.0,1,1,1,90,3,127.8,0,0,1,1,1,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,0 +1,1,1,9070,0,1,116.0,1,3,3,0,1,108.7,1,0,1,1,0,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,0 +2,39,1,9500,0,1,140.0,1,19,19,9,7,110.5,0,0,1,1,1,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9254,0,19,133.1,1,34,34,0,0,120.0,0,0,0,0,0,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,1,133.1,1,37,37,191,172,115.2,0,0,1,1,1,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,37,38,9,6,160.0,0,0,1,1,1,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,133.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9556,0,1,131.0,1,19,38,9,7,128.5,0,0,1,1,1,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,160.0,1,37,38,9,7,161.0,1,0,1,1,1,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,136.0,1,3,3,1,2,152.5,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9853,0,1,114.0,1,19,37,5,5,109.5,1,0,1,1,1,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,150.0,1,37,37,9,7,122.5,0,0,1,1,0,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,0 +1,44,1,9991,1,39,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,2 +1,51,1,8014,1,42,140.0,1,19,37,134,193,138.0,1,0,0,1,1,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,127.0,1,2,19,3,9,121.5,0,0,1,1,0,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,133.1,1,19,19,3,3,125.3,0,1,1,1,0,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,4,9670,0,1,125.0,1,4,19,2,5,118.0,1,0,1,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,1 +2,42,1,9070,0,1,170.0,1,37,25,0,4,148.5,0,0,1,1,0,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,0 +1,17,5,9254,0,1,121.0,1,1,19,4,7,116.5,1,0,1,0,0,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,120.0,1,19,38,5,9,130.2,0,0,1,1,1,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,140.0,1,19,37,9,9,140.7,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,140.0,1,19,19,5,9,131.3,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,42,1,9119,0,1,140.0,1,3,3,3,2,133.6,1,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,8014,1,1,150.0,1,19,2,4,6,148.0,0,0,1,1,1,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,127.0,1,37,2,9,4,123.2,1,0,1,1,1,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,119.0,1,19,37,9,9,119.4,1,0,1,1,1,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,132.0,1,2,1,4,1,127.8,0,0,1,1,0,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,0 +1,42,1,9119,0,1,136.0,1,1,37,5,5,117.5,0,0,1,1,0,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,2 +1,1,1,9991,1,1,122.0,1,37,37,9,3,113.6,0,0,1,1,0,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,19,19,5,6,137.4,0,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,2 +1,17,1,9238,0,1,128.0,1,19,19,5,4,116.5,0,0,1,1,1,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,139.0,1,1,38,6,6,143.6,1,0,0,1,0,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9130,0,1,154.0,1,3,3,2,2,137.2,1,0,0,1,0,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,0 +1,17,6,9500,0,1,142.0,1,19,37,4,9,131.9,1,0,1,1,1,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,0 +1,1,2,9773,0,1,131.0,1,19,37,9,10,121.9,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +2,7,1,9130,0,3,120.0,1,3,3,1,1,128.2,0,0,1,1,1,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,19,133.1,1,37,37,9,9,150.3,0,0,1,1,1,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,125.0,1,37,37,5,5,124.0,0,0,1,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,135.0,1,37,19,9,9,125.2,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,135.0,1,19,19,9,9,124.5,0,0,1,1,1,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,175.0,1,3,38,2,10,157.5,1,0,1,1,1,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,139.0,1,1,1,4,10,140.7,0,0,1,1,0,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,0 +1,1,4,9500,0,1,128.0,1,1,1,4,10,125.2,1,0,1,1,0,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,150.0,1,1,37,1,1,131.5,1,0,1,1,1,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,168.0,1,38,1,9,10,166.0,1,0,1,1,1,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,1 +1,51,1,9070,0,1,125.0,1,42,3,125,124,130.0,1,0,1,1,0,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,135.0,1,1,38,4,5,127.5,1,0,1,1,1,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,1 +1,18,1,9119,0,1,148.0,1,3,19,3,5,147.7,0,0,1,1,0,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9773,0,1,130.0,109,19,1,9,9,126.9,1,0,1,1,1,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,125.0,1,19,38,3,7,114.9,0,0,1,1,1,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,1 +1,7,1,9119,0,3,130.0,1,37,37,9,9,130.0,0,0,1,0,0,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9853,0,1,130.0,1,37,19,7,3,140.0,0,0,0,1,1,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,112.0,1,3,1,3,5,111.0,0,0,1,1,1,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,37,38,193,181,125.9,0,0,1,1,1,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,1 +1,42,1,9119,0,1,120.0,1,34,34,0,0,128.2,1,0,1,1,0,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,19,133.1,1,37,37,9,9,117.2,0,0,1,1,1,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9147,0,1,131.0,1,19,38,9,7,132.4,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,2 +5,39,1,9003,0,1,180.0,1,1,1,4,8,179.6,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,1,5,9119,0,1,135.0,1,37,37,90,90,122.1,1,0,1,1,0,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,133.0,1,1,38,5,10,131.3,1,0,1,1,1,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,2 +1,18,1,9500,0,1,126.0,1,37,19,5,5,119.3,0,0,1,1,1,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,110.0,1,19,37,9,6,120.0,0,0,0,0,0,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9556,0,1,130.0,1,37,37,9,9,159.0,1,0,1,1,1,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,2 +1,17,1,9070,0,1,141.0,1,19,38,4,5,133.7,1,0,1,1,0,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,150.0,1,1,37,4,6,120.0,0,0,1,1,0,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,17,2,9085,0,1,123.0,1,3,19,2,9,118.9,0,0,1,1,0,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,17,1,9991,1,1,140.0,1,38,37,6,7,127.3,0,0,1,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,151.0,1,3,1,2,1,129.8,1,0,1,1,0,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,1 +1,43,1,8014,1,1,113.0,1,37,37,0,6,128.2,0,0,1,0,1,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9070,0,1,117.0,1,1,37,4,7,127.9,1,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,145.0,1,19,19,9,7,136.6,0,0,1,1,1,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.0,1,34,37,4,9,134.4,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,9238,0,39,130.0,1,38,38,5,10,126.7,0,0,0,1,1,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,1 +1,17,1,9773,0,1,122.0,1,1,1,4,7,116.8,1,0,0,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,3,9147,0,1,124.0,1,1,1,5,3,116.7,1,0,1,1,0,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,38,1,9,4,123.2,0,0,1,1,1,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,2 +1,39,1,9556,0,40,130.0,1,1,1,4,5,145.0,0,0,1,1,1,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,2 +1,43,1,9147,0,1,127.0,25,1,5,9,10,124.2,1,0,1,1,0,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,2 +2,43,1,9670,0,1,120.0,1,34,34,0,0,128.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,0 +1,18,1,9238,0,1,122.0,1,1,3,9,2,112.6,1,0,1,1,0,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,122.0,1,1,1,4,4,119.6,1,0,1,1,1,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,2 +1,17,5,9670,0,1,125.0,1,1,19,9,7,119.4,1,0,1,1,1,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,146.0,1,19,37,9,7,153.0,1,0,1,1,1,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,108.0,1,38,38,7,7,115.0,1,0,0,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,133.1,1,1,1,3,9,138.0,1,0,1,1,1,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,140.0,1,37,37,9,5,140.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,19,133.1,1,2,1,2,4,100.0,0,0,1,1,0,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9147,0,1,129.0,1,38,37,3,5,132.9,1,0,1,1,1,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,149.0,1,3,2,2,5,151.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,135.0,1,19,4,9,2,143.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9147,0,1,158.0,1,19,37,9,7,130.0,1,0,1,1,1,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,1 +1,17,6,9556,0,1,122.0,1,1,1,4,5,117.1,1,0,1,1,1,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9556,0,12,133.1,1,34,34,99,99,100.5,0,0,1,1,1,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,9003,0,1,123.0,1,37,37,9,9,110.0,0,0,0,0,1,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,138.0,1,3,3,2,2,127.5,1,0,1,1,1,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,1 +1,43,1,9500,0,1,121.0,1,38,19,5,5,115.4,1,0,1,1,1,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,2 +1,17,4,9147,0,1,114.0,1,19,19,4,4,109.5,1,0,1,1,0,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,1 +1,17,1,9254,0,1,148.0,1,1,1,4,8,145.2,0,0,1,1,0,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,121.0,1,1,1,4,4,123.1,1,0,1,1,0,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,150.0,1,3,3,2,5,154.6,1,0,1,1,1,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,151.0,1,19,38,9,9,157.0,1,0,0,1,1,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,101.0,0,0,1,1,1,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,1 +1,1,2,9254,0,1,127.0,1,3,19,3,10,130.9,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,146.0,1,1,1,9,8,149.5,1,0,1,1,0,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9130,0,6,133.1,1,1,29,4,90,123.3,1,0,1,1,1,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,3,3,7,146.5,1,0,0,1,0,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,2 +1,7,1,8014,1,40,120.0,1,37,19,9,3,120.0,0,0,1,1,1,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9853,0,1,125.0,1,37,37,9,9,114.9,1,0,0,0,1,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,0 +1,1,2,9773,0,1,140.0,1,1,1,4,3,131.6,0,0,1,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,142.0,1,1,19,9,9,136.1,0,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,113.0,1,1,1,4,4,106.7,1,0,1,1,1,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,130.0,1,1,2,4,2,130.0,0,0,1,1,0,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,39,1,9119,0,1,130.0,1,19,37,9,9,134.0,0,0,1,1,0,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,2 +1,18,1,9500,0,1,123.0,1,37,37,3,3,118.0,1,0,1,1,1,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,1 +1,10,2,9085,0,1,163.3,22,19,1,4,9,163.3,0,0,1,1,1,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,135.0,1,19,19,9,5,135.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,136.0,1,4,5,2,2,126.2,0,0,1,1,0,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,44,1,9130,0,39,150.0,1,1,37,4,8,150.0,1,0,1,0,1,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9085,0,3,140.0,1,19,20,4,90,140.0,1,0,1,1,1,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,43,1,9070,0,1,135.0,1,1,38,3,9,126.4,1,0,1,1,1,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,140.0,1,19,38,7,8,129.9,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,133.1,1,1,1,9,9,155.0,0,0,1,1,1,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,17,5,9773,0,1,122.0,1,38,38,7,7,123.1,1,0,1,0,1,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9130,0,1,117.0,1,1,1,9,9,109.3,1,0,1,1,1,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9500,0,1,130.0,1,1,38,9,9,125.1,1,0,1,1,1,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,2 +1,1,2,9773,0,1,144.0,1,3,3,3,2,140.2,1,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,145.0,1,1,1,4,10,145.0,0,0,1,1,1,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,0 +1,51,1,9070,0,1,143.0,1,1,1,4,4,120.0,1,0,1,1,1,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,0 +1,17,1,9773,0,1,145.0,1,1,38,90,8,132.8,1,0,1,0,0,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9556,0,1,120.0,1,38,38,191,193,120.0,0,0,0,1,1,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,148.0,1,19,1,7,5,138.3,1,0,1,1,0,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,146.0,1,3,3,3,6,133.4,1,0,1,1,1,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,1 +1,17,1,9130,0,1,131.0,1,12,12,2,8,128.2,1,0,1,1,0,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,6,9556,0,1,115.0,1,19,2,5,3,112.2,1,0,1,1,1,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,1 +1,43,1,9556,0,1,126.0,1,2,3,3,2,100.0,0,0,1,1,1,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,2 +1,17,1,9238,0,1,120.0,1,19,37,9,9,113.0,1,0,1,1,1,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,132.0,1,19,38,5,5,118.0,1,0,1,1,1,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,1 +2,1,1,9238,0,1,145.0,1,37,34,9,7,139.4,0,0,1,0,1,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,131.0,1,38,38,191,174,125.4,1,0,1,1,1,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,1 +2,39,1,9119,0,1,120.0,1,37,38,9,10,145.4,0,0,0,1,0,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,0 +1,1,1,9130,0,1,138.0,1,4,5,2,2,123.0,1,0,1,1,1,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,127.0,1,5,3,4,4,122.8,1,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,136.0,1,1,1,4,4,127.0,1,0,1,1,1,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,2 +1,17,3,9119,0,1,115.0,1,3,1,3,3,116.1,1,0,1,0,0,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,143.0,1,38,37,4,9,116.5,1,0,1,1,1,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,3,19,3,8,134.9,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,1 +1,44,1,9119,0,39,140.0,1,5,41,3,2,140.0,0,0,1,1,0,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,124.0,1,19,19,9,3,115.6,1,0,1,0,0,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,0 +1,7,1,9500,0,3,130.0,1,19,38,5,3,130.0,0,0,1,1,1,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,137.0,1,1,1,4,10,124.8,1,0,1,1,0,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,138.0,1,1,3,1,4,127.5,1,0,1,1,0,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,112.0,1,1,1,5,1,111.7,0,0,0,0,0,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,0 +1,1,4,9500,0,1,147.0,1,1,1,4,9,124.5,1,0,1,1,1,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,1 +1,7,1,9500,0,3,140.0,1,3,19,2,6,140.0,0,0,1,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,121.0,1,19,19,7,7,113.0,1,0,1,1,1,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,0 +1,1,2,8014,1,1,96.0,1,3,1,3,9,100.0,0,0,1,1,1,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,3,120.0,1,37,37,9,9,120.0,0,0,1,1,1,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,152.0,1,1,38,4,5,144.7,0,0,1,1,1,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,1 +2,1,1,9070,0,1,127.0,1,12,19,9,9,123.2,0,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,1 +1,1,3,9070,0,1,147.0,1,34,37,5,7,135.8,1,0,1,1,1,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,7,1,9119,0,4,180.0,1,4,3,2,7,180.0,0,0,0,1,0,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,2 +1,1,6,9500,0,1,129.0,1,37,19,9,7,127.8,1,0,1,1,1,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,100.0,1,37,37,7,7,160.0,1,0,1,1,1,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,127.0,1,19,1,5,5,117.6,1,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,2 +1,39,1,9003,0,1,110.0,1,1,1,9,4,120.0,0,0,0,0,0,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9773,0,1,143.0,11,19,19,4,9,133.9,1,0,1,1,0,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,1 +1,44,1,8014,1,39,160.0,1,37,37,7,7,156.1,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,43,2,9670,0,1,135.0,1,3,19,1,7,123.5,1,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,1,130.0,1,38,3,132,122,100.0,0,0,1,1,0,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,2 +1,15,1,9238,0,1,150.0,26,19,1,9,9,146.5,1,0,0,0,0,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,1 +1,17,6,9119,0,1,129.0,1,37,13,4,90,117.1,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,3,130.0,1,3,3,3,10,147.6,0,0,1,1,0,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,171,0,1,145.0,1,1,1,3,3,140.1,1,0,1,1,1,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,43,3,9254,0,1,135.0,1,3,3,2,2,122.1,0,0,1,1,0,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,2 +1,17,1,171,0,1,140.0,41,1,1,5,7,146.3,1,0,1,1,1,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9070,0,1,126.0,1,38,38,9,8,129.9,1,0,1,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,1 +1,7,1,9070,0,3,120.0,1,4,4,2,2,120.0,0,0,1,1,0,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,0 +1,17,4,9070,0,1,144.0,1,38,1,9,9,137.4,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,125.0,1,3,3,2,3,118.0,1,0,1,1,0,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,0 +5,39,1,9238,0,1,130.0,1,19,38,9,10,146.0,0,0,1,1,0,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,100.0,1,37,37,6,5,107.5,0,0,1,1,1,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9773,0,1,130.0,1,1,19,1,3,161.5,0,0,1,1,0,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,140.0,1,19,19,9,4,127.8,1,0,1,1,0,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,113.0,1,1,37,1,10,116.5,1,0,1,1,1,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,1 +1,1,2,9238,0,1,145.0,1,1,19,4,8,121.4,0,0,1,1,1,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9003,0,19,133.1,1,19,37,9,10,120.0,0,0,0,1,1,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,2 +1,1,1,9085,0,1,150.0,1,12,2,4,2,144.6,0,0,0,0,1,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,40,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,0 +1,17,5,9500,0,1,137.0,1,1,1,5,5,132.6,1,0,1,1,1,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,3,19,4,7,119.0,0,0,1,1,0,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,128.0,1,1,1,4,5,124.7,0,0,1,1,0,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,2 +1,39,2,9670,0,19,133.1,1,34,34,0,0,100.0,1,0,1,0,0,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,0 +1,39,1,9556,0,1,120.0,1,19,19,4,5,122.8,0,0,1,1,1,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,0 +1,1,2,171,0,1,165.0,1,3,3,2,2,163.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,133.8,1,3,37,2,10,184.0,0,0,1,1,1,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,120.0,1,37,19,9,4,148.8,0,0,1,1,1,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,1 +1,1,5,9500,0,1,151.0,1,1,1,9,9,127.8,0,0,1,1,1,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,131.0,1,38,19,7,7,125.3,1,0,1,1,1,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,128.0,1,1,1,9,6,120.3,0,0,1,1,0,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,2 +1,1,5,9500,0,1,118.0,1,3,1,5,10,113.5,1,0,1,1,1,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,140.0,1,37,37,7,9,126.8,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,117.0,1,38,37,9,9,113.5,1,0,1,1,1,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,135.0,1,19,19,9,9,122.8,1,0,1,1,0,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,151.0,1,37,37,9,7,147.5,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,1,3,4,4,147.5,1,0,1,1,1,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,128.0,1,38,37,9,9,124.9,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9085,0,1,124.0,1,3,19,2,3,113.9,1,0,1,1,1,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,120.0,1,3,19,4,7,119.7,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,171,0,1,147.0,1,1,12,4,4,148.4,1,0,1,1,0,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,136.0,1,19,1,9,8,123.4,1,0,1,1,1,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,123.0,1,3,1,2,5,112.9,0,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,2,9556,0,1,133.1,1,3,1,2,4,136.1,0,0,1,1,0,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,141.0,1,3,1,4,4,142.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,1,1,9003,0,1,120.0,1,37,37,9,9,120.5,1,0,0,1,0,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,140.0,1,37,37,9,6,140.0,1,0,1,1,0,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,147.0,1,19,1,4,3,138.5,1,0,1,1,1,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,123.0,1,34,34,90,90,113.3,1,0,1,1,1,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,38,4,5,130.4,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,7,7,134.0,0,0,1,1,0,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,38,38,4,7,111.6,1,0,1,1,1,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,1 +1,1,1,9119,0,1,148.0,1,19,38,9,7,133.0,0,0,1,1,0,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,128.0,1,3,1,2,1,127.8,0,0,1,1,1,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,172.0,1,38,37,9,9,149.3,0,0,1,1,0,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,138.0,1,37,37,9,8,127.2,1,0,1,1,1,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,140.0,1,3,1,2,6,137.6,1,0,1,1,0,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,1 +2,43,1,8014,1,1,110.0,1,37,19,9,3,100.0,0,0,1,1,1,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,2,1,2,4,140.7,1,0,1,1,0,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,1 +1,1,1,9130,0,1,137.0,1,3,38,3,5,129.3,1,0,1,1,1,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,136.0,1,38,38,0,7,133.2,1,0,1,1,1,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,145.0,6,34,34,0,0,134.5,1,0,1,1,0,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,147.0,1,19,19,3,10,151.9,1,0,1,1,1,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,118.0,1,37,37,9,9,112.1,1,0,1,1,1,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,0 +1,43,1,9773,0,1,122.0,1,1,1,4,5,126.9,0,0,1,1,1,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,126.0,1,12,38,9,5,122.2,0,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,143.0,1,3,3,2,2,129.0,0,0,1,1,0,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,1 +1,39,1,9556,0,1,130.0,1,19,38,9,8,113.3,0,0,1,1,1,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,101.0,1,1,37,4,9,98.9,1,0,1,1,1,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,133.1,1,34,34,90,90,116.0,0,0,1,0,1,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,0 +2,39,1,9991,1,1,170.0,1,37,19,9,3,151.1,0,0,1,1,0,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,1 +2,17,5,9119,0,1,126.0,1,37,38,4,4,122.9,1,0,1,1,0,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,2 +1,1,2,9500,0,1,125.0,1,19,19,9,9,114.9,0,0,1,1,1,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,1 +1,18,3,9773,0,1,128.0,1,19,1,9,9,122.1,1,0,1,1,0,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,149.0,1,38,37,9,9,139.5,0,0,1,1,0,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,1,3,9,5,137.1,0,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,126.0,1,38,37,5,5,114.8,1,0,1,1,1,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,1 +2,39,1,9085,0,1,120.0,1,37,37,6,6,150.0,0,0,1,1,0,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,137.0,1,38,19,0,90,122.3,0,0,1,1,1,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,0 +2,39,1,9853,0,19,133.1,1,37,19,3,7,100.0,0,0,1,1,1,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,145.0,1,4,2,2,3,127.3,1,0,1,1,0,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,129.0,1,1,1,4,8,129.0,0,0,1,0,1,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,143.0,1,1,1,4,4,129.0,1,0,1,1,0,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,136.0,1,19,38,9,9,119.3,1,0,1,1,1,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,151.6,0,0,1,1,1,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,2 +1,1,1,9238,0,1,108.0,1,19,38,9,9,107.3,0,1,1,1,1,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,134.0,1,1,1,2,7,128.4,1,0,1,1,1,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,1 +1,42,1,9119,0,1,120.0,1,3,1,2,9,108.2,1,0,1,1,0,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,0 +1,16,2,9500,0,1,127.0,1,2,38,4,9,119.0,1,0,1,1,1,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,131.0,1,1,1,9,9,122.0,0,0,1,1,1,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,1 +1,7,1,9070,0,3,133.1,1,3,5,2,2,120.0,1,0,1,1,1,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,150.0,1,19,19,5,5,132.8,1,0,1,1,1,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,1 +1,18,2,9670,0,1,121.0,1,37,38,4,1,111.9,1,0,1,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,108.0,41,3,3,9,9,107.0,0,0,0,0,1,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,150.0,1,34,19,0,4,152.8,1,0,1,1,0,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,18,2,9238,0,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,130.0,6,19,1,6,4,130.0,1,0,1,1,1,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,2 +1,51,1,9119,0,1,136.0,1,1,19,3,5,133.6,1,0,1,1,0,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,0 +1,1,4,9773,0,1,155.0,1,3,19,1,4,149.8,1,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9070,0,1,124.0,1,19,38,4,0,117.6,1,0,1,1,0,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,9,100.0,0,0,1,1,0,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,2 +1,44,1,9238,0,1,140.0,1,1,1,5,5,143.4,0,0,1,1,1,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,120.0,1,1,19,7,7,111.3,0,0,1,1,0,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,2 +2,1,1,9556,0,1,144.0,1,19,19,193,144,139.8,0,0,0,1,0,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,110.0,1,1,1,5,5,160.0,1,0,0,1,1,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,0 +2,39,1,9853,0,19,133.1,1,37,37,9,9,131.0,0,0,1,1,1,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,139.0,1,4,1,2,10,136.4,1,0,1,1,1,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,1 +1,17,3,9085,0,1,134.0,1,37,38,9,9,120.4,1,0,1,1,1,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,148.0,1,3,2,4,2,131.6,1,0,1,1,1,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,0 +1,1,3,9500,0,1,145.0,1,19,37,7,7,141.5,1,0,1,1,1,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,1 +2,39,1,9130,0,19,133.1,1,37,38,9,9,120.0,0,0,1,1,0,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,3,9254,0,1,121.0,1,19,37,4,7,116.8,1,0,1,1,1,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,1 +1,1,3,9254,0,1,123.0,1,1,1,4,3,123.4,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,38,38,9,9,133.4,1,0,1,1,0,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,1 +1,42,1,9500,0,1,124.0,1,19,19,4,9,124.0,0,0,1,1,1,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,40,130.0,1,37,37,9,7,130.0,0,0,1,1,1,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,140.0,1,3,38,2,9,140.0,1,0,1,1,1,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,158.0,1,38,38,9,7,144.7,1,0,1,1,1,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,18,2,9238,0,1,121.0,1,19,1,4,3,121.4,1,0,1,1,1,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,12,133.1,1,37,19,9,10,120.0,0,0,1,1,0,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,122.0,1,3,1,4,3,114.8,1,0,1,1,1,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,2 +4,43,1,9991,1,1,164.0,1,37,37,6,6,131.8,0,0,1,1,1,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,1 +1,1,3,9773,0,1,145.0,1,38,38,9,5,133.1,0,0,1,1,1,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9853,0,19,133.1,1,38,19,9,9,108.0,0,0,0,0,1,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,2 +1,17,3,9070,0,1,131.0,1,38,37,5,5,120.2,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,2 +1,43,1,9238,0,1,130.0,1,38,37,9,7,133.2,0,0,1,1,1,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,112.0,1,1,1,3,3,106.4,1,0,1,1,0,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,125.0,1,1,38,144,181,123.3,0,0,1,1,1,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,125.0,1,3,2,2,1,119.1,1,0,1,1,1,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,0 +1,7,1,9853,0,3,140.0,1,34,34,0,0,140.0,1,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,135.0,1,1,19,3,9,137.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,7,1,9991,1,3,120.0,1,37,37,6,7,120.0,0,0,0,0,0,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,130.0,1,1,1,4,3,125.1,1,0,1,1,1,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,1 +2,39,1,33,0,1,120.0,1,38,1,9,5,153.8,0,0,0,1,0,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,1,150.0,1,37,37,9,9,140.0,0,0,1,0,0,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,127.0,1,1,38,9,7,120.4,1,0,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,7,1,8014,1,43,180.0,1,19,19,9,4,180.0,0,0,1,1,1,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,1 +1,1,3,9147,0,1,143.0,1,1,1,5,7,133.2,1,0,1,1,1,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,1 +1,15,1,9853,0,1,133.1,41,43,1,153,135,128.2,0,0,1,1,1,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,1 +1,39,1,9147,0,12,133.1,1,1,1,9,4,140.0,1,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,151.0,1,1,38,4,7,137.0,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,1 +1,17,4,171,0,1,172.0,1,3,1,2,10,155.6,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,129.0,1,19,1,9,5,112.0,0,0,1,1,0,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,150.0,1,38,3,9,1,140.0,0,0,1,1,0,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,1 +1,1,1,9773,0,1,124.0,17,1,1,3,5,118.1,1,0,0,0,1,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,0 +1,17,1,9670,0,1,124.0,1,37,19,5,8,114.2,1,0,0,1,1,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,122.0,1,1,19,3,5,116.8,1,0,1,1,1,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,144.0,1,38,1,9,10,137.4,0,0,1,1,1,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,19,19,9,9,120.0,0,0,1,1,1,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,138.0,1,38,38,7,6,124.7,1,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,2 +1,18,2,9147,0,1,132.0,1,3,3,5,7,119.1,1,0,0,0,1,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,17,6,9119,0,1,111.0,1,19,3,5,10,106.5,1,0,1,1,0,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,0 +1,7,1,9500,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,1,140.0,1,37,37,9,9,130.0,1,0,1,1,0,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,125.0,1,37,37,3,3,124.0,0,0,1,1,0,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,128.0,1,19,2,7,3,126.3,1,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +2,39,1,9500,0,1,110.0,1,37,37,9,6,114.3,0,0,1,1,1,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,9085,0,1,133.1,1,1,9,4,4,128.2,0,0,1,1,1,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,1 +1,1,3,9238,0,1,126.0,1,38,19,5,8,120.8,1,0,1,1,1,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,121.0,1,1,1,9,8,118.9,1,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,109.0,1,19,37,5,5,108.3,0,0,1,1,1,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,2 +1,1,4,9670,0,1,127.0,1,1,1,7,7,116.5,1,0,1,1,1,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,171,0,19,133.1,101,1,19,2,7,110.0,0,0,1,1,0,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,133.0,1,37,37,9,7,124.6,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,39,137.0,1,1,1,5,10,124.5,0,0,1,0,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,130.0,1,19,19,7,7,121.6,0,0,1,1,1,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,1 +2,39,1,8014,1,1,130.0,1,37,37,6,5,113.5,1,0,1,1,1,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9670,0,1,120.0,1,38,38,5,7,115.1,1,0,1,1,1,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,115.0,1,38,1,9,4,116.1,1,0,1,1,0,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,130.1,0,0,1,1,1,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,2 +1,1,3,9238,0,1,133.1,1,1,1,9,9,100.0,1,0,1,1,0,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,168.0,0,0,1,1,0,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,148.0,1,1,1,9,9,141.7,0,0,1,0,0,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,0 +1,15,1,33,0,1,133.1,41,2,3,2,4,100.0,0,0,1,1,0,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,2 +1,17,3,9147,0,1,135.0,1,37,37,6,5,121.0,1,0,1,1,0,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,151.0,1,3,3,1,90,161.9,0,0,1,1,1,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,8,108.5,0,0,1,1,0,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9670,0,1,130.0,1,26,30,0,5,128.6,1,0,0,1,1,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,1 +1,43,1,9500,0,1,140.0,100,1,1,6,6,128.2,0,0,1,1,1,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,140.0,1,19,37,5,7,140.0,1,0,1,1,0,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,0 +1,39,1,33,0,1,140.0,1,3,1,2,4,152.8,0,0,1,1,1,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,2 +1,43,1,9070,0,1,117.0,1,1,1,4,7,112.5,1,0,1,1,0,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,126.0,1,37,19,7,7,125.7,0,0,1,1,1,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,2 +1,1,2,9773,0,1,140.0,1,38,38,5,7,126.4,1,0,1,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,121.0,1,37,38,6,9,121.0,0,0,1,1,1,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,136.0,1,12,1,4,4,122.0,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,117.0,1,37,37,9,9,120.2,1,0,1,1,1,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,133.1,1,38,1,9,9,121.0,0,0,0,0,0,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,0 +1,44,1,9991,1,39,130.0,1,37,37,5,5,130.0,1,0,1,1,0,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,138.0,1,1,19,4,9,142.2,1,0,1,1,1,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,148.0,1,3,1,2,10,148.0,1,0,1,1,1,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,1 +1,17,6,9556,0,1,134.0,1,19,38,7,7,128.5,1,0,1,1,1,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,141.0,1,1,19,5,8,141.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,149.0,1,3,1,9,9,137.5,0,0,1,1,0,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,1 +1,1,3,9085,0,1,142.0,1,11,11,90,90,155.3,0,0,1,1,1,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +1,1,2,9070,0,1,135.0,1,19,37,9,9,134.0,1,0,1,1,1,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,132.0,1,19,38,9,7,120.1,0,0,1,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9147,0,1,133.0,1,37,37,9,5,119.7,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,139.0,1,3,4,2,2,130.6,0,0,1,1,1,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,130.0,1,1,3,9,2,130.0,1,0,0,0,0,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,0 +1,17,3,9500,0,1,138.0,1,3,3,4,5,130.0,1,0,1,1,1,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,121.0,1,19,19,3,3,116.1,1,0,1,1,1,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,160.0,1,3,38,1,9,152.0,1,0,1,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,130.0,41,37,19,9,8,125.5,1,0,1,1,1,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,133.1,1,38,38,191,193,146.0,0,0,0,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,1 +4,39,1,9003,0,1,140.0,1,37,37,9,8,150.0,0,0,1,1,0,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,2 +1,17,2,9670,0,1,132.0,1,1,19,5,3,124.0,1,0,1,1,0,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,117.0,1,19,19,5,7,118.4,0,0,1,1,0,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,140.0,6,1,19,4,7,131.6,1,0,1,1,1,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,142.0,1,38,1,8,10,138.5,1,0,1,1,0,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,2 +1,1,1,9130,0,1,132.0,1,3,1,4,9,121.9,1,0,1,1,1,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,122.0,1,1,1,9,9,116.1,1,0,1,1,0,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,0 +1,7,1,8014,1,3,130.0,1,37,38,0,5,130.0,0,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,138.0,1,19,19,9,5,124.8,1,0,1,1,1,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,140.0,1,19,38,3,9,140.0,1,0,1,1,0,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +4,39,1,8014,1,1,138.0,1,19,19,90,90,127.0,0,0,1,0,1,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9500,0,19,133.1,1,1,3,2,2,100.0,0,0,0,1,0,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,117.0,1,3,1,3,5,110.7,1,0,1,1,0,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,120.0,1,19,19,5,5,113.0,1,0,1,1,1,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,160.0,1,37,37,7,7,133.0,1,0,1,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,137.0,1,1,1,4,5,126.3,1,0,1,1,1,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,19,37,9,7,123.9,1,0,1,1,1,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,38,38,9,5,130.0,0,0,0,0,0,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,137.0,1,19,37,9,7,130.8,0,0,0,1,1,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,38,37,4,6,150.0,1,0,1,1,1,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,115.0,1,34,38,0,5,108.4,1,0,1,1,1,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,140.0,1,3,38,141,151,135.3,0,0,1,1,0,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,148.0,1,19,19,7,7,130.9,0,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,127.0,1,1,1,4,3,126.3,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,2,9670,0,1,100.0,1,37,37,9,9,100.0,0,0,1,1,1,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,2 +1,17,2,171,0,1,141.0,1,19,37,9,9,136.1,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,123.0,1,30,19,4,90,122.3,0,0,1,1,1,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,145.0,1,1,38,5,7,127.5,1,0,1,1,0,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9085,0,1,150.0,1,37,37,90,10,112.0,0,0,1,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,128.0,1,37,1,9,7,124.2,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,0 +1,43,1,9070,0,39,130.0,1,19,37,5,9,124.0,1,0,1,1,1,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,1 +1,17,1,9003,0,1,170.0,1,1,4,9,5,144.1,1,0,0,0,0,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9670,0,1,110.0,1,19,19,90,99,107.2,0,0,1,1,0,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9238,0,19,133.1,1,37,37,9,9,130.0,1,0,1,1,1,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,42,1,9119,0,1,144.0,1,34,34,0,0,119.5,0,0,1,1,0,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,19,133.1,1,37,37,6,6,162.0,0,0,0,1,0,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,16,1,9085,0,1,138.0,1,37,37,9,9,123.0,1,0,1,1,1,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,39,1,9500,0,1,133.1,1,19,19,5,6,121.4,0,0,0,1,1,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9085,0,1,138.0,1,1,1,4,7,132.1,1,0,1,1,1,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,1 +1,39,1,9119,0,1,133.1,1,37,37,9,9,101.6,0,0,1,1,0,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9500,0,1,126.0,1,1,19,131,181,120.1,1,0,1,1,1,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,38,9,9,142.0,1,0,1,1,1,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,1 +1,18,1,8014,1,1,138.0,1,19,1,9,5,134.5,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,19,9,9,150.0,0,0,1,1,0,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,126.0,1,38,37,9,9,123.6,1,0,1,1,1,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,39,1,9254,0,19,133.1,1,19,19,3,1,101.5,0,0,0,0,0,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,43,2,9119,0,1,115.0,1,38,19,9,6,112.2,1,0,0,1,0,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,2 +2,39,1,9003,0,1,120.0,1,37,37,9,9,125.7,0,0,0,0,1,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,0 +1,17,2,9773,0,1,115.0,1,1,1,5,5,119.6,1,0,1,1,1,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,19,9,4,140.0,0,0,1,1,1,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,125.0,1,37,19,90,90,137.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,120.0,1,3,38,3,7,124.2,1,0,1,1,0,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,2 +1,1,1,9147,0,1,146.0,1,5,1,1,5,144.6,0,0,1,1,0,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,116.0,1,1,1,3,4,113.6,1,0,1,1,1,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,1 +4,42,1,9147,0,1,133.1,1,37,38,7,3,123.0,1,0,1,1,0,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,118.9,1,38,37,5,9,118.9,1,0,1,1,1,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,123.0,1,12,1,9,9,119.2,1,0,1,1,1,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,1 +1,7,1,9500,0,2,140.0,1,38,37,7,8,140.0,0,0,1,1,1,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,110.0,1,37,37,90,90,108.4,1,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9119,0,1,146.0,1,1,37,7,7,132.4,1,0,1,1,0,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,19,133.1,1,19,3,9,2,140.0,1,0,0,1,0,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,0 +1,18,2,9853,0,1,111.0,1,38,38,191,171,105.8,1,0,1,1,1,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,6,130.2,0,0,1,1,1,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,130.0,1,1,3,9,10,118.1,1,0,1,1,0,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,118.0,1,1,19,5,4,118.0,0,0,1,1,1,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,153.0,1,38,38,7,7,159.7,1,0,1,1,1,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,171,0,12,110.0,1,37,37,7,7,106.0,1,0,1,1,0,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,134.0,1,19,1,9,4,124.9,1,0,1,1,1,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,0 +1,1,3,9254,0,1,121.0,1,19,19,9,9,125.9,1,0,1,1,1,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,160.0,1,19,19,4,9,154.4,0,0,1,1,1,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,3,140.0,1,19,19,9,7,152.4,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9130,0,1,130.0,1,19,1,191,144,110.0,0,0,1,1,0,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,142.0,1,38,37,9,5,127.3,1,0,1,1,1,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,37,37,9,9,130.0,0,0,0,1,1,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,124.0,1,37,19,9,4,121.2,0,0,1,1,0,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,1 +4,39,1,9991,1,1,120.0,1,19,19,9,3,113.9,1,0,1,1,1,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,114.0,1,19,38,5,3,112.6,1,0,1,1,1,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,1 +1,7,1,9991,1,40,120.0,1,1,19,4,9,120.0,0,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,128.0,1,19,38,9,9,118.2,0,0,1,1,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,4,9070,0,1,126.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,130.0,1,1,1,0,0,119.5,0,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,184.4,22,2,19,2,8,184.4,0,0,1,1,1,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,133.1,1,37,37,9,9,132.8,0,0,0,0,0,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9085,0,1,120.0,1,38,19,90,90,127.0,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,1 +1,17,4,9147,0,1,132.0,1,38,19,5,5,120.8,1,0,1,1,0,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,0 +1,10,1,9670,0,1,148.9,22,37,37,9,9,148.9,0,0,1,1,1,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,4,150.0,1,1,1,4,6,150.0,0,0,1,1,0,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,150.0,1,19,1,9,3,110.0,1,0,1,1,0,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,1 +1,15,1,9670,0,1,130.0,26,42,1,2,7,130.0,0,1,0,1,1,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,1 +2,7,1,8014,1,3,120.0,1,38,1,9,9,120.0,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,149.0,1,19,37,9,9,158.1,1,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,4,9147,0,1,124.0,1,37,37,9,9,117.4,0,0,1,1,1,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,142.0,1,34,1,5,10,136.1,1,0,1,0,0,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,1,1,8014,1,1,165.0,1,37,37,0,0,162.9,1,0,1,1,0,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,130.0,1,37,37,5,7,123.4,1,0,1,1,0,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,0 +4,39,1,8014,1,1,133.1,1,37,37,7,7,143.0,0,0,1,1,0,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,121.0,1,38,37,8,8,115.4,1,0,1,1,1,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,7,1,9556,0,3,140.0,1,3,3,2,2,140.0,0,0,0,0,0,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,116.0,1,38,19,0,2,116.7,1,0,1,1,0,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,132.0,1,38,1,5,5,124.3,0,1,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,133.1,1,38,12,7,0,111.5,0,0,1,0,1,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,0 +1,53,1,9147,0,42,140.0,1,1,1,6,6,142.2,0,0,1,1,0,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,1 +2,44,1,9991,1,39,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,9773,0,1,170.0,1,1,19,9,7,155.0,0,0,1,1,0,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,8014,1,19,133.1,1,37,37,4,8,112.5,0,0,1,1,1,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,120.0,1,1,1,5,8,112.0,1,0,1,1,1,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,123.0,1,1,1,3,3,113.6,1,0,1,1,1,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,1 +1,39,1,9085,0,1,133.1,1,1,19,9,9,162.3,1,0,1,1,1,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,116.0,1,37,1,9,8,115.7,1,0,0,0,1,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,160.0,1,9,19,4,3,151.3,0,0,1,1,1,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,1 +1,39,1,8014,1,19,149.0,1,34,34,0,0,126.3,0,0,1,1,1,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,44,1,9238,0,39,140.0,41,1,1,4,6,137.5,0,0,0,1,1,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,130.0,1,37,37,9,9,129.0,1,0,1,1,1,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,19,38,7,7,118.7,0,0,1,1,0,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,128.0,0,0,1,1,1,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,1 +1,17,1,9070,0,1,135.0,1,19,37,5,9,145.9,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,128.0,1,1,19,9,7,118.2,0,0,1,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,128.0,1,19,38,9,9,127.0,0,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,140.0,1,37,12,9,9,150.0,0,0,0,1,0,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,0 +2,43,1,8014,1,1,160.0,1,37,39,9,4,140.9,0,0,1,1,1,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,133.0,1,38,19,8,7,127.3,1,0,1,1,1,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,1 +1,15,1,9670,0,1,160.0,1,37,12,9,9,149.5,1,0,1,0,0,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,152.0,101,2,1,9,1,168.5,1,0,1,1,0,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,1 +1,1,3,9085,0,1,147.0,1,19,19,9,1,135.6,1,0,1,1,1,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,1 +1,17,2,8014,1,1,120.0,1,37,34,0,0,117.6,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,141.0,1,37,37,9,9,130.2,0,0,1,1,0,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,1 +1,16,2,9147,0,1,139.0,1,38,37,9,9,123.7,1,0,1,1,1,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,134.0,1,19,38,4,8,129.5,0,0,1,1,1,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,113.0,1,1,37,9,10,117.2,1,0,1,1,1,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,18,2,9556,0,1,126.0,1,3,3,2,2,115.5,0,0,1,1,0,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,1 +1,39,1,8014,1,1,134.0,1,37,38,4,7,110.0,1,0,1,1,1,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,42,1,171,0,1,132.0,1,1,1,1,4,132.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9003,0,1,130.0,1,19,19,9,1,140.0,0,0,1,1,1,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9773,0,1,132.0,1,38,19,9,9,125.0,1,0,1,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,140.0,1,37,37,9,6,132.8,0,0,1,1,0,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,130.0,1,37,19,9,5,140.2,1,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9070,0,1,118.0,1,43,3,123,123,110.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,1 +1,39,1,8014,1,19,100.0,1,37,37,5,5,111.0,1,0,1,1,1,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,2 +1,1,3,9085,0,1,138.0,1,1,3,4,4,126.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,132.0,1,2,19,4,4,125.0,1,0,1,1,1,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,38,100.0,1,37,37,9,7,154.0,1,0,1,1,0,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,138.0,1,1,19,4,4,131.7,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,1 +2,39,2,9147,0,1,140.0,1,37,37,9,8,108.0,0,0,1,1,1,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,2 +1,1,5,9147,0,1,134.0,1,3,2,2,2,134.7,0,0,1,1,0,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,2 +1,43,1,9130,0,1,120.0,1,2,3,3,2,120.0,1,0,1,0,0,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,0 +1,1,3,9085,0,1,140.0,1,10,19,90,90,135.8,1,0,1,1,1,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,142.0,1,37,38,5,1,129.4,0,0,1,1,1,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,1 +1,17,4,9670,0,1,120.0,1,1,19,5,5,117.2,1,0,1,1,1,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,136.0,1,1,19,5,7,136.4,0,0,1,1,1,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,120.0,1,37,37,5,5,124.6,0,0,1,1,1,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,2 +1,39,1,9500,0,1,133.1,1,1,37,9,9,100.0,0,0,1,1,0,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,123.0,1,19,1,9,3,117.8,1,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,1 +5,39,1,9254,0,1,133.1,1,2,2,2,2,103.0,0,0,1,1,1,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,171,0,1,133.0,1,1,37,4,7,126.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,6,9500,0,1,119.0,1,1,1,4,4,115.0,1,0,1,1,0,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,143.0,1,38,19,151,193,134.3,1,1,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,135.0,1,1,19,4,4,129.1,0,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,43,2,9670,0,1,130.0,1,19,1,4,4,127.6,1,0,1,1,0,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,1,9254,0,1,126.0,1,37,37,5,1,126.0,0,0,1,0,0,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,0 +1,42,1,9119,0,1,120.0,1,19,37,9,9,113.8,0,0,1,0,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9991,1,1,140.0,1,37,37,9,9,135.8,1,0,1,1,0,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,1 +1,17,5,9085,0,1,118.0,1,38,38,9,9,112.4,1,0,1,1,1,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,1 +1,17,3,9773,0,1,134.0,1,2,1,3,3,129.5,1,0,1,1,0,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,129.0,1,1,38,4,7,123.4,0,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,132.0,1,19,37,4,9,128.0,1,0,1,1,1,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,137.0,1,38,37,7,5,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,1 +1,17,5,9119,0,1,138.0,1,19,19,5,5,123.3,1,0,0,1,0,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,138.0,1,1,1,3,4,132.5,1,0,1,1,1,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,1 +1,16,2,9070,0,1,133.0,1,1,3,4,2,122.5,1,0,1,1,1,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,2 +1,17,1,9130,0,1,137.0,1,38,19,5,7,130.0,1,0,1,1,1,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,2 +1,17,1,9238,0,1,131.0,1,37,37,9,7,121.9,0,0,1,1,1,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,1 +2,1,1,9500,0,1,142.0,1,19,38,4,5,130.3,0,0,1,1,1,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,1 +2,39,1,9556,0,1,160.0,1,37,37,9,6,120.0,0,0,1,1,1,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,0 +1,51,1,9670,0,1,126.0,1,3,3,1,10,111.0,0,0,0,1,0,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,1 +1,1,5,9853,0,1,141.0,1,37,19,9,5,133.0,1,0,1,1,1,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,0 +1,1,2,9670,0,1,124.0,1,19,1,9,4,117.7,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,133.0,1,19,19,9,5,120.1,1,0,1,1,1,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,1 +1,43,1,9147,0,1,133.1,1,4,19,2,1,128.2,0,0,1,1,1,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,0 +4,27,1,9070,0,2,130.0,1,34,34,0,0,130.0,0,0,1,1,1,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,0 +1,43,1,9003,0,1,150.0,1,2,4,4,1,150.0,0,0,1,1,0,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,1 +1,39,1,9991,1,19,133.1,1,19,37,7,5,155.5,1,0,0,0,0,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,0 +1,1,1,9238,0,1,106.0,1,1,1,3,3,105.0,0,0,1,1,0,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,111.0,1,19,38,3,3,111.4,1,0,1,0,1,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,0 +1,43,1,9254,0,1,130.0,1,1,19,5,7,130.0,0,0,1,1,1,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,0 +1,17,1,8014,1,1,120.0,1,38,37,6,6,113.0,0,0,1,1,1,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,139.0,1,1,37,4,9,131.3,1,0,1,1,1,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,1 +1,43,3,9254,0,1,110.0,1,37,37,9,9,107.2,1,0,1,1,0,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,147.0,1,1,1,4,4,134.3,1,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,130.0,1,37,38,9,6,130.0,1,0,1,1,1,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,139.0,1,37,38,9,9,124.0,1,0,1,1,0,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,122.0,1,37,37,9,9,126.9,1,0,1,1,1,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,11,11,90,4,114.0,1,0,1,1,0,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9147,0,1,132.0,1,39,39,3,3,127.8,1,0,1,0,0,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,128.0,1,38,37,5,6,122.1,0,0,1,1,1,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,2 +1,17,1,9085,0,1,127.0,1,19,38,194,193,117.6,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9500,0,1,145.0,1,3,3,2,3,141.8,0,0,1,1,1,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,1 +1,53,1,9556,0,42,140.0,1,1,19,4,5,140.0,0,0,1,1,1,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,1 +1,18,1,9147,0,1,160.0,1,19,19,5,8,137.6,1,0,1,1,1,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,1 +1,51,1,9670,0,19,133.1,1,2,1,3,10,120.0,0,0,0,1,0,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,19,133.1,1,19,39,5,3,121.7,0,0,0,0,1,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,126.0,0,0,1,1,0,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,1 +1,1,3,171,0,1,140.0,1,37,37,9,9,124.3,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,136.0,1,38,37,9,9,126.9,1,0,1,1,1,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,136.0,1,19,1,9,9,129.0,1,0,1,1,1,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,144.0,1,38,38,7,7,136.0,1,0,1,1,1,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,154.0,1,38,38,9,9,156.5,1,1,1,1,1,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,131.0,1,19,19,9,9,134.9,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +4,43,1,8014,1,1,140.0,1,38,37,9,9,126.0,0,0,1,1,1,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,141.0,1,37,37,9,7,126.3,1,0,1,1,1,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,1 +1,44,1,8014,1,39,150.0,1,1,37,9,7,146.7,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +1,1,2,9119,0,1,140.0,1,19,19,9,9,125.7,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,12,100.0,1,1,1,4,4,100.0,0,0,1,1,1,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,1 +1,42,1,9500,0,1,111.0,1,1,3,9,10,128.2,1,0,1,1,0,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,1 +1,17,2,9773,0,1,132.0,1,19,19,9,6,120.1,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,131.0,1,4,4,2,1,120.5,0,0,1,1,1,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,44,1,9003,0,39,170.0,1,19,19,5,5,170.0,1,0,1,1,0,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,1 +1,17,1,9773,0,1,150.0,1,38,38,7,7,137.8,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,19,133.1,1,37,37,9,10,120.0,0,0,0,0,0,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9670,0,39,110.0,1,37,1,9,4,110.0,0,0,1,1,1,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,130.0,1,5,3,2,2,130.0,0,0,1,1,0,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9670,0,1,133.1,1,34,3,7,2,130.6,1,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,38,9,10,140.0,0,0,1,1,0,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,133.1,1,19,38,9,9,119.6,1,0,1,1,1,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,118.0,1,19,19,3,3,110.0,1,0,1,1,1,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,2 +1,1,1,9773,0,1,137.0,1,1,1,5,5,129.3,1,0,1,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,127.0,1,19,38,5,9,129.5,1,0,1,1,1,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,126.0,1,38,19,9,6,119.4,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,116.5,0,0,1,1,1,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,125.0,1,19,19,4,7,128.5,1,0,1,1,1,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,2 +1,43,1,9773,0,1,133.1,22,34,34,90,90,130.0,0,0,0,1,1,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,125.0,1,1,1,5,5,128.5,0,0,1,1,0,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9500,0,1,133.1,1,19,37,9,9,120.0,0,0,1,1,1,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,1 +2,39,2,9147,0,1,133.1,1,37,37,5,7,110.0,0,0,1,1,0,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,6,9500,0,1,141.0,1,1,19,1,1,126.7,1,0,1,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,146.0,1,40,43,4,4,150.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,148.0,1,1,1,4,9,129.8,0,0,1,1,1,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,2 +1,17,1,9853,0,1,133.0,1,38,38,9,9,127.4,0,0,0,1,1,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,43,1,9147,0,1,120.0,1,37,37,5,3,113.4,0,0,1,1,0,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,148.0,1,19,3,4,2,136.5,0,0,1,1,1,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,178.0,1,2,1,2,3,157.7,0,0,1,1,0,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +2,7,1,9254,0,3,130.0,1,1,3,4,3,130.0,0,0,1,1,1,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,7,1,33,0,40,120.0,1,38,37,5,6,120.0,1,0,0,0,0,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,0 +2,1,1,9147,0,1,151.0,1,38,37,9,8,132.1,1,0,1,1,1,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,0 +1,43,2,9556,0,1,120.0,1,1,19,4,3,110.2,0,0,1,1,1,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,1 +2,1,4,9500,0,1,140.0,1,1,37,4,9,128.0,0,0,1,1,1,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,1 +1,42,1,9119,0,6,120.0,1,35,35,6,6,128.2,1,0,1,1,0,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,120.0,1,37,37,9,6,120.0,1,0,1,1,1,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,2 +2,39,1,9003,0,1,133.1,1,37,37,8,7,150.0,0,0,1,1,0,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,145.0,1,19,37,4,7,148.9,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,34,34,0,0,104.0,1,0,1,1,1,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,43,1,9085,0,1,110.0,1,3,19,4,6,105.0,0,0,0,0,0,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,0 +1,17,2,9254,0,1,108.0,1,37,37,9,7,108.0,1,0,1,1,1,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,1 +4,43,1,9238,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,1,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,136.0,1,19,37,173,183,118.4,1,0,1,1,1,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,18,1,9556,0,1,140.0,1,38,37,9,9,122.8,0,0,1,1,1,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,1 +1,39,1,9119,0,1,150.0,1,3,3,4,4,150.0,1,0,1,1,0,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,141.0,1,1,1,4,10,138.9,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,1 +1,18,4,9773,0,1,130.0,1,19,19,4,4,121.3,1,0,1,1,1,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,1,130.0,1,37,37,9,6,160.0,0,0,1,1,0,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,149.0,1,37,37,9,9,136.0,0,0,1,1,1,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,151.0,1,37,1,4,10,138.4,0,0,1,1,1,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,2 +1,39,1,9254,0,1,130.0,1,37,37,9,9,126.5,0,0,1,1,0,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,143.0,1,19,37,7,7,127.0,1,0,1,1,1,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,1 +2,57,1,9991,1,1,133.1,41,38,37,4,6,100.0,0,0,1,1,1,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,138.0,1,37,37,9,9,135.9,1,0,1,1,1,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,2 +1,43,1,8014,1,1,145.7,22,37,37,9,9,145.7,1,0,1,1,1,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,1 +4,39,1,9773,0,19,133.1,1,37,37,9,1,117.5,0,0,1,1,1,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,17,3,9238,0,1,118.0,1,1,19,4,10,112.4,1,0,1,1,1,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,8014,1,1,133.1,1,37,37,9,7,162.5,0,0,1,1,0,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,1 +1,1,3,9254,0,1,115.0,1,1,1,3,3,117.5,1,0,1,1,1,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,133.0,1,37,38,9,9,130.2,1,0,1,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,152.0,1,2,22,4,3,146.1,1,0,1,1,1,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +2,39,1,9085,0,12,133.1,1,1,39,5,3,140.0,1,0,0,0,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9003,0,1,140.0,1,38,1,9,4,138.3,0,0,1,1,0,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,130.0,1,38,37,9,6,133.9,0,0,1,1,0,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,140.0,1,37,37,9,9,142.5,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,120.0,1,38,1,9,3,118.3,1,0,1,1,1,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,117.0,1,1,19,4,7,113.5,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,141.0,1,19,1,7,3,128.8,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9147,0,1,125.0,1,3,38,2,10,118.7,1,0,1,1,1,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,116.0,1,37,1,5,3,124.8,1,0,1,1,0,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,120.0,1,36,37,0,0,126.7,1,0,1,1,0,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,1 +1,17,4,9853,0,1,140.0,1,19,38,4,1,128.5,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,1,1,3,10,130.0,0,0,1,1,0,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,136.0,1,3,37,2,8,121.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,154.0,1,37,37,9,9,149.5,1,0,1,1,1,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,138.0,1,19,38,5,8,133.5,0,0,1,1,1,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,128.0,1,1,37,4,3,117.9,1,0,1,1,1,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,1 +1,43,1,9130,0,1,150.0,1,3,3,3,4,150.0,1,0,1,1,1,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,110.0,1,19,38,3,5,117.4,1,0,1,1,1,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,135.0,1,37,38,9,6,122.1,1,0,1,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9003,0,1,140.0,1,37,37,9,6,104.8,0,0,1,1,1,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,143.0,1,37,37,9,7,131.8,1,0,1,1,1,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,142.0,1,1,1,3,3,133.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,141.0,1,1,19,5,10,127.0,0,0,1,1,1,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,1 +3,1,2,9085,0,1,135.0,1,19,1,4,4,129.4,1,0,1,1,1,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,39,1,9254,0,1,133.1,1,19,19,4,7,123.0,0,0,0,0,1,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,0 +1,17,2,9500,0,1,131.0,1,19,37,9,7,129.8,1,0,1,1,1,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,1 +1,39,1,9670,0,9,133.1,1,6,22,3,3,120.0,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,131.0,1,37,37,3,3,131.7,1,0,1,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,137.0,1,19,19,5,5,134.6,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,131.0,1,1,1,4,10,129.3,0,0,1,1,1,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,140.0,1,1,37,141,192,129.7,0,0,1,1,1,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,140.0,1,37,37,9,9,124.6,0,0,1,1,1,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,138.0,1,37,37,5,9,125.1,1,1,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,0 +1,2,1,9147,0,1,150.0,1,37,37,9,9,122.0,1,0,1,1,1,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,135.0,1,3,1,4,4,136.1,1,0,1,1,0,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,2 +1,39,1,9991,1,1,150.0,1,1,19,4,8,123.0,0,0,1,1,0,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,141.0,1,19,37,5,8,130.2,0,0,1,1,0,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,106.0,1,37,37,9,9,108.0,1,0,0,1,1,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,19,133.1,1,37,38,9,7,100.5,1,0,1,1,0,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,2 +1,43,1,9254,0,1,142.0,1,38,38,9,9,125.9,0,0,1,1,1,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,150.0,1,1,37,9,7,130.2,0,0,1,1,1,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,1 +4,39,1,9670,0,1,140.0,1,2,1,3,9,170.0,0,0,0,0,0,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9773,0,1,119.0,1,38,19,9,9,118.3,0,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,117.0,1,34,34,0,0,109.3,0,0,1,1,1,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,120.0,1,34,34,99,99,111.6,0,0,0,1,0,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,2 +1,39,1,9119,0,1,139.0,1,19,19,9,7,110.3,0,0,0,1,0,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,2 +1,43,1,9147,0,1,123.0,1,3,19,9,9,113.2,0,0,1,1,1,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,2 +1,43,1,9991,1,1,120.0,1,38,38,9,7,141.0,0,0,1,1,0,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,1 +1,1,1,9130,0,1,151.0,1,3,1,2,4,151.0,1,0,1,1,1,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,130.0,1,37,37,9,6,110.0,1,0,1,1,1,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,1 +1,43,1,9853,0,1,130.0,1,2,39,2,5,124.6,0,0,1,1,0,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,138.0,1,1,1,4,3,141.5,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,120.0,1,37,37,9,5,100.0,0,0,1,1,1,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9991,1,39,150.0,1,37,37,6,6,150.0,0,0,1,1,1,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,2 +2,39,1,9085,0,19,133.1,1,38,38,4,7,128.2,0,0,1,1,1,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.0,41,19,19,9,9,119.7,1,0,0,1,1,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,17,3,9085,0,1,128.0,1,1,19,4,90,124.2,0,0,1,0,1,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,120.0,1,1,1,9,9,129.1,1,0,1,1,0,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9773,0,1,125.0,1,19,19,9,7,129.6,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,137.0,1,40,19,2,9,130.7,1,0,1,1,1,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,0 +1,51,1,9147,0,1,116.0,1,3,3,2,2,115.2,0,0,0,1,0,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,17,5,9853,0,1,132.0,1,12,12,4,4,123.3,1,0,1,1,1,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,0 +1,7,1,9991,1,3,130.0,1,37,37,9,9,130.0,0,0,1,1,0,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,135.0,1,19,38,9,5,136.8,1,0,1,1,1,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,137.0,1,1,1,4,7,134.6,1,0,1,1,0,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,4,171,0,1,133.1,1,38,38,9,9,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,133.1,1,19,37,7,8,120.0,0,0,0,0,1,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,140.0,1,1,19,9,7,127.0,1,0,1,1,1,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,1 +1,18,1,9500,0,1,124.0,1,38,37,9,7,119.3,1,0,1,1,1,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,3,19,2,4,150.0,1,0,1,1,1,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,8014,1,19,133.1,1,3,19,90,90,123.5,0,0,1,1,1,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9853,0,1,133.1,1,37,37,5,5,116.5,0,0,1,1,1,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,0 +1,18,6,9500,0,1,144.0,1,1,1,3,6,130.8,1,0,1,1,1,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9670,0,1,151.0,1,19,19,1,1,100.0,0,0,0,1,1,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,125.0,1,1,19,4,6,115.2,0,1,1,1,1,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,37,38,4,9,110.0,0,0,0,0,1,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,133.1,1,19,19,5,5,108.5,1,0,1,1,1,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,130.0,1,37,11,90,90,122.6,0,0,1,1,1,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,113.0,1,19,37,9,9,118.6,1,0,1,1,1,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,140.0,6,2,3,5,2,124.3,1,0,1,1,1,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,2 +1,1,4,9119,0,1,111.0,1,37,37,9,5,107.5,1,0,1,1,0,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,143.0,1,19,38,9,9,133.4,1,0,1,1,1,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,1 +1,17,1,9773,0,1,141.0,1,2,3,2,2,133.7,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,151.0,41,3,3,2,5,161.9,1,0,1,1,1,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,43,1,33,0,1,143.0,1,37,1,9,10,121.2,1,0,1,1,0,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,1,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,141.0,1,1,19,8,7,128.8,1,0,1,1,1,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,2 +1,1,1,9238,0,1,115.0,1,19,38,7,7,108.7,0,0,1,1,1,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,114.0,1,1,1,4,0,108.8,1,0,1,1,1,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,2 +1,1,2,9853,0,1,112.0,1,37,37,191,182,106.1,1,0,0,1,1,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,2,9085,0,1,157.0,1,3,38,4,6,142.3,0,0,1,1,1,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,1 +2,44,1,8014,1,39,160.0,1,37,19,9,10,155.9,0,0,1,1,1,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,1 +1,1,4,171,0,1,137.0,1,1,38,4,8,141.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,144.0,1,1,37,9,9,126.5,1,0,1,1,1,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,145.0,1,1,1,4,10,131.4,0,0,1,1,1,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,115.0,1,1,1,9,4,109.1,1,0,0,0,1,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,170.0,1,37,37,0,0,150.8,1,0,1,1,1,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,0 +1,5,3,9070,0,1,157.0,1,3,1,9,6,138.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,1 +1,43,2,9238,0,1,129.0,1,34,30,0,5,118.9,1,0,1,1,0,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,5,9853,0,1,141.0,1,3,19,2,7,130.9,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,1 +4,39,1,9991,1,1,133.1,1,37,37,9,9,130.4,0,0,1,1,1,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,130.0,1,19,38,9,9,126.9,0,0,0,1,1,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,136.0,1,19,1,4,3,125.2,1,0,1,1,1,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,37,9,9,140.2,0,0,1,1,0,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,132.0,1,37,38,9,5,120.8,0,0,1,1,1,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,150.0,1,19,37,6,6,150.0,0,0,0,1,1,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,1 +2,42,1,9991,1,1,130.0,1,3,2,2,2,130.0,0,0,1,1,0,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,2 +4,39,1,8014,1,1,133.1,1,38,37,5,7,144.5,0,0,1,1,1,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,2,9773,0,1,150.0,41,1,37,9,7,130.8,0,0,1,1,1,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,1 +2,1,1,8014,1,1,151.0,1,37,37,9,9,152.4,0,0,1,1,1,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,1 +6,39,1,9500,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,0 +2,43,1,9670,0,1,100.0,1,34,34,0,0,128.2,0,0,1,1,0,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,148.0,1,1,19,3,3,131.7,1,0,1,1,1,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,142.0,1,19,19,7,7,142.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,127.0,1,1,38,4,7,125.6,0,0,0,1,1,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,146.0,1,38,38,9,7,134.1,1,0,1,1,0,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,0 +1,17,1,9670,0,1,115.0,1,1,1,4,4,109.1,1,0,1,1,1,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,2 +1,1,2,9773,0,1,148.0,1,1,19,9,9,141.7,0,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,116.0,1,37,37,0,5,114.3,1,0,1,1,1,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,139.0,1,38,19,5,7,130.6,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,1 +1,1,6,9147,0,1,128.0,1,37,37,9,9,116.5,0,0,1,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,2 +1,39,1,9130,0,3,150.0,1,3,1,90,90,150.0,1,0,1,1,1,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9670,0,1,122.0,1,1,19,4,4,116.1,0,0,1,1,0,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,2 +1,39,1,9119,0,1,100.0,1,37,37,9,8,160.0,0,0,0,0,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9254,0,1,128.0,1,19,1,7,9,121.7,1,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,143.0,1,37,38,7,7,133.8,1,0,1,1,1,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,107.0,1,38,38,7,7,103.5,1,0,1,1,1,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,1 +1,39,2,9147,0,1,143.0,1,19,5,4,1,100.0,1,0,1,1,0,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,140.0,0,0,0,0,1,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,160.0,1,1,1,5,4,160.0,1,1,1,0,0,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,0 +2,39,1,9500,0,19,133.1,1,38,38,2,10,120.0,0,0,1,1,1,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,0 +1,5,2,9853,0,1,122.0,1,19,19,4,5,112.6,1,0,1,1,1,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,3,9500,0,1,137.0,1,19,37,7,7,126.7,1,0,1,1,1,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,1 +1,7,1,9070,0,40,120.0,1,1,19,3,9,120.0,1,0,1,1,1,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,157.0,1,38,3,5,2,141.4,0,0,1,1,1,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,1 +2,1,2,8014,1,1,110.0,1,37,1,9,10,108.7,1,0,1,1,1,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,129.0,1,19,37,7,6,120.0,1,0,1,1,1,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,108.0,1,19,1,4,3,111.9,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9070,0,12,110.0,1,37,38,5,10,130.0,0,0,0,0,0,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,122.0,1,1,1,193,101,126.2,0,0,1,1,1,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,4,4,3,3,143.6,0,0,0,1,0,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,2 +1,7,1,9119,0,3,130.0,1,34,34,90,90,130.0,0,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,8014,1,39,120.0,1,19,37,7,6,121.8,1,0,1,1,1,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,142.0,1,37,38,9,9,137.5,1,0,1,1,0,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,138.0,1,3,19,2,4,131.0,1,0,1,1,0,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,0 +1,17,2,9853,0,1,125.0,1,1,19,5,5,119.4,1,0,1,1,1,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,137.0,1,1,1,5,4,131.1,1,0,1,1,1,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,133.0,1,38,38,9,9,128.1,1,0,1,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,0 +4,39,1,9991,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,1,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,17,1,9130,0,1,138.0,1,2,19,2,6,126.3,1,0,1,1,1,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,2 +1,17,4,9500,0,1,135.0,1,1,1,4,4,127.0,1,0,1,1,1,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,140.0,1,4,3,3,3,127.8,0,0,1,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,1 +1,5,1,9147,0,1,126.0,1,19,38,5,6,117.3,1,0,1,1,1,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,2 +1,39,1,9670,0,1,133.1,1,1,19,4,9,140.0,0,0,1,1,0,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,126.0,1,38,38,9,8,118.8,1,0,1,1,1,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,1 +2,42,1,9147,0,1,133.1,1,37,37,9,9,115.8,0,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,126.0,1,1,37,7,9,132.7,0,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,133.0,1,19,19,5,7,123.6,0,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +1,17,4,9556,0,1,135.0,1,38,37,3,7,129.0,1,0,1,1,1,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,110.0,1,37,37,9,9,107.6,1,0,1,1,0,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,2 +1,17,4,9147,0,1,135.0,1,19,1,0,4,128.7,1,0,1,1,0,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +2,1,1,8014,1,1,150.0,1,1,37,4,7,139.9,1,0,1,1,1,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,116.0,1,1,38,4,3,114.6,1,0,1,1,1,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,121.0,1,19,37,1,3,131.5,0,0,1,1,1,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,100.0,1,19,1,1,90,114.0,1,0,0,0,1,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,146.0,1,19,37,5,8,135.8,1,0,1,1,1,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,1 +1,44,1,9119,0,39,140.0,1,1,19,4,5,140.0,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9670,0,1,136.0,1,19,19,5,5,122.0,0,0,0,0,1,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,0 +2,39,1,9003,0,1,133.1,1,19,19,4,4,107.5,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9070,0,1,164.0,1,38,38,9,7,165.8,1,0,1,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,154.0,1,38,38,9,9,133.4,1,0,1,1,1,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,127.0,1,19,37,7,7,121.5,1,0,1,1,0,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,2 +1,43,6,9238,0,1,129.0,1,34,34,0,0,125.2,0,0,1,1,1,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,125.0,1,19,1,4,5,122.6,1,1,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,2 +1,17,1,9070,0,1,136.0,1,38,19,7,7,121.7,1,0,1,1,1,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,131.0,1,38,1,7,4,128.3,1,0,1,1,1,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,1 +1,1,4,171,0,1,132.0,1,1,19,4,5,138.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9254,0,1,115.0,1,12,1,9,3,108.7,1,0,1,1,1,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,131.0,1,1,37,3,7,120.2,0,0,1,1,1,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,134.0,1,1,1,4,9,124.2,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,142.0,1,19,1,9,1,132.6,0,0,1,1,1,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,2,1,3,6,150.0,1,0,1,1,0,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,1 +1,39,1,9254,0,1,130.0,1,19,38,9,7,113.5,0,0,1,1,1,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,135.0,1,2,1,2,8,126.6,0,0,1,1,1,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,1 +1,39,1,9254,0,12,133.1,1,37,37,5,7,119.3,1,0,1,1,0,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,2 +1,1,1,9130,0,1,110.0,1,3,19,2,9,105.5,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9130,0,1,134.0,41,1,19,5,5,125.6,1,0,1,1,1,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,151.0,2,1,1,5,9,146.5,0,0,1,1,1,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,133.0,1,1,3,3,3,135.8,1,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,7,1,9070,0,3,140.0,1,37,2,9,3,140.0,0,0,1,0,1,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,147.0,1,37,19,9,5,133.7,1,0,1,1,1,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,2 +1,51,1,9500,0,1,127.0,1,19,1,5,9,150.0,0,0,1,1,1,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,143.0,1,1,37,5,9,126.6,0,0,0,0,1,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,160.0,1,37,38,9,9,160.0,0,0,0,1,1,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,1 +4,39,1,8014,1,19,133.1,1,34,34,0,0,100.0,0,0,1,1,1,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,0 +4,43,1,9853,0,1,133.1,100,19,22,90,90,100.0,0,0,1,1,1,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,2,120.0,1,37,37,9,8,120.0,0,0,1,1,1,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,2 +1,39,1,9130,0,40,129.0,1,3,3,2,2,155.3,1,0,1,1,1,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,150.0,1,38,37,9,9,150.0,1,0,1,1,0,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +1,44,1,9130,0,39,160.0,1,1,37,3,3,160.0,1,0,0,0,1,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,0 +2,39,1,9003,0,1,133.1,1,1,19,4,4,120.0,0,0,0,0,0,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,115.0,1,19,38,9,9,108.0,0,0,1,1,1,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,134.0,1,1,19,4,5,126.0,0,0,1,1,1,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,135.0,1,38,38,5,8,133.3,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,5,1,9670,0,1,135.0,1,1,12,4,4,140.3,1,0,1,1,1,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,122.0,1,19,1,4,8,135.8,0,0,1,1,1,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,19,19,3,9,112.6,1,0,1,1,1,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,4,9773,0,1,147.0,1,1,1,4,5,139.7,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,140.0,1,19,19,4,5,140.0,1,0,1,1,1,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,130.0,1,12,12,9,9,126.1,0,0,1,1,0,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,0 +1,43,2,9147,0,1,130.0,1,34,37,9,9,118.5,1,0,1,1,0,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,1 +1,17,4,9500,0,1,138.0,1,4,1,2,1,133.0,1,0,1,1,1,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,138.0,1,37,37,194,171,131.0,1,0,1,1,1,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,19,5,8,147.3,0,0,1,1,1,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,1 +1,1,6,9500,0,1,149.0,1,1,1,4,9,133.0,1,0,1,1,1,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,1 +1,16,6,9773,0,1,136.0,1,38,14,0,0,129.7,1,0,1,1,1,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,130.0,1,1,34,9,9,124.8,1,0,1,1,1,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,111.0,1,1,1,3,3,112.4,1,0,1,1,0,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,121.0,1,1,19,4,7,135.4,1,0,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,1 +1,1,1,9556,0,1,135.0,1,37,38,7,9,125.8,0,0,1,1,1,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,136.0,1,37,19,5,8,129.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,4,9670,0,1,110.0,1,1,37,7,7,111.1,1,0,1,0,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,128.0,1,38,38,5,5,118.6,1,0,1,1,1,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,1 +2,39,1,9500,0,19,133.1,1,37,38,9,10,120.9,1,0,1,1,1,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,0 +1,5,3,9085,0,1,143.0,1,37,37,0,90,159.1,0,0,0,1,1,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,0 +4,39,1,9238,0,1,120.0,1,37,37,9,9,125.5,1,0,1,1,1,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,126.0,1,3,1,2,5,116.9,1,1,1,1,1,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,2 +1,16,1,9556,0,1,137.0,1,37,37,9,7,122.7,1,0,1,1,1,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,136.0,1,1,1,9,9,123.8,1,0,1,1,1,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +4,39,1,9130,0,1,133.1,1,3,1,5,5,110.0,1,0,1,1,1,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,0 +1,17,4,9085,0,1,138.0,1,19,36,90,7,134.9,1,0,1,1,1,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,3,9070,0,1,130.0,1,1,4,4,2,131.4,0,0,1,1,0,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,1 +2,42,1,9853,0,1,133.1,1,37,37,4,7,100.0,0,0,1,1,1,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,115.0,1,1,1,9,9,134.3,1,0,1,1,0,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,108.0,1,1,38,5,8,105.9,0,0,1,1,1,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,2 +1,39,1,9991,1,1,120.0,1,19,37,5,5,128.2,0,0,1,0,0,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +5,7,1,9130,0,3,160.0,1,19,38,9,6,160.0,0,0,1,0,1,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,0 +1,1,1,9130,0,1,121.0,1,3,19,2,9,115.4,1,0,1,1,0,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,0 +1,17,1,9254,0,1,118.0,1,11,34,5,0,122.2,1,0,1,1,1,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,0 +1,43,1,9238,0,1,120.0,1,1,38,4,3,118.3,0,0,1,1,1,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,1 +1,1,4,9147,0,1,108.0,1,3,1,3,4,109.1,1,0,1,1,0,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,7,1,9991,1,40,130.0,1,19,19,7,3,130.0,0,0,1,1,1,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,133.1,1,37,19,9,10,150.0,0,0,1,1,0,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,2 +1,7,1,9119,0,40,130.0,1,1,1,4,4,130.0,0,0,1,1,0,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,128.0,1,19,19,5,5,124.5,1,0,1,1,1,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,1 +1,43,1,9085,0,1,170.0,1,19,19,5,1,170.0,1,0,1,1,1,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,2 +1,1,3,9500,0,1,113.0,1,3,1,134,135,107.8,1,0,1,1,1,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,2 +1,1,2,9670,0,1,117.0,1,37,37,9,9,111.8,0,0,1,1,1,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,1,1,9,4,126.2,1,0,1,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,1 +1,17,2,9238,0,1,145.0,1,19,38,7,6,128.6,1,0,1,1,1,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,1 +1,7,1,9147,0,3,130.0,1,38,38,1,9,130.0,0,0,1,1,1,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,1 +1,43,1,9500,0,1,170.0,1,19,37,8,8,100.0,0,0,1,1,1,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,2 +1,17,1,9147,0,1,148.0,1,38,37,5,5,134.0,0,0,1,1,0,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,17,5,9085,0,1,118.0,1,1,38,4,7,122.2,1,0,1,1,1,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,133.1,1,38,38,191,192,118.0,0,0,0,1,1,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,1 +1,18,1,9853,0,1,132.0,1,37,37,9,5,126.1,0,0,1,1,1,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,1 +6,39,1,8014,1,1,133.1,1,37,37,9,9,119.0,0,0,1,1,1,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,133.1,1,1,37,7,7,118.0,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,123.0,1,38,38,4,7,114.3,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9991,1,1,143.0,1,19,37,5,8,135.0,0,0,1,1,1,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,128.0,1,1,1,2,10,116.5,0,0,1,1,0,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,0 +2,39,1,9085,0,1,120.0,1,19,19,1,4,130.0,0,0,1,1,1,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,0 +2,39,1,171,0,19,100.0,1,37,37,9,9,139.0,0,0,1,1,0,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,43,3,9500,0,1,139.0,1,38,37,9,8,146.5,0,0,1,1,1,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,1 +1,1,1,9085,0,1,120.0,1,37,37,9,1,123.2,0,0,1,1,1,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,1 +1,39,1,9085,0,1,140.0,1,3,3,4,2,141.7,1,0,1,1,1,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,127.0,1,2,2,3,4,115.8,1,0,1,1,0,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,117.0,1,19,19,9,9,116.3,1,0,1,1,1,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,152.0,1,19,37,3,8,156.9,0,0,1,1,1,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,140.0,1,1,19,4,4,140.7,0,0,1,1,1,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,133.0,1,3,19,2,7,120.4,1,0,1,1,1,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,1 +1,39,1,9147,0,1,160.0,1,38,38,7,9,121.4,0,1,1,1,1,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,120.0,1,1,2,9,3,130.0,1,0,1,1,1,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,1 +1,17,2,9238,0,1,139.0,1,2,3,3,3,132.7,1,0,1,1,1,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,100.0,1,37,37,6,6,108.3,0,0,1,1,0,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,2 +1,1,2,8014,1,1,107.0,1,19,11,0,0,103.5,1,0,1,1,1,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,1 +1,17,5,9773,0,1,113.0,1,38,38,191,175,110.2,1,0,0,1,1,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,39,1,9670,0,12,133.1,1,1,19,1,5,100.0,1,0,0,0,1,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,39,140.0,1,38,19,9,5,110.0,0,0,1,1,1,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,2 +1,18,2,9238,0,1,126.0,1,19,37,5,7,129.9,1,0,1,1,0,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,1 +1,18,1,9254,0,1,137.0,1,19,19,4,5,126.9,0,0,1,1,0,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,1 +1,17,1,9773,0,1,121.0,1,37,37,9,9,122.4,0,0,1,1,1,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,51,1,9070,0,1,122.0,1,38,38,9,9,128.8,1,0,1,1,0,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,141.0,1,1,1,3,10,142.8,0,0,1,1,1,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,1 +2,39,1,9670,0,1,130.0,1,19,38,9,9,162.3,0,0,1,1,0,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,0 +1,18,1,9853,0,1,133.1,1,1,19,141,182,106.0,1,0,0,1,1,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,2 +1,17,1,9147,0,1,120.0,1,19,19,3,3,113.4,0,0,1,1,1,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,147.0,1,37,19,7,7,134.4,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,44,1,9003,0,1,120.0,1,1,3,144,123,120.0,0,0,1,1,0,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,2 +1,17,4,9500,0,1,137.0,1,1,37,9,9,128.4,1,0,1,1,1,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,1 +1,39,1,9238,0,19,133.1,1,37,37,9,9,120.0,0,1,0,1,1,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,0 +4,39,1,9085,0,1,140.0,1,37,37,9,9,154.6,0,0,1,0,1,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,2 +1,39,1,9003,0,19,133.1,1,37,19,9,7,134.3,0,0,1,1,0,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,0 +1,39,1,9119,0,1,130.0,1,19,37,9,4,149.0,1,0,1,1,0,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,2 +1,17,1,9254,0,1,115.0,1,1,19,3,3,109.4,1,0,1,1,1,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,1 +1,17,1,9003,0,1,126.0,1,37,3,5,2,116.9,0,0,1,1,0,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,128.0,1,1,1,2,2,130.8,1,0,1,1,1,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,0 +1,1,1,9254,0,1,127.0,1,19,19,4,6,120.7,0,0,0,0,1,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,43,1,9238,0,1,110.0,1,14,14,90,90,112.5,1,0,1,1,1,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,142.0,1,3,19,5,5,130.8,1,0,1,1,1,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,1 +1,39,1,9130,0,1,150.0,1,1,1,4,10,110.0,0,0,0,1,0,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,0 +1,1,5,9238,0,3,135.0,1,1,38,9,3,129.4,0,0,0,1,1,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,133.0,1,19,37,1,9,128.5,1,0,1,1,1,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,1 +1,39,2,9991,1,1,133.1,1,19,38,9,9,102.5,0,0,1,0,0,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9773,0,1,136.0,1,1,38,9,8,131.5,1,0,1,1,1,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,138.0,1,37,38,9,8,134.2,1,0,1,1,1,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,7,2,9500,0,3,140.0,1,37,38,9,9,138.0,0,0,1,1,0,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,0 +1,43,1,9003,0,1,120.0,1,1,1,4,10,134.4,0,0,1,1,0,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,140.0,1,19,19,9,9,124.3,1,0,1,1,1,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,1 +1,17,3,9254,0,1,127.0,1,12,38,5,7,116.9,1,0,0,1,1,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,0 +1,17,1,9238,0,1,145.0,1,38,38,9,7,145.0,0,0,1,1,1,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +2,39,1,8014,1,1,140.0,1,19,19,9,7,102.5,0,0,1,1,1,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,1 +1,17,6,9500,0,1,131.0,1,1,19,7,7,126.5,1,0,1,1,1,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,1 +1,1,2,9500,0,1,124.0,1,34,34,0,0,123.3,1,0,1,1,1,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,0 +2,39,1,9991,1,1,120.0,1,37,3,9,3,168.2,0,0,1,1,0,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,5,9773,0,1,118.0,1,38,19,9,9,113.8,1,0,1,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,122.0,1,19,38,7,7,117.1,1,0,1,1,1,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,115.0,1,19,1,3,7,113.6,0,0,1,1,0,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,2 +1,17,2,9254,0,1,141.0,1,1,4,4,4,127.7,0,0,1,1,1,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,1 +1,44,1,8014,1,39,130.0,1,37,38,6,6,130.0,1,0,1,1,1,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,1 +1,17,2,9556,0,1,120.0,1,37,37,5,5,111.3,1,0,1,1,1,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,145.0,1,1,19,10,5,150.6,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,129.0,1,38,19,3,7,118.9,1,0,1,1,1,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,2 +1,1,5,9085,0,1,121.0,1,38,37,9,8,114.0,1,0,1,0,1,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,0 +1,17,1,9254,0,1,126.0,1,1,1,9,9,124.3,0,0,1,1,1,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,149.0,1,1,3,0,0,148.7,0,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9147,0,1,125.0,1,38,38,6,8,114.5,1,0,1,1,1,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,1 +1,16,3,9085,0,1,130.0,1,37,37,9,2,119.5,1,0,1,1,1,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,145.0,1,19,37,9,9,132.3,1,0,1,1,1,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,2 +1,17,1,9773,0,1,128.0,1,19,38,5,7,125.6,1,0,1,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9254,0,1,135.0,1,38,37,9,7,139.2,0,0,1,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,139.0,1,37,38,6,6,121.3,1,0,1,1,1,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,2 +1,44,1,9070,0,39,150.0,1,12,37,3,9,147.7,0,0,0,1,1,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,110.0,1,3,19,4,5,109.0,0,0,1,1,0,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,133.1,1,38,38,5,9,105.0,1,0,1,1,1,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,1 +2,51,1,9991,1,1,127.0,1,37,37,8,4,100.1,0,0,1,1,1,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,1 +1,17,1,171,0,1,135.0,1,19,1,4,1,131.9,1,0,1,1,0,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,1 +4,39,1,9556,0,1,160.0,1,19,3,9,2,130.0,0,0,1,1,1,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,2 +1,17,5,9119,0,1,123.0,1,3,1,2,9,116.0,1,0,0,0,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,43,1,9500,0,1,140.0,1,19,19,7,7,138.6,0,0,1,1,1,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,1 +1,17,3,9238,0,1,141.0,1,19,38,9,7,125.6,1,0,1,1,1,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,39,1,9500,0,3,130.0,1,2,2,1,1,130.0,0,0,1,1,1,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,37,37,7,9,111.0,0,0,1,0,0,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9070,0,1,148.0,1,1,1,4,8,141.4,0,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9147,0,1,115.0,1,1,38,3,8,109.8,1,0,1,1,1,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,1 +1,7,3,9130,0,3,130.0,1,19,37,90,5,130.0,0,0,0,0,1,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,0 +1,1,5,9500,0,1,141.0,1,38,19,7,7,132.5,1,0,1,0,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,133.0,1,19,37,9,9,129.9,0,0,1,1,0,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,142.0,1,19,37,4,7,141.3,0,0,1,1,1,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,130.0,1,37,37,9,10,130.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,133.1,1,19,38,7,4,125.7,0,0,1,1,1,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,129.0,1,19,37,9,9,117.5,1,0,1,1,1,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,103.0,1,1,19,9,9,108.3,0,0,1,1,1,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,2 +1,1,1,9853,0,1,133.1,1,19,19,9,9,97.0,1,0,1,1,1,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,0 +2,7,1,9238,0,3,150.0,1,37,37,191,192,150.0,0,0,1,1,1,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,0 +1,39,1,9085,0,12,133.1,1,34,34,99,99,128.2,0,0,0,0,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9070,0,1,129.0,1,3,4,2,2,136.4,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,2 +1,39,2,9147,0,38,133.1,1,19,38,9,9,102.5,0,0,1,0,0,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9853,0,1,133.1,1,34,34,0,0,118.9,1,0,1,1,1,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,135.0,1,19,38,9,9,129.2,0,0,1,1,1,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,122.0,1,37,37,9,3,115.7,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,42,1,9853,0,1,120.0,1,1,19,4,7,111.3,0,0,1,1,1,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,141.0,1,38,19,9,10,125.6,1,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,1 +1,17,4,9500,0,1,133.0,1,19,19,3,10,131.1,1,0,1,1,1,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,106.0,1,1,19,4,4,106.4,1,0,1,1,1,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,2 +2,39,1,9147,0,1,133.1,1,37,37,9,9,140.0,0,0,1,0,1,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,0 +1,51,1,9070,0,1,130.0,1,3,1,2,8,122.2,0,0,0,1,1,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,1 +1,17,6,9500,0,1,143.0,1,38,1,9,10,127.3,1,0,1,1,1,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,154.0,1,1,1,5,7,154.7,0,0,1,1,1,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,1 +1,7,1,9991,1,40,120.0,1,37,37,9,7,120.0,0,0,1,1,1,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,151.0,1,37,1,9,9,138.4,1,0,1,1,1,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,1 +2,39,2,9003,0,19,133.1,1,38,19,4,1,110.0,0,0,1,0,0,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9119,0,1,129.0,1,12,1,4,10,124.1,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,0 +1,17,1,9238,0,1,120.0,1,37,37,4,9,117.1,1,0,1,1,1,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,133.1,1,3,1,4,9,105.0,1,0,1,1,0,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,2 +1,17,1,9147,0,1,120.0,1,38,38,9,8,118.3,0,0,1,1,0,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,0 +1,18,1,9147,0,1,147.0,1,19,1,9,7,139.3,1,0,1,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,140.0,1,19,19,5,5,131.3,0,0,1,1,0,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,133.0,1,38,19,9,8,128.8,1,0,1,1,0,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,1 +1,17,1,9254,0,1,127.0,1,1,1,4,8,126.7,1,0,1,0,0,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9147,0,1,131.0,1,1,19,4,5,120.2,1,0,1,1,1,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,143.0,1,38,38,5,5,133.9,0,0,1,1,1,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,1 +4,39,1,9147,0,1,140.0,1,37,37,9,9,142.8,0,0,1,1,1,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,138.0,1,19,1,5,5,128.0,1,0,1,1,1,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,1 +1,43,1,9500,0,1,150.0,1,37,37,9,9,130.8,1,0,1,1,1,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,160.0,1,19,38,9,9,152.0,0,0,1,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,42,1,9254,0,1,154.0,1,38,37,1,1,154.0,1,0,1,1,1,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,141.0,1,37,37,4,4,138.9,0,0,1,1,1,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,135.0,1,38,37,9,8,126.3,1,0,1,1,1,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,1 +1,17,2,9853,0,1,138.0,1,1,1,9,4,123.0,1,0,1,1,1,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,0 +2,1,1,9085,0,1,139.0,1,19,19,192,144,127.1,0,0,1,1,0,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,1 +1,17,4,9070,0,1,116.0,1,38,37,9,9,109.0,0,0,1,1,1,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,0 +1,44,1,9003,0,39,140.0,1,38,38,6,3,140.0,0,0,1,1,1,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9254,0,1,120.0,1,19,19,4,4,125.5,0,0,1,1,0,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,43,1,9991,1,1,120.0,1,37,37,9,8,122.5,1,0,1,1,1,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,2 +1,17,1,9070,0,1,136.0,1,1,37,4,5,130.8,0,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,116.0,1,38,19,8,10,110.8,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9853,0,1,146.0,1,19,38,9,3,145.3,1,0,1,1,1,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,150.0,1,37,37,9,7,150.0,0,0,1,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9670,0,1,124.0,1,1,19,5,4,124.4,0,0,1,1,1,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,39,1,8014,1,1,133.1,1,37,38,9,9,148.5,0,0,1,1,0,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,148.0,1,1,1,9,9,127.0,1,0,1,1,0,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,1 +4,1,1,8014,1,1,133.1,1,39,19,4,10,143.0,1,0,1,1,1,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,133.1,1,1,19,3,5,115.0,0,0,1,0,0,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,0 +2,44,1,9003,0,39,160.0,1,37,38,9,4,160.0,0,0,1,1,1,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,1 +1,16,3,9070,0,1,152.0,1,1,38,4,8,156.9,1,0,1,1,1,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,37,37,9,9,126.3,0,0,1,1,1,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,1,5,9773,0,1,131.0,1,1,38,9,5,132.4,1,0,0,0,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,9556,0,1,140.0,1,37,37,9,8,105.0,1,0,1,1,1,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,1 +1,1,3,9070,0,1,128.0,1,19,19,3,3,129.8,1,0,1,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,2 +1,1,2,9500,0,1,133.1,1,19,38,7,9,125.5,1,0,1,1,1,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,1 +1,44,1,9238,0,39,140.0,1,38,37,7,7,143.0,0,0,1,1,1,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,139.0,1,19,38,4,9,146.7,1,0,1,1,1,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,1 +1,17,1,9085,0,1,129.0,1,1,37,9,9,118.2,1,0,1,1,1,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,1 +1,43,1,9238,0,1,142.0,1,34,34,99,99,131.9,0,0,1,1,1,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,1 +1,1,3,9500,0,1,139.0,1,1,19,9,3,130.3,1,0,1,1,1,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,120.0,1,19,38,5,5,152.4,0,0,1,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,149.0,1,19,19,4,6,147.6,1,0,1,1,1,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,1 +1,51,1,8014,1,2,110.0,1,19,38,9,10,110.0,0,0,1,1,0,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,1 +1,17,3,9119,0,1,135.0,1,1,19,141,193,121.7,1,0,1,1,0,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,2 +1,1,4,9773,0,1,122.0,1,19,19,9,7,121.0,1,0,1,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,7,1,9003,0,3,120.0,1,1,19,4,1,120.0,1,0,1,1,0,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,1 +1,17,4,9500,0,1,140.0,1,19,37,4,8,133.3,1,0,1,1,1,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,121.0,1,1,1,5,4,111.9,1,0,1,0,0,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9119,0,3,130.0,1,1,38,90,90,143.4,0,0,1,1,0,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,9238,0,1,120.0,1,37,37,6,9,121.0,0,0,1,1,1,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,154.0,1,38,37,4,4,141.4,0,0,1,1,1,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,1 +1,7,1,8014,1,40,130.0,1,19,1,5,10,130.0,1,0,0,0,1,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,1,133.1,1,1,1,4,4,120.0,0,0,0,0,0,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,120.0,1,37,1,9,5,113.4,1,0,1,1,1,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,1 +1,1,5,9500,0,1,139.0,1,38,37,7,7,126.3,1,0,1,1,1,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,135.0,1,38,19,194,193,135.4,1,0,1,1,0,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,150.0,1,3,2,2,2,150.0,0,0,1,1,0,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,0 +2,43,1,9991,1,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,1 +1,43,1,9500,0,1,130.0,1,1,1,7,4,136.0,1,0,1,1,0,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,1 +1,39,1,9003,0,3,130.0,1,3,3,1,2,150.0,0,0,1,1,1,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,1 +1,17,2,9147,0,1,123.0,1,1,38,4,7,115.3,1,0,1,1,1,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,2 +1,1,5,9500,0,1,101.0,1,38,38,9,9,104.5,1,0,1,1,1,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,140.0,1,1,19,9,9,128.8,0,0,1,1,0,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,1 +1,39,2,9119,0,1,120.0,1,37,37,5,5,128.0,0,0,1,1,0,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,8014,1,15,133.1,1,34,34,0,0,100.0,1,0,1,0,1,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9130,0,1,133.1,1,6,11,4,5,138.4,0,0,1,1,0,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,142.0,1,37,37,6,7,136.1,1,0,1,1,1,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,132.0,1,37,37,9,9,123.6,1,0,1,1,1,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,19,19,9,9,126.9,1,0,1,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,15,1,9238,0,1,150.0,26,3,37,2,8,132.5,1,0,1,0,1,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,1,1,9853,0,1,142.0,1,12,12,9,4,132.6,1,0,1,1,1,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,1 +1,17,4,9254,0,1,106.0,1,37,19,9,7,116.9,1,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,1 +1,17,4,9070,0,1,160.0,1,1,19,5,7,155.5,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,1 +1,42,1,9500,0,1,157.0,1,3,3,3,3,100.0,0,0,1,1,1,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,131.0,1,3,19,1,4,118.8,0,0,1,1,1,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,1 +1,43,2,9773,0,1,120.0,1,34,34,0,0,103.6,1,0,1,1,1,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,125.0,1,34,37,9,9,129.2,1,0,0,0,1,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,0 +1,1,4,9085,0,1,145.0,1,37,1,9,9,145.0,1,0,1,1,1,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,136.0,1,1,1,9,3,122.7,1,0,1,1,0,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,2 +1,1,4,9147,0,1,120.0,1,19,38,5,5,122.8,1,0,1,1,0,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,2 +1,1,2,9085,0,1,140.0,1,37,38,9,7,137.0,0,0,1,1,1,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,120.0,1,4,1,4,10,112.0,1,0,1,1,1,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,2 +1,43,1,9147,0,1,123.0,1,37,38,7,7,110.0,0,0,1,1,0,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,138.0,1,38,19,9,5,144.3,0,0,1,1,1,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,12,133.1,1,37,37,9,9,120.0,0,0,1,1,1,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,51,1,9147,0,1,140.0,1,19,19,9,7,120.4,0,0,0,0,1,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,145.0,1,37,1,9,4,138.8,1,0,1,1,1,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,133.0,1,19,38,5,0,133.7,1,0,1,1,1,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9130,0,39,150.0,1,5,1,2,5,150.0,1,0,1,1,0,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,2 +1,43,1,9991,1,1,140.0,1,37,38,9,8,135.5,0,0,0,0,1,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,0 +1,1,1,9254,0,1,123.0,1,38,19,9,4,117.8,0,0,1,1,0,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,2 +1,1,4,9500,0,1,125.0,1,1,12,3,6,115.2,1,0,1,1,1,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,1 +1,17,2,9254,0,1,129.0,1,12,37,9,9,122.0,1,0,1,1,1,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,5,2,9070,0,1,143.0,1,1,1,4,10,146.2,1,0,1,1,0,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,117.0,1,38,38,4,9,120.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +2,39,1,9991,1,3,130.0,1,3,1,1,10,160.0,0,0,1,1,1,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,0 +1,17,1,9556,0,1,133.0,1,38,37,9,9,124.4,1,0,1,1,1,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,1 +1,1,1,9003,0,1,124.0,1,38,19,9,7,116.0,0,0,1,1,0,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,164.0,1,19,1,9,9,161.2,0,0,1,1,0,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,1 +1,43,1,9991,1,1,130.0,1,37,37,9,9,119.5,1,0,1,1,1,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,100.0,1,1,19,1,5,130.0,0,0,0,1,1,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,142.0,1,19,19,7,3,132.9,0,0,1,1,0,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,126.0,1,19,19,3,7,123.9,0,0,1,1,1,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,1 +1,1,4,9254,0,1,132.0,1,1,38,5,6,122.6,1,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,1 +1,1,6,9238,0,1,125.0,1,38,1,7,4,118.4,1,0,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,9003,0,1,140.0,1,3,3,2,2,110.0,0,0,1,1,0,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,1 +1,1,1,171,0,1,138.0,1,1,40,4,3,149.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,43,1,171,0,1,144.0,1,19,19,9,4,121.6,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,2,9773,0,1,129.0,1,37,37,9,7,117.1,1,0,1,1,1,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,2 +1,1,6,9853,0,1,114.0,1,19,19,9,9,110.2,1,0,1,1,0,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,0 +2,42,1,9147,0,1,100.0,1,37,37,9,9,100.0,1,0,1,1,1,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,135.0,1,38,19,9,5,126.3,0,0,1,1,0,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,171,0,1,156.0,1,3,3,2,2,147.7,1,0,1,1,1,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,1 +1,1,1,9147,0,1,139.0,1,38,1,5,5,127.1,1,0,1,1,0,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,127.0,1,1,37,4,9,128.1,0,0,1,1,0,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,2 +1,1,5,9070,0,1,124.0,1,37,37,9,9,113.9,1,0,1,1,1,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,17,4,9500,0,1,129.0,1,38,37,9,5,120.0,1,0,1,1,1,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,118.0,1,19,19,9,9,122.2,0,0,1,1,1,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,1 +2,39,1,9556,0,19,133.1,1,38,37,7,7,99.5,1,0,0,0,1,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,130.0,1,38,38,7,7,136.3,1,0,1,1,0,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,1 +1,17,1,9853,0,1,112.0,1,2,19,3,9,106.1,1,0,1,1,1,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,2 +1,43,1,9119,0,1,146.0,1,3,1,2,3,100.0,0,0,1,1,0,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9085,0,1,132.0,1,1,12,4,5,124.3,0,0,1,1,1,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,2 +1,17,1,8014,1,1,136.0,1,37,37,5,8,132.5,0,0,0,1,1,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,1 +1,7,1,9500,0,3,130.0,1,37,37,90,90,130.0,1,0,1,1,0,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,135.0,1,1,1,4,4,122.8,0,0,1,1,1,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,1 +2,39,1,9254,0,1,130.0,1,37,37,9,9,125.0,0,0,1,1,1,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,1 +2,43,1,8014,1,1,130.0,1,34,34,0,0,130.0,0,0,1,1,1,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,133.1,1,19,19,9,8,132.0,1,0,1,1,1,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,0 +2,39,1,9070,0,1,160.0,1,3,1,2,5,126.5,0,0,1,1,1,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,1 +1,15,1,9556,0,1,137.0,26,19,1,9,4,137.0,0,0,0,1,1,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,2 +1,17,2,9773,0,1,133.1,1,3,5,0,2,125.8,1,0,1,0,0,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,0 +1,16,4,9238,0,1,135.0,1,37,37,9,9,121.0,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,39,2,9556,0,1,130.0,1,37,19,9,8,110.0,0,0,1,1,0,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,2 +1,1,1,9853,0,1,123.0,1,1,38,9,6,121.6,1,0,1,1,1,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,2 +1,1,1,9119,0,1,126.0,1,38,19,5,5,130.2,0,0,1,1,0,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,2 +1,1,5,9500,0,1,122.0,1,37,3,9,2,116.8,1,0,1,1,1,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,132.0,1,38,38,9,9,119.3,1,0,1,1,1,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,116.0,1,38,1,5,1,111.1,0,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9500,0,1,113.0,1,38,19,9,7,106.7,1,0,1,1,1,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,2 +1,39,1,9670,0,1,120.0,1,34,34,0,0,106.0,1,0,1,0,0,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,0 +1,17,2,9500,0,1,145.0,1,19,37,5,9,130.5,1,0,1,1,1,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,1 +2,39,1,9238,0,19,133.1,1,37,37,4,4,98.5,0,0,1,1,1,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,0 +1,1,1,9500,0,1,152.0,1,41,19,3,5,137.8,0,0,1,1,1,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,1 +1,43,2,8014,1,3,130.0,1,34,34,0,0,130.0,0,0,1,1,0,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,1 +1,1,1,9773,0,1,152.0,1,38,37,9,9,139.1,0,0,1,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,18,1,9003,0,1,133.1,1,1,38,9,6,101.0,0,0,1,1,0,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,140.0,1,19,1,9,8,105.0,0,0,1,1,1,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,2 +1,1,1,9500,0,1,162.0,1,19,1,5,5,147.5,1,0,1,1,1,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,1,133.1,1,19,1,4,1,101.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9119,0,1,116.0,1,19,1,9,7,112.2,0,0,1,1,0,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9085,0,1,133.0,1,38,37,9,7,120.1,1,0,1,1,1,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,1 +1,44,1,171,0,39,110.0,1,37,37,5,6,108.3,0,0,1,0,1,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,0 +1,17,2,9773,0,1,121.0,1,1,1,5,5,123.1,1,0,1,1,0,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,1 +1,17,1,9556,0,1,133.0,1,1,38,4,9,119.0,0,0,1,1,1,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,2 +1,17,1,9147,0,1,139.0,1,1,38,4,5,152.0,0,0,1,1,1,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,160.0,1,12,38,4,8,160.0,1,0,1,1,0,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,133.1,1,19,19,7,7,117.0,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9147,0,1,128.0,1,3,1,3,3,121.0,1,1,0,1,0,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,2 +1,1,2,9773,0,1,116.0,1,1,19,4,7,127.6,1,0,1,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,0 +1,18,3,9119,0,1,111.0,1,1,19,9,8,111.0,1,0,1,1,0,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,146.0,1,1,1,9,7,126.0,0,0,1,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,2 +1,53,1,9085,0,42,140.0,1,1,1,5,5,143.3,1,0,1,0,1,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,2 +1,1,1,9070,0,1,144.0,1,1,1,3,5,127.2,1,0,1,1,1,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,141.0,1,38,1,5,7,132.6,0,0,1,1,1,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,18,1,9085,0,1,153.0,1,37,37,9,9,138.0,1,0,1,1,1,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,0 +1,1,3,171,0,1,137.0,1,1,3,5,2,133.9,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,150.0,1,19,38,9,5,143.0,0,0,1,1,1,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,1,9,6,126.1,1,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,5,9070,0,1,133.0,1,4,1,4,4,132.0,1,1,1,1,1,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,140.0,1,1,19,9,9,140.0,1,0,1,1,1,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,2 +1,1,1,171,0,1,133.1,1,3,1,2,4,128.2,1,0,1,1,1,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,1 +1,39,1,9085,0,1,133.1,1,37,36,90,7,128.2,0,0,1,1,0,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,43,1,9070,0,1,114.0,1,19,38,9,7,135.9,0,0,1,1,0,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,1 +2,51,1,9500,0,1,130.0,1,37,37,5,5,120.0,0,0,1,1,0,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,0 +1,43,1,9670,0,39,110.0,1,19,3,7,10,110.0,0,0,1,1,1,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,2 +1,43,1,9500,0,1,148.0,1,29,38,90,3,131.0,1,0,1,1,1,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,1 +1,18,1,9254,0,1,118.0,1,38,38,5,5,123.3,1,0,1,1,0,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,2 +1,7,1,9003,0,3,130.0,1,1,38,9,7,130.0,1,0,1,0,0,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,133.1,1,3,38,2,7,121.7,0,0,1,1,0,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +1,18,1,9991,1,1,133.1,1,38,38,5,5,145.0,0,0,1,1,1,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,2 +1,1,4,9773,0,1,136.0,1,1,12,9,10,121.7,1,0,1,1,1,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,1 +1,17,1,9500,0,1,160.0,1,19,1,4,10,153.0,1,0,1,1,1,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,1 +2,53,1,9147,0,42,130.0,1,19,19,175,152,132.4,0,0,1,1,1,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,2 +1,39,1,9119,0,40,120.0,1,1,1,5,10,146.8,0,0,1,1,0,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,150.0,1,19,11,0,0,131.1,1,0,1,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,122.0,1,1,19,4,3,130.4,1,0,1,1,1,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,1 +1,1,5,9119,0,1,132.0,1,38,19,5,3,119.1,0,0,1,1,1,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,137.0,1,1,3,4,3,124.6,0,0,1,1,1,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,1 +1,1,2,9500,0,1,126.0,1,1,38,4,7,124.3,1,0,1,1,1,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,1 +1,43,1,9238,0,39,120.0,1,2,1,1,2,118.6,0,0,1,1,0,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,132.0,1,34,34,0,0,119.1,1,0,1,1,1,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,1 +1,1,1,9130,0,1,127.0,1,1,1,4,4,120.4,1,0,1,1,1,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,135.0,1,1,38,5,5,122.4,0,0,0,1,1,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,1 +1,18,2,9773,0,1,109.0,1,1,1,4,4,109.0,1,0,1,0,1,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,3,9500,0,1,132.0,1,19,3,9,5,130.8,1,0,1,1,1,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,2 +1,43,1,33,0,19,133.1,1,38,38,4,4,140.0,0,0,0,1,0,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,0 +1,17,1,9773,0,1,120.0,1,37,37,5,5,125.3,0,0,1,1,1,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,1 +1,1,1,9773,0,1,140.0,1,1,19,5,10,141.1,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,145.0,1,19,38,4,4,132.1,1,0,1,1,0,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9254,0,1,122.0,1,19,19,5,5,118.2,0,0,1,1,1,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,2 +1,17,1,8014,1,1,119.0,1,34,34,0,0,112.4,1,0,1,1,1,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,0 +1,1,5,9500,0,1,125.0,1,1,1,3,8,115.6,1,0,1,1,1,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,2 +2,39,1,9991,1,1,150.0,1,1,4,4,2,146.0,0,0,1,1,0,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,2 +1,1,1,9670,0,1,132.0,1,4,2,123,112,143.6,1,0,1,1,0,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,2 +1,1,2,9085,0,1,144.0,1,1,19,4,10,132.1,1,0,1,1,1,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,142.0,1,19,19,1,1,125.5,1,0,1,1,1,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,130.0,1,19,19,9,6,135.0,0,0,1,1,1,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,1 +1,42,1,9119,0,1,140.0,1,19,19,90,90,120.0,0,0,0,0,0,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,143.0,1,1,37,3,8,128.0,0,0,1,1,1,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,1 +1,1,3,9070,0,1,146.0,1,34,34,0,0,143.6,1,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,0 +2,39,1,9130,0,1,130.0,1,1,19,6,6,154.0,1,0,1,1,0,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,1 +2,39,1,9991,1,1,120.0,1,37,37,9,10,170.0,0,0,1,1,1,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,2 +6,39,1,9991,1,12,130.0,1,37,37,90,90,119.0,1,0,1,0,0,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,53,1,9003,0,42,130.0,1,1,1,144,144,125.8,0,0,0,1,1,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,145.0,1,40,1,2,4,160.1,0,0,1,1,1,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,1 +1,44,1,9070,0,1,140.0,1,1,1,9,8,144.3,1,0,1,1,1,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,150.0,1,1,38,6,6,150.0,1,0,1,1,0,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,148.0,1,37,37,9,9,143.5,0,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,123.0,1,19,19,9,8,125.5,0,0,1,0,1,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,1 +1,39,1,9085,0,1,130.0,1,34,1,0,2,128.2,0,0,1,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9991,1,1,130.0,1,1,1,3,7,140.0,0,0,1,1,0,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,1 +1,17,4,9556,0,1,112.0,1,1,1,4,10,107.1,1,0,1,1,1,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,101.0,1,1,1,3,4,102.4,0,0,1,1,1,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,133.0,1,37,37,9,7,121.8,0,0,1,1,0,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,1 +2,39,1,9500,0,1,133.1,1,3,1,5,5,148.8,0,0,1,1,1,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,157.0,1,19,38,5,3,149.3,0,0,1,1,1,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,163.0,1,3,4,2,5,175.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,4,9070,0,1,148.0,1,1,3,4,1,163.4,1,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,1 +1,53,1,9085,0,42,130.0,1,38,38,9,9,128.8,0,0,1,1,1,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,0 +1,39,1,8014,1,1,120.0,1,1,1,4,4,150.5,0,0,1,1,1,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,1 +1,51,1,9147,0,1,130.0,1,1,1,4,4,120.0,0,0,1,1,1,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,2 +4,39,2,9556,0,19,133.1,1,19,19,4,6,123.0,0,0,1,1,1,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,1 +4,39,1,8014,1,19,140.0,1,37,37,9,3,131.0,0,0,1,1,1,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,1 +1,43,1,9147,0,1,131.0,1,19,38,9,9,129.7,1,0,1,1,1,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,1 +1,7,1,9238,0,40,130.0,1,37,37,5,5,130.0,0,0,1,1,0,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,1 +1,1,1,9130,0,1,133.0,1,3,1,2,4,126.0,0,0,1,1,0,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,100.0,1,1,1,4,4,120.0,0,0,1,1,0,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,0 +2,7,1,9147,0,3,120.0,1,37,37,9,9,120.0,0,0,1,1,1,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,2 +1,39,1,9119,0,1,138.7,1,1,12,4,3,111.3,0,0,1,1,0,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,135.0,1,38,38,5,7,121.0,0,0,1,1,1,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,116.0,1,1,19,5,9,111.1,0,0,1,1,0,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,1 +1,43,1,9130,0,1,100.0,41,3,4,3,2,100.0,0,0,1,1,1,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,2 +1,7,1,9147,0,3,130.0,1,37,19,9,8,130.0,0,0,1,1,1,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,1 +1,1,4,9085,0,1,138.0,1,3,1,1,4,123.3,1,0,1,1,1,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,1 +1,17,1,9003,0,1,131.0,1,19,1,9,2,134.5,1,0,1,1,1,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,139.0,1,38,1,9,5,131.8,1,0,1,1,1,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,1 +4,39,1,9991,1,1,133.1,1,37,37,6,6,136.2,0,0,1,1,1,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,1 +1,44,1,9070,0,39,123.9,1,37,1,9,7,123.9,0,0,1,1,0,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,0 +1,1,1,9147,0,1,143.0,1,3,1,5,5,152.1,1,0,0,1,0,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,0 +1,1,6,9500,0,1,142.0,1,1,37,7,7,123.5,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,124.0,1,2,1,4,10,117.4,1,0,1,1,1,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,1 +1,17,5,9119,0,1,130.0,1,19,1,4,5,118.1,1,0,0,0,0,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,0 +1,17,4,9147,0,1,121.0,1,38,37,6,7,113.0,1,0,1,1,1,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,150.0,1,19,19,4,10,100.0,0,0,1,1,1,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,151.0,1,37,37,9,9,138.0,1,0,1,1,1,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,138.0,1,38,38,9,9,126.8,0,0,1,1,0,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,1 +6,17,3,8014,1,1,115.0,1,19,1,5,90,115.0,0,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,127.0,1,1,19,3,3,120.2,1,0,1,1,1,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,1 +1,51,1,9991,1,1,134.0,1,1,1,5,3,120.6,1,0,1,1,0,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,121.0,1,19,1,7,9,117.9,1,0,1,1,1,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,131.0,1,1,38,4,8,121.9,1,0,1,1,1,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,1 +2,39,1,9500,0,19,133.1,1,38,38,7,8,170.0,0,0,1,1,0,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9147,0,1,100.0,1,37,37,9,5,170.0,0,0,1,1,0,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,95.0,1,37,37,5,8,95.0,0,0,1,0,0,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,0 +1,43,1,8014,1,1,148.0,1,37,37,9,9,134.7,0,0,1,1,1,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,2 +1,1,2,9238,0,1,121.0,1,19,19,191,171,119.3,1,0,0,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,18,2,9119,0,1,136.0,1,1,2,5,4,122.7,1,0,1,1,0,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,0 +1,17,4,9254,0,1,130.0,1,19,1,5,5,130.0,1,0,1,1,0,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,0 +2,43,1,9991,1,1,140.0,1,37,37,4,9,100.0,0,0,1,0,1,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,0 +1,15,1,9254,0,1,160.0,1,1,3,3,3,142.5,1,0,1,0,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,17,3,9500,0,1,138.0,1,1,19,7,8,129.3,1,0,1,1,1,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,1 +1,39,1,9254,0,19,133.1,1,37,37,90,90,100.0,0,0,1,1,0,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,148.0,1,1,37,9,7,143.3,0,0,1,1,1,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,1 +1,7,1,9500,0,3,130.0,1,19,38,4,10,130.0,1,0,1,1,1,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,133.1,1,19,37,9,7,110.0,1,0,1,1,0,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9254,0,1,131.0,1,4,3,7,4,126.1,1,0,1,1,1,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,1 +1,43,2,9500,0,1,136.0,1,38,38,9,5,131.3,0,0,1,1,1,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,1 +1,17,1,9254,0,1,119.0,1,1,1,4,10,125.0,0,0,1,1,0,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,2 +1,17,2,9238,0,1,132.0,1,38,1,7,7,133.1,1,0,1,1,1,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,1 +1,1,4,9500,0,1,126.0,1,12,1,5,10,120.2,0,0,1,1,1,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,2 +1,7,1,9147,0,40,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,161.0,22,37,37,9,9,137.9,0,0,0,0,1,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,1 +1,17,2,9147,0,1,133.0,1,19,1,9,3,120.1,1,0,1,1,1,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,0 +1,51,1,9085,0,1,127.0,1,3,3,2,8,138.8,1,0,1,1,1,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,121.0,1,1,1,1,1,115.1,1,0,1,1,1,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,1 +1,17,1,9130,0,1,130.0,1,3,19,2,9,115.9,0,0,1,1,1,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +2,7,1,9991,1,3,140.0,1,34,34,99,99,140.0,1,0,1,0,0,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,123.0,1,1,1,9,9,113.2,0,0,1,1,1,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9500,0,1,137.0,1,1,1,9,9,127.9,1,0,1,1,1,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,0 +1,1,5,9500,0,1,130.0,1,19,37,9,7,127.6,1,0,1,1,1,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,133.1,1,1,38,3,7,121.7,0,0,1,1,1,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,2 +1,44,1,9130,0,39,130.0,1,3,1,4,1,130.0,1,0,1,0,1,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,107.0,1,2,12,3,10,104.2,1,0,1,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,1 +4,39,1,8014,1,19,133.1,1,37,37,9,9,113.5,0,0,1,1,1,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,1 +1,17,1,9500,0,1,145.0,1,19,37,4,8,136.8,1,0,1,1,1,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,120.0,1,19,38,5,6,112.3,0,0,1,1,1,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,133.1,1,34,34,0,0,125.3,0,0,1,1,0,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,0 +1,1,6,9853,0,1,136.0,1,1,19,5,5,122.0,0,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,1 +1,1,2,9070,0,1,121.0,1,4,1,2,3,120.7,1,0,1,1,1,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,2 +2,1,1,9147,0,1,133.1,1,34,34,0,0,131.8,0,0,1,1,1,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,0 +1,15,1,9670,0,1,133.1,41,1,1,9,4,100.0,0,0,1,1,1,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,127.0,1,19,38,3,3,121.1,1,0,1,1,0,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/y_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..ceb8838855b86b6e12a335df36341e1fc17e5be3 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/y_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/y_train.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..a9c8929b6de4adf43fbb5efd8e679c12dda1b0fc Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/data/benchmark_ds/y_train.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e2ce7e794960a8676a52e40a3d04fdd0f2bf0822 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e560b60ee05c00b20c1829f9be5ee7ef8e259945 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a22a371258ab8267b23b3b79730d7e0f64866e52 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,0,1,126.0,1,38,37,5,5,118.7,0,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,19,37,9,7,111.4,0,0,0,1,1,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,140.0,1,1,1,4,3,140.0,1,0,0,1,0,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,Graduate +1,1,2,9085,1,1,141.0,1,1,38,9,8,128.9,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,128.0,1,19,19,7,8,120.0,1,0,0,1,0,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,123.0,1,4,37,2,9,113.9,0,0,0,1,0,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,1,140.0,41,1,1,9,9,100.0,0,0,1,0,0,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,133.1,1,1,3,9,9,116.0,0,0,0,1,1,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,143.0,1,3,3,2,10,141.3,0,0,1,0,0,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,106.0,1,37,38,191,163,102.2,1,0,1,1,1,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,Enrolled +1,16,2,9085,1,1,136.0,1,37,37,9,9,123.4,1,0,0,1,0,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,125.0,1,38,38,9,9,125.4,0,0,1,0,0,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,Dropout +4,39,1,9773,1,12,120.0,1,37,37,4,9,130.0,0,0,0,0,1,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,Dropout +1,44,1,9853,1,39,150.0,1,3,37,2,7,150.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,145.0,1,1,19,9,9,129.3,0,0,1,1,0,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Graduate +1,44,1,9119,1,39,180.0,1,1,1,9,8,180.0,0,0,0,1,1,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,Enrolled +1,1,4,9085,1,1,135.0,1,38,37,9,9,132.6,1,0,0,1,0,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,130.0,1,3,1,3,6,130.0,1,0,1,1,1,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,182.0,1,19,1,5,7,156.8,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,142.0,1,19,38,7,10,128.4,1,0,0,1,0,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,19,133.1,1,37,37,9,4,103.5,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,1,1,3,3,119.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,44,1,9991,0,39,140.0,1,37,19,9,8,140.0,0,0,0,1,0,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,133.0,1,38,38,9,9,128.8,1,0,0,1,0,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,3,3,132,132,110.6,0,0,0,1,0,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,Enrolled +1,42,1,9773,1,1,133.1,1,19,6,4,3,120.0,0,0,0,1,1,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9147,1,1,160.0,1,37,37,9,7,110.0,0,0,0,1,1,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,100.0,1,19,37,5,5,120.7,0,0,0,1,0,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,136.0,1,19,19,9,9,140.0,1,0,0,1,0,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,135.0,1,3,3,2,2,132.9,1,0,0,0,0,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,Dropout +1,53,1,9003,1,42,130.0,1,1,38,9,6,128.5,0,0,0,1,1,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,140.0,1,37,37,9,9,140.0,0,0,0,1,1,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,124.0,1,19,37,5,7,119.1,0,0,0,1,1,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9556,1,1,140.0,1,37,38,9,9,106.0,1,0,1,0,0,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,Dropout +1,42,4,9500,1,6,133.0,1,1,19,2,9,127.8,1,0,0,1,0,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,130.0,1,19,19,90,90,122.0,0,0,0,1,0,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,125.0,1,37,19,9,9,122.4,1,0,0,1,1,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,3,110.0,1,3,19,4,6,150.0,0,0,0,1,1,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,123.0,1,19,19,1,1,114.6,0,0,0,1,0,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,131.0,1,38,38,9,9,126.5,0,0,0,1,0,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,133.1,1,38,19,132,103,146.0,0,0,1,1,0,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,3,3,2,2,124.9,1,0,0,1,0,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,136.0,1,3,4,2,2,133.9,0,0,0,0,1,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,2,1,4,6,140.0,0,0,0,1,1,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,111.0,1,19,19,9,9,114.2,1,0,0,1,0,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,130.0,1,19,38,7,7,120.2,1,0,0,1,0,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,Graduate +1,7,1,9670,1,3,110.0,1,27,37,3,3,110.0,1,0,0,1,1,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,142.0,1,38,19,7,10,128.4,0,0,0,1,0,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9773,1,1,158.0,1,1,38,4,7,157.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,127.0,1,1,33,3,3,129.8,0,0,0,0,1,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9773,1,1,140.0,1,34,37,0,0,102.5,0,0,0,1,0,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,130.0,1,1,38,5,7,122.0,1,0,0,1,1,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,145.0,1,19,1,6,5,127.9,1,0,0,1,0,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,132.0,1,38,38,9,8,122.6,1,0,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,37,37,9,7,129.9,1,0,0,1,0,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,121.0,1,1,1,4,4,114.9,0,0,0,1,1,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,Graduate +1,7,1,8014,0,3,140.0,1,1,1,4,4,140.0,0,0,0,1,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,137.0,1,1,19,4,4,125.3,0,0,0,1,1,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,Enrolled +1,18,1,9670,1,1,133.0,1,1,1,9,9,121.5,1,0,0,1,0,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,42,1,9500,1,1,100.0,1,3,37,2,6,130.0,1,0,0,1,0,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,19,38,9,8,140.9,0,1,0,1,0,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,133.1,1,37,37,9,9,120.0,0,0,0,0,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,8014,0,1,128.0,1,38,38,0,0,122.1,0,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9119,1,1,130.0,1,1,3,4,2,123.0,0,0,0,1,1,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,121.0,1,19,38,7,9,123.8,0,0,0,1,0,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,9070,1,1,122.0,1,1,1,4,8,123.8,1,0,1,0,0,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,12,133.1,1,37,37,9,9,133.8,1,0,0,1,1,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,3,3,2,2,149.0,0,0,0,0,1,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,1,38,1,9,140.0,0,0,0,1,1,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,Dropout +1,1,5,9773,1,1,135.0,1,37,1,5,5,124.9,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,9119,1,1,132.0,1,37,37,9,6,119.4,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,9670,1,3,110.0,1,37,37,7,7,110.0,0,0,0,1,0,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,Graduate +1,17,5,9119,1,1,118.0,1,1,19,9,9,120.5,1,0,0,1,1,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,19,133.1,1,37,19,9,4,140.0,0,0,1,1,0,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,126.0,1,1,1,4,7,115.2,0,0,0,0,0,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9254,1,1,158.0,1,19,39,4,8,153.5,1,0,0,1,0,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,129.0,1,37,38,7,7,122.0,1,0,0,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,12,133.1,1,37,1,9,4,138.4,0,0,0,1,1,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,Dropout +1,7,1,9238,1,3,130.0,1,1,1,4,10,125.1,0,0,1,0,0,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,1,110.0,1,40,1,5,6,142.5,0,0,1,0,1,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,Dropout +1,16,1,9070,1,1,125.0,1,1,1,4,4,120.8,1,0,0,1,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,128.0,1,19,1,5,4,135.7,1,0,0,1,0,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,142.0,1,19,19,9,9,139.9,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,123.0,1,3,12,2,9,116.4,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,125.0,1,19,1,9,10,123.6,1,0,0,1,0,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,12,133.1,1,12,12,9,9,120.0,0,0,0,1,1,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,Dropout +1,17,5,9500,1,1,144.0,1,19,38,9,5,130.7,1,0,0,1,0,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,Graduate +1,17,6,9500,1,1,136.0,1,19,38,9,3,132.5,1,0,0,1,0,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,Graduate +2,43,1,9991,0,1,140.0,1,38,37,5,6,117.3,0,0,0,1,0,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,43,1,9500,1,1,140.0,1,37,37,9,10,105.7,1,0,0,1,0,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,19,133.1,1,1,5,4,3,100.0,0,0,0,1,0,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,3,9238,1,1,143.0,1,37,38,0,7,126.9,1,0,0,1,0,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,138.0,1,37,1,9,9,123.7,1,0,1,1,0,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,34,34,0,0,112.5,0,0,0,1,0,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,141.0,1,3,2,2,3,130.2,1,0,0,1,0,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,139.0,1,1,19,3,9,134.9,1,0,0,1,1,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,3,102.0,1,0,0,1,0,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,153.0,1,38,37,7,8,147.9,0,0,0,1,0,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,Graduate +1,17,3,9085,1,1,121.0,1,38,1,9,9,111.9,1,0,0,1,1,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,149.0,1,37,37,9,6,130.5,1,0,0,1,0,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,Graduate +1,17,5,9773,1,1,139.0,1,38,1,4,4,123.6,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9119,1,1,120.0,1,3,1,123,152,116.9,0,0,0,1,1,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9238,1,1,130.0,1,1,19,4,5,124.8,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,Graduate +1,53,1,9085,1,42,150.0,1,1,19,4,8,145.2,1,0,0,1,0,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,Graduate +4,39,1,9130,1,1,140.0,1,37,37,6,7,150.0,1,0,0,1,1,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,4,171,1,1,133.1,1,1,1,9,10,110.0,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,124.0,1,19,1,9,9,121.2,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9119,1,39,130.0,1,38,19,9,5,130.0,1,0,0,1,1,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,Enrolled +4,7,1,9500,1,3,140.0,1,37,38,9,7,140.0,0,0,0,1,1,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,37,5,9,118.4,0,0,0,1,1,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,33,1,1,130.0,1,19,19,9,9,117.7,0,0,0,1,0,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,Dropout +4,7,1,9500,1,40,130.0,1,19,19,4,6,130.0,0,0,0,0,0,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,144.0,13,3,3,6,6,137.6,1,0,0,1,0,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,132.0,1,38,37,9,9,122.9,0,0,0,0,1,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,Dropout +1,1,2,9773,1,1,124.0,1,3,3,3,4,114.6,1,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,100.0,1,38,38,9,10,100.0,0,0,0,1,0,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,Graduate +1,18,2,9853,1,1,120.0,1,19,37,9,4,113.7,1,0,1,0,0,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9500,1,1,136.0,1,3,3,2,2,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,Graduate +1,39,1,9130,1,1,133.1,1,3,34,3,0,120.0,0,0,1,0,1,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,140.0,1,1,19,3,3,140.0,1,0,0,1,0,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9085,1,1,128.0,1,38,37,9,9,116.5,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,132.0,1,6,6,0,4,119.1,1,0,1,1,0,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,Dropout +1,43,1,9500,1,6,134.0,1,1,37,9,9,120.4,1,0,0,1,0,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,34,34,0,0,100.0,0,0,0,1,0,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,122.0,1,3,1,4,7,116.1,1,0,0,1,0,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,120.0,1,37,37,9,9,117.0,1,0,0,1,0,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,5,9254,1,1,126.0,1,19,19,4,7,116.6,1,0,0,1,0,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,4,160.0,1,3,3,2,1,125.0,0,0,0,1,1,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,130.0,1,37,37,0,0,117.8,1,0,0,1,0,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,169.0,1,19,37,9,7,176.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9500,1,1,137.0,1,3,38,2,4,121.0,0,0,0,1,0,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,132.0,1,19,1,9,5,123.4,0,0,0,1,0,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,3,105.0,1,37,37,7,8,129.7,1,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9254,1,1,119.0,1,19,19,9,9,118.7,1,0,0,1,1,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,120.0,1,37,37,9,6,117.0,0,0,0,1,1,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,6,130.0,0,0,0,1,1,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,143.0,1,19,37,9,9,126.2,1,0,0,1,0,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,39,150.0,1,19,19,9,9,150.3,0,0,0,1,1,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9130,1,1,143.0,1,3,3,2,2,131.8,1,0,1,0,0,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,Enrolled +1,44,1,9238,1,39,140.0,1,19,19,8,8,144.3,1,0,0,1,0,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,131.0,1,19,19,4,4,122.0,1,0,0,1,0,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,Enrolled +1,17,2,9500,1,1,127.0,1,3,3,1,10,118.8,1,0,0,1,1,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,146.0,1,37,38,9,7,128.5,0,0,1,1,0,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,3,140.0,1,39,39,9,4,140.0,0,0,0,1,1,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,123.0,1,38,19,4,90,127.2,0,0,1,0,1,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,5,128.2,0,0,1,0,1,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,126.0,1,1,1,9,9,127.4,1,0,0,1,0,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,37,37,9,9,150.0,0,0,0,1,0,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,130.0,1,38,19,9,6,120.0,1,0,0,1,1,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,103.0,1,19,37,7,9,104.1,0,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,145.0,1,3,19,1,5,130.0,1,0,0,1,0,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,123.0,1,1,38,9,9,116.7,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,5,1,120.0,1,0,0,1,0,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,141.0,1,19,1,90,90,128.0,0,0,0,1,1,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,124.0,1,3,3,2,2,119.1,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,4,9853,1,1,116.0,1,3,38,3,8,110.4,1,0,0,1,0,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,119.0,1,38,19,9,9,115.2,0,0,0,1,1,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,37,37,7,7,113.9,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +2,43,1,9147,1,2,120.0,1,37,37,9,9,122.8,0,0,1,0,0,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,6,122.0,1,19,19,9,9,126.2,1,0,0,1,0,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,122.0,1,1,1,2,5,113.3,1,0,0,1,0,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,142.0,1,1,1,9,9,127.7,1,0,0,1,1,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,116.0,1,1,1,3,3,120.9,0,0,0,1,1,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,128.0,1,1,19,4,7,125.6,1,0,0,1,1,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,Graduate +1,7,1,9991,0,40,130.0,1,1,3,4,2,130.0,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,1,19,9,7,120.0,0,0,0,1,1,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,137.0,1,38,37,9,9,122.3,0,0,0,1,1,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,122.0,1,41,1,4,3,119.6,1,0,0,1,0,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,157.0,1,38,37,9,5,137.8,0,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9130,1,1,132.0,1,19,38,9,9,130.4,1,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Graduate +4,43,1,8014,0,12,133.1,1,34,34,0,0,106.0,1,0,0,1,0,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9130,1,1,127.0,1,3,1,2,1,116.5,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,8014,0,1,125.0,1,37,37,5,6,122.2,1,0,1,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9556,1,1,128.0,1,38,38,7,8,123.5,1,0,0,1,0,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,Enrolled +1,43,1,9130,1,1,156.0,1,19,1,9,4,156.0,0,0,1,0,1,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,Dropout +1,7,1,9130,1,3,140.0,1,19,38,9,9,140.0,1,0,0,1,0,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,8014,0,1,123.0,1,34,37,9,90,121.3,1,0,0,1,0,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,19,133.1,1,19,37,7,90,104.0,0,0,0,1,0,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,18,4,9254,1,1,106.0,1,19,37,7,7,106.0,1,0,0,1,1,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,119.0,1,37,37,4,6,113.2,0,0,1,1,0,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,19,19,9,9,100.0,0,0,0,1,0,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,145.0,1,3,1,4,3,149.9,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,166.0,1,19,37,4,8,146.4,0,0,0,1,1,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,145.0,1,38,37,5,5,142.2,0,0,0,1,0,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,156.0,1,19,38,9,1,153.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9853,1,1,117.0,1,19,38,4,0,113.5,1,0,0,1,0,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,138.0,1,37,19,9,9,127.8,1,0,0,1,0,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,40,130.0,1,1,1,4,4,190.0,1,0,0,1,0,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,Graduate +1,17,5,9070,1,1,131.0,1,37,37,9,9,126.1,1,0,0,0,0,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.1,1,19,37,9,9,95.0,1,0,1,0,0,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,143.0,1,1,38,8,8,136.7,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Dropout +1,42,1,8014,0,1,120.0,1,37,38,90,7,120.0,1,0,0,1,0,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,121.0,1,19,19,5,8,117.5,1,0,0,1,0,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,160.0,1,3,1,6,6,116.3,1,0,0,1,0,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,134.0,1,1,38,4,5,122.8,0,0,0,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,7,1,8014,0,3,120.0,1,19,37,5,3,121.3,0,0,0,1,0,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,134.0,1,38,19,9,4,128.4,1,0,0,1,0,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,130.0,1,19,1,7,4,117.8,1,0,0,1,1,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9130,1,1,132.0,1,1,1,3,3,143.9,1,0,0,1,1,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,130.0,1,19,1,9,4,101.3,1,0,0,1,1,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,135.0,1,37,19,5,10,121.0,0,0,1,1,0,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9991,0,39,120.0,1,37,37,7,7,120.0,1,0,0,1,0,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,133.1,1,3,3,2,3,135.0,0,0,0,1,0,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,110.0,1,19,19,9,7,105.8,1,0,0,1,1,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,160.0,1,1,38,4,10,144.3,1,0,0,1,0,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +4,39,1,9254,1,1,120.0,1,37,37,9,8,95.0,0,0,0,1,0,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,137.0,1,19,19,7,7,120.8,1,0,0,1,0,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,144.0,1,19,38,4,8,141.3,1,0,0,1,0,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,148.0,1,19,1,3,9,140.0,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,128.0,1,38,38,7,7,131.5,0,0,0,1,0,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,128.0,1,38,19,191,175,118.6,1,0,0,1,0,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,122.0,1,3,38,123,171,116.1,1,0,1,1,1,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9773,1,1,128.0,1,38,38,6,3,116.5,0,0,0,1,1,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,97.0,1,1,19,2,7,98.1,1,0,0,1,0,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,53,1,9991,0,1,140.0,1,38,38,191,193,135.0,0,0,1,1,0,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,Enrolled +1,1,2,9773,1,1,122.0,1,37,37,9,9,130.8,1,0,0,1,0,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,117.9,0,0,0,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9991,0,1,100.0,1,37,19,9,4,130.0,0,0,0,1,1,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,Dropout +1,17,6,9670,1,1,125.0,1,38,1,9,7,125.0,1,0,0,1,1,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,Graduate +2,7,1,9070,1,43,140.0,1,37,1,9,7,140.0,0,0,0,1,0,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,Graduate +1,7,1,9254,1,3,110.0,1,19,19,3,3,110.0,0,0,0,1,1,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9500,1,1,135.0,1,19,1,5,4,127.3,1,0,0,1,0,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,Graduate +1,17,4,9238,1,1,129.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,8,9,144.9,1,0,1,0,0,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9500,1,1,136.0,1,1,1,4,4,123.8,0,0,0,1,0,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,Graduate +4,43,1,9991,0,1,140.0,1,37,37,5,5,149.8,0,0,0,1,1,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,150.0,1,38,19,9,9,137.8,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +5,39,1,9147,1,1,180.0,1,1,1,4,8,140.5,0,0,1,0,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,131.0,1,19,19,3,7,127.9,1,0,0,1,0,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,110.0,1,1,1,4,4,99.0,0,0,0,1,1,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,Enrolled +1,39,1,9070,1,1,139.3,1,38,38,5,5,117.5,0,0,0,1,1,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9130,1,1,147.0,1,4,1,2,10,141.8,1,0,0,1,0,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,Graduate +2,44,1,8014,0,39,150.0,1,1,1,5,5,154.0,0,0,0,1,1,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,133.1,1,1,1,4,5,131.0,1,0,0,1,0,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,132.0,1,1,38,9,7,127.1,1,0,0,1,0,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,4,9147,1,1,125.0,1,19,19,5,5,118.0,1,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,108.0,1,19,1,9,3,107.8,1,0,0,1,0,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,143.0,1,37,37,9,8,130.6,1,0,0,1,0,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,126.0,1,37,1,7,7,118.7,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9238,1,1,140.0,1,1,44,4,2,124.6,1,0,1,0,1,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,112.0,1,9,22,4,3,106.1,0,0,0,1,0,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,130.0,1,37,37,191,183,163.7,0,0,0,1,0,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,Enrolled +4,39,1,9500,1,19,133.1,1,37,37,6,6,117.8,0,0,1,0,0,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,Dropout +1,18,2,9853,1,1,120.0,1,1,1,9,0,115.8,0,0,0,1,0,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,118.0,1,38,19,9,3,111.0,1,0,0,1,0,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,16,1,171,1,1,150.0,1,37,37,9,9,134.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,133.1,6,37,37,9,6,100.0,0,0,0,1,0,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,137.0,1,1,37,5,9,131.4,1,0,0,1,1,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Dropout +2,44,1,9991,0,39,130.0,1,1,37,4,9,130.0,0,0,0,0,0,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9238,1,1,136.0,1,19,19,4,7,121.7,1,0,0,1,0,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,133.1,1,1,38,9,7,110.5,0,0,0,1,0,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,Graduate +1,39,1,9556,1,19,100.0,1,37,38,9,9,120.0,0,0,0,1,0,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,142.0,1,1,38,3,5,146.9,1,0,0,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,127.0,1,19,19,7,8,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,130.0,1,1,38,7,8,135.6,1,0,0,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,137.0,1,19,38,9,3,125.0,1,0,0,1,0,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,135.0,1,37,37,7,7,124.0,1,0,0,1,0,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,Enrolled +2,39,1,9556,1,1,100.0,6,38,38,9,9,130.0,0,0,0,1,0,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,Graduate +1,42,1,9003,1,39,120.0,1,3,1,2,6,128.2,1,0,0,1,1,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,Enrolled +1,1,3,9773,1,1,121.0,1,19,19,3,3,116.1,0,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,136.0,1,1,19,4,9,131.1,1,0,0,1,0,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,141.0,1,3,19,2,10,126.8,1,0,0,1,1,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9773,1,1,136.0,1,38,38,9,9,132.9,1,0,0,1,1,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,133.1,1,1,1,90,1,120.0,1,0,1,0,1,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,Dropout +1,17,1,8014,0,1,132.0,1,37,19,5,5,121.2,0,0,0,1,0,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,2,9500,1,6,119.1,1,1,19,4,10,119.1,0,0,0,1,1,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,153.0,1,1,19,9,4,139.7,1,0,0,1,0,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,150.0,1,1,1,3,3,143.4,0,0,0,0,1,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Enrolled +1,1,4,9500,1,1,130.0,1,19,19,9,7,119.9,1,0,0,1,0,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,6,140.0,0,0,0,1,1,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,115.0,1,38,37,5,5,115.0,0,0,0,1,0,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,150.0,1,19,37,5,4,142.7,1,0,0,1,0,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,133.1,1,34,5,0,1,118.5,1,0,0,1,0,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9130,1,1,125.0,1,3,3,2,2,132.4,0,0,0,1,1,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,116.0,1,37,37,9,9,110.8,0,0,0,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,Enrolled +1,43,1,9070,1,1,115.0,1,12,12,1,10,115.0,0,0,1,1,1,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,125.0,1,37,37,9,9,118.8,0,0,0,1,1,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,130.0,1,3,1,2,5,133.8,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9500,1,1,141.0,1,12,1,5,5,133.0,1,0,0,1,0,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,141.0,1,38,38,7,10,139.8,1,0,0,1,0,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,Graduate +1,51,1,9147,1,19,133.1,1,19,19,9,5,112.1,0,0,1,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,132.0,1,19,2,9,3,126.0,1,0,0,1,0,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,131.0,1,2,38,4,5,132.3,1,0,0,1,0,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,124.0,1,1,19,9,8,116.7,1,0,0,1,0,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,180.0,103,5,3,1,1,183.5,1,0,0,1,0,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,10,1,9773,1,1,151.0,22,38,37,0,5,151.0,1,0,0,1,0,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,135.0,1,19,19,9,10,133.4,1,0,0,1,0,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,135.0,1,3,3,2,2,137.1,1,0,0,1,0,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.1,1,38,38,5,10,101.0,0,0,0,1,1,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,40,130.0,1,3,2,3,2,160.0,1,0,0,1,0,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,18,1,9773,1,1,124.0,1,38,37,9,8,126.8,0,0,0,1,1,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,140.0,1,19,37,9,9,125.5,1,0,0,1,0,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,1,133.1,1,37,38,9,8,118.9,0,0,0,1,0,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9991,0,1,160.0,1,34,34,0,0,161.8,1,0,1,1,1,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,140.0,1,1,38,4,7,100.0,0,0,0,1,0,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Graduate +1,44,1,9070,1,39,120.0,1,2,19,3,8,120.0,0,0,0,1,1,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,124.0,1,38,19,3,10,128.6,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,Enrolled +1,44,1,9085,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,0,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,145.0,1,1,19,4,3,133.5,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,Graduate +4,39,1,9085,1,1,110.0,1,37,37,90,90,110.0,0,0,0,0,0,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,134.0,1,19,37,4,7,133.5,1,0,0,1,0,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,132.0,1,1,19,4,3,126.4,1,0,0,1,0,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,19,133.1,1,4,1,2,4,120.0,0,0,0,1,1,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,151.0,1,40,4,2,2,144.5,1,0,0,1,0,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +2,39,1,9147,1,19,133.1,1,37,19,9,3,128.0,0,0,0,1,1,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,Dropout +1,39,2,8014,0,1,141.0,1,37,37,9,9,150.5,0,0,0,1,0,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,122.0,1,19,19,4,6,119.9,0,0,0,1,0,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,9,133.1,1,34,34,0,0,110.0,1,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,1,9500,1,1,128.0,1,19,1,9,4,125.8,0,0,0,1,0,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,3,9773,1,1,133.1,1,38,38,5,5,131.3,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,16,6,9147,1,1,128.0,1,37,37,9,9,116.5,1,0,0,1,0,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,1,147.0,1,34,34,90,90,111.7,1,0,0,1,0,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,1,19,6,8,122.0,0,0,0,1,0,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,Graduate +2,39,2,9254,1,19,133.1,1,19,19,9,5,123.5,0,0,0,1,1,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,114.0,1,37,37,9,9,130.0,0,0,0,1,1,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,Graduate +2,39,1,8014,0,1,100.0,1,37,38,9,9,141.5,0,0,0,1,0,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9556,1,1,118.0,1,38,38,5,5,117.8,1,0,0,1,0,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9773,1,19,133.1,1,19,19,171,163,104.0,0,0,1,0,0,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,39,110.0,1,19,37,9,8,127.5,0,0,1,0,0,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,1,120.0,1,37,38,9,8,100.0,0,0,1,1,1,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,133.0,1,19,3,9,9,123.2,1,0,0,1,1,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,133.1,1,34,34,0,0,142.8,0,0,0,1,1,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9119,1,1,120.0,1,34,34,0,0,140.0,1,0,0,1,1,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,120.0,1,3,37,4,7,115.1,1,0,0,1,0,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,Graduate +1,51,1,9119,1,1,140.0,1,1,19,4,4,150.0,0,0,0,1,1,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,Dropout +1,43,1,9556,1,1,149.0,1,1,1,4,8,140.2,1,1,0,1,0,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,160.0,1,37,19,9,10,160.0,1,0,0,1,0,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,115.0,1,19,38,7,8,116.4,1,0,0,1,0,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,140.0,1,4,4,2,10,140.0,1,0,0,1,1,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,19,133.1,1,1,1,4,4,130.0,0,0,0,1,1,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,5,9773,1,1,146.0,1,1,37,5,5,146.7,1,0,0,1,1,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,142.0,1,1,38,9,9,127.0,0,0,1,0,1,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,130.0,1,37,37,9,7,138.0,0,0,0,1,0,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9773,1,9,133.1,1,38,1,5,4,102.0,1,0,0,1,1,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,125.0,1,19,19,7,5,118.0,1,0,0,1,0,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,145.0,1,19,38,4,10,131.7,1,0,0,1,0,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,133.1,1,37,19,9,9,114.0,0,0,0,1,0,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,140.0,1,38,37,4,10,140.0,0,0,1,0,0,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,128.0,1,1,19,4,4,124.5,0,0,0,1,1,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,126.0,1,37,19,9,8,116.9,1,0,0,1,0,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,1,9773,1,1,177.0,1,2,1,123,135,155.7,0,0,1,1,0,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,135.0,1,37,1,5,5,126.8,1,0,0,1,0,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,125.0,1,4,3,1,1,119.8,0,0,0,1,0,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,Graduate +1,53,1,9147,1,42,130.0,1,1,19,143,172,133.8,1,0,0,1,0,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,Graduate +1,17,3,9670,1,1,123.0,1,38,38,7,8,118.8,1,1,0,1,0,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,112.0,1,38,19,9,5,113.8,1,0,0,1,0,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,124.0,1,34,34,0,0,129.3,0,0,0,1,0,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9773,1,12,120.0,1,1,1,9,9,129.8,1,0,0,1,1,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,111.0,1,19,19,9,9,110.0,1,0,0,1,0,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,163.0,1,37,37,5,6,155.0,0,0,0,1,0,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,145.0,1,19,1,9,5,145.0,0,0,0,1,0,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,160.0,1,38,37,9,7,155.5,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,137.0,1,1,3,7,3,131.1,1,0,1,1,0,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,133.1,1,38,38,9,9,113.5,0,0,0,1,0,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,130.0,1,1,1,9,9,131.8,0,0,0,1,1,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,137.0,1,38,37,7,7,126.0,1,0,0,1,0,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,160.0,1,19,1,9,5,107.8,1,0,0,0,1,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9070,1,39,120.0,1,3,38,3,9,120.0,0,0,0,1,1,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,145.0,1,3,3,2,1,129.3,1,0,0,1,0,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,117.0,1,38,19,5,7,118.1,0,0,0,1,1,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,130.0,1,1,1,4,3,130.0,1,0,0,1,0,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,Enrolled +2,43,1,9238,1,12,100.0,1,37,37,9,9,134.4,0,0,0,1,0,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,Graduate +2,43,1,8014,0,14,133.1,1,34,34,0,0,100.0,0,0,0,0,0,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,Dropout +1,17,4,9254,1,1,122.0,1,1,1,4,2,116.1,1,0,0,1,1,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,4,9254,1,1,110.0,1,37,37,9,7,113.2,1,0,0,1,0,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,131.0,1,38,37,4,9,131.7,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,1,19,4,10,150.0,0,0,0,1,1,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,142.0,1,19,38,9,7,127.3,0,0,0,1,1,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,Enrolled +1,7,1,9556,1,43,160.0,1,38,19,9,9,160.0,0,0,0,1,1,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,1,1,9853,1,1,130.0,1,19,12,9,4,133.2,1,0,0,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,43,1,9119,1,1,130.0,1,37,38,9,9,120.0,0,0,1,0,0,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,42,1,3,7,110.5,0,0,0,1,1,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +2,39,1,9003,1,1,130.0,1,1,19,4,9,152.4,1,0,0,1,0,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,Graduate +1,16,1,171,1,1,155.0,1,1,3,5,10,167.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,3,9254,1,1,114.0,26,38,3,9,3,127.3,1,0,1,0,0,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,37,37,9,9,125.4,1,0,0,1,1,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,5,9773,1,1,127.0,1,38,1,4,5,121.1,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Enrolled +1,17,2,171,1,1,130.0,41,1,1,2,3,148.6,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9130,1,1,120.0,1,1,19,9,9,120.0,1,0,0,1,0,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,133.0,1,1,37,4,10,143.2,0,0,0,1,0,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,38,38,9,7,125.2,1,0,0,1,0,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,102.0,1,37,37,7,7,102.0,0,0,0,1,0,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,19,38,5,7,128.5,1,0,0,1,0,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,140.0,1,38,38,7,7,133.2,1,0,0,1,0,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,123.0,1,1,1,3,3,120.9,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,2,9500,1,1,135.0,1,19,1,5,5,128.9,1,0,0,1,0,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,1,3,137.7,0,0,0,0,0,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,158.0,1,3,3,3,3,151.4,1,0,0,0,0,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,37,1,9,3,120.0,0,0,1,0,1,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,51,1,9773,1,1,135.0,1,1,42,5,3,110.0,1,0,0,1,1,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,143.0,1,3,38,2,9,144.1,1,0,0,1,0,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,Enrolled +1,1,3,9070,1,1,132.0,1,1,3,9,7,126.1,1,0,0,1,0,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,141.0,1,19,1,9,10,126.8,1,0,0,1,0,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,130.0,1,38,38,6,9,126.3,1,0,0,1,0,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,1,140.0,1,1,1,4,5,140.0,0,0,0,1,1,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,Enrolled +1,39,2,9147,1,1,130.0,1,19,19,5,9,121.5,0,0,0,0,1,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,51,1,8014,0,19,133.1,1,37,37,9,9,104.0,0,0,1,1,0,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,120.0,1,3,4,2,2,120.0,0,0,0,1,1,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,Graduate +1,1,4,171,1,1,131.0,1,19,19,4,4,119.8,1,1,0,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,18,3,9070,1,1,134.0,1,1,1,3,4,121.4,0,0,0,1,0,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,140.0,1,37,37,9,9,118.2,0,0,0,1,1,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,130.0,1,19,37,9,9,131.8,1,0,0,1,0,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,134.0,1,38,19,3,10,121.2,0,0,0,1,0,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,Graduate +1,43,2,9500,1,1,120.0,1,41,3,2,2,112.7,0,0,0,1,0,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,134.0,1,1,19,4,9,129.8,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,133.0,1,19,1,4,5,127.1,1,0,0,1,0,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,148.0,1,38,37,5,9,137.8,1,0,0,1,0,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,129.0,1,37,37,9,7,117.8,0,0,0,1,0,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,Enrolled +4,39,1,8014,0,3,100.0,1,37,37,9,9,130.0,0,0,0,1,0,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,145.0,1,1,40,9,2,129.6,0,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,4,9254,1,1,124.0,1,1,1,4,4,122.3,1,0,0,1,0,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Dropout +2,43,2,9147,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,Graduate +1,51,1,9556,1,1,131.0,1,1,37,152,193,126.6,1,0,0,1,1,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,44,1,9085,1,39,110.0,1,3,5,2,2,110.0,0,0,0,1,1,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,15,1,9147,1,1,140.0,26,37,2,6,4,140.0,0,0,1,1,1,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,Graduate +2,51,1,9853,1,1,130.0,1,37,37,7,8,120.3,0,0,0,1,0,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,19,133.1,1,37,37,6,6,139.0,0,0,0,1,1,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9670,1,1,120.0,1,37,37,7,7,111.3,1,0,0,1,1,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,3,120.0,1,37,37,7,7,120.0,0,0,0,1,0,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,Dropout +1,17,3,9147,1,1,147.0,1,19,38,5,7,132.3,1,0,0,1,0,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,3,9130,1,1,167.0,1,37,37,90,90,159.3,0,0,0,1,0,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,132.0,1,1,1,4,9,136.6,1,0,0,1,1,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,Enrolled +1,5,2,9853,1,1,124.0,1,19,19,3,3,113.9,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,3,130.0,1,3,1,2,9,130.0,0,0,0,1,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,160.0,1,1,38,4,7,146.5,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,141.0,1,19,3,4,0,137.9,1,0,0,0,1,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,19,37,8,7,100.0,1,0,0,1,0,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,134.0,1,38,19,7,7,124.2,0,0,0,1,0,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,150.0,1,1,37,4,8,145.6,1,0,0,1,0,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,146.0,1,3,1,3,10,138.7,0,0,0,1,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9991,0,40,133.1,1,1,37,4,1,100.0,0,0,0,1,0,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,127.0,1,38,19,9,10,117.9,0,0,0,1,0,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,131.0,1,37,38,9,7,137.0,0,0,0,1,0,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Graduate +1,7,1,9238,1,3,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,Graduate +2,39,1,9085,1,1,133.1,1,37,37,90,90,110.3,0,0,0,1,1,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,125.0,1,38,1,3,10,114.5,1,0,0,1,1,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,152.0,1,19,19,9,5,154.1,0,0,1,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,120.0,1,37,37,4,5,120.0,0,0,1,0,0,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,Dropout +2,39,1,8014,0,1,146.0,1,37,37,9,8,120.5,0,0,0,1,0,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,39,1,9119,1,12,133.1,1,34,34,0,0,95.1,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,128.0,1,19,37,9,8,116.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9307cf4b524ffa38ff4a36db610667ac23d91634 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/train.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,1,1,127.0,1,1,1,9,6,110.0,0,0,1,0,1,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9773,1,1,122.0,1,38,37,5,3,119.6,1,0,0,1,0,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,6,9147,1,1,121.0,1,3,19,4,5,116.8,0,0,0,1,1,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,158.0,1,38,37,5,5,140.2,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,19,19,9,7,131.7,1,0,0,1,0,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,Graduate +1,1,3,9085,1,1,133.0,1,1,38,9,90,128.2,0,0,0,1,0,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,122.0,1,1,19,9,9,120.3,1,0,0,1,1,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,Dropout +1,43,1,9119,1,1,130.0,1,1,1,9,2,128.0,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,3,9254,1,1,122.0,1,1,1,4,4,126.6,0,0,0,0,0,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,1,100.0,1,37,37,9,9,133.0,0,0,0,1,1,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,44,1,9119,1,39,130.0,1,19,3,3,4,130.0,0,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9085,1,39,140.0,1,1,1,4,7,140.0,1,0,1,1,0,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9070,1,1,130.0,1,37,37,9,9,123.7,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +4,1,1,9991,0,1,130.0,1,37,37,9,9,118.1,0,0,1,0,0,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9500,1,1,190.0,108,3,2,122,4,190.0,1,0,0,1,0,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,102.0,1,1,19,9,5,100.6,1,0,0,1,0,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,3,120.0,1,19,3,4,2,120.0,1,0,0,1,0,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,130.0,1,38,19,9,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,111.0,1,3,4,4,3,108.2,1,0,0,1,0,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9119,1,1,160.0,1,1,38,4,7,112.0,0,0,0,0,1,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,149.0,1,19,1,4,4,134.8,0,0,0,1,0,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,135.0,1,19,38,3,9,136.1,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,2,9500,1,1,120.0,1,37,34,90,0,121.5,0,0,1,1,0,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,147.0,1,12,19,9,3,151.6,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,128.0,1,37,37,9,9,123.5,1,0,0,1,1,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,2,9070,1,1,129.0,1,1,1,4,9,132.9,1,0,0,1,1,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,Enrolled +1,17,2,9500,1,1,138.0,1,1,38,5,8,132.8,1,0,0,1,0,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,134.0,1,19,37,9,9,131.6,1,1,0,1,0,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,130.0,1,37,37,9,9,122.0,1,0,0,1,0,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,1,0,0,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,2,9085,1,1,130.0,1,37,19,9,8,129.0,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,Enrolled +1,17,5,9119,1,1,126.0,1,38,38,5,9,116.9,1,0,1,1,1,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,37,38,5,6,140.0,1,0,0,1,0,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,18,4,9853,1,1,123.0,1,19,38,4,10,123.7,1,0,0,1,0,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,118.0,1,4,3,2,3,110.7,1,0,0,1,0,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,2,130.0,1,37,37,5,7,147.5,0,0,0,1,0,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,146.0,1,4,1,2,3,140.0,1,0,0,1,0,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,Graduate +1,44,1,9003,1,39,160.0,1,37,38,9,7,160.0,0,0,0,1,0,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,7,0,9003,1,3,130.0,1,1,37,4,9,130.0,1,0,0,1,0,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,19,133.1,1,34,34,99,99,96.0,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,136.0,1,37,37,7,7,140.9,1,0,0,1,1,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,1,9853,1,1,127.0,1,1,1,5,7,121.4,1,0,0,1,0,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,134.0,1,3,19,2,10,128.8,0,0,0,1,0,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,140.0,1,1,3,4,2,142.8,1,0,0,0,0,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,126.3,0,0,0,1,1,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.1,1,19,1,1,3,101.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9147,1,1,122.0,1,1,38,1,7,118.9,0,0,0,1,1,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,107.0,1,19,37,7,7,103.5,1,0,0,1,0,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,156.0,1,38,37,9,9,156.3,0,0,0,1,1,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,128.0,1,1,1,9,9,120.0,1,0,0,1,0,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9119,1,1,127.0,1,19,1,9,10,121.1,1,0,0,1,1,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,4,160.0,1,3,3,4,2,180.4,0,0,1,1,1,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,Dropout +1,43,1,9670,1,1,132.0,1,3,19,4,8,120.5,0,0,0,1,1,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,134.0,1,1,19,4,5,122.5,1,0,0,1,0,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,142.0,1,1,19,4,4,128.0,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,133.0,1,2,37,9,7,125.7,1,0,0,1,1,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,135.0,1,1,3,4,3,133.3,0,0,0,1,0,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,3,140.0,1,37,12,9,4,140.0,0,0,0,0,0,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9500,1,1,141.0,1,2,38,2,10,135.4,1,0,0,1,0,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,Enrolled +2,43,1,9991,0,2,120.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,147.0,1,1,19,4,4,137.2,0,0,0,0,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9085,1,1,120.0,1,37,38,9,9,111.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,141.0,1,3,1,9,9,124.3,0,0,0,1,0,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,Enrolled +1,18,1,9773,1,1,125.0,1,1,1,4,7,121.5,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,140.0,1,37,37,5,5,150.0,0,0,1,1,0,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,112.0,1,1,37,4,9,106.8,1,0,0,1,0,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,168.0,1,38,37,9,8,155.1,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,15,1,9119,1,1,133.1,41,2,2,2,2,100.0,0,0,1,1,1,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,Enrolled +2,1,1,8014,0,1,121.0,1,37,37,9,9,114.4,1,0,0,1,0,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,136.0,1,1,38,4,5,132.2,0,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,Graduate +1,16,1,9070,1,1,145.0,1,1,1,3,3,146.1,1,0,0,1,0,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,40,140.0,1,5,3,2,2,140.0,0,0,1,1,1,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,Dropout +1,1,3,9085,1,1,126.0,1,38,1,9,9,132.0,1,0,0,1,0,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,146.0,1,1,37,9,9,129.3,0,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,131.0,1,37,37,9,6,127.2,0,0,0,1,0,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,139.0,1,37,37,9,9,124.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,133.1,1,37,1,5,4,151.2,0,0,0,1,1,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,170.0,1,38,19,9,2,160.6,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,131.0,1,37,37,9,6,130.7,0,0,1,1,0,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,122.0,1,19,37,3,5,116.6,1,0,1,1,1,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,Graduate +1,17,3,171,1,1,147.0,1,19,1,5,4,137.6,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,9,120.0,0,0,0,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,5,1,9130,1,1,157.0,1,5,43,2,2,149.7,1,0,0,1,0,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9003,1,39,160.0,1,3,1,2,6,160.0,1,0,0,0,0,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,140.0,1,9,19,4,4,131.2,0,0,0,1,1,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,1,130.0,1,1,3,2,6,110.0,0,0,0,1,1,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,Graduate +1,39,1,171,1,1,147.0,1,37,38,175,193,133.3,0,0,0,0,0,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,148.0,1,38,19,4,9,134.7,1,0,0,1,0,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,130.0,1,19,1,9,7,130.4,1,0,0,1,0,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,133.1,1,1,37,4,9,96.0,1,0,0,1,0,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,Enrolled +1,39,1,9991,0,12,120.0,1,37,38,5,5,155.7,0,0,0,1,1,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,117.0,1,3,1,3,3,113.2,0,1,0,1,0,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,Graduate +1,17,2,9853,1,1,150.0,1,38,19,5,5,142.0,1,0,0,1,0,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,144.0,1,1,19,9,4,130.8,1,0,0,1,0,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,Graduate +1,17,4,9254,1,1,118.0,1,38,37,5,7,111.7,1,0,0,1,1,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,6,9500,1,1,141.0,1,2,1,4,4,136.3,1,0,0,1,0,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,Graduate +2,39,1,9003,1,1,120.0,1,2,2,1,4,100.0,0,0,0,1,1,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,141.0,1,4,3,2,1,136.3,1,0,0,1,1,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,120.0,1,1,19,5,4,140.4,0,0,0,1,0,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,154.0,1,1,37,4,9,134.8,1,0,0,1,0,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,100.0,1,19,19,5,5,101.8,1,0,0,1,0,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,3,9670,1,1,137.0,1,1,38,4,7,138.4,0,0,0,1,1,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,152.0,1,37,37,7,5,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,118.0,1,37,1,9,7,117.0,1,0,0,0,1,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,140.0,1,12,3,4,3,118.0,1,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,133.0,1,1,2,9,2,128.8,0,0,0,1,1,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,171,1,1,140.0,1,37,37,9,9,100.8,0,1,0,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9070,1,42,130.0,1,40,19,3,5,130.0,1,0,0,0,0,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,143.0,1,1,19,3,3,133.9,0,0,0,1,0,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,Graduate +2,1,5,9500,1,1,130.0,1,1,19,4,4,122.3,0,0,0,1,0,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,9,9,125.0,1,0,0,1,0,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,120.0,1,37,37,7,8,120.0,0,0,0,1,0,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,Graduate +1,1,2,9147,1,1,125.0,1,1,19,4,9,124.0,1,0,0,1,0,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,131.0,1,38,19,9,9,130.0,1,0,0,1,1,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,132.0,1,1,1,4,1,119.4,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9500,1,1,135.0,1,19,19,7,7,128.0,1,0,0,1,0,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,19,133.1,1,38,38,9,9,114.8,0,0,0,1,0,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,130.0,1,2,2,6,6,130.0,0,0,0,0,1,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,112.0,1,19,38,9,10,112.0,1,0,0,1,0,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9254,1,1,170.0,1,37,37,4,6,138.3,0,0,0,1,0,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9147,1,19,100.0,1,38,19,7,9,132.0,0,0,1,0,1,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,133.1,1,19,19,9,9,119.0,1,0,0,0,0,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,Dropout +1,17,2,9085,1,1,138.0,1,37,37,9,7,123.3,1,0,0,1,0,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,1,133.1,1,37,37,9,9,112.5,0,0,0,1,0,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,1,140.0,1,12,5,3,3,126.6,0,0,0,1,1,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,1,125.0,1,1,1,9,4,120.0,0,0,0,1,0,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,151.0,1,1,1,4,3,132.3,0,0,0,1,1,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,Graduate +1,43,1,9556,1,1,130.0,1,1,37,5,5,128.0,1,0,0,1,1,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,Graduate +1,17,6,9670,1,1,113.0,1,4,1,3,10,112.3,0,0,0,1,0,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9773,1,1,125.0,1,37,37,5,7,120.1,0,0,0,1,0,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,53,1,171,1,42,130.0,1,1,19,9,9,130.0,1,0,0,0,1,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,51,1,33,1,1,121.0,1,19,37,5,7,118.6,0,0,0,1,0,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,131.0,1,37,37,90,90,137.0,0,0,0,1,0,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,150.0,1,19,1,4,4,137.8,0,0,0,1,0,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,140.0,1,37,37,5,6,128.5,0,0,0,1,0,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,130.0,1,37,2,9,4,126.5,1,0,0,0,1,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,Dropout +1,1,2,9238,1,1,147.0,1,19,38,9,8,135.8,1,0,0,1,0,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,106.0,1,19,37,9,7,109.5,1,0,0,1,0,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,110.0,1,37,37,9,10,140.0,0,0,1,0,1,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,105.0,1,19,37,8,8,102.6,0,1,0,1,0,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,Enrolled +1,17,6,9147,1,1,133.0,1,19,38,5,6,123.2,1,0,0,1,1,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9670,1,1,160.0,1,34,34,99,99,100.1,0,0,0,0,1,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,Dropout +4,7,1,9500,1,40,130.0,1,37,37,3,3,130.0,1,0,0,1,0,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,Enrolled +1,43,2,9853,1,1,118.0,1,19,1,5,4,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,Enrolled +1,43,1,8014,0,1,117.0,1,37,37,9,9,100.0,0,0,0,1,0,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,Dropout +1,53,1,9238,1,42,130.0,1,1,19,5,5,128.3,0,0,1,0,0,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,127.0,1,19,38,4,5,120.7,1,0,1,1,0,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,38,37,9,4,150.0,1,0,0,1,1,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,1,133.1,1,37,29,0,4,120.5,0,0,0,0,1,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,121.0,1,37,19,9,9,141.4,0,0,1,0,1,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,120.0,1,38,37,9,7,108.0,0,0,0,1,1,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,153.0,6,37,37,9,9,131.8,1,0,0,1,0,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,153.0,1,38,19,9,5,138.5,1,0,0,1,0,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,107.0,1,12,19,5,5,102.8,1,0,0,1,0,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9238,1,1,135.0,1,1,19,7,7,126.6,1,0,0,1,0,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,124.0,1,1,19,123,103,113.9,1,1,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,144.0,1,37,37,7,9,126.8,1,0,1,0,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9556,1,1,120.0,1,37,37,9,4,150.0,0,0,0,0,0,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,Dropout +1,43,3,171,1,1,120.0,1,37,37,9,9,143.3,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,140.0,1,38,19,4,10,122.3,1,0,0,1,0,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,157.0,1,3,38,1,5,136.7,1,0,0,1,0,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,150.0,1,3,1,2,8,153.8,1,0,0,1,0,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,130.0,1,2,1,2,7,126.2,1,0,0,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,142.0,1,37,37,9,9,132.9,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9238,1,1,124.0,1,1,1,3,1,118.8,1,0,1,0,0,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,1,19,4,5,100.0,0,0,0,1,1,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,Enrolled +1,17,5,9238,1,1,122.0,1,37,37,7,5,112.9,1,0,0,1,0,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,97.5,1,0,0,1,1,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,171,1,1,140.0,1,1,3,3,3,138.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,132.0,1,1,1,3,3,119.4,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,Graduate +1,42,1,9500,1,1,100.0,1,3,19,2,8,153.0,0,0,0,1,1,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,Enrolled +1,1,1,9254,1,1,123.0,1,38,37,5,5,125.1,0,0,0,1,0,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9130,1,1,133.0,1,38,38,5,8,120.4,1,0,0,1,0,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,Graduate +1,17,4,9773,1,1,129.0,1,3,1,2,7,132.5,1,0,0,1,1,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Enrolled +4,39,1,9003,1,19,133.1,1,37,37,9,9,110.0,0,0,0,1,1,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,133.0,1,3,1,9,3,123.2,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,137.0,1,38,19,9,5,129.3,1,0,0,1,0,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,123.0,1,3,1,2,9,127.6,1,0,0,1,1,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,19,133.1,1,19,19,9,5,101.0,1,0,0,1,0,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,19,19,7,7,111.1,1,0,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9070,1,1,147.0,1,3,1,2,3,149.8,1,0,0,1,1,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,100.0,1,37,37,7,9,100.0,1,0,0,1,0,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,141.0,1,38,38,7,7,132.5,1,0,0,1,0,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,168.0,1,1,1,5,5,161.0,1,0,0,1,1,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,Dropout +5,39,1,9003,1,19,133.1,1,19,1,9,9,119.4,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,114.0,1,1,19,9,9,111.9,1,0,0,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,Enrolled +1,39,1,9500,1,1,130.0,1,37,37,3,7,143.8,0,0,0,1,1,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,133.1,1,19,19,9,7,100.0,0,0,0,1,1,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,Dropout +1,17,3,9853,1,1,132.0,1,34,34,0,0,131.3,1,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,157.0,1,37,37,9,9,143.0,0,0,0,1,1,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,Graduate +5,42,1,9254,1,2,120.0,1,37,37,4,9,120.0,0,0,0,1,0,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,6,1,1,192,144,129.8,0,0,0,1,1,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,Enrolled +1,1,2,9500,1,1,139.0,1,38,37,9,7,125.0,1,0,0,1,0,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,133.1,1,1,19,9,5,95.0,1,0,0,1,0,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,180.0,1,37,37,7,4,153.8,1,0,0,1,0,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,4,9773,1,1,133.0,1,1,19,9,9,119.7,1,0,0,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,Graduate +1,17,5,9500,1,1,124.0,1,3,38,2,1,119.8,0,0,0,1,1,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,133.1,1,37,37,9,9,148.2,1,0,1,1,0,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,19,133.1,1,37,37,9,7,114.8,0,0,1,1,1,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,133.1,1,1,19,4,8,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,180.0,41,37,37,9,9,152.7,1,0,1,0,1,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9085,1,1,130.0,1,19,19,90,7,115.8,0,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,161.0,1,38,37,5,5,154.4,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,148.0,1,1,38,4,5,148.7,0,0,0,1,1,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,19,38,9,7,131.3,1,0,1,1,0,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,122.0,1,1,1,4,9,112.9,1,0,0,1,0,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,4,9500,1,1,142.0,1,38,38,9,8,129.8,1,0,0,1,0,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,Graduate +3,39,1,9003,1,1,170.0,1,1,37,6,6,170.0,0,0,1,1,0,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Enrolled +1,1,2,9147,1,1,130.0,1,37,37,9,9,117.8,0,0,0,1,0,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9147,1,1,140.0,1,37,37,9,7,132.3,1,0,0,1,0,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,132.0,1,2,1,9,9,126.4,1,1,0,1,0,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,140.0,1,1,3,9,2,140.0,1,0,0,1,0,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,19,4,4,109.3,0,0,0,1,1,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,176.0,1,3,38,3,7,169.7,0,0,0,1,0,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,133.1,1,37,38,7,7,98.0,1,0,0,1,1,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,136.0,1,3,3,2,2,128.7,0,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,12,38,4,9,107.0,1,0,0,1,0,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,Dropout +1,17,1,9130,1,1,156.0,1,2,9,3,5,166.9,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,Graduate +1,17,1,9130,1,1,123.0,1,19,3,3,2,121.6,1,0,1,1,0,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,129.0,1,1,1,9,9,124.8,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9119,1,1,125.0,1,19,1,5,4,121.5,1,0,0,1,1,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,Dropout +1,17,1,9085,1,1,163.0,14,37,37,9,9,150.8,1,0,0,1,0,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,Graduate +1,7,2,9130,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,135.0,1,1,2,9,1,134.3,1,0,0,1,0,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,19,37,6,6,120.0,0,0,0,1,0,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,1,130.0,1,37,37,9,7,133.0,1,0,0,1,0,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,143.0,1,1,19,4,6,135.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +4,43,2,9991,0,38,133.1,1,3,1,2,9,125.4,0,0,0,1,1,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,140.0,1,3,1,2,4,124.1,0,0,0,1,0,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,37,38,175,103,127.0,0,0,0,1,1,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,151.0,1,1,3,1,1,111.0,0,0,0,1,1,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,133.0,1,37,19,9,8,141.4,0,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,133.1,1,38,37,5,5,108.0,0,0,0,1,0,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,9147,1,1,118.0,1,3,19,2,4,113.8,1,0,0,1,0,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,1,1,3,5,141.7,0,0,0,1,0,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,42,1,9119,1,1,130.0,1,19,37,9,3,135.0,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,Dropout +4,39,2,9147,1,19,133.1,1,37,37,9,7,116.4,0,0,1,0,1,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,148.0,1,19,38,9,8,134.8,1,0,0,1,1,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,116.0,1,19,19,4,7,110.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,5,9147,1,1,122.0,1,38,38,9,9,117.5,1,0,1,0,0,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,122.0,1,37,37,9,9,125.9,1,0,0,1,1,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,171,1,1,127.0,1,1,1,9,5,124.2,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9147,1,39,117.4,1,19,1,4,9,117.4,1,0,0,1,0,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,150.0,1,37,38,9,9,146.2,0,0,0,1,0,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,Enrolled +1,17,1,9254,1,1,158.0,1,37,37,5,9,138.1,1,0,0,1,0,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,Dropout +1,7,1,9500,1,3,140.0,1,1,37,9,5,140.0,0,0,0,1,0,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,140.0,1,1,1,9,3,135.7,1,0,0,1,0,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +2,7,1,171,1,3,120.0,1,19,19,9,9,130.0,1,0,0,1,1,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,10,100.0,1,34,34,0,0,113.0,1,0,0,1,0,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,1,8014,0,1,125.0,1,37,37,9,7,114.9,0,0,0,1,0,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,Graduate +1,18,6,9500,1,1,124.0,1,37,37,9,7,117.8,0,0,0,1,0,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,109.0,1,2,3,3,3,111.8,1,0,1,1,1,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,149.0,1,1,1,9,3,156.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +2,44,1,9119,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,120.0,6,4,4,3,6,120.0,0,0,1,0,0,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,Dropout +5,1,3,9085,1,1,133.0,1,19,19,4,7,119.7,1,0,0,1,0,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9085,1,1,127.0,1,37,37,9,9,122.8,1,0,0,1,0,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,171,1,39,140.0,1,1,1,9,9,140.0,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9773,1,1,132.0,1,1,1,4,9,124.3,1,0,1,1,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +4,39,2,9670,1,19,133.1,1,19,1,90,90,103.0,0,0,0,0,1,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,26,1,9147,1,2,133.1,1,34,34,0,0,121.5,1,0,0,1,0,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,143.0,1,19,38,9,6,131.5,1,0,0,1,1,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,123.0,1,1,19,3,4,122.0,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,171,1,1,133.1,1,3,1,2,3,141.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,19,37,9,4,120.0,0,0,0,1,0,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,1,1,3,3,125.7,1,0,0,1,0,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,121.0,1,37,37,5,5,118.9,1,0,0,1,0,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,Graduate +1,51,1,9500,1,1,129.0,1,37,38,3,3,137.8,1,0,0,1,0,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,2,4,134.9,1,0,1,1,0,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9254,1,1,113.0,1,1,1,2,3,110.2,1,0,0,1,1,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,1,133.1,1,1,19,4,5,120.0,1,0,0,1,1,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,Dropout +1,39,1,9254,1,19,133.1,1,19,1,9,5,97.0,0,0,1,0,1,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9500,1,1,126.0,1,1,19,6,7,115.5,1,0,0,1,0,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,Graduate +1,42,1,9853,1,1,141.0,1,37,19,9,3,133.0,0,0,0,1,0,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,19,133.1,1,19,19,4,9,139.9,1,0,0,1,0,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,2,9254,1,1,140.0,1,19,19,9,9,126.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,108.0,1,34,38,0,3,105.9,0,0,0,1,1,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,114.0,1,19,19,9,7,107.7,0,0,0,1,0,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,130.0,1,3,1,9,9,126.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.1,1,19,37,0,0,137.0,1,0,0,1,0,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9119,1,1,117.0,1,1,2,3,2,119.8,1,0,0,1,1,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9147,1,1,115.0,1,1,37,4,9,117.1,1,0,1,1,0,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,130.0,1,12,19,4,5,118.5,0,1,0,1,0,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,34,37,5,5,120.4,0,0,0,0,0,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,171,1,39,150.0,1,19,1,9,9,154.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,43,1,9147,1,1,140.0,1,37,37,6,6,122.9,0,0,0,1,0,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,Dropout +1,42,1,9070,1,1,100.0,1,3,2,2,2,115.9,0,0,0,1,0,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,Enrolled +1,17,1,171,1,1,128.0,1,1,1,4,10,134.7,0,0,0,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,1,1,9,9,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,7,133.9,0,0,0,1,0,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Dropout +1,43,1,9773,1,1,119.0,1,19,37,5,5,105.0,1,0,0,1,0,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,Enrolled +2,43,1,9991,0,1,140.0,1,37,37,4,1,122.7,0,0,0,1,1,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,135.0,1,37,1,3,5,121.0,0,0,0,1,0,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,123.0,1,3,1,2,3,124.1,1,0,0,1,0,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9670,1,1,132.0,1,19,1,5,4,119.1,0,0,1,1,1,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,5,9254,1,1,130.0,1,37,38,9,9,122.7,1,0,1,1,1,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9147,1,1,117.0,1,1,38,8,9,117.0,1,0,0,1,1,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,140.0,1,19,19,9,6,135.4,1,0,0,1,0,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,162.0,1,37,37,9,6,132.0,0,0,1,1,1,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,139.0,1,19,38,4,9,128.5,1,0,0,1,0,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,Dropout +4,39,1,9991,0,1,130.0,1,38,19,9,7,148.0,0,0,0,1,0,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,43,1,9500,1,1,131.0,1,1,38,5,5,118.8,0,0,0,1,0,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,5,9238,1,1,126.0,1,38,1,9,5,125.7,1,0,0,1,0,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,53,1,9085,1,42,140.0,1,1,1,4,3,140.0,1,0,1,1,0,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,128.0,1,1,1,4,5,120.8,1,0,0,1,0,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,139.0,1,37,37,9,6,133.5,1,0,0,1,0,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,150.0,1,38,38,4,1,150.0,1,0,0,1,1,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,133.1,1,1,1,4,4,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9853,1,1,140.0,1,37,19,9,8,122.3,0,0,0,1,0,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,120.0,1,38,19,5,4,118.3,0,0,0,1,0,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,Enrolled +1,7,1,9130,1,3,140.0,1,2,38,2,3,140.0,1,0,0,0,1,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,122.0,1,9,19,90,6,103.4,0,0,0,1,0,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,Graduate +2,39,1,9070,1,19,133.1,1,37,37,9,10,126.3,0,0,0,0,1,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,160.0,1,38,38,7,7,147.8,0,0,0,1,0,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9238,1,12,100.0,1,37,37,9,9,124.3,0,0,0,1,1,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,Graduate +1,18,2,8014,0,1,117.0,1,3,1,3,4,111.8,1,0,0,1,0,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,38,37,7,7,140.0,0,0,0,1,1,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,Dropout +1,43,1,9853,1,1,140.0,1,3,1,3,3,128.3,1,0,0,1,0,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,127.0,1,37,38,9,9,120.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,1,161.0,1,19,37,4,10,100.0,0,0,0,1,1,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,Graduate +1,16,4,9500,1,1,145.0,1,1,1,4,4,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9853,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,Dropout +1,1,2,171,1,1,127.0,1,2,19,5,5,139.6,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,148.0,1,19,19,4,4,133.8,0,0,0,1,0,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,140.0,1,19,19,1,1,129.5,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,171,1,1,129.0,1,37,37,9,9,122.0,1,0,0,0,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,1,12,3,10,131.6,1,0,0,1,0,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,130.0,1,38,37,3,6,135.6,1,0,0,1,0,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,51,1,9991,0,39,120.0,1,1,4,4,10,118.1,0,0,0,1,1,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,39,1,9853,1,19,133.1,1,19,4,9,4,116.0,1,0,0,1,0,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9238,1,1,133.1,1,1,37,8,9,118.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,4,9500,1,1,125.0,1,19,1,1,1,117.8,1,0,0,1,0,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,141.0,1,1,38,4,5,125.0,1,0,0,1,0,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,121.0,1,38,38,7,5,120.0,1,0,0,1,0,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,Enrolled +1,17,3,9500,1,1,142.0,1,3,3,3,3,132.9,1,0,0,1,1,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,Dropout +1,44,1,9238,1,39,140.0,1,37,19,191,102,136.1,1,0,1,1,0,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9991,0,2,140.0,1,3,3,2,2,155.7,1,0,0,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9119,1,1,135.0,1,12,19,5,5,121.0,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,135.0,1,3,3,2,2,123.0,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,117.0,1,1,1,4,4,117.7,1,0,0,1,1,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,43,1,171,1,1,120.0,1,3,3,2,2,120.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,1,38,1,7,120.0,0,0,0,1,0,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,Graduate +1,17,3,9238,1,1,122.0,1,19,19,7,7,117.5,1,0,0,1,0,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,1,37,37,9,9,144.2,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +4,39,1,9500,1,1,140.0,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,131.0,1,19,19,9,9,139.8,1,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,127.0,1,3,3,2,5,100.0,0,0,0,1,0,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,39,1,9085,1,1,133.1,1,3,19,2,9,110.0,0,0,0,1,0,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,Dropout +4,39,1,9500,1,19,133.1,1,38,1,9,4,120.0,0,0,0,1,0,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,Graduate +1,16,1,9085,1,1,150.0,1,3,3,2,1,153.5,1,0,0,1,0,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,153.0,1,19,37,9,9,153.7,0,0,0,1,0,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,130.0,1,19,19,3,8,131.8,0,0,0,1,0,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,2,9853,1,1,131.0,1,1,1,2,9,121.9,1,0,0,1,0,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,136.0,1,3,3,3,3,130.8,0,0,0,1,0,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,126.0,1,1,19,4,0,120.1,0,1,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,1,120.0,1,3,2,2,6,120.0,1,0,0,1,1,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,Enrolled +2,39,1,9130,1,19,133.1,1,2,1,2,9,157.0,1,0,0,1,1,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,Graduate +1,7,1,9853,1,3,150.0,1,19,19,4,5,150.0,0,0,1,0,0,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,51,1,9070,1,12,133.1,1,37,19,3,7,106.6,0,0,1,1,0,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,Enrolled +1,1,2,9085,1,1,157.0,1,3,3,5,2,153.9,1,0,0,1,0,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,171,1,1,117.0,1,1,19,3,3,121.6,1,0,0,1,0,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,Graduate +1,1,2,9147,1,1,113.0,1,38,38,9,5,107.4,1,0,0,1,1,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,Enrolled +1,39,2,9147,1,12,133.1,1,19,38,9,9,120.0,1,0,1,0,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,152.0,1,37,37,9,9,139.0,1,0,0,1,0,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,138.0,1,1,19,9,9,124.0,0,0,0,1,0,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9853,1,1,110.0,1,37,37,9,9,95.5,0,0,1,0,0,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9130,1,1,150.0,1,19,19,4,4,130.0,0,0,0,0,1,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,3,9119,1,1,138.0,1,1,19,4,3,125.4,1,0,0,1,1,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,17,6,9147,1,1,120.0,1,37,38,9,9,115.5,1,0,1,0,1,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,Enrolled +1,1,3,9670,1,1,134.0,1,14,11,0,0,128.4,1,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,145.0,1,38,37,9,7,129.3,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,18,6,9500,1,1,126.0,1,37,37,5,5,122.8,1,0,0,1,0,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,133.0,1,1,1,4,4,129.2,1,0,0,1,0,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,Dropout +1,44,1,9070,1,39,120.0,1,1,19,4,7,120.0,0,0,1,0,1,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,136.0,1,19,38,9,9,121.7,0,1,0,1,0,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,126.0,1,1,1,9,10,126.7,1,0,0,1,0,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,Graduate +1,1,3,9085,1,1,134.0,1,38,19,9,5,129.1,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,133.1,1,1,37,9,9,117.0,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,5,9238,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,0,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,40,140.0,1,19,37,5,9,148.0,0,0,0,1,0,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,137.0,1,3,38,1,9,131.4,0,0,0,0,1,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,Dropout +1,1,2,9670,1,1,123.0,1,1,38,7,7,120.6,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,139.0,1,3,1,2,7,124.0,1,0,0,1,0,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,Dropout +1,1,2,171,1,1,152.0,1,38,19,9,9,151.7,1,0,0,1,0,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,110.0,1,37,37,9,4,114.3,1,0,0,1,1,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,Enrolled +1,51,1,9991,0,1,120.0,1,38,3,5,3,128.2,0,0,1,1,1,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,141.0,1,3,2,2,2,133.3,1,0,0,1,1,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,Enrolled +1,5,1,171,1,1,137.0,1,3,19,1,10,144.7,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,43,1,9003,1,1,130.0,1,37,1,5,4,130.0,0,0,0,1,1,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,Dropout +1,18,1,9773,1,1,135.0,1,1,1,3,3,129.8,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,38,38,9,8,150.0,1,0,0,1,1,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,Graduate +1,17,2,9773,1,1,150.0,1,1,1,4,5,130.8,0,0,0,1,1,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9773,1,1,123.0,1,1,1,4,7,125.1,1,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,4,9119,1,1,129.0,1,34,36,0,5,118.9,1,0,0,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,144.0,1,38,37,9,9,128.8,1,0,0,1,1,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,130.0,1,38,38,9,9,150.0,0,0,1,0,1,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,128.0,1,1,1,7,7,120.5,1,0,0,1,0,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,Enrolled +1,7,1,9500,1,3,140.0,1,3,1,4,4,140.0,0,0,0,1,0,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,134.0,1,19,19,1,1,120.4,1,0,0,1,1,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,147.0,1,1,38,4,8,141.1,1,0,0,1,0,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,126.0,1,3,1,5,5,125.7,0,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +2,1,4,9853,1,1,134.0,1,37,37,5,7,122.5,0,1,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,148.0,1,38,38,4,9,131.6,0,0,0,1,1,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,Dropout +2,39,1,9085,1,9,133.1,1,1,1,4,4,120.0,1,0,0,0,1,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,39,1,9254,1,1,150.0,1,3,1,3,4,122.3,0,0,0,1,1,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,125.0,1,19,37,3,7,126.8,0,0,0,1,0,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,Enrolled +1,18,1,9670,1,1,128.0,1,19,3,9,7,120.0,1,0,0,1,0,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,160.0,1,2,1,4,4,137.3,1,0,0,1,0,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,Graduate +2,39,1,9238,1,42,170.0,1,19,38,8,8,159.5,0,0,0,1,1,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9773,1,1,143.0,1,1,1,4,9,144.1,1,0,0,1,1,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,9991,0,1,130.0,1,37,37,9,9,127.8,0,0,0,1,1,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,51,1,9147,1,1,130.0,1,19,38,9,8,115.7,0,0,0,1,1,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,Enrolled +1,17,3,9773,1,1,135.0,1,1,19,5,7,135.0,0,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,135.0,1,1,1,9,9,133.3,0,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,136.0,1,1,1,4,5,123.3,0,0,0,0,0,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,143.0,1,5,5,2,2,137.8,0,0,0,1,1,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,133.1,1,1,19,141,114,140.0,1,0,0,1,0,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9670,1,1,117.0,1,38,19,0,1,114.6,0,0,0,0,1,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,133.1,1,1,19,4,10,145.8,0,0,0,1,1,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,129.0,1,1,37,4,9,118.2,0,0,0,1,1,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,7,1,9500,1,3,130.0,1,37,37,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,Graduate +1,17,4,9670,1,1,135.0,1,38,38,9,7,127.0,1,0,0,1,0,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,126.0,1,1,1,90,90,119.0,1,0,1,1,1,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9773,1,1,120.0,1,1,38,5,5,121.4,0,0,0,0,0,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,136.0,1,1,38,9,9,130.8,1,0,0,1,0,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,131.0,1,19,37,9,9,123.8,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,144.0,1,19,19,9,9,142.6,1,0,0,1,0,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,126.0,1,38,38,7,8,126.7,1,0,0,1,0,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,3,171,1,1,125.0,1,37,37,5,10,120.5,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,7,1,9130,1,2,110.0,1,19,19,4,8,110.0,1,0,0,1,1,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,3,1,2,8,150.0,0,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,5,171,1,1,139.0,1,19,3,9,2,136.9,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9147,1,1,100.0,1,38,38,5,5,101.8,1,0,0,1,0,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,Enrolled +1,44,2,9238,1,39,150.0,1,3,19,4,9,147.0,1,0,0,1,0,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,9,4,100.0,0,0,0,1,1,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9130,1,1,130.0,1,19,38,4,7,122.5,0,0,0,1,1,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,19,37,1,1,140.0,0,0,1,1,1,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,Enrolled +1,17,1,9070,1,1,157.0,1,3,3,3,3,146.2,0,0,0,1,1,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,150.0,1,37,19,8,4,130.8,0,0,0,1,1,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,133.1,1,19,19,7,7,130.0,1,0,0,1,0,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,150.0,1,19,1,9,8,150.0,1,0,0,1,1,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,127.0,1,1,19,7,7,121.8,1,0,0,1,0,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9853,1,1,148.0,1,19,19,5,7,141.7,0,0,0,1,0,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,130.0,1,1,19,9,9,133.4,0,0,0,1,0,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,123.0,1,37,38,3,3,122.0,0,0,1,1,1,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9070,1,1,132.0,1,37,38,9,7,138.0,0,0,0,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,146.0,1,2,19,3,9,130.3,1,0,0,1,1,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,Graduate +1,44,1,171,1,39,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,116.0,1,3,1,3,4,115.7,0,0,0,0,1,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9670,1,1,130.0,1,19,37,4,5,118.8,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,124.0,1,37,37,7,9,121.2,0,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,127.0,1,19,37,9,3,120.7,1,0,0,1,0,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +2,43,1,9070,1,2,140.0,1,37,37,6,6,140.0,1,0,0,1,1,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,Graduate +1,39,1,9500,1,1,100.0,1,3,1,2,5,121.3,1,0,0,1,0,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,Enrolled +1,39,1,9991,0,19,133.1,1,37,37,9,6,105.3,0,0,1,1,0,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,1,155.0,1,1,19,4,8,134.7,1,0,0,1,0,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,15,1,9119,1,1,160.0,32,1,3,143,152,160.0,0,0,1,1,0,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,Enrolled +1,53,1,9670,1,42,140.0,1,19,37,3,6,140.0,1,0,1,1,0,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9853,1,1,140.0,1,38,38,9,7,137.6,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,140.0,1,19,19,7,7,129.5,1,0,0,1,0,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,133.1,1,19,19,3,4,104.0,0,0,1,0,0,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,130.0,1,37,37,9,9,118.8,0,0,1,1,1,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,136.0,1,1,1,9,1,133.0,1,0,0,1,0,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,143.0,1,38,38,9,9,138.8,1,0,0,1,0,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,Graduate +2,39,1,9147,1,1,140.0,1,37,37,6,10,131.8,0,0,0,1,0,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,1,130.0,1,4,1,2,9,120.0,0,0,0,0,0,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,Enrolled +1,1,4,9500,1,1,148.0,1,19,19,4,5,137.0,1,0,0,1,0,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,120.0,1,37,19,5,3,156.0,1,0,0,1,1,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9853,1,1,133.1,1,12,1,4,0,134.8,1,0,0,1,0,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,122.0,1,1,1,9,8,120.3,0,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,156.0,1,19,38,9,5,170.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,129.0,1,38,37,9,3,127.3,1,0,1,0,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,142.0,1,38,38,9,10,127.0,1,0,0,1,0,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,150.0,1,38,19,3,3,120.1,0,0,0,0,0,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,141.0,1,37,37,9,9,126.7,1,0,1,1,0,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,43,3,9147,1,1,127.0,21,3,37,3,3,117.9,1,0,0,1,0,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,1,120.0,1,1,19,4,7,110.0,0,0,0,1,1,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,Dropout +2,42,1,9254,1,1,136.0,1,2,2,134,112,130.0,1,0,0,1,1,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,Dropout +1,18,1,9119,1,1,122.0,1,19,1,90,3,116.1,1,0,1,0,1,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9500,1,1,120.0,1,2,4,4,5,136.6,0,0,0,1,1,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,Dropout +1,18,1,9070,1,1,143.0,1,38,38,7,5,141.6,0,0,0,1,0,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,Graduate +1,43,1,9119,1,1,140.0,1,37,38,5,7,146.5,0,0,0,1,1,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,125.0,1,19,19,9,9,121.5,1,0,0,1,0,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,1,0,0,1,0,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,159.0,1,3,3,2,2,165.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,127.0,1,3,1,2,9,119.3,1,0,0,1,0,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,Graduate +1,17,6,9238,1,1,117.0,1,1,38,4,7,114.6,0,0,0,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9119,1,1,148.0,1,19,19,9,8,129.8,0,0,0,0,1,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,Enrolled +1,17,4,9119,1,1,127.0,1,19,19,5,5,120.4,1,0,1,0,1,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9500,1,1,144.0,1,19,1,5,3,141.0,1,0,0,1,0,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,Graduate +1,17,3,9556,1,1,126.0,1,19,19,9,4,119.0,1,0,0,1,0,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,Dropout +1,1,4,9119,1,1,126.0,1,3,19,2,9,123.6,1,0,0,1,1,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,120.0,1,1,2,144,123,125.3,0,0,1,1,1,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9070,1,1,130.0,1,1,19,4,4,110.0,1,0,0,1,0,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,37,37,90,5,115.5,0,0,0,0,1,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,130.0,1,38,38,9,9,120.0,0,0,0,1,0,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9853,1,1,141.0,1,3,1,1,5,130.2,1,0,0,1,0,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,Enrolled +2,1,1,9500,1,1,156.0,1,1,1,9,10,135.5,0,0,0,1,0,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,Graduate +2,7,1,8014,0,3,170.0,1,19,19,4,4,170.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9147,1,1,134.0,1,37,19,9,8,126.3,1,0,0,1,0,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,122.0,1,12,12,5,7,126.6,1,0,0,1,0,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,38,38,9,7,138.8,1,0,0,1,0,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,132.0,1,37,37,5,7,127.5,1,0,0,1,0,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,Graduate +1,16,2,9238,1,1,130.0,1,37,37,5,6,126.9,1,0,0,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,110.0,1,3,2,3,3,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,127.0,1,2,19,4,5,121.8,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,12,133.1,1,38,19,9,8,138.3,1,0,1,0,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9147,1,19,133.1,1,3,1,3,5,153.2,1,0,1,1,0,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,37,19,5,9,130.0,1,0,0,1,0,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,2,9147,1,1,130.0,1,19,37,4,7,140.0,0,0,0,1,1,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,128.0,1,19,19,7,7,124.4,0,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,19,3,8,150.3,1,0,0,1,1,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,143.0,1,38,19,7,9,129.5,1,0,0,1,0,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,6,141.0,1,37,1,9,4,145.0,0,0,0,1,0,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,Graduate +1,17,1,9238,1,1,160.0,1,19,37,6,6,144.3,0,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,2,9238,1,1,133.1,1,19,19,4,5,120.6,1,0,0,1,0,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,3,116.5,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,127.0,1,1,1,3,4,130.2,1,0,0,1,1,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9254,1,1,131.0,1,38,36,9,9,124.0,1,0,0,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,5,9254,1,1,120.0,1,37,37,9,7,127.0,1,0,0,1,0,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,135.0,1,34,34,0,0,134.1,1,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9254,1,1,133.1,1,37,37,9,6,121.5,0,0,0,1,1,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,144.0,1,38,38,5,7,128.0,1,0,0,1,0,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,132.0,1,1,19,6,6,124.7,1,0,0,1,1,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,Graduate +1,17,2,9991,0,1,116.0,1,37,19,9,4,118.5,0,0,0,1,1,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,133.1,1,1,1,9,1,103.0,1,0,0,1,0,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,16,5,9085,1,1,134.0,1,19,37,8,8,123.9,1,0,0,1,1,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9773,1,1,114.0,1,37,38,9,5,107.4,1,0,0,0,1,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,38,37,5,7,120.0,1,0,0,1,0,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,135.0,1,1,38,4,6,122.1,0,1,1,0,1,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,1,150.0,1,37,37,7,5,143.0,0,0,0,1,0,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,Graduate +1,44,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,Graduate +4,39,1,9238,1,19,133.1,1,37,37,9,10,103.5,0,0,0,0,0,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,126.0,1,19,38,9,9,132.0,1,0,0,1,0,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,125.0,1,1,1,7,3,143.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9147,1,1,120.0,1,37,1,9,1,122.7,0,0,0,0,0,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,7,1,8014,0,3,124.4,1,37,34,0,0,130.0,0,0,0,1,0,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,Graduate +1,18,1,9085,1,1,106.0,1,1,19,3,5,104.6,0,0,0,0,1,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,Enrolled +1,44,1,9119,1,39,160.0,1,3,38,2,3,160.0,0,0,1,0,1,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,148.0,1,3,19,2,5,130.0,0,0,0,1,0,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,Enrolled +1,1,1,9130,1,1,133.0,1,1,37,9,9,123.2,1,0,0,1,0,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9500,1,1,130.0,1,19,1,9,4,128.8,1,0,0,1,0,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,149.0,1,19,1,9,9,137.8,1,0,0,1,1,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,Graduate +4,43,1,9670,1,1,150.0,1,37,37,9,6,110.0,0,0,0,1,0,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,Graduate +2,39,1,9119,1,1,110.0,1,19,19,0,5,137.0,0,0,1,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9556,1,1,122.0,1,19,19,3,10,113.3,1,0,0,1,0,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,140.0,1,1,19,4,5,127.5,0,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,128.0,1,37,37,5,5,124.5,1,0,0,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,39,150.0,6,5,4,1,1,150.0,0,0,0,1,0,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,131.0,1,38,37,7,7,127.2,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,130.0,1,37,37,9,6,126.5,1,0,0,1,0,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,116.0,1,19,37,90,5,116.7,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,Dropout +1,17,3,9853,1,1,140.0,1,38,38,5,7,126.7,1,0,0,1,0,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,4,9238,1,1,129.0,1,37,37,9,8,117.1,1,0,0,1,1,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,144.0,1,19,19,9,9,130.5,1,0,0,1,0,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,124.0,1,19,1,7,10,116.0,1,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,122.0,1,1,19,4,4,127.3,1,0,1,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,12,12,4,1,155.3,1,1,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +2,15,1,9773,1,1,133.1,41,37,37,9,6,100.0,0,0,0,1,0,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,138.0,41,1,1,9,9,126.5,1,0,0,1,0,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,Graduate +1,18,6,9500,1,1,142.0,1,38,37,9,5,128.0,1,0,0,0,0,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,3,1,2,3,140.0,1,0,0,1,0,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,Enrolled +1,42,1,9991,0,1,150.0,1,19,19,5,5,113.7,0,0,0,1,1,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,135.0,1,1,19,5,5,130.1,1,0,0,1,0,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9254,1,1,120.0,1,19,1,9,8,117.2,0,0,0,1,1,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,130.0,1,19,19,9,7,119.5,1,0,0,1,1,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,133.0,1,1,1,4,5,136.2,1,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,15,1,9147,1,1,133.1,21,1,3,192,3,100.0,0,0,1,1,1,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9670,1,1,112.0,1,37,1,7,0,110.6,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9238,1,1,117.0,1,19,19,9,9,117.0,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9991,0,1,140.0,1,1,37,9,8,154.5,0,0,0,1,0,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,97.0,1,0,0,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,119.0,1,37,37,5,4,118.0,1,0,0,1,1,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,112.0,1,19,38,5,7,107.1,1,0,0,1,0,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +2,18,2,8014,0,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,144.0,1,37,37,9,6,129.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,120.0,100,1,1,4,7,119.5,0,0,1,1,0,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,136.0,1,19,38,5,8,130.3,1,0,0,1,0,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,7,9,121.3,1,0,0,1,0,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,135.0,1,1,4,5,3,124.9,0,0,0,1,0,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,4,9670,1,1,128.0,1,38,38,3,7,121.0,1,0,0,1,0,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,15,1,9556,1,1,114.0,26,3,19,122,144,114.0,0,0,0,1,0,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9238,1,1,125.0,1,19,19,3,3,118.0,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,118.0,1,37,37,7,7,114.2,0,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,Enrolled +1,17,1,9147,1,1,115.0,1,19,37,5,7,112.9,1,0,0,0,1,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,120.0,1,19,37,9,9,118.3,0,0,1,0,1,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9119,1,10,133.1,1,34,37,0,0,128.8,1,0,0,1,1,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,115.0,1,19,38,5,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,137.0,1,37,37,9,9,132.8,1,0,0,1,0,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9003,1,1,148.0,1,19,37,9,9,131.6,1,0,0,1,1,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9773,1,1,161.0,1,1,19,4,7,148.4,0,0,0,1,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,43,1,9991,0,1,133.1,1,37,37,9,7,113.5,0,0,0,1,0,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,132.0,1,1,1,9,9,133.8,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9254,1,1,125.0,1,37,37,9,9,122.9,0,0,0,1,1,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,123.0,1,3,1,9,3,121.3,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,Enrolled +1,17,1,9991,0,1,154.0,1,38,38,4,5,134.1,0,0,0,1,0,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,Enrolled +1,44,1,9130,1,39,140.0,1,19,19,5,5,140.0,1,0,1,0,0,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,Enrolled +1,53,1,9085,1,42,170.0,1,1,19,4,7,170.0,0,0,0,1,0,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,Graduate +1,17,5,9147,1,1,131.0,1,19,38,3,10,119.8,1,0,0,1,0,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,141.0,1,19,19,9,9,126.0,1,0,0,1,0,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,Graduate +1,1,3,9500,1,1,137.0,1,19,19,5,4,131.5,1,0,0,1,0,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,118.0,1,19,1,9,3,113.5,1,0,1,1,0,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,100.0,1,37,37,99,99,100.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9130,1,1,120.0,6,1,3,9,2,120.0,0,0,1,1,0,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,127.0,1,19,19,5,5,129.8,1,0,0,1,0,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,134.0,1,37,37,9,9,129.8,1,0,0,1,0,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,121.0,1,37,37,5,9,116.5,1,0,0,1,0,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9070,1,1,117.0,1,19,37,5,5,131.0,1,0,1,0,1,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,125.0,1,1,38,9,7,119.8,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,5,9500,1,1,140.0,1,1,1,4,3,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,1,5,9254,1,1,101.0,1,3,19,3,9,98.9,1,0,0,1,1,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,130.0,1,37,38,7,9,117.8,0,0,1,1,0,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,128.0,1,34,19,3,0,141.0,1,0,0,0,0,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,150.0,1,38,37,9,9,130.8,0,0,0,1,1,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,125.0,1,1,19,4,7,116.6,0,0,0,1,1,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,Graduate +1,43,1,9670,1,1,130.0,1,34,34,0,0,114.8,0,0,0,1,1,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,Graduate +2,42,1,9003,1,1,120.0,1,3,1,2,2,113.3,0,0,0,1,1,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +4,39,1,9991,0,1,133.1,1,37,37,5,5,138.7,0,0,0,1,0,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,Dropout +1,39,1,9238,1,1,140.0,1,34,34,0,0,114.0,1,0,0,0,0,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9991,0,1,133.1,1,37,19,3,10,136.1,0,0,0,1,1,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9070,1,1,110.0,1,37,37,7,7,110.2,0,0,0,1,1,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,150.0,1,4,5,4,2,150.0,0,0,0,1,1,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,Enrolled +1,1,2,9119,1,1,149.0,1,38,38,5,5,141.0,0,0,0,1,1,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,Enrolled +1,42,1,9085,1,39,150.0,1,1,1,4,7,150.0,1,0,0,1,0,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,1,38,4,9,131.7,1,0,0,1,0,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,42,1,9853,1,1,120.0,1,1,37,5,5,113.9,1,0,0,1,0,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9085,1,1,130.0,1,37,19,9,7,130.0,1,0,0,1,0,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,Enrolled +1,17,4,9500,1,1,133.0,1,38,37,5,7,126.4,1,0,0,1,1,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,147.0,1,3,1,2,3,131.6,0,0,0,1,0,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,12,133.1,1,37,37,9,9,121.5,0,0,0,1,1,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,1,1,9991,0,1,150.0,1,37,37,9,9,131.8,0,0,0,0,0,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,43,4,8014,0,1,116.0,1,34,34,0,0,116.2,0,0,0,1,1,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,7,140.0,0,0,0,1,1,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9773,1,1,136.0,1,3,1,2,3,132.5,1,0,0,1,0,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,19,110.0,1,37,38,5,5,151.0,0,0,1,0,1,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,19,19,5,5,113.2,1,0,1,1,0,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,137.0,1,3,19,2,9,122.3,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +4,39,1,9254,1,1,120.0,1,37,19,9,9,131.0,1,0,0,1,1,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9556,1,1,123.0,1,19,19,4,9,113.8,1,0,0,1,0,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,150.0,1,3,37,4,7,139.5,0,0,0,1,1,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,145.0,1,38,37,3,9,138.4,1,0,0,0,0,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,39,1,8014,0,1,140.0,1,37,37,9,7,122.0,1,0,1,0,1,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,3,9991,0,1,120.0,1,37,37,9,9,128.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,6,9500,1,1,126.0,1,12,37,5,9,121.8,1,0,0,1,0,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,Dropout +2,39,1,9991,0,1,130.0,1,37,37,9,9,140.0,1,0,0,1,1,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,130.0,1,37,19,9,8,130.8,0,0,0,1,1,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,Enrolled +1,1,3,9070,1,1,125.0,1,19,38,9,9,125.4,1,0,0,1,0,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,132.0,1,38,38,4,9,119.1,0,0,0,1,0,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,Graduate +4,7,1,9147,1,3,130.0,1,19,1,5,5,130.0,0,0,0,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,130.0,1,19,19,7,7,121.6,1,0,0,1,0,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9773,1,1,126.0,1,37,38,5,5,129.5,1,0,1,0,0,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,133.0,1,38,38,5,5,123.2,0,0,0,1,0,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,140.0,1,37,37,9,9,121.0,0,0,0,1,0,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,3,9500,1,1,131.0,1,37,37,9,9,118.0,1,0,0,1,0,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,120.0,1,38,19,4,8,115.1,0,0,0,1,0,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,Enrolled +1,17,5,9773,1,1,111.0,1,19,12,7,3,115.9,1,0,0,1,0,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,135.0,1,1,19,9,7,123.5,1,0,0,1,0,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,37,4,9,130.0,1,0,0,1,0,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,Enrolled +1,44,1,9119,1,39,130.0,1,3,19,3,4,130.0,0,0,0,1,1,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,Enrolled +1,44,1,9147,1,39,130.0,22,2,37,2,8,130.0,0,0,1,0,1,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,119.0,1,37,37,9,6,119.0,0,0,1,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9500,1,1,142.0,1,38,37,9,8,130.8,1,0,0,1,0,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,136.0,1,38,1,9,4,129.7,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,140.0,1,19,19,4,4,140.0,1,0,0,1,1,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,19,133.1,1,1,19,4,10,114.0,0,0,0,1,1,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +1,17,5,9670,1,1,125.0,1,19,30,7,7,118.4,1,0,0,1,0,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,135.0,1,19,19,9,10,122.9,1,0,0,1,0,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,100.0,1,37,37,9,9,108.0,1,0,0,1,1,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,127.0,1,37,37,9,9,119.3,1,1,0,1,1,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,133.0,1,38,19,9,10,125.0,1,0,0,1,0,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,116.0,1,3,3,3,3,110.1,1,0,0,1,1,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,133.1,1,1,1,5,8,123.0,1,0,0,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,144.0,1,37,37,9,3,150.5,0,0,0,1,0,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,3,1,2,4,130.2,0,0,0,1,1,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,116.0,1,38,37,9,6,109.7,1,0,0,1,0,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,Graduate +1,18,3,9853,1,1,128.0,1,38,37,5,9,116.8,1,0,0,0,1,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,150.0,1,37,37,4,9,132.1,1,0,1,1,0,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,160.0,1,1,19,4,6,155.7,1,0,0,1,0,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,130.0,1,19,1,9,9,131.9,0,0,0,1,0,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,126.0,1,3,3,2,2,121.1,0,0,1,1,0,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,38,38,7,7,147.0,0,0,0,1,0,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,137.0,1,37,37,9,9,126.2,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,38,37,5,5,137.1,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,143.0,1,2,37,1,1,133.2,1,0,0,1,0,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,Enrolled +1,17,5,9070,1,1,122.0,1,19,38,5,7,119.6,0,0,1,0,0,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,137.0,1,19,38,9,9,127.2,1,0,0,1,0,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,110.0,1,1,1,4,4,125.9,0,0,0,1,1,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,130.0,1,1,38,5,9,118.1,0,0,1,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9853,1,1,130.0,1,37,19,9,5,102.5,0,0,0,1,0,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.0,1,19,1,9,1,122.2,0,0,0,1,0,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,39,140.0,1,3,3,2,2,140.0,1,0,0,1,0,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,134.0,1,37,38,9,9,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,1,1,37,4,7,110.0,0,0,0,1,1,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,Dropout +1,15,1,9085,1,1,133.1,41,3,3,4,2,101.3,0,0,0,1,0,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,113.0,1,1,1,5,4,106.7,1,0,1,1,0,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,Dropout +2,39,1,9991,0,19,133.1,1,37,37,5,5,111.9,1,0,0,1,1,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9853,1,1,134.0,1,19,38,4,8,122.1,1,0,0,1,0,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9853,1,1,133.0,1,19,37,4,9,130.2,1,0,0,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,127.0,1,19,19,5,5,160.0,0,0,0,1,1,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,Graduate +1,7,1,9500,1,3,130.0,1,37,38,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,140.0,1,19,38,7,7,136.5,1,0,0,1,0,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,Graduate +2,39,1,9773,1,19,133.1,1,37,37,9,6,110.0,0,0,0,0,0,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,Dropout +2,39,1,8014,0,1,120.0,1,34,34,99,99,101.8,0,0,0,0,0,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,135.0,1,1,1,4,7,129.8,1,0,0,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,131.0,1,37,38,5,5,128.9,0,0,0,1,0,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,Graduate +1,1,4,9070,1,1,139.0,1,3,19,1,5,138.3,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9500,1,1,122.0,1,1,1,3,7,114.3,1,0,0,1,1,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,150.0,1,37,37,9,7,136.5,1,0,0,1,0,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,3,1,2,8,121.4,0,0,0,1,1,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,117.0,1,19,19,194,193,117.4,1,0,0,1,0,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,Enrolled +2,39,1,9085,1,1,133.1,1,36,36,99,5,128.2,0,0,0,0,0,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,121.0,1,3,1,2,3,114.0,0,0,0,1,1,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,Enrolled +1,51,1,9853,1,1,139.0,1,1,1,4,10,134.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9070,1,1,137.0,1,1,1,3,1,141.2,1,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,133.1,1,37,37,6,3,140.0,0,0,1,1,1,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,1,9147,1,1,126.0,1,37,37,4,7,116.9,0,0,0,1,1,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,44,1,9130,1,39,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,1,9991,0,1,130.0,1,37,37,9,9,128.2,0,0,0,1,0,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,131.0,1,19,9,5,3,118.4,0,0,0,1,0,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,138.0,1,19,19,3,3,131.0,1,0,0,1,0,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,1,130.0,1,37,12,9,8,129.4,1,0,1,0,1,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,9991,0,1,134.0,1,37,37,9,9,113.7,0,0,0,1,0,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9853,1,1,117.0,1,38,38,9,7,114.6,1,0,0,1,0,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,145.0,1,3,3,4,4,153.1,1,0,0,1,0,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9085,1,1,130.0,1,19,38,4,9,130.0,1,0,0,0,0,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9119,1,1,146.0,1,37,37,9,9,148.5,1,0,0,1,1,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,136.0,1,1,1,4,4,124.1,0,0,0,1,0,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,100.0,1,37,38,9,4,140.0,0,0,0,1,1,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,Enrolled +1,44,1,9003,1,39,180.0,1,1,3,4,2,180.0,0,0,0,1,0,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,Graduate +1,15,1,9773,1,1,120.0,26,19,19,4,5,120.0,1,0,0,1,0,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,141.0,1,4,19,4,10,100.0,0,0,0,1,1,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,1,150.0,1,29,10,6,6,150.0,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,5,9254,1,1,122.0,1,1,37,9,7,119.6,1,0,0,1,0,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,128.0,1,19,38,9,7,124.2,1,0,0,1,1,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9130,1,1,172.0,1,19,19,9,9,163.3,1,0,0,1,0,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,129.0,1,38,37,5,5,142.0,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,100.0,1,1,3,9,10,120.0,0,0,1,0,1,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,Graduate +1,1,3,9238,1,1,135.0,1,1,12,9,10,121.0,1,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,136.0,1,2,2,3,3,120.0,1,0,0,1,1,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,6,9147,1,1,143.0,1,38,37,9,9,128.7,1,0,0,1,1,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9500,1,1,126.0,1,37,37,7,7,126.2,1,0,0,1,0,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,135.0,1,19,19,4,3,135.0,1,0,0,1,1,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,Enrolled +1,1,2,9254,1,1,132.0,1,1,19,9,9,129.9,1,0,0,1,0,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,120.0,1,34,34,0,0,104.0,0,0,0,1,0,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,9,133.1,1,37,37,8,10,100.0,1,0,0,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,43,1,9147,1,1,130.0,1,19,37,7,10,138.0,0,0,0,1,0,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,Graduate +1,17,2,9119,1,1,120.0,1,1,19,9,8,117.2,0,0,0,1,1,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,133.1,1,1,12,4,5,116.5,0,0,0,1,1,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,105.0,1,19,19,6,6,106.1,1,0,0,1,0,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,118.0,1,1,19,4,8,118.7,0,0,0,1,1,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,6,9500,1,1,140.0,1,3,19,3,8,129.0,1,0,0,1,0,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,168.0,1,19,19,4,4,171.2,0,0,0,1,1,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,133.0,1,19,9,0,0,121.5,1,0,0,1,0,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,177.0,1,1,38,3,9,162.3,0,0,0,1,0,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,130.0,1,38,38,2,9,124.8,0,0,0,1,0,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,136.0,1,38,1,5,6,133.9,1,0,0,1,0,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,154.0,1,1,1,5,3,144.9,0,0,0,1,1,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,Graduate +1,44,1,9119,1,39,150.0,1,19,37,9,9,150.0,1,0,1,1,1,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,Dropout +1,1,4,9254,1,1,132.0,1,12,19,9,9,124.7,1,0,0,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,33,1,1,100.0,41,38,37,9,8,100.0,0,0,1,0,1,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,120.0,1,4,1,2,9,113.4,0,0,0,1,0,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,134.0,1,1,19,9,9,136.1,1,0,0,1,0,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9500,1,1,150.0,1,1,19,5,3,140.0,0,1,0,1,0,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,129.0,1,37,37,9,9,128.8,1,0,0,1,0,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +2,39,1,9500,1,1,100.0,1,37,38,4,4,130.0,0,0,0,1,1,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,Enrolled +1,1,1,9773,1,1,140.0,1,19,37,9,6,135.8,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,40,150.0,1,19,19,9,5,150.0,0,0,1,0,0,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,148.0,1,1,37,4,8,132.0,1,0,0,1,0,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,Graduate +1,7,1,9119,1,40,140.0,1,3,1,2,5,140.0,0,0,0,1,1,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,163.0,1,19,1,9,7,143.1,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,3,9070,1,1,164.0,1,1,1,5,3,161.2,1,0,0,1,0,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,Graduate +1,1,6,9773,1,1,141.0,1,30,37,7,7,128.4,1,0,1,0,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,Dropout +1,43,2,9147,1,1,126.0,1,1,19,3,3,100.0,1,0,0,1,1,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,141.0,1,19,19,5,10,135.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,4,9670,1,1,117.0,1,3,3,4,4,113.2,0,0,0,1,1,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +2,43,1,9991,0,3,140.0,1,37,19,9,4,140.0,0,0,1,1,0,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,134.3,0,0,0,1,1,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,137.0,1,38,19,9,7,125.1,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,6,134.0,0,0,0,1,0,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,123.0,1,37,37,7,7,119.7,0,0,0,1,1,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9147,1,1,120.0,1,37,37,9,9,104.7,1,0,0,1,1,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,137.0,62,1,1,9,9,129.3,0,0,0,1,0,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,8014,0,1,122.0,1,37,19,9,9,123.8,0,0,0,1,0,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,Graduate +2,39,2,8014,0,1,100.0,1,34,34,0,0,100.0,1,0,0,1,0,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,Graduate +2,1,1,9991,0,2,120.0,1,37,37,6,3,129.2,0,0,0,1,0,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,150.0,1,3,19,2,6,150.0,0,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9991,0,1,123.0,1,1,3,4,2,113.2,0,0,0,0,1,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,Dropout +1,1,3,9773,1,1,130.0,1,1,37,4,5,120.9,1,0,1,1,0,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,146.0,1,19,3,4,9,127.0,0,0,0,1,1,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,160.0,1,19,38,9,9,160.0,1,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9085,1,39,150.0,1,38,37,6,6,150.0,1,0,0,1,0,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,136.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,150.0,1,37,19,9,4,135.6,0,0,0,1,0,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,6,171,1,1,134.0,1,19,37,5,5,126.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +4,39,1,9773,1,38,133.1,1,19,19,7,9,133.0,0,0,0,1,0,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,Enrolled +1,17,2,9119,1,1,120.0,1,10,12,9,9,120.4,1,0,0,1,1,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,4,9254,1,1,113.0,1,38,19,7,7,107.4,1,0,0,1,0,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,137.0,1,1,19,4,5,136.3,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,142.0,1,37,37,9,7,132.7,1,0,0,1,0,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,Graduate +1,18,5,9085,1,1,121.0,1,5,3,2,3,111.9,1,0,0,1,0,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,9,133.1,1,34,36,0,90,107.5,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,19,133.1,1,19,37,6,8,149.5,0,0,0,1,1,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9147,1,1,120.0,1,1,37,4,9,113.4,1,0,0,1,1,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,130.0,1,37,38,9,5,130.5,1,0,0,1,0,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,153.0,1,1,19,9,10,147.8,0,0,0,1,0,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,159.0,1,3,1,4,4,162.2,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,122.0,1,37,37,5,6,114.3,0,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,2,9556,1,19,133.1,1,37,37,3,7,117.8,0,0,0,1,0,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,132.0,1,38,1,9,9,124.3,1,0,0,1,0,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,141.0,1,19,19,9,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,Graduate +1,17,1,9500,1,1,152.0,1,19,19,4,9,132.5,0,0,0,1,1,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,Graduate +1,17,1,9991,0,40,127.0,1,37,37,6,6,124.9,0,0,0,1,0,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,133.1,1,1,19,4,6,106.0,1,0,0,1,0,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,19,37,4,7,150.0,1,0,0,1,0,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9254,1,1,125.0,1,1,1,191,193,114.5,0,0,0,1,1,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,134.0,1,19,19,4,7,131.0,1,0,0,1,1,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,134.0,1,19,19,9,9,125.8,1,0,0,1,0,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,Graduate +1,17,1,171,1,1,125.0,1,37,37,7,9,134.1,1,0,0,1,1,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,Dropout +1,51,1,9254,1,1,120.0,1,38,38,9,9,118.0,0,0,0,1,0,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,155.0,1,1,1,4,3,140.5,1,0,0,1,0,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,125.0,1,1,1,4,90,125.4,1,0,0,1,1,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,1,5,5,126.3,0,0,0,1,1,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,Graduate +1,39,1,9147,1,1,140.0,1,37,3,9,2,135.1,0,0,0,1,1,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,171,1,1,122.0,1,19,12,5,9,127.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,2,9670,1,1,150.0,1,34,34,0,0,107.0,1,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,3,130.0,1,19,19,3,9,130.0,0,0,0,0,1,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,Dropout +1,39,1,33,1,1,133.1,1,19,37,9,9,96.1,0,0,0,1,1,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,Dropout +2,42,1,9500,1,2,130.0,1,37,37,9,9,130.0,0,0,0,1,0,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,Graduate +1,18,1,9238,1,1,137.0,1,19,38,5,8,137.4,1,0,0,1,0,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9254,1,1,140.0,1,19,1,9,8,140.9,1,0,0,1,0,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,132.0,1,1,2,9,3,128.2,1,0,0,1,0,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9085,1,1,126.0,1,1,3,5,5,123.9,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,19,133.1,1,37,37,9,7,106.5,0,0,0,1,0,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,132.0,1,37,19,7,7,132.4,1,0,0,1,0,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,139.0,1,37,38,9,9,126.1,0,0,0,1,0,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,136.0,1,19,38,9,9,123.0,1,0,0,1,0,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,1,140.0,1,0,0,1,1,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,123.0,1,19,19,9,8,134.0,0,0,0,1,0,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,130.0,1,38,19,9,4,118.4,0,0,1,1,0,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,126.0,1,1,1,9,9,116.2,0,0,1,0,1,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,19,1,7,10,105.0,0,0,0,1,1,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,Dropout +1,17,1,9119,1,1,130.0,1,19,19,7,9,121.3,1,0,0,1,1,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,Dropout +1,43,1,9500,1,19,133.1,1,34,34,0,0,110.0,1,0,0,1,1,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,Dropout +1,1,3,9070,1,1,139.0,1,1,38,4,7,142.2,1,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,142.0,1,38,1,5,4,136.6,0,0,0,1,0,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,Graduate +1,17,2,9670,1,1,128.0,1,37,38,5,8,121.7,0,0,0,1,1,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,140.0,1,1,3,9,4,140.0,0,0,1,0,0,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,125.0,1,19,19,9,10,122.0,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,8014,0,1,130.0,1,37,37,9,8,103.5,0,0,0,1,0,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,3,9085,1,1,117.0,1,19,38,5,7,111.1,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,42,1,9085,1,39,140.0,1,19,3,9,1,159.9,1,0,0,1,0,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9254,1,1,112.0,1,37,37,6,6,106.1,1,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9070,1,1,117.0,1,5,1,2,10,120.0,1,0,0,1,0,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,Enrolled +1,7,1,9556,1,2,130.0,1,37,37,9,9,130.0,1,0,0,1,0,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,40,140.0,1,1,19,9,9,139.0,0,0,0,1,0,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,10,130.0,0,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,9070,1,1,135.0,1,3,1,3,5,121.8,0,0,0,1,0,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,135.0,1,19,3,9,4,121.5,1,0,0,1,0,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,136.0,1,19,38,4,8,125.5,1,0,0,1,0,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,37,4,8,132.4,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,142.0,1,34,38,4,7,127.3,0,0,0,1,0,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,15,1,9147,1,1,130.0,26,1,1,2,3,130.0,0,0,0,1,0,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,17,2,8014,0,1,133.0,1,19,1,5,5,119.7,1,0,0,1,0,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,6,133.1,1,1,1,90,3,107.0,1,0,0,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,130.0,1,1,1,4,5,123.8,0,0,0,1,0,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9670,1,1,130.0,1,38,37,5,5,123.4,1,0,0,1,0,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,130.0,1,37,36,4,90,127.6,0,0,0,1,1,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +2,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,Enrolled +1,1,5,9070,1,1,122.0,1,37,37,9,9,124.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,3,120.0,1,37,37,9,9,141.0,0,0,0,1,0,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,Dropout +1,43,1,33,1,1,134.0,1,37,37,1,1,100.0,1,0,0,1,1,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9773,1,1,125.0,1,19,37,9,5,122.2,0,0,0,0,0,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,113.4,0,0,0,1,0,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,142.0,1,19,39,5,4,141.7,0,0,0,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,137.0,1,1,38,5,8,125.8,0,0,0,0,0,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,141.0,1,1,37,4,3,126.8,1,0,0,1,0,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Graduate +1,17,4,9500,1,1,133.0,1,4,4,4,4,130.7,1,0,0,1,0,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,Graduate +1,1,2,9500,1,1,119.0,1,1,1,4,4,115.2,1,0,0,1,0,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,128.0,1,1,1,4,10,118.9,1,0,0,1,0,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,130.0,1,37,38,7,8,119.3,1,0,0,1,0,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,148.0,1,3,1,4,5,132.8,0,0,0,1,0,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,143.0,1,37,19,4,4,123.3,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9147,1,1,130.0,1,34,34,99,99,109.8,1,0,0,0,1,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9085,1,2,140.0,1,38,38,9,10,150.0,0,0,0,1,1,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9670,1,42,110.0,1,1,19,9,9,114.2,0,0,0,1,1,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,Graduate +1,53,1,9147,1,42,140.0,1,3,4,2,1,140.2,0,0,0,1,0,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,145.0,1,19,38,9,7,136.3,1,0,0,1,0,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,38,37,9,9,154.4,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,127.0,1,38,38,9,6,122.8,0,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,120.2,1,0,0,1,1,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,124.0,1,3,1,2,5,121.6,0,0,0,1,0,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Enrolled +1,17,5,9853,1,1,132.0,1,37,38,5,6,119.1,1,0,0,1,0,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,Graduate +1,17,6,9670,1,1,110.0,1,1,19,4,10,111.3,0,0,0,1,1,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,120.0,1,38,37,9,9,114.8,1,1,0,1,0,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,140.0,1,19,19,9,3,130.0,0,0,0,1,1,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9254,1,1,120.0,1,37,37,9,9,115.1,1,0,0,0,1,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,142.0,1,1,37,5,7,128.0,0,0,0,1,0,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,168.0,1,37,1,9,4,133.4,1,0,0,1,0,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,Graduate +1,43,4,9085,1,1,133.1,1,34,34,99,99,125.2,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9147,1,1,123.0,1,1,1,9,7,117.4,1,0,0,1,0,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,Graduate +1,1,6,9119,1,1,135.0,1,2,1,3,5,123.5,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,Enrolled +1,17,2,9254,1,1,118.0,22,19,37,9,9,110.3,1,0,0,0,0,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,126.0,1,1,19,4,4,116.9,0,0,0,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,117.0,1,1,38,3,9,109.3,0,0,1,0,0,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,133.1,1,37,37,9,8,113.0,0,0,0,1,0,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,Graduate +2,42,1,9991,0,6,123.0,1,37,37,9,9,123.0,0,0,0,1,1,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9003,1,1,100.0,1,37,37,9,5,110.0,0,0,0,1,0,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,127.0,1,37,38,9,5,131.2,1,0,0,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,110.0,1,37,37,9,7,112.5,1,0,0,1,0,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,126.0,1,19,37,7,5,119.4,0,0,0,1,0,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,121.0,1,1,1,4,3,120.5,1,0,0,1,0,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,134.0,1,1,1,3,3,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,3,9500,1,1,150.0,1,19,38,1,1,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,5,9119,1,1,124.0,11,4,12,2,9,119.5,1,0,0,1,1,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,117.0,1,19,1,4,7,112.1,0,0,0,1,0,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,Enrolled +1,1,5,9500,1,1,132.0,1,37,37,7,7,120.3,1,0,0,1,0,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,1,110.0,1,37,37,90,5,150.0,1,0,0,1,1,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9773,1,1,130.0,1,38,37,5,3,122.3,1,0,1,0,0,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9556,1,1,118.0,1,19,38,9,9,116.3,1,0,0,1,0,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,120.0,1,3,3,3,3,111.6,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,131.0,1,37,19,9,9,134.5,1,0,0,1,1,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Enrolled +1,17,2,9556,1,1,133.1,1,37,38,9,8,106.0,1,0,0,1,0,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,2,110.0,1,37,37,9,9,112.9,0,0,0,1,0,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,2,9773,1,1,126.0,1,19,38,9,8,118.7,1,0,0,1,0,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,140.0,1,1,1,3,3,127.6,1,0,0,1,0,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,163.0,1,19,1,5,10,146.6,1,0,1,1,0,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,39,151.0,1,19,37,4,7,151.0,0,0,1,1,0,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,165.0,1,19,37,5,5,142.3,0,0,0,1,0,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9773,1,19,133.1,1,19,1,7,9,115.0,1,0,1,0,1,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,Dropout +1,1,2,9556,1,1,130.0,1,1,38,3,8,119.5,1,0,0,1,0,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,Graduate +1,17,3,171,1,1,125.0,1,3,39,2,5,117.0,1,1,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9147,1,1,133.0,1,19,1,5,10,121.8,0,0,0,1,1,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9119,1,1,131.0,1,1,3,9,10,123.7,1,0,0,1,1,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,148.0,1,37,38,9,8,133.0,1,0,0,1,0,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9254,1,1,120.0,1,3,19,3,9,114.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9773,1,1,114.0,1,1,1,9,9,111.6,1,0,0,1,0,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,115.0,1,38,1,9,8,118.5,0,0,0,1,1,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,2,5,127.0,0,0,0,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,117.0,1,1,1,4,7,109.3,1,0,0,1,0,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,9,9,138.2,0,0,1,0,0,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,125.0,1,1,1,3,3,114.5,0,0,0,1,1,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,44,1,9147,1,39,130.0,1,19,1,9,3,130.0,0,0,0,1,0,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,145.0,1,38,19,4,9,127.9,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,128.0,1,37,37,9,8,124.3,1,0,0,1,0,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,Graduate +1,18,3,9070,1,1,138.0,1,38,37,9,7,125.1,1,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,5,9119,1,1,131.0,1,19,37,9,7,123.3,1,0,0,1,1,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,130.0,1,37,19,9,8,106.2,1,0,0,1,0,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,131.0,1,19,38,4,5,132.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9003,1,1,120.0,1,37,37,5,9,120.0,1,0,0,1,1,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,132.0,1,4,39,2,2,136.6,1,0,0,1,0,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,Enrolled +1,7,1,9500,1,40,170.0,1,1,1,9,4,170.0,0,0,0,1,0,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,Graduate +1,16,1,9003,1,1,147.0,1,1,37,4,9,140.7,1,0,1,1,0,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,125.0,1,1,1,4,8,115.6,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,150.0,1,37,37,9,6,138.5,0,0,0,1,0,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,2,9991,0,1,143.0,1,5,1,4,4,131.5,0,0,0,1,1,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,9556,1,1,133.1,6,3,3,4,4,169.2,0,0,1,0,0,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,2,9556,1,1,133.1,1,1,1,9,10,100.5,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,120.0,1,19,38,9,7,117.9,1,0,0,1,0,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,146.0,1,1,38,9,9,135.5,1,0,1,1,0,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,Enrolled +1,1,3,9254,1,1,122.0,1,19,38,3,10,114.3,1,0,0,1,0,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,9130,1,1,130.0,1,2,3,9,1,117.6,0,0,0,1,1,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,Enrolled +4,43,4,9991,0,12,133.1,1,37,37,9,9,153.0,0,0,0,0,0,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,2,9500,1,1,135.0,1,38,37,9,5,125.3,1,0,0,1,0,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,38,37,9,9,133.0,0,0,0,1,0,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,129.0,1,38,37,4,6,128.0,0,0,0,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,128.0,1,2,19,2,4,123.3,1,0,0,1,0,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,130.0,1,19,3,4,2,159.0,0,0,0,1,0,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,Graduate +2,7,1,8014,0,3,130.0,1,19,38,3,7,130.0,0,0,0,1,0,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,116.0,1,19,37,3,3,109.0,1,0,0,1,0,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,123.0,1,1,1,3,9,116.7,1,0,0,1,0,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,144.0,1,19,19,4,4,130.7,1,0,0,1,0,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,42,1,9500,1,1,100.0,1,19,37,5,7,134.3,1,0,0,1,0,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,143.0,1,1,19,4,4,129.9,0,0,0,1,0,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,19,133.1,1,19,37,7,9,137.2,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9853,1,1,123.0,1,19,19,9,7,117.4,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,144.0,1,19,19,5,5,130.3,1,0,0,1,0,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,137.0,1,1,19,4,7,126.7,1,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,4,9773,1,1,124.0,1,3,12,2,9,137.0,1,0,0,1,1,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,135.0,1,37,37,9,8,123.0,1,0,0,1,0,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,123.0,1,38,37,9,7,120.6,1,0,0,0,0,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,Dropout +2,2,1,9147,1,2,120.0,1,37,37,9,9,120.0,0,0,0,0,1,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,103.0,1,1,3,2,2,100.6,1,1,0,1,0,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,126.0,1,3,1,2,8,123.9,1,0,0,1,0,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,Enrolled +1,17,4,9500,1,1,136.0,1,3,3,2,2,132.5,1,0,0,1,0,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,114.0,1,3,29,3,5,111.9,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,125.0,1,19,1,9,9,130.6,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,147.0,1,37,38,9,5,134.8,1,0,0,1,0,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,131.0,1,1,19,9,9,130.3,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,118.0,1,3,1,2,5,110.0,1,0,0,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,130.0,1,19,19,4,10,116.8,0,0,0,1,0,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,Graduate +1,43,1,8014,0,6,133.1,1,34,34,0,0,100.0,0,0,1,1,0,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9670,1,12,170.0,1,1,37,3,5,110.0,0,0,0,1,1,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,Graduate +2,1,1,9991,0,3,160.0,1,1,3,4,9,137.3,0,0,0,1,0,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,108.0,1,19,1,5,5,107.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,121.0,1,3,3,2,2,112.3,1,0,1,0,0,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,Dropout +1,1,2,9773,1,1,138.0,1,19,1,9,3,133.5,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,136.0,1,38,38,9,9,121.7,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,132.0,1,38,37,9,7,122.0,1,0,0,1,0,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9003,1,1,125.0,1,3,3,2,2,100.0,0,0,0,1,1,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,137.0,1,1,1,1,5,131.8,0,0,0,1,0,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,140.0,1,37,37,9,9,148.0,1,0,0,0,1,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,127.0,1,3,1,3,7,137.2,1,0,0,1,0,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,150.0,1,37,19,9,9,150.0,0,0,0,1,1,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,Graduate +1,43,4,171,1,1,136.0,1,37,37,9,9,123.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,162.0,1,37,19,9,8,142.8,0,0,1,1,0,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,127.0,1,1,38,5,7,123.5,1,0,0,1,0,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,133.1,1,19,37,9,9,130.0,0,0,0,0,0,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,Graduate +1,17,2,9070,1,1,121.0,1,1,19,144,144,111.9,1,0,0,1,1,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,115.0,1,19,37,9,9,114.3,0,0,0,1,1,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,Dropout +1,10,1,9254,1,1,115.0,24,3,1,9,9,116.1,1,0,0,1,0,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,143.0,1,19,3,4,4,147.2,0,0,0,1,0,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,160.0,1,1,38,4,4,160.0,1,0,0,1,1,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,Graduate +2,1,1,9238,1,1,134.0,1,37,37,5,5,120.4,0,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,38,37,9,4,120.0,0,0,0,1,1,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Graduate +1,18,1,9119,1,1,108.0,1,1,1,4,3,105.6,1,0,0,1,1,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,137.0,1,37,37,9,9,141.0,0,0,0,1,1,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9254,1,1,113.0,1,1,2,5,3,106.7,1,0,1,1,1,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,16,1,9085,1,1,140.0,1,1,1,9,9,127.1,1,0,0,1,0,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,Graduate +1,53,1,9238,1,42,140.0,1,37,37,9,10,136.9,1,0,0,1,0,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,7,134.5,0,0,0,1,0,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,2,9773,1,1,125.0,1,19,1,4,5,122.2,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9070,1,1,134.0,1,1,19,3,3,127.7,1,0,0,0,0,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,96.0,1,38,37,6,4,96.0,1,0,0,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,Dropout +1,10,1,9085,1,1,134.0,1,37,37,5,5,134.0,1,0,0,1,0,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,143.0,1,1,3,3,3,149.0,1,0,0,1,0,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,Dropout +1,18,3,9070,1,1,142.0,1,1,37,4,7,130.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,7,1,9003,1,3,140.0,1,3,19,2,10,140.0,0,0,0,0,1,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,151.0,1,38,37,9,5,138.4,1,0,0,1,0,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,143.0,1,19,19,4,4,135.3,1,0,0,1,0,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,133.0,1,1,19,9,9,132.0,0,0,0,1,1,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,19,133.1,1,37,37,9,5,135.5,0,0,0,1,0,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9254,1,1,134.0,1,37,37,9,9,133.3,1,0,1,1,0,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,3,9085,1,1,135.0,1,3,2,4,3,121.0,1,0,0,1,0,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,140.0,1,1,1,4,4,123.5,1,0,0,1,0,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,188.0,1,3,3,2,2,178.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9238,1,1,126.0,1,30,19,0,2,121.5,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,131.0,1,3,19,5,5,127.2,1,0,0,1,0,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,Graduate +1,17,4,9853,1,1,143.0,1,37,37,9,5,127.3,1,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,111.0,1,19,38,9,9,110.7,1,0,0,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,140.0,1,19,38,9,7,125.7,1,0,0,1,1,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,6,9500,1,1,126.0,1,19,37,3,9,119.4,1,0,0,1,0,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,131.0,1,1,1,4,9,122.3,0,0,0,1,1,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,128.0,1,1,19,9,8,100.0,1,0,0,1,0,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,138.0,1,19,19,5,1,130.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,1,140.0,1,3,3,1,1,140.0,1,0,0,1,0,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,3,130.0,1,1,19,5,9,130.0,0,0,0,1,1,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,131.0,1,38,1,5,7,131.0,1,0,0,1,1,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,19,133.1,1,19,19,9,7,140.0,0,0,1,0,0,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,133.1,1,37,37,9,9,126.5,0,0,0,1,0,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9500,1,1,132.0,1,37,37,9,7,128.3,1,0,0,1,0,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,Graduate +1,16,1,171,1,1,145.0,1,3,3,3,3,155.0,1,0,0,1,0,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,Enrolled +4,1,1,9991,0,1,140.0,1,37,37,9,7,139.0,0,0,0,1,0,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9070,1,1,152.0,1,39,39,3,3,134.2,1,0,0,1,1,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,141.0,1,19,19,7,9,139.8,0,0,0,1,0,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,Graduate +1,1,4,9670,1,1,133.0,1,1,2,4,7,121.1,1,0,0,1,0,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,Graduate +1,15,1,9147,1,1,135.0,26,1,1,9,7,135.0,0,0,1,1,1,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,Enrolled +2,1,1,9991,0,1,144.0,1,19,19,9,9,151.4,0,0,0,1,0,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,18,4,9853,1,1,118.0,1,19,37,9,6,111.4,1,0,1,0,0,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9500,1,1,134.0,1,38,1,9,6,133.5,1,0,0,1,1,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,37,37,9,6,107.0,0,0,0,1,1,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,141.0,1,38,38,9,9,128.4,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,133.0,1,1,1,9,9,128.5,1,0,0,1,0,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,40,120.0,1,3,3,4,2,125.0,0,0,0,1,0,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,150.0,1,37,38,3,7,134.5,0,0,0,1,0,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,127.0,1,3,19,4,4,116.9,0,0,0,1,1,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,136.0,1,2,38,143,163,129.7,1,0,0,1,1,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,159.0,1,1,1,3,3,151.0,1,0,0,1,0,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,165.0,1,37,38,9,8,152.4,1,0,0,1,0,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,6,9500,1,1,139.0,1,1,1,4,4,124.5,1,0,0,1,0,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,134.0,1,1,1,5,3,128.4,1,0,0,1,0,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,133.0,1,2,1,3,4,136.2,1,0,0,1,0,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,120.0,1,19,1,8,7,115.1,1,0,0,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,131.0,1,1,39,5,3,122.6,1,0,0,1,0,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,8014,0,1,130.0,1,1,1,9,9,118.1,0,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,Graduate +1,39,9,9991,0,1,120.0,1,38,38,9,5,144.8,0,0,0,1,1,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9500,1,19,133.1,1,37,37,9,9,129.0,1,0,0,1,0,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,138.0,1,1,19,4,7,123.0,1,0,1,0,0,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,143.0,1,1,37,9,9,135.0,1,0,0,1,0,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,120.0,1,19,1,9,3,120.0,1,0,0,1,1,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,162.0,1,37,1,9,9,165.2,1,0,0,1,0,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,142.0,1,37,37,5,5,131.3,1,0,0,1,0,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,Graduate +1,1,3,171,1,1,125.0,1,38,37,4,9,115.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,120.0,1,38,37,5,3,110.5,0,0,0,1,0,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,Graduate +1,42,1,9773,1,6,120.0,1,34,34,0,0,122.0,1,0,0,1,0,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,162.0,1,1,38,4,5,138.6,1,0,0,1,0,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,152.0,1,1,1,4,4,141.0,1,0,0,1,0,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,139.0,1,3,19,3,5,120.8,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,135.0,1,1,1,3,5,130.1,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9670,1,1,127.0,1,3,3,1,1,121.4,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,135.0,1,1,1,1,1,131.5,0,0,0,1,1,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,Enrolled +1,17,3,9670,1,1,147.0,1,37,37,8,8,128.8,0,0,1,1,0,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,133.1,41,38,38,9,8,134.8,0,0,0,1,0,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,90,8,128.2,0,0,0,1,0,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,131.0,1,1,37,4,4,126.1,1,0,0,1,0,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,9,9,125.3,1,0,0,1,1,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,Dropout +2,39,1,8014,0,3,110.0,1,37,37,9,9,160.5,0,0,0,1,0,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,138.0,1,38,1,9,4,127.5,1,0,0,1,0,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,Enrolled +1,39,1,9238,1,1,170.0,1,38,19,9,9,140.0,1,0,0,1,0,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,1,19,4,10,142.3,1,0,0,1,0,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,154.0,1,38,37,9,9,140.4,0,0,0,1,0,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,133.1,41,19,1,9,9,105.0,1,0,0,0,0,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +2,44,1,9085,1,39,160.0,1,37,37,192,192,160.0,0,0,0,1,0,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,141.0,1,38,38,9,9,142.3,1,0,0,1,0,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,119.0,1,37,37,7,7,112.0,1,0,0,0,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,137.0,1,37,37,9,9,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,Graduate +4,39,1,9670,1,1,100.0,1,37,37,4,10,120.0,0,0,1,1,0,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,130.0,1,3,3,2,2,131.1,0,0,0,1,1,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,120.0,1,1,19,9,3,116.9,1,0,1,0,1,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,42,1,9500,1,1,100.0,1,1,19,4,8,136.0,1,0,0,1,0,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,Graduate +1,1,2,171,1,1,125.0,1,38,19,9,9,117.3,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,152.0,1,1,38,4,9,160.4,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,12,133.1,1,37,37,9,7,139.4,0,0,1,1,0,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,150.0,1,1,1,4,8,131.5,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,7,1,9556,1,4,190.0,1,5,5,2,2,190.0,1,0,0,1,1,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,Dropout +1,17,3,9238,1,1,121.0,1,1,1,4,5,117.2,0,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,130.0,1,37,37,9,7,113.0,1,0,0,0,1,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,123.0,1,19,19,4,10,124.4,1,0,0,1,0,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,Graduate +1,17,2,9238,1,1,133.0,1,37,37,3,9,119.7,0,1,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,138.0,1,38,19,9,10,133.1,0,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,108.0,1,38,38,7,7,105.2,1,0,0,1,1,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,Dropout +1,1,3,171,1,1,115.0,1,9,1,6,6,108.7,1,0,0,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,4,4,119.8,1,0,0,1,0,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9119,1,1,126.0,1,19,19,7,3,116.6,1,0,0,1,1,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,Graduate +2,39,1,9500,1,1,133.1,1,37,37,9,9,130.1,0,0,0,0,1,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,124.0,1,37,38,9,3,114.2,0,0,0,1,0,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,3,9147,1,1,137.0,1,1,1,4,7,124.4,1,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9130,1,19,133.1,1,37,37,9,10,156.4,1,0,1,1,1,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,5,9853,1,1,121.0,1,38,19,7,7,117.5,1,0,1,0,0,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,2,9238,1,1,117.0,1,19,1,9,8,110.0,1,0,1,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9147,1,1,148.0,1,1,19,9,6,118.4,1,0,0,1,1,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,133.0,1,1,1,4,4,100.0,0,0,0,1,0,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,17,1,9238,1,1,158.0,1,1,1,5,6,140.5,0,0,0,1,0,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,157.0,1,19,38,9,7,146.2,1,0,0,1,0,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,131.0,1,3,1,4,1,135.9,0,0,0,1,1,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,38,37,5,10,117.8,1,0,0,1,1,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,Graduate +1,1,2,9119,1,1,126.0,1,1,38,141,192,122.5,1,0,0,1,1,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,117.0,1,37,37,0,4,120.5,1,0,0,1,1,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9254,1,1,110.0,1,12,19,9,9,125.0,0,0,0,0,1,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,Dropout +1,18,1,9147,1,1,121.0,1,19,3,5,5,115.8,1,0,0,1,0,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,139.0,0,0,1,0,1,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9003,1,3,130.0,1,3,3,6,2,130.0,1,0,0,1,1,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,132.0,1,19,37,3,5,125.4,1,0,0,0,0,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,38,38,4,7,115.6,1,0,0,0,0,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,129.0,1,1,2,3,1,125.9,1,0,0,1,0,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,9,9,143.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,126.0,1,3,19,3,3,115.2,0,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,123.0,1,19,38,9,10,116.7,1,0,0,1,0,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,Graduate +1,17,2,9254,1,1,125.0,1,37,37,9,8,122.6,1,0,1,0,0,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9119,1,1,160.0,1,38,37,7,7,129.0,0,0,0,1,1,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,3,19,2,3,133.8,1,0,0,1,0,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,120.0,1,19,19,4,7,115.5,1,0,1,1,1,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,120.0,1,38,38,3,3,140.0,0,0,0,1,0,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9238,1,1,127.0,1,1,19,4,3,141.7,1,0,0,1,1,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,111.0,1,37,37,9,10,95.8,1,0,0,0,1,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,130.0,1,38,1,9,4,140.0,1,0,0,1,0,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,Graduate +1,1,2,9147,1,1,131.0,1,1,1,9,9,118.8,0,0,0,1,1,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,161.0,1,1,19,4,4,152.3,0,0,0,1,0,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,124.0,1,38,38,9,9,115.6,0,0,0,1,1,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,160.0,1,3,3,1,2,149.2,0,0,0,1,1,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,16,3,9853,1,1,134.0,1,19,37,9,9,121.1,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,Enrolled +1,43,2,9991,0,1,140.0,1,37,37,5,5,124.3,1,0,0,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,127.0,1,38,37,5,7,123.9,1,0,0,1,0,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,120.0,1,19,37,6,8,160.0,0,0,0,1,1,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,1,133.1,1,3,3,4,2,144.9,1,0,0,1,0,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,130.0,1,1,19,3,10,130.0,1,0,0,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,Graduate +1,42,1,9003,1,1,130.0,1,3,2,2,6,105.3,0,0,0,0,1,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9991,0,1,130.0,1,37,37,9,9,127.6,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,100.0,1,1,38,4,6,104.8,0,0,1,0,0,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,Dropout +1,1,5,9070,1,1,125.0,1,3,3,2,2,140.8,1,0,0,1,1,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,133.1,1,34,38,0,4,147.0,0,0,0,1,0,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,126.0,1,34,34,0,0,142.4,0,0,0,1,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,121.0,1,19,38,4,10,114.4,0,0,0,1,0,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,133.1,1,37,37,5,0,111.5,0,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,130.0,1,1,19,5,5,129.1,1,0,0,1,0,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,3,1,4,6,130.0,0,0,0,1,1,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,1,123.0,1,19,1,1,1,140.8,0,0,0,1,0,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,130.0,1,1,1,4,10,130.0,1,0,0,1,0,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,Graduate +4,39,1,9085,1,1,133.1,1,34,34,0,0,128.2,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,128.0,1,37,37,9,9,135.7,1,0,0,1,1,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,135.0,1,38,38,4,7,121.7,1,0,0,1,0,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9085,1,1,110.0,25,38,38,9,6,117.2,1,0,0,1,1,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,Graduate +1,43,3,9500,1,1,140.0,1,1,19,9,7,127.5,1,0,1,1,0,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,Graduate +1,17,3,9238,1,1,133.1,1,41,1,2,3,117.0,1,0,0,1,0,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,1,112.0,1,37,37,9,9,108.5,0,0,0,1,1,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,51,1,9238,1,39,140.0,1,38,38,5,7,129.1,1,0,0,1,0,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,122.0,1,38,19,9,9,126.6,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,123.0,1,1,1,4,4,114.4,0,0,0,1,1,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,Dropout +1,18,4,171,1,1,133.0,1,1,4,9,5,129.2,1,0,1,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,128.0,1,19,19,9,5,121.7,1,0,0,1,0,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,Graduate +1,39,1,9130,1,1,150.0,1,19,19,9,5,160.0,1,0,0,1,1,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,160.0,1,19,37,5,3,152.0,0,0,0,1,0,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,53,1,9085,1,42,140.0,1,19,37,9,8,142.5,1,0,0,1,0,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,130.0,1,9,19,4,1,134.2,1,0,0,1,0,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,3,9254,1,1,121.0,1,19,19,9,6,125.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,128.0,1,19,1,9,10,157.4,1,0,0,1,0,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,146.0,1,37,37,9,7,149.2,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9853,1,12,133.1,1,37,37,7,8,103.0,0,0,0,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,143.0,1,19,19,5,6,142.3,0,0,0,1,0,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,Enrolled +1,1,2,9085,1,1,118.0,1,1,19,3,3,112.4,1,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,Enrolled +2,43,1,9991,0,1,100.0,1,37,37,9,9,128.2,0,0,0,1,1,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,118.0,1,38,38,5,5,110.0,0,0,0,1,0,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9147,1,1,136.0,1,38,38,9,9,127.3,1,0,0,1,1,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,170.0,1,19,19,8,8,176.7,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,124.0,41,19,38,9,9,123.3,1,0,0,1,0,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9070,1,1,170.0,1,3,3,2,2,165.8,1,0,0,1,1,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,3,37,9,9,142.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9147,1,1,122.0,1,1,38,4,5,116.4,0,0,0,1,1,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,150.0,1,1,1,4,4,138.1,1,0,0,1,0,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,Enrolled +1,17,6,9238,1,1,138.0,1,3,3,1,2,123.0,1,0,0,1,0,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,135.0,1,19,12,9,7,137.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9070,1,1,125.0,1,1,3,3,3,128.9,0,0,0,1,0,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,128.0,1,38,19,9,10,125.2,1,0,0,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Enrolled +1,42,1,9003,1,1,140.0,1,1,3,4,2,140.0,1,0,0,1,1,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,Enrolled +1,39,1,9500,1,19,133.1,1,37,38,151,161,143.7,0,0,0,1,0,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,118.0,1,38,38,7,7,115.2,1,0,0,1,0,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,152.0,1,19,37,9,8,135.6,1,0,0,1,1,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,12,110.0,1,34,34,0,0,157.8,0,0,0,1,0,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,Graduate +1,1,6,9147,1,1,112.0,1,38,38,9,9,117.3,1,0,0,1,0,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,Graduate +1,17,3,9147,1,1,118.0,1,1,19,5,7,118.0,0,0,0,1,0,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,Enrolled +1,44,1,9070,1,39,120.0,1,1,19,5,8,119.8,0,0,0,1,1,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9670,1,1,133.1,1,19,19,3,9,118.0,0,0,0,1,1,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,159.0,1,1,19,9,9,151.3,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,118.0,1,1,38,5,7,120.8,1,0,0,1,0,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,132.0,1,1,37,8,9,128.0,1,0,0,1,0,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,Graduate +1,42,1,9147,1,1,135.0,1,19,1,4,4,120.0,0,0,0,0,1,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9670,1,1,122.0,1,1,38,3,3,114.3,1,0,0,1,0,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,171,1,1,131.0,1,1,1,0,3,149.9,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +4,39,2,9556,1,1,133.1,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,5,9119,1,1,126.0,1,12,19,4,5,122.5,1,0,0,1,1,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,145.0,1,2,38,3,8,136.3,1,0,0,1,0,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,Enrolled +1,15,1,9147,1,1,150.0,1,38,1,9,1,150.0,0,0,0,1,1,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,150.0,1,3,39,3,7,126.4,0,0,0,1,1,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,Enrolled +1,17,2,9773,1,1,148.0,1,3,38,2,6,144.2,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,124.0,1,37,19,9,3,116.3,1,0,0,1,0,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +2,39,1,9003,1,1,130.0,1,1,37,9,1,122.0,0,0,1,0,1,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,160.0,1,19,38,5,7,139.0,1,0,0,1,0,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,157.0,1,3,2,3,6,150.9,1,0,0,1,0,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,Dropout +1,42,1,9119,1,1,120.0,1,1,1,5,7,108.6,0,0,0,0,1,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9773,1,1,138.0,1,37,38,4,9,134.2,1,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,110.0,1,0,0,1,0,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,Dropout +4,39,1,9853,1,1,143.0,1,37,1,9,10,140.0,0,0,1,0,0,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,130.0,1,3,19,4,8,133.0,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,19,38,6,7,140.0,1,0,0,1,1,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,132.0,1,2,2,6,6,128.5,0,0,0,1,0,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,Dropout +1,1,2,171,1,1,135.0,1,19,19,4,7,149.0,1,0,0,1,1,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,130.0,1,19,38,3,9,126.5,1,0,0,1,0,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,125.0,1,19,38,9,8,121.5,0,0,0,1,0,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,7,129.0,0,0,0,1,0,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,Dropout +1,7,3,9130,1,3,130.0,1,37,26,90,10,130.0,0,0,0,0,1,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,123.0,1,19,19,7,7,120.8,1,0,0,1,0,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,Graduate +1,18,2,9853,1,1,168.0,1,1,19,3,9,126.8,1,0,0,1,1,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9085,1,39,140.0,1,3,1,4,3,140.0,1,0,0,1,0,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,148.0,1,19,19,9,9,138.7,0,0,0,1,0,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,Graduate +1,18,1,171,1,1,110.0,1,19,2,5,5,117.7,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9070,1,1,136.0,1,37,38,9,9,125.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +2,39,1,8014,0,1,133.1,1,37,37,5,4,134.5,0,0,0,1,0,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,Enrolled +1,42,1,9119,1,1,150.0,1,38,37,5,8,133.5,1,0,0,1,1,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,140.0,1,1,3,4,6,139.2,0,0,1,1,0,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,125.0,1,19,19,5,5,117.0,0,0,0,1,0,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,Graduate +1,39,1,9147,1,12,133.1,1,19,37,7,9,118.2,0,0,0,1,0,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,2,9147,1,1,121.0,1,1,19,9,9,113.7,1,0,0,0,0,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,131.0,1,3,19,2,3,132.8,1,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,136.0,1,37,38,4,5,126.0,1,0,0,1,0,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,Graduate +1,1,1,9853,1,1,145.0,1,37,37,9,5,146.8,0,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,123.0,1,1,1,4,9,116.7,1,0,0,1,1,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,Dropout +1,18,1,171,1,1,121.0,1,1,1,4,3,116.8,1,0,0,1,0,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,141.0,1,38,1,9,4,129.0,1,0,0,1,0,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,133.1,1,34,34,0,0,130.0,0,0,0,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,126.0,1,1,3,4,3,122.5,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,Dropout +2,1,1,9254,1,1,136.0,1,37,37,9,9,122.7,0,0,0,1,0,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,37,37,9,10,100.0,0,0,0,1,1,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9500,1,1,133.1,1,38,19,7,9,115.5,1,0,0,1,1,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9991,0,1,131.0,1,19,37,9,9,118.4,1,0,0,1,0,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,153.0,1,1,38,4,3,146.7,0,0,0,1,0,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,Graduate +1,43,1,8014,0,12,114.0,1,34,34,0,99,110.0,0,0,0,1,0,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,147.0,1,1,1,5,5,134.9,0,1,0,1,0,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,Graduate +1,1,2,9085,1,1,156.0,1,40,40,3,7,150.9,1,0,0,1,0,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,137.0,1,38,38,5,7,122.7,1,0,0,1,0,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,123.0,1,1,19,4,5,117.8,0,0,0,1,1,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9238,1,1,135.0,1,37,37,8,6,127.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,131.0,1,37,37,9,9,123.0,1,0,0,1,0,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9670,1,1,123.0,1,3,1,3,1,116.7,0,0,0,1,0,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,9085,1,40,140.0,1,1,19,5,5,140.0,1,0,0,1,0,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,Graduate +4,39,1,9500,1,19,133.1,1,38,19,5,7,140.0,0,0,0,1,0,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,127.0,1,3,19,3,9,127.0,1,0,0,1,1,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,Graduate +1,17,2,8014,0,1,120.0,1,19,1,5,10,114.8,1,0,0,1,0,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9670,1,19,133.1,1,37,37,9,7,130.0,0,0,1,1,1,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,171,1,1,131.0,41,19,1,4,7,131.4,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,16,2,171,1,1,145.0,1,3,3,2,2,143.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,120.0,1,19,38,6,6,120.0,1,0,0,1,1,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,6,9238,1,1,131.0,1,1,3,4,2,131.7,1,0,0,1,0,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,137.0,1,3,1,4,9,128.6,0,0,0,1,0,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,170.0,1,19,19,9,7,170.0,1,0,1,1,1,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9853,1,1,122.0,1,38,37,9,9,118.9,1,0,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,5,9500,1,1,148.0,1,1,19,4,8,130.2,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9003,1,19,133.1,1,1,19,9,8,120.0,0,0,1,0,1,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,2,9147,1,1,143.0,1,19,38,9,7,132.2,1,0,0,1,0,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9556,1,1,132.0,1,38,37,7,7,119.0,1,0,0,1,0,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,133.1,1,3,1,4,4,95.0,0,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,154.0,1,3,1,2,1,137.2,0,0,0,1,1,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,Enrolled +1,1,1,9853,1,1,129.0,1,38,37,6,6,138.1,0,0,0,1,0,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,17,2,9670,1,1,129.0,1,1,19,5,5,119.2,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,43,1,9500,1,1,137.0,1,3,3,2,2,115.0,0,0,0,1,0,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,Graduate +1,17,2,9254,1,1,115.0,1,19,19,9,7,113.3,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,133.0,1,38,38,7,7,125.3,1,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,10,150.0,0,0,0,0,0,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,19,133.1,1,19,19,144,141,131.5,0,0,1,1,0,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,133.0,1,38,1,2,4,126.0,0,0,0,1,0,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,15,1,9147,1,1,133.1,41,41,1,3,4,100.0,0,0,1,0,1,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,Dropout +1,10,2,9773,1,1,154.4,22,19,38,3,5,154.4,1,0,0,0,0,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9070,1,39,100.0,1,1,1,4,4,106.0,0,0,0,1,1,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,135.0,1,38,19,8,8,126.3,1,0,1,1,0,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,120.0,41,1,1,9,6,114.8,1,0,0,1,0,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,Enrolled +1,17,1,9085,1,1,124.0,1,19,38,7,7,113.9,1,0,0,1,0,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,Graduate +1,1,6,9254,1,1,126.0,1,38,37,5,7,123.9,1,0,0,1,0,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,125.0,1,37,37,9,9,121.5,1,0,0,1,1,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,6,9773,1,1,125.0,1,1,1,5,4,122.2,0,0,0,1,1,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,135.0,1,19,19,4,5,126.8,1,0,0,1,1,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9238,1,1,133.0,1,1,37,7,9,127.4,1,0,0,1,0,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,3,9070,1,1,127.0,1,19,38,5,7,141.0,1,0,0,1,1,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,3,120.0,1,37,37,4,7,122.5,0,0,0,0,0,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,2,9147,1,1,150.0,1,19,37,9,7,101.0,0,0,1,0,0,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,4,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,Graduate +1,17,5,9500,1,1,143.0,1,38,1,9,7,130.6,1,0,0,1,0,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,129.0,1,38,19,5,7,124.0,1,0,0,1,0,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,Graduate +1,17,2,9500,1,1,140.0,1,1,1,5,10,128.5,1,0,0,1,0,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,Enrolled +4,39,1,8014,0,19,100.0,1,1,37,9,1,111.5,0,0,0,1,1,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,Dropout +2,39,2,9556,1,1,110.0,1,19,38,9,9,112.8,0,0,0,1,0,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,116.0,1,19,19,5,8,127.9,0,0,1,0,0,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,Dropout +1,43,4,171,1,1,117.0,1,19,12,9,10,109.3,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,130.0,1,1,38,5,5,122.3,1,0,0,1,0,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,Graduate +1,15,1,9119,1,1,130.0,26,38,3,9,2,137.0,1,0,0,1,1,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,Enrolled +1,39,1,9556,1,1,133.1,1,38,19,9,6,100.0,1,0,0,1,0,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,150.0,1,3,1,3,9,154.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9147,1,1,131.0,1,3,19,2,9,126.1,0,0,0,1,0,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,1,6,9773,1,1,145.0,1,1,19,4,4,131.0,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,136.0,1,19,38,4,7,140.9,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,155.0,1,19,37,4,5,117.5,0,0,0,1,0,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9147,1,1,128.0,1,3,3,5,10,116.5,0,0,0,1,1,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,4,9254,1,1,133.0,1,37,37,5,8,128.5,1,0,0,1,0,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9119,1,1,141.0,1,37,1,9,2,133.0,1,0,0,1,1,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,Enrolled +1,51,1,8014,0,1,120.0,1,1,1,4,4,128.5,0,0,1,0,1,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,Dropout +1,43,1,9003,1,1,120.0,1,3,3,1,2,115.0,0,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,136.0,1,19,19,4,7,136.0,0,0,0,1,0,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,Graduate +1,17,1,9070,1,1,116.0,1,38,38,9,9,123.7,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,125.0,1,19,19,4,8,117.0,1,0,0,1,0,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,135.0,1,1,38,5,7,137.5,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,140.0,1,19,19,7,7,124.6,1,0,0,1,0,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,Enrolled +1,39,1,9670,1,19,133.1,1,1,1,4,7,100.0,0,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,122.0,1,37,37,9,9,131.0,1,0,0,1,0,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,Dropout +2,43,1,9773,1,1,160.0,1,37,37,5,0,160.0,0,0,1,0,1,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9670,1,1,113.0,1,37,19,9,9,110.2,1,0,0,1,0,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,125.0,1,37,37,9,9,126.0,1,0,1,1,0,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,Graduate +1,43,1,171,1,39,140.0,1,38,37,9,7,140.0,0,0,0,0,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9853,1,1,134.0,1,37,19,9,5,121.4,1,0,0,1,0,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,8014,0,1,120.0,1,1,37,7,3,122.8,0,0,0,1,0,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,1,1,4,2,127.7,0,0,0,1,0,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,Enrolled +2,39,1,9991,0,1,120.0,1,19,37,3,9,132.9,0,0,0,1,1,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,138.0,1,1,38,4,9,132.5,1,0,0,1,0,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,133.1,1,19,37,7,7,126.0,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9500,1,1,110.0,1,38,38,9,9,110.0,0,0,0,0,0,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,Dropout +5,7,1,9500,1,40,150.0,1,37,37,4,9,150.0,0,0,0,1,0,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,Graduate +1,17,1,9070,1,1,126.0,1,19,38,9,7,118.7,0,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,16,4,9254,1,1,126.0,1,38,37,9,7,118.7,1,0,0,1,0,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9773,1,1,110.0,1,19,19,5,5,105.5,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,9,133.1,1,34,34,0,0,118.0,0,0,0,1,0,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,140.0,1,3,2,4,6,133.4,1,0,0,0,1,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,Enrolled +1,1,1,171,1,1,134.0,1,3,2,2,2,141.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9773,1,1,133.1,1,1,1,90,90,129.6,0,0,0,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,133.1,1,38,19,5,6,138.0,0,0,1,1,1,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,Enrolled +1,17,3,9500,1,1,156.0,1,19,37,4,9,132.3,1,0,0,1,1,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,Graduate +1,44,1,9085,1,39,140.0,1,3,3,4,2,140.0,1,0,0,1,0,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,Graduate +1,43,1,171,1,1,116.0,1,3,1,2,3,117.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,141.0,1,38,19,9,6,126.3,1,0,0,1,0,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,44,1,9238,1,39,140.0,1,1,19,191,102,143.0,0,0,0,1,0,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,Graduate +1,43,5,8014,0,1,110.0,1,34,34,0,0,110.0,0,0,0,1,1,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9238,1,1,143.0,1,1,11,4,3,128.0,1,0,0,1,0,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +3,17,1,9238,1,1,138.0,1,37,37,9,9,133.5,1,0,0,1,0,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,Enrolled +1,7,1,9119,1,3,150.0,1,3,2,2,2,150.0,0,0,0,1,0,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,150.0,1,19,1,1,1,150.0,0,0,0,1,1,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,Enrolled +1,17,1,9085,1,1,134.0,1,19,37,2,7,131.2,0,0,0,1,0,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,171,1,1,133.1,1,37,37,9,7,100.0,0,0,1,1,1,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,1,9556,1,1,133.1,1,3,19,2,8,106.0,1,0,0,1,1,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,Graduate +1,17,2,9500,1,1,135.0,1,19,19,9,4,129.8,1,0,0,1,0,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,Graduate +1,39,1,33,1,1,130.0,1,38,37,9,6,102.5,0,0,1,0,1,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,Dropout +1,18,1,9500,1,1,144.0,1,37,37,6,6,127.5,1,0,0,1,0,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,130.0,1,37,38,9,9,133.9,1,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,44,1,9003,1,39,140.0,1,37,37,4,7,140.0,0,0,0,1,1,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,Dropout +1,1,4,9773,1,1,137.0,1,3,19,2,3,139.8,1,1,0,1,0,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,1,9991,0,1,130.0,1,2,37,3,9,131.4,0,0,0,1,1,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,135.0,1,3,3,1,1,125.8,1,0,0,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Graduate +1,18,1,9238,1,1,147.0,1,38,34,4,0,130.2,0,0,0,1,0,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +5,17,5,9500,1,1,143.0,1,37,38,5,8,133.5,1,0,0,1,0,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,99.0,1,1,3,5,10,100.0,1,0,0,1,1,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,Graduate +1,16,2,9147,1,1,131.0,1,37,37,9,9,135.9,1,0,0,1,1,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,146.0,1,38,37,6,6,143.9,0,0,0,1,0,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9085,1,1,139.0,1,38,38,5,3,136.2,0,0,0,1,0,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,153.0,1,3,1,2,8,137.6,1,0,0,1,0,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,2,9085,1,1,133.1,1,19,38,9,1,100.0,1,0,1,0,1,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,2,9773,1,1,121.0,1,19,19,9,9,122.8,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,141.0,1,37,38,9,10,138.9,0,0,0,1,0,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,6,9500,1,1,117.0,1,4,12,5,9,119.8,1,0,0,1,0,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,Graduate +1,17,4,9119,1,1,122.0,62,1,1,191,171,121.0,1,0,0,1,1,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,38,19,3,3,98.6,0,0,0,1,0,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,140.0,1,38,37,5,6,124.3,1,0,0,1,0,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,140.0,1,37,37,9,9,127.7,1,0,0,1,0,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,121.0,1,37,37,9,9,124.2,1,0,0,1,0,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,Graduate +1,18,1,9130,1,1,146.0,1,3,3,5,2,137.8,0,0,0,1,1,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,3,120.0,1,1,1,7,10,120.0,1,0,0,0,1,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,120.0,1,37,37,7,8,120.0,1,0,1,0,0,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,178.0,1,19,1,4,8,174.7,0,0,0,1,0,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,Graduate +1,17,5,9254,1,1,114.0,1,38,1,5,9,109.5,0,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,143.0,1,38,38,9,9,140.0,0,0,0,1,1,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,160.0,1,38,37,9,5,159.3,0,0,0,1,0,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,143.0,1,38,34,9,9,133.6,1,0,0,1,0,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,Graduate +4,43,1,9500,1,19,100.0,1,34,34,0,0,110.0,0,0,0,1,1,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,125.0,1,1,19,4,1,121.5,1,0,0,1,1,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,19,7,3,120.0,1,0,0,1,1,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,3,120.0,1,19,1,9,5,134.0,0,0,0,1,0,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,Dropout +1,39,1,9254,1,1,160.0,1,19,37,7,10,100.0,0,0,0,1,1,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,Enrolled +1,15,1,171,1,1,130.0,26,1,1,2,9,130.0,0,0,0,1,1,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,140.0,1,19,37,5,6,137.9,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,123.0,1,19,37,9,9,124.1,1,0,0,1,0,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,140.0,1,38,38,6,6,140.0,0,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,9,133.1,1,34,34,0,0,118.4,0,0,0,0,0,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,6,9254,1,1,125.0,1,1,1,4,3,120.5,1,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,6,171,1,1,126.0,1,10,10,4,4,130.2,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,120.0,1,1,19,4,7,120.0,0,0,0,1,1,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,Enrolled +1,17,5,9773,1,1,143.0,1,1,1,7,7,136.7,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,42,1,9147,1,1,130.0,1,37,38,9,1,130.0,1,0,0,1,0,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,1,130.0,1,37,37,9,9,124.0,0,0,0,1,1,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,Graduate +1,17,2,9238,1,1,136.0,1,1,3,3,4,126.6,1,0,0,1,0,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,127.0,1,19,1,5,7,118.3,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,Enrolled +4,39,1,9991,0,1,147.0,1,19,19,7,8,147.9,0,0,0,1,0,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,124.0,1,19,37,99,90,124.0,0,0,0,0,0,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +2,43,1,9003,1,1,133.1,1,37,37,9,7,136.0,0,0,0,1,1,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,1,9085,1,1,140.0,1,12,1,1,90,141.8,0,0,0,1,0,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,133.1,1,37,37,191,154,95.0,0,0,0,1,0,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,147.0,1,2,3,4,8,145.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9238,1,3,130.0,1,37,19,4,5,130.0,0,0,0,1,0,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,Graduate +1,7,2,9085,1,3,130.0,1,3,3,1,1,130.0,0,0,0,0,0,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,Dropout +2,39,2,9147,1,3,130.0,1,3,37,9,9,103.4,0,0,0,1,0,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,Dropout +1,17,1,9085,1,1,135.0,1,1,19,4,10,125.6,1,0,0,1,0,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,1,1,5,5,96.0,1,0,0,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +5,39,1,9853,1,19,133.1,1,38,1,5,3,105.5,0,0,1,1,0,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,136.0,1,37,37,7,7,121.7,1,0,0,1,0,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9119,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,1,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,19,133.1,1,19,19,4,4,100.0,0,0,0,1,1,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,124.0,1,2,2,3,2,118.4,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9085,1,1,120.0,1,2,3,2,2,116.1,0,0,0,1,0,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,162.0,1,37,37,9,9,142.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,131.0,1,37,1,9,9,135.9,1,0,0,1,0,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,7,100.0,0,0,0,1,1,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,Graduate +1,43,1,9500,1,1,127.0,1,19,19,4,7,121.1,0,0,0,1,0,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,143.0,1,37,37,9,5,131.6,1,0,0,1,0,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,Graduate +1,17,4,9085,1,1,140.0,1,19,37,4,7,123.7,0,0,0,1,0,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,156.0,1,19,1,5,10,136.8,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Dropout +2,39,1,9853,1,10,133.1,1,37,34,0,0,115.5,0,0,0,1,0,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,Dropout +1,1,3,9119,1,1,113.0,1,4,38,2,7,107.4,1,0,0,1,1,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,Graduate +2,39,1,9670,1,1,130.0,1,37,37,9,0,158.0,0,0,1,0,0,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,Dropout +1,43,1,9853,1,1,110.0,1,37,37,9,9,107.7,0,0,1,0,0,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,124.0,1,2,2,3,3,124.7,1,0,0,1,1,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,127.0,1,37,37,5,10,125.3,0,0,0,1,1,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Graduate +1,16,1,9500,1,1,133.1,1,37,37,9,9,95.0,1,0,0,1,0,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,4,9238,1,1,127.0,1,19,19,4,0,127.4,1,0,0,1,0,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,113.0,1,38,38,3,7,112.3,0,0,0,1,0,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,110.0,1,19,37,9,99,106.1,1,1,1,0,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,141.0,1,1,38,4,8,136.8,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,133.1,1,37,37,9,7,140.0,0,0,0,1,0,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,124.0,1,1,1,4,4,118.8,0,0,0,1,1,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,4,120.0,1,2,3,2,2,120.0,0,0,0,1,0,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,110.0,1,3,3,4,10,115.6,1,0,0,1,1,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,118.0,1,1,19,4,10,110.7,1,1,0,1,0,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +4,39,1,9238,1,1,130.0,1,19,3,9,2,140.0,0,0,0,1,1,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,1,140.0,1,1,19,3,9,140.0,1,0,1,0,0,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,3,9773,1,1,123.0,1,1,19,5,5,117.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,115.0,1,38,38,8,7,112.9,1,0,0,1,0,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,1,6,9147,1,1,142.0,1,38,37,7,7,134.3,0,1,0,1,1,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9085,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,0,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,129.0,1,19,1,3,7,121.0,0,0,0,1,0,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,156.0,1,3,3,123,122,155.0,0,0,0,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,136.0,1,37,37,9,9,126.3,1,0,0,1,0,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,Graduate +2,43,1,9991,0,1,110.0,1,37,37,9,9,132.5,0,0,0,1,1,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,19,133.1,1,37,1,5,5,138.3,0,0,0,1,1,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,Dropout +1,1,2,9130,1,1,140.0,1,19,37,9,9,129.5,1,0,0,1,0,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,Enrolled +1,7,1,9500,1,3,140.0,1,37,37,4,4,140.0,0,0,0,1,0,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,Graduate +4,42,1,9147,1,1,110.0,1,37,37,9,9,128.2,0,0,0,1,0,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,Graduate +1,39,1,9119,1,19,133.1,1,1,1,4,3,134.4,0,0,1,0,1,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,136.0,1,37,1,5,4,120.8,1,0,0,1,0,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,Graduate +1,17,2,9500,1,1,140.0,1,37,37,9,9,132.5,1,0,0,1,0,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,Graduate +1,17,6,9147,1,1,130.0,1,37,37,9,9,110.4,1,0,0,1,1,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,4,5,105.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,136.0,1,19,19,4,3,126.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,116.0,1,38,2,9,2,112.2,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9238,1,1,122.0,1,19,3,5,2,112.6,0,0,1,1,0,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9147,1,1,118.0,1,1,38,9,9,118.4,1,0,0,1,1,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,Enrolled +1,17,1,9130,1,1,117.0,1,19,19,4,4,113.5,1,0,0,1,0,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,117.0,1,19,19,9,9,111.8,1,0,0,1,1,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,Dropout +1,1,6,9500,1,1,118.0,1,38,19,3,3,113.5,1,0,0,1,1,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +2,43,2,9853,1,1,130.0,1,38,31,4,1,124.2,0,0,0,1,0,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,128.0,1,38,38,9,7,124.5,1,0,0,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,8,108.7,1,0,0,1,1,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9254,1,19,133.1,1,37,19,9,10,156.5,0,0,0,1,1,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,Graduate +1,39,1,9003,1,1,160.0,1,1,37,191,193,140.0,0,0,0,1,1,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,10,150.0,0,0,0,1,1,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,Graduate +1,18,2,9070,1,1,122.0,1,38,19,5,5,119.9,0,0,0,1,1,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,125.0,1,19,38,9,7,116.3,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,37,37,6,6,147.8,0,0,0,1,0,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,171,1,1,174.0,1,5,3,3,3,157.9,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,131.0,1,1,1,4,4,127.2,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,3,110.0,1,12,3,5,8,106.5,1,0,1,0,0,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,124.0,1,37,37,9,9,116.0,1,0,0,1,0,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,38,38,5,7,146.2,0,0,0,1,0,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,9,97.0,0,0,0,1,0,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,132.0,1,19,1,9,9,141.8,1,0,0,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +2,43,1,9254,1,3,120.0,1,38,37,9,3,120.0,1,0,0,1,0,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,135.0,1,3,2,1,1,133.6,1,0,0,0,0,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,133.0,1,38,38,5,2,135.5,0,0,0,1,0,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,125.0,1,39,3,3,2,125.0,1,0,0,1,0,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,4,112.0,0,0,0,1,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,141.0,1,1,1,5,9,126.3,0,0,0,1,1,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,1,133.1,1,1,37,9,8,130.0,0,0,0,1,1,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,3,10,107.8,0,0,0,1,0,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,Enrolled +1,43,1,9500,1,1,120.0,1,3,4,2,4,120.6,0,0,0,1,1,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,1,133.1,1,1,19,9,9,120.0,0,0,0,1,1,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,Graduate +1,39,1,9853,1,1,140.0,1,19,1,9,4,128.2,0,0,0,0,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,133.1,1,37,19,9,3,123.0,0,0,0,1,1,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9147,1,1,150.0,1,37,1,7,3,148.8,0,0,0,1,1,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,Graduate +1,17,1,9670,1,1,125.0,1,38,37,7,5,126.4,0,0,0,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,Graduate +1,44,1,9003,1,39,140.0,1,38,1,134,134,140.0,1,0,1,1,1,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,44,1,9070,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,1,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,130.0,1,1,1,9,9,124.1,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Enrolled +1,51,1,9070,1,1,130.0,1,19,19,5,7,124.5,0,0,0,1,0,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,101.0,1,37,37,9,4,101.0,1,0,1,1,0,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,Enrolled +1,1,1,8014,0,1,115.0,1,38,38,9,7,115.0,1,0,0,1,0,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9130,1,1,122.0,1,19,19,9,9,121.7,1,0,0,0,0,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,135.0,1,38,38,9,6,138.1,0,0,1,0,0,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9147,1,1,130.0,1,37,37,9,9,119.9,1,0,0,0,0,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,134.0,1,1,1,9,9,133.0,1,0,0,1,0,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,19,37,9,9,117.8,1,0,0,1,0,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,119.0,1,1,19,4,10,115.5,1,0,0,1,0,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,Enrolled +1,17,3,9119,1,1,138.0,1,3,3,3,4,125.4,1,1,0,1,1,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,164.0,1,19,19,9,9,149.0,1,0,0,1,0,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,1,140.0,1,4,4,2,6,140.0,0,0,0,1,0,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,Graduate +1,43,1,9070,1,1,160.0,1,1,2,4,2,100.0,0,0,0,1,1,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,132.0,1,37,37,9,5,135.9,0,0,0,1,0,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,142.0,1,37,19,7,7,133.0,1,0,0,1,0,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9556,1,3,130.0,1,1,37,4,8,130.0,0,0,0,0,1,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,Dropout +1,44,1,171,1,39,110.0,1,1,1,1,7,114.2,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9147,1,1,129.0,1,19,19,4,9,127.6,1,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,164.0,1,34,1,0,0,163.0,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9556,1,1,122.0,1,19,38,4,8,118.3,1,0,0,1,0,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,141.0,1,38,37,3,3,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,Graduate +1,1,1,9003,1,1,148.0,1,1,19,194,194,143.5,0,0,1,1,1,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,150.0,1,37,19,6,4,137.0,0,0,0,1,1,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,38,38,1,4,138.7,0,0,0,1,1,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,103.8,0,0,0,1,0,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,Dropout +1,17,1,8014,0,1,127.0,1,19,37,4,7,115.8,0,0,0,1,0,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,143.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,130.0,1,38,19,5,6,125.1,1,0,0,1,0,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9254,1,1,133.0,1,19,1,9,9,137.2,0,0,0,1,1,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +2,1,4,8014,0,1,140.0,1,34,34,0,0,128.0,1,0,0,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,120.0,1,1,1,9,10,118.3,0,0,0,1,1,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Enrolled +2,39,1,8014,0,12,133.1,1,37,37,9,1,113.0,0,0,0,1,0,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,128.0,1,19,1,0,5,122.1,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,37,38,3,3,123.0,0,0,0,1,0,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,120.0,1,37,1,7,4,95.0,1,0,0,1,0,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,Dropout +1,17,4,9238,1,1,123.0,1,19,19,191,144,116.0,1,0,0,1,0,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,140.0,1,37,37,90,90,106.3,0,0,1,0,1,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,159.0,1,3,3,2,2,162.5,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,125.0,1,19,19,9,9,115.9,0,0,0,1,0,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,130.0,1,19,19,3,7,129.0,0,0,1,0,0,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,133.1,1,38,37,5,5,136.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,156.0,1,5,4,2,1,140.8,0,0,0,1,0,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,161.0,1,37,37,9,9,100.0,1,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,8014,0,3,130.0,1,35,35,90,90,140.0,0,0,0,0,0,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,Dropout +2,1,1,9991,0,1,120.0,1,37,19,9,9,135.0,1,0,0,1,1,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,1,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,148.0,1,3,3,2,2,137.3,1,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,120.0,1,19,37,5,7,115.1,0,0,0,1,0,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,6,9773,1,1,138.0,1,1,1,4,2,140.5,1,0,0,1,0,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,Graduate +2,43,1,9085,1,1,160.0,1,37,37,9,7,120.0,0,0,0,1,1,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,Enrolled +1,17,2,8014,0,1,134.0,1,1,19,4,99,126.0,1,0,0,1,1,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,100.0,1,0,0,1,0,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,131.0,1,1,1,5,9,129.5,1,0,0,1,0,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,Graduate +1,1,4,171,1,1,139.0,1,37,38,9,9,127.8,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,150.0,1,37,37,5,6,132.5,1,0,0,1,0,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,133.1,1,19,38,5,7,110.0,1,0,0,1,0,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,6,138.6,1,34,34,0,0,138.6,1,0,0,1,1,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,133.1,1,1,1,4,10,100.8,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,5,140.0,1,19,1,4,1,140.0,1,0,0,0,0,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,118.0,1,1,19,9,10,113.1,1,0,0,1,0,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,115.0,1,3,3,2,2,111.5,1,0,1,0,0,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9254,1,39,170.0,1,19,2,9,3,170.0,0,0,0,0,1,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,9,120.0,0,0,0,1,0,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,137.0,1,19,38,7,7,126.5,1,0,0,1,0,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,136.0,1,19,19,90,8,133.9,1,0,0,0,1,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,Dropout +1,18,2,9500,1,1,141.0,24,1,1,4,3,126.8,1,0,0,1,0,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,Graduate +1,17,4,9238,1,1,124.0,1,19,19,5,8,117.7,1,0,0,1,0,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,149.0,1,19,38,9,9,126.5,1,0,0,1,0,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,153.0,1,1,1,141,175,157.9,0,0,1,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,140.0,1,1,2,4,6,140.0,1,0,0,1,0,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,137.0,1,1,3,3,2,121.3,1,0,0,1,0,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,143.0,1,1,1,4,6,138.8,0,0,0,0,1,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,160.0,1,1,3,1,2,130.0,0,0,0,0,1,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,19,19,9,8,105.8,0,0,0,1,0,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,Dropout +1,5,4,9119,1,1,115.0,1,19,37,4,6,113.3,1,0,0,1,1,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,19,4,3,125.4,1,0,0,1,0,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,Graduate +4,42,1,9500,1,19,133.1,1,1,1,5,5,126.0,1,0,0,1,1,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9254,1,3,133.1,1,19,19,4,6,130.5,0,0,0,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,108.0,1,1,19,4,4,105.9,1,0,0,1,1,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,126.0,1,19,19,9,9,115.2,0,0,1,1,0,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9853,1,1,140.0,1,37,37,9,9,145.3,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,6,9070,1,6,119.0,1,1,1,9,9,123.2,1,0,0,1,1,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,160.0,1,1,38,5,6,168.6,0,0,0,1,1,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9254,1,1,120.0,1,1,19,9,9,148.3,0,0,0,1,1,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,3,130.0,1,1,19,9,10,130.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,137.0,1,38,38,151,151,141.6,0,0,0,1,1,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,4,140.0,0,0,0,1,1,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,Enrolled +1,43,1,9085,1,1,162.0,1,2,1,4,4,162.0,0,0,0,1,0,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,43,1,171,1,1,133.0,1,19,19,5,7,133.0,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,154.0,1,37,37,9,7,150.2,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,19,100.0,1,38,19,0,10,111.3,0,0,1,0,0,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,38,4,9,126.2,0,0,0,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,132.0,1,3,1,2,7,125.5,1,0,0,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,127.0,1,37,37,5,7,116.2,0,0,0,1,1,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9773,1,1,121.0,1,19,38,9,7,113.0,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,130.0,1,19,19,9,9,127.6,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,160.0,1,34,34,99,99,114.3,0,0,0,1,1,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,Enrolled +1,18,4,9254,1,1,119.0,1,37,37,9,9,113.1,1,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,130.0,1,38,37,5,6,130.0,0,0,0,1,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,163.0,1,19,37,5,8,150.8,1,0,0,1,1,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,Enrolled +1,43,1,9238,1,1,122.0,1,19,19,5,5,114.3,1,0,0,1,0,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,Enrolled +1,18,1,9147,1,1,131.0,1,34,34,90,90,131.0,0,0,0,1,1,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,4,9773,1,1,137.0,1,1,1,5,5,125.8,0,0,1,1,1,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9670,1,1,133.1,1,37,37,90,90,97.4,0,0,1,0,1,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,37,38,7,5,106.0,1,0,0,1,0,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,Graduate +1,17,6,9254,1,1,108.0,1,1,19,4,5,112.2,1,0,0,1,1,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,19,133.1,1,1,19,4,10,111.8,1,0,0,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,133.1,1,1,37,9,10,139.0,0,0,0,1,1,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,122.0,1,12,19,4,8,117.8,1,0,0,1,0,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,128.0,1,19,19,0,5,120.3,1,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,133.1,1,34,19,0,3,117.1,1,0,0,1,0,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9556,1,19,133.1,1,37,38,9,9,123.0,0,0,0,1,0,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,Graduate +1,17,2,9238,1,1,133.0,1,37,37,9,4,123.6,0,0,0,1,0,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,5,9670,1,1,132.0,1,19,19,5,5,134.1,1,0,0,1,1,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,129.0,1,38,1,4,10,129.4,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,136.0,1,19,19,4,8,150.4,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,154.0,1,3,3,1,3,129.0,1,0,0,1,0,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,Enrolled +1,44,1,9130,1,39,150.0,1,1,1,4,4,150.0,1,0,0,1,0,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,115.0,1,37,37,9,8,116.1,1,0,0,1,0,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,157.0,1,19,3,4,9,138.8,0,0,0,1,1,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9670,1,19,133.1,1,19,1,5,8,97.2,1,0,0,1,1,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,141.0,1,37,38,6,6,125.6,1,0,0,1,0,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,143.0,1,19,1,9,9,144.4,1,0,0,1,0,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9119,1,1,127.0,1,19,1,4,5,115.8,0,0,0,1,1,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,150.0,1,1,1,9,10,142.7,0,0,1,1,0,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,132.0,11,12,12,90,4,129.9,1,0,0,1,0,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,115.0,1,19,19,191,171,109.1,0,0,1,0,1,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,Enrolled +1,17,1,9773,1,1,121.0,1,38,38,9,8,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,7,1,9085,1,40,130.0,1,1,1,4,4,130.0,1,0,0,1,0,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,140.0,1,19,38,4,4,138.3,0,0,0,1,1,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,6,9773,1,1,116.0,1,19,1,4,4,110.1,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,131.0,1,38,38,9,9,127.9,0,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,Graduate +1,51,1,9991,0,42,110.0,1,19,37,5,9,128.2,0,0,0,0,0,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,138.0,1,19,19,5,8,124.9,1,0,0,1,0,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,172.0,1,1,1,4,9,167.1,0,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +5,39,1,9991,0,1,120.0,1,37,37,9,9,138.1,0,0,0,1,1,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,37,38,3,7,96.7,0,0,0,1,1,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,15,1,9130,1,1,133.1,41,1,1,4,4,100.0,0,0,0,1,0,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9119,1,1,122.0,1,19,19,9,9,114.7,0,0,0,1,1,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,192,192,96.0,1,0,0,1,0,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,160.0,1,1,37,9,10,118.0,0,0,0,1,0,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,Enrolled +1,18,4,9119,1,1,134.0,1,19,38,194,175,124.9,1,0,1,1,1,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,4,19,4,5,98.0,0,0,0,1,1,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +5,43,1,9991,0,3,130.0,1,3,3,1,1,130.0,0,0,0,1,0,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,120.0,1,19,19,4,5,114.8,1,0,1,0,0,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,6,8014,0,1,134.0,1,3,19,2,4,120.7,1,0,0,1,0,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,133.1,1,37,37,9,9,109.7,0,0,0,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9070,1,1,128.0,1,19,19,3,3,123.5,1,1,0,0,1,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,133.1,1,1,19,5,9,130.0,0,0,0,1,1,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,Graduate +1,7,1,9991,0,40,120.0,1,43,3,3,3,120.0,0,0,0,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,Enrolled +1,17,5,9556,1,1,139.0,1,19,19,9,8,121.3,1,0,0,1,0,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,156.0,1,3,19,3,3,151.1,0,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,Graduate +1,16,2,9147,1,1,132.0,1,37,37,9,9,122.6,1,0,0,1,0,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,130.0,1,2,3,9,6,130.0,0,0,0,1,1,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,133.1,1,1,1,1,6,120.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,1,1,1,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,133.0,1,3,3,1,1,126.2,1,0,0,1,0,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,Graduate +1,18,2,9147,1,1,140.0,1,37,37,5,9,124.3,1,0,0,1,1,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,44,1,9003,1,39,150.0,1,37,38,4,8,150.0,0,0,0,1,0,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,140.0,1,37,19,191,163,129.3,1,0,1,1,0,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +4,7,1,9500,1,3,130.0,1,3,19,2,3,130.0,0,0,0,1,0,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9070,1,1,131.0,1,19,19,7,7,125.1,0,0,0,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,Enrolled +1,10,1,9773,1,1,152.0,22,38,37,5,9,152.0,1,0,0,1,0,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,123.0,1,34,38,0,7,120.2,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,131.0,1,3,19,4,4,130.3,1,0,0,1,1,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,115.0,1,1,1,5,4,108.0,1,0,0,1,0,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,130.0,1,38,37,9,9,144.0,0,0,0,1,0,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9238,1,1,134.0,1,3,1,3,4,133.0,1,0,0,1,0,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,Graduate +1,51,1,9670,1,1,133.1,1,3,1,3,10,116.2,0,0,0,1,1,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,139.0,0,0,0,1,1,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,126.0,1,19,1,9,9,122.5,1,0,0,0,0,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,121.0,1,19,19,9,9,126.3,1,0,0,1,0,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9003,1,1,133.1,1,38,38,4,8,115.0,0,0,1,1,1,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,19,37,9,9,151.5,0,0,1,0,1,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9853,1,40,110.0,1,41,3,2,1,110.0,0,0,1,1,0,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,17,5,9238,1,1,131.0,1,19,37,5,7,120.2,1,0,0,1,0,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,7,1,9070,1,3,140.0,1,37,37,7,7,140.0,0,0,0,0,1,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +4,39,1,9254,1,1,140.0,1,38,37,9,9,112.0,0,0,1,1,0,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,Dropout +1,18,3,9853,1,1,122.0,1,38,37,9,5,120.3,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9070,1,1,125.0,1,1,38,9,7,118.0,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Enrolled +1,1,3,9670,1,1,111.0,1,1,1,5,5,105.4,0,0,0,1,0,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +2,39,1,9254,1,1,130.0,1,37,37,4,7,120.0,1,0,0,1,0,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,160.0,1,37,37,9,9,160.0,1,0,0,1,0,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,39,1,9147,1,12,133.1,1,37,37,9,9,140.0,0,0,0,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9147,1,1,118.0,1,1,2,10,10,117.3,1,0,0,1,0,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,3,9085,1,1,130.0,1,1,19,9,9,121.3,1,0,0,1,0,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,9,130.0,0,0,0,1,0,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,3,9085,1,1,130.0,1,19,37,5,5,121.3,1,0,0,1,0,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,Enrolled +1,1,2,9254,1,1,120.0,1,19,19,9,9,116.5,1,0,0,1,0,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,Graduate +2,39,1,9500,1,1,140.0,1,37,37,9,4,127.3,0,0,0,1,1,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,118.0,1,37,38,8,7,115.2,1,0,0,1,0,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,17,3,9238,1,1,125.0,1,19,19,7,8,121.5,0,0,0,1,0,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,125.0,1,19,19,5,5,114.5,1,0,0,1,0,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,136.0,1,39,1,3,4,134.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,115.0,1,3,2,4,5,112.6,0,0,0,1,1,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,53,1,9003,1,1,130.0,1,19,1,9,9,130.0,0,0,1,1,1,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,Enrolled +1,1,3,9773,1,1,136.0,1,3,1,5,3,129.0,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,3,150.0,1,2,3,4,7,173.3,1,0,0,1,0,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,140.0,1,1,19,7,7,129.9,1,0,0,1,0,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,Dropout +1,7,1,9119,1,1,140.8,1,34,34,0,0,134.0,0,0,0,1,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9254,1,1,115.0,1,37,19,5,5,109.8,1,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,137.0,1,1,1,4,4,127.6,1,0,0,1,0,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,Graduate +4,7,1,9238,1,40,130.0,1,34,34,99,99,130.0,0,0,1,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9147,1,1,123.0,1,37,37,9,9,106.2,0,0,0,1,0,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,121.0,1,1,3,3,7,113.0,1,0,0,1,1,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,140.0,1,3,1,2,3,129.9,0,0,0,1,0,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,130.0,1,38,38,9,7,130.0,0,0,0,1,1,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,Dropout +1,51,1,9070,1,1,132.0,1,19,19,153,153,120.0,0,0,0,1,0,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,9119,1,1,110.0,1,37,37,9,9,106.8,0,0,0,1,1,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,124.0,1,19,37,4,4,126.8,0,0,0,1,0,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,Enrolled +1,18,3,9147,1,1,133.1,1,1,38,4,7,101.0,1,0,0,0,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9147,1,1,125.0,1,38,19,7,7,125.7,0,0,0,1,0,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,4,9853,1,1,121.0,1,38,38,5,7,113.7,1,0,0,1,0,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,1,1,9,6,105.0,1,0,1,0,0,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,143.0,1,5,1,2,5,136.7,0,0,0,1,0,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,Graduate +1,1,2,9556,1,1,142.0,1,1,19,4,5,130.5,1,0,0,1,0,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,131.0,1,19,19,7,5,122.1,1,0,0,1,0,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,132.0,1,1,37,4,7,121.8,1,0,0,1,0,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,123.0,1,37,37,3,3,123.0,1,0,0,1,0,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,129.0,1,19,38,2,7,126.9,1,0,0,1,0,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Enrolled +1,1,4,9238,1,1,118.0,1,19,38,9,9,110.0,0,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,125.0,1,3,1,4,4,119.4,1,0,0,1,0,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,Enrolled +1,17,1,9085,1,1,131.0,1,1,3,4,1,129.3,1,0,0,1,0,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,147.0,1,37,37,9,9,134.3,0,0,0,1,0,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,Graduate +2,39,2,9670,1,19,133.1,1,37,37,9,9,135.6,0,0,0,1,0,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,152.0,1,37,19,9,9,137.0,1,0,0,1,0,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,118.0,1,12,1,4,10,115.7,0,0,0,1,1,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,Enrolled +1,15,1,9119,1,1,133.1,41,1,3,5,8,100.0,0,0,1,1,1,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,5,9119,1,1,131.0,1,1,19,4,7,126.8,0,0,0,0,1,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,132.0,1,19,38,9,7,119.1,0,0,0,0,1,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,8014,0,1,120.0,1,37,37,5,5,161.1,0,0,0,1,1,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,18,5,9500,1,1,137.0,1,19,1,1,10,129.3,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,118.0,1,37,19,5,5,119.1,1,0,0,1,0,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,134.0,1,38,38,9,9,122.0,1,0,0,1,1,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,163.0,1,1,1,4,3,149.7,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,140.0,1,38,38,9,7,140.0,0,0,0,1,0,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,Enrolled +1,17,4,9147,1,1,122.0,1,19,19,5,7,116.4,1,0,1,1,0,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,140.0,1,3,37,3,7,116.9,0,0,0,1,1,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,5,2,9238,1,1,123.0,1,40,38,2,9,118.1,1,0,0,1,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,130.0,1,3,19,2,3,133.9,0,0,0,1,0,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,125.0,1,1,38,4,7,114.9,1,0,0,1,0,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,130.0,1,1,1,4,10,115.2,0,0,0,1,1,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,124.0,1,38,19,9,7,129.6,1,0,0,1,1,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,139.0,1,38,38,7,5,133.4,0,0,0,1,0,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9254,1,1,125.0,1,38,38,5,5,115.6,1,0,0,1,0,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,147.0,1,37,37,9,9,142.8,1,0,0,1,0,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9003,1,1,144.0,1,19,19,9,9,132.8,0,0,0,1,1,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,12,133.1,1,19,1,9,1,130.0,0,0,0,1,1,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,140.0,1,37,37,9,6,135.5,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,6,9254,1,1,102.0,1,3,1,2,2,101.7,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,133.1,1,19,38,5,5,131.8,1,0,1,1,0,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,Graduate +1,44,1,171,1,39,150.0,1,4,4,2,2,150.0,0,0,0,1,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,53,1,9254,1,42,110.0,1,1,1,4,7,111.8,1,0,0,1,0,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,121.0,1,19,38,6,6,116.1,1,0,0,1,1,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,Graduate +1,17,4,9773,1,1,127.0,1,1,19,4,1,115.8,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,37,37,9,7,160.0,1,0,0,0,1,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,15,170.0,1,34,1,90,2,101.0,0,0,0,1,0,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,125.0,1,3,3,3,3,116.6,1,0,0,0,0,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,4,9070,1,1,117.0,1,1,1,3,3,125.4,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,146.0,1,19,37,7,7,133.8,1,0,0,1,0,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,142.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,3,116.0,1,3,3,2,2,128.2,0,0,0,1,0,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,37,37,7,7,116.5,1,0,0,1,0,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,118.0,1,19,19,5,7,117.8,0,0,0,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,Graduate +1,18,3,9670,1,1,119.0,1,38,38,9,9,115.2,1,0,0,1,0,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,131.0,1,3,19,3,10,123.3,0,0,0,1,1,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,Enrolled +1,17,1,9254,1,1,136.0,1,39,3,3,3,128.7,1,0,0,1,0,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9500,1,1,140.0,1,37,38,5,7,126.0,1,0,0,1,0,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +1,44,1,9119,1,39,150.0,1,19,3,5,2,150.0,0,0,0,1,1,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,43,1,9773,1,1,137.0,1,38,37,9,5,127.9,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,119.9,0,0,0,1,0,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,18,2,9773,1,1,132.0,24,37,19,9,7,119.1,1,0,0,1,0,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,43,1,8014,0,1,133.1,1,34,34,0,0,100.0,0,0,0,1,0,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,1,133.1,1,38,19,9,9,128.0,1,0,0,0,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,125.0,1,19,19,5,4,136.2,1,0,1,1,1,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,132.0,1,38,38,0,5,126.1,0,0,0,1,1,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9670,1,1,130.0,1,1,1,9,10,116.3,1,0,0,1,0,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,3,9773,1,1,150.0,1,19,38,4,4,146.5,1,0,0,1,0,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +4,39,2,8014,0,1,160.0,1,37,38,7,5,115.0,0,0,0,1,0,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,135.0,1,19,1,9,9,122.1,1,0,0,1,0,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,136.0,1,3,3,9,9,136.0,1,0,1,0,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,3,3,7,1,130.0,1,0,0,1,1,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9119,1,19,133.1,1,19,19,5,3,100.9,1,0,0,1,1,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,Enrolled +1,17,1,9254,1,1,137.0,1,34,38,0,7,137.7,1,0,1,0,0,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,19,133.1,1,37,37,90,7,110.0,0,0,0,0,0,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,144.0,1,38,37,9,9,125.8,0,0,0,1,0,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,1,4,9070,1,1,167.0,1,1,1,7,3,158.3,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,133.0,1,37,19,7,7,126.7,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,118.0,1,38,38,7,7,121.2,1,0,0,1,0,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,19,133.1,1,19,19,4,4,150.0,0,0,0,0,1,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9085,1,1,166.0,1,1,19,4,3,158.7,0,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Graduate +1,44,1,9254,1,39,130.0,1,39,39,194,193,130.0,1,0,1,1,1,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,1,9085,1,1,140.0,1,37,38,7,9,129.9,0,0,0,1,0,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,9147,1,3,120.0,1,1,39,4,7,120.0,0,0,0,1,0,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,5,9254,1,1,118.0,1,19,37,5,5,120.5,1,0,0,1,1,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,Dropout +1,17,3,9070,1,1,120.0,1,3,1,4,4,116.9,1,0,0,1,0,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Graduate +1,43,5,9238,1,1,101.0,24,37,19,9,7,119.9,1,0,1,0,0,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,128.0,1,19,1,4,3,117.2,1,0,0,1,0,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,Graduate +1,1,3,9254,1,1,118.0,1,1,19,9,9,111.7,1,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,137.0,1,37,37,0,90,134.2,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,144.0,1,3,39,2,3,129.0,1,0,0,1,0,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,125.0,1,37,38,7,7,122.2,1,0,0,1,0,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,147.0,1,3,1,4,3,136.7,0,0,0,1,0,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,39,120.0,1,37,37,1,9,137.7,1,0,0,0,1,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,160.0,1,1,37,9,9,146.0,1,0,0,1,0,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9238,1,39,130.0,1,1,19,4,5,127.4,0,0,1,0,1,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,3,1,2,4,154.9,0,0,1,0,1,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,Dropout +1,17,2,9670,1,1,129.0,1,19,19,5,4,129.4,0,0,0,1,0,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,137.0,1,3,19,3,5,136.3,1,0,0,1,0,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,100.0,1,37,37,9,6,153.5,0,0,1,0,1,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,134.0,1,38,38,7,9,132.8,1,0,0,1,0,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,137.0,1,37,37,7,9,130.8,1,0,0,1,0,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,133.1,1,37,37,1,1,97.0,0,0,0,1,1,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,143.0,1,3,38,2,10,129.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,9,3,127.1,0,0,0,1,0,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,Enrolled +2,7,1,9147,1,3,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,160.0,1,37,37,9,9,160.0,0,0,0,1,1,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,162.0,1,3,4,3,3,154.1,0,0,0,1,0,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,Graduate +1,1,2,9147,1,1,119.0,1,19,37,4,5,113.8,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,139.0,1,19,1,9,5,135.0,1,0,0,1,0,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,120.0,1,1,38,5,5,116.3,1,1,0,1,1,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,2,9500,1,1,135.0,1,1,19,4,10,133.5,1,0,0,1,0,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,Graduate +1,1,3,9119,1,1,117.0,1,1,1,3,5,111.1,0,0,0,1,1,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,140.0,1,1,39,4,1,128.1,1,1,0,1,1,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9003,1,1,133.1,1,37,37,3,8,130.0,0,0,1,1,0,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,134.0,1,19,37,5,5,125.3,1,0,0,1,1,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,37,38,9,9,114.0,0,0,0,1,0,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,38,37,4,5,102.5,0,0,1,0,1,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,143.0,1,19,37,5,9,156.3,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,130.0,1,19,1,9,5,122.1,1,0,0,1,0,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,Graduate +1,39,2,8014,0,1,100.0,1,35,37,90,90,100.0,0,0,0,1,0,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +2,39,2,9670,1,1,100.0,1,37,37,9,9,110.0,0,0,0,1,1,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,2,9853,1,1,126.0,1,1,19,2,10,126.0,1,0,0,1,0,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,Enrolled +1,18,3,9070,1,1,131.0,1,1,37,5,5,122.3,1,0,0,0,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,150.0,1,19,37,9,8,138.5,0,0,0,1,0,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,2,171,1,1,146.0,1,3,3,3,3,155.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,120.0,1,19,19,9,7,118.6,1,0,0,1,0,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,145.0,1,38,38,9,9,125.5,1,0,0,1,0,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9070,1,1,143.0,1,1,1,9,7,134.6,1,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Dropout +1,51,1,8014,0,1,121.0,1,1,38,5,7,112.3,0,0,0,1,0,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,130.0,1,37,1,9,8,120.2,1,0,0,1,1,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +2,7,1,9254,1,2,100.0,1,37,37,9,9,100.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,1,130.0,1,37,3,9,3,137.0,1,0,0,1,1,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,0,0,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,140.0,1,38,37,7,7,105.2,0,0,0,1,1,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,131.0,1,1,19,4,7,135.9,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,108.0,1,19,38,9,7,110.5,1,0,0,1,0,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,111.0,1,1,38,5,9,107.5,0,0,0,1,1,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9147,1,1,147.0,1,37,37,9,6,142.8,1,0,1,0,0,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,170.0,1,38,19,4,8,134.7,0,0,0,1,0,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,138.0,1,4,19,2,3,124.7,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,125.0,1,37,38,9,9,125.0,1,0,1,0,0,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,118.0,1,38,38,5,5,114.2,1,0,0,1,0,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,3,3,1,5,118.8,0,0,0,1,0,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,Graduate +1,1,3,9085,1,1,131.0,1,37,19,9,8,136.3,1,0,1,0,0,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,Dropout +1,43,1,9991,0,1,141.0,1,37,37,9,9,131.9,0,0,0,1,0,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,42,1,9070,1,1,120.0,1,3,2,3,1,116.9,0,0,0,1,1,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,130.0,1,1,1,9,7,152.1,0,0,0,1,1,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,12,133.1,1,34,34,0,0,135.0,0,0,0,1,0,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,130.0,1,38,38,7,7,122.5,1,0,0,1,0,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,160.0,1,1,1,194,131,128.4,0,0,0,1,0,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,132.0,1,1,38,7,7,129.6,0,1,0,1,1,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,1,1,3,9,118.4,0,0,0,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,Graduate +1,1,2,9556,1,1,133.1,1,19,19,9,9,104.5,1,0,0,1,0,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,53,1,9003,1,42,150.0,1,1,38,8,8,150.0,0,0,0,1,0,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,144.0,1,3,1,2,3,126.9,0,0,0,1,0,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,150.0,1,3,3,2,2,120.0,0,0,1,0,0,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,3,3,2,10,160.0,1,0,0,1,1,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,129.0,1,1,1,9,9,120.0,0,0,0,1,1,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,Graduate +4,39,1,9003,1,12,133.1,1,37,37,9,6,160.0,0,0,0,1,0,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,Graduate +2,39,2,9991,0,1,100.0,1,37,37,9,9,100.0,1,0,0,1,1,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,115.0,1,19,1,3,8,123.4,0,0,0,1,0,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,124.0,1,19,37,3,8,117.5,1,0,0,1,1,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,Enrolled +1,1,6,9254,1,1,129.0,1,38,19,9,5,117.8,1,0,0,1,0,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,127.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,19,133.1,1,38,38,7,8,120.0,0,0,0,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +6,39,2,9147,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,4,9500,1,1,148.0,1,3,19,4,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,39,150.0,1,1,3,4,1,150.0,0,0,0,1,1,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,145.0,1,37,37,9,1,150.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,115.7,1,0,0,1,0,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,16,1,171,1,1,122.0,1,19,37,9,7,133.9,1,0,0,1,1,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,124.0,1,37,38,9,8,114.6,1,0,0,1,1,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,120.0,1,38,37,9,8,113.4,1,0,0,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,40,140.0,1,37,37,6,6,140.0,0,0,0,1,0,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,Graduate +1,1,5,9670,1,1,133.1,1,9,1,2,4,133.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,100.0,1,19,19,4,4,113.0,0,0,0,1,1,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,Enrolled +4,39,1,9003,1,1,133.1,1,19,19,9,4,100.7,0,0,0,1,0,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,Enrolled +1,17,2,9147,1,1,133.1,1,38,38,4,7,109.0,1,0,0,1,1,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,15,1,9238,1,1,140.0,26,19,19,9,6,140.0,0,0,0,1,1,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,3,9500,1,1,114.0,1,1,1,5,5,114.5,1,0,0,1,0,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,134.0,1,1,38,4,4,120.7,0,0,1,0,0,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,1,133.1,1,37,11,9,7,96.0,0,0,1,0,1,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,131.0,1,3,3,3,3,135.9,0,0,0,1,0,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,Graduate +1,43,2,9500,1,1,130.0,1,38,37,4,4,126.8,1,0,0,1,1,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,19,37,7,7,124.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9670,1,1,120.0,1,1,19,4,5,100.0,0,0,0,1,0,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,145.0,1,38,38,9,10,139.8,1,0,0,1,0,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,141.0,1,19,38,5,7,125.5,0,0,0,1,0,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,Graduate +5,39,1,9147,1,1,133.1,1,1,19,4,7,114.0,0,0,0,0,1,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9991,0,1,110.0,1,37,37,1,4,120.0,1,0,0,0,1,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,172.0,41,37,37,5,5,153.8,1,0,0,1,0,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,1,9556,1,1,140.0,1,3,3,1,7,131.6,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,4,3,137.5,0,0,0,1,1,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,137.0,1,19,38,3,9,124.9,0,0,0,1,0,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,139.0,1,18,18,1,1,130.8,1,0,0,0,0,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,120.0,1,38,37,5,9,131.4,1,0,0,1,1,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,Graduate +1,53,1,9085,1,42,160.0,1,19,37,4,9,160.0,1,0,0,1,0,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,Graduate +1,18,1,9670,1,1,140.0,1,1,37,9,9,130.2,1,0,0,1,1,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9853,1,1,140.0,1,37,37,6,6,125.2,0,0,1,1,0,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,Graduate +1,1,4,9556,1,1,122.0,1,37,1,5,4,123.9,0,0,0,1,0,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,1,19,3,3,123.0,0,0,0,1,0,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,140.0,1,19,38,4,0,140.0,1,0,0,1,1,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,129.0,1,1,1,4,2,126.2,0,0,1,0,0,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Dropout +2,17,3,8014,0,1,123.0,1,19,37,3,3,113.2,0,0,1,0,0,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,133.1,1,38,19,9,10,114.5,0,0,0,1,0,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,Enrolled +1,51,1,9991,0,1,141.0,1,19,38,5,7,100.0,0,0,0,1,0,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,Graduate +1,17,2,171,1,1,131.0,1,2,1,3,3,148.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,19,133.1,1,37,37,9,9,100.0,1,0,1,0,0,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,117.0,1,1,38,5,1,113.5,1,0,0,1,0,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,116.0,1,19,38,9,9,119.5,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,1,19,3,4,116.7,0,0,0,1,0,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,129.0,1,2,3,2,2,128.3,1,0,0,1,0,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,Enrolled +1,1,3,9085,1,1,138.0,1,1,1,4,8,128.7,1,0,0,1,0,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,5,9147,1,1,118.0,1,19,19,9,9,114.2,1,0,0,1,1,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.0,1,3,19,2,8,126.7,0,0,0,1,0,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,Enrolled +1,16,1,171,1,1,158.0,1,38,37,9,9,164.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,43,3,9500,1,1,126.0,1,38,37,6,5,124.3,1,0,0,1,0,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,123.0,1,38,38,9,5,124.8,0,0,0,0,0,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9130,1,1,160.0,1,3,3,3,2,155.1,1,0,0,1,0,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Graduate +4,43,1,9500,1,1,130.0,1,37,37,9,9,103.7,0,0,0,1,0,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,Enrolled +1,16,2,9238,1,1,133.0,1,19,38,4,5,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,130.0,1,38,37,9,9,124.8,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,135.0,1,37,1,7,7,132.8,1,0,0,1,0,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9119,1,1,128.0,1,1,38,4,7,100.0,0,0,0,1,1,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9085,1,1,120.0,1,1,1,9,10,115.0,0,0,0,0,0,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,2,9070,1,1,142.0,1,3,1,2,4,141.0,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9853,1,1,124.0,1,38,37,5,3,118.1,1,0,0,0,0,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,145.0,1,37,37,9,9,132.0,1,0,0,1,0,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,114.0,1,38,38,9,10,120.0,0,0,0,1,0,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,140.0,1,3,3,2,2,146.4,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,5,9773,1,1,130.0,1,34,38,0,8,128.3,1,0,0,0,0,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,3,9670,1,1,110.0,1,19,1,4,4,107.5,1,0,0,1,0,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,135.0,1,37,37,5,5,126.3,1,1,0,1,0,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,Graduate +2,1,1,9254,1,1,140.0,1,19,38,4,7,133.0,0,0,0,1,1,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,1,150.0,1,37,37,9,9,115.0,0,0,0,1,1,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9070,1,1,130.0,1,1,1,5,3,112.0,1,0,0,1,1,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,110.0,1,1,37,9,9,105.1,1,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,131.0,1,37,37,9,7,118.4,0,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,136.0,1,38,38,7,7,127.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9773,1,1,127.0,1,19,19,5,8,120.0,0,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,139.0,1,37,19,9,8,142.2,1,0,0,1,1,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,4,127.3,1,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,16,4,9773,1,1,109.0,1,37,37,9,3,137.0,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,Graduate +1,53,1,9085,1,42,130.0,1,19,1,9,9,130.0,1,0,1,0,0,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,Enrolled +1,7,1,171,1,3,130.0,1,1,2,9,2,130.0,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,120.0,1,37,37,9,9,120.0,1,0,1,1,0,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,Dropout +1,2,1,9853,1,1,120.0,1,19,38,9,9,122.5,0,0,0,0,0,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,19,133.1,1,2,1,8,8,120.0,1,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,43,1,9773,1,1,121.0,1,1,1,4,5,121.0,1,0,0,1,1,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9147,1,1,120.0,1,38,19,9,9,111.3,1,0,0,1,0,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,38,19,5,0,141.8,0,0,0,1,0,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,131.0,1,1,1,7,4,127.2,1,0,1,1,1,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,11,9,10,131.5,0,0,0,1,0,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,3,19,2,3,125.7,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9556,1,1,136.0,1,19,19,9,9,129.5,1,0,0,1,0,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,Graduate +1,42,1,9119,1,1,120.0,1,5,5,2,2,115.0,0,0,0,1,1,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,Dropout +1,17,6,9119,1,1,124.0,1,19,19,4,0,126.1,1,0,0,1,1,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,160.0,1,19,38,9,9,140.8,1,0,0,1,1,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,123.0,1,37,37,9,9,115.0,1,0,0,1,0,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,Graduate +2,39,2,9670,1,1,133.1,41,37,19,9,9,130.0,0,0,0,1,0,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9670,1,6,170.0,1,34,34,0,0,111.6,0,0,0,1,1,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,138.0,1,1,3,9,1,123.0,1,0,0,1,0,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,1,37,6,6,130.0,1,0,0,1,1,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,Graduate +1,17,2,9119,1,1,133.1,1,1,2,3,3,117.0,1,0,0,1,1,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,Enrolled +1,1,5,9254,1,1,131.0,1,19,37,9,9,123.7,0,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,130.0,1,1,1,9,4,140.0,0,0,0,0,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9773,1,1,135.0,1,1,19,4,10,129.4,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,132.0,1,1,19,3,3,122.9,1,0,0,1,0,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,115.0,1,37,37,9,8,129.0,1,0,1,0,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9238,1,1,160.0,1,3,19,2,1,116.1,0,0,1,1,0,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,12,133.1,1,37,1,9,10,130.0,0,0,0,1,1,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,129.0,1,37,38,4,9,121.0,1,0,0,1,0,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9119,1,1,130.0,1,38,19,7,3,119.9,1,0,1,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,133.1,1,37,37,9,9,100.2,1,0,0,0,0,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,4,38,4,5,140.0,1,0,0,1,0,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9991,0,43,140.0,1,40,5,3,3,140.0,0,0,0,1,0,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,Graduate +1,43,2,9670,1,1,129.0,1,3,3,5,5,122.4,1,0,0,1,0,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,6,116.4,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,130.0,1,1,3,9,2,130.0,1,0,1,1,0,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,139.0,1,38,38,9,5,130.5,1,0,0,1,0,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,1,100.0,1,19,19,9,9,100.0,0,0,1,1,1,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,Dropout +1,7,1,9773,1,43,140.0,1,19,1,4,8,140.0,0,0,0,1,1,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9003,1,1,125.0,1,1,38,4,7,125.0,1,0,0,1,0,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,Graduate +1,39,2,9147,1,19,133.1,1,38,19,4,10,116.3,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,3,9500,1,1,132.0,1,37,37,4,3,127.3,1,0,0,1,0,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,127.0,1,1,37,4,8,121.1,1,0,0,1,1,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9670,1,1,140.0,1,37,37,6,6,120.0,0,0,0,1,0,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,133.0,1,37,37,9,5,139.2,1,0,1,1,1,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,140.0,1,19,19,1,4,133.3,1,0,0,1,0,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,120.0,1,3,3,2,2,112.0,0,0,0,1,0,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,Enrolled +2,1,1,9147,1,1,137.0,1,19,37,9,9,124.4,0,0,0,1,0,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,130.0,1,38,38,9,3,145.6,0,0,0,1,1,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,6,9670,1,1,120.0,1,1,14,4,5,113.7,1,0,0,1,0,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,120.0,1,38,19,9,3,112.7,0,0,0,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,122.0,1,37,37,9,9,114.3,1,0,0,0,0,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,8014,0,1,133.1,1,3,1,1,7,100.0,0,0,0,1,0,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,4,19,3,5,123.7,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,4,4,4,2,120.0,1,0,0,1,1,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,3,9238,1,1,137.0,1,1,1,3,3,131.4,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,Graduate +1,43,1,9130,1,1,130.0,1,1,1,1,1,130.0,1,0,0,1,1,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9773,1,1,121.0,1,1,19,9,7,118.9,1,0,0,1,0,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,133.1,1,19,38,9,8,128.2,1,0,0,1,1,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,Enrolled +1,43,1,9070,1,1,134.0,1,19,37,7,7,132.7,1,0,0,1,1,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9147,1,1,125.0,1,1,38,7,7,120.1,0,0,1,1,1,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,129.0,1,37,37,9,9,117.1,1,0,0,1,0,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,145.0,1,38,38,5,7,138.0,1,0,0,1,0,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,120.0,105,1,1,9,9,119.0,1,0,1,0,0,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,131.0,1,1,19,9,9,127.0,0,0,0,1,1,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,100.0,1,38,19,6,10,112.8,0,0,0,1,0,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,2,9070,1,1,145.0,1,38,19,7,7,130.0,1,0,0,1,1,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,126.0,1,37,38,7,7,119.0,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,Graduate +1,1,2,9773,1,1,137.0,1,1,19,7,7,133.2,1,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,128.0,1,38,38,9,7,128.4,1,0,0,1,0,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9085,1,39,150.0,1,19,38,194,193,150.0,1,0,0,1,0,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,Enrolled +1,1,4,171,1,1,146.0,1,1,1,9,5,151.3,1,0,0,1,0,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,Graduate +1,1,6,9147,1,1,139.0,1,19,12,4,4,125.0,1,0,0,1,0,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,1,1,9,4,123.4,1,0,0,1,0,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9670,1,1,127.0,1,3,4,2,2,122.8,0,0,0,1,1,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,127.0,1,38,37,5,7,121.8,1,0,1,1,0,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,39,1,9003,1,1,130.0,1,38,37,7,7,120.0,0,0,0,1,1,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,Graduate +1,1,2,9238,1,1,100.0,1,38,1,7,7,99.3,1,0,0,1,0,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9119,1,1,160.0,1,37,37,9,6,153.7,0,0,0,1,1,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9500,1,1,138.0,1,3,1,2,5,134.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,Graduate +1,17,4,9254,1,1,124.0,1,3,3,3,3,126.1,1,0,0,1,0,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,Dropout +2,7,1,9147,1,3,110.0,1,19,1,9,9,110.0,0,0,0,1,0,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,143.0,1,3,19,3,10,126.8,0,0,0,1,1,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,Graduate +1,17,2,9670,1,1,110.0,1,1,1,4,10,115.3,1,0,0,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,9119,1,1,129.0,1,2,37,2,9,121.6,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Enrolled +1,15,1,9254,1,1,140.0,26,19,1,9,7,140.0,1,0,0,0,0,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,118.0,1,19,38,7,9,113.5,1,0,0,1,0,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,5,9853,1,1,110.0,1,19,37,7,7,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,171,1,1,145.0,1,3,1,2,10,114.5,1,0,0,1,1,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,43,2,9670,1,1,125.0,1,38,19,4,3,106.6,1,0,0,1,0,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Dropout +4,39,1,9500,1,19,133.1,1,37,37,5,7,100.0,0,0,0,0,0,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,133.0,1,1,1,9,9,119.7,1,1,1,1,1,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,Graduate +1,1,2,9853,1,1,134.0,1,1,38,9,8,122.5,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,120.0,1,19,37,3,9,100.0,0,0,0,1,0,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,37,37,6,6,100.0,0,0,1,0,1,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,160.0,1,38,38,6,6,160.0,1,0,0,1,0,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,7,116.0,0,0,0,1,0,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,Graduate +1,18,3,9500,1,1,145.0,1,1,1,4,8,133.6,1,0,0,1,0,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,3,19,2,3,124.5,0,0,0,1,0,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,125.0,1,19,38,9,8,118.3,0,0,0,1,1,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,Dropout +1,5,1,9085,1,1,150.0,1,1,1,4,4,139.4,0,0,0,1,0,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9773,1,1,133.1,1,38,38,9,5,117.0,0,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,142.0,1,1,1,4,7,131.0,1,0,0,1,0,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,1,19,3,3,154.3,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9147,1,1,135.0,1,37,38,9,9,128.0,1,0,1,1,0,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,149.0,1,37,37,9,9,138.0,0,0,0,1,1,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,38,9,9,129.2,1,0,0,1,0,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9556,1,1,147.0,1,3,4,3,2,100.0,0,0,0,1,0,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,12,133.1,1,37,37,10,9,144.0,0,0,0,1,1,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9254,1,1,100.0,1,3,19,3,5,115.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9670,1,1,140.0,1,1,1,4,3,133.4,0,0,0,1,1,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,Enrolled +1,1,2,171,1,1,127.0,1,3,39,1,3,133.5,1,0,0,1,1,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9147,1,1,112.0,1,1,19,3,5,107.8,1,0,0,1,0,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,Enrolled +2,39,1,9147,1,1,110.0,1,37,37,9,10,140.0,0,0,0,1,0,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,120.0,1,1,3,175,121,105.9,0,0,0,1,0,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,Enrolled +1,1,1,9238,1,1,168.0,1,37,37,9,9,149.5,0,0,0,1,0,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,Graduate +1,17,1,8014,0,1,141.0,1,34,34,0,0,136.1,0,0,0,1,0,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,140.0,1,1,1,4,3,130.7,1,0,0,1,1,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,Dropout +1,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,134.0,1,1,37,8,7,120.5,1,0,0,1,1,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,160.0,1,1,38,4,7,141.5,1,0,0,1,1,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,122.0,1,38,37,191,195,112.9,1,0,0,1,0,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,41,1,1,9,7,163.1,1,0,0,0,0,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,1,110.0,1,1,37,9,9,126.0,1,0,0,1,1,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,Enrolled +1,17,1,9670,1,1,109.0,1,1,1,4,4,108.0,0,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,131.0,2,37,1,9,3,126.1,1,0,0,1,1,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,1,2,9556,1,1,125.0,1,38,1,9,3,116.3,1,0,0,1,0,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,Graduate +1,17,1,9085,1,1,138.0,1,2,19,2,9,126.8,1,0,0,1,0,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,Enrolled +1,1,5,9853,1,1,128.0,1,38,37,9,9,120.3,1,0,1,0,0,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,130.0,1,1,38,4,9,122.7,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,9,133.1,1,37,34,90,90,118.1,1,0,0,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,125.0,1,1,19,4,9,114.5,1,0,0,1,0,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,Graduate +1,1,5,9773,1,1,138.0,1,19,19,9,9,139.4,1,0,0,1,0,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,125.0,1,19,38,3,5,115.9,0,0,0,1,0,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,134.0,1,38,19,5,8,120.7,0,0,0,1,0,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,133.1,41,3,1,3,10,100.0,1,0,0,0,0,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,Dropout +5,39,1,9003,1,1,133.1,1,37,37,9,7,110.0,0,0,1,0,0,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,Dropout +1,17,1,9254,1,1,128.0,1,19,1,5,7,120.7,1,0,1,1,0,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,162.0,1,19,19,4,7,152.9,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,51,1,9238,1,1,121.0,1,3,19,3,10,111.9,1,0,0,1,0,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,Graduate +1,39,2,9991,0,1,172.0,1,19,37,9,8,150.0,1,0,0,1,0,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,116.0,1,19,19,9,8,119.9,1,0,0,1,0,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,125.0,1,19,19,3,10,131.0,1,0,0,1,1,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,39,1,9500,1,4,150.0,1,3,38,3,7,127.0,1,0,0,1,1,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,128.0,1,38,38,9,9,129.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,120.0,1,3,19,4,5,115.5,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,38,38,9,6,160.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,130.0,1,3,1,2,9,130.0,1,0,0,1,0,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,140.0,1,1,19,4,8,124.6,1,0,0,1,0,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,3,3,2,2,150.0,1,0,0,1,0,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9853,1,1,133.1,1,37,19,9,5,138.3,0,0,0,1,0,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,Dropout +1,43,1,9991,0,1,150.0,1,3,3,4,4,100.0,1,0,0,1,1,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,Graduate +1,44,1,9238,1,1,150.0,1,1,38,4,9,145.9,0,0,0,1,0,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,Graduate +1,18,3,9500,1,1,131.0,1,19,1,4,7,127.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,Graduate +1,7,1,9085,1,3,150.0,1,19,37,90,90,140.0,0,0,0,1,1,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,167.0,1,19,19,9,7,156.2,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,140.0,1,1,3,4,5,130.0,0,0,0,1,1,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9238,1,1,132.0,1,1,19,4,9,127.1,1,0,0,1,0,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9119,1,1,133.0,1,3,1,3,4,121.8,1,0,0,1,1,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9670,1,1,133.1,1,1,37,4,5,150.0,0,0,0,1,1,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,150.0,103,37,37,9,9,134.6,0,0,0,1,1,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,6,9773,1,1,131.0,1,34,34,0,0,129.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,139.0,1,3,1,4,1,126.0,1,0,0,1,1,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,138.0,1,1,1,4,8,123.0,0,0,1,0,1,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,Enrolled +5,39,1,9853,1,19,133.1,1,37,37,9,8,118.0,0,0,0,1,0,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,142.0,1,37,38,9,9,137.3,1,0,0,1,0,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,136.0,1,3,38,2,9,125.7,1,0,0,1,0,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,1,1,4,10,128.3,1,0,0,1,0,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,132.0,1,1,37,4,9,127.1,0,0,0,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,122.0,1,19,19,7,7,116.1,1,0,0,1,0,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,140.0,1,1,2,3,3,140.0,0,0,0,1,0,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,Enrolled +1,42,1,9853,1,12,133.1,1,1,3,3,2,133.7,0,0,0,1,0,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,Dropout +2,7,1,9500,1,3,120.0,1,37,19,9,7,120.0,1,0,0,1,0,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,Enrolled +1,1,4,9238,1,1,134.0,1,38,19,7,7,128.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,130.0,1,19,38,4,7,121.3,1,0,0,1,0,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,Graduate +1,39,2,9238,1,1,110.0,1,19,1,5,5,136.5,0,0,0,1,1,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9670,1,1,133.1,1,38,19,9,8,122.9,0,0,1,0,1,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,124.0,1,19,1,9,3,123.7,1,0,0,1,0,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,17,1,9991,0,1,120.0,1,38,3,9,3,116.9,1,0,1,0,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,43,2,9147,1,1,160.0,1,37,37,9,9,96.0,0,0,0,0,0,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,154.0,1,19,37,9,7,140.4,1,0,0,1,0,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,Enrolled +1,17,5,9070,1,1,125.0,1,19,1,5,5,122.6,1,0,0,1,1,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9119,1,1,137.0,1,1,1,4,4,130.4,1,0,1,1,1,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,134.0,1,37,19,9,9,136.8,1,0,0,1,1,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,100.0,1,37,37,0,0,128.0,1,0,0,1,1,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +4,39,1,9130,1,19,133.1,1,37,38,9,4,100.9,0,0,0,1,1,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,127.0,1,1,19,5,7,130.5,1,0,0,1,0,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,1,1,9003,1,1,131.0,1,19,38,5,5,118.4,0,0,0,1,0,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,142.0,1,1,38,5,7,127.7,0,0,0,1,0,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,130.0,1,1,38,4,9,115.0,0,0,0,1,1,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,100.0,0,0,0,1,0,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,134.0,1,1,19,9,5,121.8,1,0,0,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,3,9853,1,1,122.0,1,1,3,5,3,113.6,0,0,0,1,0,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,114.0,1,37,37,7,8,116.7,0,0,0,1,1,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,130.0,1,3,1,3,3,120.5,0,0,0,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,148.0,1,19,19,4,5,143.5,0,0,0,1,0,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,19,9,9,107.0,0,0,0,0,1,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,130.0,1,3,19,5,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,6,120.0,0,0,0,0,0,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,1,2,9853,1,1,123.0,1,19,1,194,103,115.3,1,0,0,1,0,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,Enrolled +1,18,1,9130,1,1,135.0,1,38,19,9,5,121.7,1,0,0,1,0,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,116.0,1,38,38,5,8,110.8,1,0,0,1,0,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,7,1,9147,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9991,0,1,133.1,41,37,37,9,8,114.7,0,0,0,1,0,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,122.0,1,37,37,9,7,120.6,1,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,150.0,1,5,5,2,2,146.2,0,0,0,1,0,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,130.0,1,1,4,3,10,130.0,0,0,0,1,0,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9085,1,19,110.0,1,37,37,90,90,110.0,0,0,0,0,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,140.0,1,1,1,9,9,136.9,1,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,44,1,9085,1,39,150.0,1,19,19,9,9,150.0,1,0,0,1,0,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +2,43,1,9003,1,1,149.0,1,1,1,4,5,156.1,1,0,0,0,1,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9119,1,1,133.1,1,1,1,9,3,136.0,0,0,0,1,1,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,Dropout +1,16,2,9238,1,1,122.0,1,19,37,9,7,127.3,1,0,0,1,0,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,133.0,1,1,1,6,7,134.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,141.0,1,19,38,9,9,130.5,0,0,0,1,1,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,121.0,1,1,3,9,3,123.8,0,0,0,0,1,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,39,140.0,1,1,1,4,3,138.6,0,0,0,1,1,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9991,0,1,145.0,1,2,37,4,9,127.5,1,0,0,1,1,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,100.0,1,37,19,9,2,121.9,0,0,0,0,0,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,120.0,1,38,38,9,9,148.5,0,0,0,1,0,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +5,39,1,9991,0,1,110.0,1,1,1,3,3,119.0,0,0,0,1,1,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9254,1,1,137.0,1,1,38,2,8,122.3,1,0,0,1,1,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,42,1,9238,1,1,133.1,1,1,19,4,9,134.0,0,0,0,1,0,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,38,37,9,7,130.0,1,0,0,1,1,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,Graduate +5,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,120.0,1,37,37,9,9,111.1,0,0,0,1,0,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,124.0,1,38,19,6,10,126.8,1,0,0,1,0,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,Graduate +2,1,1,9500,1,1,151.0,1,37,38,9,7,134.5,0,0,1,1,0,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,133.0,1,19,37,9,8,121.8,1,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,148.0,1,1,19,4,5,135.1,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,120.0,1,19,38,4,8,122.5,0,0,0,0,1,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9070,1,1,140.0,1,37,37,9,10,118.0,0,0,1,1,1,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,3,133.1,1,9,9,90,90,130.0,0,0,0,1,0,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,150.0,1,34,34,0,0,108.0,0,0,0,1,0,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,1,150.0,1,1,38,3,5,120.0,0,0,0,1,1,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,Enrolled +1,44,1,9085,1,39,150.0,1,38,1,5,5,150.0,0,0,0,1,0,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,1,2,9238,1,1,133.1,1,19,19,9,9,106.0,1,0,0,1,0,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,102.0,1,38,38,9,9,99.6,1,0,0,1,0,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,140.0,1,38,19,9,5,130.0,0,0,1,1,0,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9773,1,1,138.0,1,3,1,2,3,135.9,1,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,1,9,4,150.0,1,0,0,1,1,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,Dropout +1,1,6,9147,1,1,127.0,1,1,19,1,6,120.0,1,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,0,0,0,1,1,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,137.0,1,38,38,4,8,126.5,1,0,0,1,0,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,1,19,4,4,132.6,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,130.0,1,1,1,4,9,150.0,0,0,0,1,1,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,146.0,1,3,1,1,3,149.2,1,0,0,1,0,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,129.0,1,38,38,6,6,118.5,1,0,0,1,0,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,131.0,1,19,3,3,2,126.1,1,0,0,1,0,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,Enrolled +1,39,1,9085,1,43,160.0,1,3,39,2,3,172.0,0,0,0,1,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,39,1,9670,1,1,133.1,1,1,1,4,4,112.9,0,0,0,1,0,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,Dropout +2,39,1,9003,1,1,150.0,1,37,37,9,6,140.0,0,0,0,1,1,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,127.0,1,37,38,9,7,115.8,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,133.1,1,1,37,5,9,143.0,1,0,1,1,0,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,9,138.4,1,0,1,1,0,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9070,1,1,125.0,1,1,1,4,4,132.0,0,0,0,0,0,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,5,9130,1,1,160.0,1,3,1,2,9,150.2,1,0,0,1,0,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,1,110.0,1,37,37,9,4,160.0,0,0,0,1,0,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,135.0,1,19,37,5,7,121.4,0,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9670,1,1,135.0,1,19,19,7,10,121.4,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,125.0,1,1,38,4,9,118.4,1,0,0,1,0,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,145.0,1,38,37,5,6,127.5,1,0,0,1,0,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,Graduate +1,43,3,171,1,1,140.0,1,37,38,7,7,143.4,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,134.0,1,37,19,9,10,141.4,1,0,0,1,0,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,130.0,1,29,38,9,8,122.0,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,109.0,1,19,19,4,9,104.1,1,0,1,0,0,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,116.0,1,34,34,0,0,127.0,1,0,0,1,1,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,3,8014,0,19,100.0,1,37,37,9,9,120.0,1,0,0,1,1,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9238,1,1,122.0,1,37,38,4,7,118.2,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,8014,0,1,100.0,1,12,5,9,4,116.5,0,0,1,0,0,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,122.0,1,19,19,193,194,112.6,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,42,3,9500,1,1,136.0,1,1,1,4,4,148.8,1,0,0,1,0,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,137.0,1,19,1,9,9,132.8,0,0,0,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,130.0,1,37,37,6,6,111.9,0,0,1,1,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9254,1,1,116.0,1,19,38,5,5,116.0,1,0,0,1,0,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9500,1,1,131.0,1,1,3,3,2,121.2,1,0,0,1,0,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,141.0,1,1,19,3,3,131.9,1,0,0,1,0,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,120.0,1,37,37,9,10,122.6,0,0,0,1,0,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,Dropout +1,18,5,9119,1,1,136.0,1,3,2,2,3,125.2,1,0,0,1,1,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,125.0,1,19,1,7,4,122.6,0,0,0,1,1,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,139.0,1,19,37,9,9,131.5,1,0,0,1,0,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,Graduate +1,5,1,9853,1,1,119.0,1,1,38,5,8,118.3,1,0,0,1,0,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9773,1,1,125.0,1,1,38,5,6,115.9,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,126.0,1,1,19,4,8,120.1,1,0,0,1,0,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,Graduate +1,17,1,9085,1,1,125.0,1,1,37,4,9,117.0,1,0,0,1,0,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,135.0,1,19,38,7,5,121.0,0,0,0,1,0,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,138.0,1,38,37,3,3,133.1,0,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,148.0,1,19,37,9,5,130.9,0,0,0,0,1,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,145.0,1,12,1,4,10,139.8,1,0,0,1,0,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,118.0,1,37,37,3,5,110.0,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9147,1,1,99.0,1,3,1,3,3,99.7,1,0,1,0,0,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,17,2,9556,1,1,137.0,41,1,1,7,7,124.4,1,0,0,1,0,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,Graduate +1,17,3,9853,1,1,133.1,1,34,34,0,0,115.0,0,0,0,1,0,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,123.0,1,37,38,9,9,113.9,1,0,1,0,0,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,1,4,9238,1,1,125.0,1,19,38,9,6,114.9,1,0,1,1,0,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,Enrolled +1,18,1,8014,0,1,137.0,1,1,1,4,3,123.0,0,0,1,1,0,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,Graduate +1,43,1,8014,0,1,131.0,1,19,37,8,5,125.0,0,0,0,1,1,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9147,1,3,150.0,1,6,27,1,7,150.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,9,4,117.0,0,0,0,1,0,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,133.1,1,37,1,9,10,100.0,0,0,0,1,0,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,Dropout +1,1,3,9670,1,1,121.0,1,1,19,5,5,111.9,1,0,0,1,1,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,133.1,1,1,19,3,3,112.0,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,43,1,9991,0,1,140.0,1,1,1,6,6,100.0,0,0,0,1,1,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,Graduate +2,42,1,9556,1,1,110.0,1,37,37,9,6,140.0,0,0,0,1,1,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,130.0,1,1,1,4,4,124.8,0,0,0,1,0,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,138.0,1,38,37,9,6,126.8,1,0,0,1,1,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,127.0,1,2,37,9,9,115.8,1,0,1,0,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9085,1,1,170.0,1,1,1,4,5,166.6,0,0,1,0,0,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,130.0,1,1,1,4,4,130.0,1,1,0,1,1,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,3,1,2,8,100.0,1,0,0,1,1,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9670,1,1,106.0,1,3,1,2,3,105.7,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,43,1,9556,1,1,140.0,1,37,37,9,9,128.0,1,0,0,0,0,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,127.0,1,1,4,9,10,121.8,0,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,134.0,1,1,1,9,6,130.9,0,0,1,1,0,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,133.1,1,37,37,7,4,132.0,0,0,0,1,1,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,110.0,1,12,3,5,2,100.0,1,0,0,1,1,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,6,9238,1,1,113.0,1,1,38,194,163,112.3,1,0,1,1,0,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,118.0,1,19,19,5,7,121.2,0,0,0,1,1,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,51,1,9773,1,1,158.0,1,1,19,8,8,117.1,1,0,0,1,1,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,Dropout +1,17,1,9070,1,1,119.0,1,37,38,9,8,124.6,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,111.0,1,19,19,3,10,117.7,0,0,0,1,0,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,140.0,1,3,1,5,9,130.0,0,0,0,1,1,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,122.0,1,3,1,9,10,114.7,0,0,0,1,0,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,Graduate +2,39,1,9238,1,19,133.1,1,1,2,4,6,130.0,0,0,0,1,0,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9500,1,1,131.0,1,38,1,5,7,118.4,1,0,0,1,0,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Dropout +1,43,5,9853,1,1,150.0,1,34,34,0,0,150.2,1,0,0,0,0,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,140.0,1,37,19,9,9,166.0,1,0,1,1,1,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9085,1,1,133.1,1,19,37,9,6,130.0,1,0,0,1,0,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,Graduate +1,1,4,9147,1,1,120.0,1,38,38,5,10,111.3,0,0,0,1,1,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,Enrolled +1,1,5,9500,1,1,125.0,1,3,19,4,8,120.3,1,0,0,1,0,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,Enrolled +1,17,2,9556,1,1,136.0,1,1,1,9,9,128.3,0,0,0,1,0,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,133.1,1,38,19,5,5,128.0,0,0,0,1,0,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,9,133.1,1,37,37,5,3,110.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9254,1,1,118.0,1,19,1,4,4,115.9,1,0,0,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,134.0,1,19,37,7,7,136.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,130.0,1,37,37,9,7,119.9,0,0,0,1,0,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9773,1,1,153.0,1,34,34,99,99,133.1,1,0,1,1,0,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,10,133.1,1,12,36,90,90,128.2,0,0,0,0,1,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,1,9991,0,1,112.0,1,43,40,2,2,106.4,0,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,122.0,1,3,3,2,2,122.0,1,0,0,1,0,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,137.0,1,1,19,4,3,121.3,1,0,0,1,1,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,19,133.1,1,3,1,2,5,103.0,0,0,0,1,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,136.0,1,1,19,9,9,131.5,0,0,0,1,0,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,154.0,1,1,3,4,2,164.9,0,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,6,9147,1,1,129.0,1,19,1,9,4,122.0,1,0,0,1,1,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,132.0,1,19,19,9,7,128.0,1,0,0,1,1,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,Graduate +2,39,1,9773,1,19,133.1,1,19,19,9,4,131.0,0,0,1,0,1,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,Dropout +4,39,1,8014,0,1,160.0,1,37,37,5,5,126.0,0,0,0,1,0,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,16,2,9238,1,1,126.0,1,38,37,3,5,127.1,1,0,0,1,0,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9254,1,1,111.0,1,1,19,5,7,109.3,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,133.1,1,37,37,3,10,108.0,0,0,0,1,0,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,Graduate +1,1,4,9773,1,1,140.0,22,1,37,3,9,130.5,1,0,0,1,0,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,140.0,1,1,1,9,5,140.0,0,0,0,1,0,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,Dropout +1,17,3,9670,1,1,125.0,1,1,3,4,3,117.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,150.0,1,37,38,9,9,131.5,1,0,0,1,0,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,5,100.0,0,0,0,0,1,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9773,1,1,133.0,1,19,19,7,7,134.4,1,0,0,1,1,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,135.0,1,19,37,9,9,128.0,1,0,0,1,0,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,5,9670,1,1,115.0,1,1,19,5,5,117.1,0,0,0,1,0,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,Enrolled +1,51,1,9003,1,39,130.0,1,1,19,4,4,120.0,1,0,1,0,1,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,Dropout +1,1,3,9773,1,1,117.0,1,38,19,7,7,110.4,1,0,1,0,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9773,1,1,127.0,1,19,38,8,3,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,38,37,1,1,115.0,1,0,0,1,0,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,18,2,9853,1,1,123.0,1,1,3,9,2,123.7,1,0,1,0,0,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,Dropout +1,1,3,9853,1,1,122.0,1,3,3,2,2,112.6,1,0,0,1,0,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,17,3,9254,1,1,127.0,1,37,37,9,6,123.5,1,0,0,1,0,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,141.0,1,37,37,9,9,136.3,1,0,0,1,1,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,140.0,1,3,3,2,2,124.3,0,0,0,0,1,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,125.0,1,1,3,4,1,121.9,1,0,0,1,1,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,Dropout +1,17,1,9070,1,1,134.0,1,1,1,5,0,133.3,1,0,0,1,1,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9670,1,1,127.0,22,37,37,9,9,127.0,1,0,0,1,1,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,Graduate +1,42,1,9853,1,1,120.0,1,37,38,3,3,113.7,0,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,3,9670,1,1,121.0,1,3,19,2,8,122.4,1,0,0,1,1,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,Enrolled +1,1,3,171,1,1,139.0,1,19,19,5,3,128.2,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,42,1,9085,1,1,100.0,1,1,38,4,9,100.0,1,0,0,1,0,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,10,1,9500,1,1,140.0,24,3,3,2,9,140.0,1,0,1,0,0,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,132.0,1,37,19,9,9,131.0,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,124.0,1,1,1,4,4,127.9,1,0,0,1,1,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9119,1,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9773,1,1,117.0,1,38,38,9,9,111.1,0,0,1,1,1,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,19,133.1,1,19,37,9,9,149.4,0,0,0,0,1,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,1,1,161.9,0,0,0,1,1,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,140.0,1,38,37,4,7,130.0,1,0,0,0,0,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,43,1,171,1,1,145.0,1,19,38,9,9,100.0,0,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9773,1,1,120.0,1,37,38,9,3,155.5,0,0,0,1,1,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,121.8,0,0,0,0,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9130,1,3,140.0,1,5,4,2,0,140.0,0,0,1,0,0,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,Dropout +1,51,1,171,1,1,128.0,1,2,1,3,3,131.2,1,0,0,1,1,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,12,110.0,1,37,37,7,9,120.0,0,0,0,1,0,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,150.0,1,2,3,3,2,140.8,0,0,0,1,0,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,Enrolled +1,43,1,9070,1,1,125.0,1,19,19,7,8,133.4,1,0,0,1,1,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,Enrolled +1,1,5,171,1,1,160.0,1,1,1,4,4,139.7,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,1,120.0,1,1,38,9,9,150.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,154.0,1,19,19,3,3,142.0,0,0,0,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9254,1,1,110.0,1,4,19,4,3,114.8,1,0,0,0,1,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9119,1,1,140.0,1,34,34,9,9,140.0,0,0,0,0,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,125.0,1,1,1,4,2,134.1,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9254,1,40,130.0,1,1,1,3,6,130.0,0,0,0,1,0,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9254,1,1,122.0,1,37,37,9,3,124.5,1,0,0,1,0,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,130.0,1,1,3,9,2,128.6,1,0,0,1,0,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,Graduate +1,17,4,9670,1,1,122.0,1,3,1,2,3,119.6,1,0,0,1,1,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,Graduate +1,44,3,9085,1,39,150.0,1,1,19,4,1,150.0,1,0,0,1,0,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,19,37,9,9,130.0,1,0,0,1,1,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,133.1,1,38,19,4,7,98.0,1,0,0,1,1,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,Enrolled +1,17,2,9556,1,1,125.0,1,38,19,7,7,121.5,1,0,0,1,0,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,Dropout +2,1,4,9500,1,1,143.0,1,38,38,5,5,128.7,1,0,0,1,0,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,1,100.0,1,1,19,4,8,122.0,0,0,0,1,0,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,Graduate +1,51,1,9500,1,1,170.0,1,1,1,4,10,125.0,0,0,0,1,1,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,Graduate +1,18,4,9500,1,1,137.0,1,3,1,3,4,126.7,1,0,0,1,0,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,19,133.1,1,38,38,9,8,106.0,1,0,0,1,1,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,40,130.0,1,19,1,3,4,152.0,1,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9085,1,39,140.0,1,1,39,3,9,140.0,1,0,0,1,0,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9773,1,1,133.1,1,3,1,4,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +2,43,1,9853,1,1,110.0,1,37,37,7,7,100.0,0,0,0,1,1,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,Graduate +1,7,1,9119,1,3,120.0,1,19,19,1,1,120.0,0,0,0,0,1,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,1,130.0,1,34,34,99,99,114.8,0,0,0,1,0,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,140.0,1,37,3,9,10,172.0,0,0,0,1,1,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,Enrolled +1,17,2,9670,1,1,123.0,1,34,37,0,0,114.6,1,0,1,0,0,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,Dropout +1,43,2,9500,1,1,136.0,1,19,1,9,10,124.1,0,0,0,1,1,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,116.0,1,1,1,1,1,110.8,1,0,0,1,0,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9003,1,1,133.1,1,37,37,4,7,130.0,0,0,1,0,1,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,Dropout +1,1,3,9085,1,1,158.0,1,1,19,9,9,153.6,1,0,0,1,0,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,Graduate +1,17,4,9773,1,1,121.0,1,1,19,9,8,120.3,1,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,5,3,9085,1,1,141.0,1,1,19,7,5,128.8,1,0,0,1,0,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,Enrolled +1,18,4,9556,1,1,127.0,1,1,38,4,7,121.8,1,0,0,1,0,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,110.0,1,34,34,0,0,114.6,1,0,0,1,0,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9085,1,1,128.0,1,38,19,8,8,117.2,0,0,0,1,1,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,143.0,1,1,38,3,3,133.2,1,0,0,1,0,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,Graduate +1,1,4,9853,1,1,134.0,1,19,1,5,9,127.4,1,0,0,1,0,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Enrolled +1,1,1,9670,1,1,133.1,1,3,1,1,7,155.0,0,0,0,1,0,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,114.0,1,19,38,9,7,129.1,0,0,0,1,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,149.0,1,19,37,7,4,134.3,0,1,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,130.0,1,1,38,3,5,128.6,1,0,0,1,1,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,42,1,9147,1,1,139.0,1,3,38,2,5,112.3,1,0,0,1,0,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,Enrolled +1,1,3,9773,1,1,130.0,1,19,19,9,9,123.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,38,38,9,5,100.0,0,0,0,1,0,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,Enrolled +6,39,1,8014,0,1,133.1,1,37,1,9,7,114.8,0,0,0,1,0,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,121.0,1,1,38,4,9,114.4,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,18,1,9238,1,1,122.0,1,38,38,9,7,114.7,0,0,1,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9773,1,1,120.0,1,1,1,2,5,127.0,1,0,0,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,4,1,2,8,120.0,0,0,0,1,1,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,3,9500,1,1,143.0,1,38,1,9,5,133.8,1,0,0,1,0,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,130.0,1,1,19,9,7,133.8,0,0,1,1,0,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,Graduate +2,39,1,9556,1,1,100.0,1,37,37,9,9,120.0,0,0,0,1,0,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,133.1,1,1,19,5,4,102.5,0,0,0,1,0,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9003,1,1,111.0,1,1,3,4,2,162.4,0,0,1,0,1,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,133.1,1,19,1,9,3,107.0,1,0,0,1,0,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,128.0,1,19,1,4,4,124.3,1,0,0,1,1,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,140.0,1,36,14,9,10,130.0,1,0,0,1,1,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,150.0,1,38,19,7,10,134.6,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9070,1,1,134.0,1,34,1,5,7,129.8,1,0,0,1,0,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,150.0,1,37,37,9,3,150.0,1,0,0,1,1,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,Dropout +2,39,1,9238,1,1,126.6,1,38,38,9,7,107.5,0,0,1,1,0,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,120.0,1,37,37,9,7,106.8,0,0,0,1,0,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9254,1,1,117.0,1,1,1,5,5,116.3,1,0,0,1,1,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,130.0,1,19,19,5,5,157.0,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9556,1,1,133.1,1,44,40,2,2,115.5,0,0,0,1,0,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,133.1,1,3,1,2,4,125.0,0,0,0,1,1,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,9,9,100.0,0,0,0,0,1,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9500,1,1,141.0,1,37,1,9,4,127.3,1,0,0,1,0,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,117.0,1,38,38,175,183,113.2,1,0,1,1,0,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,133.1,1,37,37,7,7,124.5,0,0,0,0,1,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,Dropout +1,17,2,9070,1,1,133.1,1,37,38,9,10,178.0,1,0,0,1,1,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,19,9,9,115.0,1,0,0,1,1,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,146.0,1,1,1,3,4,128.2,0,0,1,1,0,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,4,9070,1,1,128.0,1,1,1,9,10,136.1,1,0,1,0,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,Dropout +5,39,1,9500,1,3,140.0,1,37,38,9,9,160.0,0,0,0,1,0,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,8,121.0,0,0,1,0,0,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,140.0,1,2,1,2,3,140.0,1,0,0,1,0,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,3,9670,1,1,126.0,1,37,37,0,0,136.5,1,0,0,1,0,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,140.0,1,19,37,9,9,130.2,1,0,0,1,0,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,1,3,1,2,133.0,0,0,0,1,0,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,136.0,1,19,38,9,9,121.7,1,0,0,1,1,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,4,9085,1,1,106.0,1,37,1,3,9,106.0,0,0,0,1,0,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,Enrolled +1,1,3,9500,1,1,135.0,1,1,37,7,7,120.5,1,0,0,1,0,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,115.0,1,19,19,7,7,115.0,1,0,0,1,0,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9238,1,1,160.0,1,38,1,9,3,124.0,0,0,1,1,1,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,129.0,1,38,38,5,5,120.8,1,0,0,1,0,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,160.0,41,37,19,9,9,160.0,0,0,0,1,0,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,132.0,1,1,19,7,5,129.9,1,0,0,1,1,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,136.0,1,37,38,9,8,139.2,1,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,127.0,1,19,37,9,7,121.3,1,0,0,1,0,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9119,1,1,142.0,1,1,38,4,3,129.8,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,5,8,133.2,0,0,0,0,1,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,Dropout +1,1,1,9147,1,1,150.0,1,1,19,5,5,137.8,1,0,0,1,1,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,135.0,1,3,1,2,4,129.8,1,0,0,1,1,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,Graduate +1,43,2,9773,1,1,132.0,1,19,19,0,0,127.1,0,0,0,1,1,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,3,9500,1,1,140.0,1,3,2,3,3,126.4,1,0,0,1,0,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,Dropout +2,39,2,9119,1,19,133.1,1,37,37,7,7,118.0,0,0,0,0,1,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,110.0,1,3,4,2,2,110.0,1,0,0,1,1,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,Dropout +2,39,1,9500,1,38,133.1,1,37,37,9,3,146.6,0,0,0,1,1,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,146.0,1,1,3,4,1,135.2,1,0,0,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,3,5,2,2,135.8,0,0,1,1,1,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9773,1,19,100.0,1,37,37,0,0,163.5,0,0,1,0,1,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,7,113.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,143.0,1,3,3,9,7,129.0,1,0,0,1,1,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,Graduate +1,1,2,9853,1,1,117.0,1,1,38,4,9,109.7,1,0,0,1,0,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9130,1,2,133.1,6,42,1,4,9,100.0,0,0,0,1,1,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,115.8,0,0,1,0,1,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9773,1,1,167.0,1,38,38,6,7,153.0,1,0,0,1,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,51,1,9238,1,1,141.0,1,1,1,5,9,125.0,0,0,0,1,1,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,4,9500,1,1,132.0,1,38,19,5,7,125.5,0,0,0,1,0,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,Graduate +1,1,1,9119,1,1,132.0,1,1,12,3,3,133.1,1,0,0,1,1,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,149.0,1,1,1,4,4,129.3,1,0,0,1,1,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,142.5,0,0,0,1,0,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,Enrolled +1,1,6,9773,1,1,133.1,1,1,37,3,3,100.0,1,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,138.0,1,37,37,9,6,145.0,1,0,0,1,0,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,19,19,3,6,124.3,1,0,0,1,0,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,135.0,1,37,37,9,7,132.6,1,0,0,1,0,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,159.0,1,34,26,0,6,160.1,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,133.1,1,37,37,6,8,100.0,0,0,1,1,0,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9070,1,1,153.0,1,3,3,1,2,146.7,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,43,1,171,1,2,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,141.0,1,19,19,9,8,142.8,0,0,0,1,0,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,39,2,9556,1,1,130.0,1,19,19,4,5,100.0,0,0,0,1,1,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,120.0,1,38,19,3,5,120.0,0,0,0,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,2,9147,1,1,120.0,1,37,37,9,9,104.0,0,0,0,0,1,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,150.0,1,38,38,9,9,132.0,1,0,0,1,0,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,142.0,1,38,38,9,9,132.9,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9085,1,1,160.0,1,4,19,2,5,162.1,1,0,0,1,0,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,8,130.2,1,0,0,1,0,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,118.0,1,1,1,9,9,111.0,0,0,0,0,1,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,119.0,1,37,37,10,6,119.7,1,0,0,1,0,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,Enrolled +1,17,2,171,1,1,137.0,1,1,1,4,1,143.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,18,3,9085,1,1,149.0,103,1,1,9,9,132.2,1,0,0,1,0,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,130.0,1,37,37,90,90,125.1,0,0,0,1,0,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,Graduate +4,17,5,8014,0,1,100.0,1,19,19,90,90,107.0,0,0,0,1,0,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,19,133.1,1,38,19,9,10,142.7,0,0,1,1,1,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,139.0,1,19,37,5,5,125.5,0,0,0,1,0,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,133.0,1,4,1,5,5,131.6,0,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,148.0,1,19,19,9,3,125.0,1,0,0,1,0,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,110.0,1,37,37,9,9,110.3,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,53,1,9003,1,42,130.0,1,38,38,9,9,130.0,1,0,1,1,1,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,Enrolled +1,1,4,9070,1,1,140.0,1,4,19,2,10,125.0,1,0,0,1,1,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9003,1,39,140.0,1,19,1,5,5,140.0,0,0,0,1,0,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,Enrolled +1,1,4,9070,1,1,136.0,1,37,37,9,8,136.7,1,0,0,1,0,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,1,5,9773,1,1,125.0,1,37,3,5,2,126.1,1,0,0,1,1,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,8014,0,1,126.0,1,37,38,9,10,119.4,0,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,123.0,1,1,3,2,2,118.8,0,0,0,1,1,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9500,1,1,144.0,1,1,37,9,9,127.5,1,0,0,1,0,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,125.0,1,38,37,8,7,131.7,1,0,0,1,1,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,144.0,1,37,37,8,8,138.4,0,0,0,1,0,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,160.0,1,37,37,3,4,97.0,0,0,0,1,0,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,37,38,9,9,125.0,1,0,0,1,0,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,117.0,1,37,37,9,9,109.3,0,0,0,0,0,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,3,130.0,1,37,37,9,9,146.2,0,0,0,1,0,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,150.0,1,37,37,9,9,130.3,0,0,0,1,0,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,Graduate +2,39,2,8014,0,19,100.0,1,37,37,4,7,100.0,0,0,1,1,0,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,38,133.1,1,38,37,4,8,95.5,0,0,0,1,1,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,120.7,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9119,1,19,120.0,1,37,37,9,4,98.6,0,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9130,1,1,120.0,1,19,37,1,9,116.1,1,0,0,1,1,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9500,1,1,136.0,1,1,1,4,9,128.5,1,0,0,1,0,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,132.0,1,38,37,7,7,131.3,1,0,0,1,0,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,115.0,1,38,38,9,8,108.4,1,0,0,1,0,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,120.0,1,37,37,9,9,98.7,0,0,0,1,1,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,120.0,1,37,37,9,9,155.8,0,0,0,1,1,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,151.0,1,19,1,5,0,144.4,1,0,0,1,0,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,Graduate +1,43,2,9147,1,1,131.0,1,19,37,5,9,123.7,1,0,0,1,0,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,Enrolled +1,17,4,9085,1,1,128.0,1,38,37,4,9,117.9,1,0,0,1,0,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,8014,0,12,133.1,1,37,1,9,10,112.5,0,0,0,1,1,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,19,133.1,1,37,37,4,8,140.0,0,0,0,1,0,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,7,1,9147,1,2,150.0,1,3,37,2,5,150.0,1,0,1,0,0,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,2,9147,1,1,102.0,1,37,38,191,143,101.7,1,0,0,1,0,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,128.0,1,19,1,4,1,118.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,133.1,1,19,1,4,8,144.3,0,0,0,1,1,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,5,9254,1,1,128.0,1,19,1,7,10,116.5,1,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,140.0,1,19,19,7,5,135.1,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,18,2,9500,1,1,129.0,1,38,37,5,5,119.0,1,0,0,1,0,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,3,1,3,3,131.5,1,0,0,1,0,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,143.0,1,3,3,2,5,144.8,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,127.0,1,37,37,9,8,123.2,1,0,0,1,0,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9500,1,1,125.0,1,37,37,9,7,123.6,1,0,0,1,0,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,138.0,1,1,38,3,9,123.0,1,0,0,1,0,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,139.0,1,38,38,9,9,145.0,1,0,0,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,121.0,1,37,19,6,7,116.8,1,0,0,1,0,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,2,9085,1,1,123.0,1,1,19,4,9,113.6,1,0,0,1,0,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,17,6,9773,1,1,126.0,1,1,19,5,5,119.0,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,4,9119,1,1,139.0,1,37,19,9,4,133.1,1,0,0,1,1,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,158.0,1,1,38,3,6,155.2,0,0,0,1,1,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,8014,0,1,133.1,1,19,1,1,1,118.0,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,136.0,1,22,30,0,8,135.7,1,0,0,1,0,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,120.0,1,37,37,9,9,110.0,0,0,0,0,1,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,124.0,1,19,19,7,9,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,Enrolled +5,7,1,9991,0,2,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,4,9238,1,1,123.0,1,38,1,4,10,129.0,1,0,0,1,0,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,4,9119,1,1,135.0,1,38,37,5,7,126.6,1,0,0,1,1,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,129.0,1,5,3,5,7,124.8,1,0,0,1,0,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,Graduate +1,17,5,9147,1,1,127.0,1,1,38,4,5,124.6,1,0,0,1,0,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,135.0,1,1,1,4,4,118.5,0,0,0,1,0,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,171,1,1,142.0,1,3,1,2,6,139.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9147,1,1,133.1,1,19,19,9,9,119.8,0,0,0,1,1,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,123.0,1,1,37,9,9,132.1,0,0,0,1,0,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9853,1,1,115.0,1,3,37,2,5,108.7,1,0,0,1,0,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,12,133.1,1,37,34,90,90,110.7,1,0,0,1,0,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,155.0,1,4,3,1,1,144.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9254,1,1,105.0,1,1,19,9,6,106.1,1,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,150.0,1,19,19,3,4,135.0,0,0,0,1,0,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,152.0,1,37,37,5,7,136.3,0,0,0,1,0,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,34,34,0,0,120.5,1,0,0,1,1,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,140.0,1,1,37,4,5,123.6,1,0,0,1,0,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,120.0,1,37,37,9,9,150.1,1,0,0,1,1,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,144.0,1,37,38,9,9,126.9,0,0,0,1,0,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,120.0,1,37,37,9,9,128.2,0,0,0,0,1,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,Dropout +1,18,2,9147,1,1,115.0,1,1,37,5,5,108.7,1,0,0,1,0,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,140.0,1,19,19,4,4,140.0,1,0,0,0,1,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,1,1,3,7,140.0,1,0,0,1,0,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9500,1,1,129.0,1,19,19,5,5,119.6,1,0,0,1,0,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,Graduate +1,17,6,9773,1,1,141.0,1,37,37,5,5,127.7,1,0,0,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,137.0,1,19,37,4,7,126.3,1,0,0,1,0,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,1,168.0,1,1,41,9,3,153.9,0,0,1,0,1,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,133.0,1,37,37,9,9,121.8,1,0,0,1,0,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,119.0,1,2,1,4,3,113.1,1,0,0,1,0,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,142.0,1,38,19,141,171,115.0,0,0,0,1,0,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,4,9773,1,1,138.0,1,37,19,5,7,133.5,1,0,0,0,0,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +2,7,1,8014,0,3,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,133.0,1,3,19,2,5,130.8,1,0,0,1,0,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,137.0,1,38,19,152,171,131.1,1,0,0,1,0,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9119,1,1,130.0,1,1,38,3,3,129.3,0,0,0,1,1,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Graduate +1,43,1,9773,1,1,126.0,1,1,37,3,0,110.0,0,0,1,1,0,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,116.0,1,1,12,5,8,110.4,1,0,0,1,1,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,1,1,4,10,110.0,0,0,1,1,0,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,5,9238,1,1,134.0,1,38,37,9,9,126.0,0,0,1,0,0,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,Dropout +2,39,1,9147,1,1,130.0,1,1,19,9,9,109.9,0,0,0,0,0,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9085,1,1,133.1,41,37,37,9,9,109.6,0,0,0,1,0,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,1,140.0,0,0,0,1,1,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,Enrolled +2,39,1,9991,0,19,133.1,1,38,38,90,90,121.7,1,0,0,1,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,143.0,1,1,3,4,7,129.7,1,0,0,1,0,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,133.0,1,1,19,9,6,121.5,1,0,0,1,0,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,133.0,1,38,37,9,9,125.3,1,0,0,1,0,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,Graduate +1,42,1,9991,0,1,160.0,1,1,2,4,3,120.0,0,0,0,1,0,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,Graduate +2,39,2,9556,1,1,133.1,105,1,3,9,2,152.8,1,0,0,1,0,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,123.0,1,1,1,4,6,118.8,1,0,0,1,0,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,122.0,1,3,19,2,3,112.9,0,0,0,1,0,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,Graduate +1,1,5,9853,1,1,123.0,1,1,12,4,9,113.2,1,0,0,1,0,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,140.0,1,37,37,9,9,141.5,1,0,1,0,0,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,129.0,1,19,19,4,8,127.3,1,0,0,1,0,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,1,130.0,1,37,37,6,6,110.0,0,0,0,1,0,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,Enrolled +4,39,1,8014,0,19,133.1,1,37,37,9,9,95.0,0,0,1,0,0,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9853,1,1,127.0,1,37,19,9,8,137.5,1,0,0,1,0,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,142.0,1,38,37,5,7,128.8,1,0,0,1,0,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,Graduate +1,17,2,9147,1,1,142.0,1,19,19,4,8,127.3,0,0,0,1,0,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +3,39,1,9991,0,1,120.0,1,37,1,9,2,170.0,0,0,0,1,1,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,138.0,1,19,37,4,9,141.0,0,0,0,1,1,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,132.0,1,1,38,9,9,120.1,1,0,0,1,1,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,140.0,1,1,1,2,7,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,121.0,1,37,19,9,10,113.7,0,0,0,1,0,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,Enrolled +1,39,1,8014,0,38,133.1,1,1,1,4,4,107.5,0,0,1,0,1,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,150.0,1,1,1,5,1,155.6,0,0,0,1,0,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,150.0,1,37,37,9,6,131.1,0,0,0,1,0,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,100.0,1,3,19,1,1,117.9,0,0,0,0,1,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,2,9991,0,1,150.0,1,37,37,9,9,120.0,0,0,0,1,0,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,150.0,1,1,38,4,9,150.0,0,0,0,1,1,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,Enrolled +2,43,1,9130,1,9,133.1,1,34,34,0,0,128.2,0,0,0,1,1,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,141.0,1,1,1,90,3,127.8,0,0,0,1,0,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,116.0,1,3,3,0,1,108.7,1,0,0,1,1,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,Dropout +2,39,1,9500,1,1,140.0,1,19,19,9,7,110.5,0,0,0,1,0,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9254,1,19,133.1,1,34,34,0,0,120.0,0,0,1,0,1,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,133.1,1,37,37,191,172,115.2,0,0,0,1,0,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,6,160.0,0,0,0,1,0,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,133.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9556,1,1,131.0,1,19,38,9,7,128.5,0,0,0,1,0,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,160.0,1,37,38,9,7,161.0,1,0,0,1,0,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,136.0,1,3,3,1,2,152.5,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9853,1,1,114.0,1,19,37,5,5,109.5,1,0,0,1,0,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,150.0,1,37,37,9,7,122.5,0,0,0,1,1,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,Dropout +1,44,1,9991,0,39,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,8014,0,42,140.0,1,19,37,134,193,138.0,1,0,1,1,0,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,127.0,1,2,19,3,9,121.5,0,0,0,1,1,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,133.1,1,19,19,3,3,125.3,0,1,0,1,1,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,4,9670,1,1,125.0,1,4,19,2,5,118.0,1,0,0,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,Graduate +2,42,1,9070,1,1,170.0,1,37,25,0,4,148.5,0,0,0,1,1,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,Dropout +1,17,5,9254,1,1,121.0,1,1,19,4,7,116.5,1,0,0,0,1,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,120.0,1,19,38,5,9,130.2,0,0,0,1,0,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,140.0,1,19,37,9,9,140.7,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,140.0,1,19,19,5,9,131.3,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,42,1,9119,1,1,140.0,1,3,3,3,2,133.6,1,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,8014,0,1,150.0,1,19,2,4,6,148.0,0,0,0,1,0,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,127.0,1,37,2,9,4,123.2,1,0,0,1,0,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,119.0,1,19,37,9,9,119.4,1,0,0,1,0,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,132.0,1,2,1,4,1,127.8,0,0,0,1,1,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,Dropout +1,42,1,9119,1,1,136.0,1,1,37,5,5,117.5,0,0,0,1,1,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9991,0,1,122.0,1,37,37,9,3,113.6,0,0,0,1,1,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,5,6,137.4,0,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,128.0,1,19,19,5,4,116.5,0,0,0,1,0,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,139.0,1,1,38,6,6,143.6,1,0,1,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9130,1,1,154.0,1,3,3,2,2,137.2,1,0,1,1,1,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,6,9500,1,1,142.0,1,19,37,4,9,131.9,1,0,0,1,0,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Dropout +1,1,2,9773,1,1,131.0,1,19,37,9,10,121.9,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +2,7,1,9130,1,3,120.0,1,3,3,1,1,128.2,0,0,0,1,0,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,19,133.1,1,37,37,9,9,150.3,0,0,0,1,0,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,125.0,1,37,37,5,5,124.0,0,0,0,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,135.0,1,37,19,9,9,125.2,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,9,124.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,175.0,1,3,38,2,10,157.5,1,0,0,1,0,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,139.0,1,1,1,4,10,140.7,0,0,0,1,1,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,Dropout +1,1,4,9500,1,1,128.0,1,1,1,4,10,125.2,1,0,0,1,1,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,150.0,1,1,37,1,1,131.5,1,0,0,1,0,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,168.0,1,38,1,9,10,166.0,1,0,0,1,0,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,Graduate +1,51,1,9070,1,1,125.0,1,42,3,125,124,130.0,1,0,0,1,1,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,135.0,1,1,38,4,5,127.5,1,0,0,1,0,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,Graduate +1,18,1,9119,1,1,148.0,1,3,19,3,5,147.7,0,0,0,1,1,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9773,1,1,130.0,109,19,1,9,9,126.9,1,0,0,1,0,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,125.0,1,19,38,3,7,114.9,0,0,0,1,0,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,Graduate +1,7,1,9119,1,3,130.0,1,37,37,9,9,130.0,0,0,0,0,1,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9853,1,1,130.0,1,37,19,7,3,140.0,0,0,1,1,0,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,112.0,1,3,1,3,5,111.0,0,0,0,1,0,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,37,38,193,181,125.9,0,0,0,1,0,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,Graduate +1,42,1,9119,1,1,120.0,1,34,34,0,0,128.2,1,0,0,1,1,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,19,133.1,1,37,37,9,9,117.2,0,0,0,1,0,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9147,1,1,131.0,1,19,38,9,7,132.4,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9003,1,1,180.0,1,1,1,4,8,179.6,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,5,9119,1,1,135.0,1,37,37,90,90,122.1,1,0,0,1,1,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.0,1,1,38,5,10,131.3,1,0,0,1,0,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,126.0,1,37,19,5,5,119.3,0,0,0,1,0,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,110.0,1,19,37,9,6,120.0,0,0,1,0,1,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9556,1,1,130.0,1,37,37,9,9,159.0,1,0,0,1,0,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,141.0,1,19,38,4,5,133.7,1,0,0,1,1,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,1,37,4,6,120.0,0,0,0,1,1,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9085,1,1,123.0,1,3,19,2,9,118.9,0,0,0,1,1,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,17,1,9991,0,1,140.0,1,38,37,6,7,127.3,0,0,0,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,151.0,1,3,1,2,1,129.8,1,0,0,1,1,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,113.0,1,37,37,0,6,128.2,0,0,0,0,0,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9070,1,1,117.0,1,1,37,4,7,127.9,1,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,145.0,1,19,19,9,7,136.6,0,0,0,1,0,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.0,1,34,37,4,9,134.4,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,9238,1,39,130.0,1,38,38,5,10,126.7,0,0,1,1,0,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9773,1,1,122.0,1,1,1,4,7,116.8,1,0,1,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,3,9147,1,1,124.0,1,1,1,5,3,116.7,1,0,0,1,1,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,38,1,9,4,123.2,0,0,0,1,0,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,Enrolled +1,39,1,9556,1,40,130.0,1,1,1,4,5,145.0,0,0,0,1,0,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,Enrolled +1,43,1,9147,1,1,127.0,25,1,5,9,10,124.2,1,0,0,1,1,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,43,1,9670,1,1,120.0,1,34,34,0,0,128.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9238,1,1,122.0,1,1,3,9,2,112.6,1,0,0,1,1,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,122.0,1,1,1,4,4,119.6,1,0,0,1,0,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,Enrolled +1,17,5,9670,1,1,125.0,1,1,19,9,7,119.4,1,0,0,1,0,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,146.0,1,19,37,9,7,153.0,1,0,0,1,0,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,108.0,1,38,38,7,7,115.0,1,0,1,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,133.1,1,1,1,3,9,138.0,1,0,0,1,0,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,140.0,1,37,37,9,5,140.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,19,133.1,1,2,1,2,4,100.0,0,0,0,1,1,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9147,1,1,129.0,1,38,37,3,5,132.9,1,0,0,1,0,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,149.0,1,3,2,2,5,151.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,135.0,1,19,4,9,2,143.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9147,1,1,158.0,1,19,37,9,7,130.0,1,0,0,1,0,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,Graduate +1,17,6,9556,1,1,122.0,1,1,1,4,5,117.1,1,0,0,1,0,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9556,1,12,133.1,1,34,34,99,99,100.5,0,0,0,1,0,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9003,1,1,123.0,1,37,37,9,9,110.0,0,0,1,0,0,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,138.0,1,3,3,2,2,127.5,1,0,0,1,0,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,Graduate +1,43,1,9500,1,1,121.0,1,38,19,5,5,115.4,1,0,0,1,0,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,Enrolled +1,17,4,9147,1,1,114.0,1,19,19,4,4,109.5,1,0,0,1,1,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,148.0,1,1,1,4,8,145.2,0,0,0,1,1,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,121.0,1,1,1,4,4,123.1,1,0,0,1,1,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,150.0,1,3,3,2,5,154.6,1,0,0,1,0,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,151.0,1,19,38,9,9,157.0,1,0,1,1,0,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,101.0,0,0,0,1,0,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,2,9254,1,1,127.0,1,3,19,3,10,130.9,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,146.0,1,1,1,9,8,149.5,1,0,0,1,1,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9130,1,6,133.1,1,1,29,4,90,123.3,1,0,0,1,0,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,3,3,7,146.5,1,0,1,1,1,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,Enrolled +1,7,1,8014,0,40,120.0,1,37,19,9,3,120.0,0,0,0,1,0,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9853,1,1,125.0,1,37,37,9,9,114.9,1,0,1,0,0,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,2,9773,1,1,140.0,1,1,1,4,3,131.6,0,0,0,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,142.0,1,1,19,9,9,136.1,0,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,113.0,1,1,1,4,4,106.7,1,0,0,1,0,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,130.0,1,1,2,4,2,130.0,0,0,0,1,1,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,39,1,9119,1,1,130.0,1,19,37,9,9,134.0,0,0,0,1,1,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,Enrolled +1,18,1,9500,1,1,123.0,1,37,37,3,3,118.0,1,0,0,1,0,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,Graduate +1,10,2,9085,1,1,163.3,22,19,1,4,9,163.3,0,0,0,1,0,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,5,135.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,136.0,1,4,5,2,2,126.2,0,0,0,1,1,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,150.0,1,1,37,4,8,150.0,1,0,0,0,0,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9085,1,3,140.0,1,19,20,4,90,140.0,1,0,0,1,0,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,43,1,9070,1,1,135.0,1,1,38,3,9,126.4,1,0,0,1,0,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,140.0,1,19,38,7,8,129.9,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,133.1,1,1,1,9,9,155.0,0,0,0,1,0,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,5,9773,1,1,122.0,1,38,38,7,7,123.1,1,0,0,0,0,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,117.0,1,1,1,9,9,109.3,1,0,0,1,0,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9500,1,1,130.0,1,1,38,9,9,125.1,1,0,0,1,0,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,Enrolled +1,1,2,9773,1,1,144.0,1,3,3,3,2,140.2,1,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,145.0,1,1,1,4,10,145.0,0,0,0,1,0,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,Dropout +1,51,1,9070,1,1,143.0,1,1,1,4,4,120.0,1,0,0,1,0,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,145.0,1,1,38,90,8,132.8,1,0,0,0,1,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9556,1,1,120.0,1,38,38,191,193,120.0,0,0,1,1,0,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,148.0,1,19,1,7,5,138.3,1,0,0,1,1,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,146.0,1,3,3,3,6,133.4,1,0,0,1,0,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,Graduate +1,17,1,9130,1,1,131.0,1,12,12,2,8,128.2,1,0,0,1,1,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,6,9556,1,1,115.0,1,19,2,5,3,112.2,1,0,0,1,0,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,Graduate +1,43,1,9556,1,1,126.0,1,2,3,3,2,100.0,0,0,0,1,0,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,Enrolled +1,17,1,9238,1,1,120.0,1,19,37,9,9,113.0,1,0,0,1,0,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,132.0,1,19,38,5,5,118.0,1,0,0,1,0,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,Graduate +2,1,1,9238,1,1,145.0,1,37,34,9,7,139.4,0,0,0,0,0,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,131.0,1,38,38,191,174,125.4,1,0,0,1,0,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,39,1,9119,1,1,120.0,1,37,38,9,10,145.4,0,0,1,1,1,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,Dropout +1,1,1,9130,1,1,138.0,1,4,5,2,2,123.0,1,0,0,1,0,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,127.0,1,5,3,4,4,122.8,1,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,136.0,1,1,1,4,4,127.0,1,0,0,1,0,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,Enrolled +1,17,3,9119,1,1,115.0,1,3,1,3,3,116.1,1,0,0,0,1,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,143.0,1,38,37,4,9,116.5,1,0,0,1,0,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,3,19,3,8,134.9,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,Graduate +1,44,1,9119,1,39,140.0,1,5,41,3,2,140.0,0,0,0,1,1,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,124.0,1,19,19,9,3,115.6,1,0,0,0,1,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9500,1,3,130.0,1,19,38,5,3,130.0,0,0,0,1,0,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,137.0,1,1,1,4,10,124.8,1,0,0,1,1,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,138.0,1,1,3,1,4,127.5,1,0,0,1,1,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,112.0,1,1,1,5,1,111.7,0,0,1,0,1,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,Dropout +1,1,4,9500,1,1,147.0,1,1,1,4,9,124.5,1,0,0,1,0,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,Graduate +1,7,1,9500,1,3,140.0,1,3,19,2,6,140.0,0,0,0,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,121.0,1,19,19,7,7,113.0,1,0,0,1,0,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,8014,0,1,96.0,1,3,1,3,9,100.0,0,0,0,1,0,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,152.0,1,1,38,4,5,144.7,0,0,0,1,0,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,Graduate +2,1,1,9070,1,1,127.0,1,12,19,9,9,123.2,0,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,Graduate +1,1,3,9070,1,1,147.0,1,34,37,5,7,135.8,1,0,0,1,0,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,7,1,9119,1,4,180.0,1,4,3,2,7,180.0,0,0,1,1,1,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,Enrolled +1,1,6,9500,1,1,129.0,1,37,19,9,7,127.8,1,0,0,1,0,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,100.0,1,37,37,7,7,160.0,1,0,0,1,0,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,127.0,1,19,1,5,5,117.6,1,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9003,1,1,110.0,1,1,1,9,4,120.0,0,0,1,0,1,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9773,1,1,143.0,11,19,19,4,9,133.9,1,0,0,1,1,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,160.0,1,37,37,7,7,156.1,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,43,2,9670,1,1,135.0,1,3,19,1,7,123.5,1,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,1,130.0,1,38,3,132,122,100.0,0,0,0,1,1,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,Enrolled +1,15,1,9238,1,1,150.0,26,19,1,9,9,146.5,1,0,1,0,1,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,Graduate +1,17,6,9119,1,1,129.0,1,37,13,4,90,117.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,3,130.0,1,3,3,3,10,147.6,0,0,0,1,1,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,171,1,1,145.0,1,1,1,3,3,140.1,1,0,0,1,0,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,43,3,9254,1,1,135.0,1,3,3,2,2,122.1,0,0,0,1,1,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,171,1,1,140.0,41,1,1,5,7,146.3,1,0,0,1,0,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9070,1,1,126.0,1,38,38,9,8,129.9,1,0,0,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Graduate +1,7,1,9070,1,3,120.0,1,4,4,2,2,120.0,0,0,0,1,1,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,Dropout +1,17,4,9070,1,1,144.0,1,38,1,9,9,137.4,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,125.0,1,3,3,2,3,118.0,1,0,0,1,1,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,Dropout +5,39,1,9238,1,1,130.0,1,19,38,9,10,146.0,0,0,0,1,1,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,5,107.5,0,0,0,1,0,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9773,1,1,130.0,1,1,19,1,3,161.5,0,0,0,1,1,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,140.0,1,19,19,9,4,127.8,1,0,0,1,1,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,113.0,1,1,37,1,10,116.5,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,Graduate +1,1,2,9238,1,1,145.0,1,1,19,4,8,121.4,0,0,0,1,0,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9003,1,19,133.1,1,19,37,9,10,120.0,0,0,1,1,0,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,Enrolled +1,1,1,9085,1,1,150.0,1,12,2,4,2,144.6,0,0,1,0,0,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,40,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,Dropout +1,17,5,9500,1,1,137.0,1,1,1,5,5,132.6,1,0,0,1,0,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,3,19,4,7,119.0,0,0,0,1,1,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,128.0,1,1,1,4,5,124.7,0,0,0,1,1,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,Enrolled +1,39,2,9670,1,19,133.1,1,34,34,0,0,100.0,1,0,0,0,1,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,Dropout +1,39,1,9556,1,1,120.0,1,19,19,4,5,122.8,0,0,0,1,0,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,Dropout +1,1,2,171,1,1,165.0,1,3,3,2,2,163.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,133.8,1,3,37,2,10,184.0,0,0,0,1,0,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,120.0,1,37,19,9,4,148.8,0,0,0,1,0,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,5,9500,1,1,151.0,1,1,1,9,9,127.8,0,0,0,1,0,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,131.0,1,38,19,7,7,125.3,1,0,0,1,0,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,128.0,1,1,1,9,6,120.3,0,0,0,1,1,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,118.0,1,3,1,5,10,113.5,1,0,0,1,0,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,140.0,1,37,37,7,9,126.8,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,117.0,1,38,37,9,9,113.5,1,0,0,1,0,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,135.0,1,19,19,9,9,122.8,1,0,0,1,1,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,151.0,1,37,37,9,7,147.5,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,1,3,4,4,147.5,1,0,0,1,0,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,128.0,1,38,37,9,9,124.9,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9085,1,1,124.0,1,3,19,2,3,113.9,1,0,0,1,0,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,120.0,1,3,19,4,7,119.7,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,171,1,1,147.0,1,1,12,4,4,148.4,1,0,0,1,1,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,136.0,1,19,1,9,8,123.4,1,0,0,1,0,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,123.0,1,3,1,2,5,112.9,0,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,2,9556,1,1,133.1,1,3,1,2,4,136.1,0,0,0,1,1,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,141.0,1,3,1,4,4,142.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9003,1,1,120.0,1,37,37,9,9,120.5,1,0,1,1,1,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,6,140.0,1,0,0,1,1,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,147.0,1,19,1,4,3,138.5,1,0,0,1,0,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,123.0,1,34,34,90,90,113.3,1,0,0,1,0,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,38,4,5,130.4,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,7,7,134.0,0,0,0,1,1,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,38,38,4,7,111.6,1,0,0,1,0,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9119,1,1,148.0,1,19,38,9,7,133.0,0,0,0,1,1,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,128.0,1,3,1,2,1,127.8,0,0,0,1,0,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,172.0,1,38,37,9,9,149.3,0,0,0,1,1,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,138.0,1,37,37,9,8,127.2,1,0,0,1,0,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,140.0,1,3,1,2,6,137.6,1,0,0,1,1,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,110.0,1,37,19,9,3,100.0,0,0,0,1,0,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,2,1,2,4,140.7,1,0,0,1,1,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,137.0,1,3,38,3,5,129.3,1,0,0,1,0,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,136.0,1,38,38,0,7,133.2,1,0,0,1,0,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,145.0,6,34,34,0,0,134.5,1,0,0,1,1,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,147.0,1,19,19,3,10,151.9,1,0,0,1,0,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,118.0,1,37,37,9,9,112.1,1,0,0,1,0,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,Dropout +1,43,1,9773,1,1,122.0,1,1,1,4,5,126.9,0,0,0,1,0,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,126.0,1,12,38,9,5,122.2,0,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,143.0,1,3,3,2,2,129.0,0,0,0,1,1,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,Graduate +1,39,1,9556,1,1,130.0,1,19,38,9,8,113.3,0,0,0,1,0,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,101.0,1,1,37,4,9,98.9,1,0,0,1,0,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,133.1,1,34,34,90,90,116.0,0,0,0,0,0,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,Dropout +2,39,1,9991,0,1,170.0,1,37,19,9,3,151.1,0,0,0,1,1,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,Graduate +2,17,5,9119,1,1,126.0,1,37,38,4,4,122.9,1,0,0,1,1,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,125.0,1,19,19,9,9,114.9,0,0,0,1,0,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,Graduate +1,18,3,9773,1,1,128.0,1,19,1,9,9,122.1,1,0,0,1,1,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,149.0,1,38,37,9,9,139.5,0,0,0,1,1,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,1,3,9,5,137.1,0,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,126.0,1,38,37,5,5,114.8,1,0,0,1,0,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9085,1,1,120.0,1,37,37,6,6,150.0,0,0,0,1,1,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,137.0,1,38,19,0,90,122.3,0,0,0,1,0,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9853,1,19,133.1,1,37,19,3,7,100.0,0,0,0,1,0,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,145.0,1,4,2,2,3,127.3,1,0,0,1,1,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,129.0,1,1,1,4,8,129.0,0,0,0,0,0,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,143.0,1,1,1,4,4,129.0,1,0,0,1,1,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,136.0,1,19,38,9,9,119.3,1,0,0,1,0,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,151.6,0,0,0,1,0,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,Enrolled +1,1,1,9238,1,1,108.0,1,19,38,9,9,107.3,0,1,0,1,0,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,134.0,1,1,1,2,7,128.4,1,0,0,1,0,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,Graduate +1,42,1,9119,1,1,120.0,1,3,1,2,9,108.2,1,0,0,1,1,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,Dropout +1,16,2,9500,1,1,127.0,1,2,38,4,9,119.0,1,0,0,1,0,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,131.0,1,1,1,9,9,122.0,0,0,0,1,0,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9070,1,3,133.1,1,3,5,2,2,120.0,1,0,0,1,0,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,150.0,1,19,19,5,5,132.8,1,0,0,1,0,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,Graduate +1,18,2,9670,1,1,121.0,1,37,38,4,1,111.9,1,0,0,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,108.0,41,3,3,9,9,107.0,0,0,1,0,0,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,150.0,1,34,19,0,4,152.8,1,0,0,1,1,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,18,2,9238,1,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,130.0,6,19,1,6,4,130.0,1,0,0,1,0,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,Enrolled +1,51,1,9119,1,1,136.0,1,1,19,3,5,133.6,1,0,0,1,1,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,Dropout +1,1,4,9773,1,1,155.0,1,3,19,1,4,149.8,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9070,1,1,124.0,1,19,38,4,0,117.6,1,0,0,1,1,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,9,100.0,0,0,0,1,1,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,Enrolled +1,44,1,9238,1,1,140.0,1,1,1,5,5,143.4,0,0,0,1,0,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,120.0,1,1,19,7,7,111.3,0,0,0,1,1,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,Enrolled +2,1,1,9556,1,1,144.0,1,19,19,193,144,139.8,0,0,1,1,1,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,110.0,1,1,1,5,5,160.0,1,0,1,1,0,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,Dropout +2,39,1,9853,1,19,133.1,1,37,37,9,9,131.0,0,0,0,1,0,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,139.0,1,4,1,2,10,136.4,1,0,0,1,0,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,Graduate +1,17,3,9085,1,1,134.0,1,37,38,9,9,120.4,1,0,0,1,0,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,148.0,1,3,2,4,2,131.6,1,0,0,1,0,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,145.0,1,19,37,7,7,141.5,1,0,0,1,0,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9130,1,19,133.1,1,37,38,9,9,120.0,0,0,0,1,1,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,3,9254,1,1,121.0,1,19,37,4,7,116.8,1,0,0,1,0,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,123.0,1,1,1,4,3,123.4,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,38,38,9,9,133.4,1,0,0,1,1,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,Graduate +1,42,1,9500,1,1,124.0,1,19,19,4,9,124.0,0,0,0,1,0,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,40,130.0,1,37,37,9,7,130.0,0,0,0,1,0,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,140.0,1,3,38,2,9,140.0,1,0,0,1,0,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,158.0,1,38,38,9,7,144.7,1,0,0,1,0,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,18,2,9238,1,1,121.0,1,19,1,4,3,121.4,1,0,0,1,0,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,12,133.1,1,37,19,9,10,120.0,0,0,0,1,1,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,122.0,1,3,1,4,3,114.8,1,0,0,1,0,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,Enrolled +4,43,1,9991,0,1,164.0,1,37,37,6,6,131.8,0,0,0,1,0,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,3,9773,1,1,145.0,1,38,38,9,5,133.1,0,0,0,1,0,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9853,1,19,133.1,1,38,19,9,9,108.0,0,0,1,0,0,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,3,9070,1,1,131.0,1,38,37,5,5,120.2,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,Enrolled +1,43,1,9238,1,1,130.0,1,38,37,9,7,133.2,0,0,0,1,0,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,112.0,1,1,1,3,3,106.4,1,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,125.0,1,1,38,144,181,123.3,0,0,0,1,0,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,125.0,1,3,2,2,1,119.1,1,0,0,1,0,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9853,1,3,140.0,1,34,34,0,0,140.0,1,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,135.0,1,1,19,3,9,137.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9991,0,3,120.0,1,37,37,6,7,120.0,0,0,1,0,1,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,130.0,1,1,1,4,3,125.1,1,0,0,1,0,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,Graduate +2,39,1,33,1,1,120.0,1,38,1,9,5,153.8,0,0,1,1,1,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,37,37,9,9,140.0,0,0,0,0,1,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,127.0,1,1,38,9,7,120.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,43,180.0,1,19,19,9,4,180.0,0,0,0,1,0,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,Graduate +1,1,3,9147,1,1,143.0,1,1,1,5,7,133.2,1,0,0,1,0,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,Graduate +1,15,1,9853,1,1,133.1,41,43,1,153,135,128.2,0,0,0,1,0,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,12,133.1,1,1,1,9,4,140.0,1,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,151.0,1,1,38,4,7,137.0,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,Graduate +1,17,4,171,1,1,172.0,1,3,1,2,10,155.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,129.0,1,19,1,9,5,112.0,0,0,0,1,1,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,150.0,1,38,3,9,1,140.0,0,0,0,1,1,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,Graduate +1,1,1,9773,1,1,124.0,17,1,1,3,5,118.1,1,0,1,0,0,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9670,1,1,124.0,1,37,19,5,8,114.2,1,0,1,1,0,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,122.0,1,1,19,3,5,116.8,1,0,0,1,0,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,144.0,1,38,1,9,10,137.4,0,0,0,1,0,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,19,19,9,9,120.0,0,0,0,1,0,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,138.0,1,38,38,7,6,124.7,1,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,18,2,9147,1,1,132.0,1,3,3,5,7,119.1,1,0,1,0,0,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,17,6,9119,1,1,111.0,1,19,3,5,10,106.5,1,0,0,1,1,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,Dropout +1,7,1,9500,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,1,140.0,1,37,37,9,9,130.0,1,0,0,1,1,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,125.0,1,37,37,3,3,124.0,0,0,0,1,1,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,128.0,1,19,2,7,3,126.3,1,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +2,39,1,9500,1,1,110.0,1,37,37,9,6,114.3,0,0,0,1,0,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,9085,1,1,133.1,1,1,9,4,4,128.2,0,0,0,1,0,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,Graduate +1,1,3,9238,1,1,126.0,1,38,19,5,8,120.8,1,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,121.0,1,1,1,9,8,118.9,1,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,109.0,1,19,37,5,5,108.3,0,0,0,1,0,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,Enrolled +1,1,4,9670,1,1,127.0,1,1,1,7,7,116.5,1,0,0,1,0,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,171,1,19,133.1,101,1,19,2,7,110.0,0,0,0,1,1,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,133.0,1,37,37,9,7,124.6,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,39,137.0,1,1,1,5,10,124.5,0,0,0,0,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,130.0,1,19,19,7,7,121.6,0,0,0,1,0,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,130.0,1,37,37,6,5,113.5,1,0,0,1,0,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9670,1,1,120.0,1,38,38,5,7,115.1,1,0,0,1,0,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,115.0,1,38,1,9,4,116.1,1,0,0,1,1,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,130.1,0,0,0,1,0,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,Enrolled +1,1,3,9238,1,1,133.1,1,1,1,9,9,100.0,1,0,0,1,1,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,168.0,0,0,0,1,1,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,148.0,1,1,1,9,9,141.7,0,0,0,0,1,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,Dropout +1,15,1,33,1,1,133.1,41,2,3,2,4,100.0,0,0,0,1,1,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,135.0,1,37,37,6,5,121.0,1,0,0,1,1,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,151.0,1,3,3,1,90,161.9,0,0,0,1,0,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,8,108.5,0,0,0,1,1,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9670,1,1,130.0,1,26,30,0,5,128.6,1,0,1,1,0,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,Graduate +1,43,1,9500,1,1,140.0,100,1,1,6,6,128.2,0,0,0,1,0,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,140.0,1,19,37,5,7,140.0,1,0,0,1,1,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,Dropout +1,39,1,33,1,1,140.0,1,3,1,2,4,152.8,0,0,0,1,0,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,Enrolled +1,43,1,9070,1,1,117.0,1,1,1,4,7,112.5,1,0,0,1,1,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,126.0,1,37,19,7,7,125.7,0,0,0,1,0,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,Enrolled +1,1,2,9773,1,1,140.0,1,38,38,5,7,126.4,1,0,0,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,121.0,1,37,38,6,9,121.0,0,0,0,1,0,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,136.0,1,12,1,4,4,122.0,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,117.0,1,37,37,9,9,120.2,1,0,0,1,0,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,133.1,1,38,1,9,9,121.0,0,0,1,0,1,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,Dropout +1,44,1,9991,0,39,130.0,1,37,37,5,5,130.0,1,0,0,1,1,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,138.0,1,1,19,4,9,142.2,1,0,0,1,0,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,148.0,1,3,1,2,10,148.0,1,0,0,1,0,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,Graduate +1,17,6,9556,1,1,134.0,1,19,38,7,7,128.5,1,0,0,1,0,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,141.0,1,1,19,5,8,141.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,149.0,1,3,1,9,9,137.5,0,0,0,1,1,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,Graduate +1,1,3,9085,1,1,142.0,1,11,11,90,90,155.3,0,0,0,1,0,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,135.0,1,19,37,9,9,134.0,1,0,0,1,0,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,132.0,1,19,38,9,7,120.1,0,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9147,1,1,133.0,1,37,37,9,5,119.7,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,139.0,1,3,4,2,2,130.6,0,0,0,1,0,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,2,130.0,1,0,1,0,1,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,Dropout +1,17,3,9500,1,1,138.0,1,3,3,4,5,130.0,1,0,0,1,0,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,121.0,1,19,19,3,3,116.1,1,0,0,1,0,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,160.0,1,3,38,1,9,152.0,1,0,0,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,130.0,41,37,19,9,8,125.5,1,0,0,1,0,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,133.1,1,38,38,191,193,146.0,0,0,1,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,Graduate +4,39,1,9003,1,1,140.0,1,37,37,9,8,150.0,0,0,0,1,1,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,Enrolled +1,17,2,9670,1,1,132.0,1,1,19,5,3,124.0,1,0,0,1,1,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,117.0,1,19,19,5,7,118.4,0,0,0,1,1,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,140.0,6,1,19,4,7,131.6,1,0,0,1,0,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,142.0,1,38,1,8,10,138.5,1,0,0,1,1,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9130,1,1,132.0,1,3,1,4,9,121.9,1,0,0,1,0,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,122.0,1,1,1,9,9,116.1,1,0,0,1,1,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,Dropout +1,7,1,8014,0,3,130.0,1,37,38,0,5,130.0,0,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,138.0,1,19,19,9,5,124.8,1,0,0,1,0,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,140.0,1,19,38,3,9,140.0,1,0,0,1,1,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +4,39,1,8014,0,1,138.0,1,19,19,90,90,127.0,0,0,0,0,0,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9500,1,19,133.1,1,1,3,2,2,100.0,0,0,1,1,1,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,117.0,1,3,1,3,5,110.7,1,0,0,1,1,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,120.0,1,19,19,5,5,113.0,1,0,0,1,0,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,160.0,1,37,37,7,7,133.0,1,0,0,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,137.0,1,1,1,4,5,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,19,37,9,7,123.9,1,0,0,1,0,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,38,38,9,5,130.0,0,0,1,0,1,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,137.0,1,19,37,9,7,130.8,0,0,1,1,0,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,38,37,4,6,150.0,1,0,0,1,0,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,115.0,1,34,38,0,5,108.4,1,0,0,1,0,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,140.0,1,3,38,141,151,135.3,0,0,0,1,1,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,148.0,1,19,19,7,7,130.9,0,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,127.0,1,1,1,4,3,126.3,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,2,9670,1,1,100.0,1,37,37,9,9,100.0,0,0,0,1,0,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,2,171,1,1,141.0,1,19,37,9,9,136.1,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,123.0,1,30,19,4,90,122.3,0,0,0,1,0,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,145.0,1,1,38,5,7,127.5,1,0,0,1,1,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,1,150.0,1,37,37,90,10,112.0,0,0,0,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,128.0,1,37,1,9,7,124.2,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,Dropout +1,43,1,9070,1,39,130.0,1,19,37,5,9,124.0,1,0,0,1,0,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,Graduate +1,17,1,9003,1,1,170.0,1,1,4,9,5,144.1,1,0,1,0,1,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9670,1,1,110.0,1,19,19,90,99,107.2,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9238,1,19,133.1,1,37,37,9,9,130.0,1,0,0,1,0,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9119,1,1,144.0,1,34,34,0,0,119.5,0,0,0,1,1,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,19,133.1,1,37,37,6,6,162.0,0,0,1,1,1,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,16,1,9085,1,1,138.0,1,37,37,9,9,123.0,1,0,0,1,0,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9500,1,1,133.1,1,19,19,5,6,121.4,0,0,1,1,0,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,138.0,1,1,1,4,7,132.1,1,0,0,1,0,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,Graduate +1,39,1,9119,1,1,133.1,1,37,37,9,9,101.6,0,0,0,1,1,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9500,1,1,126.0,1,1,19,131,181,120.1,1,0,0,1,0,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,38,9,9,142.0,1,0,0,1,0,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,Graduate +1,18,1,8014,0,1,138.0,1,19,1,9,5,134.5,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,19,9,9,150.0,0,0,0,1,1,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,126.0,1,38,37,9,9,123.6,1,0,0,1,0,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9254,1,19,133.1,1,19,19,3,1,101.5,0,0,1,0,1,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,2,9119,1,1,115.0,1,38,19,9,6,112.2,1,0,1,1,1,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,39,1,9003,1,1,120.0,1,37,37,9,9,125.7,0,0,1,0,0,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,Dropout +1,17,2,9773,1,1,115.0,1,1,1,5,5,119.6,1,0,0,1,0,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,19,9,4,140.0,0,0,0,1,0,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,125.0,1,37,19,90,90,137.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,120.0,1,3,38,3,7,124.2,1,0,0,1,1,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9147,1,1,146.0,1,5,1,1,5,144.6,0,0,0,1,1,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,116.0,1,1,1,3,4,113.6,1,0,0,1,0,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,Graduate +4,42,1,9147,1,1,133.1,1,37,38,7,3,123.0,1,0,0,1,1,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,118.9,1,38,37,5,9,118.9,1,0,0,1,0,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,123.0,1,12,1,9,9,119.2,1,0,0,1,0,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,2,140.0,1,38,37,7,8,140.0,0,0,0,1,0,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,110.0,1,37,37,90,90,108.4,1,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9119,1,1,146.0,1,1,37,7,7,132.4,1,0,0,1,1,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,19,133.1,1,19,3,9,2,140.0,1,0,1,1,1,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,2,9853,1,1,111.0,1,38,38,191,171,105.8,1,0,0,1,0,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,6,130.2,0,0,0,1,0,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,130.0,1,1,3,9,10,118.1,1,0,0,1,1,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,118.0,1,1,19,5,4,118.0,0,0,0,1,0,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,153.0,1,38,38,7,7,159.7,1,0,0,1,0,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,171,1,12,110.0,1,37,37,7,7,106.0,1,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,134.0,1,19,1,9,4,124.9,1,0,0,1,0,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,3,9254,1,1,121.0,1,19,19,9,9,125.9,1,0,0,1,0,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,160.0,1,19,19,4,9,154.4,0,0,0,1,0,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,3,140.0,1,19,19,9,7,152.4,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9130,1,1,130.0,1,19,1,191,144,110.0,0,0,0,1,1,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,142.0,1,38,37,9,5,127.3,1,0,0,1,0,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,37,37,9,9,130.0,0,0,1,1,0,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,124.0,1,37,19,9,4,121.2,0,0,0,1,1,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,120.0,1,19,19,9,3,113.9,1,0,0,1,0,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,114.0,1,19,38,5,3,112.6,1,0,0,1,0,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,Graduate +1,7,1,9991,0,40,120.0,1,1,19,4,9,120.0,0,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,128.0,1,19,38,9,9,118.2,0,0,0,1,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,4,9070,1,1,126.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,130.0,1,1,1,0,0,119.5,0,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,184.4,22,2,19,2,8,184.4,0,0,0,1,0,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,37,9,9,132.8,0,0,1,0,1,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9085,1,1,120.0,1,38,19,90,90,127.0,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,Graduate +1,17,4,9147,1,1,132.0,1,38,19,5,5,120.8,1,0,0,1,1,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,Dropout +1,10,1,9670,1,1,148.9,22,37,37,9,9,148.9,0,0,0,1,0,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,4,150.0,1,1,1,4,6,150.0,0,0,0,1,1,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,150.0,1,19,1,9,3,110.0,1,0,0,1,1,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,Graduate +1,15,1,9670,1,1,130.0,26,42,1,2,7,130.0,0,1,1,1,0,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,Graduate +2,7,1,8014,0,3,120.0,1,38,1,9,9,120.0,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,149.0,1,19,37,9,9,158.1,1,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,4,9147,1,1,124.0,1,37,37,9,9,117.4,0,0,0,1,0,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,142.0,1,34,1,5,10,136.1,1,0,0,0,1,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,1,1,8014,0,1,165.0,1,37,37,0,0,162.9,1,0,0,1,1,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,130.0,1,37,37,5,7,123.4,1,0,0,1,1,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,1,133.1,1,37,37,7,7,143.0,0,0,0,1,1,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,121.0,1,38,37,8,8,115.4,1,0,0,1,0,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9556,1,3,140.0,1,3,3,2,2,140.0,0,0,1,0,1,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,116.0,1,38,19,0,2,116.7,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,132.0,1,38,1,5,5,124.3,0,1,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,133.1,1,38,12,7,0,111.5,0,0,0,0,0,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,Dropout +1,53,1,9147,1,42,140.0,1,1,1,6,6,142.2,0,0,0,1,1,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,Graduate +2,44,1,9991,0,39,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9773,1,1,170.0,1,1,19,9,7,155.0,0,0,0,1,1,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,8014,0,19,133.1,1,37,37,4,8,112.5,0,0,0,1,0,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,120.0,1,1,1,5,8,112.0,1,0,0,1,0,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,123.0,1,1,1,3,3,113.6,1,0,0,1,0,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,Graduate +1,39,1,9085,1,1,133.1,1,1,19,9,9,162.3,1,0,0,1,0,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,116.0,1,37,1,9,8,115.7,1,0,1,0,0,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,160.0,1,9,19,4,3,151.3,0,0,0,1,0,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,19,149.0,1,34,34,0,0,126.3,0,0,0,1,0,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9238,1,39,140.0,41,1,1,4,6,137.5,0,0,1,1,0,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,130.0,1,37,37,9,9,129.0,1,0,0,1,0,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,19,38,7,7,118.7,0,0,0,1,1,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,128.0,0,0,0,1,0,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,Graduate +1,17,1,9070,1,1,135.0,1,19,37,5,9,145.9,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,128.0,1,1,19,9,7,118.2,0,0,0,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,128.0,1,19,38,9,9,127.0,0,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,140.0,1,37,12,9,9,150.0,0,0,1,1,1,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,Dropout +2,43,1,8014,0,1,160.0,1,37,39,9,4,140.9,0,0,0,1,0,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,133.0,1,38,19,8,7,127.3,1,0,0,1,0,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,Graduate +1,15,1,9670,1,1,160.0,1,37,12,9,9,149.5,1,0,0,0,1,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,152.0,101,2,1,9,1,168.5,1,0,0,1,1,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,Graduate +1,1,3,9085,1,1,147.0,1,19,19,9,1,135.6,1,0,0,1,0,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,2,8014,0,1,120.0,1,37,34,0,0,117.6,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,141.0,1,37,37,9,9,130.2,0,0,0,1,1,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,Graduate +1,16,2,9147,1,1,139.0,1,38,37,9,9,123.7,1,0,0,1,0,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,134.0,1,19,38,4,8,129.5,0,0,0,1,0,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,113.0,1,1,37,9,10,117.2,1,0,0,1,0,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,18,2,9556,1,1,126.0,1,3,3,2,2,115.5,0,0,0,1,1,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,1,134.0,1,37,38,4,7,110.0,1,0,0,1,0,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,171,1,1,132.0,1,1,1,1,4,132.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9003,1,1,130.0,1,19,19,9,1,140.0,0,0,0,1,0,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9773,1,1,132.0,1,38,19,9,9,125.0,1,0,0,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,140.0,1,37,37,9,6,132.8,0,0,0,1,1,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,130.0,1,37,19,9,5,140.2,1,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9070,1,1,118.0,1,43,3,123,123,110.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,19,100.0,1,37,37,5,5,111.0,1,0,0,1,0,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,3,9085,1,1,138.0,1,1,3,4,4,126.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,132.0,1,2,19,4,4,125.0,1,0,0,1,0,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,38,100.0,1,37,37,9,7,154.0,1,0,0,1,1,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,138.0,1,1,19,4,4,131.7,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,Graduate +2,39,2,9147,1,1,140.0,1,37,37,9,8,108.0,0,0,0,1,0,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,Enrolled +1,1,5,9147,1,1,134.0,1,3,2,2,2,134.7,0,0,0,1,1,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9130,1,1,120.0,1,2,3,3,2,120.0,1,0,0,0,1,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,Dropout +1,1,3,9085,1,1,140.0,1,10,19,90,90,135.8,1,0,0,1,0,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,142.0,1,37,38,5,1,129.4,0,0,0,1,0,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9670,1,1,120.0,1,1,19,5,5,117.2,1,0,0,1,0,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,136.0,1,1,19,5,7,136.4,0,0,0,1,0,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,120.0,1,37,37,5,5,124.6,0,0,0,1,0,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,Enrolled +1,39,1,9500,1,1,133.1,1,1,37,9,9,100.0,0,0,0,1,1,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,123.0,1,19,1,9,3,117.8,1,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,Graduate +5,39,1,9254,1,1,133.1,1,2,2,2,2,103.0,0,0,0,1,0,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,171,1,1,133.0,1,1,37,4,7,126.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,119.0,1,1,1,4,4,115.0,1,0,0,1,1,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,143.0,1,38,19,151,193,134.3,1,1,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,135.0,1,1,19,4,4,129.1,0,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,43,2,9670,1,1,130.0,1,19,1,4,4,127.6,1,0,0,1,1,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,126.0,1,37,37,5,1,126.0,0,0,0,0,1,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,42,1,9119,1,1,120.0,1,19,37,9,9,113.8,0,0,0,0,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9991,0,1,140.0,1,37,37,9,9,135.8,1,0,0,1,1,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,17,5,9085,1,1,118.0,1,38,38,9,9,112.4,1,0,0,1,0,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,3,9773,1,1,134.0,1,2,1,3,3,129.5,1,0,0,1,1,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,129.0,1,1,38,4,7,123.4,0,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,132.0,1,19,37,4,9,128.0,1,0,0,1,0,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,137.0,1,38,37,7,5,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,Graduate +1,17,5,9119,1,1,138.0,1,19,19,5,5,123.3,1,0,1,1,1,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,138.0,1,1,1,3,4,132.5,1,0,0,1,0,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,Graduate +1,16,2,9070,1,1,133.0,1,1,3,4,2,122.5,1,0,0,1,0,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,Enrolled +1,17,1,9130,1,1,137.0,1,38,19,5,7,130.0,1,0,0,1,0,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,Enrolled +1,17,1,9238,1,1,131.0,1,37,37,9,7,121.9,0,0,0,1,0,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,Graduate +2,1,1,9500,1,1,142.0,1,19,38,4,5,130.3,0,0,0,1,0,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,Graduate +2,39,1,9556,1,1,160.0,1,37,37,9,6,120.0,0,0,0,1,0,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,Dropout +1,51,1,9670,1,1,126.0,1,3,3,1,10,111.0,0,0,1,1,1,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,5,9853,1,1,141.0,1,37,19,9,5,133.0,1,0,0,1,0,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,Dropout +1,1,2,9670,1,1,124.0,1,19,1,9,4,117.7,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,133.0,1,19,19,9,5,120.1,1,0,0,1,0,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,Graduate +1,43,1,9147,1,1,133.1,1,4,19,2,1,128.2,0,0,0,1,0,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,Dropout +4,27,1,9070,1,2,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9003,1,1,150.0,1,2,4,4,1,150.0,0,0,0,1,1,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,19,133.1,1,19,37,7,5,155.5,1,0,1,0,1,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,1,9238,1,1,106.0,1,1,1,3,3,105.0,0,0,0,1,1,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,111.0,1,19,38,3,3,111.4,1,0,0,0,0,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,Dropout +1,43,1,9254,1,1,130.0,1,1,19,5,7,130.0,0,0,0,1,0,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,Dropout +1,17,1,8014,0,1,120.0,1,38,37,6,6,113.0,0,0,0,1,0,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,139.0,1,1,37,4,9,131.3,1,0,0,1,0,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,Graduate +1,43,3,9254,1,1,110.0,1,37,37,9,9,107.2,1,0,0,1,1,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,147.0,1,1,1,4,4,134.3,1,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,130.0,1,37,38,9,6,130.0,1,0,0,1,0,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,139.0,1,37,38,9,9,124.0,1,0,0,1,1,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,122.0,1,37,37,9,9,126.9,1,0,0,1,0,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,11,11,90,4,114.0,1,0,0,1,1,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9147,1,1,132.0,1,39,39,3,3,127.8,1,0,0,0,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,128.0,1,38,37,5,6,122.1,0,0,0,1,0,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9085,1,1,127.0,1,19,38,194,193,117.6,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9500,1,1,145.0,1,3,3,2,3,141.8,0,0,0,1,0,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,Graduate +1,53,1,9556,1,42,140.0,1,1,19,4,5,140.0,0,0,0,1,0,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,Graduate +1,18,1,9147,1,1,160.0,1,19,19,5,8,137.6,1,0,0,1,0,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,19,133.1,1,2,1,3,10,120.0,0,0,1,1,1,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,19,133.1,1,19,39,5,3,121.7,0,0,1,0,0,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,126.0,0,0,0,1,1,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,Graduate +1,1,3,171,1,1,140.0,1,37,37,9,9,124.3,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,136.0,1,38,37,9,9,126.9,1,0,0,1,0,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,136.0,1,19,1,9,9,129.0,1,0,0,1,0,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,144.0,1,38,38,7,7,136.0,1,0,0,1,0,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,154.0,1,38,38,9,9,156.5,1,1,0,1,0,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,131.0,1,19,19,9,9,134.9,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +4,43,1,8014,0,1,140.0,1,38,37,9,9,126.0,0,0,0,1,0,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,7,126.3,1,0,0,1,0,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,Graduate +1,44,1,8014,0,39,150.0,1,1,37,9,7,146.7,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,2,9119,1,1,140.0,1,19,19,9,9,125.7,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,12,100.0,1,1,1,4,4,100.0,0,0,0,1,0,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,Graduate +1,42,1,9500,1,1,111.0,1,1,3,9,10,128.2,1,0,0,1,1,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,Graduate +1,17,2,9773,1,1,132.0,1,19,19,9,6,120.1,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,131.0,1,4,4,2,1,120.5,0,0,0,1,0,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,44,1,9003,1,39,170.0,1,19,19,5,5,170.0,1,0,0,1,1,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,150.0,1,38,38,7,7,137.8,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,10,120.0,0,0,1,0,1,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9670,1,39,110.0,1,37,1,9,4,110.0,0,0,0,1,0,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,130.0,1,5,3,2,2,130.0,0,0,0,1,1,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9670,1,1,133.1,1,34,3,7,2,130.6,1,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,38,9,10,140.0,0,0,0,1,1,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,133.1,1,19,38,9,9,119.6,1,0,0,1,0,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,118.0,1,19,19,3,3,110.0,1,0,0,1,0,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,137.0,1,1,1,5,5,129.3,1,0,0,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,127.0,1,19,38,5,9,129.5,1,0,0,1,0,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,126.0,1,38,19,9,6,119.4,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,116.5,0,0,0,1,0,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,125.0,1,19,19,4,7,128.5,1,0,0,1,0,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,Enrolled +1,43,1,9773,1,1,133.1,22,34,34,90,90,130.0,0,0,1,1,0,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,125.0,1,1,1,5,5,128.5,0,0,0,1,1,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9500,1,1,133.1,1,19,37,9,9,120.0,0,0,0,1,0,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,Graduate +2,39,2,9147,1,1,133.1,1,37,37,5,7,110.0,0,0,0,1,1,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,6,9500,1,1,141.0,1,1,19,1,1,126.7,1,0,0,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,146.0,1,40,43,4,4,150.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,148.0,1,1,1,4,9,129.8,0,0,0,1,0,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,Enrolled +1,17,1,9853,1,1,133.0,1,38,38,9,9,127.4,0,0,1,1,0,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,43,1,9147,1,1,120.0,1,37,37,5,3,113.4,0,0,0,1,1,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,148.0,1,19,3,4,2,136.5,0,0,0,1,0,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,178.0,1,2,1,2,3,157.7,0,0,0,1,1,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +2,7,1,9254,1,3,130.0,1,1,3,4,3,130.0,0,0,0,1,0,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,33,1,40,120.0,1,38,37,5,6,120.0,1,0,1,0,1,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,Dropout +2,1,1,9147,1,1,151.0,1,38,37,9,8,132.1,1,0,0,1,0,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Dropout +1,43,2,9556,1,1,120.0,1,1,19,4,3,110.2,0,0,0,1,0,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,Graduate +2,1,4,9500,1,1,140.0,1,1,37,4,9,128.0,0,0,0,1,0,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,6,120.0,1,35,35,6,6,128.2,1,0,0,1,1,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,120.0,1,37,37,9,6,120.0,1,0,0,1,0,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,8,7,150.0,0,0,0,1,1,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,145.0,1,19,37,4,7,148.9,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,34,34,0,0,104.0,1,0,0,1,0,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9085,1,1,110.0,1,3,19,4,6,105.0,0,0,1,0,1,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Dropout +1,17,2,9254,1,1,108.0,1,37,37,9,7,108.0,1,0,0,1,0,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,Graduate +4,43,1,9238,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,0,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,136.0,1,19,37,173,183,118.4,1,0,0,1,0,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,18,1,9556,1,1,140.0,1,38,37,9,9,122.8,0,0,0,1,0,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,Graduate +1,39,1,9119,1,1,150.0,1,3,3,4,4,150.0,1,0,0,1,1,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,141.0,1,1,1,4,10,138.9,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,Graduate +1,18,4,9773,1,1,130.0,1,19,19,4,4,121.3,1,0,0,1,0,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,1,130.0,1,37,37,9,6,160.0,0,0,0,1,1,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,149.0,1,37,37,9,9,136.0,0,0,0,1,0,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,151.0,1,37,1,4,10,138.4,0,0,0,1,0,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9254,1,1,130.0,1,37,37,9,9,126.5,0,0,0,1,1,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,143.0,1,19,37,7,7,127.0,1,0,0,1,0,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,Graduate +2,57,1,9991,0,1,133.1,41,38,37,4,6,100.0,0,0,0,1,0,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,138.0,1,37,37,9,9,135.9,1,0,0,1,0,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,43,1,8014,0,1,145.7,22,37,37,9,9,145.7,1,0,0,1,0,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,Graduate +4,39,1,9773,1,19,133.1,1,37,37,9,1,117.5,0,0,0,1,0,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9238,1,1,118.0,1,1,19,4,10,112.4,1,0,0,1,0,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,8014,0,1,133.1,1,37,37,9,7,162.5,0,0,0,1,1,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,1,3,9254,1,1,115.0,1,1,1,3,3,117.5,1,0,0,1,0,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,133.0,1,37,38,9,9,130.2,1,0,0,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,152.0,1,2,22,4,3,146.1,1,0,0,1,0,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +2,39,1,9085,1,12,133.1,1,1,39,5,3,140.0,1,0,1,0,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9003,1,1,140.0,1,38,1,9,4,138.3,0,0,0,1,1,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,130.0,1,38,37,9,6,133.9,0,0,0,1,1,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,140.0,1,37,37,9,9,142.5,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,120.0,1,38,1,9,3,118.3,1,0,0,1,0,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,117.0,1,1,19,4,7,113.5,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,141.0,1,19,1,7,3,128.8,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9147,1,1,125.0,1,3,38,2,10,118.7,1,0,0,1,0,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,116.0,1,37,1,5,3,124.8,1,0,0,1,1,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,120.0,1,36,37,0,0,126.7,1,0,0,1,1,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,4,9853,1,1,140.0,1,19,38,4,1,128.5,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,1,3,10,130.0,0,0,0,1,1,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,136.0,1,3,37,2,8,121.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,154.0,1,37,37,9,9,149.5,1,0,0,1,0,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,138.0,1,19,38,5,8,133.5,0,0,0,1,0,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,128.0,1,1,37,4,3,117.9,1,0,0,1,0,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,Graduate +1,43,1,9130,1,1,150.0,1,3,3,3,4,150.0,1,0,0,1,0,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,110.0,1,19,38,3,5,117.4,1,0,0,1,0,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,135.0,1,37,38,9,6,122.1,1,0,0,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9003,1,1,140.0,1,37,37,9,6,104.8,0,0,0,1,0,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,143.0,1,37,37,9,7,131.8,1,0,0,1,0,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,142.0,1,1,1,3,3,133.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,141.0,1,1,19,5,10,127.0,0,0,0,1,0,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,Graduate +3,1,2,9085,1,1,135.0,1,19,1,4,4,129.4,1,0,0,1,0,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,39,1,9254,1,1,133.1,1,19,19,4,7,123.0,0,0,1,0,0,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9500,1,1,131.0,1,19,37,9,7,129.8,1,0,0,1,0,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,Graduate +1,39,1,9670,1,9,133.1,1,6,22,3,3,120.0,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,131.0,1,37,37,3,3,131.7,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,137.0,1,19,19,5,5,134.6,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,131.0,1,1,1,4,10,129.3,0,0,0,1,0,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,140.0,1,1,37,141,192,129.7,0,0,0,1,0,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,140.0,1,37,37,9,9,124.6,0,0,0,1,0,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,138.0,1,37,37,5,9,125.1,1,1,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Dropout +1,2,1,9147,1,1,150.0,1,37,37,9,9,122.0,1,0,0,1,0,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,135.0,1,3,1,4,4,136.1,1,0,0,1,1,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,Enrolled +1,39,1,9991,0,1,150.0,1,1,19,4,8,123.0,0,0,0,1,1,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,141.0,1,19,37,5,8,130.2,0,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,106.0,1,37,37,9,9,108.0,1,0,1,1,0,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,19,133.1,1,37,38,9,7,100.5,1,0,0,1,1,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,Enrolled +1,43,1,9254,1,1,142.0,1,38,38,9,9,125.9,0,0,0,1,0,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,150.0,1,1,37,9,7,130.2,0,0,0,1,0,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,Graduate +4,39,1,9670,1,1,140.0,1,2,1,3,9,170.0,0,0,1,0,1,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9773,1,1,119.0,1,38,19,9,9,118.3,0,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,117.0,1,34,34,0,0,109.3,0,0,0,1,0,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,120.0,1,34,34,99,99,111.6,0,0,1,1,1,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,139.0,1,19,19,9,7,110.3,0,0,1,1,1,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,3,19,9,9,113.2,0,0,0,1,0,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,Enrolled +1,43,1,9991,0,1,120.0,1,38,38,9,7,141.0,0,0,0,1,1,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,151.0,1,3,1,2,4,151.0,1,0,0,1,0,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,130.0,1,37,37,9,6,110.0,1,0,0,1,0,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9853,1,1,130.0,1,2,39,2,5,124.6,0,0,0,1,1,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,138.0,1,1,1,4,3,141.5,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,120.0,1,37,37,9,5,100.0,0,0,0,1,0,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9991,0,39,150.0,1,37,37,6,6,150.0,0,0,0,1,0,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9085,1,19,133.1,1,38,38,4,7,128.2,0,0,0,1,0,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.0,41,19,19,9,9,119.7,1,0,1,1,0,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9085,1,1,128.0,1,1,19,4,90,124.2,0,0,0,0,0,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,120.0,1,1,1,9,9,129.1,1,0,0,1,1,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9773,1,1,125.0,1,19,19,9,7,129.6,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,137.0,1,40,19,2,9,130.7,1,0,0,1,0,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,Dropout +1,51,1,9147,1,1,116.0,1,3,3,2,2,115.2,0,0,1,1,1,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,5,9853,1,1,132.0,1,12,12,4,4,123.3,1,0,0,1,0,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,Dropout +1,7,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,1,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,135.0,1,19,38,9,5,136.8,1,0,0,1,0,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,137.0,1,1,1,4,7,134.6,1,0,0,1,1,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,4,171,1,1,133.1,1,38,38,9,9,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,133.1,1,19,37,7,8,120.0,0,0,1,0,0,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,140.0,1,1,19,9,7,127.0,1,0,0,1,0,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,Graduate +1,18,1,9500,1,1,124.0,1,38,37,9,7,119.3,1,0,0,1,0,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,3,19,2,4,150.0,1,0,0,1,0,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,19,133.1,1,3,19,90,90,123.5,0,0,0,1,0,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9853,1,1,133.1,1,37,37,5,5,116.5,0,0,0,1,0,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,Dropout +1,18,6,9500,1,1,144.0,1,1,1,3,6,130.8,1,0,0,1,0,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9670,1,1,151.0,1,19,19,1,1,100.0,0,0,1,1,0,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,125.0,1,1,19,4,6,115.2,0,1,0,1,0,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,37,38,4,9,110.0,0,0,1,0,0,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,133.1,1,19,19,5,5,108.5,1,0,0,1,0,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,130.0,1,37,11,90,90,122.6,0,0,0,1,0,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,113.0,1,19,37,9,9,118.6,1,0,0,1,0,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,140.0,6,2,3,5,2,124.3,1,0,0,1,0,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,Enrolled +1,1,4,9119,1,1,111.0,1,37,37,9,5,107.5,1,0,0,1,1,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,143.0,1,19,38,9,9,133.4,1,0,0,1,0,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,Graduate +1,17,1,9773,1,1,141.0,1,2,3,2,2,133.7,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,151.0,41,3,3,2,5,161.9,1,0,0,1,0,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,43,1,33,1,1,143.0,1,37,1,9,10,121.2,1,0,0,1,1,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,0,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,141.0,1,1,19,8,7,128.8,1,0,0,1,0,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Enrolled +1,1,1,9238,1,1,115.0,1,19,38,7,7,108.7,0,0,0,1,0,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,114.0,1,1,1,4,0,108.8,1,0,0,1,0,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,2,9853,1,1,112.0,1,37,37,191,182,106.1,1,0,1,1,0,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,2,9085,1,1,157.0,1,3,38,4,6,142.3,0,0,0,1,0,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,Graduate +2,44,1,8014,0,39,160.0,1,37,19,9,10,155.9,0,0,0,1,0,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,Graduate +1,1,4,171,1,1,137.0,1,1,38,4,8,141.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,144.0,1,1,37,9,9,126.5,1,0,0,1,0,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,145.0,1,1,1,4,10,131.4,0,0,0,1,0,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,115.0,1,1,1,9,4,109.1,1,0,1,0,0,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,170.0,1,37,37,0,0,150.8,1,0,0,1,0,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,5,3,9070,1,1,157.0,1,3,1,9,6,138.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,Graduate +1,43,2,9238,1,1,129.0,1,34,30,0,5,118.9,1,0,0,1,1,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,5,9853,1,1,141.0,1,3,19,2,7,130.9,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Graduate +4,39,1,9991,0,1,133.1,1,37,37,9,9,130.4,0,0,0,1,0,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,130.0,1,19,38,9,9,126.9,0,0,1,1,0,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,136.0,1,19,1,4,3,125.2,1,0,0,1,0,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,37,9,9,140.2,0,0,0,1,1,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,132.0,1,37,38,9,5,120.8,0,0,0,1,0,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,150.0,1,19,37,6,6,150.0,0,0,1,1,0,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,Graduate +2,42,1,9991,0,1,130.0,1,3,2,2,2,130.0,0,0,0,1,1,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,Enrolled +4,39,1,8014,0,1,133.1,1,38,37,5,7,144.5,0,0,0,1,0,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,2,9773,1,1,150.0,41,1,37,9,7,130.8,0,0,0,1,0,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,Graduate +2,1,1,8014,0,1,151.0,1,37,37,9,9,152.4,0,0,0,1,0,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,Graduate +6,39,1,9500,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,Dropout +2,43,1,9670,1,1,100.0,1,34,34,0,0,128.2,0,0,0,1,1,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,148.0,1,1,19,3,3,131.7,1,0,0,1,0,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,142.0,1,19,19,7,7,142.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,127.0,1,1,38,4,7,125.6,0,0,1,1,0,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,146.0,1,38,38,9,7,134.1,1,0,0,1,1,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,115.0,1,1,1,4,4,109.1,1,0,0,1,0,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,Enrolled +1,1,2,9773,1,1,148.0,1,1,19,9,9,141.7,0,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,116.0,1,37,37,0,5,114.3,1,0,0,1,0,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,139.0,1,38,19,5,7,130.6,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,Graduate +1,1,6,9147,1,1,128.0,1,37,37,9,9,116.5,0,0,0,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9130,1,3,150.0,1,3,1,90,90,150.0,1,0,0,1,0,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9670,1,1,122.0,1,1,19,4,4,116.1,0,0,0,1,1,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,Enrolled +1,39,1,9119,1,1,100.0,1,37,37,9,8,160.0,0,0,1,0,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9254,1,1,128.0,1,19,1,7,9,121.7,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,143.0,1,37,38,7,7,133.8,1,0,0,1,0,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,107.0,1,38,38,7,7,103.5,1,0,0,1,0,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,Graduate +1,39,2,9147,1,1,143.0,1,19,5,4,1,100.0,1,0,0,1,1,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,140.0,0,0,1,0,0,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,160.0,1,1,1,5,4,160.0,1,1,0,0,1,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,Dropout +2,39,1,9500,1,19,133.1,1,38,38,2,10,120.0,0,0,0,1,0,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,2,9853,1,1,122.0,1,19,19,4,5,112.6,1,0,0,1,0,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,3,9500,1,1,137.0,1,19,37,7,7,126.7,1,0,0,1,0,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,Graduate +1,7,1,9070,1,40,120.0,1,1,19,3,9,120.0,1,0,0,1,0,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,157.0,1,38,3,5,2,141.4,0,0,0,1,0,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,Graduate +2,1,2,8014,0,1,110.0,1,37,1,9,10,108.7,1,0,0,1,0,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,129.0,1,19,37,7,6,120.0,1,0,0,1,0,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,108.0,1,19,1,4,3,111.9,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9070,1,12,110.0,1,37,38,5,10,130.0,0,0,1,0,1,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,122.0,1,1,1,193,101,126.2,0,0,0,1,0,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,4,4,3,3,143.6,0,0,1,1,1,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,Enrolled +1,7,1,9119,1,3,130.0,1,34,34,90,90,130.0,0,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,8014,0,39,120.0,1,19,37,7,6,121.8,1,0,0,1,0,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,142.0,1,37,38,9,9,137.5,1,0,0,1,1,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,138.0,1,3,19,2,4,131.0,1,0,0,1,1,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,Dropout +1,17,2,9853,1,1,125.0,1,1,19,5,5,119.4,1,0,0,1,0,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,137.0,1,1,1,5,4,131.1,1,0,0,1,0,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,133.0,1,38,38,9,9,128.1,1,0,0,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Dropout +4,39,1,9991,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,0,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,17,1,9130,1,1,138.0,1,2,19,2,6,126.3,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,Enrolled +1,17,4,9500,1,1,135.0,1,1,1,4,4,127.0,1,0,0,1,0,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,140.0,1,4,3,3,3,127.8,0,0,0,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,5,1,9147,1,1,126.0,1,19,38,5,6,117.3,1,0,0,1,0,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,Enrolled +1,39,1,9670,1,1,133.1,1,1,19,4,9,140.0,0,0,0,1,1,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,126.0,1,38,38,9,8,118.8,1,0,0,1,0,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,Graduate +2,42,1,9147,1,1,133.1,1,37,37,9,9,115.8,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,126.0,1,1,37,7,9,132.7,0,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,133.0,1,19,19,5,7,123.6,0,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,4,9556,1,1,135.0,1,38,37,3,7,129.0,1,0,0,1,0,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,110.0,1,37,37,9,9,107.6,1,0,0,1,1,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Enrolled +1,17,4,9147,1,1,135.0,1,19,1,0,4,128.7,1,0,0,1,1,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +2,1,1,8014,0,1,150.0,1,1,37,4,7,139.9,1,0,0,1,0,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,116.0,1,1,38,4,3,114.6,1,0,0,1,0,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,121.0,1,19,37,1,3,131.5,0,0,0,1,0,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,100.0,1,19,1,1,90,114.0,1,0,1,0,0,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,146.0,1,19,37,5,8,135.8,1,0,0,1,0,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9119,1,39,140.0,1,1,19,4,5,140.0,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9670,1,1,136.0,1,19,19,5,5,122.0,0,0,1,0,0,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9003,1,1,133.1,1,19,19,4,4,107.5,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9070,1,1,164.0,1,38,38,9,7,165.8,1,0,0,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,154.0,1,38,38,9,9,133.4,1,0,0,1,0,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,127.0,1,19,37,7,7,121.5,1,0,0,1,1,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,Enrolled +1,43,6,9238,1,1,129.0,1,34,34,0,0,125.2,0,0,0,1,0,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,125.0,1,19,1,4,5,122.6,1,1,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,136.0,1,38,19,7,7,121.7,1,0,0,1,0,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,131.0,1,38,1,7,4,128.3,1,0,0,1,0,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,Graduate +1,1,4,171,1,1,132.0,1,1,19,4,5,138.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9254,1,1,115.0,1,12,1,9,3,108.7,1,0,0,1,0,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,131.0,1,1,37,3,7,120.2,0,0,0,1,0,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,134.0,1,1,1,4,9,124.2,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,142.0,1,19,1,9,1,132.6,0,0,0,1,0,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,2,1,3,6,150.0,1,0,0,1,1,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,130.0,1,19,38,9,7,113.5,0,0,0,1,0,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,135.0,1,2,1,2,8,126.6,0,0,0,1,0,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,12,133.1,1,37,37,5,7,119.3,1,0,0,1,1,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9130,1,1,110.0,1,3,19,2,9,105.5,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9130,1,1,134.0,41,1,19,5,5,125.6,1,0,0,1,0,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,151.0,2,1,1,5,9,146.5,0,0,0,1,0,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,133.0,1,1,3,3,3,135.8,1,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,7,1,9070,1,3,140.0,1,37,2,9,3,140.0,0,0,0,0,0,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,147.0,1,37,19,9,5,133.7,1,0,0,1,0,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,Enrolled +1,51,1,9500,1,1,127.0,1,19,1,5,9,150.0,0,0,0,1,0,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,143.0,1,1,37,5,9,126.6,0,0,1,0,0,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,9,160.0,0,0,1,1,0,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,Graduate +4,39,1,8014,0,19,133.1,1,34,34,0,0,100.0,0,0,0,1,0,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +4,43,1,9853,1,1,133.1,100,19,22,90,90,100.0,0,0,0,1,0,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,2,120.0,1,37,37,9,8,120.0,0,0,0,1,0,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9130,1,40,129.0,1,3,3,2,2,155.3,1,0,0,1,0,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,150.0,1,38,37,9,9,150.0,1,0,0,1,1,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,160.0,1,1,37,3,3,160.0,1,0,1,0,0,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,Dropout +2,39,1,9003,1,1,133.1,1,1,19,4,4,120.0,0,0,1,0,1,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,115.0,1,19,38,9,9,108.0,0,0,0,1,0,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,134.0,1,1,19,4,5,126.0,0,0,0,1,0,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,135.0,1,38,38,5,8,133.3,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,5,1,9670,1,1,135.0,1,1,12,4,4,140.3,1,0,0,1,0,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,122.0,1,19,1,4,8,135.8,0,0,0,1,0,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,19,19,3,9,112.6,1,0,0,1,0,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,4,9773,1,1,147.0,1,1,1,4,5,139.7,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,140.0,1,19,19,4,5,140.0,1,0,0,1,0,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,130.0,1,12,12,9,9,126.1,0,0,0,1,1,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,2,9147,1,1,130.0,1,34,37,9,9,118.5,1,0,0,1,1,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,138.0,1,4,1,2,1,133.0,1,0,0,1,0,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,138.0,1,37,37,194,171,131.0,1,0,0,1,0,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,19,5,8,147.3,0,0,0,1,0,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,6,9500,1,1,149.0,1,1,1,4,9,133.0,1,0,0,1,0,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,Graduate +1,16,6,9773,1,1,136.0,1,38,14,0,0,129.7,1,0,0,1,0,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,130.0,1,1,34,9,9,124.8,1,0,0,1,0,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,111.0,1,1,1,3,3,112.4,1,0,0,1,1,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,121.0,1,1,19,4,7,135.4,1,0,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,Graduate +1,1,1,9556,1,1,135.0,1,37,38,7,9,125.8,0,0,0,1,0,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,136.0,1,37,19,5,8,129.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,4,9670,1,1,110.0,1,1,37,7,7,111.1,1,0,0,0,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,128.0,1,38,38,5,5,118.6,1,0,0,1,0,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,Graduate +2,39,1,9500,1,19,133.1,1,37,38,9,10,120.9,1,0,0,1,0,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,Dropout +1,5,3,9085,1,1,143.0,1,37,37,0,90,159.1,0,0,1,1,0,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Dropout +4,39,1,9238,1,1,120.0,1,37,37,9,9,125.5,1,0,0,1,0,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,126.0,1,3,1,2,5,116.9,1,1,0,1,0,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,16,1,9556,1,1,137.0,1,37,37,9,7,122.7,1,0,0,1,0,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,136.0,1,1,1,9,9,123.8,1,0,0,1,0,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +4,39,1,9130,1,1,133.1,1,3,1,5,5,110.0,1,0,0,1,0,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,Dropout +1,17,4,9085,1,1,138.0,1,19,36,90,7,134.9,1,0,0,1,0,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,130.0,1,1,4,4,2,131.4,0,0,0,1,1,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,Graduate +2,42,1,9853,1,1,133.1,1,37,37,4,7,100.0,0,0,0,1,0,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,115.0,1,1,1,9,9,134.3,1,0,0,1,1,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,108.0,1,1,38,5,8,105.9,0,0,0,1,0,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9991,0,1,120.0,1,19,37,5,5,128.2,0,0,0,0,1,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +5,7,1,9130,1,3,160.0,1,19,38,9,6,160.0,0,0,0,0,0,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,121.0,1,3,19,2,9,115.4,1,0,0,1,1,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..92db5db9a6143e84d4ca37f25e2fb4c176360620 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/val.csv @@ -0,0 +1,443 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,17,1,9254,1,1,118.0,1,11,34,5,0,122.2,1,0,0,1,0,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,43,1,9238,1,1,120.0,1,1,38,4,3,118.3,0,0,0,1,0,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,108.0,1,3,1,3,4,109.1,1,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,9991,0,40,130.0,1,19,19,7,3,130.0,0,0,0,1,0,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,19,9,10,150.0,0,0,0,1,1,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9119,1,40,130.0,1,1,1,4,4,130.0,0,0,0,1,1,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,128.0,1,19,19,5,5,124.5,1,0,0,1,0,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,170.0,1,19,19,5,1,170.0,1,0,0,1,0,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,Enrolled +1,1,3,9500,1,1,113.0,1,3,1,134,135,107.8,1,0,0,1,0,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,Enrolled +1,1,2,9670,1,1,117.0,1,37,37,9,9,111.8,0,0,0,1,0,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,1,1,9,4,126.2,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,145.0,1,19,38,7,6,128.6,1,0,0,1,0,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9147,1,3,130.0,1,38,38,1,9,130.0,0,0,0,1,0,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,170.0,1,19,37,8,8,100.0,0,0,0,1,0,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9147,1,1,148.0,1,38,37,5,5,134.0,0,0,0,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,5,9085,1,1,118.0,1,1,38,4,7,122.2,1,0,0,1,0,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,133.1,1,38,38,191,192,118.0,0,0,1,1,0,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,Graduate +1,18,1,9853,1,1,132.0,1,37,37,9,5,126.1,0,0,0,1,0,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +6,39,1,8014,0,1,133.1,1,37,37,9,9,119.0,0,0,0,1,0,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,133.1,1,1,37,7,7,118.0,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,123.0,1,38,38,4,7,114.3,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9991,0,1,143.0,1,19,37,5,8,135.0,0,0,0,1,0,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,128.0,1,1,1,2,10,116.5,0,0,0,1,1,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,Dropout +2,39,1,9085,1,1,120.0,1,19,19,1,4,130.0,0,0,0,1,0,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,Dropout +2,39,1,171,1,19,100.0,1,37,37,9,9,139.0,0,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,3,9500,1,1,139.0,1,38,37,9,8,146.5,0,0,0,1,0,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,120.0,1,37,37,9,1,123.2,0,0,0,1,0,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,1,140.0,1,3,3,4,2,141.7,1,0,0,1,0,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,127.0,1,2,2,3,4,115.8,1,0,0,1,1,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,117.0,1,19,19,9,9,116.3,1,0,0,1,0,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,152.0,1,19,37,3,8,156.9,0,0,0,1,0,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,140.0,1,1,19,4,4,140.7,0,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,133.0,1,3,19,2,7,120.4,1,0,0,1,0,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,1,160.0,1,38,38,7,9,121.4,0,1,0,1,0,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,120.0,1,1,2,9,3,130.0,1,0,0,1,0,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,139.0,1,2,3,3,3,132.7,1,0,0,1,0,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,6,108.3,0,0,0,1,1,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,8014,0,1,107.0,1,19,11,0,0,103.5,1,0,0,1,0,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,113.0,1,38,38,191,175,110.2,1,0,1,1,0,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,1,19,1,5,100.0,1,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,39,140.0,1,38,19,9,5,110.0,0,0,0,1,0,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,Enrolled +1,18,2,9238,1,1,126.0,1,19,37,5,7,129.9,1,0,0,1,1,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,18,1,9254,1,1,137.0,1,19,19,4,5,126.9,0,0,0,1,1,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,121.0,1,37,37,9,9,122.4,0,0,0,1,0,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,51,1,9070,1,1,122.0,1,38,38,9,9,128.8,1,0,0,1,1,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,141.0,1,1,1,3,10,142.8,0,0,0,1,0,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,130.0,1,19,38,9,9,162.3,0,0,0,1,1,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,Dropout +1,18,1,9853,1,1,133.1,1,1,19,141,182,106.0,1,0,1,1,0,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,17,1,9147,1,1,120.0,1,19,19,3,3,113.4,0,0,0,1,0,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,147.0,1,37,19,7,7,134.4,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,1,120.0,1,1,3,144,123,120.0,0,0,0,1,1,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,17,4,9500,1,1,137.0,1,1,37,9,9,128.4,1,0,0,1,0,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,120.0,0,1,1,1,0,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9085,1,1,140.0,1,37,37,9,9,154.6,0,0,0,0,0,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,19,133.1,1,37,19,9,7,134.3,0,0,0,1,1,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,Dropout +1,39,1,9119,1,1,130.0,1,19,37,9,4,149.0,1,0,0,1,1,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,Enrolled +1,17,1,9254,1,1,115.0,1,1,19,3,3,109.4,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,126.0,1,37,3,5,2,116.9,0,0,0,1,1,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,128.0,1,1,1,2,2,130.8,1,0,0,1,0,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,127.0,1,19,19,4,6,120.7,0,0,1,0,0,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9238,1,1,110.0,1,14,14,90,90,112.5,1,0,0,1,0,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,19,5,5,130.8,1,0,0,1,0,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9130,1,1,150.0,1,1,1,4,10,110.0,0,0,1,1,1,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,5,9238,1,3,135.0,1,1,38,9,3,129.4,0,0,1,1,0,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,133.0,1,19,37,1,9,128.5,1,0,0,1,0,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,Graduate +1,39,2,9991,0,1,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9773,1,1,136.0,1,1,38,9,8,131.5,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,138.0,1,37,38,9,8,134.2,1,0,0,1,0,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,7,2,9500,1,3,140.0,1,37,38,9,9,138.0,0,0,0,1,1,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,Dropout +1,43,1,9003,1,1,120.0,1,1,1,4,10,134.4,0,0,0,1,1,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,140.0,1,19,19,9,9,124.3,1,0,0,1,0,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,Graduate +1,17,3,9254,1,1,127.0,1,12,38,5,7,116.9,1,0,1,1,0,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,1,9238,1,1,145.0,1,38,38,9,7,145.0,0,0,0,1,0,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,140.0,1,19,19,9,7,102.5,0,0,0,1,0,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,17,6,9500,1,1,131.0,1,1,19,7,7,126.5,1,0,0,1,0,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,34,34,0,0,123.3,1,0,0,1,0,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,120.0,1,37,3,9,3,168.2,0,0,0,1,1,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,5,9773,1,1,118.0,1,38,19,9,9,113.8,1,0,0,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,122.0,1,19,38,7,7,117.1,1,0,0,1,0,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,115.0,1,19,1,3,7,113.6,0,0,0,1,1,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,141.0,1,1,4,4,4,127.7,0,0,0,1,0,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,130.0,1,37,38,6,6,130.0,1,0,0,1,0,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,120.0,1,37,37,5,5,111.3,1,0,0,1,0,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,145.0,1,1,19,10,5,150.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,129.0,1,38,19,3,7,118.9,1,0,0,1,0,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,Enrolled +1,1,5,9085,1,1,121.0,1,38,37,9,8,114.0,1,0,0,0,0,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,17,1,9254,1,1,126.0,1,1,1,9,9,124.3,0,0,0,1,0,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,149.0,1,1,3,0,0,148.7,0,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9147,1,1,125.0,1,38,38,6,8,114.5,1,0,0,1,0,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,Graduate +1,16,3,9085,1,1,130.0,1,37,37,9,2,119.5,1,0,0,1,0,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,145.0,1,19,37,9,9,132.3,1,0,0,1,0,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,128.0,1,19,38,5,7,125.6,1,0,0,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9254,1,1,135.0,1,38,37,9,7,139.2,0,0,0,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,139.0,1,37,38,6,6,121.3,1,0,0,1,0,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9070,1,39,150.0,1,12,37,3,9,147.7,0,0,1,1,0,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,110.0,1,3,19,4,5,109.0,0,0,0,1,1,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,133.1,1,38,38,5,9,105.0,1,0,0,1,0,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,Graduate +2,51,1,9991,0,1,127.0,1,37,37,8,4,100.1,0,0,0,1,0,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,135.0,1,19,1,4,1,131.9,1,0,0,1,1,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +4,39,1,9556,1,1,160.0,1,19,3,9,2,130.0,0,0,0,1,0,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,Enrolled +1,17,5,9119,1,1,123.0,1,3,1,2,9,116.0,1,0,1,0,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9500,1,1,140.0,1,19,19,7,7,138.6,0,0,0,1,0,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,19,38,9,7,125.6,1,0,0,1,0,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,3,130.0,1,2,2,1,1,130.0,0,0,0,1,0,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,7,9,111.0,0,0,0,0,1,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,148.0,1,1,1,4,8,141.4,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9147,1,1,115.0,1,1,38,3,8,109.8,1,0,0,1,0,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +1,7,3,9130,1,3,130.0,1,19,37,90,5,130.0,0,0,1,0,0,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,5,9500,1,1,141.0,1,38,19,7,7,132.5,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,19,37,9,9,129.9,0,0,0,1,1,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,142.0,1,19,37,4,7,141.3,0,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,19,38,7,4,125.7,0,0,0,1,0,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,129.0,1,19,37,9,9,117.5,1,0,0,1,0,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,103.0,1,1,19,9,9,108.3,0,0,0,1,0,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9853,1,1,133.1,1,19,19,9,9,97.0,1,0,0,1,0,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9238,1,3,150.0,1,37,37,191,192,150.0,0,0,0,1,0,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9085,1,12,133.1,1,34,34,99,99,128.2,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9070,1,1,129.0,1,3,4,2,2,136.4,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Enrolled +1,39,2,9147,1,38,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,133.1,1,34,34,0,0,118.9,1,0,0,1,0,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,135.0,1,19,38,9,9,129.2,0,0,0,1,0,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,122.0,1,37,37,9,3,115.7,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,9853,1,1,120.0,1,1,19,4,7,111.3,0,0,0,1,0,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,141.0,1,38,19,9,10,125.6,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,4,9500,1,1,133.0,1,19,19,3,10,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,106.0,1,1,19,4,4,106.4,1,0,0,1,0,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,Enrolled +2,39,1,9147,1,1,133.1,1,37,37,9,9,140.0,0,0,0,0,0,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,51,1,9070,1,1,130.0,1,3,1,2,8,122.2,0,0,1,1,0,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,Graduate +1,17,6,9500,1,1,143.0,1,38,1,9,10,127.3,1,0,0,1,0,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,154.0,1,1,1,5,7,154.7,0,0,0,1,0,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,120.0,1,37,37,9,7,120.0,0,0,0,1,0,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,151.0,1,37,1,9,9,138.4,1,0,0,1,0,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Graduate +2,39,2,9003,1,19,133.1,1,38,19,4,1,110.0,0,0,0,0,1,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9119,1,1,129.0,1,12,1,4,10,124.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,120.0,1,37,37,4,9,117.1,1,0,0,1,0,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,133.1,1,3,1,4,9,105.0,1,0,0,1,1,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9147,1,1,120.0,1,38,38,9,8,118.3,0,0,0,1,1,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9147,1,1,147.0,1,19,1,9,7,139.3,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,140.0,1,19,19,5,5,131.3,0,0,0,1,1,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,133.0,1,38,19,9,8,128.8,1,0,0,1,1,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,Graduate +1,17,1,9254,1,1,127.0,1,1,1,4,8,126.7,1,0,0,0,1,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9147,1,1,131.0,1,1,19,4,5,120.2,1,0,0,1,0,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,143.0,1,38,38,5,5,133.9,0,0,0,1,0,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,Graduate +4,39,1,9147,1,1,140.0,1,37,37,9,9,142.8,0,0,0,1,0,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,138.0,1,19,1,5,5,128.0,1,0,0,1,0,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,Graduate +1,43,1,9500,1,1,150.0,1,37,37,9,9,130.8,1,0,0,1,0,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,160.0,1,19,38,9,9,152.0,0,0,0,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,42,1,9254,1,1,154.0,1,38,37,1,1,154.0,1,0,0,1,0,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,141.0,1,37,37,4,4,138.9,0,0,0,1,0,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,135.0,1,38,37,9,8,126.3,1,0,0,1,0,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,Graduate +1,17,2,9853,1,1,138.0,1,1,1,9,4,123.0,1,0,0,1,0,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +2,1,1,9085,1,1,139.0,1,19,19,192,144,127.1,0,0,0,1,1,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,Graduate +1,17,4,9070,1,1,116.0,1,38,37,9,9,109.0,0,0,0,1,0,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,38,38,6,3,140.0,0,0,0,1,0,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9254,1,1,120.0,1,19,19,4,4,125.5,0,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9991,0,1,120.0,1,37,37,9,8,122.5,1,0,0,1,0,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,136.0,1,1,37,4,5,130.8,0,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,116.0,1,38,19,8,10,110.8,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9853,1,1,146.0,1,19,38,9,3,145.3,1,0,0,1,0,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,150.0,1,37,37,9,7,150.0,0,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,124.0,1,1,19,5,4,124.4,0,0,0,1,0,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,37,38,9,9,148.5,0,0,0,1,1,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,9,9,127.0,1,0,0,1,1,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,Graduate +4,1,1,8014,0,1,133.1,1,39,19,4,10,143.0,1,0,0,1,0,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,133.1,1,1,19,3,5,115.0,0,0,0,0,1,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,Dropout +2,44,1,9003,1,39,160.0,1,37,38,9,4,160.0,0,0,0,1,0,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,Graduate +1,16,3,9070,1,1,152.0,1,1,38,4,8,156.9,1,0,0,1,0,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,9,9,126.3,0,0,0,1,0,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9773,1,1,131.0,1,1,38,9,5,132.4,1,0,1,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9556,1,1,140.0,1,37,37,9,8,105.0,1,0,0,1,0,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9070,1,1,128.0,1,19,19,3,3,129.8,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,7,9,125.5,1,0,0,1,0,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,140.0,1,38,37,7,7,143.0,0,0,0,1,0,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,139.0,1,19,38,4,9,146.7,1,0,0,1,0,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,129.0,1,1,37,9,9,118.2,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,142.0,1,34,34,99,99,131.9,0,0,0,1,0,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,139.0,1,1,19,9,3,130.3,1,0,0,1,0,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,38,5,5,152.4,0,0,0,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,19,19,4,6,147.6,1,0,0,1,0,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,Graduate +1,51,1,8014,0,2,110.0,1,19,38,9,10,110.0,0,0,0,1,1,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,Graduate +1,17,3,9119,1,1,135.0,1,1,19,141,193,121.7,1,0,0,1,1,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,1,4,9773,1,1,122.0,1,19,19,9,7,121.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9003,1,3,120.0,1,1,19,4,1,120.0,1,0,0,1,1,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,140.0,1,19,37,4,8,133.3,1,0,0,1,0,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,121.0,1,1,1,5,4,111.9,1,0,0,0,1,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,3,130.0,1,1,38,90,90,143.4,0,0,0,1,1,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,1,120.0,1,37,37,6,9,121.0,0,0,0,1,0,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,154.0,1,38,37,4,4,141.4,0,0,0,1,0,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,40,130.0,1,19,1,5,10,130.0,1,0,1,0,0,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,133.1,1,1,1,4,4,120.0,0,0,1,0,1,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,120.0,1,37,1,9,5,113.4,1,0,0,1,0,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,139.0,1,38,37,7,7,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,135.0,1,38,19,194,193,135.4,1,0,0,1,1,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,150.0,1,3,2,2,2,150.0,0,0,0,1,1,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +2,43,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,1,1,7,4,136.0,1,0,0,1,1,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,3,130.0,1,3,3,1,2,150.0,0,0,0,1,0,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,123.0,1,1,38,4,7,115.3,1,0,0,1,0,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,101.0,1,38,38,9,9,104.5,1,0,0,1,0,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,140.0,1,1,19,9,9,128.8,0,0,0,1,1,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,Graduate +1,39,2,9119,1,1,120.0,1,37,37,5,5,128.0,0,0,0,1,1,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,15,133.1,1,34,34,0,0,100.0,1,0,0,0,0,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,133.1,1,6,11,4,5,138.4,0,0,0,1,1,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,142.0,1,37,37,6,7,136.1,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,132.0,1,37,37,9,9,123.6,1,0,0,1,0,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,9,9,126.9,1,0,0,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,15,1,9238,1,1,150.0,26,3,37,2,8,132.5,1,0,0,0,0,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,142.0,1,12,12,9,4,132.6,1,0,0,1,0,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,4,9254,1,1,106.0,1,37,19,9,7,116.9,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,160.0,1,1,19,5,7,155.5,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,42,1,9500,1,1,157.0,1,3,3,3,3,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,131.0,1,3,19,1,4,118.8,0,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,Graduate +1,43,2,9773,1,1,120.0,1,34,34,0,0,103.6,1,0,0,1,0,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,125.0,1,34,37,9,9,129.2,1,0,1,0,0,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,4,9085,1,1,145.0,1,37,1,9,9,145.0,1,0,0,1,0,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,136.0,1,1,1,9,3,122.7,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,1,4,9147,1,1,120.0,1,19,38,5,5,122.8,1,0,0,1,1,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,2,9085,1,1,140.0,1,37,38,9,7,137.0,0,0,0,1,0,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,120.0,1,4,1,4,10,112.0,1,0,0,1,0,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,37,38,7,7,110.0,0,0,0,1,1,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,138.0,1,38,19,9,5,144.3,0,0,0,1,0,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,12,133.1,1,37,37,9,9,120.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9147,1,1,140.0,1,19,19,9,7,120.4,0,0,1,0,0,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,145.0,1,37,1,9,4,138.8,1,0,0,1,0,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,19,38,5,0,133.7,1,0,0,1,0,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9130,1,39,150.0,1,5,1,2,5,150.0,1,0,0,1,1,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,Enrolled +1,43,1,9991,0,1,140.0,1,37,38,9,8,135.5,0,0,1,0,0,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,Dropout +1,1,1,9254,1,1,123.0,1,38,19,9,4,117.8,0,0,0,1,1,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9500,1,1,125.0,1,1,12,3,6,115.2,1,0,0,1,0,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,Graduate +1,17,2,9254,1,1,129.0,1,12,37,9,9,122.0,1,0,0,1,0,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,2,9070,1,1,143.0,1,1,1,4,10,146.2,1,0,0,1,1,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,117.0,1,38,38,4,9,120.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,3,130.0,1,3,1,1,10,160.0,0,0,0,1,0,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,Dropout +1,17,1,9556,1,1,133.0,1,38,37,9,9,124.4,1,0,0,1,0,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,Graduate +1,1,1,9003,1,1,124.0,1,38,19,9,7,116.0,0,0,0,1,1,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,164.0,1,19,1,9,9,161.2,0,0,0,1,1,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,1,130.0,1,37,37,9,9,119.5,1,0,0,1,0,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,1,19,1,5,130.0,0,0,1,1,0,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,142.0,1,19,19,7,3,132.9,0,0,0,1,1,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,126.0,1,19,19,3,7,123.9,0,0,0,1,0,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9254,1,1,132.0,1,1,38,5,6,122.6,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,1,6,9238,1,1,125.0,1,38,1,7,4,118.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,1,140.0,1,3,3,2,2,110.0,0,0,0,1,1,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,138.0,1,1,40,4,3,149.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,43,1,171,1,1,144.0,1,19,19,9,4,121.6,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9773,1,1,129.0,1,37,37,9,7,117.1,1,0,0,1,0,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,Enrolled +1,1,6,9853,1,1,114.0,1,19,19,9,9,110.2,1,0,0,1,1,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Dropout +2,42,1,9147,1,1,100.0,1,37,37,9,9,100.0,1,0,0,1,0,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,135.0,1,38,19,9,5,126.3,0,0,0,1,1,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,156.0,1,3,3,2,2,147.7,1,0,0,1,0,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,Graduate +1,1,1,9147,1,1,139.0,1,38,1,5,5,127.1,1,0,0,1,1,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,127.0,1,1,37,4,9,128.1,0,0,0,1,1,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,5,9070,1,1,124.0,1,37,37,9,9,113.9,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,129.0,1,38,37,9,5,120.0,1,0,0,1,0,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,118.0,1,19,19,9,9,122.2,0,0,0,1,0,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,Graduate +2,39,1,9556,1,19,133.1,1,38,37,7,7,99.5,1,0,1,0,0,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,130.0,1,38,38,7,7,136.3,1,0,0,1,1,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,1,9853,1,1,112.0,1,2,19,3,9,106.1,1,0,0,1,0,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,43,1,9119,1,1,146.0,1,3,1,2,3,100.0,0,0,0,1,1,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,132.0,1,1,12,4,5,124.3,0,0,0,1,0,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,8014,0,1,136.0,1,37,37,5,8,132.5,0,0,1,1,0,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,37,37,90,90,130.0,1,0,0,1,1,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,135.0,1,1,1,4,4,122.8,0,0,0,1,0,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,Graduate +2,39,1,9254,1,1,130.0,1,37,37,9,9,125.0,0,0,0,1,0,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,133.1,1,19,19,9,8,132.0,1,0,0,1,0,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,Dropout +2,39,1,9070,1,1,160.0,1,3,1,2,5,126.5,0,0,0,1,0,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,15,1,9556,1,1,137.0,26,19,1,9,4,137.0,0,0,1,1,0,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9773,1,1,133.1,1,3,5,0,2,125.8,1,0,0,0,1,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,16,4,9238,1,1,135.0,1,37,37,9,9,121.0,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,2,9556,1,1,130.0,1,37,19,9,8,110.0,0,0,0,1,1,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,Enrolled +1,1,1,9853,1,1,123.0,1,1,38,9,6,121.6,1,0,0,1,0,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9119,1,1,126.0,1,38,19,5,5,130.2,0,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,5,9500,1,1,122.0,1,37,3,9,2,116.8,1,0,0,1,0,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,132.0,1,38,38,9,9,119.3,1,0,0,1,0,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,116.0,1,38,1,5,1,111.1,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9500,1,1,113.0,1,38,19,9,7,106.7,1,0,0,1,0,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,Enrolled +1,39,1,9670,1,1,120.0,1,34,34,0,0,106.0,1,0,0,0,1,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,145.0,1,19,37,5,9,130.5,1,0,0,1,0,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,Graduate +2,39,1,9238,1,19,133.1,1,37,37,4,4,98.5,0,0,0,1,0,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,152.0,1,41,19,3,5,137.8,0,0,0,1,0,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,Graduate +1,43,2,8014,0,3,130.0,1,34,34,0,0,130.0,0,0,0,1,1,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,152.0,1,38,37,9,9,139.1,0,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,18,1,9003,1,1,133.1,1,1,38,9,6,101.0,0,0,0,1,1,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,19,1,9,8,105.0,0,0,0,1,0,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,162.0,1,19,1,5,5,147.5,1,0,0,1,0,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,19,1,4,1,101.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9119,1,1,116.0,1,19,1,9,7,112.2,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,133.0,1,38,37,9,7,120.1,1,0,0,1,0,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,110.0,1,37,37,5,6,108.3,0,0,0,0,0,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,Dropout +1,17,2,9773,1,1,121.0,1,1,1,5,5,123.1,1,0,0,1,1,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,17,1,9556,1,1,133.0,1,1,38,4,9,119.0,0,0,0,1,0,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,Enrolled +1,17,1,9147,1,1,139.0,1,1,38,4,5,152.0,0,0,0,1,0,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,160.0,1,12,38,4,8,160.0,1,0,0,1,1,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,133.1,1,19,19,7,7,117.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,128.0,1,3,1,3,3,121.0,1,1,1,1,1,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,116.0,1,1,19,4,7,127.6,1,0,0,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,Dropout +1,18,3,9119,1,1,111.0,1,1,19,9,8,111.0,1,0,0,1,1,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,146.0,1,1,1,9,7,126.0,0,0,0,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,Enrolled +1,53,1,9085,1,42,140.0,1,1,1,5,5,143.3,1,0,0,0,0,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,Enrolled +1,1,1,9070,1,1,144.0,1,1,1,3,5,127.2,1,0,0,1,0,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,141.0,1,38,1,5,7,132.6,0,0,0,1,0,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,18,1,9085,1,1,153.0,1,37,37,9,9,138.0,1,0,0,1,0,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,137.0,1,1,3,5,2,133.9,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,150.0,1,19,38,9,5,143.0,0,0,0,1,0,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,1,9,6,126.1,1,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9070,1,1,133.0,1,4,1,4,4,132.0,1,1,0,1,0,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,140.0,1,1,19,9,9,140.0,1,0,0,1,0,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,133.1,1,3,1,2,4,128.2,1,0,0,1,0,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,1,133.1,1,37,36,90,7,128.2,0,0,0,1,1,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,114.0,1,19,38,9,7,135.9,0,0,0,1,1,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,Graduate +2,51,1,9500,1,1,130.0,1,37,37,5,5,120.0,0,0,0,1,1,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,Dropout +1,43,1,9670,1,39,110.0,1,19,3,7,10,110.0,0,0,0,1,0,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,43,1,9500,1,1,148.0,1,29,38,90,3,131.0,1,0,0,1,0,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,Graduate +1,18,1,9254,1,1,118.0,1,38,38,5,5,123.3,1,0,0,1,1,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9003,1,3,130.0,1,1,38,9,7,130.0,1,0,0,0,1,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,3,38,2,7,121.7,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9991,0,1,133.1,1,38,38,5,5,145.0,0,0,0,1,0,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,136.0,1,1,12,9,10,121.7,1,0,0,1,0,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,160.0,1,19,1,4,10,153.0,1,0,0,1,0,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,Graduate +2,53,1,9147,1,42,130.0,1,19,19,175,152,132.4,0,0,0,1,0,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9119,1,40,120.0,1,1,1,5,10,146.8,0,0,0,1,1,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,150.0,1,19,11,0,0,131.1,1,0,0,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,122.0,1,1,19,4,3,130.4,1,0,0,1,0,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,5,9119,1,1,132.0,1,38,19,5,3,119.1,0,0,0,1,0,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,137.0,1,1,3,4,3,124.6,0,0,0,1,0,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,126.0,1,1,38,4,7,124.3,1,0,0,1,0,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,Graduate +1,43,1,9238,1,39,120.0,1,2,1,1,2,118.6,0,0,0,1,1,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,34,34,0,0,119.1,1,0,0,1,0,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,127.0,1,1,1,4,4,120.4,1,0,0,1,0,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,135.0,1,1,38,5,5,122.4,0,0,1,1,0,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,Graduate +1,18,2,9773,1,1,109.0,1,1,1,4,4,109.0,1,0,0,0,0,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9500,1,1,132.0,1,19,3,9,5,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,Enrolled +1,43,1,33,1,19,133.1,1,38,38,4,4,140.0,0,0,1,1,1,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,Dropout +1,17,1,9773,1,1,120.0,1,37,37,5,5,125.3,0,0,0,1,0,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,1,19,5,10,141.1,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,145.0,1,19,38,4,4,132.1,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9254,1,1,122.0,1,19,19,5,5,118.2,0,0,0,1,0,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,Enrolled +1,17,1,8014,0,1,119.0,1,34,34,0,0,112.4,1,0,0,1,0,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,5,9500,1,1,125.0,1,1,1,3,8,115.6,1,0,0,1,0,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,Enrolled +2,39,1,9991,0,1,150.0,1,1,4,4,2,146.0,0,0,0,1,1,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,132.0,1,4,2,123,112,143.6,1,0,0,1,1,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9085,1,1,144.0,1,1,19,4,10,132.1,1,0,0,1,0,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,19,19,1,1,125.5,1,0,0,1,0,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,130.0,1,19,19,9,6,135.0,0,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,1,140.0,1,19,19,90,90,120.0,0,0,1,0,1,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,143.0,1,1,37,3,8,128.0,0,0,0,1,0,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,Graduate +1,1,3,9070,1,1,146.0,1,34,34,0,0,143.6,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9130,1,1,130.0,1,1,19,6,6,154.0,1,0,0,1,1,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,10,170.0,0,0,0,1,0,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,Enrolled +6,39,1,9991,0,12,130.0,1,37,37,90,90,119.0,1,0,0,0,1,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,53,1,9003,1,42,130.0,1,1,1,144,144,125.8,0,0,1,1,0,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,145.0,1,40,1,2,4,160.1,0,0,0,1,0,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9070,1,1,140.0,1,1,1,9,8,144.3,1,0,0,1,0,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,150.0,1,1,38,6,6,150.0,1,0,0,1,1,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,148.0,1,37,37,9,9,143.5,0,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,123.0,1,19,19,9,8,125.5,0,0,0,0,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,130.0,1,34,1,0,2,128.2,0,0,0,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,1,130.0,1,1,1,3,7,140.0,0,0,0,1,1,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,17,4,9556,1,1,112.0,1,1,1,4,10,107.1,1,0,0,1,0,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,101.0,1,1,1,3,4,102.4,0,0,0,1,0,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,133.0,1,37,37,9,7,121.8,0,0,0,1,1,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9500,1,1,133.1,1,3,1,5,5,148.8,0,0,0,1,0,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,157.0,1,19,38,5,3,149.3,0,0,0,1,0,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,163.0,1,3,4,2,5,175.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,148.0,1,1,3,4,1,163.4,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,Graduate +1,53,1,9085,1,42,130.0,1,38,38,9,9,128.8,0,0,0,1,0,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,Dropout +1,39,1,8014,0,1,120.0,1,1,1,4,4,150.5,0,0,0,1,0,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Graduate +1,51,1,9147,1,1,130.0,1,1,1,4,4,120.0,0,0,0,1,0,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,Enrolled +4,39,2,9556,1,19,133.1,1,19,19,4,6,123.0,0,0,0,1,0,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,Graduate +4,39,1,8014,0,19,140.0,1,37,37,9,3,131.0,0,0,0,1,0,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,131.0,1,19,38,9,9,129.7,1,0,0,1,0,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,Graduate +1,7,1,9238,1,40,130.0,1,37,37,5,5,130.0,0,0,0,1,1,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,Graduate +1,1,1,9130,1,1,133.0,1,3,1,2,4,126.0,0,0,0,1,1,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,100.0,1,1,1,4,4,120.0,0,0,0,1,1,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,138.7,1,1,12,4,3,111.3,0,0,0,1,1,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,135.0,1,38,38,5,7,121.0,0,0,0,1,0,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,1,19,5,9,111.1,0,0,0,1,1,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,43,1,9130,1,1,100.0,41,3,4,3,2,100.0,0,0,0,1,0,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9147,1,3,130.0,1,37,19,9,8,130.0,0,0,0,1,0,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,Graduate +1,1,4,9085,1,1,138.0,1,3,1,1,4,123.3,1,0,0,1,0,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,Graduate +1,17,1,9003,1,1,131.0,1,19,1,9,2,134.5,1,0,0,1,0,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,139.0,1,38,1,9,5,131.8,1,0,0,1,0,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,133.1,1,37,37,6,6,136.2,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,123.9,1,37,1,9,7,123.9,0,0,0,1,1,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,Dropout +1,1,1,9147,1,1,143.0,1,3,1,5,5,152.1,1,0,1,1,1,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,Dropout +1,1,6,9500,1,1,142.0,1,1,37,7,7,123.5,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,124.0,1,2,1,4,10,117.4,1,0,0,1,0,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,5,9119,1,1,130.0,1,19,1,4,5,118.1,1,0,1,0,1,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,Dropout +1,17,4,9147,1,1,121.0,1,38,37,6,7,113.0,1,0,0,1,0,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,150.0,1,19,19,4,10,100.0,0,0,0,1,0,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,151.0,1,37,37,9,9,138.0,1,0,0,1,0,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,138.0,1,38,38,9,9,126.8,0,0,0,1,1,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,Graduate +6,17,3,8014,0,1,115.0,1,19,1,5,90,115.0,0,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,127.0,1,1,19,3,3,120.2,1,0,0,1,0,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,Graduate +1,51,1,9991,0,1,134.0,1,1,1,5,3,120.6,1,0,0,1,1,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,121.0,1,19,1,7,9,117.9,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,131.0,1,1,38,4,8,121.9,1,0,0,1,0,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,19,133.1,1,38,38,7,8,170.0,0,0,0,1,1,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,100.0,1,37,37,9,5,170.0,0,0,0,1,1,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,95.0,1,37,37,5,8,95.0,0,0,0,0,1,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,148.0,1,37,37,9,9,134.7,0,0,0,1,0,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,Enrolled +1,1,2,9238,1,1,121.0,1,19,19,191,171,119.3,1,0,1,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9119,1,1,136.0,1,1,2,5,4,122.7,1,0,0,1,1,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,Dropout +1,17,4,9254,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,1,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,4,9,100.0,0,0,0,0,0,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9254,1,1,160.0,1,1,3,3,3,142.5,1,0,0,0,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,138.0,1,1,19,7,8,129.3,1,0,0,1,0,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,90,90,100.0,0,0,0,1,1,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,148.0,1,1,37,9,7,143.3,0,0,0,1,0,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,19,38,4,10,130.0,1,0,0,1,0,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,19,37,9,7,110.0,1,0,0,1,1,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9254,1,1,131.0,1,4,3,7,4,126.1,1,0,0,1,0,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,Graduate +1,43,2,9500,1,1,136.0,1,38,38,9,5,131.3,0,0,0,1,0,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,119.0,1,1,1,4,10,125.0,0,0,0,1,1,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,Enrolled +1,17,2,9238,1,1,132.0,1,38,1,7,7,133.1,1,0,0,1,0,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,126.0,1,12,1,5,10,120.2,0,0,0,1,0,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,Enrolled +1,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,161.0,22,37,37,9,9,137.9,0,0,1,0,0,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,Graduate +1,17,2,9147,1,1,133.0,1,19,1,9,3,120.1,1,0,0,1,0,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9085,1,1,127.0,1,3,3,2,8,138.8,1,0,0,1,0,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,121.0,1,1,1,1,1,115.1,1,0,0,1,0,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9130,1,1,130.0,1,3,19,2,9,115.9,0,0,0,1,0,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +2,7,1,9991,0,3,140.0,1,34,34,99,99,140.0,1,0,0,0,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,113.2,0,0,0,1,0,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9500,1,1,137.0,1,1,1,9,9,127.9,1,0,0,1,0,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,Dropout +1,1,5,9500,1,1,130.0,1,19,37,9,7,127.6,1,0,0,1,0,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,133.1,1,1,38,3,7,121.7,0,0,0,1,0,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,130.0,1,3,1,4,1,130.0,1,0,0,0,0,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,107.0,1,2,12,3,10,104.2,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,9,113.5,0,0,0,1,0,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,145.0,1,19,37,4,8,136.8,1,0,0,1,0,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,120.0,1,19,38,5,6,112.3,0,0,0,1,0,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,133.1,1,34,34,0,0,125.3,0,0,0,1,1,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,Dropout +1,1,6,9853,1,1,136.0,1,1,19,5,5,122.0,0,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,121.0,1,4,1,2,3,120.7,1,0,0,1,0,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,1,1,9147,1,1,133.1,1,34,34,0,0,131.8,0,0,0,1,0,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,4,100.0,0,0,0,1,0,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,127.0,1,19,38,3,3,121.1,1,0,0,1,1,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/tabsyn/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5e6306bcc6a34ffae94f5674b04047f5a899d034 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/tabsyn/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/tabsyn/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f2eb4c7532175fec23c3e97d4a29c14590d3521f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "tabsyn", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/synthetic/benchmark_ds/real.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/synthetic/benchmark_ds/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..0a6042a3e210bfe563db68aaf16ce01ce4c1e401 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/synthetic/benchmark_ds/real.csv @@ -0,0 +1,3982 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,0,1,127.0,1,1,1,9,6,110.0,0,0,0,0,0,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,0 +1,17,2,9773,0,1,122.0,1,38,37,5,3,119.6,1,0,1,1,1,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,1 +1,1,6,9147,0,1,121.0,1,3,19,4,5,116.8,0,0,1,1,0,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,158.0,1,38,37,5,5,140.2,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,19,19,9,7,131.7,1,0,1,1,1,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,1 +1,1,3,9085,0,1,133.0,1,1,38,9,90,128.2,0,0,1,1,1,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,122.0,1,1,19,9,9,120.3,1,0,1,1,0,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,0 +1,43,1,9119,0,1,130.0,1,1,1,9,2,128.0,0,0,0,0,0,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,2 +1,17,3,9254,0,1,122.0,1,1,1,4,4,126.6,0,0,1,0,1,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,1,100.0,1,37,37,9,9,133.0,0,0,1,1,0,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,0 +1,44,1,9119,0,39,130.0,1,19,3,3,4,130.0,0,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9085,0,39,140.0,1,1,1,4,7,140.0,1,0,0,1,1,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,0 +1,17,2,9070,0,1,130.0,1,37,37,9,9,123.7,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +4,1,1,9991,1,1,130.0,1,37,37,9,9,118.1,0,0,0,0,1,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9500,0,1,190.0,108,3,2,122,4,190.0,1,0,1,1,1,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,102.0,1,1,19,9,5,100.6,1,0,1,1,1,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,1 +1,7,1,9500,0,3,120.0,1,19,3,4,2,120.0,1,0,1,1,1,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,130.0,1,38,19,9,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,111.0,1,3,4,4,3,108.2,1,0,1,1,1,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,39,1,9119,0,1,160.0,1,1,38,4,7,112.0,0,0,1,0,0,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,149.0,1,19,1,4,4,134.8,0,0,1,1,1,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,135.0,1,19,38,3,9,136.1,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,2,9500,0,1,120.0,1,37,34,90,0,121.5,0,0,0,1,1,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,1 +1,1,3,171,0,1,147.0,1,12,19,9,3,151.6,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,128.0,1,37,37,9,9,123.5,1,0,1,1,0,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,1,2,9070,0,1,129.0,1,1,1,4,9,132.9,1,0,1,1,0,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,2 +1,17,2,9500,0,1,138.0,1,1,38,5,8,132.8,1,0,1,1,1,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,134.0,1,19,37,9,9,131.6,1,1,1,1,1,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,130.0,1,37,37,9,9,122.0,1,0,1,1,1,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,37,37,9,10,130.0,0,0,0,0,1,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,2,9085,0,1,130.0,1,37,19,9,8,129.0,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,2 +1,17,5,9119,0,1,126.0,1,38,38,5,9,116.9,1,0,0,1,0,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,37,38,5,6,140.0,1,0,1,1,1,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,2 +1,18,4,9853,0,1,123.0,1,19,38,4,10,123.7,1,0,1,1,1,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,118.0,1,4,3,2,3,110.7,1,0,1,1,1,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,1 +1,39,1,8014,1,2,130.0,1,37,37,5,7,147.5,0,0,1,1,1,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,146.0,1,4,1,2,3,140.0,1,0,1,1,1,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,1 +1,44,1,9003,0,39,160.0,1,37,38,9,7,160.0,0,0,1,1,1,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,7,0,9003,0,3,130.0,1,1,37,4,9,130.0,1,0,1,1,1,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,19,133.1,1,34,34,99,99,96.0,0,0,1,1,0,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,136.0,1,37,37,7,7,140.9,1,0,1,1,0,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,1,9853,0,1,127.0,1,1,1,5,7,121.4,1,0,1,1,1,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,134.0,1,3,19,2,10,128.8,0,0,1,1,1,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,140.0,1,1,3,4,2,142.8,1,0,1,0,1,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,126.3,0,0,1,1,0,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.1,1,19,1,1,3,101.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9147,0,1,122.0,1,1,38,1,7,118.9,0,0,1,1,0,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,107.0,1,19,37,7,7,103.5,1,0,1,1,1,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,156.0,1,38,37,9,9,156.3,0,0,1,1,0,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,128.0,1,1,1,9,9,120.0,1,0,1,1,1,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,0 +1,17,2,9119,0,1,127.0,1,19,1,9,10,121.1,1,0,1,1,0,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,2 +1,39,1,9003,0,4,160.0,1,3,3,4,2,180.4,0,0,0,1,0,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,0 +1,43,1,9670,0,1,132.0,1,3,19,4,8,120.5,0,0,1,1,0,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,134.0,1,1,19,4,5,122.5,1,0,1,1,1,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,142.0,1,1,19,4,4,128.0,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,133.0,1,2,37,9,7,125.7,1,0,1,1,0,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,135.0,1,1,3,4,3,133.3,0,0,1,1,1,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,3,140.0,1,37,12,9,4,140.0,0,0,1,0,1,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9500,0,1,141.0,1,2,38,2,10,135.4,1,0,1,1,1,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,2 +2,43,1,9991,1,2,120.0,1,37,37,9,9,120.0,0,0,1,0,1,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,147.0,1,1,19,4,4,137.2,0,0,1,0,1,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9085,0,1,120.0,1,37,38,9,9,111.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,141.0,1,3,1,9,9,124.3,0,0,1,1,1,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,2 +1,18,1,9773,0,1,125.0,1,1,1,4,7,121.5,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,140.0,1,37,37,5,5,150.0,0,0,0,1,1,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,112.0,1,1,37,4,9,106.8,1,0,1,1,1,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,168.0,1,38,37,9,8,155.1,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,15,1,9119,0,1,133.1,41,2,2,2,2,100.0,0,0,0,1,0,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,2 +2,1,1,8014,1,1,121.0,1,37,37,9,9,114.4,1,0,1,1,1,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,136.0,1,1,38,4,5,132.2,0,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,1 +1,16,1,9070,0,1,145.0,1,1,1,3,3,146.1,1,0,1,1,1,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,2 +1,7,1,9085,0,40,140.0,1,5,3,2,2,140.0,0,0,0,1,0,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,0 +1,1,3,9085,0,1,126.0,1,38,1,9,9,132.0,1,0,1,1,1,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,146.0,1,1,37,9,9,129.3,0,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,131.0,1,37,37,9,6,127.2,0,0,1,1,1,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,139.0,1,37,37,9,9,124.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,133.1,1,37,1,5,4,151.2,0,0,1,1,0,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,170.0,1,38,19,9,2,160.6,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,131.0,1,37,37,9,6,130.7,0,0,0,1,1,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,2 +1,1,6,9500,0,1,122.0,1,19,37,3,5,116.6,1,0,0,1,0,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,1 +1,17,3,171,0,1,147.0,1,19,1,5,4,137.6,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,9,120.0,0,0,1,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,5,1,9130,0,1,157.0,1,5,43,2,2,149.7,1,0,1,1,1,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9003,0,39,160.0,1,3,1,2,6,160.0,1,0,1,0,1,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,140.0,1,9,19,4,4,131.2,0,0,1,1,0,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,1,130.0,1,1,3,2,6,110.0,0,0,1,1,0,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,1 +1,39,1,171,0,1,147.0,1,37,38,175,193,133.3,0,0,1,0,1,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,148.0,1,38,19,4,9,134.7,1,0,1,1,1,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,130.0,1,19,1,9,7,130.4,1,0,1,1,1,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,133.1,1,1,37,4,9,96.0,1,0,1,1,1,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,2 +1,39,1,9991,1,12,120.0,1,37,38,5,5,155.7,0,0,1,1,0,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,117.0,1,3,1,3,3,113.2,0,1,1,1,1,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,1 +1,17,2,9853,0,1,150.0,1,38,19,5,5,142.0,1,0,1,1,1,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,144.0,1,1,19,9,4,130.8,1,0,1,1,1,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,1 +1,17,4,9254,0,1,118.0,1,38,37,5,7,111.7,1,0,1,1,0,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,0 +1,1,6,9500,0,1,141.0,1,2,1,4,4,136.3,1,0,1,1,1,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,1 +2,39,1,9003,0,1,120.0,1,2,2,1,4,100.0,0,0,1,1,0,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,141.0,1,4,3,2,1,136.3,1,0,1,1,0,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,120.0,1,1,19,5,4,140.4,0,0,1,1,1,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,154.0,1,1,37,4,9,134.8,1,0,1,1,1,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,100.0,1,19,19,5,5,101.8,1,0,1,1,1,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,2 +1,17,3,9670,0,1,137.0,1,1,38,4,7,138.4,0,0,1,1,0,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,152.0,1,37,37,7,5,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,118.0,1,37,1,9,7,117.0,1,0,1,0,0,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,140.0,1,12,3,4,3,118.0,1,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9070,0,1,133.0,1,1,2,9,2,128.8,0,0,1,1,0,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,1 +1,39,1,171,0,1,140.0,1,37,37,9,9,100.8,0,1,1,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9070,0,42,130.0,1,40,19,3,5,130.0,1,0,1,0,1,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,143.0,1,1,19,3,3,133.9,0,0,1,1,1,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,1 +2,1,5,9500,0,1,130.0,1,1,19,4,4,122.3,0,0,1,1,1,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,9,9,125.0,1,0,1,1,1,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,120.0,1,37,37,7,8,120.0,0,0,1,1,1,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,1 +1,1,2,9147,0,1,125.0,1,1,19,4,9,124.0,1,0,1,1,1,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,131.0,1,38,19,9,9,130.0,1,0,1,1,0,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,132.0,1,1,1,4,1,119.4,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9500,0,1,135.0,1,19,19,7,7,128.0,1,0,1,1,1,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,1 +1,39,1,9500,0,19,133.1,1,38,38,9,9,114.8,0,0,1,1,1,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,130.0,1,2,2,6,6,130.0,0,0,1,0,0,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,112.0,1,19,38,9,10,112.0,1,0,1,1,1,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,2 +1,39,1,9254,0,1,170.0,1,37,37,4,6,138.3,0,0,1,1,1,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,1 +1,39,1,9147,0,19,100.0,1,38,19,7,9,132.0,0,0,0,0,0,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,133.1,1,19,19,9,9,119.0,1,0,1,0,1,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,0 +1,17,2,9085,0,1,138.0,1,37,37,9,7,123.3,1,0,1,1,1,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,2 +1,39,1,8014,1,1,133.1,1,37,37,9,9,112.5,0,0,1,1,1,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,1 +1,51,1,9670,0,1,140.0,1,12,5,3,3,126.6,0,0,1,1,0,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,1 +1,51,1,9085,0,1,125.0,1,1,1,9,4,120.0,0,0,1,1,1,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,151.0,1,1,1,4,3,132.3,0,0,1,1,0,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,1 +1,43,1,9556,0,1,130.0,1,1,37,5,5,128.0,1,0,1,1,0,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,1 +1,17,6,9670,0,1,113.0,1,4,1,3,10,112.3,0,0,1,1,1,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,17,1,9773,0,1,125.0,1,37,37,5,7,120.1,0,0,1,1,1,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,1 +1,53,1,171,0,42,130.0,1,1,19,9,9,130.0,1,0,1,0,0,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,1 +1,51,1,33,0,1,121.0,1,19,37,5,7,118.6,0,0,1,1,1,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,131.0,1,37,37,90,90,137.0,0,0,1,1,1,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,150.0,1,19,1,4,4,137.8,0,0,1,1,1,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,1,140.0,1,37,37,5,6,128.5,0,0,1,1,1,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,130.0,1,37,2,9,4,126.5,1,0,1,0,0,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,0 +1,1,2,9238,0,1,147.0,1,19,38,9,8,135.8,1,0,1,1,1,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,106.0,1,19,37,9,7,109.5,1,0,1,1,1,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,110.0,1,37,37,9,10,140.0,0,0,0,0,0,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,105.0,1,19,37,8,8,102.6,0,1,1,1,1,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,2 +1,17,6,9147,0,1,133.0,1,19,38,5,6,123.2,1,0,1,1,0,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,2 +1,43,1,9670,0,1,160.0,1,34,34,99,99,100.1,0,0,1,0,0,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,0 +4,7,1,9500,0,40,130.0,1,37,37,3,3,130.0,1,0,1,1,1,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,2 +1,43,2,9853,0,1,118.0,1,19,1,5,4,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,2 +1,43,1,8014,1,1,117.0,1,37,37,9,9,100.0,0,0,1,1,1,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,0 +1,53,1,9238,0,42,130.0,1,1,19,5,5,128.3,0,0,0,0,1,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,0 +1,43,1,9130,0,1,127.0,1,19,38,4,5,120.7,1,0,0,1,1,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,38,37,9,4,150.0,1,0,1,1,0,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,1 +1,39,1,9238,0,1,133.1,1,37,29,0,4,120.5,0,0,1,0,0,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,121.0,1,37,19,9,9,141.4,0,0,0,0,0,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,120.0,1,38,37,9,7,108.0,0,0,1,1,0,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,153.0,6,37,37,9,9,131.8,1,0,1,1,1,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,153.0,1,38,19,9,5,138.5,1,0,1,1,1,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,1 +1,17,2,9254,0,1,107.0,1,12,19,5,5,102.8,1,0,1,1,1,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9238,0,1,135.0,1,1,19,7,7,126.6,1,0,1,1,1,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,124.0,1,1,19,123,103,113.9,1,1,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,144.0,1,37,37,7,9,126.8,1,0,0,0,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9556,0,1,120.0,1,37,37,9,4,150.0,0,0,1,0,1,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,0 +1,43,3,171,0,1,120.0,1,37,37,9,9,143.3,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,140.0,1,38,19,4,10,122.3,1,0,1,1,1,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,157.0,1,3,38,1,5,136.7,1,0,1,1,1,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,2 +2,39,1,9991,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,150.0,1,3,1,2,8,153.8,1,0,1,1,1,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,130.0,1,2,1,2,7,126.2,1,0,1,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,142.0,1,37,37,9,9,132.9,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,43,1,9238,0,1,124.0,1,1,1,3,1,118.8,1,0,0,0,1,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,1,19,4,5,100.0,0,0,1,1,0,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,2 +1,17,5,9238,0,1,122.0,1,37,37,7,5,112.9,1,0,1,1,1,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,97.5,1,0,1,1,0,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,171,0,1,140.0,1,1,3,3,3,138.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,132.0,1,1,1,3,3,119.4,1,0,1,1,1,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,1 +1,42,1,9500,0,1,100.0,1,3,19,2,8,153.0,0,0,1,1,0,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,2 +1,1,1,9254,0,1,123.0,1,38,37,5,5,125.1,0,0,1,1,1,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9130,0,1,133.0,1,38,38,5,8,120.4,1,0,1,1,1,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,1 +1,17,4,9773,0,1,129.0,1,3,1,2,7,132.5,1,0,1,1,0,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,2 +4,39,1,9003,0,19,133.1,1,37,37,9,9,110.0,0,0,1,1,0,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,133.0,1,3,1,9,3,123.2,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,137.0,1,38,19,9,5,129.3,1,0,1,1,1,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,123.0,1,3,1,2,9,127.6,1,0,1,1,0,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,2 +2,39,1,9085,0,19,133.1,1,19,19,9,5,101.0,1,0,1,1,1,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,116.0,1,19,19,7,7,111.1,1,0,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,1,1,9070,0,1,147.0,1,3,1,2,3,149.8,1,0,1,1,0,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,100.0,1,37,37,7,9,100.0,1,0,1,1,1,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,141.0,1,38,38,7,7,132.5,1,0,1,1,1,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,168.0,1,1,1,5,5,161.0,1,0,1,1,0,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,0 +5,39,1,9003,0,19,133.1,1,19,1,9,9,119.4,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,114.0,1,1,19,9,9,111.9,1,0,1,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,2 +1,39,1,9500,0,1,130.0,1,37,37,3,7,143.8,0,0,1,1,0,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,133.1,1,19,19,9,7,100.0,0,0,1,1,0,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,0 +1,17,3,9853,0,1,132.0,1,34,34,0,0,131.3,1,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,157.0,1,37,37,9,9,143.0,0,0,1,1,0,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,1 +5,42,1,9254,0,2,120.0,1,37,37,4,9,120.0,0,0,1,1,1,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,6,1,1,192,144,129.8,0,0,1,1,0,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,2 +1,1,2,9500,0,1,139.0,1,38,37,9,7,125.0,1,0,1,1,1,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,1 +1,17,4,9238,0,1,133.1,1,1,19,9,5,95.0,1,0,1,1,1,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,180.0,1,37,37,7,4,153.8,1,0,1,1,1,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,4,9773,0,1,133.0,1,1,19,9,9,119.7,1,0,1,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,1 +1,17,5,9500,0,1,124.0,1,3,38,2,1,119.8,0,0,1,1,0,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,133.1,1,37,37,9,9,148.2,1,0,0,1,1,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,2 +2,39,1,9991,1,19,133.1,1,37,37,9,7,114.8,0,0,0,1,0,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,133.1,1,1,19,4,8,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,180.0,41,37,37,9,9,152.7,1,0,0,0,0,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9085,0,1,130.0,1,19,19,90,7,115.8,0,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,161.0,1,38,37,5,5,154.4,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,148.0,1,1,38,4,5,148.7,0,0,1,1,0,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,19,38,9,7,131.3,1,0,0,1,1,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,122.0,1,1,1,4,9,112.9,1,0,1,1,1,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,1,4,9500,0,1,142.0,1,38,38,9,8,129.8,1,0,1,1,1,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,1 +3,39,1,9003,0,1,170.0,1,1,37,6,6,170.0,0,0,0,1,1,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,2 +1,1,2,9147,0,1,130.0,1,37,37,9,9,117.8,0,0,1,1,1,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9147,0,1,140.0,1,37,37,9,7,132.3,1,0,1,1,1,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,132.0,1,2,1,9,9,126.4,1,1,1,1,1,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,140.0,1,1,3,9,2,140.0,1,0,1,1,1,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,117.0,1,1,19,4,4,109.3,0,0,1,1,0,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,176.0,1,3,38,3,7,169.7,0,0,1,1,1,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,133.1,1,37,38,7,7,98.0,1,0,1,1,0,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,136.0,1,3,3,2,2,128.7,0,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,12,38,4,9,107.0,1,0,1,1,1,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,0 +1,17,1,9130,0,1,156.0,1,2,9,3,5,166.9,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,1 +1,17,1,9130,0,1,123.0,1,19,3,3,2,121.6,1,0,0,1,1,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,171,0,1,129.0,1,1,1,9,9,124.8,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9119,0,1,125.0,1,19,1,5,4,121.5,1,0,1,1,0,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,0 +1,17,1,9085,0,1,163.0,14,37,37,9,9,150.8,1,0,1,1,1,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,1 +1,7,2,9130,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,1,9085,0,1,135.0,1,1,2,9,1,134.3,1,0,1,1,1,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,19,37,6,6,120.0,0,0,1,1,1,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,1,130.0,1,37,37,9,7,133.0,1,0,1,1,1,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,143.0,1,1,19,4,6,135.0,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +4,43,2,9991,1,38,133.1,1,3,1,2,9,125.4,0,0,1,1,0,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,140.0,1,3,1,2,4,124.1,0,0,1,1,1,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,37,38,175,103,127.0,0,0,1,1,0,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,151.0,1,1,3,1,1,111.0,0,0,1,1,0,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,133.0,1,37,19,9,8,141.4,0,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,133.1,1,38,37,5,5,108.0,0,0,1,1,1,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,9147,0,1,118.0,1,3,19,2,4,113.8,1,0,1,1,1,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,1,1,3,5,141.7,0,0,1,1,1,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,42,1,9119,0,1,130.0,1,19,37,9,3,135.0,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,0 +4,39,2,9147,0,19,133.1,1,37,37,9,7,116.4,0,0,0,0,0,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,148.0,1,19,38,9,8,134.8,1,0,1,1,0,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,116.0,1,19,19,4,7,110.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,1 +1,1,5,9147,0,1,122.0,1,38,38,9,9,117.5,1,0,0,0,1,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,122.0,1,37,37,9,9,125.9,1,0,1,1,0,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,171,0,1,127.0,1,1,1,9,5,124.2,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9147,0,39,117.4,1,19,1,4,9,117.4,1,0,1,1,1,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,150.0,1,37,38,9,9,146.2,0,0,1,1,1,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,2 +1,17,1,9254,0,1,158.0,1,37,37,5,9,138.1,1,0,1,1,1,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,0 +1,7,1,9500,0,3,140.0,1,1,37,9,5,140.0,0,0,1,1,1,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,1 +1,44,1,9238,0,39,140.0,1,1,1,9,3,135.7,1,0,1,1,1,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +2,7,1,171,0,3,120.0,1,19,19,9,9,130.0,1,0,1,1,0,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,10,100.0,1,34,34,0,0,113.0,1,0,1,1,1,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,1 +1,1,1,8014,1,1,125.0,1,37,37,9,7,114.9,0,0,1,1,1,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,1 +1,18,6,9500,0,1,124.0,1,37,37,9,7,117.8,0,0,1,1,1,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,1 +1,1,1,9773,0,1,109.0,1,2,3,3,3,111.8,1,0,0,1,0,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,149.0,1,1,1,9,3,156.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +2,44,1,9119,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,2 +1,44,1,9130,0,39,120.0,6,4,4,3,6,120.0,0,0,0,0,1,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,0 +5,1,3,9085,0,1,133.0,1,19,19,4,7,119.7,1,0,1,1,1,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,2 +1,1,1,9085,0,1,127.0,1,37,37,9,9,122.8,1,0,1,1,1,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,171,0,39,140.0,1,1,1,9,9,140.0,0,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9773,0,1,132.0,1,1,1,4,9,124.3,1,0,0,1,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +4,39,2,9670,0,19,133.1,1,19,1,90,90,103.0,0,0,1,0,0,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,26,1,9147,0,2,133.1,1,34,34,0,0,121.5,1,0,1,1,1,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,143.0,1,19,38,9,6,131.5,1,0,1,1,0,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,1 +1,17,1,9147,0,1,123.0,1,1,19,3,4,122.0,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,171,0,1,133.1,1,3,1,2,3,141.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,19,37,9,4,120.0,0,0,1,1,1,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,1,1,3,3,125.7,1,0,1,1,1,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,121.0,1,37,37,5,5,118.9,1,0,1,1,1,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,1 +1,51,1,9500,0,1,129.0,1,37,38,3,3,137.8,1,0,1,1,1,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,144.0,1,3,1,2,4,134.9,1,0,0,1,1,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,0 +1,17,5,9254,0,1,113.0,1,1,1,2,3,110.2,1,0,1,1,0,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,1,133.1,1,1,19,4,5,120.0,1,0,1,1,0,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,0 +1,39,1,9254,0,19,133.1,1,19,1,9,5,97.0,0,0,0,0,0,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9500,0,1,126.0,1,1,19,6,7,115.5,1,0,1,1,1,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,1 +1,42,1,9853,0,1,141.0,1,37,19,9,3,133.0,0,0,1,1,1,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,0 +1,39,1,9085,0,19,133.1,1,19,19,4,9,139.9,1,0,1,1,1,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,43,2,9254,0,1,140.0,1,19,19,9,9,126.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,108.0,1,34,38,0,3,105.9,0,0,1,1,0,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,114.0,1,19,19,9,7,107.7,0,0,1,1,1,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,0 +1,17,1,171,0,1,130.0,1,3,1,9,9,126.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.1,1,19,37,0,0,137.0,1,0,1,1,1,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9119,0,1,117.0,1,1,2,3,2,119.8,1,0,1,1,0,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9147,0,1,115.0,1,1,37,4,9,117.1,1,0,0,1,1,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,130.0,1,12,19,4,5,118.5,0,1,1,1,1,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,34,37,5,5,120.4,0,0,1,0,1,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,0 +1,44,1,171,0,39,150.0,1,19,1,9,9,154.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,43,1,9147,0,1,140.0,1,37,37,6,6,122.9,0,0,1,1,1,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,0 +1,42,1,9070,0,1,100.0,1,3,2,2,2,115.9,0,0,1,1,1,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,2 +1,17,1,171,0,1,128.0,1,1,1,4,10,134.7,0,0,1,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,1,1,9,9,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,110.0,1,37,37,7,7,133.9,0,0,1,1,1,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,0 +1,43,1,9773,0,1,119.0,1,19,37,5,5,105.0,1,0,1,1,1,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,2 +2,43,1,9991,1,1,140.0,1,37,37,4,1,122.7,0,0,1,1,0,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,135.0,1,37,1,3,5,121.0,0,0,1,1,1,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,123.0,1,3,1,2,3,124.1,1,0,1,1,1,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,0 +1,17,1,9670,0,1,132.0,1,19,1,5,4,119.1,0,0,0,1,0,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,5,9254,0,1,130.0,1,37,38,9,9,122.7,1,0,0,1,0,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9147,0,1,117.0,1,1,38,8,9,117.0,1,0,1,1,0,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,140.0,1,19,19,9,6,135.4,1,0,1,1,1,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,162.0,1,37,37,9,6,132.0,0,0,0,1,0,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,139.0,1,19,38,4,9,128.5,1,0,1,1,1,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,0 +4,39,1,9991,1,1,130.0,1,38,19,9,7,148.0,0,0,1,1,1,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +5,43,1,9500,0,1,131.0,1,1,38,5,5,118.8,0,0,1,1,1,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,5,9238,0,1,126.0,1,38,1,9,5,125.7,1,0,1,1,1,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,1 +1,53,1,9085,0,42,140.0,1,1,1,4,3,140.0,1,0,0,1,1,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,128.0,1,1,1,4,5,120.8,1,0,1,1,1,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,139.0,1,37,37,9,6,133.5,1,0,1,1,1,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,150.0,1,38,38,4,1,150.0,1,0,1,1,0,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,9147,0,1,133.1,1,1,1,4,4,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9853,0,1,140.0,1,37,19,9,8,122.3,0,0,1,1,1,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,0 +1,43,1,8014,1,1,120.0,1,38,19,5,4,118.3,0,0,1,1,1,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,2 +1,7,1,9130,0,3,140.0,1,2,38,2,3,140.0,1,0,1,0,0,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,122.0,1,9,19,90,6,103.4,0,0,1,1,1,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,1 +2,39,1,9070,0,19,133.1,1,37,37,9,10,126.3,0,0,1,0,0,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,160.0,1,38,38,7,7,147.8,0,0,1,1,1,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,2 +1,39,1,9238,0,12,100.0,1,37,37,9,9,124.3,0,0,1,1,0,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,1 +1,18,2,8014,1,1,117.0,1,3,1,3,4,111.8,1,0,1,1,1,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,38,37,7,7,140.0,0,0,1,1,0,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,0 +1,43,1,9853,0,1,140.0,1,3,1,3,3,128.3,1,0,1,1,1,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,127.0,1,37,38,9,9,120.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,1,161.0,1,19,37,4,10,100.0,0,0,1,1,0,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,1 +1,16,4,9500,0,1,145.0,1,1,1,4,4,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,1 +1,7,1,9853,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,0 +1,1,2,171,0,1,127.0,1,2,19,5,5,139.6,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,148.0,1,19,19,4,4,133.8,0,0,1,1,1,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,140.0,1,19,19,1,1,129.5,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,171,0,1,129.0,1,37,37,9,9,122.0,1,0,1,0,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,1,12,3,10,131.6,1,0,1,1,1,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,130.0,1,38,37,3,6,135.6,1,0,1,1,1,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,0 +1,51,1,9991,1,39,120.0,1,1,4,4,10,118.1,0,0,1,1,0,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,0 +1,39,1,9853,0,19,133.1,1,19,4,9,4,116.0,1,0,1,1,1,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9238,0,1,133.1,1,1,37,8,9,118.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,4,9500,0,1,125.0,1,19,1,1,1,117.8,1,0,1,1,1,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,141.0,1,1,38,4,5,125.0,1,0,1,1,1,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,121.0,1,38,38,7,5,120.0,1,0,1,1,1,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,2 +1,17,3,9500,0,1,142.0,1,3,3,3,3,132.9,1,0,1,1,0,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,0 +1,44,1,9238,0,39,140.0,1,37,19,191,102,136.1,1,0,0,1,1,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,2 +1,39,1,9991,1,2,140.0,1,3,3,2,2,155.7,1,0,1,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9119,0,1,135.0,1,12,19,5,5,121.0,0,0,1,1,0,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,135.0,1,3,3,2,2,123.0,1,0,1,0,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,117.0,1,1,1,4,4,117.7,1,0,1,1,0,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +1,43,1,171,0,1,120.0,1,3,3,2,2,120.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,1,38,1,7,120.0,0,0,1,1,1,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,1 +1,17,3,9238,0,1,122.0,1,19,19,7,7,117.5,1,0,1,1,1,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,1,37,37,9,9,144.2,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +4,39,1,9500,0,1,140.0,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,131.0,1,19,19,9,9,139.8,1,0,1,1,1,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,127.0,1,3,3,2,5,100.0,0,0,1,1,1,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,2 +1,39,1,9085,0,1,133.1,1,3,19,2,9,110.0,0,0,1,1,1,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,0 +4,39,1,9500,0,19,133.1,1,38,1,9,4,120.0,0,0,1,1,1,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,1 +1,16,1,9085,0,1,150.0,1,3,3,2,1,153.5,1,0,1,1,1,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,153.0,1,19,37,9,9,153.7,0,0,1,1,1,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,130.0,1,19,19,3,8,131.8,0,0,1,1,1,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,1,2,9853,0,1,131.0,1,1,1,2,9,121.9,1,0,1,1,1,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,136.0,1,3,3,3,3,130.8,0,0,1,1,1,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,126.0,1,1,19,4,0,120.1,0,1,1,1,1,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +1,44,1,9003,0,1,120.0,1,3,2,2,6,120.0,1,0,1,1,0,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,2 +2,39,1,9130,0,19,133.1,1,2,1,2,9,157.0,1,0,1,1,0,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,1 +1,7,1,9853,0,3,150.0,1,19,19,4,5,150.0,0,0,0,0,1,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,51,1,9070,0,12,133.1,1,37,19,3,7,106.6,0,0,0,1,1,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,2 +1,1,2,9085,0,1,157.0,1,3,3,5,2,153.9,1,0,1,1,1,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,1 +1,1,2,171,0,1,117.0,1,1,19,3,3,121.6,1,0,1,1,1,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,1 +1,1,2,9147,0,1,113.0,1,38,38,9,5,107.4,1,0,1,1,0,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,2 +1,39,2,9147,0,12,133.1,1,19,38,9,9,120.0,1,0,0,0,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,152.0,1,37,37,9,9,139.0,1,0,1,1,1,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,138.0,1,1,19,9,9,124.0,0,0,1,1,1,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,1 +2,39,1,9853,0,1,110.0,1,37,37,9,9,95.5,0,0,0,0,1,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9130,0,1,150.0,1,19,19,4,4,130.0,0,0,1,0,0,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,3,9119,0,1,138.0,1,1,19,4,3,125.4,1,0,1,1,0,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,0 +1,17,6,9147,0,1,120.0,1,37,38,9,9,115.5,1,0,0,0,0,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,2 +1,1,3,9670,0,1,134.0,1,14,11,0,0,128.4,1,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,145.0,1,38,37,9,7,129.3,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,18,6,9500,0,1,126.0,1,37,37,5,5,122.8,1,0,1,1,1,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,133.0,1,1,1,4,4,129.2,1,0,1,1,1,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,0 +1,44,1,9070,0,39,120.0,1,1,19,4,7,120.0,0,0,0,0,0,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,136.0,1,19,38,9,9,121.7,0,1,1,1,1,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,126.0,1,1,1,9,10,126.7,1,0,1,1,1,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,1 +1,1,3,9085,0,1,134.0,1,38,19,9,5,129.1,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,133.1,1,1,37,9,9,117.0,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,5,9238,0,1,130.0,1,19,1,5,5,130.0,1,0,1,1,1,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,8014,1,40,140.0,1,19,37,5,9,148.0,0,0,1,1,1,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,137.0,1,3,38,1,9,131.4,0,0,1,0,0,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,0 +1,1,2,9670,0,1,123.0,1,1,38,7,7,120.6,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,139.0,1,3,1,2,7,124.0,1,0,1,1,1,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,0 +1,1,2,171,0,1,152.0,1,38,19,9,9,151.7,1,0,1,1,1,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,110.0,1,37,37,9,4,114.3,1,0,1,1,0,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,2 +1,51,1,9991,1,1,120.0,1,38,3,5,3,128.2,0,0,0,1,0,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,141.0,1,3,2,2,2,133.3,1,0,1,1,0,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,2 +1,5,1,171,0,1,137.0,1,3,19,1,10,144.7,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,2 +1,43,1,9003,0,1,130.0,1,37,1,5,4,130.0,0,0,1,1,0,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,0 +1,18,1,9773,0,1,135.0,1,1,1,3,3,129.8,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,150.0,1,38,38,9,8,150.0,1,0,1,1,0,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,1 +1,17,2,9773,0,1,150.0,1,1,1,4,5,130.8,0,0,1,1,0,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9773,0,1,123.0,1,1,1,4,7,125.1,1,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,1 +1,17,4,9119,0,1,129.0,1,34,36,0,5,118.9,1,0,1,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,0 +1,1,2,9500,0,1,144.0,1,38,37,9,9,128.8,1,0,1,1,0,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,130.0,1,38,38,9,9,150.0,0,0,0,0,0,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,128.0,1,1,1,7,7,120.5,1,0,1,1,1,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,2 +1,7,1,9500,0,3,140.0,1,3,1,4,4,140.0,0,0,1,1,1,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,134.0,1,19,19,1,1,120.4,1,0,1,1,0,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,147.0,1,1,38,4,8,141.1,1,0,1,1,1,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,126.0,1,3,1,5,5,125.7,0,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,1 +2,1,4,9853,0,1,134.0,1,37,37,5,7,122.5,0,1,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,148.0,1,38,38,4,9,131.6,0,0,1,1,0,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,0 +2,39,1,9085,0,9,133.1,1,1,1,4,4,120.0,1,0,1,0,0,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,0 +1,39,1,9254,0,1,150.0,1,3,1,3,4,122.3,0,0,1,1,0,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,125.0,1,19,37,3,7,126.8,0,0,1,1,1,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,2 +1,18,1,9670,0,1,128.0,1,19,3,9,7,120.0,1,0,1,1,1,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,160.0,1,2,1,4,4,137.3,1,0,1,1,1,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,1 +2,39,1,9238,0,42,170.0,1,19,38,8,8,159.5,0,0,1,1,0,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9773,0,1,143.0,1,1,1,4,9,144.1,1,0,1,1,0,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,9991,1,1,130.0,1,37,37,9,9,127.8,0,0,1,1,0,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,51,1,9147,0,1,130.0,1,19,38,9,8,115.7,0,0,1,1,0,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,2 +1,17,3,9773,0,1,135.0,1,1,19,5,7,135.0,0,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,135.0,1,1,1,9,9,133.3,0,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,6,9500,0,1,136.0,1,1,1,4,5,123.3,0,0,1,0,1,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,143.0,1,5,5,2,2,137.8,0,0,1,1,0,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,133.1,1,1,19,141,114,140.0,1,0,1,1,1,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,17,6,9670,0,1,117.0,1,38,19,0,1,114.6,0,0,1,0,0,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,133.1,1,1,19,4,10,145.8,0,0,1,1,0,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,129.0,1,1,37,4,9,118.2,0,0,1,1,0,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,1 +1,7,1,9500,0,3,130.0,1,37,37,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,1 +1,17,4,9670,0,1,135.0,1,38,38,9,7,127.0,1,0,1,1,1,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,126.0,1,1,1,90,90,119.0,1,0,0,1,0,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9773,0,1,120.0,1,1,38,5,5,121.4,0,0,1,0,1,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,136.0,1,1,38,9,9,130.8,1,0,1,1,1,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,131.0,1,19,37,9,9,123.8,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,144.0,1,19,19,9,9,142.6,1,0,1,1,1,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,126.0,1,38,38,7,8,126.7,1,0,1,1,1,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,3,171,0,1,125.0,1,37,37,5,10,120.5,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,7,1,9130,0,2,110.0,1,19,19,4,8,110.0,1,0,1,1,0,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,3,1,2,8,150.0,0,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,5,171,0,1,139.0,1,19,3,9,2,136.9,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,1,9147,0,1,100.0,1,38,38,5,5,101.8,1,0,1,1,1,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,2 +1,44,2,9238,0,39,150.0,1,3,19,4,9,147.0,1,0,1,1,1,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,39,1,9254,0,19,133.1,1,37,37,9,4,100.0,0,0,1,1,0,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,0 +1,17,1,9130,0,1,130.0,1,19,38,4,7,122.5,0,0,1,1,0,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,19,37,1,1,140.0,0,0,0,1,0,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,2 +1,17,1,9070,0,1,157.0,1,3,3,3,3,146.2,0,0,1,1,0,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,9500,0,1,150.0,1,37,19,8,4,130.8,0,0,1,1,0,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,133.1,1,19,19,7,7,130.0,1,0,1,1,1,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,150.0,1,19,1,9,8,150.0,1,0,1,1,0,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,127.0,1,1,19,7,7,121.8,1,0,1,1,1,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,2 +1,1,1,9853,0,1,148.0,1,19,19,5,7,141.7,0,0,1,1,1,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,130.0,1,1,19,9,9,133.4,0,0,1,1,1,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,123.0,1,37,38,3,3,122.0,0,0,0,1,0,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,2 +1,17,1,9070,0,1,132.0,1,37,38,9,7,138.0,0,0,1,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,146.0,1,2,19,3,9,130.3,1,0,1,1,0,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,1 +1,44,1,171,0,39,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,116.0,1,3,1,3,4,115.7,0,0,1,0,0,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,2 +1,1,1,9670,0,1,130.0,1,19,37,4,5,118.8,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,124.0,1,37,37,7,9,121.2,0,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,127.0,1,19,37,9,3,120.7,1,0,1,1,1,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +2,43,1,9070,0,2,140.0,1,37,37,6,6,140.0,1,0,1,1,0,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,1 +1,39,1,9500,0,1,100.0,1,3,1,2,5,121.3,1,0,1,1,1,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,2 +1,39,1,9991,1,19,133.1,1,37,37,9,6,105.3,0,0,0,1,1,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9670,0,1,155.0,1,1,19,4,8,134.7,1,0,1,1,1,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,15,1,9119,0,1,160.0,32,1,3,143,152,160.0,0,0,0,1,1,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,2 +1,53,1,9670,0,42,140.0,1,19,37,3,6,140.0,1,0,0,1,1,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,2 +1,1,6,9853,0,1,140.0,1,38,38,9,7,137.6,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,140.0,1,19,19,7,7,129.5,1,0,1,1,1,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,1 +1,39,1,9773,0,19,133.1,1,19,19,3,4,104.0,0,0,0,0,1,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,130.0,1,37,37,9,9,118.8,0,0,0,1,0,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,136.0,1,1,1,9,1,133.0,1,0,1,1,1,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,143.0,1,38,38,9,9,138.8,1,0,1,1,1,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,1 +2,39,1,9147,0,1,140.0,1,37,37,6,10,131.8,0,0,1,1,1,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,2 +1,39,1,9085,0,1,130.0,1,4,1,2,9,120.0,0,0,1,0,1,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,2 +1,1,4,9500,0,1,148.0,1,19,19,4,5,137.0,1,0,1,1,1,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,120.0,1,37,19,5,3,156.0,1,0,1,1,0,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,9853,0,1,133.1,1,12,1,4,0,134.8,1,0,1,1,1,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,122.0,1,1,1,9,8,120.3,0,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,156.0,1,19,38,9,5,170.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,3,171,0,1,129.0,1,38,37,9,3,127.3,1,0,0,0,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,142.0,1,38,38,9,10,127.0,1,0,1,1,1,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,150.0,1,38,19,3,3,120.1,0,0,1,0,1,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,141.0,1,37,37,9,9,126.7,1,0,0,1,1,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,43,3,9147,0,1,127.0,21,3,37,3,3,117.9,1,0,1,1,1,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,1,120.0,1,1,19,4,7,110.0,0,0,1,1,0,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,0 +2,42,1,9254,0,1,136.0,1,2,2,134,112,130.0,1,0,1,1,0,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,0 +1,18,1,9119,0,1,122.0,1,19,1,90,3,116.1,1,0,0,0,0,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9500,0,1,120.0,1,2,4,4,5,136.6,0,0,1,1,0,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,0 +1,18,1,9070,0,1,143.0,1,38,38,7,5,141.6,0,0,1,1,1,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,1 +1,43,1,9119,0,1,140.0,1,37,38,5,7,146.5,0,0,1,1,0,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,125.0,1,19,19,9,9,121.5,1,0,1,1,1,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,1,0,1,1,1,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,159.0,1,3,3,2,2,165.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,127.0,1,3,1,2,9,119.3,1,0,1,1,1,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,1 +1,17,6,9238,0,1,117.0,1,1,38,4,7,114.6,0,0,1,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9119,0,1,148.0,1,19,19,9,8,129.8,0,0,1,0,0,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,2 +1,17,4,9119,0,1,127.0,1,19,19,5,5,120.4,1,0,0,0,0,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,5,9500,0,1,144.0,1,19,1,5,3,141.0,1,0,1,1,1,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,1 +1,17,3,9556,0,1,126.0,1,19,19,9,4,119.0,1,0,1,1,1,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,0 +1,1,4,9119,0,1,126.0,1,3,19,2,9,123.6,1,0,1,1,0,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,120.0,1,1,2,144,123,125.3,0,0,0,1,0,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,2 +1,39,1,9070,0,1,130.0,1,1,19,4,4,110.0,1,0,1,1,1,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,140.0,1,37,37,90,5,115.5,0,0,1,0,0,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,130.0,1,38,38,9,9,120.0,0,0,1,1,1,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,0 +1,17,2,9853,0,1,141.0,1,3,1,1,5,130.2,1,0,1,1,1,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,2 +2,1,1,9500,0,1,156.0,1,1,1,9,10,135.5,0,0,1,1,1,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,1 +2,7,1,8014,1,3,170.0,1,19,19,4,4,170.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,2,9147,0,1,134.0,1,37,19,9,8,126.3,1,0,1,1,1,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,122.0,1,12,12,5,7,126.6,1,0,1,1,1,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,38,38,9,7,138.8,1,0,1,1,1,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,132.0,1,37,37,5,7,127.5,1,0,1,1,1,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,1 +1,16,2,9238,0,1,130.0,1,37,37,5,6,126.9,1,0,1,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,110.0,1,3,2,3,3,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,127.0,1,2,19,4,5,121.8,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,1 +1,39,1,9085,0,12,133.1,1,38,19,9,8,138.3,1,0,0,0,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +1,39,1,9147,0,19,133.1,1,3,1,3,5,153.2,1,0,0,1,1,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,37,19,5,9,130.0,1,0,1,1,1,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +2,39,2,9147,0,1,130.0,1,19,37,4,7,140.0,0,0,1,1,0,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,128.0,1,19,19,7,7,124.4,0,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,19,3,8,150.3,1,0,1,1,0,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,143.0,1,38,19,7,9,129.5,1,0,1,1,1,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,1 +1,42,1,9500,0,6,141.0,1,37,1,9,4,145.0,0,0,1,1,1,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,1 +1,17,1,9238,0,1,160.0,1,19,37,6,6,144.3,0,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,2,9238,0,1,133.1,1,19,19,4,5,120.6,1,0,1,1,1,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,37,19,9,3,116.5,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,127.0,1,1,1,3,4,130.2,1,0,1,1,0,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,4,9254,0,1,131.0,1,38,36,9,9,124.0,1,0,1,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,1 +1,1,5,9254,0,1,120.0,1,37,37,9,7,127.0,1,0,1,1,1,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,135.0,1,34,34,0,0,134.1,1,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9254,0,1,133.1,1,37,37,9,6,121.5,0,0,1,1,0,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,144.0,1,38,38,5,7,128.0,1,0,1,1,1,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,132.0,1,1,19,6,6,124.7,1,0,1,1,0,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,1 +1,17,2,9991,1,1,116.0,1,37,19,9,4,118.5,0,0,1,1,0,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,133.1,1,1,1,9,1,103.0,1,0,1,1,1,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,16,5,9085,0,1,134.0,1,19,37,8,8,123.9,1,0,1,1,0,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,2 +1,43,1,9773,0,1,114.0,1,37,38,9,5,107.4,1,0,1,0,0,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,38,37,5,7,120.0,1,0,1,1,1,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,135.0,1,1,38,4,6,122.1,0,1,0,0,0,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,0 +2,39,1,8014,1,1,150.0,1,37,37,7,5,143.0,0,0,1,1,1,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,1 +1,44,1,9991,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,1 +4,39,1,9238,0,19,133.1,1,37,37,9,10,103.5,0,0,1,0,1,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,126.0,1,19,38,9,9,132.0,1,0,1,1,1,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,125.0,1,1,1,7,3,143.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,39,1,9147,0,1,120.0,1,37,1,9,1,122.7,0,0,1,0,1,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +2,7,1,8014,1,3,124.4,1,37,34,0,0,130.0,0,0,1,1,1,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,1 +1,18,1,9085,0,1,106.0,1,1,19,3,5,104.6,0,0,1,0,0,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,2 +1,44,1,9119,0,39,160.0,1,3,38,2,3,160.0,0,0,0,0,0,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,148.0,1,3,19,2,5,130.0,0,0,1,1,1,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,2 +1,1,1,9130,0,1,133.0,1,1,37,9,9,123.2,1,0,1,1,1,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,17,5,9500,0,1,130.0,1,19,1,9,4,128.8,1,0,1,1,1,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,149.0,1,19,1,9,9,137.8,1,0,1,1,0,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,1 +4,43,1,9670,0,1,150.0,1,37,37,9,6,110.0,0,0,1,1,1,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,1 +2,39,1,9119,0,1,110.0,1,19,19,0,5,137.0,0,0,0,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9556,0,1,122.0,1,19,19,3,10,113.3,1,0,1,1,1,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,140.0,1,1,19,4,5,127.5,0,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,3,9070,0,1,128.0,1,37,37,5,5,124.5,1,0,1,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,1 +1,44,1,9085,0,39,150.0,6,5,4,1,1,150.0,0,0,1,1,1,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,131.0,1,38,37,7,7,127.2,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,130.0,1,37,37,9,6,126.5,1,0,1,1,1,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,1 +1,17,1,9119,0,1,116.0,1,19,37,90,5,116.7,1,0,1,1,0,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,0 +1,17,3,9853,0,1,140.0,1,38,38,5,7,126.7,1,0,1,1,1,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,0 +1,17,4,9238,0,1,129.0,1,37,37,9,8,117.1,1,0,1,1,0,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,144.0,1,19,19,9,9,130.5,1,0,1,1,1,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,124.0,1,19,1,7,10,116.0,1,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,122.0,1,1,19,4,4,127.3,1,0,0,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,12,12,4,1,155.3,1,1,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +2,15,1,9773,0,1,133.1,41,37,37,9,6,100.0,0,0,1,1,1,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,138.0,41,1,1,9,9,126.5,1,0,1,1,1,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,1 +1,18,6,9500,0,1,142.0,1,38,37,9,5,128.0,1,0,1,0,1,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,3,1,2,3,140.0,1,0,1,1,1,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,2 +1,42,1,9991,1,1,150.0,1,19,19,5,5,113.7,0,0,1,1,0,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,135.0,1,1,19,5,5,130.1,1,0,1,1,1,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,2,9254,0,1,120.0,1,19,1,9,8,117.2,0,0,1,1,0,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,130.0,1,19,19,9,7,119.5,1,0,1,1,0,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,133.0,1,1,1,4,5,136.2,1,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,15,1,9147,0,1,133.1,21,1,3,192,3,100.0,0,0,0,1,0,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,2 +1,1,1,9670,0,1,112.0,1,37,1,7,0,110.6,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9238,0,1,117.0,1,19,19,9,9,117.0,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9991,1,1,140.0,1,1,37,9,8,154.5,0,0,1,1,1,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,97.0,1,0,1,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,119.0,1,37,37,5,4,118.0,1,0,1,1,0,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,112.0,1,19,38,5,7,107.1,1,0,1,1,1,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,1 +2,18,2,8014,1,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,144.0,1,37,37,9,6,129.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,120.0,100,1,1,4,7,119.5,0,0,0,1,1,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,136.0,1,19,38,5,8,130.3,1,0,1,1,1,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,7,9,121.3,1,0,1,1,1,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,135.0,1,1,4,5,3,124.9,0,0,1,1,1,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,4,9670,0,1,128.0,1,38,38,3,7,121.0,1,0,1,1,1,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,15,1,9556,0,1,114.0,26,3,19,122,144,114.0,0,0,1,1,1,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,2 +1,17,2,9238,0,1,125.0,1,19,19,3,3,118.0,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,118.0,1,37,37,7,7,114.2,0,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,2 +1,17,1,9147,0,1,115.0,1,19,37,5,7,112.9,1,0,1,0,0,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,120.0,1,19,37,9,9,118.3,0,0,0,0,0,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9119,0,10,133.1,1,34,37,0,0,128.8,1,0,1,1,0,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,115.0,1,19,38,5,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,137.0,1,37,37,9,9,132.8,1,0,1,1,1,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9003,0,1,148.0,1,19,37,9,9,131.6,1,0,1,1,0,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9773,0,1,161.0,1,1,19,4,7,148.4,0,0,1,1,1,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,1 +2,43,1,9991,1,1,133.1,1,37,37,9,7,113.5,0,0,1,1,1,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,132.0,1,1,1,9,9,133.8,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,1,9254,0,1,125.0,1,37,37,9,9,122.9,0,0,1,1,0,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,123.0,1,3,1,9,3,121.3,1,0,1,1,1,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,2 +1,17,1,9991,1,1,154.0,1,38,38,4,5,134.1,0,0,1,1,1,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,2 +1,44,1,9130,0,39,140.0,1,19,19,5,5,140.0,1,0,0,0,1,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,2 +1,53,1,9085,0,42,170.0,1,1,19,4,7,170.0,0,0,1,1,1,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,1 +1,17,5,9147,0,1,131.0,1,19,38,3,10,119.8,1,0,1,1,1,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,141.0,1,19,19,9,9,126.0,1,0,1,1,1,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,1 +1,1,3,9500,0,1,137.0,1,19,19,5,4,131.5,1,0,1,1,1,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,118.0,1,19,1,9,3,113.5,1,0,0,1,1,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,100.0,1,37,37,99,99,100.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9130,0,1,120.0,6,1,3,9,2,120.0,0,0,0,1,1,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,2 +1,1,1,9147,0,1,127.0,1,19,19,5,5,129.8,1,0,1,1,1,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,134.0,1,37,37,9,9,129.8,1,0,1,1,1,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,121.0,1,37,37,5,9,116.5,1,0,1,1,1,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9070,0,1,117.0,1,19,37,5,5,131.0,1,0,0,0,0,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,125.0,1,1,38,9,7,119.8,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,5,9500,0,1,140.0,1,1,1,4,3,131.1,1,0,1,1,1,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,1 +1,1,5,9254,0,1,101.0,1,3,19,3,9,98.9,1,0,1,1,0,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,130.0,1,37,38,7,9,117.8,0,0,0,1,1,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,128.0,1,34,19,3,0,141.0,1,0,1,0,1,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,150.0,1,38,37,9,9,130.8,0,0,1,1,0,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,125.0,1,1,19,4,7,116.6,0,0,1,1,0,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,1 +1,43,1,9670,0,1,130.0,1,34,34,0,0,114.8,0,0,1,1,0,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,1 +2,42,1,9003,0,1,120.0,1,3,1,2,2,113.3,0,0,1,1,0,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +4,39,1,9991,1,1,133.1,1,37,37,5,5,138.7,0,0,1,1,1,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,0 +1,39,1,9238,0,1,140.0,1,34,34,0,0,114.0,1,0,1,0,1,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9991,1,1,133.1,1,37,19,3,10,136.1,0,0,1,1,0,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9070,0,1,110.0,1,37,37,7,7,110.2,0,0,1,1,0,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,150.0,1,4,5,4,2,150.0,0,0,1,1,0,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,2 +1,1,2,9119,0,1,149.0,1,38,38,5,5,141.0,0,0,1,1,0,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,2 +1,42,1,9085,0,39,150.0,1,1,1,4,7,150.0,1,0,1,1,1,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,1,38,4,9,131.7,1,0,1,1,1,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,42,1,9853,0,1,120.0,1,1,37,5,5,113.9,1,0,1,1,1,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9085,0,1,130.0,1,37,19,9,7,130.0,1,0,1,1,1,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,2 +1,17,4,9500,0,1,133.0,1,38,37,5,7,126.4,1,0,1,1,0,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,147.0,1,3,1,2,3,131.6,0,0,1,1,1,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,1 +1,39,1,9991,1,12,133.1,1,37,37,9,9,121.5,0,0,1,1,0,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,2 +2,1,1,9991,1,1,150.0,1,37,37,9,9,131.8,0,0,1,0,1,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,0 +1,43,4,8014,1,1,116.0,1,34,34,0,0,116.2,0,0,1,1,0,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,1 +1,44,1,9130,0,39,140.0,1,1,19,4,7,140.0,0,0,1,1,0,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,2 +1,17,1,9773,0,1,136.0,1,3,1,2,3,132.5,1,0,1,1,1,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,1 +4,39,1,9500,0,19,110.0,1,37,38,5,5,151.0,0,0,0,0,0,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,0 +1,17,2,9254,0,1,123.0,1,19,19,5,5,113.2,1,0,0,1,1,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,137.0,1,3,19,2,9,122.3,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +4,39,1,9254,0,1,120.0,1,37,19,9,9,131.0,1,0,1,1,0,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9556,0,1,123.0,1,19,19,4,9,113.8,1,0,1,1,1,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,150.0,1,3,37,4,7,139.5,0,0,1,1,0,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,145.0,1,38,37,3,9,138.4,1,0,1,0,1,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,2 +1,39,1,8014,1,1,140.0,1,37,37,9,7,122.0,1,0,0,0,0,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,0 +2,43,3,9991,1,1,120.0,1,37,37,9,9,128.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,6,9500,0,1,126.0,1,12,37,5,9,121.8,1,0,1,1,1,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,0 +2,39,1,9991,1,1,130.0,1,37,37,9,9,140.0,1,0,1,1,0,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,130.0,1,37,19,9,8,130.8,0,0,1,1,0,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,2 +1,1,3,9070,0,1,125.0,1,19,38,9,9,125.4,1,0,1,1,1,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,132.0,1,38,38,4,9,119.1,0,0,1,1,1,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,1 +4,7,1,9147,0,3,130.0,1,19,1,5,5,130.0,0,0,1,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,130.0,1,19,19,7,7,121.6,1,0,1,1,1,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9773,0,1,126.0,1,37,38,5,5,129.5,1,0,0,0,1,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,133.0,1,38,38,5,5,123.2,0,0,1,1,1,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,140.0,1,37,37,9,9,121.0,0,0,1,1,1,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,3,9500,0,1,131.0,1,37,37,9,9,118.0,1,0,1,1,1,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,2 +1,1,1,9670,0,1,120.0,1,38,19,4,8,115.1,0,0,1,1,1,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,2 +1,17,5,9773,0,1,111.0,1,19,12,7,3,115.9,1,0,1,1,1,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,135.0,1,1,19,9,7,123.5,1,0,1,1,1,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,37,4,9,130.0,1,0,1,1,1,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,2 +1,44,1,9119,0,39,130.0,1,3,19,3,4,130.0,0,0,1,1,0,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,2 +1,44,1,9147,0,39,130.0,22,2,37,2,8,130.0,0,0,0,0,0,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,119.0,1,37,37,9,6,119.0,0,0,0,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9500,0,1,142.0,1,38,37,9,8,130.8,1,0,1,1,1,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,136.0,1,38,1,9,4,129.7,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,1 +1,42,1,9003,0,1,140.0,1,19,19,4,4,140.0,1,0,1,1,0,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,19,133.1,1,1,19,4,10,114.0,0,0,1,1,0,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,0 +1,17,5,9670,0,1,125.0,1,19,30,7,7,118.4,1,0,1,1,1,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,2 +1,1,2,9500,0,1,135.0,1,19,19,9,10,122.9,1,0,1,1,1,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,100.0,1,37,37,9,9,108.0,1,0,1,1,0,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,127.0,1,37,37,9,9,119.3,1,1,1,1,0,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,133.0,1,38,19,9,10,125.0,1,0,1,1,1,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,116.0,1,3,3,3,3,110.1,1,0,1,1,0,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,133.1,1,1,1,5,8,123.0,1,0,1,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,144.0,1,37,37,9,3,150.5,0,0,1,1,1,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,133.0,1,3,1,2,4,130.2,0,0,1,1,0,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,116.0,1,38,37,9,6,109.7,1,0,1,1,1,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,1 +1,18,3,9853,0,1,128.0,1,38,37,5,9,116.8,1,0,1,0,0,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,150.0,1,37,37,4,9,132.1,1,0,0,1,1,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,160.0,1,1,19,4,6,155.7,1,0,1,1,1,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,130.0,1,19,1,9,9,131.9,0,0,1,1,1,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,126.0,1,3,3,2,2,121.1,0,0,0,1,1,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,133.0,1,38,38,7,7,147.0,0,0,1,1,1,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,137.0,1,37,37,9,9,126.2,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,149.0,1,38,37,5,5,137.1,1,0,1,1,1,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,143.0,1,2,37,1,1,133.2,1,0,1,1,1,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,2 +1,17,5,9070,0,1,122.0,1,19,38,5,7,119.6,0,0,0,0,1,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,137.0,1,19,38,9,9,127.2,1,0,1,1,1,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,110.0,1,1,1,4,4,125.9,0,0,1,1,0,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,130.0,1,1,38,5,9,118.1,0,0,0,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9853,0,1,130.0,1,37,19,9,5,102.5,0,0,1,1,1,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.0,1,19,1,9,1,122.2,0,0,1,1,1,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,39,140.0,1,3,3,2,2,140.0,1,0,1,1,1,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,134.0,1,37,38,9,9,120.3,1,0,1,1,1,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,1,1,37,4,7,110.0,0,0,1,1,0,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,0 +1,15,1,9085,0,1,133.1,41,3,3,4,2,101.3,0,0,1,1,1,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,113.0,1,1,1,5,4,106.7,1,0,0,1,1,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,0 +2,39,1,9991,1,19,133.1,1,37,37,5,5,111.9,1,0,1,1,0,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9853,0,1,134.0,1,19,38,4,8,122.1,1,0,1,1,1,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,0 +1,1,2,9853,0,1,133.0,1,19,37,4,9,130.2,1,0,1,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,127.0,1,19,19,5,5,160.0,0,0,1,1,0,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,1 +1,7,1,9500,0,3,130.0,1,37,38,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,140.0,1,19,38,7,7,136.5,1,0,1,1,1,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,1 +2,39,1,9773,0,19,133.1,1,37,37,9,6,110.0,0,0,1,0,1,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,0 +2,39,1,8014,1,1,120.0,1,34,34,99,99,101.8,0,0,1,0,1,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,135.0,1,1,1,4,7,129.8,1,0,1,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,131.0,1,37,38,5,5,128.9,0,0,1,1,1,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,1 +1,1,4,9070,0,1,139.0,1,3,19,1,5,138.3,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,6,9500,0,1,122.0,1,1,1,3,7,114.3,1,0,1,1,0,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,2 +1,1,1,9500,0,1,150.0,1,37,37,9,7,136.5,1,0,1,1,1,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,3,1,2,8,121.4,0,0,1,1,0,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,117.0,1,19,19,194,193,117.4,1,0,1,1,1,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,2 +2,39,1,9085,0,1,133.1,1,36,36,99,5,128.2,0,0,1,0,1,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,121.0,1,3,1,2,3,114.0,0,0,1,1,0,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,2 +1,51,1,9853,0,1,139.0,1,1,1,4,10,134.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9070,0,1,137.0,1,1,1,3,1,141.2,1,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,133.1,1,37,37,6,3,140.0,0,0,0,1,0,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,1,9147,0,1,126.0,1,37,37,4,7,116.9,0,0,1,1,0,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,2 +1,44,1,9130,0,39,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +2,43,1,9991,1,1,130.0,1,37,37,9,9,128.2,0,0,1,1,1,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,131.0,1,19,9,5,3,118.4,0,0,1,1,1,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,138.0,1,19,19,3,3,131.0,1,0,1,1,1,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,1,130.0,1,37,12,9,8,129.4,1,0,0,0,0,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,9991,1,1,134.0,1,37,37,9,9,113.7,0,0,1,1,1,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,5,9853,0,1,117.0,1,38,38,9,7,114.6,1,0,1,1,1,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,145.0,1,3,3,4,4,153.1,1,0,1,1,1,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,2 +1,43,1,9085,0,1,130.0,1,19,38,4,9,130.0,1,0,1,0,1,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9119,0,1,146.0,1,37,37,9,9,148.5,1,0,1,1,0,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,136.0,1,1,1,4,4,124.1,0,0,1,1,1,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,100.0,1,37,38,9,4,140.0,0,0,1,1,0,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,2 +1,44,1,9003,0,39,180.0,1,1,3,4,2,180.0,0,0,1,1,1,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,1 +1,15,1,9773,0,1,120.0,26,19,19,4,5,120.0,1,0,1,1,1,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,141.0,1,4,19,4,10,100.0,0,0,1,1,0,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,1,150.0,1,29,10,6,6,150.0,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,5,5,9254,0,1,122.0,1,1,37,9,7,119.6,1,0,1,1,1,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,128.0,1,19,38,9,7,124.2,1,0,1,1,0,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9130,0,1,172.0,1,19,19,9,9,163.3,1,0,1,1,1,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,129.0,1,38,37,5,5,142.0,1,0,1,1,1,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,100.0,1,1,3,9,10,120.0,0,0,0,0,0,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,1 +1,1,3,9238,0,1,135.0,1,1,12,9,10,121.0,1,0,1,1,1,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,136.0,1,2,2,3,3,120.0,1,0,1,1,0,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,2 +1,1,6,9147,0,1,143.0,1,38,37,9,9,128.7,1,0,1,1,0,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,2 +1,17,2,9500,0,1,126.0,1,37,37,7,7,126.2,1,0,1,1,1,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,2 +1,17,2,9254,0,1,135.0,1,19,19,4,3,135.0,1,0,1,1,0,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,2 +1,1,2,9254,0,1,132.0,1,1,19,9,9,129.9,1,0,1,1,1,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +2,39,1,8014,1,1,120.0,1,34,34,0,0,104.0,0,0,1,1,1,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,0 +2,39,1,8014,1,9,133.1,1,37,37,8,10,100.0,1,0,1,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,43,1,9147,0,1,130.0,1,19,37,7,10,138.0,0,0,1,1,1,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,1 +1,17,2,9119,0,1,120.0,1,1,19,9,8,117.2,0,0,1,1,0,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,133.1,1,1,12,4,5,116.5,0,0,1,1,0,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,105.0,1,19,19,6,6,106.1,1,0,1,1,1,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,118.0,1,1,19,4,8,118.7,0,0,1,1,0,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,6,9500,0,1,140.0,1,3,19,3,8,129.0,1,0,1,1,1,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,168.0,1,19,19,4,4,171.2,0,0,1,1,0,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,133.0,1,19,9,0,0,121.5,1,0,1,1,1,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,177.0,1,1,38,3,9,162.3,0,0,1,1,1,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,130.0,1,38,38,2,9,124.8,0,0,1,1,1,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,136.0,1,38,1,5,6,133.9,1,0,1,1,1,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,154.0,1,1,1,5,3,144.9,0,0,1,1,0,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,1 +1,44,1,9119,0,39,150.0,1,19,37,9,9,150.0,1,0,0,1,0,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,0 +1,1,4,9254,0,1,132.0,1,12,19,9,9,124.7,1,0,1,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,33,0,1,100.0,41,38,37,9,8,100.0,0,0,0,0,0,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9085,0,1,120.0,1,4,1,2,9,113.4,0,0,1,1,1,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,134.0,1,1,19,9,9,136.1,1,0,1,1,1,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9500,0,1,150.0,1,1,19,5,3,140.0,0,1,1,1,1,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,129.0,1,37,37,9,9,128.8,1,0,1,1,1,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +2,39,1,9500,0,1,100.0,1,37,38,4,4,130.0,0,0,1,1,0,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,2 +1,1,1,9773,0,1,140.0,1,19,37,9,6,135.8,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,7,1,9085,0,40,150.0,1,19,19,9,5,150.0,0,0,0,0,1,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9500,0,1,148.0,1,1,37,4,8,132.0,1,0,1,1,1,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,1 +1,7,1,9119,0,40,140.0,1,3,1,2,5,140.0,0,0,1,1,0,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,163.0,1,19,1,9,7,143.1,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,3,9070,0,1,164.0,1,1,1,5,3,161.2,1,0,1,1,1,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,1 +1,1,6,9773,0,1,141.0,1,30,37,7,7,128.4,1,0,0,0,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,0 +1,43,2,9147,0,1,126.0,1,1,19,3,3,100.0,1,0,1,1,0,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,171,0,1,141.0,1,19,19,5,10,135.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,4,9670,0,1,117.0,1,3,3,4,4,113.2,0,0,1,1,0,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +2,43,1,9991,1,3,140.0,1,37,19,9,4,140.0,0,0,0,1,1,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,134.3,0,0,1,1,0,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,137.0,1,38,19,9,7,125.1,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,130.0,1,37,37,9,6,134.0,0,0,1,1,1,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,123.0,1,37,37,7,7,119.7,0,0,1,1,0,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9147,0,1,120.0,1,37,37,9,9,104.7,1,0,1,1,0,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9238,0,1,137.0,62,1,1,9,9,129.3,0,0,1,1,1,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,8014,1,1,122.0,1,37,19,9,9,123.8,0,0,1,1,1,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,1 +2,39,2,8014,1,1,100.0,1,34,34,0,0,100.0,1,0,1,1,1,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,1 +2,1,1,9991,1,2,120.0,1,37,37,6,3,129.2,0,0,1,1,1,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,150.0,1,3,19,2,6,150.0,0,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9991,1,1,123.0,1,1,3,4,2,113.2,0,0,1,0,0,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,0 +1,1,3,9773,0,1,130.0,1,1,37,4,5,120.9,1,0,0,1,1,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,146.0,1,19,3,4,9,127.0,0,0,1,1,0,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,44,1,171,0,39,160.0,1,19,38,9,9,160.0,1,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9085,0,39,150.0,1,38,37,6,6,150.0,1,0,1,1,1,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,1 +1,17,2,9254,0,1,136.0,1,19,19,4,7,123.1,1,0,1,1,1,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +2,39,1,9670,0,1,150.0,1,37,19,9,4,135.6,0,0,1,1,1,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,1 +1,1,6,171,0,1,134.0,1,19,37,5,5,126.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +4,39,1,9773,0,38,133.1,1,19,19,7,9,133.0,0,0,1,1,1,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,2 +1,17,2,9119,0,1,120.0,1,10,12,9,9,120.4,1,0,1,1,0,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,4,9254,0,1,113.0,1,38,19,7,7,107.4,1,0,1,1,1,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,137.0,1,1,19,4,5,136.3,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,142.0,1,37,37,9,7,132.7,1,0,1,1,1,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,1 +1,18,5,9085,0,1,121.0,1,5,3,2,3,111.9,1,0,1,1,1,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,9,133.1,1,34,36,0,90,107.5,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,8014,1,19,133.1,1,19,37,6,8,149.5,0,0,1,1,0,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9147,0,1,120.0,1,1,37,4,9,113.4,1,0,1,1,0,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,130.0,1,37,38,9,5,130.5,1,0,1,1,1,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,153.0,1,1,19,9,10,147.8,0,0,1,1,1,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,1 +1,1,1,171,0,1,159.0,1,3,1,4,4,162.2,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,122.0,1,37,37,5,6,114.3,0,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,2,9556,0,19,133.1,1,37,37,3,7,117.8,0,0,1,1,1,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,132.0,1,38,1,9,9,124.3,1,0,1,1,1,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,141.0,1,19,19,9,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,1 +1,17,1,9500,0,1,152.0,1,19,19,4,9,132.5,0,0,1,1,0,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,1 +1,17,1,9991,1,40,127.0,1,37,37,6,6,124.9,0,0,1,1,1,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,133.1,1,1,19,4,6,106.0,1,0,1,1,1,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,19,37,4,7,150.0,1,0,1,1,1,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,1 +1,1,1,9254,0,1,125.0,1,1,1,191,193,114.5,0,0,1,1,0,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,134.0,1,19,19,4,7,131.0,1,0,1,1,0,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,1 +1,1,2,9500,0,1,134.0,1,19,19,9,9,125.8,1,0,1,1,1,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,1 +1,17,1,171,0,1,125.0,1,37,37,7,9,134.1,1,0,1,1,0,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,0 +1,51,1,9254,0,1,120.0,1,38,38,9,9,118.0,0,0,1,1,1,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,155.0,1,1,1,4,3,140.5,1,0,1,1,1,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,125.0,1,1,1,4,90,125.4,1,0,1,1,0,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,1,5,5,126.3,0,0,1,1,0,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,1 +1,39,1,9147,0,1,140.0,1,37,3,9,2,135.1,0,0,1,1,0,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,5,171,0,1,122.0,1,19,12,5,9,127.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,2,9670,0,1,150.0,1,34,34,0,0,107.0,1,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,3,130.0,1,19,19,3,9,130.0,0,0,1,0,0,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,0 +1,39,1,33,0,1,133.1,1,19,37,9,9,96.1,0,0,1,1,0,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,0 +2,42,1,9500,0,2,130.0,1,37,37,9,9,130.0,0,0,1,1,1,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,1 +1,18,1,9238,0,1,137.0,1,19,38,5,8,137.4,1,0,1,1,1,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,2 +1,1,1,9254,0,1,140.0,1,19,1,9,8,140.9,1,0,1,1,1,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,132.0,1,1,2,9,3,128.2,1,0,1,1,1,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,17,4,9085,0,1,126.0,1,1,3,5,5,123.9,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,19,133.1,1,37,37,9,7,106.5,0,0,1,1,1,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,132.0,1,37,19,7,7,132.4,1,0,1,1,1,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,139.0,1,37,38,9,9,126.1,0,0,1,1,1,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,136.0,1,19,38,9,9,123.0,1,0,1,1,1,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,140.0,1,1,38,9,1,140.0,1,0,1,1,0,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,123.0,1,19,19,9,8,134.0,0,0,1,1,1,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,130.0,1,38,19,9,4,118.4,0,0,0,1,1,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,126.0,1,1,1,9,9,116.2,0,0,0,0,0,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,19,1,7,10,105.0,0,0,1,1,0,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,0 +1,17,1,9119,0,1,130.0,1,19,19,7,9,121.3,1,0,1,1,0,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,0 +1,43,1,9500,0,19,133.1,1,34,34,0,0,110.0,1,0,1,1,0,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,0 +1,1,3,9070,0,1,139.0,1,1,38,4,7,142.2,1,0,1,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,142.0,1,38,1,5,4,136.6,0,0,1,1,1,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,1 +1,17,2,9670,0,1,128.0,1,37,38,5,8,121.7,0,0,1,1,0,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,140.0,1,1,3,9,4,140.0,0,0,0,0,1,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,125.0,1,19,19,9,10,122.0,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,8014,1,1,130.0,1,37,37,9,8,103.5,0,0,1,1,1,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,1 +1,17,3,9085,0,1,117.0,1,19,38,5,7,111.1,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,42,1,9085,0,39,140.0,1,19,3,9,1,159.9,1,0,1,1,1,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,1 +1,1,2,9254,0,1,112.0,1,37,37,6,6,106.1,1,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9070,0,1,117.0,1,5,1,2,10,120.0,1,0,1,1,1,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,2 +1,7,1,9556,0,2,130.0,1,37,37,9,9,130.0,1,0,1,1,1,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,40,140.0,1,1,19,9,9,139.0,0,0,1,1,1,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,10,130.0,0,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,51,1,9070,0,1,135.0,1,3,1,3,5,121.8,0,0,1,1,1,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,135.0,1,19,3,9,4,121.5,1,0,1,1,1,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,136.0,1,19,38,4,8,125.5,1,0,1,1,1,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,142.0,1,3,37,4,8,132.4,1,0,1,1,1,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,142.0,1,34,38,4,7,127.3,0,0,1,1,1,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,1 +1,15,1,9147,0,1,130.0,26,1,1,2,3,130.0,0,0,1,1,1,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,17,2,8014,1,1,133.0,1,19,1,5,5,119.7,1,0,1,1,1,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,6,133.1,1,1,1,90,3,107.0,1,0,1,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,130.0,1,1,1,4,5,123.8,0,0,1,1,1,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9670,0,1,130.0,1,38,37,5,5,123.4,1,0,1,1,1,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,130.0,1,37,36,4,90,127.6,0,0,1,1,0,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +2,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,2 +1,1,5,9070,0,1,122.0,1,37,37,9,9,124.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,3,120.0,1,37,37,9,9,141.0,0,0,1,1,1,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,0 +1,43,1,33,0,1,134.0,1,37,37,1,1,100.0,1,0,1,1,0,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,0 +1,18,1,9773,0,1,125.0,1,19,37,9,5,122.2,0,0,1,0,1,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,113.4,0,0,1,1,1,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,142.0,1,19,39,5,4,141.7,0,0,1,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,137.0,1,1,38,5,8,125.8,0,0,1,0,1,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,141.0,1,1,37,4,3,126.8,1,0,1,1,1,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,1 +1,17,4,9500,0,1,133.0,1,4,4,4,4,130.7,1,0,1,1,1,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,1 +1,1,2,9500,0,1,119.0,1,1,1,4,4,115.2,1,0,1,1,1,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,128.0,1,1,1,4,10,118.9,1,0,1,1,1,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,130.0,1,37,38,7,8,119.3,1,0,1,1,1,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,148.0,1,3,1,4,5,132.8,0,0,1,1,1,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,1 +1,1,5,9500,0,1,143.0,1,37,19,4,4,123.3,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9147,0,1,130.0,1,34,34,99,99,109.8,1,0,1,0,0,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9085,0,2,140.0,1,38,38,9,10,150.0,0,0,1,1,0,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9670,0,42,110.0,1,1,19,9,9,114.2,0,0,1,1,0,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,1 +1,53,1,9147,0,42,140.0,1,3,4,2,1,140.2,0,0,1,1,1,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,145.0,1,19,38,9,7,136.3,1,0,1,1,1,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,38,37,9,9,154.4,0,0,1,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,127.0,1,38,38,9,6,122.8,0,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,120.2,1,0,1,1,0,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,124.0,1,3,1,2,5,121.6,0,0,1,1,1,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,2 +1,17,5,9853,0,1,132.0,1,37,38,5,6,119.1,1,0,1,1,1,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,1 +1,17,6,9670,0,1,110.0,1,1,19,4,10,111.3,0,0,1,1,0,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,120.0,1,38,37,9,9,114.8,1,1,1,1,1,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,140.0,1,19,19,9,3,130.0,0,0,1,1,0,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9254,0,1,120.0,1,37,37,9,9,115.1,1,0,1,0,0,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,142.0,1,1,37,5,7,128.0,0,0,1,1,1,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,168.0,1,37,1,9,4,133.4,1,0,1,1,1,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,1 +1,43,4,9085,0,1,133.1,1,34,34,99,99,125.2,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9147,0,1,123.0,1,1,1,9,7,117.4,1,0,1,1,1,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,1 +1,1,6,9119,0,1,135.0,1,2,1,3,5,123.5,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,2 +1,17,2,9254,0,1,118.0,22,19,37,9,9,110.3,1,0,1,0,1,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,126.0,1,1,19,4,4,116.9,0,0,1,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,117.0,1,1,38,3,9,109.3,0,0,0,0,1,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,0 +4,39,1,8014,1,1,133.1,1,37,37,9,8,113.0,0,0,1,1,1,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,1 +2,42,1,9991,1,6,123.0,1,37,37,9,9,123.0,0,0,1,1,0,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,2 +1,39,1,9003,0,1,100.0,1,37,37,9,5,110.0,0,0,1,1,1,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,127.0,1,37,38,9,5,131.2,1,0,1,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,110.0,1,37,37,9,7,112.5,1,0,1,1,1,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,126.0,1,19,37,7,5,119.4,0,0,1,1,1,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,121.0,1,1,1,4,3,120.5,1,0,1,1,1,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,134.0,1,1,1,3,3,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,3,9500,0,1,150.0,1,19,38,1,1,130.8,1,0,1,1,1,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,17,5,9119,0,1,124.0,11,4,12,2,9,119.5,1,0,1,1,0,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,117.0,1,19,1,4,7,112.1,0,0,1,1,1,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,2 +1,1,5,9500,0,1,132.0,1,37,37,7,7,120.3,1,0,1,1,1,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,1 +2,39,1,9119,0,1,110.0,1,37,37,90,5,150.0,1,0,1,1,0,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9773,0,1,130.0,1,38,37,5,3,122.3,1,0,0,0,1,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,0 +1,1,1,9556,0,1,118.0,1,19,38,9,9,116.3,1,0,1,1,1,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,120.0,1,3,3,3,3,111.6,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,131.0,1,37,19,9,9,134.5,1,0,1,1,0,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,2 +1,17,2,9556,0,1,133.1,1,37,38,9,8,106.0,1,0,1,1,1,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,2,110.0,1,37,37,9,9,112.9,0,0,1,1,1,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,0 +1,17,2,9773,0,1,126.0,1,19,38,9,8,118.7,1,0,1,1,1,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,140.0,1,1,1,3,3,127.6,1,0,1,1,1,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,163.0,1,19,1,5,10,146.6,1,0,0,1,1,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,39,151.0,1,19,37,4,7,151.0,0,0,0,1,1,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,165.0,1,19,37,5,5,142.3,0,0,1,1,1,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9773,0,19,133.1,1,19,1,7,9,115.0,1,0,0,0,0,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,0 +1,1,2,9556,0,1,130.0,1,1,38,3,8,119.5,1,0,1,1,1,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,1 +1,17,3,171,0,1,125.0,1,3,39,2,5,117.0,1,1,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,2,9147,0,1,133.0,1,19,1,5,10,121.8,0,0,1,1,0,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,2 +1,17,1,9119,0,1,131.0,1,1,3,9,10,123.7,1,0,1,1,0,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,148.0,1,37,38,9,8,133.0,1,0,1,1,1,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9254,0,1,120.0,1,3,19,3,9,114.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9773,0,1,114.0,1,1,1,9,9,111.6,1,0,1,1,1,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,115.0,1,38,1,9,8,118.5,0,0,1,1,0,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,2,5,127.0,0,0,1,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,117.0,1,1,1,4,7,109.3,1,0,1,1,1,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,1 +1,53,1,9085,0,42,140.0,1,19,38,9,9,138.2,0,0,0,0,1,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,125.0,1,1,1,3,3,114.5,0,0,1,1,0,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,1 +1,44,1,9147,0,39,130.0,1,19,1,9,3,130.0,0,0,1,1,1,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,145.0,1,38,19,4,9,127.9,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,128.0,1,37,37,9,8,124.3,1,0,1,1,1,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,1 +1,18,3,9070,0,1,138.0,1,38,37,9,7,125.1,1,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,17,5,9119,0,1,131.0,1,19,37,9,7,123.3,1,0,1,1,0,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,130.0,1,37,19,9,8,106.2,1,0,1,1,1,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,131.0,1,19,38,4,5,132.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,43,1,9003,0,1,120.0,1,37,37,5,9,120.0,1,0,1,1,0,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,132.0,1,4,39,2,2,136.6,1,0,1,1,1,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,2 +1,7,1,9500,0,40,170.0,1,1,1,9,4,170.0,0,0,1,1,1,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,1 +1,16,1,9003,0,1,147.0,1,1,37,4,9,140.7,1,0,0,1,1,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,125.0,1,1,1,4,8,115.6,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,150.0,1,37,37,9,6,138.5,0,0,1,1,1,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,1 +1,1,2,9991,1,1,143.0,1,5,1,4,4,131.5,0,0,1,1,0,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,9556,0,1,133.1,6,3,3,4,4,169.2,0,0,0,0,1,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,39,2,9556,0,1,133.1,1,1,1,9,10,100.5,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +1,17,1,9773,0,1,120.0,1,19,38,9,7,117.9,1,0,1,1,1,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,17,1,171,0,1,146.0,1,1,38,9,9,135.5,1,0,0,1,1,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,2 +1,1,3,9254,0,1,122.0,1,19,38,3,10,114.3,1,0,1,1,1,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,9130,0,1,130.0,1,2,3,9,1,117.6,0,0,1,1,0,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,2 +4,43,4,9991,1,12,133.1,1,37,37,9,9,153.0,0,0,1,0,1,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,18,2,9500,0,1,135.0,1,38,37,9,5,125.3,1,0,1,1,1,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,38,37,9,9,133.0,0,0,1,1,1,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,1 +1,17,1,171,0,1,129.0,1,38,37,4,6,128.0,0,0,1,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,128.0,1,2,19,2,4,123.3,1,0,1,1,1,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,130.0,1,19,3,4,2,159.0,0,0,1,1,1,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,1 +2,7,1,8014,1,3,130.0,1,19,38,3,7,130.0,0,0,1,1,1,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,116.0,1,19,37,3,3,109.0,1,0,1,1,1,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,123.0,1,1,1,3,9,116.7,1,0,1,1,1,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,144.0,1,19,19,4,4,130.7,1,0,1,1,1,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,42,1,9500,0,1,100.0,1,19,37,5,7,134.3,1,0,1,1,1,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,143.0,1,1,19,4,4,129.9,0,0,1,1,1,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,1 +2,39,1,9991,1,19,133.1,1,19,37,7,9,137.2,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9853,0,1,123.0,1,19,19,9,7,117.4,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,144.0,1,19,19,5,5,130.3,1,0,1,1,1,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,137.0,1,1,19,4,7,126.7,1,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,4,9773,0,1,124.0,1,3,12,2,9,137.0,1,0,1,1,0,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,135.0,1,37,37,9,8,123.0,1,0,1,1,1,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,123.0,1,38,37,9,7,120.6,1,0,1,0,1,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,0 +2,2,1,9147,0,2,120.0,1,37,37,9,9,120.0,0,0,1,0,0,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,103.0,1,1,3,2,2,100.6,1,1,1,1,1,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,126.0,1,3,1,2,8,123.9,1,0,1,1,1,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,2 +1,17,4,9500,0,1,136.0,1,3,3,2,2,132.5,1,0,1,1,1,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,114.0,1,3,29,3,5,111.9,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,125.0,1,19,1,9,9,130.6,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,147.0,1,37,38,9,5,134.8,1,0,1,1,1,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,131.0,1,1,19,9,9,130.3,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,118.0,1,3,1,2,5,110.0,1,0,1,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,130.0,1,19,19,4,10,116.8,0,0,1,1,1,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,1 +1,43,1,8014,1,6,133.1,1,34,34,0,0,100.0,0,0,0,1,1,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9670,0,12,170.0,1,1,37,3,5,110.0,0,0,1,1,0,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,1 +2,1,1,9991,1,3,160.0,1,1,3,4,9,137.3,0,0,1,1,1,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,108.0,1,19,1,5,5,107.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,121.0,1,3,3,2,2,112.3,1,0,0,0,1,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,0 +1,1,2,9773,0,1,138.0,1,19,1,9,3,133.5,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,136.0,1,38,38,9,9,121.7,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,0 +1,1,1,9500,0,1,132.0,1,38,37,9,7,122.0,1,0,1,1,1,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,1 +1,17,1,9003,0,1,125.0,1,3,3,2,2,100.0,0,0,1,1,0,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,137.0,1,1,1,1,5,131.8,0,0,1,1,1,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,140.0,1,37,37,9,9,148.0,1,0,1,0,0,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,127.0,1,3,1,3,7,137.2,1,0,1,1,1,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,150.0,1,37,19,9,9,150.0,0,0,1,1,0,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,1 +1,43,4,171,0,1,136.0,1,37,37,9,9,123.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,1,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,1 +1,1,1,9853,0,1,162.0,1,37,19,9,8,142.8,0,0,0,1,1,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,127.0,1,1,38,5,7,123.5,1,0,1,1,1,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,133.1,1,19,37,9,9,130.0,0,0,1,0,1,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,1 +1,17,2,9070,0,1,121.0,1,1,19,144,144,111.9,1,0,1,1,0,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,115.0,1,19,37,9,9,114.3,0,0,1,1,0,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,0 +1,10,1,9254,0,1,115.0,24,3,1,9,9,116.1,1,0,1,1,1,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,143.0,1,19,3,4,4,147.2,0,0,1,1,1,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,160.0,1,1,38,4,4,160.0,1,0,1,1,0,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,1 +2,1,1,9238,0,1,134.0,1,37,37,5,5,120.4,0,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,133.1,1,38,37,9,4,120.0,0,0,1,1,0,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,1 +1,18,1,9119,0,1,108.0,1,1,1,4,3,105.6,1,0,1,1,0,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,137.0,1,37,37,9,9,141.0,0,0,1,1,0,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9254,0,1,113.0,1,1,2,5,3,106.7,1,0,0,1,0,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,16,1,9085,0,1,140.0,1,1,1,9,9,127.1,1,0,1,1,1,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,1 +1,53,1,9238,0,42,140.0,1,37,37,9,10,136.9,1,0,1,1,1,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,1 +4,39,1,8014,1,19,133.1,1,37,37,9,7,134.5,0,0,1,1,1,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,1 +1,1,2,9773,0,1,125.0,1,19,1,4,5,122.2,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9070,0,1,134.0,1,1,19,3,3,127.7,1,0,1,0,1,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,17,1,9147,0,1,96.0,1,38,37,6,4,96.0,1,0,1,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,0 +1,10,1,9085,0,1,134.0,1,37,37,5,5,134.0,1,0,1,1,1,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,143.0,1,1,3,3,3,149.0,1,0,1,1,1,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,0 +1,18,3,9070,0,1,142.0,1,1,37,4,7,130.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,7,1,9003,0,3,140.0,1,3,19,2,10,140.0,0,0,1,0,0,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,151.0,1,38,37,9,5,138.4,1,0,1,1,1,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,143.0,1,19,19,4,4,135.3,1,0,1,1,1,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,133.0,1,1,19,9,9,132.0,0,0,1,1,0,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,19,133.1,1,37,37,9,5,135.5,0,0,1,1,1,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9254,0,1,134.0,1,37,37,9,9,133.3,1,0,0,1,1,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,0 +1,1,3,9085,0,1,135.0,1,3,2,4,3,121.0,1,0,1,1,1,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,140.0,1,1,1,4,4,123.5,1,0,1,1,1,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,188.0,1,3,3,2,2,178.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9238,0,1,126.0,1,30,19,0,2,121.5,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,131.0,1,3,19,5,5,127.2,1,0,1,1,1,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,1 +1,17,4,9853,0,1,143.0,1,37,37,9,5,127.3,1,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,0 +1,17,2,9238,0,1,111.0,1,19,38,9,9,110.7,1,0,1,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,140.0,1,19,38,9,7,125.7,1,0,1,1,0,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,2 +1,17,6,9500,0,1,126.0,1,19,37,3,9,119.4,1,0,1,1,1,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,131.0,1,1,1,4,9,122.3,0,0,1,1,0,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,128.0,1,1,19,9,8,100.0,1,0,1,1,1,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,138.0,1,19,19,5,1,130.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,1,140.0,1,3,3,1,1,140.0,1,0,1,1,1,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,3,130.0,1,1,19,5,9,130.0,0,0,1,1,0,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9773,0,1,131.0,1,38,1,5,7,131.0,1,0,1,1,0,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,19,133.1,1,19,19,9,7,140.0,0,0,0,0,1,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,133.1,1,37,37,9,9,126.5,0,0,1,1,1,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9500,0,1,132.0,1,37,37,9,7,128.3,1,0,1,1,1,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,1 +1,16,1,171,0,1,145.0,1,3,3,3,3,155.0,1,0,1,1,1,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,2 +4,1,1,9991,1,1,140.0,1,37,37,9,7,139.0,0,0,1,1,1,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,2 +1,17,2,9070,0,1,152.0,1,39,39,3,3,134.2,1,0,1,1,0,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,1,1,9500,0,1,141.0,1,19,19,7,9,139.8,0,0,1,1,1,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,1 +1,1,4,9670,0,1,133.0,1,1,2,4,7,121.1,1,0,1,1,1,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,1 +1,15,1,9147,0,1,135.0,26,1,1,9,7,135.0,0,0,0,1,0,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,2 +2,1,1,9991,1,1,144.0,1,19,19,9,9,151.4,0,0,1,1,1,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,1 +1,18,4,9853,0,1,118.0,1,19,37,9,6,111.4,1,0,0,0,1,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9500,0,1,134.0,1,38,1,9,6,133.5,1,0,1,1,0,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,37,37,9,6,107.0,0,0,1,1,0,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,141.0,1,38,38,9,9,128.4,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,133.0,1,1,1,9,9,128.5,1,0,1,1,1,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,1 +1,51,1,9085,0,40,120.0,1,3,3,4,2,125.0,0,0,1,1,1,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,150.0,1,37,38,3,7,134.5,0,0,1,1,1,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,127.0,1,3,19,4,4,116.9,0,0,1,1,0,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,136.0,1,2,38,143,163,129.7,1,0,1,1,0,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,2 +1,1,2,9773,0,1,159.0,1,1,1,3,3,151.0,1,0,1,1,1,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,165.0,1,37,38,9,8,152.4,1,0,1,1,1,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,1 +1,1,6,9500,0,1,139.0,1,1,1,4,4,124.5,1,0,1,1,1,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,134.0,1,1,1,5,3,128.4,1,0,1,1,1,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,1 +1,17,2,9238,0,1,133.0,1,2,1,3,4,136.2,1,0,1,1,1,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,120.0,1,19,1,8,7,115.1,1,0,1,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,131.0,1,1,39,5,3,122.6,1,0,1,1,1,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,8014,1,1,130.0,1,1,1,9,9,118.1,0,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,1 +1,39,9,9991,1,1,120.0,1,38,38,9,5,144.8,0,0,1,1,0,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9500,0,19,133.1,1,37,37,9,9,129.0,1,0,1,1,1,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,138.0,1,1,19,4,7,123.0,1,0,0,0,1,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,143.0,1,1,37,9,9,135.0,1,0,1,1,1,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,120.0,1,19,1,9,3,120.0,1,0,1,1,0,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,162.0,1,37,1,9,9,165.2,1,0,1,1,1,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,142.0,1,37,37,5,5,131.3,1,0,1,1,1,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,1 +1,1,3,171,0,1,125.0,1,38,37,4,9,115.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,120.0,1,38,37,5,3,110.5,0,0,1,1,1,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,1 +1,42,1,9773,0,6,120.0,1,34,34,0,0,122.0,1,0,1,1,1,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,162.0,1,1,38,4,5,138.6,1,0,1,1,1,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9500,0,1,152.0,1,1,1,4,4,141.0,1,0,1,1,1,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,139.0,1,3,19,3,5,120.8,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,135.0,1,1,1,3,5,130.1,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,1,9670,0,1,127.0,1,3,3,1,1,121.4,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9556,0,1,135.0,1,1,1,1,1,131.5,0,0,1,1,0,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,2 +1,17,3,9670,0,1,147.0,1,37,37,8,8,128.8,0,0,0,1,1,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,133.1,41,38,38,9,8,134.8,0,0,1,1,1,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,133.1,1,37,37,90,8,128.2,0,0,1,1,1,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,131.0,1,1,37,4,4,126.1,1,0,1,1,1,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,9,9,125.3,1,0,1,1,0,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,0 +2,39,1,8014,1,3,110.0,1,37,37,9,9,160.5,0,0,1,1,1,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,138.0,1,38,1,9,4,127.5,1,0,1,1,1,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,2 +1,39,1,9238,0,1,170.0,1,38,19,9,9,140.0,1,0,1,1,1,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,1,19,4,10,142.3,1,0,1,1,1,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,154.0,1,38,37,9,9,140.4,0,0,1,1,1,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,133.1,41,19,1,9,9,105.0,1,0,1,0,1,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +2,44,1,9085,0,39,160.0,1,37,37,192,192,160.0,0,0,1,1,1,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,141.0,1,38,38,9,9,142.3,1,0,1,1,1,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,119.0,1,37,37,7,7,112.0,1,0,1,0,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,137.0,1,37,37,9,9,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,1 +4,39,1,9670,0,1,100.0,1,37,37,4,10,120.0,0,0,0,1,1,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,130.0,1,3,3,2,2,131.1,0,0,1,1,0,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,120.0,1,1,19,9,3,116.9,1,0,0,0,0,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,42,1,9500,0,1,100.0,1,1,19,4,8,136.0,1,0,1,1,1,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,1 +1,1,2,171,0,1,125.0,1,38,19,9,9,117.3,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,152.0,1,1,38,4,9,160.4,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,12,133.1,1,37,37,9,7,139.4,0,0,0,1,1,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,2 +1,1,3,9070,0,1,150.0,1,1,1,4,8,131.5,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,7,1,9556,0,4,190.0,1,5,5,2,2,190.0,1,0,1,1,0,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,0 +1,17,3,9238,0,1,121.0,1,1,1,4,5,117.2,0,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,130.0,1,37,37,9,7,113.0,1,0,1,0,0,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,123.0,1,19,19,4,10,124.4,1,0,1,1,1,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,1 +1,17,2,9238,0,1,133.0,1,37,37,3,9,119.7,0,1,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,138.0,1,38,19,9,10,133.1,0,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,108.0,1,38,38,7,7,105.2,1,0,1,1,0,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,0 +1,1,3,171,0,1,115.0,1,9,1,6,6,108.7,1,0,1,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,4,4,119.8,1,0,1,1,1,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,1 +1,1,6,9119,0,1,126.0,1,19,19,7,3,116.6,1,0,1,1,0,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,1 +2,39,1,9500,0,1,133.1,1,37,37,9,9,130.1,0,0,1,0,0,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,124.0,1,37,38,9,3,114.2,0,0,1,1,1,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,1 +1,17,3,9147,0,1,137.0,1,1,1,4,7,124.4,1,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,2 +1,39,1,9130,0,19,133.1,1,37,37,9,10,156.4,1,0,0,1,0,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,0 +1,18,5,9853,0,1,121.0,1,38,19,7,7,117.5,1,0,0,0,1,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,1,2,9238,0,1,117.0,1,19,1,9,8,110.0,1,0,0,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9147,0,1,148.0,1,1,19,9,6,118.4,1,0,1,1,0,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,133.0,1,1,1,4,4,100.0,0,0,1,1,1,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,17,1,9238,0,1,158.0,1,1,1,5,6,140.5,0,0,1,1,1,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,157.0,1,19,38,9,7,146.2,1,0,1,1,1,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9119,0,1,131.0,1,3,1,4,1,135.9,0,0,1,1,0,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,38,37,5,10,117.8,1,0,1,1,0,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,1 +1,1,2,9119,0,1,126.0,1,1,38,141,192,122.5,1,0,1,1,0,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,117.0,1,37,37,0,4,120.5,1,0,1,1,0,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9254,0,1,110.0,1,12,19,9,9,125.0,0,0,1,0,0,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,0 +1,18,1,9147,0,1,121.0,1,19,3,5,5,115.8,1,0,1,1,1,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,1 +1,39,1,9238,0,19,133.1,1,37,37,9,9,139.0,0,0,0,0,0,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9003,0,3,130.0,1,3,3,6,2,130.0,1,0,1,1,0,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,132.0,1,19,37,3,5,125.4,1,0,1,0,1,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,133.1,1,38,38,4,7,115.6,1,0,1,0,1,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,129.0,1,1,2,3,1,125.9,1,0,1,1,1,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,37,37,9,9,143.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,126.0,1,3,19,3,3,115.2,0,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,123.0,1,19,38,9,10,116.7,1,0,1,1,1,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,1 +1,17,2,9254,0,1,125.0,1,37,37,9,8,122.6,1,0,0,0,1,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,39,1,9119,0,1,160.0,1,38,37,7,7,129.0,0,0,1,1,0,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,3,19,2,3,133.8,1,0,1,1,1,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,120.0,1,19,19,4,7,115.5,1,0,0,1,0,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,120.0,1,38,38,3,3,140.0,0,0,1,1,1,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9238,0,1,127.0,1,1,19,4,3,141.7,1,0,1,1,0,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,111.0,1,37,37,9,10,95.8,1,0,1,0,0,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,130.0,1,38,1,9,4,140.0,1,0,1,1,1,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,1 +1,1,2,9147,0,1,131.0,1,1,1,9,9,118.8,0,0,1,1,0,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,161.0,1,1,19,4,4,152.3,0,0,1,1,1,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,124.0,1,38,38,9,9,115.6,0,0,1,1,0,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,160.0,1,3,3,1,2,149.2,0,0,1,1,0,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,16,3,9853,0,1,134.0,1,19,37,9,9,121.1,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,2 +1,43,2,9991,1,1,140.0,1,37,37,5,5,124.3,1,0,1,0,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,127.0,1,38,37,5,7,123.9,1,0,1,1,1,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,120.0,1,19,37,6,8,160.0,0,0,1,1,0,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,1 +1,39,1,9085,0,1,133.1,1,3,3,4,2,144.9,1,0,1,1,1,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,130.0,1,1,19,3,10,130.0,1,0,1,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,1 +1,42,1,9003,0,1,130.0,1,3,2,2,6,105.3,0,0,1,0,0,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9991,1,1,130.0,1,37,37,9,9,127.6,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,100.0,1,1,38,4,6,104.8,0,0,0,0,1,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,0 +1,1,5,9070,0,1,125.0,1,3,3,2,2,140.8,1,0,1,1,0,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,133.1,1,34,38,0,4,147.0,0,0,1,1,1,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,126.0,1,34,34,0,0,142.4,0,0,1,1,1,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,121.0,1,19,38,4,10,114.4,0,0,1,1,1,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,133.1,1,37,37,5,0,111.5,0,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,130.0,1,1,19,5,5,129.1,1,0,1,1,1,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,3,1,4,6,130.0,0,0,1,1,0,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,2 +1,39,1,9500,0,1,123.0,1,19,1,1,1,140.8,0,0,1,1,1,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,1 +1,44,1,9070,0,39,130.0,1,1,1,4,10,130.0,1,0,1,1,1,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,1 +4,39,1,9085,0,1,133.1,1,34,34,0,0,128.2,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,128.0,1,37,37,9,9,135.7,1,0,1,1,0,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,135.0,1,38,38,4,7,121.7,1,0,1,1,1,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,2 +1,43,1,9085,0,1,110.0,25,38,38,9,6,117.2,1,0,1,1,0,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,1 +1,43,3,9500,0,1,140.0,1,1,19,9,7,127.5,1,0,0,1,1,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,1 +1,17,3,9238,0,1,133.1,1,41,1,2,3,117.0,1,0,1,1,1,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9254,0,1,112.0,1,37,37,9,9,108.5,0,0,1,1,0,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,51,1,9238,0,39,140.0,1,38,38,5,7,129.1,1,0,1,1,1,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,122.0,1,38,19,9,9,126.6,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,123.0,1,1,1,4,4,114.4,0,0,1,1,0,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,0 +1,18,4,171,0,1,133.0,1,1,4,9,5,129.2,1,0,0,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,128.0,1,19,19,9,5,121.7,1,0,1,1,1,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,1 +1,39,1,9130,0,1,150.0,1,19,19,9,5,160.0,1,0,1,1,0,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,160.0,1,19,37,5,3,152.0,0,0,1,1,1,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,53,1,9085,0,42,140.0,1,19,37,9,8,142.5,1,0,1,1,1,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,130.0,1,9,19,4,1,134.2,1,0,1,1,1,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,3,9254,0,1,121.0,1,19,19,9,6,125.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,1,128.0,1,19,1,9,10,157.4,1,0,1,1,1,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,146.0,1,37,37,9,7,149.2,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9853,0,12,133.1,1,37,37,7,8,103.0,0,0,1,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,143.0,1,19,19,5,6,142.3,0,0,1,1,1,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,2 +1,1,2,9085,0,1,118.0,1,1,19,3,3,112.4,1,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,2 +2,43,1,9991,1,1,100.0,1,37,37,9,9,128.2,0,0,1,1,0,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,118.0,1,38,38,5,5,110.0,0,0,1,1,1,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9147,0,1,136.0,1,38,38,9,9,127.3,1,0,1,1,0,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,170.0,1,19,19,8,8,176.7,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,124.0,41,19,38,9,9,123.3,1,0,1,1,1,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,1 +1,1,4,9070,0,1,170.0,1,3,3,2,2,165.8,1,0,1,1,0,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,3,37,9,9,142.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9147,0,1,122.0,1,1,38,4,5,116.4,0,0,1,1,0,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,150.0,1,1,1,4,4,138.1,1,0,1,1,1,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,2 +1,17,6,9238,0,1,138.0,1,3,3,1,2,123.0,1,0,1,1,1,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,135.0,1,19,12,9,7,137.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9070,0,1,125.0,1,1,3,3,3,128.9,0,0,1,1,1,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,128.0,1,38,19,9,10,125.2,1,0,1,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,2 +1,42,1,9003,0,1,140.0,1,1,3,4,2,140.0,1,0,1,1,0,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,2 +1,39,1,9500,0,19,133.1,1,37,38,151,161,143.7,0,0,1,1,1,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,118.0,1,38,38,7,7,115.2,1,0,1,1,1,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,152.0,1,19,37,9,8,135.6,1,0,1,1,0,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,12,110.0,1,34,34,0,0,157.8,0,0,1,1,1,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,1 +1,1,6,9147,0,1,112.0,1,38,38,9,9,117.3,1,0,1,1,1,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,1 +1,17,3,9147,0,1,118.0,1,1,19,5,7,118.0,0,0,1,1,1,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,2 +1,44,1,9070,0,39,120.0,1,1,19,5,8,119.8,0,0,1,1,0,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9670,0,1,133.1,1,19,19,3,9,118.0,0,0,1,1,0,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,159.0,1,1,19,9,9,151.3,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,118.0,1,1,38,5,7,120.8,1,0,1,1,1,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,132.0,1,1,37,8,9,128.0,1,0,1,1,1,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,1 +1,42,1,9147,0,1,135.0,1,19,1,4,4,120.0,0,0,1,0,0,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9670,0,1,122.0,1,1,38,3,3,114.3,1,0,1,1,1,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,171,0,1,131.0,1,1,1,0,3,149.9,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +4,39,2,9556,0,1,133.1,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,5,9119,0,1,126.0,1,12,19,4,5,122.5,1,0,1,1,0,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,145.0,1,2,38,3,8,136.3,1,0,1,1,1,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,2 +1,15,1,9147,0,1,150.0,1,38,1,9,1,150.0,0,0,1,1,0,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,150.0,1,3,39,3,7,126.4,0,0,1,1,0,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,2 +1,17,2,9773,0,1,148.0,1,3,38,2,6,144.2,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,124.0,1,37,19,9,3,116.3,1,0,1,1,1,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +2,39,1,9003,0,1,130.0,1,1,37,9,1,122.0,0,0,0,0,0,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,160.0,1,19,38,5,7,139.0,1,0,1,1,1,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,157.0,1,3,2,3,6,150.9,1,0,1,1,1,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,0 +1,42,1,9119,0,1,120.0,1,1,1,5,7,108.6,0,0,1,0,0,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,0 +1,16,3,9773,0,1,138.0,1,37,38,4,9,134.2,1,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,110.0,1,0,1,1,1,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,0 +4,39,1,9853,0,1,143.0,1,37,1,9,10,140.0,0,0,0,0,1,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,130.0,1,3,19,4,8,133.0,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,19,38,6,7,140.0,1,0,1,1,0,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,132.0,1,2,2,6,6,128.5,0,0,1,1,1,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,0 +1,1,2,171,0,1,135.0,1,19,19,4,7,149.0,1,0,1,1,0,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,130.0,1,19,38,3,9,126.5,1,0,1,1,1,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,125.0,1,19,38,9,8,121.5,0,0,1,1,1,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,37,37,9,7,129.0,0,0,1,1,1,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,0 +1,7,3,9130,0,3,130.0,1,37,26,90,10,130.0,0,0,1,0,0,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,2,9500,0,1,123.0,1,19,19,7,7,120.8,1,0,1,1,1,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,1 +1,18,2,9853,0,1,168.0,1,1,19,3,9,126.8,1,0,1,1,0,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,2 +1,44,1,9085,0,39,140.0,1,3,1,4,3,140.0,1,0,1,1,1,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,148.0,1,19,19,9,9,138.7,0,0,1,1,1,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,1 +1,18,1,171,0,1,110.0,1,19,2,5,5,117.7,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9070,0,1,136.0,1,37,38,9,9,125.2,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +2,39,1,8014,1,1,133.1,1,37,37,5,4,134.5,0,0,1,1,1,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,2 +1,42,1,9119,0,1,150.0,1,38,37,5,8,133.5,1,0,1,1,0,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,140.0,1,1,3,4,6,139.2,0,0,0,1,1,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,125.0,1,19,19,5,5,117.0,0,0,1,1,1,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,1 +1,39,1,9147,0,12,133.1,1,19,37,7,9,118.2,0,0,1,1,1,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,0 +1,1,2,9147,0,1,121.0,1,1,19,9,9,113.7,1,0,1,0,1,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,0 +1,43,1,9130,0,1,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,131.0,1,3,19,2,3,132.8,1,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,1 +1,17,3,9500,0,1,136.0,1,37,38,4,5,126.0,1,0,1,1,1,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,1 +1,1,1,9853,0,1,145.0,1,37,37,9,5,146.8,0,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,123.0,1,1,1,4,9,116.7,1,0,1,1,0,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,0 +1,18,1,171,0,1,121.0,1,1,1,4,3,116.8,1,0,1,1,1,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,141.0,1,38,1,9,4,129.0,1,0,1,1,1,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,133.1,1,34,34,0,0,130.0,0,0,1,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,126.0,1,1,3,4,3,122.5,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,0 +2,1,1,9254,0,1,136.0,1,37,37,9,9,122.7,0,0,1,1,1,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,37,37,9,10,100.0,0,0,1,1,0,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9500,0,1,133.1,1,38,19,7,9,115.5,1,0,1,1,0,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,1 +1,1,1,9991,1,1,131.0,1,19,37,9,9,118.4,1,0,1,1,1,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,2 +1,1,1,9147,0,1,153.0,1,1,38,4,3,146.7,0,0,1,1,1,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,1 +1,43,1,8014,1,12,114.0,1,34,34,0,99,110.0,0,0,1,1,1,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,147.0,1,1,1,5,5,134.9,0,1,1,1,1,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,1 +1,1,2,9085,0,1,156.0,1,40,40,3,7,150.9,1,0,1,1,1,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,137.0,1,38,38,5,7,122.7,1,0,1,1,1,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,123.0,1,1,19,4,5,117.8,0,0,1,1,0,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,2 +1,17,1,9238,0,1,135.0,1,37,37,8,6,127.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,131.0,1,37,37,9,9,123.0,1,0,1,1,1,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,2 +1,17,2,9670,0,1,123.0,1,3,1,3,1,116.7,0,0,1,1,1,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,1 +1,7,1,9085,0,40,140.0,1,1,19,5,5,140.0,1,0,1,1,1,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,1 +4,39,1,9500,0,19,133.1,1,38,19,5,7,140.0,0,0,1,1,1,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,127.0,1,3,19,3,9,127.0,1,0,1,1,0,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,1 +1,17,2,8014,1,1,120.0,1,19,1,5,10,114.8,1,0,1,1,1,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9670,0,19,133.1,1,37,37,9,7,130.0,0,0,0,1,0,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,171,0,1,131.0,41,19,1,4,7,131.4,1,0,1,1,0,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,16,2,171,0,1,145.0,1,3,3,2,2,143.6,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,120.0,1,19,38,6,6,120.0,1,0,1,1,0,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,1 +1,17,6,9238,0,1,131.0,1,1,3,4,2,131.7,1,0,1,1,1,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,137.0,1,3,1,4,9,128.6,0,0,1,1,1,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,170.0,1,19,19,9,7,170.0,1,0,0,1,0,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,17,4,9853,0,1,122.0,1,38,37,9,9,118.9,1,0,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,1 +1,17,5,9500,0,1,148.0,1,1,19,4,8,130.2,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9003,0,19,133.1,1,1,19,9,8,120.0,0,0,0,0,0,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,2,9147,0,1,143.0,1,19,38,9,7,132.2,1,0,1,1,1,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9556,0,1,132.0,1,38,37,7,7,119.0,1,0,1,1,1,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,133.1,1,3,1,4,4,95.0,0,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,154.0,1,3,1,2,1,137.2,0,0,1,1,0,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,2 +1,1,1,9853,0,1,129.0,1,38,37,6,6,138.1,0,0,1,1,1,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,17,2,9670,0,1,129.0,1,1,19,5,5,119.2,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,43,1,9500,0,1,137.0,1,3,3,2,2,115.0,0,0,1,1,1,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,1 +1,17,2,9254,0,1,115.0,1,19,19,9,7,113.3,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,133.0,1,38,38,7,7,125.3,1,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,110.0,1,37,37,7,10,150.0,0,0,1,0,1,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,19,133.1,1,19,19,144,141,131.5,0,0,0,1,1,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,133.0,1,38,1,2,4,126.0,0,0,1,1,1,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,15,1,9147,0,1,133.1,41,41,1,3,4,100.0,0,0,0,0,0,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,0 +1,10,2,9773,0,1,154.4,22,19,38,3,5,154.4,1,0,1,0,1,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,9070,0,39,100.0,1,1,1,4,4,106.0,0,0,1,1,0,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,135.0,1,38,19,8,8,126.3,1,0,0,1,1,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,120.0,41,1,1,9,6,114.8,1,0,1,1,1,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,2 +1,17,1,9085,0,1,124.0,1,19,38,7,7,113.9,1,0,1,1,1,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,1 +1,1,6,9254,0,1,126.0,1,38,37,5,7,123.9,1,0,1,1,1,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,125.0,1,37,37,9,9,121.5,1,0,1,1,0,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,1 +1,1,6,9773,0,1,125.0,1,1,1,5,4,122.2,0,0,1,1,0,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,135.0,1,19,19,4,5,126.8,1,0,1,1,0,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9238,0,1,133.0,1,1,37,7,9,127.4,1,0,1,1,1,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,3,9070,0,1,127.0,1,19,38,5,7,141.0,1,0,1,1,0,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +2,39,1,9119,0,3,120.0,1,37,37,4,7,122.5,0,0,1,0,1,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,2,9147,0,1,150.0,1,19,37,9,7,101.0,0,0,0,0,1,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,0 +1,7,1,9003,0,4,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,1 +1,17,5,9500,0,1,143.0,1,38,1,9,7,130.6,1,0,1,1,1,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,129.0,1,38,19,5,7,124.0,1,0,1,1,1,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,1 +1,17,2,9500,0,1,140.0,1,1,1,5,10,128.5,1,0,1,1,1,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,2 +4,39,1,8014,1,19,100.0,1,1,37,9,1,111.5,0,0,1,1,0,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,0 +2,39,2,9556,0,1,110.0,1,19,38,9,9,112.8,0,0,1,1,1,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,2 +1,1,1,9147,0,1,116.0,1,19,19,5,8,127.9,0,0,0,0,1,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,0 +1,43,4,171,0,1,117.0,1,19,12,9,10,109.3,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,130.0,1,1,38,5,5,122.3,1,0,1,1,1,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,1 +1,15,1,9119,0,1,130.0,26,38,3,9,2,137.0,1,0,1,1,0,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,2 +1,39,1,9556,0,1,133.1,1,38,19,9,6,100.0,1,0,1,1,1,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,150.0,1,3,1,3,9,154.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,43,1,9147,0,1,131.0,1,3,19,2,9,126.1,0,0,1,1,1,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,2 +1,1,6,9773,0,1,145.0,1,1,19,4,4,131.0,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,136.0,1,19,38,4,7,140.9,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,155.0,1,19,37,4,5,117.5,0,0,1,1,1,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,2 +1,1,3,9147,0,1,128.0,1,3,3,5,10,116.5,0,0,1,1,0,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,17,4,9254,0,1,133.0,1,37,37,5,8,128.5,1,0,1,1,1,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,0 +1,17,1,9119,0,1,141.0,1,37,1,9,2,133.0,1,0,1,1,0,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,2 +1,51,1,8014,1,1,120.0,1,1,1,4,4,128.5,0,0,0,0,0,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,0 +1,43,1,9003,0,1,120.0,1,3,3,1,2,115.0,0,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,136.0,1,19,19,4,7,136.0,0,0,1,1,1,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,1 +1,17,1,9070,0,1,116.0,1,38,38,9,9,123.7,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,125.0,1,19,19,4,8,117.0,1,0,1,1,1,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,135.0,1,1,38,5,7,137.5,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,140.0,1,19,19,7,7,124.6,1,0,1,1,1,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,2 +1,39,1,9670,0,19,133.1,1,1,1,4,7,100.0,0,0,0,0,1,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,122.0,1,37,37,9,9,131.0,1,0,1,1,1,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,0 +2,43,1,9773,0,1,160.0,1,37,37,5,0,160.0,0,0,0,0,0,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9670,0,1,113.0,1,37,19,9,9,110.2,1,0,1,1,1,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,125.0,1,37,37,9,9,126.0,1,0,0,1,1,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,1 +1,43,1,171,0,39,140.0,1,38,37,9,7,140.0,0,0,1,0,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,16,3,9853,0,1,134.0,1,37,19,9,5,121.4,1,0,1,1,1,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,2 +1,1,1,8014,1,1,120.0,1,1,37,7,3,122.8,0,0,1,1,1,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,1,1,4,2,127.7,0,0,1,1,1,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,2 +2,39,1,9991,1,1,120.0,1,19,37,3,9,132.9,0,0,1,1,0,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,138.0,1,1,38,4,9,132.5,1,0,1,1,1,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,133.1,1,19,37,7,7,126.0,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +5,39,1,9500,0,1,110.0,1,38,38,9,9,110.0,0,0,1,0,1,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,0 +5,7,1,9500,0,40,150.0,1,37,37,4,9,150.0,0,0,1,1,1,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,1 +1,17,1,9070,0,1,126.0,1,19,38,9,7,118.7,0,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,16,4,9254,0,1,126.0,1,38,37,9,7,118.7,1,0,1,1,1,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,3,9773,0,1,110.0,1,19,19,5,5,105.5,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,1 +1,39,1,9238,0,9,133.1,1,34,34,0,0,118.0,0,0,1,1,1,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,140.0,1,3,2,4,6,133.4,1,0,1,0,0,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,2 +1,1,1,171,0,1,134.0,1,3,2,2,2,141.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,6,9773,0,1,133.1,1,1,1,90,90,129.6,0,0,1,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,133.1,1,38,19,5,6,138.0,0,0,0,1,0,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,2 +1,17,3,9500,0,1,156.0,1,19,37,4,9,132.3,1,0,1,1,0,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,1 +1,44,1,9085,0,39,140.0,1,3,3,4,2,140.0,1,0,1,1,1,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,1 +1,43,1,171,0,1,116.0,1,3,1,2,3,117.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,141.0,1,38,19,9,6,126.3,1,0,1,1,1,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,44,1,9238,0,39,140.0,1,1,19,191,102,143.0,0,0,1,1,1,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,1 +1,43,5,8014,1,1,110.0,1,34,34,0,0,110.0,0,0,1,1,0,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9238,0,1,143.0,1,1,11,4,3,128.0,1,0,1,1,1,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +3,17,1,9238,0,1,138.0,1,37,37,9,9,133.5,1,0,1,1,1,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,2 +1,7,1,9119,0,3,150.0,1,3,2,2,2,150.0,0,0,1,1,1,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9003,0,39,150.0,1,19,1,1,1,150.0,0,0,1,1,0,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,2 +1,17,1,9085,0,1,134.0,1,19,37,2,7,131.2,0,0,1,1,1,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,171,0,1,133.1,1,37,37,9,7,100.0,0,0,0,1,0,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,18,1,9556,0,1,133.1,1,3,19,2,8,106.0,1,0,1,1,0,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,1 +1,17,2,9500,0,1,135.0,1,19,19,9,4,129.8,1,0,1,1,1,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,1 +1,39,1,33,0,1,130.0,1,38,37,9,6,102.5,0,0,0,0,0,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,0 +1,18,1,9500,0,1,144.0,1,37,37,6,6,127.5,1,0,1,1,1,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,130.0,1,37,38,9,9,133.9,1,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,1 +2,44,1,9003,0,39,140.0,1,37,37,4,7,140.0,0,0,1,1,0,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,0 +1,1,4,9773,0,1,137.0,1,3,19,2,3,139.8,1,1,1,1,1,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,2 +1,1,1,9991,1,1,130.0,1,2,37,3,9,131.4,0,0,1,1,0,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,135.0,1,3,3,1,1,125.8,1,0,1,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,1 +1,18,1,9238,0,1,147.0,1,38,34,4,0,130.2,0,0,1,1,1,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +5,17,5,9500,0,1,143.0,1,37,38,5,8,133.5,1,0,1,1,1,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,99.0,1,1,3,5,10,100.0,1,0,1,1,0,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,1 +1,16,2,9147,0,1,131.0,1,37,37,9,9,135.9,1,0,1,1,0,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,146.0,1,38,37,6,6,143.9,0,0,1,1,1,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,1 +1,17,1,9085,0,1,139.0,1,38,38,5,3,136.2,0,0,1,1,1,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,153.0,1,3,1,2,8,137.6,1,0,1,1,1,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,17,2,9085,0,1,133.1,1,19,38,9,1,100.0,1,0,0,0,0,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,0 +1,1,2,9773,0,1,121.0,1,19,19,9,9,122.8,0,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,141.0,1,37,38,9,10,138.9,0,0,1,1,1,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,1,6,9500,0,1,117.0,1,4,12,5,9,119.8,1,0,1,1,1,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,1 +1,17,4,9119,0,1,122.0,62,1,1,191,171,121.0,1,0,1,1,0,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,38,19,3,3,98.6,0,0,1,1,1,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,140.0,1,38,37,5,6,124.3,1,0,1,1,1,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,140.0,1,37,37,9,9,127.7,1,0,1,1,1,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,121.0,1,37,37,9,9,124.2,1,0,1,1,1,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,1 +1,18,1,9130,0,1,146.0,1,3,3,5,2,137.8,0,0,1,1,0,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,3,120.0,1,1,1,7,10,120.0,1,0,1,0,0,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,120.0,1,37,37,7,8,120.0,1,0,0,0,1,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,178.0,1,19,1,4,8,174.7,0,0,1,1,1,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,1 +1,17,5,9254,0,1,114.0,1,38,1,5,9,109.5,0,0,1,1,0,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,143.0,1,38,38,9,9,140.0,0,0,1,1,0,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,160.0,1,38,37,9,5,159.3,0,0,1,1,1,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,143.0,1,38,34,9,9,133.6,1,0,1,1,1,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,1 +4,43,1,9500,0,19,100.0,1,34,34,0,0,110.0,0,0,1,1,0,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,1 +1,1,2,9254,0,1,125.0,1,1,19,4,1,121.5,1,0,1,1,0,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,19,7,3,120.0,1,0,1,1,0,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,3,120.0,1,19,1,9,5,134.0,0,0,1,1,1,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,0 +1,39,1,9254,0,1,160.0,1,19,37,7,10,100.0,0,0,1,1,0,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,2 +1,15,1,171,0,1,130.0,26,1,1,2,9,130.0,0,0,1,1,0,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,2 +1,1,1,171,0,1,140.0,1,19,37,5,6,137.9,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,123.0,1,19,37,9,9,124.1,1,0,1,1,1,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,140.0,1,38,38,6,6,140.0,0,0,1,1,1,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,9991,1,9,133.1,1,34,34,0,0,118.4,0,0,1,0,1,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,6,9254,0,1,125.0,1,1,1,4,3,120.5,1,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,1 +1,1,6,171,0,1,126.0,1,10,10,4,4,130.2,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,120.0,1,1,19,4,7,120.0,0,0,1,1,0,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,2 +1,17,5,9773,0,1,143.0,1,1,1,7,7,136.7,1,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,42,1,9147,0,1,130.0,1,37,38,9,1,130.0,1,0,1,1,1,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,1,130.0,1,37,37,9,9,124.0,0,0,1,1,0,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,1 +1,17,2,9238,0,1,136.0,1,1,3,3,4,126.6,1,0,1,1,1,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,127.0,1,19,1,5,7,118.3,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,2 +4,39,1,9991,1,1,147.0,1,19,19,7,8,147.9,0,0,1,1,1,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,2 +1,1,4,9773,0,1,124.0,1,19,37,99,90,124.0,0,0,1,0,1,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +2,43,1,9003,0,1,133.1,1,37,37,9,7,136.0,0,0,1,1,0,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,1 +1,1,1,9085,0,1,140.0,1,12,1,1,90,141.8,0,0,1,1,1,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,133.1,1,37,37,191,154,95.0,0,0,1,1,1,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,147.0,1,2,3,4,8,145.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +2,7,1,9238,0,3,130.0,1,37,19,4,5,130.0,0,0,1,1,1,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,1 +1,7,2,9085,0,3,130.0,1,3,3,1,1,130.0,0,0,1,0,1,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,0 +2,39,2,9147,0,3,130.0,1,3,37,9,9,103.4,0,0,1,1,1,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,0 +1,17,1,9085,0,1,135.0,1,1,19,4,10,125.6,1,0,1,1,1,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,1,1,5,5,96.0,1,0,1,0,0,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +5,39,1,9853,0,19,133.1,1,38,1,5,3,105.5,0,0,0,1,1,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,136.0,1,37,37,7,7,121.7,1,0,1,1,1,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9119,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,0,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,19,133.1,1,19,19,4,4,100.0,0,0,1,1,0,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,2 +1,1,1,171,0,1,124.0,1,2,2,3,2,118.4,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,17,1,9085,0,1,120.0,1,2,3,2,2,116.1,0,0,1,1,1,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,162.0,1,37,37,9,9,142.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,131.0,1,37,1,9,9,135.9,1,0,1,1,1,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,37,37,9,7,100.0,0,0,1,1,0,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,1 +1,43,1,9500,0,1,127.0,1,19,19,4,7,121.1,0,0,1,1,1,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,143.0,1,37,37,9,5,131.6,1,0,1,1,1,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,1 +1,17,4,9085,0,1,140.0,1,19,37,4,7,123.7,0,0,1,1,1,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,156.0,1,19,1,5,10,136.8,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,0 +2,39,1,9853,0,10,133.1,1,37,34,0,0,115.5,0,0,1,1,1,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,0 +1,1,3,9119,0,1,113.0,1,4,38,2,7,107.4,1,0,1,1,0,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,1 +2,39,1,9670,0,1,130.0,1,37,37,9,0,158.0,0,0,0,0,1,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,0 +1,43,1,9853,0,1,110.0,1,37,37,9,9,107.7,0,0,0,0,1,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,124.0,1,2,2,3,3,124.7,1,0,1,1,0,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,127.0,1,37,37,5,10,125.3,0,0,1,1,0,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,1 +1,16,1,9500,0,1,133.1,1,37,37,9,9,95.0,1,0,1,1,1,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,1 +1,1,4,9238,0,1,127.0,1,19,19,4,0,127.4,1,0,1,1,1,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,113.0,1,38,38,3,7,112.3,0,0,1,1,1,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,1 +1,17,4,9670,0,1,110.0,1,19,37,9,99,106.1,1,1,0,0,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,141.0,1,1,38,4,8,136.8,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,133.1,1,37,37,9,7,140.0,0,0,1,1,1,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,124.0,1,1,1,4,4,118.8,0,0,1,1,0,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,4,120.0,1,2,3,2,2,120.0,0,0,1,1,1,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,0 +1,17,2,9670,0,1,110.0,1,3,3,4,10,115.6,1,0,1,1,0,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,118.0,1,1,19,4,10,110.7,1,1,1,1,1,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,2 +4,39,1,9238,0,1,130.0,1,19,3,9,2,140.0,0,0,1,1,0,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,1,140.0,1,1,19,3,9,140.0,1,0,0,0,1,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,0 +1,17,3,9773,0,1,123.0,1,1,19,5,5,117.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,115.0,1,38,38,8,7,112.9,1,0,1,1,1,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,1 +1,1,6,9147,0,1,142.0,1,38,37,7,7,134.3,0,1,1,1,0,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9085,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,1,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,129.0,1,19,1,3,7,121.0,0,0,1,1,1,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,156.0,1,3,3,123,122,155.0,0,0,1,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,136.0,1,37,37,9,9,126.3,1,0,1,1,1,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,1 +2,43,1,9991,1,1,110.0,1,37,37,9,9,132.5,0,0,1,1,0,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,19,133.1,1,37,1,5,5,138.3,0,0,1,1,0,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,0 +1,1,2,9130,0,1,140.0,1,19,37,9,9,129.5,1,0,1,1,1,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,2 +1,7,1,9500,0,3,140.0,1,37,37,4,4,140.0,0,0,1,1,1,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,1 +4,42,1,9147,0,1,110.0,1,37,37,9,9,128.2,0,0,1,1,1,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,1 +1,39,1,9119,0,19,133.1,1,1,1,4,3,134.4,0,0,0,0,0,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,136.0,1,37,1,5,4,120.8,1,0,1,1,1,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,1 +1,17,2,9500,0,1,140.0,1,37,37,9,9,132.5,1,0,1,1,1,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,1 +1,17,6,9147,0,1,130.0,1,37,37,9,9,110.4,1,0,1,1,0,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,4,5,105.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,136.0,1,19,19,4,3,126.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,116.0,1,38,2,9,2,112.2,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9238,0,1,122.0,1,19,3,5,2,112.6,0,0,0,1,1,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,2 +1,17,1,9147,0,1,118.0,1,1,38,9,9,118.4,1,0,1,1,0,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,2 +1,17,1,9130,0,1,117.0,1,19,19,4,4,113.5,1,0,1,1,1,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,117.0,1,19,19,9,9,111.8,1,0,1,1,0,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,0 +1,1,6,9500,0,1,118.0,1,38,19,3,3,113.5,1,0,1,1,0,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,1 +2,43,2,9853,0,1,130.0,1,38,31,4,1,124.2,0,0,1,1,1,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,128.0,1,38,38,9,7,124.5,1,0,1,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,2 +1,1,1,9238,0,1,116.0,1,38,38,9,8,108.7,1,0,1,1,0,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9254,0,19,133.1,1,37,19,9,10,156.5,0,0,1,1,0,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,1 +1,39,1,9003,0,1,160.0,1,1,37,191,193,140.0,0,0,1,1,0,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,110.0,1,37,37,9,10,150.0,0,0,1,1,0,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,1 +1,18,2,9070,0,1,122.0,1,38,19,5,5,119.9,0,0,1,1,0,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,125.0,1,19,38,9,7,116.3,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,37,37,6,6,147.8,0,0,1,1,1,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,2 +1,1,1,171,0,1,174.0,1,5,3,3,3,157.9,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,131.0,1,1,1,4,4,127.2,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,0 +1,17,1,9670,0,3,110.0,1,12,3,5,8,106.5,1,0,0,0,1,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9500,0,1,124.0,1,37,37,9,9,116.0,1,0,1,1,1,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,38,38,5,7,146.2,0,0,1,1,1,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,133.1,1,37,37,9,9,97.0,0,0,1,1,1,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,132.0,1,19,1,9,9,141.8,1,0,1,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,1 +2,43,1,9254,0,3,120.0,1,38,37,9,3,120.0,1,0,1,1,1,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,135.0,1,3,2,1,1,133.6,1,0,1,0,1,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,133.0,1,38,38,5,2,135.5,0,0,1,1,1,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,125.0,1,39,3,3,2,125.0,1,0,1,1,1,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,133.1,1,1,1,3,4,112.0,0,0,1,1,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,141.0,1,1,1,5,9,126.3,0,0,1,1,0,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,1 +1,39,1,9003,0,1,133.1,1,1,37,9,8,130.0,0,0,1,1,0,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,0 +2,43,1,9991,1,1,140.0,1,37,37,3,10,107.8,0,0,1,1,1,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,2 +1,43,1,9500,0,1,120.0,1,3,4,2,4,120.6,0,0,1,1,0,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,1,133.1,1,1,19,9,9,120.0,0,0,1,1,0,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,1 +1,39,1,9853,0,1,140.0,1,19,1,9,4,128.2,0,0,1,0,1,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,133.1,1,37,19,9,3,123.0,0,0,1,1,0,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,2 +1,39,1,9147,0,1,150.0,1,37,1,7,3,148.8,0,0,1,1,0,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,1 +1,17,1,9670,0,1,125.0,1,38,37,7,5,126.4,0,0,1,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,1 +1,44,1,9003,0,39,140.0,1,38,1,134,134,140.0,1,0,0,1,0,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,2 +1,44,1,9070,0,39,140.0,1,1,19,4,4,140.0,0,0,1,1,0,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,130.0,1,1,1,9,9,124.1,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,2 +1,51,1,9070,0,1,130.0,1,19,19,5,7,124.5,0,0,1,1,1,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,101.0,1,37,37,9,4,101.0,1,0,0,1,1,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,2 +1,1,1,8014,1,1,115.0,1,38,38,9,7,115.0,1,0,1,1,1,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,1 +1,17,1,9130,0,1,122.0,1,19,19,9,9,121.7,1,0,1,0,1,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,135.0,1,38,38,9,6,138.1,0,0,0,0,1,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9147,0,1,130.0,1,37,37,9,9,119.9,1,0,1,0,1,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,134.0,1,1,1,9,9,133.0,1,0,1,1,1,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,19,37,9,9,117.8,1,0,1,1,1,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,119.0,1,1,19,4,10,115.5,1,0,1,1,1,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,2 +1,17,3,9119,0,1,138.0,1,3,3,3,4,125.4,1,1,1,1,0,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,164.0,1,19,19,9,9,149.0,1,0,1,1,1,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,44,1,9085,0,1,140.0,1,4,4,2,6,140.0,0,0,1,1,1,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,1 +1,43,1,9070,0,1,160.0,1,1,2,4,2,100.0,0,0,1,1,0,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,132.0,1,37,37,9,5,135.9,0,0,1,1,1,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,142.0,1,37,19,7,7,133.0,1,0,1,1,1,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,1 +1,7,1,9556,0,3,130.0,1,1,37,4,8,130.0,0,0,1,0,0,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,0 +1,44,1,171,0,39,110.0,1,1,1,1,7,114.2,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9147,0,1,129.0,1,19,19,4,9,127.6,1,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,164.0,1,34,1,0,0,163.0,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9556,0,1,122.0,1,19,38,4,8,118.3,1,0,1,1,1,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,1 +1,17,4,9500,0,1,141.0,1,38,37,3,3,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,1 +1,1,1,9003,0,1,148.0,1,1,19,194,194,143.5,0,0,0,1,0,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,150.0,1,37,19,6,4,137.0,0,0,1,1,0,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,38,38,1,4,138.7,0,0,1,1,0,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,103.8,0,0,1,1,1,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,0 +1,17,1,8014,1,1,127.0,1,19,37,4,7,115.8,0,0,1,1,1,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,143.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,130.0,1,38,19,5,6,125.1,1,0,1,1,1,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9254,0,1,133.0,1,19,1,9,9,137.2,0,0,1,1,0,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +2,1,4,8014,1,1,140.0,1,34,34,0,0,128.0,1,0,1,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,120.0,1,1,1,9,10,118.3,0,0,1,1,0,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,2 +2,39,1,8014,1,12,133.1,1,37,37,9,1,113.0,0,0,1,1,1,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,128.0,1,19,1,0,5,122.1,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,37,38,3,3,123.0,0,0,1,1,1,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,120.0,1,37,1,7,4,95.0,1,0,1,1,1,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,0 +1,17,4,9238,0,1,123.0,1,19,19,191,144,116.0,1,0,1,1,1,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,39,1,9085,0,1,140.0,1,37,37,90,90,106.3,0,0,0,0,0,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,159.0,1,3,3,2,2,162.5,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,125.0,1,19,19,9,9,115.9,0,0,1,1,1,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,130.0,1,19,19,3,7,129.0,0,0,0,0,1,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,133.1,1,38,37,5,5,136.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,156.0,1,5,4,2,1,140.8,0,0,1,1,1,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,1,161.0,1,37,37,9,9,100.0,1,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,7,1,8014,1,3,130.0,1,35,35,90,90,140.0,0,0,1,0,1,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,0 +2,1,1,9991,1,1,120.0,1,37,19,9,9,135.0,1,0,1,1,0,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,0,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,148.0,1,3,3,2,2,137.3,1,0,1,1,1,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,120.0,1,19,37,5,7,115.1,0,0,1,1,1,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,2 +1,17,6,9773,0,1,138.0,1,1,1,4,2,140.5,1,0,1,1,1,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,1 +2,43,1,9085,0,1,160.0,1,37,37,9,7,120.0,0,0,1,1,0,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,2 +1,17,2,8014,1,1,134.0,1,1,19,4,99,126.0,1,0,1,1,0,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,100.0,1,0,1,1,1,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,131.0,1,1,1,5,9,129.5,1,0,1,1,1,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,1 +1,1,4,171,0,1,139.0,1,37,38,9,9,127.8,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,150.0,1,37,37,5,6,132.5,1,0,1,1,1,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,2 +1,1,1,9085,0,1,133.1,1,19,38,5,7,110.0,1,0,1,1,1,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,1 +1,43,1,9254,0,6,138.6,1,34,34,0,0,138.6,1,0,1,1,0,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,133.1,1,1,1,4,10,100.8,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,5,140.0,1,19,1,4,1,140.0,1,0,1,0,1,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,118.0,1,1,19,9,10,113.1,1,0,1,1,1,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,115.0,1,3,3,2,2,111.5,1,0,0,0,1,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9254,0,39,170.0,1,19,2,9,3,170.0,0,0,1,0,0,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,37,9,9,120.0,0,0,1,1,1,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,3,9500,0,1,137.0,1,19,38,7,7,126.5,1,0,1,1,1,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,136.0,1,19,19,90,8,133.9,1,0,1,0,0,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,0 +1,18,2,9500,0,1,141.0,24,1,1,4,3,126.8,1,0,1,1,1,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,1 +1,17,4,9238,0,1,124.0,1,19,19,5,8,117.7,1,0,1,1,1,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,149.0,1,19,38,9,9,126.5,1,0,1,1,1,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,153.0,1,1,1,141,175,157.9,0,0,0,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,140.0,1,1,2,4,6,140.0,1,0,1,1,1,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,137.0,1,1,3,3,2,121.3,1,0,1,1,1,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,143.0,1,1,1,4,6,138.8,0,0,1,0,0,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,160.0,1,1,3,1,2,130.0,0,0,1,0,0,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,19,19,9,8,105.8,0,0,1,1,1,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,0 +1,5,4,9119,0,1,115.0,1,19,37,4,6,113.3,1,0,1,1,0,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,19,4,3,125.4,1,0,1,1,1,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,1 +4,42,1,9500,0,19,133.1,1,1,1,5,5,126.0,1,0,1,1,0,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9254,0,3,133.1,1,19,19,4,6,130.5,0,0,1,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9147,0,1,108.0,1,1,19,4,4,105.9,1,0,1,1,0,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,126.0,1,19,19,9,9,115.2,0,0,0,1,1,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,2 +1,1,1,9853,0,1,140.0,1,37,37,9,9,145.3,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,1,6,9070,0,6,119.0,1,1,1,9,9,123.2,1,0,1,1,0,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,160.0,1,1,38,5,6,168.6,0,0,1,1,0,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9254,0,1,120.0,1,1,19,9,9,148.3,0,0,1,1,0,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,1 +1,7,1,9085,0,3,130.0,1,1,19,9,10,130.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,137.0,1,38,38,151,151,141.6,0,0,1,1,0,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,1 +1,39,1,9003,0,19,133.1,1,37,37,9,4,140.0,0,0,1,1,0,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,2 +1,43,1,9085,0,1,162.0,1,2,1,4,4,162.0,0,0,1,1,1,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,1 +1,43,1,171,0,1,133.0,1,19,19,5,7,133.0,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,154.0,1,37,37,9,7,150.2,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,19,100.0,1,38,19,0,10,111.3,0,0,0,0,1,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,38,4,9,126.2,0,0,1,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,132.0,1,3,1,2,7,125.5,1,0,1,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,127.0,1,37,37,5,7,116.2,0,0,1,1,0,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9773,0,1,121.0,1,19,38,9,7,113.0,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,130.0,1,19,19,9,9,127.6,1,0,1,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,160.0,1,34,34,99,99,114.3,0,0,1,1,0,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,2 +1,18,4,9254,0,1,119.0,1,37,37,9,9,113.1,1,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,130.0,1,38,37,5,6,130.0,0,0,1,1,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,163.0,1,19,37,5,8,150.8,1,0,1,1,0,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,2 +1,43,1,9238,0,1,122.0,1,19,19,5,5,114.3,1,0,1,1,1,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,2 +1,18,1,9147,0,1,131.0,1,34,34,90,90,131.0,0,0,1,1,0,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,4,9773,0,1,137.0,1,1,1,5,5,125.8,0,0,0,1,0,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9670,0,1,133.1,1,37,37,90,90,97.4,0,0,0,0,0,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,37,38,7,5,106.0,1,0,1,1,1,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,1 +1,17,6,9254,0,1,108.0,1,1,19,4,5,112.2,1,0,1,1,0,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,19,133.1,1,1,19,4,10,111.8,1,0,1,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,133.1,1,1,37,9,10,139.0,0,0,1,1,0,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,122.0,1,12,19,4,8,117.8,1,0,1,1,1,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,128.0,1,19,19,0,5,120.3,1,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,133.1,1,34,19,0,3,117.1,1,0,1,1,1,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9556,0,19,133.1,1,37,38,9,9,123.0,0,0,1,1,1,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,1 +1,17,2,9238,0,1,133.0,1,37,37,9,4,123.6,0,0,1,1,1,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,5,9670,0,1,132.0,1,19,19,5,5,134.1,1,0,1,1,0,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,129.0,1,38,1,4,10,129.4,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,136.0,1,19,19,4,8,150.4,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,154.0,1,3,3,1,3,129.0,1,0,1,1,1,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,2 +1,44,1,9130,0,39,150.0,1,1,1,4,4,150.0,1,0,1,1,1,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,2 +1,17,1,9773,0,1,115.0,1,37,37,9,8,116.1,1,0,1,1,1,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,157.0,1,19,3,4,9,138.8,0,0,1,1,0,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9670,0,19,133.1,1,19,1,5,8,97.2,1,0,1,1,0,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,141.0,1,37,38,6,6,125.6,1,0,1,1,1,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,143.0,1,19,1,9,9,144.4,1,0,1,1,1,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9119,0,1,127.0,1,19,1,4,5,115.8,0,0,1,1,0,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,150.0,1,1,1,9,10,142.7,0,0,0,1,1,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,132.0,11,12,12,90,4,129.9,1,0,1,1,1,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,115.0,1,19,19,191,171,109.1,0,0,0,0,0,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,2 +1,17,1,9773,0,1,121.0,1,38,38,9,8,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,7,1,9085,0,40,130.0,1,1,1,4,4,130.0,1,0,1,1,1,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,140.0,1,19,38,4,4,138.3,0,0,1,1,0,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,6,9773,0,1,116.0,1,19,1,4,4,110.1,1,0,1,1,1,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,131.0,1,38,38,9,9,127.9,0,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,1 +1,51,1,9991,1,42,110.0,1,19,37,5,9,128.2,0,0,1,0,1,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,0 +1,1,3,9500,0,1,138.0,1,19,19,5,8,124.9,1,0,1,1,1,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,172.0,1,1,1,4,9,167.1,0,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +5,39,1,9991,1,1,120.0,1,37,37,9,9,138.1,0,0,1,1,0,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,37,38,3,7,96.7,0,0,1,1,0,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,15,1,9130,0,1,133.1,41,1,1,4,4,100.0,0,0,1,1,1,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9119,0,1,122.0,1,19,19,9,9,114.7,0,0,1,1,0,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,133.1,1,19,38,192,192,96.0,1,0,1,1,1,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,160.0,1,1,37,9,10,118.0,0,0,1,1,1,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,2 +1,18,4,9119,0,1,134.0,1,19,38,194,175,124.9,1,0,0,1,0,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,4,19,4,5,98.0,0,0,1,1,0,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +5,43,1,9991,1,3,130.0,1,3,3,1,1,130.0,0,0,1,1,1,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,120.0,1,19,19,4,5,114.8,1,0,0,0,1,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,0 +1,18,6,8014,1,1,134.0,1,3,19,2,4,120.7,1,0,1,1,1,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,133.1,1,37,37,9,9,109.7,0,0,1,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9070,0,1,128.0,1,19,19,3,3,123.5,1,1,1,0,0,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,133.1,1,1,19,5,9,130.0,0,0,1,1,0,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,1 +1,7,1,9991,1,40,120.0,1,43,3,3,3,120.0,0,0,1,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,2 +1,17,5,9556,0,1,139.0,1,19,19,9,8,121.3,1,0,1,1,1,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,156.0,1,3,19,3,3,151.1,0,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,1 +1,16,2,9147,0,1,132.0,1,37,37,9,9,122.6,1,0,1,1,1,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,130.0,1,2,3,9,6,130.0,0,0,1,1,0,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,133.1,1,1,1,1,6,120.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,0,1,0,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,133.0,1,3,3,1,1,126.2,1,0,1,1,1,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,1 +1,18,2,9147,0,1,140.0,1,37,37,5,9,124.3,1,0,1,1,0,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,44,1,9003,0,39,150.0,1,37,38,4,8,150.0,0,0,1,1,1,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,140.0,1,37,19,191,163,129.3,1,0,0,1,1,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +4,7,1,9500,0,3,130.0,1,3,19,2,3,130.0,0,0,1,1,1,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9070,0,1,131.0,1,19,19,7,7,125.1,0,0,1,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,2 +1,10,1,9773,0,1,152.0,22,38,37,5,9,152.0,1,0,1,1,1,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,123.0,1,34,38,0,7,120.2,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,1,1,9070,0,1,131.0,1,3,19,4,4,130.3,1,0,1,1,0,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,115.0,1,1,1,5,4,108.0,1,0,1,1,1,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,130.0,1,38,37,9,9,144.0,0,0,1,1,1,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9238,0,1,134.0,1,3,1,3,4,133.0,1,0,1,1,1,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,1 +1,51,1,9670,0,1,133.1,1,3,1,3,10,116.2,0,0,1,1,0,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,139.0,0,0,1,1,0,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,126.0,1,19,1,9,9,122.5,1,0,1,0,1,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,121.0,1,19,19,9,9,126.3,1,0,1,1,1,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9003,0,1,133.1,1,38,38,4,8,115.0,0,0,0,1,0,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,19,37,9,9,151.5,0,0,0,0,0,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9853,0,40,110.0,1,41,3,2,1,110.0,0,0,0,1,1,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,1 +1,17,5,9238,0,1,131.0,1,19,37,5,7,120.2,1,0,1,1,1,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,2 +5,7,1,9070,0,3,140.0,1,37,37,7,7,140.0,0,0,1,0,0,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +4,39,1,9254,0,1,140.0,1,38,37,9,9,112.0,0,0,0,1,1,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,0 +1,18,3,9853,0,1,122.0,1,38,37,9,5,120.3,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9070,0,1,125.0,1,1,38,9,7,118.0,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,2 +1,1,3,9670,0,1,111.0,1,1,1,5,5,105.4,0,0,1,1,1,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +2,39,1,9254,0,1,130.0,1,37,37,4,7,120.0,1,0,1,1,1,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,160.0,1,37,37,9,9,160.0,1,0,1,1,1,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,1 +1,39,1,9147,0,12,133.1,1,37,37,9,9,140.0,0,0,1,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9147,0,1,118.0,1,1,2,10,10,117.3,1,0,1,1,1,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,3,9085,0,1,130.0,1,1,19,9,9,121.3,1,0,1,1,1,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,19,133.1,1,37,37,9,9,130.0,0,0,1,1,1,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,3,9085,0,1,130.0,1,19,37,5,5,121.3,1,0,1,1,1,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,2 +1,1,2,9254,0,1,120.0,1,19,19,9,9,116.5,1,0,1,1,1,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,1 +2,39,1,9500,0,1,140.0,1,37,37,9,4,127.3,0,0,1,1,0,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,1 +1,17,1,9670,0,1,118.0,1,37,38,8,7,115.2,1,0,1,1,1,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,17,3,9238,0,1,125.0,1,19,19,7,8,121.5,0,0,1,1,1,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,125.0,1,19,19,5,5,114.5,1,0,1,1,1,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,136.0,1,39,1,3,4,134.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,115.0,1,3,2,4,5,112.6,0,0,1,1,0,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,53,1,9003,0,1,130.0,1,19,1,9,9,130.0,0,0,0,1,0,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,2 +1,1,3,9773,0,1,136.0,1,3,1,5,3,129.0,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,3,150.0,1,2,3,4,7,173.3,1,0,1,1,1,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,140.0,1,1,19,7,7,129.9,1,0,1,1,1,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,0 +1,7,1,9119,0,1,140.8,1,34,34,0,0,134.0,0,0,1,1,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9254,0,1,115.0,1,37,19,5,5,109.8,1,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,137.0,1,1,1,4,4,127.6,1,0,1,1,1,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,1 +4,7,1,9238,0,40,130.0,1,34,34,99,99,130.0,0,0,0,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9147,0,1,123.0,1,37,37,9,9,106.2,0,0,1,1,1,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,121.0,1,1,3,3,7,113.0,1,0,1,1,0,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,1 +1,17,1,9254,0,1,140.0,1,3,1,2,3,129.9,0,0,1,1,1,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,7,1,9991,1,40,130.0,1,38,38,9,7,130.0,0,0,1,1,0,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,0 +1,51,1,9070,0,1,132.0,1,19,19,153,153,120.0,0,0,1,1,1,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,9119,0,1,110.0,1,37,37,9,9,106.8,0,0,1,1,0,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9070,0,1,124.0,1,19,37,4,4,126.8,0,0,1,1,1,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,2 +1,18,3,9147,0,1,133.1,1,1,38,4,7,101.0,1,0,1,0,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,3,9147,0,1,125.0,1,38,19,7,7,125.7,0,0,1,1,1,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,2 +1,17,4,9853,0,1,121.0,1,38,38,5,7,113.7,1,0,1,1,1,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,1,133.1,1,1,1,9,6,105.0,1,0,0,0,1,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,143.0,1,5,1,2,5,136.7,0,0,1,1,1,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,1 +1,1,2,9556,0,1,142.0,1,1,19,4,5,130.5,1,0,1,1,1,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,131.0,1,19,19,7,5,122.1,1,0,1,1,1,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,132.0,1,1,37,4,7,121.8,1,0,1,1,1,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,123.0,1,37,37,3,3,123.0,1,0,1,1,1,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,129.0,1,19,38,2,7,126.9,1,0,1,1,1,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,2 +1,1,4,9238,0,1,118.0,1,19,38,9,9,110.0,0,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,125.0,1,3,1,4,4,119.4,1,0,1,1,1,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,2 +1,17,1,9085,0,1,131.0,1,1,3,4,1,129.3,1,0,1,1,1,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9500,0,1,147.0,1,37,37,9,9,134.3,0,0,1,1,1,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,1 +2,39,2,9670,0,19,133.1,1,37,37,9,9,135.6,0,0,1,1,1,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,152.0,1,37,19,9,9,137.0,1,0,1,1,1,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,118.0,1,12,1,4,10,115.7,0,0,1,1,0,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,2 +1,15,1,9119,0,1,133.1,41,1,3,5,8,100.0,0,0,0,1,0,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,0 +1,1,5,9119,0,1,131.0,1,1,19,4,7,126.8,0,0,1,0,0,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,132.0,1,19,38,9,7,119.1,0,0,1,0,0,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,8014,1,1,120.0,1,37,37,5,5,161.1,0,0,1,1,0,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,18,5,9500,0,1,137.0,1,19,1,1,10,129.3,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,118.0,1,37,19,5,5,119.1,1,0,1,1,1,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,134.0,1,38,38,9,9,122.0,1,0,1,1,0,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,163.0,1,1,1,4,3,149.7,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,140.0,1,38,38,9,7,140.0,0,0,1,1,1,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,2 +1,17,4,9147,0,1,122.0,1,19,19,5,7,116.4,1,0,0,1,1,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,140.0,1,3,37,3,7,116.9,0,0,1,1,0,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,5,2,9238,0,1,123.0,1,40,38,2,9,118.1,1,0,1,1,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,7,1,9991,1,3,130.0,1,3,19,2,3,133.9,0,0,1,1,1,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,125.0,1,1,38,4,7,114.9,1,0,1,1,1,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,130.0,1,1,1,4,10,115.2,0,0,1,1,0,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,124.0,1,38,19,9,7,129.6,1,0,1,1,0,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,139.0,1,38,38,7,5,133.4,0,0,1,1,1,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,4,9254,0,1,125.0,1,38,38,5,5,115.6,1,0,1,1,1,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,147.0,1,37,37,9,9,142.8,1,0,1,1,1,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,0 +1,1,1,9003,0,1,144.0,1,19,19,9,9,132.8,0,0,1,1,0,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,12,133.1,1,19,1,9,1,130.0,0,0,1,1,0,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,140.0,1,37,37,9,6,135.5,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,6,9254,0,1,102.0,1,3,1,2,2,101.7,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,133.1,1,19,38,5,5,131.8,1,0,0,1,1,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,1 +1,44,1,171,0,39,150.0,1,4,4,2,2,150.0,0,0,1,1,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,53,1,9254,0,42,110.0,1,1,1,4,7,111.8,1,0,1,1,1,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,121.0,1,19,38,6,6,116.1,1,0,1,1,0,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,1 +1,17,4,9773,0,1,127.0,1,1,19,4,1,115.8,1,0,1,1,1,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,37,37,9,7,160.0,1,0,1,0,0,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,15,170.0,1,34,1,90,2,101.0,0,0,1,1,1,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,125.0,1,3,3,3,3,116.6,1,0,1,0,1,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,2 +1,17,4,9070,0,1,117.0,1,1,1,3,3,125.4,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,146.0,1,19,37,7,7,133.8,1,0,1,1,1,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,142.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,1 +1,1,1,171,0,3,116.0,1,3,3,2,2,128.2,0,0,1,1,1,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,1 +1,1,2,9500,0,1,124.0,1,37,37,7,7,116.5,1,0,1,1,1,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,118.0,1,19,19,5,7,117.8,0,0,1,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,1 +1,18,3,9670,0,1,119.0,1,38,38,9,9,115.2,1,0,1,1,1,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,131.0,1,3,19,3,10,123.3,0,0,1,1,0,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,2 +1,17,1,9254,0,1,136.0,1,39,3,3,3,128.7,1,0,1,1,1,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,0 +1,18,1,9500,0,1,140.0,1,37,38,5,7,126.0,1,0,1,1,1,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +1,44,1,9119,0,39,150.0,1,19,3,5,2,150.0,0,0,1,1,0,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,2 +1,43,1,9773,0,1,137.0,1,38,37,9,5,127.9,1,0,1,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,119.9,0,0,1,1,1,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,2 +1,18,2,9773,0,1,132.0,24,37,19,9,7,119.1,1,0,1,1,1,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,43,1,8014,1,1,133.1,1,34,34,0,0,100.0,0,0,1,1,1,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,1,133.1,1,38,19,9,9,128.0,1,0,1,0,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,125.0,1,19,19,5,4,136.2,1,0,0,1,0,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,132.0,1,38,38,0,5,126.1,0,0,1,1,0,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9670,0,1,130.0,1,1,1,9,10,116.3,1,0,1,1,1,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,1 +1,1,3,9773,0,1,150.0,1,19,38,4,4,146.5,1,0,1,1,1,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,1 +4,39,2,8014,1,1,160.0,1,37,38,7,5,115.0,0,0,1,1,1,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,135.0,1,19,1,9,9,122.1,1,0,1,1,1,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,136.0,1,3,3,9,9,136.0,1,0,0,0,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,3,3,7,1,130.0,1,0,1,1,0,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,2 +1,39,1,9119,0,19,133.1,1,19,19,5,3,100.9,1,0,1,1,0,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,2 +1,17,1,9254,0,1,137.0,1,34,38,0,7,137.7,1,0,0,0,1,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +4,39,1,8014,1,19,133.1,1,37,37,90,7,110.0,0,0,1,0,1,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,144.0,1,38,37,9,9,125.8,0,0,1,1,1,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,1,4,9070,0,1,167.0,1,1,1,7,3,158.3,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,133.0,1,37,19,7,7,126.7,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,118.0,1,38,38,7,7,121.2,1,0,1,1,1,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,19,133.1,1,19,19,4,4,150.0,0,0,1,0,0,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,0 +1,17,2,9085,0,1,166.0,1,1,19,4,3,158.7,0,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,1 +1,44,1,9254,0,39,130.0,1,39,39,194,193,130.0,1,0,0,1,0,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,2 +1,17,1,9085,0,1,140.0,1,37,38,7,9,129.9,0,0,1,1,1,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,1 +1,7,1,9147,0,3,120.0,1,1,39,4,7,120.0,0,0,1,1,1,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,5,9254,0,1,118.0,1,19,37,5,5,120.5,1,0,1,1,0,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,0 +1,17,3,9070,0,1,120.0,1,3,1,4,4,116.9,1,0,1,1,1,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,1 +1,43,5,9238,0,1,101.0,24,37,19,9,7,119.9,1,0,0,0,1,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,128.0,1,19,1,4,3,117.2,1,0,1,1,1,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,1 +1,1,3,9254,0,1,118.0,1,1,19,9,9,111.7,1,0,1,1,1,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9773,0,1,137.0,1,37,37,0,90,134.2,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,144.0,1,3,39,2,3,129.0,1,0,1,1,1,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,0 +1,1,5,9147,0,1,125.0,1,37,38,7,7,122.2,1,0,1,1,1,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,2 +1,1,2,9500,0,1,147.0,1,3,1,4,3,136.7,0,0,1,1,1,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,1 +1,39,1,9085,0,39,120.0,1,37,37,1,9,137.7,1,0,1,0,0,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,160.0,1,1,37,9,9,146.0,1,0,1,1,1,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,2 +1,44,1,9238,0,39,130.0,1,1,19,4,5,127.4,0,0,0,0,0,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,3,1,2,4,154.9,0,0,0,0,0,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,0 +1,17,2,9670,0,1,129.0,1,19,19,5,4,129.4,0,0,1,1,1,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,137.0,1,3,19,3,5,136.3,1,0,1,1,1,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,1 +1,39,1,9991,1,1,100.0,1,37,37,9,6,153.5,0,0,0,0,0,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,134.0,1,38,38,7,9,132.8,1,0,1,1,1,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,137.0,1,37,37,7,9,130.8,1,0,1,1,1,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,133.1,1,37,37,1,1,97.0,0,0,1,1,0,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,143.0,1,3,38,2,10,129.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +2,39,1,9991,1,1,110.0,1,37,37,9,3,127.1,0,0,1,1,1,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,2 +2,7,1,9147,0,3,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,160.0,1,37,37,9,9,160.0,0,0,1,1,0,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,162.0,1,3,4,3,3,154.1,0,0,1,1,1,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,1 +1,1,2,9147,0,1,119.0,1,19,37,4,5,113.8,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,139.0,1,19,1,9,5,135.0,1,0,1,1,1,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,120.0,1,1,38,5,5,116.3,1,1,1,1,0,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,1 +1,17,2,9500,0,1,135.0,1,1,19,4,10,133.5,1,0,1,1,1,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,1 +1,1,3,9119,0,1,117.0,1,1,1,3,5,111.1,0,0,1,1,0,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,140.0,1,1,39,4,1,128.1,1,1,1,1,0,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9003,0,1,133.1,1,37,37,3,8,130.0,0,0,0,1,1,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,134.0,1,19,37,5,5,125.3,1,0,1,1,0,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,37,38,9,9,114.0,0,0,1,1,1,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,38,37,4,5,102.5,0,0,0,0,0,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,171,0,1,143.0,1,19,37,5,9,156.3,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,130.0,1,19,1,9,5,122.1,1,0,1,1,1,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,1 +1,39,2,8014,1,1,100.0,1,35,37,90,90,100.0,0,0,1,1,1,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +2,39,2,9670,0,1,100.0,1,37,37,9,9,110.0,0,0,1,1,0,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,2,9853,0,1,126.0,1,1,19,2,10,126.0,1,0,1,1,1,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,2 +1,18,3,9070,0,1,131.0,1,1,37,5,5,122.3,1,0,1,0,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,150.0,1,19,37,9,8,138.5,0,0,1,1,1,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,2,171,0,1,146.0,1,3,3,3,3,155.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9147,0,1,120.0,1,19,19,9,7,118.6,1,0,1,1,1,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,145.0,1,38,38,9,9,125.5,1,0,1,1,1,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,4,9070,0,1,143.0,1,1,1,9,7,134.6,1,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,0 +1,51,1,8014,1,1,121.0,1,1,38,5,7,112.3,0,0,1,1,1,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,130.0,1,37,1,9,8,120.2,1,0,1,1,0,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,1 +2,7,1,9254,0,2,100.0,1,37,37,9,9,100.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9119,0,1,130.0,1,37,3,9,3,137.0,1,0,1,1,0,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,1,0,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,140.0,1,38,37,7,7,105.2,0,0,1,1,0,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,131.0,1,1,19,4,7,135.9,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,108.0,1,19,38,9,7,110.5,1,0,1,1,1,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,111.0,1,1,38,5,9,107.5,0,0,1,1,0,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,1,9147,0,1,147.0,1,37,37,9,6,142.8,1,0,0,0,1,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,170.0,1,38,19,4,8,134.7,0,0,1,1,1,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,138.0,1,4,19,2,3,124.7,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,125.0,1,37,38,9,9,125.0,1,0,0,0,1,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,118.0,1,38,38,5,5,114.2,1,0,1,1,1,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,3,3,1,5,118.8,0,0,1,1,1,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,1 +1,1,3,9085,0,1,131.0,1,37,19,9,8,136.3,1,0,0,0,1,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,0 +1,43,1,9991,1,1,141.0,1,37,37,9,9,131.9,0,0,1,1,1,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,0 +1,42,1,9070,0,1,120.0,1,3,2,3,1,116.9,0,0,1,1,0,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,130.0,1,1,1,9,7,152.1,0,0,1,1,0,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,12,133.1,1,34,34,0,0,135.0,0,0,1,1,1,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,0 +1,17,2,9500,0,1,130.0,1,38,38,7,7,122.5,1,0,1,1,1,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,160.0,1,1,1,194,131,128.4,0,0,1,1,1,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,132.0,1,1,38,7,7,129.6,0,1,1,1,0,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,1,1,3,9,118.4,0,0,1,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,1 +1,1,2,9556,0,1,133.1,1,19,19,9,9,104.5,1,0,1,1,1,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,0 +1,53,1,9003,0,42,150.0,1,1,38,8,8,150.0,0,0,1,1,1,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,144.0,1,3,1,2,3,126.9,0,0,1,1,1,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,150.0,1,3,3,2,2,120.0,0,0,0,0,1,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,3,3,2,10,160.0,1,0,1,1,0,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,129.0,1,1,1,9,9,120.0,0,0,1,1,0,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,1 +4,39,1,9003,0,12,133.1,1,37,37,9,6,160.0,0,0,1,1,1,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,1 +2,39,2,9991,1,1,100.0,1,37,37,9,9,100.0,1,0,1,1,0,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,115.0,1,19,1,3,8,123.4,0,0,1,1,1,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,124.0,1,19,37,3,8,117.5,1,0,1,1,0,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,2 +1,1,6,9254,0,1,129.0,1,38,19,9,5,117.8,1,0,1,1,1,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,127.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,19,133.1,1,38,38,7,8,120.0,0,0,1,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,0 +6,39,2,9147,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,4,9500,0,1,148.0,1,3,19,4,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,39,150.0,1,1,3,4,1,150.0,0,0,1,1,0,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,0 +1,17,1,171,0,1,145.0,1,37,37,9,1,150.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,123.0,1,1,1,9,9,115.7,1,0,1,1,1,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,16,1,171,0,1,122.0,1,19,37,9,7,133.9,1,0,1,1,0,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,124.0,1,37,38,9,8,114.6,1,0,1,1,0,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,120.0,1,38,37,9,8,113.4,1,0,1,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,7,1,9991,1,40,140.0,1,37,37,6,6,140.0,0,0,1,1,1,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,1 +1,1,5,9670,0,1,133.1,1,9,1,2,4,133.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,100.0,1,19,19,4,4,113.0,0,0,1,1,0,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,2 +4,39,1,9003,0,1,133.1,1,19,19,9,4,100.7,0,0,1,1,1,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,2 +1,17,2,9147,0,1,133.1,1,38,38,4,7,109.0,1,0,1,1,0,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,2 +1,15,1,9238,0,1,140.0,26,19,19,9,6,140.0,0,0,1,1,0,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,1,3,9500,0,1,114.0,1,1,1,5,5,114.5,1,0,1,1,1,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,134.0,1,1,38,4,4,120.7,0,0,0,0,1,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,1,133.1,1,37,11,9,7,96.0,0,0,0,0,0,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,131.0,1,3,3,3,3,135.9,0,0,1,1,1,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,1 +1,43,2,9500,0,1,130.0,1,38,37,4,4,126.8,1,0,1,1,0,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,19,37,7,7,124.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9670,0,1,120.0,1,1,19,4,5,100.0,0,0,1,1,1,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,145.0,1,38,38,9,10,139.8,1,0,1,1,1,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,141.0,1,19,38,5,7,125.5,0,0,1,1,1,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,1 +5,39,1,9147,0,1,133.1,1,1,19,4,7,114.0,0,0,1,0,0,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9991,1,1,110.0,1,37,37,1,4,120.0,1,0,1,0,0,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,172.0,41,37,37,5,5,153.8,1,0,1,1,1,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,1 +1,17,1,9556,0,1,140.0,1,3,3,1,7,131.6,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,148.0,1,1,1,4,3,137.5,0,0,1,1,0,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,137.0,1,19,38,3,9,124.9,0,0,1,1,1,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,139.0,1,18,18,1,1,130.8,1,0,1,0,1,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,0 +1,17,1,9003,0,1,120.0,1,38,37,5,9,131.4,1,0,1,1,0,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,1 +1,53,1,9085,0,42,160.0,1,19,37,4,9,160.0,1,0,1,1,1,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,1 +1,18,1,9670,0,1,140.0,1,1,37,9,9,130.2,1,0,1,1,0,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,1 +1,43,1,9853,0,1,140.0,1,37,37,6,6,125.2,0,0,0,1,1,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,1 +1,1,4,9556,0,1,122.0,1,37,1,5,4,123.9,0,0,1,1,1,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,1,19,3,3,123.0,0,0,1,1,1,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,140.0,1,19,38,4,0,140.0,1,0,1,1,0,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,129.0,1,1,1,4,2,126.2,0,0,0,0,1,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,0 +2,17,3,8014,1,1,123.0,1,19,37,3,3,113.2,0,0,0,0,1,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,133.1,1,38,19,9,10,114.5,0,0,1,1,1,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,2 +1,51,1,9991,1,1,141.0,1,19,38,5,7,100.0,0,0,1,1,1,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,1 +1,17,2,171,0,1,131.0,1,2,1,3,3,148.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,39,1,9085,0,19,133.1,1,37,37,9,9,100.0,1,0,0,0,1,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,117.0,1,1,38,5,1,113.5,1,0,1,1,1,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,116.0,1,19,38,9,9,119.5,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,1,19,3,4,116.7,0,0,1,1,1,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,129.0,1,2,3,2,2,128.3,1,0,1,1,1,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,2 +1,1,3,9085,0,1,138.0,1,1,1,4,8,128.7,1,0,1,1,1,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,1,5,9147,0,1,118.0,1,19,19,9,9,114.2,1,0,1,1,0,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,133.0,1,3,19,2,8,126.7,0,0,1,1,1,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,2 +1,16,1,171,0,1,158.0,1,38,37,9,9,164.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,43,3,9500,0,1,126.0,1,38,37,6,5,124.3,1,0,1,1,1,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,123.0,1,38,38,9,5,124.8,0,0,1,0,1,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,2 +1,1,1,9130,0,1,160.0,1,3,3,3,2,155.1,1,0,1,1,1,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,1 +4,43,1,9500,0,1,130.0,1,37,37,9,9,103.7,0,0,1,1,1,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,2 +1,16,2,9238,0,1,133.0,1,19,38,4,5,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,130.0,1,38,37,9,9,124.8,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,135.0,1,37,1,7,7,132.8,1,0,1,1,1,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9119,0,1,128.0,1,1,38,4,7,100.0,0,0,1,1,0,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,2 +1,17,2,9085,0,1,120.0,1,1,1,9,10,115.0,0,0,1,0,1,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,0 +1,17,2,9070,0,1,142.0,1,3,1,2,4,141.0,1,0,1,1,0,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,2,9853,0,1,124.0,1,38,37,5,3,118.1,1,0,1,0,1,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,145.0,1,37,37,9,9,132.0,1,0,1,1,1,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,1 +1,39,1,9130,0,1,114.0,1,38,38,9,10,120.0,0,0,1,1,1,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,140.0,1,3,3,2,2,146.4,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,1 +1,1,5,9773,0,1,130.0,1,34,38,0,8,128.3,1,0,1,0,1,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,3,9670,0,1,110.0,1,19,1,4,4,107.5,1,0,1,1,1,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,135.0,1,37,37,5,5,126.3,1,1,1,1,1,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,1 +2,1,1,9254,0,1,140.0,1,19,38,4,7,133.0,0,0,1,1,0,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9254,0,1,150.0,1,37,37,9,9,115.0,0,0,1,1,0,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,1 +1,39,1,9070,0,1,130.0,1,1,1,5,3,112.0,1,0,1,1,0,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,1 +1,1,1,9070,0,1,110.0,1,1,37,9,9,105.1,1,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,131.0,1,37,37,9,7,118.4,0,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,0 +1,17,1,171,0,1,136.0,1,38,38,7,7,127.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9773,0,1,127.0,1,19,19,5,8,120.0,0,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,3,171,0,1,139.0,1,37,19,9,8,142.2,1,0,1,1,0,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,128.0,1,37,19,9,4,127.3,1,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,16,4,9773,0,1,109.0,1,37,37,9,3,137.0,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,1 +1,53,1,9085,0,42,130.0,1,19,1,9,9,130.0,1,0,0,0,1,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,2 +1,7,1,171,0,3,130.0,1,1,2,9,2,130.0,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,120.0,1,37,37,9,9,120.0,1,0,0,1,1,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,0 +1,2,1,9853,0,1,120.0,1,19,38,9,9,122.5,0,0,1,0,1,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,19,133.1,1,2,1,8,8,120.0,1,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,0 +1,43,1,9773,0,1,121.0,1,1,1,4,5,121.0,1,0,1,1,0,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,4,9147,0,1,120.0,1,38,19,9,9,111.3,1,0,1,1,1,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,38,19,5,0,141.8,0,0,1,1,1,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,131.0,1,1,1,7,4,127.2,1,0,0,1,0,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,11,9,10,131.5,0,0,1,1,1,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,3,19,2,3,125.7,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,1,2,9556,0,1,136.0,1,19,19,9,9,129.5,1,0,1,1,1,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,1 +1,42,1,9119,0,1,120.0,1,5,5,2,2,115.0,0,0,1,1,0,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,0 +1,17,6,9119,0,1,124.0,1,19,19,4,0,126.1,1,0,1,1,0,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,1 +1,1,1,9254,0,1,160.0,1,19,38,9,9,140.8,1,0,1,1,0,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,123.0,1,37,37,9,9,115.0,1,0,1,1,1,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,1 +2,39,2,9670,0,1,133.1,41,37,19,9,9,130.0,0,0,1,1,1,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9670,0,6,170.0,1,34,34,0,0,111.6,0,0,1,1,0,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,138.0,1,1,3,9,1,123.0,1,0,1,1,1,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,1,37,6,6,130.0,1,0,1,1,0,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,1 +1,17,2,9119,0,1,133.1,1,1,2,3,3,117.0,1,0,1,1,0,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,2 +1,1,5,9254,0,1,131.0,1,19,37,9,9,123.7,0,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,130.0,1,1,1,9,4,140.0,0,0,1,0,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9773,0,1,135.0,1,1,19,4,10,129.4,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,132.0,1,1,19,3,3,122.9,1,0,1,1,1,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,115.0,1,37,37,9,8,129.0,1,0,0,0,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,51,1,9238,0,1,160.0,1,3,19,2,1,116.1,0,0,0,1,1,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9003,0,12,133.1,1,37,1,9,10,130.0,0,0,1,1,0,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,129.0,1,37,38,4,9,121.0,1,0,1,1,1,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9119,0,1,130.0,1,38,19,7,3,119.9,1,0,0,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,133.1,1,37,37,9,9,100.2,1,0,1,0,1,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,4,38,4,5,140.0,1,0,1,1,1,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,2 +2,7,1,9991,1,43,140.0,1,40,5,3,3,140.0,0,0,1,1,1,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,1 +1,43,2,9670,0,1,129.0,1,3,3,5,5,122.4,1,0,1,1,1,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,2 +1,1,1,9238,0,1,116.0,1,38,38,9,6,116.4,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,44,1,9130,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,130.0,1,1,3,9,2,130.0,1,0,0,1,1,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,139.0,1,38,38,9,5,130.5,1,0,1,1,1,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,1 +1,42,1,9500,0,1,100.0,1,19,19,9,9,100.0,0,0,0,1,0,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,0 +1,7,1,9773,0,43,140.0,1,19,1,4,8,140.0,0,0,1,1,0,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9003,0,1,125.0,1,1,38,4,7,125.0,1,0,1,1,1,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,1 +1,39,2,9147,0,19,133.1,1,38,19,4,10,116.3,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,3,9500,0,1,132.0,1,37,37,4,3,127.3,1,0,1,1,1,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,127.0,1,1,37,4,8,121.1,1,0,1,1,0,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,1 +1,39,1,9670,0,1,140.0,1,37,37,6,6,120.0,0,0,1,1,1,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,133.0,1,37,37,9,5,139.2,1,0,0,1,0,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,140.0,1,19,19,1,4,133.3,1,0,1,1,1,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,120.0,1,3,3,2,2,112.0,0,0,1,1,1,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,2 +2,1,1,9147,0,1,137.0,1,19,37,9,9,124.4,0,0,1,1,1,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,130.0,1,38,38,9,3,145.6,0,0,1,1,0,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,6,9670,0,1,120.0,1,1,14,4,5,113.7,1,0,1,1,1,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,120.0,1,38,19,9,3,112.7,0,0,1,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,122.0,1,37,37,9,9,114.3,1,0,1,0,1,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,1,8014,1,1,133.1,1,3,1,1,7,100.0,0,0,1,1,1,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,4,19,3,5,123.7,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,4,4,4,2,120.0,1,0,1,1,0,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,2 +1,1,3,9238,0,1,137.0,1,1,1,3,3,131.4,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,1 +1,43,1,9130,0,1,130.0,1,1,1,1,1,130.0,1,0,1,1,0,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,2 +1,1,2,9773,0,1,121.0,1,1,19,9,7,118.9,1,0,1,1,1,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,133.1,1,19,38,9,8,128.2,1,0,1,1,0,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,2 +1,43,1,9070,0,1,134.0,1,19,37,7,7,132.7,1,0,1,1,0,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9147,0,1,125.0,1,1,38,7,7,120.1,0,0,0,1,0,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,129.0,1,37,37,9,9,117.1,1,0,1,1,1,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,145.0,1,38,38,5,7,138.0,1,0,1,1,1,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,120.0,105,1,1,9,9,119.0,1,0,0,0,1,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,131.0,1,1,19,9,9,127.0,0,0,1,1,0,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,100.0,1,38,19,6,10,112.8,0,0,1,1,1,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,2,9070,0,1,145.0,1,38,19,7,7,130.0,1,0,1,1,0,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,126.0,1,37,38,7,7,119.0,0,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,1 +1,1,2,9773,0,1,137.0,1,1,19,7,7,133.2,1,0,1,1,1,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,128.0,1,38,38,9,7,128.4,1,0,1,1,1,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,2 +1,44,1,9085,0,39,150.0,1,19,38,194,193,150.0,1,0,1,1,1,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,2 +1,1,4,171,0,1,146.0,1,1,1,9,5,151.3,1,0,1,1,1,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,1 +1,1,6,9147,0,1,139.0,1,19,12,4,4,125.0,1,0,1,1,1,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,1 +1,1,2,9254,0,1,136.0,1,1,1,9,4,123.4,1,0,1,1,1,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,5,9670,0,1,127.0,1,3,4,2,2,122.8,0,0,1,1,0,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,127.0,1,38,37,5,7,121.8,1,0,0,1,1,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,2 +1,39,1,9003,0,1,130.0,1,38,37,7,7,120.0,0,0,1,1,0,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,1 +1,1,2,9238,0,1,100.0,1,38,1,7,7,99.3,1,0,1,1,1,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9119,0,1,160.0,1,37,37,9,6,153.7,0,0,1,1,0,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,2 +1,17,4,9500,0,1,138.0,1,3,1,2,5,134.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,1 +1,17,4,9254,0,1,124.0,1,3,3,3,3,126.1,1,0,1,1,1,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,0 +2,7,1,9147,0,3,110.0,1,19,1,9,9,110.0,0,0,1,1,1,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,2 +1,1,1,9500,0,1,143.0,1,3,19,3,10,126.8,0,0,1,1,0,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,1 +1,17,2,9670,0,1,110.0,1,1,1,4,10,115.3,1,0,1,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,1 +1,51,1,9119,0,1,129.0,1,2,37,2,9,121.6,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,2 +1,15,1,9254,0,1,140.0,26,19,1,9,7,140.0,1,0,1,0,1,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,118.0,1,19,38,7,9,113.5,1,0,1,1,1,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,5,9853,0,1,110.0,1,19,37,7,7,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,2 +1,39,1,171,0,1,145.0,1,3,1,2,10,114.5,1,0,1,1,0,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,43,2,9670,0,1,125.0,1,38,19,4,3,106.6,1,0,1,1,1,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,0 +4,39,1,9500,0,19,133.1,1,37,37,5,7,100.0,0,0,1,0,1,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,133.0,1,1,1,9,9,119.7,1,1,0,1,0,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,1 +1,1,2,9853,0,1,134.0,1,1,38,9,8,122.5,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,120.0,1,19,37,3,9,100.0,0,0,1,1,1,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,37,37,6,6,100.0,0,0,0,0,0,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,160.0,1,38,38,6,6,160.0,1,0,1,1,1,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,19,133.1,1,37,37,9,7,116.0,0,0,1,1,1,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,1 +1,18,3,9500,0,1,145.0,1,1,1,4,8,133.6,1,0,1,1,1,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,3,19,2,3,124.5,0,0,1,1,1,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,125.0,1,19,38,9,8,118.3,0,0,1,1,0,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,0 +1,5,1,9085,0,1,150.0,1,1,1,4,4,139.4,0,0,1,1,1,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,2 +1,17,1,9773,0,1,133.1,1,38,38,9,5,117.0,0,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,2 +1,1,3,9500,0,1,142.0,1,1,1,4,7,131.0,1,0,1,1,1,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,1,19,3,3,154.3,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9147,0,1,135.0,1,37,38,9,9,128.0,1,0,0,1,1,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,149.0,1,37,37,9,9,138.0,0,0,1,1,0,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,38,9,9,129.2,1,0,1,1,1,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9556,0,1,147.0,1,3,4,3,2,100.0,0,0,1,1,1,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,2 +1,39,1,9085,0,12,133.1,1,37,37,10,9,144.0,0,0,1,1,0,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9254,0,1,100.0,1,3,19,3,5,115.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9670,0,1,140.0,1,1,1,4,3,133.4,0,0,1,1,0,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,2 +1,1,2,171,0,1,127.0,1,3,39,1,3,133.5,1,0,1,1,0,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9147,0,1,112.0,1,1,19,3,5,107.8,1,0,1,1,1,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,2 +2,39,1,9147,0,1,110.0,1,37,37,9,10,140.0,0,0,1,1,1,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,120.0,1,1,3,175,121,105.9,0,0,1,1,1,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,2 +1,1,1,9238,0,1,168.0,1,37,37,9,9,149.5,0,0,1,1,1,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,1 +1,17,1,8014,1,1,141.0,1,34,34,0,0,136.1,0,0,1,1,1,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,140.0,1,1,1,4,3,130.7,1,0,1,1,0,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,0 +1,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,134.0,1,1,37,8,7,120.5,1,0,1,1,0,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,160.0,1,1,38,4,7,141.5,1,0,1,1,0,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,122.0,1,38,37,191,195,112.9,1,0,1,1,1,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,41,1,1,9,7,163.1,1,0,1,0,1,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,1 +1,39,1,9500,0,1,110.0,1,1,37,9,9,126.0,1,0,1,1,0,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,2 +1,17,1,9670,0,1,109.0,1,1,1,4,4,108.0,0,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,131.0,2,37,1,9,3,126.1,1,0,1,1,0,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,1,2,9556,0,1,125.0,1,38,1,9,3,116.3,1,0,1,1,1,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,1 +1,17,1,9085,0,1,138.0,1,2,19,2,9,126.8,1,0,1,1,1,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,2 +1,1,5,9853,0,1,128.0,1,38,37,9,9,120.3,1,0,0,0,1,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,130.0,1,1,38,4,9,122.7,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,0 +1,39,1,9991,1,9,133.1,1,37,34,90,90,118.1,1,0,1,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,1,1,9085,0,1,125.0,1,1,19,4,9,114.5,1,0,1,1,1,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,1 +1,1,5,9773,0,1,138.0,1,19,19,9,9,139.4,1,0,1,1,1,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,125.0,1,19,38,3,5,115.9,0,0,1,1,1,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,1 +1,43,1,9500,0,1,134.0,1,38,19,5,8,120.7,0,0,1,1,1,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,133.1,41,3,1,3,10,100.0,1,0,1,0,1,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,0 +5,39,1,9003,0,1,133.1,1,37,37,9,7,110.0,0,0,0,0,1,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,0 +1,17,1,9254,0,1,128.0,1,19,1,5,7,120.7,1,0,0,1,1,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,162.0,1,19,19,4,7,152.9,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,51,1,9238,0,1,121.0,1,3,19,3,10,111.9,1,0,1,1,1,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,1 +1,39,2,9991,1,1,172.0,1,19,37,9,8,150.0,1,0,1,1,1,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,116.0,1,19,19,9,8,119.9,1,0,1,1,1,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,125.0,1,19,19,3,10,131.0,1,0,1,1,0,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,39,1,9500,0,4,150.0,1,3,38,3,7,127.0,1,0,1,1,0,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,128.0,1,38,38,9,9,129.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,120.0,1,3,19,4,5,115.5,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,38,38,9,6,160.0,1,0,1,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,130.0,1,3,1,2,9,130.0,1,0,1,1,1,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,140.0,1,1,19,4,8,124.6,1,0,1,1,1,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,150.0,1,3,3,2,2,150.0,1,0,1,1,1,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,1 +2,39,1,9853,0,1,133.1,1,37,19,9,5,138.3,0,0,1,1,1,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,0 +1,43,1,9991,1,1,150.0,1,3,3,4,4,100.0,1,0,1,1,0,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,1 +1,44,1,9238,0,1,150.0,1,1,38,4,9,145.9,0,0,1,1,1,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,1 +1,18,3,9500,0,1,131.0,1,19,1,4,7,127.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,1 +1,7,1,9085,0,3,150.0,1,19,37,90,90,140.0,0,0,1,1,0,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,167.0,1,19,19,9,7,156.2,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,140.0,1,1,3,4,5,130.0,0,0,1,1,0,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9238,0,1,132.0,1,1,19,4,9,127.1,1,0,1,1,1,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9119,0,1,133.0,1,3,1,3,4,121.8,1,0,1,1,0,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,2 +1,17,1,9670,0,1,133.1,1,1,37,4,5,150.0,0,0,1,1,0,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,150.0,103,37,37,9,9,134.6,0,0,1,1,0,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,1 +1,17,6,9773,0,1,131.0,1,34,34,0,0,129.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,139.0,1,3,1,4,1,126.0,1,0,1,1,0,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,0 +1,17,1,9670,0,1,138.0,1,1,1,4,8,123.0,0,0,0,0,0,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,2 +5,39,1,9853,0,19,133.1,1,37,37,9,8,118.0,0,0,1,1,1,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,142.0,1,37,38,9,9,137.3,1,0,1,1,1,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,136.0,1,3,38,2,9,125.7,1,0,1,1,1,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,1,1,4,10,128.3,1,0,1,1,1,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,132.0,1,1,37,4,9,127.1,0,0,1,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,122.0,1,19,19,7,7,116.1,1,0,1,1,1,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,1 +1,44,1,9085,0,1,140.0,1,1,2,3,3,140.0,0,0,1,1,1,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,2 +1,42,1,9853,0,12,133.1,1,1,3,3,2,133.7,0,0,1,1,1,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,0 +2,7,1,9500,0,3,120.0,1,37,19,9,7,120.0,1,0,1,1,1,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,2 +1,1,4,9238,0,1,134.0,1,38,19,7,7,128.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,130.0,1,19,38,4,7,121.3,1,0,1,1,1,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,1 +1,39,2,9238,0,1,110.0,1,19,1,5,5,136.5,0,0,1,1,0,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9670,0,1,133.1,1,38,19,9,8,122.9,0,0,0,0,0,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,124.0,1,19,1,9,3,123.7,1,0,1,1,1,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,17,1,9991,1,1,120.0,1,38,3,9,3,116.9,1,0,0,0,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,43,2,9147,0,1,160.0,1,37,37,9,9,96.0,0,0,1,0,1,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,154.0,1,19,37,9,7,140.4,1,0,1,1,1,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,2 +1,17,5,9070,0,1,125.0,1,19,1,5,5,122.6,1,0,1,1,0,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,2,9119,0,1,137.0,1,1,1,4,4,130.4,1,0,0,1,0,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,0 +1,1,1,9085,0,1,134.0,1,37,19,9,9,136.8,1,0,1,1,0,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,1 +1,39,1,9773,0,19,100.0,1,37,37,0,0,128.0,1,0,1,1,0,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +4,39,1,9130,0,19,133.1,1,37,38,9,4,100.9,0,0,1,1,0,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,127.0,1,1,19,5,7,130.5,1,0,1,1,1,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,1 +2,1,1,9003,0,1,131.0,1,19,38,5,5,118.4,0,0,1,1,1,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,142.0,1,1,38,5,7,127.7,0,0,1,1,1,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,130.0,1,1,38,4,9,115.0,0,0,1,1,0,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,100.0,0,0,1,1,1,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,1 +1,17,5,9773,0,1,134.0,1,1,19,9,5,121.8,1,0,1,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,1 +1,1,3,9853,0,1,122.0,1,1,3,5,3,113.6,0,0,1,1,1,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,114.0,1,37,37,7,8,116.7,0,0,1,1,0,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,130.0,1,3,1,3,3,120.5,0,0,1,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,148.0,1,19,19,4,5,143.5,0,0,1,1,1,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,19,9,9,107.0,0,0,1,0,0,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,130.0,1,3,19,5,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,39,1,9500,0,19,133.1,1,37,37,9,6,120.0,0,0,1,0,1,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,0 +1,1,2,9853,0,1,123.0,1,19,1,194,103,115.3,1,0,1,1,1,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,2 +1,18,1,9130,0,1,135.0,1,38,19,9,5,121.7,1,0,1,1,1,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,116.0,1,38,38,5,8,110.8,1,0,1,1,1,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,7,1,9147,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9991,1,1,133.1,41,37,37,9,8,114.7,0,0,1,1,1,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,122.0,1,37,37,9,7,120.6,1,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,150.0,1,5,5,2,2,146.2,0,0,1,1,1,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,0 +2,7,1,9147,0,3,130.0,1,1,4,3,10,130.0,0,0,1,1,1,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9085,0,19,110.0,1,37,37,90,90,110.0,0,0,1,0,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,140.0,1,1,1,9,9,136.9,1,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,44,1,9085,0,39,150.0,1,19,19,9,9,150.0,1,0,1,1,1,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,1 +2,43,1,9003,0,1,149.0,1,1,1,4,5,156.1,1,0,1,0,0,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9119,0,1,133.1,1,1,1,9,3,136.0,0,0,1,1,0,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,0 +1,16,2,9238,0,1,122.0,1,19,37,9,7,127.3,1,0,1,1,1,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,133.0,1,1,1,6,7,134.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,141.0,1,19,38,9,9,130.5,0,0,1,1,0,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,121.0,1,1,3,9,3,123.8,0,0,1,0,0,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,0 +1,44,1,9238,0,39,140.0,1,1,1,4,3,138.6,0,0,1,1,0,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,0 +1,1,1,9991,1,1,145.0,1,2,37,4,9,127.5,1,0,1,1,0,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,100.0,1,37,19,9,2,121.9,0,0,1,0,1,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,120.0,1,38,38,9,9,148.5,0,0,1,1,1,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +5,39,1,9991,1,1,110.0,1,1,1,3,3,119.0,0,0,1,1,0,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9254,0,1,137.0,1,1,38,2,8,122.3,1,0,1,1,0,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,42,1,9238,0,1,133.1,1,1,19,4,9,134.0,0,0,1,1,1,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,38,37,9,7,130.0,1,0,1,1,0,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,1 +5,7,1,9147,0,40,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,120.0,1,37,37,9,9,111.1,0,0,1,1,1,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,124.0,1,38,19,6,10,126.8,1,0,1,1,1,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,1 +2,1,1,9500,0,1,151.0,1,37,38,9,7,134.5,0,0,0,1,1,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,133.0,1,19,37,9,8,121.8,1,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,148.0,1,1,19,4,5,135.1,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,120.0,1,19,38,4,8,122.5,0,0,1,0,0,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,9070,0,1,140.0,1,37,37,9,10,118.0,0,0,0,1,0,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,3,133.1,1,9,9,90,90,130.0,0,0,1,1,1,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,150.0,1,34,34,0,0,108.0,0,0,1,1,1,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,1,150.0,1,1,38,3,5,120.0,0,0,1,1,0,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,2 +1,44,1,9085,0,39,150.0,1,38,1,5,5,150.0,0,0,1,1,1,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,2 +1,1,2,9238,0,1,133.1,1,19,19,9,9,106.0,1,0,1,1,1,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,102.0,1,38,38,9,9,99.6,1,0,1,1,1,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,140.0,1,38,19,9,5,130.0,0,0,0,1,1,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,2 +1,1,3,9773,0,1,138.0,1,3,1,2,3,135.9,1,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,1,9,4,150.0,1,0,1,1,0,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,0 +1,1,6,9147,0,1,127.0,1,1,19,1,6,120.0,1,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,0,0,1,1,0,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,137.0,1,38,38,4,8,126.5,1,0,1,1,1,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,1,19,4,4,132.6,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,130.0,1,1,1,4,9,150.0,0,0,1,1,0,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,146.0,1,3,1,1,3,149.2,1,0,1,1,1,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,129.0,1,38,38,6,6,118.5,1,0,1,1,1,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,131.0,1,19,3,3,2,126.1,1,0,1,1,1,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,2 +1,39,1,9085,0,43,160.0,1,3,39,2,3,172.0,0,0,1,1,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,39,1,9670,0,1,133.1,1,1,1,4,4,112.9,0,0,1,1,1,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,0 +2,39,1,9003,0,1,150.0,1,37,37,9,6,140.0,0,0,1,1,0,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,127.0,1,37,38,9,7,115.8,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,133.1,1,1,37,5,9,143.0,1,0,0,1,1,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,124.0,1,19,19,9,9,138.4,1,0,0,1,1,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,0 +1,1,1,9070,0,1,125.0,1,1,1,4,4,132.0,0,0,1,0,1,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,1,5,9130,0,1,160.0,1,3,1,2,9,150.2,1,0,1,1,1,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,1,110.0,1,37,37,9,4,160.0,0,0,1,1,1,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,135.0,1,19,37,5,7,121.4,0,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,2,9670,0,1,135.0,1,19,19,7,10,121.4,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,125.0,1,1,38,4,9,118.4,1,0,1,1,1,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,2 +1,1,6,9500,0,1,145.0,1,38,37,5,6,127.5,1,0,1,1,1,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,1 +1,43,3,171,0,1,140.0,1,37,38,7,7,143.4,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,134.0,1,37,19,9,10,141.4,1,0,1,1,1,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,130.0,1,29,38,9,8,122.0,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,109.0,1,19,19,4,9,104.1,1,0,0,0,1,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,116.0,1,34,34,0,0,127.0,1,0,1,1,0,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,3,8014,1,19,100.0,1,37,37,9,9,120.0,1,0,1,1,0,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9238,0,1,122.0,1,37,38,4,7,118.2,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,8014,1,1,100.0,1,12,5,9,4,116.5,0,0,0,0,1,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,122.0,1,19,19,193,194,112.6,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,42,3,9500,0,1,136.0,1,1,1,4,4,148.8,1,0,1,1,1,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,137.0,1,19,1,9,9,132.8,0,0,1,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,130.0,1,37,37,6,6,111.9,0,0,0,1,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9254,0,1,116.0,1,19,38,5,5,116.0,1,0,1,1,1,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,18,2,9500,0,1,131.0,1,1,3,3,2,121.2,1,0,1,1,1,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,141.0,1,1,19,3,3,131.9,1,0,1,1,1,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,120.0,1,37,37,9,10,122.6,0,0,1,1,1,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,0 +1,18,5,9119,0,1,136.0,1,3,2,2,3,125.2,1,0,1,1,0,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,125.0,1,19,1,7,4,122.6,0,0,1,1,0,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,139.0,1,19,37,9,9,131.5,1,0,1,1,1,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,1 +1,5,1,9853,0,1,119.0,1,1,38,5,8,118.3,1,0,1,1,1,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,2 +1,17,2,9773,0,1,125.0,1,1,38,5,6,115.9,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,126.0,1,1,19,4,8,120.1,1,0,1,1,1,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,1 +1,17,1,9085,0,1,125.0,1,1,37,4,9,117.0,1,0,1,1,1,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,135.0,1,19,38,7,5,121.0,0,0,1,1,1,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,138.0,1,38,37,3,3,133.1,0,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,148.0,1,19,37,9,5,130.9,0,0,1,0,0,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,145.0,1,12,1,4,10,139.8,1,0,1,1,1,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,118.0,1,37,37,3,5,110.0,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,51,1,9147,0,1,99.0,1,3,1,3,3,99.7,1,0,0,0,1,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,2 +1,17,2,9556,0,1,137.0,41,1,1,7,7,124.4,1,0,1,1,1,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,1 +1,17,3,9853,0,1,133.1,1,34,34,0,0,115.0,0,0,1,1,1,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,123.0,1,37,38,9,9,113.9,1,0,0,0,1,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,0 +1,1,4,9238,0,1,125.0,1,19,38,9,6,114.9,1,0,0,1,1,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,2 +1,18,1,8014,1,1,137.0,1,1,1,4,3,123.0,0,0,0,1,1,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,1 +1,43,1,8014,1,1,131.0,1,19,37,8,5,125.0,0,0,1,1,0,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9147,0,3,150.0,1,6,27,1,7,150.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,9,4,117.0,0,0,1,1,1,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,133.1,1,37,1,9,10,100.0,0,0,1,1,1,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,0 +1,1,3,9670,0,1,121.0,1,1,19,5,5,111.9,1,0,1,1,0,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,133.1,1,1,19,3,3,112.0,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,43,1,9991,1,1,140.0,1,1,1,6,6,100.0,0,0,1,1,0,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,1 +2,42,1,9556,0,1,110.0,1,37,37,9,6,140.0,0,0,1,1,0,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,130.0,1,1,1,4,4,124.8,0,0,1,1,1,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,138.0,1,38,37,9,6,126.8,1,0,1,1,0,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,1 +1,17,4,9773,0,1,127.0,1,2,37,9,9,115.8,1,0,0,0,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9085,0,1,170.0,1,1,1,4,5,166.6,0,0,0,0,1,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,130.0,1,1,1,4,4,130.0,1,1,1,1,0,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,3,1,2,8,100.0,1,0,1,1,0,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9670,0,1,106.0,1,3,1,2,3,105.7,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,43,1,9556,0,1,140.0,1,37,37,9,9,128.0,1,0,1,0,1,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,0 +1,1,1,9147,0,1,127.0,1,1,4,9,10,121.8,0,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,134.0,1,1,1,9,6,130.9,0,0,0,1,1,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,133.1,1,37,37,7,4,132.0,0,0,1,1,0,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,110.0,1,12,3,5,2,100.0,1,0,1,1,0,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,6,9238,0,1,113.0,1,1,38,194,163,112.3,1,0,0,1,1,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,118.0,1,19,19,5,7,121.2,0,0,1,1,0,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,51,1,9773,0,1,158.0,1,1,19,8,8,117.1,1,0,1,1,0,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,0 +1,17,1,9070,0,1,119.0,1,37,38,9,8,124.6,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,111.0,1,19,19,3,10,117.7,0,0,1,1,1,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,140.0,1,3,1,5,9,130.0,0,0,1,1,0,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,122.0,1,3,1,9,10,114.7,0,0,1,1,1,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,1 +2,39,1,9238,0,19,133.1,1,1,2,4,6,130.0,0,0,1,1,1,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,2 +1,17,2,9500,0,1,131.0,1,38,1,5,7,118.4,1,0,1,1,1,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,0 +1,43,5,9853,0,1,150.0,1,34,34,0,0,150.2,1,0,1,0,1,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,140.0,1,37,19,9,9,166.0,1,0,0,1,0,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9085,0,1,133.1,1,19,37,9,6,130.0,1,0,1,1,1,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,1 +1,1,4,9147,0,1,120.0,1,38,38,5,10,111.3,0,0,1,1,0,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,2 +1,1,5,9500,0,1,125.0,1,3,19,4,8,120.3,1,0,1,1,1,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,2 +1,17,2,9556,0,1,136.0,1,1,1,9,9,128.3,0,0,1,1,1,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,133.1,1,38,19,5,5,128.0,0,0,1,1,1,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,9,133.1,1,37,37,5,3,110.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9254,0,1,118.0,1,19,1,4,4,115.9,1,0,1,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,134.0,1,19,37,7,7,136.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,130.0,1,37,37,9,7,119.9,0,0,1,1,1,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9773,0,1,153.0,1,34,34,99,99,133.1,1,0,0,1,1,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,10,133.1,1,12,36,90,90,128.2,0,0,1,0,0,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,1,9991,1,1,112.0,1,43,40,2,2,106.4,0,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,122.0,1,3,3,2,2,122.0,1,0,1,1,1,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,137.0,1,1,19,4,3,121.3,1,0,1,1,0,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,1 +1,39,1,9085,0,19,133.1,1,3,1,2,5,103.0,0,0,1,1,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,136.0,1,1,19,9,9,131.5,0,0,1,1,1,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,154.0,1,1,3,4,2,164.9,0,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,1 +1,17,6,9147,0,1,129.0,1,19,1,9,4,122.0,1,0,1,1,0,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,132.0,1,19,19,9,7,128.0,1,0,1,1,0,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,1 +2,39,1,9773,0,19,133.1,1,19,19,9,4,131.0,0,0,0,0,0,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,0 +4,39,1,8014,1,1,160.0,1,37,37,5,5,126.0,0,0,1,1,1,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,1 +1,16,2,9238,0,1,126.0,1,38,37,3,5,127.1,1,0,1,1,1,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,1 +1,1,2,9254,0,1,111.0,1,1,19,5,7,109.3,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,1 +1,17,2,9556,0,1,133.1,1,37,37,3,10,108.0,0,0,1,1,1,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,1 +1,1,4,9773,0,1,140.0,22,1,37,3,9,130.5,1,0,1,1,1,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,1 +1,7,1,9500,0,3,140.0,1,1,1,9,5,140.0,0,0,1,1,1,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,0 +1,17,3,9670,0,1,125.0,1,1,3,4,3,117.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,150.0,1,37,38,9,9,131.5,1,0,1,1,1,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,5,100.0,0,0,1,0,0,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9773,0,1,133.0,1,19,19,7,7,134.4,1,0,1,1,0,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,135.0,1,19,37,9,9,128.0,1,0,1,1,1,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,5,9670,0,1,115.0,1,1,19,5,5,117.1,0,0,1,1,1,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,2 +1,51,1,9003,0,39,130.0,1,1,19,4,4,120.0,1,0,0,0,0,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,0 +1,1,3,9773,0,1,117.0,1,38,19,7,7,110.4,1,0,0,0,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9773,0,1,127.0,1,19,38,8,3,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,38,37,1,1,115.0,1,0,1,1,1,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,2 +1,18,2,9853,0,1,123.0,1,1,3,9,2,123.7,1,0,0,0,1,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,0 +1,1,3,9853,0,1,122.0,1,3,3,2,2,112.6,1,0,1,1,1,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,17,3,9254,0,1,127.0,1,37,37,9,6,123.5,1,0,1,1,1,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,141.0,1,37,37,9,9,136.3,1,0,1,1,0,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,1 +1,1,1,9773,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,17,2,9254,0,1,140.0,1,3,3,2,2,124.3,0,0,1,0,0,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,125.0,1,1,3,4,1,121.9,1,0,1,1,0,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,0 +1,17,1,9070,0,1,134.0,1,1,1,5,0,133.3,1,0,1,1,0,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9670,0,1,127.0,22,37,37,9,9,127.0,1,0,1,1,0,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,1 +1,42,1,9853,0,1,120.0,1,37,38,3,3,113.7,0,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,0 +1,1,3,9670,0,1,121.0,1,3,19,2,8,122.4,1,0,1,1,0,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,2 +1,1,3,171,0,1,139.0,1,19,19,5,3,128.2,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,42,1,9085,0,1,100.0,1,1,38,4,9,100.0,1,0,1,1,1,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,10,1,9500,0,1,140.0,24,3,3,2,9,140.0,1,0,0,0,1,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,0 +1,1,1,9773,0,1,132.0,1,37,19,9,9,131.0,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,124.0,1,1,1,4,4,127.9,1,0,1,1,0,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,2 +5,39,1,9119,0,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,2 +1,17,1,9773,0,1,117.0,1,38,38,9,9,111.1,0,0,0,1,0,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,19,133.1,1,19,37,9,9,149.4,0,0,1,0,0,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,1,1,161.9,0,0,1,1,0,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9147,0,1,140.0,1,38,37,4,7,130.0,1,0,1,0,1,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,43,1,171,0,1,145.0,1,19,38,9,9,100.0,0,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9773,0,1,120.0,1,37,38,9,3,155.5,0,0,1,1,0,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,121.8,0,0,1,0,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,7,1,9130,0,3,140.0,1,5,4,2,0,140.0,0,0,0,0,1,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,0 +1,51,1,171,0,1,128.0,1,2,1,3,3,131.2,1,0,1,1,0,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,1 +2,39,1,8014,1,12,110.0,1,37,37,7,9,120.0,0,0,1,1,1,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,150.0,1,2,3,3,2,140.8,0,0,1,1,1,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,2 +1,43,1,9070,0,1,125.0,1,19,19,7,8,133.4,1,0,1,1,0,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,2 +1,1,5,171,0,1,160.0,1,1,1,4,4,139.7,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,1,120.0,1,1,38,9,9,150.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,154.0,1,19,19,3,3,142.0,0,0,1,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9254,0,1,110.0,1,4,19,4,3,114.8,1,0,1,0,0,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9119,0,1,140.0,1,34,34,9,9,140.0,0,0,1,0,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,125.0,1,1,1,4,2,134.1,1,0,1,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,7,1,9254,0,40,130.0,1,1,1,3,6,130.0,0,0,1,1,1,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9254,0,1,122.0,1,37,37,9,3,124.5,1,0,1,1,1,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,130.0,1,1,3,9,2,128.6,1,0,1,1,1,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,1 +1,17,4,9670,0,1,122.0,1,3,1,2,3,119.6,1,0,1,1,0,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,1 +1,44,3,9085,0,39,150.0,1,1,19,4,1,150.0,1,0,1,1,1,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,19,37,9,9,130.0,1,0,1,1,0,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,133.1,1,38,19,4,7,98.0,1,0,1,1,0,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,2 +1,17,2,9556,0,1,125.0,1,38,19,7,7,121.5,1,0,1,1,1,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,0 +2,1,4,9500,0,1,143.0,1,38,38,5,5,128.7,1,0,1,1,1,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,1,100.0,1,1,19,4,8,122.0,0,0,1,1,1,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,1 +1,51,1,9500,0,1,170.0,1,1,1,4,10,125.0,0,0,1,1,0,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,1 +1,18,4,9500,0,1,137.0,1,3,1,3,4,126.7,1,0,1,1,1,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,19,133.1,1,38,38,9,8,106.0,1,0,1,1,0,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,1 +1,39,1,9991,1,40,130.0,1,19,1,3,4,152.0,1,0,1,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9085,0,39,140.0,1,1,39,3,9,140.0,1,0,1,1,1,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,2 +1,17,2,9773,0,1,133.1,1,3,1,4,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +2,43,1,9853,0,1,110.0,1,37,37,7,7,100.0,0,0,1,1,0,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,1 +1,7,1,9119,0,3,120.0,1,19,19,1,1,120.0,0,0,1,0,0,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,1,130.0,1,34,34,99,99,114.8,0,0,1,1,1,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,1 +2,39,1,8014,1,1,140.0,1,37,3,9,10,172.0,0,0,1,1,0,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,2 +1,17,2,9670,0,1,123.0,1,34,37,0,0,114.6,1,0,0,0,1,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,0 +1,43,2,9500,0,1,136.0,1,19,1,9,10,124.1,0,0,1,1,0,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,116.0,1,1,1,1,1,110.8,1,0,1,1,1,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,1 +1,39,1,9003,0,1,133.1,1,37,37,4,7,130.0,0,0,0,0,0,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,0 +1,1,3,9085,0,1,158.0,1,1,19,9,9,153.6,1,0,1,1,1,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,1 +1,17,4,9773,0,1,121.0,1,1,19,9,8,120.3,1,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,5,3,9085,0,1,141.0,1,1,19,7,5,128.8,1,0,1,1,1,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,2 +1,18,4,9556,0,1,127.0,1,1,38,4,7,121.8,1,0,1,1,1,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,37,37,9,9,109.0,1,0,1,1,1,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,110.0,1,34,34,0,0,114.6,1,0,1,1,1,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9085,0,1,128.0,1,38,19,8,8,117.2,0,0,1,1,0,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,143.0,1,1,38,3,3,133.2,1,0,1,1,1,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,1 +1,1,4,9853,0,1,134.0,1,19,1,5,9,127.4,1,0,1,1,1,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,2 +1,1,1,9670,0,1,133.1,1,3,1,1,7,155.0,0,0,1,1,1,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,114.0,1,19,38,9,7,129.1,0,0,1,1,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,149.0,1,19,37,7,4,134.3,0,1,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,130.0,1,1,38,3,5,128.6,1,0,1,1,0,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,1 +1,42,1,9147,0,1,139.0,1,3,38,2,5,112.3,1,0,1,1,1,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,2 +1,1,3,9773,0,1,130.0,1,19,19,9,9,123.0,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,43,1,9500,0,1,130.0,1,38,38,9,5,100.0,0,0,1,1,1,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,2 +6,39,1,8014,1,1,133.1,1,37,1,9,7,114.8,0,0,1,1,1,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,121.0,1,1,38,4,9,114.4,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,18,1,9238,0,1,122.0,1,38,38,9,7,114.7,0,0,0,1,1,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,1 +1,17,2,9773,0,1,120.0,1,1,1,2,5,127.0,1,0,1,0,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,39,120.0,1,4,1,2,8,120.0,0,0,1,1,0,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,1 +1,17,3,9500,0,1,143.0,1,38,1,9,5,133.8,1,0,1,1,1,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,130.0,1,1,19,9,7,133.8,0,0,0,1,1,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,1 +2,39,1,9556,0,1,100.0,1,37,37,9,9,120.0,0,0,1,1,1,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,133.1,1,1,19,5,4,102.5,0,0,1,1,1,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9003,0,1,111.0,1,1,3,4,2,162.4,0,0,0,0,0,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,133.1,1,19,1,9,3,107.0,1,0,1,1,1,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,128.0,1,19,1,4,4,124.3,1,0,1,1,0,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,140.0,1,36,14,9,10,130.0,1,0,1,1,0,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,150.0,1,38,19,7,10,134.6,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9070,0,1,134.0,1,34,1,5,7,129.8,1,0,1,1,1,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,150.0,1,37,37,9,3,150.0,1,0,1,1,0,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,0 +2,39,1,9238,0,1,126.6,1,38,38,9,7,107.5,0,0,0,1,1,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,120.0,1,37,37,9,7,106.8,0,0,1,1,1,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,1,9254,0,1,117.0,1,1,1,5,5,116.3,1,0,1,1,0,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,130.0,1,19,19,5,5,157.0,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9556,0,1,133.1,1,44,40,2,2,115.5,0,0,1,1,1,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,133.1,1,3,1,2,4,125.0,0,0,1,1,0,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,2 +2,39,1,9003,0,1,133.1,1,37,37,9,9,100.0,0,0,1,0,0,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,0 +1,17,2,9500,0,1,141.0,1,37,1,9,4,127.3,1,0,1,1,1,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,117.0,1,38,38,175,183,113.2,1,0,0,1,1,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,133.1,1,37,37,7,7,124.5,0,0,1,0,0,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,0 +1,17,2,9070,0,1,133.1,1,37,38,9,10,178.0,1,0,1,1,0,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,120.0,1,19,19,9,9,115.0,1,0,1,1,0,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9853,0,1,146.0,1,1,1,3,4,128.2,0,0,0,1,1,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,2 +1,17,4,9070,0,1,128.0,1,1,1,9,10,136.1,1,0,0,0,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,0 +5,39,1,9500,0,3,140.0,1,37,38,9,9,160.0,0,0,1,1,1,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,1 +1,39,1,8014,1,1,133.1,1,37,37,9,8,121.0,0,0,0,0,1,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,0 +1,43,1,9130,0,1,140.0,1,2,1,2,3,140.0,1,0,1,1,1,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,1 +1,1,3,9670,0,1,126.0,1,37,37,0,0,136.5,1,0,1,1,1,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,1 +1,17,4,9238,0,1,140.0,1,19,37,9,9,130.2,1,0,1,1,1,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,142.0,1,1,3,1,2,133.0,0,0,1,1,1,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,136.0,1,19,38,9,9,121.7,1,0,1,1,0,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,17,4,9085,0,1,106.0,1,37,1,3,9,106.0,0,0,1,1,1,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,2 +1,1,3,9500,0,1,135.0,1,1,37,7,7,120.5,1,0,1,1,1,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,115.0,1,19,19,7,7,115.0,1,0,1,1,1,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9238,0,1,160.0,1,38,1,9,3,124.0,0,0,0,1,0,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,2 +1,1,1,9500,0,1,129.0,1,38,38,5,5,120.8,1,0,1,1,1,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,160.0,41,37,19,9,9,160.0,0,0,1,1,1,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,132.0,1,1,19,7,5,129.9,1,0,1,1,0,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,136.0,1,37,38,9,8,139.2,1,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,127.0,1,19,37,9,7,121.3,1,0,1,1,1,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,1 +1,1,1,9119,0,1,142.0,1,1,38,4,3,129.8,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,133.1,1,37,37,5,8,133.2,0,0,1,0,0,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,0 +1,1,1,9147,0,1,150.0,1,1,19,5,5,137.8,1,0,1,1,0,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,135.0,1,3,1,2,4,129.8,1,0,1,1,0,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,1 +1,43,2,9773,0,1,132.0,1,19,19,0,0,127.1,0,0,1,1,0,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,1 +1,17,3,9500,0,1,140.0,1,3,2,3,3,126.4,1,0,1,1,1,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,0 +2,39,2,9119,0,19,133.1,1,37,37,7,7,118.0,0,0,1,0,0,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,110.0,1,3,4,2,2,110.0,1,0,1,1,0,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,0 +2,39,1,9500,0,38,133.1,1,37,37,9,3,146.6,0,0,1,1,0,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,146.0,1,1,3,4,1,135.2,1,0,1,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,3,5,2,2,135.8,0,0,0,1,0,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,0 +2,39,1,9773,0,19,100.0,1,37,37,0,0,163.5,0,0,0,0,0,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,124.0,1,19,19,9,7,113.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,143.0,1,3,3,9,7,129.0,1,0,1,1,0,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,1 +1,1,2,9853,0,1,117.0,1,1,38,4,9,109.7,1,0,1,1,1,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,2 +1,7,1,9130,0,2,133.1,6,42,1,4,9,100.0,0,0,1,1,0,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,115.8,0,0,0,0,0,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,0 +1,18,1,9773,0,1,167.0,1,38,38,6,7,153.0,1,0,1,1,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,51,1,9238,0,1,141.0,1,1,1,5,9,125.0,0,0,1,1,0,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,17,4,9500,0,1,132.0,1,38,19,5,7,125.5,0,0,1,1,1,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,1 +1,1,1,9119,0,1,132.0,1,1,12,3,3,133.1,1,0,1,1,0,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,149.0,1,1,1,4,4,129.3,1,0,1,1,0,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,1 +2,39,1,9147,0,1,130.0,1,37,37,9,9,142.5,0,0,1,1,1,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,2 +1,1,6,9773,0,1,133.1,1,1,37,3,3,100.0,1,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,138.0,1,37,37,9,6,145.0,1,0,1,1,1,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,19,19,3,6,124.3,1,0,1,1,1,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,135.0,1,37,37,9,7,132.6,1,0,1,1,1,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,159.0,1,34,26,0,6,160.1,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,1 +2,39,1,8014,1,1,133.1,1,37,37,6,8,100.0,0,0,0,1,1,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9070,0,1,153.0,1,3,3,1,2,146.7,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,1 +1,43,1,171,0,2,140.0,1,37,37,9,9,140.0,1,0,1,1,1,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,141.0,1,19,19,9,8,142.8,0,0,1,1,1,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,1 +1,39,2,9556,0,1,130.0,1,19,19,4,5,100.0,0,0,1,1,0,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,120.0,1,38,19,3,5,120.0,0,0,1,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,2 +1,39,2,9147,0,1,120.0,1,37,37,9,9,104.0,0,0,1,0,0,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9085,0,1,150.0,1,38,38,9,9,132.0,1,0,1,1,1,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,142.0,1,38,38,9,9,132.9,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9085,0,1,160.0,1,4,19,2,5,162.1,1,0,1,1,1,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,141.0,1,37,37,9,8,130.2,1,0,1,1,1,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,118.0,1,1,1,9,9,111.0,0,0,1,0,0,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,119.0,1,37,37,10,6,119.7,1,0,1,1,1,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,2 +1,17,2,171,0,1,137.0,1,1,1,4,1,143.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,18,3,9085,0,1,149.0,103,1,1,9,9,132.2,1,0,1,1,1,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,130.0,1,37,37,90,90,125.1,0,0,1,1,1,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,1 +4,17,5,8014,1,1,100.0,1,19,19,90,90,107.0,0,0,1,1,1,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,19,133.1,1,38,19,9,10,142.7,0,0,0,1,0,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,139.0,1,19,37,5,5,125.5,0,0,1,1,1,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,133.0,1,4,1,5,5,131.6,0,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,148.0,1,19,19,9,3,125.0,1,0,1,1,1,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,110.0,1,37,37,9,9,110.3,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,53,1,9003,0,42,130.0,1,38,38,9,9,130.0,1,0,0,1,0,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,2 +1,1,4,9070,0,1,140.0,1,4,19,2,10,125.0,1,0,1,1,0,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,2 +1,42,1,9003,0,39,140.0,1,19,1,5,5,140.0,0,0,1,1,1,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,2 +1,1,4,9070,0,1,136.0,1,37,37,9,8,136.7,1,0,1,1,1,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,1,5,9773,0,1,125.0,1,37,3,5,2,126.1,1,0,1,1,0,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,8014,1,1,126.0,1,37,38,9,10,119.4,0,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,123.0,1,1,3,2,2,118.8,0,0,1,1,0,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,2 +1,1,6,9500,0,1,144.0,1,1,37,9,9,127.5,1,0,1,1,1,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,1 +1,43,1,9070,0,1,125.0,1,38,37,8,7,131.7,1,0,1,1,0,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,144.0,1,37,37,8,8,138.4,0,0,1,1,1,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,160.0,1,37,37,3,4,97.0,0,0,1,1,1,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9853,0,1,119.0,1,37,38,9,9,125.0,1,0,1,1,1,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,117.0,1,37,37,9,9,109.3,0,0,1,0,1,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,3,130.0,1,37,37,9,9,146.2,0,0,1,1,1,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,150.0,1,37,37,9,9,130.3,0,0,1,1,1,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,1 +2,39,2,8014,1,19,100.0,1,37,37,4,7,100.0,0,0,0,1,1,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,39,1,8014,1,38,133.1,1,38,37,4,8,95.5,0,0,1,1,0,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,120.7,0,0,1,1,1,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,1 +1,39,1,9119,0,19,120.0,1,37,37,9,4,98.6,0,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9130,0,1,120.0,1,19,37,1,9,116.1,1,0,1,1,0,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9500,0,1,136.0,1,1,1,4,9,128.5,1,0,1,1,1,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,132.0,1,38,37,7,7,131.3,1,0,1,1,1,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,2 +1,1,2,9500,0,1,115.0,1,38,38,9,8,108.4,1,0,1,1,1,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,120.0,1,37,37,9,9,98.7,0,0,1,1,0,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,120.0,1,37,37,9,9,155.8,0,0,1,1,0,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,151.0,1,19,1,5,0,144.4,1,0,1,1,1,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,1 +1,43,2,9147,0,1,131.0,1,19,37,5,9,123.7,1,0,1,1,1,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,2 +1,17,4,9085,0,1,128.0,1,38,37,4,9,117.9,1,0,1,1,1,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,1 +1,43,1,8014,1,12,133.1,1,37,1,9,10,112.5,0,0,1,1,0,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,0 +1,39,1,9085,0,19,133.1,1,37,37,4,8,140.0,0,0,1,1,1,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,7,1,9147,0,2,150.0,1,3,37,2,5,150.0,1,0,0,0,1,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,18,2,9147,0,1,102.0,1,37,38,191,143,101.7,1,0,1,1,1,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,128.0,1,19,1,4,1,118.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,0 +2,39,1,8014,1,1,133.1,1,19,1,4,8,144.3,0,0,1,1,0,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,1 +1,1,5,9254,0,1,128.0,1,19,1,7,10,116.5,1,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,140.0,1,19,19,7,5,135.1,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,1 +1,18,2,9500,0,1,129.0,1,38,37,5,5,119.0,1,0,1,1,1,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,140.0,1,3,1,3,3,131.5,1,0,1,1,1,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,143.0,1,3,3,2,5,144.8,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,127.0,1,37,37,9,8,123.2,1,0,1,1,1,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,2 +1,43,1,9500,0,1,125.0,1,37,37,9,7,123.6,1,0,1,1,1,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,138.0,1,1,38,3,9,123.0,1,0,1,1,1,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,139.0,1,38,38,9,9,145.0,1,0,1,1,1,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,121.0,1,37,19,6,7,116.8,1,0,1,1,1,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,2,9085,0,1,123.0,1,1,19,4,9,113.6,1,0,1,1,1,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,2 +1,17,6,9773,0,1,126.0,1,1,19,5,5,119.0,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,4,9119,0,1,139.0,1,37,19,9,4,133.1,1,0,1,1,0,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,2 +1,1,1,9147,0,1,158.0,1,1,38,3,6,155.2,0,0,1,1,0,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,1 +1,17,2,8014,1,1,133.1,1,19,1,1,1,118.0,0,0,1,1,1,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,136.0,1,22,30,0,8,135.7,1,0,1,1,1,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,120.0,1,37,37,9,9,110.0,0,0,1,0,0,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,124.0,1,19,19,7,9,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,2 +5,7,1,9991,1,2,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,1 +1,1,4,9238,0,1,123.0,1,38,1,4,10,129.0,1,0,1,1,1,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,17,4,9119,0,1,135.0,1,38,37,5,7,126.6,1,0,1,1,0,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,2 +1,1,3,9070,0,1,129.0,1,5,3,5,7,124.8,1,0,1,1,1,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,1 +1,17,5,9147,0,1,127.0,1,1,38,4,5,124.6,1,0,1,1,1,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,135.0,1,1,1,4,4,118.5,0,0,1,1,1,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,171,0,1,142.0,1,3,1,2,6,139.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +5,39,1,9147,0,1,133.1,1,19,19,9,9,119.8,0,0,1,1,0,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,123.0,1,1,37,9,9,132.1,0,0,1,1,1,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,1 +1,43,1,9853,0,1,115.0,1,3,37,2,5,108.7,1,0,1,1,1,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,12,133.1,1,37,34,90,90,110.7,1,0,1,1,1,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,155.0,1,4,3,1,1,144.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,4,9254,0,1,105.0,1,1,19,9,6,106.1,1,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,150.0,1,19,19,3,4,135.0,0,0,1,1,1,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,152.0,1,37,37,5,7,136.3,0,0,1,1,1,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,34,34,0,0,120.5,1,0,1,1,0,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,140.0,1,1,37,4,5,123.6,1,0,1,1,1,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,120.0,1,37,37,9,9,150.1,1,0,1,1,0,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,144.0,1,37,38,9,9,126.9,0,0,1,1,1,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,120.0,1,37,37,9,9,128.2,0,0,1,0,0,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,0 +1,18,2,9147,0,1,115.0,1,1,37,5,5,108.7,1,0,1,1,1,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,140.0,1,19,19,4,4,140.0,1,0,1,0,0,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,1,1,3,7,140.0,1,0,1,1,1,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9500,0,1,129.0,1,19,19,5,5,119.6,1,0,1,1,1,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,1 +1,17,6,9773,0,1,141.0,1,37,37,5,5,127.7,1,0,1,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,137.0,1,19,37,4,7,126.3,1,0,1,1,1,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,1 +2,39,1,9003,0,1,168.0,1,1,41,9,3,153.9,0,0,0,0,0,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,133.0,1,37,37,9,9,121.8,1,0,1,1,1,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,119.0,1,2,1,4,3,113.1,1,0,1,1,1,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,43,1,9147,0,1,142.0,1,38,19,141,171,115.0,0,0,1,1,1,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,2 +1,17,4,9773,0,1,138.0,1,37,19,5,7,133.5,1,0,1,0,1,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +2,7,1,8014,1,3,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,133.0,1,3,19,2,5,130.8,1,0,1,1,1,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,137.0,1,38,19,152,171,131.1,1,0,1,1,1,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,3,9119,0,1,130.0,1,1,38,3,3,129.3,0,0,1,1,0,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,1 +1,43,1,9773,0,1,126.0,1,1,37,3,0,110.0,0,0,0,1,1,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,116.0,1,1,12,5,8,110.4,1,0,1,1,0,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,1,1,4,10,110.0,0,0,0,1,1,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,17,5,9238,0,1,134.0,1,38,37,9,9,126.0,0,0,0,0,1,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,0 +2,39,1,9147,0,1,130.0,1,1,19,9,9,109.9,0,0,1,0,1,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9085,0,1,133.1,41,37,37,9,9,109.6,0,0,1,1,1,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,0 +1,44,1,9003,0,39,140.0,1,37,37,9,1,140.0,0,0,1,1,0,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,2 +2,39,1,9991,1,19,133.1,1,38,38,90,90,121.7,1,0,1,1,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,143.0,1,1,3,4,7,129.7,1,0,1,1,1,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,133.0,1,1,19,9,6,121.5,1,0,1,1,1,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,1 +1,17,1,9003,0,1,133.0,1,38,37,9,9,125.3,1,0,1,1,1,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,1 +1,42,1,9991,1,1,160.0,1,1,2,4,3,120.0,0,0,1,1,1,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,1 +2,39,2,9556,0,1,133.1,105,1,3,9,2,152.8,1,0,1,1,1,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,123.0,1,1,1,4,6,118.8,1,0,1,1,1,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9853,0,1,122.0,1,3,19,2,3,112.9,0,0,1,1,1,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,1 +1,1,5,9853,0,1,123.0,1,1,12,4,9,113.2,1,0,1,1,1,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,140.0,1,37,37,9,9,141.5,1,0,0,0,1,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,129.0,1,19,19,4,8,127.3,1,0,1,1,1,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,1 +1,39,1,9085,0,1,130.0,1,37,37,6,6,110.0,0,0,1,1,1,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,2 +4,39,1,8014,1,19,133.1,1,37,37,9,9,95.0,0,0,0,0,1,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9853,0,1,127.0,1,37,19,9,8,137.5,1,0,1,1,1,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,1 +1,1,5,9500,0,1,142.0,1,38,37,5,7,128.8,1,0,1,1,1,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,1 +1,17,2,9147,0,1,142.0,1,19,19,4,8,127.3,0,0,1,1,1,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +3,39,1,9991,1,1,120.0,1,37,1,9,2,170.0,0,0,1,1,0,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,138.0,1,19,37,4,9,141.0,0,0,1,1,0,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,132.0,1,1,38,9,9,120.1,1,0,1,1,0,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,140.0,1,1,1,2,7,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,121.0,1,37,19,9,10,113.7,0,0,1,1,1,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,2 +1,39,1,8014,1,38,133.1,1,1,1,4,4,107.5,0,0,0,0,0,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,150.0,1,1,1,5,1,155.6,0,0,1,1,1,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,150.0,1,37,37,9,6,131.1,0,0,1,1,1,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,100.0,1,3,19,1,1,117.9,0,0,1,0,0,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,39,2,9991,1,1,150.0,1,37,37,9,9,120.0,0,0,1,1,1,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,150.0,1,1,38,4,9,150.0,0,0,1,1,0,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,2 +2,43,1,9130,0,9,133.1,1,34,34,0,0,128.2,0,0,1,1,0,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,141.0,1,1,1,90,3,127.8,0,0,1,1,1,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,0 +1,1,1,9070,0,1,116.0,1,3,3,0,1,108.7,1,0,1,1,0,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,0 +2,39,1,9500,0,1,140.0,1,19,19,9,7,110.5,0,0,1,1,1,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9254,0,19,133.1,1,34,34,0,0,120.0,0,0,0,0,0,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,1,133.1,1,37,37,191,172,115.2,0,0,1,1,1,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,37,38,9,6,160.0,0,0,1,1,1,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,133.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9556,0,1,131.0,1,19,38,9,7,128.5,0,0,1,1,1,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,160.0,1,37,38,9,7,161.0,1,0,1,1,1,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,136.0,1,3,3,1,2,152.5,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9853,0,1,114.0,1,19,37,5,5,109.5,1,0,1,1,1,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,150.0,1,37,37,9,7,122.5,0,0,1,1,0,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,0 +1,44,1,9991,1,39,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,2 +1,51,1,8014,1,42,140.0,1,19,37,134,193,138.0,1,0,0,1,1,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,127.0,1,2,19,3,9,121.5,0,0,1,1,0,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,133.1,1,19,19,3,3,125.3,0,1,1,1,0,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,4,9670,0,1,125.0,1,4,19,2,5,118.0,1,0,1,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,1 +2,42,1,9070,0,1,170.0,1,37,25,0,4,148.5,0,0,1,1,0,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,0 +1,17,5,9254,0,1,121.0,1,1,19,4,7,116.5,1,0,1,0,0,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,120.0,1,19,38,5,9,130.2,0,0,1,1,1,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,140.0,1,19,37,9,9,140.7,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,140.0,1,19,19,5,9,131.3,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,42,1,9119,0,1,140.0,1,3,3,3,2,133.6,1,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,8014,1,1,150.0,1,19,2,4,6,148.0,0,0,1,1,1,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,127.0,1,37,2,9,4,123.2,1,0,1,1,1,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,119.0,1,19,37,9,9,119.4,1,0,1,1,1,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,132.0,1,2,1,4,1,127.8,0,0,1,1,0,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,0 +1,42,1,9119,0,1,136.0,1,1,37,5,5,117.5,0,0,1,1,0,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,2 +1,1,1,9991,1,1,122.0,1,37,37,9,3,113.6,0,0,1,1,0,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,19,19,5,6,137.4,0,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,2 +1,17,1,9238,0,1,128.0,1,19,19,5,4,116.5,0,0,1,1,1,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,139.0,1,1,38,6,6,143.6,1,0,0,1,0,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9130,0,1,154.0,1,3,3,2,2,137.2,1,0,0,1,0,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,0 +1,17,6,9500,0,1,142.0,1,19,37,4,9,131.9,1,0,1,1,1,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,0 +1,1,2,9773,0,1,131.0,1,19,37,9,10,121.9,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +2,7,1,9130,0,3,120.0,1,3,3,1,1,128.2,0,0,1,1,1,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,19,133.1,1,37,37,9,9,150.3,0,0,1,1,1,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,125.0,1,37,37,5,5,124.0,0,0,1,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,135.0,1,37,19,9,9,125.2,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,135.0,1,19,19,9,9,124.5,0,0,1,1,1,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,175.0,1,3,38,2,10,157.5,1,0,1,1,1,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,139.0,1,1,1,4,10,140.7,0,0,1,1,0,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,0 +1,1,4,9500,0,1,128.0,1,1,1,4,10,125.2,1,0,1,1,0,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,150.0,1,1,37,1,1,131.5,1,0,1,1,1,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,168.0,1,38,1,9,10,166.0,1,0,1,1,1,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,1 +1,51,1,9070,0,1,125.0,1,42,3,125,124,130.0,1,0,1,1,0,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,135.0,1,1,38,4,5,127.5,1,0,1,1,1,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,1 +1,18,1,9119,0,1,148.0,1,3,19,3,5,147.7,0,0,1,1,0,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9773,0,1,130.0,109,19,1,9,9,126.9,1,0,1,1,1,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,125.0,1,19,38,3,7,114.9,0,0,1,1,1,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,1 +1,7,1,9119,0,3,130.0,1,37,37,9,9,130.0,0,0,1,0,0,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9853,0,1,130.0,1,37,19,7,3,140.0,0,0,0,1,1,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,112.0,1,3,1,3,5,111.0,0,0,1,1,1,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,37,38,193,181,125.9,0,0,1,1,1,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,1 +1,42,1,9119,0,1,120.0,1,34,34,0,0,128.2,1,0,1,1,0,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,19,133.1,1,37,37,9,9,117.2,0,0,1,1,1,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9147,0,1,131.0,1,19,38,9,7,132.4,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,2 +5,39,1,9003,0,1,180.0,1,1,1,4,8,179.6,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,1,5,9119,0,1,135.0,1,37,37,90,90,122.1,1,0,1,1,0,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,133.0,1,1,38,5,10,131.3,1,0,1,1,1,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,2 +1,18,1,9500,0,1,126.0,1,37,19,5,5,119.3,0,0,1,1,1,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,110.0,1,19,37,9,6,120.0,0,0,0,0,0,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9556,0,1,130.0,1,37,37,9,9,159.0,1,0,1,1,1,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,2 +1,17,1,9070,0,1,141.0,1,19,38,4,5,133.7,1,0,1,1,0,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,150.0,1,1,37,4,6,120.0,0,0,1,1,0,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,17,2,9085,0,1,123.0,1,3,19,2,9,118.9,0,0,1,1,0,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,17,1,9991,1,1,140.0,1,38,37,6,7,127.3,0,0,1,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,151.0,1,3,1,2,1,129.8,1,0,1,1,0,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,1 +1,43,1,8014,1,1,113.0,1,37,37,0,6,128.2,0,0,1,0,1,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9070,0,1,117.0,1,1,37,4,7,127.9,1,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,145.0,1,19,19,9,7,136.6,0,0,1,1,1,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.0,1,34,37,4,9,134.4,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,9238,0,39,130.0,1,38,38,5,10,126.7,0,0,0,1,1,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,1 +1,17,1,9773,0,1,122.0,1,1,1,4,7,116.8,1,0,0,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,3,9147,0,1,124.0,1,1,1,5,3,116.7,1,0,1,1,0,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,38,1,9,4,123.2,0,0,1,1,1,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,2 +1,39,1,9556,0,40,130.0,1,1,1,4,5,145.0,0,0,1,1,1,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,2 +1,43,1,9147,0,1,127.0,25,1,5,9,10,124.2,1,0,1,1,0,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,2 +2,43,1,9670,0,1,120.0,1,34,34,0,0,128.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,0 +1,18,1,9238,0,1,122.0,1,1,3,9,2,112.6,1,0,1,1,0,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,122.0,1,1,1,4,4,119.6,1,0,1,1,1,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,2 +1,17,5,9670,0,1,125.0,1,1,19,9,7,119.4,1,0,1,1,1,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,146.0,1,19,37,9,7,153.0,1,0,1,1,1,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,108.0,1,38,38,7,7,115.0,1,0,0,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,133.1,1,1,1,3,9,138.0,1,0,1,1,1,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,140.0,1,37,37,9,5,140.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,19,133.1,1,2,1,2,4,100.0,0,0,1,1,0,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9147,0,1,129.0,1,38,37,3,5,132.9,1,0,1,1,1,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,149.0,1,3,2,2,5,151.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,135.0,1,19,4,9,2,143.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9147,0,1,158.0,1,19,37,9,7,130.0,1,0,1,1,1,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,1 +1,17,6,9556,0,1,122.0,1,1,1,4,5,117.1,1,0,1,1,1,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9556,0,12,133.1,1,34,34,99,99,100.5,0,0,1,1,1,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,9003,0,1,123.0,1,37,37,9,9,110.0,0,0,0,0,1,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,138.0,1,3,3,2,2,127.5,1,0,1,1,1,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,1 +1,43,1,9500,0,1,121.0,1,38,19,5,5,115.4,1,0,1,1,1,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,2 +1,17,4,9147,0,1,114.0,1,19,19,4,4,109.5,1,0,1,1,0,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,1 +1,17,1,9254,0,1,148.0,1,1,1,4,8,145.2,0,0,1,1,0,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,121.0,1,1,1,4,4,123.1,1,0,1,1,0,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,150.0,1,3,3,2,5,154.6,1,0,1,1,1,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,151.0,1,19,38,9,9,157.0,1,0,0,1,1,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,101.0,0,0,1,1,1,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,1 +1,1,2,9254,0,1,127.0,1,3,19,3,10,130.9,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,146.0,1,1,1,9,8,149.5,1,0,1,1,0,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9130,0,6,133.1,1,1,29,4,90,123.3,1,0,1,1,1,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,3,3,7,146.5,1,0,0,1,0,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,2 +1,7,1,8014,1,40,120.0,1,37,19,9,3,120.0,0,0,1,1,1,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9853,0,1,125.0,1,37,37,9,9,114.9,1,0,0,0,1,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,0 +1,1,2,9773,0,1,140.0,1,1,1,4,3,131.6,0,0,1,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,142.0,1,1,19,9,9,136.1,0,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,113.0,1,1,1,4,4,106.7,1,0,1,1,1,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,130.0,1,1,2,4,2,130.0,0,0,1,1,0,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,39,1,9119,0,1,130.0,1,19,37,9,9,134.0,0,0,1,1,0,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,2 +1,18,1,9500,0,1,123.0,1,37,37,3,3,118.0,1,0,1,1,1,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,1 +1,10,2,9085,0,1,163.3,22,19,1,4,9,163.3,0,0,1,1,1,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,135.0,1,19,19,9,5,135.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,136.0,1,4,5,2,2,126.2,0,0,1,1,0,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,44,1,9130,0,39,150.0,1,1,37,4,8,150.0,1,0,1,0,1,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9085,0,3,140.0,1,19,20,4,90,140.0,1,0,1,1,1,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,43,1,9070,0,1,135.0,1,1,38,3,9,126.4,1,0,1,1,1,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,140.0,1,19,38,7,8,129.9,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,133.1,1,1,1,9,9,155.0,0,0,1,1,1,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,17,5,9773,0,1,122.0,1,38,38,7,7,123.1,1,0,1,0,1,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9130,0,1,117.0,1,1,1,9,9,109.3,1,0,1,1,1,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9500,0,1,130.0,1,1,38,9,9,125.1,1,0,1,1,1,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,2 +1,1,2,9773,0,1,144.0,1,3,3,3,2,140.2,1,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,145.0,1,1,1,4,10,145.0,0,0,1,1,1,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,0 +1,51,1,9070,0,1,143.0,1,1,1,4,4,120.0,1,0,1,1,1,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,0 +1,17,1,9773,0,1,145.0,1,1,38,90,8,132.8,1,0,1,0,0,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9556,0,1,120.0,1,38,38,191,193,120.0,0,0,0,1,1,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,148.0,1,19,1,7,5,138.3,1,0,1,1,0,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,146.0,1,3,3,3,6,133.4,1,0,1,1,1,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,1 +1,17,1,9130,0,1,131.0,1,12,12,2,8,128.2,1,0,1,1,0,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,6,9556,0,1,115.0,1,19,2,5,3,112.2,1,0,1,1,1,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,1 +1,43,1,9556,0,1,126.0,1,2,3,3,2,100.0,0,0,1,1,1,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,2 +1,17,1,9238,0,1,120.0,1,19,37,9,9,113.0,1,0,1,1,1,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,132.0,1,19,38,5,5,118.0,1,0,1,1,1,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,1 +2,1,1,9238,0,1,145.0,1,37,34,9,7,139.4,0,0,1,0,1,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,131.0,1,38,38,191,174,125.4,1,0,1,1,1,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,1 +2,39,1,9119,0,1,120.0,1,37,38,9,10,145.4,0,0,0,1,0,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,0 +1,1,1,9130,0,1,138.0,1,4,5,2,2,123.0,1,0,1,1,1,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,127.0,1,5,3,4,4,122.8,1,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,136.0,1,1,1,4,4,127.0,1,0,1,1,1,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,2 +1,17,3,9119,0,1,115.0,1,3,1,3,3,116.1,1,0,1,0,0,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,143.0,1,38,37,4,9,116.5,1,0,1,1,1,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,3,19,3,8,134.9,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,1 +1,44,1,9119,0,39,140.0,1,5,41,3,2,140.0,0,0,1,1,0,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,124.0,1,19,19,9,3,115.6,1,0,1,0,0,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,0 +1,7,1,9500,0,3,130.0,1,19,38,5,3,130.0,0,0,1,1,1,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,137.0,1,1,1,4,10,124.8,1,0,1,1,0,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,138.0,1,1,3,1,4,127.5,1,0,1,1,0,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,112.0,1,1,1,5,1,111.7,0,0,0,0,0,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,0 +1,1,4,9500,0,1,147.0,1,1,1,4,9,124.5,1,0,1,1,1,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,1 +1,7,1,9500,0,3,140.0,1,3,19,2,6,140.0,0,0,1,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,121.0,1,19,19,7,7,113.0,1,0,1,1,1,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,0 +1,1,2,8014,1,1,96.0,1,3,1,3,9,100.0,0,0,1,1,1,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,3,120.0,1,37,37,9,9,120.0,0,0,1,1,1,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,152.0,1,1,38,4,5,144.7,0,0,1,1,1,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,1 +2,1,1,9070,0,1,127.0,1,12,19,9,9,123.2,0,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,1 +1,1,3,9070,0,1,147.0,1,34,37,5,7,135.8,1,0,1,1,1,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,7,1,9119,0,4,180.0,1,4,3,2,7,180.0,0,0,0,1,0,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,2 +1,1,6,9500,0,1,129.0,1,37,19,9,7,127.8,1,0,1,1,1,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,100.0,1,37,37,7,7,160.0,1,0,1,1,1,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,127.0,1,19,1,5,5,117.6,1,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,2 +1,39,1,9003,0,1,110.0,1,1,1,9,4,120.0,0,0,0,0,0,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9773,0,1,143.0,11,19,19,4,9,133.9,1,0,1,1,0,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,1 +1,44,1,8014,1,39,160.0,1,37,37,7,7,156.1,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,43,2,9670,0,1,135.0,1,3,19,1,7,123.5,1,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,1,130.0,1,38,3,132,122,100.0,0,0,1,1,0,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,2 +1,15,1,9238,0,1,150.0,26,19,1,9,9,146.5,1,0,0,0,0,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,1 +1,17,6,9119,0,1,129.0,1,37,13,4,90,117.1,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,3,130.0,1,3,3,3,10,147.6,0,0,1,1,0,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,171,0,1,145.0,1,1,1,3,3,140.1,1,0,1,1,1,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,43,3,9254,0,1,135.0,1,3,3,2,2,122.1,0,0,1,1,0,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,2 +1,17,1,171,0,1,140.0,41,1,1,5,7,146.3,1,0,1,1,1,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9070,0,1,126.0,1,38,38,9,8,129.9,1,0,1,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,1 +1,7,1,9070,0,3,120.0,1,4,4,2,2,120.0,0,0,1,1,0,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,0 +1,17,4,9070,0,1,144.0,1,38,1,9,9,137.4,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,125.0,1,3,3,2,3,118.0,1,0,1,1,0,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,0 +5,39,1,9238,0,1,130.0,1,19,38,9,10,146.0,0,0,1,1,0,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,100.0,1,37,37,6,5,107.5,0,0,1,1,1,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9773,0,1,130.0,1,1,19,1,3,161.5,0,0,1,1,0,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,140.0,1,19,19,9,4,127.8,1,0,1,1,0,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,113.0,1,1,37,1,10,116.5,1,0,1,1,1,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,1 +1,1,2,9238,0,1,145.0,1,1,19,4,8,121.4,0,0,1,1,1,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9003,0,19,133.1,1,19,37,9,10,120.0,0,0,0,1,1,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,2 +1,1,1,9085,0,1,150.0,1,12,2,4,2,144.6,0,0,0,0,1,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,40,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,0 +1,17,5,9500,0,1,137.0,1,1,1,5,5,132.6,1,0,1,1,1,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,3,19,4,7,119.0,0,0,1,1,0,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,128.0,1,1,1,4,5,124.7,0,0,1,1,0,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,2 +1,39,2,9670,0,19,133.1,1,34,34,0,0,100.0,1,0,1,0,0,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,0 +1,39,1,9556,0,1,120.0,1,19,19,4,5,122.8,0,0,1,1,1,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,0 +1,1,2,171,0,1,165.0,1,3,3,2,2,163.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,133.8,1,3,37,2,10,184.0,0,0,1,1,1,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,120.0,1,37,19,9,4,148.8,0,0,1,1,1,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,1 +1,1,5,9500,0,1,151.0,1,1,1,9,9,127.8,0,0,1,1,1,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,131.0,1,38,19,7,7,125.3,1,0,1,1,1,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,128.0,1,1,1,9,6,120.3,0,0,1,1,0,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,2 +1,1,5,9500,0,1,118.0,1,3,1,5,10,113.5,1,0,1,1,1,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,140.0,1,37,37,7,9,126.8,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,117.0,1,38,37,9,9,113.5,1,0,1,1,1,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,135.0,1,19,19,9,9,122.8,1,0,1,1,0,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,151.0,1,37,37,9,7,147.5,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,1,3,4,4,147.5,1,0,1,1,1,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,128.0,1,38,37,9,9,124.9,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9085,0,1,124.0,1,3,19,2,3,113.9,1,0,1,1,1,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,120.0,1,3,19,4,7,119.7,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,171,0,1,147.0,1,1,12,4,4,148.4,1,0,1,1,0,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,136.0,1,19,1,9,8,123.4,1,0,1,1,1,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,123.0,1,3,1,2,5,112.9,0,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,2,9556,0,1,133.1,1,3,1,2,4,136.1,0,0,1,1,0,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,141.0,1,3,1,4,4,142.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,1,1,9003,0,1,120.0,1,37,37,9,9,120.5,1,0,0,1,0,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,140.0,1,37,37,9,6,140.0,1,0,1,1,0,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,147.0,1,19,1,4,3,138.5,1,0,1,1,1,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,123.0,1,34,34,90,90,113.3,1,0,1,1,1,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,38,4,5,130.4,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,7,7,134.0,0,0,1,1,0,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,38,38,4,7,111.6,1,0,1,1,1,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,1 +1,1,1,9119,0,1,148.0,1,19,38,9,7,133.0,0,0,1,1,0,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,128.0,1,3,1,2,1,127.8,0,0,1,1,1,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,172.0,1,38,37,9,9,149.3,0,0,1,1,0,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,138.0,1,37,37,9,8,127.2,1,0,1,1,1,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,140.0,1,3,1,2,6,137.6,1,0,1,1,0,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,1 +2,43,1,8014,1,1,110.0,1,37,19,9,3,100.0,0,0,1,1,1,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,2,1,2,4,140.7,1,0,1,1,0,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,1 +1,1,1,9130,0,1,137.0,1,3,38,3,5,129.3,1,0,1,1,1,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,136.0,1,38,38,0,7,133.2,1,0,1,1,1,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,145.0,6,34,34,0,0,134.5,1,0,1,1,0,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,147.0,1,19,19,3,10,151.9,1,0,1,1,1,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,118.0,1,37,37,9,9,112.1,1,0,1,1,1,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,0 +1,43,1,9773,0,1,122.0,1,1,1,4,5,126.9,0,0,1,1,1,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,126.0,1,12,38,9,5,122.2,0,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,143.0,1,3,3,2,2,129.0,0,0,1,1,0,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,1 +1,39,1,9556,0,1,130.0,1,19,38,9,8,113.3,0,0,1,1,1,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,101.0,1,1,37,4,9,98.9,1,0,1,1,1,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,133.1,1,34,34,90,90,116.0,0,0,1,0,1,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,0 +2,39,1,9991,1,1,170.0,1,37,19,9,3,151.1,0,0,1,1,0,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,1 +2,17,5,9119,0,1,126.0,1,37,38,4,4,122.9,1,0,1,1,0,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,2 +1,1,2,9500,0,1,125.0,1,19,19,9,9,114.9,0,0,1,1,1,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,1 +1,18,3,9773,0,1,128.0,1,19,1,9,9,122.1,1,0,1,1,0,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,149.0,1,38,37,9,9,139.5,0,0,1,1,0,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,1,3,9,5,137.1,0,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,126.0,1,38,37,5,5,114.8,1,0,1,1,1,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,1 +2,39,1,9085,0,1,120.0,1,37,37,6,6,150.0,0,0,1,1,0,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,137.0,1,38,19,0,90,122.3,0,0,1,1,1,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,0 +2,39,1,9853,0,19,133.1,1,37,19,3,7,100.0,0,0,1,1,1,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,145.0,1,4,2,2,3,127.3,1,0,1,1,0,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,129.0,1,1,1,4,8,129.0,0,0,1,0,1,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,143.0,1,1,1,4,4,129.0,1,0,1,1,0,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,136.0,1,19,38,9,9,119.3,1,0,1,1,1,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,151.6,0,0,1,1,1,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,2 +1,1,1,9238,0,1,108.0,1,19,38,9,9,107.3,0,1,1,1,1,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,134.0,1,1,1,2,7,128.4,1,0,1,1,1,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,1 +1,42,1,9119,0,1,120.0,1,3,1,2,9,108.2,1,0,1,1,0,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,0 +1,16,2,9500,0,1,127.0,1,2,38,4,9,119.0,1,0,1,1,1,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,131.0,1,1,1,9,9,122.0,0,0,1,1,1,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,1 +1,7,1,9070,0,3,133.1,1,3,5,2,2,120.0,1,0,1,1,1,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,150.0,1,19,19,5,5,132.8,1,0,1,1,1,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,1 +1,18,2,9670,0,1,121.0,1,37,38,4,1,111.9,1,0,1,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,108.0,41,3,3,9,9,107.0,0,0,0,0,1,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,150.0,1,34,19,0,4,152.8,1,0,1,1,0,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,18,2,9238,0,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,130.0,6,19,1,6,4,130.0,1,0,1,1,1,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,2 +1,51,1,9119,0,1,136.0,1,1,19,3,5,133.6,1,0,1,1,0,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,0 +1,1,4,9773,0,1,155.0,1,3,19,1,4,149.8,1,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9070,0,1,124.0,1,19,38,4,0,117.6,1,0,1,1,0,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,9,100.0,0,0,1,1,0,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,2 +1,44,1,9238,0,1,140.0,1,1,1,5,5,143.4,0,0,1,1,1,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,120.0,1,1,19,7,7,111.3,0,0,1,1,0,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,2 +2,1,1,9556,0,1,144.0,1,19,19,193,144,139.8,0,0,0,1,0,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,110.0,1,1,1,5,5,160.0,1,0,0,1,1,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,0 +2,39,1,9853,0,19,133.1,1,37,37,9,9,131.0,0,0,1,1,1,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,139.0,1,4,1,2,10,136.4,1,0,1,1,1,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,1 +1,17,3,9085,0,1,134.0,1,37,38,9,9,120.4,1,0,1,1,1,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,148.0,1,3,2,4,2,131.6,1,0,1,1,1,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,0 +1,1,3,9500,0,1,145.0,1,19,37,7,7,141.5,1,0,1,1,1,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,1 +2,39,1,9130,0,19,133.1,1,37,38,9,9,120.0,0,0,1,1,0,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,3,9254,0,1,121.0,1,19,37,4,7,116.8,1,0,1,1,1,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,1 +1,1,3,9254,0,1,123.0,1,1,1,4,3,123.4,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,38,38,9,9,133.4,1,0,1,1,0,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,1 +1,42,1,9500,0,1,124.0,1,19,19,4,9,124.0,0,0,1,1,1,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,40,130.0,1,37,37,9,7,130.0,0,0,1,1,1,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,140.0,1,3,38,2,9,140.0,1,0,1,1,1,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,158.0,1,38,38,9,7,144.7,1,0,1,1,1,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,18,2,9238,0,1,121.0,1,19,1,4,3,121.4,1,0,1,1,1,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,12,133.1,1,37,19,9,10,120.0,0,0,1,1,0,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,122.0,1,3,1,4,3,114.8,1,0,1,1,1,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,2 +4,43,1,9991,1,1,164.0,1,37,37,6,6,131.8,0,0,1,1,1,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,1 +1,1,3,9773,0,1,145.0,1,38,38,9,5,133.1,0,0,1,1,1,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9853,0,19,133.1,1,38,19,9,9,108.0,0,0,0,0,1,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,2 +1,17,3,9070,0,1,131.0,1,38,37,5,5,120.2,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,2 +1,43,1,9238,0,1,130.0,1,38,37,9,7,133.2,0,0,1,1,1,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,112.0,1,1,1,3,3,106.4,1,0,1,1,0,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,125.0,1,1,38,144,181,123.3,0,0,1,1,1,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,125.0,1,3,2,2,1,119.1,1,0,1,1,1,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,0 +1,7,1,9853,0,3,140.0,1,34,34,0,0,140.0,1,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,135.0,1,1,19,3,9,137.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,7,1,9991,1,3,120.0,1,37,37,6,7,120.0,0,0,0,0,0,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,130.0,1,1,1,4,3,125.1,1,0,1,1,1,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,1 +2,39,1,33,0,1,120.0,1,38,1,9,5,153.8,0,0,0,1,0,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,1,150.0,1,37,37,9,9,140.0,0,0,1,0,0,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,127.0,1,1,38,9,7,120.4,1,0,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,7,1,8014,1,43,180.0,1,19,19,9,4,180.0,0,0,1,1,1,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,1 +1,1,3,9147,0,1,143.0,1,1,1,5,7,133.2,1,0,1,1,1,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,1 +1,15,1,9853,0,1,133.1,41,43,1,153,135,128.2,0,0,1,1,1,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,1 +1,39,1,9147,0,12,133.1,1,1,1,9,4,140.0,1,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,151.0,1,1,38,4,7,137.0,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,1 +1,17,4,171,0,1,172.0,1,3,1,2,10,155.6,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,129.0,1,19,1,9,5,112.0,0,0,1,1,0,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,150.0,1,38,3,9,1,140.0,0,0,1,1,0,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,1 +1,1,1,9773,0,1,124.0,17,1,1,3,5,118.1,1,0,0,0,1,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,0 +1,17,1,9670,0,1,124.0,1,37,19,5,8,114.2,1,0,0,1,1,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,122.0,1,1,19,3,5,116.8,1,0,1,1,1,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,144.0,1,38,1,9,10,137.4,0,0,1,1,1,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,19,19,9,9,120.0,0,0,1,1,1,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,138.0,1,38,38,7,6,124.7,1,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,2 +1,18,2,9147,0,1,132.0,1,3,3,5,7,119.1,1,0,0,0,1,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,17,6,9119,0,1,111.0,1,19,3,5,10,106.5,1,0,1,1,0,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,0 +1,7,1,9500,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,1,140.0,1,37,37,9,9,130.0,1,0,1,1,0,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,125.0,1,37,37,3,3,124.0,0,0,1,1,0,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,128.0,1,19,2,7,3,126.3,1,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +2,39,1,9500,0,1,110.0,1,37,37,9,6,114.3,0,0,1,1,1,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,9085,0,1,133.1,1,1,9,4,4,128.2,0,0,1,1,1,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,1 +1,1,3,9238,0,1,126.0,1,38,19,5,8,120.8,1,0,1,1,1,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,121.0,1,1,1,9,8,118.9,1,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,109.0,1,19,37,5,5,108.3,0,0,1,1,1,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,2 +1,1,4,9670,0,1,127.0,1,1,1,7,7,116.5,1,0,1,1,1,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,171,0,19,133.1,101,1,19,2,7,110.0,0,0,1,1,0,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,133.0,1,37,37,9,7,124.6,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,39,137.0,1,1,1,5,10,124.5,0,0,1,0,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,130.0,1,19,19,7,7,121.6,0,0,1,1,1,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,1 +2,39,1,8014,1,1,130.0,1,37,37,6,5,113.5,1,0,1,1,1,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9670,0,1,120.0,1,38,38,5,7,115.1,1,0,1,1,1,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,115.0,1,38,1,9,4,116.1,1,0,1,1,0,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,130.1,0,0,1,1,1,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,2 +1,1,3,9238,0,1,133.1,1,1,1,9,9,100.0,1,0,1,1,0,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,168.0,0,0,1,1,0,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,148.0,1,1,1,9,9,141.7,0,0,1,0,0,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,0 +1,15,1,33,0,1,133.1,41,2,3,2,4,100.0,0,0,1,1,0,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,2 +1,17,3,9147,0,1,135.0,1,37,37,6,5,121.0,1,0,1,1,0,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,151.0,1,3,3,1,90,161.9,0,0,1,1,1,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,8,108.5,0,0,1,1,0,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9670,0,1,130.0,1,26,30,0,5,128.6,1,0,0,1,1,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,1 +1,43,1,9500,0,1,140.0,100,1,1,6,6,128.2,0,0,1,1,1,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,140.0,1,19,37,5,7,140.0,1,0,1,1,0,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,0 +1,39,1,33,0,1,140.0,1,3,1,2,4,152.8,0,0,1,1,1,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,2 +1,43,1,9070,0,1,117.0,1,1,1,4,7,112.5,1,0,1,1,0,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,126.0,1,37,19,7,7,125.7,0,0,1,1,1,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,2 +1,1,2,9773,0,1,140.0,1,38,38,5,7,126.4,1,0,1,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,121.0,1,37,38,6,9,121.0,0,0,1,1,1,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,136.0,1,12,1,4,4,122.0,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,117.0,1,37,37,9,9,120.2,1,0,1,1,1,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,133.1,1,38,1,9,9,121.0,0,0,0,0,0,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,0 +1,44,1,9991,1,39,130.0,1,37,37,5,5,130.0,1,0,1,1,0,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,138.0,1,1,19,4,9,142.2,1,0,1,1,1,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,148.0,1,3,1,2,10,148.0,1,0,1,1,1,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,1 +1,17,6,9556,0,1,134.0,1,19,38,7,7,128.5,1,0,1,1,1,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,141.0,1,1,19,5,8,141.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,149.0,1,3,1,9,9,137.5,0,0,1,1,0,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,1 +1,1,3,9085,0,1,142.0,1,11,11,90,90,155.3,0,0,1,1,1,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +1,1,2,9070,0,1,135.0,1,19,37,9,9,134.0,1,0,1,1,1,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,132.0,1,19,38,9,7,120.1,0,0,1,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9147,0,1,133.0,1,37,37,9,5,119.7,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,139.0,1,3,4,2,2,130.6,0,0,1,1,1,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,130.0,1,1,3,9,2,130.0,1,0,0,0,0,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,0 +1,17,3,9500,0,1,138.0,1,3,3,4,5,130.0,1,0,1,1,1,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,121.0,1,19,19,3,3,116.1,1,0,1,1,1,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,160.0,1,3,38,1,9,152.0,1,0,1,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,130.0,41,37,19,9,8,125.5,1,0,1,1,1,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,133.1,1,38,38,191,193,146.0,0,0,0,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,1 +4,39,1,9003,0,1,140.0,1,37,37,9,8,150.0,0,0,1,1,0,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,2 +1,17,2,9670,0,1,132.0,1,1,19,5,3,124.0,1,0,1,1,0,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,117.0,1,19,19,5,7,118.4,0,0,1,1,0,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,140.0,6,1,19,4,7,131.6,1,0,1,1,1,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,142.0,1,38,1,8,10,138.5,1,0,1,1,0,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,2 +1,1,1,9130,0,1,132.0,1,3,1,4,9,121.9,1,0,1,1,1,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,122.0,1,1,1,9,9,116.1,1,0,1,1,0,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,0 +1,7,1,8014,1,3,130.0,1,37,38,0,5,130.0,0,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,138.0,1,19,19,9,5,124.8,1,0,1,1,1,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,140.0,1,19,38,3,9,140.0,1,0,1,1,0,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +4,39,1,8014,1,1,138.0,1,19,19,90,90,127.0,0,0,1,0,1,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9500,0,19,133.1,1,1,3,2,2,100.0,0,0,0,1,0,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,117.0,1,3,1,3,5,110.7,1,0,1,1,0,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,120.0,1,19,19,5,5,113.0,1,0,1,1,1,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,160.0,1,37,37,7,7,133.0,1,0,1,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,137.0,1,1,1,4,5,126.3,1,0,1,1,1,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,19,37,9,7,123.9,1,0,1,1,1,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,38,38,9,5,130.0,0,0,0,0,0,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,137.0,1,19,37,9,7,130.8,0,0,0,1,1,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,38,37,4,6,150.0,1,0,1,1,1,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,115.0,1,34,38,0,5,108.4,1,0,1,1,1,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,140.0,1,3,38,141,151,135.3,0,0,1,1,0,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,148.0,1,19,19,7,7,130.9,0,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,127.0,1,1,1,4,3,126.3,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,2,9670,0,1,100.0,1,37,37,9,9,100.0,0,0,1,1,1,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,2 +1,17,2,171,0,1,141.0,1,19,37,9,9,136.1,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,123.0,1,30,19,4,90,122.3,0,0,1,1,1,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,145.0,1,1,38,5,7,127.5,1,0,1,1,0,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9085,0,1,150.0,1,37,37,90,10,112.0,0,0,1,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,128.0,1,37,1,9,7,124.2,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,0 +1,43,1,9070,0,39,130.0,1,19,37,5,9,124.0,1,0,1,1,1,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,1 +1,17,1,9003,0,1,170.0,1,1,4,9,5,144.1,1,0,0,0,0,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9670,0,1,110.0,1,19,19,90,99,107.2,0,0,1,1,0,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9238,0,19,133.1,1,37,37,9,9,130.0,1,0,1,1,1,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,42,1,9119,0,1,144.0,1,34,34,0,0,119.5,0,0,1,1,0,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,19,133.1,1,37,37,6,6,162.0,0,0,0,1,0,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,16,1,9085,0,1,138.0,1,37,37,9,9,123.0,1,0,1,1,1,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,39,1,9500,0,1,133.1,1,19,19,5,6,121.4,0,0,0,1,1,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9085,0,1,138.0,1,1,1,4,7,132.1,1,0,1,1,1,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,1 +1,39,1,9119,0,1,133.1,1,37,37,9,9,101.6,0,0,1,1,0,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9500,0,1,126.0,1,1,19,131,181,120.1,1,0,1,1,1,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,38,9,9,142.0,1,0,1,1,1,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,1 +1,18,1,8014,1,1,138.0,1,19,1,9,5,134.5,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,19,9,9,150.0,0,0,1,1,0,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,126.0,1,38,37,9,9,123.6,1,0,1,1,1,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,39,1,9254,0,19,133.1,1,19,19,3,1,101.5,0,0,0,0,0,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,43,2,9119,0,1,115.0,1,38,19,9,6,112.2,1,0,0,1,0,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,2 +2,39,1,9003,0,1,120.0,1,37,37,9,9,125.7,0,0,0,0,1,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,0 +1,17,2,9773,0,1,115.0,1,1,1,5,5,119.6,1,0,1,1,1,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,19,9,4,140.0,0,0,1,1,1,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,125.0,1,37,19,90,90,137.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,120.0,1,3,38,3,7,124.2,1,0,1,1,0,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,2 +1,1,1,9147,0,1,146.0,1,5,1,1,5,144.6,0,0,1,1,0,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,116.0,1,1,1,3,4,113.6,1,0,1,1,1,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,1 +4,42,1,9147,0,1,133.1,1,37,38,7,3,123.0,1,0,1,1,0,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,118.9,1,38,37,5,9,118.9,1,0,1,1,1,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,123.0,1,12,1,9,9,119.2,1,0,1,1,1,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,1 +1,7,1,9500,0,2,140.0,1,38,37,7,8,140.0,0,0,1,1,1,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,110.0,1,37,37,90,90,108.4,1,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9119,0,1,146.0,1,1,37,7,7,132.4,1,0,1,1,0,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,19,133.1,1,19,3,9,2,140.0,1,0,0,1,0,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,0 +1,18,2,9853,0,1,111.0,1,38,38,191,171,105.8,1,0,1,1,1,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,6,130.2,0,0,1,1,1,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,130.0,1,1,3,9,10,118.1,1,0,1,1,0,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,118.0,1,1,19,5,4,118.0,0,0,1,1,1,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,153.0,1,38,38,7,7,159.7,1,0,1,1,1,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,171,0,12,110.0,1,37,37,7,7,106.0,1,0,1,1,0,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,134.0,1,19,1,9,4,124.9,1,0,1,1,1,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,0 +1,1,3,9254,0,1,121.0,1,19,19,9,9,125.9,1,0,1,1,1,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,160.0,1,19,19,4,9,154.4,0,0,1,1,1,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,3,140.0,1,19,19,9,7,152.4,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9130,0,1,130.0,1,19,1,191,144,110.0,0,0,1,1,0,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,142.0,1,38,37,9,5,127.3,1,0,1,1,1,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,37,37,9,9,130.0,0,0,0,1,1,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,124.0,1,37,19,9,4,121.2,0,0,1,1,0,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,1 +4,39,1,9991,1,1,120.0,1,19,19,9,3,113.9,1,0,1,1,1,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,114.0,1,19,38,5,3,112.6,1,0,1,1,1,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,1 +1,7,1,9991,1,40,120.0,1,1,19,4,9,120.0,0,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,128.0,1,19,38,9,9,118.2,0,0,1,1,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,4,9070,0,1,126.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,130.0,1,1,1,0,0,119.5,0,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,184.4,22,2,19,2,8,184.4,0,0,1,1,1,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,133.1,1,37,37,9,9,132.8,0,0,0,0,0,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9085,0,1,120.0,1,38,19,90,90,127.0,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,1 +1,17,4,9147,0,1,132.0,1,38,19,5,5,120.8,1,0,1,1,0,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,0 +1,10,1,9670,0,1,148.9,22,37,37,9,9,148.9,0,0,1,1,1,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,4,150.0,1,1,1,4,6,150.0,0,0,1,1,0,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,150.0,1,19,1,9,3,110.0,1,0,1,1,0,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,1 +1,15,1,9670,0,1,130.0,26,42,1,2,7,130.0,0,1,0,1,1,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,1 +2,7,1,8014,1,3,120.0,1,38,1,9,9,120.0,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,149.0,1,19,37,9,9,158.1,1,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,4,9147,0,1,124.0,1,37,37,9,9,117.4,0,0,1,1,1,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,142.0,1,34,1,5,10,136.1,1,0,1,0,0,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,1,1,8014,1,1,165.0,1,37,37,0,0,162.9,1,0,1,1,0,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,130.0,1,37,37,5,7,123.4,1,0,1,1,0,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,0 +4,39,1,8014,1,1,133.1,1,37,37,7,7,143.0,0,0,1,1,0,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,121.0,1,38,37,8,8,115.4,1,0,1,1,1,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,7,1,9556,0,3,140.0,1,3,3,2,2,140.0,0,0,0,0,0,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,116.0,1,38,19,0,2,116.7,1,0,1,1,0,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,132.0,1,38,1,5,5,124.3,0,1,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,133.1,1,38,12,7,0,111.5,0,0,1,0,1,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,0 +1,53,1,9147,0,42,140.0,1,1,1,6,6,142.2,0,0,1,1,0,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,1 +2,44,1,9991,1,39,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,9773,0,1,170.0,1,1,19,9,7,155.0,0,0,1,1,0,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,8014,1,19,133.1,1,37,37,4,8,112.5,0,0,1,1,1,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,120.0,1,1,1,5,8,112.0,1,0,1,1,1,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,123.0,1,1,1,3,3,113.6,1,0,1,1,1,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,1 +1,39,1,9085,0,1,133.1,1,1,19,9,9,162.3,1,0,1,1,1,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,116.0,1,37,1,9,8,115.7,1,0,0,0,1,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,160.0,1,9,19,4,3,151.3,0,0,1,1,1,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,1 +1,39,1,8014,1,19,149.0,1,34,34,0,0,126.3,0,0,1,1,1,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,44,1,9238,0,39,140.0,41,1,1,4,6,137.5,0,0,0,1,1,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,130.0,1,37,37,9,9,129.0,1,0,1,1,1,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,19,38,7,7,118.7,0,0,1,1,0,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,128.0,0,0,1,1,1,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,1 +1,17,1,9070,0,1,135.0,1,19,37,5,9,145.9,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,128.0,1,1,19,9,7,118.2,0,0,1,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,128.0,1,19,38,9,9,127.0,0,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,140.0,1,37,12,9,9,150.0,0,0,0,1,0,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,0 +2,43,1,8014,1,1,160.0,1,37,39,9,4,140.9,0,0,1,1,1,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,133.0,1,38,19,8,7,127.3,1,0,1,1,1,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,1 +1,15,1,9670,0,1,160.0,1,37,12,9,9,149.5,1,0,1,0,0,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,152.0,101,2,1,9,1,168.5,1,0,1,1,0,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,1 +1,1,3,9085,0,1,147.0,1,19,19,9,1,135.6,1,0,1,1,1,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,1 +1,17,2,8014,1,1,120.0,1,37,34,0,0,117.6,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,141.0,1,37,37,9,9,130.2,0,0,1,1,0,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,1 +1,16,2,9147,0,1,139.0,1,38,37,9,9,123.7,1,0,1,1,1,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,134.0,1,19,38,4,8,129.5,0,0,1,1,1,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,113.0,1,1,37,9,10,117.2,1,0,1,1,1,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,18,2,9556,0,1,126.0,1,3,3,2,2,115.5,0,0,1,1,0,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,1 +1,39,1,8014,1,1,134.0,1,37,38,4,7,110.0,1,0,1,1,1,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,42,1,171,0,1,132.0,1,1,1,1,4,132.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9003,0,1,130.0,1,19,19,9,1,140.0,0,0,1,1,1,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9773,0,1,132.0,1,38,19,9,9,125.0,1,0,1,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,140.0,1,37,37,9,6,132.8,0,0,1,1,0,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,130.0,1,37,19,9,5,140.2,1,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9070,0,1,118.0,1,43,3,123,123,110.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,1 +1,39,1,8014,1,19,100.0,1,37,37,5,5,111.0,1,0,1,1,1,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,2 +1,1,3,9085,0,1,138.0,1,1,3,4,4,126.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,132.0,1,2,19,4,4,125.0,1,0,1,1,1,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,38,100.0,1,37,37,9,7,154.0,1,0,1,1,0,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,138.0,1,1,19,4,4,131.7,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,1 +2,39,2,9147,0,1,140.0,1,37,37,9,8,108.0,0,0,1,1,1,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,2 +1,1,5,9147,0,1,134.0,1,3,2,2,2,134.7,0,0,1,1,0,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,2 +1,43,1,9130,0,1,120.0,1,2,3,3,2,120.0,1,0,1,0,0,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,0 +1,1,3,9085,0,1,140.0,1,10,19,90,90,135.8,1,0,1,1,1,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,142.0,1,37,38,5,1,129.4,0,0,1,1,1,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,1 +1,17,4,9670,0,1,120.0,1,1,19,5,5,117.2,1,0,1,1,1,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,136.0,1,1,19,5,7,136.4,0,0,1,1,1,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,120.0,1,37,37,5,5,124.6,0,0,1,1,1,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,2 +1,39,1,9500,0,1,133.1,1,1,37,9,9,100.0,0,0,1,1,0,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,123.0,1,19,1,9,3,117.8,1,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,1 +5,39,1,9254,0,1,133.1,1,2,2,2,2,103.0,0,0,1,1,1,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,171,0,1,133.0,1,1,37,4,7,126.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,6,9500,0,1,119.0,1,1,1,4,4,115.0,1,0,1,1,0,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,143.0,1,38,19,151,193,134.3,1,1,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,135.0,1,1,19,4,4,129.1,0,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,43,2,9670,0,1,130.0,1,19,1,4,4,127.6,1,0,1,1,0,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,1,9254,0,1,126.0,1,37,37,5,1,126.0,0,0,1,0,0,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,0 +1,42,1,9119,0,1,120.0,1,19,37,9,9,113.8,0,0,1,0,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9991,1,1,140.0,1,37,37,9,9,135.8,1,0,1,1,0,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,1 +1,17,5,9085,0,1,118.0,1,38,38,9,9,112.4,1,0,1,1,1,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,1 +1,17,3,9773,0,1,134.0,1,2,1,3,3,129.5,1,0,1,1,0,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,129.0,1,1,38,4,7,123.4,0,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,132.0,1,19,37,4,9,128.0,1,0,1,1,1,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,137.0,1,38,37,7,5,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,1 +1,17,5,9119,0,1,138.0,1,19,19,5,5,123.3,1,0,0,1,0,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,138.0,1,1,1,3,4,132.5,1,0,1,1,1,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,1 +1,16,2,9070,0,1,133.0,1,1,3,4,2,122.5,1,0,1,1,1,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,2 +1,17,1,9130,0,1,137.0,1,38,19,5,7,130.0,1,0,1,1,1,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,2 +1,17,1,9238,0,1,131.0,1,37,37,9,7,121.9,0,0,1,1,1,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,1 +2,1,1,9500,0,1,142.0,1,19,38,4,5,130.3,0,0,1,1,1,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,1 +2,39,1,9556,0,1,160.0,1,37,37,9,6,120.0,0,0,1,1,1,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,0 +1,51,1,9670,0,1,126.0,1,3,3,1,10,111.0,0,0,0,1,0,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,1 +1,1,5,9853,0,1,141.0,1,37,19,9,5,133.0,1,0,1,1,1,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,0 +1,1,2,9670,0,1,124.0,1,19,1,9,4,117.7,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,133.0,1,19,19,9,5,120.1,1,0,1,1,1,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,1 +1,43,1,9147,0,1,133.1,1,4,19,2,1,128.2,0,0,1,1,1,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,0 +4,27,1,9070,0,2,130.0,1,34,34,0,0,130.0,0,0,1,1,1,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,0 +1,43,1,9003,0,1,150.0,1,2,4,4,1,150.0,0,0,1,1,0,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,1 +1,39,1,9991,1,19,133.1,1,19,37,7,5,155.5,1,0,0,0,0,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,0 +1,1,1,9238,0,1,106.0,1,1,1,3,3,105.0,0,0,1,1,0,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,111.0,1,19,38,3,3,111.4,1,0,1,0,1,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,0 +1,43,1,9254,0,1,130.0,1,1,19,5,7,130.0,0,0,1,1,1,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,0 +1,17,1,8014,1,1,120.0,1,38,37,6,6,113.0,0,0,1,1,1,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,139.0,1,1,37,4,9,131.3,1,0,1,1,1,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,1 +1,43,3,9254,0,1,110.0,1,37,37,9,9,107.2,1,0,1,1,0,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,147.0,1,1,1,4,4,134.3,1,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,130.0,1,37,38,9,6,130.0,1,0,1,1,1,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,139.0,1,37,38,9,9,124.0,1,0,1,1,0,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,122.0,1,37,37,9,9,126.9,1,0,1,1,1,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,11,11,90,4,114.0,1,0,1,1,0,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9147,0,1,132.0,1,39,39,3,3,127.8,1,0,1,0,0,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,128.0,1,38,37,5,6,122.1,0,0,1,1,1,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,2 +1,17,1,9085,0,1,127.0,1,19,38,194,193,117.6,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9500,0,1,145.0,1,3,3,2,3,141.8,0,0,1,1,1,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,1 +1,53,1,9556,0,42,140.0,1,1,19,4,5,140.0,0,0,1,1,1,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,1 +1,18,1,9147,0,1,160.0,1,19,19,5,8,137.6,1,0,1,1,1,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,1 +1,51,1,9670,0,19,133.1,1,2,1,3,10,120.0,0,0,0,1,0,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,19,133.1,1,19,39,5,3,121.7,0,0,0,0,1,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,126.0,0,0,1,1,0,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,1 +1,1,3,171,0,1,140.0,1,37,37,9,9,124.3,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,136.0,1,38,37,9,9,126.9,1,0,1,1,1,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,136.0,1,19,1,9,9,129.0,1,0,1,1,1,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,144.0,1,38,38,7,7,136.0,1,0,1,1,1,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,154.0,1,38,38,9,9,156.5,1,1,1,1,1,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,131.0,1,19,19,9,9,134.9,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +4,43,1,8014,1,1,140.0,1,38,37,9,9,126.0,0,0,1,1,1,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,141.0,1,37,37,9,7,126.3,1,0,1,1,1,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,1 +1,44,1,8014,1,39,150.0,1,1,37,9,7,146.7,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +1,1,2,9119,0,1,140.0,1,19,19,9,9,125.7,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,12,100.0,1,1,1,4,4,100.0,0,0,1,1,1,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,1 +1,42,1,9500,0,1,111.0,1,1,3,9,10,128.2,1,0,1,1,0,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,1 +1,17,2,9773,0,1,132.0,1,19,19,9,6,120.1,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,131.0,1,4,4,2,1,120.5,0,0,1,1,1,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,44,1,9003,0,39,170.0,1,19,19,5,5,170.0,1,0,1,1,0,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,1 +1,17,1,9773,0,1,150.0,1,38,38,7,7,137.8,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,19,133.1,1,37,37,9,10,120.0,0,0,0,0,0,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9670,0,39,110.0,1,37,1,9,4,110.0,0,0,1,1,1,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,130.0,1,5,3,2,2,130.0,0,0,1,1,0,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9670,0,1,133.1,1,34,3,7,2,130.6,1,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,38,9,10,140.0,0,0,1,1,0,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,133.1,1,19,38,9,9,119.6,1,0,1,1,1,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,118.0,1,19,19,3,3,110.0,1,0,1,1,1,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,2 +1,1,1,9773,0,1,137.0,1,1,1,5,5,129.3,1,0,1,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,127.0,1,19,38,5,9,129.5,1,0,1,1,1,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,126.0,1,38,19,9,6,119.4,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,116.5,0,0,1,1,1,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,125.0,1,19,19,4,7,128.5,1,0,1,1,1,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,2 +1,43,1,9773,0,1,133.1,22,34,34,90,90,130.0,0,0,0,1,1,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,125.0,1,1,1,5,5,128.5,0,0,1,1,0,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9500,0,1,133.1,1,19,37,9,9,120.0,0,0,1,1,1,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,1 +2,39,2,9147,0,1,133.1,1,37,37,5,7,110.0,0,0,1,1,0,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,6,9500,0,1,141.0,1,1,19,1,1,126.7,1,0,1,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,146.0,1,40,43,4,4,150.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,148.0,1,1,1,4,9,129.8,0,0,1,1,1,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,2 +1,17,1,9853,0,1,133.0,1,38,38,9,9,127.4,0,0,0,1,1,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,43,1,9147,0,1,120.0,1,37,37,5,3,113.4,0,0,1,1,0,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,148.0,1,19,3,4,2,136.5,0,0,1,1,1,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,178.0,1,2,1,2,3,157.7,0,0,1,1,0,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +2,7,1,9254,0,3,130.0,1,1,3,4,3,130.0,0,0,1,1,1,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,7,1,33,0,40,120.0,1,38,37,5,6,120.0,1,0,0,0,0,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,0 +2,1,1,9147,0,1,151.0,1,38,37,9,8,132.1,1,0,1,1,1,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,0 +1,43,2,9556,0,1,120.0,1,1,19,4,3,110.2,0,0,1,1,1,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,1 +2,1,4,9500,0,1,140.0,1,1,37,4,9,128.0,0,0,1,1,1,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,1 +1,42,1,9119,0,6,120.0,1,35,35,6,6,128.2,1,0,1,1,0,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,120.0,1,37,37,9,6,120.0,1,0,1,1,1,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,2 +2,39,1,9003,0,1,133.1,1,37,37,8,7,150.0,0,0,1,1,0,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,145.0,1,19,37,4,7,148.9,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,34,34,0,0,104.0,1,0,1,1,1,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,43,1,9085,0,1,110.0,1,3,19,4,6,105.0,0,0,0,0,0,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,0 +1,17,2,9254,0,1,108.0,1,37,37,9,7,108.0,1,0,1,1,1,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,1 +4,43,1,9238,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,1,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,136.0,1,19,37,173,183,118.4,1,0,1,1,1,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,18,1,9556,0,1,140.0,1,38,37,9,9,122.8,0,0,1,1,1,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,1 +1,39,1,9119,0,1,150.0,1,3,3,4,4,150.0,1,0,1,1,0,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,141.0,1,1,1,4,10,138.9,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,1 +1,18,4,9773,0,1,130.0,1,19,19,4,4,121.3,1,0,1,1,1,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,1,130.0,1,37,37,9,6,160.0,0,0,1,1,0,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,149.0,1,37,37,9,9,136.0,0,0,1,1,1,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,151.0,1,37,1,4,10,138.4,0,0,1,1,1,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,2 +1,39,1,9254,0,1,130.0,1,37,37,9,9,126.5,0,0,1,1,0,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,143.0,1,19,37,7,7,127.0,1,0,1,1,1,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,1 +2,57,1,9991,1,1,133.1,41,38,37,4,6,100.0,0,0,1,1,1,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,138.0,1,37,37,9,9,135.9,1,0,1,1,1,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,2 +1,43,1,8014,1,1,145.7,22,37,37,9,9,145.7,1,0,1,1,1,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,1 +4,39,1,9773,0,19,133.1,1,37,37,9,1,117.5,0,0,1,1,1,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,17,3,9238,0,1,118.0,1,1,19,4,10,112.4,1,0,1,1,1,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,8014,1,1,133.1,1,37,37,9,7,162.5,0,0,1,1,0,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,1 +1,1,3,9254,0,1,115.0,1,1,1,3,3,117.5,1,0,1,1,1,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,133.0,1,37,38,9,9,130.2,1,0,1,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,152.0,1,2,22,4,3,146.1,1,0,1,1,1,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +2,39,1,9085,0,12,133.1,1,1,39,5,3,140.0,1,0,0,0,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9003,0,1,140.0,1,38,1,9,4,138.3,0,0,1,1,0,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,130.0,1,38,37,9,6,133.9,0,0,1,1,0,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,140.0,1,37,37,9,9,142.5,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,120.0,1,38,1,9,3,118.3,1,0,1,1,1,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,117.0,1,1,19,4,7,113.5,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,141.0,1,19,1,7,3,128.8,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9147,0,1,125.0,1,3,38,2,10,118.7,1,0,1,1,1,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,116.0,1,37,1,5,3,124.8,1,0,1,1,0,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,120.0,1,36,37,0,0,126.7,1,0,1,1,0,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,1 +1,17,4,9853,0,1,140.0,1,19,38,4,1,128.5,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,1,1,3,10,130.0,0,0,1,1,0,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,136.0,1,3,37,2,8,121.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,154.0,1,37,37,9,9,149.5,1,0,1,1,1,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,138.0,1,19,38,5,8,133.5,0,0,1,1,1,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,128.0,1,1,37,4,3,117.9,1,0,1,1,1,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,1 +1,43,1,9130,0,1,150.0,1,3,3,3,4,150.0,1,0,1,1,1,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,110.0,1,19,38,3,5,117.4,1,0,1,1,1,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,135.0,1,37,38,9,6,122.1,1,0,1,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9003,0,1,140.0,1,37,37,9,6,104.8,0,0,1,1,1,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,143.0,1,37,37,9,7,131.8,1,0,1,1,1,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,142.0,1,1,1,3,3,133.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,141.0,1,1,19,5,10,127.0,0,0,1,1,1,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,1 +3,1,2,9085,0,1,135.0,1,19,1,4,4,129.4,1,0,1,1,1,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,39,1,9254,0,1,133.1,1,19,19,4,7,123.0,0,0,0,0,1,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,0 +1,17,2,9500,0,1,131.0,1,19,37,9,7,129.8,1,0,1,1,1,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,1 +1,39,1,9670,0,9,133.1,1,6,22,3,3,120.0,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,131.0,1,37,37,3,3,131.7,1,0,1,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,137.0,1,19,19,5,5,134.6,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,131.0,1,1,1,4,10,129.3,0,0,1,1,1,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,140.0,1,1,37,141,192,129.7,0,0,1,1,1,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,140.0,1,37,37,9,9,124.6,0,0,1,1,1,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,138.0,1,37,37,5,9,125.1,1,1,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,0 +1,2,1,9147,0,1,150.0,1,37,37,9,9,122.0,1,0,1,1,1,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,135.0,1,3,1,4,4,136.1,1,0,1,1,0,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,2 +1,39,1,9991,1,1,150.0,1,1,19,4,8,123.0,0,0,1,1,0,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,141.0,1,19,37,5,8,130.2,0,0,1,1,0,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,106.0,1,37,37,9,9,108.0,1,0,0,1,1,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,19,133.1,1,37,38,9,7,100.5,1,0,1,1,0,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,2 +1,43,1,9254,0,1,142.0,1,38,38,9,9,125.9,0,0,1,1,1,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,150.0,1,1,37,9,7,130.2,0,0,1,1,1,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,1 +4,39,1,9670,0,1,140.0,1,2,1,3,9,170.0,0,0,0,0,0,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9773,0,1,119.0,1,38,19,9,9,118.3,0,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,117.0,1,34,34,0,0,109.3,0,0,1,1,1,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,120.0,1,34,34,99,99,111.6,0,0,0,1,0,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,2 +1,39,1,9119,0,1,139.0,1,19,19,9,7,110.3,0,0,0,1,0,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,2 +1,43,1,9147,0,1,123.0,1,3,19,9,9,113.2,0,0,1,1,1,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,2 +1,43,1,9991,1,1,120.0,1,38,38,9,7,141.0,0,0,1,1,0,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,1 +1,1,1,9130,0,1,151.0,1,3,1,2,4,151.0,1,0,1,1,1,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,130.0,1,37,37,9,6,110.0,1,0,1,1,1,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,1 +1,43,1,9853,0,1,130.0,1,2,39,2,5,124.6,0,0,1,1,0,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,138.0,1,1,1,4,3,141.5,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,120.0,1,37,37,9,5,100.0,0,0,1,1,1,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9991,1,39,150.0,1,37,37,6,6,150.0,0,0,1,1,1,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,2 +2,39,1,9085,0,19,133.1,1,38,38,4,7,128.2,0,0,1,1,1,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.0,41,19,19,9,9,119.7,1,0,0,1,1,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,17,3,9085,0,1,128.0,1,1,19,4,90,124.2,0,0,1,0,1,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,120.0,1,1,1,9,9,129.1,1,0,1,1,0,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9773,0,1,125.0,1,19,19,9,7,129.6,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,137.0,1,40,19,2,9,130.7,1,0,1,1,1,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,0 +1,51,1,9147,0,1,116.0,1,3,3,2,2,115.2,0,0,0,1,0,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,17,5,9853,0,1,132.0,1,12,12,4,4,123.3,1,0,1,1,1,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,0 +1,7,1,9991,1,3,130.0,1,37,37,9,9,130.0,0,0,1,1,0,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,135.0,1,19,38,9,5,136.8,1,0,1,1,1,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,137.0,1,1,1,4,7,134.6,1,0,1,1,0,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,4,171,0,1,133.1,1,38,38,9,9,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,133.1,1,19,37,7,8,120.0,0,0,0,0,1,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,140.0,1,1,19,9,7,127.0,1,0,1,1,1,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,1 +1,18,1,9500,0,1,124.0,1,38,37,9,7,119.3,1,0,1,1,1,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,3,19,2,4,150.0,1,0,1,1,1,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,8014,1,19,133.1,1,3,19,90,90,123.5,0,0,1,1,1,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9853,0,1,133.1,1,37,37,5,5,116.5,0,0,1,1,1,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,0 +1,18,6,9500,0,1,144.0,1,1,1,3,6,130.8,1,0,1,1,1,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9670,0,1,151.0,1,19,19,1,1,100.0,0,0,0,1,1,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,125.0,1,1,19,4,6,115.2,0,1,1,1,1,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,37,38,4,9,110.0,0,0,0,0,1,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,133.1,1,19,19,5,5,108.5,1,0,1,1,1,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,130.0,1,37,11,90,90,122.6,0,0,1,1,1,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,113.0,1,19,37,9,9,118.6,1,0,1,1,1,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,140.0,6,2,3,5,2,124.3,1,0,1,1,1,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,2 +1,1,4,9119,0,1,111.0,1,37,37,9,5,107.5,1,0,1,1,0,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,143.0,1,19,38,9,9,133.4,1,0,1,1,1,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,1 +1,17,1,9773,0,1,141.0,1,2,3,2,2,133.7,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,151.0,41,3,3,2,5,161.9,1,0,1,1,1,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,43,1,33,0,1,143.0,1,37,1,9,10,121.2,1,0,1,1,0,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,1,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,141.0,1,1,19,8,7,128.8,1,0,1,1,1,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,2 +1,1,1,9238,0,1,115.0,1,19,38,7,7,108.7,0,0,1,1,1,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,114.0,1,1,1,4,0,108.8,1,0,1,1,1,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,2 +1,1,2,9853,0,1,112.0,1,37,37,191,182,106.1,1,0,0,1,1,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,2,9085,0,1,157.0,1,3,38,4,6,142.3,0,0,1,1,1,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,1 +2,44,1,8014,1,39,160.0,1,37,19,9,10,155.9,0,0,1,1,1,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,1 +1,1,4,171,0,1,137.0,1,1,38,4,8,141.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,144.0,1,1,37,9,9,126.5,1,0,1,1,1,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,145.0,1,1,1,4,10,131.4,0,0,1,1,1,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,115.0,1,1,1,9,4,109.1,1,0,0,0,1,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,170.0,1,37,37,0,0,150.8,1,0,1,1,1,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,0 +1,5,3,9070,0,1,157.0,1,3,1,9,6,138.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,1 +1,43,2,9238,0,1,129.0,1,34,30,0,5,118.9,1,0,1,1,0,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,5,9853,0,1,141.0,1,3,19,2,7,130.9,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,1 +4,39,1,9991,1,1,133.1,1,37,37,9,9,130.4,0,0,1,1,1,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,130.0,1,19,38,9,9,126.9,0,0,0,1,1,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,136.0,1,19,1,4,3,125.2,1,0,1,1,1,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,37,9,9,140.2,0,0,1,1,0,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,132.0,1,37,38,9,5,120.8,0,0,1,1,1,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,150.0,1,19,37,6,6,150.0,0,0,0,1,1,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,1 +2,42,1,9991,1,1,130.0,1,3,2,2,2,130.0,0,0,1,1,0,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,2 +4,39,1,8014,1,1,133.1,1,38,37,5,7,144.5,0,0,1,1,1,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,2,9773,0,1,150.0,41,1,37,9,7,130.8,0,0,1,1,1,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,1 +2,1,1,8014,1,1,151.0,1,37,37,9,9,152.4,0,0,1,1,1,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,1 +6,39,1,9500,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,0 +2,43,1,9670,0,1,100.0,1,34,34,0,0,128.2,0,0,1,1,0,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,148.0,1,1,19,3,3,131.7,1,0,1,1,1,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,142.0,1,19,19,7,7,142.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,127.0,1,1,38,4,7,125.6,0,0,0,1,1,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,146.0,1,38,38,9,7,134.1,1,0,1,1,0,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,0 +1,17,1,9670,0,1,115.0,1,1,1,4,4,109.1,1,0,1,1,1,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,2 +1,1,2,9773,0,1,148.0,1,1,19,9,9,141.7,0,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,116.0,1,37,37,0,5,114.3,1,0,1,1,1,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,139.0,1,38,19,5,7,130.6,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,1 +1,1,6,9147,0,1,128.0,1,37,37,9,9,116.5,0,0,1,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,2 +1,39,1,9130,0,3,150.0,1,3,1,90,90,150.0,1,0,1,1,1,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9670,0,1,122.0,1,1,19,4,4,116.1,0,0,1,1,0,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,2 +1,39,1,9119,0,1,100.0,1,37,37,9,8,160.0,0,0,0,0,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9254,0,1,128.0,1,19,1,7,9,121.7,1,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,143.0,1,37,38,7,7,133.8,1,0,1,1,1,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,107.0,1,38,38,7,7,103.5,1,0,1,1,1,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,1 +1,39,2,9147,0,1,143.0,1,19,5,4,1,100.0,1,0,1,1,0,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,140.0,0,0,0,0,1,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,160.0,1,1,1,5,4,160.0,1,1,1,0,0,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,0 +2,39,1,9500,0,19,133.1,1,38,38,2,10,120.0,0,0,1,1,1,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,0 +1,5,2,9853,0,1,122.0,1,19,19,4,5,112.6,1,0,1,1,1,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,3,9500,0,1,137.0,1,19,37,7,7,126.7,1,0,1,1,1,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,1 +1,7,1,9070,0,40,120.0,1,1,19,3,9,120.0,1,0,1,1,1,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,157.0,1,38,3,5,2,141.4,0,0,1,1,1,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,1 +2,1,2,8014,1,1,110.0,1,37,1,9,10,108.7,1,0,1,1,1,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,129.0,1,19,37,7,6,120.0,1,0,1,1,1,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,108.0,1,19,1,4,3,111.9,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9070,0,12,110.0,1,37,38,5,10,130.0,0,0,0,0,0,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,122.0,1,1,1,193,101,126.2,0,0,1,1,1,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,4,4,3,3,143.6,0,0,0,1,0,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,2 +1,7,1,9119,0,3,130.0,1,34,34,90,90,130.0,0,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,8014,1,39,120.0,1,19,37,7,6,121.8,1,0,1,1,1,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,142.0,1,37,38,9,9,137.5,1,0,1,1,0,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,138.0,1,3,19,2,4,131.0,1,0,1,1,0,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,0 +1,17,2,9853,0,1,125.0,1,1,19,5,5,119.4,1,0,1,1,1,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,137.0,1,1,1,5,4,131.1,1,0,1,1,1,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,133.0,1,38,38,9,9,128.1,1,0,1,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,0 +4,39,1,9991,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,1,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,17,1,9130,0,1,138.0,1,2,19,2,6,126.3,1,0,1,1,1,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,2 +1,17,4,9500,0,1,135.0,1,1,1,4,4,127.0,1,0,1,1,1,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,140.0,1,4,3,3,3,127.8,0,0,1,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,1 +1,5,1,9147,0,1,126.0,1,19,38,5,6,117.3,1,0,1,1,1,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,2 +1,39,1,9670,0,1,133.1,1,1,19,4,9,140.0,0,0,1,1,0,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,126.0,1,38,38,9,8,118.8,1,0,1,1,1,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,1 +2,42,1,9147,0,1,133.1,1,37,37,9,9,115.8,0,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,126.0,1,1,37,7,9,132.7,0,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,133.0,1,19,19,5,7,123.6,0,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +1,17,4,9556,0,1,135.0,1,38,37,3,7,129.0,1,0,1,1,1,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,110.0,1,37,37,9,9,107.6,1,0,1,1,0,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,2 +1,17,4,9147,0,1,135.0,1,19,1,0,4,128.7,1,0,1,1,0,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +2,1,1,8014,1,1,150.0,1,1,37,4,7,139.9,1,0,1,1,1,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,116.0,1,1,38,4,3,114.6,1,0,1,1,1,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,121.0,1,19,37,1,3,131.5,0,0,1,1,1,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,100.0,1,19,1,1,90,114.0,1,0,0,0,1,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,146.0,1,19,37,5,8,135.8,1,0,1,1,1,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,1 +1,44,1,9119,0,39,140.0,1,1,19,4,5,140.0,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9670,0,1,136.0,1,19,19,5,5,122.0,0,0,0,0,1,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,0 +2,39,1,9003,0,1,133.1,1,19,19,4,4,107.5,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9070,0,1,164.0,1,38,38,9,7,165.8,1,0,1,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,154.0,1,38,38,9,9,133.4,1,0,1,1,1,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,127.0,1,19,37,7,7,121.5,1,0,1,1,0,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,2 +1,43,6,9238,0,1,129.0,1,34,34,0,0,125.2,0,0,1,1,1,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,125.0,1,19,1,4,5,122.6,1,1,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,2 +1,17,1,9070,0,1,136.0,1,38,19,7,7,121.7,1,0,1,1,1,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,131.0,1,38,1,7,4,128.3,1,0,1,1,1,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,1 +1,1,4,171,0,1,132.0,1,1,19,4,5,138.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9254,0,1,115.0,1,12,1,9,3,108.7,1,0,1,1,1,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,131.0,1,1,37,3,7,120.2,0,0,1,1,1,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,134.0,1,1,1,4,9,124.2,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,142.0,1,19,1,9,1,132.6,0,0,1,1,1,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,2,1,3,6,150.0,1,0,1,1,0,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,1 +1,39,1,9254,0,1,130.0,1,19,38,9,7,113.5,0,0,1,1,1,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,135.0,1,2,1,2,8,126.6,0,0,1,1,1,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,1 +1,39,1,9254,0,12,133.1,1,37,37,5,7,119.3,1,0,1,1,0,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,2 +1,1,1,9130,0,1,110.0,1,3,19,2,9,105.5,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9130,0,1,134.0,41,1,19,5,5,125.6,1,0,1,1,1,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,151.0,2,1,1,5,9,146.5,0,0,1,1,1,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,133.0,1,1,3,3,3,135.8,1,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,7,1,9070,0,3,140.0,1,37,2,9,3,140.0,0,0,1,0,1,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,147.0,1,37,19,9,5,133.7,1,0,1,1,1,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,2 +1,51,1,9500,0,1,127.0,1,19,1,5,9,150.0,0,0,1,1,1,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,143.0,1,1,37,5,9,126.6,0,0,0,0,1,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,160.0,1,37,38,9,9,160.0,0,0,0,1,1,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,1 +4,39,1,8014,1,19,133.1,1,34,34,0,0,100.0,0,0,1,1,1,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,0 +4,43,1,9853,0,1,133.1,100,19,22,90,90,100.0,0,0,1,1,1,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,2,120.0,1,37,37,9,8,120.0,0,0,1,1,1,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,2 +1,39,1,9130,0,40,129.0,1,3,3,2,2,155.3,1,0,1,1,1,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,150.0,1,38,37,9,9,150.0,1,0,1,1,0,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +1,44,1,9130,0,39,160.0,1,1,37,3,3,160.0,1,0,0,0,1,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,0 +2,39,1,9003,0,1,133.1,1,1,19,4,4,120.0,0,0,0,0,0,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,115.0,1,19,38,9,9,108.0,0,0,1,1,1,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,134.0,1,1,19,4,5,126.0,0,0,1,1,1,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,135.0,1,38,38,5,8,133.3,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,5,1,9670,0,1,135.0,1,1,12,4,4,140.3,1,0,1,1,1,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,122.0,1,19,1,4,8,135.8,0,0,1,1,1,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,19,19,3,9,112.6,1,0,1,1,1,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,4,9773,0,1,147.0,1,1,1,4,5,139.7,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,140.0,1,19,19,4,5,140.0,1,0,1,1,1,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,130.0,1,12,12,9,9,126.1,0,0,1,1,0,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,0 +1,43,2,9147,0,1,130.0,1,34,37,9,9,118.5,1,0,1,1,0,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,1 +1,17,4,9500,0,1,138.0,1,4,1,2,1,133.0,1,0,1,1,1,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,138.0,1,37,37,194,171,131.0,1,0,1,1,1,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,19,5,8,147.3,0,0,1,1,1,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,1 +1,1,6,9500,0,1,149.0,1,1,1,4,9,133.0,1,0,1,1,1,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,1 +1,16,6,9773,0,1,136.0,1,38,14,0,0,129.7,1,0,1,1,1,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,130.0,1,1,34,9,9,124.8,1,0,1,1,1,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,111.0,1,1,1,3,3,112.4,1,0,1,1,0,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,121.0,1,1,19,4,7,135.4,1,0,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,1 +1,1,1,9556,0,1,135.0,1,37,38,7,9,125.8,0,0,1,1,1,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,136.0,1,37,19,5,8,129.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,4,9670,0,1,110.0,1,1,37,7,7,111.1,1,0,1,0,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,128.0,1,38,38,5,5,118.6,1,0,1,1,1,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,1 +2,39,1,9500,0,19,133.1,1,37,38,9,10,120.9,1,0,1,1,1,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,0 +1,5,3,9085,0,1,143.0,1,37,37,0,90,159.1,0,0,0,1,1,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,0 +4,39,1,9238,0,1,120.0,1,37,37,9,9,125.5,1,0,1,1,1,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,126.0,1,3,1,2,5,116.9,1,1,1,1,1,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,2 +1,16,1,9556,0,1,137.0,1,37,37,9,7,122.7,1,0,1,1,1,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,136.0,1,1,1,9,9,123.8,1,0,1,1,1,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +4,39,1,9130,0,1,133.1,1,3,1,5,5,110.0,1,0,1,1,1,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,0 +1,17,4,9085,0,1,138.0,1,19,36,90,7,134.9,1,0,1,1,1,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,3,9070,0,1,130.0,1,1,4,4,2,131.4,0,0,1,1,0,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,1 +2,42,1,9853,0,1,133.1,1,37,37,4,7,100.0,0,0,1,1,1,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,115.0,1,1,1,9,9,134.3,1,0,1,1,0,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,108.0,1,1,38,5,8,105.9,0,0,1,1,1,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,2 +1,39,1,9991,1,1,120.0,1,19,37,5,5,128.2,0,0,1,0,0,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +5,7,1,9130,0,3,160.0,1,19,38,9,6,160.0,0,0,1,0,1,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,0 +1,1,1,9130,0,1,121.0,1,3,19,2,9,115.4,1,0,1,1,0,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,0 +1,17,1,9254,0,1,118.0,1,11,34,5,0,122.2,1,0,1,1,1,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,0 +1,43,1,9238,0,1,120.0,1,1,38,4,3,118.3,0,0,1,1,1,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,1 +1,1,4,9147,0,1,108.0,1,3,1,3,4,109.1,1,0,1,1,0,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,7,1,9991,1,40,130.0,1,19,19,7,3,130.0,0,0,1,1,1,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,133.1,1,37,19,9,10,150.0,0,0,1,1,0,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,2 +1,7,1,9119,0,40,130.0,1,1,1,4,4,130.0,0,0,1,1,0,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,128.0,1,19,19,5,5,124.5,1,0,1,1,1,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,1 +1,43,1,9085,0,1,170.0,1,19,19,5,1,170.0,1,0,1,1,1,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,2 +1,1,3,9500,0,1,113.0,1,3,1,134,135,107.8,1,0,1,1,1,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,2 +1,1,2,9670,0,1,117.0,1,37,37,9,9,111.8,0,0,1,1,1,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,1,1,9,4,126.2,1,0,1,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,1 +1,17,2,9238,0,1,145.0,1,19,38,7,6,128.6,1,0,1,1,1,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,1 +1,7,1,9147,0,3,130.0,1,38,38,1,9,130.0,0,0,1,1,1,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,1 +1,43,1,9500,0,1,170.0,1,19,37,8,8,100.0,0,0,1,1,1,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,2 +1,17,1,9147,0,1,148.0,1,38,37,5,5,134.0,0,0,1,1,0,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,17,5,9085,0,1,118.0,1,1,38,4,7,122.2,1,0,1,1,1,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,133.1,1,38,38,191,192,118.0,0,0,0,1,1,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,1 +1,18,1,9853,0,1,132.0,1,37,37,9,5,126.1,0,0,1,1,1,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,1 +6,39,1,8014,1,1,133.1,1,37,37,9,9,119.0,0,0,1,1,1,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,133.1,1,1,37,7,7,118.0,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,123.0,1,38,38,4,7,114.3,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9991,1,1,143.0,1,19,37,5,8,135.0,0,0,1,1,1,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,128.0,1,1,1,2,10,116.5,0,0,1,1,0,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,0 +2,39,1,9085,0,1,120.0,1,19,19,1,4,130.0,0,0,1,1,1,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,0 +2,39,1,171,0,19,100.0,1,37,37,9,9,139.0,0,0,1,1,0,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,43,3,9500,0,1,139.0,1,38,37,9,8,146.5,0,0,1,1,1,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,1 +1,1,1,9085,0,1,120.0,1,37,37,9,1,123.2,0,0,1,1,1,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,1 +1,39,1,9085,0,1,140.0,1,3,3,4,2,141.7,1,0,1,1,1,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,127.0,1,2,2,3,4,115.8,1,0,1,1,0,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,117.0,1,19,19,9,9,116.3,1,0,1,1,1,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,152.0,1,19,37,3,8,156.9,0,0,1,1,1,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,140.0,1,1,19,4,4,140.7,0,0,1,1,1,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,133.0,1,3,19,2,7,120.4,1,0,1,1,1,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,1 +1,39,1,9147,0,1,160.0,1,38,38,7,9,121.4,0,1,1,1,1,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,120.0,1,1,2,9,3,130.0,1,0,1,1,1,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,1 +1,17,2,9238,0,1,139.0,1,2,3,3,3,132.7,1,0,1,1,1,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,100.0,1,37,37,6,6,108.3,0,0,1,1,0,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,2 +1,1,2,8014,1,1,107.0,1,19,11,0,0,103.5,1,0,1,1,1,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,1 +1,17,5,9773,0,1,113.0,1,38,38,191,175,110.2,1,0,0,1,1,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,39,1,9670,0,12,133.1,1,1,19,1,5,100.0,1,0,0,0,1,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,39,140.0,1,38,19,9,5,110.0,0,0,1,1,1,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,2 +1,18,2,9238,0,1,126.0,1,19,37,5,7,129.9,1,0,1,1,0,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,1 +1,18,1,9254,0,1,137.0,1,19,19,4,5,126.9,0,0,1,1,0,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,1 +1,17,1,9773,0,1,121.0,1,37,37,9,9,122.4,0,0,1,1,1,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,51,1,9070,0,1,122.0,1,38,38,9,9,128.8,1,0,1,1,0,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,141.0,1,1,1,3,10,142.8,0,0,1,1,1,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,1 +2,39,1,9670,0,1,130.0,1,19,38,9,9,162.3,0,0,1,1,0,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,0 +1,18,1,9853,0,1,133.1,1,1,19,141,182,106.0,1,0,0,1,1,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,2 +1,17,1,9147,0,1,120.0,1,19,19,3,3,113.4,0,0,1,1,1,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,147.0,1,37,19,7,7,134.4,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,44,1,9003,0,1,120.0,1,1,3,144,123,120.0,0,0,1,1,0,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,2 +1,17,4,9500,0,1,137.0,1,1,37,9,9,128.4,1,0,1,1,1,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,1 +1,39,1,9238,0,19,133.1,1,37,37,9,9,120.0,0,1,0,1,1,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,0 +4,39,1,9085,0,1,140.0,1,37,37,9,9,154.6,0,0,1,0,1,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,2 +1,39,1,9003,0,19,133.1,1,37,19,9,7,134.3,0,0,1,1,0,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,0 +1,39,1,9119,0,1,130.0,1,19,37,9,4,149.0,1,0,1,1,0,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,2 +1,17,1,9254,0,1,115.0,1,1,19,3,3,109.4,1,0,1,1,1,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,1 +1,17,1,9003,0,1,126.0,1,37,3,5,2,116.9,0,0,1,1,0,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,128.0,1,1,1,2,2,130.8,1,0,1,1,1,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,0 +1,1,1,9254,0,1,127.0,1,19,19,4,6,120.7,0,0,0,0,1,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,43,1,9238,0,1,110.0,1,14,14,90,90,112.5,1,0,1,1,1,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,142.0,1,3,19,5,5,130.8,1,0,1,1,1,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,1 +1,39,1,9130,0,1,150.0,1,1,1,4,10,110.0,0,0,0,1,0,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,0 +1,1,5,9238,0,3,135.0,1,1,38,9,3,129.4,0,0,0,1,1,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,133.0,1,19,37,1,9,128.5,1,0,1,1,1,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,1 +1,39,2,9991,1,1,133.1,1,19,38,9,9,102.5,0,0,1,0,0,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9773,0,1,136.0,1,1,38,9,8,131.5,1,0,1,1,1,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,138.0,1,37,38,9,8,134.2,1,0,1,1,1,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,7,2,9500,0,3,140.0,1,37,38,9,9,138.0,0,0,1,1,0,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,0 +1,43,1,9003,0,1,120.0,1,1,1,4,10,134.4,0,0,1,1,0,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,140.0,1,19,19,9,9,124.3,1,0,1,1,1,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,1 +1,17,3,9254,0,1,127.0,1,12,38,5,7,116.9,1,0,0,1,1,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,0 +1,17,1,9238,0,1,145.0,1,38,38,9,7,145.0,0,0,1,1,1,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +2,39,1,8014,1,1,140.0,1,19,19,9,7,102.5,0,0,1,1,1,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,1 +1,17,6,9500,0,1,131.0,1,1,19,7,7,126.5,1,0,1,1,1,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,1 +1,1,2,9500,0,1,124.0,1,34,34,0,0,123.3,1,0,1,1,1,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,0 +2,39,1,9991,1,1,120.0,1,37,3,9,3,168.2,0,0,1,1,0,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,5,9773,0,1,118.0,1,38,19,9,9,113.8,1,0,1,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,122.0,1,19,38,7,7,117.1,1,0,1,1,1,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,115.0,1,19,1,3,7,113.6,0,0,1,1,0,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,2 +1,17,2,9254,0,1,141.0,1,1,4,4,4,127.7,0,0,1,1,1,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,1 +1,44,1,8014,1,39,130.0,1,37,38,6,6,130.0,1,0,1,1,1,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,1 +1,17,2,9556,0,1,120.0,1,37,37,5,5,111.3,1,0,1,1,1,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,145.0,1,1,19,10,5,150.6,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,129.0,1,38,19,3,7,118.9,1,0,1,1,1,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,2 +1,1,5,9085,0,1,121.0,1,38,37,9,8,114.0,1,0,1,0,1,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,0 +1,17,1,9254,0,1,126.0,1,1,1,9,9,124.3,0,0,1,1,1,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,149.0,1,1,3,0,0,148.7,0,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9147,0,1,125.0,1,38,38,6,8,114.5,1,0,1,1,1,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,1 +1,16,3,9085,0,1,130.0,1,37,37,9,2,119.5,1,0,1,1,1,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,145.0,1,19,37,9,9,132.3,1,0,1,1,1,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,2 +1,17,1,9773,0,1,128.0,1,19,38,5,7,125.6,1,0,1,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9254,0,1,135.0,1,38,37,9,7,139.2,0,0,1,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,139.0,1,37,38,6,6,121.3,1,0,1,1,1,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,2 +1,44,1,9070,0,39,150.0,1,12,37,3,9,147.7,0,0,0,1,1,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,110.0,1,3,19,4,5,109.0,0,0,1,1,0,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,133.1,1,38,38,5,9,105.0,1,0,1,1,1,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,1 +2,51,1,9991,1,1,127.0,1,37,37,8,4,100.1,0,0,1,1,1,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,1 +1,17,1,171,0,1,135.0,1,19,1,4,1,131.9,1,0,1,1,0,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,1 +4,39,1,9556,0,1,160.0,1,19,3,9,2,130.0,0,0,1,1,1,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,2 +1,17,5,9119,0,1,123.0,1,3,1,2,9,116.0,1,0,0,0,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,43,1,9500,0,1,140.0,1,19,19,7,7,138.6,0,0,1,1,1,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,1 +1,17,3,9238,0,1,141.0,1,19,38,9,7,125.6,1,0,1,1,1,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,39,1,9500,0,3,130.0,1,2,2,1,1,130.0,0,0,1,1,1,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,37,37,7,9,111.0,0,0,1,0,0,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9070,0,1,148.0,1,1,1,4,8,141.4,0,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9147,0,1,115.0,1,1,38,3,8,109.8,1,0,1,1,1,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,1 +1,7,3,9130,0,3,130.0,1,19,37,90,5,130.0,0,0,0,0,1,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,0 +1,1,5,9500,0,1,141.0,1,38,19,7,7,132.5,1,0,1,0,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,133.0,1,19,37,9,9,129.9,0,0,1,1,0,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,142.0,1,19,37,4,7,141.3,0,0,1,1,1,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,130.0,1,37,37,9,10,130.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,133.1,1,19,38,7,4,125.7,0,0,1,1,1,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,129.0,1,19,37,9,9,117.5,1,0,1,1,1,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,103.0,1,1,19,9,9,108.3,0,0,1,1,1,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,2 +1,1,1,9853,0,1,133.1,1,19,19,9,9,97.0,1,0,1,1,1,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,0 +2,7,1,9238,0,3,150.0,1,37,37,191,192,150.0,0,0,1,1,1,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,0 +1,39,1,9085,0,12,133.1,1,34,34,99,99,128.2,0,0,0,0,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9070,0,1,129.0,1,3,4,2,2,136.4,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,2 +1,39,2,9147,0,38,133.1,1,19,38,9,9,102.5,0,0,1,0,0,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9853,0,1,133.1,1,34,34,0,0,118.9,1,0,1,1,1,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,135.0,1,19,38,9,9,129.2,0,0,1,1,1,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,122.0,1,37,37,9,3,115.7,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,42,1,9853,0,1,120.0,1,1,19,4,7,111.3,0,0,1,1,1,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,141.0,1,38,19,9,10,125.6,1,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,1 +1,17,4,9500,0,1,133.0,1,19,19,3,10,131.1,1,0,1,1,1,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,106.0,1,1,19,4,4,106.4,1,0,1,1,1,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,2 +2,39,1,9147,0,1,133.1,1,37,37,9,9,140.0,0,0,1,0,1,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,0 +1,51,1,9070,0,1,130.0,1,3,1,2,8,122.2,0,0,0,1,1,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,1 +1,17,6,9500,0,1,143.0,1,38,1,9,10,127.3,1,0,1,1,1,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,154.0,1,1,1,5,7,154.7,0,0,1,1,1,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,1 +1,7,1,9991,1,40,120.0,1,37,37,9,7,120.0,0,0,1,1,1,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,151.0,1,37,1,9,9,138.4,1,0,1,1,1,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,1 +2,39,2,9003,0,19,133.1,1,38,19,4,1,110.0,0,0,1,0,0,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9119,0,1,129.0,1,12,1,4,10,124.1,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,0 +1,17,1,9238,0,1,120.0,1,37,37,4,9,117.1,1,0,1,1,1,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,133.1,1,3,1,4,9,105.0,1,0,1,1,0,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,2 +1,17,1,9147,0,1,120.0,1,38,38,9,8,118.3,0,0,1,1,0,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,0 +1,18,1,9147,0,1,147.0,1,19,1,9,7,139.3,1,0,1,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,140.0,1,19,19,5,5,131.3,0,0,1,1,0,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,133.0,1,38,19,9,8,128.8,1,0,1,1,0,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,1 +1,17,1,9254,0,1,127.0,1,1,1,4,8,126.7,1,0,1,0,0,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9147,0,1,131.0,1,1,19,4,5,120.2,1,0,1,1,1,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,143.0,1,38,38,5,5,133.9,0,0,1,1,1,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,1 +4,39,1,9147,0,1,140.0,1,37,37,9,9,142.8,0,0,1,1,1,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,138.0,1,19,1,5,5,128.0,1,0,1,1,1,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,1 +1,43,1,9500,0,1,150.0,1,37,37,9,9,130.8,1,0,1,1,1,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,160.0,1,19,38,9,9,152.0,0,0,1,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,42,1,9254,0,1,154.0,1,38,37,1,1,154.0,1,0,1,1,1,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,141.0,1,37,37,4,4,138.9,0,0,1,1,1,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,135.0,1,38,37,9,8,126.3,1,0,1,1,1,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,1 +1,17,2,9853,0,1,138.0,1,1,1,9,4,123.0,1,0,1,1,1,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,0 +2,1,1,9085,0,1,139.0,1,19,19,192,144,127.1,0,0,1,1,0,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,1 +1,17,4,9070,0,1,116.0,1,38,37,9,9,109.0,0,0,1,1,1,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,0 +1,44,1,9003,0,39,140.0,1,38,38,6,3,140.0,0,0,1,1,1,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9254,0,1,120.0,1,19,19,4,4,125.5,0,0,1,1,0,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,43,1,9991,1,1,120.0,1,37,37,9,8,122.5,1,0,1,1,1,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,2 +1,17,1,9070,0,1,136.0,1,1,37,4,5,130.8,0,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,116.0,1,38,19,8,10,110.8,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9853,0,1,146.0,1,19,38,9,3,145.3,1,0,1,1,1,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,150.0,1,37,37,9,7,150.0,0,0,1,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9670,0,1,124.0,1,1,19,5,4,124.4,0,0,1,1,1,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,39,1,8014,1,1,133.1,1,37,38,9,9,148.5,0,0,1,1,0,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,148.0,1,1,1,9,9,127.0,1,0,1,1,0,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,1 +4,1,1,8014,1,1,133.1,1,39,19,4,10,143.0,1,0,1,1,1,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,133.1,1,1,19,3,5,115.0,0,0,1,0,0,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,0 +2,44,1,9003,0,39,160.0,1,37,38,9,4,160.0,0,0,1,1,1,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,1 +1,16,3,9070,0,1,152.0,1,1,38,4,8,156.9,1,0,1,1,1,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,37,37,9,9,126.3,0,0,1,1,1,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,1,5,9773,0,1,131.0,1,1,38,9,5,132.4,1,0,0,0,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,9556,0,1,140.0,1,37,37,9,8,105.0,1,0,1,1,1,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,1 +1,1,3,9070,0,1,128.0,1,19,19,3,3,129.8,1,0,1,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,2 +1,1,2,9500,0,1,133.1,1,19,38,7,9,125.5,1,0,1,1,1,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,1 +1,44,1,9238,0,39,140.0,1,38,37,7,7,143.0,0,0,1,1,1,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,139.0,1,19,38,4,9,146.7,1,0,1,1,1,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,1 +1,17,1,9085,0,1,129.0,1,1,37,9,9,118.2,1,0,1,1,1,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,1 +1,43,1,9238,0,1,142.0,1,34,34,99,99,131.9,0,0,1,1,1,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,1 +1,1,3,9500,0,1,139.0,1,1,19,9,3,130.3,1,0,1,1,1,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,120.0,1,19,38,5,5,152.4,0,0,1,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,149.0,1,19,19,4,6,147.6,1,0,1,1,1,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,1 +1,51,1,8014,1,2,110.0,1,19,38,9,10,110.0,0,0,1,1,0,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,1 +1,17,3,9119,0,1,135.0,1,1,19,141,193,121.7,1,0,1,1,0,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,2 +1,1,4,9773,0,1,122.0,1,19,19,9,7,121.0,1,0,1,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,7,1,9003,0,3,120.0,1,1,19,4,1,120.0,1,0,1,1,0,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,1 +1,17,4,9500,0,1,140.0,1,19,37,4,8,133.3,1,0,1,1,1,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,121.0,1,1,1,5,4,111.9,1,0,1,0,0,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9119,0,3,130.0,1,1,38,90,90,143.4,0,0,1,1,0,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,9238,0,1,120.0,1,37,37,6,9,121.0,0,0,1,1,1,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,154.0,1,38,37,4,4,141.4,0,0,1,1,1,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,1 +1,7,1,8014,1,40,130.0,1,19,1,5,10,130.0,1,0,0,0,1,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,1,133.1,1,1,1,4,4,120.0,0,0,0,0,0,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,120.0,1,37,1,9,5,113.4,1,0,1,1,1,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,1 +1,1,5,9500,0,1,139.0,1,38,37,7,7,126.3,1,0,1,1,1,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,135.0,1,38,19,194,193,135.4,1,0,1,1,0,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,150.0,1,3,2,2,2,150.0,0,0,1,1,0,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,0 +2,43,1,9991,1,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,1 +1,43,1,9500,0,1,130.0,1,1,1,7,4,136.0,1,0,1,1,0,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,1 +1,39,1,9003,0,3,130.0,1,3,3,1,2,150.0,0,0,1,1,1,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,1 +1,17,2,9147,0,1,123.0,1,1,38,4,7,115.3,1,0,1,1,1,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,2 +1,1,5,9500,0,1,101.0,1,38,38,9,9,104.5,1,0,1,1,1,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,140.0,1,1,19,9,9,128.8,0,0,1,1,0,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,1 +1,39,2,9119,0,1,120.0,1,37,37,5,5,128.0,0,0,1,1,0,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,8014,1,15,133.1,1,34,34,0,0,100.0,1,0,1,0,1,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9130,0,1,133.1,1,6,11,4,5,138.4,0,0,1,1,0,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,142.0,1,37,37,6,7,136.1,1,0,1,1,1,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,132.0,1,37,37,9,9,123.6,1,0,1,1,1,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,19,19,9,9,126.9,1,0,1,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,15,1,9238,0,1,150.0,26,3,37,2,8,132.5,1,0,1,0,1,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,1,1,9853,0,1,142.0,1,12,12,9,4,132.6,1,0,1,1,1,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,1 +1,17,4,9254,0,1,106.0,1,37,19,9,7,116.9,1,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,1 +1,17,4,9070,0,1,160.0,1,1,19,5,7,155.5,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,1 +1,42,1,9500,0,1,157.0,1,3,3,3,3,100.0,0,0,1,1,1,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,131.0,1,3,19,1,4,118.8,0,0,1,1,1,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,1 +1,43,2,9773,0,1,120.0,1,34,34,0,0,103.6,1,0,1,1,1,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,125.0,1,34,37,9,9,129.2,1,0,0,0,1,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,0 +1,1,4,9085,0,1,145.0,1,37,1,9,9,145.0,1,0,1,1,1,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,136.0,1,1,1,9,3,122.7,1,0,1,1,0,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,2 +1,1,4,9147,0,1,120.0,1,19,38,5,5,122.8,1,0,1,1,0,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,2 +1,1,2,9085,0,1,140.0,1,37,38,9,7,137.0,0,0,1,1,1,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,120.0,1,4,1,4,10,112.0,1,0,1,1,1,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,2 +1,43,1,9147,0,1,123.0,1,37,38,7,7,110.0,0,0,1,1,0,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,138.0,1,38,19,9,5,144.3,0,0,1,1,1,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,12,133.1,1,37,37,9,9,120.0,0,0,1,1,1,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,51,1,9147,0,1,140.0,1,19,19,9,7,120.4,0,0,0,0,1,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,145.0,1,37,1,9,4,138.8,1,0,1,1,1,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,133.0,1,19,38,5,0,133.7,1,0,1,1,1,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9130,0,39,150.0,1,5,1,2,5,150.0,1,0,1,1,0,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,2 +1,43,1,9991,1,1,140.0,1,37,38,9,8,135.5,0,0,0,0,1,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,0 +1,1,1,9254,0,1,123.0,1,38,19,9,4,117.8,0,0,1,1,0,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,2 +1,1,4,9500,0,1,125.0,1,1,12,3,6,115.2,1,0,1,1,1,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,1 +1,17,2,9254,0,1,129.0,1,12,37,9,9,122.0,1,0,1,1,1,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,5,2,9070,0,1,143.0,1,1,1,4,10,146.2,1,0,1,1,0,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,117.0,1,38,38,4,9,120.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +2,39,1,9991,1,3,130.0,1,3,1,1,10,160.0,0,0,1,1,1,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,0 +1,17,1,9556,0,1,133.0,1,38,37,9,9,124.4,1,0,1,1,1,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,1 +1,1,1,9003,0,1,124.0,1,38,19,9,7,116.0,0,0,1,1,0,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,164.0,1,19,1,9,9,161.2,0,0,1,1,0,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,1 +1,43,1,9991,1,1,130.0,1,37,37,9,9,119.5,1,0,1,1,1,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,100.0,1,1,19,1,5,130.0,0,0,0,1,1,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,142.0,1,19,19,7,3,132.9,0,0,1,1,0,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,126.0,1,19,19,3,7,123.9,0,0,1,1,1,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,1 +1,1,4,9254,0,1,132.0,1,1,38,5,6,122.6,1,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,1 +1,1,6,9238,0,1,125.0,1,38,1,7,4,118.4,1,0,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,9003,0,1,140.0,1,3,3,2,2,110.0,0,0,1,1,0,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,1 +1,1,1,171,0,1,138.0,1,1,40,4,3,149.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,43,1,171,0,1,144.0,1,19,19,9,4,121.6,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,2,9773,0,1,129.0,1,37,37,9,7,117.1,1,0,1,1,1,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,2 +1,1,6,9853,0,1,114.0,1,19,19,9,9,110.2,1,0,1,1,0,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,0 +2,42,1,9147,0,1,100.0,1,37,37,9,9,100.0,1,0,1,1,1,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,135.0,1,38,19,9,5,126.3,0,0,1,1,0,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,171,0,1,156.0,1,3,3,2,2,147.7,1,0,1,1,1,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,1 +1,1,1,9147,0,1,139.0,1,38,1,5,5,127.1,1,0,1,1,0,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,127.0,1,1,37,4,9,128.1,0,0,1,1,0,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,2 +1,1,5,9070,0,1,124.0,1,37,37,9,9,113.9,1,0,1,1,1,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,17,4,9500,0,1,129.0,1,38,37,9,5,120.0,1,0,1,1,1,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,118.0,1,19,19,9,9,122.2,0,0,1,1,1,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,1 +2,39,1,9556,0,19,133.1,1,38,37,7,7,99.5,1,0,0,0,1,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,130.0,1,38,38,7,7,136.3,1,0,1,1,0,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,1 +1,17,1,9853,0,1,112.0,1,2,19,3,9,106.1,1,0,1,1,1,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,2 +1,43,1,9119,0,1,146.0,1,3,1,2,3,100.0,0,0,1,1,0,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9085,0,1,132.0,1,1,12,4,5,124.3,0,0,1,1,1,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,2 +1,17,1,8014,1,1,136.0,1,37,37,5,8,132.5,0,0,0,1,1,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,1 +1,7,1,9500,0,3,130.0,1,37,37,90,90,130.0,1,0,1,1,0,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,135.0,1,1,1,4,4,122.8,0,0,1,1,1,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,1 +2,39,1,9254,0,1,130.0,1,37,37,9,9,125.0,0,0,1,1,1,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,1 +2,43,1,8014,1,1,130.0,1,34,34,0,0,130.0,0,0,1,1,1,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,133.1,1,19,19,9,8,132.0,1,0,1,1,1,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,0 +2,39,1,9070,0,1,160.0,1,3,1,2,5,126.5,0,0,1,1,1,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,1 +1,15,1,9556,0,1,137.0,26,19,1,9,4,137.0,0,0,0,1,1,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,2 +1,17,2,9773,0,1,133.1,1,3,5,0,2,125.8,1,0,1,0,0,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,0 +1,16,4,9238,0,1,135.0,1,37,37,9,9,121.0,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,39,2,9556,0,1,130.0,1,37,19,9,8,110.0,0,0,1,1,0,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,2 +1,1,1,9853,0,1,123.0,1,1,38,9,6,121.6,1,0,1,1,1,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,2 +1,1,1,9119,0,1,126.0,1,38,19,5,5,130.2,0,0,1,1,0,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,2 +1,1,5,9500,0,1,122.0,1,37,3,9,2,116.8,1,0,1,1,1,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,132.0,1,38,38,9,9,119.3,1,0,1,1,1,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,116.0,1,38,1,5,1,111.1,0,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9500,0,1,113.0,1,38,19,9,7,106.7,1,0,1,1,1,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,2 +1,39,1,9670,0,1,120.0,1,34,34,0,0,106.0,1,0,1,0,0,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,0 +1,17,2,9500,0,1,145.0,1,19,37,5,9,130.5,1,0,1,1,1,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,1 +2,39,1,9238,0,19,133.1,1,37,37,4,4,98.5,0,0,1,1,1,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,0 +1,1,1,9500,0,1,152.0,1,41,19,3,5,137.8,0,0,1,1,1,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,1 +1,43,2,8014,1,3,130.0,1,34,34,0,0,130.0,0,0,1,1,0,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,1 +1,1,1,9773,0,1,152.0,1,38,37,9,9,139.1,0,0,1,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,18,1,9003,0,1,133.1,1,1,38,9,6,101.0,0,0,1,1,0,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,140.0,1,19,1,9,8,105.0,0,0,1,1,1,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,2 +1,1,1,9500,0,1,162.0,1,19,1,5,5,147.5,1,0,1,1,1,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,1,133.1,1,19,1,4,1,101.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9119,0,1,116.0,1,19,1,9,7,112.2,0,0,1,1,0,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9085,0,1,133.0,1,38,37,9,7,120.1,1,0,1,1,1,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,1 +1,44,1,171,0,39,110.0,1,37,37,5,6,108.3,0,0,1,0,1,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,0 +1,17,2,9773,0,1,121.0,1,1,1,5,5,123.1,1,0,1,1,0,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,1 +1,17,1,9556,0,1,133.0,1,1,38,4,9,119.0,0,0,1,1,1,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,2 +1,17,1,9147,0,1,139.0,1,1,38,4,5,152.0,0,0,1,1,1,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,160.0,1,12,38,4,8,160.0,1,0,1,1,0,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,133.1,1,19,19,7,7,117.0,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9147,0,1,128.0,1,3,1,3,3,121.0,1,1,0,1,0,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,2 +1,1,2,9773,0,1,116.0,1,1,19,4,7,127.6,1,0,1,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,0 +1,18,3,9119,0,1,111.0,1,1,19,9,8,111.0,1,0,1,1,0,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,146.0,1,1,1,9,7,126.0,0,0,1,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,2 +1,53,1,9085,0,42,140.0,1,1,1,5,5,143.3,1,0,1,0,1,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,2 +1,1,1,9070,0,1,144.0,1,1,1,3,5,127.2,1,0,1,1,1,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,141.0,1,38,1,5,7,132.6,0,0,1,1,1,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,18,1,9085,0,1,153.0,1,37,37,9,9,138.0,1,0,1,1,1,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,0 +1,1,3,171,0,1,137.0,1,1,3,5,2,133.9,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,150.0,1,19,38,9,5,143.0,0,0,1,1,1,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,1,9,6,126.1,1,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,5,9070,0,1,133.0,1,4,1,4,4,132.0,1,1,1,1,1,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,140.0,1,1,19,9,9,140.0,1,0,1,1,1,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,2 +1,1,1,171,0,1,133.1,1,3,1,2,4,128.2,1,0,1,1,1,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,1 +1,39,1,9085,0,1,133.1,1,37,36,90,7,128.2,0,0,1,1,0,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,43,1,9070,0,1,114.0,1,19,38,9,7,135.9,0,0,1,1,0,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,1 +2,51,1,9500,0,1,130.0,1,37,37,5,5,120.0,0,0,1,1,0,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,0 +1,43,1,9670,0,39,110.0,1,19,3,7,10,110.0,0,0,1,1,1,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,2 +1,43,1,9500,0,1,148.0,1,29,38,90,3,131.0,1,0,1,1,1,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,1 +1,18,1,9254,0,1,118.0,1,38,38,5,5,123.3,1,0,1,1,0,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,2 +1,7,1,9003,0,3,130.0,1,1,38,9,7,130.0,1,0,1,0,0,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,133.1,1,3,38,2,7,121.7,0,0,1,1,0,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +1,18,1,9991,1,1,133.1,1,38,38,5,5,145.0,0,0,1,1,1,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,2 +1,1,4,9773,0,1,136.0,1,1,12,9,10,121.7,1,0,1,1,1,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,1 +1,17,1,9500,0,1,160.0,1,19,1,4,10,153.0,1,0,1,1,1,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,1 +2,53,1,9147,0,42,130.0,1,19,19,175,152,132.4,0,0,1,1,1,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,2 +1,39,1,9119,0,40,120.0,1,1,1,5,10,146.8,0,0,1,1,0,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,150.0,1,19,11,0,0,131.1,1,0,1,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,122.0,1,1,19,4,3,130.4,1,0,1,1,1,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,1 +1,1,5,9119,0,1,132.0,1,38,19,5,3,119.1,0,0,1,1,1,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,137.0,1,1,3,4,3,124.6,0,0,1,1,1,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,1 +1,1,2,9500,0,1,126.0,1,1,38,4,7,124.3,1,0,1,1,1,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,1 +1,43,1,9238,0,39,120.0,1,2,1,1,2,118.6,0,0,1,1,0,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,132.0,1,34,34,0,0,119.1,1,0,1,1,1,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,1 +1,1,1,9130,0,1,127.0,1,1,1,4,4,120.4,1,0,1,1,1,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,135.0,1,1,38,5,5,122.4,0,0,0,1,1,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,1 +1,18,2,9773,0,1,109.0,1,1,1,4,4,109.0,1,0,1,0,1,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,3,9500,0,1,132.0,1,19,3,9,5,130.8,1,0,1,1,1,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,2 +1,43,1,33,0,19,133.1,1,38,38,4,4,140.0,0,0,0,1,0,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,0 +1,17,1,9773,0,1,120.0,1,37,37,5,5,125.3,0,0,1,1,1,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,1 +1,1,1,9773,0,1,140.0,1,1,19,5,10,141.1,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,145.0,1,19,38,4,4,132.1,1,0,1,1,0,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9254,0,1,122.0,1,19,19,5,5,118.2,0,0,1,1,1,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,2 +1,17,1,8014,1,1,119.0,1,34,34,0,0,112.4,1,0,1,1,1,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,0 +1,1,5,9500,0,1,125.0,1,1,1,3,8,115.6,1,0,1,1,1,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,2 +2,39,1,9991,1,1,150.0,1,1,4,4,2,146.0,0,0,1,1,0,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,2 +1,1,1,9670,0,1,132.0,1,4,2,123,112,143.6,1,0,1,1,0,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,2 +1,1,2,9085,0,1,144.0,1,1,19,4,10,132.1,1,0,1,1,1,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,142.0,1,19,19,1,1,125.5,1,0,1,1,1,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,130.0,1,19,19,9,6,135.0,0,0,1,1,1,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,1 +1,42,1,9119,0,1,140.0,1,19,19,90,90,120.0,0,0,0,0,0,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,143.0,1,1,37,3,8,128.0,0,0,1,1,1,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,1 +1,1,3,9070,0,1,146.0,1,34,34,0,0,143.6,1,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,0 +2,39,1,9130,0,1,130.0,1,1,19,6,6,154.0,1,0,1,1,0,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,1 +2,39,1,9991,1,1,120.0,1,37,37,9,10,170.0,0,0,1,1,1,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,2 +6,39,1,9991,1,12,130.0,1,37,37,90,90,119.0,1,0,1,0,0,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,53,1,9003,0,42,130.0,1,1,1,144,144,125.8,0,0,0,1,1,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,145.0,1,40,1,2,4,160.1,0,0,1,1,1,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,1 +1,44,1,9070,0,1,140.0,1,1,1,9,8,144.3,1,0,1,1,1,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,150.0,1,1,38,6,6,150.0,1,0,1,1,0,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,148.0,1,37,37,9,9,143.5,0,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,123.0,1,19,19,9,8,125.5,0,0,1,0,1,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,1 +1,39,1,9085,0,1,130.0,1,34,1,0,2,128.2,0,0,1,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9991,1,1,130.0,1,1,1,3,7,140.0,0,0,1,1,0,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,1 +1,17,4,9556,0,1,112.0,1,1,1,4,10,107.1,1,0,1,1,1,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,101.0,1,1,1,3,4,102.4,0,0,1,1,1,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,133.0,1,37,37,9,7,121.8,0,0,1,1,0,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,1 +2,39,1,9500,0,1,133.1,1,3,1,5,5,148.8,0,0,1,1,1,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,157.0,1,19,38,5,3,149.3,0,0,1,1,1,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,163.0,1,3,4,2,5,175.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,4,9070,0,1,148.0,1,1,3,4,1,163.4,1,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,1 +1,53,1,9085,0,42,130.0,1,38,38,9,9,128.8,0,0,1,1,1,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,0 +1,39,1,8014,1,1,120.0,1,1,1,4,4,150.5,0,0,1,1,1,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,1 +1,51,1,9147,0,1,130.0,1,1,1,4,4,120.0,0,0,1,1,1,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,2 +4,39,2,9556,0,19,133.1,1,19,19,4,6,123.0,0,0,1,1,1,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,1 +4,39,1,8014,1,19,140.0,1,37,37,9,3,131.0,0,0,1,1,1,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,1 +1,43,1,9147,0,1,131.0,1,19,38,9,9,129.7,1,0,1,1,1,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,1 +1,7,1,9238,0,40,130.0,1,37,37,5,5,130.0,0,0,1,1,0,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,1 +1,1,1,9130,0,1,133.0,1,3,1,2,4,126.0,0,0,1,1,0,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,100.0,1,1,1,4,4,120.0,0,0,1,1,0,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,0 +2,7,1,9147,0,3,120.0,1,37,37,9,9,120.0,0,0,1,1,1,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,2 +1,39,1,9119,0,1,138.7,1,1,12,4,3,111.3,0,0,1,1,0,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,135.0,1,38,38,5,7,121.0,0,0,1,1,1,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,116.0,1,1,19,5,9,111.1,0,0,1,1,0,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,1 +1,43,1,9130,0,1,100.0,41,3,4,3,2,100.0,0,0,1,1,1,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,2 +1,7,1,9147,0,3,130.0,1,37,19,9,8,130.0,0,0,1,1,1,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,1 +1,1,4,9085,0,1,138.0,1,3,1,1,4,123.3,1,0,1,1,1,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,1 +1,17,1,9003,0,1,131.0,1,19,1,9,2,134.5,1,0,1,1,1,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,139.0,1,38,1,9,5,131.8,1,0,1,1,1,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,1 +4,39,1,9991,1,1,133.1,1,37,37,6,6,136.2,0,0,1,1,1,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,1 +1,44,1,9070,0,39,123.9,1,37,1,9,7,123.9,0,0,1,1,0,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,0 +1,1,1,9147,0,1,143.0,1,3,1,5,5,152.1,1,0,0,1,0,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,0 +1,1,6,9500,0,1,142.0,1,1,37,7,7,123.5,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,124.0,1,2,1,4,10,117.4,1,0,1,1,1,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,1 +1,17,5,9119,0,1,130.0,1,19,1,4,5,118.1,1,0,0,0,0,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,0 +1,17,4,9147,0,1,121.0,1,38,37,6,7,113.0,1,0,1,1,1,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,150.0,1,19,19,4,10,100.0,0,0,1,1,1,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,151.0,1,37,37,9,9,138.0,1,0,1,1,1,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,138.0,1,38,38,9,9,126.8,0,0,1,1,0,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,1 +6,17,3,8014,1,1,115.0,1,19,1,5,90,115.0,0,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,127.0,1,1,19,3,3,120.2,1,0,1,1,1,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,1 +1,51,1,9991,1,1,134.0,1,1,1,5,3,120.6,1,0,1,1,0,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,121.0,1,19,1,7,9,117.9,1,0,1,1,1,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,131.0,1,1,38,4,8,121.9,1,0,1,1,1,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,1 +2,39,1,9500,0,19,133.1,1,38,38,7,8,170.0,0,0,1,1,0,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9147,0,1,100.0,1,37,37,9,5,170.0,0,0,1,1,0,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,95.0,1,37,37,5,8,95.0,0,0,1,0,0,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,0 +1,43,1,8014,1,1,148.0,1,37,37,9,9,134.7,0,0,1,1,1,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,2 +1,1,2,9238,0,1,121.0,1,19,19,191,171,119.3,1,0,0,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,18,2,9119,0,1,136.0,1,1,2,5,4,122.7,1,0,1,1,0,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,0 +1,17,4,9254,0,1,130.0,1,19,1,5,5,130.0,1,0,1,1,0,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,0 +2,43,1,9991,1,1,140.0,1,37,37,4,9,100.0,0,0,1,0,1,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,0 +1,15,1,9254,0,1,160.0,1,1,3,3,3,142.5,1,0,1,0,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,17,3,9500,0,1,138.0,1,1,19,7,8,129.3,1,0,1,1,1,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,1 +1,39,1,9254,0,19,133.1,1,37,37,90,90,100.0,0,0,1,1,0,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,148.0,1,1,37,9,7,143.3,0,0,1,1,1,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,1 +1,7,1,9500,0,3,130.0,1,19,38,4,10,130.0,1,0,1,1,1,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,133.1,1,19,37,9,7,110.0,1,0,1,1,0,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9254,0,1,131.0,1,4,3,7,4,126.1,1,0,1,1,1,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,1 +1,43,2,9500,0,1,136.0,1,38,38,9,5,131.3,0,0,1,1,1,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,1 +1,17,1,9254,0,1,119.0,1,1,1,4,10,125.0,0,0,1,1,0,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,2 +1,17,2,9238,0,1,132.0,1,38,1,7,7,133.1,1,0,1,1,1,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,1 +1,1,4,9500,0,1,126.0,1,12,1,5,10,120.2,0,0,1,1,1,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,2 +1,7,1,9147,0,40,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,161.0,22,37,37,9,9,137.9,0,0,0,0,1,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,1 +1,17,2,9147,0,1,133.0,1,19,1,9,3,120.1,1,0,1,1,1,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,0 +1,51,1,9085,0,1,127.0,1,3,3,2,8,138.8,1,0,1,1,1,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,121.0,1,1,1,1,1,115.1,1,0,1,1,1,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,1 +1,17,1,9130,0,1,130.0,1,3,19,2,9,115.9,0,0,1,1,1,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +2,7,1,9991,1,3,140.0,1,34,34,99,99,140.0,1,0,1,0,0,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,123.0,1,1,1,9,9,113.2,0,0,1,1,1,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9500,0,1,137.0,1,1,1,9,9,127.9,1,0,1,1,1,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,0 +1,1,5,9500,0,1,130.0,1,19,37,9,7,127.6,1,0,1,1,1,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,133.1,1,1,38,3,7,121.7,0,0,1,1,1,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,2 +1,44,1,9130,0,39,130.0,1,3,1,4,1,130.0,1,0,1,0,1,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,107.0,1,2,12,3,10,104.2,1,0,1,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,1 +4,39,1,8014,1,19,133.1,1,37,37,9,9,113.5,0,0,1,1,1,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,1 +1,17,1,9500,0,1,145.0,1,19,37,4,8,136.8,1,0,1,1,1,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,120.0,1,19,38,5,6,112.3,0,0,1,1,1,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,133.1,1,34,34,0,0,125.3,0,0,1,1,0,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,0 +1,1,6,9853,0,1,136.0,1,1,19,5,5,122.0,0,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,1 +1,1,2,9070,0,1,121.0,1,4,1,2,3,120.7,1,0,1,1,1,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,2 +2,1,1,9147,0,1,133.1,1,34,34,0,0,131.8,0,0,1,1,1,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,0 +1,15,1,9670,0,1,133.1,41,1,1,9,4,100.0,0,0,1,1,1,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,127.0,1,19,38,3,3,121.1,1,0,1,1,0,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/synthetic/benchmark_ds/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/synthetic/benchmark_ds/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f25e40d604bfed0e9d1581444dcbf633dcdd0869 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260331_162121/synthetic/benchmark_ds/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,1,1,126.0,1,38,37,5,5,118.7,0,0,1,1,1,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,19,37,9,7,111.4,0,0,1,1,0,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9003,0,39,140.0,1,1,1,4,3,140.0,1,0,1,1,1,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,1 +1,1,2,9085,0,1,141.0,1,1,38,9,8,128.9,1,0,1,1,1,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,128.0,1,19,19,7,8,120.0,1,0,1,1,1,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,2 +1,17,1,9070,0,1,123.0,1,4,37,2,9,113.9,0,0,1,1,1,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,1,140.0,41,1,1,9,9,100.0,0,0,0,0,1,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,133.1,1,1,3,9,9,116.0,0,0,1,1,0,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,143.0,1,3,3,2,10,141.3,0,0,0,0,1,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,2 +1,1,1,9500,0,1,106.0,1,37,38,191,163,102.2,1,0,0,1,0,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,2 +1,16,2,9085,0,1,136.0,1,37,37,9,9,123.4,1,0,1,1,1,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,125.0,1,38,38,9,9,125.4,0,0,0,0,1,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,0 +4,39,1,9773,0,12,120.0,1,37,37,4,9,130.0,0,0,1,0,0,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,0 +1,44,1,9853,0,39,150.0,1,3,37,2,7,150.0,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,145.0,1,1,19,9,9,129.3,0,0,0,1,1,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,1 +1,44,1,9119,0,39,180.0,1,1,1,9,8,180.0,0,0,1,1,0,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,2 +1,1,4,9085,0,1,135.0,1,38,37,9,9,132.6,1,0,1,1,1,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,1 +1,44,1,9130,0,39,130.0,1,3,1,3,6,130.0,1,0,0,1,0,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,182.0,1,19,1,5,7,156.8,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,142.0,1,19,38,7,10,128.4,1,0,1,1,1,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,19,133.1,1,37,37,9,4,103.5,0,0,1,1,0,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,116.0,1,1,1,3,3,119.2,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +1,44,1,9991,1,39,140.0,1,37,19,9,8,140.0,0,0,1,1,1,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,2 +1,1,6,9500,0,1,133.0,1,38,38,9,9,128.8,1,0,1,1,1,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,1 +1,17,1,9853,0,1,119.0,1,3,3,132,132,110.6,0,0,1,1,1,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,2 +1,42,1,9773,0,1,133.1,1,19,6,4,3,120.0,0,0,1,1,0,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9147,0,1,160.0,1,37,37,9,7,110.0,0,0,1,1,0,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,100.0,1,19,37,5,5,120.7,0,0,1,1,1,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,2 +1,1,2,9500,0,1,136.0,1,19,19,9,9,140.0,1,0,1,1,1,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,135.0,1,3,3,2,2,132.9,1,0,1,0,1,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,0 +1,53,1,9003,0,42,130.0,1,1,38,9,6,128.5,0,0,1,1,0,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,1 +1,7,1,9991,1,3,140.0,1,37,37,9,9,140.0,0,0,1,1,0,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,124.0,1,19,37,5,7,119.1,0,0,1,1,0,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,1 +1,39,1,9556,0,1,140.0,1,37,38,9,9,106.0,1,0,0,0,1,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,0 +1,42,4,9500,0,6,133.0,1,1,19,2,9,127.8,1,0,1,1,1,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,1 +1,1,2,9085,0,1,130.0,1,19,19,90,90,122.0,0,0,1,1,1,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,125.0,1,37,19,9,9,122.4,1,0,1,1,0,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,1 +2,39,1,9003,0,3,110.0,1,3,19,4,6,150.0,0,0,1,1,0,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,1 +1,17,1,9670,0,1,123.0,1,19,19,1,1,114.6,0,0,1,1,1,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,131.0,1,38,38,9,9,126.5,0,0,1,1,1,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,133.1,1,38,19,132,103,146.0,0,0,0,1,1,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,1 +1,17,3,9238,0,1,141.0,1,3,3,2,2,124.9,1,0,1,1,1,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,1,136.0,1,3,4,2,2,133.9,0,0,1,0,0,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,2,1,4,6,140.0,0,0,1,1,0,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,111.0,1,19,19,9,9,114.2,1,0,1,1,1,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,1 +1,43,1,9085,0,1,130.0,1,19,38,7,7,120.2,1,0,1,1,1,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,1 +1,7,1,9670,0,3,110.0,1,27,37,3,3,110.0,1,0,1,1,0,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,142.0,1,38,19,7,10,128.4,0,0,1,1,1,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,0 +1,1,3,9773,0,1,158.0,1,1,38,4,7,157.0,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,127.0,1,1,33,3,3,129.8,0,0,1,0,0,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9773,0,1,140.0,1,34,37,0,0,102.5,0,0,1,1,1,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,130.0,1,1,38,5,7,122.0,1,0,1,1,0,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,145.0,1,19,1,6,5,127.9,1,0,1,1,1,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,17,2,9254,0,1,132.0,1,38,38,9,8,122.6,1,0,1,1,1,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,132.0,1,37,37,9,7,129.9,1,0,1,1,1,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,2 +1,1,1,9500,0,1,121.0,1,1,1,4,4,114.9,0,0,1,1,0,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,1 +1,7,1,8014,1,3,140.0,1,1,1,4,4,140.0,0,0,1,1,1,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,137.0,1,1,19,4,4,125.3,0,0,1,1,0,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,2 +1,18,1,9670,0,1,133.0,1,1,1,9,9,121.5,1,0,1,1,1,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,42,1,9500,0,1,100.0,1,3,37,2,6,130.0,1,0,1,1,1,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,1 +1,39,1,9991,1,1,150.0,1,19,38,9,8,140.9,0,1,1,1,1,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,0 +1,39,1,9085,0,1,133.1,1,37,37,9,9,120.0,0,0,1,0,1,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,8014,1,1,128.0,1,38,38,0,0,122.1,0,0,1,1,1,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,1 +1,17,1,9119,0,1,130.0,1,1,3,4,2,123.0,0,0,1,1,0,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,121.0,1,19,38,7,9,123.8,0,0,1,1,1,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,2 +1,17,1,9070,0,1,122.0,1,1,1,4,8,123.8,1,0,0,0,1,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,12,133.1,1,37,37,9,9,133.8,1,0,1,1,0,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,3,3,2,2,149.0,0,0,1,0,0,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,140.0,1,1,38,1,9,140.0,0,0,1,1,0,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,0 +1,1,5,9773,0,1,135.0,1,37,1,5,5,124.9,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,17,1,9119,0,1,132.0,1,37,37,9,6,119.4,1,0,1,1,0,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,7,1,9670,0,3,110.0,1,37,37,7,7,110.0,0,0,1,1,1,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,1 +1,17,5,9119,0,1,118.0,1,1,19,9,9,120.5,1,0,1,1,0,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,1 +2,39,1,9003,0,19,133.1,1,37,19,9,4,140.0,0,0,0,1,1,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +1,17,4,9670,0,1,126.0,1,1,1,4,7,115.2,0,0,1,0,1,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,0 +1,1,1,9254,0,1,158.0,1,19,39,4,8,153.5,1,0,1,1,1,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,1 +1,1,3,9254,0,1,129.0,1,37,38,7,7,122.0,1,0,1,1,1,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,12,133.1,1,37,1,9,4,138.4,0,0,1,1,0,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,0 +1,7,1,9238,0,3,130.0,1,1,1,4,10,125.1,0,0,0,0,1,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9085,0,1,110.0,1,40,1,5,6,142.5,0,0,0,0,0,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,0 +1,16,1,9070,0,1,125.0,1,1,1,4,4,120.8,1,0,1,1,1,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,128.0,1,19,1,5,4,135.7,1,0,1,1,1,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,142.0,1,19,19,9,9,139.9,0,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,1 +1,17,1,171,0,1,123.0,1,3,12,2,9,116.4,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9238,0,1,125.0,1,19,1,9,10,123.6,1,0,1,1,1,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,12,133.1,1,12,12,9,9,120.0,0,0,1,1,0,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,0 +1,17,5,9500,0,1,144.0,1,19,38,9,5,130.7,1,0,1,1,1,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,1 +1,17,6,9500,0,1,136.0,1,19,38,9,3,132.5,1,0,1,1,1,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,1 +2,43,1,9991,1,1,140.0,1,38,37,5,6,117.3,0,0,1,1,1,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,2 +2,43,1,9500,0,1,140.0,1,37,37,9,10,105.7,1,0,1,1,1,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,19,133.1,1,1,5,4,3,100.0,0,0,1,1,1,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,1 +1,17,3,9238,0,1,143.0,1,37,38,0,7,126.9,1,0,1,1,1,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,138.0,1,37,1,9,9,123.7,1,0,0,1,1,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,1,150.0,1,34,34,0,0,112.5,0,0,1,1,1,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,141.0,1,3,2,2,3,130.2,1,0,1,1,1,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,1 +1,1,1,9070,0,1,139.0,1,1,19,3,9,134.9,1,0,1,1,0,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,133.1,1,1,1,3,3,102.0,1,0,1,1,1,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,153.0,1,38,37,7,8,147.9,0,0,1,1,1,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,1 +1,17,3,9085,0,1,121.0,1,38,1,9,9,111.9,1,0,1,1,0,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,1 +1,43,1,9238,0,1,149.0,1,37,37,9,6,130.5,1,0,1,1,1,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,1 +1,17,5,9773,0,1,139.0,1,38,1,4,4,123.6,1,0,1,1,0,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9119,0,1,120.0,1,3,1,123,152,116.9,0,0,1,1,0,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9238,0,1,130.0,1,1,19,4,5,124.8,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,1 +1,53,1,9085,0,42,150.0,1,1,19,4,8,145.2,1,0,1,1,1,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,1 +4,39,1,9130,0,1,140.0,1,37,37,6,7,150.0,1,0,1,1,0,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,1,4,171,0,1,133.1,1,1,1,9,10,110.0,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +1,1,1,171,0,1,124.0,1,19,1,9,9,121.2,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,44,1,9119,0,39,130.0,1,38,19,9,5,130.0,1,0,1,1,0,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,2 +4,7,1,9500,0,3,140.0,1,37,38,9,7,140.0,0,0,1,1,0,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,117.0,1,1,37,5,9,118.4,0,0,1,1,0,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,1 +1,51,1,33,0,1,130.0,1,19,19,9,9,117.7,0,0,1,1,1,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,0 +4,7,1,9500,0,40,130.0,1,19,19,4,6,130.0,0,0,1,0,1,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,144.0,13,3,3,6,6,137.6,1,0,1,1,1,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,1 +1,17,1,9670,0,1,132.0,1,38,37,9,9,122.9,0,0,1,0,0,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,0 +1,1,2,9773,0,1,124.0,1,3,3,3,4,114.6,1,0,1,1,1,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,100.0,1,38,38,9,10,100.0,0,0,1,1,1,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,1 +1,18,2,9853,0,1,120.0,1,19,37,9,4,113.7,1,0,0,0,1,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,0 +1,43,1,9500,0,1,136.0,1,3,3,2,2,100.0,0,0,1,1,1,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,1 +1,39,1,9130,0,1,133.1,1,3,34,3,0,120.0,0,0,0,0,0,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,140.0,1,1,19,3,3,140.0,1,0,1,1,1,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,1 +1,17,1,9085,0,1,128.0,1,38,37,9,9,116.5,1,0,1,1,0,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,1 +1,1,1,9130,0,1,132.0,1,6,6,0,4,119.1,1,0,0,1,1,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,0 +1,43,1,9500,0,6,134.0,1,1,37,9,9,120.4,1,0,1,1,1,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,100.0,1,34,34,0,0,100.0,0,0,1,1,1,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,1 +1,1,2,9085,0,1,122.0,1,3,1,4,7,116.1,1,0,1,1,1,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,1,120.0,1,37,37,9,9,117.0,1,0,1,1,1,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,1 +1,1,5,9254,0,1,126.0,1,19,19,4,7,116.6,1,0,1,1,1,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,1 +1,43,1,9991,1,4,160.0,1,3,3,2,1,125.0,0,0,1,1,0,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,1 +1,1,1,9670,0,1,130.0,1,37,37,0,0,117.8,1,0,1,1,1,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,1 +1,1,1,171,0,1,169.0,1,19,37,9,7,176.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,1,1,9500,0,1,137.0,1,3,38,2,4,121.0,0,0,1,1,1,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,132.0,1,19,1,9,5,123.4,0,0,1,1,1,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,1 +1,17,2,9238,0,3,105.0,1,37,37,7,8,129.7,1,0,1,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,6,9254,0,1,119.0,1,19,19,9,9,118.7,1,0,1,1,0,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,0 +2,39,1,8014,1,1,120.0,1,37,37,9,6,117.0,0,0,1,1,0,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,1,3,9,6,130.0,0,0,1,1,0,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,143.0,1,19,37,9,9,126.2,1,0,1,1,1,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,1 +1,39,1,9991,1,39,150.0,1,19,19,9,9,150.3,0,0,1,1,0,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9130,0,1,143.0,1,3,3,2,2,131.8,1,0,0,0,1,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,2 +1,44,1,9238,0,39,140.0,1,19,19,8,8,144.3,1,0,1,1,1,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,131.0,1,19,19,4,4,122.0,1,0,1,1,1,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,2 +1,17,2,9500,0,1,127.0,1,3,3,1,10,118.8,1,0,1,1,0,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,146.0,1,37,38,9,7,128.5,0,0,0,1,1,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,0 +1,7,1,9003,0,3,140.0,1,39,39,9,4,140.0,0,0,1,1,0,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,123.0,1,38,19,4,90,127.2,0,0,0,0,0,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,0 +1,15,1,9670,0,1,133.1,41,1,1,9,5,128.2,0,0,0,0,0,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,126.0,1,1,1,9,9,127.4,1,0,1,1,1,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,150.0,1,37,37,9,9,150.0,0,0,1,1,1,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,130.0,1,38,19,9,6,120.0,1,0,1,1,0,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,2 +1,17,1,9238,0,1,103.0,1,19,37,7,9,104.1,0,0,1,1,1,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9500,0,1,145.0,1,3,19,1,5,130.0,1,0,1,1,1,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,123.0,1,1,38,9,9,116.7,0,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,9991,1,1,110.0,1,37,37,5,1,120.0,1,0,1,1,1,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,141.0,1,19,1,90,90,128.0,0,0,1,1,0,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,0 +1,1,1,171,0,1,124.0,1,3,3,2,2,119.1,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,5,4,9853,0,1,116.0,1,3,38,3,8,110.4,1,0,1,1,1,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,2 +1,17,1,9070,0,1,119.0,1,38,19,9,9,115.2,0,0,1,1,0,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,0 +1,17,2,9254,0,1,123.0,1,37,37,7,7,113.9,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +2,43,1,9147,0,2,120.0,1,37,37,9,9,122.8,0,0,0,0,1,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,6,122.0,1,19,19,9,9,126.2,1,0,1,1,1,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,122.0,1,1,1,2,5,113.3,1,0,1,1,1,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,2 +1,1,1,9085,0,1,142.0,1,1,1,9,9,127.7,1,0,1,1,0,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,1 +1,43,1,9070,0,1,116.0,1,1,1,3,3,120.9,0,0,1,1,0,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9500,0,1,128.0,1,1,19,4,7,125.6,1,0,1,1,0,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,1 +1,7,1,9991,1,40,130.0,1,1,3,4,2,130.0,0,0,1,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,39,120.0,1,1,19,9,7,120.0,0,0,1,1,0,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,137.0,1,38,37,9,9,122.3,0,0,1,1,0,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,4,9773,0,1,122.0,1,41,1,4,3,119.6,1,0,1,1,1,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,157.0,1,38,37,9,5,137.8,0,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9130,0,1,132.0,1,19,38,9,9,130.4,1,0,1,1,0,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,1 +4,43,1,8014,1,12,133.1,1,34,34,0,0,106.0,1,0,1,1,1,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,2 +1,17,2,9130,0,1,127.0,1,3,1,2,1,116.5,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,8014,1,1,125.0,1,37,37,5,6,122.2,1,0,0,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9556,0,1,128.0,1,38,38,7,8,123.5,1,0,1,1,1,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,2 +1,43,1,9130,0,1,156.0,1,19,1,9,4,156.0,0,0,0,0,0,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,0 +1,7,1,9130,0,3,140.0,1,19,38,9,9,140.0,1,0,1,1,1,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,8014,1,1,123.0,1,34,37,9,90,121.3,1,0,1,1,1,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,39,1,9085,0,19,133.1,1,19,37,7,90,104.0,0,0,1,1,1,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,18,4,9254,0,1,106.0,1,19,37,7,7,106.0,1,0,1,1,0,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,0 +1,17,1,9003,0,1,119.0,1,37,37,4,6,113.2,0,0,0,1,1,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,133.1,1,19,19,9,9,100.0,0,0,1,1,1,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,145.0,1,3,1,4,3,149.9,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,166.0,1,19,37,4,8,146.4,0,0,1,1,0,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,2 +1,1,1,9853,0,1,145.0,1,38,37,5,5,142.2,0,0,1,1,1,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,2 +1,39,1,8014,1,19,133.1,1,37,37,9,9,100.0,0,0,1,1,1,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,156.0,1,19,38,9,1,153.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,1,9853,0,1,117.0,1,19,38,4,0,113.5,1,0,1,1,1,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,138.0,1,37,19,9,9,127.8,1,0,1,1,1,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,1 +1,39,1,9500,0,40,130.0,1,1,1,4,4,190.0,1,0,1,1,1,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,1 +1,17,5,9070,0,1,131.0,1,37,37,9,9,126.1,1,0,1,0,1,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,133.1,1,19,37,9,9,95.0,1,0,0,0,1,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,2 +1,1,1,9773,0,1,143.0,1,1,38,8,8,136.7,1,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,0 +1,42,1,8014,1,1,120.0,1,37,38,90,7,120.0,1,0,1,1,1,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,0 +1,1,1,9254,0,1,121.0,1,19,19,5,8,117.5,1,0,1,1,1,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,1 +1,39,1,9254,0,1,160.0,1,3,1,6,6,116.3,1,0,1,1,1,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,134.0,1,1,38,4,5,122.8,0,0,1,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,7,1,8014,1,3,120.0,1,19,37,5,3,121.3,0,0,1,1,1,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,134.0,1,38,19,9,4,128.4,1,0,1,1,1,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,130.0,1,19,1,7,4,117.8,1,0,1,1,0,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,2 +1,1,1,9130,0,1,132.0,1,1,1,3,3,143.9,1,0,1,1,0,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,130.0,1,19,1,9,4,101.3,1,0,1,1,0,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,135.0,1,37,19,5,10,121.0,0,0,0,1,1,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,2 +1,44,1,9991,1,39,120.0,1,37,37,7,7,120.0,1,0,1,1,1,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,43,1,8014,1,1,133.1,1,3,3,2,3,135.0,0,0,1,1,1,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,110.0,1,19,19,9,7,105.8,1,0,1,1,0,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,160.0,1,1,38,4,10,144.3,1,0,1,1,1,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,1 +4,39,1,9254,0,1,120.0,1,37,37,9,8,95.0,0,0,1,1,1,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,137.0,1,19,19,7,7,120.8,1,0,1,1,1,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,1 +1,1,5,9500,0,1,144.0,1,19,38,4,8,141.3,1,0,1,1,1,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,148.0,1,19,1,3,9,140.0,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,128.0,1,38,38,7,7,131.5,0,0,1,1,1,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,128.0,1,38,19,191,175,118.6,1,0,1,1,1,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,2 +1,17,3,9147,0,1,122.0,1,3,38,123,171,116.1,1,0,0,1,0,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,2 +1,1,1,9773,0,1,128.0,1,38,38,6,3,116.5,0,0,1,1,0,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,97.0,1,1,19,2,7,98.1,1,0,1,1,1,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,1 +1,53,1,9991,1,1,140.0,1,38,38,191,193,135.0,0,0,0,1,1,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,2 +1,1,2,9773,0,1,122.0,1,37,37,9,9,130.8,1,0,1,1,1,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,1 +2,39,1,9147,0,1,130.0,1,37,37,9,9,117.9,0,0,1,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,43,1,9991,1,1,100.0,1,37,19,9,4,130.0,0,0,1,1,0,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,0 +1,17,6,9670,0,1,125.0,1,38,1,9,7,125.0,1,0,1,1,0,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,1 +2,7,1,9070,0,43,140.0,1,37,1,9,7,140.0,0,0,1,1,1,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,1 +1,7,1,9254,0,3,110.0,1,19,19,3,3,110.0,0,0,1,1,0,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,17,2,9500,0,1,135.0,1,19,1,5,4,127.3,1,0,1,1,1,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,1 +1,17,4,9238,0,1,129.0,1,19,19,4,7,123.1,1,0,1,1,1,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,53,1,9085,0,42,140.0,1,19,38,8,9,144.9,1,0,0,0,1,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,9500,0,1,136.0,1,1,1,4,4,123.8,0,0,1,1,1,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,1 +4,43,1,9991,1,1,140.0,1,37,37,5,5,149.8,0,0,1,1,0,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,150.0,1,38,19,9,9,137.8,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +5,39,1,9147,0,1,180.0,1,1,1,4,8,140.5,0,0,0,0,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,131.0,1,19,19,3,7,127.9,1,0,1,1,1,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,1 +1,17,1,9147,0,1,110.0,1,1,1,4,4,99.0,0,0,1,1,0,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,2 +1,39,1,9070,0,1,139.3,1,38,38,5,5,117.5,0,0,1,1,0,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9130,0,1,147.0,1,4,1,2,10,141.8,1,0,1,1,1,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,1 +2,44,1,8014,1,39,150.0,1,1,1,5,5,154.0,0,0,1,1,0,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,1 +1,17,1,9254,0,1,133.1,1,1,1,4,5,131.0,1,0,1,1,1,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,132.0,1,1,38,9,7,127.1,1,0,1,1,1,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,17,4,9147,0,1,125.0,1,19,19,5,5,118.0,1,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,108.0,1,19,1,9,3,107.8,1,0,1,1,1,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,143.0,1,37,37,9,8,130.6,1,0,1,1,1,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,126.0,1,37,1,7,7,118.7,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9238,0,1,140.0,1,1,44,4,2,124.6,1,0,0,0,0,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,112.0,1,9,22,4,3,106.1,0,0,1,1,1,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,1,130.0,1,37,37,191,183,163.7,0,0,1,1,1,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,2 +4,39,1,9500,0,19,133.1,1,37,37,6,6,117.8,0,0,0,0,1,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,0 +1,18,2,9853,0,1,120.0,1,1,1,9,0,115.8,0,0,1,1,1,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,2 +1,17,1,9070,0,1,118.0,1,38,19,9,3,111.0,1,0,1,1,1,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,16,1,171,0,1,150.0,1,37,37,9,9,134.6,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9130,0,1,133.1,6,37,37,9,6,100.0,0,0,1,1,1,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9147,0,1,137.0,1,1,37,5,9,131.4,1,0,1,1,0,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,0 +2,44,1,9991,1,39,130.0,1,1,37,4,9,130.0,0,0,1,0,1,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,0 +1,1,2,9238,0,1,136.0,1,19,19,4,7,121.7,1,0,1,1,1,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,133.1,1,1,38,9,7,110.5,0,0,1,1,1,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,1 +1,39,1,9556,0,19,100.0,1,37,38,9,9,120.0,0,0,1,1,1,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,3,9070,0,1,142.0,1,1,38,3,5,146.9,1,0,1,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,127.0,1,19,19,7,8,120.3,1,0,1,1,1,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,130.0,1,1,38,7,8,135.6,1,0,1,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,137.0,1,19,38,9,3,125.0,1,0,1,1,1,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,1 +1,1,5,9500,0,1,135.0,1,37,37,7,7,124.0,1,0,1,1,1,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,2 +2,39,1,9556,0,1,100.0,6,38,38,9,9,130.0,0,0,1,1,1,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,1 +1,42,1,9003,0,39,120.0,1,3,1,2,6,128.2,1,0,1,1,0,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,2 +1,1,3,9773,0,1,121.0,1,19,19,3,3,116.1,0,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,136.0,1,1,19,4,9,131.1,1,0,1,1,1,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,2 +1,1,3,9500,0,1,141.0,1,3,19,2,10,126.8,1,0,1,1,0,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,1 +1,1,6,9773,0,1,136.0,1,38,38,9,9,132.9,1,0,1,1,0,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,1 +1,39,1,9130,0,1,133.1,1,1,1,90,1,120.0,1,0,0,0,0,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,0 +1,17,1,8014,1,1,132.0,1,37,19,5,5,121.2,0,0,1,1,1,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,1 +1,43,2,9500,0,6,119.1,1,1,19,4,10,119.1,0,0,1,1,0,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,153.0,1,1,19,9,4,139.7,1,0,1,1,1,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,1 +1,1,1,9119,0,1,150.0,1,1,1,3,3,143.4,0,0,1,0,0,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,2 +1,1,4,9500,0,1,130.0,1,19,19,9,7,119.9,1,0,1,1,1,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,1,38,9,6,140.0,0,0,1,1,0,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,2 +1,18,1,9500,0,1,115.0,1,38,37,5,5,115.0,0,0,1,1,1,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,150.0,1,19,37,5,4,142.7,1,0,1,1,1,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,133.1,1,34,5,0,1,118.5,1,0,1,1,1,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9130,0,1,125.0,1,3,3,2,2,132.4,0,0,1,1,0,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,1 +1,17,3,9070,0,1,116.0,1,37,37,9,9,110.8,0,0,1,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,2 +1,43,1,9070,0,1,115.0,1,12,12,1,10,115.0,0,0,0,1,0,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,0 +1,1,1,9500,0,1,125.0,1,37,37,9,9,118.8,0,0,1,1,0,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,130.0,1,3,1,2,5,133.8,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9500,0,1,141.0,1,12,1,5,5,133.0,1,0,1,1,1,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,141.0,1,38,38,7,10,139.8,1,0,1,1,1,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,1 +1,51,1,9147,0,19,133.1,1,19,19,9,5,112.1,0,0,0,0,0,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,132.0,1,19,2,9,3,126.0,1,0,1,1,1,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,131.0,1,2,38,4,5,132.3,1,0,1,1,1,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,124.0,1,1,19,9,8,116.7,1,0,1,1,1,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,0 +1,1,1,9556,0,1,180.0,103,5,3,1,1,183.5,1,0,1,1,1,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,0 +1,10,1,9773,0,1,151.0,22,38,37,0,5,151.0,1,0,1,1,1,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,135.0,1,19,19,9,10,133.4,1,0,1,1,1,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,135.0,1,3,3,2,2,137.1,1,0,1,1,1,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,133.1,1,38,38,5,10,101.0,0,0,1,1,0,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,1 +1,39,1,9085,0,40,130.0,1,3,2,3,2,160.0,1,0,1,1,1,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,18,1,9773,0,1,124.0,1,38,37,9,8,126.8,0,0,1,1,0,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,140.0,1,19,37,9,9,125.5,1,0,1,1,1,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,1 +2,39,1,9500,0,1,133.1,1,37,38,9,8,118.9,0,0,1,1,1,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9991,1,1,160.0,1,34,34,0,0,161.8,1,0,0,1,0,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,140.0,1,1,38,4,7,100.0,0,0,1,1,1,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,1 +1,44,1,9070,0,39,120.0,1,2,19,3,8,120.0,0,0,1,1,0,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,124.0,1,38,19,3,10,128.6,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,2 +1,44,1,9085,0,39,140.0,1,1,19,4,4,140.0,0,0,1,1,1,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,145.0,1,1,19,4,3,133.5,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,1 +4,39,1,9085,0,1,110.0,1,37,37,90,90,110.0,0,0,1,0,1,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,134.0,1,19,37,4,7,133.5,1,0,1,1,1,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,1 +1,1,2,9147,0,1,132.0,1,1,19,4,3,126.4,1,0,1,1,1,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,1 +1,39,1,9003,0,19,133.1,1,4,1,2,4,120.0,0,0,1,1,0,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,151.0,1,40,4,2,2,144.5,1,0,1,1,1,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +2,39,1,9147,0,19,133.1,1,37,19,9,3,128.0,0,0,1,1,0,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,0 +1,39,2,8014,1,1,141.0,1,37,37,9,9,150.5,0,0,1,1,1,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,122.0,1,19,19,4,6,119.9,0,0,1,1,1,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,1 +1,39,1,9254,0,9,133.1,1,34,34,0,0,110.0,1,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,18,1,9500,0,1,128.0,1,19,1,9,4,125.8,0,0,1,1,1,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,2 +1,1,3,9773,0,1,133.1,1,38,38,5,5,131.3,1,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +1,16,6,9147,0,1,128.0,1,37,37,9,9,116.5,1,0,1,1,1,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,1 +2,39,1,9991,1,1,147.0,1,34,34,90,90,111.7,1,0,1,1,1,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,8014,1,1,120.0,1,1,19,6,8,122.0,0,0,1,1,1,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,1 +2,39,2,9254,0,19,133.1,1,19,19,9,5,123.5,0,0,1,1,0,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,114.0,1,37,37,9,9,130.0,0,0,1,1,0,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,1 +2,39,1,8014,1,1,100.0,1,37,38,9,9,141.5,0,0,1,1,1,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,1 +1,17,6,9556,0,1,118.0,1,38,38,5,5,117.8,1,0,1,1,1,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,1 +1,39,1,9773,0,19,133.1,1,19,19,171,163,104.0,0,0,0,0,1,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,1 +1,39,1,8014,1,39,110.0,1,19,37,9,8,127.5,0,0,0,0,1,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,0 +1,39,1,9119,0,1,120.0,1,37,38,9,8,100.0,0,0,0,1,0,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,5,9147,0,1,133.0,1,19,3,9,9,123.2,1,0,1,1,0,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,133.1,1,34,34,0,0,142.8,0,0,1,1,0,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9119,0,1,120.0,1,34,34,0,0,140.0,1,0,1,1,0,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,120.0,1,3,37,4,7,115.1,1,0,1,1,1,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,1 +1,51,1,9119,0,1,140.0,1,1,19,4,4,150.0,0,0,1,1,0,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,0 +1,43,1,9556,0,1,149.0,1,1,1,4,8,140.2,1,1,1,1,1,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,160.0,1,37,19,9,10,160.0,1,0,1,1,1,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,9238,0,1,115.0,1,19,38,7,8,116.4,1,0,1,1,1,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,1 +1,44,1,9130,0,39,140.0,1,4,4,2,10,140.0,1,0,1,1,0,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,19,133.1,1,1,1,4,4,130.0,0,0,1,1,0,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,17,5,9773,0,1,146.0,1,1,37,5,5,146.7,1,0,1,1,0,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,142.0,1,1,38,9,9,127.0,0,0,0,0,0,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,0 +4,39,1,8014,1,1,130.0,1,37,37,9,7,138.0,0,0,1,1,1,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,1 +1,39,1,9773,0,9,133.1,1,38,1,5,4,102.0,1,0,1,1,0,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,125.0,1,19,19,7,5,118.0,1,0,1,1,1,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,145.0,1,19,38,4,10,131.7,1,0,1,1,1,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,133.1,1,37,19,9,9,114.0,0,0,1,1,1,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,140.0,1,38,37,4,10,140.0,0,0,0,0,1,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,0 +1,1,1,9773,0,1,128.0,1,1,19,4,4,124.5,0,0,1,1,0,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,126.0,1,37,19,9,8,116.9,1,0,1,1,1,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,2 +1,17,1,9773,0,1,177.0,1,2,1,123,135,155.7,0,0,0,1,1,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,135.0,1,37,1,5,5,126.8,1,0,1,1,1,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,125.0,1,4,3,1,1,119.8,0,0,1,1,1,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,1 +1,53,1,9147,0,42,130.0,1,1,19,143,172,133.8,1,0,1,1,1,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,1 +1,17,3,9670,0,1,123.0,1,38,38,7,8,118.8,1,1,1,1,1,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,112.0,1,38,19,9,5,113.8,1,0,1,1,1,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,124.0,1,34,34,0,0,129.3,0,0,1,1,1,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,9773,0,12,120.0,1,1,1,9,9,129.8,1,0,1,1,0,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,111.0,1,19,19,9,9,110.0,1,0,1,1,1,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,163.0,1,37,37,5,6,155.0,0,0,1,1,1,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,145.0,1,19,1,9,5,145.0,0,0,1,1,1,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,160.0,1,38,37,9,7,155.5,1,0,1,1,1,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,137.0,1,1,3,7,3,131.1,1,0,0,1,1,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,1 +2,39,1,8014,1,1,133.1,1,38,38,9,9,113.5,0,0,1,1,1,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,130.0,1,1,1,9,9,131.8,0,0,1,1,0,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,137.0,1,38,37,7,7,126.0,1,0,1,1,1,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,1 +1,42,1,9003,0,1,160.0,1,19,1,9,5,107.8,1,0,1,0,0,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9070,0,39,120.0,1,3,38,3,9,120.0,0,0,1,1,0,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,1 +1,17,1,9670,0,1,145.0,1,3,3,2,1,129.3,1,0,1,1,1,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,117.0,1,38,19,5,7,118.1,0,0,1,1,0,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,1 +1,44,1,9085,0,1,130.0,1,1,1,4,3,130.0,1,0,1,1,1,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,2 +2,43,1,9238,0,12,100.0,1,37,37,9,9,134.4,0,0,1,1,1,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,1 +2,43,1,8014,1,14,133.1,1,34,34,0,0,100.0,0,0,1,0,1,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,0 +1,17,4,9254,0,1,122.0,1,1,1,4,2,116.1,1,0,1,1,0,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,2 +1,1,4,9254,0,1,110.0,1,37,37,9,7,113.2,1,0,1,1,1,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,17,1,9254,0,1,131.0,1,38,37,4,9,131.7,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,150.0,1,1,19,4,10,150.0,0,0,1,1,0,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,1 +1,17,1,9119,0,1,142.0,1,19,38,9,7,127.3,0,0,1,1,0,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,2 +1,7,1,9556,0,43,160.0,1,38,19,9,9,160.0,0,0,1,1,0,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +1,1,1,9853,0,1,130.0,1,19,12,9,4,133.2,1,0,1,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,1 +1,43,1,9119,0,1,130.0,1,37,38,9,9,120.0,0,0,0,0,1,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,42,1,3,7,110.5,0,0,1,1,0,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +2,39,1,9003,0,1,130.0,1,1,19,4,9,152.4,1,0,1,1,1,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,1 +1,16,1,171,0,1,155.0,1,1,3,5,10,167.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,3,9254,0,1,114.0,26,38,3,9,3,127.3,1,0,0,0,1,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,124.0,1,37,37,9,9,125.4,1,0,1,1,0,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,5,9773,0,1,127.0,1,38,1,4,5,121.1,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,2 +1,17,2,171,0,1,130.0,41,1,1,2,3,148.6,1,0,1,1,0,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9130,0,1,120.0,1,1,19,9,9,120.0,1,0,1,1,1,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,133.0,1,1,37,4,10,143.2,0,0,1,1,1,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +1,1,2,9254,0,1,136.0,1,38,38,9,7,125.2,1,0,1,1,1,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,1 +1,17,1,9254,0,1,102.0,1,37,37,7,7,102.0,0,0,1,1,1,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,140.0,1,19,38,5,7,128.5,1,0,1,1,1,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,1 +1,1,4,9500,0,1,140.0,1,38,38,7,7,133.2,1,0,1,1,1,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,123.0,1,1,1,3,3,120.9,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,18,2,9500,0,1,135.0,1,19,1,5,5,128.9,1,0,1,1,1,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,144.0,1,3,1,1,3,137.7,0,0,1,0,1,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,0 +1,17,1,171,0,1,158.0,1,3,3,3,3,151.4,1,0,1,0,1,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,1 +1,39,1,9670,0,12,133.1,1,37,1,9,3,120.0,0,0,0,0,0,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,51,1,9773,0,1,135.0,1,1,42,5,3,110.0,1,0,1,1,0,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,143.0,1,3,38,2,9,144.1,1,0,1,1,1,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,2 +1,1,3,9070,0,1,132.0,1,1,3,9,7,126.1,1,0,1,1,1,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,1 +1,1,6,9500,0,1,141.0,1,19,1,9,10,126.8,1,0,1,1,1,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,1 +1,44,1,9238,0,39,130.0,1,38,38,6,9,126.3,1,0,1,1,1,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,1,140.0,1,1,1,4,5,140.0,0,0,1,1,0,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,2 +1,39,2,9147,0,1,130.0,1,19,19,5,9,121.5,0,0,1,0,0,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +2,51,1,8014,1,19,133.1,1,37,37,9,9,104.0,0,0,0,1,1,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,120.0,1,3,4,2,2,120.0,0,0,1,1,0,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,1 +1,1,4,171,0,1,131.0,1,19,19,4,4,119.8,1,1,1,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +1,18,3,9070,0,1,134.0,1,1,1,3,4,121.4,0,0,1,1,1,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,1,140.0,1,37,37,9,9,118.2,0,0,1,1,0,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,1 +1,1,1,9147,0,1,130.0,1,19,37,9,9,131.8,1,0,1,1,1,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,134.0,1,38,19,3,10,121.2,0,0,1,1,1,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,1 +1,43,2,9500,0,1,120.0,1,41,3,2,2,112.7,0,0,1,1,1,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,134.0,1,1,19,4,9,129.8,0,0,1,1,1,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,1 +1,17,1,9085,0,1,133.0,1,19,1,4,5,127.1,1,0,1,1,1,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,1 +1,17,1,9500,0,1,148.0,1,38,37,5,9,137.8,1,0,1,1,1,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,129.0,1,37,37,9,7,117.8,0,0,1,1,1,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,2 +4,39,1,8014,1,3,100.0,1,37,37,9,9,130.0,0,0,1,1,1,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,145.0,1,1,40,9,2,129.6,0,0,1,1,1,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,17,4,9254,0,1,124.0,1,1,1,4,4,122.3,1,0,1,1,1,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,0 +2,43,2,9147,0,1,133.1,1,37,37,9,9,109.0,1,0,1,1,1,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,1 +1,51,1,9556,0,1,131.0,1,1,37,152,193,126.6,1,0,1,1,0,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,2 +1,44,1,9085,0,39,110.0,1,3,5,2,2,110.0,0,0,1,1,0,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,15,1,9147,0,1,140.0,26,37,2,6,4,140.0,0,0,0,1,0,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,1 +2,51,1,9853,0,1,130.0,1,37,37,7,8,120.3,0,0,1,1,1,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,8014,1,19,133.1,1,37,37,6,6,139.0,0,0,1,1,0,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,1 +1,1,3,9670,0,1,120.0,1,37,37,7,7,111.3,1,0,1,1,0,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,2 +1,7,1,9085,0,3,120.0,1,37,37,7,7,120.0,0,0,1,1,1,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,0 +1,17,3,9147,0,1,147.0,1,19,38,5,7,132.3,1,0,1,1,1,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,1 +1,1,3,9130,0,1,167.0,1,37,37,90,90,159.3,0,0,1,1,1,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,132.0,1,1,1,4,9,136.6,1,0,1,1,0,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,2 +1,5,2,9853,0,1,124.0,1,19,19,3,3,113.9,1,0,1,1,1,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,3,130.0,1,3,1,2,9,130.0,0,0,1,1,0,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9773,0,1,160.0,1,1,38,4,7,146.5,0,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,1 +1,1,1,9670,0,1,141.0,1,19,3,4,0,137.9,1,0,1,0,0,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,0 +1,39,1,8014,1,1,120.0,1,19,37,8,7,100.0,1,0,1,1,1,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,134.0,1,38,19,7,7,124.2,0,0,1,1,1,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,1 +1,44,1,9238,0,39,150.0,1,1,37,4,8,145.6,1,0,1,1,1,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,1,4,9147,0,1,146.0,1,3,1,3,10,138.7,0,0,1,1,0,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,7,1,9991,1,40,133.1,1,1,37,4,1,100.0,0,0,1,1,1,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,127.0,1,38,19,9,10,117.9,0,0,1,1,1,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,131.0,1,37,38,9,7,137.0,0,0,1,1,1,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,1 +1,7,1,9238,0,3,140.0,1,37,37,9,9,140.0,1,0,1,1,1,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,1 +2,39,1,9085,0,1,133.1,1,37,37,90,90,110.3,0,0,1,1,0,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,125.0,1,38,1,3,10,114.5,1,0,1,1,0,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,152.0,1,19,19,9,5,154.1,0,0,0,1,1,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,1 +1,7,1,9500,0,3,120.0,1,37,37,4,5,120.0,0,0,0,0,1,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,0 +2,39,1,8014,1,1,146.0,1,37,37,9,8,120.5,0,0,1,1,1,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,39,1,9119,0,12,133.1,1,34,34,0,0,95.1,0,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9238,0,1,128.0,1,19,37,9,8,116.5,0,0,1,1,1,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,1 +2,39,1,9991,1,1,140.0,1,37,37,9,9,120.0,0,0,1,0,1,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/_tabsyn_sample.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..3c3aed174f72ec9b097a36e255abd77a09223bc4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648" +dataname = "tabsyn_m5" +output_csv = "/work/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/tabsyn-m5-3539-20260421_034347.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 3539 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "sample", + "--method", "tabsyn", + "--gpu", "0", + "--save_path", output_csv], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print(f"[TabSyn] Saved -> {output_csv}") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/_tabsyn_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..9d31a3720f8251ee8c73183f1f11370eddb68b3f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/_tabsyn_train.py @@ -0,0 +1,62 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648" +dataname = "tabsyn_m5" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_cat_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..c0e1580e25a24bff94098894ce01895f0a6f09e6 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_cat_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_num_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..ed625a25bb51be5bff61c058b86ef97170c2a751 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/X_num_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/info.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/info.json new file mode 100644 index 0000000000000000000000000000000000000000..f79fe7c325a44b645596e15fc5a3d6c637d9fbbd --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/info.json @@ -0,0 +1,356 @@ +{ + "name": "tabsyn_m5", + "task_type": "multiclass", + "n_num_features": 28, + "n_cat_features": 8, + "train_size": 3981, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 19, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ], + "cat_col_idx": [ + 4, + 13, + 14, + 15, + 16, + 17, + 18, + 20 + ], + "target_col_idx": [ + 36 + ], + "column_names": [ + "Marital status", + "Application mode", + "Application order", + "Course", + "Daytime/evening attendance", + "Previous qualification", + "Previous qualification (grade)", + "Nacionality", + "Mother's qualification", + "Father's qualification", + "Mother's occupation", + "Father's occupation", + "Admission grade", + "Displaced", + "Educational special needs", + "Debtor", + "Tuition fees up to date", + "Gender", + "Scholarship holder", + "Age at enrollment", + "International", + "Curricular units 1st sem (credited)", + "Curricular units 1st sem (enrolled)", + "Curricular units 1st sem (evaluations)", + "Curricular units 1st sem (approved)", + "Curricular units 1st sem (grade)", + "Curricular units 1st sem (without evaluations)", + "Curricular units 2nd sem (credited)", + "Curricular units 2nd sem (enrolled)", + "Curricular units 2nd sem (evaluations)", + "Curricular units 2nd sem (approved)", + "Curricular units 2nd sem (grade)", + "Curricular units 2nd sem (without evaluations)", + "Unemployment rate", + "Inflation rate", + "GDP", + "Target" + ], + "train_num": 3981, + "test_num": 443, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_m5/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 28, + "5": 4, + "6": 5, + "7": 6, + "8": 7, + "9": 8, + "10": 9, + "11": 10, + "12": 11, + "13": 29, + "14": 30, + "15": 31, + "16": 32, + "17": 33, + "18": 34, + "19": 12, + "20": 35, + "21": 13, + "22": 14, + "23": 15, + "24": 16, + "25": 17, + "26": 18, + "27": 19, + "28": 20, + "29": 21, + "30": 22, + "31": 23, + "32": 24, + "33": 25, + "34": 26, + "35": 27, + "36": 36 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "28": 4, + "4": 5, + "5": 6, + "6": 7, + "7": 8, + "8": 9, + "9": 10, + "10": 11, + "11": 12, + "29": 13, + "30": 14, + "31": 15, + "32": 16, + "33": 17, + "34": 18, + "12": 19, + "35": 20, + "13": 21, + "14": 22, + "15": 23, + "16": 24, + "17": 25, + "18": 26, + "19": 27, + "20": 28, + "21": 29, + "22": 30, + "23": 31, + "24": 32, + "25": 33, + "26": 34, + "27": 35, + "36": 36 + }, + "idx_name_mapping": { + "0": "Marital status", + "1": "Application mode", + "2": "Application order", + "3": "Course", + "4": "Daytime/evening attendance", + "5": "Previous qualification", + "6": "Previous qualification (grade)", + "7": "Nacionality", + "8": "Mother's qualification", + "9": "Father's qualification", + "10": "Mother's occupation", + "11": "Father's occupation", + "12": "Admission grade", + "13": "Displaced", + "14": "Educational special needs", + "15": "Debtor", + "16": "Tuition fees up to date", + "17": "Gender", + "18": "Scholarship holder", + "19": "Age at enrollment", + "20": "International", + "21": "Curricular units 1st sem (credited)", + "22": "Curricular units 1st sem (enrolled)", + "23": "Curricular units 1st sem (evaluations)", + "24": "Curricular units 1st sem (approved)", + "25": "Curricular units 1st sem (grade)", + "26": "Curricular units 1st sem (without evaluations)", + "27": "Curricular units 2nd sem (credited)", + "28": "Curricular units 2nd sem (enrolled)", + "29": "Curricular units 2nd sem (evaluations)", + "30": "Curricular units 2nd sem (approved)", + "31": "Curricular units 2nd sem (grade)", + "32": "Curricular units 2nd sem (without evaluations)", + "33": "Unemployment rate", + "34": "Inflation rate", + "35": "GDP", + "36": "Target" + }, + "n_classes": 3, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "12": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "19": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "21": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "22": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "23": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "24": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "25": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "26": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "27": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "28": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "29": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "30": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "31": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "32": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "33": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "34": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "35": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "categorical" + }, + "13": { + "sdtype": "categorical" + }, + "14": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + }, + "16": { + "sdtype": "categorical" + }, + "17": { + "sdtype": "categorical" + }, + "18": { + "sdtype": "categorical" + }, + "20": { + "sdtype": "categorical" + }, + "36": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f25e40d604bfed0e9d1581444dcbf633dcdd0869 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,1,1,126.0,1,38,37,5,5,118.7,0,0,1,1,1,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,19,37,9,7,111.4,0,0,1,1,0,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9003,0,39,140.0,1,1,1,4,3,140.0,1,0,1,1,1,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,1 +1,1,2,9085,0,1,141.0,1,1,38,9,8,128.9,1,0,1,1,1,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,128.0,1,19,19,7,8,120.0,1,0,1,1,1,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,2 +1,17,1,9070,0,1,123.0,1,4,37,2,9,113.9,0,0,1,1,1,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,1,140.0,41,1,1,9,9,100.0,0,0,0,0,1,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,133.1,1,1,3,9,9,116.0,0,0,1,1,0,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,143.0,1,3,3,2,10,141.3,0,0,0,0,1,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,2 +1,1,1,9500,0,1,106.0,1,37,38,191,163,102.2,1,0,0,1,0,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,2 +1,16,2,9085,0,1,136.0,1,37,37,9,9,123.4,1,0,1,1,1,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,125.0,1,38,38,9,9,125.4,0,0,0,0,1,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,0 +4,39,1,9773,0,12,120.0,1,37,37,4,9,130.0,0,0,1,0,0,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,0 +1,44,1,9853,0,39,150.0,1,3,37,2,7,150.0,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,145.0,1,1,19,9,9,129.3,0,0,0,1,1,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,1 +1,44,1,9119,0,39,180.0,1,1,1,9,8,180.0,0,0,1,1,0,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,2 +1,1,4,9085,0,1,135.0,1,38,37,9,9,132.6,1,0,1,1,1,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,1 +1,44,1,9130,0,39,130.0,1,3,1,3,6,130.0,1,0,0,1,0,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,182.0,1,19,1,5,7,156.8,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,142.0,1,19,38,7,10,128.4,1,0,1,1,1,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,19,133.1,1,37,37,9,4,103.5,0,0,1,1,0,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,116.0,1,1,1,3,3,119.2,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +1,44,1,9991,1,39,140.0,1,37,19,9,8,140.0,0,0,1,1,1,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,2 +1,1,6,9500,0,1,133.0,1,38,38,9,9,128.8,1,0,1,1,1,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,1 +1,17,1,9853,0,1,119.0,1,3,3,132,132,110.6,0,0,1,1,1,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,2 +1,42,1,9773,0,1,133.1,1,19,6,4,3,120.0,0,0,1,1,0,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9147,0,1,160.0,1,37,37,9,7,110.0,0,0,1,1,0,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,100.0,1,19,37,5,5,120.7,0,0,1,1,1,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,2 +1,1,2,9500,0,1,136.0,1,19,19,9,9,140.0,1,0,1,1,1,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,135.0,1,3,3,2,2,132.9,1,0,1,0,1,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,0 +1,53,1,9003,0,42,130.0,1,1,38,9,6,128.5,0,0,1,1,0,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,1 +1,7,1,9991,1,3,140.0,1,37,37,9,9,140.0,0,0,1,1,0,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,124.0,1,19,37,5,7,119.1,0,0,1,1,0,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,1 +1,39,1,9556,0,1,140.0,1,37,38,9,9,106.0,1,0,0,0,1,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,0 +1,42,4,9500,0,6,133.0,1,1,19,2,9,127.8,1,0,1,1,1,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,1 +1,1,2,9085,0,1,130.0,1,19,19,90,90,122.0,0,0,1,1,1,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,125.0,1,37,19,9,9,122.4,1,0,1,1,0,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,1 +2,39,1,9003,0,3,110.0,1,3,19,4,6,150.0,0,0,1,1,0,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,1 +1,17,1,9670,0,1,123.0,1,19,19,1,1,114.6,0,0,1,1,1,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,131.0,1,38,38,9,9,126.5,0,0,1,1,1,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,133.1,1,38,19,132,103,146.0,0,0,0,1,1,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,1 +1,17,3,9238,0,1,141.0,1,3,3,2,2,124.9,1,0,1,1,1,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,1,136.0,1,3,4,2,2,133.9,0,0,1,0,0,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,2,1,4,6,140.0,0,0,1,1,0,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,111.0,1,19,19,9,9,114.2,1,0,1,1,1,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,1 +1,43,1,9085,0,1,130.0,1,19,38,7,7,120.2,1,0,1,1,1,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,1 +1,7,1,9670,0,3,110.0,1,27,37,3,3,110.0,1,0,1,1,0,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,142.0,1,38,19,7,10,128.4,0,0,1,1,1,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,0 +1,1,3,9773,0,1,158.0,1,1,38,4,7,157.0,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,127.0,1,1,33,3,3,129.8,0,0,1,0,0,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9773,0,1,140.0,1,34,37,0,0,102.5,0,0,1,1,1,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,130.0,1,1,38,5,7,122.0,1,0,1,1,0,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,145.0,1,19,1,6,5,127.9,1,0,1,1,1,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,17,2,9254,0,1,132.0,1,38,38,9,8,122.6,1,0,1,1,1,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,132.0,1,37,37,9,7,129.9,1,0,1,1,1,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,2 +1,1,1,9500,0,1,121.0,1,1,1,4,4,114.9,0,0,1,1,0,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,1 +1,7,1,8014,1,3,140.0,1,1,1,4,4,140.0,0,0,1,1,1,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,137.0,1,1,19,4,4,125.3,0,0,1,1,0,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,2 +1,18,1,9670,0,1,133.0,1,1,1,9,9,121.5,1,0,1,1,1,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,42,1,9500,0,1,100.0,1,3,37,2,6,130.0,1,0,1,1,1,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,1 +1,39,1,9991,1,1,150.0,1,19,38,9,8,140.9,0,1,1,1,1,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,0 +1,39,1,9085,0,1,133.1,1,37,37,9,9,120.0,0,0,1,0,1,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,8014,1,1,128.0,1,38,38,0,0,122.1,0,0,1,1,1,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,1 +1,17,1,9119,0,1,130.0,1,1,3,4,2,123.0,0,0,1,1,0,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,121.0,1,19,38,7,9,123.8,0,0,1,1,1,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,2 +1,17,1,9070,0,1,122.0,1,1,1,4,8,123.8,1,0,0,0,1,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,12,133.1,1,37,37,9,9,133.8,1,0,1,1,0,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,3,3,2,2,149.0,0,0,1,0,0,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,140.0,1,1,38,1,9,140.0,0,0,1,1,0,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,0 +1,1,5,9773,0,1,135.0,1,37,1,5,5,124.9,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,17,1,9119,0,1,132.0,1,37,37,9,6,119.4,1,0,1,1,0,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,7,1,9670,0,3,110.0,1,37,37,7,7,110.0,0,0,1,1,1,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,1 +1,17,5,9119,0,1,118.0,1,1,19,9,9,120.5,1,0,1,1,0,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,1 +2,39,1,9003,0,19,133.1,1,37,19,9,4,140.0,0,0,0,1,1,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +1,17,4,9670,0,1,126.0,1,1,1,4,7,115.2,0,0,1,0,1,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,0 +1,1,1,9254,0,1,158.0,1,19,39,4,8,153.5,1,0,1,1,1,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,1 +1,1,3,9254,0,1,129.0,1,37,38,7,7,122.0,1,0,1,1,1,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,12,133.1,1,37,1,9,4,138.4,0,0,1,1,0,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,0 +1,7,1,9238,0,3,130.0,1,1,1,4,10,125.1,0,0,0,0,1,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9085,0,1,110.0,1,40,1,5,6,142.5,0,0,0,0,0,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,0 +1,16,1,9070,0,1,125.0,1,1,1,4,4,120.8,1,0,1,1,1,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,128.0,1,19,1,5,4,135.7,1,0,1,1,1,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,142.0,1,19,19,9,9,139.9,0,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,1 +1,17,1,171,0,1,123.0,1,3,12,2,9,116.4,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9238,0,1,125.0,1,19,1,9,10,123.6,1,0,1,1,1,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,12,133.1,1,12,12,9,9,120.0,0,0,1,1,0,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,0 +1,17,5,9500,0,1,144.0,1,19,38,9,5,130.7,1,0,1,1,1,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,1 +1,17,6,9500,0,1,136.0,1,19,38,9,3,132.5,1,0,1,1,1,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,1 +2,43,1,9991,1,1,140.0,1,38,37,5,6,117.3,0,0,1,1,1,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,2 +2,43,1,9500,0,1,140.0,1,37,37,9,10,105.7,1,0,1,1,1,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,19,133.1,1,1,5,4,3,100.0,0,0,1,1,1,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,1 +1,17,3,9238,0,1,143.0,1,37,38,0,7,126.9,1,0,1,1,1,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,138.0,1,37,1,9,9,123.7,1,0,0,1,1,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,1,150.0,1,34,34,0,0,112.5,0,0,1,1,1,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,141.0,1,3,2,2,3,130.2,1,0,1,1,1,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,1 +1,1,1,9070,0,1,139.0,1,1,19,3,9,134.9,1,0,1,1,0,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,133.1,1,1,1,3,3,102.0,1,0,1,1,1,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,153.0,1,38,37,7,8,147.9,0,0,1,1,1,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,1 +1,17,3,9085,0,1,121.0,1,38,1,9,9,111.9,1,0,1,1,0,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,1 +1,43,1,9238,0,1,149.0,1,37,37,9,6,130.5,1,0,1,1,1,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,1 +1,17,5,9773,0,1,139.0,1,38,1,4,4,123.6,1,0,1,1,0,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9119,0,1,120.0,1,3,1,123,152,116.9,0,0,1,1,0,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9238,0,1,130.0,1,1,19,4,5,124.8,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,1 +1,53,1,9085,0,42,150.0,1,1,19,4,8,145.2,1,0,1,1,1,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,1 +4,39,1,9130,0,1,140.0,1,37,37,6,7,150.0,1,0,1,1,0,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,1,4,171,0,1,133.1,1,1,1,9,10,110.0,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +1,1,1,171,0,1,124.0,1,19,1,9,9,121.2,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,44,1,9119,0,39,130.0,1,38,19,9,5,130.0,1,0,1,1,0,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,2 +4,7,1,9500,0,3,140.0,1,37,38,9,7,140.0,0,0,1,1,0,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,117.0,1,1,37,5,9,118.4,0,0,1,1,0,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,1 +1,51,1,33,0,1,130.0,1,19,19,9,9,117.7,0,0,1,1,1,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,0 +4,7,1,9500,0,40,130.0,1,19,19,4,6,130.0,0,0,1,0,1,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,144.0,13,3,3,6,6,137.6,1,0,1,1,1,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,1 +1,17,1,9670,0,1,132.0,1,38,37,9,9,122.9,0,0,1,0,0,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,0 +1,1,2,9773,0,1,124.0,1,3,3,3,4,114.6,1,0,1,1,1,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,100.0,1,38,38,9,10,100.0,0,0,1,1,1,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,1 +1,18,2,9853,0,1,120.0,1,19,37,9,4,113.7,1,0,0,0,1,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,0 +1,43,1,9500,0,1,136.0,1,3,3,2,2,100.0,0,0,1,1,1,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,1 +1,39,1,9130,0,1,133.1,1,3,34,3,0,120.0,0,0,0,0,0,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,140.0,1,1,19,3,3,140.0,1,0,1,1,1,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,1 +1,17,1,9085,0,1,128.0,1,38,37,9,9,116.5,1,0,1,1,0,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,1 +1,1,1,9130,0,1,132.0,1,6,6,0,4,119.1,1,0,0,1,1,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,0 +1,43,1,9500,0,6,134.0,1,1,37,9,9,120.4,1,0,1,1,1,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,100.0,1,34,34,0,0,100.0,0,0,1,1,1,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,1 +1,1,2,9085,0,1,122.0,1,3,1,4,7,116.1,1,0,1,1,1,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,1,120.0,1,37,37,9,9,117.0,1,0,1,1,1,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,1 +1,1,5,9254,0,1,126.0,1,19,19,4,7,116.6,1,0,1,1,1,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,1 +1,43,1,9991,1,4,160.0,1,3,3,2,1,125.0,0,0,1,1,0,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,1 +1,1,1,9670,0,1,130.0,1,37,37,0,0,117.8,1,0,1,1,1,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,1 +1,1,1,171,0,1,169.0,1,19,37,9,7,176.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,1,1,9500,0,1,137.0,1,3,38,2,4,121.0,0,0,1,1,1,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,132.0,1,19,1,9,5,123.4,0,0,1,1,1,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,1 +1,17,2,9238,0,3,105.0,1,37,37,7,8,129.7,1,0,1,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,6,9254,0,1,119.0,1,19,19,9,9,118.7,1,0,1,1,0,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,0 +2,39,1,8014,1,1,120.0,1,37,37,9,6,117.0,0,0,1,1,0,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,1,3,9,6,130.0,0,0,1,1,0,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,143.0,1,19,37,9,9,126.2,1,0,1,1,1,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,1 +1,39,1,9991,1,39,150.0,1,19,19,9,9,150.3,0,0,1,1,0,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9130,0,1,143.0,1,3,3,2,2,131.8,1,0,0,0,1,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,2 +1,44,1,9238,0,39,140.0,1,19,19,8,8,144.3,1,0,1,1,1,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,131.0,1,19,19,4,4,122.0,1,0,1,1,1,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,2 +1,17,2,9500,0,1,127.0,1,3,3,1,10,118.8,1,0,1,1,0,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,146.0,1,37,38,9,7,128.5,0,0,0,1,1,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,0 +1,7,1,9003,0,3,140.0,1,39,39,9,4,140.0,0,0,1,1,0,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,123.0,1,38,19,4,90,127.2,0,0,0,0,0,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,0 +1,15,1,9670,0,1,133.1,41,1,1,9,5,128.2,0,0,0,0,0,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,126.0,1,1,1,9,9,127.4,1,0,1,1,1,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,150.0,1,37,37,9,9,150.0,0,0,1,1,1,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,130.0,1,38,19,9,6,120.0,1,0,1,1,0,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,2 +1,17,1,9238,0,1,103.0,1,19,37,7,9,104.1,0,0,1,1,1,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9500,0,1,145.0,1,3,19,1,5,130.0,1,0,1,1,1,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,123.0,1,1,38,9,9,116.7,0,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,9991,1,1,110.0,1,37,37,5,1,120.0,1,0,1,1,1,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,141.0,1,19,1,90,90,128.0,0,0,1,1,0,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,0 +1,1,1,171,0,1,124.0,1,3,3,2,2,119.1,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,5,4,9853,0,1,116.0,1,3,38,3,8,110.4,1,0,1,1,1,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,2 +1,17,1,9070,0,1,119.0,1,38,19,9,9,115.2,0,0,1,1,0,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,0 +1,17,2,9254,0,1,123.0,1,37,37,7,7,113.9,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +2,43,1,9147,0,2,120.0,1,37,37,9,9,122.8,0,0,0,0,1,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,6,122.0,1,19,19,9,9,126.2,1,0,1,1,1,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,122.0,1,1,1,2,5,113.3,1,0,1,1,1,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,2 +1,1,1,9085,0,1,142.0,1,1,1,9,9,127.7,1,0,1,1,0,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,1 +1,43,1,9070,0,1,116.0,1,1,1,3,3,120.9,0,0,1,1,0,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9500,0,1,128.0,1,1,19,4,7,125.6,1,0,1,1,0,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,1 +1,7,1,9991,1,40,130.0,1,1,3,4,2,130.0,0,0,1,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,39,120.0,1,1,19,9,7,120.0,0,0,1,1,0,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,137.0,1,38,37,9,9,122.3,0,0,1,1,0,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,4,9773,0,1,122.0,1,41,1,4,3,119.6,1,0,1,1,1,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,157.0,1,38,37,9,5,137.8,0,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9130,0,1,132.0,1,19,38,9,9,130.4,1,0,1,1,0,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,1 +4,43,1,8014,1,12,133.1,1,34,34,0,0,106.0,1,0,1,1,1,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,2 +1,17,2,9130,0,1,127.0,1,3,1,2,1,116.5,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,8014,1,1,125.0,1,37,37,5,6,122.2,1,0,0,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9556,0,1,128.0,1,38,38,7,8,123.5,1,0,1,1,1,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,2 +1,43,1,9130,0,1,156.0,1,19,1,9,4,156.0,0,0,0,0,0,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,0 +1,7,1,9130,0,3,140.0,1,19,38,9,9,140.0,1,0,1,1,1,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,8014,1,1,123.0,1,34,37,9,90,121.3,1,0,1,1,1,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,39,1,9085,0,19,133.1,1,19,37,7,90,104.0,0,0,1,1,1,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,18,4,9254,0,1,106.0,1,19,37,7,7,106.0,1,0,1,1,0,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,0 +1,17,1,9003,0,1,119.0,1,37,37,4,6,113.2,0,0,0,1,1,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,133.1,1,19,19,9,9,100.0,0,0,1,1,1,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,145.0,1,3,1,4,3,149.9,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,166.0,1,19,37,4,8,146.4,0,0,1,1,0,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,2 +1,1,1,9853,0,1,145.0,1,38,37,5,5,142.2,0,0,1,1,1,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,2 +1,39,1,8014,1,19,133.1,1,37,37,9,9,100.0,0,0,1,1,1,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,156.0,1,19,38,9,1,153.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,1,9853,0,1,117.0,1,19,38,4,0,113.5,1,0,1,1,1,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,138.0,1,37,19,9,9,127.8,1,0,1,1,1,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,1 +1,39,1,9500,0,40,130.0,1,1,1,4,4,190.0,1,0,1,1,1,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,1 +1,17,5,9070,0,1,131.0,1,37,37,9,9,126.1,1,0,1,0,1,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,133.1,1,19,37,9,9,95.0,1,0,0,0,1,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,2 +1,1,1,9773,0,1,143.0,1,1,38,8,8,136.7,1,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,0 +1,42,1,8014,1,1,120.0,1,37,38,90,7,120.0,1,0,1,1,1,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,0 +1,1,1,9254,0,1,121.0,1,19,19,5,8,117.5,1,0,1,1,1,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,1 +1,39,1,9254,0,1,160.0,1,3,1,6,6,116.3,1,0,1,1,1,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,134.0,1,1,38,4,5,122.8,0,0,1,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,7,1,8014,1,3,120.0,1,19,37,5,3,121.3,0,0,1,1,1,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,134.0,1,38,19,9,4,128.4,1,0,1,1,1,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,130.0,1,19,1,7,4,117.8,1,0,1,1,0,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,2 +1,1,1,9130,0,1,132.0,1,1,1,3,3,143.9,1,0,1,1,0,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,130.0,1,19,1,9,4,101.3,1,0,1,1,0,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,135.0,1,37,19,5,10,121.0,0,0,0,1,1,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,2 +1,44,1,9991,1,39,120.0,1,37,37,7,7,120.0,1,0,1,1,1,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,43,1,8014,1,1,133.1,1,3,3,2,3,135.0,0,0,1,1,1,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,110.0,1,19,19,9,7,105.8,1,0,1,1,0,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,160.0,1,1,38,4,10,144.3,1,0,1,1,1,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,1 +4,39,1,9254,0,1,120.0,1,37,37,9,8,95.0,0,0,1,1,1,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,137.0,1,19,19,7,7,120.8,1,0,1,1,1,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,1 +1,1,5,9500,0,1,144.0,1,19,38,4,8,141.3,1,0,1,1,1,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,148.0,1,19,1,3,9,140.0,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,128.0,1,38,38,7,7,131.5,0,0,1,1,1,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,128.0,1,38,19,191,175,118.6,1,0,1,1,1,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,2 +1,17,3,9147,0,1,122.0,1,3,38,123,171,116.1,1,0,0,1,0,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,2 +1,1,1,9773,0,1,128.0,1,38,38,6,3,116.5,0,0,1,1,0,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,97.0,1,1,19,2,7,98.1,1,0,1,1,1,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,1 +1,53,1,9991,1,1,140.0,1,38,38,191,193,135.0,0,0,0,1,1,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,2 +1,1,2,9773,0,1,122.0,1,37,37,9,9,130.8,1,0,1,1,1,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,1 +2,39,1,9147,0,1,130.0,1,37,37,9,9,117.9,0,0,1,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,43,1,9991,1,1,100.0,1,37,19,9,4,130.0,0,0,1,1,0,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,0 +1,17,6,9670,0,1,125.0,1,38,1,9,7,125.0,1,0,1,1,0,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,1 +2,7,1,9070,0,43,140.0,1,37,1,9,7,140.0,0,0,1,1,1,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,1 +1,7,1,9254,0,3,110.0,1,19,19,3,3,110.0,0,0,1,1,0,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,17,2,9500,0,1,135.0,1,19,1,5,4,127.3,1,0,1,1,1,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,1 +1,17,4,9238,0,1,129.0,1,19,19,4,7,123.1,1,0,1,1,1,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,53,1,9085,0,42,140.0,1,19,38,8,9,144.9,1,0,0,0,1,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,9500,0,1,136.0,1,1,1,4,4,123.8,0,0,1,1,1,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,1 +4,43,1,9991,1,1,140.0,1,37,37,5,5,149.8,0,0,1,1,0,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,150.0,1,38,19,9,9,137.8,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +5,39,1,9147,0,1,180.0,1,1,1,4,8,140.5,0,0,0,0,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,131.0,1,19,19,3,7,127.9,1,0,1,1,1,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,1 +1,17,1,9147,0,1,110.0,1,1,1,4,4,99.0,0,0,1,1,0,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,2 +1,39,1,9070,0,1,139.3,1,38,38,5,5,117.5,0,0,1,1,0,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9130,0,1,147.0,1,4,1,2,10,141.8,1,0,1,1,1,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,1 +2,44,1,8014,1,39,150.0,1,1,1,5,5,154.0,0,0,1,1,0,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,1 +1,17,1,9254,0,1,133.1,1,1,1,4,5,131.0,1,0,1,1,1,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,132.0,1,1,38,9,7,127.1,1,0,1,1,1,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,17,4,9147,0,1,125.0,1,19,19,5,5,118.0,1,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,108.0,1,19,1,9,3,107.8,1,0,1,1,1,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,143.0,1,37,37,9,8,130.6,1,0,1,1,1,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,126.0,1,37,1,7,7,118.7,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9238,0,1,140.0,1,1,44,4,2,124.6,1,0,0,0,0,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,112.0,1,9,22,4,3,106.1,0,0,1,1,1,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,1,130.0,1,37,37,191,183,163.7,0,0,1,1,1,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,2 +4,39,1,9500,0,19,133.1,1,37,37,6,6,117.8,0,0,0,0,1,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,0 +1,18,2,9853,0,1,120.0,1,1,1,9,0,115.8,0,0,1,1,1,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,2 +1,17,1,9070,0,1,118.0,1,38,19,9,3,111.0,1,0,1,1,1,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,16,1,171,0,1,150.0,1,37,37,9,9,134.6,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9130,0,1,133.1,6,37,37,9,6,100.0,0,0,1,1,1,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9147,0,1,137.0,1,1,37,5,9,131.4,1,0,1,1,0,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,0 +2,44,1,9991,1,39,130.0,1,1,37,4,9,130.0,0,0,1,0,1,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,0 +1,1,2,9238,0,1,136.0,1,19,19,4,7,121.7,1,0,1,1,1,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,133.1,1,1,38,9,7,110.5,0,0,1,1,1,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,1 +1,39,1,9556,0,19,100.0,1,37,38,9,9,120.0,0,0,1,1,1,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,3,9070,0,1,142.0,1,1,38,3,5,146.9,1,0,1,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,127.0,1,19,19,7,8,120.3,1,0,1,1,1,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,130.0,1,1,38,7,8,135.6,1,0,1,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,137.0,1,19,38,9,3,125.0,1,0,1,1,1,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,1 +1,1,5,9500,0,1,135.0,1,37,37,7,7,124.0,1,0,1,1,1,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,2 +2,39,1,9556,0,1,100.0,6,38,38,9,9,130.0,0,0,1,1,1,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,1 +1,42,1,9003,0,39,120.0,1,3,1,2,6,128.2,1,0,1,1,0,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,2 +1,1,3,9773,0,1,121.0,1,19,19,3,3,116.1,0,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,136.0,1,1,19,4,9,131.1,1,0,1,1,1,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,2 +1,1,3,9500,0,1,141.0,1,3,19,2,10,126.8,1,0,1,1,0,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,1 +1,1,6,9773,0,1,136.0,1,38,38,9,9,132.9,1,0,1,1,0,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,1 +1,39,1,9130,0,1,133.1,1,1,1,90,1,120.0,1,0,0,0,0,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,0 +1,17,1,8014,1,1,132.0,1,37,19,5,5,121.2,0,0,1,1,1,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,1 +1,43,2,9500,0,6,119.1,1,1,19,4,10,119.1,0,0,1,1,0,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,153.0,1,1,19,9,4,139.7,1,0,1,1,1,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,1 +1,1,1,9119,0,1,150.0,1,1,1,3,3,143.4,0,0,1,0,0,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,2 +1,1,4,9500,0,1,130.0,1,19,19,9,7,119.9,1,0,1,1,1,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,1,38,9,6,140.0,0,0,1,1,0,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,2 +1,18,1,9500,0,1,115.0,1,38,37,5,5,115.0,0,0,1,1,1,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,150.0,1,19,37,5,4,142.7,1,0,1,1,1,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,133.1,1,34,5,0,1,118.5,1,0,1,1,1,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9130,0,1,125.0,1,3,3,2,2,132.4,0,0,1,1,0,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,1 +1,17,3,9070,0,1,116.0,1,37,37,9,9,110.8,0,0,1,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,2 +1,43,1,9070,0,1,115.0,1,12,12,1,10,115.0,0,0,0,1,0,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,0 +1,1,1,9500,0,1,125.0,1,37,37,9,9,118.8,0,0,1,1,0,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,130.0,1,3,1,2,5,133.8,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9500,0,1,141.0,1,12,1,5,5,133.0,1,0,1,1,1,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,141.0,1,38,38,7,10,139.8,1,0,1,1,1,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,1 +1,51,1,9147,0,19,133.1,1,19,19,9,5,112.1,0,0,0,0,0,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,132.0,1,19,2,9,3,126.0,1,0,1,1,1,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,131.0,1,2,38,4,5,132.3,1,0,1,1,1,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,124.0,1,1,19,9,8,116.7,1,0,1,1,1,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,0 +1,1,1,9556,0,1,180.0,103,5,3,1,1,183.5,1,0,1,1,1,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,0 +1,10,1,9773,0,1,151.0,22,38,37,0,5,151.0,1,0,1,1,1,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,135.0,1,19,19,9,10,133.4,1,0,1,1,1,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,135.0,1,3,3,2,2,137.1,1,0,1,1,1,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,133.1,1,38,38,5,10,101.0,0,0,1,1,0,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,1 +1,39,1,9085,0,40,130.0,1,3,2,3,2,160.0,1,0,1,1,1,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,18,1,9773,0,1,124.0,1,38,37,9,8,126.8,0,0,1,1,0,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,140.0,1,19,37,9,9,125.5,1,0,1,1,1,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,1 +2,39,1,9500,0,1,133.1,1,37,38,9,8,118.9,0,0,1,1,1,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9991,1,1,160.0,1,34,34,0,0,161.8,1,0,0,1,0,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,140.0,1,1,38,4,7,100.0,0,0,1,1,1,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,1 +1,44,1,9070,0,39,120.0,1,2,19,3,8,120.0,0,0,1,1,0,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,124.0,1,38,19,3,10,128.6,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,2 +1,44,1,9085,0,39,140.0,1,1,19,4,4,140.0,0,0,1,1,1,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,145.0,1,1,19,4,3,133.5,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,1 +4,39,1,9085,0,1,110.0,1,37,37,90,90,110.0,0,0,1,0,1,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,134.0,1,19,37,4,7,133.5,1,0,1,1,1,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,1 +1,1,2,9147,0,1,132.0,1,1,19,4,3,126.4,1,0,1,1,1,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,1 +1,39,1,9003,0,19,133.1,1,4,1,2,4,120.0,0,0,1,1,0,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,151.0,1,40,4,2,2,144.5,1,0,1,1,1,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +2,39,1,9147,0,19,133.1,1,37,19,9,3,128.0,0,0,1,1,0,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,0 +1,39,2,8014,1,1,141.0,1,37,37,9,9,150.5,0,0,1,1,1,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,122.0,1,19,19,4,6,119.9,0,0,1,1,1,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,1 +1,39,1,9254,0,9,133.1,1,34,34,0,0,110.0,1,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,18,1,9500,0,1,128.0,1,19,1,9,4,125.8,0,0,1,1,1,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,2 +1,1,3,9773,0,1,133.1,1,38,38,5,5,131.3,1,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +1,16,6,9147,0,1,128.0,1,37,37,9,9,116.5,1,0,1,1,1,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,1 +2,39,1,9991,1,1,147.0,1,34,34,90,90,111.7,1,0,1,1,1,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,8014,1,1,120.0,1,1,19,6,8,122.0,0,0,1,1,1,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,1 +2,39,2,9254,0,19,133.1,1,19,19,9,5,123.5,0,0,1,1,0,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,114.0,1,37,37,9,9,130.0,0,0,1,1,0,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,1 +2,39,1,8014,1,1,100.0,1,37,38,9,9,141.5,0,0,1,1,1,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,1 +1,17,6,9556,0,1,118.0,1,38,38,5,5,117.8,1,0,1,1,1,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,1 +1,39,1,9773,0,19,133.1,1,19,19,171,163,104.0,0,0,0,0,1,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,1 +1,39,1,8014,1,39,110.0,1,19,37,9,8,127.5,0,0,0,0,1,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,0 +1,39,1,9119,0,1,120.0,1,37,38,9,8,100.0,0,0,0,1,0,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,5,9147,0,1,133.0,1,19,3,9,9,123.2,1,0,1,1,0,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,133.1,1,34,34,0,0,142.8,0,0,1,1,0,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9119,0,1,120.0,1,34,34,0,0,140.0,1,0,1,1,0,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,120.0,1,3,37,4,7,115.1,1,0,1,1,1,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,1 +1,51,1,9119,0,1,140.0,1,1,19,4,4,150.0,0,0,1,1,0,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,0 +1,43,1,9556,0,1,149.0,1,1,1,4,8,140.2,1,1,1,1,1,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,160.0,1,37,19,9,10,160.0,1,0,1,1,1,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,9238,0,1,115.0,1,19,38,7,8,116.4,1,0,1,1,1,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,1 +1,44,1,9130,0,39,140.0,1,4,4,2,10,140.0,1,0,1,1,0,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,19,133.1,1,1,1,4,4,130.0,0,0,1,1,0,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,17,5,9773,0,1,146.0,1,1,37,5,5,146.7,1,0,1,1,0,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,142.0,1,1,38,9,9,127.0,0,0,0,0,0,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,0 +4,39,1,8014,1,1,130.0,1,37,37,9,7,138.0,0,0,1,1,1,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,1 +1,39,1,9773,0,9,133.1,1,38,1,5,4,102.0,1,0,1,1,0,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,125.0,1,19,19,7,5,118.0,1,0,1,1,1,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,145.0,1,19,38,4,10,131.7,1,0,1,1,1,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,133.1,1,37,19,9,9,114.0,0,0,1,1,1,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,140.0,1,38,37,4,10,140.0,0,0,0,0,1,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,0 +1,1,1,9773,0,1,128.0,1,1,19,4,4,124.5,0,0,1,1,0,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,126.0,1,37,19,9,8,116.9,1,0,1,1,1,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,2 +1,17,1,9773,0,1,177.0,1,2,1,123,135,155.7,0,0,0,1,1,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,135.0,1,37,1,5,5,126.8,1,0,1,1,1,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,125.0,1,4,3,1,1,119.8,0,0,1,1,1,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,1 +1,53,1,9147,0,42,130.0,1,1,19,143,172,133.8,1,0,1,1,1,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,1 +1,17,3,9670,0,1,123.0,1,38,38,7,8,118.8,1,1,1,1,1,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,112.0,1,38,19,9,5,113.8,1,0,1,1,1,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,124.0,1,34,34,0,0,129.3,0,0,1,1,1,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,9773,0,12,120.0,1,1,1,9,9,129.8,1,0,1,1,0,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,111.0,1,19,19,9,9,110.0,1,0,1,1,1,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,163.0,1,37,37,5,6,155.0,0,0,1,1,1,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,145.0,1,19,1,9,5,145.0,0,0,1,1,1,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,160.0,1,38,37,9,7,155.5,1,0,1,1,1,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,137.0,1,1,3,7,3,131.1,1,0,0,1,1,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,1 +2,39,1,8014,1,1,133.1,1,38,38,9,9,113.5,0,0,1,1,1,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,130.0,1,1,1,9,9,131.8,0,0,1,1,0,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,137.0,1,38,37,7,7,126.0,1,0,1,1,1,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,1 +1,42,1,9003,0,1,160.0,1,19,1,9,5,107.8,1,0,1,0,0,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9070,0,39,120.0,1,3,38,3,9,120.0,0,0,1,1,0,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,1 +1,17,1,9670,0,1,145.0,1,3,3,2,1,129.3,1,0,1,1,1,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,117.0,1,38,19,5,7,118.1,0,0,1,1,0,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,1 +1,44,1,9085,0,1,130.0,1,1,1,4,3,130.0,1,0,1,1,1,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,2 +2,43,1,9238,0,12,100.0,1,37,37,9,9,134.4,0,0,1,1,1,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,1 +2,43,1,8014,1,14,133.1,1,34,34,0,0,100.0,0,0,1,0,1,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,0 +1,17,4,9254,0,1,122.0,1,1,1,4,2,116.1,1,0,1,1,0,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,2 +1,1,4,9254,0,1,110.0,1,37,37,9,7,113.2,1,0,1,1,1,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,17,1,9254,0,1,131.0,1,38,37,4,9,131.7,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,150.0,1,1,19,4,10,150.0,0,0,1,1,0,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,1 +1,17,1,9119,0,1,142.0,1,19,38,9,7,127.3,0,0,1,1,0,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,2 +1,7,1,9556,0,43,160.0,1,38,19,9,9,160.0,0,0,1,1,0,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +1,1,1,9853,0,1,130.0,1,19,12,9,4,133.2,1,0,1,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,1 +1,43,1,9119,0,1,130.0,1,37,38,9,9,120.0,0,0,0,0,1,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,42,1,3,7,110.5,0,0,1,1,0,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +2,39,1,9003,0,1,130.0,1,1,19,4,9,152.4,1,0,1,1,1,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,1 +1,16,1,171,0,1,155.0,1,1,3,5,10,167.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,3,9254,0,1,114.0,26,38,3,9,3,127.3,1,0,0,0,1,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,124.0,1,37,37,9,9,125.4,1,0,1,1,0,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,5,9773,0,1,127.0,1,38,1,4,5,121.1,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,2 +1,17,2,171,0,1,130.0,41,1,1,2,3,148.6,1,0,1,1,0,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9130,0,1,120.0,1,1,19,9,9,120.0,1,0,1,1,1,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,133.0,1,1,37,4,10,143.2,0,0,1,1,1,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +1,1,2,9254,0,1,136.0,1,38,38,9,7,125.2,1,0,1,1,1,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,1 +1,17,1,9254,0,1,102.0,1,37,37,7,7,102.0,0,0,1,1,1,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,140.0,1,19,38,5,7,128.5,1,0,1,1,1,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,1 +1,1,4,9500,0,1,140.0,1,38,38,7,7,133.2,1,0,1,1,1,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,123.0,1,1,1,3,3,120.9,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,18,2,9500,0,1,135.0,1,19,1,5,5,128.9,1,0,1,1,1,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,144.0,1,3,1,1,3,137.7,0,0,1,0,1,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,0 +1,17,1,171,0,1,158.0,1,3,3,3,3,151.4,1,0,1,0,1,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,1 +1,39,1,9670,0,12,133.1,1,37,1,9,3,120.0,0,0,0,0,0,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,51,1,9773,0,1,135.0,1,1,42,5,3,110.0,1,0,1,1,0,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,143.0,1,3,38,2,9,144.1,1,0,1,1,1,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,2 +1,1,3,9070,0,1,132.0,1,1,3,9,7,126.1,1,0,1,1,1,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,1 +1,1,6,9500,0,1,141.0,1,19,1,9,10,126.8,1,0,1,1,1,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,1 +1,44,1,9238,0,39,130.0,1,38,38,6,9,126.3,1,0,1,1,1,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,1,140.0,1,1,1,4,5,140.0,0,0,1,1,0,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,2 +1,39,2,9147,0,1,130.0,1,19,19,5,9,121.5,0,0,1,0,0,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +2,51,1,8014,1,19,133.1,1,37,37,9,9,104.0,0,0,0,1,1,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,120.0,1,3,4,2,2,120.0,0,0,1,1,0,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,1 +1,1,4,171,0,1,131.0,1,19,19,4,4,119.8,1,1,1,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +1,18,3,9070,0,1,134.0,1,1,1,3,4,121.4,0,0,1,1,1,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,1,140.0,1,37,37,9,9,118.2,0,0,1,1,0,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,1 +1,1,1,9147,0,1,130.0,1,19,37,9,9,131.8,1,0,1,1,1,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,134.0,1,38,19,3,10,121.2,0,0,1,1,1,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,1 +1,43,2,9500,0,1,120.0,1,41,3,2,2,112.7,0,0,1,1,1,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,134.0,1,1,19,4,9,129.8,0,0,1,1,1,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,1 +1,17,1,9085,0,1,133.0,1,19,1,4,5,127.1,1,0,1,1,1,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,1 +1,17,1,9500,0,1,148.0,1,38,37,5,9,137.8,1,0,1,1,1,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,129.0,1,37,37,9,7,117.8,0,0,1,1,1,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,2 +4,39,1,8014,1,3,100.0,1,37,37,9,9,130.0,0,0,1,1,1,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,145.0,1,1,40,9,2,129.6,0,0,1,1,1,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,17,4,9254,0,1,124.0,1,1,1,4,4,122.3,1,0,1,1,1,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,0 +2,43,2,9147,0,1,133.1,1,37,37,9,9,109.0,1,0,1,1,1,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,1 +1,51,1,9556,0,1,131.0,1,1,37,152,193,126.6,1,0,1,1,0,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,2 +1,44,1,9085,0,39,110.0,1,3,5,2,2,110.0,0,0,1,1,0,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,15,1,9147,0,1,140.0,26,37,2,6,4,140.0,0,0,0,1,0,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,1 +2,51,1,9853,0,1,130.0,1,37,37,7,8,120.3,0,0,1,1,1,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,8014,1,19,133.1,1,37,37,6,6,139.0,0,0,1,1,0,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,1 +1,1,3,9670,0,1,120.0,1,37,37,7,7,111.3,1,0,1,1,0,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,2 +1,7,1,9085,0,3,120.0,1,37,37,7,7,120.0,0,0,1,1,1,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,0 +1,17,3,9147,0,1,147.0,1,19,38,5,7,132.3,1,0,1,1,1,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,1 +1,1,3,9130,0,1,167.0,1,37,37,90,90,159.3,0,0,1,1,1,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,132.0,1,1,1,4,9,136.6,1,0,1,1,0,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,2 +1,5,2,9853,0,1,124.0,1,19,19,3,3,113.9,1,0,1,1,1,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,3,130.0,1,3,1,2,9,130.0,0,0,1,1,0,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9773,0,1,160.0,1,1,38,4,7,146.5,0,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,1 +1,1,1,9670,0,1,141.0,1,19,3,4,0,137.9,1,0,1,0,0,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,0 +1,39,1,8014,1,1,120.0,1,19,37,8,7,100.0,1,0,1,1,1,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,134.0,1,38,19,7,7,124.2,0,0,1,1,1,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,1 +1,44,1,9238,0,39,150.0,1,1,37,4,8,145.6,1,0,1,1,1,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,1,4,9147,0,1,146.0,1,3,1,3,10,138.7,0,0,1,1,0,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,7,1,9991,1,40,133.1,1,1,37,4,1,100.0,0,0,1,1,1,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,127.0,1,38,19,9,10,117.9,0,0,1,1,1,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,131.0,1,37,38,9,7,137.0,0,0,1,1,1,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,1 +1,7,1,9238,0,3,140.0,1,37,37,9,9,140.0,1,0,1,1,1,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,1 +2,39,1,9085,0,1,133.1,1,37,37,90,90,110.3,0,0,1,1,0,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,125.0,1,38,1,3,10,114.5,1,0,1,1,0,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,152.0,1,19,19,9,5,154.1,0,0,0,1,1,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,1 +1,7,1,9500,0,3,120.0,1,37,37,4,5,120.0,0,0,0,0,1,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,0 +2,39,1,8014,1,1,146.0,1,37,37,9,8,120.5,0,0,1,1,1,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,39,1,9119,0,12,133.1,1,34,34,0,0,95.1,0,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9238,0,1,128.0,1,19,37,9,8,116.5,0,0,1,1,1,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,1 +2,39,1,9991,1,1,140.0,1,37,37,9,9,120.0,0,0,1,0,1,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..0a6042a3e210bfe563db68aaf16ce01ce4c1e401 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/train.csv @@ -0,0 +1,3982 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,0,1,127.0,1,1,1,9,6,110.0,0,0,0,0,0,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,0 +1,17,2,9773,0,1,122.0,1,38,37,5,3,119.6,1,0,1,1,1,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,1 +1,1,6,9147,0,1,121.0,1,3,19,4,5,116.8,0,0,1,1,0,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,158.0,1,38,37,5,5,140.2,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,19,19,9,7,131.7,1,0,1,1,1,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,1 +1,1,3,9085,0,1,133.0,1,1,38,9,90,128.2,0,0,1,1,1,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,122.0,1,1,19,9,9,120.3,1,0,1,1,0,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,0 +1,43,1,9119,0,1,130.0,1,1,1,9,2,128.0,0,0,0,0,0,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,2 +1,17,3,9254,0,1,122.0,1,1,1,4,4,126.6,0,0,1,0,1,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,1,100.0,1,37,37,9,9,133.0,0,0,1,1,0,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,0 +1,44,1,9119,0,39,130.0,1,19,3,3,4,130.0,0,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9085,0,39,140.0,1,1,1,4,7,140.0,1,0,0,1,1,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,0 +1,17,2,9070,0,1,130.0,1,37,37,9,9,123.7,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +4,1,1,9991,1,1,130.0,1,37,37,9,9,118.1,0,0,0,0,1,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9500,0,1,190.0,108,3,2,122,4,190.0,1,0,1,1,1,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,102.0,1,1,19,9,5,100.6,1,0,1,1,1,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,1 +1,7,1,9500,0,3,120.0,1,19,3,4,2,120.0,1,0,1,1,1,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,130.0,1,38,19,9,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,111.0,1,3,4,4,3,108.2,1,0,1,1,1,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,39,1,9119,0,1,160.0,1,1,38,4,7,112.0,0,0,1,0,0,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,149.0,1,19,1,4,4,134.8,0,0,1,1,1,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,135.0,1,19,38,3,9,136.1,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,2,9500,0,1,120.0,1,37,34,90,0,121.5,0,0,0,1,1,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,1 +1,1,3,171,0,1,147.0,1,12,19,9,3,151.6,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,128.0,1,37,37,9,9,123.5,1,0,1,1,0,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,1,2,9070,0,1,129.0,1,1,1,4,9,132.9,1,0,1,1,0,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,2 +1,17,2,9500,0,1,138.0,1,1,38,5,8,132.8,1,0,1,1,1,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,134.0,1,19,37,9,9,131.6,1,1,1,1,1,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,130.0,1,37,37,9,9,122.0,1,0,1,1,1,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,37,37,9,10,130.0,0,0,0,0,1,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,2,9085,0,1,130.0,1,37,19,9,8,129.0,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,2 +1,17,5,9119,0,1,126.0,1,38,38,5,9,116.9,1,0,0,1,0,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,37,38,5,6,140.0,1,0,1,1,1,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,2 +1,18,4,9853,0,1,123.0,1,19,38,4,10,123.7,1,0,1,1,1,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,118.0,1,4,3,2,3,110.7,1,0,1,1,1,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,1 +1,39,1,8014,1,2,130.0,1,37,37,5,7,147.5,0,0,1,1,1,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,146.0,1,4,1,2,3,140.0,1,0,1,1,1,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,1 +1,44,1,9003,0,39,160.0,1,37,38,9,7,160.0,0,0,1,1,1,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,7,0,9003,0,3,130.0,1,1,37,4,9,130.0,1,0,1,1,1,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,19,133.1,1,34,34,99,99,96.0,0,0,1,1,0,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,136.0,1,37,37,7,7,140.9,1,0,1,1,0,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,1,9853,0,1,127.0,1,1,1,5,7,121.4,1,0,1,1,1,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,134.0,1,3,19,2,10,128.8,0,0,1,1,1,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,140.0,1,1,3,4,2,142.8,1,0,1,0,1,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,126.3,0,0,1,1,0,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.1,1,19,1,1,3,101.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9147,0,1,122.0,1,1,38,1,7,118.9,0,0,1,1,0,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,107.0,1,19,37,7,7,103.5,1,0,1,1,1,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,156.0,1,38,37,9,9,156.3,0,0,1,1,0,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,128.0,1,1,1,9,9,120.0,1,0,1,1,1,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,0 +1,17,2,9119,0,1,127.0,1,19,1,9,10,121.1,1,0,1,1,0,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,2 +1,39,1,9003,0,4,160.0,1,3,3,4,2,180.4,0,0,0,1,0,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,0 +1,43,1,9670,0,1,132.0,1,3,19,4,8,120.5,0,0,1,1,0,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,134.0,1,1,19,4,5,122.5,1,0,1,1,1,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,142.0,1,1,19,4,4,128.0,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,133.0,1,2,37,9,7,125.7,1,0,1,1,0,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,135.0,1,1,3,4,3,133.3,0,0,1,1,1,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,3,140.0,1,37,12,9,4,140.0,0,0,1,0,1,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9500,0,1,141.0,1,2,38,2,10,135.4,1,0,1,1,1,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,2 +2,43,1,9991,1,2,120.0,1,37,37,9,9,120.0,0,0,1,0,1,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,147.0,1,1,19,4,4,137.2,0,0,1,0,1,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9085,0,1,120.0,1,37,38,9,9,111.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,141.0,1,3,1,9,9,124.3,0,0,1,1,1,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,2 +1,18,1,9773,0,1,125.0,1,1,1,4,7,121.5,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,140.0,1,37,37,5,5,150.0,0,0,0,1,1,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,112.0,1,1,37,4,9,106.8,1,0,1,1,1,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,168.0,1,38,37,9,8,155.1,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,15,1,9119,0,1,133.1,41,2,2,2,2,100.0,0,0,0,1,0,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,2 +2,1,1,8014,1,1,121.0,1,37,37,9,9,114.4,1,0,1,1,1,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,136.0,1,1,38,4,5,132.2,0,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,1 +1,16,1,9070,0,1,145.0,1,1,1,3,3,146.1,1,0,1,1,1,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,2 +1,7,1,9085,0,40,140.0,1,5,3,2,2,140.0,0,0,0,1,0,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,0 +1,1,3,9085,0,1,126.0,1,38,1,9,9,132.0,1,0,1,1,1,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,146.0,1,1,37,9,9,129.3,0,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,131.0,1,37,37,9,6,127.2,0,0,1,1,1,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,139.0,1,37,37,9,9,124.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,133.1,1,37,1,5,4,151.2,0,0,1,1,0,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,170.0,1,38,19,9,2,160.6,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,131.0,1,37,37,9,6,130.7,0,0,0,1,1,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,2 +1,1,6,9500,0,1,122.0,1,19,37,3,5,116.6,1,0,0,1,0,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,1 +1,17,3,171,0,1,147.0,1,19,1,5,4,137.6,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,9,120.0,0,0,1,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,5,1,9130,0,1,157.0,1,5,43,2,2,149.7,1,0,1,1,1,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9003,0,39,160.0,1,3,1,2,6,160.0,1,0,1,0,1,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,140.0,1,9,19,4,4,131.2,0,0,1,1,0,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,1,130.0,1,1,3,2,6,110.0,0,0,1,1,0,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,1 +1,39,1,171,0,1,147.0,1,37,38,175,193,133.3,0,0,1,0,1,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,148.0,1,38,19,4,9,134.7,1,0,1,1,1,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,130.0,1,19,1,9,7,130.4,1,0,1,1,1,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,133.1,1,1,37,4,9,96.0,1,0,1,1,1,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,2 +1,39,1,9991,1,12,120.0,1,37,38,5,5,155.7,0,0,1,1,0,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,117.0,1,3,1,3,3,113.2,0,1,1,1,1,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,1 +1,17,2,9853,0,1,150.0,1,38,19,5,5,142.0,1,0,1,1,1,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,144.0,1,1,19,9,4,130.8,1,0,1,1,1,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,1 +1,17,4,9254,0,1,118.0,1,38,37,5,7,111.7,1,0,1,1,0,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,0 +1,1,6,9500,0,1,141.0,1,2,1,4,4,136.3,1,0,1,1,1,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,1 +2,39,1,9003,0,1,120.0,1,2,2,1,4,100.0,0,0,1,1,0,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,141.0,1,4,3,2,1,136.3,1,0,1,1,0,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,120.0,1,1,19,5,4,140.4,0,0,1,1,1,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,154.0,1,1,37,4,9,134.8,1,0,1,1,1,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,100.0,1,19,19,5,5,101.8,1,0,1,1,1,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,2 +1,17,3,9670,0,1,137.0,1,1,38,4,7,138.4,0,0,1,1,0,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,152.0,1,37,37,7,5,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,118.0,1,37,1,9,7,117.0,1,0,1,0,0,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,140.0,1,12,3,4,3,118.0,1,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9070,0,1,133.0,1,1,2,9,2,128.8,0,0,1,1,0,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,1 +1,39,1,171,0,1,140.0,1,37,37,9,9,100.8,0,1,1,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9070,0,42,130.0,1,40,19,3,5,130.0,1,0,1,0,1,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,143.0,1,1,19,3,3,133.9,0,0,1,1,1,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,1 +2,1,5,9500,0,1,130.0,1,1,19,4,4,122.3,0,0,1,1,1,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,9,9,125.0,1,0,1,1,1,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,120.0,1,37,37,7,8,120.0,0,0,1,1,1,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,1 +1,1,2,9147,0,1,125.0,1,1,19,4,9,124.0,1,0,1,1,1,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,131.0,1,38,19,9,9,130.0,1,0,1,1,0,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,132.0,1,1,1,4,1,119.4,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9500,0,1,135.0,1,19,19,7,7,128.0,1,0,1,1,1,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,1 +1,39,1,9500,0,19,133.1,1,38,38,9,9,114.8,0,0,1,1,1,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,130.0,1,2,2,6,6,130.0,0,0,1,0,0,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,112.0,1,19,38,9,10,112.0,1,0,1,1,1,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,2 +1,39,1,9254,0,1,170.0,1,37,37,4,6,138.3,0,0,1,1,1,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,1 +1,39,1,9147,0,19,100.0,1,38,19,7,9,132.0,0,0,0,0,0,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,133.1,1,19,19,9,9,119.0,1,0,1,0,1,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,0 +1,17,2,9085,0,1,138.0,1,37,37,9,7,123.3,1,0,1,1,1,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,2 +1,39,1,8014,1,1,133.1,1,37,37,9,9,112.5,0,0,1,1,1,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,1 +1,51,1,9670,0,1,140.0,1,12,5,3,3,126.6,0,0,1,1,0,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,1 +1,51,1,9085,0,1,125.0,1,1,1,9,4,120.0,0,0,1,1,1,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,151.0,1,1,1,4,3,132.3,0,0,1,1,0,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,1 +1,43,1,9556,0,1,130.0,1,1,37,5,5,128.0,1,0,1,1,0,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,1 +1,17,6,9670,0,1,113.0,1,4,1,3,10,112.3,0,0,1,1,1,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,17,1,9773,0,1,125.0,1,37,37,5,7,120.1,0,0,1,1,1,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,1 +1,53,1,171,0,42,130.0,1,1,19,9,9,130.0,1,0,1,0,0,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,1 +1,51,1,33,0,1,121.0,1,19,37,5,7,118.6,0,0,1,1,1,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,131.0,1,37,37,90,90,137.0,0,0,1,1,1,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,150.0,1,19,1,4,4,137.8,0,0,1,1,1,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,1,140.0,1,37,37,5,6,128.5,0,0,1,1,1,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,130.0,1,37,2,9,4,126.5,1,0,1,0,0,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,0 +1,1,2,9238,0,1,147.0,1,19,38,9,8,135.8,1,0,1,1,1,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,106.0,1,19,37,9,7,109.5,1,0,1,1,1,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,110.0,1,37,37,9,10,140.0,0,0,0,0,0,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,105.0,1,19,37,8,8,102.6,0,1,1,1,1,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,2 +1,17,6,9147,0,1,133.0,1,19,38,5,6,123.2,1,0,1,1,0,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,2 +1,43,1,9670,0,1,160.0,1,34,34,99,99,100.1,0,0,1,0,0,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,0 +4,7,1,9500,0,40,130.0,1,37,37,3,3,130.0,1,0,1,1,1,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,2 +1,43,2,9853,0,1,118.0,1,19,1,5,4,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,2 +1,43,1,8014,1,1,117.0,1,37,37,9,9,100.0,0,0,1,1,1,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,0 +1,53,1,9238,0,42,130.0,1,1,19,5,5,128.3,0,0,0,0,1,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,0 +1,43,1,9130,0,1,127.0,1,19,38,4,5,120.7,1,0,0,1,1,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,38,37,9,4,150.0,1,0,1,1,0,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,1 +1,39,1,9238,0,1,133.1,1,37,29,0,4,120.5,0,0,1,0,0,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,121.0,1,37,19,9,9,141.4,0,0,0,0,0,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,120.0,1,38,37,9,7,108.0,0,0,1,1,0,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,153.0,6,37,37,9,9,131.8,1,0,1,1,1,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,153.0,1,38,19,9,5,138.5,1,0,1,1,1,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,1 +1,17,2,9254,0,1,107.0,1,12,19,5,5,102.8,1,0,1,1,1,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9238,0,1,135.0,1,1,19,7,7,126.6,1,0,1,1,1,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,124.0,1,1,19,123,103,113.9,1,1,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,144.0,1,37,37,7,9,126.8,1,0,0,0,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9556,0,1,120.0,1,37,37,9,4,150.0,0,0,1,0,1,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,0 +1,43,3,171,0,1,120.0,1,37,37,9,9,143.3,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,140.0,1,38,19,4,10,122.3,1,0,1,1,1,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,157.0,1,3,38,1,5,136.7,1,0,1,1,1,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,2 +2,39,1,9991,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,150.0,1,3,1,2,8,153.8,1,0,1,1,1,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,130.0,1,2,1,2,7,126.2,1,0,1,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,142.0,1,37,37,9,9,132.9,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,43,1,9238,0,1,124.0,1,1,1,3,1,118.8,1,0,0,0,1,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,1,19,4,5,100.0,0,0,1,1,0,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,2 +1,17,5,9238,0,1,122.0,1,37,37,7,5,112.9,1,0,1,1,1,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,97.5,1,0,1,1,0,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,171,0,1,140.0,1,1,3,3,3,138.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,132.0,1,1,1,3,3,119.4,1,0,1,1,1,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,1 +1,42,1,9500,0,1,100.0,1,3,19,2,8,153.0,0,0,1,1,0,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,2 +1,1,1,9254,0,1,123.0,1,38,37,5,5,125.1,0,0,1,1,1,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9130,0,1,133.0,1,38,38,5,8,120.4,1,0,1,1,1,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,1 +1,17,4,9773,0,1,129.0,1,3,1,2,7,132.5,1,0,1,1,0,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,2 +4,39,1,9003,0,19,133.1,1,37,37,9,9,110.0,0,0,1,1,0,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,133.0,1,3,1,9,3,123.2,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,137.0,1,38,19,9,5,129.3,1,0,1,1,1,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,123.0,1,3,1,2,9,127.6,1,0,1,1,0,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,2 +2,39,1,9085,0,19,133.1,1,19,19,9,5,101.0,1,0,1,1,1,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,116.0,1,19,19,7,7,111.1,1,0,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,1,1,9070,0,1,147.0,1,3,1,2,3,149.8,1,0,1,1,0,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,100.0,1,37,37,7,9,100.0,1,0,1,1,1,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,141.0,1,38,38,7,7,132.5,1,0,1,1,1,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,168.0,1,1,1,5,5,161.0,1,0,1,1,0,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,0 +5,39,1,9003,0,19,133.1,1,19,1,9,9,119.4,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,114.0,1,1,19,9,9,111.9,1,0,1,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,2 +1,39,1,9500,0,1,130.0,1,37,37,3,7,143.8,0,0,1,1,0,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,133.1,1,19,19,9,7,100.0,0,0,1,1,0,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,0 +1,17,3,9853,0,1,132.0,1,34,34,0,0,131.3,1,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,157.0,1,37,37,9,9,143.0,0,0,1,1,0,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,1 +5,42,1,9254,0,2,120.0,1,37,37,4,9,120.0,0,0,1,1,1,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,6,1,1,192,144,129.8,0,0,1,1,0,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,2 +1,1,2,9500,0,1,139.0,1,38,37,9,7,125.0,1,0,1,1,1,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,1 +1,17,4,9238,0,1,133.1,1,1,19,9,5,95.0,1,0,1,1,1,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,180.0,1,37,37,7,4,153.8,1,0,1,1,1,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,4,9773,0,1,133.0,1,1,19,9,9,119.7,1,0,1,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,1 +1,17,5,9500,0,1,124.0,1,3,38,2,1,119.8,0,0,1,1,0,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,133.1,1,37,37,9,9,148.2,1,0,0,1,1,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,2 +2,39,1,9991,1,19,133.1,1,37,37,9,7,114.8,0,0,0,1,0,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,133.1,1,1,19,4,8,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,180.0,41,37,37,9,9,152.7,1,0,0,0,0,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9085,0,1,130.0,1,19,19,90,7,115.8,0,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,161.0,1,38,37,5,5,154.4,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,148.0,1,1,38,4,5,148.7,0,0,1,1,0,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,19,38,9,7,131.3,1,0,0,1,1,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,122.0,1,1,1,4,9,112.9,1,0,1,1,1,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,1,4,9500,0,1,142.0,1,38,38,9,8,129.8,1,0,1,1,1,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,1 +3,39,1,9003,0,1,170.0,1,1,37,6,6,170.0,0,0,0,1,1,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,2 +1,1,2,9147,0,1,130.0,1,37,37,9,9,117.8,0,0,1,1,1,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9147,0,1,140.0,1,37,37,9,7,132.3,1,0,1,1,1,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,132.0,1,2,1,9,9,126.4,1,1,1,1,1,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,140.0,1,1,3,9,2,140.0,1,0,1,1,1,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,117.0,1,1,19,4,4,109.3,0,0,1,1,0,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,176.0,1,3,38,3,7,169.7,0,0,1,1,1,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,133.1,1,37,38,7,7,98.0,1,0,1,1,0,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,136.0,1,3,3,2,2,128.7,0,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,12,38,4,9,107.0,1,0,1,1,1,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,0 +1,17,1,9130,0,1,156.0,1,2,9,3,5,166.9,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,1 +1,17,1,9130,0,1,123.0,1,19,3,3,2,121.6,1,0,0,1,1,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,171,0,1,129.0,1,1,1,9,9,124.8,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9119,0,1,125.0,1,19,1,5,4,121.5,1,0,1,1,0,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,0 +1,17,1,9085,0,1,163.0,14,37,37,9,9,150.8,1,0,1,1,1,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,1 +1,7,2,9130,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,1,9085,0,1,135.0,1,1,2,9,1,134.3,1,0,1,1,1,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,19,37,6,6,120.0,0,0,1,1,1,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,1,130.0,1,37,37,9,7,133.0,1,0,1,1,1,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,143.0,1,1,19,4,6,135.0,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +4,43,2,9991,1,38,133.1,1,3,1,2,9,125.4,0,0,1,1,0,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,140.0,1,3,1,2,4,124.1,0,0,1,1,1,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,37,38,175,103,127.0,0,0,1,1,0,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,151.0,1,1,3,1,1,111.0,0,0,1,1,0,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,133.0,1,37,19,9,8,141.4,0,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,133.1,1,38,37,5,5,108.0,0,0,1,1,1,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,9147,0,1,118.0,1,3,19,2,4,113.8,1,0,1,1,1,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,1,1,3,5,141.7,0,0,1,1,1,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,42,1,9119,0,1,130.0,1,19,37,9,3,135.0,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,0 +4,39,2,9147,0,19,133.1,1,37,37,9,7,116.4,0,0,0,0,0,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,148.0,1,19,38,9,8,134.8,1,0,1,1,0,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,116.0,1,19,19,4,7,110.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,1 +1,1,5,9147,0,1,122.0,1,38,38,9,9,117.5,1,0,0,0,1,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,122.0,1,37,37,9,9,125.9,1,0,1,1,0,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,171,0,1,127.0,1,1,1,9,5,124.2,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9147,0,39,117.4,1,19,1,4,9,117.4,1,0,1,1,1,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,150.0,1,37,38,9,9,146.2,0,0,1,1,1,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,2 +1,17,1,9254,0,1,158.0,1,37,37,5,9,138.1,1,0,1,1,1,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,0 +1,7,1,9500,0,3,140.0,1,1,37,9,5,140.0,0,0,1,1,1,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,1 +1,44,1,9238,0,39,140.0,1,1,1,9,3,135.7,1,0,1,1,1,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +2,7,1,171,0,3,120.0,1,19,19,9,9,130.0,1,0,1,1,0,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,10,100.0,1,34,34,0,0,113.0,1,0,1,1,1,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,1 +1,1,1,8014,1,1,125.0,1,37,37,9,7,114.9,0,0,1,1,1,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,1 +1,18,6,9500,0,1,124.0,1,37,37,9,7,117.8,0,0,1,1,1,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,1 +1,1,1,9773,0,1,109.0,1,2,3,3,3,111.8,1,0,0,1,0,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,149.0,1,1,1,9,3,156.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +2,44,1,9119,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,2 +1,44,1,9130,0,39,120.0,6,4,4,3,6,120.0,0,0,0,0,1,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,0 +5,1,3,9085,0,1,133.0,1,19,19,4,7,119.7,1,0,1,1,1,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,2 +1,1,1,9085,0,1,127.0,1,37,37,9,9,122.8,1,0,1,1,1,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,171,0,39,140.0,1,1,1,9,9,140.0,0,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9773,0,1,132.0,1,1,1,4,9,124.3,1,0,0,1,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +4,39,2,9670,0,19,133.1,1,19,1,90,90,103.0,0,0,1,0,0,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,26,1,9147,0,2,133.1,1,34,34,0,0,121.5,1,0,1,1,1,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,143.0,1,19,38,9,6,131.5,1,0,1,1,0,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,1 +1,17,1,9147,0,1,123.0,1,1,19,3,4,122.0,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,171,0,1,133.1,1,3,1,2,3,141.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,19,37,9,4,120.0,0,0,1,1,1,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,1,1,3,3,125.7,1,0,1,1,1,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,121.0,1,37,37,5,5,118.9,1,0,1,1,1,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,1 +1,51,1,9500,0,1,129.0,1,37,38,3,3,137.8,1,0,1,1,1,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,144.0,1,3,1,2,4,134.9,1,0,0,1,1,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,0 +1,17,5,9254,0,1,113.0,1,1,1,2,3,110.2,1,0,1,1,0,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,1,133.1,1,1,19,4,5,120.0,1,0,1,1,0,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,0 +1,39,1,9254,0,19,133.1,1,19,1,9,5,97.0,0,0,0,0,0,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9500,0,1,126.0,1,1,19,6,7,115.5,1,0,1,1,1,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,1 +1,42,1,9853,0,1,141.0,1,37,19,9,3,133.0,0,0,1,1,1,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,0 +1,39,1,9085,0,19,133.1,1,19,19,4,9,139.9,1,0,1,1,1,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,43,2,9254,0,1,140.0,1,19,19,9,9,126.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,108.0,1,34,38,0,3,105.9,0,0,1,1,0,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,114.0,1,19,19,9,7,107.7,0,0,1,1,1,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,0 +1,17,1,171,0,1,130.0,1,3,1,9,9,126.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.1,1,19,37,0,0,137.0,1,0,1,1,1,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9119,0,1,117.0,1,1,2,3,2,119.8,1,0,1,1,0,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9147,0,1,115.0,1,1,37,4,9,117.1,1,0,0,1,1,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,130.0,1,12,19,4,5,118.5,0,1,1,1,1,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,34,37,5,5,120.4,0,0,1,0,1,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,0 +1,44,1,171,0,39,150.0,1,19,1,9,9,154.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,43,1,9147,0,1,140.0,1,37,37,6,6,122.9,0,0,1,1,1,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,0 +1,42,1,9070,0,1,100.0,1,3,2,2,2,115.9,0,0,1,1,1,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,2 +1,17,1,171,0,1,128.0,1,1,1,4,10,134.7,0,0,1,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,1,1,9,9,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,110.0,1,37,37,7,7,133.9,0,0,1,1,1,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,0 +1,43,1,9773,0,1,119.0,1,19,37,5,5,105.0,1,0,1,1,1,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,2 +2,43,1,9991,1,1,140.0,1,37,37,4,1,122.7,0,0,1,1,0,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,135.0,1,37,1,3,5,121.0,0,0,1,1,1,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,123.0,1,3,1,2,3,124.1,1,0,1,1,1,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,0 +1,17,1,9670,0,1,132.0,1,19,1,5,4,119.1,0,0,0,1,0,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,5,9254,0,1,130.0,1,37,38,9,9,122.7,1,0,0,1,0,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9147,0,1,117.0,1,1,38,8,9,117.0,1,0,1,1,0,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,140.0,1,19,19,9,6,135.4,1,0,1,1,1,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,162.0,1,37,37,9,6,132.0,0,0,0,1,0,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,139.0,1,19,38,4,9,128.5,1,0,1,1,1,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,0 +4,39,1,9991,1,1,130.0,1,38,19,9,7,148.0,0,0,1,1,1,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +5,43,1,9500,0,1,131.0,1,1,38,5,5,118.8,0,0,1,1,1,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,5,9238,0,1,126.0,1,38,1,9,5,125.7,1,0,1,1,1,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,1 +1,53,1,9085,0,42,140.0,1,1,1,4,3,140.0,1,0,0,1,1,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,128.0,1,1,1,4,5,120.8,1,0,1,1,1,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,139.0,1,37,37,9,6,133.5,1,0,1,1,1,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,150.0,1,38,38,4,1,150.0,1,0,1,1,0,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,9147,0,1,133.1,1,1,1,4,4,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9853,0,1,140.0,1,37,19,9,8,122.3,0,0,1,1,1,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,0 +1,43,1,8014,1,1,120.0,1,38,19,5,4,118.3,0,0,1,1,1,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,2 +1,7,1,9130,0,3,140.0,1,2,38,2,3,140.0,1,0,1,0,0,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,122.0,1,9,19,90,6,103.4,0,0,1,1,1,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,1 +2,39,1,9070,0,19,133.1,1,37,37,9,10,126.3,0,0,1,0,0,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,160.0,1,38,38,7,7,147.8,0,0,1,1,1,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,2 +1,39,1,9238,0,12,100.0,1,37,37,9,9,124.3,0,0,1,1,0,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,1 +1,18,2,8014,1,1,117.0,1,3,1,3,4,111.8,1,0,1,1,1,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,38,37,7,7,140.0,0,0,1,1,0,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,0 +1,43,1,9853,0,1,140.0,1,3,1,3,3,128.3,1,0,1,1,1,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,127.0,1,37,38,9,9,120.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,1,161.0,1,19,37,4,10,100.0,0,0,1,1,0,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,1 +1,16,4,9500,0,1,145.0,1,1,1,4,4,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,1 +1,7,1,9853,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,0 +1,1,2,171,0,1,127.0,1,2,19,5,5,139.6,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,148.0,1,19,19,4,4,133.8,0,0,1,1,1,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,140.0,1,19,19,1,1,129.5,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,171,0,1,129.0,1,37,37,9,9,122.0,1,0,1,0,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,1,12,3,10,131.6,1,0,1,1,1,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,130.0,1,38,37,3,6,135.6,1,0,1,1,1,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,0 +1,51,1,9991,1,39,120.0,1,1,4,4,10,118.1,0,0,1,1,0,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,0 +1,39,1,9853,0,19,133.1,1,19,4,9,4,116.0,1,0,1,1,1,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9238,0,1,133.1,1,1,37,8,9,118.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,4,9500,0,1,125.0,1,19,1,1,1,117.8,1,0,1,1,1,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,141.0,1,1,38,4,5,125.0,1,0,1,1,1,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,121.0,1,38,38,7,5,120.0,1,0,1,1,1,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,2 +1,17,3,9500,0,1,142.0,1,3,3,3,3,132.9,1,0,1,1,0,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,0 +1,44,1,9238,0,39,140.0,1,37,19,191,102,136.1,1,0,0,1,1,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,2 +1,39,1,9991,1,2,140.0,1,3,3,2,2,155.7,1,0,1,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9119,0,1,135.0,1,12,19,5,5,121.0,0,0,1,1,0,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,135.0,1,3,3,2,2,123.0,1,0,1,0,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,117.0,1,1,1,4,4,117.7,1,0,1,1,0,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +1,43,1,171,0,1,120.0,1,3,3,2,2,120.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,1,38,1,7,120.0,0,0,1,1,1,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,1 +1,17,3,9238,0,1,122.0,1,19,19,7,7,117.5,1,0,1,1,1,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,1,37,37,9,9,144.2,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +4,39,1,9500,0,1,140.0,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,131.0,1,19,19,9,9,139.8,1,0,1,1,1,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,127.0,1,3,3,2,5,100.0,0,0,1,1,1,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,2 +1,39,1,9085,0,1,133.1,1,3,19,2,9,110.0,0,0,1,1,1,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,0 +4,39,1,9500,0,19,133.1,1,38,1,9,4,120.0,0,0,1,1,1,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,1 +1,16,1,9085,0,1,150.0,1,3,3,2,1,153.5,1,0,1,1,1,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,153.0,1,19,37,9,9,153.7,0,0,1,1,1,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,130.0,1,19,19,3,8,131.8,0,0,1,1,1,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,1,2,9853,0,1,131.0,1,1,1,2,9,121.9,1,0,1,1,1,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,136.0,1,3,3,3,3,130.8,0,0,1,1,1,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,126.0,1,1,19,4,0,120.1,0,1,1,1,1,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +1,44,1,9003,0,1,120.0,1,3,2,2,6,120.0,1,0,1,1,0,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,2 +2,39,1,9130,0,19,133.1,1,2,1,2,9,157.0,1,0,1,1,0,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,1 +1,7,1,9853,0,3,150.0,1,19,19,4,5,150.0,0,0,0,0,1,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,51,1,9070,0,12,133.1,1,37,19,3,7,106.6,0,0,0,1,1,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,2 +1,1,2,9085,0,1,157.0,1,3,3,5,2,153.9,1,0,1,1,1,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,1 +1,1,2,171,0,1,117.0,1,1,19,3,3,121.6,1,0,1,1,1,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,1 +1,1,2,9147,0,1,113.0,1,38,38,9,5,107.4,1,0,1,1,0,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,2 +1,39,2,9147,0,12,133.1,1,19,38,9,9,120.0,1,0,0,0,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,152.0,1,37,37,9,9,139.0,1,0,1,1,1,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,138.0,1,1,19,9,9,124.0,0,0,1,1,1,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,1 +2,39,1,9853,0,1,110.0,1,37,37,9,9,95.5,0,0,0,0,1,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9130,0,1,150.0,1,19,19,4,4,130.0,0,0,1,0,0,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,3,9119,0,1,138.0,1,1,19,4,3,125.4,1,0,1,1,0,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,0 +1,17,6,9147,0,1,120.0,1,37,38,9,9,115.5,1,0,0,0,0,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,2 +1,1,3,9670,0,1,134.0,1,14,11,0,0,128.4,1,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,145.0,1,38,37,9,7,129.3,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,18,6,9500,0,1,126.0,1,37,37,5,5,122.8,1,0,1,1,1,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,133.0,1,1,1,4,4,129.2,1,0,1,1,1,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,0 +1,44,1,9070,0,39,120.0,1,1,19,4,7,120.0,0,0,0,0,0,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,136.0,1,19,38,9,9,121.7,0,1,1,1,1,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,126.0,1,1,1,9,10,126.7,1,0,1,1,1,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,1 +1,1,3,9085,0,1,134.0,1,38,19,9,5,129.1,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,133.1,1,1,37,9,9,117.0,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,5,9238,0,1,130.0,1,19,1,5,5,130.0,1,0,1,1,1,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,8014,1,40,140.0,1,19,37,5,9,148.0,0,0,1,1,1,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,137.0,1,3,38,1,9,131.4,0,0,1,0,0,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,0 +1,1,2,9670,0,1,123.0,1,1,38,7,7,120.6,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,139.0,1,3,1,2,7,124.0,1,0,1,1,1,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,0 +1,1,2,171,0,1,152.0,1,38,19,9,9,151.7,1,0,1,1,1,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,110.0,1,37,37,9,4,114.3,1,0,1,1,0,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,2 +1,51,1,9991,1,1,120.0,1,38,3,5,3,128.2,0,0,0,1,0,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,141.0,1,3,2,2,2,133.3,1,0,1,1,0,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,2 +1,5,1,171,0,1,137.0,1,3,19,1,10,144.7,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,2 +1,43,1,9003,0,1,130.0,1,37,1,5,4,130.0,0,0,1,1,0,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,0 +1,18,1,9773,0,1,135.0,1,1,1,3,3,129.8,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,150.0,1,38,38,9,8,150.0,1,0,1,1,0,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,1 +1,17,2,9773,0,1,150.0,1,1,1,4,5,130.8,0,0,1,1,0,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9773,0,1,123.0,1,1,1,4,7,125.1,1,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,1 +1,17,4,9119,0,1,129.0,1,34,36,0,5,118.9,1,0,1,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,0 +1,1,2,9500,0,1,144.0,1,38,37,9,9,128.8,1,0,1,1,0,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,130.0,1,38,38,9,9,150.0,0,0,0,0,0,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,128.0,1,1,1,7,7,120.5,1,0,1,1,1,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,2 +1,7,1,9500,0,3,140.0,1,3,1,4,4,140.0,0,0,1,1,1,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,134.0,1,19,19,1,1,120.4,1,0,1,1,0,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,147.0,1,1,38,4,8,141.1,1,0,1,1,1,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,126.0,1,3,1,5,5,125.7,0,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,1 +2,1,4,9853,0,1,134.0,1,37,37,5,7,122.5,0,1,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,148.0,1,38,38,4,9,131.6,0,0,1,1,0,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,0 +2,39,1,9085,0,9,133.1,1,1,1,4,4,120.0,1,0,1,0,0,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,0 +1,39,1,9254,0,1,150.0,1,3,1,3,4,122.3,0,0,1,1,0,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,125.0,1,19,37,3,7,126.8,0,0,1,1,1,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,2 +1,18,1,9670,0,1,128.0,1,19,3,9,7,120.0,1,0,1,1,1,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,160.0,1,2,1,4,4,137.3,1,0,1,1,1,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,1 +2,39,1,9238,0,42,170.0,1,19,38,8,8,159.5,0,0,1,1,0,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9773,0,1,143.0,1,1,1,4,9,144.1,1,0,1,1,0,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,9991,1,1,130.0,1,37,37,9,9,127.8,0,0,1,1,0,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,51,1,9147,0,1,130.0,1,19,38,9,8,115.7,0,0,1,1,0,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,2 +1,17,3,9773,0,1,135.0,1,1,19,5,7,135.0,0,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,135.0,1,1,1,9,9,133.3,0,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,6,9500,0,1,136.0,1,1,1,4,5,123.3,0,0,1,0,1,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,143.0,1,5,5,2,2,137.8,0,0,1,1,0,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,133.1,1,1,19,141,114,140.0,1,0,1,1,1,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,17,6,9670,0,1,117.0,1,38,19,0,1,114.6,0,0,1,0,0,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,133.1,1,1,19,4,10,145.8,0,0,1,1,0,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,129.0,1,1,37,4,9,118.2,0,0,1,1,0,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,1 +1,7,1,9500,0,3,130.0,1,37,37,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,1 +1,17,4,9670,0,1,135.0,1,38,38,9,7,127.0,1,0,1,1,1,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,126.0,1,1,1,90,90,119.0,1,0,0,1,0,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9773,0,1,120.0,1,1,38,5,5,121.4,0,0,1,0,1,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,136.0,1,1,38,9,9,130.8,1,0,1,1,1,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,131.0,1,19,37,9,9,123.8,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,144.0,1,19,19,9,9,142.6,1,0,1,1,1,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,126.0,1,38,38,7,8,126.7,1,0,1,1,1,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,3,171,0,1,125.0,1,37,37,5,10,120.5,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,7,1,9130,0,2,110.0,1,19,19,4,8,110.0,1,0,1,1,0,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,3,1,2,8,150.0,0,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,5,171,0,1,139.0,1,19,3,9,2,136.9,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,1,9147,0,1,100.0,1,38,38,5,5,101.8,1,0,1,1,1,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,2 +1,44,2,9238,0,39,150.0,1,3,19,4,9,147.0,1,0,1,1,1,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,39,1,9254,0,19,133.1,1,37,37,9,4,100.0,0,0,1,1,0,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,0 +1,17,1,9130,0,1,130.0,1,19,38,4,7,122.5,0,0,1,1,0,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,19,37,1,1,140.0,0,0,0,1,0,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,2 +1,17,1,9070,0,1,157.0,1,3,3,3,3,146.2,0,0,1,1,0,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,9500,0,1,150.0,1,37,19,8,4,130.8,0,0,1,1,0,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,133.1,1,19,19,7,7,130.0,1,0,1,1,1,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,150.0,1,19,1,9,8,150.0,1,0,1,1,0,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,127.0,1,1,19,7,7,121.8,1,0,1,1,1,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,2 +1,1,1,9853,0,1,148.0,1,19,19,5,7,141.7,0,0,1,1,1,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,130.0,1,1,19,9,9,133.4,0,0,1,1,1,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,123.0,1,37,38,3,3,122.0,0,0,0,1,0,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,2 +1,17,1,9070,0,1,132.0,1,37,38,9,7,138.0,0,0,1,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,146.0,1,2,19,3,9,130.3,1,0,1,1,0,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,1 +1,44,1,171,0,39,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,116.0,1,3,1,3,4,115.7,0,0,1,0,0,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,2 +1,1,1,9670,0,1,130.0,1,19,37,4,5,118.8,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,124.0,1,37,37,7,9,121.2,0,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,127.0,1,19,37,9,3,120.7,1,0,1,1,1,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +2,43,1,9070,0,2,140.0,1,37,37,6,6,140.0,1,0,1,1,0,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,1 +1,39,1,9500,0,1,100.0,1,3,1,2,5,121.3,1,0,1,1,1,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,2 +1,39,1,9991,1,19,133.1,1,37,37,9,6,105.3,0,0,0,1,1,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9670,0,1,155.0,1,1,19,4,8,134.7,1,0,1,1,1,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,15,1,9119,0,1,160.0,32,1,3,143,152,160.0,0,0,0,1,1,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,2 +1,53,1,9670,0,42,140.0,1,19,37,3,6,140.0,1,0,0,1,1,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,2 +1,1,6,9853,0,1,140.0,1,38,38,9,7,137.6,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,140.0,1,19,19,7,7,129.5,1,0,1,1,1,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,1 +1,39,1,9773,0,19,133.1,1,19,19,3,4,104.0,0,0,0,0,1,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,130.0,1,37,37,9,9,118.8,0,0,0,1,0,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,136.0,1,1,1,9,1,133.0,1,0,1,1,1,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,143.0,1,38,38,9,9,138.8,1,0,1,1,1,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,1 +2,39,1,9147,0,1,140.0,1,37,37,6,10,131.8,0,0,1,1,1,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,2 +1,39,1,9085,0,1,130.0,1,4,1,2,9,120.0,0,0,1,0,1,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,2 +1,1,4,9500,0,1,148.0,1,19,19,4,5,137.0,1,0,1,1,1,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,120.0,1,37,19,5,3,156.0,1,0,1,1,0,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,9853,0,1,133.1,1,12,1,4,0,134.8,1,0,1,1,1,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,122.0,1,1,1,9,8,120.3,0,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,156.0,1,19,38,9,5,170.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,3,171,0,1,129.0,1,38,37,9,3,127.3,1,0,0,0,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,142.0,1,38,38,9,10,127.0,1,0,1,1,1,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,150.0,1,38,19,3,3,120.1,0,0,1,0,1,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,141.0,1,37,37,9,9,126.7,1,0,0,1,1,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,43,3,9147,0,1,127.0,21,3,37,3,3,117.9,1,0,1,1,1,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,1,120.0,1,1,19,4,7,110.0,0,0,1,1,0,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,0 +2,42,1,9254,0,1,136.0,1,2,2,134,112,130.0,1,0,1,1,0,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,0 +1,18,1,9119,0,1,122.0,1,19,1,90,3,116.1,1,0,0,0,0,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9500,0,1,120.0,1,2,4,4,5,136.6,0,0,1,1,0,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,0 +1,18,1,9070,0,1,143.0,1,38,38,7,5,141.6,0,0,1,1,1,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,1 +1,43,1,9119,0,1,140.0,1,37,38,5,7,146.5,0,0,1,1,0,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,125.0,1,19,19,9,9,121.5,1,0,1,1,1,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,1,0,1,1,1,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,159.0,1,3,3,2,2,165.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,127.0,1,3,1,2,9,119.3,1,0,1,1,1,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,1 +1,17,6,9238,0,1,117.0,1,1,38,4,7,114.6,0,0,1,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9119,0,1,148.0,1,19,19,9,8,129.8,0,0,1,0,0,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,2 +1,17,4,9119,0,1,127.0,1,19,19,5,5,120.4,1,0,0,0,0,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,5,9500,0,1,144.0,1,19,1,5,3,141.0,1,0,1,1,1,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,1 +1,17,3,9556,0,1,126.0,1,19,19,9,4,119.0,1,0,1,1,1,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,0 +1,1,4,9119,0,1,126.0,1,3,19,2,9,123.6,1,0,1,1,0,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,120.0,1,1,2,144,123,125.3,0,0,0,1,0,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,2 +1,39,1,9070,0,1,130.0,1,1,19,4,4,110.0,1,0,1,1,1,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,140.0,1,37,37,90,5,115.5,0,0,1,0,0,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,130.0,1,38,38,9,9,120.0,0,0,1,1,1,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,0 +1,17,2,9853,0,1,141.0,1,3,1,1,5,130.2,1,0,1,1,1,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,2 +2,1,1,9500,0,1,156.0,1,1,1,9,10,135.5,0,0,1,1,1,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,1 +2,7,1,8014,1,3,170.0,1,19,19,4,4,170.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,2,9147,0,1,134.0,1,37,19,9,8,126.3,1,0,1,1,1,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,122.0,1,12,12,5,7,126.6,1,0,1,1,1,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,38,38,9,7,138.8,1,0,1,1,1,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,132.0,1,37,37,5,7,127.5,1,0,1,1,1,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,1 +1,16,2,9238,0,1,130.0,1,37,37,5,6,126.9,1,0,1,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,110.0,1,3,2,3,3,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,127.0,1,2,19,4,5,121.8,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,1 +1,39,1,9085,0,12,133.1,1,38,19,9,8,138.3,1,0,0,0,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +1,39,1,9147,0,19,133.1,1,3,1,3,5,153.2,1,0,0,1,1,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,37,19,5,9,130.0,1,0,1,1,1,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +2,39,2,9147,0,1,130.0,1,19,37,4,7,140.0,0,0,1,1,0,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,128.0,1,19,19,7,7,124.4,0,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,19,3,8,150.3,1,0,1,1,0,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,143.0,1,38,19,7,9,129.5,1,0,1,1,1,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,1 +1,42,1,9500,0,6,141.0,1,37,1,9,4,145.0,0,0,1,1,1,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,1 +1,17,1,9238,0,1,160.0,1,19,37,6,6,144.3,0,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,2,9238,0,1,133.1,1,19,19,4,5,120.6,1,0,1,1,1,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,37,19,9,3,116.5,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,127.0,1,1,1,3,4,130.2,1,0,1,1,0,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,4,9254,0,1,131.0,1,38,36,9,9,124.0,1,0,1,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,1 +1,1,5,9254,0,1,120.0,1,37,37,9,7,127.0,1,0,1,1,1,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,135.0,1,34,34,0,0,134.1,1,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9254,0,1,133.1,1,37,37,9,6,121.5,0,0,1,1,0,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,144.0,1,38,38,5,7,128.0,1,0,1,1,1,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,132.0,1,1,19,6,6,124.7,1,0,1,1,0,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,1 +1,17,2,9991,1,1,116.0,1,37,19,9,4,118.5,0,0,1,1,0,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,133.1,1,1,1,9,1,103.0,1,0,1,1,1,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,16,5,9085,0,1,134.0,1,19,37,8,8,123.9,1,0,1,1,0,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,2 +1,43,1,9773,0,1,114.0,1,37,38,9,5,107.4,1,0,1,0,0,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,38,37,5,7,120.0,1,0,1,1,1,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,135.0,1,1,38,4,6,122.1,0,1,0,0,0,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,0 +2,39,1,8014,1,1,150.0,1,37,37,7,5,143.0,0,0,1,1,1,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,1 +1,44,1,9991,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,1 +4,39,1,9238,0,19,133.1,1,37,37,9,10,103.5,0,0,1,0,1,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,126.0,1,19,38,9,9,132.0,1,0,1,1,1,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,125.0,1,1,1,7,3,143.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,39,1,9147,0,1,120.0,1,37,1,9,1,122.7,0,0,1,0,1,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +2,7,1,8014,1,3,124.4,1,37,34,0,0,130.0,0,0,1,1,1,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,1 +1,18,1,9085,0,1,106.0,1,1,19,3,5,104.6,0,0,1,0,0,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,2 +1,44,1,9119,0,39,160.0,1,3,38,2,3,160.0,0,0,0,0,0,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,148.0,1,3,19,2,5,130.0,0,0,1,1,1,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,2 +1,1,1,9130,0,1,133.0,1,1,37,9,9,123.2,1,0,1,1,1,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,17,5,9500,0,1,130.0,1,19,1,9,4,128.8,1,0,1,1,1,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,149.0,1,19,1,9,9,137.8,1,0,1,1,0,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,1 +4,43,1,9670,0,1,150.0,1,37,37,9,6,110.0,0,0,1,1,1,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,1 +2,39,1,9119,0,1,110.0,1,19,19,0,5,137.0,0,0,0,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9556,0,1,122.0,1,19,19,3,10,113.3,1,0,1,1,1,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,140.0,1,1,19,4,5,127.5,0,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,3,9070,0,1,128.0,1,37,37,5,5,124.5,1,0,1,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,1 +1,44,1,9085,0,39,150.0,6,5,4,1,1,150.0,0,0,1,1,1,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,131.0,1,38,37,7,7,127.2,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,130.0,1,37,37,9,6,126.5,1,0,1,1,1,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,1 +1,17,1,9119,0,1,116.0,1,19,37,90,5,116.7,1,0,1,1,0,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,0 +1,17,3,9853,0,1,140.0,1,38,38,5,7,126.7,1,0,1,1,1,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,0 +1,17,4,9238,0,1,129.0,1,37,37,9,8,117.1,1,0,1,1,0,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,144.0,1,19,19,9,9,130.5,1,0,1,1,1,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,124.0,1,19,1,7,10,116.0,1,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,122.0,1,1,19,4,4,127.3,1,0,0,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,12,12,4,1,155.3,1,1,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +2,15,1,9773,0,1,133.1,41,37,37,9,6,100.0,0,0,1,1,1,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,138.0,41,1,1,9,9,126.5,1,0,1,1,1,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,1 +1,18,6,9500,0,1,142.0,1,38,37,9,5,128.0,1,0,1,0,1,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,3,1,2,3,140.0,1,0,1,1,1,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,2 +1,42,1,9991,1,1,150.0,1,19,19,5,5,113.7,0,0,1,1,0,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,135.0,1,1,19,5,5,130.1,1,0,1,1,1,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,2,9254,0,1,120.0,1,19,1,9,8,117.2,0,0,1,1,0,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,130.0,1,19,19,9,7,119.5,1,0,1,1,0,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,133.0,1,1,1,4,5,136.2,1,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,15,1,9147,0,1,133.1,21,1,3,192,3,100.0,0,0,0,1,0,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,2 +1,1,1,9670,0,1,112.0,1,37,1,7,0,110.6,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9238,0,1,117.0,1,19,19,9,9,117.0,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9991,1,1,140.0,1,1,37,9,8,154.5,0,0,1,1,1,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,97.0,1,0,1,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,119.0,1,37,37,5,4,118.0,1,0,1,1,0,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,112.0,1,19,38,5,7,107.1,1,0,1,1,1,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,1 +2,18,2,8014,1,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,144.0,1,37,37,9,6,129.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,120.0,100,1,1,4,7,119.5,0,0,0,1,1,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,136.0,1,19,38,5,8,130.3,1,0,1,1,1,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,7,9,121.3,1,0,1,1,1,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,135.0,1,1,4,5,3,124.9,0,0,1,1,1,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,4,9670,0,1,128.0,1,38,38,3,7,121.0,1,0,1,1,1,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,15,1,9556,0,1,114.0,26,3,19,122,144,114.0,0,0,1,1,1,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,2 +1,17,2,9238,0,1,125.0,1,19,19,3,3,118.0,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,118.0,1,37,37,7,7,114.2,0,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,2 +1,17,1,9147,0,1,115.0,1,19,37,5,7,112.9,1,0,1,0,0,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,120.0,1,19,37,9,9,118.3,0,0,0,0,0,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9119,0,10,133.1,1,34,37,0,0,128.8,1,0,1,1,0,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,115.0,1,19,38,5,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,137.0,1,37,37,9,9,132.8,1,0,1,1,1,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9003,0,1,148.0,1,19,37,9,9,131.6,1,0,1,1,0,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9773,0,1,161.0,1,1,19,4,7,148.4,0,0,1,1,1,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,1 +2,43,1,9991,1,1,133.1,1,37,37,9,7,113.5,0,0,1,1,1,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,132.0,1,1,1,9,9,133.8,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,1,9254,0,1,125.0,1,37,37,9,9,122.9,0,0,1,1,0,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,123.0,1,3,1,9,3,121.3,1,0,1,1,1,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,2 +1,17,1,9991,1,1,154.0,1,38,38,4,5,134.1,0,0,1,1,1,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,2 +1,44,1,9130,0,39,140.0,1,19,19,5,5,140.0,1,0,0,0,1,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,2 +1,53,1,9085,0,42,170.0,1,1,19,4,7,170.0,0,0,1,1,1,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,1 +1,17,5,9147,0,1,131.0,1,19,38,3,10,119.8,1,0,1,1,1,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,141.0,1,19,19,9,9,126.0,1,0,1,1,1,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,1 +1,1,3,9500,0,1,137.0,1,19,19,5,4,131.5,1,0,1,1,1,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,118.0,1,19,1,9,3,113.5,1,0,0,1,1,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,100.0,1,37,37,99,99,100.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9130,0,1,120.0,6,1,3,9,2,120.0,0,0,0,1,1,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,2 +1,1,1,9147,0,1,127.0,1,19,19,5,5,129.8,1,0,1,1,1,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,134.0,1,37,37,9,9,129.8,1,0,1,1,1,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,121.0,1,37,37,5,9,116.5,1,0,1,1,1,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9070,0,1,117.0,1,19,37,5,5,131.0,1,0,0,0,0,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,125.0,1,1,38,9,7,119.8,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,5,9500,0,1,140.0,1,1,1,4,3,131.1,1,0,1,1,1,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,1 +1,1,5,9254,0,1,101.0,1,3,19,3,9,98.9,1,0,1,1,0,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,130.0,1,37,38,7,9,117.8,0,0,0,1,1,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,128.0,1,34,19,3,0,141.0,1,0,1,0,1,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,150.0,1,38,37,9,9,130.8,0,0,1,1,0,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,125.0,1,1,19,4,7,116.6,0,0,1,1,0,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,1 +1,43,1,9670,0,1,130.0,1,34,34,0,0,114.8,0,0,1,1,0,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,1 +2,42,1,9003,0,1,120.0,1,3,1,2,2,113.3,0,0,1,1,0,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +4,39,1,9991,1,1,133.1,1,37,37,5,5,138.7,0,0,1,1,1,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,0 +1,39,1,9238,0,1,140.0,1,34,34,0,0,114.0,1,0,1,0,1,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9991,1,1,133.1,1,37,19,3,10,136.1,0,0,1,1,0,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9070,0,1,110.0,1,37,37,7,7,110.2,0,0,1,1,0,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,150.0,1,4,5,4,2,150.0,0,0,1,1,0,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,2 +1,1,2,9119,0,1,149.0,1,38,38,5,5,141.0,0,0,1,1,0,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,2 +1,42,1,9085,0,39,150.0,1,1,1,4,7,150.0,1,0,1,1,1,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,1,38,4,9,131.7,1,0,1,1,1,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,42,1,9853,0,1,120.0,1,1,37,5,5,113.9,1,0,1,1,1,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9085,0,1,130.0,1,37,19,9,7,130.0,1,0,1,1,1,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,2 +1,17,4,9500,0,1,133.0,1,38,37,5,7,126.4,1,0,1,1,0,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,147.0,1,3,1,2,3,131.6,0,0,1,1,1,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,1 +1,39,1,9991,1,12,133.1,1,37,37,9,9,121.5,0,0,1,1,0,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,2 +2,1,1,9991,1,1,150.0,1,37,37,9,9,131.8,0,0,1,0,1,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,0 +1,43,4,8014,1,1,116.0,1,34,34,0,0,116.2,0,0,1,1,0,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,1 +1,44,1,9130,0,39,140.0,1,1,19,4,7,140.0,0,0,1,1,0,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,2 +1,17,1,9773,0,1,136.0,1,3,1,2,3,132.5,1,0,1,1,1,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,1 +4,39,1,9500,0,19,110.0,1,37,38,5,5,151.0,0,0,0,0,0,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,0 +1,17,2,9254,0,1,123.0,1,19,19,5,5,113.2,1,0,0,1,1,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,137.0,1,3,19,2,9,122.3,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +4,39,1,9254,0,1,120.0,1,37,19,9,9,131.0,1,0,1,1,0,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9556,0,1,123.0,1,19,19,4,9,113.8,1,0,1,1,1,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,150.0,1,3,37,4,7,139.5,0,0,1,1,0,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,145.0,1,38,37,3,9,138.4,1,0,1,0,1,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,2 +1,39,1,8014,1,1,140.0,1,37,37,9,7,122.0,1,0,0,0,0,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,0 +2,43,3,9991,1,1,120.0,1,37,37,9,9,128.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,6,9500,0,1,126.0,1,12,37,5,9,121.8,1,0,1,1,1,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,0 +2,39,1,9991,1,1,130.0,1,37,37,9,9,140.0,1,0,1,1,0,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,130.0,1,37,19,9,8,130.8,0,0,1,1,0,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,2 +1,1,3,9070,0,1,125.0,1,19,38,9,9,125.4,1,0,1,1,1,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,132.0,1,38,38,4,9,119.1,0,0,1,1,1,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,1 +4,7,1,9147,0,3,130.0,1,19,1,5,5,130.0,0,0,1,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,130.0,1,19,19,7,7,121.6,1,0,1,1,1,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9773,0,1,126.0,1,37,38,5,5,129.5,1,0,0,0,1,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,133.0,1,38,38,5,5,123.2,0,0,1,1,1,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,140.0,1,37,37,9,9,121.0,0,0,1,1,1,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,3,9500,0,1,131.0,1,37,37,9,9,118.0,1,0,1,1,1,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,2 +1,1,1,9670,0,1,120.0,1,38,19,4,8,115.1,0,0,1,1,1,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,2 +1,17,5,9773,0,1,111.0,1,19,12,7,3,115.9,1,0,1,1,1,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,135.0,1,1,19,9,7,123.5,1,0,1,1,1,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,37,4,9,130.0,1,0,1,1,1,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,2 +1,44,1,9119,0,39,130.0,1,3,19,3,4,130.0,0,0,1,1,0,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,2 +1,44,1,9147,0,39,130.0,22,2,37,2,8,130.0,0,0,0,0,0,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,119.0,1,37,37,9,6,119.0,0,0,0,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9500,0,1,142.0,1,38,37,9,8,130.8,1,0,1,1,1,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,136.0,1,38,1,9,4,129.7,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,1 +1,42,1,9003,0,1,140.0,1,19,19,4,4,140.0,1,0,1,1,0,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,19,133.1,1,1,19,4,10,114.0,0,0,1,1,0,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,0 +1,17,5,9670,0,1,125.0,1,19,30,7,7,118.4,1,0,1,1,1,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,2 +1,1,2,9500,0,1,135.0,1,19,19,9,10,122.9,1,0,1,1,1,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,100.0,1,37,37,9,9,108.0,1,0,1,1,0,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,127.0,1,37,37,9,9,119.3,1,1,1,1,0,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,133.0,1,38,19,9,10,125.0,1,0,1,1,1,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,116.0,1,3,3,3,3,110.1,1,0,1,1,0,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,133.1,1,1,1,5,8,123.0,1,0,1,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,144.0,1,37,37,9,3,150.5,0,0,1,1,1,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,133.0,1,3,1,2,4,130.2,0,0,1,1,0,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,116.0,1,38,37,9,6,109.7,1,0,1,1,1,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,1 +1,18,3,9853,0,1,128.0,1,38,37,5,9,116.8,1,0,1,0,0,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,150.0,1,37,37,4,9,132.1,1,0,0,1,1,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,160.0,1,1,19,4,6,155.7,1,0,1,1,1,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,130.0,1,19,1,9,9,131.9,0,0,1,1,1,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,126.0,1,3,3,2,2,121.1,0,0,0,1,1,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,133.0,1,38,38,7,7,147.0,0,0,1,1,1,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,137.0,1,37,37,9,9,126.2,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,149.0,1,38,37,5,5,137.1,1,0,1,1,1,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,143.0,1,2,37,1,1,133.2,1,0,1,1,1,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,2 +1,17,5,9070,0,1,122.0,1,19,38,5,7,119.6,0,0,0,0,1,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,137.0,1,19,38,9,9,127.2,1,0,1,1,1,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,110.0,1,1,1,4,4,125.9,0,0,1,1,0,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,130.0,1,1,38,5,9,118.1,0,0,0,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9853,0,1,130.0,1,37,19,9,5,102.5,0,0,1,1,1,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.0,1,19,1,9,1,122.2,0,0,1,1,1,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,39,140.0,1,3,3,2,2,140.0,1,0,1,1,1,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,134.0,1,37,38,9,9,120.3,1,0,1,1,1,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,1,1,37,4,7,110.0,0,0,1,1,0,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,0 +1,15,1,9085,0,1,133.1,41,3,3,4,2,101.3,0,0,1,1,1,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,113.0,1,1,1,5,4,106.7,1,0,0,1,1,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,0 +2,39,1,9991,1,19,133.1,1,37,37,5,5,111.9,1,0,1,1,0,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9853,0,1,134.0,1,19,38,4,8,122.1,1,0,1,1,1,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,0 +1,1,2,9853,0,1,133.0,1,19,37,4,9,130.2,1,0,1,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,127.0,1,19,19,5,5,160.0,0,0,1,1,0,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,1 +1,7,1,9500,0,3,130.0,1,37,38,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,140.0,1,19,38,7,7,136.5,1,0,1,1,1,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,1 +2,39,1,9773,0,19,133.1,1,37,37,9,6,110.0,0,0,1,0,1,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,0 +2,39,1,8014,1,1,120.0,1,34,34,99,99,101.8,0,0,1,0,1,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,135.0,1,1,1,4,7,129.8,1,0,1,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,131.0,1,37,38,5,5,128.9,0,0,1,1,1,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,1 +1,1,4,9070,0,1,139.0,1,3,19,1,5,138.3,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,6,9500,0,1,122.0,1,1,1,3,7,114.3,1,0,1,1,0,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,2 +1,1,1,9500,0,1,150.0,1,37,37,9,7,136.5,1,0,1,1,1,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,3,1,2,8,121.4,0,0,1,1,0,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,117.0,1,19,19,194,193,117.4,1,0,1,1,1,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,2 +2,39,1,9085,0,1,133.1,1,36,36,99,5,128.2,0,0,1,0,1,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,121.0,1,3,1,2,3,114.0,0,0,1,1,0,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,2 +1,51,1,9853,0,1,139.0,1,1,1,4,10,134.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9070,0,1,137.0,1,1,1,3,1,141.2,1,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,133.1,1,37,37,6,3,140.0,0,0,0,1,0,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,1,9147,0,1,126.0,1,37,37,4,7,116.9,0,0,1,1,0,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,2 +1,44,1,9130,0,39,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +2,43,1,9991,1,1,130.0,1,37,37,9,9,128.2,0,0,1,1,1,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,131.0,1,19,9,5,3,118.4,0,0,1,1,1,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,138.0,1,19,19,3,3,131.0,1,0,1,1,1,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,1,130.0,1,37,12,9,8,129.4,1,0,0,0,0,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,9991,1,1,134.0,1,37,37,9,9,113.7,0,0,1,1,1,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,5,9853,0,1,117.0,1,38,38,9,7,114.6,1,0,1,1,1,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,145.0,1,3,3,4,4,153.1,1,0,1,1,1,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,2 +1,43,1,9085,0,1,130.0,1,19,38,4,9,130.0,1,0,1,0,1,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9119,0,1,146.0,1,37,37,9,9,148.5,1,0,1,1,0,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,136.0,1,1,1,4,4,124.1,0,0,1,1,1,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,100.0,1,37,38,9,4,140.0,0,0,1,1,0,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,2 +1,44,1,9003,0,39,180.0,1,1,3,4,2,180.0,0,0,1,1,1,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,1 +1,15,1,9773,0,1,120.0,26,19,19,4,5,120.0,1,0,1,1,1,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,141.0,1,4,19,4,10,100.0,0,0,1,1,0,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,1,150.0,1,29,10,6,6,150.0,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,5,5,9254,0,1,122.0,1,1,37,9,7,119.6,1,0,1,1,1,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,128.0,1,19,38,9,7,124.2,1,0,1,1,0,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9130,0,1,172.0,1,19,19,9,9,163.3,1,0,1,1,1,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,129.0,1,38,37,5,5,142.0,1,0,1,1,1,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,100.0,1,1,3,9,10,120.0,0,0,0,0,0,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,1 +1,1,3,9238,0,1,135.0,1,1,12,9,10,121.0,1,0,1,1,1,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,136.0,1,2,2,3,3,120.0,1,0,1,1,0,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,2 +1,1,6,9147,0,1,143.0,1,38,37,9,9,128.7,1,0,1,1,0,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,2 +1,17,2,9500,0,1,126.0,1,37,37,7,7,126.2,1,0,1,1,1,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,2 +1,17,2,9254,0,1,135.0,1,19,19,4,3,135.0,1,0,1,1,0,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,2 +1,1,2,9254,0,1,132.0,1,1,19,9,9,129.9,1,0,1,1,1,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +2,39,1,8014,1,1,120.0,1,34,34,0,0,104.0,0,0,1,1,1,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,0 +2,39,1,8014,1,9,133.1,1,37,37,8,10,100.0,1,0,1,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,43,1,9147,0,1,130.0,1,19,37,7,10,138.0,0,0,1,1,1,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,1 +1,17,2,9119,0,1,120.0,1,1,19,9,8,117.2,0,0,1,1,0,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,133.1,1,1,12,4,5,116.5,0,0,1,1,0,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,105.0,1,19,19,6,6,106.1,1,0,1,1,1,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,118.0,1,1,19,4,8,118.7,0,0,1,1,0,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,6,9500,0,1,140.0,1,3,19,3,8,129.0,1,0,1,1,1,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,168.0,1,19,19,4,4,171.2,0,0,1,1,0,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,133.0,1,19,9,0,0,121.5,1,0,1,1,1,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,177.0,1,1,38,3,9,162.3,0,0,1,1,1,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,130.0,1,38,38,2,9,124.8,0,0,1,1,1,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,136.0,1,38,1,5,6,133.9,1,0,1,1,1,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,154.0,1,1,1,5,3,144.9,0,0,1,1,0,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,1 +1,44,1,9119,0,39,150.0,1,19,37,9,9,150.0,1,0,0,1,0,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,0 +1,1,4,9254,0,1,132.0,1,12,19,9,9,124.7,1,0,1,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,33,0,1,100.0,41,38,37,9,8,100.0,0,0,0,0,0,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9085,0,1,120.0,1,4,1,2,9,113.4,0,0,1,1,1,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,134.0,1,1,19,9,9,136.1,1,0,1,1,1,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9500,0,1,150.0,1,1,19,5,3,140.0,0,1,1,1,1,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,129.0,1,37,37,9,9,128.8,1,0,1,1,1,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +2,39,1,9500,0,1,100.0,1,37,38,4,4,130.0,0,0,1,1,0,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,2 +1,1,1,9773,0,1,140.0,1,19,37,9,6,135.8,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,7,1,9085,0,40,150.0,1,19,19,9,5,150.0,0,0,0,0,1,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9500,0,1,148.0,1,1,37,4,8,132.0,1,0,1,1,1,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,1 +1,7,1,9119,0,40,140.0,1,3,1,2,5,140.0,0,0,1,1,0,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,163.0,1,19,1,9,7,143.1,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,3,9070,0,1,164.0,1,1,1,5,3,161.2,1,0,1,1,1,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,1 +1,1,6,9773,0,1,141.0,1,30,37,7,7,128.4,1,0,0,0,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,0 +1,43,2,9147,0,1,126.0,1,1,19,3,3,100.0,1,0,1,1,0,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,171,0,1,141.0,1,19,19,5,10,135.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,4,9670,0,1,117.0,1,3,3,4,4,113.2,0,0,1,1,0,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +2,43,1,9991,1,3,140.0,1,37,19,9,4,140.0,0,0,0,1,1,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,134.3,0,0,1,1,0,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,137.0,1,38,19,9,7,125.1,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,130.0,1,37,37,9,6,134.0,0,0,1,1,1,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,123.0,1,37,37,7,7,119.7,0,0,1,1,0,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9147,0,1,120.0,1,37,37,9,9,104.7,1,0,1,1,0,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9238,0,1,137.0,62,1,1,9,9,129.3,0,0,1,1,1,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,8014,1,1,122.0,1,37,19,9,9,123.8,0,0,1,1,1,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,1 +2,39,2,8014,1,1,100.0,1,34,34,0,0,100.0,1,0,1,1,1,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,1 +2,1,1,9991,1,2,120.0,1,37,37,6,3,129.2,0,0,1,1,1,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,150.0,1,3,19,2,6,150.0,0,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9991,1,1,123.0,1,1,3,4,2,113.2,0,0,1,0,0,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,0 +1,1,3,9773,0,1,130.0,1,1,37,4,5,120.9,1,0,0,1,1,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,146.0,1,19,3,4,9,127.0,0,0,1,1,0,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,44,1,171,0,39,160.0,1,19,38,9,9,160.0,1,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9085,0,39,150.0,1,38,37,6,6,150.0,1,0,1,1,1,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,1 +1,17,2,9254,0,1,136.0,1,19,19,4,7,123.1,1,0,1,1,1,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +2,39,1,9670,0,1,150.0,1,37,19,9,4,135.6,0,0,1,1,1,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,1 +1,1,6,171,0,1,134.0,1,19,37,5,5,126.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +4,39,1,9773,0,38,133.1,1,19,19,7,9,133.0,0,0,1,1,1,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,2 +1,17,2,9119,0,1,120.0,1,10,12,9,9,120.4,1,0,1,1,0,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,4,9254,0,1,113.0,1,38,19,7,7,107.4,1,0,1,1,1,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,137.0,1,1,19,4,5,136.3,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,142.0,1,37,37,9,7,132.7,1,0,1,1,1,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,1 +1,18,5,9085,0,1,121.0,1,5,3,2,3,111.9,1,0,1,1,1,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,9,133.1,1,34,36,0,90,107.5,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,8014,1,19,133.1,1,19,37,6,8,149.5,0,0,1,1,0,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9147,0,1,120.0,1,1,37,4,9,113.4,1,0,1,1,0,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,130.0,1,37,38,9,5,130.5,1,0,1,1,1,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,153.0,1,1,19,9,10,147.8,0,0,1,1,1,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,1 +1,1,1,171,0,1,159.0,1,3,1,4,4,162.2,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,122.0,1,37,37,5,6,114.3,0,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,2,9556,0,19,133.1,1,37,37,3,7,117.8,0,0,1,1,1,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,132.0,1,38,1,9,9,124.3,1,0,1,1,1,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,141.0,1,19,19,9,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,1 +1,17,1,9500,0,1,152.0,1,19,19,4,9,132.5,0,0,1,1,0,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,1 +1,17,1,9991,1,40,127.0,1,37,37,6,6,124.9,0,0,1,1,1,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,133.1,1,1,19,4,6,106.0,1,0,1,1,1,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,19,37,4,7,150.0,1,0,1,1,1,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,1 +1,1,1,9254,0,1,125.0,1,1,1,191,193,114.5,0,0,1,1,0,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,134.0,1,19,19,4,7,131.0,1,0,1,1,0,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,1 +1,1,2,9500,0,1,134.0,1,19,19,9,9,125.8,1,0,1,1,1,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,1 +1,17,1,171,0,1,125.0,1,37,37,7,9,134.1,1,0,1,1,0,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,0 +1,51,1,9254,0,1,120.0,1,38,38,9,9,118.0,0,0,1,1,1,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,155.0,1,1,1,4,3,140.5,1,0,1,1,1,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,125.0,1,1,1,4,90,125.4,1,0,1,1,0,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,1,5,5,126.3,0,0,1,1,0,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,1 +1,39,1,9147,0,1,140.0,1,37,3,9,2,135.1,0,0,1,1,0,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,5,171,0,1,122.0,1,19,12,5,9,127.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,2,9670,0,1,150.0,1,34,34,0,0,107.0,1,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,3,130.0,1,19,19,3,9,130.0,0,0,1,0,0,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,0 +1,39,1,33,0,1,133.1,1,19,37,9,9,96.1,0,0,1,1,0,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,0 +2,42,1,9500,0,2,130.0,1,37,37,9,9,130.0,0,0,1,1,1,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,1 +1,18,1,9238,0,1,137.0,1,19,38,5,8,137.4,1,0,1,1,1,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,2 +1,1,1,9254,0,1,140.0,1,19,1,9,8,140.9,1,0,1,1,1,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,132.0,1,1,2,9,3,128.2,1,0,1,1,1,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,17,4,9085,0,1,126.0,1,1,3,5,5,123.9,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,19,133.1,1,37,37,9,7,106.5,0,0,1,1,1,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,132.0,1,37,19,7,7,132.4,1,0,1,1,1,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,139.0,1,37,38,9,9,126.1,0,0,1,1,1,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,136.0,1,19,38,9,9,123.0,1,0,1,1,1,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,140.0,1,1,38,9,1,140.0,1,0,1,1,0,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,123.0,1,19,19,9,8,134.0,0,0,1,1,1,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,130.0,1,38,19,9,4,118.4,0,0,0,1,1,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,126.0,1,1,1,9,9,116.2,0,0,0,0,0,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,19,1,7,10,105.0,0,0,1,1,0,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,0 +1,17,1,9119,0,1,130.0,1,19,19,7,9,121.3,1,0,1,1,0,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,0 +1,43,1,9500,0,19,133.1,1,34,34,0,0,110.0,1,0,1,1,0,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,0 +1,1,3,9070,0,1,139.0,1,1,38,4,7,142.2,1,0,1,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,142.0,1,38,1,5,4,136.6,0,0,1,1,1,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,1 +1,17,2,9670,0,1,128.0,1,37,38,5,8,121.7,0,0,1,1,0,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,140.0,1,1,3,9,4,140.0,0,0,0,0,1,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,125.0,1,19,19,9,10,122.0,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,8014,1,1,130.0,1,37,37,9,8,103.5,0,0,1,1,1,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,1 +1,17,3,9085,0,1,117.0,1,19,38,5,7,111.1,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,42,1,9085,0,39,140.0,1,19,3,9,1,159.9,1,0,1,1,1,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,1 +1,1,2,9254,0,1,112.0,1,37,37,6,6,106.1,1,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9070,0,1,117.0,1,5,1,2,10,120.0,1,0,1,1,1,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,2 +1,7,1,9556,0,2,130.0,1,37,37,9,9,130.0,1,0,1,1,1,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,40,140.0,1,1,19,9,9,139.0,0,0,1,1,1,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,10,130.0,0,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,51,1,9070,0,1,135.0,1,3,1,3,5,121.8,0,0,1,1,1,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,135.0,1,19,3,9,4,121.5,1,0,1,1,1,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,136.0,1,19,38,4,8,125.5,1,0,1,1,1,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,142.0,1,3,37,4,8,132.4,1,0,1,1,1,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,142.0,1,34,38,4,7,127.3,0,0,1,1,1,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,1 +1,15,1,9147,0,1,130.0,26,1,1,2,3,130.0,0,0,1,1,1,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,17,2,8014,1,1,133.0,1,19,1,5,5,119.7,1,0,1,1,1,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,6,133.1,1,1,1,90,3,107.0,1,0,1,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,130.0,1,1,1,4,5,123.8,0,0,1,1,1,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9670,0,1,130.0,1,38,37,5,5,123.4,1,0,1,1,1,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,130.0,1,37,36,4,90,127.6,0,0,1,1,0,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +2,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,2 +1,1,5,9070,0,1,122.0,1,37,37,9,9,124.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,3,120.0,1,37,37,9,9,141.0,0,0,1,1,1,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,0 +1,43,1,33,0,1,134.0,1,37,37,1,1,100.0,1,0,1,1,0,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,0 +1,18,1,9773,0,1,125.0,1,19,37,9,5,122.2,0,0,1,0,1,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,113.4,0,0,1,1,1,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,142.0,1,19,39,5,4,141.7,0,0,1,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,137.0,1,1,38,5,8,125.8,0,0,1,0,1,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,141.0,1,1,37,4,3,126.8,1,0,1,1,1,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,1 +1,17,4,9500,0,1,133.0,1,4,4,4,4,130.7,1,0,1,1,1,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,1 +1,1,2,9500,0,1,119.0,1,1,1,4,4,115.2,1,0,1,1,1,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,128.0,1,1,1,4,10,118.9,1,0,1,1,1,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,130.0,1,37,38,7,8,119.3,1,0,1,1,1,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,148.0,1,3,1,4,5,132.8,0,0,1,1,1,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,1 +1,1,5,9500,0,1,143.0,1,37,19,4,4,123.3,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9147,0,1,130.0,1,34,34,99,99,109.8,1,0,1,0,0,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9085,0,2,140.0,1,38,38,9,10,150.0,0,0,1,1,0,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9670,0,42,110.0,1,1,19,9,9,114.2,0,0,1,1,0,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,1 +1,53,1,9147,0,42,140.0,1,3,4,2,1,140.2,0,0,1,1,1,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,145.0,1,19,38,9,7,136.3,1,0,1,1,1,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,38,37,9,9,154.4,0,0,1,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,127.0,1,38,38,9,6,122.8,0,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,120.2,1,0,1,1,0,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,124.0,1,3,1,2,5,121.6,0,0,1,1,1,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,2 +1,17,5,9853,0,1,132.0,1,37,38,5,6,119.1,1,0,1,1,1,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,1 +1,17,6,9670,0,1,110.0,1,1,19,4,10,111.3,0,0,1,1,0,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,120.0,1,38,37,9,9,114.8,1,1,1,1,1,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,140.0,1,19,19,9,3,130.0,0,0,1,1,0,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9254,0,1,120.0,1,37,37,9,9,115.1,1,0,1,0,0,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,142.0,1,1,37,5,7,128.0,0,0,1,1,1,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,168.0,1,37,1,9,4,133.4,1,0,1,1,1,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,1 +1,43,4,9085,0,1,133.1,1,34,34,99,99,125.2,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9147,0,1,123.0,1,1,1,9,7,117.4,1,0,1,1,1,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,1 +1,1,6,9119,0,1,135.0,1,2,1,3,5,123.5,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,2 +1,17,2,9254,0,1,118.0,22,19,37,9,9,110.3,1,0,1,0,1,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,126.0,1,1,19,4,4,116.9,0,0,1,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,117.0,1,1,38,3,9,109.3,0,0,0,0,1,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,0 +4,39,1,8014,1,1,133.1,1,37,37,9,8,113.0,0,0,1,1,1,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,1 +2,42,1,9991,1,6,123.0,1,37,37,9,9,123.0,0,0,1,1,0,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,2 +1,39,1,9003,0,1,100.0,1,37,37,9,5,110.0,0,0,1,1,1,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,127.0,1,37,38,9,5,131.2,1,0,1,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,110.0,1,37,37,9,7,112.5,1,0,1,1,1,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,126.0,1,19,37,7,5,119.4,0,0,1,1,1,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,121.0,1,1,1,4,3,120.5,1,0,1,1,1,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,134.0,1,1,1,3,3,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,3,9500,0,1,150.0,1,19,38,1,1,130.8,1,0,1,1,1,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,17,5,9119,0,1,124.0,11,4,12,2,9,119.5,1,0,1,1,0,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,117.0,1,19,1,4,7,112.1,0,0,1,1,1,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,2 +1,1,5,9500,0,1,132.0,1,37,37,7,7,120.3,1,0,1,1,1,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,1 +2,39,1,9119,0,1,110.0,1,37,37,90,5,150.0,1,0,1,1,0,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9773,0,1,130.0,1,38,37,5,3,122.3,1,0,0,0,1,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,0 +1,1,1,9556,0,1,118.0,1,19,38,9,9,116.3,1,0,1,1,1,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,120.0,1,3,3,3,3,111.6,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,131.0,1,37,19,9,9,134.5,1,0,1,1,0,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,2 +1,17,2,9556,0,1,133.1,1,37,38,9,8,106.0,1,0,1,1,1,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,2,110.0,1,37,37,9,9,112.9,0,0,1,1,1,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,0 +1,17,2,9773,0,1,126.0,1,19,38,9,8,118.7,1,0,1,1,1,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,140.0,1,1,1,3,3,127.6,1,0,1,1,1,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,163.0,1,19,1,5,10,146.6,1,0,0,1,1,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,39,151.0,1,19,37,4,7,151.0,0,0,0,1,1,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,165.0,1,19,37,5,5,142.3,0,0,1,1,1,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9773,0,19,133.1,1,19,1,7,9,115.0,1,0,0,0,0,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,0 +1,1,2,9556,0,1,130.0,1,1,38,3,8,119.5,1,0,1,1,1,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,1 +1,17,3,171,0,1,125.0,1,3,39,2,5,117.0,1,1,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,2,9147,0,1,133.0,1,19,1,5,10,121.8,0,0,1,1,0,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,2 +1,17,1,9119,0,1,131.0,1,1,3,9,10,123.7,1,0,1,1,0,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,148.0,1,37,38,9,8,133.0,1,0,1,1,1,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9254,0,1,120.0,1,3,19,3,9,114.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9773,0,1,114.0,1,1,1,9,9,111.6,1,0,1,1,1,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,115.0,1,38,1,9,8,118.5,0,0,1,1,0,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,2,5,127.0,0,0,1,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,117.0,1,1,1,4,7,109.3,1,0,1,1,1,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,1 +1,53,1,9085,0,42,140.0,1,19,38,9,9,138.2,0,0,0,0,1,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,125.0,1,1,1,3,3,114.5,0,0,1,1,0,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,1 +1,44,1,9147,0,39,130.0,1,19,1,9,3,130.0,0,0,1,1,1,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,145.0,1,38,19,4,9,127.9,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,128.0,1,37,37,9,8,124.3,1,0,1,1,1,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,1 +1,18,3,9070,0,1,138.0,1,38,37,9,7,125.1,1,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,17,5,9119,0,1,131.0,1,19,37,9,7,123.3,1,0,1,1,0,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,130.0,1,37,19,9,8,106.2,1,0,1,1,1,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,131.0,1,19,38,4,5,132.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,43,1,9003,0,1,120.0,1,37,37,5,9,120.0,1,0,1,1,0,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,132.0,1,4,39,2,2,136.6,1,0,1,1,1,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,2 +1,7,1,9500,0,40,170.0,1,1,1,9,4,170.0,0,0,1,1,1,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,1 +1,16,1,9003,0,1,147.0,1,1,37,4,9,140.7,1,0,0,1,1,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,125.0,1,1,1,4,8,115.6,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,150.0,1,37,37,9,6,138.5,0,0,1,1,1,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,1 +1,1,2,9991,1,1,143.0,1,5,1,4,4,131.5,0,0,1,1,0,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,9556,0,1,133.1,6,3,3,4,4,169.2,0,0,0,0,1,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,39,2,9556,0,1,133.1,1,1,1,9,10,100.5,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +1,17,1,9773,0,1,120.0,1,19,38,9,7,117.9,1,0,1,1,1,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,17,1,171,0,1,146.0,1,1,38,9,9,135.5,1,0,0,1,1,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,2 +1,1,3,9254,0,1,122.0,1,19,38,3,10,114.3,1,0,1,1,1,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,9130,0,1,130.0,1,2,3,9,1,117.6,0,0,1,1,0,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,2 +4,43,4,9991,1,12,133.1,1,37,37,9,9,153.0,0,0,1,0,1,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,18,2,9500,0,1,135.0,1,38,37,9,5,125.3,1,0,1,1,1,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,38,37,9,9,133.0,0,0,1,1,1,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,1 +1,17,1,171,0,1,129.0,1,38,37,4,6,128.0,0,0,1,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,128.0,1,2,19,2,4,123.3,1,0,1,1,1,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,130.0,1,19,3,4,2,159.0,0,0,1,1,1,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,1 +2,7,1,8014,1,3,130.0,1,19,38,3,7,130.0,0,0,1,1,1,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,116.0,1,19,37,3,3,109.0,1,0,1,1,1,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,123.0,1,1,1,3,9,116.7,1,0,1,1,1,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,144.0,1,19,19,4,4,130.7,1,0,1,1,1,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,42,1,9500,0,1,100.0,1,19,37,5,7,134.3,1,0,1,1,1,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,143.0,1,1,19,4,4,129.9,0,0,1,1,1,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,1 +2,39,1,9991,1,19,133.1,1,19,37,7,9,137.2,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9853,0,1,123.0,1,19,19,9,7,117.4,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,144.0,1,19,19,5,5,130.3,1,0,1,1,1,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,137.0,1,1,19,4,7,126.7,1,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,4,9773,0,1,124.0,1,3,12,2,9,137.0,1,0,1,1,0,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,135.0,1,37,37,9,8,123.0,1,0,1,1,1,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,123.0,1,38,37,9,7,120.6,1,0,1,0,1,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,0 +2,2,1,9147,0,2,120.0,1,37,37,9,9,120.0,0,0,1,0,0,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,103.0,1,1,3,2,2,100.6,1,1,1,1,1,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,126.0,1,3,1,2,8,123.9,1,0,1,1,1,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,2 +1,17,4,9500,0,1,136.0,1,3,3,2,2,132.5,1,0,1,1,1,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,114.0,1,3,29,3,5,111.9,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,125.0,1,19,1,9,9,130.6,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,147.0,1,37,38,9,5,134.8,1,0,1,1,1,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,131.0,1,1,19,9,9,130.3,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,118.0,1,3,1,2,5,110.0,1,0,1,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,130.0,1,19,19,4,10,116.8,0,0,1,1,1,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,1 +1,43,1,8014,1,6,133.1,1,34,34,0,0,100.0,0,0,0,1,1,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9670,0,12,170.0,1,1,37,3,5,110.0,0,0,1,1,0,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,1 +2,1,1,9991,1,3,160.0,1,1,3,4,9,137.3,0,0,1,1,1,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,108.0,1,19,1,5,5,107.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,121.0,1,3,3,2,2,112.3,1,0,0,0,1,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,0 +1,1,2,9773,0,1,138.0,1,19,1,9,3,133.5,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,136.0,1,38,38,9,9,121.7,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,0 +1,1,1,9500,0,1,132.0,1,38,37,9,7,122.0,1,0,1,1,1,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,1 +1,17,1,9003,0,1,125.0,1,3,3,2,2,100.0,0,0,1,1,0,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,137.0,1,1,1,1,5,131.8,0,0,1,1,1,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,140.0,1,37,37,9,9,148.0,1,0,1,0,0,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,127.0,1,3,1,3,7,137.2,1,0,1,1,1,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,150.0,1,37,19,9,9,150.0,0,0,1,1,0,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,1 +1,43,4,171,0,1,136.0,1,37,37,9,9,123.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,1,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,1 +1,1,1,9853,0,1,162.0,1,37,19,9,8,142.8,0,0,0,1,1,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,127.0,1,1,38,5,7,123.5,1,0,1,1,1,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,133.1,1,19,37,9,9,130.0,0,0,1,0,1,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,1 +1,17,2,9070,0,1,121.0,1,1,19,144,144,111.9,1,0,1,1,0,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,115.0,1,19,37,9,9,114.3,0,0,1,1,0,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,0 +1,10,1,9254,0,1,115.0,24,3,1,9,9,116.1,1,0,1,1,1,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,143.0,1,19,3,4,4,147.2,0,0,1,1,1,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,160.0,1,1,38,4,4,160.0,1,0,1,1,0,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,1 +2,1,1,9238,0,1,134.0,1,37,37,5,5,120.4,0,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,133.1,1,38,37,9,4,120.0,0,0,1,1,0,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,1 +1,18,1,9119,0,1,108.0,1,1,1,4,3,105.6,1,0,1,1,0,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,137.0,1,37,37,9,9,141.0,0,0,1,1,0,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9254,0,1,113.0,1,1,2,5,3,106.7,1,0,0,1,0,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,16,1,9085,0,1,140.0,1,1,1,9,9,127.1,1,0,1,1,1,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,1 +1,53,1,9238,0,42,140.0,1,37,37,9,10,136.9,1,0,1,1,1,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,1 +4,39,1,8014,1,19,133.1,1,37,37,9,7,134.5,0,0,1,1,1,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,1 +1,1,2,9773,0,1,125.0,1,19,1,4,5,122.2,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9070,0,1,134.0,1,1,19,3,3,127.7,1,0,1,0,1,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,17,1,9147,0,1,96.0,1,38,37,6,4,96.0,1,0,1,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,0 +1,10,1,9085,0,1,134.0,1,37,37,5,5,134.0,1,0,1,1,1,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,143.0,1,1,3,3,3,149.0,1,0,1,1,1,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,0 +1,18,3,9070,0,1,142.0,1,1,37,4,7,130.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,7,1,9003,0,3,140.0,1,3,19,2,10,140.0,0,0,1,0,0,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,151.0,1,38,37,9,5,138.4,1,0,1,1,1,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,143.0,1,19,19,4,4,135.3,1,0,1,1,1,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,133.0,1,1,19,9,9,132.0,0,0,1,1,0,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,19,133.1,1,37,37,9,5,135.5,0,0,1,1,1,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9254,0,1,134.0,1,37,37,9,9,133.3,1,0,0,1,1,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,0 +1,1,3,9085,0,1,135.0,1,3,2,4,3,121.0,1,0,1,1,1,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,140.0,1,1,1,4,4,123.5,1,0,1,1,1,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,188.0,1,3,3,2,2,178.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9238,0,1,126.0,1,30,19,0,2,121.5,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,131.0,1,3,19,5,5,127.2,1,0,1,1,1,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,1 +1,17,4,9853,0,1,143.0,1,37,37,9,5,127.3,1,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,0 +1,17,2,9238,0,1,111.0,1,19,38,9,9,110.7,1,0,1,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,140.0,1,19,38,9,7,125.7,1,0,1,1,0,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,2 +1,17,6,9500,0,1,126.0,1,19,37,3,9,119.4,1,0,1,1,1,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,131.0,1,1,1,4,9,122.3,0,0,1,1,0,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,128.0,1,1,19,9,8,100.0,1,0,1,1,1,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,138.0,1,19,19,5,1,130.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,1,140.0,1,3,3,1,1,140.0,1,0,1,1,1,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,3,130.0,1,1,19,5,9,130.0,0,0,1,1,0,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9773,0,1,131.0,1,38,1,5,7,131.0,1,0,1,1,0,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,19,133.1,1,19,19,9,7,140.0,0,0,0,0,1,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,133.1,1,37,37,9,9,126.5,0,0,1,1,1,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9500,0,1,132.0,1,37,37,9,7,128.3,1,0,1,1,1,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,1 +1,16,1,171,0,1,145.0,1,3,3,3,3,155.0,1,0,1,1,1,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,2 +4,1,1,9991,1,1,140.0,1,37,37,9,7,139.0,0,0,1,1,1,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,2 +1,17,2,9070,0,1,152.0,1,39,39,3,3,134.2,1,0,1,1,0,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,1,1,9500,0,1,141.0,1,19,19,7,9,139.8,0,0,1,1,1,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,1 +1,1,4,9670,0,1,133.0,1,1,2,4,7,121.1,1,0,1,1,1,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,1 +1,15,1,9147,0,1,135.0,26,1,1,9,7,135.0,0,0,0,1,0,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,2 +2,1,1,9991,1,1,144.0,1,19,19,9,9,151.4,0,0,1,1,1,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,1 +1,18,4,9853,0,1,118.0,1,19,37,9,6,111.4,1,0,0,0,1,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9500,0,1,134.0,1,38,1,9,6,133.5,1,0,1,1,0,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,37,37,9,6,107.0,0,0,1,1,0,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,141.0,1,38,38,9,9,128.4,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,133.0,1,1,1,9,9,128.5,1,0,1,1,1,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,1 +1,51,1,9085,0,40,120.0,1,3,3,4,2,125.0,0,0,1,1,1,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,150.0,1,37,38,3,7,134.5,0,0,1,1,1,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,127.0,1,3,19,4,4,116.9,0,0,1,1,0,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,136.0,1,2,38,143,163,129.7,1,0,1,1,0,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,2 +1,1,2,9773,0,1,159.0,1,1,1,3,3,151.0,1,0,1,1,1,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,165.0,1,37,38,9,8,152.4,1,0,1,1,1,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,1 +1,1,6,9500,0,1,139.0,1,1,1,4,4,124.5,1,0,1,1,1,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,134.0,1,1,1,5,3,128.4,1,0,1,1,1,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,1 +1,17,2,9238,0,1,133.0,1,2,1,3,4,136.2,1,0,1,1,1,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,120.0,1,19,1,8,7,115.1,1,0,1,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,131.0,1,1,39,5,3,122.6,1,0,1,1,1,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,8014,1,1,130.0,1,1,1,9,9,118.1,0,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,1 +1,39,9,9991,1,1,120.0,1,38,38,9,5,144.8,0,0,1,1,0,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9500,0,19,133.1,1,37,37,9,9,129.0,1,0,1,1,1,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,138.0,1,1,19,4,7,123.0,1,0,0,0,1,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,143.0,1,1,37,9,9,135.0,1,0,1,1,1,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,120.0,1,19,1,9,3,120.0,1,0,1,1,0,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,162.0,1,37,1,9,9,165.2,1,0,1,1,1,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,142.0,1,37,37,5,5,131.3,1,0,1,1,1,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,1 +1,1,3,171,0,1,125.0,1,38,37,4,9,115.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,120.0,1,38,37,5,3,110.5,0,0,1,1,1,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,1 +1,42,1,9773,0,6,120.0,1,34,34,0,0,122.0,1,0,1,1,1,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,162.0,1,1,38,4,5,138.6,1,0,1,1,1,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9500,0,1,152.0,1,1,1,4,4,141.0,1,0,1,1,1,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,139.0,1,3,19,3,5,120.8,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,135.0,1,1,1,3,5,130.1,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,1,9670,0,1,127.0,1,3,3,1,1,121.4,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9556,0,1,135.0,1,1,1,1,1,131.5,0,0,1,1,0,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,2 +1,17,3,9670,0,1,147.0,1,37,37,8,8,128.8,0,0,0,1,1,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,133.1,41,38,38,9,8,134.8,0,0,1,1,1,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,133.1,1,37,37,90,8,128.2,0,0,1,1,1,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,131.0,1,1,37,4,4,126.1,1,0,1,1,1,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,9,9,125.3,1,0,1,1,0,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,0 +2,39,1,8014,1,3,110.0,1,37,37,9,9,160.5,0,0,1,1,1,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,138.0,1,38,1,9,4,127.5,1,0,1,1,1,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,2 +1,39,1,9238,0,1,170.0,1,38,19,9,9,140.0,1,0,1,1,1,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,1,19,4,10,142.3,1,0,1,1,1,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,154.0,1,38,37,9,9,140.4,0,0,1,1,1,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,133.1,41,19,1,9,9,105.0,1,0,1,0,1,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +2,44,1,9085,0,39,160.0,1,37,37,192,192,160.0,0,0,1,1,1,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,141.0,1,38,38,9,9,142.3,1,0,1,1,1,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,119.0,1,37,37,7,7,112.0,1,0,1,0,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,137.0,1,37,37,9,9,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,1 +4,39,1,9670,0,1,100.0,1,37,37,4,10,120.0,0,0,0,1,1,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,130.0,1,3,3,2,2,131.1,0,0,1,1,0,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,120.0,1,1,19,9,3,116.9,1,0,0,0,0,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,42,1,9500,0,1,100.0,1,1,19,4,8,136.0,1,0,1,1,1,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,1 +1,1,2,171,0,1,125.0,1,38,19,9,9,117.3,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,152.0,1,1,38,4,9,160.4,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,12,133.1,1,37,37,9,7,139.4,0,0,0,1,1,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,2 +1,1,3,9070,0,1,150.0,1,1,1,4,8,131.5,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,7,1,9556,0,4,190.0,1,5,5,2,2,190.0,1,0,1,1,0,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,0 +1,17,3,9238,0,1,121.0,1,1,1,4,5,117.2,0,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,130.0,1,37,37,9,7,113.0,1,0,1,0,0,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,123.0,1,19,19,4,10,124.4,1,0,1,1,1,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,1 +1,17,2,9238,0,1,133.0,1,37,37,3,9,119.7,0,1,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,138.0,1,38,19,9,10,133.1,0,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,108.0,1,38,38,7,7,105.2,1,0,1,1,0,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,0 +1,1,3,171,0,1,115.0,1,9,1,6,6,108.7,1,0,1,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,4,4,119.8,1,0,1,1,1,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,1 +1,1,6,9119,0,1,126.0,1,19,19,7,3,116.6,1,0,1,1,0,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,1 +2,39,1,9500,0,1,133.1,1,37,37,9,9,130.1,0,0,1,0,0,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,124.0,1,37,38,9,3,114.2,0,0,1,1,1,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,1 +1,17,3,9147,0,1,137.0,1,1,1,4,7,124.4,1,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,2 +1,39,1,9130,0,19,133.1,1,37,37,9,10,156.4,1,0,0,1,0,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,0 +1,18,5,9853,0,1,121.0,1,38,19,7,7,117.5,1,0,0,0,1,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,1,2,9238,0,1,117.0,1,19,1,9,8,110.0,1,0,0,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9147,0,1,148.0,1,1,19,9,6,118.4,1,0,1,1,0,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,133.0,1,1,1,4,4,100.0,0,0,1,1,1,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,17,1,9238,0,1,158.0,1,1,1,5,6,140.5,0,0,1,1,1,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,157.0,1,19,38,9,7,146.2,1,0,1,1,1,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9119,0,1,131.0,1,3,1,4,1,135.9,0,0,1,1,0,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,38,37,5,10,117.8,1,0,1,1,0,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,1 +1,1,2,9119,0,1,126.0,1,1,38,141,192,122.5,1,0,1,1,0,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,117.0,1,37,37,0,4,120.5,1,0,1,1,0,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9254,0,1,110.0,1,12,19,9,9,125.0,0,0,1,0,0,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,0 +1,18,1,9147,0,1,121.0,1,19,3,5,5,115.8,1,0,1,1,1,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,1 +1,39,1,9238,0,19,133.1,1,37,37,9,9,139.0,0,0,0,0,0,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9003,0,3,130.0,1,3,3,6,2,130.0,1,0,1,1,0,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,132.0,1,19,37,3,5,125.4,1,0,1,0,1,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,133.1,1,38,38,4,7,115.6,1,0,1,0,1,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,129.0,1,1,2,3,1,125.9,1,0,1,1,1,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,37,37,9,9,143.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,126.0,1,3,19,3,3,115.2,0,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,123.0,1,19,38,9,10,116.7,1,0,1,1,1,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,1 +1,17,2,9254,0,1,125.0,1,37,37,9,8,122.6,1,0,0,0,1,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,39,1,9119,0,1,160.0,1,38,37,7,7,129.0,0,0,1,1,0,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,3,19,2,3,133.8,1,0,1,1,1,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,120.0,1,19,19,4,7,115.5,1,0,0,1,0,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,120.0,1,38,38,3,3,140.0,0,0,1,1,1,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9238,0,1,127.0,1,1,19,4,3,141.7,1,0,1,1,0,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,111.0,1,37,37,9,10,95.8,1,0,1,0,0,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,130.0,1,38,1,9,4,140.0,1,0,1,1,1,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,1 +1,1,2,9147,0,1,131.0,1,1,1,9,9,118.8,0,0,1,1,0,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,161.0,1,1,19,4,4,152.3,0,0,1,1,1,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,124.0,1,38,38,9,9,115.6,0,0,1,1,0,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,160.0,1,3,3,1,2,149.2,0,0,1,1,0,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,16,3,9853,0,1,134.0,1,19,37,9,9,121.1,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,2 +1,43,2,9991,1,1,140.0,1,37,37,5,5,124.3,1,0,1,0,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,127.0,1,38,37,5,7,123.9,1,0,1,1,1,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,120.0,1,19,37,6,8,160.0,0,0,1,1,0,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,1 +1,39,1,9085,0,1,133.1,1,3,3,4,2,144.9,1,0,1,1,1,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,130.0,1,1,19,3,10,130.0,1,0,1,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,1 +1,42,1,9003,0,1,130.0,1,3,2,2,6,105.3,0,0,1,0,0,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9991,1,1,130.0,1,37,37,9,9,127.6,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,100.0,1,1,38,4,6,104.8,0,0,0,0,1,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,0 +1,1,5,9070,0,1,125.0,1,3,3,2,2,140.8,1,0,1,1,0,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,133.1,1,34,38,0,4,147.0,0,0,1,1,1,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,126.0,1,34,34,0,0,142.4,0,0,1,1,1,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,121.0,1,19,38,4,10,114.4,0,0,1,1,1,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,133.1,1,37,37,5,0,111.5,0,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,130.0,1,1,19,5,5,129.1,1,0,1,1,1,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,3,1,4,6,130.0,0,0,1,1,0,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,2 +1,39,1,9500,0,1,123.0,1,19,1,1,1,140.8,0,0,1,1,1,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,1 +1,44,1,9070,0,39,130.0,1,1,1,4,10,130.0,1,0,1,1,1,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,1 +4,39,1,9085,0,1,133.1,1,34,34,0,0,128.2,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,128.0,1,37,37,9,9,135.7,1,0,1,1,0,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,135.0,1,38,38,4,7,121.7,1,0,1,1,1,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,2 +1,43,1,9085,0,1,110.0,25,38,38,9,6,117.2,1,0,1,1,0,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,1 +1,43,3,9500,0,1,140.0,1,1,19,9,7,127.5,1,0,0,1,1,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,1 +1,17,3,9238,0,1,133.1,1,41,1,2,3,117.0,1,0,1,1,1,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9254,0,1,112.0,1,37,37,9,9,108.5,0,0,1,1,0,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,51,1,9238,0,39,140.0,1,38,38,5,7,129.1,1,0,1,1,1,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,122.0,1,38,19,9,9,126.6,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,123.0,1,1,1,4,4,114.4,0,0,1,1,0,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,0 +1,18,4,171,0,1,133.0,1,1,4,9,5,129.2,1,0,0,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,128.0,1,19,19,9,5,121.7,1,0,1,1,1,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,1 +1,39,1,9130,0,1,150.0,1,19,19,9,5,160.0,1,0,1,1,0,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,160.0,1,19,37,5,3,152.0,0,0,1,1,1,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,53,1,9085,0,42,140.0,1,19,37,9,8,142.5,1,0,1,1,1,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,130.0,1,9,19,4,1,134.2,1,0,1,1,1,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,3,9254,0,1,121.0,1,19,19,9,6,125.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,1,128.0,1,19,1,9,10,157.4,1,0,1,1,1,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,146.0,1,37,37,9,7,149.2,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9853,0,12,133.1,1,37,37,7,8,103.0,0,0,1,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,143.0,1,19,19,5,6,142.3,0,0,1,1,1,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,2 +1,1,2,9085,0,1,118.0,1,1,19,3,3,112.4,1,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,2 +2,43,1,9991,1,1,100.0,1,37,37,9,9,128.2,0,0,1,1,0,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,118.0,1,38,38,5,5,110.0,0,0,1,1,1,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9147,0,1,136.0,1,38,38,9,9,127.3,1,0,1,1,0,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,170.0,1,19,19,8,8,176.7,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,124.0,41,19,38,9,9,123.3,1,0,1,1,1,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,1 +1,1,4,9070,0,1,170.0,1,3,3,2,2,165.8,1,0,1,1,0,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,3,37,9,9,142.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9147,0,1,122.0,1,1,38,4,5,116.4,0,0,1,1,0,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,150.0,1,1,1,4,4,138.1,1,0,1,1,1,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,2 +1,17,6,9238,0,1,138.0,1,3,3,1,2,123.0,1,0,1,1,1,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,135.0,1,19,12,9,7,137.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9070,0,1,125.0,1,1,3,3,3,128.9,0,0,1,1,1,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,128.0,1,38,19,9,10,125.2,1,0,1,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,2 +1,42,1,9003,0,1,140.0,1,1,3,4,2,140.0,1,0,1,1,0,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,2 +1,39,1,9500,0,19,133.1,1,37,38,151,161,143.7,0,0,1,1,1,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,118.0,1,38,38,7,7,115.2,1,0,1,1,1,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,152.0,1,19,37,9,8,135.6,1,0,1,1,0,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,12,110.0,1,34,34,0,0,157.8,0,0,1,1,1,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,1 +1,1,6,9147,0,1,112.0,1,38,38,9,9,117.3,1,0,1,1,1,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,1 +1,17,3,9147,0,1,118.0,1,1,19,5,7,118.0,0,0,1,1,1,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,2 +1,44,1,9070,0,39,120.0,1,1,19,5,8,119.8,0,0,1,1,0,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9670,0,1,133.1,1,19,19,3,9,118.0,0,0,1,1,0,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,159.0,1,1,19,9,9,151.3,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,118.0,1,1,38,5,7,120.8,1,0,1,1,1,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,132.0,1,1,37,8,9,128.0,1,0,1,1,1,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,1 +1,42,1,9147,0,1,135.0,1,19,1,4,4,120.0,0,0,1,0,0,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9670,0,1,122.0,1,1,38,3,3,114.3,1,0,1,1,1,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,171,0,1,131.0,1,1,1,0,3,149.9,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +4,39,2,9556,0,1,133.1,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,5,9119,0,1,126.0,1,12,19,4,5,122.5,1,0,1,1,0,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,145.0,1,2,38,3,8,136.3,1,0,1,1,1,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,2 +1,15,1,9147,0,1,150.0,1,38,1,9,1,150.0,0,0,1,1,0,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,150.0,1,3,39,3,7,126.4,0,0,1,1,0,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,2 +1,17,2,9773,0,1,148.0,1,3,38,2,6,144.2,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,124.0,1,37,19,9,3,116.3,1,0,1,1,1,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +2,39,1,9003,0,1,130.0,1,1,37,9,1,122.0,0,0,0,0,0,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,160.0,1,19,38,5,7,139.0,1,0,1,1,1,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,157.0,1,3,2,3,6,150.9,1,0,1,1,1,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,0 +1,42,1,9119,0,1,120.0,1,1,1,5,7,108.6,0,0,1,0,0,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,0 +1,16,3,9773,0,1,138.0,1,37,38,4,9,134.2,1,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,110.0,1,0,1,1,1,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,0 +4,39,1,9853,0,1,143.0,1,37,1,9,10,140.0,0,0,0,0,1,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,130.0,1,3,19,4,8,133.0,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,19,38,6,7,140.0,1,0,1,1,0,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,132.0,1,2,2,6,6,128.5,0,0,1,1,1,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,0 +1,1,2,171,0,1,135.0,1,19,19,4,7,149.0,1,0,1,1,0,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,130.0,1,19,38,3,9,126.5,1,0,1,1,1,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,125.0,1,19,38,9,8,121.5,0,0,1,1,1,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,37,37,9,7,129.0,0,0,1,1,1,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,0 +1,7,3,9130,0,3,130.0,1,37,26,90,10,130.0,0,0,1,0,0,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,2,9500,0,1,123.0,1,19,19,7,7,120.8,1,0,1,1,1,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,1 +1,18,2,9853,0,1,168.0,1,1,19,3,9,126.8,1,0,1,1,0,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,2 +1,44,1,9085,0,39,140.0,1,3,1,4,3,140.0,1,0,1,1,1,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,148.0,1,19,19,9,9,138.7,0,0,1,1,1,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,1 +1,18,1,171,0,1,110.0,1,19,2,5,5,117.7,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9070,0,1,136.0,1,37,38,9,9,125.2,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +2,39,1,8014,1,1,133.1,1,37,37,5,4,134.5,0,0,1,1,1,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,2 +1,42,1,9119,0,1,150.0,1,38,37,5,8,133.5,1,0,1,1,0,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,140.0,1,1,3,4,6,139.2,0,0,0,1,1,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,125.0,1,19,19,5,5,117.0,0,0,1,1,1,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,1 +1,39,1,9147,0,12,133.1,1,19,37,7,9,118.2,0,0,1,1,1,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,0 +1,1,2,9147,0,1,121.0,1,1,19,9,9,113.7,1,0,1,0,1,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,0 +1,43,1,9130,0,1,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,131.0,1,3,19,2,3,132.8,1,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,1 +1,17,3,9500,0,1,136.0,1,37,38,4,5,126.0,1,0,1,1,1,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,1 +1,1,1,9853,0,1,145.0,1,37,37,9,5,146.8,0,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,123.0,1,1,1,4,9,116.7,1,0,1,1,0,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,0 +1,18,1,171,0,1,121.0,1,1,1,4,3,116.8,1,0,1,1,1,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,141.0,1,38,1,9,4,129.0,1,0,1,1,1,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,133.1,1,34,34,0,0,130.0,0,0,1,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,126.0,1,1,3,4,3,122.5,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,0 +2,1,1,9254,0,1,136.0,1,37,37,9,9,122.7,0,0,1,1,1,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,37,37,9,10,100.0,0,0,1,1,0,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9500,0,1,133.1,1,38,19,7,9,115.5,1,0,1,1,0,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,1 +1,1,1,9991,1,1,131.0,1,19,37,9,9,118.4,1,0,1,1,1,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,2 +1,1,1,9147,0,1,153.0,1,1,38,4,3,146.7,0,0,1,1,1,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,1 +1,43,1,8014,1,12,114.0,1,34,34,0,99,110.0,0,0,1,1,1,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,147.0,1,1,1,5,5,134.9,0,1,1,1,1,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,1 +1,1,2,9085,0,1,156.0,1,40,40,3,7,150.9,1,0,1,1,1,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,137.0,1,38,38,5,7,122.7,1,0,1,1,1,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,123.0,1,1,19,4,5,117.8,0,0,1,1,0,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,2 +1,17,1,9238,0,1,135.0,1,37,37,8,6,127.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,131.0,1,37,37,9,9,123.0,1,0,1,1,1,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,2 +1,17,2,9670,0,1,123.0,1,3,1,3,1,116.7,0,0,1,1,1,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,1 +1,7,1,9085,0,40,140.0,1,1,19,5,5,140.0,1,0,1,1,1,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,1 +4,39,1,9500,0,19,133.1,1,38,19,5,7,140.0,0,0,1,1,1,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,127.0,1,3,19,3,9,127.0,1,0,1,1,0,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,1 +1,17,2,8014,1,1,120.0,1,19,1,5,10,114.8,1,0,1,1,1,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9670,0,19,133.1,1,37,37,9,7,130.0,0,0,0,1,0,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,171,0,1,131.0,41,19,1,4,7,131.4,1,0,1,1,0,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,16,2,171,0,1,145.0,1,3,3,2,2,143.6,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,120.0,1,19,38,6,6,120.0,1,0,1,1,0,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,1 +1,17,6,9238,0,1,131.0,1,1,3,4,2,131.7,1,0,1,1,1,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,137.0,1,3,1,4,9,128.6,0,0,1,1,1,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,170.0,1,19,19,9,7,170.0,1,0,0,1,0,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,17,4,9853,0,1,122.0,1,38,37,9,9,118.9,1,0,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,1 +1,17,5,9500,0,1,148.0,1,1,19,4,8,130.2,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9003,0,19,133.1,1,1,19,9,8,120.0,0,0,0,0,0,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,2,9147,0,1,143.0,1,19,38,9,7,132.2,1,0,1,1,1,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9556,0,1,132.0,1,38,37,7,7,119.0,1,0,1,1,1,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,133.1,1,3,1,4,4,95.0,0,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,154.0,1,3,1,2,1,137.2,0,0,1,1,0,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,2 +1,1,1,9853,0,1,129.0,1,38,37,6,6,138.1,0,0,1,1,1,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,17,2,9670,0,1,129.0,1,1,19,5,5,119.2,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,43,1,9500,0,1,137.0,1,3,3,2,2,115.0,0,0,1,1,1,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,1 +1,17,2,9254,0,1,115.0,1,19,19,9,7,113.3,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,133.0,1,38,38,7,7,125.3,1,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,110.0,1,37,37,7,10,150.0,0,0,1,0,1,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,19,133.1,1,19,19,144,141,131.5,0,0,0,1,1,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,133.0,1,38,1,2,4,126.0,0,0,1,1,1,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,15,1,9147,0,1,133.1,41,41,1,3,4,100.0,0,0,0,0,0,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,0 +1,10,2,9773,0,1,154.4,22,19,38,3,5,154.4,1,0,1,0,1,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,9070,0,39,100.0,1,1,1,4,4,106.0,0,0,1,1,0,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,135.0,1,38,19,8,8,126.3,1,0,0,1,1,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,120.0,41,1,1,9,6,114.8,1,0,1,1,1,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,2 +1,17,1,9085,0,1,124.0,1,19,38,7,7,113.9,1,0,1,1,1,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,1 +1,1,6,9254,0,1,126.0,1,38,37,5,7,123.9,1,0,1,1,1,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,125.0,1,37,37,9,9,121.5,1,0,1,1,0,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,1 +1,1,6,9773,0,1,125.0,1,1,1,5,4,122.2,0,0,1,1,0,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,135.0,1,19,19,4,5,126.8,1,0,1,1,0,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9238,0,1,133.0,1,1,37,7,9,127.4,1,0,1,1,1,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,3,9070,0,1,127.0,1,19,38,5,7,141.0,1,0,1,1,0,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +2,39,1,9119,0,3,120.0,1,37,37,4,7,122.5,0,0,1,0,1,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,2,9147,0,1,150.0,1,19,37,9,7,101.0,0,0,0,0,1,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,0 +1,7,1,9003,0,4,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,1 +1,17,5,9500,0,1,143.0,1,38,1,9,7,130.6,1,0,1,1,1,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,129.0,1,38,19,5,7,124.0,1,0,1,1,1,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,1 +1,17,2,9500,0,1,140.0,1,1,1,5,10,128.5,1,0,1,1,1,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,2 +4,39,1,8014,1,19,100.0,1,1,37,9,1,111.5,0,0,1,1,0,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,0 +2,39,2,9556,0,1,110.0,1,19,38,9,9,112.8,0,0,1,1,1,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,2 +1,1,1,9147,0,1,116.0,1,19,19,5,8,127.9,0,0,0,0,1,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,0 +1,43,4,171,0,1,117.0,1,19,12,9,10,109.3,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,130.0,1,1,38,5,5,122.3,1,0,1,1,1,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,1 +1,15,1,9119,0,1,130.0,26,38,3,9,2,137.0,1,0,1,1,0,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,2 +1,39,1,9556,0,1,133.1,1,38,19,9,6,100.0,1,0,1,1,1,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,150.0,1,3,1,3,9,154.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,43,1,9147,0,1,131.0,1,3,19,2,9,126.1,0,0,1,1,1,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,2 +1,1,6,9773,0,1,145.0,1,1,19,4,4,131.0,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,136.0,1,19,38,4,7,140.9,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,155.0,1,19,37,4,5,117.5,0,0,1,1,1,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,2 +1,1,3,9147,0,1,128.0,1,3,3,5,10,116.5,0,0,1,1,0,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,17,4,9254,0,1,133.0,1,37,37,5,8,128.5,1,0,1,1,1,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,0 +1,17,1,9119,0,1,141.0,1,37,1,9,2,133.0,1,0,1,1,0,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,2 +1,51,1,8014,1,1,120.0,1,1,1,4,4,128.5,0,0,0,0,0,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,0 +1,43,1,9003,0,1,120.0,1,3,3,1,2,115.0,0,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,136.0,1,19,19,4,7,136.0,0,0,1,1,1,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,1 +1,17,1,9070,0,1,116.0,1,38,38,9,9,123.7,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,125.0,1,19,19,4,8,117.0,1,0,1,1,1,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,135.0,1,1,38,5,7,137.5,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,140.0,1,19,19,7,7,124.6,1,0,1,1,1,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,2 +1,39,1,9670,0,19,133.1,1,1,1,4,7,100.0,0,0,0,0,1,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,122.0,1,37,37,9,9,131.0,1,0,1,1,1,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,0 +2,43,1,9773,0,1,160.0,1,37,37,5,0,160.0,0,0,0,0,0,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9670,0,1,113.0,1,37,19,9,9,110.2,1,0,1,1,1,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,125.0,1,37,37,9,9,126.0,1,0,0,1,1,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,1 +1,43,1,171,0,39,140.0,1,38,37,9,7,140.0,0,0,1,0,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,16,3,9853,0,1,134.0,1,37,19,9,5,121.4,1,0,1,1,1,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,2 +1,1,1,8014,1,1,120.0,1,1,37,7,3,122.8,0,0,1,1,1,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,1,1,4,2,127.7,0,0,1,1,1,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,2 +2,39,1,9991,1,1,120.0,1,19,37,3,9,132.9,0,0,1,1,0,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,138.0,1,1,38,4,9,132.5,1,0,1,1,1,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,133.1,1,19,37,7,7,126.0,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +5,39,1,9500,0,1,110.0,1,38,38,9,9,110.0,0,0,1,0,1,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,0 +5,7,1,9500,0,40,150.0,1,37,37,4,9,150.0,0,0,1,1,1,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,1 +1,17,1,9070,0,1,126.0,1,19,38,9,7,118.7,0,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,16,4,9254,0,1,126.0,1,38,37,9,7,118.7,1,0,1,1,1,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,3,9773,0,1,110.0,1,19,19,5,5,105.5,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,1 +1,39,1,9238,0,9,133.1,1,34,34,0,0,118.0,0,0,1,1,1,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,140.0,1,3,2,4,6,133.4,1,0,1,0,0,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,2 +1,1,1,171,0,1,134.0,1,3,2,2,2,141.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,6,9773,0,1,133.1,1,1,1,90,90,129.6,0,0,1,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,133.1,1,38,19,5,6,138.0,0,0,0,1,0,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,2 +1,17,3,9500,0,1,156.0,1,19,37,4,9,132.3,1,0,1,1,0,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,1 +1,44,1,9085,0,39,140.0,1,3,3,4,2,140.0,1,0,1,1,1,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,1 +1,43,1,171,0,1,116.0,1,3,1,2,3,117.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,141.0,1,38,19,9,6,126.3,1,0,1,1,1,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,44,1,9238,0,39,140.0,1,1,19,191,102,143.0,0,0,1,1,1,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,1 +1,43,5,8014,1,1,110.0,1,34,34,0,0,110.0,0,0,1,1,0,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9238,0,1,143.0,1,1,11,4,3,128.0,1,0,1,1,1,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +3,17,1,9238,0,1,138.0,1,37,37,9,9,133.5,1,0,1,1,1,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,2 +1,7,1,9119,0,3,150.0,1,3,2,2,2,150.0,0,0,1,1,1,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9003,0,39,150.0,1,19,1,1,1,150.0,0,0,1,1,0,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,2 +1,17,1,9085,0,1,134.0,1,19,37,2,7,131.2,0,0,1,1,1,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,171,0,1,133.1,1,37,37,9,7,100.0,0,0,0,1,0,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,18,1,9556,0,1,133.1,1,3,19,2,8,106.0,1,0,1,1,0,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,1 +1,17,2,9500,0,1,135.0,1,19,19,9,4,129.8,1,0,1,1,1,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,1 +1,39,1,33,0,1,130.0,1,38,37,9,6,102.5,0,0,0,0,0,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,0 +1,18,1,9500,0,1,144.0,1,37,37,6,6,127.5,1,0,1,1,1,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,130.0,1,37,38,9,9,133.9,1,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,1 +2,44,1,9003,0,39,140.0,1,37,37,4,7,140.0,0,0,1,1,0,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,0 +1,1,4,9773,0,1,137.0,1,3,19,2,3,139.8,1,1,1,1,1,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,2 +1,1,1,9991,1,1,130.0,1,2,37,3,9,131.4,0,0,1,1,0,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,135.0,1,3,3,1,1,125.8,1,0,1,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,1 +1,18,1,9238,0,1,147.0,1,38,34,4,0,130.2,0,0,1,1,1,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +5,17,5,9500,0,1,143.0,1,37,38,5,8,133.5,1,0,1,1,1,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,99.0,1,1,3,5,10,100.0,1,0,1,1,0,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,1 +1,16,2,9147,0,1,131.0,1,37,37,9,9,135.9,1,0,1,1,0,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,146.0,1,38,37,6,6,143.9,0,0,1,1,1,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,1 +1,17,1,9085,0,1,139.0,1,38,38,5,3,136.2,0,0,1,1,1,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,153.0,1,3,1,2,8,137.6,1,0,1,1,1,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,17,2,9085,0,1,133.1,1,19,38,9,1,100.0,1,0,0,0,0,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,0 +1,1,2,9773,0,1,121.0,1,19,19,9,9,122.8,0,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,141.0,1,37,38,9,10,138.9,0,0,1,1,1,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,1,6,9500,0,1,117.0,1,4,12,5,9,119.8,1,0,1,1,1,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,1 +1,17,4,9119,0,1,122.0,62,1,1,191,171,121.0,1,0,1,1,0,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,38,19,3,3,98.6,0,0,1,1,1,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,140.0,1,38,37,5,6,124.3,1,0,1,1,1,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,140.0,1,37,37,9,9,127.7,1,0,1,1,1,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,121.0,1,37,37,9,9,124.2,1,0,1,1,1,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,1 +1,18,1,9130,0,1,146.0,1,3,3,5,2,137.8,0,0,1,1,0,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,3,120.0,1,1,1,7,10,120.0,1,0,1,0,0,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,120.0,1,37,37,7,8,120.0,1,0,0,0,1,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,178.0,1,19,1,4,8,174.7,0,0,1,1,1,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,1 +1,17,5,9254,0,1,114.0,1,38,1,5,9,109.5,0,0,1,1,0,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,143.0,1,38,38,9,9,140.0,0,0,1,1,0,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,160.0,1,38,37,9,5,159.3,0,0,1,1,1,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,143.0,1,38,34,9,9,133.6,1,0,1,1,1,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,1 +4,43,1,9500,0,19,100.0,1,34,34,0,0,110.0,0,0,1,1,0,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,1 +1,1,2,9254,0,1,125.0,1,1,19,4,1,121.5,1,0,1,1,0,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,19,7,3,120.0,1,0,1,1,0,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,3,120.0,1,19,1,9,5,134.0,0,0,1,1,1,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,0 +1,39,1,9254,0,1,160.0,1,19,37,7,10,100.0,0,0,1,1,0,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,2 +1,15,1,171,0,1,130.0,26,1,1,2,9,130.0,0,0,1,1,0,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,2 +1,1,1,171,0,1,140.0,1,19,37,5,6,137.9,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,123.0,1,19,37,9,9,124.1,1,0,1,1,1,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,140.0,1,38,38,6,6,140.0,0,0,1,1,1,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,9991,1,9,133.1,1,34,34,0,0,118.4,0,0,1,0,1,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,6,9254,0,1,125.0,1,1,1,4,3,120.5,1,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,1 +1,1,6,171,0,1,126.0,1,10,10,4,4,130.2,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,120.0,1,1,19,4,7,120.0,0,0,1,1,0,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,2 +1,17,5,9773,0,1,143.0,1,1,1,7,7,136.7,1,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,42,1,9147,0,1,130.0,1,37,38,9,1,130.0,1,0,1,1,1,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,1,130.0,1,37,37,9,9,124.0,0,0,1,1,0,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,1 +1,17,2,9238,0,1,136.0,1,1,3,3,4,126.6,1,0,1,1,1,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,127.0,1,19,1,5,7,118.3,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,2 +4,39,1,9991,1,1,147.0,1,19,19,7,8,147.9,0,0,1,1,1,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,2 +1,1,4,9773,0,1,124.0,1,19,37,99,90,124.0,0,0,1,0,1,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +2,43,1,9003,0,1,133.1,1,37,37,9,7,136.0,0,0,1,1,0,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,1 +1,1,1,9085,0,1,140.0,1,12,1,1,90,141.8,0,0,1,1,1,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,133.1,1,37,37,191,154,95.0,0,0,1,1,1,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,147.0,1,2,3,4,8,145.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +2,7,1,9238,0,3,130.0,1,37,19,4,5,130.0,0,0,1,1,1,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,1 +1,7,2,9085,0,3,130.0,1,3,3,1,1,130.0,0,0,1,0,1,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,0 +2,39,2,9147,0,3,130.0,1,3,37,9,9,103.4,0,0,1,1,1,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,0 +1,17,1,9085,0,1,135.0,1,1,19,4,10,125.6,1,0,1,1,1,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,1,1,5,5,96.0,1,0,1,0,0,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +5,39,1,9853,0,19,133.1,1,38,1,5,3,105.5,0,0,0,1,1,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,136.0,1,37,37,7,7,121.7,1,0,1,1,1,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9119,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,0,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,19,133.1,1,19,19,4,4,100.0,0,0,1,1,0,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,2 +1,1,1,171,0,1,124.0,1,2,2,3,2,118.4,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,17,1,9085,0,1,120.0,1,2,3,2,2,116.1,0,0,1,1,1,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,162.0,1,37,37,9,9,142.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,131.0,1,37,1,9,9,135.9,1,0,1,1,1,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,37,37,9,7,100.0,0,0,1,1,0,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,1 +1,43,1,9500,0,1,127.0,1,19,19,4,7,121.1,0,0,1,1,1,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,143.0,1,37,37,9,5,131.6,1,0,1,1,1,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,1 +1,17,4,9085,0,1,140.0,1,19,37,4,7,123.7,0,0,1,1,1,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,156.0,1,19,1,5,10,136.8,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,0 +2,39,1,9853,0,10,133.1,1,37,34,0,0,115.5,0,0,1,1,1,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,0 +1,1,3,9119,0,1,113.0,1,4,38,2,7,107.4,1,0,1,1,0,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,1 +2,39,1,9670,0,1,130.0,1,37,37,9,0,158.0,0,0,0,0,1,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,0 +1,43,1,9853,0,1,110.0,1,37,37,9,9,107.7,0,0,0,0,1,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,124.0,1,2,2,3,3,124.7,1,0,1,1,0,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,127.0,1,37,37,5,10,125.3,0,0,1,1,0,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,1 +1,16,1,9500,0,1,133.1,1,37,37,9,9,95.0,1,0,1,1,1,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,1 +1,1,4,9238,0,1,127.0,1,19,19,4,0,127.4,1,0,1,1,1,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,113.0,1,38,38,3,7,112.3,0,0,1,1,1,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,1 +1,17,4,9670,0,1,110.0,1,19,37,9,99,106.1,1,1,0,0,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,141.0,1,1,38,4,8,136.8,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,133.1,1,37,37,9,7,140.0,0,0,1,1,1,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,124.0,1,1,1,4,4,118.8,0,0,1,1,0,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,4,120.0,1,2,3,2,2,120.0,0,0,1,1,1,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,0 +1,17,2,9670,0,1,110.0,1,3,3,4,10,115.6,1,0,1,1,0,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,118.0,1,1,19,4,10,110.7,1,1,1,1,1,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,2 +4,39,1,9238,0,1,130.0,1,19,3,9,2,140.0,0,0,1,1,0,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,1,140.0,1,1,19,3,9,140.0,1,0,0,0,1,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,0 +1,17,3,9773,0,1,123.0,1,1,19,5,5,117.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,115.0,1,38,38,8,7,112.9,1,0,1,1,1,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,1 +1,1,6,9147,0,1,142.0,1,38,37,7,7,134.3,0,1,1,1,0,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9085,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,1,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,129.0,1,19,1,3,7,121.0,0,0,1,1,1,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,156.0,1,3,3,123,122,155.0,0,0,1,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,136.0,1,37,37,9,9,126.3,1,0,1,1,1,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,1 +2,43,1,9991,1,1,110.0,1,37,37,9,9,132.5,0,0,1,1,0,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,19,133.1,1,37,1,5,5,138.3,0,0,1,1,0,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,0 +1,1,2,9130,0,1,140.0,1,19,37,9,9,129.5,1,0,1,1,1,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,2 +1,7,1,9500,0,3,140.0,1,37,37,4,4,140.0,0,0,1,1,1,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,1 +4,42,1,9147,0,1,110.0,1,37,37,9,9,128.2,0,0,1,1,1,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,1 +1,39,1,9119,0,19,133.1,1,1,1,4,3,134.4,0,0,0,0,0,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,136.0,1,37,1,5,4,120.8,1,0,1,1,1,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,1 +1,17,2,9500,0,1,140.0,1,37,37,9,9,132.5,1,0,1,1,1,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,1 +1,17,6,9147,0,1,130.0,1,37,37,9,9,110.4,1,0,1,1,0,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,4,5,105.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,136.0,1,19,19,4,3,126.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,116.0,1,38,2,9,2,112.2,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9238,0,1,122.0,1,19,3,5,2,112.6,0,0,0,1,1,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,2 +1,17,1,9147,0,1,118.0,1,1,38,9,9,118.4,1,0,1,1,0,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,2 +1,17,1,9130,0,1,117.0,1,19,19,4,4,113.5,1,0,1,1,1,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,117.0,1,19,19,9,9,111.8,1,0,1,1,0,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,0 +1,1,6,9500,0,1,118.0,1,38,19,3,3,113.5,1,0,1,1,0,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,1 +2,43,2,9853,0,1,130.0,1,38,31,4,1,124.2,0,0,1,1,1,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,128.0,1,38,38,9,7,124.5,1,0,1,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,2 +1,1,1,9238,0,1,116.0,1,38,38,9,8,108.7,1,0,1,1,0,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9254,0,19,133.1,1,37,19,9,10,156.5,0,0,1,1,0,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,1 +1,39,1,9003,0,1,160.0,1,1,37,191,193,140.0,0,0,1,1,0,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,110.0,1,37,37,9,10,150.0,0,0,1,1,0,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,1 +1,18,2,9070,0,1,122.0,1,38,19,5,5,119.9,0,0,1,1,0,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,125.0,1,19,38,9,7,116.3,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,37,37,6,6,147.8,0,0,1,1,1,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,2 +1,1,1,171,0,1,174.0,1,5,3,3,3,157.9,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,131.0,1,1,1,4,4,127.2,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,0 +1,17,1,9670,0,3,110.0,1,12,3,5,8,106.5,1,0,0,0,1,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9500,0,1,124.0,1,37,37,9,9,116.0,1,0,1,1,1,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,38,38,5,7,146.2,0,0,1,1,1,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,133.1,1,37,37,9,9,97.0,0,0,1,1,1,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,132.0,1,19,1,9,9,141.8,1,0,1,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,1 +2,43,1,9254,0,3,120.0,1,38,37,9,3,120.0,1,0,1,1,1,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,135.0,1,3,2,1,1,133.6,1,0,1,0,1,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,133.0,1,38,38,5,2,135.5,0,0,1,1,1,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,125.0,1,39,3,3,2,125.0,1,0,1,1,1,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,133.1,1,1,1,3,4,112.0,0,0,1,1,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,141.0,1,1,1,5,9,126.3,0,0,1,1,0,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,1 +1,39,1,9003,0,1,133.1,1,1,37,9,8,130.0,0,0,1,1,0,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,0 +2,43,1,9991,1,1,140.0,1,37,37,3,10,107.8,0,0,1,1,1,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,2 +1,43,1,9500,0,1,120.0,1,3,4,2,4,120.6,0,0,1,1,0,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,1,133.1,1,1,19,9,9,120.0,0,0,1,1,0,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,1 +1,39,1,9853,0,1,140.0,1,19,1,9,4,128.2,0,0,1,0,1,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,133.1,1,37,19,9,3,123.0,0,0,1,1,0,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,2 +1,39,1,9147,0,1,150.0,1,37,1,7,3,148.8,0,0,1,1,0,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,1 +1,17,1,9670,0,1,125.0,1,38,37,7,5,126.4,0,0,1,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,1 +1,44,1,9003,0,39,140.0,1,38,1,134,134,140.0,1,0,0,1,0,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,2 +1,44,1,9070,0,39,140.0,1,1,19,4,4,140.0,0,0,1,1,0,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,130.0,1,1,1,9,9,124.1,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,2 +1,51,1,9070,0,1,130.0,1,19,19,5,7,124.5,0,0,1,1,1,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,101.0,1,37,37,9,4,101.0,1,0,0,1,1,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,2 +1,1,1,8014,1,1,115.0,1,38,38,9,7,115.0,1,0,1,1,1,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,1 +1,17,1,9130,0,1,122.0,1,19,19,9,9,121.7,1,0,1,0,1,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,135.0,1,38,38,9,6,138.1,0,0,0,0,1,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9147,0,1,130.0,1,37,37,9,9,119.9,1,0,1,0,1,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,134.0,1,1,1,9,9,133.0,1,0,1,1,1,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,19,37,9,9,117.8,1,0,1,1,1,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,119.0,1,1,19,4,10,115.5,1,0,1,1,1,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,2 +1,17,3,9119,0,1,138.0,1,3,3,3,4,125.4,1,1,1,1,0,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,164.0,1,19,19,9,9,149.0,1,0,1,1,1,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,44,1,9085,0,1,140.0,1,4,4,2,6,140.0,0,0,1,1,1,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,1 +1,43,1,9070,0,1,160.0,1,1,2,4,2,100.0,0,0,1,1,0,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,132.0,1,37,37,9,5,135.9,0,0,1,1,1,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,142.0,1,37,19,7,7,133.0,1,0,1,1,1,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,1 +1,7,1,9556,0,3,130.0,1,1,37,4,8,130.0,0,0,1,0,0,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,0 +1,44,1,171,0,39,110.0,1,1,1,1,7,114.2,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9147,0,1,129.0,1,19,19,4,9,127.6,1,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,164.0,1,34,1,0,0,163.0,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9556,0,1,122.0,1,19,38,4,8,118.3,1,0,1,1,1,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,1 +1,17,4,9500,0,1,141.0,1,38,37,3,3,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,1 +1,1,1,9003,0,1,148.0,1,1,19,194,194,143.5,0,0,0,1,0,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,150.0,1,37,19,6,4,137.0,0,0,1,1,0,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,38,38,1,4,138.7,0,0,1,1,0,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,103.8,0,0,1,1,1,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,0 +1,17,1,8014,1,1,127.0,1,19,37,4,7,115.8,0,0,1,1,1,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,143.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,130.0,1,38,19,5,6,125.1,1,0,1,1,1,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9254,0,1,133.0,1,19,1,9,9,137.2,0,0,1,1,0,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +2,1,4,8014,1,1,140.0,1,34,34,0,0,128.0,1,0,1,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,120.0,1,1,1,9,10,118.3,0,0,1,1,0,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,2 +2,39,1,8014,1,12,133.1,1,37,37,9,1,113.0,0,0,1,1,1,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,128.0,1,19,1,0,5,122.1,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,37,38,3,3,123.0,0,0,1,1,1,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,120.0,1,37,1,7,4,95.0,1,0,1,1,1,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,0 +1,17,4,9238,0,1,123.0,1,19,19,191,144,116.0,1,0,1,1,1,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,39,1,9085,0,1,140.0,1,37,37,90,90,106.3,0,0,0,0,0,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,159.0,1,3,3,2,2,162.5,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,125.0,1,19,19,9,9,115.9,0,0,1,1,1,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,130.0,1,19,19,3,7,129.0,0,0,0,0,1,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,133.1,1,38,37,5,5,136.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,156.0,1,5,4,2,1,140.8,0,0,1,1,1,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,1,161.0,1,37,37,9,9,100.0,1,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,7,1,8014,1,3,130.0,1,35,35,90,90,140.0,0,0,1,0,1,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,0 +2,1,1,9991,1,1,120.0,1,37,19,9,9,135.0,1,0,1,1,0,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,0,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,148.0,1,3,3,2,2,137.3,1,0,1,1,1,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,120.0,1,19,37,5,7,115.1,0,0,1,1,1,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,2 +1,17,6,9773,0,1,138.0,1,1,1,4,2,140.5,1,0,1,1,1,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,1 +2,43,1,9085,0,1,160.0,1,37,37,9,7,120.0,0,0,1,1,0,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,2 +1,17,2,8014,1,1,134.0,1,1,19,4,99,126.0,1,0,1,1,0,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,100.0,1,0,1,1,1,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,131.0,1,1,1,5,9,129.5,1,0,1,1,1,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,1 +1,1,4,171,0,1,139.0,1,37,38,9,9,127.8,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,150.0,1,37,37,5,6,132.5,1,0,1,1,1,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,2 +1,1,1,9085,0,1,133.1,1,19,38,5,7,110.0,1,0,1,1,1,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,1 +1,43,1,9254,0,6,138.6,1,34,34,0,0,138.6,1,0,1,1,0,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,133.1,1,1,1,4,10,100.8,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,5,140.0,1,19,1,4,1,140.0,1,0,1,0,1,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,118.0,1,1,19,9,10,113.1,1,0,1,1,1,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,115.0,1,3,3,2,2,111.5,1,0,0,0,1,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9254,0,39,170.0,1,19,2,9,3,170.0,0,0,1,0,0,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,37,9,9,120.0,0,0,1,1,1,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,3,9500,0,1,137.0,1,19,38,7,7,126.5,1,0,1,1,1,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,136.0,1,19,19,90,8,133.9,1,0,1,0,0,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,0 +1,18,2,9500,0,1,141.0,24,1,1,4,3,126.8,1,0,1,1,1,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,1 +1,17,4,9238,0,1,124.0,1,19,19,5,8,117.7,1,0,1,1,1,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,149.0,1,19,38,9,9,126.5,1,0,1,1,1,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,153.0,1,1,1,141,175,157.9,0,0,0,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,140.0,1,1,2,4,6,140.0,1,0,1,1,1,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,137.0,1,1,3,3,2,121.3,1,0,1,1,1,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,143.0,1,1,1,4,6,138.8,0,0,1,0,0,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,160.0,1,1,3,1,2,130.0,0,0,1,0,0,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,19,19,9,8,105.8,0,0,1,1,1,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,0 +1,5,4,9119,0,1,115.0,1,19,37,4,6,113.3,1,0,1,1,0,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,19,4,3,125.4,1,0,1,1,1,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,1 +4,42,1,9500,0,19,133.1,1,1,1,5,5,126.0,1,0,1,1,0,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9254,0,3,133.1,1,19,19,4,6,130.5,0,0,1,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9147,0,1,108.0,1,1,19,4,4,105.9,1,0,1,1,0,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,126.0,1,19,19,9,9,115.2,0,0,0,1,1,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,2 +1,1,1,9853,0,1,140.0,1,37,37,9,9,145.3,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,1,6,9070,0,6,119.0,1,1,1,9,9,123.2,1,0,1,1,0,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,160.0,1,1,38,5,6,168.6,0,0,1,1,0,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9254,0,1,120.0,1,1,19,9,9,148.3,0,0,1,1,0,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,1 +1,7,1,9085,0,3,130.0,1,1,19,9,10,130.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,137.0,1,38,38,151,151,141.6,0,0,1,1,0,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,1 +1,39,1,9003,0,19,133.1,1,37,37,9,4,140.0,0,0,1,1,0,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,2 +1,43,1,9085,0,1,162.0,1,2,1,4,4,162.0,0,0,1,1,1,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,1 +1,43,1,171,0,1,133.0,1,19,19,5,7,133.0,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,154.0,1,37,37,9,7,150.2,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,19,100.0,1,38,19,0,10,111.3,0,0,0,0,1,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,38,4,9,126.2,0,0,1,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,132.0,1,3,1,2,7,125.5,1,0,1,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,127.0,1,37,37,5,7,116.2,0,0,1,1,0,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9773,0,1,121.0,1,19,38,9,7,113.0,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,130.0,1,19,19,9,9,127.6,1,0,1,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,160.0,1,34,34,99,99,114.3,0,0,1,1,0,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,2 +1,18,4,9254,0,1,119.0,1,37,37,9,9,113.1,1,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,130.0,1,38,37,5,6,130.0,0,0,1,1,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,163.0,1,19,37,5,8,150.8,1,0,1,1,0,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,2 +1,43,1,9238,0,1,122.0,1,19,19,5,5,114.3,1,0,1,1,1,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,2 +1,18,1,9147,0,1,131.0,1,34,34,90,90,131.0,0,0,1,1,0,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,4,9773,0,1,137.0,1,1,1,5,5,125.8,0,0,0,1,0,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9670,0,1,133.1,1,37,37,90,90,97.4,0,0,0,0,0,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,37,38,7,5,106.0,1,0,1,1,1,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,1 +1,17,6,9254,0,1,108.0,1,1,19,4,5,112.2,1,0,1,1,0,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,19,133.1,1,1,19,4,10,111.8,1,0,1,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,133.1,1,1,37,9,10,139.0,0,0,1,1,0,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,122.0,1,12,19,4,8,117.8,1,0,1,1,1,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,128.0,1,19,19,0,5,120.3,1,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,133.1,1,34,19,0,3,117.1,1,0,1,1,1,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9556,0,19,133.1,1,37,38,9,9,123.0,0,0,1,1,1,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,1 +1,17,2,9238,0,1,133.0,1,37,37,9,4,123.6,0,0,1,1,1,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,5,9670,0,1,132.0,1,19,19,5,5,134.1,1,0,1,1,0,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,129.0,1,38,1,4,10,129.4,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,136.0,1,19,19,4,8,150.4,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,154.0,1,3,3,1,3,129.0,1,0,1,1,1,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,2 +1,44,1,9130,0,39,150.0,1,1,1,4,4,150.0,1,0,1,1,1,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,2 +1,17,1,9773,0,1,115.0,1,37,37,9,8,116.1,1,0,1,1,1,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,157.0,1,19,3,4,9,138.8,0,0,1,1,0,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9670,0,19,133.1,1,19,1,5,8,97.2,1,0,1,1,0,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,141.0,1,37,38,6,6,125.6,1,0,1,1,1,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,143.0,1,19,1,9,9,144.4,1,0,1,1,1,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9119,0,1,127.0,1,19,1,4,5,115.8,0,0,1,1,0,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,150.0,1,1,1,9,10,142.7,0,0,0,1,1,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,132.0,11,12,12,90,4,129.9,1,0,1,1,1,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,115.0,1,19,19,191,171,109.1,0,0,0,0,0,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,2 +1,17,1,9773,0,1,121.0,1,38,38,9,8,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,7,1,9085,0,40,130.0,1,1,1,4,4,130.0,1,0,1,1,1,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,140.0,1,19,38,4,4,138.3,0,0,1,1,0,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,6,9773,0,1,116.0,1,19,1,4,4,110.1,1,0,1,1,1,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,131.0,1,38,38,9,9,127.9,0,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,1 +1,51,1,9991,1,42,110.0,1,19,37,5,9,128.2,0,0,1,0,1,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,0 +1,1,3,9500,0,1,138.0,1,19,19,5,8,124.9,1,0,1,1,1,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,172.0,1,1,1,4,9,167.1,0,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +5,39,1,9991,1,1,120.0,1,37,37,9,9,138.1,0,0,1,1,0,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,37,38,3,7,96.7,0,0,1,1,0,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,15,1,9130,0,1,133.1,41,1,1,4,4,100.0,0,0,1,1,1,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9119,0,1,122.0,1,19,19,9,9,114.7,0,0,1,1,0,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,133.1,1,19,38,192,192,96.0,1,0,1,1,1,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,160.0,1,1,37,9,10,118.0,0,0,1,1,1,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,2 +1,18,4,9119,0,1,134.0,1,19,38,194,175,124.9,1,0,0,1,0,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,4,19,4,5,98.0,0,0,1,1,0,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +5,43,1,9991,1,3,130.0,1,3,3,1,1,130.0,0,0,1,1,1,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,120.0,1,19,19,4,5,114.8,1,0,0,0,1,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,0 +1,18,6,8014,1,1,134.0,1,3,19,2,4,120.7,1,0,1,1,1,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,133.1,1,37,37,9,9,109.7,0,0,1,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9070,0,1,128.0,1,19,19,3,3,123.5,1,1,1,0,0,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,133.1,1,1,19,5,9,130.0,0,0,1,1,0,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,1 +1,7,1,9991,1,40,120.0,1,43,3,3,3,120.0,0,0,1,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,2 +1,17,5,9556,0,1,139.0,1,19,19,9,8,121.3,1,0,1,1,1,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,156.0,1,3,19,3,3,151.1,0,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,1 +1,16,2,9147,0,1,132.0,1,37,37,9,9,122.6,1,0,1,1,1,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,130.0,1,2,3,9,6,130.0,0,0,1,1,0,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,133.1,1,1,1,1,6,120.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,0,1,0,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,133.0,1,3,3,1,1,126.2,1,0,1,1,1,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,1 +1,18,2,9147,0,1,140.0,1,37,37,5,9,124.3,1,0,1,1,0,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,44,1,9003,0,39,150.0,1,37,38,4,8,150.0,0,0,1,1,1,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,140.0,1,37,19,191,163,129.3,1,0,0,1,1,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +4,7,1,9500,0,3,130.0,1,3,19,2,3,130.0,0,0,1,1,1,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9070,0,1,131.0,1,19,19,7,7,125.1,0,0,1,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,2 +1,10,1,9773,0,1,152.0,22,38,37,5,9,152.0,1,0,1,1,1,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,123.0,1,34,38,0,7,120.2,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,1,1,9070,0,1,131.0,1,3,19,4,4,130.3,1,0,1,1,0,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,115.0,1,1,1,5,4,108.0,1,0,1,1,1,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,130.0,1,38,37,9,9,144.0,0,0,1,1,1,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9238,0,1,134.0,1,3,1,3,4,133.0,1,0,1,1,1,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,1 +1,51,1,9670,0,1,133.1,1,3,1,3,10,116.2,0,0,1,1,0,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,139.0,0,0,1,1,0,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,126.0,1,19,1,9,9,122.5,1,0,1,0,1,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,121.0,1,19,19,9,9,126.3,1,0,1,1,1,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9003,0,1,133.1,1,38,38,4,8,115.0,0,0,0,1,0,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,19,37,9,9,151.5,0,0,0,0,0,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9853,0,40,110.0,1,41,3,2,1,110.0,0,0,0,1,1,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,1 +1,17,5,9238,0,1,131.0,1,19,37,5,7,120.2,1,0,1,1,1,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,2 +5,7,1,9070,0,3,140.0,1,37,37,7,7,140.0,0,0,1,0,0,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +4,39,1,9254,0,1,140.0,1,38,37,9,9,112.0,0,0,0,1,1,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,0 +1,18,3,9853,0,1,122.0,1,38,37,9,5,120.3,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9070,0,1,125.0,1,1,38,9,7,118.0,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,2 +1,1,3,9670,0,1,111.0,1,1,1,5,5,105.4,0,0,1,1,1,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +2,39,1,9254,0,1,130.0,1,37,37,4,7,120.0,1,0,1,1,1,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,160.0,1,37,37,9,9,160.0,1,0,1,1,1,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,1 +1,39,1,9147,0,12,133.1,1,37,37,9,9,140.0,0,0,1,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9147,0,1,118.0,1,1,2,10,10,117.3,1,0,1,1,1,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,3,9085,0,1,130.0,1,1,19,9,9,121.3,1,0,1,1,1,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,19,133.1,1,37,37,9,9,130.0,0,0,1,1,1,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,3,9085,0,1,130.0,1,19,37,5,5,121.3,1,0,1,1,1,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,2 +1,1,2,9254,0,1,120.0,1,19,19,9,9,116.5,1,0,1,1,1,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,1 +2,39,1,9500,0,1,140.0,1,37,37,9,4,127.3,0,0,1,1,0,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,1 +1,17,1,9670,0,1,118.0,1,37,38,8,7,115.2,1,0,1,1,1,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,17,3,9238,0,1,125.0,1,19,19,7,8,121.5,0,0,1,1,1,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,125.0,1,19,19,5,5,114.5,1,0,1,1,1,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,136.0,1,39,1,3,4,134.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,115.0,1,3,2,4,5,112.6,0,0,1,1,0,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,53,1,9003,0,1,130.0,1,19,1,9,9,130.0,0,0,0,1,0,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,2 +1,1,3,9773,0,1,136.0,1,3,1,5,3,129.0,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,3,150.0,1,2,3,4,7,173.3,1,0,1,1,1,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,140.0,1,1,19,7,7,129.9,1,0,1,1,1,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,0 +1,7,1,9119,0,1,140.8,1,34,34,0,0,134.0,0,0,1,1,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9254,0,1,115.0,1,37,19,5,5,109.8,1,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,137.0,1,1,1,4,4,127.6,1,0,1,1,1,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,1 +4,7,1,9238,0,40,130.0,1,34,34,99,99,130.0,0,0,0,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9147,0,1,123.0,1,37,37,9,9,106.2,0,0,1,1,1,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,121.0,1,1,3,3,7,113.0,1,0,1,1,0,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,1 +1,17,1,9254,0,1,140.0,1,3,1,2,3,129.9,0,0,1,1,1,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,7,1,9991,1,40,130.0,1,38,38,9,7,130.0,0,0,1,1,0,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,0 +1,51,1,9070,0,1,132.0,1,19,19,153,153,120.0,0,0,1,1,1,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,9119,0,1,110.0,1,37,37,9,9,106.8,0,0,1,1,0,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9070,0,1,124.0,1,19,37,4,4,126.8,0,0,1,1,1,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,2 +1,18,3,9147,0,1,133.1,1,1,38,4,7,101.0,1,0,1,0,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,3,9147,0,1,125.0,1,38,19,7,7,125.7,0,0,1,1,1,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,2 +1,17,4,9853,0,1,121.0,1,38,38,5,7,113.7,1,0,1,1,1,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,1,133.1,1,1,1,9,6,105.0,1,0,0,0,1,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,143.0,1,5,1,2,5,136.7,0,0,1,1,1,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,1 +1,1,2,9556,0,1,142.0,1,1,19,4,5,130.5,1,0,1,1,1,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,131.0,1,19,19,7,5,122.1,1,0,1,1,1,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,132.0,1,1,37,4,7,121.8,1,0,1,1,1,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,123.0,1,37,37,3,3,123.0,1,0,1,1,1,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,129.0,1,19,38,2,7,126.9,1,0,1,1,1,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,2 +1,1,4,9238,0,1,118.0,1,19,38,9,9,110.0,0,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,125.0,1,3,1,4,4,119.4,1,0,1,1,1,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,2 +1,17,1,9085,0,1,131.0,1,1,3,4,1,129.3,1,0,1,1,1,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9500,0,1,147.0,1,37,37,9,9,134.3,0,0,1,1,1,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,1 +2,39,2,9670,0,19,133.1,1,37,37,9,9,135.6,0,0,1,1,1,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,152.0,1,37,19,9,9,137.0,1,0,1,1,1,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,118.0,1,12,1,4,10,115.7,0,0,1,1,0,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,2 +1,15,1,9119,0,1,133.1,41,1,3,5,8,100.0,0,0,0,1,0,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,0 +1,1,5,9119,0,1,131.0,1,1,19,4,7,126.8,0,0,1,0,0,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,132.0,1,19,38,9,7,119.1,0,0,1,0,0,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,8014,1,1,120.0,1,37,37,5,5,161.1,0,0,1,1,0,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,18,5,9500,0,1,137.0,1,19,1,1,10,129.3,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,118.0,1,37,19,5,5,119.1,1,0,1,1,1,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,134.0,1,38,38,9,9,122.0,1,0,1,1,0,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,163.0,1,1,1,4,3,149.7,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,140.0,1,38,38,9,7,140.0,0,0,1,1,1,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,2 +1,17,4,9147,0,1,122.0,1,19,19,5,7,116.4,1,0,0,1,1,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,140.0,1,3,37,3,7,116.9,0,0,1,1,0,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,5,2,9238,0,1,123.0,1,40,38,2,9,118.1,1,0,1,1,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,7,1,9991,1,3,130.0,1,3,19,2,3,133.9,0,0,1,1,1,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,125.0,1,1,38,4,7,114.9,1,0,1,1,1,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,130.0,1,1,1,4,10,115.2,0,0,1,1,0,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,124.0,1,38,19,9,7,129.6,1,0,1,1,0,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,139.0,1,38,38,7,5,133.4,0,0,1,1,1,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,4,9254,0,1,125.0,1,38,38,5,5,115.6,1,0,1,1,1,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,147.0,1,37,37,9,9,142.8,1,0,1,1,1,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,0 +1,1,1,9003,0,1,144.0,1,19,19,9,9,132.8,0,0,1,1,0,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,12,133.1,1,19,1,9,1,130.0,0,0,1,1,0,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,140.0,1,37,37,9,6,135.5,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,6,9254,0,1,102.0,1,3,1,2,2,101.7,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,133.1,1,19,38,5,5,131.8,1,0,0,1,1,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,1 +1,44,1,171,0,39,150.0,1,4,4,2,2,150.0,0,0,1,1,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,53,1,9254,0,42,110.0,1,1,1,4,7,111.8,1,0,1,1,1,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,121.0,1,19,38,6,6,116.1,1,0,1,1,0,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,1 +1,17,4,9773,0,1,127.0,1,1,19,4,1,115.8,1,0,1,1,1,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,37,37,9,7,160.0,1,0,1,0,0,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,15,170.0,1,34,1,90,2,101.0,0,0,1,1,1,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,125.0,1,3,3,3,3,116.6,1,0,1,0,1,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,2 +1,17,4,9070,0,1,117.0,1,1,1,3,3,125.4,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,146.0,1,19,37,7,7,133.8,1,0,1,1,1,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,142.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,1 +1,1,1,171,0,3,116.0,1,3,3,2,2,128.2,0,0,1,1,1,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,1 +1,1,2,9500,0,1,124.0,1,37,37,7,7,116.5,1,0,1,1,1,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,118.0,1,19,19,5,7,117.8,0,0,1,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,1 +1,18,3,9670,0,1,119.0,1,38,38,9,9,115.2,1,0,1,1,1,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,131.0,1,3,19,3,10,123.3,0,0,1,1,0,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,2 +1,17,1,9254,0,1,136.0,1,39,3,3,3,128.7,1,0,1,1,1,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,0 +1,18,1,9500,0,1,140.0,1,37,38,5,7,126.0,1,0,1,1,1,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +1,44,1,9119,0,39,150.0,1,19,3,5,2,150.0,0,0,1,1,0,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,2 +1,43,1,9773,0,1,137.0,1,38,37,9,5,127.9,1,0,1,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,119.9,0,0,1,1,1,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,2 +1,18,2,9773,0,1,132.0,24,37,19,9,7,119.1,1,0,1,1,1,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,43,1,8014,1,1,133.1,1,34,34,0,0,100.0,0,0,1,1,1,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,1,133.1,1,38,19,9,9,128.0,1,0,1,0,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,125.0,1,19,19,5,4,136.2,1,0,0,1,0,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,132.0,1,38,38,0,5,126.1,0,0,1,1,0,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9670,0,1,130.0,1,1,1,9,10,116.3,1,0,1,1,1,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,1 +1,1,3,9773,0,1,150.0,1,19,38,4,4,146.5,1,0,1,1,1,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,1 +4,39,2,8014,1,1,160.0,1,37,38,7,5,115.0,0,0,1,1,1,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,135.0,1,19,1,9,9,122.1,1,0,1,1,1,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,136.0,1,3,3,9,9,136.0,1,0,0,0,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,3,3,7,1,130.0,1,0,1,1,0,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,2 +1,39,1,9119,0,19,133.1,1,19,19,5,3,100.9,1,0,1,1,0,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,2 +1,17,1,9254,0,1,137.0,1,34,38,0,7,137.7,1,0,0,0,1,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +4,39,1,8014,1,19,133.1,1,37,37,90,7,110.0,0,0,1,0,1,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,144.0,1,38,37,9,9,125.8,0,0,1,1,1,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,1,4,9070,0,1,167.0,1,1,1,7,3,158.3,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,133.0,1,37,19,7,7,126.7,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,118.0,1,38,38,7,7,121.2,1,0,1,1,1,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,19,133.1,1,19,19,4,4,150.0,0,0,1,0,0,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,0 +1,17,2,9085,0,1,166.0,1,1,19,4,3,158.7,0,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,1 +1,44,1,9254,0,39,130.0,1,39,39,194,193,130.0,1,0,0,1,0,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,2 +1,17,1,9085,0,1,140.0,1,37,38,7,9,129.9,0,0,1,1,1,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,1 +1,7,1,9147,0,3,120.0,1,1,39,4,7,120.0,0,0,1,1,1,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,5,9254,0,1,118.0,1,19,37,5,5,120.5,1,0,1,1,0,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,0 +1,17,3,9070,0,1,120.0,1,3,1,4,4,116.9,1,0,1,1,1,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,1 +1,43,5,9238,0,1,101.0,24,37,19,9,7,119.9,1,0,0,0,1,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,128.0,1,19,1,4,3,117.2,1,0,1,1,1,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,1 +1,1,3,9254,0,1,118.0,1,1,19,9,9,111.7,1,0,1,1,1,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9773,0,1,137.0,1,37,37,0,90,134.2,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,144.0,1,3,39,2,3,129.0,1,0,1,1,1,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,0 +1,1,5,9147,0,1,125.0,1,37,38,7,7,122.2,1,0,1,1,1,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,2 +1,1,2,9500,0,1,147.0,1,3,1,4,3,136.7,0,0,1,1,1,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,1 +1,39,1,9085,0,39,120.0,1,37,37,1,9,137.7,1,0,1,0,0,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,160.0,1,1,37,9,9,146.0,1,0,1,1,1,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,2 +1,44,1,9238,0,39,130.0,1,1,19,4,5,127.4,0,0,0,0,0,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,3,1,2,4,154.9,0,0,0,0,0,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,0 +1,17,2,9670,0,1,129.0,1,19,19,5,4,129.4,0,0,1,1,1,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,137.0,1,3,19,3,5,136.3,1,0,1,1,1,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,1 +1,39,1,9991,1,1,100.0,1,37,37,9,6,153.5,0,0,0,0,0,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,134.0,1,38,38,7,9,132.8,1,0,1,1,1,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,137.0,1,37,37,7,9,130.8,1,0,1,1,1,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,133.1,1,37,37,1,1,97.0,0,0,1,1,0,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,143.0,1,3,38,2,10,129.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +2,39,1,9991,1,1,110.0,1,37,37,9,3,127.1,0,0,1,1,1,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,2 +2,7,1,9147,0,3,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,160.0,1,37,37,9,9,160.0,0,0,1,1,0,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,162.0,1,3,4,3,3,154.1,0,0,1,1,1,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,1 +1,1,2,9147,0,1,119.0,1,19,37,4,5,113.8,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,139.0,1,19,1,9,5,135.0,1,0,1,1,1,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,120.0,1,1,38,5,5,116.3,1,1,1,1,0,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,1 +1,17,2,9500,0,1,135.0,1,1,19,4,10,133.5,1,0,1,1,1,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,1 +1,1,3,9119,0,1,117.0,1,1,1,3,5,111.1,0,0,1,1,0,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,140.0,1,1,39,4,1,128.1,1,1,1,1,0,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9003,0,1,133.1,1,37,37,3,8,130.0,0,0,0,1,1,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,134.0,1,19,37,5,5,125.3,1,0,1,1,0,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,37,38,9,9,114.0,0,0,1,1,1,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,38,37,4,5,102.5,0,0,0,0,0,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,171,0,1,143.0,1,19,37,5,9,156.3,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,130.0,1,19,1,9,5,122.1,1,0,1,1,1,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,1 +1,39,2,8014,1,1,100.0,1,35,37,90,90,100.0,0,0,1,1,1,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +2,39,2,9670,0,1,100.0,1,37,37,9,9,110.0,0,0,1,1,0,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,2,9853,0,1,126.0,1,1,19,2,10,126.0,1,0,1,1,1,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,2 +1,18,3,9070,0,1,131.0,1,1,37,5,5,122.3,1,0,1,0,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,150.0,1,19,37,9,8,138.5,0,0,1,1,1,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,2,171,0,1,146.0,1,3,3,3,3,155.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9147,0,1,120.0,1,19,19,9,7,118.6,1,0,1,1,1,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,145.0,1,38,38,9,9,125.5,1,0,1,1,1,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,4,9070,0,1,143.0,1,1,1,9,7,134.6,1,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,0 +1,51,1,8014,1,1,121.0,1,1,38,5,7,112.3,0,0,1,1,1,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,130.0,1,37,1,9,8,120.2,1,0,1,1,0,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,1 +2,7,1,9254,0,2,100.0,1,37,37,9,9,100.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9119,0,1,130.0,1,37,3,9,3,137.0,1,0,1,1,0,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,1,0,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,140.0,1,38,37,7,7,105.2,0,0,1,1,0,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,131.0,1,1,19,4,7,135.9,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,108.0,1,19,38,9,7,110.5,1,0,1,1,1,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,111.0,1,1,38,5,9,107.5,0,0,1,1,0,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,1,9147,0,1,147.0,1,37,37,9,6,142.8,1,0,0,0,1,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,170.0,1,38,19,4,8,134.7,0,0,1,1,1,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,138.0,1,4,19,2,3,124.7,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,125.0,1,37,38,9,9,125.0,1,0,0,0,1,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,118.0,1,38,38,5,5,114.2,1,0,1,1,1,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,3,3,1,5,118.8,0,0,1,1,1,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,1 +1,1,3,9085,0,1,131.0,1,37,19,9,8,136.3,1,0,0,0,1,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,0 +1,43,1,9991,1,1,141.0,1,37,37,9,9,131.9,0,0,1,1,1,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,0 +1,42,1,9070,0,1,120.0,1,3,2,3,1,116.9,0,0,1,1,0,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,130.0,1,1,1,9,7,152.1,0,0,1,1,0,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,12,133.1,1,34,34,0,0,135.0,0,0,1,1,1,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,0 +1,17,2,9500,0,1,130.0,1,38,38,7,7,122.5,1,0,1,1,1,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,160.0,1,1,1,194,131,128.4,0,0,1,1,1,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,132.0,1,1,38,7,7,129.6,0,1,1,1,0,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,1,1,3,9,118.4,0,0,1,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,1 +1,1,2,9556,0,1,133.1,1,19,19,9,9,104.5,1,0,1,1,1,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,0 +1,53,1,9003,0,42,150.0,1,1,38,8,8,150.0,0,0,1,1,1,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,144.0,1,3,1,2,3,126.9,0,0,1,1,1,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,150.0,1,3,3,2,2,120.0,0,0,0,0,1,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,3,3,2,10,160.0,1,0,1,1,0,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,129.0,1,1,1,9,9,120.0,0,0,1,1,0,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,1 +4,39,1,9003,0,12,133.1,1,37,37,9,6,160.0,0,0,1,1,1,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,1 +2,39,2,9991,1,1,100.0,1,37,37,9,9,100.0,1,0,1,1,0,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,115.0,1,19,1,3,8,123.4,0,0,1,1,1,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,124.0,1,19,37,3,8,117.5,1,0,1,1,0,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,2 +1,1,6,9254,0,1,129.0,1,38,19,9,5,117.8,1,0,1,1,1,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,127.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,19,133.1,1,38,38,7,8,120.0,0,0,1,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,0 +6,39,2,9147,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,4,9500,0,1,148.0,1,3,19,4,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,39,150.0,1,1,3,4,1,150.0,0,0,1,1,0,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,0 +1,17,1,171,0,1,145.0,1,37,37,9,1,150.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,123.0,1,1,1,9,9,115.7,1,0,1,1,1,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,16,1,171,0,1,122.0,1,19,37,9,7,133.9,1,0,1,1,0,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,124.0,1,37,38,9,8,114.6,1,0,1,1,0,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,120.0,1,38,37,9,8,113.4,1,0,1,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,7,1,9991,1,40,140.0,1,37,37,6,6,140.0,0,0,1,1,1,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,1 +1,1,5,9670,0,1,133.1,1,9,1,2,4,133.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,100.0,1,19,19,4,4,113.0,0,0,1,1,0,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,2 +4,39,1,9003,0,1,133.1,1,19,19,9,4,100.7,0,0,1,1,1,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,2 +1,17,2,9147,0,1,133.1,1,38,38,4,7,109.0,1,0,1,1,0,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,2 +1,15,1,9238,0,1,140.0,26,19,19,9,6,140.0,0,0,1,1,0,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,1,3,9500,0,1,114.0,1,1,1,5,5,114.5,1,0,1,1,1,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,134.0,1,1,38,4,4,120.7,0,0,0,0,1,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,1,133.1,1,37,11,9,7,96.0,0,0,0,0,0,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,131.0,1,3,3,3,3,135.9,0,0,1,1,1,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,1 +1,43,2,9500,0,1,130.0,1,38,37,4,4,126.8,1,0,1,1,0,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,19,37,7,7,124.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9670,0,1,120.0,1,1,19,4,5,100.0,0,0,1,1,1,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,145.0,1,38,38,9,10,139.8,1,0,1,1,1,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,141.0,1,19,38,5,7,125.5,0,0,1,1,1,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,1 +5,39,1,9147,0,1,133.1,1,1,19,4,7,114.0,0,0,1,0,0,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9991,1,1,110.0,1,37,37,1,4,120.0,1,0,1,0,0,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,172.0,41,37,37,5,5,153.8,1,0,1,1,1,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,1 +1,17,1,9556,0,1,140.0,1,3,3,1,7,131.6,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,148.0,1,1,1,4,3,137.5,0,0,1,1,0,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,137.0,1,19,38,3,9,124.9,0,0,1,1,1,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,139.0,1,18,18,1,1,130.8,1,0,1,0,1,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,0 +1,17,1,9003,0,1,120.0,1,38,37,5,9,131.4,1,0,1,1,0,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,1 +1,53,1,9085,0,42,160.0,1,19,37,4,9,160.0,1,0,1,1,1,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,1 +1,18,1,9670,0,1,140.0,1,1,37,9,9,130.2,1,0,1,1,0,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,1 +1,43,1,9853,0,1,140.0,1,37,37,6,6,125.2,0,0,0,1,1,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,1 +1,1,4,9556,0,1,122.0,1,37,1,5,4,123.9,0,0,1,1,1,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,1,19,3,3,123.0,0,0,1,1,1,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,140.0,1,19,38,4,0,140.0,1,0,1,1,0,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,129.0,1,1,1,4,2,126.2,0,0,0,0,1,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,0 +2,17,3,8014,1,1,123.0,1,19,37,3,3,113.2,0,0,0,0,1,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,133.1,1,38,19,9,10,114.5,0,0,1,1,1,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,2 +1,51,1,9991,1,1,141.0,1,19,38,5,7,100.0,0,0,1,1,1,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,1 +1,17,2,171,0,1,131.0,1,2,1,3,3,148.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,39,1,9085,0,19,133.1,1,37,37,9,9,100.0,1,0,0,0,1,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,117.0,1,1,38,5,1,113.5,1,0,1,1,1,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,116.0,1,19,38,9,9,119.5,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,1,19,3,4,116.7,0,0,1,1,1,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,129.0,1,2,3,2,2,128.3,1,0,1,1,1,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,2 +1,1,3,9085,0,1,138.0,1,1,1,4,8,128.7,1,0,1,1,1,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,1,5,9147,0,1,118.0,1,19,19,9,9,114.2,1,0,1,1,0,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,133.0,1,3,19,2,8,126.7,0,0,1,1,1,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,2 +1,16,1,171,0,1,158.0,1,38,37,9,9,164.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,43,3,9500,0,1,126.0,1,38,37,6,5,124.3,1,0,1,1,1,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,123.0,1,38,38,9,5,124.8,0,0,1,0,1,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,2 +1,1,1,9130,0,1,160.0,1,3,3,3,2,155.1,1,0,1,1,1,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,1 +4,43,1,9500,0,1,130.0,1,37,37,9,9,103.7,0,0,1,1,1,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,2 +1,16,2,9238,0,1,133.0,1,19,38,4,5,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,130.0,1,38,37,9,9,124.8,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,135.0,1,37,1,7,7,132.8,1,0,1,1,1,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9119,0,1,128.0,1,1,38,4,7,100.0,0,0,1,1,0,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,2 +1,17,2,9085,0,1,120.0,1,1,1,9,10,115.0,0,0,1,0,1,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,0 +1,17,2,9070,0,1,142.0,1,3,1,2,4,141.0,1,0,1,1,0,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,2,9853,0,1,124.0,1,38,37,5,3,118.1,1,0,1,0,1,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,145.0,1,37,37,9,9,132.0,1,0,1,1,1,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,1 +1,39,1,9130,0,1,114.0,1,38,38,9,10,120.0,0,0,1,1,1,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,140.0,1,3,3,2,2,146.4,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,1 +1,1,5,9773,0,1,130.0,1,34,38,0,8,128.3,1,0,1,0,1,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,3,9670,0,1,110.0,1,19,1,4,4,107.5,1,0,1,1,1,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,135.0,1,37,37,5,5,126.3,1,1,1,1,1,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,1 +2,1,1,9254,0,1,140.0,1,19,38,4,7,133.0,0,0,1,1,0,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9254,0,1,150.0,1,37,37,9,9,115.0,0,0,1,1,0,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,1 +1,39,1,9070,0,1,130.0,1,1,1,5,3,112.0,1,0,1,1,0,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,1 +1,1,1,9070,0,1,110.0,1,1,37,9,9,105.1,1,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,131.0,1,37,37,9,7,118.4,0,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,0 +1,17,1,171,0,1,136.0,1,38,38,7,7,127.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9773,0,1,127.0,1,19,19,5,8,120.0,0,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,3,171,0,1,139.0,1,37,19,9,8,142.2,1,0,1,1,0,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,128.0,1,37,19,9,4,127.3,1,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,16,4,9773,0,1,109.0,1,37,37,9,3,137.0,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,1 +1,53,1,9085,0,42,130.0,1,19,1,9,9,130.0,1,0,0,0,1,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,2 +1,7,1,171,0,3,130.0,1,1,2,9,2,130.0,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,120.0,1,37,37,9,9,120.0,1,0,0,1,1,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,0 +1,2,1,9853,0,1,120.0,1,19,38,9,9,122.5,0,0,1,0,1,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,19,133.1,1,2,1,8,8,120.0,1,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,0 +1,43,1,9773,0,1,121.0,1,1,1,4,5,121.0,1,0,1,1,0,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,4,9147,0,1,120.0,1,38,19,9,9,111.3,1,0,1,1,1,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,38,19,5,0,141.8,0,0,1,1,1,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,131.0,1,1,1,7,4,127.2,1,0,0,1,0,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,11,9,10,131.5,0,0,1,1,1,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,3,19,2,3,125.7,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,1,2,9556,0,1,136.0,1,19,19,9,9,129.5,1,0,1,1,1,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,1 +1,42,1,9119,0,1,120.0,1,5,5,2,2,115.0,0,0,1,1,0,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,0 +1,17,6,9119,0,1,124.0,1,19,19,4,0,126.1,1,0,1,1,0,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,1 +1,1,1,9254,0,1,160.0,1,19,38,9,9,140.8,1,0,1,1,0,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,123.0,1,37,37,9,9,115.0,1,0,1,1,1,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,1 +2,39,2,9670,0,1,133.1,41,37,19,9,9,130.0,0,0,1,1,1,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9670,0,6,170.0,1,34,34,0,0,111.6,0,0,1,1,0,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,138.0,1,1,3,9,1,123.0,1,0,1,1,1,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,1,37,6,6,130.0,1,0,1,1,0,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,1 +1,17,2,9119,0,1,133.1,1,1,2,3,3,117.0,1,0,1,1,0,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,2 +1,1,5,9254,0,1,131.0,1,19,37,9,9,123.7,0,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,130.0,1,1,1,9,4,140.0,0,0,1,0,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9773,0,1,135.0,1,1,19,4,10,129.4,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,132.0,1,1,19,3,3,122.9,1,0,1,1,1,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,115.0,1,37,37,9,8,129.0,1,0,0,0,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,51,1,9238,0,1,160.0,1,3,19,2,1,116.1,0,0,0,1,1,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9003,0,12,133.1,1,37,1,9,10,130.0,0,0,1,1,0,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,129.0,1,37,38,4,9,121.0,1,0,1,1,1,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9119,0,1,130.0,1,38,19,7,3,119.9,1,0,0,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,133.1,1,37,37,9,9,100.2,1,0,1,0,1,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,4,38,4,5,140.0,1,0,1,1,1,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,2 +2,7,1,9991,1,43,140.0,1,40,5,3,3,140.0,0,0,1,1,1,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,1 +1,43,2,9670,0,1,129.0,1,3,3,5,5,122.4,1,0,1,1,1,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,2 +1,1,1,9238,0,1,116.0,1,38,38,9,6,116.4,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,44,1,9130,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,130.0,1,1,3,9,2,130.0,1,0,0,1,1,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,139.0,1,38,38,9,5,130.5,1,0,1,1,1,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,1 +1,42,1,9500,0,1,100.0,1,19,19,9,9,100.0,0,0,0,1,0,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,0 +1,7,1,9773,0,43,140.0,1,19,1,4,8,140.0,0,0,1,1,0,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9003,0,1,125.0,1,1,38,4,7,125.0,1,0,1,1,1,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,1 +1,39,2,9147,0,19,133.1,1,38,19,4,10,116.3,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,3,9500,0,1,132.0,1,37,37,4,3,127.3,1,0,1,1,1,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,127.0,1,1,37,4,8,121.1,1,0,1,1,0,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,1 +1,39,1,9670,0,1,140.0,1,37,37,6,6,120.0,0,0,1,1,1,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,133.0,1,37,37,9,5,139.2,1,0,0,1,0,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,140.0,1,19,19,1,4,133.3,1,0,1,1,1,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,120.0,1,3,3,2,2,112.0,0,0,1,1,1,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,2 +2,1,1,9147,0,1,137.0,1,19,37,9,9,124.4,0,0,1,1,1,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,130.0,1,38,38,9,3,145.6,0,0,1,1,0,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,6,9670,0,1,120.0,1,1,14,4,5,113.7,1,0,1,1,1,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,120.0,1,38,19,9,3,112.7,0,0,1,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,122.0,1,37,37,9,9,114.3,1,0,1,0,1,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,1,8014,1,1,133.1,1,3,1,1,7,100.0,0,0,1,1,1,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,4,19,3,5,123.7,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,4,4,4,2,120.0,1,0,1,1,0,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,2 +1,1,3,9238,0,1,137.0,1,1,1,3,3,131.4,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,1 +1,43,1,9130,0,1,130.0,1,1,1,1,1,130.0,1,0,1,1,0,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,2 +1,1,2,9773,0,1,121.0,1,1,19,9,7,118.9,1,0,1,1,1,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,133.1,1,19,38,9,8,128.2,1,0,1,1,0,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,2 +1,43,1,9070,0,1,134.0,1,19,37,7,7,132.7,1,0,1,1,0,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9147,0,1,125.0,1,1,38,7,7,120.1,0,0,0,1,0,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,129.0,1,37,37,9,9,117.1,1,0,1,1,1,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,145.0,1,38,38,5,7,138.0,1,0,1,1,1,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,120.0,105,1,1,9,9,119.0,1,0,0,0,1,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,131.0,1,1,19,9,9,127.0,0,0,1,1,0,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,100.0,1,38,19,6,10,112.8,0,0,1,1,1,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,2,9070,0,1,145.0,1,38,19,7,7,130.0,1,0,1,1,0,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,126.0,1,37,38,7,7,119.0,0,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,1 +1,1,2,9773,0,1,137.0,1,1,19,7,7,133.2,1,0,1,1,1,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,128.0,1,38,38,9,7,128.4,1,0,1,1,1,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,2 +1,44,1,9085,0,39,150.0,1,19,38,194,193,150.0,1,0,1,1,1,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,2 +1,1,4,171,0,1,146.0,1,1,1,9,5,151.3,1,0,1,1,1,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,1 +1,1,6,9147,0,1,139.0,1,19,12,4,4,125.0,1,0,1,1,1,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,1 +1,1,2,9254,0,1,136.0,1,1,1,9,4,123.4,1,0,1,1,1,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,5,9670,0,1,127.0,1,3,4,2,2,122.8,0,0,1,1,0,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,127.0,1,38,37,5,7,121.8,1,0,0,1,1,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,2 +1,39,1,9003,0,1,130.0,1,38,37,7,7,120.0,0,0,1,1,0,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,1 +1,1,2,9238,0,1,100.0,1,38,1,7,7,99.3,1,0,1,1,1,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9119,0,1,160.0,1,37,37,9,6,153.7,0,0,1,1,0,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,2 +1,17,4,9500,0,1,138.0,1,3,1,2,5,134.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,1 +1,17,4,9254,0,1,124.0,1,3,3,3,3,126.1,1,0,1,1,1,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,0 +2,7,1,9147,0,3,110.0,1,19,1,9,9,110.0,0,0,1,1,1,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,2 +1,1,1,9500,0,1,143.0,1,3,19,3,10,126.8,0,0,1,1,0,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,1 +1,17,2,9670,0,1,110.0,1,1,1,4,10,115.3,1,0,1,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,1 +1,51,1,9119,0,1,129.0,1,2,37,2,9,121.6,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,2 +1,15,1,9254,0,1,140.0,26,19,1,9,7,140.0,1,0,1,0,1,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,118.0,1,19,38,7,9,113.5,1,0,1,1,1,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,5,9853,0,1,110.0,1,19,37,7,7,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,2 +1,39,1,171,0,1,145.0,1,3,1,2,10,114.5,1,0,1,1,0,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,43,2,9670,0,1,125.0,1,38,19,4,3,106.6,1,0,1,1,1,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,0 +4,39,1,9500,0,19,133.1,1,37,37,5,7,100.0,0,0,1,0,1,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,133.0,1,1,1,9,9,119.7,1,1,0,1,0,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,1 +1,1,2,9853,0,1,134.0,1,1,38,9,8,122.5,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,120.0,1,19,37,3,9,100.0,0,0,1,1,1,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,37,37,6,6,100.0,0,0,0,0,0,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,160.0,1,38,38,6,6,160.0,1,0,1,1,1,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,19,133.1,1,37,37,9,7,116.0,0,0,1,1,1,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,1 +1,18,3,9500,0,1,145.0,1,1,1,4,8,133.6,1,0,1,1,1,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,3,19,2,3,124.5,0,0,1,1,1,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,125.0,1,19,38,9,8,118.3,0,0,1,1,0,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,0 +1,5,1,9085,0,1,150.0,1,1,1,4,4,139.4,0,0,1,1,1,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,2 +1,17,1,9773,0,1,133.1,1,38,38,9,5,117.0,0,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,2 +1,1,3,9500,0,1,142.0,1,1,1,4,7,131.0,1,0,1,1,1,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,1,19,3,3,154.3,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9147,0,1,135.0,1,37,38,9,9,128.0,1,0,0,1,1,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,149.0,1,37,37,9,9,138.0,0,0,1,1,0,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,38,9,9,129.2,1,0,1,1,1,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9556,0,1,147.0,1,3,4,3,2,100.0,0,0,1,1,1,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,2 +1,39,1,9085,0,12,133.1,1,37,37,10,9,144.0,0,0,1,1,0,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9254,0,1,100.0,1,3,19,3,5,115.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9670,0,1,140.0,1,1,1,4,3,133.4,0,0,1,1,0,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,2 +1,1,2,171,0,1,127.0,1,3,39,1,3,133.5,1,0,1,1,0,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9147,0,1,112.0,1,1,19,3,5,107.8,1,0,1,1,1,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,2 +2,39,1,9147,0,1,110.0,1,37,37,9,10,140.0,0,0,1,1,1,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,120.0,1,1,3,175,121,105.9,0,0,1,1,1,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,2 +1,1,1,9238,0,1,168.0,1,37,37,9,9,149.5,0,0,1,1,1,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,1 +1,17,1,8014,1,1,141.0,1,34,34,0,0,136.1,0,0,1,1,1,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,140.0,1,1,1,4,3,130.7,1,0,1,1,0,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,0 +1,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,134.0,1,1,37,8,7,120.5,1,0,1,1,0,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,160.0,1,1,38,4,7,141.5,1,0,1,1,0,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,122.0,1,38,37,191,195,112.9,1,0,1,1,1,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,41,1,1,9,7,163.1,1,0,1,0,1,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,1 +1,39,1,9500,0,1,110.0,1,1,37,9,9,126.0,1,0,1,1,0,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,2 +1,17,1,9670,0,1,109.0,1,1,1,4,4,108.0,0,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,131.0,2,37,1,9,3,126.1,1,0,1,1,0,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,1,2,9556,0,1,125.0,1,38,1,9,3,116.3,1,0,1,1,1,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,1 +1,17,1,9085,0,1,138.0,1,2,19,2,9,126.8,1,0,1,1,1,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,2 +1,1,5,9853,0,1,128.0,1,38,37,9,9,120.3,1,0,0,0,1,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,130.0,1,1,38,4,9,122.7,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,0 +1,39,1,9991,1,9,133.1,1,37,34,90,90,118.1,1,0,1,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,1,1,9085,0,1,125.0,1,1,19,4,9,114.5,1,0,1,1,1,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,1 +1,1,5,9773,0,1,138.0,1,19,19,9,9,139.4,1,0,1,1,1,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,125.0,1,19,38,3,5,115.9,0,0,1,1,1,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,1 +1,43,1,9500,0,1,134.0,1,38,19,5,8,120.7,0,0,1,1,1,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,133.1,41,3,1,3,10,100.0,1,0,1,0,1,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,0 +5,39,1,9003,0,1,133.1,1,37,37,9,7,110.0,0,0,0,0,1,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,0 +1,17,1,9254,0,1,128.0,1,19,1,5,7,120.7,1,0,0,1,1,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,162.0,1,19,19,4,7,152.9,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,51,1,9238,0,1,121.0,1,3,19,3,10,111.9,1,0,1,1,1,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,1 +1,39,2,9991,1,1,172.0,1,19,37,9,8,150.0,1,0,1,1,1,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,116.0,1,19,19,9,8,119.9,1,0,1,1,1,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,125.0,1,19,19,3,10,131.0,1,0,1,1,0,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,39,1,9500,0,4,150.0,1,3,38,3,7,127.0,1,0,1,1,0,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,128.0,1,38,38,9,9,129.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,120.0,1,3,19,4,5,115.5,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,38,38,9,6,160.0,1,0,1,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,130.0,1,3,1,2,9,130.0,1,0,1,1,1,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,140.0,1,1,19,4,8,124.6,1,0,1,1,1,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,150.0,1,3,3,2,2,150.0,1,0,1,1,1,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,1 +2,39,1,9853,0,1,133.1,1,37,19,9,5,138.3,0,0,1,1,1,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,0 +1,43,1,9991,1,1,150.0,1,3,3,4,4,100.0,1,0,1,1,0,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,1 +1,44,1,9238,0,1,150.0,1,1,38,4,9,145.9,0,0,1,1,1,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,1 +1,18,3,9500,0,1,131.0,1,19,1,4,7,127.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,1 +1,7,1,9085,0,3,150.0,1,19,37,90,90,140.0,0,0,1,1,0,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,167.0,1,19,19,9,7,156.2,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,140.0,1,1,3,4,5,130.0,0,0,1,1,0,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9238,0,1,132.0,1,1,19,4,9,127.1,1,0,1,1,1,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9119,0,1,133.0,1,3,1,3,4,121.8,1,0,1,1,0,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,2 +1,17,1,9670,0,1,133.1,1,1,37,4,5,150.0,0,0,1,1,0,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,150.0,103,37,37,9,9,134.6,0,0,1,1,0,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,1 +1,17,6,9773,0,1,131.0,1,34,34,0,0,129.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,139.0,1,3,1,4,1,126.0,1,0,1,1,0,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,0 +1,17,1,9670,0,1,138.0,1,1,1,4,8,123.0,0,0,0,0,0,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,2 +5,39,1,9853,0,19,133.1,1,37,37,9,8,118.0,0,0,1,1,1,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,142.0,1,37,38,9,9,137.3,1,0,1,1,1,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,136.0,1,3,38,2,9,125.7,1,0,1,1,1,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,1,1,4,10,128.3,1,0,1,1,1,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,132.0,1,1,37,4,9,127.1,0,0,1,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,122.0,1,19,19,7,7,116.1,1,0,1,1,1,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,1 +1,44,1,9085,0,1,140.0,1,1,2,3,3,140.0,0,0,1,1,1,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,2 +1,42,1,9853,0,12,133.1,1,1,3,3,2,133.7,0,0,1,1,1,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,0 +2,7,1,9500,0,3,120.0,1,37,19,9,7,120.0,1,0,1,1,1,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,2 +1,1,4,9238,0,1,134.0,1,38,19,7,7,128.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,130.0,1,19,38,4,7,121.3,1,0,1,1,1,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,1 +1,39,2,9238,0,1,110.0,1,19,1,5,5,136.5,0,0,1,1,0,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9670,0,1,133.1,1,38,19,9,8,122.9,0,0,0,0,0,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,124.0,1,19,1,9,3,123.7,1,0,1,1,1,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,17,1,9991,1,1,120.0,1,38,3,9,3,116.9,1,0,0,0,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,43,2,9147,0,1,160.0,1,37,37,9,9,96.0,0,0,1,0,1,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,154.0,1,19,37,9,7,140.4,1,0,1,1,1,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,2 +1,17,5,9070,0,1,125.0,1,19,1,5,5,122.6,1,0,1,1,0,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,2,9119,0,1,137.0,1,1,1,4,4,130.4,1,0,0,1,0,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,0 +1,1,1,9085,0,1,134.0,1,37,19,9,9,136.8,1,0,1,1,0,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,1 +1,39,1,9773,0,19,100.0,1,37,37,0,0,128.0,1,0,1,1,0,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +4,39,1,9130,0,19,133.1,1,37,38,9,4,100.9,0,0,1,1,0,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,127.0,1,1,19,5,7,130.5,1,0,1,1,1,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,1 +2,1,1,9003,0,1,131.0,1,19,38,5,5,118.4,0,0,1,1,1,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,142.0,1,1,38,5,7,127.7,0,0,1,1,1,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,130.0,1,1,38,4,9,115.0,0,0,1,1,0,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,100.0,0,0,1,1,1,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,1 +1,17,5,9773,0,1,134.0,1,1,19,9,5,121.8,1,0,1,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,1 +1,1,3,9853,0,1,122.0,1,1,3,5,3,113.6,0,0,1,1,1,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,114.0,1,37,37,7,8,116.7,0,0,1,1,0,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,130.0,1,3,1,3,3,120.5,0,0,1,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,148.0,1,19,19,4,5,143.5,0,0,1,1,1,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,19,9,9,107.0,0,0,1,0,0,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,130.0,1,3,19,5,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,39,1,9500,0,19,133.1,1,37,37,9,6,120.0,0,0,1,0,1,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,0 +1,1,2,9853,0,1,123.0,1,19,1,194,103,115.3,1,0,1,1,1,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,2 +1,18,1,9130,0,1,135.0,1,38,19,9,5,121.7,1,0,1,1,1,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,116.0,1,38,38,5,8,110.8,1,0,1,1,1,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,7,1,9147,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9991,1,1,133.1,41,37,37,9,8,114.7,0,0,1,1,1,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,122.0,1,37,37,9,7,120.6,1,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,150.0,1,5,5,2,2,146.2,0,0,1,1,1,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,0 +2,7,1,9147,0,3,130.0,1,1,4,3,10,130.0,0,0,1,1,1,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9085,0,19,110.0,1,37,37,90,90,110.0,0,0,1,0,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,140.0,1,1,1,9,9,136.9,1,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,44,1,9085,0,39,150.0,1,19,19,9,9,150.0,1,0,1,1,1,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,1 +2,43,1,9003,0,1,149.0,1,1,1,4,5,156.1,1,0,1,0,0,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9119,0,1,133.1,1,1,1,9,3,136.0,0,0,1,1,0,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,0 +1,16,2,9238,0,1,122.0,1,19,37,9,7,127.3,1,0,1,1,1,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,133.0,1,1,1,6,7,134.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,141.0,1,19,38,9,9,130.5,0,0,1,1,0,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,121.0,1,1,3,9,3,123.8,0,0,1,0,0,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,0 +1,44,1,9238,0,39,140.0,1,1,1,4,3,138.6,0,0,1,1,0,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,0 +1,1,1,9991,1,1,145.0,1,2,37,4,9,127.5,1,0,1,1,0,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,100.0,1,37,19,9,2,121.9,0,0,1,0,1,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,120.0,1,38,38,9,9,148.5,0,0,1,1,1,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +5,39,1,9991,1,1,110.0,1,1,1,3,3,119.0,0,0,1,1,0,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9254,0,1,137.0,1,1,38,2,8,122.3,1,0,1,1,0,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,42,1,9238,0,1,133.1,1,1,19,4,9,134.0,0,0,1,1,1,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,38,37,9,7,130.0,1,0,1,1,0,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,1 +5,7,1,9147,0,40,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,120.0,1,37,37,9,9,111.1,0,0,1,1,1,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,124.0,1,38,19,6,10,126.8,1,0,1,1,1,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,1 +2,1,1,9500,0,1,151.0,1,37,38,9,7,134.5,0,0,0,1,1,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,133.0,1,19,37,9,8,121.8,1,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,148.0,1,1,19,4,5,135.1,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,120.0,1,19,38,4,8,122.5,0,0,1,0,0,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,9070,0,1,140.0,1,37,37,9,10,118.0,0,0,0,1,0,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,3,133.1,1,9,9,90,90,130.0,0,0,1,1,1,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,150.0,1,34,34,0,0,108.0,0,0,1,1,1,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,1,150.0,1,1,38,3,5,120.0,0,0,1,1,0,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,2 +1,44,1,9085,0,39,150.0,1,38,1,5,5,150.0,0,0,1,1,1,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,2 +1,1,2,9238,0,1,133.1,1,19,19,9,9,106.0,1,0,1,1,1,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,102.0,1,38,38,9,9,99.6,1,0,1,1,1,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,140.0,1,38,19,9,5,130.0,0,0,0,1,1,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,2 +1,1,3,9773,0,1,138.0,1,3,1,2,3,135.9,1,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,1,9,4,150.0,1,0,1,1,0,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,0 +1,1,6,9147,0,1,127.0,1,1,19,1,6,120.0,1,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,0,0,1,1,0,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,137.0,1,38,38,4,8,126.5,1,0,1,1,1,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,1,19,4,4,132.6,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,130.0,1,1,1,4,9,150.0,0,0,1,1,0,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,146.0,1,3,1,1,3,149.2,1,0,1,1,1,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,129.0,1,38,38,6,6,118.5,1,0,1,1,1,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,131.0,1,19,3,3,2,126.1,1,0,1,1,1,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,2 +1,39,1,9085,0,43,160.0,1,3,39,2,3,172.0,0,0,1,1,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,39,1,9670,0,1,133.1,1,1,1,4,4,112.9,0,0,1,1,1,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,0 +2,39,1,9003,0,1,150.0,1,37,37,9,6,140.0,0,0,1,1,0,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,127.0,1,37,38,9,7,115.8,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,133.1,1,1,37,5,9,143.0,1,0,0,1,1,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,124.0,1,19,19,9,9,138.4,1,0,0,1,1,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,0 +1,1,1,9070,0,1,125.0,1,1,1,4,4,132.0,0,0,1,0,1,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,1,5,9130,0,1,160.0,1,3,1,2,9,150.2,1,0,1,1,1,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,1,110.0,1,37,37,9,4,160.0,0,0,1,1,1,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,135.0,1,19,37,5,7,121.4,0,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,2,9670,0,1,135.0,1,19,19,7,10,121.4,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,125.0,1,1,38,4,9,118.4,1,0,1,1,1,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,2 +1,1,6,9500,0,1,145.0,1,38,37,5,6,127.5,1,0,1,1,1,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,1 +1,43,3,171,0,1,140.0,1,37,38,7,7,143.4,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,134.0,1,37,19,9,10,141.4,1,0,1,1,1,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,130.0,1,29,38,9,8,122.0,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,109.0,1,19,19,4,9,104.1,1,0,0,0,1,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,116.0,1,34,34,0,0,127.0,1,0,1,1,0,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,3,8014,1,19,100.0,1,37,37,9,9,120.0,1,0,1,1,0,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9238,0,1,122.0,1,37,38,4,7,118.2,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,8014,1,1,100.0,1,12,5,9,4,116.5,0,0,0,0,1,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,122.0,1,19,19,193,194,112.6,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,42,3,9500,0,1,136.0,1,1,1,4,4,148.8,1,0,1,1,1,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,137.0,1,19,1,9,9,132.8,0,0,1,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,130.0,1,37,37,6,6,111.9,0,0,0,1,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9254,0,1,116.0,1,19,38,5,5,116.0,1,0,1,1,1,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,18,2,9500,0,1,131.0,1,1,3,3,2,121.2,1,0,1,1,1,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,141.0,1,1,19,3,3,131.9,1,0,1,1,1,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,120.0,1,37,37,9,10,122.6,0,0,1,1,1,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,0 +1,18,5,9119,0,1,136.0,1,3,2,2,3,125.2,1,0,1,1,0,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,125.0,1,19,1,7,4,122.6,0,0,1,1,0,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,139.0,1,19,37,9,9,131.5,1,0,1,1,1,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,1 +1,5,1,9853,0,1,119.0,1,1,38,5,8,118.3,1,0,1,1,1,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,2 +1,17,2,9773,0,1,125.0,1,1,38,5,6,115.9,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,126.0,1,1,19,4,8,120.1,1,0,1,1,1,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,1 +1,17,1,9085,0,1,125.0,1,1,37,4,9,117.0,1,0,1,1,1,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,135.0,1,19,38,7,5,121.0,0,0,1,1,1,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,138.0,1,38,37,3,3,133.1,0,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,148.0,1,19,37,9,5,130.9,0,0,1,0,0,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,145.0,1,12,1,4,10,139.8,1,0,1,1,1,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,118.0,1,37,37,3,5,110.0,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,51,1,9147,0,1,99.0,1,3,1,3,3,99.7,1,0,0,0,1,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,2 +1,17,2,9556,0,1,137.0,41,1,1,7,7,124.4,1,0,1,1,1,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,1 +1,17,3,9853,0,1,133.1,1,34,34,0,0,115.0,0,0,1,1,1,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,123.0,1,37,38,9,9,113.9,1,0,0,0,1,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,0 +1,1,4,9238,0,1,125.0,1,19,38,9,6,114.9,1,0,0,1,1,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,2 +1,18,1,8014,1,1,137.0,1,1,1,4,3,123.0,0,0,0,1,1,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,1 +1,43,1,8014,1,1,131.0,1,19,37,8,5,125.0,0,0,1,1,0,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9147,0,3,150.0,1,6,27,1,7,150.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,9,4,117.0,0,0,1,1,1,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,133.1,1,37,1,9,10,100.0,0,0,1,1,1,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,0 +1,1,3,9670,0,1,121.0,1,1,19,5,5,111.9,1,0,1,1,0,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,133.1,1,1,19,3,3,112.0,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,43,1,9991,1,1,140.0,1,1,1,6,6,100.0,0,0,1,1,0,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,1 +2,42,1,9556,0,1,110.0,1,37,37,9,6,140.0,0,0,1,1,0,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,130.0,1,1,1,4,4,124.8,0,0,1,1,1,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,138.0,1,38,37,9,6,126.8,1,0,1,1,0,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,1 +1,17,4,9773,0,1,127.0,1,2,37,9,9,115.8,1,0,0,0,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9085,0,1,170.0,1,1,1,4,5,166.6,0,0,0,0,1,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,130.0,1,1,1,4,4,130.0,1,1,1,1,0,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,3,1,2,8,100.0,1,0,1,1,0,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9670,0,1,106.0,1,3,1,2,3,105.7,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,43,1,9556,0,1,140.0,1,37,37,9,9,128.0,1,0,1,0,1,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,0 +1,1,1,9147,0,1,127.0,1,1,4,9,10,121.8,0,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,134.0,1,1,1,9,6,130.9,0,0,0,1,1,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,133.1,1,37,37,7,4,132.0,0,0,1,1,0,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,110.0,1,12,3,5,2,100.0,1,0,1,1,0,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,6,9238,0,1,113.0,1,1,38,194,163,112.3,1,0,0,1,1,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,118.0,1,19,19,5,7,121.2,0,0,1,1,0,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,51,1,9773,0,1,158.0,1,1,19,8,8,117.1,1,0,1,1,0,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,0 +1,17,1,9070,0,1,119.0,1,37,38,9,8,124.6,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,111.0,1,19,19,3,10,117.7,0,0,1,1,1,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,140.0,1,3,1,5,9,130.0,0,0,1,1,0,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,122.0,1,3,1,9,10,114.7,0,0,1,1,1,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,1 +2,39,1,9238,0,19,133.1,1,1,2,4,6,130.0,0,0,1,1,1,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,2 +1,17,2,9500,0,1,131.0,1,38,1,5,7,118.4,1,0,1,1,1,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,0 +1,43,5,9853,0,1,150.0,1,34,34,0,0,150.2,1,0,1,0,1,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,140.0,1,37,19,9,9,166.0,1,0,0,1,0,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9085,0,1,133.1,1,19,37,9,6,130.0,1,0,1,1,1,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,1 +1,1,4,9147,0,1,120.0,1,38,38,5,10,111.3,0,0,1,1,0,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,2 +1,1,5,9500,0,1,125.0,1,3,19,4,8,120.3,1,0,1,1,1,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,2 +1,17,2,9556,0,1,136.0,1,1,1,9,9,128.3,0,0,1,1,1,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,133.1,1,38,19,5,5,128.0,0,0,1,1,1,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,9,133.1,1,37,37,5,3,110.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9254,0,1,118.0,1,19,1,4,4,115.9,1,0,1,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,134.0,1,19,37,7,7,136.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,130.0,1,37,37,9,7,119.9,0,0,1,1,1,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9773,0,1,153.0,1,34,34,99,99,133.1,1,0,0,1,1,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,10,133.1,1,12,36,90,90,128.2,0,0,1,0,0,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,1,9991,1,1,112.0,1,43,40,2,2,106.4,0,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,122.0,1,3,3,2,2,122.0,1,0,1,1,1,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,137.0,1,1,19,4,3,121.3,1,0,1,1,0,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,1 +1,39,1,9085,0,19,133.1,1,3,1,2,5,103.0,0,0,1,1,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,136.0,1,1,19,9,9,131.5,0,0,1,1,1,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,154.0,1,1,3,4,2,164.9,0,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,1 +1,17,6,9147,0,1,129.0,1,19,1,9,4,122.0,1,0,1,1,0,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,132.0,1,19,19,9,7,128.0,1,0,1,1,0,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,1 +2,39,1,9773,0,19,133.1,1,19,19,9,4,131.0,0,0,0,0,0,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,0 +4,39,1,8014,1,1,160.0,1,37,37,5,5,126.0,0,0,1,1,1,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,1 +1,16,2,9238,0,1,126.0,1,38,37,3,5,127.1,1,0,1,1,1,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,1 +1,1,2,9254,0,1,111.0,1,1,19,5,7,109.3,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,1 +1,17,2,9556,0,1,133.1,1,37,37,3,10,108.0,0,0,1,1,1,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,1 +1,1,4,9773,0,1,140.0,22,1,37,3,9,130.5,1,0,1,1,1,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,1 +1,7,1,9500,0,3,140.0,1,1,1,9,5,140.0,0,0,1,1,1,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,0 +1,17,3,9670,0,1,125.0,1,1,3,4,3,117.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,150.0,1,37,38,9,9,131.5,1,0,1,1,1,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,5,100.0,0,0,1,0,0,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9773,0,1,133.0,1,19,19,7,7,134.4,1,0,1,1,0,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,135.0,1,19,37,9,9,128.0,1,0,1,1,1,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,5,9670,0,1,115.0,1,1,19,5,5,117.1,0,0,1,1,1,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,2 +1,51,1,9003,0,39,130.0,1,1,19,4,4,120.0,1,0,0,0,0,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,0 +1,1,3,9773,0,1,117.0,1,38,19,7,7,110.4,1,0,0,0,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9773,0,1,127.0,1,19,38,8,3,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,38,37,1,1,115.0,1,0,1,1,1,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,2 +1,18,2,9853,0,1,123.0,1,1,3,9,2,123.7,1,0,0,0,1,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,0 +1,1,3,9853,0,1,122.0,1,3,3,2,2,112.6,1,0,1,1,1,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,17,3,9254,0,1,127.0,1,37,37,9,6,123.5,1,0,1,1,1,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,141.0,1,37,37,9,9,136.3,1,0,1,1,0,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,1 +1,1,1,9773,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,17,2,9254,0,1,140.0,1,3,3,2,2,124.3,0,0,1,0,0,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,125.0,1,1,3,4,1,121.9,1,0,1,1,0,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,0 +1,17,1,9070,0,1,134.0,1,1,1,5,0,133.3,1,0,1,1,0,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9670,0,1,127.0,22,37,37,9,9,127.0,1,0,1,1,0,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,1 +1,42,1,9853,0,1,120.0,1,37,38,3,3,113.7,0,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,0 +1,1,3,9670,0,1,121.0,1,3,19,2,8,122.4,1,0,1,1,0,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,2 +1,1,3,171,0,1,139.0,1,19,19,5,3,128.2,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,42,1,9085,0,1,100.0,1,1,38,4,9,100.0,1,0,1,1,1,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,10,1,9500,0,1,140.0,24,3,3,2,9,140.0,1,0,0,0,1,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,0 +1,1,1,9773,0,1,132.0,1,37,19,9,9,131.0,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,124.0,1,1,1,4,4,127.9,1,0,1,1,0,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,2 +5,39,1,9119,0,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,2 +1,17,1,9773,0,1,117.0,1,38,38,9,9,111.1,0,0,0,1,0,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,19,133.1,1,19,37,9,9,149.4,0,0,1,0,0,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,1,1,161.9,0,0,1,1,0,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9147,0,1,140.0,1,38,37,4,7,130.0,1,0,1,0,1,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,43,1,171,0,1,145.0,1,19,38,9,9,100.0,0,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9773,0,1,120.0,1,37,38,9,3,155.5,0,0,1,1,0,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,121.8,0,0,1,0,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,7,1,9130,0,3,140.0,1,5,4,2,0,140.0,0,0,0,0,1,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,0 +1,51,1,171,0,1,128.0,1,2,1,3,3,131.2,1,0,1,1,0,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,1 +2,39,1,8014,1,12,110.0,1,37,37,7,9,120.0,0,0,1,1,1,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,150.0,1,2,3,3,2,140.8,0,0,1,1,1,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,2 +1,43,1,9070,0,1,125.0,1,19,19,7,8,133.4,1,0,1,1,0,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,2 +1,1,5,171,0,1,160.0,1,1,1,4,4,139.7,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,1,120.0,1,1,38,9,9,150.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,154.0,1,19,19,3,3,142.0,0,0,1,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9254,0,1,110.0,1,4,19,4,3,114.8,1,0,1,0,0,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9119,0,1,140.0,1,34,34,9,9,140.0,0,0,1,0,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,125.0,1,1,1,4,2,134.1,1,0,1,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,7,1,9254,0,40,130.0,1,1,1,3,6,130.0,0,0,1,1,1,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9254,0,1,122.0,1,37,37,9,3,124.5,1,0,1,1,1,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,130.0,1,1,3,9,2,128.6,1,0,1,1,1,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,1 +1,17,4,9670,0,1,122.0,1,3,1,2,3,119.6,1,0,1,1,0,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,1 +1,44,3,9085,0,39,150.0,1,1,19,4,1,150.0,1,0,1,1,1,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,19,37,9,9,130.0,1,0,1,1,0,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,133.1,1,38,19,4,7,98.0,1,0,1,1,0,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,2 +1,17,2,9556,0,1,125.0,1,38,19,7,7,121.5,1,0,1,1,1,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,0 +2,1,4,9500,0,1,143.0,1,38,38,5,5,128.7,1,0,1,1,1,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,1,100.0,1,1,19,4,8,122.0,0,0,1,1,1,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,1 +1,51,1,9500,0,1,170.0,1,1,1,4,10,125.0,0,0,1,1,0,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,1 +1,18,4,9500,0,1,137.0,1,3,1,3,4,126.7,1,0,1,1,1,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,19,133.1,1,38,38,9,8,106.0,1,0,1,1,0,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,1 +1,39,1,9991,1,40,130.0,1,19,1,3,4,152.0,1,0,1,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9085,0,39,140.0,1,1,39,3,9,140.0,1,0,1,1,1,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,2 +1,17,2,9773,0,1,133.1,1,3,1,4,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +2,43,1,9853,0,1,110.0,1,37,37,7,7,100.0,0,0,1,1,0,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,1 +1,7,1,9119,0,3,120.0,1,19,19,1,1,120.0,0,0,1,0,0,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,1,130.0,1,34,34,99,99,114.8,0,0,1,1,1,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,1 +2,39,1,8014,1,1,140.0,1,37,3,9,10,172.0,0,0,1,1,0,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,2 +1,17,2,9670,0,1,123.0,1,34,37,0,0,114.6,1,0,0,0,1,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,0 +1,43,2,9500,0,1,136.0,1,19,1,9,10,124.1,0,0,1,1,0,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,116.0,1,1,1,1,1,110.8,1,0,1,1,1,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,1 +1,39,1,9003,0,1,133.1,1,37,37,4,7,130.0,0,0,0,0,0,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,0 +1,1,3,9085,0,1,158.0,1,1,19,9,9,153.6,1,0,1,1,1,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,1 +1,17,4,9773,0,1,121.0,1,1,19,9,8,120.3,1,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,5,3,9085,0,1,141.0,1,1,19,7,5,128.8,1,0,1,1,1,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,2 +1,18,4,9556,0,1,127.0,1,1,38,4,7,121.8,1,0,1,1,1,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,37,37,9,9,109.0,1,0,1,1,1,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,110.0,1,34,34,0,0,114.6,1,0,1,1,1,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9085,0,1,128.0,1,38,19,8,8,117.2,0,0,1,1,0,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,143.0,1,1,38,3,3,133.2,1,0,1,1,1,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,1 +1,1,4,9853,0,1,134.0,1,19,1,5,9,127.4,1,0,1,1,1,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,2 +1,1,1,9670,0,1,133.1,1,3,1,1,7,155.0,0,0,1,1,1,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,114.0,1,19,38,9,7,129.1,0,0,1,1,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,149.0,1,19,37,7,4,134.3,0,1,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,130.0,1,1,38,3,5,128.6,1,0,1,1,0,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,1 +1,42,1,9147,0,1,139.0,1,3,38,2,5,112.3,1,0,1,1,1,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,2 +1,1,3,9773,0,1,130.0,1,19,19,9,9,123.0,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,43,1,9500,0,1,130.0,1,38,38,9,5,100.0,0,0,1,1,1,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,2 +6,39,1,8014,1,1,133.1,1,37,1,9,7,114.8,0,0,1,1,1,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,121.0,1,1,38,4,9,114.4,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,18,1,9238,0,1,122.0,1,38,38,9,7,114.7,0,0,0,1,1,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,1 +1,17,2,9773,0,1,120.0,1,1,1,2,5,127.0,1,0,1,0,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,39,120.0,1,4,1,2,8,120.0,0,0,1,1,0,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,1 +1,17,3,9500,0,1,143.0,1,38,1,9,5,133.8,1,0,1,1,1,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,130.0,1,1,19,9,7,133.8,0,0,0,1,1,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,1 +2,39,1,9556,0,1,100.0,1,37,37,9,9,120.0,0,0,1,1,1,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,133.1,1,1,19,5,4,102.5,0,0,1,1,1,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9003,0,1,111.0,1,1,3,4,2,162.4,0,0,0,0,0,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,133.1,1,19,1,9,3,107.0,1,0,1,1,1,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,128.0,1,19,1,4,4,124.3,1,0,1,1,0,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,140.0,1,36,14,9,10,130.0,1,0,1,1,0,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,150.0,1,38,19,7,10,134.6,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9070,0,1,134.0,1,34,1,5,7,129.8,1,0,1,1,1,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,150.0,1,37,37,9,3,150.0,1,0,1,1,0,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,0 +2,39,1,9238,0,1,126.6,1,38,38,9,7,107.5,0,0,0,1,1,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,120.0,1,37,37,9,7,106.8,0,0,1,1,1,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,1,9254,0,1,117.0,1,1,1,5,5,116.3,1,0,1,1,0,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,130.0,1,19,19,5,5,157.0,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9556,0,1,133.1,1,44,40,2,2,115.5,0,0,1,1,1,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,133.1,1,3,1,2,4,125.0,0,0,1,1,0,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,2 +2,39,1,9003,0,1,133.1,1,37,37,9,9,100.0,0,0,1,0,0,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,0 +1,17,2,9500,0,1,141.0,1,37,1,9,4,127.3,1,0,1,1,1,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,117.0,1,38,38,175,183,113.2,1,0,0,1,1,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,133.1,1,37,37,7,7,124.5,0,0,1,0,0,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,0 +1,17,2,9070,0,1,133.1,1,37,38,9,10,178.0,1,0,1,1,0,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,120.0,1,19,19,9,9,115.0,1,0,1,1,0,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9853,0,1,146.0,1,1,1,3,4,128.2,0,0,0,1,1,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,2 +1,17,4,9070,0,1,128.0,1,1,1,9,10,136.1,1,0,0,0,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,0 +5,39,1,9500,0,3,140.0,1,37,38,9,9,160.0,0,0,1,1,1,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,1 +1,39,1,8014,1,1,133.1,1,37,37,9,8,121.0,0,0,0,0,1,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,0 +1,43,1,9130,0,1,140.0,1,2,1,2,3,140.0,1,0,1,1,1,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,1 +1,1,3,9670,0,1,126.0,1,37,37,0,0,136.5,1,0,1,1,1,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,1 +1,17,4,9238,0,1,140.0,1,19,37,9,9,130.2,1,0,1,1,1,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,142.0,1,1,3,1,2,133.0,0,0,1,1,1,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,136.0,1,19,38,9,9,121.7,1,0,1,1,0,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,17,4,9085,0,1,106.0,1,37,1,3,9,106.0,0,0,1,1,1,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,2 +1,1,3,9500,0,1,135.0,1,1,37,7,7,120.5,1,0,1,1,1,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,115.0,1,19,19,7,7,115.0,1,0,1,1,1,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9238,0,1,160.0,1,38,1,9,3,124.0,0,0,0,1,0,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,2 +1,1,1,9500,0,1,129.0,1,38,38,5,5,120.8,1,0,1,1,1,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,160.0,41,37,19,9,9,160.0,0,0,1,1,1,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,132.0,1,1,19,7,5,129.9,1,0,1,1,0,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,136.0,1,37,38,9,8,139.2,1,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,127.0,1,19,37,9,7,121.3,1,0,1,1,1,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,1 +1,1,1,9119,0,1,142.0,1,1,38,4,3,129.8,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,133.1,1,37,37,5,8,133.2,0,0,1,0,0,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,0 +1,1,1,9147,0,1,150.0,1,1,19,5,5,137.8,1,0,1,1,0,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,135.0,1,3,1,2,4,129.8,1,0,1,1,0,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,1 +1,43,2,9773,0,1,132.0,1,19,19,0,0,127.1,0,0,1,1,0,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,1 +1,17,3,9500,0,1,140.0,1,3,2,3,3,126.4,1,0,1,1,1,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,0 +2,39,2,9119,0,19,133.1,1,37,37,7,7,118.0,0,0,1,0,0,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,110.0,1,3,4,2,2,110.0,1,0,1,1,0,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,0 +2,39,1,9500,0,38,133.1,1,37,37,9,3,146.6,0,0,1,1,0,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,146.0,1,1,3,4,1,135.2,1,0,1,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,3,5,2,2,135.8,0,0,0,1,0,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,0 +2,39,1,9773,0,19,100.0,1,37,37,0,0,163.5,0,0,0,0,0,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,124.0,1,19,19,9,7,113.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,143.0,1,3,3,9,7,129.0,1,0,1,1,0,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,1 +1,1,2,9853,0,1,117.0,1,1,38,4,9,109.7,1,0,1,1,1,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,2 +1,7,1,9130,0,2,133.1,6,42,1,4,9,100.0,0,0,1,1,0,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,115.8,0,0,0,0,0,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,0 +1,18,1,9773,0,1,167.0,1,38,38,6,7,153.0,1,0,1,1,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,51,1,9238,0,1,141.0,1,1,1,5,9,125.0,0,0,1,1,0,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,17,4,9500,0,1,132.0,1,38,19,5,7,125.5,0,0,1,1,1,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,1 +1,1,1,9119,0,1,132.0,1,1,12,3,3,133.1,1,0,1,1,0,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,149.0,1,1,1,4,4,129.3,1,0,1,1,0,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,1 +2,39,1,9147,0,1,130.0,1,37,37,9,9,142.5,0,0,1,1,1,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,2 +1,1,6,9773,0,1,133.1,1,1,37,3,3,100.0,1,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,138.0,1,37,37,9,6,145.0,1,0,1,1,1,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,19,19,3,6,124.3,1,0,1,1,1,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,135.0,1,37,37,9,7,132.6,1,0,1,1,1,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,159.0,1,34,26,0,6,160.1,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,1 +2,39,1,8014,1,1,133.1,1,37,37,6,8,100.0,0,0,0,1,1,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9070,0,1,153.0,1,3,3,1,2,146.7,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,1 +1,43,1,171,0,2,140.0,1,37,37,9,9,140.0,1,0,1,1,1,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,141.0,1,19,19,9,8,142.8,0,0,1,1,1,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,1 +1,39,2,9556,0,1,130.0,1,19,19,4,5,100.0,0,0,1,1,0,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,120.0,1,38,19,3,5,120.0,0,0,1,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,2 +1,39,2,9147,0,1,120.0,1,37,37,9,9,104.0,0,0,1,0,0,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9085,0,1,150.0,1,38,38,9,9,132.0,1,0,1,1,1,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,142.0,1,38,38,9,9,132.9,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9085,0,1,160.0,1,4,19,2,5,162.1,1,0,1,1,1,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,141.0,1,37,37,9,8,130.2,1,0,1,1,1,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,118.0,1,1,1,9,9,111.0,0,0,1,0,0,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,119.0,1,37,37,10,6,119.7,1,0,1,1,1,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,2 +1,17,2,171,0,1,137.0,1,1,1,4,1,143.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,18,3,9085,0,1,149.0,103,1,1,9,9,132.2,1,0,1,1,1,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,130.0,1,37,37,90,90,125.1,0,0,1,1,1,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,1 +4,17,5,8014,1,1,100.0,1,19,19,90,90,107.0,0,0,1,1,1,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,19,133.1,1,38,19,9,10,142.7,0,0,0,1,0,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,139.0,1,19,37,5,5,125.5,0,0,1,1,1,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,133.0,1,4,1,5,5,131.6,0,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,148.0,1,19,19,9,3,125.0,1,0,1,1,1,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,110.0,1,37,37,9,9,110.3,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,53,1,9003,0,42,130.0,1,38,38,9,9,130.0,1,0,0,1,0,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,2 +1,1,4,9070,0,1,140.0,1,4,19,2,10,125.0,1,0,1,1,0,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,2 +1,42,1,9003,0,39,140.0,1,19,1,5,5,140.0,0,0,1,1,1,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,2 +1,1,4,9070,0,1,136.0,1,37,37,9,8,136.7,1,0,1,1,1,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,1,5,9773,0,1,125.0,1,37,3,5,2,126.1,1,0,1,1,0,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,8014,1,1,126.0,1,37,38,9,10,119.4,0,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,123.0,1,1,3,2,2,118.8,0,0,1,1,0,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,2 +1,1,6,9500,0,1,144.0,1,1,37,9,9,127.5,1,0,1,1,1,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,1 +1,43,1,9070,0,1,125.0,1,38,37,8,7,131.7,1,0,1,1,0,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,144.0,1,37,37,8,8,138.4,0,0,1,1,1,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,160.0,1,37,37,3,4,97.0,0,0,1,1,1,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9853,0,1,119.0,1,37,38,9,9,125.0,1,0,1,1,1,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,117.0,1,37,37,9,9,109.3,0,0,1,0,1,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,3,130.0,1,37,37,9,9,146.2,0,0,1,1,1,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,150.0,1,37,37,9,9,130.3,0,0,1,1,1,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,1 +2,39,2,8014,1,19,100.0,1,37,37,4,7,100.0,0,0,0,1,1,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,39,1,8014,1,38,133.1,1,38,37,4,8,95.5,0,0,1,1,0,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,120.7,0,0,1,1,1,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,1 +1,39,1,9119,0,19,120.0,1,37,37,9,4,98.6,0,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9130,0,1,120.0,1,19,37,1,9,116.1,1,0,1,1,0,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9500,0,1,136.0,1,1,1,4,9,128.5,1,0,1,1,1,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,132.0,1,38,37,7,7,131.3,1,0,1,1,1,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,2 +1,1,2,9500,0,1,115.0,1,38,38,9,8,108.4,1,0,1,1,1,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,120.0,1,37,37,9,9,98.7,0,0,1,1,0,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,120.0,1,37,37,9,9,155.8,0,0,1,1,0,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,151.0,1,19,1,5,0,144.4,1,0,1,1,1,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,1 +1,43,2,9147,0,1,131.0,1,19,37,5,9,123.7,1,0,1,1,1,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,2 +1,17,4,9085,0,1,128.0,1,38,37,4,9,117.9,1,0,1,1,1,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,1 +1,43,1,8014,1,12,133.1,1,37,1,9,10,112.5,0,0,1,1,0,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,0 +1,39,1,9085,0,19,133.1,1,37,37,4,8,140.0,0,0,1,1,1,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,7,1,9147,0,2,150.0,1,3,37,2,5,150.0,1,0,0,0,1,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,18,2,9147,0,1,102.0,1,37,38,191,143,101.7,1,0,1,1,1,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,128.0,1,19,1,4,1,118.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,0 +2,39,1,8014,1,1,133.1,1,19,1,4,8,144.3,0,0,1,1,0,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,1 +1,1,5,9254,0,1,128.0,1,19,1,7,10,116.5,1,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,140.0,1,19,19,7,5,135.1,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,1 +1,18,2,9500,0,1,129.0,1,38,37,5,5,119.0,1,0,1,1,1,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,140.0,1,3,1,3,3,131.5,1,0,1,1,1,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,143.0,1,3,3,2,5,144.8,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,127.0,1,37,37,9,8,123.2,1,0,1,1,1,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,2 +1,43,1,9500,0,1,125.0,1,37,37,9,7,123.6,1,0,1,1,1,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,138.0,1,1,38,3,9,123.0,1,0,1,1,1,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,139.0,1,38,38,9,9,145.0,1,0,1,1,1,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,121.0,1,37,19,6,7,116.8,1,0,1,1,1,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,2,9085,0,1,123.0,1,1,19,4,9,113.6,1,0,1,1,1,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,2 +1,17,6,9773,0,1,126.0,1,1,19,5,5,119.0,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,4,9119,0,1,139.0,1,37,19,9,4,133.1,1,0,1,1,0,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,2 +1,1,1,9147,0,1,158.0,1,1,38,3,6,155.2,0,0,1,1,0,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,1 +1,17,2,8014,1,1,133.1,1,19,1,1,1,118.0,0,0,1,1,1,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,136.0,1,22,30,0,8,135.7,1,0,1,1,1,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,120.0,1,37,37,9,9,110.0,0,0,1,0,0,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,124.0,1,19,19,7,9,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,2 +5,7,1,9991,1,2,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,1 +1,1,4,9238,0,1,123.0,1,38,1,4,10,129.0,1,0,1,1,1,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,17,4,9119,0,1,135.0,1,38,37,5,7,126.6,1,0,1,1,0,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,2 +1,1,3,9070,0,1,129.0,1,5,3,5,7,124.8,1,0,1,1,1,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,1 +1,17,5,9147,0,1,127.0,1,1,38,4,5,124.6,1,0,1,1,1,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,135.0,1,1,1,4,4,118.5,0,0,1,1,1,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,171,0,1,142.0,1,3,1,2,6,139.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +5,39,1,9147,0,1,133.1,1,19,19,9,9,119.8,0,0,1,1,0,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,123.0,1,1,37,9,9,132.1,0,0,1,1,1,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,1 +1,43,1,9853,0,1,115.0,1,3,37,2,5,108.7,1,0,1,1,1,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,12,133.1,1,37,34,90,90,110.7,1,0,1,1,1,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,155.0,1,4,3,1,1,144.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,4,9254,0,1,105.0,1,1,19,9,6,106.1,1,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,150.0,1,19,19,3,4,135.0,0,0,1,1,1,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,152.0,1,37,37,5,7,136.3,0,0,1,1,1,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,34,34,0,0,120.5,1,0,1,1,0,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,140.0,1,1,37,4,5,123.6,1,0,1,1,1,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,120.0,1,37,37,9,9,150.1,1,0,1,1,0,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,144.0,1,37,38,9,9,126.9,0,0,1,1,1,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,120.0,1,37,37,9,9,128.2,0,0,1,0,0,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,0 +1,18,2,9147,0,1,115.0,1,1,37,5,5,108.7,1,0,1,1,1,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,140.0,1,19,19,4,4,140.0,1,0,1,0,0,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,1,1,3,7,140.0,1,0,1,1,1,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9500,0,1,129.0,1,19,19,5,5,119.6,1,0,1,1,1,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,1 +1,17,6,9773,0,1,141.0,1,37,37,5,5,127.7,1,0,1,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,137.0,1,19,37,4,7,126.3,1,0,1,1,1,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,1 +2,39,1,9003,0,1,168.0,1,1,41,9,3,153.9,0,0,0,0,0,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,133.0,1,37,37,9,9,121.8,1,0,1,1,1,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,119.0,1,2,1,4,3,113.1,1,0,1,1,1,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,43,1,9147,0,1,142.0,1,38,19,141,171,115.0,0,0,1,1,1,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,2 +1,17,4,9773,0,1,138.0,1,37,19,5,7,133.5,1,0,1,0,1,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +2,7,1,8014,1,3,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,133.0,1,3,19,2,5,130.8,1,0,1,1,1,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,137.0,1,38,19,152,171,131.1,1,0,1,1,1,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,3,9119,0,1,130.0,1,1,38,3,3,129.3,0,0,1,1,0,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,1 +1,43,1,9773,0,1,126.0,1,1,37,3,0,110.0,0,0,0,1,1,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,116.0,1,1,12,5,8,110.4,1,0,1,1,0,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,1,1,4,10,110.0,0,0,0,1,1,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,17,5,9238,0,1,134.0,1,38,37,9,9,126.0,0,0,0,0,1,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,0 +2,39,1,9147,0,1,130.0,1,1,19,9,9,109.9,0,0,1,0,1,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9085,0,1,133.1,41,37,37,9,9,109.6,0,0,1,1,1,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,0 +1,44,1,9003,0,39,140.0,1,37,37,9,1,140.0,0,0,1,1,0,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,2 +2,39,1,9991,1,19,133.1,1,38,38,90,90,121.7,1,0,1,1,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,143.0,1,1,3,4,7,129.7,1,0,1,1,1,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,133.0,1,1,19,9,6,121.5,1,0,1,1,1,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,1 +1,17,1,9003,0,1,133.0,1,38,37,9,9,125.3,1,0,1,1,1,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,1 +1,42,1,9991,1,1,160.0,1,1,2,4,3,120.0,0,0,1,1,1,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,1 +2,39,2,9556,0,1,133.1,105,1,3,9,2,152.8,1,0,1,1,1,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,123.0,1,1,1,4,6,118.8,1,0,1,1,1,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9853,0,1,122.0,1,3,19,2,3,112.9,0,0,1,1,1,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,1 +1,1,5,9853,0,1,123.0,1,1,12,4,9,113.2,1,0,1,1,1,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,140.0,1,37,37,9,9,141.5,1,0,0,0,1,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,129.0,1,19,19,4,8,127.3,1,0,1,1,1,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,1 +1,39,1,9085,0,1,130.0,1,37,37,6,6,110.0,0,0,1,1,1,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,2 +4,39,1,8014,1,19,133.1,1,37,37,9,9,95.0,0,0,0,0,1,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9853,0,1,127.0,1,37,19,9,8,137.5,1,0,1,1,1,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,1 +1,1,5,9500,0,1,142.0,1,38,37,5,7,128.8,1,0,1,1,1,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,1 +1,17,2,9147,0,1,142.0,1,19,19,4,8,127.3,0,0,1,1,1,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +3,39,1,9991,1,1,120.0,1,37,1,9,2,170.0,0,0,1,1,0,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,138.0,1,19,37,4,9,141.0,0,0,1,1,0,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,132.0,1,1,38,9,9,120.1,1,0,1,1,0,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,140.0,1,1,1,2,7,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,121.0,1,37,19,9,10,113.7,0,0,1,1,1,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,2 +1,39,1,8014,1,38,133.1,1,1,1,4,4,107.5,0,0,0,0,0,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,150.0,1,1,1,5,1,155.6,0,0,1,1,1,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,150.0,1,37,37,9,6,131.1,0,0,1,1,1,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,100.0,1,3,19,1,1,117.9,0,0,1,0,0,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,39,2,9991,1,1,150.0,1,37,37,9,9,120.0,0,0,1,1,1,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,150.0,1,1,38,4,9,150.0,0,0,1,1,0,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,2 +2,43,1,9130,0,9,133.1,1,34,34,0,0,128.2,0,0,1,1,0,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,141.0,1,1,1,90,3,127.8,0,0,1,1,1,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,0 +1,1,1,9070,0,1,116.0,1,3,3,0,1,108.7,1,0,1,1,0,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,0 +2,39,1,9500,0,1,140.0,1,19,19,9,7,110.5,0,0,1,1,1,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9254,0,19,133.1,1,34,34,0,0,120.0,0,0,0,0,0,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,1,133.1,1,37,37,191,172,115.2,0,0,1,1,1,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,37,38,9,6,160.0,0,0,1,1,1,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,133.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9556,0,1,131.0,1,19,38,9,7,128.5,0,0,1,1,1,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,160.0,1,37,38,9,7,161.0,1,0,1,1,1,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,136.0,1,3,3,1,2,152.5,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9853,0,1,114.0,1,19,37,5,5,109.5,1,0,1,1,1,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,150.0,1,37,37,9,7,122.5,0,0,1,1,0,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,0 +1,44,1,9991,1,39,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,2 +1,51,1,8014,1,42,140.0,1,19,37,134,193,138.0,1,0,0,1,1,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,127.0,1,2,19,3,9,121.5,0,0,1,1,0,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,133.1,1,19,19,3,3,125.3,0,1,1,1,0,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,4,9670,0,1,125.0,1,4,19,2,5,118.0,1,0,1,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,1 +2,42,1,9070,0,1,170.0,1,37,25,0,4,148.5,0,0,1,1,0,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,0 +1,17,5,9254,0,1,121.0,1,1,19,4,7,116.5,1,0,1,0,0,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,120.0,1,19,38,5,9,130.2,0,0,1,1,1,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,140.0,1,19,37,9,9,140.7,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,140.0,1,19,19,5,9,131.3,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,42,1,9119,0,1,140.0,1,3,3,3,2,133.6,1,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,8014,1,1,150.0,1,19,2,4,6,148.0,0,0,1,1,1,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,127.0,1,37,2,9,4,123.2,1,0,1,1,1,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,119.0,1,19,37,9,9,119.4,1,0,1,1,1,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,132.0,1,2,1,4,1,127.8,0,0,1,1,0,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,0 +1,42,1,9119,0,1,136.0,1,1,37,5,5,117.5,0,0,1,1,0,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,2 +1,1,1,9991,1,1,122.0,1,37,37,9,3,113.6,0,0,1,1,0,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,19,19,5,6,137.4,0,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,2 +1,17,1,9238,0,1,128.0,1,19,19,5,4,116.5,0,0,1,1,1,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,139.0,1,1,38,6,6,143.6,1,0,0,1,0,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9130,0,1,154.0,1,3,3,2,2,137.2,1,0,0,1,0,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,0 +1,17,6,9500,0,1,142.0,1,19,37,4,9,131.9,1,0,1,1,1,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,0 +1,1,2,9773,0,1,131.0,1,19,37,9,10,121.9,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +2,7,1,9130,0,3,120.0,1,3,3,1,1,128.2,0,0,1,1,1,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,19,133.1,1,37,37,9,9,150.3,0,0,1,1,1,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,125.0,1,37,37,5,5,124.0,0,0,1,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,135.0,1,37,19,9,9,125.2,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,135.0,1,19,19,9,9,124.5,0,0,1,1,1,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,175.0,1,3,38,2,10,157.5,1,0,1,1,1,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,139.0,1,1,1,4,10,140.7,0,0,1,1,0,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,0 +1,1,4,9500,0,1,128.0,1,1,1,4,10,125.2,1,0,1,1,0,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,150.0,1,1,37,1,1,131.5,1,0,1,1,1,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,168.0,1,38,1,9,10,166.0,1,0,1,1,1,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,1 +1,51,1,9070,0,1,125.0,1,42,3,125,124,130.0,1,0,1,1,0,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,135.0,1,1,38,4,5,127.5,1,0,1,1,1,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,1 +1,18,1,9119,0,1,148.0,1,3,19,3,5,147.7,0,0,1,1,0,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9773,0,1,130.0,109,19,1,9,9,126.9,1,0,1,1,1,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,125.0,1,19,38,3,7,114.9,0,0,1,1,1,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,1 +1,7,1,9119,0,3,130.0,1,37,37,9,9,130.0,0,0,1,0,0,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9853,0,1,130.0,1,37,19,7,3,140.0,0,0,0,1,1,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,112.0,1,3,1,3,5,111.0,0,0,1,1,1,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,37,38,193,181,125.9,0,0,1,1,1,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,1 +1,42,1,9119,0,1,120.0,1,34,34,0,0,128.2,1,0,1,1,0,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,19,133.1,1,37,37,9,9,117.2,0,0,1,1,1,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9147,0,1,131.0,1,19,38,9,7,132.4,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,2 +5,39,1,9003,0,1,180.0,1,1,1,4,8,179.6,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,1,5,9119,0,1,135.0,1,37,37,90,90,122.1,1,0,1,1,0,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,133.0,1,1,38,5,10,131.3,1,0,1,1,1,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,2 +1,18,1,9500,0,1,126.0,1,37,19,5,5,119.3,0,0,1,1,1,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,110.0,1,19,37,9,6,120.0,0,0,0,0,0,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9556,0,1,130.0,1,37,37,9,9,159.0,1,0,1,1,1,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,2 +1,17,1,9070,0,1,141.0,1,19,38,4,5,133.7,1,0,1,1,0,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,150.0,1,1,37,4,6,120.0,0,0,1,1,0,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,17,2,9085,0,1,123.0,1,3,19,2,9,118.9,0,0,1,1,0,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,17,1,9991,1,1,140.0,1,38,37,6,7,127.3,0,0,1,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,151.0,1,3,1,2,1,129.8,1,0,1,1,0,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,1 +1,43,1,8014,1,1,113.0,1,37,37,0,6,128.2,0,0,1,0,1,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9070,0,1,117.0,1,1,37,4,7,127.9,1,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,145.0,1,19,19,9,7,136.6,0,0,1,1,1,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.0,1,34,37,4,9,134.4,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,9238,0,39,130.0,1,38,38,5,10,126.7,0,0,0,1,1,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,1 +1,17,1,9773,0,1,122.0,1,1,1,4,7,116.8,1,0,0,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,3,9147,0,1,124.0,1,1,1,5,3,116.7,1,0,1,1,0,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,38,1,9,4,123.2,0,0,1,1,1,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,2 +1,39,1,9556,0,40,130.0,1,1,1,4,5,145.0,0,0,1,1,1,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,2 +1,43,1,9147,0,1,127.0,25,1,5,9,10,124.2,1,0,1,1,0,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,2 +2,43,1,9670,0,1,120.0,1,34,34,0,0,128.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,0 +1,18,1,9238,0,1,122.0,1,1,3,9,2,112.6,1,0,1,1,0,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,122.0,1,1,1,4,4,119.6,1,0,1,1,1,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,2 +1,17,5,9670,0,1,125.0,1,1,19,9,7,119.4,1,0,1,1,1,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,146.0,1,19,37,9,7,153.0,1,0,1,1,1,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,108.0,1,38,38,7,7,115.0,1,0,0,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,133.1,1,1,1,3,9,138.0,1,0,1,1,1,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,140.0,1,37,37,9,5,140.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,19,133.1,1,2,1,2,4,100.0,0,0,1,1,0,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9147,0,1,129.0,1,38,37,3,5,132.9,1,0,1,1,1,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,149.0,1,3,2,2,5,151.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,135.0,1,19,4,9,2,143.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9147,0,1,158.0,1,19,37,9,7,130.0,1,0,1,1,1,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,1 +1,17,6,9556,0,1,122.0,1,1,1,4,5,117.1,1,0,1,1,1,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9556,0,12,133.1,1,34,34,99,99,100.5,0,0,1,1,1,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,9003,0,1,123.0,1,37,37,9,9,110.0,0,0,0,0,1,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,138.0,1,3,3,2,2,127.5,1,0,1,1,1,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,1 +1,43,1,9500,0,1,121.0,1,38,19,5,5,115.4,1,0,1,1,1,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,2 +1,17,4,9147,0,1,114.0,1,19,19,4,4,109.5,1,0,1,1,0,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,1 +1,17,1,9254,0,1,148.0,1,1,1,4,8,145.2,0,0,1,1,0,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,121.0,1,1,1,4,4,123.1,1,0,1,1,0,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,150.0,1,3,3,2,5,154.6,1,0,1,1,1,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,151.0,1,19,38,9,9,157.0,1,0,0,1,1,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,101.0,0,0,1,1,1,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,1 +1,1,2,9254,0,1,127.0,1,3,19,3,10,130.9,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,146.0,1,1,1,9,8,149.5,1,0,1,1,0,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9130,0,6,133.1,1,1,29,4,90,123.3,1,0,1,1,1,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,3,3,7,146.5,1,0,0,1,0,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,2 +1,7,1,8014,1,40,120.0,1,37,19,9,3,120.0,0,0,1,1,1,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9853,0,1,125.0,1,37,37,9,9,114.9,1,0,0,0,1,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,0 +1,1,2,9773,0,1,140.0,1,1,1,4,3,131.6,0,0,1,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,142.0,1,1,19,9,9,136.1,0,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,113.0,1,1,1,4,4,106.7,1,0,1,1,1,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,130.0,1,1,2,4,2,130.0,0,0,1,1,0,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,39,1,9119,0,1,130.0,1,19,37,9,9,134.0,0,0,1,1,0,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,2 +1,18,1,9500,0,1,123.0,1,37,37,3,3,118.0,1,0,1,1,1,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,1 +1,10,2,9085,0,1,163.3,22,19,1,4,9,163.3,0,0,1,1,1,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,135.0,1,19,19,9,5,135.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,136.0,1,4,5,2,2,126.2,0,0,1,1,0,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,44,1,9130,0,39,150.0,1,1,37,4,8,150.0,1,0,1,0,1,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9085,0,3,140.0,1,19,20,4,90,140.0,1,0,1,1,1,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,43,1,9070,0,1,135.0,1,1,38,3,9,126.4,1,0,1,1,1,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,140.0,1,19,38,7,8,129.9,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,133.1,1,1,1,9,9,155.0,0,0,1,1,1,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,17,5,9773,0,1,122.0,1,38,38,7,7,123.1,1,0,1,0,1,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9130,0,1,117.0,1,1,1,9,9,109.3,1,0,1,1,1,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9500,0,1,130.0,1,1,38,9,9,125.1,1,0,1,1,1,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,2 +1,1,2,9773,0,1,144.0,1,3,3,3,2,140.2,1,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,145.0,1,1,1,4,10,145.0,0,0,1,1,1,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,0 +1,51,1,9070,0,1,143.0,1,1,1,4,4,120.0,1,0,1,1,1,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,0 +1,17,1,9773,0,1,145.0,1,1,38,90,8,132.8,1,0,1,0,0,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9556,0,1,120.0,1,38,38,191,193,120.0,0,0,0,1,1,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,148.0,1,19,1,7,5,138.3,1,0,1,1,0,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,146.0,1,3,3,3,6,133.4,1,0,1,1,1,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,1 +1,17,1,9130,0,1,131.0,1,12,12,2,8,128.2,1,0,1,1,0,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,6,9556,0,1,115.0,1,19,2,5,3,112.2,1,0,1,1,1,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,1 +1,43,1,9556,0,1,126.0,1,2,3,3,2,100.0,0,0,1,1,1,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,2 +1,17,1,9238,0,1,120.0,1,19,37,9,9,113.0,1,0,1,1,1,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,132.0,1,19,38,5,5,118.0,1,0,1,1,1,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,1 +2,1,1,9238,0,1,145.0,1,37,34,9,7,139.4,0,0,1,0,1,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,131.0,1,38,38,191,174,125.4,1,0,1,1,1,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,1 +2,39,1,9119,0,1,120.0,1,37,38,9,10,145.4,0,0,0,1,0,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,0 +1,1,1,9130,0,1,138.0,1,4,5,2,2,123.0,1,0,1,1,1,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,127.0,1,5,3,4,4,122.8,1,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,136.0,1,1,1,4,4,127.0,1,0,1,1,1,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,2 +1,17,3,9119,0,1,115.0,1,3,1,3,3,116.1,1,0,1,0,0,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,143.0,1,38,37,4,9,116.5,1,0,1,1,1,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,3,19,3,8,134.9,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,1 +1,44,1,9119,0,39,140.0,1,5,41,3,2,140.0,0,0,1,1,0,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,124.0,1,19,19,9,3,115.6,1,0,1,0,0,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,0 +1,7,1,9500,0,3,130.0,1,19,38,5,3,130.0,0,0,1,1,1,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,137.0,1,1,1,4,10,124.8,1,0,1,1,0,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,138.0,1,1,3,1,4,127.5,1,0,1,1,0,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,112.0,1,1,1,5,1,111.7,0,0,0,0,0,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,0 +1,1,4,9500,0,1,147.0,1,1,1,4,9,124.5,1,0,1,1,1,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,1 +1,7,1,9500,0,3,140.0,1,3,19,2,6,140.0,0,0,1,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,121.0,1,19,19,7,7,113.0,1,0,1,1,1,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,0 +1,1,2,8014,1,1,96.0,1,3,1,3,9,100.0,0,0,1,1,1,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,3,120.0,1,37,37,9,9,120.0,0,0,1,1,1,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,152.0,1,1,38,4,5,144.7,0,0,1,1,1,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,1 +2,1,1,9070,0,1,127.0,1,12,19,9,9,123.2,0,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,1 +1,1,3,9070,0,1,147.0,1,34,37,5,7,135.8,1,0,1,1,1,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,7,1,9119,0,4,180.0,1,4,3,2,7,180.0,0,0,0,1,0,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,2 +1,1,6,9500,0,1,129.0,1,37,19,9,7,127.8,1,0,1,1,1,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,100.0,1,37,37,7,7,160.0,1,0,1,1,1,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,127.0,1,19,1,5,5,117.6,1,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,2 +1,39,1,9003,0,1,110.0,1,1,1,9,4,120.0,0,0,0,0,0,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9773,0,1,143.0,11,19,19,4,9,133.9,1,0,1,1,0,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,1 +1,44,1,8014,1,39,160.0,1,37,37,7,7,156.1,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,43,2,9670,0,1,135.0,1,3,19,1,7,123.5,1,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,1,130.0,1,38,3,132,122,100.0,0,0,1,1,0,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,2 +1,15,1,9238,0,1,150.0,26,19,1,9,9,146.5,1,0,0,0,0,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,1 +1,17,6,9119,0,1,129.0,1,37,13,4,90,117.1,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,3,130.0,1,3,3,3,10,147.6,0,0,1,1,0,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,171,0,1,145.0,1,1,1,3,3,140.1,1,0,1,1,1,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,43,3,9254,0,1,135.0,1,3,3,2,2,122.1,0,0,1,1,0,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,2 +1,17,1,171,0,1,140.0,41,1,1,5,7,146.3,1,0,1,1,1,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9070,0,1,126.0,1,38,38,9,8,129.9,1,0,1,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,1 +1,7,1,9070,0,3,120.0,1,4,4,2,2,120.0,0,0,1,1,0,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,0 +1,17,4,9070,0,1,144.0,1,38,1,9,9,137.4,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,125.0,1,3,3,2,3,118.0,1,0,1,1,0,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,0 +5,39,1,9238,0,1,130.0,1,19,38,9,10,146.0,0,0,1,1,0,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,100.0,1,37,37,6,5,107.5,0,0,1,1,1,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9773,0,1,130.0,1,1,19,1,3,161.5,0,0,1,1,0,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,140.0,1,19,19,9,4,127.8,1,0,1,1,0,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,113.0,1,1,37,1,10,116.5,1,0,1,1,1,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,1 +1,1,2,9238,0,1,145.0,1,1,19,4,8,121.4,0,0,1,1,1,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9003,0,19,133.1,1,19,37,9,10,120.0,0,0,0,1,1,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,2 +1,1,1,9085,0,1,150.0,1,12,2,4,2,144.6,0,0,0,0,1,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,40,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,0 +1,17,5,9500,0,1,137.0,1,1,1,5,5,132.6,1,0,1,1,1,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,3,19,4,7,119.0,0,0,1,1,0,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,128.0,1,1,1,4,5,124.7,0,0,1,1,0,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,2 +1,39,2,9670,0,19,133.1,1,34,34,0,0,100.0,1,0,1,0,0,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,0 +1,39,1,9556,0,1,120.0,1,19,19,4,5,122.8,0,0,1,1,1,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,0 +1,1,2,171,0,1,165.0,1,3,3,2,2,163.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,133.8,1,3,37,2,10,184.0,0,0,1,1,1,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,120.0,1,37,19,9,4,148.8,0,0,1,1,1,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,1 +1,1,5,9500,0,1,151.0,1,1,1,9,9,127.8,0,0,1,1,1,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,131.0,1,38,19,7,7,125.3,1,0,1,1,1,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,128.0,1,1,1,9,6,120.3,0,0,1,1,0,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,2 +1,1,5,9500,0,1,118.0,1,3,1,5,10,113.5,1,0,1,1,1,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,140.0,1,37,37,7,9,126.8,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,117.0,1,38,37,9,9,113.5,1,0,1,1,1,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,135.0,1,19,19,9,9,122.8,1,0,1,1,0,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,151.0,1,37,37,9,7,147.5,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,1,3,4,4,147.5,1,0,1,1,1,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,128.0,1,38,37,9,9,124.9,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9085,0,1,124.0,1,3,19,2,3,113.9,1,0,1,1,1,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,120.0,1,3,19,4,7,119.7,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,171,0,1,147.0,1,1,12,4,4,148.4,1,0,1,1,0,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,136.0,1,19,1,9,8,123.4,1,0,1,1,1,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,123.0,1,3,1,2,5,112.9,0,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,2,9556,0,1,133.1,1,3,1,2,4,136.1,0,0,1,1,0,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,141.0,1,3,1,4,4,142.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,1,1,9003,0,1,120.0,1,37,37,9,9,120.5,1,0,0,1,0,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,140.0,1,37,37,9,6,140.0,1,0,1,1,0,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,147.0,1,19,1,4,3,138.5,1,0,1,1,1,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,123.0,1,34,34,90,90,113.3,1,0,1,1,1,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,38,4,5,130.4,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,7,7,134.0,0,0,1,1,0,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,38,38,4,7,111.6,1,0,1,1,1,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,1 +1,1,1,9119,0,1,148.0,1,19,38,9,7,133.0,0,0,1,1,0,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,128.0,1,3,1,2,1,127.8,0,0,1,1,1,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,172.0,1,38,37,9,9,149.3,0,0,1,1,0,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,138.0,1,37,37,9,8,127.2,1,0,1,1,1,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,140.0,1,3,1,2,6,137.6,1,0,1,1,0,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,1 +2,43,1,8014,1,1,110.0,1,37,19,9,3,100.0,0,0,1,1,1,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,2,1,2,4,140.7,1,0,1,1,0,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,1 +1,1,1,9130,0,1,137.0,1,3,38,3,5,129.3,1,0,1,1,1,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,136.0,1,38,38,0,7,133.2,1,0,1,1,1,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,145.0,6,34,34,0,0,134.5,1,0,1,1,0,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,147.0,1,19,19,3,10,151.9,1,0,1,1,1,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,118.0,1,37,37,9,9,112.1,1,0,1,1,1,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,0 +1,43,1,9773,0,1,122.0,1,1,1,4,5,126.9,0,0,1,1,1,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,126.0,1,12,38,9,5,122.2,0,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,143.0,1,3,3,2,2,129.0,0,0,1,1,0,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,1 +1,39,1,9556,0,1,130.0,1,19,38,9,8,113.3,0,0,1,1,1,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,101.0,1,1,37,4,9,98.9,1,0,1,1,1,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,133.1,1,34,34,90,90,116.0,0,0,1,0,1,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,0 +2,39,1,9991,1,1,170.0,1,37,19,9,3,151.1,0,0,1,1,0,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,1 +2,17,5,9119,0,1,126.0,1,37,38,4,4,122.9,1,0,1,1,0,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,2 +1,1,2,9500,0,1,125.0,1,19,19,9,9,114.9,0,0,1,1,1,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,1 +1,18,3,9773,0,1,128.0,1,19,1,9,9,122.1,1,0,1,1,0,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,149.0,1,38,37,9,9,139.5,0,0,1,1,0,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,1,3,9,5,137.1,0,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,126.0,1,38,37,5,5,114.8,1,0,1,1,1,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,1 +2,39,1,9085,0,1,120.0,1,37,37,6,6,150.0,0,0,1,1,0,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,137.0,1,38,19,0,90,122.3,0,0,1,1,1,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,0 +2,39,1,9853,0,19,133.1,1,37,19,3,7,100.0,0,0,1,1,1,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,145.0,1,4,2,2,3,127.3,1,0,1,1,0,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,129.0,1,1,1,4,8,129.0,0,0,1,0,1,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,143.0,1,1,1,4,4,129.0,1,0,1,1,0,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,136.0,1,19,38,9,9,119.3,1,0,1,1,1,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,151.6,0,0,1,1,1,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,2 +1,1,1,9238,0,1,108.0,1,19,38,9,9,107.3,0,1,1,1,1,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,134.0,1,1,1,2,7,128.4,1,0,1,1,1,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,1 +1,42,1,9119,0,1,120.0,1,3,1,2,9,108.2,1,0,1,1,0,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,0 +1,16,2,9500,0,1,127.0,1,2,38,4,9,119.0,1,0,1,1,1,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,131.0,1,1,1,9,9,122.0,0,0,1,1,1,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,1 +1,7,1,9070,0,3,133.1,1,3,5,2,2,120.0,1,0,1,1,1,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,150.0,1,19,19,5,5,132.8,1,0,1,1,1,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,1 +1,18,2,9670,0,1,121.0,1,37,38,4,1,111.9,1,0,1,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,108.0,41,3,3,9,9,107.0,0,0,0,0,1,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,150.0,1,34,19,0,4,152.8,1,0,1,1,0,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,18,2,9238,0,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,130.0,6,19,1,6,4,130.0,1,0,1,1,1,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,2 +1,51,1,9119,0,1,136.0,1,1,19,3,5,133.6,1,0,1,1,0,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,0 +1,1,4,9773,0,1,155.0,1,3,19,1,4,149.8,1,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9070,0,1,124.0,1,19,38,4,0,117.6,1,0,1,1,0,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,9,100.0,0,0,1,1,0,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,2 +1,44,1,9238,0,1,140.0,1,1,1,5,5,143.4,0,0,1,1,1,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,120.0,1,1,19,7,7,111.3,0,0,1,1,0,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,2 +2,1,1,9556,0,1,144.0,1,19,19,193,144,139.8,0,0,0,1,0,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,110.0,1,1,1,5,5,160.0,1,0,0,1,1,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,0 +2,39,1,9853,0,19,133.1,1,37,37,9,9,131.0,0,0,1,1,1,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,139.0,1,4,1,2,10,136.4,1,0,1,1,1,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,1 +1,17,3,9085,0,1,134.0,1,37,38,9,9,120.4,1,0,1,1,1,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,148.0,1,3,2,4,2,131.6,1,0,1,1,1,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,0 +1,1,3,9500,0,1,145.0,1,19,37,7,7,141.5,1,0,1,1,1,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,1 +2,39,1,9130,0,19,133.1,1,37,38,9,9,120.0,0,0,1,1,0,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,3,9254,0,1,121.0,1,19,37,4,7,116.8,1,0,1,1,1,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,1 +1,1,3,9254,0,1,123.0,1,1,1,4,3,123.4,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,38,38,9,9,133.4,1,0,1,1,0,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,1 +1,42,1,9500,0,1,124.0,1,19,19,4,9,124.0,0,0,1,1,1,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,40,130.0,1,37,37,9,7,130.0,0,0,1,1,1,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,140.0,1,3,38,2,9,140.0,1,0,1,1,1,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,158.0,1,38,38,9,7,144.7,1,0,1,1,1,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,18,2,9238,0,1,121.0,1,19,1,4,3,121.4,1,0,1,1,1,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,12,133.1,1,37,19,9,10,120.0,0,0,1,1,0,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,122.0,1,3,1,4,3,114.8,1,0,1,1,1,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,2 +4,43,1,9991,1,1,164.0,1,37,37,6,6,131.8,0,0,1,1,1,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,1 +1,1,3,9773,0,1,145.0,1,38,38,9,5,133.1,0,0,1,1,1,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9853,0,19,133.1,1,38,19,9,9,108.0,0,0,0,0,1,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,2 +1,17,3,9070,0,1,131.0,1,38,37,5,5,120.2,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,2 +1,43,1,9238,0,1,130.0,1,38,37,9,7,133.2,0,0,1,1,1,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,112.0,1,1,1,3,3,106.4,1,0,1,1,0,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,125.0,1,1,38,144,181,123.3,0,0,1,1,1,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,125.0,1,3,2,2,1,119.1,1,0,1,1,1,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,0 +1,7,1,9853,0,3,140.0,1,34,34,0,0,140.0,1,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,135.0,1,1,19,3,9,137.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,7,1,9991,1,3,120.0,1,37,37,6,7,120.0,0,0,0,0,0,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,130.0,1,1,1,4,3,125.1,1,0,1,1,1,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,1 +2,39,1,33,0,1,120.0,1,38,1,9,5,153.8,0,0,0,1,0,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,1,150.0,1,37,37,9,9,140.0,0,0,1,0,0,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,127.0,1,1,38,9,7,120.4,1,0,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,7,1,8014,1,43,180.0,1,19,19,9,4,180.0,0,0,1,1,1,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,1 +1,1,3,9147,0,1,143.0,1,1,1,5,7,133.2,1,0,1,1,1,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,1 +1,15,1,9853,0,1,133.1,41,43,1,153,135,128.2,0,0,1,1,1,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,1 +1,39,1,9147,0,12,133.1,1,1,1,9,4,140.0,1,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,151.0,1,1,38,4,7,137.0,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,1 +1,17,4,171,0,1,172.0,1,3,1,2,10,155.6,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,129.0,1,19,1,9,5,112.0,0,0,1,1,0,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,150.0,1,38,3,9,1,140.0,0,0,1,1,0,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,1 +1,1,1,9773,0,1,124.0,17,1,1,3,5,118.1,1,0,0,0,1,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,0 +1,17,1,9670,0,1,124.0,1,37,19,5,8,114.2,1,0,0,1,1,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,122.0,1,1,19,3,5,116.8,1,0,1,1,1,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,144.0,1,38,1,9,10,137.4,0,0,1,1,1,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,19,19,9,9,120.0,0,0,1,1,1,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,138.0,1,38,38,7,6,124.7,1,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,2 +1,18,2,9147,0,1,132.0,1,3,3,5,7,119.1,1,0,0,0,1,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,17,6,9119,0,1,111.0,1,19,3,5,10,106.5,1,0,1,1,0,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,0 +1,7,1,9500,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,1,140.0,1,37,37,9,9,130.0,1,0,1,1,0,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,125.0,1,37,37,3,3,124.0,0,0,1,1,0,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,128.0,1,19,2,7,3,126.3,1,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +2,39,1,9500,0,1,110.0,1,37,37,9,6,114.3,0,0,1,1,1,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,9085,0,1,133.1,1,1,9,4,4,128.2,0,0,1,1,1,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,1 +1,1,3,9238,0,1,126.0,1,38,19,5,8,120.8,1,0,1,1,1,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,121.0,1,1,1,9,8,118.9,1,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,109.0,1,19,37,5,5,108.3,0,0,1,1,1,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,2 +1,1,4,9670,0,1,127.0,1,1,1,7,7,116.5,1,0,1,1,1,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,171,0,19,133.1,101,1,19,2,7,110.0,0,0,1,1,0,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,133.0,1,37,37,9,7,124.6,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,39,137.0,1,1,1,5,10,124.5,0,0,1,0,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,130.0,1,19,19,7,7,121.6,0,0,1,1,1,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,1 +2,39,1,8014,1,1,130.0,1,37,37,6,5,113.5,1,0,1,1,1,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9670,0,1,120.0,1,38,38,5,7,115.1,1,0,1,1,1,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,115.0,1,38,1,9,4,116.1,1,0,1,1,0,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,130.1,0,0,1,1,1,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,2 +1,1,3,9238,0,1,133.1,1,1,1,9,9,100.0,1,0,1,1,0,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,168.0,0,0,1,1,0,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,148.0,1,1,1,9,9,141.7,0,0,1,0,0,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,0 +1,15,1,33,0,1,133.1,41,2,3,2,4,100.0,0,0,1,1,0,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,2 +1,17,3,9147,0,1,135.0,1,37,37,6,5,121.0,1,0,1,1,0,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,151.0,1,3,3,1,90,161.9,0,0,1,1,1,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,8,108.5,0,0,1,1,0,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9670,0,1,130.0,1,26,30,0,5,128.6,1,0,0,1,1,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,1 +1,43,1,9500,0,1,140.0,100,1,1,6,6,128.2,0,0,1,1,1,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,140.0,1,19,37,5,7,140.0,1,0,1,1,0,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,0 +1,39,1,33,0,1,140.0,1,3,1,2,4,152.8,0,0,1,1,1,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,2 +1,43,1,9070,0,1,117.0,1,1,1,4,7,112.5,1,0,1,1,0,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,126.0,1,37,19,7,7,125.7,0,0,1,1,1,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,2 +1,1,2,9773,0,1,140.0,1,38,38,5,7,126.4,1,0,1,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,121.0,1,37,38,6,9,121.0,0,0,1,1,1,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,136.0,1,12,1,4,4,122.0,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,117.0,1,37,37,9,9,120.2,1,0,1,1,1,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,133.1,1,38,1,9,9,121.0,0,0,0,0,0,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,0 +1,44,1,9991,1,39,130.0,1,37,37,5,5,130.0,1,0,1,1,0,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,138.0,1,1,19,4,9,142.2,1,0,1,1,1,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,148.0,1,3,1,2,10,148.0,1,0,1,1,1,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,1 +1,17,6,9556,0,1,134.0,1,19,38,7,7,128.5,1,0,1,1,1,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,141.0,1,1,19,5,8,141.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,149.0,1,3,1,9,9,137.5,0,0,1,1,0,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,1 +1,1,3,9085,0,1,142.0,1,11,11,90,90,155.3,0,0,1,1,1,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +1,1,2,9070,0,1,135.0,1,19,37,9,9,134.0,1,0,1,1,1,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,132.0,1,19,38,9,7,120.1,0,0,1,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9147,0,1,133.0,1,37,37,9,5,119.7,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,139.0,1,3,4,2,2,130.6,0,0,1,1,1,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,130.0,1,1,3,9,2,130.0,1,0,0,0,0,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,0 +1,17,3,9500,0,1,138.0,1,3,3,4,5,130.0,1,0,1,1,1,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,121.0,1,19,19,3,3,116.1,1,0,1,1,1,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,160.0,1,3,38,1,9,152.0,1,0,1,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,130.0,41,37,19,9,8,125.5,1,0,1,1,1,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,133.1,1,38,38,191,193,146.0,0,0,0,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,1 +4,39,1,9003,0,1,140.0,1,37,37,9,8,150.0,0,0,1,1,0,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,2 +1,17,2,9670,0,1,132.0,1,1,19,5,3,124.0,1,0,1,1,0,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,117.0,1,19,19,5,7,118.4,0,0,1,1,0,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,140.0,6,1,19,4,7,131.6,1,0,1,1,1,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,142.0,1,38,1,8,10,138.5,1,0,1,1,0,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,2 +1,1,1,9130,0,1,132.0,1,3,1,4,9,121.9,1,0,1,1,1,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,122.0,1,1,1,9,9,116.1,1,0,1,1,0,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,0 +1,7,1,8014,1,3,130.0,1,37,38,0,5,130.0,0,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,138.0,1,19,19,9,5,124.8,1,0,1,1,1,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,140.0,1,19,38,3,9,140.0,1,0,1,1,0,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +4,39,1,8014,1,1,138.0,1,19,19,90,90,127.0,0,0,1,0,1,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9500,0,19,133.1,1,1,3,2,2,100.0,0,0,0,1,0,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,117.0,1,3,1,3,5,110.7,1,0,1,1,0,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,120.0,1,19,19,5,5,113.0,1,0,1,1,1,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,160.0,1,37,37,7,7,133.0,1,0,1,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,137.0,1,1,1,4,5,126.3,1,0,1,1,1,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,19,37,9,7,123.9,1,0,1,1,1,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,38,38,9,5,130.0,0,0,0,0,0,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,137.0,1,19,37,9,7,130.8,0,0,0,1,1,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,38,37,4,6,150.0,1,0,1,1,1,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,115.0,1,34,38,0,5,108.4,1,0,1,1,1,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,140.0,1,3,38,141,151,135.3,0,0,1,1,0,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,148.0,1,19,19,7,7,130.9,0,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,127.0,1,1,1,4,3,126.3,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,2,9670,0,1,100.0,1,37,37,9,9,100.0,0,0,1,1,1,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,2 +1,17,2,171,0,1,141.0,1,19,37,9,9,136.1,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,123.0,1,30,19,4,90,122.3,0,0,1,1,1,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,145.0,1,1,38,5,7,127.5,1,0,1,1,0,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9085,0,1,150.0,1,37,37,90,10,112.0,0,0,1,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,128.0,1,37,1,9,7,124.2,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,0 +1,43,1,9070,0,39,130.0,1,19,37,5,9,124.0,1,0,1,1,1,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,1 +1,17,1,9003,0,1,170.0,1,1,4,9,5,144.1,1,0,0,0,0,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9670,0,1,110.0,1,19,19,90,99,107.2,0,0,1,1,0,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9238,0,19,133.1,1,37,37,9,9,130.0,1,0,1,1,1,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,42,1,9119,0,1,144.0,1,34,34,0,0,119.5,0,0,1,1,0,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,19,133.1,1,37,37,6,6,162.0,0,0,0,1,0,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,16,1,9085,0,1,138.0,1,37,37,9,9,123.0,1,0,1,1,1,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,39,1,9500,0,1,133.1,1,19,19,5,6,121.4,0,0,0,1,1,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9085,0,1,138.0,1,1,1,4,7,132.1,1,0,1,1,1,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,1 +1,39,1,9119,0,1,133.1,1,37,37,9,9,101.6,0,0,1,1,0,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9500,0,1,126.0,1,1,19,131,181,120.1,1,0,1,1,1,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,38,9,9,142.0,1,0,1,1,1,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,1 +1,18,1,8014,1,1,138.0,1,19,1,9,5,134.5,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,19,9,9,150.0,0,0,1,1,0,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,126.0,1,38,37,9,9,123.6,1,0,1,1,1,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,39,1,9254,0,19,133.1,1,19,19,3,1,101.5,0,0,0,0,0,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,43,2,9119,0,1,115.0,1,38,19,9,6,112.2,1,0,0,1,0,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,2 +2,39,1,9003,0,1,120.0,1,37,37,9,9,125.7,0,0,0,0,1,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,0 +1,17,2,9773,0,1,115.0,1,1,1,5,5,119.6,1,0,1,1,1,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,19,9,4,140.0,0,0,1,1,1,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,125.0,1,37,19,90,90,137.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,120.0,1,3,38,3,7,124.2,1,0,1,1,0,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,2 +1,1,1,9147,0,1,146.0,1,5,1,1,5,144.6,0,0,1,1,0,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,116.0,1,1,1,3,4,113.6,1,0,1,1,1,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,1 +4,42,1,9147,0,1,133.1,1,37,38,7,3,123.0,1,0,1,1,0,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,118.9,1,38,37,5,9,118.9,1,0,1,1,1,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,123.0,1,12,1,9,9,119.2,1,0,1,1,1,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,1 +1,7,1,9500,0,2,140.0,1,38,37,7,8,140.0,0,0,1,1,1,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,110.0,1,37,37,90,90,108.4,1,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9119,0,1,146.0,1,1,37,7,7,132.4,1,0,1,1,0,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,19,133.1,1,19,3,9,2,140.0,1,0,0,1,0,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,0 +1,18,2,9853,0,1,111.0,1,38,38,191,171,105.8,1,0,1,1,1,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,6,130.2,0,0,1,1,1,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,130.0,1,1,3,9,10,118.1,1,0,1,1,0,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,118.0,1,1,19,5,4,118.0,0,0,1,1,1,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,153.0,1,38,38,7,7,159.7,1,0,1,1,1,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,171,0,12,110.0,1,37,37,7,7,106.0,1,0,1,1,0,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,134.0,1,19,1,9,4,124.9,1,0,1,1,1,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,0 +1,1,3,9254,0,1,121.0,1,19,19,9,9,125.9,1,0,1,1,1,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,160.0,1,19,19,4,9,154.4,0,0,1,1,1,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,3,140.0,1,19,19,9,7,152.4,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9130,0,1,130.0,1,19,1,191,144,110.0,0,0,1,1,0,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,142.0,1,38,37,9,5,127.3,1,0,1,1,1,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,37,37,9,9,130.0,0,0,0,1,1,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,124.0,1,37,19,9,4,121.2,0,0,1,1,0,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,1 +4,39,1,9991,1,1,120.0,1,19,19,9,3,113.9,1,0,1,1,1,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,114.0,1,19,38,5,3,112.6,1,0,1,1,1,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,1 +1,7,1,9991,1,40,120.0,1,1,19,4,9,120.0,0,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,128.0,1,19,38,9,9,118.2,0,0,1,1,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,4,9070,0,1,126.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,130.0,1,1,1,0,0,119.5,0,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,184.4,22,2,19,2,8,184.4,0,0,1,1,1,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,133.1,1,37,37,9,9,132.8,0,0,0,0,0,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9085,0,1,120.0,1,38,19,90,90,127.0,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,1 +1,17,4,9147,0,1,132.0,1,38,19,5,5,120.8,1,0,1,1,0,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,0 +1,10,1,9670,0,1,148.9,22,37,37,9,9,148.9,0,0,1,1,1,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,4,150.0,1,1,1,4,6,150.0,0,0,1,1,0,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,150.0,1,19,1,9,3,110.0,1,0,1,1,0,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,1 +1,15,1,9670,0,1,130.0,26,42,1,2,7,130.0,0,1,0,1,1,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,1 +2,7,1,8014,1,3,120.0,1,38,1,9,9,120.0,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,149.0,1,19,37,9,9,158.1,1,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,4,9147,0,1,124.0,1,37,37,9,9,117.4,0,0,1,1,1,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,142.0,1,34,1,5,10,136.1,1,0,1,0,0,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,1,1,8014,1,1,165.0,1,37,37,0,0,162.9,1,0,1,1,0,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,130.0,1,37,37,5,7,123.4,1,0,1,1,0,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,0 +4,39,1,8014,1,1,133.1,1,37,37,7,7,143.0,0,0,1,1,0,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,121.0,1,38,37,8,8,115.4,1,0,1,1,1,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,7,1,9556,0,3,140.0,1,3,3,2,2,140.0,0,0,0,0,0,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,116.0,1,38,19,0,2,116.7,1,0,1,1,0,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,132.0,1,38,1,5,5,124.3,0,1,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,133.1,1,38,12,7,0,111.5,0,0,1,0,1,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,0 +1,53,1,9147,0,42,140.0,1,1,1,6,6,142.2,0,0,1,1,0,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,1 +2,44,1,9991,1,39,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,9773,0,1,170.0,1,1,19,9,7,155.0,0,0,1,1,0,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,8014,1,19,133.1,1,37,37,4,8,112.5,0,0,1,1,1,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,120.0,1,1,1,5,8,112.0,1,0,1,1,1,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,123.0,1,1,1,3,3,113.6,1,0,1,1,1,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,1 +1,39,1,9085,0,1,133.1,1,1,19,9,9,162.3,1,0,1,1,1,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,116.0,1,37,1,9,8,115.7,1,0,0,0,1,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,160.0,1,9,19,4,3,151.3,0,0,1,1,1,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,1 +1,39,1,8014,1,19,149.0,1,34,34,0,0,126.3,0,0,1,1,1,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,44,1,9238,0,39,140.0,41,1,1,4,6,137.5,0,0,0,1,1,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,130.0,1,37,37,9,9,129.0,1,0,1,1,1,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,19,38,7,7,118.7,0,0,1,1,0,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,128.0,0,0,1,1,1,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,1 +1,17,1,9070,0,1,135.0,1,19,37,5,9,145.9,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,128.0,1,1,19,9,7,118.2,0,0,1,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,128.0,1,19,38,9,9,127.0,0,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,140.0,1,37,12,9,9,150.0,0,0,0,1,0,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,0 +2,43,1,8014,1,1,160.0,1,37,39,9,4,140.9,0,0,1,1,1,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,133.0,1,38,19,8,7,127.3,1,0,1,1,1,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,1 +1,15,1,9670,0,1,160.0,1,37,12,9,9,149.5,1,0,1,0,0,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,152.0,101,2,1,9,1,168.5,1,0,1,1,0,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,1 +1,1,3,9085,0,1,147.0,1,19,19,9,1,135.6,1,0,1,1,1,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,1 +1,17,2,8014,1,1,120.0,1,37,34,0,0,117.6,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,141.0,1,37,37,9,9,130.2,0,0,1,1,0,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,1 +1,16,2,9147,0,1,139.0,1,38,37,9,9,123.7,1,0,1,1,1,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,134.0,1,19,38,4,8,129.5,0,0,1,1,1,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,113.0,1,1,37,9,10,117.2,1,0,1,1,1,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,18,2,9556,0,1,126.0,1,3,3,2,2,115.5,0,0,1,1,0,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,1 +1,39,1,8014,1,1,134.0,1,37,38,4,7,110.0,1,0,1,1,1,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,42,1,171,0,1,132.0,1,1,1,1,4,132.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9003,0,1,130.0,1,19,19,9,1,140.0,0,0,1,1,1,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9773,0,1,132.0,1,38,19,9,9,125.0,1,0,1,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,140.0,1,37,37,9,6,132.8,0,0,1,1,0,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,130.0,1,37,19,9,5,140.2,1,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9070,0,1,118.0,1,43,3,123,123,110.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,1 +1,39,1,8014,1,19,100.0,1,37,37,5,5,111.0,1,0,1,1,1,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,2 +1,1,3,9085,0,1,138.0,1,1,3,4,4,126.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,132.0,1,2,19,4,4,125.0,1,0,1,1,1,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,38,100.0,1,37,37,9,7,154.0,1,0,1,1,0,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,138.0,1,1,19,4,4,131.7,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,1 +2,39,2,9147,0,1,140.0,1,37,37,9,8,108.0,0,0,1,1,1,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,2 +1,1,5,9147,0,1,134.0,1,3,2,2,2,134.7,0,0,1,1,0,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,2 +1,43,1,9130,0,1,120.0,1,2,3,3,2,120.0,1,0,1,0,0,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,0 +1,1,3,9085,0,1,140.0,1,10,19,90,90,135.8,1,0,1,1,1,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,142.0,1,37,38,5,1,129.4,0,0,1,1,1,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,1 +1,17,4,9670,0,1,120.0,1,1,19,5,5,117.2,1,0,1,1,1,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,136.0,1,1,19,5,7,136.4,0,0,1,1,1,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,120.0,1,37,37,5,5,124.6,0,0,1,1,1,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,2 +1,39,1,9500,0,1,133.1,1,1,37,9,9,100.0,0,0,1,1,0,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,123.0,1,19,1,9,3,117.8,1,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,1 +5,39,1,9254,0,1,133.1,1,2,2,2,2,103.0,0,0,1,1,1,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,171,0,1,133.0,1,1,37,4,7,126.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,6,9500,0,1,119.0,1,1,1,4,4,115.0,1,0,1,1,0,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,143.0,1,38,19,151,193,134.3,1,1,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,135.0,1,1,19,4,4,129.1,0,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,43,2,9670,0,1,130.0,1,19,1,4,4,127.6,1,0,1,1,0,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,1,9254,0,1,126.0,1,37,37,5,1,126.0,0,0,1,0,0,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,0 +1,42,1,9119,0,1,120.0,1,19,37,9,9,113.8,0,0,1,0,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9991,1,1,140.0,1,37,37,9,9,135.8,1,0,1,1,0,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,1 +1,17,5,9085,0,1,118.0,1,38,38,9,9,112.4,1,0,1,1,1,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,1 +1,17,3,9773,0,1,134.0,1,2,1,3,3,129.5,1,0,1,1,0,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,129.0,1,1,38,4,7,123.4,0,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,132.0,1,19,37,4,9,128.0,1,0,1,1,1,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,137.0,1,38,37,7,5,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,1 +1,17,5,9119,0,1,138.0,1,19,19,5,5,123.3,1,0,0,1,0,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,138.0,1,1,1,3,4,132.5,1,0,1,1,1,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,1 +1,16,2,9070,0,1,133.0,1,1,3,4,2,122.5,1,0,1,1,1,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,2 +1,17,1,9130,0,1,137.0,1,38,19,5,7,130.0,1,0,1,1,1,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,2 +1,17,1,9238,0,1,131.0,1,37,37,9,7,121.9,0,0,1,1,1,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,1 +2,1,1,9500,0,1,142.0,1,19,38,4,5,130.3,0,0,1,1,1,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,1 +2,39,1,9556,0,1,160.0,1,37,37,9,6,120.0,0,0,1,1,1,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,0 +1,51,1,9670,0,1,126.0,1,3,3,1,10,111.0,0,0,0,1,0,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,1 +1,1,5,9853,0,1,141.0,1,37,19,9,5,133.0,1,0,1,1,1,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,0 +1,1,2,9670,0,1,124.0,1,19,1,9,4,117.7,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,133.0,1,19,19,9,5,120.1,1,0,1,1,1,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,1 +1,43,1,9147,0,1,133.1,1,4,19,2,1,128.2,0,0,1,1,1,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,0 +4,27,1,9070,0,2,130.0,1,34,34,0,0,130.0,0,0,1,1,1,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,0 +1,43,1,9003,0,1,150.0,1,2,4,4,1,150.0,0,0,1,1,0,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,1 +1,39,1,9991,1,19,133.1,1,19,37,7,5,155.5,1,0,0,0,0,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,0 +1,1,1,9238,0,1,106.0,1,1,1,3,3,105.0,0,0,1,1,0,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,111.0,1,19,38,3,3,111.4,1,0,1,0,1,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,0 +1,43,1,9254,0,1,130.0,1,1,19,5,7,130.0,0,0,1,1,1,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,0 +1,17,1,8014,1,1,120.0,1,38,37,6,6,113.0,0,0,1,1,1,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,139.0,1,1,37,4,9,131.3,1,0,1,1,1,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,1 +1,43,3,9254,0,1,110.0,1,37,37,9,9,107.2,1,0,1,1,0,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,147.0,1,1,1,4,4,134.3,1,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,130.0,1,37,38,9,6,130.0,1,0,1,1,1,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,139.0,1,37,38,9,9,124.0,1,0,1,1,0,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,122.0,1,37,37,9,9,126.9,1,0,1,1,1,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,11,11,90,4,114.0,1,0,1,1,0,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9147,0,1,132.0,1,39,39,3,3,127.8,1,0,1,0,0,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,128.0,1,38,37,5,6,122.1,0,0,1,1,1,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,2 +1,17,1,9085,0,1,127.0,1,19,38,194,193,117.6,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9500,0,1,145.0,1,3,3,2,3,141.8,0,0,1,1,1,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,1 +1,53,1,9556,0,42,140.0,1,1,19,4,5,140.0,0,0,1,1,1,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,1 +1,18,1,9147,0,1,160.0,1,19,19,5,8,137.6,1,0,1,1,1,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,1 +1,51,1,9670,0,19,133.1,1,2,1,3,10,120.0,0,0,0,1,0,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,19,133.1,1,19,39,5,3,121.7,0,0,0,0,1,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,126.0,0,0,1,1,0,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,1 +1,1,3,171,0,1,140.0,1,37,37,9,9,124.3,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,136.0,1,38,37,9,9,126.9,1,0,1,1,1,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,136.0,1,19,1,9,9,129.0,1,0,1,1,1,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,144.0,1,38,38,7,7,136.0,1,0,1,1,1,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,154.0,1,38,38,9,9,156.5,1,1,1,1,1,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,131.0,1,19,19,9,9,134.9,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +4,43,1,8014,1,1,140.0,1,38,37,9,9,126.0,0,0,1,1,1,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,141.0,1,37,37,9,7,126.3,1,0,1,1,1,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,1 +1,44,1,8014,1,39,150.0,1,1,37,9,7,146.7,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +1,1,2,9119,0,1,140.0,1,19,19,9,9,125.7,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,12,100.0,1,1,1,4,4,100.0,0,0,1,1,1,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,1 +1,42,1,9500,0,1,111.0,1,1,3,9,10,128.2,1,0,1,1,0,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,1 +1,17,2,9773,0,1,132.0,1,19,19,9,6,120.1,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,131.0,1,4,4,2,1,120.5,0,0,1,1,1,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,44,1,9003,0,39,170.0,1,19,19,5,5,170.0,1,0,1,1,0,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,1 +1,17,1,9773,0,1,150.0,1,38,38,7,7,137.8,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,19,133.1,1,37,37,9,10,120.0,0,0,0,0,0,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9670,0,39,110.0,1,37,1,9,4,110.0,0,0,1,1,1,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,130.0,1,5,3,2,2,130.0,0,0,1,1,0,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9670,0,1,133.1,1,34,3,7,2,130.6,1,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,38,9,10,140.0,0,0,1,1,0,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,133.1,1,19,38,9,9,119.6,1,0,1,1,1,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,118.0,1,19,19,3,3,110.0,1,0,1,1,1,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,2 +1,1,1,9773,0,1,137.0,1,1,1,5,5,129.3,1,0,1,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,127.0,1,19,38,5,9,129.5,1,0,1,1,1,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,126.0,1,38,19,9,6,119.4,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,116.5,0,0,1,1,1,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,125.0,1,19,19,4,7,128.5,1,0,1,1,1,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,2 +1,43,1,9773,0,1,133.1,22,34,34,90,90,130.0,0,0,0,1,1,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,125.0,1,1,1,5,5,128.5,0,0,1,1,0,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9500,0,1,133.1,1,19,37,9,9,120.0,0,0,1,1,1,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,1 +2,39,2,9147,0,1,133.1,1,37,37,5,7,110.0,0,0,1,1,0,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,6,9500,0,1,141.0,1,1,19,1,1,126.7,1,0,1,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,146.0,1,40,43,4,4,150.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,148.0,1,1,1,4,9,129.8,0,0,1,1,1,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,2 +1,17,1,9853,0,1,133.0,1,38,38,9,9,127.4,0,0,0,1,1,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,43,1,9147,0,1,120.0,1,37,37,5,3,113.4,0,0,1,1,0,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,148.0,1,19,3,4,2,136.5,0,0,1,1,1,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,178.0,1,2,1,2,3,157.7,0,0,1,1,0,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +2,7,1,9254,0,3,130.0,1,1,3,4,3,130.0,0,0,1,1,1,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,7,1,33,0,40,120.0,1,38,37,5,6,120.0,1,0,0,0,0,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,0 +2,1,1,9147,0,1,151.0,1,38,37,9,8,132.1,1,0,1,1,1,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,0 +1,43,2,9556,0,1,120.0,1,1,19,4,3,110.2,0,0,1,1,1,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,1 +2,1,4,9500,0,1,140.0,1,1,37,4,9,128.0,0,0,1,1,1,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,1 +1,42,1,9119,0,6,120.0,1,35,35,6,6,128.2,1,0,1,1,0,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,120.0,1,37,37,9,6,120.0,1,0,1,1,1,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,2 +2,39,1,9003,0,1,133.1,1,37,37,8,7,150.0,0,0,1,1,0,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,145.0,1,19,37,4,7,148.9,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,34,34,0,0,104.0,1,0,1,1,1,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,43,1,9085,0,1,110.0,1,3,19,4,6,105.0,0,0,0,0,0,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,0 +1,17,2,9254,0,1,108.0,1,37,37,9,7,108.0,1,0,1,1,1,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,1 +4,43,1,9238,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,1,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,136.0,1,19,37,173,183,118.4,1,0,1,1,1,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,18,1,9556,0,1,140.0,1,38,37,9,9,122.8,0,0,1,1,1,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,1 +1,39,1,9119,0,1,150.0,1,3,3,4,4,150.0,1,0,1,1,0,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,141.0,1,1,1,4,10,138.9,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,1 +1,18,4,9773,0,1,130.0,1,19,19,4,4,121.3,1,0,1,1,1,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,1,130.0,1,37,37,9,6,160.0,0,0,1,1,0,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,149.0,1,37,37,9,9,136.0,0,0,1,1,1,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,151.0,1,37,1,4,10,138.4,0,0,1,1,1,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,2 +1,39,1,9254,0,1,130.0,1,37,37,9,9,126.5,0,0,1,1,0,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,143.0,1,19,37,7,7,127.0,1,0,1,1,1,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,1 +2,57,1,9991,1,1,133.1,41,38,37,4,6,100.0,0,0,1,1,1,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,138.0,1,37,37,9,9,135.9,1,0,1,1,1,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,2 +1,43,1,8014,1,1,145.7,22,37,37,9,9,145.7,1,0,1,1,1,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,1 +4,39,1,9773,0,19,133.1,1,37,37,9,1,117.5,0,0,1,1,1,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,17,3,9238,0,1,118.0,1,1,19,4,10,112.4,1,0,1,1,1,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,8014,1,1,133.1,1,37,37,9,7,162.5,0,0,1,1,0,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,1 +1,1,3,9254,0,1,115.0,1,1,1,3,3,117.5,1,0,1,1,1,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,133.0,1,37,38,9,9,130.2,1,0,1,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,152.0,1,2,22,4,3,146.1,1,0,1,1,1,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +2,39,1,9085,0,12,133.1,1,1,39,5,3,140.0,1,0,0,0,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9003,0,1,140.0,1,38,1,9,4,138.3,0,0,1,1,0,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,130.0,1,38,37,9,6,133.9,0,0,1,1,0,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,140.0,1,37,37,9,9,142.5,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,120.0,1,38,1,9,3,118.3,1,0,1,1,1,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,117.0,1,1,19,4,7,113.5,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,141.0,1,19,1,7,3,128.8,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9147,0,1,125.0,1,3,38,2,10,118.7,1,0,1,1,1,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,116.0,1,37,1,5,3,124.8,1,0,1,1,0,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,120.0,1,36,37,0,0,126.7,1,0,1,1,0,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,1 +1,17,4,9853,0,1,140.0,1,19,38,4,1,128.5,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,1,1,3,10,130.0,0,0,1,1,0,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,136.0,1,3,37,2,8,121.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,154.0,1,37,37,9,9,149.5,1,0,1,1,1,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,138.0,1,19,38,5,8,133.5,0,0,1,1,1,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,128.0,1,1,37,4,3,117.9,1,0,1,1,1,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,1 +1,43,1,9130,0,1,150.0,1,3,3,3,4,150.0,1,0,1,1,1,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,110.0,1,19,38,3,5,117.4,1,0,1,1,1,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,135.0,1,37,38,9,6,122.1,1,0,1,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9003,0,1,140.0,1,37,37,9,6,104.8,0,0,1,1,1,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,143.0,1,37,37,9,7,131.8,1,0,1,1,1,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,142.0,1,1,1,3,3,133.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,141.0,1,1,19,5,10,127.0,0,0,1,1,1,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,1 +3,1,2,9085,0,1,135.0,1,19,1,4,4,129.4,1,0,1,1,1,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,39,1,9254,0,1,133.1,1,19,19,4,7,123.0,0,0,0,0,1,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,0 +1,17,2,9500,0,1,131.0,1,19,37,9,7,129.8,1,0,1,1,1,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,1 +1,39,1,9670,0,9,133.1,1,6,22,3,3,120.0,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,131.0,1,37,37,3,3,131.7,1,0,1,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,137.0,1,19,19,5,5,134.6,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,131.0,1,1,1,4,10,129.3,0,0,1,1,1,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,140.0,1,1,37,141,192,129.7,0,0,1,1,1,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,140.0,1,37,37,9,9,124.6,0,0,1,1,1,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,138.0,1,37,37,5,9,125.1,1,1,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,0 +1,2,1,9147,0,1,150.0,1,37,37,9,9,122.0,1,0,1,1,1,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,135.0,1,3,1,4,4,136.1,1,0,1,1,0,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,2 +1,39,1,9991,1,1,150.0,1,1,19,4,8,123.0,0,0,1,1,0,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,141.0,1,19,37,5,8,130.2,0,0,1,1,0,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,106.0,1,37,37,9,9,108.0,1,0,0,1,1,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,19,133.1,1,37,38,9,7,100.5,1,0,1,1,0,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,2 +1,43,1,9254,0,1,142.0,1,38,38,9,9,125.9,0,0,1,1,1,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,150.0,1,1,37,9,7,130.2,0,0,1,1,1,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,1 +4,39,1,9670,0,1,140.0,1,2,1,3,9,170.0,0,0,0,0,0,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9773,0,1,119.0,1,38,19,9,9,118.3,0,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,117.0,1,34,34,0,0,109.3,0,0,1,1,1,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,120.0,1,34,34,99,99,111.6,0,0,0,1,0,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,2 +1,39,1,9119,0,1,139.0,1,19,19,9,7,110.3,0,0,0,1,0,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,2 +1,43,1,9147,0,1,123.0,1,3,19,9,9,113.2,0,0,1,1,1,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,2 +1,43,1,9991,1,1,120.0,1,38,38,9,7,141.0,0,0,1,1,0,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,1 +1,1,1,9130,0,1,151.0,1,3,1,2,4,151.0,1,0,1,1,1,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,130.0,1,37,37,9,6,110.0,1,0,1,1,1,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,1 +1,43,1,9853,0,1,130.0,1,2,39,2,5,124.6,0,0,1,1,0,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,138.0,1,1,1,4,3,141.5,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,120.0,1,37,37,9,5,100.0,0,0,1,1,1,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9991,1,39,150.0,1,37,37,6,6,150.0,0,0,1,1,1,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,2 +2,39,1,9085,0,19,133.1,1,38,38,4,7,128.2,0,0,1,1,1,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.0,41,19,19,9,9,119.7,1,0,0,1,1,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,17,3,9085,0,1,128.0,1,1,19,4,90,124.2,0,0,1,0,1,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,120.0,1,1,1,9,9,129.1,1,0,1,1,0,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9773,0,1,125.0,1,19,19,9,7,129.6,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,137.0,1,40,19,2,9,130.7,1,0,1,1,1,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,0 +1,51,1,9147,0,1,116.0,1,3,3,2,2,115.2,0,0,0,1,0,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,17,5,9853,0,1,132.0,1,12,12,4,4,123.3,1,0,1,1,1,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,0 +1,7,1,9991,1,3,130.0,1,37,37,9,9,130.0,0,0,1,1,0,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,135.0,1,19,38,9,5,136.8,1,0,1,1,1,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,137.0,1,1,1,4,7,134.6,1,0,1,1,0,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,4,171,0,1,133.1,1,38,38,9,9,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,133.1,1,19,37,7,8,120.0,0,0,0,0,1,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,140.0,1,1,19,9,7,127.0,1,0,1,1,1,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,1 +1,18,1,9500,0,1,124.0,1,38,37,9,7,119.3,1,0,1,1,1,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,3,19,2,4,150.0,1,0,1,1,1,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,8014,1,19,133.1,1,3,19,90,90,123.5,0,0,1,1,1,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9853,0,1,133.1,1,37,37,5,5,116.5,0,0,1,1,1,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,0 +1,18,6,9500,0,1,144.0,1,1,1,3,6,130.8,1,0,1,1,1,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9670,0,1,151.0,1,19,19,1,1,100.0,0,0,0,1,1,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,125.0,1,1,19,4,6,115.2,0,1,1,1,1,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,37,38,4,9,110.0,0,0,0,0,1,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,133.1,1,19,19,5,5,108.5,1,0,1,1,1,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,130.0,1,37,11,90,90,122.6,0,0,1,1,1,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,113.0,1,19,37,9,9,118.6,1,0,1,1,1,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,140.0,6,2,3,5,2,124.3,1,0,1,1,1,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,2 +1,1,4,9119,0,1,111.0,1,37,37,9,5,107.5,1,0,1,1,0,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,143.0,1,19,38,9,9,133.4,1,0,1,1,1,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,1 +1,17,1,9773,0,1,141.0,1,2,3,2,2,133.7,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,151.0,41,3,3,2,5,161.9,1,0,1,1,1,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,43,1,33,0,1,143.0,1,37,1,9,10,121.2,1,0,1,1,0,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,1,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,141.0,1,1,19,8,7,128.8,1,0,1,1,1,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,2 +1,1,1,9238,0,1,115.0,1,19,38,7,7,108.7,0,0,1,1,1,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,114.0,1,1,1,4,0,108.8,1,0,1,1,1,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,2 +1,1,2,9853,0,1,112.0,1,37,37,191,182,106.1,1,0,0,1,1,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,2,9085,0,1,157.0,1,3,38,4,6,142.3,0,0,1,1,1,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,1 +2,44,1,8014,1,39,160.0,1,37,19,9,10,155.9,0,0,1,1,1,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,1 +1,1,4,171,0,1,137.0,1,1,38,4,8,141.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,144.0,1,1,37,9,9,126.5,1,0,1,1,1,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,145.0,1,1,1,4,10,131.4,0,0,1,1,1,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,115.0,1,1,1,9,4,109.1,1,0,0,0,1,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,170.0,1,37,37,0,0,150.8,1,0,1,1,1,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,0 +1,5,3,9070,0,1,157.0,1,3,1,9,6,138.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,1 +1,43,2,9238,0,1,129.0,1,34,30,0,5,118.9,1,0,1,1,0,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,5,9853,0,1,141.0,1,3,19,2,7,130.9,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,1 +4,39,1,9991,1,1,133.1,1,37,37,9,9,130.4,0,0,1,1,1,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,130.0,1,19,38,9,9,126.9,0,0,0,1,1,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,136.0,1,19,1,4,3,125.2,1,0,1,1,1,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,37,9,9,140.2,0,0,1,1,0,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,132.0,1,37,38,9,5,120.8,0,0,1,1,1,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,150.0,1,19,37,6,6,150.0,0,0,0,1,1,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,1 +2,42,1,9991,1,1,130.0,1,3,2,2,2,130.0,0,0,1,1,0,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,2 +4,39,1,8014,1,1,133.1,1,38,37,5,7,144.5,0,0,1,1,1,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,2,9773,0,1,150.0,41,1,37,9,7,130.8,0,0,1,1,1,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,1 +2,1,1,8014,1,1,151.0,1,37,37,9,9,152.4,0,0,1,1,1,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,1 +6,39,1,9500,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,0 +2,43,1,9670,0,1,100.0,1,34,34,0,0,128.2,0,0,1,1,0,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,148.0,1,1,19,3,3,131.7,1,0,1,1,1,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,142.0,1,19,19,7,7,142.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,127.0,1,1,38,4,7,125.6,0,0,0,1,1,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,146.0,1,38,38,9,7,134.1,1,0,1,1,0,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,0 +1,17,1,9670,0,1,115.0,1,1,1,4,4,109.1,1,0,1,1,1,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,2 +1,1,2,9773,0,1,148.0,1,1,19,9,9,141.7,0,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,116.0,1,37,37,0,5,114.3,1,0,1,1,1,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,139.0,1,38,19,5,7,130.6,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,1 +1,1,6,9147,0,1,128.0,1,37,37,9,9,116.5,0,0,1,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,2 +1,39,1,9130,0,3,150.0,1,3,1,90,90,150.0,1,0,1,1,1,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9670,0,1,122.0,1,1,19,4,4,116.1,0,0,1,1,0,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,2 +1,39,1,9119,0,1,100.0,1,37,37,9,8,160.0,0,0,0,0,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9254,0,1,128.0,1,19,1,7,9,121.7,1,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,143.0,1,37,38,7,7,133.8,1,0,1,1,1,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,107.0,1,38,38,7,7,103.5,1,0,1,1,1,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,1 +1,39,2,9147,0,1,143.0,1,19,5,4,1,100.0,1,0,1,1,0,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,140.0,0,0,0,0,1,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,160.0,1,1,1,5,4,160.0,1,1,1,0,0,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,0 +2,39,1,9500,0,19,133.1,1,38,38,2,10,120.0,0,0,1,1,1,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,0 +1,5,2,9853,0,1,122.0,1,19,19,4,5,112.6,1,0,1,1,1,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,3,9500,0,1,137.0,1,19,37,7,7,126.7,1,0,1,1,1,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,1 +1,7,1,9070,0,40,120.0,1,1,19,3,9,120.0,1,0,1,1,1,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,157.0,1,38,3,5,2,141.4,0,0,1,1,1,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,1 +2,1,2,8014,1,1,110.0,1,37,1,9,10,108.7,1,0,1,1,1,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,129.0,1,19,37,7,6,120.0,1,0,1,1,1,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,108.0,1,19,1,4,3,111.9,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9070,0,12,110.0,1,37,38,5,10,130.0,0,0,0,0,0,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,122.0,1,1,1,193,101,126.2,0,0,1,1,1,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,4,4,3,3,143.6,0,0,0,1,0,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,2 +1,7,1,9119,0,3,130.0,1,34,34,90,90,130.0,0,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,8014,1,39,120.0,1,19,37,7,6,121.8,1,0,1,1,1,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,142.0,1,37,38,9,9,137.5,1,0,1,1,0,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,138.0,1,3,19,2,4,131.0,1,0,1,1,0,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,0 +1,17,2,9853,0,1,125.0,1,1,19,5,5,119.4,1,0,1,1,1,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,137.0,1,1,1,5,4,131.1,1,0,1,1,1,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,133.0,1,38,38,9,9,128.1,1,0,1,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,0 +4,39,1,9991,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,1,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,17,1,9130,0,1,138.0,1,2,19,2,6,126.3,1,0,1,1,1,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,2 +1,17,4,9500,0,1,135.0,1,1,1,4,4,127.0,1,0,1,1,1,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,140.0,1,4,3,3,3,127.8,0,0,1,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,1 +1,5,1,9147,0,1,126.0,1,19,38,5,6,117.3,1,0,1,1,1,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,2 +1,39,1,9670,0,1,133.1,1,1,19,4,9,140.0,0,0,1,1,0,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,126.0,1,38,38,9,8,118.8,1,0,1,1,1,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,1 +2,42,1,9147,0,1,133.1,1,37,37,9,9,115.8,0,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,126.0,1,1,37,7,9,132.7,0,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,133.0,1,19,19,5,7,123.6,0,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +1,17,4,9556,0,1,135.0,1,38,37,3,7,129.0,1,0,1,1,1,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,110.0,1,37,37,9,9,107.6,1,0,1,1,0,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,2 +1,17,4,9147,0,1,135.0,1,19,1,0,4,128.7,1,0,1,1,0,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +2,1,1,8014,1,1,150.0,1,1,37,4,7,139.9,1,0,1,1,1,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,116.0,1,1,38,4,3,114.6,1,0,1,1,1,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,121.0,1,19,37,1,3,131.5,0,0,1,1,1,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,100.0,1,19,1,1,90,114.0,1,0,0,0,1,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,146.0,1,19,37,5,8,135.8,1,0,1,1,1,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,1 +1,44,1,9119,0,39,140.0,1,1,19,4,5,140.0,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9670,0,1,136.0,1,19,19,5,5,122.0,0,0,0,0,1,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,0 +2,39,1,9003,0,1,133.1,1,19,19,4,4,107.5,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9070,0,1,164.0,1,38,38,9,7,165.8,1,0,1,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,154.0,1,38,38,9,9,133.4,1,0,1,1,1,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,127.0,1,19,37,7,7,121.5,1,0,1,1,0,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,2 +1,43,6,9238,0,1,129.0,1,34,34,0,0,125.2,0,0,1,1,1,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,125.0,1,19,1,4,5,122.6,1,1,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,2 +1,17,1,9070,0,1,136.0,1,38,19,7,7,121.7,1,0,1,1,1,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,131.0,1,38,1,7,4,128.3,1,0,1,1,1,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,1 +1,1,4,171,0,1,132.0,1,1,19,4,5,138.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9254,0,1,115.0,1,12,1,9,3,108.7,1,0,1,1,1,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,131.0,1,1,37,3,7,120.2,0,0,1,1,1,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,134.0,1,1,1,4,9,124.2,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,142.0,1,19,1,9,1,132.6,0,0,1,1,1,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,2,1,3,6,150.0,1,0,1,1,0,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,1 +1,39,1,9254,0,1,130.0,1,19,38,9,7,113.5,0,0,1,1,1,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,135.0,1,2,1,2,8,126.6,0,0,1,1,1,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,1 +1,39,1,9254,0,12,133.1,1,37,37,5,7,119.3,1,0,1,1,0,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,2 +1,1,1,9130,0,1,110.0,1,3,19,2,9,105.5,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9130,0,1,134.0,41,1,19,5,5,125.6,1,0,1,1,1,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,151.0,2,1,1,5,9,146.5,0,0,1,1,1,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,133.0,1,1,3,3,3,135.8,1,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,7,1,9070,0,3,140.0,1,37,2,9,3,140.0,0,0,1,0,1,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,147.0,1,37,19,9,5,133.7,1,0,1,1,1,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,2 +1,51,1,9500,0,1,127.0,1,19,1,5,9,150.0,0,0,1,1,1,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,143.0,1,1,37,5,9,126.6,0,0,0,0,1,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,160.0,1,37,38,9,9,160.0,0,0,0,1,1,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,1 +4,39,1,8014,1,19,133.1,1,34,34,0,0,100.0,0,0,1,1,1,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,0 +4,43,1,9853,0,1,133.1,100,19,22,90,90,100.0,0,0,1,1,1,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,2,120.0,1,37,37,9,8,120.0,0,0,1,1,1,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,2 +1,39,1,9130,0,40,129.0,1,3,3,2,2,155.3,1,0,1,1,1,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,150.0,1,38,37,9,9,150.0,1,0,1,1,0,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +1,44,1,9130,0,39,160.0,1,1,37,3,3,160.0,1,0,0,0,1,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,0 +2,39,1,9003,0,1,133.1,1,1,19,4,4,120.0,0,0,0,0,0,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,115.0,1,19,38,9,9,108.0,0,0,1,1,1,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,134.0,1,1,19,4,5,126.0,0,0,1,1,1,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,135.0,1,38,38,5,8,133.3,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,5,1,9670,0,1,135.0,1,1,12,4,4,140.3,1,0,1,1,1,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,122.0,1,19,1,4,8,135.8,0,0,1,1,1,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,19,19,3,9,112.6,1,0,1,1,1,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,4,9773,0,1,147.0,1,1,1,4,5,139.7,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,140.0,1,19,19,4,5,140.0,1,0,1,1,1,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,130.0,1,12,12,9,9,126.1,0,0,1,1,0,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,0 +1,43,2,9147,0,1,130.0,1,34,37,9,9,118.5,1,0,1,1,0,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,1 +1,17,4,9500,0,1,138.0,1,4,1,2,1,133.0,1,0,1,1,1,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,138.0,1,37,37,194,171,131.0,1,0,1,1,1,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,19,5,8,147.3,0,0,1,1,1,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,1 +1,1,6,9500,0,1,149.0,1,1,1,4,9,133.0,1,0,1,1,1,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,1 +1,16,6,9773,0,1,136.0,1,38,14,0,0,129.7,1,0,1,1,1,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,130.0,1,1,34,9,9,124.8,1,0,1,1,1,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,111.0,1,1,1,3,3,112.4,1,0,1,1,0,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,121.0,1,1,19,4,7,135.4,1,0,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,1 +1,1,1,9556,0,1,135.0,1,37,38,7,9,125.8,0,0,1,1,1,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,136.0,1,37,19,5,8,129.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,4,9670,0,1,110.0,1,1,37,7,7,111.1,1,0,1,0,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,128.0,1,38,38,5,5,118.6,1,0,1,1,1,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,1 +2,39,1,9500,0,19,133.1,1,37,38,9,10,120.9,1,0,1,1,1,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,0 +1,5,3,9085,0,1,143.0,1,37,37,0,90,159.1,0,0,0,1,1,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,0 +4,39,1,9238,0,1,120.0,1,37,37,9,9,125.5,1,0,1,1,1,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,126.0,1,3,1,2,5,116.9,1,1,1,1,1,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,2 +1,16,1,9556,0,1,137.0,1,37,37,9,7,122.7,1,0,1,1,1,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,136.0,1,1,1,9,9,123.8,1,0,1,1,1,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +4,39,1,9130,0,1,133.1,1,3,1,5,5,110.0,1,0,1,1,1,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,0 +1,17,4,9085,0,1,138.0,1,19,36,90,7,134.9,1,0,1,1,1,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,3,9070,0,1,130.0,1,1,4,4,2,131.4,0,0,1,1,0,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,1 +2,42,1,9853,0,1,133.1,1,37,37,4,7,100.0,0,0,1,1,1,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,115.0,1,1,1,9,9,134.3,1,0,1,1,0,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,108.0,1,1,38,5,8,105.9,0,0,1,1,1,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,2 +1,39,1,9991,1,1,120.0,1,19,37,5,5,128.2,0,0,1,0,0,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +5,7,1,9130,0,3,160.0,1,19,38,9,6,160.0,0,0,1,0,1,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,0 +1,1,1,9130,0,1,121.0,1,3,19,2,9,115.4,1,0,1,1,0,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,0 +1,17,1,9254,0,1,118.0,1,11,34,5,0,122.2,1,0,1,1,1,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,0 +1,43,1,9238,0,1,120.0,1,1,38,4,3,118.3,0,0,1,1,1,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,1 +1,1,4,9147,0,1,108.0,1,3,1,3,4,109.1,1,0,1,1,0,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,7,1,9991,1,40,130.0,1,19,19,7,3,130.0,0,0,1,1,1,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,133.1,1,37,19,9,10,150.0,0,0,1,1,0,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,2 +1,7,1,9119,0,40,130.0,1,1,1,4,4,130.0,0,0,1,1,0,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,128.0,1,19,19,5,5,124.5,1,0,1,1,1,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,1 +1,43,1,9085,0,1,170.0,1,19,19,5,1,170.0,1,0,1,1,1,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,2 +1,1,3,9500,0,1,113.0,1,3,1,134,135,107.8,1,0,1,1,1,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,2 +1,1,2,9670,0,1,117.0,1,37,37,9,9,111.8,0,0,1,1,1,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,1,1,9,4,126.2,1,0,1,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,1 +1,17,2,9238,0,1,145.0,1,19,38,7,6,128.6,1,0,1,1,1,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,1 +1,7,1,9147,0,3,130.0,1,38,38,1,9,130.0,0,0,1,1,1,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,1 +1,43,1,9500,0,1,170.0,1,19,37,8,8,100.0,0,0,1,1,1,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,2 +1,17,1,9147,0,1,148.0,1,38,37,5,5,134.0,0,0,1,1,0,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,17,5,9085,0,1,118.0,1,1,38,4,7,122.2,1,0,1,1,1,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,133.1,1,38,38,191,192,118.0,0,0,0,1,1,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,1 +1,18,1,9853,0,1,132.0,1,37,37,9,5,126.1,0,0,1,1,1,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,1 +6,39,1,8014,1,1,133.1,1,37,37,9,9,119.0,0,0,1,1,1,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,133.1,1,1,37,7,7,118.0,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,123.0,1,38,38,4,7,114.3,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9991,1,1,143.0,1,19,37,5,8,135.0,0,0,1,1,1,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,128.0,1,1,1,2,10,116.5,0,0,1,1,0,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,0 +2,39,1,9085,0,1,120.0,1,19,19,1,4,130.0,0,0,1,1,1,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,0 +2,39,1,171,0,19,100.0,1,37,37,9,9,139.0,0,0,1,1,0,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,43,3,9500,0,1,139.0,1,38,37,9,8,146.5,0,0,1,1,1,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,1 +1,1,1,9085,0,1,120.0,1,37,37,9,1,123.2,0,0,1,1,1,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,1 +1,39,1,9085,0,1,140.0,1,3,3,4,2,141.7,1,0,1,1,1,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,127.0,1,2,2,3,4,115.8,1,0,1,1,0,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,117.0,1,19,19,9,9,116.3,1,0,1,1,1,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,152.0,1,19,37,3,8,156.9,0,0,1,1,1,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,140.0,1,1,19,4,4,140.7,0,0,1,1,1,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,133.0,1,3,19,2,7,120.4,1,0,1,1,1,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,1 +1,39,1,9147,0,1,160.0,1,38,38,7,9,121.4,0,1,1,1,1,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,120.0,1,1,2,9,3,130.0,1,0,1,1,1,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,1 +1,17,2,9238,0,1,139.0,1,2,3,3,3,132.7,1,0,1,1,1,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,100.0,1,37,37,6,6,108.3,0,0,1,1,0,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,2 +1,1,2,8014,1,1,107.0,1,19,11,0,0,103.5,1,0,1,1,1,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,1 +1,17,5,9773,0,1,113.0,1,38,38,191,175,110.2,1,0,0,1,1,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,39,1,9670,0,12,133.1,1,1,19,1,5,100.0,1,0,0,0,1,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,39,140.0,1,38,19,9,5,110.0,0,0,1,1,1,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,2 +1,18,2,9238,0,1,126.0,1,19,37,5,7,129.9,1,0,1,1,0,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,1 +1,18,1,9254,0,1,137.0,1,19,19,4,5,126.9,0,0,1,1,0,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,1 +1,17,1,9773,0,1,121.0,1,37,37,9,9,122.4,0,0,1,1,1,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,51,1,9070,0,1,122.0,1,38,38,9,9,128.8,1,0,1,1,0,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,141.0,1,1,1,3,10,142.8,0,0,1,1,1,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,1 +2,39,1,9670,0,1,130.0,1,19,38,9,9,162.3,0,0,1,1,0,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,0 +1,18,1,9853,0,1,133.1,1,1,19,141,182,106.0,1,0,0,1,1,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,2 +1,17,1,9147,0,1,120.0,1,19,19,3,3,113.4,0,0,1,1,1,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,147.0,1,37,19,7,7,134.4,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,44,1,9003,0,1,120.0,1,1,3,144,123,120.0,0,0,1,1,0,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,2 +1,17,4,9500,0,1,137.0,1,1,37,9,9,128.4,1,0,1,1,1,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,1 +1,39,1,9238,0,19,133.1,1,37,37,9,9,120.0,0,1,0,1,1,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,0 +4,39,1,9085,0,1,140.0,1,37,37,9,9,154.6,0,0,1,0,1,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,2 +1,39,1,9003,0,19,133.1,1,37,19,9,7,134.3,0,0,1,1,0,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,0 +1,39,1,9119,0,1,130.0,1,19,37,9,4,149.0,1,0,1,1,0,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,2 +1,17,1,9254,0,1,115.0,1,1,19,3,3,109.4,1,0,1,1,1,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,1 +1,17,1,9003,0,1,126.0,1,37,3,5,2,116.9,0,0,1,1,0,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,128.0,1,1,1,2,2,130.8,1,0,1,1,1,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,0 +1,1,1,9254,0,1,127.0,1,19,19,4,6,120.7,0,0,0,0,1,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,43,1,9238,0,1,110.0,1,14,14,90,90,112.5,1,0,1,1,1,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,142.0,1,3,19,5,5,130.8,1,0,1,1,1,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,1 +1,39,1,9130,0,1,150.0,1,1,1,4,10,110.0,0,0,0,1,0,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,0 +1,1,5,9238,0,3,135.0,1,1,38,9,3,129.4,0,0,0,1,1,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,133.0,1,19,37,1,9,128.5,1,0,1,1,1,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,1 +1,39,2,9991,1,1,133.1,1,19,38,9,9,102.5,0,0,1,0,0,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9773,0,1,136.0,1,1,38,9,8,131.5,1,0,1,1,1,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,138.0,1,37,38,9,8,134.2,1,0,1,1,1,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,7,2,9500,0,3,140.0,1,37,38,9,9,138.0,0,0,1,1,0,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,0 +1,43,1,9003,0,1,120.0,1,1,1,4,10,134.4,0,0,1,1,0,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,140.0,1,19,19,9,9,124.3,1,0,1,1,1,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,1 +1,17,3,9254,0,1,127.0,1,12,38,5,7,116.9,1,0,0,1,1,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,0 +1,17,1,9238,0,1,145.0,1,38,38,9,7,145.0,0,0,1,1,1,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +2,39,1,8014,1,1,140.0,1,19,19,9,7,102.5,0,0,1,1,1,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,1 +1,17,6,9500,0,1,131.0,1,1,19,7,7,126.5,1,0,1,1,1,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,1 +1,1,2,9500,0,1,124.0,1,34,34,0,0,123.3,1,0,1,1,1,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,0 +2,39,1,9991,1,1,120.0,1,37,3,9,3,168.2,0,0,1,1,0,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,5,9773,0,1,118.0,1,38,19,9,9,113.8,1,0,1,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,122.0,1,19,38,7,7,117.1,1,0,1,1,1,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,115.0,1,19,1,3,7,113.6,0,0,1,1,0,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,2 +1,17,2,9254,0,1,141.0,1,1,4,4,4,127.7,0,0,1,1,1,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,1 +1,44,1,8014,1,39,130.0,1,37,38,6,6,130.0,1,0,1,1,1,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,1 +1,17,2,9556,0,1,120.0,1,37,37,5,5,111.3,1,0,1,1,1,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,145.0,1,1,19,10,5,150.6,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,129.0,1,38,19,3,7,118.9,1,0,1,1,1,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,2 +1,1,5,9085,0,1,121.0,1,38,37,9,8,114.0,1,0,1,0,1,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,0 +1,17,1,9254,0,1,126.0,1,1,1,9,9,124.3,0,0,1,1,1,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,149.0,1,1,3,0,0,148.7,0,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9147,0,1,125.0,1,38,38,6,8,114.5,1,0,1,1,1,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,1 +1,16,3,9085,0,1,130.0,1,37,37,9,2,119.5,1,0,1,1,1,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,145.0,1,19,37,9,9,132.3,1,0,1,1,1,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,2 +1,17,1,9773,0,1,128.0,1,19,38,5,7,125.6,1,0,1,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9254,0,1,135.0,1,38,37,9,7,139.2,0,0,1,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,139.0,1,37,38,6,6,121.3,1,0,1,1,1,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,2 +1,44,1,9070,0,39,150.0,1,12,37,3,9,147.7,0,0,0,1,1,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,110.0,1,3,19,4,5,109.0,0,0,1,1,0,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,133.1,1,38,38,5,9,105.0,1,0,1,1,1,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,1 +2,51,1,9991,1,1,127.0,1,37,37,8,4,100.1,0,0,1,1,1,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,1 +1,17,1,171,0,1,135.0,1,19,1,4,1,131.9,1,0,1,1,0,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,1 +4,39,1,9556,0,1,160.0,1,19,3,9,2,130.0,0,0,1,1,1,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,2 +1,17,5,9119,0,1,123.0,1,3,1,2,9,116.0,1,0,0,0,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,43,1,9500,0,1,140.0,1,19,19,7,7,138.6,0,0,1,1,1,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,1 +1,17,3,9238,0,1,141.0,1,19,38,9,7,125.6,1,0,1,1,1,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,39,1,9500,0,3,130.0,1,2,2,1,1,130.0,0,0,1,1,1,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,37,37,7,9,111.0,0,0,1,0,0,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9070,0,1,148.0,1,1,1,4,8,141.4,0,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9147,0,1,115.0,1,1,38,3,8,109.8,1,0,1,1,1,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,1 +1,7,3,9130,0,3,130.0,1,19,37,90,5,130.0,0,0,0,0,1,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,0 +1,1,5,9500,0,1,141.0,1,38,19,7,7,132.5,1,0,1,0,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,133.0,1,19,37,9,9,129.9,0,0,1,1,0,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,142.0,1,19,37,4,7,141.3,0,0,1,1,1,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,130.0,1,37,37,9,10,130.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,133.1,1,19,38,7,4,125.7,0,0,1,1,1,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,129.0,1,19,37,9,9,117.5,1,0,1,1,1,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,103.0,1,1,19,9,9,108.3,0,0,1,1,1,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,2 +1,1,1,9853,0,1,133.1,1,19,19,9,9,97.0,1,0,1,1,1,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,0 +2,7,1,9238,0,3,150.0,1,37,37,191,192,150.0,0,0,1,1,1,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,0 +1,39,1,9085,0,12,133.1,1,34,34,99,99,128.2,0,0,0,0,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9070,0,1,129.0,1,3,4,2,2,136.4,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,2 +1,39,2,9147,0,38,133.1,1,19,38,9,9,102.5,0,0,1,0,0,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9853,0,1,133.1,1,34,34,0,0,118.9,1,0,1,1,1,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,135.0,1,19,38,9,9,129.2,0,0,1,1,1,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,122.0,1,37,37,9,3,115.7,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,42,1,9853,0,1,120.0,1,1,19,4,7,111.3,0,0,1,1,1,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,141.0,1,38,19,9,10,125.6,1,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,1 +1,17,4,9500,0,1,133.0,1,19,19,3,10,131.1,1,0,1,1,1,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,106.0,1,1,19,4,4,106.4,1,0,1,1,1,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,2 +2,39,1,9147,0,1,133.1,1,37,37,9,9,140.0,0,0,1,0,1,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,0 +1,51,1,9070,0,1,130.0,1,3,1,2,8,122.2,0,0,0,1,1,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,1 +1,17,6,9500,0,1,143.0,1,38,1,9,10,127.3,1,0,1,1,1,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,154.0,1,1,1,5,7,154.7,0,0,1,1,1,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,1 +1,7,1,9991,1,40,120.0,1,37,37,9,7,120.0,0,0,1,1,1,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,151.0,1,37,1,9,9,138.4,1,0,1,1,1,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,1 +2,39,2,9003,0,19,133.1,1,38,19,4,1,110.0,0,0,1,0,0,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9119,0,1,129.0,1,12,1,4,10,124.1,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,0 +1,17,1,9238,0,1,120.0,1,37,37,4,9,117.1,1,0,1,1,1,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,133.1,1,3,1,4,9,105.0,1,0,1,1,0,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,2 +1,17,1,9147,0,1,120.0,1,38,38,9,8,118.3,0,0,1,1,0,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,0 +1,18,1,9147,0,1,147.0,1,19,1,9,7,139.3,1,0,1,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,140.0,1,19,19,5,5,131.3,0,0,1,1,0,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,133.0,1,38,19,9,8,128.8,1,0,1,1,0,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,1 +1,17,1,9254,0,1,127.0,1,1,1,4,8,126.7,1,0,1,0,0,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9147,0,1,131.0,1,1,19,4,5,120.2,1,0,1,1,1,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,143.0,1,38,38,5,5,133.9,0,0,1,1,1,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,1 +4,39,1,9147,0,1,140.0,1,37,37,9,9,142.8,0,0,1,1,1,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,138.0,1,19,1,5,5,128.0,1,0,1,1,1,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,1 +1,43,1,9500,0,1,150.0,1,37,37,9,9,130.8,1,0,1,1,1,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,160.0,1,19,38,9,9,152.0,0,0,1,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,42,1,9254,0,1,154.0,1,38,37,1,1,154.0,1,0,1,1,1,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,141.0,1,37,37,4,4,138.9,0,0,1,1,1,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,135.0,1,38,37,9,8,126.3,1,0,1,1,1,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,1 +1,17,2,9853,0,1,138.0,1,1,1,9,4,123.0,1,0,1,1,1,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,0 +2,1,1,9085,0,1,139.0,1,19,19,192,144,127.1,0,0,1,1,0,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,1 +1,17,4,9070,0,1,116.0,1,38,37,9,9,109.0,0,0,1,1,1,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,0 +1,44,1,9003,0,39,140.0,1,38,38,6,3,140.0,0,0,1,1,1,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9254,0,1,120.0,1,19,19,4,4,125.5,0,0,1,1,0,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,43,1,9991,1,1,120.0,1,37,37,9,8,122.5,1,0,1,1,1,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,2 +1,17,1,9070,0,1,136.0,1,1,37,4,5,130.8,0,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,116.0,1,38,19,8,10,110.8,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9853,0,1,146.0,1,19,38,9,3,145.3,1,0,1,1,1,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,150.0,1,37,37,9,7,150.0,0,0,1,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9670,0,1,124.0,1,1,19,5,4,124.4,0,0,1,1,1,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,39,1,8014,1,1,133.1,1,37,38,9,9,148.5,0,0,1,1,0,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,148.0,1,1,1,9,9,127.0,1,0,1,1,0,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,1 +4,1,1,8014,1,1,133.1,1,39,19,4,10,143.0,1,0,1,1,1,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,133.1,1,1,19,3,5,115.0,0,0,1,0,0,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,0 +2,44,1,9003,0,39,160.0,1,37,38,9,4,160.0,0,0,1,1,1,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,1 +1,16,3,9070,0,1,152.0,1,1,38,4,8,156.9,1,0,1,1,1,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,37,37,9,9,126.3,0,0,1,1,1,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,1,5,9773,0,1,131.0,1,1,38,9,5,132.4,1,0,0,0,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,9556,0,1,140.0,1,37,37,9,8,105.0,1,0,1,1,1,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,1 +1,1,3,9070,0,1,128.0,1,19,19,3,3,129.8,1,0,1,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,2 +1,1,2,9500,0,1,133.1,1,19,38,7,9,125.5,1,0,1,1,1,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,1 +1,44,1,9238,0,39,140.0,1,38,37,7,7,143.0,0,0,1,1,1,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,139.0,1,19,38,4,9,146.7,1,0,1,1,1,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,1 +1,17,1,9085,0,1,129.0,1,1,37,9,9,118.2,1,0,1,1,1,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,1 +1,43,1,9238,0,1,142.0,1,34,34,99,99,131.9,0,0,1,1,1,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,1 +1,1,3,9500,0,1,139.0,1,1,19,9,3,130.3,1,0,1,1,1,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,120.0,1,19,38,5,5,152.4,0,0,1,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,149.0,1,19,19,4,6,147.6,1,0,1,1,1,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,1 +1,51,1,8014,1,2,110.0,1,19,38,9,10,110.0,0,0,1,1,0,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,1 +1,17,3,9119,0,1,135.0,1,1,19,141,193,121.7,1,0,1,1,0,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,2 +1,1,4,9773,0,1,122.0,1,19,19,9,7,121.0,1,0,1,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,7,1,9003,0,3,120.0,1,1,19,4,1,120.0,1,0,1,1,0,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,1 +1,17,4,9500,0,1,140.0,1,19,37,4,8,133.3,1,0,1,1,1,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,121.0,1,1,1,5,4,111.9,1,0,1,0,0,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9119,0,3,130.0,1,1,38,90,90,143.4,0,0,1,1,0,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,9238,0,1,120.0,1,37,37,6,9,121.0,0,0,1,1,1,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,154.0,1,38,37,4,4,141.4,0,0,1,1,1,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,1 +1,7,1,8014,1,40,130.0,1,19,1,5,10,130.0,1,0,0,0,1,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,1,133.1,1,1,1,4,4,120.0,0,0,0,0,0,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,120.0,1,37,1,9,5,113.4,1,0,1,1,1,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,1 +1,1,5,9500,0,1,139.0,1,38,37,7,7,126.3,1,0,1,1,1,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,135.0,1,38,19,194,193,135.4,1,0,1,1,0,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,150.0,1,3,2,2,2,150.0,0,0,1,1,0,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,0 +2,43,1,9991,1,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,1 +1,43,1,9500,0,1,130.0,1,1,1,7,4,136.0,1,0,1,1,0,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,1 +1,39,1,9003,0,3,130.0,1,3,3,1,2,150.0,0,0,1,1,1,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,1 +1,17,2,9147,0,1,123.0,1,1,38,4,7,115.3,1,0,1,1,1,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,2 +1,1,5,9500,0,1,101.0,1,38,38,9,9,104.5,1,0,1,1,1,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,140.0,1,1,19,9,9,128.8,0,0,1,1,0,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,1 +1,39,2,9119,0,1,120.0,1,37,37,5,5,128.0,0,0,1,1,0,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,8014,1,15,133.1,1,34,34,0,0,100.0,1,0,1,0,1,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9130,0,1,133.1,1,6,11,4,5,138.4,0,0,1,1,0,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,142.0,1,37,37,6,7,136.1,1,0,1,1,1,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,132.0,1,37,37,9,9,123.6,1,0,1,1,1,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,19,19,9,9,126.9,1,0,1,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,15,1,9238,0,1,150.0,26,3,37,2,8,132.5,1,0,1,0,1,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,1,1,9853,0,1,142.0,1,12,12,9,4,132.6,1,0,1,1,1,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,1 +1,17,4,9254,0,1,106.0,1,37,19,9,7,116.9,1,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,1 +1,17,4,9070,0,1,160.0,1,1,19,5,7,155.5,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,1 +1,42,1,9500,0,1,157.0,1,3,3,3,3,100.0,0,0,1,1,1,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,131.0,1,3,19,1,4,118.8,0,0,1,1,1,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,1 +1,43,2,9773,0,1,120.0,1,34,34,0,0,103.6,1,0,1,1,1,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,125.0,1,34,37,9,9,129.2,1,0,0,0,1,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,0 +1,1,4,9085,0,1,145.0,1,37,1,9,9,145.0,1,0,1,1,1,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,136.0,1,1,1,9,3,122.7,1,0,1,1,0,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,2 +1,1,4,9147,0,1,120.0,1,19,38,5,5,122.8,1,0,1,1,0,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,2 +1,1,2,9085,0,1,140.0,1,37,38,9,7,137.0,0,0,1,1,1,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,120.0,1,4,1,4,10,112.0,1,0,1,1,1,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,2 +1,43,1,9147,0,1,123.0,1,37,38,7,7,110.0,0,0,1,1,0,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,138.0,1,38,19,9,5,144.3,0,0,1,1,1,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,12,133.1,1,37,37,9,9,120.0,0,0,1,1,1,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,51,1,9147,0,1,140.0,1,19,19,9,7,120.4,0,0,0,0,1,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,145.0,1,37,1,9,4,138.8,1,0,1,1,1,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,133.0,1,19,38,5,0,133.7,1,0,1,1,1,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9130,0,39,150.0,1,5,1,2,5,150.0,1,0,1,1,0,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,2 +1,43,1,9991,1,1,140.0,1,37,38,9,8,135.5,0,0,0,0,1,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,0 +1,1,1,9254,0,1,123.0,1,38,19,9,4,117.8,0,0,1,1,0,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,2 +1,1,4,9500,0,1,125.0,1,1,12,3,6,115.2,1,0,1,1,1,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,1 +1,17,2,9254,0,1,129.0,1,12,37,9,9,122.0,1,0,1,1,1,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,5,2,9070,0,1,143.0,1,1,1,4,10,146.2,1,0,1,1,0,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,117.0,1,38,38,4,9,120.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +2,39,1,9991,1,3,130.0,1,3,1,1,10,160.0,0,0,1,1,1,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,0 +1,17,1,9556,0,1,133.0,1,38,37,9,9,124.4,1,0,1,1,1,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,1 +1,1,1,9003,0,1,124.0,1,38,19,9,7,116.0,0,0,1,1,0,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,164.0,1,19,1,9,9,161.2,0,0,1,1,0,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,1 +1,43,1,9991,1,1,130.0,1,37,37,9,9,119.5,1,0,1,1,1,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,100.0,1,1,19,1,5,130.0,0,0,0,1,1,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,142.0,1,19,19,7,3,132.9,0,0,1,1,0,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,126.0,1,19,19,3,7,123.9,0,0,1,1,1,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,1 +1,1,4,9254,0,1,132.0,1,1,38,5,6,122.6,1,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,1 +1,1,6,9238,0,1,125.0,1,38,1,7,4,118.4,1,0,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,9003,0,1,140.0,1,3,3,2,2,110.0,0,0,1,1,0,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,1 +1,1,1,171,0,1,138.0,1,1,40,4,3,149.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,43,1,171,0,1,144.0,1,19,19,9,4,121.6,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,2,9773,0,1,129.0,1,37,37,9,7,117.1,1,0,1,1,1,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,2 +1,1,6,9853,0,1,114.0,1,19,19,9,9,110.2,1,0,1,1,0,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,0 +2,42,1,9147,0,1,100.0,1,37,37,9,9,100.0,1,0,1,1,1,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,135.0,1,38,19,9,5,126.3,0,0,1,1,0,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,171,0,1,156.0,1,3,3,2,2,147.7,1,0,1,1,1,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,1 +1,1,1,9147,0,1,139.0,1,38,1,5,5,127.1,1,0,1,1,0,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,127.0,1,1,37,4,9,128.1,0,0,1,1,0,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,2 +1,1,5,9070,0,1,124.0,1,37,37,9,9,113.9,1,0,1,1,1,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,17,4,9500,0,1,129.0,1,38,37,9,5,120.0,1,0,1,1,1,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,118.0,1,19,19,9,9,122.2,0,0,1,1,1,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,1 +2,39,1,9556,0,19,133.1,1,38,37,7,7,99.5,1,0,0,0,1,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,130.0,1,38,38,7,7,136.3,1,0,1,1,0,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,1 +1,17,1,9853,0,1,112.0,1,2,19,3,9,106.1,1,0,1,1,1,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,2 +1,43,1,9119,0,1,146.0,1,3,1,2,3,100.0,0,0,1,1,0,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9085,0,1,132.0,1,1,12,4,5,124.3,0,0,1,1,1,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,2 +1,17,1,8014,1,1,136.0,1,37,37,5,8,132.5,0,0,0,1,1,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,1 +1,7,1,9500,0,3,130.0,1,37,37,90,90,130.0,1,0,1,1,0,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,135.0,1,1,1,4,4,122.8,0,0,1,1,1,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,1 +2,39,1,9254,0,1,130.0,1,37,37,9,9,125.0,0,0,1,1,1,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,1 +2,43,1,8014,1,1,130.0,1,34,34,0,0,130.0,0,0,1,1,1,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,133.1,1,19,19,9,8,132.0,1,0,1,1,1,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,0 +2,39,1,9070,0,1,160.0,1,3,1,2,5,126.5,0,0,1,1,1,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,1 +1,15,1,9556,0,1,137.0,26,19,1,9,4,137.0,0,0,0,1,1,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,2 +1,17,2,9773,0,1,133.1,1,3,5,0,2,125.8,1,0,1,0,0,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,0 +1,16,4,9238,0,1,135.0,1,37,37,9,9,121.0,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,39,2,9556,0,1,130.0,1,37,19,9,8,110.0,0,0,1,1,0,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,2 +1,1,1,9853,0,1,123.0,1,1,38,9,6,121.6,1,0,1,1,1,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,2 +1,1,1,9119,0,1,126.0,1,38,19,5,5,130.2,0,0,1,1,0,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,2 +1,1,5,9500,0,1,122.0,1,37,3,9,2,116.8,1,0,1,1,1,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,132.0,1,38,38,9,9,119.3,1,0,1,1,1,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,116.0,1,38,1,5,1,111.1,0,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9500,0,1,113.0,1,38,19,9,7,106.7,1,0,1,1,1,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,2 +1,39,1,9670,0,1,120.0,1,34,34,0,0,106.0,1,0,1,0,0,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,0 +1,17,2,9500,0,1,145.0,1,19,37,5,9,130.5,1,0,1,1,1,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,1 +2,39,1,9238,0,19,133.1,1,37,37,4,4,98.5,0,0,1,1,1,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,0 +1,1,1,9500,0,1,152.0,1,41,19,3,5,137.8,0,0,1,1,1,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,1 +1,43,2,8014,1,3,130.0,1,34,34,0,0,130.0,0,0,1,1,0,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,1 +1,1,1,9773,0,1,152.0,1,38,37,9,9,139.1,0,0,1,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,18,1,9003,0,1,133.1,1,1,38,9,6,101.0,0,0,1,1,0,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,140.0,1,19,1,9,8,105.0,0,0,1,1,1,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,2 +1,1,1,9500,0,1,162.0,1,19,1,5,5,147.5,1,0,1,1,1,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,1,133.1,1,19,1,4,1,101.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9119,0,1,116.0,1,19,1,9,7,112.2,0,0,1,1,0,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9085,0,1,133.0,1,38,37,9,7,120.1,1,0,1,1,1,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,1 +1,44,1,171,0,39,110.0,1,37,37,5,6,108.3,0,0,1,0,1,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,0 +1,17,2,9773,0,1,121.0,1,1,1,5,5,123.1,1,0,1,1,0,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,1 +1,17,1,9556,0,1,133.0,1,1,38,4,9,119.0,0,0,1,1,1,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,2 +1,17,1,9147,0,1,139.0,1,1,38,4,5,152.0,0,0,1,1,1,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,160.0,1,12,38,4,8,160.0,1,0,1,1,0,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,133.1,1,19,19,7,7,117.0,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9147,0,1,128.0,1,3,1,3,3,121.0,1,1,0,1,0,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,2 +1,1,2,9773,0,1,116.0,1,1,19,4,7,127.6,1,0,1,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,0 +1,18,3,9119,0,1,111.0,1,1,19,9,8,111.0,1,0,1,1,0,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,146.0,1,1,1,9,7,126.0,0,0,1,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,2 +1,53,1,9085,0,42,140.0,1,1,1,5,5,143.3,1,0,1,0,1,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,2 +1,1,1,9070,0,1,144.0,1,1,1,3,5,127.2,1,0,1,1,1,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,141.0,1,38,1,5,7,132.6,0,0,1,1,1,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,18,1,9085,0,1,153.0,1,37,37,9,9,138.0,1,0,1,1,1,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,0 +1,1,3,171,0,1,137.0,1,1,3,5,2,133.9,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,150.0,1,19,38,9,5,143.0,0,0,1,1,1,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,1,9,6,126.1,1,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,5,9070,0,1,133.0,1,4,1,4,4,132.0,1,1,1,1,1,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,140.0,1,1,19,9,9,140.0,1,0,1,1,1,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,2 +1,1,1,171,0,1,133.1,1,3,1,2,4,128.2,1,0,1,1,1,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,1 +1,39,1,9085,0,1,133.1,1,37,36,90,7,128.2,0,0,1,1,0,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,43,1,9070,0,1,114.0,1,19,38,9,7,135.9,0,0,1,1,0,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,1 +2,51,1,9500,0,1,130.0,1,37,37,5,5,120.0,0,0,1,1,0,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,0 +1,43,1,9670,0,39,110.0,1,19,3,7,10,110.0,0,0,1,1,1,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,2 +1,43,1,9500,0,1,148.0,1,29,38,90,3,131.0,1,0,1,1,1,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,1 +1,18,1,9254,0,1,118.0,1,38,38,5,5,123.3,1,0,1,1,0,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,2 +1,7,1,9003,0,3,130.0,1,1,38,9,7,130.0,1,0,1,0,0,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,133.1,1,3,38,2,7,121.7,0,0,1,1,0,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +1,18,1,9991,1,1,133.1,1,38,38,5,5,145.0,0,0,1,1,1,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,2 +1,1,4,9773,0,1,136.0,1,1,12,9,10,121.7,1,0,1,1,1,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,1 +1,17,1,9500,0,1,160.0,1,19,1,4,10,153.0,1,0,1,1,1,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,1 +2,53,1,9147,0,42,130.0,1,19,19,175,152,132.4,0,0,1,1,1,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,2 +1,39,1,9119,0,40,120.0,1,1,1,5,10,146.8,0,0,1,1,0,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,150.0,1,19,11,0,0,131.1,1,0,1,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,122.0,1,1,19,4,3,130.4,1,0,1,1,1,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,1 +1,1,5,9119,0,1,132.0,1,38,19,5,3,119.1,0,0,1,1,1,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,137.0,1,1,3,4,3,124.6,0,0,1,1,1,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,1 +1,1,2,9500,0,1,126.0,1,1,38,4,7,124.3,1,0,1,1,1,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,1 +1,43,1,9238,0,39,120.0,1,2,1,1,2,118.6,0,0,1,1,0,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,132.0,1,34,34,0,0,119.1,1,0,1,1,1,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,1 +1,1,1,9130,0,1,127.0,1,1,1,4,4,120.4,1,0,1,1,1,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,135.0,1,1,38,5,5,122.4,0,0,0,1,1,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,1 +1,18,2,9773,0,1,109.0,1,1,1,4,4,109.0,1,0,1,0,1,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,3,9500,0,1,132.0,1,19,3,9,5,130.8,1,0,1,1,1,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,2 +1,43,1,33,0,19,133.1,1,38,38,4,4,140.0,0,0,0,1,0,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,0 +1,17,1,9773,0,1,120.0,1,37,37,5,5,125.3,0,0,1,1,1,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,1 +1,1,1,9773,0,1,140.0,1,1,19,5,10,141.1,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,145.0,1,19,38,4,4,132.1,1,0,1,1,0,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9254,0,1,122.0,1,19,19,5,5,118.2,0,0,1,1,1,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,2 +1,17,1,8014,1,1,119.0,1,34,34,0,0,112.4,1,0,1,1,1,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,0 +1,1,5,9500,0,1,125.0,1,1,1,3,8,115.6,1,0,1,1,1,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,2 +2,39,1,9991,1,1,150.0,1,1,4,4,2,146.0,0,0,1,1,0,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,2 +1,1,1,9670,0,1,132.0,1,4,2,123,112,143.6,1,0,1,1,0,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,2 +1,1,2,9085,0,1,144.0,1,1,19,4,10,132.1,1,0,1,1,1,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,142.0,1,19,19,1,1,125.5,1,0,1,1,1,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,130.0,1,19,19,9,6,135.0,0,0,1,1,1,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,1 +1,42,1,9119,0,1,140.0,1,19,19,90,90,120.0,0,0,0,0,0,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,143.0,1,1,37,3,8,128.0,0,0,1,1,1,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,1 +1,1,3,9070,0,1,146.0,1,34,34,0,0,143.6,1,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,0 +2,39,1,9130,0,1,130.0,1,1,19,6,6,154.0,1,0,1,1,0,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,1 +2,39,1,9991,1,1,120.0,1,37,37,9,10,170.0,0,0,1,1,1,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,2 +6,39,1,9991,1,12,130.0,1,37,37,90,90,119.0,1,0,1,0,0,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,53,1,9003,0,42,130.0,1,1,1,144,144,125.8,0,0,0,1,1,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,145.0,1,40,1,2,4,160.1,0,0,1,1,1,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,1 +1,44,1,9070,0,1,140.0,1,1,1,9,8,144.3,1,0,1,1,1,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,150.0,1,1,38,6,6,150.0,1,0,1,1,0,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,148.0,1,37,37,9,9,143.5,0,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,123.0,1,19,19,9,8,125.5,0,0,1,0,1,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,1 +1,39,1,9085,0,1,130.0,1,34,1,0,2,128.2,0,0,1,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9991,1,1,130.0,1,1,1,3,7,140.0,0,0,1,1,0,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,1 +1,17,4,9556,0,1,112.0,1,1,1,4,10,107.1,1,0,1,1,1,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,101.0,1,1,1,3,4,102.4,0,0,1,1,1,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,133.0,1,37,37,9,7,121.8,0,0,1,1,0,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,1 +2,39,1,9500,0,1,133.1,1,3,1,5,5,148.8,0,0,1,1,1,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,157.0,1,19,38,5,3,149.3,0,0,1,1,1,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,163.0,1,3,4,2,5,175.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,4,9070,0,1,148.0,1,1,3,4,1,163.4,1,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,1 +1,53,1,9085,0,42,130.0,1,38,38,9,9,128.8,0,0,1,1,1,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,0 +1,39,1,8014,1,1,120.0,1,1,1,4,4,150.5,0,0,1,1,1,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,1 +1,51,1,9147,0,1,130.0,1,1,1,4,4,120.0,0,0,1,1,1,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,2 +4,39,2,9556,0,19,133.1,1,19,19,4,6,123.0,0,0,1,1,1,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,1 +4,39,1,8014,1,19,140.0,1,37,37,9,3,131.0,0,0,1,1,1,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,1 +1,43,1,9147,0,1,131.0,1,19,38,9,9,129.7,1,0,1,1,1,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,1 +1,7,1,9238,0,40,130.0,1,37,37,5,5,130.0,0,0,1,1,0,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,1 +1,1,1,9130,0,1,133.0,1,3,1,2,4,126.0,0,0,1,1,0,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,100.0,1,1,1,4,4,120.0,0,0,1,1,0,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,0 +2,7,1,9147,0,3,120.0,1,37,37,9,9,120.0,0,0,1,1,1,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,2 +1,39,1,9119,0,1,138.7,1,1,12,4,3,111.3,0,0,1,1,0,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,135.0,1,38,38,5,7,121.0,0,0,1,1,1,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,116.0,1,1,19,5,9,111.1,0,0,1,1,0,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,1 +1,43,1,9130,0,1,100.0,41,3,4,3,2,100.0,0,0,1,1,1,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,2 +1,7,1,9147,0,3,130.0,1,37,19,9,8,130.0,0,0,1,1,1,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,1 +1,1,4,9085,0,1,138.0,1,3,1,1,4,123.3,1,0,1,1,1,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,1 +1,17,1,9003,0,1,131.0,1,19,1,9,2,134.5,1,0,1,1,1,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,139.0,1,38,1,9,5,131.8,1,0,1,1,1,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,1 +4,39,1,9991,1,1,133.1,1,37,37,6,6,136.2,0,0,1,1,1,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,1 +1,44,1,9070,0,39,123.9,1,37,1,9,7,123.9,0,0,1,1,0,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,0 +1,1,1,9147,0,1,143.0,1,3,1,5,5,152.1,1,0,0,1,0,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,0 +1,1,6,9500,0,1,142.0,1,1,37,7,7,123.5,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,124.0,1,2,1,4,10,117.4,1,0,1,1,1,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,1 +1,17,5,9119,0,1,130.0,1,19,1,4,5,118.1,1,0,0,0,0,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,0 +1,17,4,9147,0,1,121.0,1,38,37,6,7,113.0,1,0,1,1,1,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,150.0,1,19,19,4,10,100.0,0,0,1,1,1,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,151.0,1,37,37,9,9,138.0,1,0,1,1,1,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,138.0,1,38,38,9,9,126.8,0,0,1,1,0,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,1 +6,17,3,8014,1,1,115.0,1,19,1,5,90,115.0,0,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,127.0,1,1,19,3,3,120.2,1,0,1,1,1,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,1 +1,51,1,9991,1,1,134.0,1,1,1,5,3,120.6,1,0,1,1,0,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,121.0,1,19,1,7,9,117.9,1,0,1,1,1,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,131.0,1,1,38,4,8,121.9,1,0,1,1,1,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,1 +2,39,1,9500,0,19,133.1,1,38,38,7,8,170.0,0,0,1,1,0,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9147,0,1,100.0,1,37,37,9,5,170.0,0,0,1,1,0,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,95.0,1,37,37,5,8,95.0,0,0,1,0,0,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,0 +1,43,1,8014,1,1,148.0,1,37,37,9,9,134.7,0,0,1,1,1,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,2 +1,1,2,9238,0,1,121.0,1,19,19,191,171,119.3,1,0,0,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,18,2,9119,0,1,136.0,1,1,2,5,4,122.7,1,0,1,1,0,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,0 +1,17,4,9254,0,1,130.0,1,19,1,5,5,130.0,1,0,1,1,0,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,0 +2,43,1,9991,1,1,140.0,1,37,37,4,9,100.0,0,0,1,0,1,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,0 +1,15,1,9254,0,1,160.0,1,1,3,3,3,142.5,1,0,1,0,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,17,3,9500,0,1,138.0,1,1,19,7,8,129.3,1,0,1,1,1,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,1 +1,39,1,9254,0,19,133.1,1,37,37,90,90,100.0,0,0,1,1,0,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,148.0,1,1,37,9,7,143.3,0,0,1,1,1,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,1 +1,7,1,9500,0,3,130.0,1,19,38,4,10,130.0,1,0,1,1,1,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,133.1,1,19,37,9,7,110.0,1,0,1,1,0,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9254,0,1,131.0,1,4,3,7,4,126.1,1,0,1,1,1,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,1 +1,43,2,9500,0,1,136.0,1,38,38,9,5,131.3,0,0,1,1,1,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,1 +1,17,1,9254,0,1,119.0,1,1,1,4,10,125.0,0,0,1,1,0,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,2 +1,17,2,9238,0,1,132.0,1,38,1,7,7,133.1,1,0,1,1,1,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,1 +1,1,4,9500,0,1,126.0,1,12,1,5,10,120.2,0,0,1,1,1,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,2 +1,7,1,9147,0,40,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,161.0,22,37,37,9,9,137.9,0,0,0,0,1,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,1 +1,17,2,9147,0,1,133.0,1,19,1,9,3,120.1,1,0,1,1,1,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,0 +1,51,1,9085,0,1,127.0,1,3,3,2,8,138.8,1,0,1,1,1,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,121.0,1,1,1,1,1,115.1,1,0,1,1,1,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,1 +1,17,1,9130,0,1,130.0,1,3,19,2,9,115.9,0,0,1,1,1,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +2,7,1,9991,1,3,140.0,1,34,34,99,99,140.0,1,0,1,0,0,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,123.0,1,1,1,9,9,113.2,0,0,1,1,1,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9500,0,1,137.0,1,1,1,9,9,127.9,1,0,1,1,1,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,0 +1,1,5,9500,0,1,130.0,1,19,37,9,7,127.6,1,0,1,1,1,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,133.1,1,1,38,3,7,121.7,0,0,1,1,1,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,2 +1,44,1,9130,0,39,130.0,1,3,1,4,1,130.0,1,0,1,0,1,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,107.0,1,2,12,3,10,104.2,1,0,1,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,1 +4,39,1,8014,1,19,133.1,1,37,37,9,9,113.5,0,0,1,1,1,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,1 +1,17,1,9500,0,1,145.0,1,19,37,4,8,136.8,1,0,1,1,1,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,120.0,1,19,38,5,6,112.3,0,0,1,1,1,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,133.1,1,34,34,0,0,125.3,0,0,1,1,0,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,0 +1,1,6,9853,0,1,136.0,1,1,19,5,5,122.0,0,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,1 +1,1,2,9070,0,1,121.0,1,4,1,2,3,120.7,1,0,1,1,1,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,2 +2,1,1,9147,0,1,133.1,1,34,34,0,0,131.8,0,0,1,1,1,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,0 +1,15,1,9670,0,1,133.1,41,1,1,9,4,100.0,0,0,1,1,1,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,127.0,1,19,38,3,3,121.1,1,0,1,1,0,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/y_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..ceb8838855b86b6e12a335df36341e1fc17e5be3 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/y_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/y_train.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..a9c8929b6de4adf43fbb5efd8e679c12dda1b0fc Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/data/tabsyn_m5/y_train.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/gen_20260421_034347.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/gen_20260421_034347.log new file mode 100644 index 0000000000000000000000000000000000000000..eef15227db4977f04466fefd28219d2b0e298260 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/gen_20260421_034347.log @@ -0,0 +1,8 @@ +[TabSyn] Sampling 3539 rows +/opt/conda/lib/python3.11/site-packages/torch/cuda/__init__.py:63: FutureWarning: The pynvml package is deprecated. Please install nvidia-ml-py instead. If you did not install pynvml directly, please report this to the maintainers of the package that installed pynvml for you. + import pynvml # type: ignore[import] +No NaNs in numerical features, skipping +(3981, 9) +Time: 2.982701063156128 +Saving sampled data to /work/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/tabsyn-m5-3539-20260421_034347.csv +[TabSyn] Saved -> /work/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/tabsyn-m5-3539-20260421_034347.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e2ce7e794960a8676a52e40a3d04fdd0f2bf0822 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6e977f4a971aceb13630850e58be7ca75a1dc0aa --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..388a3567454d1f5e9105acd3961b777740587235 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "tabsyn", + "run_id": "tabsyn-m5-20260421_023648", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/tabsyn-m5-3539-20260421_034347.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a22a371258ab8267b23b3b79730d7e0f64866e52 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,0,1,126.0,1,38,37,5,5,118.7,0,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,19,37,9,7,111.4,0,0,0,1,1,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,140.0,1,1,1,4,3,140.0,1,0,0,1,0,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,Graduate +1,1,2,9085,1,1,141.0,1,1,38,9,8,128.9,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,128.0,1,19,19,7,8,120.0,1,0,0,1,0,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,123.0,1,4,37,2,9,113.9,0,0,0,1,0,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,1,140.0,41,1,1,9,9,100.0,0,0,1,0,0,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,133.1,1,1,3,9,9,116.0,0,0,0,1,1,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,143.0,1,3,3,2,10,141.3,0,0,1,0,0,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,106.0,1,37,38,191,163,102.2,1,0,1,1,1,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,Enrolled +1,16,2,9085,1,1,136.0,1,37,37,9,9,123.4,1,0,0,1,0,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,125.0,1,38,38,9,9,125.4,0,0,1,0,0,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,Dropout +4,39,1,9773,1,12,120.0,1,37,37,4,9,130.0,0,0,0,0,1,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,Dropout +1,44,1,9853,1,39,150.0,1,3,37,2,7,150.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,145.0,1,1,19,9,9,129.3,0,0,1,1,0,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Graduate +1,44,1,9119,1,39,180.0,1,1,1,9,8,180.0,0,0,0,1,1,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,Enrolled +1,1,4,9085,1,1,135.0,1,38,37,9,9,132.6,1,0,0,1,0,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,130.0,1,3,1,3,6,130.0,1,0,1,1,1,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,182.0,1,19,1,5,7,156.8,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,142.0,1,19,38,7,10,128.4,1,0,0,1,0,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,19,133.1,1,37,37,9,4,103.5,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,1,1,3,3,119.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,44,1,9991,0,39,140.0,1,37,19,9,8,140.0,0,0,0,1,0,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,133.0,1,38,38,9,9,128.8,1,0,0,1,0,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,3,3,132,132,110.6,0,0,0,1,0,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,Enrolled +1,42,1,9773,1,1,133.1,1,19,6,4,3,120.0,0,0,0,1,1,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9147,1,1,160.0,1,37,37,9,7,110.0,0,0,0,1,1,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,100.0,1,19,37,5,5,120.7,0,0,0,1,0,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,136.0,1,19,19,9,9,140.0,1,0,0,1,0,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,135.0,1,3,3,2,2,132.9,1,0,0,0,0,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,Dropout +1,53,1,9003,1,42,130.0,1,1,38,9,6,128.5,0,0,0,1,1,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,140.0,1,37,37,9,9,140.0,0,0,0,1,1,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,124.0,1,19,37,5,7,119.1,0,0,0,1,1,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9556,1,1,140.0,1,37,38,9,9,106.0,1,0,1,0,0,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,Dropout +1,42,4,9500,1,6,133.0,1,1,19,2,9,127.8,1,0,0,1,0,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,130.0,1,19,19,90,90,122.0,0,0,0,1,0,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,125.0,1,37,19,9,9,122.4,1,0,0,1,1,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,3,110.0,1,3,19,4,6,150.0,0,0,0,1,1,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,123.0,1,19,19,1,1,114.6,0,0,0,1,0,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,131.0,1,38,38,9,9,126.5,0,0,0,1,0,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,133.1,1,38,19,132,103,146.0,0,0,1,1,0,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,3,3,2,2,124.9,1,0,0,1,0,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,136.0,1,3,4,2,2,133.9,0,0,0,0,1,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,2,1,4,6,140.0,0,0,0,1,1,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,111.0,1,19,19,9,9,114.2,1,0,0,1,0,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,130.0,1,19,38,7,7,120.2,1,0,0,1,0,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,Graduate +1,7,1,9670,1,3,110.0,1,27,37,3,3,110.0,1,0,0,1,1,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,142.0,1,38,19,7,10,128.4,0,0,0,1,0,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9773,1,1,158.0,1,1,38,4,7,157.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,127.0,1,1,33,3,3,129.8,0,0,0,0,1,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9773,1,1,140.0,1,34,37,0,0,102.5,0,0,0,1,0,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,130.0,1,1,38,5,7,122.0,1,0,0,1,1,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,145.0,1,19,1,6,5,127.9,1,0,0,1,0,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,132.0,1,38,38,9,8,122.6,1,0,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,37,37,9,7,129.9,1,0,0,1,0,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,121.0,1,1,1,4,4,114.9,0,0,0,1,1,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,Graduate +1,7,1,8014,0,3,140.0,1,1,1,4,4,140.0,0,0,0,1,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,137.0,1,1,19,4,4,125.3,0,0,0,1,1,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,Enrolled +1,18,1,9670,1,1,133.0,1,1,1,9,9,121.5,1,0,0,1,0,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,42,1,9500,1,1,100.0,1,3,37,2,6,130.0,1,0,0,1,0,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,19,38,9,8,140.9,0,1,0,1,0,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,133.1,1,37,37,9,9,120.0,0,0,0,0,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,8014,0,1,128.0,1,38,38,0,0,122.1,0,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9119,1,1,130.0,1,1,3,4,2,123.0,0,0,0,1,1,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,121.0,1,19,38,7,9,123.8,0,0,0,1,0,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,9070,1,1,122.0,1,1,1,4,8,123.8,1,0,1,0,0,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,12,133.1,1,37,37,9,9,133.8,1,0,0,1,1,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,3,3,2,2,149.0,0,0,0,0,1,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,1,38,1,9,140.0,0,0,0,1,1,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,Dropout +1,1,5,9773,1,1,135.0,1,37,1,5,5,124.9,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,9119,1,1,132.0,1,37,37,9,6,119.4,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,9670,1,3,110.0,1,37,37,7,7,110.0,0,0,0,1,0,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,Graduate +1,17,5,9119,1,1,118.0,1,1,19,9,9,120.5,1,0,0,1,1,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,19,133.1,1,37,19,9,4,140.0,0,0,1,1,0,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,126.0,1,1,1,4,7,115.2,0,0,0,0,0,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9254,1,1,158.0,1,19,39,4,8,153.5,1,0,0,1,0,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,129.0,1,37,38,7,7,122.0,1,0,0,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,12,133.1,1,37,1,9,4,138.4,0,0,0,1,1,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,Dropout +1,7,1,9238,1,3,130.0,1,1,1,4,10,125.1,0,0,1,0,0,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,1,110.0,1,40,1,5,6,142.5,0,0,1,0,1,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,Dropout +1,16,1,9070,1,1,125.0,1,1,1,4,4,120.8,1,0,0,1,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,128.0,1,19,1,5,4,135.7,1,0,0,1,0,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,142.0,1,19,19,9,9,139.9,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,123.0,1,3,12,2,9,116.4,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,125.0,1,19,1,9,10,123.6,1,0,0,1,0,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,12,133.1,1,12,12,9,9,120.0,0,0,0,1,1,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,Dropout +1,17,5,9500,1,1,144.0,1,19,38,9,5,130.7,1,0,0,1,0,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,Graduate +1,17,6,9500,1,1,136.0,1,19,38,9,3,132.5,1,0,0,1,0,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,Graduate +2,43,1,9991,0,1,140.0,1,38,37,5,6,117.3,0,0,0,1,0,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,43,1,9500,1,1,140.0,1,37,37,9,10,105.7,1,0,0,1,0,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,19,133.1,1,1,5,4,3,100.0,0,0,0,1,0,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,3,9238,1,1,143.0,1,37,38,0,7,126.9,1,0,0,1,0,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,138.0,1,37,1,9,9,123.7,1,0,1,1,0,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,34,34,0,0,112.5,0,0,0,1,0,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,141.0,1,3,2,2,3,130.2,1,0,0,1,0,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,139.0,1,1,19,3,9,134.9,1,0,0,1,1,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,3,102.0,1,0,0,1,0,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,153.0,1,38,37,7,8,147.9,0,0,0,1,0,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,Graduate +1,17,3,9085,1,1,121.0,1,38,1,9,9,111.9,1,0,0,1,1,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,149.0,1,37,37,9,6,130.5,1,0,0,1,0,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,Graduate +1,17,5,9773,1,1,139.0,1,38,1,4,4,123.6,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9119,1,1,120.0,1,3,1,123,152,116.9,0,0,0,1,1,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9238,1,1,130.0,1,1,19,4,5,124.8,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,Graduate +1,53,1,9085,1,42,150.0,1,1,19,4,8,145.2,1,0,0,1,0,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,Graduate +4,39,1,9130,1,1,140.0,1,37,37,6,7,150.0,1,0,0,1,1,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,4,171,1,1,133.1,1,1,1,9,10,110.0,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,124.0,1,19,1,9,9,121.2,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9119,1,39,130.0,1,38,19,9,5,130.0,1,0,0,1,1,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,Enrolled +4,7,1,9500,1,3,140.0,1,37,38,9,7,140.0,0,0,0,1,1,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,37,5,9,118.4,0,0,0,1,1,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,33,1,1,130.0,1,19,19,9,9,117.7,0,0,0,1,0,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,Dropout +4,7,1,9500,1,40,130.0,1,19,19,4,6,130.0,0,0,0,0,0,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,144.0,13,3,3,6,6,137.6,1,0,0,1,0,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,132.0,1,38,37,9,9,122.9,0,0,0,0,1,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,Dropout +1,1,2,9773,1,1,124.0,1,3,3,3,4,114.6,1,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,100.0,1,38,38,9,10,100.0,0,0,0,1,0,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,Graduate +1,18,2,9853,1,1,120.0,1,19,37,9,4,113.7,1,0,1,0,0,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9500,1,1,136.0,1,3,3,2,2,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,Graduate +1,39,1,9130,1,1,133.1,1,3,34,3,0,120.0,0,0,1,0,1,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,140.0,1,1,19,3,3,140.0,1,0,0,1,0,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9085,1,1,128.0,1,38,37,9,9,116.5,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,132.0,1,6,6,0,4,119.1,1,0,1,1,0,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,Dropout +1,43,1,9500,1,6,134.0,1,1,37,9,9,120.4,1,0,0,1,0,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,34,34,0,0,100.0,0,0,0,1,0,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,122.0,1,3,1,4,7,116.1,1,0,0,1,0,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,120.0,1,37,37,9,9,117.0,1,0,0,1,0,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,5,9254,1,1,126.0,1,19,19,4,7,116.6,1,0,0,1,0,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,4,160.0,1,3,3,2,1,125.0,0,0,0,1,1,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,130.0,1,37,37,0,0,117.8,1,0,0,1,0,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,169.0,1,19,37,9,7,176.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9500,1,1,137.0,1,3,38,2,4,121.0,0,0,0,1,0,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,132.0,1,19,1,9,5,123.4,0,0,0,1,0,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,3,105.0,1,37,37,7,8,129.7,1,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9254,1,1,119.0,1,19,19,9,9,118.7,1,0,0,1,1,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,120.0,1,37,37,9,6,117.0,0,0,0,1,1,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,6,130.0,0,0,0,1,1,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,143.0,1,19,37,9,9,126.2,1,0,0,1,0,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,39,150.0,1,19,19,9,9,150.3,0,0,0,1,1,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9130,1,1,143.0,1,3,3,2,2,131.8,1,0,1,0,0,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,Enrolled +1,44,1,9238,1,39,140.0,1,19,19,8,8,144.3,1,0,0,1,0,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,131.0,1,19,19,4,4,122.0,1,0,0,1,0,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,Enrolled +1,17,2,9500,1,1,127.0,1,3,3,1,10,118.8,1,0,0,1,1,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,146.0,1,37,38,9,7,128.5,0,0,1,1,0,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,3,140.0,1,39,39,9,4,140.0,0,0,0,1,1,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,123.0,1,38,19,4,90,127.2,0,0,1,0,1,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,5,128.2,0,0,1,0,1,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,126.0,1,1,1,9,9,127.4,1,0,0,1,0,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,37,37,9,9,150.0,0,0,0,1,0,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,130.0,1,38,19,9,6,120.0,1,0,0,1,1,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,103.0,1,19,37,7,9,104.1,0,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,145.0,1,3,19,1,5,130.0,1,0,0,1,0,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,123.0,1,1,38,9,9,116.7,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,5,1,120.0,1,0,0,1,0,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,141.0,1,19,1,90,90,128.0,0,0,0,1,1,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,124.0,1,3,3,2,2,119.1,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,4,9853,1,1,116.0,1,3,38,3,8,110.4,1,0,0,1,0,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,119.0,1,38,19,9,9,115.2,0,0,0,1,1,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,37,37,7,7,113.9,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +2,43,1,9147,1,2,120.0,1,37,37,9,9,122.8,0,0,1,0,0,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,6,122.0,1,19,19,9,9,126.2,1,0,0,1,0,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,122.0,1,1,1,2,5,113.3,1,0,0,1,0,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,142.0,1,1,1,9,9,127.7,1,0,0,1,1,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,116.0,1,1,1,3,3,120.9,0,0,0,1,1,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,128.0,1,1,19,4,7,125.6,1,0,0,1,1,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,Graduate +1,7,1,9991,0,40,130.0,1,1,3,4,2,130.0,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,1,19,9,7,120.0,0,0,0,1,1,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,137.0,1,38,37,9,9,122.3,0,0,0,1,1,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,122.0,1,41,1,4,3,119.6,1,0,0,1,0,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,157.0,1,38,37,9,5,137.8,0,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9130,1,1,132.0,1,19,38,9,9,130.4,1,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Graduate +4,43,1,8014,0,12,133.1,1,34,34,0,0,106.0,1,0,0,1,0,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9130,1,1,127.0,1,3,1,2,1,116.5,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,8014,0,1,125.0,1,37,37,5,6,122.2,1,0,1,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9556,1,1,128.0,1,38,38,7,8,123.5,1,0,0,1,0,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,Enrolled +1,43,1,9130,1,1,156.0,1,19,1,9,4,156.0,0,0,1,0,1,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,Dropout +1,7,1,9130,1,3,140.0,1,19,38,9,9,140.0,1,0,0,1,0,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,8014,0,1,123.0,1,34,37,9,90,121.3,1,0,0,1,0,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,19,133.1,1,19,37,7,90,104.0,0,0,0,1,0,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,18,4,9254,1,1,106.0,1,19,37,7,7,106.0,1,0,0,1,1,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,119.0,1,37,37,4,6,113.2,0,0,1,1,0,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,19,19,9,9,100.0,0,0,0,1,0,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,145.0,1,3,1,4,3,149.9,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,166.0,1,19,37,4,8,146.4,0,0,0,1,1,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,145.0,1,38,37,5,5,142.2,0,0,0,1,0,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,156.0,1,19,38,9,1,153.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9853,1,1,117.0,1,19,38,4,0,113.5,1,0,0,1,0,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,138.0,1,37,19,9,9,127.8,1,0,0,1,0,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,40,130.0,1,1,1,4,4,190.0,1,0,0,1,0,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,Graduate +1,17,5,9070,1,1,131.0,1,37,37,9,9,126.1,1,0,0,0,0,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.1,1,19,37,9,9,95.0,1,0,1,0,0,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,143.0,1,1,38,8,8,136.7,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Dropout +1,42,1,8014,0,1,120.0,1,37,38,90,7,120.0,1,0,0,1,0,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,121.0,1,19,19,5,8,117.5,1,0,0,1,0,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,160.0,1,3,1,6,6,116.3,1,0,0,1,0,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,134.0,1,1,38,4,5,122.8,0,0,0,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,7,1,8014,0,3,120.0,1,19,37,5,3,121.3,0,0,0,1,0,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,134.0,1,38,19,9,4,128.4,1,0,0,1,0,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,130.0,1,19,1,7,4,117.8,1,0,0,1,1,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9130,1,1,132.0,1,1,1,3,3,143.9,1,0,0,1,1,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,130.0,1,19,1,9,4,101.3,1,0,0,1,1,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,135.0,1,37,19,5,10,121.0,0,0,1,1,0,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9991,0,39,120.0,1,37,37,7,7,120.0,1,0,0,1,0,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,133.1,1,3,3,2,3,135.0,0,0,0,1,0,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,110.0,1,19,19,9,7,105.8,1,0,0,1,1,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,160.0,1,1,38,4,10,144.3,1,0,0,1,0,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +4,39,1,9254,1,1,120.0,1,37,37,9,8,95.0,0,0,0,1,0,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,137.0,1,19,19,7,7,120.8,1,0,0,1,0,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,144.0,1,19,38,4,8,141.3,1,0,0,1,0,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,148.0,1,19,1,3,9,140.0,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,128.0,1,38,38,7,7,131.5,0,0,0,1,0,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,128.0,1,38,19,191,175,118.6,1,0,0,1,0,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,122.0,1,3,38,123,171,116.1,1,0,1,1,1,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9773,1,1,128.0,1,38,38,6,3,116.5,0,0,0,1,1,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,97.0,1,1,19,2,7,98.1,1,0,0,1,0,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,53,1,9991,0,1,140.0,1,38,38,191,193,135.0,0,0,1,1,0,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,Enrolled +1,1,2,9773,1,1,122.0,1,37,37,9,9,130.8,1,0,0,1,0,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,117.9,0,0,0,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9991,0,1,100.0,1,37,19,9,4,130.0,0,0,0,1,1,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,Dropout +1,17,6,9670,1,1,125.0,1,38,1,9,7,125.0,1,0,0,1,1,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,Graduate +2,7,1,9070,1,43,140.0,1,37,1,9,7,140.0,0,0,0,1,0,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,Graduate +1,7,1,9254,1,3,110.0,1,19,19,3,3,110.0,0,0,0,1,1,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9500,1,1,135.0,1,19,1,5,4,127.3,1,0,0,1,0,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,Graduate +1,17,4,9238,1,1,129.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,8,9,144.9,1,0,1,0,0,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9500,1,1,136.0,1,1,1,4,4,123.8,0,0,0,1,0,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,Graduate +4,43,1,9991,0,1,140.0,1,37,37,5,5,149.8,0,0,0,1,1,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,150.0,1,38,19,9,9,137.8,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +5,39,1,9147,1,1,180.0,1,1,1,4,8,140.5,0,0,1,0,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,131.0,1,19,19,3,7,127.9,1,0,0,1,0,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,110.0,1,1,1,4,4,99.0,0,0,0,1,1,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,Enrolled +1,39,1,9070,1,1,139.3,1,38,38,5,5,117.5,0,0,0,1,1,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9130,1,1,147.0,1,4,1,2,10,141.8,1,0,0,1,0,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,Graduate +2,44,1,8014,0,39,150.0,1,1,1,5,5,154.0,0,0,0,1,1,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,133.1,1,1,1,4,5,131.0,1,0,0,1,0,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,132.0,1,1,38,9,7,127.1,1,0,0,1,0,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,4,9147,1,1,125.0,1,19,19,5,5,118.0,1,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,108.0,1,19,1,9,3,107.8,1,0,0,1,0,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,143.0,1,37,37,9,8,130.6,1,0,0,1,0,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,126.0,1,37,1,7,7,118.7,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9238,1,1,140.0,1,1,44,4,2,124.6,1,0,1,0,1,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,112.0,1,9,22,4,3,106.1,0,0,0,1,0,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,130.0,1,37,37,191,183,163.7,0,0,0,1,0,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,Enrolled +4,39,1,9500,1,19,133.1,1,37,37,6,6,117.8,0,0,1,0,0,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,Dropout +1,18,2,9853,1,1,120.0,1,1,1,9,0,115.8,0,0,0,1,0,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,118.0,1,38,19,9,3,111.0,1,0,0,1,0,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,16,1,171,1,1,150.0,1,37,37,9,9,134.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,133.1,6,37,37,9,6,100.0,0,0,0,1,0,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,137.0,1,1,37,5,9,131.4,1,0,0,1,1,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Dropout +2,44,1,9991,0,39,130.0,1,1,37,4,9,130.0,0,0,0,0,0,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9238,1,1,136.0,1,19,19,4,7,121.7,1,0,0,1,0,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,133.1,1,1,38,9,7,110.5,0,0,0,1,0,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,Graduate +1,39,1,9556,1,19,100.0,1,37,38,9,9,120.0,0,0,0,1,0,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,142.0,1,1,38,3,5,146.9,1,0,0,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,127.0,1,19,19,7,8,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,130.0,1,1,38,7,8,135.6,1,0,0,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,137.0,1,19,38,9,3,125.0,1,0,0,1,0,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,135.0,1,37,37,7,7,124.0,1,0,0,1,0,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,Enrolled +2,39,1,9556,1,1,100.0,6,38,38,9,9,130.0,0,0,0,1,0,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,Graduate +1,42,1,9003,1,39,120.0,1,3,1,2,6,128.2,1,0,0,1,1,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,Enrolled +1,1,3,9773,1,1,121.0,1,19,19,3,3,116.1,0,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,136.0,1,1,19,4,9,131.1,1,0,0,1,0,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,141.0,1,3,19,2,10,126.8,1,0,0,1,1,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9773,1,1,136.0,1,38,38,9,9,132.9,1,0,0,1,1,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,133.1,1,1,1,90,1,120.0,1,0,1,0,1,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,Dropout +1,17,1,8014,0,1,132.0,1,37,19,5,5,121.2,0,0,0,1,0,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,2,9500,1,6,119.1,1,1,19,4,10,119.1,0,0,0,1,1,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,153.0,1,1,19,9,4,139.7,1,0,0,1,0,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,150.0,1,1,1,3,3,143.4,0,0,0,0,1,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Enrolled +1,1,4,9500,1,1,130.0,1,19,19,9,7,119.9,1,0,0,1,0,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,6,140.0,0,0,0,1,1,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,115.0,1,38,37,5,5,115.0,0,0,0,1,0,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,150.0,1,19,37,5,4,142.7,1,0,0,1,0,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,133.1,1,34,5,0,1,118.5,1,0,0,1,0,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9130,1,1,125.0,1,3,3,2,2,132.4,0,0,0,1,1,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,116.0,1,37,37,9,9,110.8,0,0,0,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,Enrolled +1,43,1,9070,1,1,115.0,1,12,12,1,10,115.0,0,0,1,1,1,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,125.0,1,37,37,9,9,118.8,0,0,0,1,1,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,130.0,1,3,1,2,5,133.8,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9500,1,1,141.0,1,12,1,5,5,133.0,1,0,0,1,0,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,141.0,1,38,38,7,10,139.8,1,0,0,1,0,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,Graduate +1,51,1,9147,1,19,133.1,1,19,19,9,5,112.1,0,0,1,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,132.0,1,19,2,9,3,126.0,1,0,0,1,0,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,131.0,1,2,38,4,5,132.3,1,0,0,1,0,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,124.0,1,1,19,9,8,116.7,1,0,0,1,0,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,180.0,103,5,3,1,1,183.5,1,0,0,1,0,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,10,1,9773,1,1,151.0,22,38,37,0,5,151.0,1,0,0,1,0,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,135.0,1,19,19,9,10,133.4,1,0,0,1,0,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,135.0,1,3,3,2,2,137.1,1,0,0,1,0,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.1,1,38,38,5,10,101.0,0,0,0,1,1,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,40,130.0,1,3,2,3,2,160.0,1,0,0,1,0,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,18,1,9773,1,1,124.0,1,38,37,9,8,126.8,0,0,0,1,1,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,140.0,1,19,37,9,9,125.5,1,0,0,1,0,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,1,133.1,1,37,38,9,8,118.9,0,0,0,1,0,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9991,0,1,160.0,1,34,34,0,0,161.8,1,0,1,1,1,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,140.0,1,1,38,4,7,100.0,0,0,0,1,0,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Graduate +1,44,1,9070,1,39,120.0,1,2,19,3,8,120.0,0,0,0,1,1,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,124.0,1,38,19,3,10,128.6,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,Enrolled +1,44,1,9085,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,0,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,145.0,1,1,19,4,3,133.5,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,Graduate +4,39,1,9085,1,1,110.0,1,37,37,90,90,110.0,0,0,0,0,0,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,134.0,1,19,37,4,7,133.5,1,0,0,1,0,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,132.0,1,1,19,4,3,126.4,1,0,0,1,0,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,19,133.1,1,4,1,2,4,120.0,0,0,0,1,1,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,151.0,1,40,4,2,2,144.5,1,0,0,1,0,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +2,39,1,9147,1,19,133.1,1,37,19,9,3,128.0,0,0,0,1,1,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,Dropout +1,39,2,8014,0,1,141.0,1,37,37,9,9,150.5,0,0,0,1,0,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,122.0,1,19,19,4,6,119.9,0,0,0,1,0,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,9,133.1,1,34,34,0,0,110.0,1,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,1,9500,1,1,128.0,1,19,1,9,4,125.8,0,0,0,1,0,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,3,9773,1,1,133.1,1,38,38,5,5,131.3,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,16,6,9147,1,1,128.0,1,37,37,9,9,116.5,1,0,0,1,0,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,1,147.0,1,34,34,90,90,111.7,1,0,0,1,0,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,1,19,6,8,122.0,0,0,0,1,0,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,Graduate +2,39,2,9254,1,19,133.1,1,19,19,9,5,123.5,0,0,0,1,1,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,114.0,1,37,37,9,9,130.0,0,0,0,1,1,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,Graduate +2,39,1,8014,0,1,100.0,1,37,38,9,9,141.5,0,0,0,1,0,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9556,1,1,118.0,1,38,38,5,5,117.8,1,0,0,1,0,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9773,1,19,133.1,1,19,19,171,163,104.0,0,0,1,0,0,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,39,110.0,1,19,37,9,8,127.5,0,0,1,0,0,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,1,120.0,1,37,38,9,8,100.0,0,0,1,1,1,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,133.0,1,19,3,9,9,123.2,1,0,0,1,1,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,133.1,1,34,34,0,0,142.8,0,0,0,1,1,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9119,1,1,120.0,1,34,34,0,0,140.0,1,0,0,1,1,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,120.0,1,3,37,4,7,115.1,1,0,0,1,0,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,Graduate +1,51,1,9119,1,1,140.0,1,1,19,4,4,150.0,0,0,0,1,1,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,Dropout +1,43,1,9556,1,1,149.0,1,1,1,4,8,140.2,1,1,0,1,0,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,160.0,1,37,19,9,10,160.0,1,0,0,1,0,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,115.0,1,19,38,7,8,116.4,1,0,0,1,0,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,140.0,1,4,4,2,10,140.0,1,0,0,1,1,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,19,133.1,1,1,1,4,4,130.0,0,0,0,1,1,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,5,9773,1,1,146.0,1,1,37,5,5,146.7,1,0,0,1,1,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,142.0,1,1,38,9,9,127.0,0,0,1,0,1,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,130.0,1,37,37,9,7,138.0,0,0,0,1,0,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9773,1,9,133.1,1,38,1,5,4,102.0,1,0,0,1,1,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,125.0,1,19,19,7,5,118.0,1,0,0,1,0,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,145.0,1,19,38,4,10,131.7,1,0,0,1,0,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,133.1,1,37,19,9,9,114.0,0,0,0,1,0,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,140.0,1,38,37,4,10,140.0,0,0,1,0,0,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,128.0,1,1,19,4,4,124.5,0,0,0,1,1,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,126.0,1,37,19,9,8,116.9,1,0,0,1,0,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,1,9773,1,1,177.0,1,2,1,123,135,155.7,0,0,1,1,0,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,135.0,1,37,1,5,5,126.8,1,0,0,1,0,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,125.0,1,4,3,1,1,119.8,0,0,0,1,0,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,Graduate +1,53,1,9147,1,42,130.0,1,1,19,143,172,133.8,1,0,0,1,0,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,Graduate +1,17,3,9670,1,1,123.0,1,38,38,7,8,118.8,1,1,0,1,0,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,112.0,1,38,19,9,5,113.8,1,0,0,1,0,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,124.0,1,34,34,0,0,129.3,0,0,0,1,0,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9773,1,12,120.0,1,1,1,9,9,129.8,1,0,0,1,1,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,111.0,1,19,19,9,9,110.0,1,0,0,1,0,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,163.0,1,37,37,5,6,155.0,0,0,0,1,0,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,145.0,1,19,1,9,5,145.0,0,0,0,1,0,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,160.0,1,38,37,9,7,155.5,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,137.0,1,1,3,7,3,131.1,1,0,1,1,0,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,133.1,1,38,38,9,9,113.5,0,0,0,1,0,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,130.0,1,1,1,9,9,131.8,0,0,0,1,1,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,137.0,1,38,37,7,7,126.0,1,0,0,1,0,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,160.0,1,19,1,9,5,107.8,1,0,0,0,1,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9070,1,39,120.0,1,3,38,3,9,120.0,0,0,0,1,1,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,145.0,1,3,3,2,1,129.3,1,0,0,1,0,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,117.0,1,38,19,5,7,118.1,0,0,0,1,1,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,130.0,1,1,1,4,3,130.0,1,0,0,1,0,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,Enrolled +2,43,1,9238,1,12,100.0,1,37,37,9,9,134.4,0,0,0,1,0,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,Graduate +2,43,1,8014,0,14,133.1,1,34,34,0,0,100.0,0,0,0,0,0,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,Dropout +1,17,4,9254,1,1,122.0,1,1,1,4,2,116.1,1,0,0,1,1,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,4,9254,1,1,110.0,1,37,37,9,7,113.2,1,0,0,1,0,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,131.0,1,38,37,4,9,131.7,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,1,19,4,10,150.0,0,0,0,1,1,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,142.0,1,19,38,9,7,127.3,0,0,0,1,1,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,Enrolled +1,7,1,9556,1,43,160.0,1,38,19,9,9,160.0,0,0,0,1,1,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,1,1,9853,1,1,130.0,1,19,12,9,4,133.2,1,0,0,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,43,1,9119,1,1,130.0,1,37,38,9,9,120.0,0,0,1,0,0,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,42,1,3,7,110.5,0,0,0,1,1,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +2,39,1,9003,1,1,130.0,1,1,19,4,9,152.4,1,0,0,1,0,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,Graduate +1,16,1,171,1,1,155.0,1,1,3,5,10,167.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,3,9254,1,1,114.0,26,38,3,9,3,127.3,1,0,1,0,0,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,37,37,9,9,125.4,1,0,0,1,1,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,5,9773,1,1,127.0,1,38,1,4,5,121.1,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Enrolled +1,17,2,171,1,1,130.0,41,1,1,2,3,148.6,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9130,1,1,120.0,1,1,19,9,9,120.0,1,0,0,1,0,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,133.0,1,1,37,4,10,143.2,0,0,0,1,0,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,38,38,9,7,125.2,1,0,0,1,0,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,102.0,1,37,37,7,7,102.0,0,0,0,1,0,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,19,38,5,7,128.5,1,0,0,1,0,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,140.0,1,38,38,7,7,133.2,1,0,0,1,0,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,123.0,1,1,1,3,3,120.9,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,2,9500,1,1,135.0,1,19,1,5,5,128.9,1,0,0,1,0,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,1,3,137.7,0,0,0,0,0,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,158.0,1,3,3,3,3,151.4,1,0,0,0,0,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,37,1,9,3,120.0,0,0,1,0,1,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,51,1,9773,1,1,135.0,1,1,42,5,3,110.0,1,0,0,1,1,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,143.0,1,3,38,2,9,144.1,1,0,0,1,0,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,Enrolled +1,1,3,9070,1,1,132.0,1,1,3,9,7,126.1,1,0,0,1,0,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,141.0,1,19,1,9,10,126.8,1,0,0,1,0,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,130.0,1,38,38,6,9,126.3,1,0,0,1,0,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,1,140.0,1,1,1,4,5,140.0,0,0,0,1,1,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,Enrolled +1,39,2,9147,1,1,130.0,1,19,19,5,9,121.5,0,0,0,0,1,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,51,1,8014,0,19,133.1,1,37,37,9,9,104.0,0,0,1,1,0,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,120.0,1,3,4,2,2,120.0,0,0,0,1,1,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,Graduate +1,1,4,171,1,1,131.0,1,19,19,4,4,119.8,1,1,0,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,18,3,9070,1,1,134.0,1,1,1,3,4,121.4,0,0,0,1,0,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,140.0,1,37,37,9,9,118.2,0,0,0,1,1,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,130.0,1,19,37,9,9,131.8,1,0,0,1,0,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,134.0,1,38,19,3,10,121.2,0,0,0,1,0,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,Graduate +1,43,2,9500,1,1,120.0,1,41,3,2,2,112.7,0,0,0,1,0,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,134.0,1,1,19,4,9,129.8,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,133.0,1,19,1,4,5,127.1,1,0,0,1,0,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,148.0,1,38,37,5,9,137.8,1,0,0,1,0,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,129.0,1,37,37,9,7,117.8,0,0,0,1,0,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,Enrolled +4,39,1,8014,0,3,100.0,1,37,37,9,9,130.0,0,0,0,1,0,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,145.0,1,1,40,9,2,129.6,0,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,4,9254,1,1,124.0,1,1,1,4,4,122.3,1,0,0,1,0,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Dropout +2,43,2,9147,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,Graduate +1,51,1,9556,1,1,131.0,1,1,37,152,193,126.6,1,0,0,1,1,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,44,1,9085,1,39,110.0,1,3,5,2,2,110.0,0,0,0,1,1,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,15,1,9147,1,1,140.0,26,37,2,6,4,140.0,0,0,1,1,1,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,Graduate +2,51,1,9853,1,1,130.0,1,37,37,7,8,120.3,0,0,0,1,0,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,19,133.1,1,37,37,6,6,139.0,0,0,0,1,1,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9670,1,1,120.0,1,37,37,7,7,111.3,1,0,0,1,1,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,3,120.0,1,37,37,7,7,120.0,0,0,0,1,0,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,Dropout +1,17,3,9147,1,1,147.0,1,19,38,5,7,132.3,1,0,0,1,0,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,3,9130,1,1,167.0,1,37,37,90,90,159.3,0,0,0,1,0,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,132.0,1,1,1,4,9,136.6,1,0,0,1,1,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,Enrolled +1,5,2,9853,1,1,124.0,1,19,19,3,3,113.9,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,3,130.0,1,3,1,2,9,130.0,0,0,0,1,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,160.0,1,1,38,4,7,146.5,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,141.0,1,19,3,4,0,137.9,1,0,0,0,1,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,19,37,8,7,100.0,1,0,0,1,0,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,134.0,1,38,19,7,7,124.2,0,0,0,1,0,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,150.0,1,1,37,4,8,145.6,1,0,0,1,0,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,146.0,1,3,1,3,10,138.7,0,0,0,1,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9991,0,40,133.1,1,1,37,4,1,100.0,0,0,0,1,0,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,127.0,1,38,19,9,10,117.9,0,0,0,1,0,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,131.0,1,37,38,9,7,137.0,0,0,0,1,0,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Graduate +1,7,1,9238,1,3,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,Graduate +2,39,1,9085,1,1,133.1,1,37,37,90,90,110.3,0,0,0,1,1,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,125.0,1,38,1,3,10,114.5,1,0,0,1,1,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,152.0,1,19,19,9,5,154.1,0,0,1,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,120.0,1,37,37,4,5,120.0,0,0,1,0,0,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,Dropout +2,39,1,8014,0,1,146.0,1,37,37,9,8,120.5,0,0,0,1,0,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,39,1,9119,1,12,133.1,1,34,34,0,0,95.1,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,128.0,1,19,37,9,8,116.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9307cf4b524ffa38ff4a36db610667ac23d91634 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/train.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,1,1,127.0,1,1,1,9,6,110.0,0,0,1,0,1,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9773,1,1,122.0,1,38,37,5,3,119.6,1,0,0,1,0,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,6,9147,1,1,121.0,1,3,19,4,5,116.8,0,0,0,1,1,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,158.0,1,38,37,5,5,140.2,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,19,19,9,7,131.7,1,0,0,1,0,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,Graduate +1,1,3,9085,1,1,133.0,1,1,38,9,90,128.2,0,0,0,1,0,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,122.0,1,1,19,9,9,120.3,1,0,0,1,1,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,Dropout +1,43,1,9119,1,1,130.0,1,1,1,9,2,128.0,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,3,9254,1,1,122.0,1,1,1,4,4,126.6,0,0,0,0,0,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,1,100.0,1,37,37,9,9,133.0,0,0,0,1,1,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,44,1,9119,1,39,130.0,1,19,3,3,4,130.0,0,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9085,1,39,140.0,1,1,1,4,7,140.0,1,0,1,1,0,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9070,1,1,130.0,1,37,37,9,9,123.7,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +4,1,1,9991,0,1,130.0,1,37,37,9,9,118.1,0,0,1,0,0,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9500,1,1,190.0,108,3,2,122,4,190.0,1,0,0,1,0,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,102.0,1,1,19,9,5,100.6,1,0,0,1,0,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,3,120.0,1,19,3,4,2,120.0,1,0,0,1,0,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,130.0,1,38,19,9,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,111.0,1,3,4,4,3,108.2,1,0,0,1,0,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9119,1,1,160.0,1,1,38,4,7,112.0,0,0,0,0,1,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,149.0,1,19,1,4,4,134.8,0,0,0,1,0,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,135.0,1,19,38,3,9,136.1,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,2,9500,1,1,120.0,1,37,34,90,0,121.5,0,0,1,1,0,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,147.0,1,12,19,9,3,151.6,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,128.0,1,37,37,9,9,123.5,1,0,0,1,1,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,2,9070,1,1,129.0,1,1,1,4,9,132.9,1,0,0,1,1,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,Enrolled +1,17,2,9500,1,1,138.0,1,1,38,5,8,132.8,1,0,0,1,0,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,134.0,1,19,37,9,9,131.6,1,1,0,1,0,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,130.0,1,37,37,9,9,122.0,1,0,0,1,0,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,1,0,0,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,2,9085,1,1,130.0,1,37,19,9,8,129.0,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,Enrolled +1,17,5,9119,1,1,126.0,1,38,38,5,9,116.9,1,0,1,1,1,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,37,38,5,6,140.0,1,0,0,1,0,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,18,4,9853,1,1,123.0,1,19,38,4,10,123.7,1,0,0,1,0,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,118.0,1,4,3,2,3,110.7,1,0,0,1,0,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,2,130.0,1,37,37,5,7,147.5,0,0,0,1,0,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,146.0,1,4,1,2,3,140.0,1,0,0,1,0,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,Graduate +1,44,1,9003,1,39,160.0,1,37,38,9,7,160.0,0,0,0,1,0,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,7,0,9003,1,3,130.0,1,1,37,4,9,130.0,1,0,0,1,0,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,19,133.1,1,34,34,99,99,96.0,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,136.0,1,37,37,7,7,140.9,1,0,0,1,1,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,1,9853,1,1,127.0,1,1,1,5,7,121.4,1,0,0,1,0,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,134.0,1,3,19,2,10,128.8,0,0,0,1,0,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,140.0,1,1,3,4,2,142.8,1,0,0,0,0,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,126.3,0,0,0,1,1,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.1,1,19,1,1,3,101.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9147,1,1,122.0,1,1,38,1,7,118.9,0,0,0,1,1,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,107.0,1,19,37,7,7,103.5,1,0,0,1,0,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,156.0,1,38,37,9,9,156.3,0,0,0,1,1,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,128.0,1,1,1,9,9,120.0,1,0,0,1,0,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9119,1,1,127.0,1,19,1,9,10,121.1,1,0,0,1,1,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,4,160.0,1,3,3,4,2,180.4,0,0,1,1,1,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,Dropout +1,43,1,9670,1,1,132.0,1,3,19,4,8,120.5,0,0,0,1,1,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,134.0,1,1,19,4,5,122.5,1,0,0,1,0,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,142.0,1,1,19,4,4,128.0,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,133.0,1,2,37,9,7,125.7,1,0,0,1,1,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,135.0,1,1,3,4,3,133.3,0,0,0,1,0,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,3,140.0,1,37,12,9,4,140.0,0,0,0,0,0,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9500,1,1,141.0,1,2,38,2,10,135.4,1,0,0,1,0,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,Enrolled +2,43,1,9991,0,2,120.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,147.0,1,1,19,4,4,137.2,0,0,0,0,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9085,1,1,120.0,1,37,38,9,9,111.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,141.0,1,3,1,9,9,124.3,0,0,0,1,0,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,Enrolled +1,18,1,9773,1,1,125.0,1,1,1,4,7,121.5,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,140.0,1,37,37,5,5,150.0,0,0,1,1,0,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,112.0,1,1,37,4,9,106.8,1,0,0,1,0,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,168.0,1,38,37,9,8,155.1,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,15,1,9119,1,1,133.1,41,2,2,2,2,100.0,0,0,1,1,1,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,Enrolled +2,1,1,8014,0,1,121.0,1,37,37,9,9,114.4,1,0,0,1,0,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,136.0,1,1,38,4,5,132.2,0,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,Graduate +1,16,1,9070,1,1,145.0,1,1,1,3,3,146.1,1,0,0,1,0,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,40,140.0,1,5,3,2,2,140.0,0,0,1,1,1,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,Dropout +1,1,3,9085,1,1,126.0,1,38,1,9,9,132.0,1,0,0,1,0,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,146.0,1,1,37,9,9,129.3,0,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,131.0,1,37,37,9,6,127.2,0,0,0,1,0,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,139.0,1,37,37,9,9,124.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,133.1,1,37,1,5,4,151.2,0,0,0,1,1,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,170.0,1,38,19,9,2,160.6,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,131.0,1,37,37,9,6,130.7,0,0,1,1,0,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,122.0,1,19,37,3,5,116.6,1,0,1,1,1,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,Graduate +1,17,3,171,1,1,147.0,1,19,1,5,4,137.6,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,9,120.0,0,0,0,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,5,1,9130,1,1,157.0,1,5,43,2,2,149.7,1,0,0,1,0,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9003,1,39,160.0,1,3,1,2,6,160.0,1,0,0,0,0,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,140.0,1,9,19,4,4,131.2,0,0,0,1,1,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,1,130.0,1,1,3,2,6,110.0,0,0,0,1,1,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,Graduate +1,39,1,171,1,1,147.0,1,37,38,175,193,133.3,0,0,0,0,0,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,148.0,1,38,19,4,9,134.7,1,0,0,1,0,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,130.0,1,19,1,9,7,130.4,1,0,0,1,0,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,133.1,1,1,37,4,9,96.0,1,0,0,1,0,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,Enrolled +1,39,1,9991,0,12,120.0,1,37,38,5,5,155.7,0,0,0,1,1,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,117.0,1,3,1,3,3,113.2,0,1,0,1,0,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,Graduate +1,17,2,9853,1,1,150.0,1,38,19,5,5,142.0,1,0,0,1,0,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,144.0,1,1,19,9,4,130.8,1,0,0,1,0,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,Graduate +1,17,4,9254,1,1,118.0,1,38,37,5,7,111.7,1,0,0,1,1,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,6,9500,1,1,141.0,1,2,1,4,4,136.3,1,0,0,1,0,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,Graduate +2,39,1,9003,1,1,120.0,1,2,2,1,4,100.0,0,0,0,1,1,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,141.0,1,4,3,2,1,136.3,1,0,0,1,1,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,120.0,1,1,19,5,4,140.4,0,0,0,1,0,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,154.0,1,1,37,4,9,134.8,1,0,0,1,0,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,100.0,1,19,19,5,5,101.8,1,0,0,1,0,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,3,9670,1,1,137.0,1,1,38,4,7,138.4,0,0,0,1,1,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,152.0,1,37,37,7,5,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,118.0,1,37,1,9,7,117.0,1,0,0,0,1,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,140.0,1,12,3,4,3,118.0,1,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,133.0,1,1,2,9,2,128.8,0,0,0,1,1,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,171,1,1,140.0,1,37,37,9,9,100.8,0,1,0,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9070,1,42,130.0,1,40,19,3,5,130.0,1,0,0,0,0,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,143.0,1,1,19,3,3,133.9,0,0,0,1,0,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,Graduate +2,1,5,9500,1,1,130.0,1,1,19,4,4,122.3,0,0,0,1,0,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,9,9,125.0,1,0,0,1,0,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,120.0,1,37,37,7,8,120.0,0,0,0,1,0,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,Graduate +1,1,2,9147,1,1,125.0,1,1,19,4,9,124.0,1,0,0,1,0,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,131.0,1,38,19,9,9,130.0,1,0,0,1,1,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,132.0,1,1,1,4,1,119.4,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9500,1,1,135.0,1,19,19,7,7,128.0,1,0,0,1,0,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,19,133.1,1,38,38,9,9,114.8,0,0,0,1,0,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,130.0,1,2,2,6,6,130.0,0,0,0,0,1,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,112.0,1,19,38,9,10,112.0,1,0,0,1,0,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9254,1,1,170.0,1,37,37,4,6,138.3,0,0,0,1,0,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9147,1,19,100.0,1,38,19,7,9,132.0,0,0,1,0,1,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,133.1,1,19,19,9,9,119.0,1,0,0,0,0,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,Dropout +1,17,2,9085,1,1,138.0,1,37,37,9,7,123.3,1,0,0,1,0,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,1,133.1,1,37,37,9,9,112.5,0,0,0,1,0,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,1,140.0,1,12,5,3,3,126.6,0,0,0,1,1,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,1,125.0,1,1,1,9,4,120.0,0,0,0,1,0,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,151.0,1,1,1,4,3,132.3,0,0,0,1,1,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,Graduate +1,43,1,9556,1,1,130.0,1,1,37,5,5,128.0,1,0,0,1,1,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,Graduate +1,17,6,9670,1,1,113.0,1,4,1,3,10,112.3,0,0,0,1,0,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9773,1,1,125.0,1,37,37,5,7,120.1,0,0,0,1,0,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,53,1,171,1,42,130.0,1,1,19,9,9,130.0,1,0,0,0,1,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,51,1,33,1,1,121.0,1,19,37,5,7,118.6,0,0,0,1,0,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,131.0,1,37,37,90,90,137.0,0,0,0,1,0,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,150.0,1,19,1,4,4,137.8,0,0,0,1,0,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,140.0,1,37,37,5,6,128.5,0,0,0,1,0,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,130.0,1,37,2,9,4,126.5,1,0,0,0,1,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,Dropout +1,1,2,9238,1,1,147.0,1,19,38,9,8,135.8,1,0,0,1,0,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,106.0,1,19,37,9,7,109.5,1,0,0,1,0,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,110.0,1,37,37,9,10,140.0,0,0,1,0,1,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,105.0,1,19,37,8,8,102.6,0,1,0,1,0,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,Enrolled +1,17,6,9147,1,1,133.0,1,19,38,5,6,123.2,1,0,0,1,1,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9670,1,1,160.0,1,34,34,99,99,100.1,0,0,0,0,1,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,Dropout +4,7,1,9500,1,40,130.0,1,37,37,3,3,130.0,1,0,0,1,0,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,Enrolled +1,43,2,9853,1,1,118.0,1,19,1,5,4,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,Enrolled +1,43,1,8014,0,1,117.0,1,37,37,9,9,100.0,0,0,0,1,0,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,Dropout +1,53,1,9238,1,42,130.0,1,1,19,5,5,128.3,0,0,1,0,0,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,127.0,1,19,38,4,5,120.7,1,0,1,1,0,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,38,37,9,4,150.0,1,0,0,1,1,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,1,133.1,1,37,29,0,4,120.5,0,0,0,0,1,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,121.0,1,37,19,9,9,141.4,0,0,1,0,1,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,120.0,1,38,37,9,7,108.0,0,0,0,1,1,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,153.0,6,37,37,9,9,131.8,1,0,0,1,0,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,153.0,1,38,19,9,5,138.5,1,0,0,1,0,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,107.0,1,12,19,5,5,102.8,1,0,0,1,0,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9238,1,1,135.0,1,1,19,7,7,126.6,1,0,0,1,0,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,124.0,1,1,19,123,103,113.9,1,1,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,144.0,1,37,37,7,9,126.8,1,0,1,0,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9556,1,1,120.0,1,37,37,9,4,150.0,0,0,0,0,0,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,Dropout +1,43,3,171,1,1,120.0,1,37,37,9,9,143.3,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,140.0,1,38,19,4,10,122.3,1,0,0,1,0,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,157.0,1,3,38,1,5,136.7,1,0,0,1,0,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,150.0,1,3,1,2,8,153.8,1,0,0,1,0,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,130.0,1,2,1,2,7,126.2,1,0,0,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,142.0,1,37,37,9,9,132.9,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9238,1,1,124.0,1,1,1,3,1,118.8,1,0,1,0,0,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,1,19,4,5,100.0,0,0,0,1,1,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,Enrolled +1,17,5,9238,1,1,122.0,1,37,37,7,5,112.9,1,0,0,1,0,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,97.5,1,0,0,1,1,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,171,1,1,140.0,1,1,3,3,3,138.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,132.0,1,1,1,3,3,119.4,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,Graduate +1,42,1,9500,1,1,100.0,1,3,19,2,8,153.0,0,0,0,1,1,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,Enrolled +1,1,1,9254,1,1,123.0,1,38,37,5,5,125.1,0,0,0,1,0,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9130,1,1,133.0,1,38,38,5,8,120.4,1,0,0,1,0,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,Graduate +1,17,4,9773,1,1,129.0,1,3,1,2,7,132.5,1,0,0,1,1,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Enrolled +4,39,1,9003,1,19,133.1,1,37,37,9,9,110.0,0,0,0,1,1,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,133.0,1,3,1,9,3,123.2,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,137.0,1,38,19,9,5,129.3,1,0,0,1,0,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,123.0,1,3,1,2,9,127.6,1,0,0,1,1,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,19,133.1,1,19,19,9,5,101.0,1,0,0,1,0,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,19,19,7,7,111.1,1,0,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9070,1,1,147.0,1,3,1,2,3,149.8,1,0,0,1,1,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,100.0,1,37,37,7,9,100.0,1,0,0,1,0,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,141.0,1,38,38,7,7,132.5,1,0,0,1,0,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,168.0,1,1,1,5,5,161.0,1,0,0,1,1,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,Dropout +5,39,1,9003,1,19,133.1,1,19,1,9,9,119.4,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,114.0,1,1,19,9,9,111.9,1,0,0,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,Enrolled +1,39,1,9500,1,1,130.0,1,37,37,3,7,143.8,0,0,0,1,1,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,133.1,1,19,19,9,7,100.0,0,0,0,1,1,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,Dropout +1,17,3,9853,1,1,132.0,1,34,34,0,0,131.3,1,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,157.0,1,37,37,9,9,143.0,0,0,0,1,1,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,Graduate +5,42,1,9254,1,2,120.0,1,37,37,4,9,120.0,0,0,0,1,0,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,6,1,1,192,144,129.8,0,0,0,1,1,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,Enrolled +1,1,2,9500,1,1,139.0,1,38,37,9,7,125.0,1,0,0,1,0,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,133.1,1,1,19,9,5,95.0,1,0,0,1,0,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,180.0,1,37,37,7,4,153.8,1,0,0,1,0,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,4,9773,1,1,133.0,1,1,19,9,9,119.7,1,0,0,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,Graduate +1,17,5,9500,1,1,124.0,1,3,38,2,1,119.8,0,0,0,1,1,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,133.1,1,37,37,9,9,148.2,1,0,1,1,0,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,19,133.1,1,37,37,9,7,114.8,0,0,1,1,1,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,133.1,1,1,19,4,8,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,180.0,41,37,37,9,9,152.7,1,0,1,0,1,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9085,1,1,130.0,1,19,19,90,7,115.8,0,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,161.0,1,38,37,5,5,154.4,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,148.0,1,1,38,4,5,148.7,0,0,0,1,1,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,19,38,9,7,131.3,1,0,1,1,0,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,122.0,1,1,1,4,9,112.9,1,0,0,1,0,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,4,9500,1,1,142.0,1,38,38,9,8,129.8,1,0,0,1,0,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,Graduate +3,39,1,9003,1,1,170.0,1,1,37,6,6,170.0,0,0,1,1,0,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Enrolled +1,1,2,9147,1,1,130.0,1,37,37,9,9,117.8,0,0,0,1,0,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9147,1,1,140.0,1,37,37,9,7,132.3,1,0,0,1,0,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,132.0,1,2,1,9,9,126.4,1,1,0,1,0,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,140.0,1,1,3,9,2,140.0,1,0,0,1,0,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,19,4,4,109.3,0,0,0,1,1,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,176.0,1,3,38,3,7,169.7,0,0,0,1,0,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,133.1,1,37,38,7,7,98.0,1,0,0,1,1,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,136.0,1,3,3,2,2,128.7,0,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,12,38,4,9,107.0,1,0,0,1,0,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,Dropout +1,17,1,9130,1,1,156.0,1,2,9,3,5,166.9,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,Graduate +1,17,1,9130,1,1,123.0,1,19,3,3,2,121.6,1,0,1,1,0,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,129.0,1,1,1,9,9,124.8,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9119,1,1,125.0,1,19,1,5,4,121.5,1,0,0,1,1,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,Dropout +1,17,1,9085,1,1,163.0,14,37,37,9,9,150.8,1,0,0,1,0,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,Graduate +1,7,2,9130,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,135.0,1,1,2,9,1,134.3,1,0,0,1,0,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,19,37,6,6,120.0,0,0,0,1,0,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,1,130.0,1,37,37,9,7,133.0,1,0,0,1,0,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,143.0,1,1,19,4,6,135.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +4,43,2,9991,0,38,133.1,1,3,1,2,9,125.4,0,0,0,1,1,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,140.0,1,3,1,2,4,124.1,0,0,0,1,0,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,37,38,175,103,127.0,0,0,0,1,1,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,151.0,1,1,3,1,1,111.0,0,0,0,1,1,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,133.0,1,37,19,9,8,141.4,0,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,133.1,1,38,37,5,5,108.0,0,0,0,1,0,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,9147,1,1,118.0,1,3,19,2,4,113.8,1,0,0,1,0,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,1,1,3,5,141.7,0,0,0,1,0,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,42,1,9119,1,1,130.0,1,19,37,9,3,135.0,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,Dropout +4,39,2,9147,1,19,133.1,1,37,37,9,7,116.4,0,0,1,0,1,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,148.0,1,19,38,9,8,134.8,1,0,0,1,1,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,116.0,1,19,19,4,7,110.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,5,9147,1,1,122.0,1,38,38,9,9,117.5,1,0,1,0,0,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,122.0,1,37,37,9,9,125.9,1,0,0,1,1,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,171,1,1,127.0,1,1,1,9,5,124.2,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9147,1,39,117.4,1,19,1,4,9,117.4,1,0,0,1,0,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,150.0,1,37,38,9,9,146.2,0,0,0,1,0,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,Enrolled +1,17,1,9254,1,1,158.0,1,37,37,5,9,138.1,1,0,0,1,0,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,Dropout +1,7,1,9500,1,3,140.0,1,1,37,9,5,140.0,0,0,0,1,0,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,140.0,1,1,1,9,3,135.7,1,0,0,1,0,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +2,7,1,171,1,3,120.0,1,19,19,9,9,130.0,1,0,0,1,1,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,10,100.0,1,34,34,0,0,113.0,1,0,0,1,0,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,1,8014,0,1,125.0,1,37,37,9,7,114.9,0,0,0,1,0,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,Graduate +1,18,6,9500,1,1,124.0,1,37,37,9,7,117.8,0,0,0,1,0,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,109.0,1,2,3,3,3,111.8,1,0,1,1,1,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,149.0,1,1,1,9,3,156.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +2,44,1,9119,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,120.0,6,4,4,3,6,120.0,0,0,1,0,0,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,Dropout +5,1,3,9085,1,1,133.0,1,19,19,4,7,119.7,1,0,0,1,0,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9085,1,1,127.0,1,37,37,9,9,122.8,1,0,0,1,0,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,171,1,39,140.0,1,1,1,9,9,140.0,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9773,1,1,132.0,1,1,1,4,9,124.3,1,0,1,1,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +4,39,2,9670,1,19,133.1,1,19,1,90,90,103.0,0,0,0,0,1,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,26,1,9147,1,2,133.1,1,34,34,0,0,121.5,1,0,0,1,0,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,143.0,1,19,38,9,6,131.5,1,0,0,1,1,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,123.0,1,1,19,3,4,122.0,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,171,1,1,133.1,1,3,1,2,3,141.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,19,37,9,4,120.0,0,0,0,1,0,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,1,1,3,3,125.7,1,0,0,1,0,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,121.0,1,37,37,5,5,118.9,1,0,0,1,0,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,Graduate +1,51,1,9500,1,1,129.0,1,37,38,3,3,137.8,1,0,0,1,0,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,2,4,134.9,1,0,1,1,0,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9254,1,1,113.0,1,1,1,2,3,110.2,1,0,0,1,1,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,1,133.1,1,1,19,4,5,120.0,1,0,0,1,1,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,Dropout +1,39,1,9254,1,19,133.1,1,19,1,9,5,97.0,0,0,1,0,1,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9500,1,1,126.0,1,1,19,6,7,115.5,1,0,0,1,0,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,Graduate +1,42,1,9853,1,1,141.0,1,37,19,9,3,133.0,0,0,0,1,0,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,19,133.1,1,19,19,4,9,139.9,1,0,0,1,0,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,2,9254,1,1,140.0,1,19,19,9,9,126.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,108.0,1,34,38,0,3,105.9,0,0,0,1,1,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,114.0,1,19,19,9,7,107.7,0,0,0,1,0,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,130.0,1,3,1,9,9,126.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.1,1,19,37,0,0,137.0,1,0,0,1,0,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9119,1,1,117.0,1,1,2,3,2,119.8,1,0,0,1,1,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9147,1,1,115.0,1,1,37,4,9,117.1,1,0,1,1,0,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,130.0,1,12,19,4,5,118.5,0,1,0,1,0,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,34,37,5,5,120.4,0,0,0,0,0,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,171,1,39,150.0,1,19,1,9,9,154.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,43,1,9147,1,1,140.0,1,37,37,6,6,122.9,0,0,0,1,0,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,Dropout +1,42,1,9070,1,1,100.0,1,3,2,2,2,115.9,0,0,0,1,0,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,Enrolled +1,17,1,171,1,1,128.0,1,1,1,4,10,134.7,0,0,0,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,1,1,9,9,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,7,133.9,0,0,0,1,0,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Dropout +1,43,1,9773,1,1,119.0,1,19,37,5,5,105.0,1,0,0,1,0,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,Enrolled +2,43,1,9991,0,1,140.0,1,37,37,4,1,122.7,0,0,0,1,1,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,135.0,1,37,1,3,5,121.0,0,0,0,1,0,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,123.0,1,3,1,2,3,124.1,1,0,0,1,0,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9670,1,1,132.0,1,19,1,5,4,119.1,0,0,1,1,1,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,5,9254,1,1,130.0,1,37,38,9,9,122.7,1,0,1,1,1,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9147,1,1,117.0,1,1,38,8,9,117.0,1,0,0,1,1,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,140.0,1,19,19,9,6,135.4,1,0,0,1,0,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,162.0,1,37,37,9,6,132.0,0,0,1,1,1,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,139.0,1,19,38,4,9,128.5,1,0,0,1,0,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,Dropout +4,39,1,9991,0,1,130.0,1,38,19,9,7,148.0,0,0,0,1,0,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,43,1,9500,1,1,131.0,1,1,38,5,5,118.8,0,0,0,1,0,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,5,9238,1,1,126.0,1,38,1,9,5,125.7,1,0,0,1,0,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,53,1,9085,1,42,140.0,1,1,1,4,3,140.0,1,0,1,1,0,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,128.0,1,1,1,4,5,120.8,1,0,0,1,0,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,139.0,1,37,37,9,6,133.5,1,0,0,1,0,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,150.0,1,38,38,4,1,150.0,1,0,0,1,1,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,133.1,1,1,1,4,4,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9853,1,1,140.0,1,37,19,9,8,122.3,0,0,0,1,0,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,120.0,1,38,19,5,4,118.3,0,0,0,1,0,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,Enrolled +1,7,1,9130,1,3,140.0,1,2,38,2,3,140.0,1,0,0,0,1,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,122.0,1,9,19,90,6,103.4,0,0,0,1,0,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,Graduate +2,39,1,9070,1,19,133.1,1,37,37,9,10,126.3,0,0,0,0,1,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,160.0,1,38,38,7,7,147.8,0,0,0,1,0,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9238,1,12,100.0,1,37,37,9,9,124.3,0,0,0,1,1,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,Graduate +1,18,2,8014,0,1,117.0,1,3,1,3,4,111.8,1,0,0,1,0,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,38,37,7,7,140.0,0,0,0,1,1,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,Dropout +1,43,1,9853,1,1,140.0,1,3,1,3,3,128.3,1,0,0,1,0,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,127.0,1,37,38,9,9,120.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,1,161.0,1,19,37,4,10,100.0,0,0,0,1,1,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,Graduate +1,16,4,9500,1,1,145.0,1,1,1,4,4,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9853,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,Dropout +1,1,2,171,1,1,127.0,1,2,19,5,5,139.6,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,148.0,1,19,19,4,4,133.8,0,0,0,1,0,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,140.0,1,19,19,1,1,129.5,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,171,1,1,129.0,1,37,37,9,9,122.0,1,0,0,0,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,1,12,3,10,131.6,1,0,0,1,0,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,130.0,1,38,37,3,6,135.6,1,0,0,1,0,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,51,1,9991,0,39,120.0,1,1,4,4,10,118.1,0,0,0,1,1,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,39,1,9853,1,19,133.1,1,19,4,9,4,116.0,1,0,0,1,0,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9238,1,1,133.1,1,1,37,8,9,118.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,4,9500,1,1,125.0,1,19,1,1,1,117.8,1,0,0,1,0,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,141.0,1,1,38,4,5,125.0,1,0,0,1,0,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,121.0,1,38,38,7,5,120.0,1,0,0,1,0,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,Enrolled +1,17,3,9500,1,1,142.0,1,3,3,3,3,132.9,1,0,0,1,1,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,Dropout +1,44,1,9238,1,39,140.0,1,37,19,191,102,136.1,1,0,1,1,0,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9991,0,2,140.0,1,3,3,2,2,155.7,1,0,0,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9119,1,1,135.0,1,12,19,5,5,121.0,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,135.0,1,3,3,2,2,123.0,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,117.0,1,1,1,4,4,117.7,1,0,0,1,1,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,43,1,171,1,1,120.0,1,3,3,2,2,120.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,1,38,1,7,120.0,0,0,0,1,0,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,Graduate +1,17,3,9238,1,1,122.0,1,19,19,7,7,117.5,1,0,0,1,0,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,1,37,37,9,9,144.2,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +4,39,1,9500,1,1,140.0,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,131.0,1,19,19,9,9,139.8,1,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,127.0,1,3,3,2,5,100.0,0,0,0,1,0,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,39,1,9085,1,1,133.1,1,3,19,2,9,110.0,0,0,0,1,0,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,Dropout +4,39,1,9500,1,19,133.1,1,38,1,9,4,120.0,0,0,0,1,0,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,Graduate +1,16,1,9085,1,1,150.0,1,3,3,2,1,153.5,1,0,0,1,0,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,153.0,1,19,37,9,9,153.7,0,0,0,1,0,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,130.0,1,19,19,3,8,131.8,0,0,0,1,0,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,2,9853,1,1,131.0,1,1,1,2,9,121.9,1,0,0,1,0,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,136.0,1,3,3,3,3,130.8,0,0,0,1,0,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,126.0,1,1,19,4,0,120.1,0,1,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,1,120.0,1,3,2,2,6,120.0,1,0,0,1,1,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,Enrolled +2,39,1,9130,1,19,133.1,1,2,1,2,9,157.0,1,0,0,1,1,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,Graduate +1,7,1,9853,1,3,150.0,1,19,19,4,5,150.0,0,0,1,0,0,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,51,1,9070,1,12,133.1,1,37,19,3,7,106.6,0,0,1,1,0,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,Enrolled +1,1,2,9085,1,1,157.0,1,3,3,5,2,153.9,1,0,0,1,0,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,171,1,1,117.0,1,1,19,3,3,121.6,1,0,0,1,0,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,Graduate +1,1,2,9147,1,1,113.0,1,38,38,9,5,107.4,1,0,0,1,1,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,Enrolled +1,39,2,9147,1,12,133.1,1,19,38,9,9,120.0,1,0,1,0,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,152.0,1,37,37,9,9,139.0,1,0,0,1,0,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,138.0,1,1,19,9,9,124.0,0,0,0,1,0,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9853,1,1,110.0,1,37,37,9,9,95.5,0,0,1,0,0,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9130,1,1,150.0,1,19,19,4,4,130.0,0,0,0,0,1,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,3,9119,1,1,138.0,1,1,19,4,3,125.4,1,0,0,1,1,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,17,6,9147,1,1,120.0,1,37,38,9,9,115.5,1,0,1,0,1,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,Enrolled +1,1,3,9670,1,1,134.0,1,14,11,0,0,128.4,1,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,145.0,1,38,37,9,7,129.3,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,18,6,9500,1,1,126.0,1,37,37,5,5,122.8,1,0,0,1,0,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,133.0,1,1,1,4,4,129.2,1,0,0,1,0,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,Dropout +1,44,1,9070,1,39,120.0,1,1,19,4,7,120.0,0,0,1,0,1,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,136.0,1,19,38,9,9,121.7,0,1,0,1,0,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,126.0,1,1,1,9,10,126.7,1,0,0,1,0,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,Graduate +1,1,3,9085,1,1,134.0,1,38,19,9,5,129.1,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,133.1,1,1,37,9,9,117.0,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,5,9238,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,0,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,40,140.0,1,19,37,5,9,148.0,0,0,0,1,0,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,137.0,1,3,38,1,9,131.4,0,0,0,0,1,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,Dropout +1,1,2,9670,1,1,123.0,1,1,38,7,7,120.6,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,139.0,1,3,1,2,7,124.0,1,0,0,1,0,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,Dropout +1,1,2,171,1,1,152.0,1,38,19,9,9,151.7,1,0,0,1,0,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,110.0,1,37,37,9,4,114.3,1,0,0,1,1,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,Enrolled +1,51,1,9991,0,1,120.0,1,38,3,5,3,128.2,0,0,1,1,1,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,141.0,1,3,2,2,2,133.3,1,0,0,1,1,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,Enrolled +1,5,1,171,1,1,137.0,1,3,19,1,10,144.7,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,43,1,9003,1,1,130.0,1,37,1,5,4,130.0,0,0,0,1,1,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,Dropout +1,18,1,9773,1,1,135.0,1,1,1,3,3,129.8,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,38,38,9,8,150.0,1,0,0,1,1,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,Graduate +1,17,2,9773,1,1,150.0,1,1,1,4,5,130.8,0,0,0,1,1,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9773,1,1,123.0,1,1,1,4,7,125.1,1,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,4,9119,1,1,129.0,1,34,36,0,5,118.9,1,0,0,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,144.0,1,38,37,9,9,128.8,1,0,0,1,1,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,130.0,1,38,38,9,9,150.0,0,0,1,0,1,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,128.0,1,1,1,7,7,120.5,1,0,0,1,0,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,Enrolled +1,7,1,9500,1,3,140.0,1,3,1,4,4,140.0,0,0,0,1,0,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,134.0,1,19,19,1,1,120.4,1,0,0,1,1,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,147.0,1,1,38,4,8,141.1,1,0,0,1,0,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,126.0,1,3,1,5,5,125.7,0,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +2,1,4,9853,1,1,134.0,1,37,37,5,7,122.5,0,1,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,148.0,1,38,38,4,9,131.6,0,0,0,1,1,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,Dropout +2,39,1,9085,1,9,133.1,1,1,1,4,4,120.0,1,0,0,0,1,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,39,1,9254,1,1,150.0,1,3,1,3,4,122.3,0,0,0,1,1,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,125.0,1,19,37,3,7,126.8,0,0,0,1,0,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,Enrolled +1,18,1,9670,1,1,128.0,1,19,3,9,7,120.0,1,0,0,1,0,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,160.0,1,2,1,4,4,137.3,1,0,0,1,0,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,Graduate +2,39,1,9238,1,42,170.0,1,19,38,8,8,159.5,0,0,0,1,1,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9773,1,1,143.0,1,1,1,4,9,144.1,1,0,0,1,1,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,9991,0,1,130.0,1,37,37,9,9,127.8,0,0,0,1,1,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,51,1,9147,1,1,130.0,1,19,38,9,8,115.7,0,0,0,1,1,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,Enrolled +1,17,3,9773,1,1,135.0,1,1,19,5,7,135.0,0,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,135.0,1,1,1,9,9,133.3,0,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,136.0,1,1,1,4,5,123.3,0,0,0,0,0,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,143.0,1,5,5,2,2,137.8,0,0,0,1,1,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,133.1,1,1,19,141,114,140.0,1,0,0,1,0,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9670,1,1,117.0,1,38,19,0,1,114.6,0,0,0,0,1,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,133.1,1,1,19,4,10,145.8,0,0,0,1,1,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,129.0,1,1,37,4,9,118.2,0,0,0,1,1,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,7,1,9500,1,3,130.0,1,37,37,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,Graduate +1,17,4,9670,1,1,135.0,1,38,38,9,7,127.0,1,0,0,1,0,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,126.0,1,1,1,90,90,119.0,1,0,1,1,1,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9773,1,1,120.0,1,1,38,5,5,121.4,0,0,0,0,0,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,136.0,1,1,38,9,9,130.8,1,0,0,1,0,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,131.0,1,19,37,9,9,123.8,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,144.0,1,19,19,9,9,142.6,1,0,0,1,0,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,126.0,1,38,38,7,8,126.7,1,0,0,1,0,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,3,171,1,1,125.0,1,37,37,5,10,120.5,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,7,1,9130,1,2,110.0,1,19,19,4,8,110.0,1,0,0,1,1,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,3,1,2,8,150.0,0,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,5,171,1,1,139.0,1,19,3,9,2,136.9,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9147,1,1,100.0,1,38,38,5,5,101.8,1,0,0,1,0,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,Enrolled +1,44,2,9238,1,39,150.0,1,3,19,4,9,147.0,1,0,0,1,0,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,9,4,100.0,0,0,0,1,1,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9130,1,1,130.0,1,19,38,4,7,122.5,0,0,0,1,1,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,19,37,1,1,140.0,0,0,1,1,1,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,Enrolled +1,17,1,9070,1,1,157.0,1,3,3,3,3,146.2,0,0,0,1,1,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,150.0,1,37,19,8,4,130.8,0,0,0,1,1,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,133.1,1,19,19,7,7,130.0,1,0,0,1,0,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,150.0,1,19,1,9,8,150.0,1,0,0,1,1,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,127.0,1,1,19,7,7,121.8,1,0,0,1,0,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9853,1,1,148.0,1,19,19,5,7,141.7,0,0,0,1,0,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,130.0,1,1,19,9,9,133.4,0,0,0,1,0,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,123.0,1,37,38,3,3,122.0,0,0,1,1,1,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9070,1,1,132.0,1,37,38,9,7,138.0,0,0,0,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,146.0,1,2,19,3,9,130.3,1,0,0,1,1,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,Graduate +1,44,1,171,1,39,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,116.0,1,3,1,3,4,115.7,0,0,0,0,1,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9670,1,1,130.0,1,19,37,4,5,118.8,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,124.0,1,37,37,7,9,121.2,0,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,127.0,1,19,37,9,3,120.7,1,0,0,1,0,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +2,43,1,9070,1,2,140.0,1,37,37,6,6,140.0,1,0,0,1,1,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,Graduate +1,39,1,9500,1,1,100.0,1,3,1,2,5,121.3,1,0,0,1,0,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,Enrolled +1,39,1,9991,0,19,133.1,1,37,37,9,6,105.3,0,0,1,1,0,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,1,155.0,1,1,19,4,8,134.7,1,0,0,1,0,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,15,1,9119,1,1,160.0,32,1,3,143,152,160.0,0,0,1,1,0,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,Enrolled +1,53,1,9670,1,42,140.0,1,19,37,3,6,140.0,1,0,1,1,0,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9853,1,1,140.0,1,38,38,9,7,137.6,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,140.0,1,19,19,7,7,129.5,1,0,0,1,0,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,133.1,1,19,19,3,4,104.0,0,0,1,0,0,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,130.0,1,37,37,9,9,118.8,0,0,1,1,1,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,136.0,1,1,1,9,1,133.0,1,0,0,1,0,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,143.0,1,38,38,9,9,138.8,1,0,0,1,0,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,Graduate +2,39,1,9147,1,1,140.0,1,37,37,6,10,131.8,0,0,0,1,0,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,1,130.0,1,4,1,2,9,120.0,0,0,0,0,0,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,Enrolled +1,1,4,9500,1,1,148.0,1,19,19,4,5,137.0,1,0,0,1,0,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,120.0,1,37,19,5,3,156.0,1,0,0,1,1,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9853,1,1,133.1,1,12,1,4,0,134.8,1,0,0,1,0,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,122.0,1,1,1,9,8,120.3,0,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,156.0,1,19,38,9,5,170.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,129.0,1,38,37,9,3,127.3,1,0,1,0,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,142.0,1,38,38,9,10,127.0,1,0,0,1,0,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,150.0,1,38,19,3,3,120.1,0,0,0,0,0,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,141.0,1,37,37,9,9,126.7,1,0,1,1,0,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,43,3,9147,1,1,127.0,21,3,37,3,3,117.9,1,0,0,1,0,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,1,120.0,1,1,19,4,7,110.0,0,0,0,1,1,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,Dropout +2,42,1,9254,1,1,136.0,1,2,2,134,112,130.0,1,0,0,1,1,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,Dropout +1,18,1,9119,1,1,122.0,1,19,1,90,3,116.1,1,0,1,0,1,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9500,1,1,120.0,1,2,4,4,5,136.6,0,0,0,1,1,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,Dropout +1,18,1,9070,1,1,143.0,1,38,38,7,5,141.6,0,0,0,1,0,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,Graduate +1,43,1,9119,1,1,140.0,1,37,38,5,7,146.5,0,0,0,1,1,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,125.0,1,19,19,9,9,121.5,1,0,0,1,0,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,1,0,0,1,0,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,159.0,1,3,3,2,2,165.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,127.0,1,3,1,2,9,119.3,1,0,0,1,0,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,Graduate +1,17,6,9238,1,1,117.0,1,1,38,4,7,114.6,0,0,0,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9119,1,1,148.0,1,19,19,9,8,129.8,0,0,0,0,1,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,Enrolled +1,17,4,9119,1,1,127.0,1,19,19,5,5,120.4,1,0,1,0,1,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9500,1,1,144.0,1,19,1,5,3,141.0,1,0,0,1,0,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,Graduate +1,17,3,9556,1,1,126.0,1,19,19,9,4,119.0,1,0,0,1,0,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,Dropout +1,1,4,9119,1,1,126.0,1,3,19,2,9,123.6,1,0,0,1,1,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,120.0,1,1,2,144,123,125.3,0,0,1,1,1,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9070,1,1,130.0,1,1,19,4,4,110.0,1,0,0,1,0,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,37,37,90,5,115.5,0,0,0,0,1,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,130.0,1,38,38,9,9,120.0,0,0,0,1,0,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9853,1,1,141.0,1,3,1,1,5,130.2,1,0,0,1,0,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,Enrolled +2,1,1,9500,1,1,156.0,1,1,1,9,10,135.5,0,0,0,1,0,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,Graduate +2,7,1,8014,0,3,170.0,1,19,19,4,4,170.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9147,1,1,134.0,1,37,19,9,8,126.3,1,0,0,1,0,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,122.0,1,12,12,5,7,126.6,1,0,0,1,0,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,38,38,9,7,138.8,1,0,0,1,0,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,132.0,1,37,37,5,7,127.5,1,0,0,1,0,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,Graduate +1,16,2,9238,1,1,130.0,1,37,37,5,6,126.9,1,0,0,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,110.0,1,3,2,3,3,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,127.0,1,2,19,4,5,121.8,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,12,133.1,1,38,19,9,8,138.3,1,0,1,0,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9147,1,19,133.1,1,3,1,3,5,153.2,1,0,1,1,0,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,37,19,5,9,130.0,1,0,0,1,0,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,2,9147,1,1,130.0,1,19,37,4,7,140.0,0,0,0,1,1,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,128.0,1,19,19,7,7,124.4,0,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,19,3,8,150.3,1,0,0,1,1,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,143.0,1,38,19,7,9,129.5,1,0,0,1,0,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,6,141.0,1,37,1,9,4,145.0,0,0,0,1,0,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,Graduate +1,17,1,9238,1,1,160.0,1,19,37,6,6,144.3,0,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,2,9238,1,1,133.1,1,19,19,4,5,120.6,1,0,0,1,0,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,3,116.5,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,127.0,1,1,1,3,4,130.2,1,0,0,1,1,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9254,1,1,131.0,1,38,36,9,9,124.0,1,0,0,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,5,9254,1,1,120.0,1,37,37,9,7,127.0,1,0,0,1,0,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,135.0,1,34,34,0,0,134.1,1,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9254,1,1,133.1,1,37,37,9,6,121.5,0,0,0,1,1,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,144.0,1,38,38,5,7,128.0,1,0,0,1,0,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,132.0,1,1,19,6,6,124.7,1,0,0,1,1,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,Graduate +1,17,2,9991,0,1,116.0,1,37,19,9,4,118.5,0,0,0,1,1,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,133.1,1,1,1,9,1,103.0,1,0,0,1,0,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,16,5,9085,1,1,134.0,1,19,37,8,8,123.9,1,0,0,1,1,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9773,1,1,114.0,1,37,38,9,5,107.4,1,0,0,0,1,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,38,37,5,7,120.0,1,0,0,1,0,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,135.0,1,1,38,4,6,122.1,0,1,1,0,1,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,1,150.0,1,37,37,7,5,143.0,0,0,0,1,0,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,Graduate +1,44,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,Graduate +4,39,1,9238,1,19,133.1,1,37,37,9,10,103.5,0,0,0,0,0,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,126.0,1,19,38,9,9,132.0,1,0,0,1,0,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,125.0,1,1,1,7,3,143.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9147,1,1,120.0,1,37,1,9,1,122.7,0,0,0,0,0,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,7,1,8014,0,3,124.4,1,37,34,0,0,130.0,0,0,0,1,0,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,Graduate +1,18,1,9085,1,1,106.0,1,1,19,3,5,104.6,0,0,0,0,1,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,Enrolled +1,44,1,9119,1,39,160.0,1,3,38,2,3,160.0,0,0,1,0,1,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,148.0,1,3,19,2,5,130.0,0,0,0,1,0,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,Enrolled +1,1,1,9130,1,1,133.0,1,1,37,9,9,123.2,1,0,0,1,0,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9500,1,1,130.0,1,19,1,9,4,128.8,1,0,0,1,0,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,149.0,1,19,1,9,9,137.8,1,0,0,1,1,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,Graduate +4,43,1,9670,1,1,150.0,1,37,37,9,6,110.0,0,0,0,1,0,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,Graduate +2,39,1,9119,1,1,110.0,1,19,19,0,5,137.0,0,0,1,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9556,1,1,122.0,1,19,19,3,10,113.3,1,0,0,1,0,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,140.0,1,1,19,4,5,127.5,0,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,128.0,1,37,37,5,5,124.5,1,0,0,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,39,150.0,6,5,4,1,1,150.0,0,0,0,1,0,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,131.0,1,38,37,7,7,127.2,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,130.0,1,37,37,9,6,126.5,1,0,0,1,0,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,116.0,1,19,37,90,5,116.7,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,Dropout +1,17,3,9853,1,1,140.0,1,38,38,5,7,126.7,1,0,0,1,0,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,4,9238,1,1,129.0,1,37,37,9,8,117.1,1,0,0,1,1,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,144.0,1,19,19,9,9,130.5,1,0,0,1,0,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,124.0,1,19,1,7,10,116.0,1,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,122.0,1,1,19,4,4,127.3,1,0,1,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,12,12,4,1,155.3,1,1,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +2,15,1,9773,1,1,133.1,41,37,37,9,6,100.0,0,0,0,1,0,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,138.0,41,1,1,9,9,126.5,1,0,0,1,0,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,Graduate +1,18,6,9500,1,1,142.0,1,38,37,9,5,128.0,1,0,0,0,0,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,3,1,2,3,140.0,1,0,0,1,0,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,Enrolled +1,42,1,9991,0,1,150.0,1,19,19,5,5,113.7,0,0,0,1,1,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,135.0,1,1,19,5,5,130.1,1,0,0,1,0,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9254,1,1,120.0,1,19,1,9,8,117.2,0,0,0,1,1,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,130.0,1,19,19,9,7,119.5,1,0,0,1,1,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,133.0,1,1,1,4,5,136.2,1,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,15,1,9147,1,1,133.1,21,1,3,192,3,100.0,0,0,1,1,1,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9670,1,1,112.0,1,37,1,7,0,110.6,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9238,1,1,117.0,1,19,19,9,9,117.0,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9991,0,1,140.0,1,1,37,9,8,154.5,0,0,0,1,0,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,97.0,1,0,0,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,119.0,1,37,37,5,4,118.0,1,0,0,1,1,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,112.0,1,19,38,5,7,107.1,1,0,0,1,0,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +2,18,2,8014,0,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,144.0,1,37,37,9,6,129.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,120.0,100,1,1,4,7,119.5,0,0,1,1,0,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,136.0,1,19,38,5,8,130.3,1,0,0,1,0,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,7,9,121.3,1,0,0,1,0,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,135.0,1,1,4,5,3,124.9,0,0,0,1,0,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,4,9670,1,1,128.0,1,38,38,3,7,121.0,1,0,0,1,0,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,15,1,9556,1,1,114.0,26,3,19,122,144,114.0,0,0,0,1,0,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9238,1,1,125.0,1,19,19,3,3,118.0,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,118.0,1,37,37,7,7,114.2,0,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,Enrolled +1,17,1,9147,1,1,115.0,1,19,37,5,7,112.9,1,0,0,0,1,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,120.0,1,19,37,9,9,118.3,0,0,1,0,1,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9119,1,10,133.1,1,34,37,0,0,128.8,1,0,0,1,1,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,115.0,1,19,38,5,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,137.0,1,37,37,9,9,132.8,1,0,0,1,0,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9003,1,1,148.0,1,19,37,9,9,131.6,1,0,0,1,1,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9773,1,1,161.0,1,1,19,4,7,148.4,0,0,0,1,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,43,1,9991,0,1,133.1,1,37,37,9,7,113.5,0,0,0,1,0,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,132.0,1,1,1,9,9,133.8,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9254,1,1,125.0,1,37,37,9,9,122.9,0,0,0,1,1,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,123.0,1,3,1,9,3,121.3,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,Enrolled +1,17,1,9991,0,1,154.0,1,38,38,4,5,134.1,0,0,0,1,0,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,Enrolled +1,44,1,9130,1,39,140.0,1,19,19,5,5,140.0,1,0,1,0,0,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,Enrolled +1,53,1,9085,1,42,170.0,1,1,19,4,7,170.0,0,0,0,1,0,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,Graduate +1,17,5,9147,1,1,131.0,1,19,38,3,10,119.8,1,0,0,1,0,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,141.0,1,19,19,9,9,126.0,1,0,0,1,0,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,Graduate +1,1,3,9500,1,1,137.0,1,19,19,5,4,131.5,1,0,0,1,0,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,118.0,1,19,1,9,3,113.5,1,0,1,1,0,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,100.0,1,37,37,99,99,100.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9130,1,1,120.0,6,1,3,9,2,120.0,0,0,1,1,0,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,127.0,1,19,19,5,5,129.8,1,0,0,1,0,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,134.0,1,37,37,9,9,129.8,1,0,0,1,0,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,121.0,1,37,37,5,9,116.5,1,0,0,1,0,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9070,1,1,117.0,1,19,37,5,5,131.0,1,0,1,0,1,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,125.0,1,1,38,9,7,119.8,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,5,9500,1,1,140.0,1,1,1,4,3,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,1,5,9254,1,1,101.0,1,3,19,3,9,98.9,1,0,0,1,1,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,130.0,1,37,38,7,9,117.8,0,0,1,1,0,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,128.0,1,34,19,3,0,141.0,1,0,0,0,0,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,150.0,1,38,37,9,9,130.8,0,0,0,1,1,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,125.0,1,1,19,4,7,116.6,0,0,0,1,1,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,Graduate +1,43,1,9670,1,1,130.0,1,34,34,0,0,114.8,0,0,0,1,1,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,Graduate +2,42,1,9003,1,1,120.0,1,3,1,2,2,113.3,0,0,0,1,1,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +4,39,1,9991,0,1,133.1,1,37,37,5,5,138.7,0,0,0,1,0,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,Dropout +1,39,1,9238,1,1,140.0,1,34,34,0,0,114.0,1,0,0,0,0,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9991,0,1,133.1,1,37,19,3,10,136.1,0,0,0,1,1,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9070,1,1,110.0,1,37,37,7,7,110.2,0,0,0,1,1,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,150.0,1,4,5,4,2,150.0,0,0,0,1,1,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,Enrolled +1,1,2,9119,1,1,149.0,1,38,38,5,5,141.0,0,0,0,1,1,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,Enrolled +1,42,1,9085,1,39,150.0,1,1,1,4,7,150.0,1,0,0,1,0,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,1,38,4,9,131.7,1,0,0,1,0,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,42,1,9853,1,1,120.0,1,1,37,5,5,113.9,1,0,0,1,0,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9085,1,1,130.0,1,37,19,9,7,130.0,1,0,0,1,0,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,Enrolled +1,17,4,9500,1,1,133.0,1,38,37,5,7,126.4,1,0,0,1,1,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,147.0,1,3,1,2,3,131.6,0,0,0,1,0,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,12,133.1,1,37,37,9,9,121.5,0,0,0,1,1,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,1,1,9991,0,1,150.0,1,37,37,9,9,131.8,0,0,0,0,0,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,43,4,8014,0,1,116.0,1,34,34,0,0,116.2,0,0,0,1,1,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,7,140.0,0,0,0,1,1,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9773,1,1,136.0,1,3,1,2,3,132.5,1,0,0,1,0,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,19,110.0,1,37,38,5,5,151.0,0,0,1,0,1,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,19,19,5,5,113.2,1,0,1,1,0,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,137.0,1,3,19,2,9,122.3,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +4,39,1,9254,1,1,120.0,1,37,19,9,9,131.0,1,0,0,1,1,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9556,1,1,123.0,1,19,19,4,9,113.8,1,0,0,1,0,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,150.0,1,3,37,4,7,139.5,0,0,0,1,1,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,145.0,1,38,37,3,9,138.4,1,0,0,0,0,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,39,1,8014,0,1,140.0,1,37,37,9,7,122.0,1,0,1,0,1,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,3,9991,0,1,120.0,1,37,37,9,9,128.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,6,9500,1,1,126.0,1,12,37,5,9,121.8,1,0,0,1,0,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,Dropout +2,39,1,9991,0,1,130.0,1,37,37,9,9,140.0,1,0,0,1,1,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,130.0,1,37,19,9,8,130.8,0,0,0,1,1,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,Enrolled +1,1,3,9070,1,1,125.0,1,19,38,9,9,125.4,1,0,0,1,0,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,132.0,1,38,38,4,9,119.1,0,0,0,1,0,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,Graduate +4,7,1,9147,1,3,130.0,1,19,1,5,5,130.0,0,0,0,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,130.0,1,19,19,7,7,121.6,1,0,0,1,0,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9773,1,1,126.0,1,37,38,5,5,129.5,1,0,1,0,0,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,133.0,1,38,38,5,5,123.2,0,0,0,1,0,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,140.0,1,37,37,9,9,121.0,0,0,0,1,0,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,3,9500,1,1,131.0,1,37,37,9,9,118.0,1,0,0,1,0,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,120.0,1,38,19,4,8,115.1,0,0,0,1,0,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,Enrolled +1,17,5,9773,1,1,111.0,1,19,12,7,3,115.9,1,0,0,1,0,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,135.0,1,1,19,9,7,123.5,1,0,0,1,0,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,37,4,9,130.0,1,0,0,1,0,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,Enrolled +1,44,1,9119,1,39,130.0,1,3,19,3,4,130.0,0,0,0,1,1,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,Enrolled +1,44,1,9147,1,39,130.0,22,2,37,2,8,130.0,0,0,1,0,1,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,119.0,1,37,37,9,6,119.0,0,0,1,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9500,1,1,142.0,1,38,37,9,8,130.8,1,0,0,1,0,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,136.0,1,38,1,9,4,129.7,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,140.0,1,19,19,4,4,140.0,1,0,0,1,1,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,19,133.1,1,1,19,4,10,114.0,0,0,0,1,1,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +1,17,5,9670,1,1,125.0,1,19,30,7,7,118.4,1,0,0,1,0,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,135.0,1,19,19,9,10,122.9,1,0,0,1,0,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,100.0,1,37,37,9,9,108.0,1,0,0,1,1,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,127.0,1,37,37,9,9,119.3,1,1,0,1,1,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,133.0,1,38,19,9,10,125.0,1,0,0,1,0,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,116.0,1,3,3,3,3,110.1,1,0,0,1,1,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,133.1,1,1,1,5,8,123.0,1,0,0,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,144.0,1,37,37,9,3,150.5,0,0,0,1,0,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,3,1,2,4,130.2,0,0,0,1,1,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,116.0,1,38,37,9,6,109.7,1,0,0,1,0,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,Graduate +1,18,3,9853,1,1,128.0,1,38,37,5,9,116.8,1,0,0,0,1,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,150.0,1,37,37,4,9,132.1,1,0,1,1,0,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,160.0,1,1,19,4,6,155.7,1,0,0,1,0,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,130.0,1,19,1,9,9,131.9,0,0,0,1,0,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,126.0,1,3,3,2,2,121.1,0,0,1,1,0,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,38,38,7,7,147.0,0,0,0,1,0,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,137.0,1,37,37,9,9,126.2,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,38,37,5,5,137.1,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,143.0,1,2,37,1,1,133.2,1,0,0,1,0,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,Enrolled +1,17,5,9070,1,1,122.0,1,19,38,5,7,119.6,0,0,1,0,0,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,137.0,1,19,38,9,9,127.2,1,0,0,1,0,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,110.0,1,1,1,4,4,125.9,0,0,0,1,1,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,130.0,1,1,38,5,9,118.1,0,0,1,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9853,1,1,130.0,1,37,19,9,5,102.5,0,0,0,1,0,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.0,1,19,1,9,1,122.2,0,0,0,1,0,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,39,140.0,1,3,3,2,2,140.0,1,0,0,1,0,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,134.0,1,37,38,9,9,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,1,1,37,4,7,110.0,0,0,0,1,1,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,Dropout +1,15,1,9085,1,1,133.1,41,3,3,4,2,101.3,0,0,0,1,0,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,113.0,1,1,1,5,4,106.7,1,0,1,1,0,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,Dropout +2,39,1,9991,0,19,133.1,1,37,37,5,5,111.9,1,0,0,1,1,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9853,1,1,134.0,1,19,38,4,8,122.1,1,0,0,1,0,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9853,1,1,133.0,1,19,37,4,9,130.2,1,0,0,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,127.0,1,19,19,5,5,160.0,0,0,0,1,1,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,Graduate +1,7,1,9500,1,3,130.0,1,37,38,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,140.0,1,19,38,7,7,136.5,1,0,0,1,0,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,Graduate +2,39,1,9773,1,19,133.1,1,37,37,9,6,110.0,0,0,0,0,0,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,Dropout +2,39,1,8014,0,1,120.0,1,34,34,99,99,101.8,0,0,0,0,0,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,135.0,1,1,1,4,7,129.8,1,0,0,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,131.0,1,37,38,5,5,128.9,0,0,0,1,0,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,Graduate +1,1,4,9070,1,1,139.0,1,3,19,1,5,138.3,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9500,1,1,122.0,1,1,1,3,7,114.3,1,0,0,1,1,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,150.0,1,37,37,9,7,136.5,1,0,0,1,0,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,3,1,2,8,121.4,0,0,0,1,1,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,117.0,1,19,19,194,193,117.4,1,0,0,1,0,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,Enrolled +2,39,1,9085,1,1,133.1,1,36,36,99,5,128.2,0,0,0,0,0,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,121.0,1,3,1,2,3,114.0,0,0,0,1,1,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,Enrolled +1,51,1,9853,1,1,139.0,1,1,1,4,10,134.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9070,1,1,137.0,1,1,1,3,1,141.2,1,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,133.1,1,37,37,6,3,140.0,0,0,1,1,1,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,1,9147,1,1,126.0,1,37,37,4,7,116.9,0,0,0,1,1,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,44,1,9130,1,39,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,1,9991,0,1,130.0,1,37,37,9,9,128.2,0,0,0,1,0,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,131.0,1,19,9,5,3,118.4,0,0,0,1,0,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,138.0,1,19,19,3,3,131.0,1,0,0,1,0,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,1,130.0,1,37,12,9,8,129.4,1,0,1,0,1,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,9991,0,1,134.0,1,37,37,9,9,113.7,0,0,0,1,0,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9853,1,1,117.0,1,38,38,9,7,114.6,1,0,0,1,0,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,145.0,1,3,3,4,4,153.1,1,0,0,1,0,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9085,1,1,130.0,1,19,38,4,9,130.0,1,0,0,0,0,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9119,1,1,146.0,1,37,37,9,9,148.5,1,0,0,1,1,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,136.0,1,1,1,4,4,124.1,0,0,0,1,0,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,100.0,1,37,38,9,4,140.0,0,0,0,1,1,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,Enrolled +1,44,1,9003,1,39,180.0,1,1,3,4,2,180.0,0,0,0,1,0,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,Graduate +1,15,1,9773,1,1,120.0,26,19,19,4,5,120.0,1,0,0,1,0,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,141.0,1,4,19,4,10,100.0,0,0,0,1,1,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,1,150.0,1,29,10,6,6,150.0,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,5,9254,1,1,122.0,1,1,37,9,7,119.6,1,0,0,1,0,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,128.0,1,19,38,9,7,124.2,1,0,0,1,1,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9130,1,1,172.0,1,19,19,9,9,163.3,1,0,0,1,0,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,129.0,1,38,37,5,5,142.0,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,100.0,1,1,3,9,10,120.0,0,0,1,0,1,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,Graduate +1,1,3,9238,1,1,135.0,1,1,12,9,10,121.0,1,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,136.0,1,2,2,3,3,120.0,1,0,0,1,1,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,6,9147,1,1,143.0,1,38,37,9,9,128.7,1,0,0,1,1,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9500,1,1,126.0,1,37,37,7,7,126.2,1,0,0,1,0,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,135.0,1,19,19,4,3,135.0,1,0,0,1,1,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,Enrolled +1,1,2,9254,1,1,132.0,1,1,19,9,9,129.9,1,0,0,1,0,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,120.0,1,34,34,0,0,104.0,0,0,0,1,0,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,9,133.1,1,37,37,8,10,100.0,1,0,0,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,43,1,9147,1,1,130.0,1,19,37,7,10,138.0,0,0,0,1,0,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,Graduate +1,17,2,9119,1,1,120.0,1,1,19,9,8,117.2,0,0,0,1,1,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,133.1,1,1,12,4,5,116.5,0,0,0,1,1,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,105.0,1,19,19,6,6,106.1,1,0,0,1,0,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,118.0,1,1,19,4,8,118.7,0,0,0,1,1,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,6,9500,1,1,140.0,1,3,19,3,8,129.0,1,0,0,1,0,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,168.0,1,19,19,4,4,171.2,0,0,0,1,1,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,133.0,1,19,9,0,0,121.5,1,0,0,1,0,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,177.0,1,1,38,3,9,162.3,0,0,0,1,0,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,130.0,1,38,38,2,9,124.8,0,0,0,1,0,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,136.0,1,38,1,5,6,133.9,1,0,0,1,0,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,154.0,1,1,1,5,3,144.9,0,0,0,1,1,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,Graduate +1,44,1,9119,1,39,150.0,1,19,37,9,9,150.0,1,0,1,1,1,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,Dropout +1,1,4,9254,1,1,132.0,1,12,19,9,9,124.7,1,0,0,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,33,1,1,100.0,41,38,37,9,8,100.0,0,0,1,0,1,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,120.0,1,4,1,2,9,113.4,0,0,0,1,0,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,134.0,1,1,19,9,9,136.1,1,0,0,1,0,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9500,1,1,150.0,1,1,19,5,3,140.0,0,1,0,1,0,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,129.0,1,37,37,9,9,128.8,1,0,0,1,0,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +2,39,1,9500,1,1,100.0,1,37,38,4,4,130.0,0,0,0,1,1,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,Enrolled +1,1,1,9773,1,1,140.0,1,19,37,9,6,135.8,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,40,150.0,1,19,19,9,5,150.0,0,0,1,0,0,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,148.0,1,1,37,4,8,132.0,1,0,0,1,0,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,Graduate +1,7,1,9119,1,40,140.0,1,3,1,2,5,140.0,0,0,0,1,1,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,163.0,1,19,1,9,7,143.1,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,3,9070,1,1,164.0,1,1,1,5,3,161.2,1,0,0,1,0,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,Graduate +1,1,6,9773,1,1,141.0,1,30,37,7,7,128.4,1,0,1,0,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,Dropout +1,43,2,9147,1,1,126.0,1,1,19,3,3,100.0,1,0,0,1,1,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,141.0,1,19,19,5,10,135.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,4,9670,1,1,117.0,1,3,3,4,4,113.2,0,0,0,1,1,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +2,43,1,9991,0,3,140.0,1,37,19,9,4,140.0,0,0,1,1,0,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,134.3,0,0,0,1,1,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,137.0,1,38,19,9,7,125.1,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,6,134.0,0,0,0,1,0,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,123.0,1,37,37,7,7,119.7,0,0,0,1,1,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9147,1,1,120.0,1,37,37,9,9,104.7,1,0,0,1,1,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,137.0,62,1,1,9,9,129.3,0,0,0,1,0,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,8014,0,1,122.0,1,37,19,9,9,123.8,0,0,0,1,0,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,Graduate +2,39,2,8014,0,1,100.0,1,34,34,0,0,100.0,1,0,0,1,0,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,Graduate +2,1,1,9991,0,2,120.0,1,37,37,6,3,129.2,0,0,0,1,0,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,150.0,1,3,19,2,6,150.0,0,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9991,0,1,123.0,1,1,3,4,2,113.2,0,0,0,0,1,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,Dropout +1,1,3,9773,1,1,130.0,1,1,37,4,5,120.9,1,0,1,1,0,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,146.0,1,19,3,4,9,127.0,0,0,0,1,1,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,160.0,1,19,38,9,9,160.0,1,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9085,1,39,150.0,1,38,37,6,6,150.0,1,0,0,1,0,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,136.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,150.0,1,37,19,9,4,135.6,0,0,0,1,0,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,6,171,1,1,134.0,1,19,37,5,5,126.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +4,39,1,9773,1,38,133.1,1,19,19,7,9,133.0,0,0,0,1,0,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,Enrolled +1,17,2,9119,1,1,120.0,1,10,12,9,9,120.4,1,0,0,1,1,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,4,9254,1,1,113.0,1,38,19,7,7,107.4,1,0,0,1,0,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,137.0,1,1,19,4,5,136.3,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,142.0,1,37,37,9,7,132.7,1,0,0,1,0,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,Graduate +1,18,5,9085,1,1,121.0,1,5,3,2,3,111.9,1,0,0,1,0,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,9,133.1,1,34,36,0,90,107.5,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,19,133.1,1,19,37,6,8,149.5,0,0,0,1,1,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9147,1,1,120.0,1,1,37,4,9,113.4,1,0,0,1,1,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,130.0,1,37,38,9,5,130.5,1,0,0,1,0,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,153.0,1,1,19,9,10,147.8,0,0,0,1,0,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,159.0,1,3,1,4,4,162.2,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,122.0,1,37,37,5,6,114.3,0,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,2,9556,1,19,133.1,1,37,37,3,7,117.8,0,0,0,1,0,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,132.0,1,38,1,9,9,124.3,1,0,0,1,0,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,141.0,1,19,19,9,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,Graduate +1,17,1,9500,1,1,152.0,1,19,19,4,9,132.5,0,0,0,1,1,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,Graduate +1,17,1,9991,0,40,127.0,1,37,37,6,6,124.9,0,0,0,1,0,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,133.1,1,1,19,4,6,106.0,1,0,0,1,0,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,19,37,4,7,150.0,1,0,0,1,0,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9254,1,1,125.0,1,1,1,191,193,114.5,0,0,0,1,1,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,134.0,1,19,19,4,7,131.0,1,0,0,1,1,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,134.0,1,19,19,9,9,125.8,1,0,0,1,0,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,Graduate +1,17,1,171,1,1,125.0,1,37,37,7,9,134.1,1,0,0,1,1,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,Dropout +1,51,1,9254,1,1,120.0,1,38,38,9,9,118.0,0,0,0,1,0,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,155.0,1,1,1,4,3,140.5,1,0,0,1,0,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,125.0,1,1,1,4,90,125.4,1,0,0,1,1,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,1,5,5,126.3,0,0,0,1,1,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,Graduate +1,39,1,9147,1,1,140.0,1,37,3,9,2,135.1,0,0,0,1,1,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,171,1,1,122.0,1,19,12,5,9,127.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,2,9670,1,1,150.0,1,34,34,0,0,107.0,1,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,3,130.0,1,19,19,3,9,130.0,0,0,0,0,1,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,Dropout +1,39,1,33,1,1,133.1,1,19,37,9,9,96.1,0,0,0,1,1,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,Dropout +2,42,1,9500,1,2,130.0,1,37,37,9,9,130.0,0,0,0,1,0,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,Graduate +1,18,1,9238,1,1,137.0,1,19,38,5,8,137.4,1,0,0,1,0,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9254,1,1,140.0,1,19,1,9,8,140.9,1,0,0,1,0,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,132.0,1,1,2,9,3,128.2,1,0,0,1,0,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9085,1,1,126.0,1,1,3,5,5,123.9,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,19,133.1,1,37,37,9,7,106.5,0,0,0,1,0,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,132.0,1,37,19,7,7,132.4,1,0,0,1,0,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,139.0,1,37,38,9,9,126.1,0,0,0,1,0,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,136.0,1,19,38,9,9,123.0,1,0,0,1,0,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,1,140.0,1,0,0,1,1,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,123.0,1,19,19,9,8,134.0,0,0,0,1,0,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,130.0,1,38,19,9,4,118.4,0,0,1,1,0,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,126.0,1,1,1,9,9,116.2,0,0,1,0,1,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,19,1,7,10,105.0,0,0,0,1,1,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,Dropout +1,17,1,9119,1,1,130.0,1,19,19,7,9,121.3,1,0,0,1,1,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,Dropout +1,43,1,9500,1,19,133.1,1,34,34,0,0,110.0,1,0,0,1,1,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,Dropout +1,1,3,9070,1,1,139.0,1,1,38,4,7,142.2,1,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,142.0,1,38,1,5,4,136.6,0,0,0,1,0,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,Graduate +1,17,2,9670,1,1,128.0,1,37,38,5,8,121.7,0,0,0,1,1,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,140.0,1,1,3,9,4,140.0,0,0,1,0,0,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,125.0,1,19,19,9,10,122.0,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,8014,0,1,130.0,1,37,37,9,8,103.5,0,0,0,1,0,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,3,9085,1,1,117.0,1,19,38,5,7,111.1,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,42,1,9085,1,39,140.0,1,19,3,9,1,159.9,1,0,0,1,0,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9254,1,1,112.0,1,37,37,6,6,106.1,1,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9070,1,1,117.0,1,5,1,2,10,120.0,1,0,0,1,0,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,Enrolled +1,7,1,9556,1,2,130.0,1,37,37,9,9,130.0,1,0,0,1,0,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,40,140.0,1,1,19,9,9,139.0,0,0,0,1,0,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,10,130.0,0,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,9070,1,1,135.0,1,3,1,3,5,121.8,0,0,0,1,0,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,135.0,1,19,3,9,4,121.5,1,0,0,1,0,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,136.0,1,19,38,4,8,125.5,1,0,0,1,0,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,37,4,8,132.4,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,142.0,1,34,38,4,7,127.3,0,0,0,1,0,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,15,1,9147,1,1,130.0,26,1,1,2,3,130.0,0,0,0,1,0,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,17,2,8014,0,1,133.0,1,19,1,5,5,119.7,1,0,0,1,0,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,6,133.1,1,1,1,90,3,107.0,1,0,0,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,130.0,1,1,1,4,5,123.8,0,0,0,1,0,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9670,1,1,130.0,1,38,37,5,5,123.4,1,0,0,1,0,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,130.0,1,37,36,4,90,127.6,0,0,0,1,1,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +2,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,Enrolled +1,1,5,9070,1,1,122.0,1,37,37,9,9,124.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,3,120.0,1,37,37,9,9,141.0,0,0,0,1,0,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,Dropout +1,43,1,33,1,1,134.0,1,37,37,1,1,100.0,1,0,0,1,1,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9773,1,1,125.0,1,19,37,9,5,122.2,0,0,0,0,0,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,113.4,0,0,0,1,0,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,142.0,1,19,39,5,4,141.7,0,0,0,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,137.0,1,1,38,5,8,125.8,0,0,0,0,0,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,141.0,1,1,37,4,3,126.8,1,0,0,1,0,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Graduate +1,17,4,9500,1,1,133.0,1,4,4,4,4,130.7,1,0,0,1,0,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,Graduate +1,1,2,9500,1,1,119.0,1,1,1,4,4,115.2,1,0,0,1,0,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,128.0,1,1,1,4,10,118.9,1,0,0,1,0,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,130.0,1,37,38,7,8,119.3,1,0,0,1,0,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,148.0,1,3,1,4,5,132.8,0,0,0,1,0,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,143.0,1,37,19,4,4,123.3,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9147,1,1,130.0,1,34,34,99,99,109.8,1,0,0,0,1,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9085,1,2,140.0,1,38,38,9,10,150.0,0,0,0,1,1,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9670,1,42,110.0,1,1,19,9,9,114.2,0,0,0,1,1,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,Graduate +1,53,1,9147,1,42,140.0,1,3,4,2,1,140.2,0,0,0,1,0,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,145.0,1,19,38,9,7,136.3,1,0,0,1,0,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,38,37,9,9,154.4,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,127.0,1,38,38,9,6,122.8,0,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,120.2,1,0,0,1,1,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,124.0,1,3,1,2,5,121.6,0,0,0,1,0,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Enrolled +1,17,5,9853,1,1,132.0,1,37,38,5,6,119.1,1,0,0,1,0,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,Graduate +1,17,6,9670,1,1,110.0,1,1,19,4,10,111.3,0,0,0,1,1,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,120.0,1,38,37,9,9,114.8,1,1,0,1,0,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,140.0,1,19,19,9,3,130.0,0,0,0,1,1,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9254,1,1,120.0,1,37,37,9,9,115.1,1,0,0,0,1,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,142.0,1,1,37,5,7,128.0,0,0,0,1,0,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,168.0,1,37,1,9,4,133.4,1,0,0,1,0,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,Graduate +1,43,4,9085,1,1,133.1,1,34,34,99,99,125.2,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9147,1,1,123.0,1,1,1,9,7,117.4,1,0,0,1,0,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,Graduate +1,1,6,9119,1,1,135.0,1,2,1,3,5,123.5,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,Enrolled +1,17,2,9254,1,1,118.0,22,19,37,9,9,110.3,1,0,0,0,0,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,126.0,1,1,19,4,4,116.9,0,0,0,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,117.0,1,1,38,3,9,109.3,0,0,1,0,0,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,133.1,1,37,37,9,8,113.0,0,0,0,1,0,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,Graduate +2,42,1,9991,0,6,123.0,1,37,37,9,9,123.0,0,0,0,1,1,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9003,1,1,100.0,1,37,37,9,5,110.0,0,0,0,1,0,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,127.0,1,37,38,9,5,131.2,1,0,0,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,110.0,1,37,37,9,7,112.5,1,0,0,1,0,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,126.0,1,19,37,7,5,119.4,0,0,0,1,0,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,121.0,1,1,1,4,3,120.5,1,0,0,1,0,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,134.0,1,1,1,3,3,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,3,9500,1,1,150.0,1,19,38,1,1,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,5,9119,1,1,124.0,11,4,12,2,9,119.5,1,0,0,1,1,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,117.0,1,19,1,4,7,112.1,0,0,0,1,0,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,Enrolled +1,1,5,9500,1,1,132.0,1,37,37,7,7,120.3,1,0,0,1,0,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,1,110.0,1,37,37,90,5,150.0,1,0,0,1,1,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9773,1,1,130.0,1,38,37,5,3,122.3,1,0,1,0,0,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9556,1,1,118.0,1,19,38,9,9,116.3,1,0,0,1,0,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,120.0,1,3,3,3,3,111.6,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,131.0,1,37,19,9,9,134.5,1,0,0,1,1,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Enrolled +1,17,2,9556,1,1,133.1,1,37,38,9,8,106.0,1,0,0,1,0,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,2,110.0,1,37,37,9,9,112.9,0,0,0,1,0,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,2,9773,1,1,126.0,1,19,38,9,8,118.7,1,0,0,1,0,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,140.0,1,1,1,3,3,127.6,1,0,0,1,0,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,163.0,1,19,1,5,10,146.6,1,0,1,1,0,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,39,151.0,1,19,37,4,7,151.0,0,0,1,1,0,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,165.0,1,19,37,5,5,142.3,0,0,0,1,0,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9773,1,19,133.1,1,19,1,7,9,115.0,1,0,1,0,1,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,Dropout +1,1,2,9556,1,1,130.0,1,1,38,3,8,119.5,1,0,0,1,0,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,Graduate +1,17,3,171,1,1,125.0,1,3,39,2,5,117.0,1,1,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9147,1,1,133.0,1,19,1,5,10,121.8,0,0,0,1,1,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9119,1,1,131.0,1,1,3,9,10,123.7,1,0,0,1,1,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,148.0,1,37,38,9,8,133.0,1,0,0,1,0,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9254,1,1,120.0,1,3,19,3,9,114.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9773,1,1,114.0,1,1,1,9,9,111.6,1,0,0,1,0,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,115.0,1,38,1,9,8,118.5,0,0,0,1,1,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,2,5,127.0,0,0,0,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,117.0,1,1,1,4,7,109.3,1,0,0,1,0,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,9,9,138.2,0,0,1,0,0,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,125.0,1,1,1,3,3,114.5,0,0,0,1,1,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,44,1,9147,1,39,130.0,1,19,1,9,3,130.0,0,0,0,1,0,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,145.0,1,38,19,4,9,127.9,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,128.0,1,37,37,9,8,124.3,1,0,0,1,0,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,Graduate +1,18,3,9070,1,1,138.0,1,38,37,9,7,125.1,1,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,5,9119,1,1,131.0,1,19,37,9,7,123.3,1,0,0,1,1,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,130.0,1,37,19,9,8,106.2,1,0,0,1,0,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,131.0,1,19,38,4,5,132.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9003,1,1,120.0,1,37,37,5,9,120.0,1,0,0,1,1,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,132.0,1,4,39,2,2,136.6,1,0,0,1,0,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,Enrolled +1,7,1,9500,1,40,170.0,1,1,1,9,4,170.0,0,0,0,1,0,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,Graduate +1,16,1,9003,1,1,147.0,1,1,37,4,9,140.7,1,0,1,1,0,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,125.0,1,1,1,4,8,115.6,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,150.0,1,37,37,9,6,138.5,0,0,0,1,0,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,2,9991,0,1,143.0,1,5,1,4,4,131.5,0,0,0,1,1,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,9556,1,1,133.1,6,3,3,4,4,169.2,0,0,1,0,0,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,2,9556,1,1,133.1,1,1,1,9,10,100.5,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,120.0,1,19,38,9,7,117.9,1,0,0,1,0,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,146.0,1,1,38,9,9,135.5,1,0,1,1,0,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,Enrolled +1,1,3,9254,1,1,122.0,1,19,38,3,10,114.3,1,0,0,1,0,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,9130,1,1,130.0,1,2,3,9,1,117.6,0,0,0,1,1,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,Enrolled +4,43,4,9991,0,12,133.1,1,37,37,9,9,153.0,0,0,0,0,0,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,2,9500,1,1,135.0,1,38,37,9,5,125.3,1,0,0,1,0,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,38,37,9,9,133.0,0,0,0,1,0,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,129.0,1,38,37,4,6,128.0,0,0,0,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,128.0,1,2,19,2,4,123.3,1,0,0,1,0,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,130.0,1,19,3,4,2,159.0,0,0,0,1,0,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,Graduate +2,7,1,8014,0,3,130.0,1,19,38,3,7,130.0,0,0,0,1,0,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,116.0,1,19,37,3,3,109.0,1,0,0,1,0,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,123.0,1,1,1,3,9,116.7,1,0,0,1,0,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,144.0,1,19,19,4,4,130.7,1,0,0,1,0,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,42,1,9500,1,1,100.0,1,19,37,5,7,134.3,1,0,0,1,0,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,143.0,1,1,19,4,4,129.9,0,0,0,1,0,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,19,133.1,1,19,37,7,9,137.2,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9853,1,1,123.0,1,19,19,9,7,117.4,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,144.0,1,19,19,5,5,130.3,1,0,0,1,0,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,137.0,1,1,19,4,7,126.7,1,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,4,9773,1,1,124.0,1,3,12,2,9,137.0,1,0,0,1,1,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,135.0,1,37,37,9,8,123.0,1,0,0,1,0,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,123.0,1,38,37,9,7,120.6,1,0,0,0,0,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,Dropout +2,2,1,9147,1,2,120.0,1,37,37,9,9,120.0,0,0,0,0,1,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,103.0,1,1,3,2,2,100.6,1,1,0,1,0,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,126.0,1,3,1,2,8,123.9,1,0,0,1,0,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,Enrolled +1,17,4,9500,1,1,136.0,1,3,3,2,2,132.5,1,0,0,1,0,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,114.0,1,3,29,3,5,111.9,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,125.0,1,19,1,9,9,130.6,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,147.0,1,37,38,9,5,134.8,1,0,0,1,0,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,131.0,1,1,19,9,9,130.3,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,118.0,1,3,1,2,5,110.0,1,0,0,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,130.0,1,19,19,4,10,116.8,0,0,0,1,0,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,Graduate +1,43,1,8014,0,6,133.1,1,34,34,0,0,100.0,0,0,1,1,0,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9670,1,12,170.0,1,1,37,3,5,110.0,0,0,0,1,1,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,Graduate +2,1,1,9991,0,3,160.0,1,1,3,4,9,137.3,0,0,0,1,0,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,108.0,1,19,1,5,5,107.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,121.0,1,3,3,2,2,112.3,1,0,1,0,0,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,Dropout +1,1,2,9773,1,1,138.0,1,19,1,9,3,133.5,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,136.0,1,38,38,9,9,121.7,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,132.0,1,38,37,9,7,122.0,1,0,0,1,0,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9003,1,1,125.0,1,3,3,2,2,100.0,0,0,0,1,1,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,137.0,1,1,1,1,5,131.8,0,0,0,1,0,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,140.0,1,37,37,9,9,148.0,1,0,0,0,1,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,127.0,1,3,1,3,7,137.2,1,0,0,1,0,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,150.0,1,37,19,9,9,150.0,0,0,0,1,1,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,Graduate +1,43,4,171,1,1,136.0,1,37,37,9,9,123.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,162.0,1,37,19,9,8,142.8,0,0,1,1,0,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,127.0,1,1,38,5,7,123.5,1,0,0,1,0,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,133.1,1,19,37,9,9,130.0,0,0,0,0,0,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,Graduate +1,17,2,9070,1,1,121.0,1,1,19,144,144,111.9,1,0,0,1,1,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,115.0,1,19,37,9,9,114.3,0,0,0,1,1,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,Dropout +1,10,1,9254,1,1,115.0,24,3,1,9,9,116.1,1,0,0,1,0,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,143.0,1,19,3,4,4,147.2,0,0,0,1,0,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,160.0,1,1,38,4,4,160.0,1,0,0,1,1,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,Graduate +2,1,1,9238,1,1,134.0,1,37,37,5,5,120.4,0,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,38,37,9,4,120.0,0,0,0,1,1,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Graduate +1,18,1,9119,1,1,108.0,1,1,1,4,3,105.6,1,0,0,1,1,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,137.0,1,37,37,9,9,141.0,0,0,0,1,1,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9254,1,1,113.0,1,1,2,5,3,106.7,1,0,1,1,1,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,16,1,9085,1,1,140.0,1,1,1,9,9,127.1,1,0,0,1,0,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,Graduate +1,53,1,9238,1,42,140.0,1,37,37,9,10,136.9,1,0,0,1,0,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,7,134.5,0,0,0,1,0,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,2,9773,1,1,125.0,1,19,1,4,5,122.2,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9070,1,1,134.0,1,1,19,3,3,127.7,1,0,0,0,0,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,96.0,1,38,37,6,4,96.0,1,0,0,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,Dropout +1,10,1,9085,1,1,134.0,1,37,37,5,5,134.0,1,0,0,1,0,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,143.0,1,1,3,3,3,149.0,1,0,0,1,0,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,Dropout +1,18,3,9070,1,1,142.0,1,1,37,4,7,130.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,7,1,9003,1,3,140.0,1,3,19,2,10,140.0,0,0,0,0,1,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,151.0,1,38,37,9,5,138.4,1,0,0,1,0,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,143.0,1,19,19,4,4,135.3,1,0,0,1,0,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,133.0,1,1,19,9,9,132.0,0,0,0,1,1,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,19,133.1,1,37,37,9,5,135.5,0,0,0,1,0,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9254,1,1,134.0,1,37,37,9,9,133.3,1,0,1,1,0,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,3,9085,1,1,135.0,1,3,2,4,3,121.0,1,0,0,1,0,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,140.0,1,1,1,4,4,123.5,1,0,0,1,0,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,188.0,1,3,3,2,2,178.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9238,1,1,126.0,1,30,19,0,2,121.5,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,131.0,1,3,19,5,5,127.2,1,0,0,1,0,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,Graduate +1,17,4,9853,1,1,143.0,1,37,37,9,5,127.3,1,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,111.0,1,19,38,9,9,110.7,1,0,0,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,140.0,1,19,38,9,7,125.7,1,0,0,1,1,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,6,9500,1,1,126.0,1,19,37,3,9,119.4,1,0,0,1,0,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,131.0,1,1,1,4,9,122.3,0,0,0,1,1,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,128.0,1,1,19,9,8,100.0,1,0,0,1,0,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,138.0,1,19,19,5,1,130.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,1,140.0,1,3,3,1,1,140.0,1,0,0,1,0,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,3,130.0,1,1,19,5,9,130.0,0,0,0,1,1,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,131.0,1,38,1,5,7,131.0,1,0,0,1,1,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,19,133.1,1,19,19,9,7,140.0,0,0,1,0,0,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,133.1,1,37,37,9,9,126.5,0,0,0,1,0,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9500,1,1,132.0,1,37,37,9,7,128.3,1,0,0,1,0,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,Graduate +1,16,1,171,1,1,145.0,1,3,3,3,3,155.0,1,0,0,1,0,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,Enrolled +4,1,1,9991,0,1,140.0,1,37,37,9,7,139.0,0,0,0,1,0,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9070,1,1,152.0,1,39,39,3,3,134.2,1,0,0,1,1,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,141.0,1,19,19,7,9,139.8,0,0,0,1,0,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,Graduate +1,1,4,9670,1,1,133.0,1,1,2,4,7,121.1,1,0,0,1,0,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,Graduate +1,15,1,9147,1,1,135.0,26,1,1,9,7,135.0,0,0,1,1,1,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,Enrolled +2,1,1,9991,0,1,144.0,1,19,19,9,9,151.4,0,0,0,1,0,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,18,4,9853,1,1,118.0,1,19,37,9,6,111.4,1,0,1,0,0,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9500,1,1,134.0,1,38,1,9,6,133.5,1,0,0,1,1,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,37,37,9,6,107.0,0,0,0,1,1,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,141.0,1,38,38,9,9,128.4,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,133.0,1,1,1,9,9,128.5,1,0,0,1,0,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,40,120.0,1,3,3,4,2,125.0,0,0,0,1,0,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,150.0,1,37,38,3,7,134.5,0,0,0,1,0,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,127.0,1,3,19,4,4,116.9,0,0,0,1,1,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,136.0,1,2,38,143,163,129.7,1,0,0,1,1,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,159.0,1,1,1,3,3,151.0,1,0,0,1,0,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,165.0,1,37,38,9,8,152.4,1,0,0,1,0,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,6,9500,1,1,139.0,1,1,1,4,4,124.5,1,0,0,1,0,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,134.0,1,1,1,5,3,128.4,1,0,0,1,0,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,133.0,1,2,1,3,4,136.2,1,0,0,1,0,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,120.0,1,19,1,8,7,115.1,1,0,0,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,131.0,1,1,39,5,3,122.6,1,0,0,1,0,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,8014,0,1,130.0,1,1,1,9,9,118.1,0,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,Graduate +1,39,9,9991,0,1,120.0,1,38,38,9,5,144.8,0,0,0,1,1,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9500,1,19,133.1,1,37,37,9,9,129.0,1,0,0,1,0,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,138.0,1,1,19,4,7,123.0,1,0,1,0,0,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,143.0,1,1,37,9,9,135.0,1,0,0,1,0,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,120.0,1,19,1,9,3,120.0,1,0,0,1,1,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,162.0,1,37,1,9,9,165.2,1,0,0,1,0,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,142.0,1,37,37,5,5,131.3,1,0,0,1,0,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,Graduate +1,1,3,171,1,1,125.0,1,38,37,4,9,115.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,120.0,1,38,37,5,3,110.5,0,0,0,1,0,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,Graduate +1,42,1,9773,1,6,120.0,1,34,34,0,0,122.0,1,0,0,1,0,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,162.0,1,1,38,4,5,138.6,1,0,0,1,0,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,152.0,1,1,1,4,4,141.0,1,0,0,1,0,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,139.0,1,3,19,3,5,120.8,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,135.0,1,1,1,3,5,130.1,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9670,1,1,127.0,1,3,3,1,1,121.4,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,135.0,1,1,1,1,1,131.5,0,0,0,1,1,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,Enrolled +1,17,3,9670,1,1,147.0,1,37,37,8,8,128.8,0,0,1,1,0,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,133.1,41,38,38,9,8,134.8,0,0,0,1,0,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,90,8,128.2,0,0,0,1,0,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,131.0,1,1,37,4,4,126.1,1,0,0,1,0,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,9,9,125.3,1,0,0,1,1,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,Dropout +2,39,1,8014,0,3,110.0,1,37,37,9,9,160.5,0,0,0,1,0,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,138.0,1,38,1,9,4,127.5,1,0,0,1,0,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,Enrolled +1,39,1,9238,1,1,170.0,1,38,19,9,9,140.0,1,0,0,1,0,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,1,19,4,10,142.3,1,0,0,1,0,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,154.0,1,38,37,9,9,140.4,0,0,0,1,0,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,133.1,41,19,1,9,9,105.0,1,0,0,0,0,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +2,44,1,9085,1,39,160.0,1,37,37,192,192,160.0,0,0,0,1,0,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,141.0,1,38,38,9,9,142.3,1,0,0,1,0,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,119.0,1,37,37,7,7,112.0,1,0,0,0,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,137.0,1,37,37,9,9,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,Graduate +4,39,1,9670,1,1,100.0,1,37,37,4,10,120.0,0,0,1,1,0,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,130.0,1,3,3,2,2,131.1,0,0,0,1,1,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,120.0,1,1,19,9,3,116.9,1,0,1,0,1,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,42,1,9500,1,1,100.0,1,1,19,4,8,136.0,1,0,0,1,0,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,Graduate +1,1,2,171,1,1,125.0,1,38,19,9,9,117.3,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,152.0,1,1,38,4,9,160.4,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,12,133.1,1,37,37,9,7,139.4,0,0,1,1,0,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,150.0,1,1,1,4,8,131.5,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,7,1,9556,1,4,190.0,1,5,5,2,2,190.0,1,0,0,1,1,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,Dropout +1,17,3,9238,1,1,121.0,1,1,1,4,5,117.2,0,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,130.0,1,37,37,9,7,113.0,1,0,0,0,1,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,123.0,1,19,19,4,10,124.4,1,0,0,1,0,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,Graduate +1,17,2,9238,1,1,133.0,1,37,37,3,9,119.7,0,1,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,138.0,1,38,19,9,10,133.1,0,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,108.0,1,38,38,7,7,105.2,1,0,0,1,1,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,Dropout +1,1,3,171,1,1,115.0,1,9,1,6,6,108.7,1,0,0,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,4,4,119.8,1,0,0,1,0,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9119,1,1,126.0,1,19,19,7,3,116.6,1,0,0,1,1,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,Graduate +2,39,1,9500,1,1,133.1,1,37,37,9,9,130.1,0,0,0,0,1,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,124.0,1,37,38,9,3,114.2,0,0,0,1,0,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,3,9147,1,1,137.0,1,1,1,4,7,124.4,1,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9130,1,19,133.1,1,37,37,9,10,156.4,1,0,1,1,1,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,5,9853,1,1,121.0,1,38,19,7,7,117.5,1,0,1,0,0,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,2,9238,1,1,117.0,1,19,1,9,8,110.0,1,0,1,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9147,1,1,148.0,1,1,19,9,6,118.4,1,0,0,1,1,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,133.0,1,1,1,4,4,100.0,0,0,0,1,0,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,17,1,9238,1,1,158.0,1,1,1,5,6,140.5,0,0,0,1,0,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,157.0,1,19,38,9,7,146.2,1,0,0,1,0,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,131.0,1,3,1,4,1,135.9,0,0,0,1,1,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,38,37,5,10,117.8,1,0,0,1,1,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,Graduate +1,1,2,9119,1,1,126.0,1,1,38,141,192,122.5,1,0,0,1,1,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,117.0,1,37,37,0,4,120.5,1,0,0,1,1,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9254,1,1,110.0,1,12,19,9,9,125.0,0,0,0,0,1,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,Dropout +1,18,1,9147,1,1,121.0,1,19,3,5,5,115.8,1,0,0,1,0,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,139.0,0,0,1,0,1,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9003,1,3,130.0,1,3,3,6,2,130.0,1,0,0,1,1,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,132.0,1,19,37,3,5,125.4,1,0,0,0,0,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,38,38,4,7,115.6,1,0,0,0,0,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,129.0,1,1,2,3,1,125.9,1,0,0,1,0,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,9,9,143.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,126.0,1,3,19,3,3,115.2,0,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,123.0,1,19,38,9,10,116.7,1,0,0,1,0,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,Graduate +1,17,2,9254,1,1,125.0,1,37,37,9,8,122.6,1,0,1,0,0,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9119,1,1,160.0,1,38,37,7,7,129.0,0,0,0,1,1,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,3,19,2,3,133.8,1,0,0,1,0,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,120.0,1,19,19,4,7,115.5,1,0,1,1,1,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,120.0,1,38,38,3,3,140.0,0,0,0,1,0,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9238,1,1,127.0,1,1,19,4,3,141.7,1,0,0,1,1,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,111.0,1,37,37,9,10,95.8,1,0,0,0,1,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,130.0,1,38,1,9,4,140.0,1,0,0,1,0,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,Graduate +1,1,2,9147,1,1,131.0,1,1,1,9,9,118.8,0,0,0,1,1,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,161.0,1,1,19,4,4,152.3,0,0,0,1,0,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,124.0,1,38,38,9,9,115.6,0,0,0,1,1,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,160.0,1,3,3,1,2,149.2,0,0,0,1,1,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,16,3,9853,1,1,134.0,1,19,37,9,9,121.1,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,Enrolled +1,43,2,9991,0,1,140.0,1,37,37,5,5,124.3,1,0,0,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,127.0,1,38,37,5,7,123.9,1,0,0,1,0,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,120.0,1,19,37,6,8,160.0,0,0,0,1,1,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,1,133.1,1,3,3,4,2,144.9,1,0,0,1,0,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,130.0,1,1,19,3,10,130.0,1,0,0,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,Graduate +1,42,1,9003,1,1,130.0,1,3,2,2,6,105.3,0,0,0,0,1,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9991,0,1,130.0,1,37,37,9,9,127.6,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,100.0,1,1,38,4,6,104.8,0,0,1,0,0,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,Dropout +1,1,5,9070,1,1,125.0,1,3,3,2,2,140.8,1,0,0,1,1,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,133.1,1,34,38,0,4,147.0,0,0,0,1,0,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,126.0,1,34,34,0,0,142.4,0,0,0,1,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,121.0,1,19,38,4,10,114.4,0,0,0,1,0,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,133.1,1,37,37,5,0,111.5,0,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,130.0,1,1,19,5,5,129.1,1,0,0,1,0,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,3,1,4,6,130.0,0,0,0,1,1,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,1,123.0,1,19,1,1,1,140.8,0,0,0,1,0,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,130.0,1,1,1,4,10,130.0,1,0,0,1,0,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,Graduate +4,39,1,9085,1,1,133.1,1,34,34,0,0,128.2,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,128.0,1,37,37,9,9,135.7,1,0,0,1,1,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,135.0,1,38,38,4,7,121.7,1,0,0,1,0,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9085,1,1,110.0,25,38,38,9,6,117.2,1,0,0,1,1,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,Graduate +1,43,3,9500,1,1,140.0,1,1,19,9,7,127.5,1,0,1,1,0,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,Graduate +1,17,3,9238,1,1,133.1,1,41,1,2,3,117.0,1,0,0,1,0,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,1,112.0,1,37,37,9,9,108.5,0,0,0,1,1,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,51,1,9238,1,39,140.0,1,38,38,5,7,129.1,1,0,0,1,0,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,122.0,1,38,19,9,9,126.6,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,123.0,1,1,1,4,4,114.4,0,0,0,1,1,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,Dropout +1,18,4,171,1,1,133.0,1,1,4,9,5,129.2,1,0,1,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,128.0,1,19,19,9,5,121.7,1,0,0,1,0,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,Graduate +1,39,1,9130,1,1,150.0,1,19,19,9,5,160.0,1,0,0,1,1,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,160.0,1,19,37,5,3,152.0,0,0,0,1,0,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,53,1,9085,1,42,140.0,1,19,37,9,8,142.5,1,0,0,1,0,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,130.0,1,9,19,4,1,134.2,1,0,0,1,0,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,3,9254,1,1,121.0,1,19,19,9,6,125.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,128.0,1,19,1,9,10,157.4,1,0,0,1,0,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,146.0,1,37,37,9,7,149.2,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9853,1,12,133.1,1,37,37,7,8,103.0,0,0,0,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,143.0,1,19,19,5,6,142.3,0,0,0,1,0,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,Enrolled +1,1,2,9085,1,1,118.0,1,1,19,3,3,112.4,1,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,Enrolled +2,43,1,9991,0,1,100.0,1,37,37,9,9,128.2,0,0,0,1,1,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,118.0,1,38,38,5,5,110.0,0,0,0,1,0,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9147,1,1,136.0,1,38,38,9,9,127.3,1,0,0,1,1,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,170.0,1,19,19,8,8,176.7,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,124.0,41,19,38,9,9,123.3,1,0,0,1,0,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9070,1,1,170.0,1,3,3,2,2,165.8,1,0,0,1,1,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,3,37,9,9,142.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9147,1,1,122.0,1,1,38,4,5,116.4,0,0,0,1,1,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,150.0,1,1,1,4,4,138.1,1,0,0,1,0,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,Enrolled +1,17,6,9238,1,1,138.0,1,3,3,1,2,123.0,1,0,0,1,0,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,135.0,1,19,12,9,7,137.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9070,1,1,125.0,1,1,3,3,3,128.9,0,0,0,1,0,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,128.0,1,38,19,9,10,125.2,1,0,0,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Enrolled +1,42,1,9003,1,1,140.0,1,1,3,4,2,140.0,1,0,0,1,1,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,Enrolled +1,39,1,9500,1,19,133.1,1,37,38,151,161,143.7,0,0,0,1,0,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,118.0,1,38,38,7,7,115.2,1,0,0,1,0,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,152.0,1,19,37,9,8,135.6,1,0,0,1,1,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,12,110.0,1,34,34,0,0,157.8,0,0,0,1,0,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,Graduate +1,1,6,9147,1,1,112.0,1,38,38,9,9,117.3,1,0,0,1,0,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,Graduate +1,17,3,9147,1,1,118.0,1,1,19,5,7,118.0,0,0,0,1,0,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,Enrolled +1,44,1,9070,1,39,120.0,1,1,19,5,8,119.8,0,0,0,1,1,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9670,1,1,133.1,1,19,19,3,9,118.0,0,0,0,1,1,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,159.0,1,1,19,9,9,151.3,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,118.0,1,1,38,5,7,120.8,1,0,0,1,0,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,132.0,1,1,37,8,9,128.0,1,0,0,1,0,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,Graduate +1,42,1,9147,1,1,135.0,1,19,1,4,4,120.0,0,0,0,0,1,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9670,1,1,122.0,1,1,38,3,3,114.3,1,0,0,1,0,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,171,1,1,131.0,1,1,1,0,3,149.9,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +4,39,2,9556,1,1,133.1,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,5,9119,1,1,126.0,1,12,19,4,5,122.5,1,0,0,1,1,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,145.0,1,2,38,3,8,136.3,1,0,0,1,0,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,Enrolled +1,15,1,9147,1,1,150.0,1,38,1,9,1,150.0,0,0,0,1,1,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,150.0,1,3,39,3,7,126.4,0,0,0,1,1,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,Enrolled +1,17,2,9773,1,1,148.0,1,3,38,2,6,144.2,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,124.0,1,37,19,9,3,116.3,1,0,0,1,0,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +2,39,1,9003,1,1,130.0,1,1,37,9,1,122.0,0,0,1,0,1,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,160.0,1,19,38,5,7,139.0,1,0,0,1,0,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,157.0,1,3,2,3,6,150.9,1,0,0,1,0,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,Dropout +1,42,1,9119,1,1,120.0,1,1,1,5,7,108.6,0,0,0,0,1,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9773,1,1,138.0,1,37,38,4,9,134.2,1,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,110.0,1,0,0,1,0,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,Dropout +4,39,1,9853,1,1,143.0,1,37,1,9,10,140.0,0,0,1,0,0,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,130.0,1,3,19,4,8,133.0,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,19,38,6,7,140.0,1,0,0,1,1,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,132.0,1,2,2,6,6,128.5,0,0,0,1,0,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,Dropout +1,1,2,171,1,1,135.0,1,19,19,4,7,149.0,1,0,0,1,1,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,130.0,1,19,38,3,9,126.5,1,0,0,1,0,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,125.0,1,19,38,9,8,121.5,0,0,0,1,0,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,7,129.0,0,0,0,1,0,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,Dropout +1,7,3,9130,1,3,130.0,1,37,26,90,10,130.0,0,0,0,0,1,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,123.0,1,19,19,7,7,120.8,1,0,0,1,0,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,Graduate +1,18,2,9853,1,1,168.0,1,1,19,3,9,126.8,1,0,0,1,1,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9085,1,39,140.0,1,3,1,4,3,140.0,1,0,0,1,0,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,148.0,1,19,19,9,9,138.7,0,0,0,1,0,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,Graduate +1,18,1,171,1,1,110.0,1,19,2,5,5,117.7,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9070,1,1,136.0,1,37,38,9,9,125.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +2,39,1,8014,0,1,133.1,1,37,37,5,4,134.5,0,0,0,1,0,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,Enrolled +1,42,1,9119,1,1,150.0,1,38,37,5,8,133.5,1,0,0,1,1,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,140.0,1,1,3,4,6,139.2,0,0,1,1,0,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,125.0,1,19,19,5,5,117.0,0,0,0,1,0,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,Graduate +1,39,1,9147,1,12,133.1,1,19,37,7,9,118.2,0,0,0,1,0,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,2,9147,1,1,121.0,1,1,19,9,9,113.7,1,0,0,0,0,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,131.0,1,3,19,2,3,132.8,1,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,136.0,1,37,38,4,5,126.0,1,0,0,1,0,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,Graduate +1,1,1,9853,1,1,145.0,1,37,37,9,5,146.8,0,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,123.0,1,1,1,4,9,116.7,1,0,0,1,1,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,Dropout +1,18,1,171,1,1,121.0,1,1,1,4,3,116.8,1,0,0,1,0,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,141.0,1,38,1,9,4,129.0,1,0,0,1,0,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,133.1,1,34,34,0,0,130.0,0,0,0,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,126.0,1,1,3,4,3,122.5,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,Dropout +2,1,1,9254,1,1,136.0,1,37,37,9,9,122.7,0,0,0,1,0,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,37,37,9,10,100.0,0,0,0,1,1,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9500,1,1,133.1,1,38,19,7,9,115.5,1,0,0,1,1,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9991,0,1,131.0,1,19,37,9,9,118.4,1,0,0,1,0,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,153.0,1,1,38,4,3,146.7,0,0,0,1,0,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,Graduate +1,43,1,8014,0,12,114.0,1,34,34,0,99,110.0,0,0,0,1,0,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,147.0,1,1,1,5,5,134.9,0,1,0,1,0,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,Graduate +1,1,2,9085,1,1,156.0,1,40,40,3,7,150.9,1,0,0,1,0,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,137.0,1,38,38,5,7,122.7,1,0,0,1,0,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,123.0,1,1,19,4,5,117.8,0,0,0,1,1,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9238,1,1,135.0,1,37,37,8,6,127.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,131.0,1,37,37,9,9,123.0,1,0,0,1,0,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9670,1,1,123.0,1,3,1,3,1,116.7,0,0,0,1,0,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,9085,1,40,140.0,1,1,19,5,5,140.0,1,0,0,1,0,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,Graduate +4,39,1,9500,1,19,133.1,1,38,19,5,7,140.0,0,0,0,1,0,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,127.0,1,3,19,3,9,127.0,1,0,0,1,1,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,Graduate +1,17,2,8014,0,1,120.0,1,19,1,5,10,114.8,1,0,0,1,0,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9670,1,19,133.1,1,37,37,9,7,130.0,0,0,1,1,1,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,171,1,1,131.0,41,19,1,4,7,131.4,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,16,2,171,1,1,145.0,1,3,3,2,2,143.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,120.0,1,19,38,6,6,120.0,1,0,0,1,1,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,6,9238,1,1,131.0,1,1,3,4,2,131.7,1,0,0,1,0,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,137.0,1,3,1,4,9,128.6,0,0,0,1,0,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,170.0,1,19,19,9,7,170.0,1,0,1,1,1,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9853,1,1,122.0,1,38,37,9,9,118.9,1,0,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,5,9500,1,1,148.0,1,1,19,4,8,130.2,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9003,1,19,133.1,1,1,19,9,8,120.0,0,0,1,0,1,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,2,9147,1,1,143.0,1,19,38,9,7,132.2,1,0,0,1,0,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9556,1,1,132.0,1,38,37,7,7,119.0,1,0,0,1,0,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,133.1,1,3,1,4,4,95.0,0,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,154.0,1,3,1,2,1,137.2,0,0,0,1,1,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,Enrolled +1,1,1,9853,1,1,129.0,1,38,37,6,6,138.1,0,0,0,1,0,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,17,2,9670,1,1,129.0,1,1,19,5,5,119.2,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,43,1,9500,1,1,137.0,1,3,3,2,2,115.0,0,0,0,1,0,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,Graduate +1,17,2,9254,1,1,115.0,1,19,19,9,7,113.3,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,133.0,1,38,38,7,7,125.3,1,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,10,150.0,0,0,0,0,0,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,19,133.1,1,19,19,144,141,131.5,0,0,1,1,0,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,133.0,1,38,1,2,4,126.0,0,0,0,1,0,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,15,1,9147,1,1,133.1,41,41,1,3,4,100.0,0,0,1,0,1,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,Dropout +1,10,2,9773,1,1,154.4,22,19,38,3,5,154.4,1,0,0,0,0,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9070,1,39,100.0,1,1,1,4,4,106.0,0,0,0,1,1,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,135.0,1,38,19,8,8,126.3,1,0,1,1,0,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,120.0,41,1,1,9,6,114.8,1,0,0,1,0,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,Enrolled +1,17,1,9085,1,1,124.0,1,19,38,7,7,113.9,1,0,0,1,0,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,Graduate +1,1,6,9254,1,1,126.0,1,38,37,5,7,123.9,1,0,0,1,0,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,125.0,1,37,37,9,9,121.5,1,0,0,1,1,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,6,9773,1,1,125.0,1,1,1,5,4,122.2,0,0,0,1,1,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,135.0,1,19,19,4,5,126.8,1,0,0,1,1,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9238,1,1,133.0,1,1,37,7,9,127.4,1,0,0,1,0,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,3,9070,1,1,127.0,1,19,38,5,7,141.0,1,0,0,1,1,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,3,120.0,1,37,37,4,7,122.5,0,0,0,0,0,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,2,9147,1,1,150.0,1,19,37,9,7,101.0,0,0,1,0,0,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,4,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,Graduate +1,17,5,9500,1,1,143.0,1,38,1,9,7,130.6,1,0,0,1,0,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,129.0,1,38,19,5,7,124.0,1,0,0,1,0,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,Graduate +1,17,2,9500,1,1,140.0,1,1,1,5,10,128.5,1,0,0,1,0,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,Enrolled +4,39,1,8014,0,19,100.0,1,1,37,9,1,111.5,0,0,0,1,1,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,Dropout +2,39,2,9556,1,1,110.0,1,19,38,9,9,112.8,0,0,0,1,0,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,116.0,1,19,19,5,8,127.9,0,0,1,0,0,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,Dropout +1,43,4,171,1,1,117.0,1,19,12,9,10,109.3,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,130.0,1,1,38,5,5,122.3,1,0,0,1,0,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,Graduate +1,15,1,9119,1,1,130.0,26,38,3,9,2,137.0,1,0,0,1,1,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,Enrolled +1,39,1,9556,1,1,133.1,1,38,19,9,6,100.0,1,0,0,1,0,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,150.0,1,3,1,3,9,154.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9147,1,1,131.0,1,3,19,2,9,126.1,0,0,0,1,0,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,1,6,9773,1,1,145.0,1,1,19,4,4,131.0,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,136.0,1,19,38,4,7,140.9,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,155.0,1,19,37,4,5,117.5,0,0,0,1,0,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9147,1,1,128.0,1,3,3,5,10,116.5,0,0,0,1,1,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,4,9254,1,1,133.0,1,37,37,5,8,128.5,1,0,0,1,0,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9119,1,1,141.0,1,37,1,9,2,133.0,1,0,0,1,1,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,Enrolled +1,51,1,8014,0,1,120.0,1,1,1,4,4,128.5,0,0,1,0,1,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,Dropout +1,43,1,9003,1,1,120.0,1,3,3,1,2,115.0,0,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,136.0,1,19,19,4,7,136.0,0,0,0,1,0,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,Graduate +1,17,1,9070,1,1,116.0,1,38,38,9,9,123.7,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,125.0,1,19,19,4,8,117.0,1,0,0,1,0,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,135.0,1,1,38,5,7,137.5,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,140.0,1,19,19,7,7,124.6,1,0,0,1,0,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,Enrolled +1,39,1,9670,1,19,133.1,1,1,1,4,7,100.0,0,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,122.0,1,37,37,9,9,131.0,1,0,0,1,0,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,Dropout +2,43,1,9773,1,1,160.0,1,37,37,5,0,160.0,0,0,1,0,1,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9670,1,1,113.0,1,37,19,9,9,110.2,1,0,0,1,0,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,125.0,1,37,37,9,9,126.0,1,0,1,1,0,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,Graduate +1,43,1,171,1,39,140.0,1,38,37,9,7,140.0,0,0,0,0,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9853,1,1,134.0,1,37,19,9,5,121.4,1,0,0,1,0,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,8014,0,1,120.0,1,1,37,7,3,122.8,0,0,0,1,0,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,1,1,4,2,127.7,0,0,0,1,0,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,Enrolled +2,39,1,9991,0,1,120.0,1,19,37,3,9,132.9,0,0,0,1,1,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,138.0,1,1,38,4,9,132.5,1,0,0,1,0,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,133.1,1,19,37,7,7,126.0,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9500,1,1,110.0,1,38,38,9,9,110.0,0,0,0,0,0,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,Dropout +5,7,1,9500,1,40,150.0,1,37,37,4,9,150.0,0,0,0,1,0,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,Graduate +1,17,1,9070,1,1,126.0,1,19,38,9,7,118.7,0,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,16,4,9254,1,1,126.0,1,38,37,9,7,118.7,1,0,0,1,0,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9773,1,1,110.0,1,19,19,5,5,105.5,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,9,133.1,1,34,34,0,0,118.0,0,0,0,1,0,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,140.0,1,3,2,4,6,133.4,1,0,0,0,1,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,Enrolled +1,1,1,171,1,1,134.0,1,3,2,2,2,141.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9773,1,1,133.1,1,1,1,90,90,129.6,0,0,0,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,133.1,1,38,19,5,6,138.0,0,0,1,1,1,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,Enrolled +1,17,3,9500,1,1,156.0,1,19,37,4,9,132.3,1,0,0,1,1,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,Graduate +1,44,1,9085,1,39,140.0,1,3,3,4,2,140.0,1,0,0,1,0,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,Graduate +1,43,1,171,1,1,116.0,1,3,1,2,3,117.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,141.0,1,38,19,9,6,126.3,1,0,0,1,0,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,44,1,9238,1,39,140.0,1,1,19,191,102,143.0,0,0,0,1,0,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,Graduate +1,43,5,8014,0,1,110.0,1,34,34,0,0,110.0,0,0,0,1,1,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9238,1,1,143.0,1,1,11,4,3,128.0,1,0,0,1,0,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +3,17,1,9238,1,1,138.0,1,37,37,9,9,133.5,1,0,0,1,0,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,Enrolled +1,7,1,9119,1,3,150.0,1,3,2,2,2,150.0,0,0,0,1,0,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,150.0,1,19,1,1,1,150.0,0,0,0,1,1,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,Enrolled +1,17,1,9085,1,1,134.0,1,19,37,2,7,131.2,0,0,0,1,0,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,171,1,1,133.1,1,37,37,9,7,100.0,0,0,1,1,1,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,1,9556,1,1,133.1,1,3,19,2,8,106.0,1,0,0,1,1,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,Graduate +1,17,2,9500,1,1,135.0,1,19,19,9,4,129.8,1,0,0,1,0,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,Graduate +1,39,1,33,1,1,130.0,1,38,37,9,6,102.5,0,0,1,0,1,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,Dropout +1,18,1,9500,1,1,144.0,1,37,37,6,6,127.5,1,0,0,1,0,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,130.0,1,37,38,9,9,133.9,1,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,44,1,9003,1,39,140.0,1,37,37,4,7,140.0,0,0,0,1,1,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,Dropout +1,1,4,9773,1,1,137.0,1,3,19,2,3,139.8,1,1,0,1,0,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,1,9991,0,1,130.0,1,2,37,3,9,131.4,0,0,0,1,1,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,135.0,1,3,3,1,1,125.8,1,0,0,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Graduate +1,18,1,9238,1,1,147.0,1,38,34,4,0,130.2,0,0,0,1,0,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +5,17,5,9500,1,1,143.0,1,37,38,5,8,133.5,1,0,0,1,0,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,99.0,1,1,3,5,10,100.0,1,0,0,1,1,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,Graduate +1,16,2,9147,1,1,131.0,1,37,37,9,9,135.9,1,0,0,1,1,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,146.0,1,38,37,6,6,143.9,0,0,0,1,0,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9085,1,1,139.0,1,38,38,5,3,136.2,0,0,0,1,0,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,153.0,1,3,1,2,8,137.6,1,0,0,1,0,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,2,9085,1,1,133.1,1,19,38,9,1,100.0,1,0,1,0,1,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,2,9773,1,1,121.0,1,19,19,9,9,122.8,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,141.0,1,37,38,9,10,138.9,0,0,0,1,0,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,6,9500,1,1,117.0,1,4,12,5,9,119.8,1,0,0,1,0,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,Graduate +1,17,4,9119,1,1,122.0,62,1,1,191,171,121.0,1,0,0,1,1,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,38,19,3,3,98.6,0,0,0,1,0,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,140.0,1,38,37,5,6,124.3,1,0,0,1,0,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,140.0,1,37,37,9,9,127.7,1,0,0,1,0,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,121.0,1,37,37,9,9,124.2,1,0,0,1,0,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,Graduate +1,18,1,9130,1,1,146.0,1,3,3,5,2,137.8,0,0,0,1,1,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,3,120.0,1,1,1,7,10,120.0,1,0,0,0,1,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,120.0,1,37,37,7,8,120.0,1,0,1,0,0,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,178.0,1,19,1,4,8,174.7,0,0,0,1,0,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,Graduate +1,17,5,9254,1,1,114.0,1,38,1,5,9,109.5,0,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,143.0,1,38,38,9,9,140.0,0,0,0,1,1,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,160.0,1,38,37,9,5,159.3,0,0,0,1,0,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,143.0,1,38,34,9,9,133.6,1,0,0,1,0,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,Graduate +4,43,1,9500,1,19,100.0,1,34,34,0,0,110.0,0,0,0,1,1,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,125.0,1,1,19,4,1,121.5,1,0,0,1,1,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,19,7,3,120.0,1,0,0,1,1,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,3,120.0,1,19,1,9,5,134.0,0,0,0,1,0,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,Dropout +1,39,1,9254,1,1,160.0,1,19,37,7,10,100.0,0,0,0,1,1,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,Enrolled +1,15,1,171,1,1,130.0,26,1,1,2,9,130.0,0,0,0,1,1,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,140.0,1,19,37,5,6,137.9,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,123.0,1,19,37,9,9,124.1,1,0,0,1,0,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,140.0,1,38,38,6,6,140.0,0,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,9,133.1,1,34,34,0,0,118.4,0,0,0,0,0,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,6,9254,1,1,125.0,1,1,1,4,3,120.5,1,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,6,171,1,1,126.0,1,10,10,4,4,130.2,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,120.0,1,1,19,4,7,120.0,0,0,0,1,1,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,Enrolled +1,17,5,9773,1,1,143.0,1,1,1,7,7,136.7,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,42,1,9147,1,1,130.0,1,37,38,9,1,130.0,1,0,0,1,0,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,1,130.0,1,37,37,9,9,124.0,0,0,0,1,1,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,Graduate +1,17,2,9238,1,1,136.0,1,1,3,3,4,126.6,1,0,0,1,0,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,127.0,1,19,1,5,7,118.3,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,Enrolled +4,39,1,9991,0,1,147.0,1,19,19,7,8,147.9,0,0,0,1,0,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,124.0,1,19,37,99,90,124.0,0,0,0,0,0,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +2,43,1,9003,1,1,133.1,1,37,37,9,7,136.0,0,0,0,1,1,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,1,9085,1,1,140.0,1,12,1,1,90,141.8,0,0,0,1,0,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,133.1,1,37,37,191,154,95.0,0,0,0,1,0,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,147.0,1,2,3,4,8,145.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9238,1,3,130.0,1,37,19,4,5,130.0,0,0,0,1,0,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,Graduate +1,7,2,9085,1,3,130.0,1,3,3,1,1,130.0,0,0,0,0,0,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,Dropout +2,39,2,9147,1,3,130.0,1,3,37,9,9,103.4,0,0,0,1,0,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,Dropout +1,17,1,9085,1,1,135.0,1,1,19,4,10,125.6,1,0,0,1,0,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,1,1,5,5,96.0,1,0,0,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +5,39,1,9853,1,19,133.1,1,38,1,5,3,105.5,0,0,1,1,0,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,136.0,1,37,37,7,7,121.7,1,0,0,1,0,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9119,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,1,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,19,133.1,1,19,19,4,4,100.0,0,0,0,1,1,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,124.0,1,2,2,3,2,118.4,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9085,1,1,120.0,1,2,3,2,2,116.1,0,0,0,1,0,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,162.0,1,37,37,9,9,142.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,131.0,1,37,1,9,9,135.9,1,0,0,1,0,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,7,100.0,0,0,0,1,1,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,Graduate +1,43,1,9500,1,1,127.0,1,19,19,4,7,121.1,0,0,0,1,0,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,143.0,1,37,37,9,5,131.6,1,0,0,1,0,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,Graduate +1,17,4,9085,1,1,140.0,1,19,37,4,7,123.7,0,0,0,1,0,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,156.0,1,19,1,5,10,136.8,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Dropout +2,39,1,9853,1,10,133.1,1,37,34,0,0,115.5,0,0,0,1,0,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,Dropout +1,1,3,9119,1,1,113.0,1,4,38,2,7,107.4,1,0,0,1,1,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,Graduate +2,39,1,9670,1,1,130.0,1,37,37,9,0,158.0,0,0,1,0,0,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,Dropout +1,43,1,9853,1,1,110.0,1,37,37,9,9,107.7,0,0,1,0,0,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,124.0,1,2,2,3,3,124.7,1,0,0,1,1,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,127.0,1,37,37,5,10,125.3,0,0,0,1,1,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Graduate +1,16,1,9500,1,1,133.1,1,37,37,9,9,95.0,1,0,0,1,0,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,4,9238,1,1,127.0,1,19,19,4,0,127.4,1,0,0,1,0,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,113.0,1,38,38,3,7,112.3,0,0,0,1,0,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,110.0,1,19,37,9,99,106.1,1,1,1,0,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,141.0,1,1,38,4,8,136.8,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,133.1,1,37,37,9,7,140.0,0,0,0,1,0,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,124.0,1,1,1,4,4,118.8,0,0,0,1,1,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,4,120.0,1,2,3,2,2,120.0,0,0,0,1,0,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,110.0,1,3,3,4,10,115.6,1,0,0,1,1,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,118.0,1,1,19,4,10,110.7,1,1,0,1,0,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +4,39,1,9238,1,1,130.0,1,19,3,9,2,140.0,0,0,0,1,1,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,1,140.0,1,1,19,3,9,140.0,1,0,1,0,0,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,3,9773,1,1,123.0,1,1,19,5,5,117.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,115.0,1,38,38,8,7,112.9,1,0,0,1,0,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,1,6,9147,1,1,142.0,1,38,37,7,7,134.3,0,1,0,1,1,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9085,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,0,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,129.0,1,19,1,3,7,121.0,0,0,0,1,0,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,156.0,1,3,3,123,122,155.0,0,0,0,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,136.0,1,37,37,9,9,126.3,1,0,0,1,0,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,Graduate +2,43,1,9991,0,1,110.0,1,37,37,9,9,132.5,0,0,0,1,1,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,19,133.1,1,37,1,5,5,138.3,0,0,0,1,1,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,Dropout +1,1,2,9130,1,1,140.0,1,19,37,9,9,129.5,1,0,0,1,0,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,Enrolled +1,7,1,9500,1,3,140.0,1,37,37,4,4,140.0,0,0,0,1,0,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,Graduate +4,42,1,9147,1,1,110.0,1,37,37,9,9,128.2,0,0,0,1,0,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,Graduate +1,39,1,9119,1,19,133.1,1,1,1,4,3,134.4,0,0,1,0,1,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,136.0,1,37,1,5,4,120.8,1,0,0,1,0,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,Graduate +1,17,2,9500,1,1,140.0,1,37,37,9,9,132.5,1,0,0,1,0,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,Graduate +1,17,6,9147,1,1,130.0,1,37,37,9,9,110.4,1,0,0,1,1,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,4,5,105.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,136.0,1,19,19,4,3,126.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,116.0,1,38,2,9,2,112.2,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9238,1,1,122.0,1,19,3,5,2,112.6,0,0,1,1,0,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9147,1,1,118.0,1,1,38,9,9,118.4,1,0,0,1,1,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,Enrolled +1,17,1,9130,1,1,117.0,1,19,19,4,4,113.5,1,0,0,1,0,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,117.0,1,19,19,9,9,111.8,1,0,0,1,1,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,Dropout +1,1,6,9500,1,1,118.0,1,38,19,3,3,113.5,1,0,0,1,1,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +2,43,2,9853,1,1,130.0,1,38,31,4,1,124.2,0,0,0,1,0,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,128.0,1,38,38,9,7,124.5,1,0,0,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,8,108.7,1,0,0,1,1,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9254,1,19,133.1,1,37,19,9,10,156.5,0,0,0,1,1,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,Graduate +1,39,1,9003,1,1,160.0,1,1,37,191,193,140.0,0,0,0,1,1,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,10,150.0,0,0,0,1,1,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,Graduate +1,18,2,9070,1,1,122.0,1,38,19,5,5,119.9,0,0,0,1,1,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,125.0,1,19,38,9,7,116.3,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,37,37,6,6,147.8,0,0,0,1,0,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,171,1,1,174.0,1,5,3,3,3,157.9,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,131.0,1,1,1,4,4,127.2,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,3,110.0,1,12,3,5,8,106.5,1,0,1,0,0,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,124.0,1,37,37,9,9,116.0,1,0,0,1,0,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,38,38,5,7,146.2,0,0,0,1,0,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,9,97.0,0,0,0,1,0,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,132.0,1,19,1,9,9,141.8,1,0,0,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +2,43,1,9254,1,3,120.0,1,38,37,9,3,120.0,1,0,0,1,0,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,135.0,1,3,2,1,1,133.6,1,0,0,0,0,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,133.0,1,38,38,5,2,135.5,0,0,0,1,0,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,125.0,1,39,3,3,2,125.0,1,0,0,1,0,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,4,112.0,0,0,0,1,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,141.0,1,1,1,5,9,126.3,0,0,0,1,1,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,1,133.1,1,1,37,9,8,130.0,0,0,0,1,1,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,3,10,107.8,0,0,0,1,0,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,Enrolled +1,43,1,9500,1,1,120.0,1,3,4,2,4,120.6,0,0,0,1,1,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,1,133.1,1,1,19,9,9,120.0,0,0,0,1,1,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,Graduate +1,39,1,9853,1,1,140.0,1,19,1,9,4,128.2,0,0,0,0,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,133.1,1,37,19,9,3,123.0,0,0,0,1,1,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9147,1,1,150.0,1,37,1,7,3,148.8,0,0,0,1,1,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,Graduate +1,17,1,9670,1,1,125.0,1,38,37,7,5,126.4,0,0,0,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,Graduate +1,44,1,9003,1,39,140.0,1,38,1,134,134,140.0,1,0,1,1,1,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,44,1,9070,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,1,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,130.0,1,1,1,9,9,124.1,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Enrolled +1,51,1,9070,1,1,130.0,1,19,19,5,7,124.5,0,0,0,1,0,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,101.0,1,37,37,9,4,101.0,1,0,1,1,0,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,Enrolled +1,1,1,8014,0,1,115.0,1,38,38,9,7,115.0,1,0,0,1,0,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9130,1,1,122.0,1,19,19,9,9,121.7,1,0,0,0,0,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,135.0,1,38,38,9,6,138.1,0,0,1,0,0,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9147,1,1,130.0,1,37,37,9,9,119.9,1,0,0,0,0,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,134.0,1,1,1,9,9,133.0,1,0,0,1,0,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,19,37,9,9,117.8,1,0,0,1,0,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,119.0,1,1,19,4,10,115.5,1,0,0,1,0,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,Enrolled +1,17,3,9119,1,1,138.0,1,3,3,3,4,125.4,1,1,0,1,1,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,164.0,1,19,19,9,9,149.0,1,0,0,1,0,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,1,140.0,1,4,4,2,6,140.0,0,0,0,1,0,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,Graduate +1,43,1,9070,1,1,160.0,1,1,2,4,2,100.0,0,0,0,1,1,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,132.0,1,37,37,9,5,135.9,0,0,0,1,0,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,142.0,1,37,19,7,7,133.0,1,0,0,1,0,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9556,1,3,130.0,1,1,37,4,8,130.0,0,0,0,0,1,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,Dropout +1,44,1,171,1,39,110.0,1,1,1,1,7,114.2,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9147,1,1,129.0,1,19,19,4,9,127.6,1,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,164.0,1,34,1,0,0,163.0,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9556,1,1,122.0,1,19,38,4,8,118.3,1,0,0,1,0,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,141.0,1,38,37,3,3,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,Graduate +1,1,1,9003,1,1,148.0,1,1,19,194,194,143.5,0,0,1,1,1,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,150.0,1,37,19,6,4,137.0,0,0,0,1,1,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,38,38,1,4,138.7,0,0,0,1,1,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,103.8,0,0,0,1,0,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,Dropout +1,17,1,8014,0,1,127.0,1,19,37,4,7,115.8,0,0,0,1,0,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,143.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,130.0,1,38,19,5,6,125.1,1,0,0,1,0,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9254,1,1,133.0,1,19,1,9,9,137.2,0,0,0,1,1,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +2,1,4,8014,0,1,140.0,1,34,34,0,0,128.0,1,0,0,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,120.0,1,1,1,9,10,118.3,0,0,0,1,1,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Enrolled +2,39,1,8014,0,12,133.1,1,37,37,9,1,113.0,0,0,0,1,0,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,128.0,1,19,1,0,5,122.1,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,37,38,3,3,123.0,0,0,0,1,0,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,120.0,1,37,1,7,4,95.0,1,0,0,1,0,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,Dropout +1,17,4,9238,1,1,123.0,1,19,19,191,144,116.0,1,0,0,1,0,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,140.0,1,37,37,90,90,106.3,0,0,1,0,1,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,159.0,1,3,3,2,2,162.5,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,125.0,1,19,19,9,9,115.9,0,0,0,1,0,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,130.0,1,19,19,3,7,129.0,0,0,1,0,0,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,133.1,1,38,37,5,5,136.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,156.0,1,5,4,2,1,140.8,0,0,0,1,0,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,161.0,1,37,37,9,9,100.0,1,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,8014,0,3,130.0,1,35,35,90,90,140.0,0,0,0,0,0,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,Dropout +2,1,1,9991,0,1,120.0,1,37,19,9,9,135.0,1,0,0,1,1,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,1,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,148.0,1,3,3,2,2,137.3,1,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,120.0,1,19,37,5,7,115.1,0,0,0,1,0,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,6,9773,1,1,138.0,1,1,1,4,2,140.5,1,0,0,1,0,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,Graduate +2,43,1,9085,1,1,160.0,1,37,37,9,7,120.0,0,0,0,1,1,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,Enrolled +1,17,2,8014,0,1,134.0,1,1,19,4,99,126.0,1,0,0,1,1,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,100.0,1,0,0,1,0,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,131.0,1,1,1,5,9,129.5,1,0,0,1,0,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,Graduate +1,1,4,171,1,1,139.0,1,37,38,9,9,127.8,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,150.0,1,37,37,5,6,132.5,1,0,0,1,0,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,133.1,1,19,38,5,7,110.0,1,0,0,1,0,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,6,138.6,1,34,34,0,0,138.6,1,0,0,1,1,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,133.1,1,1,1,4,10,100.8,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,5,140.0,1,19,1,4,1,140.0,1,0,0,0,0,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,118.0,1,1,19,9,10,113.1,1,0,0,1,0,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,115.0,1,3,3,2,2,111.5,1,0,1,0,0,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9254,1,39,170.0,1,19,2,9,3,170.0,0,0,0,0,1,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,9,120.0,0,0,0,1,0,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,137.0,1,19,38,7,7,126.5,1,0,0,1,0,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,136.0,1,19,19,90,8,133.9,1,0,0,0,1,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,Dropout +1,18,2,9500,1,1,141.0,24,1,1,4,3,126.8,1,0,0,1,0,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,Graduate +1,17,4,9238,1,1,124.0,1,19,19,5,8,117.7,1,0,0,1,0,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,149.0,1,19,38,9,9,126.5,1,0,0,1,0,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,153.0,1,1,1,141,175,157.9,0,0,1,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,140.0,1,1,2,4,6,140.0,1,0,0,1,0,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,137.0,1,1,3,3,2,121.3,1,0,0,1,0,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,143.0,1,1,1,4,6,138.8,0,0,0,0,1,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,160.0,1,1,3,1,2,130.0,0,0,0,0,1,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,19,19,9,8,105.8,0,0,0,1,0,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,Dropout +1,5,4,9119,1,1,115.0,1,19,37,4,6,113.3,1,0,0,1,1,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,19,4,3,125.4,1,0,0,1,0,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,Graduate +4,42,1,9500,1,19,133.1,1,1,1,5,5,126.0,1,0,0,1,1,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9254,1,3,133.1,1,19,19,4,6,130.5,0,0,0,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,108.0,1,1,19,4,4,105.9,1,0,0,1,1,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,126.0,1,19,19,9,9,115.2,0,0,1,1,0,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9853,1,1,140.0,1,37,37,9,9,145.3,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,6,9070,1,6,119.0,1,1,1,9,9,123.2,1,0,0,1,1,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,160.0,1,1,38,5,6,168.6,0,0,0,1,1,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9254,1,1,120.0,1,1,19,9,9,148.3,0,0,0,1,1,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,3,130.0,1,1,19,9,10,130.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,137.0,1,38,38,151,151,141.6,0,0,0,1,1,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,4,140.0,0,0,0,1,1,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,Enrolled +1,43,1,9085,1,1,162.0,1,2,1,4,4,162.0,0,0,0,1,0,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,43,1,171,1,1,133.0,1,19,19,5,7,133.0,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,154.0,1,37,37,9,7,150.2,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,19,100.0,1,38,19,0,10,111.3,0,0,1,0,0,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,38,4,9,126.2,0,0,0,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,132.0,1,3,1,2,7,125.5,1,0,0,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,127.0,1,37,37,5,7,116.2,0,0,0,1,1,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9773,1,1,121.0,1,19,38,9,7,113.0,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,130.0,1,19,19,9,9,127.6,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,160.0,1,34,34,99,99,114.3,0,0,0,1,1,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,Enrolled +1,18,4,9254,1,1,119.0,1,37,37,9,9,113.1,1,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,130.0,1,38,37,5,6,130.0,0,0,0,1,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,163.0,1,19,37,5,8,150.8,1,0,0,1,1,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,Enrolled +1,43,1,9238,1,1,122.0,1,19,19,5,5,114.3,1,0,0,1,0,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,Enrolled +1,18,1,9147,1,1,131.0,1,34,34,90,90,131.0,0,0,0,1,1,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,4,9773,1,1,137.0,1,1,1,5,5,125.8,0,0,1,1,1,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9670,1,1,133.1,1,37,37,90,90,97.4,0,0,1,0,1,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,37,38,7,5,106.0,1,0,0,1,0,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,Graduate +1,17,6,9254,1,1,108.0,1,1,19,4,5,112.2,1,0,0,1,1,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,19,133.1,1,1,19,4,10,111.8,1,0,0,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,133.1,1,1,37,9,10,139.0,0,0,0,1,1,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,122.0,1,12,19,4,8,117.8,1,0,0,1,0,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,128.0,1,19,19,0,5,120.3,1,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,133.1,1,34,19,0,3,117.1,1,0,0,1,0,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9556,1,19,133.1,1,37,38,9,9,123.0,0,0,0,1,0,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,Graduate +1,17,2,9238,1,1,133.0,1,37,37,9,4,123.6,0,0,0,1,0,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,5,9670,1,1,132.0,1,19,19,5,5,134.1,1,0,0,1,1,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,129.0,1,38,1,4,10,129.4,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,136.0,1,19,19,4,8,150.4,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,154.0,1,3,3,1,3,129.0,1,0,0,1,0,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,Enrolled +1,44,1,9130,1,39,150.0,1,1,1,4,4,150.0,1,0,0,1,0,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,115.0,1,37,37,9,8,116.1,1,0,0,1,0,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,157.0,1,19,3,4,9,138.8,0,0,0,1,1,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9670,1,19,133.1,1,19,1,5,8,97.2,1,0,0,1,1,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,141.0,1,37,38,6,6,125.6,1,0,0,1,0,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,143.0,1,19,1,9,9,144.4,1,0,0,1,0,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9119,1,1,127.0,1,19,1,4,5,115.8,0,0,0,1,1,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,150.0,1,1,1,9,10,142.7,0,0,1,1,0,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,132.0,11,12,12,90,4,129.9,1,0,0,1,0,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,115.0,1,19,19,191,171,109.1,0,0,1,0,1,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,Enrolled +1,17,1,9773,1,1,121.0,1,38,38,9,8,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,7,1,9085,1,40,130.0,1,1,1,4,4,130.0,1,0,0,1,0,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,140.0,1,19,38,4,4,138.3,0,0,0,1,1,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,6,9773,1,1,116.0,1,19,1,4,4,110.1,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,131.0,1,38,38,9,9,127.9,0,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,Graduate +1,51,1,9991,0,42,110.0,1,19,37,5,9,128.2,0,0,0,0,0,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,138.0,1,19,19,5,8,124.9,1,0,0,1,0,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,172.0,1,1,1,4,9,167.1,0,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +5,39,1,9991,0,1,120.0,1,37,37,9,9,138.1,0,0,0,1,1,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,37,38,3,7,96.7,0,0,0,1,1,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,15,1,9130,1,1,133.1,41,1,1,4,4,100.0,0,0,0,1,0,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9119,1,1,122.0,1,19,19,9,9,114.7,0,0,0,1,1,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,192,192,96.0,1,0,0,1,0,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,160.0,1,1,37,9,10,118.0,0,0,0,1,0,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,Enrolled +1,18,4,9119,1,1,134.0,1,19,38,194,175,124.9,1,0,1,1,1,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,4,19,4,5,98.0,0,0,0,1,1,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +5,43,1,9991,0,3,130.0,1,3,3,1,1,130.0,0,0,0,1,0,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,120.0,1,19,19,4,5,114.8,1,0,1,0,0,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,6,8014,0,1,134.0,1,3,19,2,4,120.7,1,0,0,1,0,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,133.1,1,37,37,9,9,109.7,0,0,0,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9070,1,1,128.0,1,19,19,3,3,123.5,1,1,0,0,1,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,133.1,1,1,19,5,9,130.0,0,0,0,1,1,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,Graduate +1,7,1,9991,0,40,120.0,1,43,3,3,3,120.0,0,0,0,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,Enrolled +1,17,5,9556,1,1,139.0,1,19,19,9,8,121.3,1,0,0,1,0,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,156.0,1,3,19,3,3,151.1,0,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,Graduate +1,16,2,9147,1,1,132.0,1,37,37,9,9,122.6,1,0,0,1,0,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,130.0,1,2,3,9,6,130.0,0,0,0,1,1,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,133.1,1,1,1,1,6,120.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,1,1,1,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,133.0,1,3,3,1,1,126.2,1,0,0,1,0,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,Graduate +1,18,2,9147,1,1,140.0,1,37,37,5,9,124.3,1,0,0,1,1,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,44,1,9003,1,39,150.0,1,37,38,4,8,150.0,0,0,0,1,0,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,140.0,1,37,19,191,163,129.3,1,0,1,1,0,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +4,7,1,9500,1,3,130.0,1,3,19,2,3,130.0,0,0,0,1,0,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9070,1,1,131.0,1,19,19,7,7,125.1,0,0,0,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,Enrolled +1,10,1,9773,1,1,152.0,22,38,37,5,9,152.0,1,0,0,1,0,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,123.0,1,34,38,0,7,120.2,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,131.0,1,3,19,4,4,130.3,1,0,0,1,1,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,115.0,1,1,1,5,4,108.0,1,0,0,1,0,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,130.0,1,38,37,9,9,144.0,0,0,0,1,0,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9238,1,1,134.0,1,3,1,3,4,133.0,1,0,0,1,0,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,Graduate +1,51,1,9670,1,1,133.1,1,3,1,3,10,116.2,0,0,0,1,1,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,139.0,0,0,0,1,1,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,126.0,1,19,1,9,9,122.5,1,0,0,0,0,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,121.0,1,19,19,9,9,126.3,1,0,0,1,0,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9003,1,1,133.1,1,38,38,4,8,115.0,0,0,1,1,1,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,19,37,9,9,151.5,0,0,1,0,1,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9853,1,40,110.0,1,41,3,2,1,110.0,0,0,1,1,0,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,17,5,9238,1,1,131.0,1,19,37,5,7,120.2,1,0,0,1,0,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,7,1,9070,1,3,140.0,1,37,37,7,7,140.0,0,0,0,0,1,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +4,39,1,9254,1,1,140.0,1,38,37,9,9,112.0,0,0,1,1,0,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,Dropout +1,18,3,9853,1,1,122.0,1,38,37,9,5,120.3,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9070,1,1,125.0,1,1,38,9,7,118.0,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Enrolled +1,1,3,9670,1,1,111.0,1,1,1,5,5,105.4,0,0,0,1,0,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +2,39,1,9254,1,1,130.0,1,37,37,4,7,120.0,1,0,0,1,0,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,160.0,1,37,37,9,9,160.0,1,0,0,1,0,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,39,1,9147,1,12,133.1,1,37,37,9,9,140.0,0,0,0,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9147,1,1,118.0,1,1,2,10,10,117.3,1,0,0,1,0,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,3,9085,1,1,130.0,1,1,19,9,9,121.3,1,0,0,1,0,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,9,130.0,0,0,0,1,0,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,3,9085,1,1,130.0,1,19,37,5,5,121.3,1,0,0,1,0,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,Enrolled +1,1,2,9254,1,1,120.0,1,19,19,9,9,116.5,1,0,0,1,0,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,Graduate +2,39,1,9500,1,1,140.0,1,37,37,9,4,127.3,0,0,0,1,1,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,118.0,1,37,38,8,7,115.2,1,0,0,1,0,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,17,3,9238,1,1,125.0,1,19,19,7,8,121.5,0,0,0,1,0,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,125.0,1,19,19,5,5,114.5,1,0,0,1,0,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,136.0,1,39,1,3,4,134.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,115.0,1,3,2,4,5,112.6,0,0,0,1,1,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,53,1,9003,1,1,130.0,1,19,1,9,9,130.0,0,0,1,1,1,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,Enrolled +1,1,3,9773,1,1,136.0,1,3,1,5,3,129.0,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,3,150.0,1,2,3,4,7,173.3,1,0,0,1,0,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,140.0,1,1,19,7,7,129.9,1,0,0,1,0,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,Dropout +1,7,1,9119,1,1,140.8,1,34,34,0,0,134.0,0,0,0,1,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9254,1,1,115.0,1,37,19,5,5,109.8,1,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,137.0,1,1,1,4,4,127.6,1,0,0,1,0,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,Graduate +4,7,1,9238,1,40,130.0,1,34,34,99,99,130.0,0,0,1,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9147,1,1,123.0,1,37,37,9,9,106.2,0,0,0,1,0,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,121.0,1,1,3,3,7,113.0,1,0,0,1,1,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,140.0,1,3,1,2,3,129.9,0,0,0,1,0,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,130.0,1,38,38,9,7,130.0,0,0,0,1,1,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,Dropout +1,51,1,9070,1,1,132.0,1,19,19,153,153,120.0,0,0,0,1,0,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,9119,1,1,110.0,1,37,37,9,9,106.8,0,0,0,1,1,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,124.0,1,19,37,4,4,126.8,0,0,0,1,0,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,Enrolled +1,18,3,9147,1,1,133.1,1,1,38,4,7,101.0,1,0,0,0,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9147,1,1,125.0,1,38,19,7,7,125.7,0,0,0,1,0,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,4,9853,1,1,121.0,1,38,38,5,7,113.7,1,0,0,1,0,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,1,1,9,6,105.0,1,0,1,0,0,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,143.0,1,5,1,2,5,136.7,0,0,0,1,0,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,Graduate +1,1,2,9556,1,1,142.0,1,1,19,4,5,130.5,1,0,0,1,0,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,131.0,1,19,19,7,5,122.1,1,0,0,1,0,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,132.0,1,1,37,4,7,121.8,1,0,0,1,0,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,123.0,1,37,37,3,3,123.0,1,0,0,1,0,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,129.0,1,19,38,2,7,126.9,1,0,0,1,0,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Enrolled +1,1,4,9238,1,1,118.0,1,19,38,9,9,110.0,0,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,125.0,1,3,1,4,4,119.4,1,0,0,1,0,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,Enrolled +1,17,1,9085,1,1,131.0,1,1,3,4,1,129.3,1,0,0,1,0,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,147.0,1,37,37,9,9,134.3,0,0,0,1,0,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,Graduate +2,39,2,9670,1,19,133.1,1,37,37,9,9,135.6,0,0,0,1,0,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,152.0,1,37,19,9,9,137.0,1,0,0,1,0,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,118.0,1,12,1,4,10,115.7,0,0,0,1,1,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,Enrolled +1,15,1,9119,1,1,133.1,41,1,3,5,8,100.0,0,0,1,1,1,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,5,9119,1,1,131.0,1,1,19,4,7,126.8,0,0,0,0,1,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,132.0,1,19,38,9,7,119.1,0,0,0,0,1,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,8014,0,1,120.0,1,37,37,5,5,161.1,0,0,0,1,1,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,18,5,9500,1,1,137.0,1,19,1,1,10,129.3,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,118.0,1,37,19,5,5,119.1,1,0,0,1,0,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,134.0,1,38,38,9,9,122.0,1,0,0,1,1,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,163.0,1,1,1,4,3,149.7,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,140.0,1,38,38,9,7,140.0,0,0,0,1,0,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,Enrolled +1,17,4,9147,1,1,122.0,1,19,19,5,7,116.4,1,0,1,1,0,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,140.0,1,3,37,3,7,116.9,0,0,0,1,1,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,5,2,9238,1,1,123.0,1,40,38,2,9,118.1,1,0,0,1,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,130.0,1,3,19,2,3,133.9,0,0,0,1,0,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,125.0,1,1,38,4,7,114.9,1,0,0,1,0,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,130.0,1,1,1,4,10,115.2,0,0,0,1,1,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,124.0,1,38,19,9,7,129.6,1,0,0,1,1,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,139.0,1,38,38,7,5,133.4,0,0,0,1,0,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9254,1,1,125.0,1,38,38,5,5,115.6,1,0,0,1,0,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,147.0,1,37,37,9,9,142.8,1,0,0,1,0,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9003,1,1,144.0,1,19,19,9,9,132.8,0,0,0,1,1,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,12,133.1,1,19,1,9,1,130.0,0,0,0,1,1,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,140.0,1,37,37,9,6,135.5,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,6,9254,1,1,102.0,1,3,1,2,2,101.7,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,133.1,1,19,38,5,5,131.8,1,0,1,1,0,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,Graduate +1,44,1,171,1,39,150.0,1,4,4,2,2,150.0,0,0,0,1,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,53,1,9254,1,42,110.0,1,1,1,4,7,111.8,1,0,0,1,0,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,121.0,1,19,38,6,6,116.1,1,0,0,1,1,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,Graduate +1,17,4,9773,1,1,127.0,1,1,19,4,1,115.8,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,37,37,9,7,160.0,1,0,0,0,1,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,15,170.0,1,34,1,90,2,101.0,0,0,0,1,0,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,125.0,1,3,3,3,3,116.6,1,0,0,0,0,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,4,9070,1,1,117.0,1,1,1,3,3,125.4,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,146.0,1,19,37,7,7,133.8,1,0,0,1,0,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,142.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,3,116.0,1,3,3,2,2,128.2,0,0,0,1,0,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,37,37,7,7,116.5,1,0,0,1,0,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,118.0,1,19,19,5,7,117.8,0,0,0,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,Graduate +1,18,3,9670,1,1,119.0,1,38,38,9,9,115.2,1,0,0,1,0,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,131.0,1,3,19,3,10,123.3,0,0,0,1,1,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,Enrolled +1,17,1,9254,1,1,136.0,1,39,3,3,3,128.7,1,0,0,1,0,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9500,1,1,140.0,1,37,38,5,7,126.0,1,0,0,1,0,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +1,44,1,9119,1,39,150.0,1,19,3,5,2,150.0,0,0,0,1,1,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,43,1,9773,1,1,137.0,1,38,37,9,5,127.9,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,119.9,0,0,0,1,0,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,18,2,9773,1,1,132.0,24,37,19,9,7,119.1,1,0,0,1,0,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,43,1,8014,0,1,133.1,1,34,34,0,0,100.0,0,0,0,1,0,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,1,133.1,1,38,19,9,9,128.0,1,0,0,0,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,125.0,1,19,19,5,4,136.2,1,0,1,1,1,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,132.0,1,38,38,0,5,126.1,0,0,0,1,1,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9670,1,1,130.0,1,1,1,9,10,116.3,1,0,0,1,0,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,3,9773,1,1,150.0,1,19,38,4,4,146.5,1,0,0,1,0,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +4,39,2,8014,0,1,160.0,1,37,38,7,5,115.0,0,0,0,1,0,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,135.0,1,19,1,9,9,122.1,1,0,0,1,0,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,136.0,1,3,3,9,9,136.0,1,0,1,0,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,3,3,7,1,130.0,1,0,0,1,1,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9119,1,19,133.1,1,19,19,5,3,100.9,1,0,0,1,1,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,Enrolled +1,17,1,9254,1,1,137.0,1,34,38,0,7,137.7,1,0,1,0,0,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,19,133.1,1,37,37,90,7,110.0,0,0,0,0,0,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,144.0,1,38,37,9,9,125.8,0,0,0,1,0,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,1,4,9070,1,1,167.0,1,1,1,7,3,158.3,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,133.0,1,37,19,7,7,126.7,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,118.0,1,38,38,7,7,121.2,1,0,0,1,0,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,19,133.1,1,19,19,4,4,150.0,0,0,0,0,1,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9085,1,1,166.0,1,1,19,4,3,158.7,0,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Graduate +1,44,1,9254,1,39,130.0,1,39,39,194,193,130.0,1,0,1,1,1,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,1,9085,1,1,140.0,1,37,38,7,9,129.9,0,0,0,1,0,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,9147,1,3,120.0,1,1,39,4,7,120.0,0,0,0,1,0,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,5,9254,1,1,118.0,1,19,37,5,5,120.5,1,0,0,1,1,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,Dropout +1,17,3,9070,1,1,120.0,1,3,1,4,4,116.9,1,0,0,1,0,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Graduate +1,43,5,9238,1,1,101.0,24,37,19,9,7,119.9,1,0,1,0,0,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,128.0,1,19,1,4,3,117.2,1,0,0,1,0,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,Graduate +1,1,3,9254,1,1,118.0,1,1,19,9,9,111.7,1,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,137.0,1,37,37,0,90,134.2,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,144.0,1,3,39,2,3,129.0,1,0,0,1,0,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,125.0,1,37,38,7,7,122.2,1,0,0,1,0,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,147.0,1,3,1,4,3,136.7,0,0,0,1,0,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,39,120.0,1,37,37,1,9,137.7,1,0,0,0,1,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,160.0,1,1,37,9,9,146.0,1,0,0,1,0,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9238,1,39,130.0,1,1,19,4,5,127.4,0,0,1,0,1,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,3,1,2,4,154.9,0,0,1,0,1,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,Dropout +1,17,2,9670,1,1,129.0,1,19,19,5,4,129.4,0,0,0,1,0,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,137.0,1,3,19,3,5,136.3,1,0,0,1,0,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,100.0,1,37,37,9,6,153.5,0,0,1,0,1,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,134.0,1,38,38,7,9,132.8,1,0,0,1,0,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,137.0,1,37,37,7,9,130.8,1,0,0,1,0,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,133.1,1,37,37,1,1,97.0,0,0,0,1,1,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,143.0,1,3,38,2,10,129.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,9,3,127.1,0,0,0,1,0,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,Enrolled +2,7,1,9147,1,3,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,160.0,1,37,37,9,9,160.0,0,0,0,1,1,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,162.0,1,3,4,3,3,154.1,0,0,0,1,0,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,Graduate +1,1,2,9147,1,1,119.0,1,19,37,4,5,113.8,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,139.0,1,19,1,9,5,135.0,1,0,0,1,0,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,120.0,1,1,38,5,5,116.3,1,1,0,1,1,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,2,9500,1,1,135.0,1,1,19,4,10,133.5,1,0,0,1,0,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,Graduate +1,1,3,9119,1,1,117.0,1,1,1,3,5,111.1,0,0,0,1,1,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,140.0,1,1,39,4,1,128.1,1,1,0,1,1,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9003,1,1,133.1,1,37,37,3,8,130.0,0,0,1,1,0,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,134.0,1,19,37,5,5,125.3,1,0,0,1,1,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,37,38,9,9,114.0,0,0,0,1,0,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,38,37,4,5,102.5,0,0,1,0,1,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,143.0,1,19,37,5,9,156.3,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,130.0,1,19,1,9,5,122.1,1,0,0,1,0,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,Graduate +1,39,2,8014,0,1,100.0,1,35,37,90,90,100.0,0,0,0,1,0,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +2,39,2,9670,1,1,100.0,1,37,37,9,9,110.0,0,0,0,1,1,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,2,9853,1,1,126.0,1,1,19,2,10,126.0,1,0,0,1,0,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,Enrolled +1,18,3,9070,1,1,131.0,1,1,37,5,5,122.3,1,0,0,0,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,150.0,1,19,37,9,8,138.5,0,0,0,1,0,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,2,171,1,1,146.0,1,3,3,3,3,155.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,120.0,1,19,19,9,7,118.6,1,0,0,1,0,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,145.0,1,38,38,9,9,125.5,1,0,0,1,0,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9070,1,1,143.0,1,1,1,9,7,134.6,1,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Dropout +1,51,1,8014,0,1,121.0,1,1,38,5,7,112.3,0,0,0,1,0,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,130.0,1,37,1,9,8,120.2,1,0,0,1,1,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +2,7,1,9254,1,2,100.0,1,37,37,9,9,100.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,1,130.0,1,37,3,9,3,137.0,1,0,0,1,1,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,0,0,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,140.0,1,38,37,7,7,105.2,0,0,0,1,1,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,131.0,1,1,19,4,7,135.9,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,108.0,1,19,38,9,7,110.5,1,0,0,1,0,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,111.0,1,1,38,5,9,107.5,0,0,0,1,1,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9147,1,1,147.0,1,37,37,9,6,142.8,1,0,1,0,0,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,170.0,1,38,19,4,8,134.7,0,0,0,1,0,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,138.0,1,4,19,2,3,124.7,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,125.0,1,37,38,9,9,125.0,1,0,1,0,0,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,118.0,1,38,38,5,5,114.2,1,0,0,1,0,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,3,3,1,5,118.8,0,0,0,1,0,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,Graduate +1,1,3,9085,1,1,131.0,1,37,19,9,8,136.3,1,0,1,0,0,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,Dropout +1,43,1,9991,0,1,141.0,1,37,37,9,9,131.9,0,0,0,1,0,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,42,1,9070,1,1,120.0,1,3,2,3,1,116.9,0,0,0,1,1,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,130.0,1,1,1,9,7,152.1,0,0,0,1,1,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,12,133.1,1,34,34,0,0,135.0,0,0,0,1,0,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,130.0,1,38,38,7,7,122.5,1,0,0,1,0,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,160.0,1,1,1,194,131,128.4,0,0,0,1,0,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,132.0,1,1,38,7,7,129.6,0,1,0,1,1,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,1,1,3,9,118.4,0,0,0,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,Graduate +1,1,2,9556,1,1,133.1,1,19,19,9,9,104.5,1,0,0,1,0,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,53,1,9003,1,42,150.0,1,1,38,8,8,150.0,0,0,0,1,0,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,144.0,1,3,1,2,3,126.9,0,0,0,1,0,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,150.0,1,3,3,2,2,120.0,0,0,1,0,0,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,3,3,2,10,160.0,1,0,0,1,1,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,129.0,1,1,1,9,9,120.0,0,0,0,1,1,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,Graduate +4,39,1,9003,1,12,133.1,1,37,37,9,6,160.0,0,0,0,1,0,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,Graduate +2,39,2,9991,0,1,100.0,1,37,37,9,9,100.0,1,0,0,1,1,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,115.0,1,19,1,3,8,123.4,0,0,0,1,0,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,124.0,1,19,37,3,8,117.5,1,0,0,1,1,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,Enrolled +1,1,6,9254,1,1,129.0,1,38,19,9,5,117.8,1,0,0,1,0,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,127.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,19,133.1,1,38,38,7,8,120.0,0,0,0,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +6,39,2,9147,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,4,9500,1,1,148.0,1,3,19,4,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,39,150.0,1,1,3,4,1,150.0,0,0,0,1,1,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,145.0,1,37,37,9,1,150.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,115.7,1,0,0,1,0,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,16,1,171,1,1,122.0,1,19,37,9,7,133.9,1,0,0,1,1,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,124.0,1,37,38,9,8,114.6,1,0,0,1,1,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,120.0,1,38,37,9,8,113.4,1,0,0,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,40,140.0,1,37,37,6,6,140.0,0,0,0,1,0,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,Graduate +1,1,5,9670,1,1,133.1,1,9,1,2,4,133.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,100.0,1,19,19,4,4,113.0,0,0,0,1,1,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,Enrolled +4,39,1,9003,1,1,133.1,1,19,19,9,4,100.7,0,0,0,1,0,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,Enrolled +1,17,2,9147,1,1,133.1,1,38,38,4,7,109.0,1,0,0,1,1,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,15,1,9238,1,1,140.0,26,19,19,9,6,140.0,0,0,0,1,1,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,3,9500,1,1,114.0,1,1,1,5,5,114.5,1,0,0,1,0,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,134.0,1,1,38,4,4,120.7,0,0,1,0,0,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,1,133.1,1,37,11,9,7,96.0,0,0,1,0,1,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,131.0,1,3,3,3,3,135.9,0,0,0,1,0,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,Graduate +1,43,2,9500,1,1,130.0,1,38,37,4,4,126.8,1,0,0,1,1,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,19,37,7,7,124.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9670,1,1,120.0,1,1,19,4,5,100.0,0,0,0,1,0,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,145.0,1,38,38,9,10,139.8,1,0,0,1,0,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,141.0,1,19,38,5,7,125.5,0,0,0,1,0,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,Graduate +5,39,1,9147,1,1,133.1,1,1,19,4,7,114.0,0,0,0,0,1,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9991,0,1,110.0,1,37,37,1,4,120.0,1,0,0,0,1,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,172.0,41,37,37,5,5,153.8,1,0,0,1,0,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,1,9556,1,1,140.0,1,3,3,1,7,131.6,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,4,3,137.5,0,0,0,1,1,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,137.0,1,19,38,3,9,124.9,0,0,0,1,0,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,139.0,1,18,18,1,1,130.8,1,0,0,0,0,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,120.0,1,38,37,5,9,131.4,1,0,0,1,1,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,Graduate +1,53,1,9085,1,42,160.0,1,19,37,4,9,160.0,1,0,0,1,0,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,Graduate +1,18,1,9670,1,1,140.0,1,1,37,9,9,130.2,1,0,0,1,1,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9853,1,1,140.0,1,37,37,6,6,125.2,0,0,1,1,0,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,Graduate +1,1,4,9556,1,1,122.0,1,37,1,5,4,123.9,0,0,0,1,0,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,1,19,3,3,123.0,0,0,0,1,0,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,140.0,1,19,38,4,0,140.0,1,0,0,1,1,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,129.0,1,1,1,4,2,126.2,0,0,1,0,0,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Dropout +2,17,3,8014,0,1,123.0,1,19,37,3,3,113.2,0,0,1,0,0,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,133.1,1,38,19,9,10,114.5,0,0,0,1,0,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,Enrolled +1,51,1,9991,0,1,141.0,1,19,38,5,7,100.0,0,0,0,1,0,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,Graduate +1,17,2,171,1,1,131.0,1,2,1,3,3,148.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,19,133.1,1,37,37,9,9,100.0,1,0,1,0,0,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,117.0,1,1,38,5,1,113.5,1,0,0,1,0,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,116.0,1,19,38,9,9,119.5,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,1,19,3,4,116.7,0,0,0,1,0,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,129.0,1,2,3,2,2,128.3,1,0,0,1,0,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,Enrolled +1,1,3,9085,1,1,138.0,1,1,1,4,8,128.7,1,0,0,1,0,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,5,9147,1,1,118.0,1,19,19,9,9,114.2,1,0,0,1,1,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.0,1,3,19,2,8,126.7,0,0,0,1,0,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,Enrolled +1,16,1,171,1,1,158.0,1,38,37,9,9,164.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,43,3,9500,1,1,126.0,1,38,37,6,5,124.3,1,0,0,1,0,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,123.0,1,38,38,9,5,124.8,0,0,0,0,0,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9130,1,1,160.0,1,3,3,3,2,155.1,1,0,0,1,0,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Graduate +4,43,1,9500,1,1,130.0,1,37,37,9,9,103.7,0,0,0,1,0,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,Enrolled +1,16,2,9238,1,1,133.0,1,19,38,4,5,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,130.0,1,38,37,9,9,124.8,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,135.0,1,37,1,7,7,132.8,1,0,0,1,0,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9119,1,1,128.0,1,1,38,4,7,100.0,0,0,0,1,1,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9085,1,1,120.0,1,1,1,9,10,115.0,0,0,0,0,0,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,2,9070,1,1,142.0,1,3,1,2,4,141.0,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9853,1,1,124.0,1,38,37,5,3,118.1,1,0,0,0,0,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,145.0,1,37,37,9,9,132.0,1,0,0,1,0,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,114.0,1,38,38,9,10,120.0,0,0,0,1,0,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,140.0,1,3,3,2,2,146.4,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,5,9773,1,1,130.0,1,34,38,0,8,128.3,1,0,0,0,0,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,3,9670,1,1,110.0,1,19,1,4,4,107.5,1,0,0,1,0,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,135.0,1,37,37,5,5,126.3,1,1,0,1,0,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,Graduate +2,1,1,9254,1,1,140.0,1,19,38,4,7,133.0,0,0,0,1,1,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,1,150.0,1,37,37,9,9,115.0,0,0,0,1,1,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9070,1,1,130.0,1,1,1,5,3,112.0,1,0,0,1,1,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,110.0,1,1,37,9,9,105.1,1,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,131.0,1,37,37,9,7,118.4,0,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,136.0,1,38,38,7,7,127.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9773,1,1,127.0,1,19,19,5,8,120.0,0,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,139.0,1,37,19,9,8,142.2,1,0,0,1,1,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,4,127.3,1,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,16,4,9773,1,1,109.0,1,37,37,9,3,137.0,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,Graduate +1,53,1,9085,1,42,130.0,1,19,1,9,9,130.0,1,0,1,0,0,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,Enrolled +1,7,1,171,1,3,130.0,1,1,2,9,2,130.0,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,120.0,1,37,37,9,9,120.0,1,0,1,1,0,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,Dropout +1,2,1,9853,1,1,120.0,1,19,38,9,9,122.5,0,0,0,0,0,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,19,133.1,1,2,1,8,8,120.0,1,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,43,1,9773,1,1,121.0,1,1,1,4,5,121.0,1,0,0,1,1,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9147,1,1,120.0,1,38,19,9,9,111.3,1,0,0,1,0,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,38,19,5,0,141.8,0,0,0,1,0,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,131.0,1,1,1,7,4,127.2,1,0,1,1,1,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,11,9,10,131.5,0,0,0,1,0,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,3,19,2,3,125.7,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9556,1,1,136.0,1,19,19,9,9,129.5,1,0,0,1,0,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,Graduate +1,42,1,9119,1,1,120.0,1,5,5,2,2,115.0,0,0,0,1,1,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,Dropout +1,17,6,9119,1,1,124.0,1,19,19,4,0,126.1,1,0,0,1,1,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,160.0,1,19,38,9,9,140.8,1,0,0,1,1,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,123.0,1,37,37,9,9,115.0,1,0,0,1,0,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,Graduate +2,39,2,9670,1,1,133.1,41,37,19,9,9,130.0,0,0,0,1,0,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9670,1,6,170.0,1,34,34,0,0,111.6,0,0,0,1,1,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,138.0,1,1,3,9,1,123.0,1,0,0,1,0,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,1,37,6,6,130.0,1,0,0,1,1,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,Graduate +1,17,2,9119,1,1,133.1,1,1,2,3,3,117.0,1,0,0,1,1,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,Enrolled +1,1,5,9254,1,1,131.0,1,19,37,9,9,123.7,0,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,130.0,1,1,1,9,4,140.0,0,0,0,0,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9773,1,1,135.0,1,1,19,4,10,129.4,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,132.0,1,1,19,3,3,122.9,1,0,0,1,0,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,115.0,1,37,37,9,8,129.0,1,0,1,0,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9238,1,1,160.0,1,3,19,2,1,116.1,0,0,1,1,0,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,12,133.1,1,37,1,9,10,130.0,0,0,0,1,1,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,129.0,1,37,38,4,9,121.0,1,0,0,1,0,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9119,1,1,130.0,1,38,19,7,3,119.9,1,0,1,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,133.1,1,37,37,9,9,100.2,1,0,0,0,0,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,4,38,4,5,140.0,1,0,0,1,0,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9991,0,43,140.0,1,40,5,3,3,140.0,0,0,0,1,0,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,Graduate +1,43,2,9670,1,1,129.0,1,3,3,5,5,122.4,1,0,0,1,0,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,6,116.4,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,130.0,1,1,3,9,2,130.0,1,0,1,1,0,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,139.0,1,38,38,9,5,130.5,1,0,0,1,0,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,1,100.0,1,19,19,9,9,100.0,0,0,1,1,1,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,Dropout +1,7,1,9773,1,43,140.0,1,19,1,4,8,140.0,0,0,0,1,1,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9003,1,1,125.0,1,1,38,4,7,125.0,1,0,0,1,0,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,Graduate +1,39,2,9147,1,19,133.1,1,38,19,4,10,116.3,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,3,9500,1,1,132.0,1,37,37,4,3,127.3,1,0,0,1,0,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,127.0,1,1,37,4,8,121.1,1,0,0,1,1,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9670,1,1,140.0,1,37,37,6,6,120.0,0,0,0,1,0,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,133.0,1,37,37,9,5,139.2,1,0,1,1,1,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,140.0,1,19,19,1,4,133.3,1,0,0,1,0,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,120.0,1,3,3,2,2,112.0,0,0,0,1,0,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,Enrolled +2,1,1,9147,1,1,137.0,1,19,37,9,9,124.4,0,0,0,1,0,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,130.0,1,38,38,9,3,145.6,0,0,0,1,1,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,6,9670,1,1,120.0,1,1,14,4,5,113.7,1,0,0,1,0,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,120.0,1,38,19,9,3,112.7,0,0,0,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,122.0,1,37,37,9,9,114.3,1,0,0,0,0,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,8014,0,1,133.1,1,3,1,1,7,100.0,0,0,0,1,0,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,4,19,3,5,123.7,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,4,4,4,2,120.0,1,0,0,1,1,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,3,9238,1,1,137.0,1,1,1,3,3,131.4,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,Graduate +1,43,1,9130,1,1,130.0,1,1,1,1,1,130.0,1,0,0,1,1,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9773,1,1,121.0,1,1,19,9,7,118.9,1,0,0,1,0,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,133.1,1,19,38,9,8,128.2,1,0,0,1,1,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,Enrolled +1,43,1,9070,1,1,134.0,1,19,37,7,7,132.7,1,0,0,1,1,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9147,1,1,125.0,1,1,38,7,7,120.1,0,0,1,1,1,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,129.0,1,37,37,9,9,117.1,1,0,0,1,0,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,145.0,1,38,38,5,7,138.0,1,0,0,1,0,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,120.0,105,1,1,9,9,119.0,1,0,1,0,0,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,131.0,1,1,19,9,9,127.0,0,0,0,1,1,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,100.0,1,38,19,6,10,112.8,0,0,0,1,0,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,2,9070,1,1,145.0,1,38,19,7,7,130.0,1,0,0,1,1,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,126.0,1,37,38,7,7,119.0,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,Graduate +1,1,2,9773,1,1,137.0,1,1,19,7,7,133.2,1,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,128.0,1,38,38,9,7,128.4,1,0,0,1,0,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9085,1,39,150.0,1,19,38,194,193,150.0,1,0,0,1,0,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,Enrolled +1,1,4,171,1,1,146.0,1,1,1,9,5,151.3,1,0,0,1,0,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,Graduate +1,1,6,9147,1,1,139.0,1,19,12,4,4,125.0,1,0,0,1,0,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,1,1,9,4,123.4,1,0,0,1,0,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9670,1,1,127.0,1,3,4,2,2,122.8,0,0,0,1,1,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,127.0,1,38,37,5,7,121.8,1,0,1,1,0,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,39,1,9003,1,1,130.0,1,38,37,7,7,120.0,0,0,0,1,1,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,Graduate +1,1,2,9238,1,1,100.0,1,38,1,7,7,99.3,1,0,0,1,0,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9119,1,1,160.0,1,37,37,9,6,153.7,0,0,0,1,1,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9500,1,1,138.0,1,3,1,2,5,134.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,Graduate +1,17,4,9254,1,1,124.0,1,3,3,3,3,126.1,1,0,0,1,0,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,Dropout +2,7,1,9147,1,3,110.0,1,19,1,9,9,110.0,0,0,0,1,0,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,143.0,1,3,19,3,10,126.8,0,0,0,1,1,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,Graduate +1,17,2,9670,1,1,110.0,1,1,1,4,10,115.3,1,0,0,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,9119,1,1,129.0,1,2,37,2,9,121.6,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Enrolled +1,15,1,9254,1,1,140.0,26,19,1,9,7,140.0,1,0,0,0,0,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,118.0,1,19,38,7,9,113.5,1,0,0,1,0,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,5,9853,1,1,110.0,1,19,37,7,7,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,171,1,1,145.0,1,3,1,2,10,114.5,1,0,0,1,1,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,43,2,9670,1,1,125.0,1,38,19,4,3,106.6,1,0,0,1,0,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Dropout +4,39,1,9500,1,19,133.1,1,37,37,5,7,100.0,0,0,0,0,0,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,133.0,1,1,1,9,9,119.7,1,1,1,1,1,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,Graduate +1,1,2,9853,1,1,134.0,1,1,38,9,8,122.5,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,120.0,1,19,37,3,9,100.0,0,0,0,1,0,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,37,37,6,6,100.0,0,0,1,0,1,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,160.0,1,38,38,6,6,160.0,1,0,0,1,0,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,7,116.0,0,0,0,1,0,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,Graduate +1,18,3,9500,1,1,145.0,1,1,1,4,8,133.6,1,0,0,1,0,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,3,19,2,3,124.5,0,0,0,1,0,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,125.0,1,19,38,9,8,118.3,0,0,0,1,1,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,Dropout +1,5,1,9085,1,1,150.0,1,1,1,4,4,139.4,0,0,0,1,0,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9773,1,1,133.1,1,38,38,9,5,117.0,0,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,142.0,1,1,1,4,7,131.0,1,0,0,1,0,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,1,19,3,3,154.3,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9147,1,1,135.0,1,37,38,9,9,128.0,1,0,1,1,0,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,149.0,1,37,37,9,9,138.0,0,0,0,1,1,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,38,9,9,129.2,1,0,0,1,0,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9556,1,1,147.0,1,3,4,3,2,100.0,0,0,0,1,0,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,12,133.1,1,37,37,10,9,144.0,0,0,0,1,1,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9254,1,1,100.0,1,3,19,3,5,115.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9670,1,1,140.0,1,1,1,4,3,133.4,0,0,0,1,1,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,Enrolled +1,1,2,171,1,1,127.0,1,3,39,1,3,133.5,1,0,0,1,1,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9147,1,1,112.0,1,1,19,3,5,107.8,1,0,0,1,0,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,Enrolled +2,39,1,9147,1,1,110.0,1,37,37,9,10,140.0,0,0,0,1,0,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,120.0,1,1,3,175,121,105.9,0,0,0,1,0,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,Enrolled +1,1,1,9238,1,1,168.0,1,37,37,9,9,149.5,0,0,0,1,0,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,Graduate +1,17,1,8014,0,1,141.0,1,34,34,0,0,136.1,0,0,0,1,0,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,140.0,1,1,1,4,3,130.7,1,0,0,1,1,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,Dropout +1,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,134.0,1,1,37,8,7,120.5,1,0,0,1,1,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,160.0,1,1,38,4,7,141.5,1,0,0,1,1,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,122.0,1,38,37,191,195,112.9,1,0,0,1,0,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,41,1,1,9,7,163.1,1,0,0,0,0,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,1,110.0,1,1,37,9,9,126.0,1,0,0,1,1,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,Enrolled +1,17,1,9670,1,1,109.0,1,1,1,4,4,108.0,0,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,131.0,2,37,1,9,3,126.1,1,0,0,1,1,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,1,2,9556,1,1,125.0,1,38,1,9,3,116.3,1,0,0,1,0,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,Graduate +1,17,1,9085,1,1,138.0,1,2,19,2,9,126.8,1,0,0,1,0,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,Enrolled +1,1,5,9853,1,1,128.0,1,38,37,9,9,120.3,1,0,1,0,0,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,130.0,1,1,38,4,9,122.7,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,9,133.1,1,37,34,90,90,118.1,1,0,0,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,125.0,1,1,19,4,9,114.5,1,0,0,1,0,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,Graduate +1,1,5,9773,1,1,138.0,1,19,19,9,9,139.4,1,0,0,1,0,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,125.0,1,19,38,3,5,115.9,0,0,0,1,0,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,134.0,1,38,19,5,8,120.7,0,0,0,1,0,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,133.1,41,3,1,3,10,100.0,1,0,0,0,0,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,Dropout +5,39,1,9003,1,1,133.1,1,37,37,9,7,110.0,0,0,1,0,0,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,Dropout +1,17,1,9254,1,1,128.0,1,19,1,5,7,120.7,1,0,1,1,0,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,162.0,1,19,19,4,7,152.9,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,51,1,9238,1,1,121.0,1,3,19,3,10,111.9,1,0,0,1,0,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,Graduate +1,39,2,9991,0,1,172.0,1,19,37,9,8,150.0,1,0,0,1,0,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,116.0,1,19,19,9,8,119.9,1,0,0,1,0,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,125.0,1,19,19,3,10,131.0,1,0,0,1,1,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,39,1,9500,1,4,150.0,1,3,38,3,7,127.0,1,0,0,1,1,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,128.0,1,38,38,9,9,129.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,120.0,1,3,19,4,5,115.5,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,38,38,9,6,160.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,130.0,1,3,1,2,9,130.0,1,0,0,1,0,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,140.0,1,1,19,4,8,124.6,1,0,0,1,0,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,3,3,2,2,150.0,1,0,0,1,0,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9853,1,1,133.1,1,37,19,9,5,138.3,0,0,0,1,0,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,Dropout +1,43,1,9991,0,1,150.0,1,3,3,4,4,100.0,1,0,0,1,1,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,Graduate +1,44,1,9238,1,1,150.0,1,1,38,4,9,145.9,0,0,0,1,0,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,Graduate +1,18,3,9500,1,1,131.0,1,19,1,4,7,127.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,Graduate +1,7,1,9085,1,3,150.0,1,19,37,90,90,140.0,0,0,0,1,1,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,167.0,1,19,19,9,7,156.2,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,140.0,1,1,3,4,5,130.0,0,0,0,1,1,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9238,1,1,132.0,1,1,19,4,9,127.1,1,0,0,1,0,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9119,1,1,133.0,1,3,1,3,4,121.8,1,0,0,1,1,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9670,1,1,133.1,1,1,37,4,5,150.0,0,0,0,1,1,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,150.0,103,37,37,9,9,134.6,0,0,0,1,1,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,6,9773,1,1,131.0,1,34,34,0,0,129.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,139.0,1,3,1,4,1,126.0,1,0,0,1,1,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,138.0,1,1,1,4,8,123.0,0,0,1,0,1,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,Enrolled +5,39,1,9853,1,19,133.1,1,37,37,9,8,118.0,0,0,0,1,0,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,142.0,1,37,38,9,9,137.3,1,0,0,1,0,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,136.0,1,3,38,2,9,125.7,1,0,0,1,0,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,1,1,4,10,128.3,1,0,0,1,0,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,132.0,1,1,37,4,9,127.1,0,0,0,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,122.0,1,19,19,7,7,116.1,1,0,0,1,0,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,140.0,1,1,2,3,3,140.0,0,0,0,1,0,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,Enrolled +1,42,1,9853,1,12,133.1,1,1,3,3,2,133.7,0,0,0,1,0,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,Dropout +2,7,1,9500,1,3,120.0,1,37,19,9,7,120.0,1,0,0,1,0,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,Enrolled +1,1,4,9238,1,1,134.0,1,38,19,7,7,128.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,130.0,1,19,38,4,7,121.3,1,0,0,1,0,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,Graduate +1,39,2,9238,1,1,110.0,1,19,1,5,5,136.5,0,0,0,1,1,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9670,1,1,133.1,1,38,19,9,8,122.9,0,0,1,0,1,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,124.0,1,19,1,9,3,123.7,1,0,0,1,0,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,17,1,9991,0,1,120.0,1,38,3,9,3,116.9,1,0,1,0,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,43,2,9147,1,1,160.0,1,37,37,9,9,96.0,0,0,0,0,0,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,154.0,1,19,37,9,7,140.4,1,0,0,1,0,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,Enrolled +1,17,5,9070,1,1,125.0,1,19,1,5,5,122.6,1,0,0,1,1,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9119,1,1,137.0,1,1,1,4,4,130.4,1,0,1,1,1,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,134.0,1,37,19,9,9,136.8,1,0,0,1,1,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,100.0,1,37,37,0,0,128.0,1,0,0,1,1,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +4,39,1,9130,1,19,133.1,1,37,38,9,4,100.9,0,0,0,1,1,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,127.0,1,1,19,5,7,130.5,1,0,0,1,0,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,1,1,9003,1,1,131.0,1,19,38,5,5,118.4,0,0,0,1,0,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,142.0,1,1,38,5,7,127.7,0,0,0,1,0,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,130.0,1,1,38,4,9,115.0,0,0,0,1,1,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,100.0,0,0,0,1,0,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,134.0,1,1,19,9,5,121.8,1,0,0,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,3,9853,1,1,122.0,1,1,3,5,3,113.6,0,0,0,1,0,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,114.0,1,37,37,7,8,116.7,0,0,0,1,1,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,130.0,1,3,1,3,3,120.5,0,0,0,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,148.0,1,19,19,4,5,143.5,0,0,0,1,0,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,19,9,9,107.0,0,0,0,0,1,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,130.0,1,3,19,5,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,6,120.0,0,0,0,0,0,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,1,2,9853,1,1,123.0,1,19,1,194,103,115.3,1,0,0,1,0,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,Enrolled +1,18,1,9130,1,1,135.0,1,38,19,9,5,121.7,1,0,0,1,0,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,116.0,1,38,38,5,8,110.8,1,0,0,1,0,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,7,1,9147,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9991,0,1,133.1,41,37,37,9,8,114.7,0,0,0,1,0,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,122.0,1,37,37,9,7,120.6,1,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,150.0,1,5,5,2,2,146.2,0,0,0,1,0,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,130.0,1,1,4,3,10,130.0,0,0,0,1,0,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9085,1,19,110.0,1,37,37,90,90,110.0,0,0,0,0,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,140.0,1,1,1,9,9,136.9,1,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,44,1,9085,1,39,150.0,1,19,19,9,9,150.0,1,0,0,1,0,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +2,43,1,9003,1,1,149.0,1,1,1,4,5,156.1,1,0,0,0,1,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9119,1,1,133.1,1,1,1,9,3,136.0,0,0,0,1,1,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,Dropout +1,16,2,9238,1,1,122.0,1,19,37,9,7,127.3,1,0,0,1,0,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,133.0,1,1,1,6,7,134.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,141.0,1,19,38,9,9,130.5,0,0,0,1,1,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,121.0,1,1,3,9,3,123.8,0,0,0,0,1,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,39,140.0,1,1,1,4,3,138.6,0,0,0,1,1,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9991,0,1,145.0,1,2,37,4,9,127.5,1,0,0,1,1,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,100.0,1,37,19,9,2,121.9,0,0,0,0,0,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,120.0,1,38,38,9,9,148.5,0,0,0,1,0,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +5,39,1,9991,0,1,110.0,1,1,1,3,3,119.0,0,0,0,1,1,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9254,1,1,137.0,1,1,38,2,8,122.3,1,0,0,1,1,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,42,1,9238,1,1,133.1,1,1,19,4,9,134.0,0,0,0,1,0,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,38,37,9,7,130.0,1,0,0,1,1,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,Graduate +5,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,120.0,1,37,37,9,9,111.1,0,0,0,1,0,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,124.0,1,38,19,6,10,126.8,1,0,0,1,0,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,Graduate +2,1,1,9500,1,1,151.0,1,37,38,9,7,134.5,0,0,1,1,0,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,133.0,1,19,37,9,8,121.8,1,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,148.0,1,1,19,4,5,135.1,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,120.0,1,19,38,4,8,122.5,0,0,0,0,1,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9070,1,1,140.0,1,37,37,9,10,118.0,0,0,1,1,1,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,3,133.1,1,9,9,90,90,130.0,0,0,0,1,0,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,150.0,1,34,34,0,0,108.0,0,0,0,1,0,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,1,150.0,1,1,38,3,5,120.0,0,0,0,1,1,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,Enrolled +1,44,1,9085,1,39,150.0,1,38,1,5,5,150.0,0,0,0,1,0,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,1,2,9238,1,1,133.1,1,19,19,9,9,106.0,1,0,0,1,0,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,102.0,1,38,38,9,9,99.6,1,0,0,1,0,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,140.0,1,38,19,9,5,130.0,0,0,1,1,0,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9773,1,1,138.0,1,3,1,2,3,135.9,1,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,1,9,4,150.0,1,0,0,1,1,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,Dropout +1,1,6,9147,1,1,127.0,1,1,19,1,6,120.0,1,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,0,0,0,1,1,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,137.0,1,38,38,4,8,126.5,1,0,0,1,0,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,1,19,4,4,132.6,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,130.0,1,1,1,4,9,150.0,0,0,0,1,1,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,146.0,1,3,1,1,3,149.2,1,0,0,1,0,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,129.0,1,38,38,6,6,118.5,1,0,0,1,0,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,131.0,1,19,3,3,2,126.1,1,0,0,1,0,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,Enrolled +1,39,1,9085,1,43,160.0,1,3,39,2,3,172.0,0,0,0,1,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,39,1,9670,1,1,133.1,1,1,1,4,4,112.9,0,0,0,1,0,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,Dropout +2,39,1,9003,1,1,150.0,1,37,37,9,6,140.0,0,0,0,1,1,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,127.0,1,37,38,9,7,115.8,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,133.1,1,1,37,5,9,143.0,1,0,1,1,0,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,9,138.4,1,0,1,1,0,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9070,1,1,125.0,1,1,1,4,4,132.0,0,0,0,0,0,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,5,9130,1,1,160.0,1,3,1,2,9,150.2,1,0,0,1,0,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,1,110.0,1,37,37,9,4,160.0,0,0,0,1,0,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,135.0,1,19,37,5,7,121.4,0,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9670,1,1,135.0,1,19,19,7,10,121.4,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,125.0,1,1,38,4,9,118.4,1,0,0,1,0,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,145.0,1,38,37,5,6,127.5,1,0,0,1,0,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,Graduate +1,43,3,171,1,1,140.0,1,37,38,7,7,143.4,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,134.0,1,37,19,9,10,141.4,1,0,0,1,0,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,130.0,1,29,38,9,8,122.0,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,109.0,1,19,19,4,9,104.1,1,0,1,0,0,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,116.0,1,34,34,0,0,127.0,1,0,0,1,1,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,3,8014,0,19,100.0,1,37,37,9,9,120.0,1,0,0,1,1,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9238,1,1,122.0,1,37,38,4,7,118.2,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,8014,0,1,100.0,1,12,5,9,4,116.5,0,0,1,0,0,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,122.0,1,19,19,193,194,112.6,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,42,3,9500,1,1,136.0,1,1,1,4,4,148.8,1,0,0,1,0,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,137.0,1,19,1,9,9,132.8,0,0,0,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,130.0,1,37,37,6,6,111.9,0,0,1,1,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9254,1,1,116.0,1,19,38,5,5,116.0,1,0,0,1,0,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9500,1,1,131.0,1,1,3,3,2,121.2,1,0,0,1,0,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,141.0,1,1,19,3,3,131.9,1,0,0,1,0,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,120.0,1,37,37,9,10,122.6,0,0,0,1,0,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,Dropout +1,18,5,9119,1,1,136.0,1,3,2,2,3,125.2,1,0,0,1,1,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,125.0,1,19,1,7,4,122.6,0,0,0,1,1,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,139.0,1,19,37,9,9,131.5,1,0,0,1,0,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,Graduate +1,5,1,9853,1,1,119.0,1,1,38,5,8,118.3,1,0,0,1,0,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9773,1,1,125.0,1,1,38,5,6,115.9,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,126.0,1,1,19,4,8,120.1,1,0,0,1,0,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,Graduate +1,17,1,9085,1,1,125.0,1,1,37,4,9,117.0,1,0,0,1,0,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,135.0,1,19,38,7,5,121.0,0,0,0,1,0,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,138.0,1,38,37,3,3,133.1,0,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,148.0,1,19,37,9,5,130.9,0,0,0,0,1,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,145.0,1,12,1,4,10,139.8,1,0,0,1,0,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,118.0,1,37,37,3,5,110.0,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9147,1,1,99.0,1,3,1,3,3,99.7,1,0,1,0,0,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,17,2,9556,1,1,137.0,41,1,1,7,7,124.4,1,0,0,1,0,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,Graduate +1,17,3,9853,1,1,133.1,1,34,34,0,0,115.0,0,0,0,1,0,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,123.0,1,37,38,9,9,113.9,1,0,1,0,0,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,1,4,9238,1,1,125.0,1,19,38,9,6,114.9,1,0,1,1,0,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,Enrolled +1,18,1,8014,0,1,137.0,1,1,1,4,3,123.0,0,0,1,1,0,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,Graduate +1,43,1,8014,0,1,131.0,1,19,37,8,5,125.0,0,0,0,1,1,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9147,1,3,150.0,1,6,27,1,7,150.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,9,4,117.0,0,0,0,1,0,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,133.1,1,37,1,9,10,100.0,0,0,0,1,0,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,Dropout +1,1,3,9670,1,1,121.0,1,1,19,5,5,111.9,1,0,0,1,1,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,133.1,1,1,19,3,3,112.0,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,43,1,9991,0,1,140.0,1,1,1,6,6,100.0,0,0,0,1,1,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,Graduate +2,42,1,9556,1,1,110.0,1,37,37,9,6,140.0,0,0,0,1,1,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,130.0,1,1,1,4,4,124.8,0,0,0,1,0,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,138.0,1,38,37,9,6,126.8,1,0,0,1,1,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,127.0,1,2,37,9,9,115.8,1,0,1,0,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9085,1,1,170.0,1,1,1,4,5,166.6,0,0,1,0,0,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,130.0,1,1,1,4,4,130.0,1,1,0,1,1,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,3,1,2,8,100.0,1,0,0,1,1,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9670,1,1,106.0,1,3,1,2,3,105.7,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,43,1,9556,1,1,140.0,1,37,37,9,9,128.0,1,0,0,0,0,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,127.0,1,1,4,9,10,121.8,0,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,134.0,1,1,1,9,6,130.9,0,0,1,1,0,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,133.1,1,37,37,7,4,132.0,0,0,0,1,1,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,110.0,1,12,3,5,2,100.0,1,0,0,1,1,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,6,9238,1,1,113.0,1,1,38,194,163,112.3,1,0,1,1,0,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,118.0,1,19,19,5,7,121.2,0,0,0,1,1,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,51,1,9773,1,1,158.0,1,1,19,8,8,117.1,1,0,0,1,1,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,Dropout +1,17,1,9070,1,1,119.0,1,37,38,9,8,124.6,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,111.0,1,19,19,3,10,117.7,0,0,0,1,0,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,140.0,1,3,1,5,9,130.0,0,0,0,1,1,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,122.0,1,3,1,9,10,114.7,0,0,0,1,0,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,Graduate +2,39,1,9238,1,19,133.1,1,1,2,4,6,130.0,0,0,0,1,0,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9500,1,1,131.0,1,38,1,5,7,118.4,1,0,0,1,0,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Dropout +1,43,5,9853,1,1,150.0,1,34,34,0,0,150.2,1,0,0,0,0,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,140.0,1,37,19,9,9,166.0,1,0,1,1,1,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9085,1,1,133.1,1,19,37,9,6,130.0,1,0,0,1,0,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,Graduate +1,1,4,9147,1,1,120.0,1,38,38,5,10,111.3,0,0,0,1,1,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,Enrolled +1,1,5,9500,1,1,125.0,1,3,19,4,8,120.3,1,0,0,1,0,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,Enrolled +1,17,2,9556,1,1,136.0,1,1,1,9,9,128.3,0,0,0,1,0,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,133.1,1,38,19,5,5,128.0,0,0,0,1,0,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,9,133.1,1,37,37,5,3,110.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9254,1,1,118.0,1,19,1,4,4,115.9,1,0,0,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,134.0,1,19,37,7,7,136.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,130.0,1,37,37,9,7,119.9,0,0,0,1,0,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9773,1,1,153.0,1,34,34,99,99,133.1,1,0,1,1,0,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,10,133.1,1,12,36,90,90,128.2,0,0,0,0,1,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,1,9991,0,1,112.0,1,43,40,2,2,106.4,0,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,122.0,1,3,3,2,2,122.0,1,0,0,1,0,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,137.0,1,1,19,4,3,121.3,1,0,0,1,1,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,19,133.1,1,3,1,2,5,103.0,0,0,0,1,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,136.0,1,1,19,9,9,131.5,0,0,0,1,0,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,154.0,1,1,3,4,2,164.9,0,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,6,9147,1,1,129.0,1,19,1,9,4,122.0,1,0,0,1,1,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,132.0,1,19,19,9,7,128.0,1,0,0,1,1,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,Graduate +2,39,1,9773,1,19,133.1,1,19,19,9,4,131.0,0,0,1,0,1,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,Dropout +4,39,1,8014,0,1,160.0,1,37,37,5,5,126.0,0,0,0,1,0,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,16,2,9238,1,1,126.0,1,38,37,3,5,127.1,1,0,0,1,0,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9254,1,1,111.0,1,1,19,5,7,109.3,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,133.1,1,37,37,3,10,108.0,0,0,0,1,0,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,Graduate +1,1,4,9773,1,1,140.0,22,1,37,3,9,130.5,1,0,0,1,0,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,140.0,1,1,1,9,5,140.0,0,0,0,1,0,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,Dropout +1,17,3,9670,1,1,125.0,1,1,3,4,3,117.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,150.0,1,37,38,9,9,131.5,1,0,0,1,0,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,5,100.0,0,0,0,0,1,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9773,1,1,133.0,1,19,19,7,7,134.4,1,0,0,1,1,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,135.0,1,19,37,9,9,128.0,1,0,0,1,0,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,5,9670,1,1,115.0,1,1,19,5,5,117.1,0,0,0,1,0,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,Enrolled +1,51,1,9003,1,39,130.0,1,1,19,4,4,120.0,1,0,1,0,1,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,Dropout +1,1,3,9773,1,1,117.0,1,38,19,7,7,110.4,1,0,1,0,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9773,1,1,127.0,1,19,38,8,3,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,38,37,1,1,115.0,1,0,0,1,0,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,18,2,9853,1,1,123.0,1,1,3,9,2,123.7,1,0,1,0,0,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,Dropout +1,1,3,9853,1,1,122.0,1,3,3,2,2,112.6,1,0,0,1,0,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,17,3,9254,1,1,127.0,1,37,37,9,6,123.5,1,0,0,1,0,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,141.0,1,37,37,9,9,136.3,1,0,0,1,1,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,140.0,1,3,3,2,2,124.3,0,0,0,0,1,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,125.0,1,1,3,4,1,121.9,1,0,0,1,1,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,Dropout +1,17,1,9070,1,1,134.0,1,1,1,5,0,133.3,1,0,0,1,1,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9670,1,1,127.0,22,37,37,9,9,127.0,1,0,0,1,1,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,Graduate +1,42,1,9853,1,1,120.0,1,37,38,3,3,113.7,0,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,3,9670,1,1,121.0,1,3,19,2,8,122.4,1,0,0,1,1,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,Enrolled +1,1,3,171,1,1,139.0,1,19,19,5,3,128.2,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,42,1,9085,1,1,100.0,1,1,38,4,9,100.0,1,0,0,1,0,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,10,1,9500,1,1,140.0,24,3,3,2,9,140.0,1,0,1,0,0,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,132.0,1,37,19,9,9,131.0,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,124.0,1,1,1,4,4,127.9,1,0,0,1,1,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9119,1,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9773,1,1,117.0,1,38,38,9,9,111.1,0,0,1,1,1,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,19,133.1,1,19,37,9,9,149.4,0,0,0,0,1,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,1,1,161.9,0,0,0,1,1,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,140.0,1,38,37,4,7,130.0,1,0,0,0,0,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,43,1,171,1,1,145.0,1,19,38,9,9,100.0,0,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9773,1,1,120.0,1,37,38,9,3,155.5,0,0,0,1,1,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,121.8,0,0,0,0,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9130,1,3,140.0,1,5,4,2,0,140.0,0,0,1,0,0,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,Dropout +1,51,1,171,1,1,128.0,1,2,1,3,3,131.2,1,0,0,1,1,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,12,110.0,1,37,37,7,9,120.0,0,0,0,1,0,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,150.0,1,2,3,3,2,140.8,0,0,0,1,0,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,Enrolled +1,43,1,9070,1,1,125.0,1,19,19,7,8,133.4,1,0,0,1,1,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,Enrolled +1,1,5,171,1,1,160.0,1,1,1,4,4,139.7,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,1,120.0,1,1,38,9,9,150.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,154.0,1,19,19,3,3,142.0,0,0,0,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9254,1,1,110.0,1,4,19,4,3,114.8,1,0,0,0,1,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9119,1,1,140.0,1,34,34,9,9,140.0,0,0,0,0,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,125.0,1,1,1,4,2,134.1,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9254,1,40,130.0,1,1,1,3,6,130.0,0,0,0,1,0,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9254,1,1,122.0,1,37,37,9,3,124.5,1,0,0,1,0,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,130.0,1,1,3,9,2,128.6,1,0,0,1,0,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,Graduate +1,17,4,9670,1,1,122.0,1,3,1,2,3,119.6,1,0,0,1,1,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,Graduate +1,44,3,9085,1,39,150.0,1,1,19,4,1,150.0,1,0,0,1,0,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,19,37,9,9,130.0,1,0,0,1,1,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,133.1,1,38,19,4,7,98.0,1,0,0,1,1,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,Enrolled +1,17,2,9556,1,1,125.0,1,38,19,7,7,121.5,1,0,0,1,0,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,Dropout +2,1,4,9500,1,1,143.0,1,38,38,5,5,128.7,1,0,0,1,0,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,1,100.0,1,1,19,4,8,122.0,0,0,0,1,0,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,Graduate +1,51,1,9500,1,1,170.0,1,1,1,4,10,125.0,0,0,0,1,1,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,Graduate +1,18,4,9500,1,1,137.0,1,3,1,3,4,126.7,1,0,0,1,0,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,19,133.1,1,38,38,9,8,106.0,1,0,0,1,1,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,40,130.0,1,19,1,3,4,152.0,1,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9085,1,39,140.0,1,1,39,3,9,140.0,1,0,0,1,0,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9773,1,1,133.1,1,3,1,4,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +2,43,1,9853,1,1,110.0,1,37,37,7,7,100.0,0,0,0,1,1,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,Graduate +1,7,1,9119,1,3,120.0,1,19,19,1,1,120.0,0,0,0,0,1,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,1,130.0,1,34,34,99,99,114.8,0,0,0,1,0,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,140.0,1,37,3,9,10,172.0,0,0,0,1,1,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,Enrolled +1,17,2,9670,1,1,123.0,1,34,37,0,0,114.6,1,0,1,0,0,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,Dropout +1,43,2,9500,1,1,136.0,1,19,1,9,10,124.1,0,0,0,1,1,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,116.0,1,1,1,1,1,110.8,1,0,0,1,0,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9003,1,1,133.1,1,37,37,4,7,130.0,0,0,1,0,1,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,Dropout +1,1,3,9085,1,1,158.0,1,1,19,9,9,153.6,1,0,0,1,0,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,Graduate +1,17,4,9773,1,1,121.0,1,1,19,9,8,120.3,1,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,5,3,9085,1,1,141.0,1,1,19,7,5,128.8,1,0,0,1,0,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,Enrolled +1,18,4,9556,1,1,127.0,1,1,38,4,7,121.8,1,0,0,1,0,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,110.0,1,34,34,0,0,114.6,1,0,0,1,0,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9085,1,1,128.0,1,38,19,8,8,117.2,0,0,0,1,1,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,143.0,1,1,38,3,3,133.2,1,0,0,1,0,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,Graduate +1,1,4,9853,1,1,134.0,1,19,1,5,9,127.4,1,0,0,1,0,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Enrolled +1,1,1,9670,1,1,133.1,1,3,1,1,7,155.0,0,0,0,1,0,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,114.0,1,19,38,9,7,129.1,0,0,0,1,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,149.0,1,19,37,7,4,134.3,0,1,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,130.0,1,1,38,3,5,128.6,1,0,0,1,1,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,42,1,9147,1,1,139.0,1,3,38,2,5,112.3,1,0,0,1,0,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,Enrolled +1,1,3,9773,1,1,130.0,1,19,19,9,9,123.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,38,38,9,5,100.0,0,0,0,1,0,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,Enrolled +6,39,1,8014,0,1,133.1,1,37,1,9,7,114.8,0,0,0,1,0,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,121.0,1,1,38,4,9,114.4,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,18,1,9238,1,1,122.0,1,38,38,9,7,114.7,0,0,1,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9773,1,1,120.0,1,1,1,2,5,127.0,1,0,0,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,4,1,2,8,120.0,0,0,0,1,1,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,3,9500,1,1,143.0,1,38,1,9,5,133.8,1,0,0,1,0,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,130.0,1,1,19,9,7,133.8,0,0,1,1,0,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,Graduate +2,39,1,9556,1,1,100.0,1,37,37,9,9,120.0,0,0,0,1,0,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,133.1,1,1,19,5,4,102.5,0,0,0,1,0,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9003,1,1,111.0,1,1,3,4,2,162.4,0,0,1,0,1,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,133.1,1,19,1,9,3,107.0,1,0,0,1,0,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,128.0,1,19,1,4,4,124.3,1,0,0,1,1,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,140.0,1,36,14,9,10,130.0,1,0,0,1,1,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,150.0,1,38,19,7,10,134.6,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9070,1,1,134.0,1,34,1,5,7,129.8,1,0,0,1,0,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,150.0,1,37,37,9,3,150.0,1,0,0,1,1,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,Dropout +2,39,1,9238,1,1,126.6,1,38,38,9,7,107.5,0,0,1,1,0,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,120.0,1,37,37,9,7,106.8,0,0,0,1,0,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9254,1,1,117.0,1,1,1,5,5,116.3,1,0,0,1,1,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,130.0,1,19,19,5,5,157.0,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9556,1,1,133.1,1,44,40,2,2,115.5,0,0,0,1,0,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,133.1,1,3,1,2,4,125.0,0,0,0,1,1,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,9,9,100.0,0,0,0,0,1,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9500,1,1,141.0,1,37,1,9,4,127.3,1,0,0,1,0,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,117.0,1,38,38,175,183,113.2,1,0,1,1,0,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,133.1,1,37,37,7,7,124.5,0,0,0,0,1,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,Dropout +1,17,2,9070,1,1,133.1,1,37,38,9,10,178.0,1,0,0,1,1,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,19,9,9,115.0,1,0,0,1,1,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,146.0,1,1,1,3,4,128.2,0,0,1,1,0,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,4,9070,1,1,128.0,1,1,1,9,10,136.1,1,0,1,0,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,Dropout +5,39,1,9500,1,3,140.0,1,37,38,9,9,160.0,0,0,0,1,0,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,8,121.0,0,0,1,0,0,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,140.0,1,2,1,2,3,140.0,1,0,0,1,0,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,3,9670,1,1,126.0,1,37,37,0,0,136.5,1,0,0,1,0,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,140.0,1,19,37,9,9,130.2,1,0,0,1,0,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,1,3,1,2,133.0,0,0,0,1,0,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,136.0,1,19,38,9,9,121.7,1,0,0,1,1,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,4,9085,1,1,106.0,1,37,1,3,9,106.0,0,0,0,1,0,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,Enrolled +1,1,3,9500,1,1,135.0,1,1,37,7,7,120.5,1,0,0,1,0,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,115.0,1,19,19,7,7,115.0,1,0,0,1,0,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9238,1,1,160.0,1,38,1,9,3,124.0,0,0,1,1,1,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,129.0,1,38,38,5,5,120.8,1,0,0,1,0,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,160.0,41,37,19,9,9,160.0,0,0,0,1,0,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,132.0,1,1,19,7,5,129.9,1,0,0,1,1,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,136.0,1,37,38,9,8,139.2,1,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,127.0,1,19,37,9,7,121.3,1,0,0,1,0,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9119,1,1,142.0,1,1,38,4,3,129.8,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,5,8,133.2,0,0,0,0,1,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,Dropout +1,1,1,9147,1,1,150.0,1,1,19,5,5,137.8,1,0,0,1,1,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,135.0,1,3,1,2,4,129.8,1,0,0,1,1,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,Graduate +1,43,2,9773,1,1,132.0,1,19,19,0,0,127.1,0,0,0,1,1,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,3,9500,1,1,140.0,1,3,2,3,3,126.4,1,0,0,1,0,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,Dropout +2,39,2,9119,1,19,133.1,1,37,37,7,7,118.0,0,0,0,0,1,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,110.0,1,3,4,2,2,110.0,1,0,0,1,1,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,Dropout +2,39,1,9500,1,38,133.1,1,37,37,9,3,146.6,0,0,0,1,1,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,146.0,1,1,3,4,1,135.2,1,0,0,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,3,5,2,2,135.8,0,0,1,1,1,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9773,1,19,100.0,1,37,37,0,0,163.5,0,0,1,0,1,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,7,113.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,143.0,1,3,3,9,7,129.0,1,0,0,1,1,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,Graduate +1,1,2,9853,1,1,117.0,1,1,38,4,9,109.7,1,0,0,1,0,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9130,1,2,133.1,6,42,1,4,9,100.0,0,0,0,1,1,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,115.8,0,0,1,0,1,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9773,1,1,167.0,1,38,38,6,7,153.0,1,0,0,1,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,51,1,9238,1,1,141.0,1,1,1,5,9,125.0,0,0,0,1,1,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,4,9500,1,1,132.0,1,38,19,5,7,125.5,0,0,0,1,0,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,Graduate +1,1,1,9119,1,1,132.0,1,1,12,3,3,133.1,1,0,0,1,1,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,149.0,1,1,1,4,4,129.3,1,0,0,1,1,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,142.5,0,0,0,1,0,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,Enrolled +1,1,6,9773,1,1,133.1,1,1,37,3,3,100.0,1,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,138.0,1,37,37,9,6,145.0,1,0,0,1,0,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,19,19,3,6,124.3,1,0,0,1,0,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,135.0,1,37,37,9,7,132.6,1,0,0,1,0,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,159.0,1,34,26,0,6,160.1,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,133.1,1,37,37,6,8,100.0,0,0,1,1,0,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9070,1,1,153.0,1,3,3,1,2,146.7,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,43,1,171,1,2,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,141.0,1,19,19,9,8,142.8,0,0,0,1,0,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,39,2,9556,1,1,130.0,1,19,19,4,5,100.0,0,0,0,1,1,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,120.0,1,38,19,3,5,120.0,0,0,0,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,2,9147,1,1,120.0,1,37,37,9,9,104.0,0,0,0,0,1,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,150.0,1,38,38,9,9,132.0,1,0,0,1,0,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,142.0,1,38,38,9,9,132.9,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9085,1,1,160.0,1,4,19,2,5,162.1,1,0,0,1,0,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,8,130.2,1,0,0,1,0,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,118.0,1,1,1,9,9,111.0,0,0,0,0,1,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,119.0,1,37,37,10,6,119.7,1,0,0,1,0,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,Enrolled +1,17,2,171,1,1,137.0,1,1,1,4,1,143.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,18,3,9085,1,1,149.0,103,1,1,9,9,132.2,1,0,0,1,0,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,130.0,1,37,37,90,90,125.1,0,0,0,1,0,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,Graduate +4,17,5,8014,0,1,100.0,1,19,19,90,90,107.0,0,0,0,1,0,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,19,133.1,1,38,19,9,10,142.7,0,0,1,1,1,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,139.0,1,19,37,5,5,125.5,0,0,0,1,0,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,133.0,1,4,1,5,5,131.6,0,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,148.0,1,19,19,9,3,125.0,1,0,0,1,0,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,110.0,1,37,37,9,9,110.3,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,53,1,9003,1,42,130.0,1,38,38,9,9,130.0,1,0,1,1,1,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,Enrolled +1,1,4,9070,1,1,140.0,1,4,19,2,10,125.0,1,0,0,1,1,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9003,1,39,140.0,1,19,1,5,5,140.0,0,0,0,1,0,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,Enrolled +1,1,4,9070,1,1,136.0,1,37,37,9,8,136.7,1,0,0,1,0,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,1,5,9773,1,1,125.0,1,37,3,5,2,126.1,1,0,0,1,1,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,8014,0,1,126.0,1,37,38,9,10,119.4,0,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,123.0,1,1,3,2,2,118.8,0,0,0,1,1,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9500,1,1,144.0,1,1,37,9,9,127.5,1,0,0,1,0,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,125.0,1,38,37,8,7,131.7,1,0,0,1,1,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,144.0,1,37,37,8,8,138.4,0,0,0,1,0,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,160.0,1,37,37,3,4,97.0,0,0,0,1,0,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,37,38,9,9,125.0,1,0,0,1,0,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,117.0,1,37,37,9,9,109.3,0,0,0,0,0,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,3,130.0,1,37,37,9,9,146.2,0,0,0,1,0,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,150.0,1,37,37,9,9,130.3,0,0,0,1,0,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,Graduate +2,39,2,8014,0,19,100.0,1,37,37,4,7,100.0,0,0,1,1,0,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,38,133.1,1,38,37,4,8,95.5,0,0,0,1,1,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,120.7,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9119,1,19,120.0,1,37,37,9,4,98.6,0,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9130,1,1,120.0,1,19,37,1,9,116.1,1,0,0,1,1,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9500,1,1,136.0,1,1,1,4,9,128.5,1,0,0,1,0,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,132.0,1,38,37,7,7,131.3,1,0,0,1,0,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,115.0,1,38,38,9,8,108.4,1,0,0,1,0,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,120.0,1,37,37,9,9,98.7,0,0,0,1,1,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,120.0,1,37,37,9,9,155.8,0,0,0,1,1,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,151.0,1,19,1,5,0,144.4,1,0,0,1,0,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,Graduate +1,43,2,9147,1,1,131.0,1,19,37,5,9,123.7,1,0,0,1,0,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,Enrolled +1,17,4,9085,1,1,128.0,1,38,37,4,9,117.9,1,0,0,1,0,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,8014,0,12,133.1,1,37,1,9,10,112.5,0,0,0,1,1,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,19,133.1,1,37,37,4,8,140.0,0,0,0,1,0,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,7,1,9147,1,2,150.0,1,3,37,2,5,150.0,1,0,1,0,0,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,2,9147,1,1,102.0,1,37,38,191,143,101.7,1,0,0,1,0,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,128.0,1,19,1,4,1,118.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,133.1,1,19,1,4,8,144.3,0,0,0,1,1,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,5,9254,1,1,128.0,1,19,1,7,10,116.5,1,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,140.0,1,19,19,7,5,135.1,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,18,2,9500,1,1,129.0,1,38,37,5,5,119.0,1,0,0,1,0,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,3,1,3,3,131.5,1,0,0,1,0,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,143.0,1,3,3,2,5,144.8,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,127.0,1,37,37,9,8,123.2,1,0,0,1,0,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9500,1,1,125.0,1,37,37,9,7,123.6,1,0,0,1,0,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,138.0,1,1,38,3,9,123.0,1,0,0,1,0,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,139.0,1,38,38,9,9,145.0,1,0,0,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,121.0,1,37,19,6,7,116.8,1,0,0,1,0,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,2,9085,1,1,123.0,1,1,19,4,9,113.6,1,0,0,1,0,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,17,6,9773,1,1,126.0,1,1,19,5,5,119.0,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,4,9119,1,1,139.0,1,37,19,9,4,133.1,1,0,0,1,1,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,158.0,1,1,38,3,6,155.2,0,0,0,1,1,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,8014,0,1,133.1,1,19,1,1,1,118.0,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,136.0,1,22,30,0,8,135.7,1,0,0,1,0,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,120.0,1,37,37,9,9,110.0,0,0,0,0,1,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,124.0,1,19,19,7,9,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,Enrolled +5,7,1,9991,0,2,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,4,9238,1,1,123.0,1,38,1,4,10,129.0,1,0,0,1,0,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,4,9119,1,1,135.0,1,38,37,5,7,126.6,1,0,0,1,1,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,129.0,1,5,3,5,7,124.8,1,0,0,1,0,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,Graduate +1,17,5,9147,1,1,127.0,1,1,38,4,5,124.6,1,0,0,1,0,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,135.0,1,1,1,4,4,118.5,0,0,0,1,0,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,171,1,1,142.0,1,3,1,2,6,139.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9147,1,1,133.1,1,19,19,9,9,119.8,0,0,0,1,1,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,123.0,1,1,37,9,9,132.1,0,0,0,1,0,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9853,1,1,115.0,1,3,37,2,5,108.7,1,0,0,1,0,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,12,133.1,1,37,34,90,90,110.7,1,0,0,1,0,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,155.0,1,4,3,1,1,144.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9254,1,1,105.0,1,1,19,9,6,106.1,1,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,150.0,1,19,19,3,4,135.0,0,0,0,1,0,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,152.0,1,37,37,5,7,136.3,0,0,0,1,0,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,34,34,0,0,120.5,1,0,0,1,1,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,140.0,1,1,37,4,5,123.6,1,0,0,1,0,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,120.0,1,37,37,9,9,150.1,1,0,0,1,1,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,144.0,1,37,38,9,9,126.9,0,0,0,1,0,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,120.0,1,37,37,9,9,128.2,0,0,0,0,1,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,Dropout +1,18,2,9147,1,1,115.0,1,1,37,5,5,108.7,1,0,0,1,0,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,140.0,1,19,19,4,4,140.0,1,0,0,0,1,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,1,1,3,7,140.0,1,0,0,1,0,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9500,1,1,129.0,1,19,19,5,5,119.6,1,0,0,1,0,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,Graduate +1,17,6,9773,1,1,141.0,1,37,37,5,5,127.7,1,0,0,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,137.0,1,19,37,4,7,126.3,1,0,0,1,0,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,1,168.0,1,1,41,9,3,153.9,0,0,1,0,1,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,133.0,1,37,37,9,9,121.8,1,0,0,1,0,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,119.0,1,2,1,4,3,113.1,1,0,0,1,0,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,142.0,1,38,19,141,171,115.0,0,0,0,1,0,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,4,9773,1,1,138.0,1,37,19,5,7,133.5,1,0,0,0,0,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +2,7,1,8014,0,3,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,133.0,1,3,19,2,5,130.8,1,0,0,1,0,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,137.0,1,38,19,152,171,131.1,1,0,0,1,0,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9119,1,1,130.0,1,1,38,3,3,129.3,0,0,0,1,1,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Graduate +1,43,1,9773,1,1,126.0,1,1,37,3,0,110.0,0,0,1,1,0,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,116.0,1,1,12,5,8,110.4,1,0,0,1,1,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,1,1,4,10,110.0,0,0,1,1,0,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,5,9238,1,1,134.0,1,38,37,9,9,126.0,0,0,1,0,0,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,Dropout +2,39,1,9147,1,1,130.0,1,1,19,9,9,109.9,0,0,0,0,0,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9085,1,1,133.1,41,37,37,9,9,109.6,0,0,0,1,0,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,1,140.0,0,0,0,1,1,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,Enrolled +2,39,1,9991,0,19,133.1,1,38,38,90,90,121.7,1,0,0,1,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,143.0,1,1,3,4,7,129.7,1,0,0,1,0,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,133.0,1,1,19,9,6,121.5,1,0,0,1,0,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,133.0,1,38,37,9,9,125.3,1,0,0,1,0,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,Graduate +1,42,1,9991,0,1,160.0,1,1,2,4,3,120.0,0,0,0,1,0,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,Graduate +2,39,2,9556,1,1,133.1,105,1,3,9,2,152.8,1,0,0,1,0,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,123.0,1,1,1,4,6,118.8,1,0,0,1,0,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,122.0,1,3,19,2,3,112.9,0,0,0,1,0,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,Graduate +1,1,5,9853,1,1,123.0,1,1,12,4,9,113.2,1,0,0,1,0,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,140.0,1,37,37,9,9,141.5,1,0,1,0,0,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,129.0,1,19,19,4,8,127.3,1,0,0,1,0,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,1,130.0,1,37,37,6,6,110.0,0,0,0,1,0,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,Enrolled +4,39,1,8014,0,19,133.1,1,37,37,9,9,95.0,0,0,1,0,0,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9853,1,1,127.0,1,37,19,9,8,137.5,1,0,0,1,0,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,142.0,1,38,37,5,7,128.8,1,0,0,1,0,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,Graduate +1,17,2,9147,1,1,142.0,1,19,19,4,8,127.3,0,0,0,1,0,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +3,39,1,9991,0,1,120.0,1,37,1,9,2,170.0,0,0,0,1,1,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,138.0,1,19,37,4,9,141.0,0,0,0,1,1,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,132.0,1,1,38,9,9,120.1,1,0,0,1,1,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,140.0,1,1,1,2,7,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,121.0,1,37,19,9,10,113.7,0,0,0,1,0,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,Enrolled +1,39,1,8014,0,38,133.1,1,1,1,4,4,107.5,0,0,1,0,1,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,150.0,1,1,1,5,1,155.6,0,0,0,1,0,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,150.0,1,37,37,9,6,131.1,0,0,0,1,0,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,100.0,1,3,19,1,1,117.9,0,0,0,0,1,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,2,9991,0,1,150.0,1,37,37,9,9,120.0,0,0,0,1,0,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,150.0,1,1,38,4,9,150.0,0,0,0,1,1,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,Enrolled +2,43,1,9130,1,9,133.1,1,34,34,0,0,128.2,0,0,0,1,1,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,141.0,1,1,1,90,3,127.8,0,0,0,1,0,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,116.0,1,3,3,0,1,108.7,1,0,0,1,1,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,Dropout +2,39,1,9500,1,1,140.0,1,19,19,9,7,110.5,0,0,0,1,0,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9254,1,19,133.1,1,34,34,0,0,120.0,0,0,1,0,1,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,133.1,1,37,37,191,172,115.2,0,0,0,1,0,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,6,160.0,0,0,0,1,0,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,133.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9556,1,1,131.0,1,19,38,9,7,128.5,0,0,0,1,0,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,160.0,1,37,38,9,7,161.0,1,0,0,1,0,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,136.0,1,3,3,1,2,152.5,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9853,1,1,114.0,1,19,37,5,5,109.5,1,0,0,1,0,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,150.0,1,37,37,9,7,122.5,0,0,0,1,1,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,Dropout +1,44,1,9991,0,39,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,8014,0,42,140.0,1,19,37,134,193,138.0,1,0,1,1,0,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,127.0,1,2,19,3,9,121.5,0,0,0,1,1,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,133.1,1,19,19,3,3,125.3,0,1,0,1,1,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,4,9670,1,1,125.0,1,4,19,2,5,118.0,1,0,0,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,Graduate +2,42,1,9070,1,1,170.0,1,37,25,0,4,148.5,0,0,0,1,1,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,Dropout +1,17,5,9254,1,1,121.0,1,1,19,4,7,116.5,1,0,0,0,1,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,120.0,1,19,38,5,9,130.2,0,0,0,1,0,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,140.0,1,19,37,9,9,140.7,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,140.0,1,19,19,5,9,131.3,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,42,1,9119,1,1,140.0,1,3,3,3,2,133.6,1,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,8014,0,1,150.0,1,19,2,4,6,148.0,0,0,0,1,0,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,127.0,1,37,2,9,4,123.2,1,0,0,1,0,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,119.0,1,19,37,9,9,119.4,1,0,0,1,0,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,132.0,1,2,1,4,1,127.8,0,0,0,1,1,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,Dropout +1,42,1,9119,1,1,136.0,1,1,37,5,5,117.5,0,0,0,1,1,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9991,0,1,122.0,1,37,37,9,3,113.6,0,0,0,1,1,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,5,6,137.4,0,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,128.0,1,19,19,5,4,116.5,0,0,0,1,0,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,139.0,1,1,38,6,6,143.6,1,0,1,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9130,1,1,154.0,1,3,3,2,2,137.2,1,0,1,1,1,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,6,9500,1,1,142.0,1,19,37,4,9,131.9,1,0,0,1,0,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Dropout +1,1,2,9773,1,1,131.0,1,19,37,9,10,121.9,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +2,7,1,9130,1,3,120.0,1,3,3,1,1,128.2,0,0,0,1,0,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,19,133.1,1,37,37,9,9,150.3,0,0,0,1,0,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,125.0,1,37,37,5,5,124.0,0,0,0,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,135.0,1,37,19,9,9,125.2,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,9,124.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,175.0,1,3,38,2,10,157.5,1,0,0,1,0,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,139.0,1,1,1,4,10,140.7,0,0,0,1,1,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,Dropout +1,1,4,9500,1,1,128.0,1,1,1,4,10,125.2,1,0,0,1,1,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,150.0,1,1,37,1,1,131.5,1,0,0,1,0,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,168.0,1,38,1,9,10,166.0,1,0,0,1,0,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,Graduate +1,51,1,9070,1,1,125.0,1,42,3,125,124,130.0,1,0,0,1,1,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,135.0,1,1,38,4,5,127.5,1,0,0,1,0,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,Graduate +1,18,1,9119,1,1,148.0,1,3,19,3,5,147.7,0,0,0,1,1,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9773,1,1,130.0,109,19,1,9,9,126.9,1,0,0,1,0,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,125.0,1,19,38,3,7,114.9,0,0,0,1,0,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,Graduate +1,7,1,9119,1,3,130.0,1,37,37,9,9,130.0,0,0,0,0,1,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9853,1,1,130.0,1,37,19,7,3,140.0,0,0,1,1,0,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,112.0,1,3,1,3,5,111.0,0,0,0,1,0,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,37,38,193,181,125.9,0,0,0,1,0,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,Graduate +1,42,1,9119,1,1,120.0,1,34,34,0,0,128.2,1,0,0,1,1,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,19,133.1,1,37,37,9,9,117.2,0,0,0,1,0,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9147,1,1,131.0,1,19,38,9,7,132.4,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9003,1,1,180.0,1,1,1,4,8,179.6,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,5,9119,1,1,135.0,1,37,37,90,90,122.1,1,0,0,1,1,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.0,1,1,38,5,10,131.3,1,0,0,1,0,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,126.0,1,37,19,5,5,119.3,0,0,0,1,0,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,110.0,1,19,37,9,6,120.0,0,0,1,0,1,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9556,1,1,130.0,1,37,37,9,9,159.0,1,0,0,1,0,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,141.0,1,19,38,4,5,133.7,1,0,0,1,1,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,1,37,4,6,120.0,0,0,0,1,1,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9085,1,1,123.0,1,3,19,2,9,118.9,0,0,0,1,1,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,17,1,9991,0,1,140.0,1,38,37,6,7,127.3,0,0,0,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,151.0,1,3,1,2,1,129.8,1,0,0,1,1,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,113.0,1,37,37,0,6,128.2,0,0,0,0,0,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9070,1,1,117.0,1,1,37,4,7,127.9,1,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,145.0,1,19,19,9,7,136.6,0,0,0,1,0,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.0,1,34,37,4,9,134.4,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,9238,1,39,130.0,1,38,38,5,10,126.7,0,0,1,1,0,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9773,1,1,122.0,1,1,1,4,7,116.8,1,0,1,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,3,9147,1,1,124.0,1,1,1,5,3,116.7,1,0,0,1,1,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,38,1,9,4,123.2,0,0,0,1,0,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,Enrolled +1,39,1,9556,1,40,130.0,1,1,1,4,5,145.0,0,0,0,1,0,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,Enrolled +1,43,1,9147,1,1,127.0,25,1,5,9,10,124.2,1,0,0,1,1,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,43,1,9670,1,1,120.0,1,34,34,0,0,128.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9238,1,1,122.0,1,1,3,9,2,112.6,1,0,0,1,1,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,122.0,1,1,1,4,4,119.6,1,0,0,1,0,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,Enrolled +1,17,5,9670,1,1,125.0,1,1,19,9,7,119.4,1,0,0,1,0,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,146.0,1,19,37,9,7,153.0,1,0,0,1,0,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,108.0,1,38,38,7,7,115.0,1,0,1,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,133.1,1,1,1,3,9,138.0,1,0,0,1,0,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,140.0,1,37,37,9,5,140.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,19,133.1,1,2,1,2,4,100.0,0,0,0,1,1,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9147,1,1,129.0,1,38,37,3,5,132.9,1,0,0,1,0,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,149.0,1,3,2,2,5,151.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,135.0,1,19,4,9,2,143.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9147,1,1,158.0,1,19,37,9,7,130.0,1,0,0,1,0,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,Graduate +1,17,6,9556,1,1,122.0,1,1,1,4,5,117.1,1,0,0,1,0,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9556,1,12,133.1,1,34,34,99,99,100.5,0,0,0,1,0,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9003,1,1,123.0,1,37,37,9,9,110.0,0,0,1,0,0,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,138.0,1,3,3,2,2,127.5,1,0,0,1,0,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,Graduate +1,43,1,9500,1,1,121.0,1,38,19,5,5,115.4,1,0,0,1,0,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,Enrolled +1,17,4,9147,1,1,114.0,1,19,19,4,4,109.5,1,0,0,1,1,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,148.0,1,1,1,4,8,145.2,0,0,0,1,1,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,121.0,1,1,1,4,4,123.1,1,0,0,1,1,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,150.0,1,3,3,2,5,154.6,1,0,0,1,0,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,151.0,1,19,38,9,9,157.0,1,0,1,1,0,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,101.0,0,0,0,1,0,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,2,9254,1,1,127.0,1,3,19,3,10,130.9,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,146.0,1,1,1,9,8,149.5,1,0,0,1,1,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9130,1,6,133.1,1,1,29,4,90,123.3,1,0,0,1,0,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,3,3,7,146.5,1,0,1,1,1,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,Enrolled +1,7,1,8014,0,40,120.0,1,37,19,9,3,120.0,0,0,0,1,0,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9853,1,1,125.0,1,37,37,9,9,114.9,1,0,1,0,0,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,2,9773,1,1,140.0,1,1,1,4,3,131.6,0,0,0,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,142.0,1,1,19,9,9,136.1,0,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,113.0,1,1,1,4,4,106.7,1,0,0,1,0,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,130.0,1,1,2,4,2,130.0,0,0,0,1,1,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,39,1,9119,1,1,130.0,1,19,37,9,9,134.0,0,0,0,1,1,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,Enrolled +1,18,1,9500,1,1,123.0,1,37,37,3,3,118.0,1,0,0,1,0,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,Graduate +1,10,2,9085,1,1,163.3,22,19,1,4,9,163.3,0,0,0,1,0,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,5,135.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,136.0,1,4,5,2,2,126.2,0,0,0,1,1,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,150.0,1,1,37,4,8,150.0,1,0,0,0,0,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9085,1,3,140.0,1,19,20,4,90,140.0,1,0,0,1,0,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,43,1,9070,1,1,135.0,1,1,38,3,9,126.4,1,0,0,1,0,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,140.0,1,19,38,7,8,129.9,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,133.1,1,1,1,9,9,155.0,0,0,0,1,0,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,5,9773,1,1,122.0,1,38,38,7,7,123.1,1,0,0,0,0,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,117.0,1,1,1,9,9,109.3,1,0,0,1,0,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9500,1,1,130.0,1,1,38,9,9,125.1,1,0,0,1,0,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,Enrolled +1,1,2,9773,1,1,144.0,1,3,3,3,2,140.2,1,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,145.0,1,1,1,4,10,145.0,0,0,0,1,0,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,Dropout +1,51,1,9070,1,1,143.0,1,1,1,4,4,120.0,1,0,0,1,0,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,145.0,1,1,38,90,8,132.8,1,0,0,0,1,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9556,1,1,120.0,1,38,38,191,193,120.0,0,0,1,1,0,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,148.0,1,19,1,7,5,138.3,1,0,0,1,1,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,146.0,1,3,3,3,6,133.4,1,0,0,1,0,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,Graduate +1,17,1,9130,1,1,131.0,1,12,12,2,8,128.2,1,0,0,1,1,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,6,9556,1,1,115.0,1,19,2,5,3,112.2,1,0,0,1,0,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,Graduate +1,43,1,9556,1,1,126.0,1,2,3,3,2,100.0,0,0,0,1,0,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,Enrolled +1,17,1,9238,1,1,120.0,1,19,37,9,9,113.0,1,0,0,1,0,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,132.0,1,19,38,5,5,118.0,1,0,0,1,0,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,Graduate +2,1,1,9238,1,1,145.0,1,37,34,9,7,139.4,0,0,0,0,0,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,131.0,1,38,38,191,174,125.4,1,0,0,1,0,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,39,1,9119,1,1,120.0,1,37,38,9,10,145.4,0,0,1,1,1,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,Dropout +1,1,1,9130,1,1,138.0,1,4,5,2,2,123.0,1,0,0,1,0,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,127.0,1,5,3,4,4,122.8,1,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,136.0,1,1,1,4,4,127.0,1,0,0,1,0,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,Enrolled +1,17,3,9119,1,1,115.0,1,3,1,3,3,116.1,1,0,0,0,1,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,143.0,1,38,37,4,9,116.5,1,0,0,1,0,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,3,19,3,8,134.9,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,Graduate +1,44,1,9119,1,39,140.0,1,5,41,3,2,140.0,0,0,0,1,1,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,124.0,1,19,19,9,3,115.6,1,0,0,0,1,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9500,1,3,130.0,1,19,38,5,3,130.0,0,0,0,1,0,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,137.0,1,1,1,4,10,124.8,1,0,0,1,1,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,138.0,1,1,3,1,4,127.5,1,0,0,1,1,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,112.0,1,1,1,5,1,111.7,0,0,1,0,1,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,Dropout +1,1,4,9500,1,1,147.0,1,1,1,4,9,124.5,1,0,0,1,0,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,Graduate +1,7,1,9500,1,3,140.0,1,3,19,2,6,140.0,0,0,0,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,121.0,1,19,19,7,7,113.0,1,0,0,1,0,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,8014,0,1,96.0,1,3,1,3,9,100.0,0,0,0,1,0,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,152.0,1,1,38,4,5,144.7,0,0,0,1,0,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,Graduate +2,1,1,9070,1,1,127.0,1,12,19,9,9,123.2,0,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,Graduate +1,1,3,9070,1,1,147.0,1,34,37,5,7,135.8,1,0,0,1,0,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,7,1,9119,1,4,180.0,1,4,3,2,7,180.0,0,0,1,1,1,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,Enrolled +1,1,6,9500,1,1,129.0,1,37,19,9,7,127.8,1,0,0,1,0,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,100.0,1,37,37,7,7,160.0,1,0,0,1,0,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,127.0,1,19,1,5,5,117.6,1,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9003,1,1,110.0,1,1,1,9,4,120.0,0,0,1,0,1,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9773,1,1,143.0,11,19,19,4,9,133.9,1,0,0,1,1,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,160.0,1,37,37,7,7,156.1,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,43,2,9670,1,1,135.0,1,3,19,1,7,123.5,1,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,1,130.0,1,38,3,132,122,100.0,0,0,0,1,1,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,Enrolled +1,15,1,9238,1,1,150.0,26,19,1,9,9,146.5,1,0,1,0,1,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,Graduate +1,17,6,9119,1,1,129.0,1,37,13,4,90,117.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,3,130.0,1,3,3,3,10,147.6,0,0,0,1,1,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,171,1,1,145.0,1,1,1,3,3,140.1,1,0,0,1,0,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,43,3,9254,1,1,135.0,1,3,3,2,2,122.1,0,0,0,1,1,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,171,1,1,140.0,41,1,1,5,7,146.3,1,0,0,1,0,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9070,1,1,126.0,1,38,38,9,8,129.9,1,0,0,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Graduate +1,7,1,9070,1,3,120.0,1,4,4,2,2,120.0,0,0,0,1,1,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,Dropout +1,17,4,9070,1,1,144.0,1,38,1,9,9,137.4,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,125.0,1,3,3,2,3,118.0,1,0,0,1,1,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,Dropout +5,39,1,9238,1,1,130.0,1,19,38,9,10,146.0,0,0,0,1,1,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,5,107.5,0,0,0,1,0,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9773,1,1,130.0,1,1,19,1,3,161.5,0,0,0,1,1,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,140.0,1,19,19,9,4,127.8,1,0,0,1,1,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,113.0,1,1,37,1,10,116.5,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,Graduate +1,1,2,9238,1,1,145.0,1,1,19,4,8,121.4,0,0,0,1,0,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9003,1,19,133.1,1,19,37,9,10,120.0,0,0,1,1,0,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,Enrolled +1,1,1,9085,1,1,150.0,1,12,2,4,2,144.6,0,0,1,0,0,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,40,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,Dropout +1,17,5,9500,1,1,137.0,1,1,1,5,5,132.6,1,0,0,1,0,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,3,19,4,7,119.0,0,0,0,1,1,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,128.0,1,1,1,4,5,124.7,0,0,0,1,1,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,Enrolled +1,39,2,9670,1,19,133.1,1,34,34,0,0,100.0,1,0,0,0,1,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,Dropout +1,39,1,9556,1,1,120.0,1,19,19,4,5,122.8,0,0,0,1,0,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,Dropout +1,1,2,171,1,1,165.0,1,3,3,2,2,163.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,133.8,1,3,37,2,10,184.0,0,0,0,1,0,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,120.0,1,37,19,9,4,148.8,0,0,0,1,0,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,5,9500,1,1,151.0,1,1,1,9,9,127.8,0,0,0,1,0,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,131.0,1,38,19,7,7,125.3,1,0,0,1,0,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,128.0,1,1,1,9,6,120.3,0,0,0,1,1,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,118.0,1,3,1,5,10,113.5,1,0,0,1,0,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,140.0,1,37,37,7,9,126.8,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,117.0,1,38,37,9,9,113.5,1,0,0,1,0,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,135.0,1,19,19,9,9,122.8,1,0,0,1,1,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,151.0,1,37,37,9,7,147.5,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,1,3,4,4,147.5,1,0,0,1,0,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,128.0,1,38,37,9,9,124.9,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9085,1,1,124.0,1,3,19,2,3,113.9,1,0,0,1,0,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,120.0,1,3,19,4,7,119.7,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,171,1,1,147.0,1,1,12,4,4,148.4,1,0,0,1,1,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,136.0,1,19,1,9,8,123.4,1,0,0,1,0,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,123.0,1,3,1,2,5,112.9,0,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,2,9556,1,1,133.1,1,3,1,2,4,136.1,0,0,0,1,1,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,141.0,1,3,1,4,4,142.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9003,1,1,120.0,1,37,37,9,9,120.5,1,0,1,1,1,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,6,140.0,1,0,0,1,1,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,147.0,1,19,1,4,3,138.5,1,0,0,1,0,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,123.0,1,34,34,90,90,113.3,1,0,0,1,0,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,38,4,5,130.4,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,7,7,134.0,0,0,0,1,1,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,38,38,4,7,111.6,1,0,0,1,0,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9119,1,1,148.0,1,19,38,9,7,133.0,0,0,0,1,1,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,128.0,1,3,1,2,1,127.8,0,0,0,1,0,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,172.0,1,38,37,9,9,149.3,0,0,0,1,1,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,138.0,1,37,37,9,8,127.2,1,0,0,1,0,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,140.0,1,3,1,2,6,137.6,1,0,0,1,1,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,110.0,1,37,19,9,3,100.0,0,0,0,1,0,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,2,1,2,4,140.7,1,0,0,1,1,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,137.0,1,3,38,3,5,129.3,1,0,0,1,0,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,136.0,1,38,38,0,7,133.2,1,0,0,1,0,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,145.0,6,34,34,0,0,134.5,1,0,0,1,1,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,147.0,1,19,19,3,10,151.9,1,0,0,1,0,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,118.0,1,37,37,9,9,112.1,1,0,0,1,0,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,Dropout +1,43,1,9773,1,1,122.0,1,1,1,4,5,126.9,0,0,0,1,0,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,126.0,1,12,38,9,5,122.2,0,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,143.0,1,3,3,2,2,129.0,0,0,0,1,1,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,Graduate +1,39,1,9556,1,1,130.0,1,19,38,9,8,113.3,0,0,0,1,0,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,101.0,1,1,37,4,9,98.9,1,0,0,1,0,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,133.1,1,34,34,90,90,116.0,0,0,0,0,0,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,Dropout +2,39,1,9991,0,1,170.0,1,37,19,9,3,151.1,0,0,0,1,1,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,Graduate +2,17,5,9119,1,1,126.0,1,37,38,4,4,122.9,1,0,0,1,1,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,125.0,1,19,19,9,9,114.9,0,0,0,1,0,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,Graduate +1,18,3,9773,1,1,128.0,1,19,1,9,9,122.1,1,0,0,1,1,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,149.0,1,38,37,9,9,139.5,0,0,0,1,1,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,1,3,9,5,137.1,0,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,126.0,1,38,37,5,5,114.8,1,0,0,1,0,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9085,1,1,120.0,1,37,37,6,6,150.0,0,0,0,1,1,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,137.0,1,38,19,0,90,122.3,0,0,0,1,0,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9853,1,19,133.1,1,37,19,3,7,100.0,0,0,0,1,0,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,145.0,1,4,2,2,3,127.3,1,0,0,1,1,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,129.0,1,1,1,4,8,129.0,0,0,0,0,0,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,143.0,1,1,1,4,4,129.0,1,0,0,1,1,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,136.0,1,19,38,9,9,119.3,1,0,0,1,0,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,151.6,0,0,0,1,0,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,Enrolled +1,1,1,9238,1,1,108.0,1,19,38,9,9,107.3,0,1,0,1,0,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,134.0,1,1,1,2,7,128.4,1,0,0,1,0,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,Graduate +1,42,1,9119,1,1,120.0,1,3,1,2,9,108.2,1,0,0,1,1,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,Dropout +1,16,2,9500,1,1,127.0,1,2,38,4,9,119.0,1,0,0,1,0,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,131.0,1,1,1,9,9,122.0,0,0,0,1,0,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9070,1,3,133.1,1,3,5,2,2,120.0,1,0,0,1,0,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,150.0,1,19,19,5,5,132.8,1,0,0,1,0,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,Graduate +1,18,2,9670,1,1,121.0,1,37,38,4,1,111.9,1,0,0,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,108.0,41,3,3,9,9,107.0,0,0,1,0,0,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,150.0,1,34,19,0,4,152.8,1,0,0,1,1,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,18,2,9238,1,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,130.0,6,19,1,6,4,130.0,1,0,0,1,0,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,Enrolled +1,51,1,9119,1,1,136.0,1,1,19,3,5,133.6,1,0,0,1,1,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,Dropout +1,1,4,9773,1,1,155.0,1,3,19,1,4,149.8,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9070,1,1,124.0,1,19,38,4,0,117.6,1,0,0,1,1,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,9,100.0,0,0,0,1,1,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,Enrolled +1,44,1,9238,1,1,140.0,1,1,1,5,5,143.4,0,0,0,1,0,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,120.0,1,1,19,7,7,111.3,0,0,0,1,1,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,Enrolled +2,1,1,9556,1,1,144.0,1,19,19,193,144,139.8,0,0,1,1,1,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,110.0,1,1,1,5,5,160.0,1,0,1,1,0,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,Dropout +2,39,1,9853,1,19,133.1,1,37,37,9,9,131.0,0,0,0,1,0,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,139.0,1,4,1,2,10,136.4,1,0,0,1,0,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,Graduate +1,17,3,9085,1,1,134.0,1,37,38,9,9,120.4,1,0,0,1,0,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,148.0,1,3,2,4,2,131.6,1,0,0,1,0,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,145.0,1,19,37,7,7,141.5,1,0,0,1,0,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9130,1,19,133.1,1,37,38,9,9,120.0,0,0,0,1,1,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,3,9254,1,1,121.0,1,19,37,4,7,116.8,1,0,0,1,0,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,123.0,1,1,1,4,3,123.4,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,38,38,9,9,133.4,1,0,0,1,1,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,Graduate +1,42,1,9500,1,1,124.0,1,19,19,4,9,124.0,0,0,0,1,0,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,40,130.0,1,37,37,9,7,130.0,0,0,0,1,0,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,140.0,1,3,38,2,9,140.0,1,0,0,1,0,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,158.0,1,38,38,9,7,144.7,1,0,0,1,0,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,18,2,9238,1,1,121.0,1,19,1,4,3,121.4,1,0,0,1,0,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,12,133.1,1,37,19,9,10,120.0,0,0,0,1,1,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,122.0,1,3,1,4,3,114.8,1,0,0,1,0,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,Enrolled +4,43,1,9991,0,1,164.0,1,37,37,6,6,131.8,0,0,0,1,0,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,3,9773,1,1,145.0,1,38,38,9,5,133.1,0,0,0,1,0,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9853,1,19,133.1,1,38,19,9,9,108.0,0,0,1,0,0,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,3,9070,1,1,131.0,1,38,37,5,5,120.2,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,Enrolled +1,43,1,9238,1,1,130.0,1,38,37,9,7,133.2,0,0,0,1,0,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,112.0,1,1,1,3,3,106.4,1,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,125.0,1,1,38,144,181,123.3,0,0,0,1,0,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,125.0,1,3,2,2,1,119.1,1,0,0,1,0,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9853,1,3,140.0,1,34,34,0,0,140.0,1,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,135.0,1,1,19,3,9,137.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9991,0,3,120.0,1,37,37,6,7,120.0,0,0,1,0,1,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,130.0,1,1,1,4,3,125.1,1,0,0,1,0,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,Graduate +2,39,1,33,1,1,120.0,1,38,1,9,5,153.8,0,0,1,1,1,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,37,37,9,9,140.0,0,0,0,0,1,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,127.0,1,1,38,9,7,120.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,43,180.0,1,19,19,9,4,180.0,0,0,0,1,0,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,Graduate +1,1,3,9147,1,1,143.0,1,1,1,5,7,133.2,1,0,0,1,0,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,Graduate +1,15,1,9853,1,1,133.1,41,43,1,153,135,128.2,0,0,0,1,0,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,12,133.1,1,1,1,9,4,140.0,1,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,151.0,1,1,38,4,7,137.0,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,Graduate +1,17,4,171,1,1,172.0,1,3,1,2,10,155.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,129.0,1,19,1,9,5,112.0,0,0,0,1,1,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,150.0,1,38,3,9,1,140.0,0,0,0,1,1,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,Graduate +1,1,1,9773,1,1,124.0,17,1,1,3,5,118.1,1,0,1,0,0,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9670,1,1,124.0,1,37,19,5,8,114.2,1,0,1,1,0,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,122.0,1,1,19,3,5,116.8,1,0,0,1,0,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,144.0,1,38,1,9,10,137.4,0,0,0,1,0,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,19,19,9,9,120.0,0,0,0,1,0,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,138.0,1,38,38,7,6,124.7,1,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,18,2,9147,1,1,132.0,1,3,3,5,7,119.1,1,0,1,0,0,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,17,6,9119,1,1,111.0,1,19,3,5,10,106.5,1,0,0,1,1,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,Dropout +1,7,1,9500,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,1,140.0,1,37,37,9,9,130.0,1,0,0,1,1,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,125.0,1,37,37,3,3,124.0,0,0,0,1,1,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,128.0,1,19,2,7,3,126.3,1,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +2,39,1,9500,1,1,110.0,1,37,37,9,6,114.3,0,0,0,1,0,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,9085,1,1,133.1,1,1,9,4,4,128.2,0,0,0,1,0,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,Graduate +1,1,3,9238,1,1,126.0,1,38,19,5,8,120.8,1,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,121.0,1,1,1,9,8,118.9,1,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,109.0,1,19,37,5,5,108.3,0,0,0,1,0,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,Enrolled +1,1,4,9670,1,1,127.0,1,1,1,7,7,116.5,1,0,0,1,0,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,171,1,19,133.1,101,1,19,2,7,110.0,0,0,0,1,1,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,133.0,1,37,37,9,7,124.6,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,39,137.0,1,1,1,5,10,124.5,0,0,0,0,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,130.0,1,19,19,7,7,121.6,0,0,0,1,0,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,130.0,1,37,37,6,5,113.5,1,0,0,1,0,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9670,1,1,120.0,1,38,38,5,7,115.1,1,0,0,1,0,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,115.0,1,38,1,9,4,116.1,1,0,0,1,1,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,130.1,0,0,0,1,0,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,Enrolled +1,1,3,9238,1,1,133.1,1,1,1,9,9,100.0,1,0,0,1,1,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,168.0,0,0,0,1,1,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,148.0,1,1,1,9,9,141.7,0,0,0,0,1,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,Dropout +1,15,1,33,1,1,133.1,41,2,3,2,4,100.0,0,0,0,1,1,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,135.0,1,37,37,6,5,121.0,1,0,0,1,1,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,151.0,1,3,3,1,90,161.9,0,0,0,1,0,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,8,108.5,0,0,0,1,1,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9670,1,1,130.0,1,26,30,0,5,128.6,1,0,1,1,0,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,Graduate +1,43,1,9500,1,1,140.0,100,1,1,6,6,128.2,0,0,0,1,0,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,140.0,1,19,37,5,7,140.0,1,0,0,1,1,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,Dropout +1,39,1,33,1,1,140.0,1,3,1,2,4,152.8,0,0,0,1,0,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,Enrolled +1,43,1,9070,1,1,117.0,1,1,1,4,7,112.5,1,0,0,1,1,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,126.0,1,37,19,7,7,125.7,0,0,0,1,0,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,Enrolled +1,1,2,9773,1,1,140.0,1,38,38,5,7,126.4,1,0,0,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,121.0,1,37,38,6,9,121.0,0,0,0,1,0,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,136.0,1,12,1,4,4,122.0,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,117.0,1,37,37,9,9,120.2,1,0,0,1,0,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,133.1,1,38,1,9,9,121.0,0,0,1,0,1,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,Dropout +1,44,1,9991,0,39,130.0,1,37,37,5,5,130.0,1,0,0,1,1,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,138.0,1,1,19,4,9,142.2,1,0,0,1,0,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,148.0,1,3,1,2,10,148.0,1,0,0,1,0,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,Graduate +1,17,6,9556,1,1,134.0,1,19,38,7,7,128.5,1,0,0,1,0,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,141.0,1,1,19,5,8,141.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,149.0,1,3,1,9,9,137.5,0,0,0,1,1,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,Graduate +1,1,3,9085,1,1,142.0,1,11,11,90,90,155.3,0,0,0,1,0,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,135.0,1,19,37,9,9,134.0,1,0,0,1,0,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,132.0,1,19,38,9,7,120.1,0,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9147,1,1,133.0,1,37,37,9,5,119.7,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,139.0,1,3,4,2,2,130.6,0,0,0,1,0,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,2,130.0,1,0,1,0,1,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,Dropout +1,17,3,9500,1,1,138.0,1,3,3,4,5,130.0,1,0,0,1,0,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,121.0,1,19,19,3,3,116.1,1,0,0,1,0,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,160.0,1,3,38,1,9,152.0,1,0,0,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,130.0,41,37,19,9,8,125.5,1,0,0,1,0,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,133.1,1,38,38,191,193,146.0,0,0,1,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,Graduate +4,39,1,9003,1,1,140.0,1,37,37,9,8,150.0,0,0,0,1,1,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,Enrolled +1,17,2,9670,1,1,132.0,1,1,19,5,3,124.0,1,0,0,1,1,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,117.0,1,19,19,5,7,118.4,0,0,0,1,1,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,140.0,6,1,19,4,7,131.6,1,0,0,1,0,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,142.0,1,38,1,8,10,138.5,1,0,0,1,1,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9130,1,1,132.0,1,3,1,4,9,121.9,1,0,0,1,0,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,122.0,1,1,1,9,9,116.1,1,0,0,1,1,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,Dropout +1,7,1,8014,0,3,130.0,1,37,38,0,5,130.0,0,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,138.0,1,19,19,9,5,124.8,1,0,0,1,0,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,140.0,1,19,38,3,9,140.0,1,0,0,1,1,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +4,39,1,8014,0,1,138.0,1,19,19,90,90,127.0,0,0,0,0,0,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9500,1,19,133.1,1,1,3,2,2,100.0,0,0,1,1,1,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,117.0,1,3,1,3,5,110.7,1,0,0,1,1,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,120.0,1,19,19,5,5,113.0,1,0,0,1,0,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,160.0,1,37,37,7,7,133.0,1,0,0,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,137.0,1,1,1,4,5,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,19,37,9,7,123.9,1,0,0,1,0,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,38,38,9,5,130.0,0,0,1,0,1,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,137.0,1,19,37,9,7,130.8,0,0,1,1,0,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,38,37,4,6,150.0,1,0,0,1,0,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,115.0,1,34,38,0,5,108.4,1,0,0,1,0,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,140.0,1,3,38,141,151,135.3,0,0,0,1,1,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,148.0,1,19,19,7,7,130.9,0,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,127.0,1,1,1,4,3,126.3,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,2,9670,1,1,100.0,1,37,37,9,9,100.0,0,0,0,1,0,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,2,171,1,1,141.0,1,19,37,9,9,136.1,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,123.0,1,30,19,4,90,122.3,0,0,0,1,0,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,145.0,1,1,38,5,7,127.5,1,0,0,1,1,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,1,150.0,1,37,37,90,10,112.0,0,0,0,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,128.0,1,37,1,9,7,124.2,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,Dropout +1,43,1,9070,1,39,130.0,1,19,37,5,9,124.0,1,0,0,1,0,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,Graduate +1,17,1,9003,1,1,170.0,1,1,4,9,5,144.1,1,0,1,0,1,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9670,1,1,110.0,1,19,19,90,99,107.2,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9238,1,19,133.1,1,37,37,9,9,130.0,1,0,0,1,0,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9119,1,1,144.0,1,34,34,0,0,119.5,0,0,0,1,1,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,19,133.1,1,37,37,6,6,162.0,0,0,1,1,1,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,16,1,9085,1,1,138.0,1,37,37,9,9,123.0,1,0,0,1,0,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9500,1,1,133.1,1,19,19,5,6,121.4,0,0,1,1,0,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,138.0,1,1,1,4,7,132.1,1,0,0,1,0,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,Graduate +1,39,1,9119,1,1,133.1,1,37,37,9,9,101.6,0,0,0,1,1,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9500,1,1,126.0,1,1,19,131,181,120.1,1,0,0,1,0,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,38,9,9,142.0,1,0,0,1,0,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,Graduate +1,18,1,8014,0,1,138.0,1,19,1,9,5,134.5,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,19,9,9,150.0,0,0,0,1,1,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,126.0,1,38,37,9,9,123.6,1,0,0,1,0,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9254,1,19,133.1,1,19,19,3,1,101.5,0,0,1,0,1,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,2,9119,1,1,115.0,1,38,19,9,6,112.2,1,0,1,1,1,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,39,1,9003,1,1,120.0,1,37,37,9,9,125.7,0,0,1,0,0,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,Dropout +1,17,2,9773,1,1,115.0,1,1,1,5,5,119.6,1,0,0,1,0,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,19,9,4,140.0,0,0,0,1,0,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,125.0,1,37,19,90,90,137.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,120.0,1,3,38,3,7,124.2,1,0,0,1,1,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9147,1,1,146.0,1,5,1,1,5,144.6,0,0,0,1,1,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,116.0,1,1,1,3,4,113.6,1,0,0,1,0,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,Graduate +4,42,1,9147,1,1,133.1,1,37,38,7,3,123.0,1,0,0,1,1,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,118.9,1,38,37,5,9,118.9,1,0,0,1,0,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,123.0,1,12,1,9,9,119.2,1,0,0,1,0,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,2,140.0,1,38,37,7,8,140.0,0,0,0,1,0,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,110.0,1,37,37,90,90,108.4,1,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9119,1,1,146.0,1,1,37,7,7,132.4,1,0,0,1,1,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,19,133.1,1,19,3,9,2,140.0,1,0,1,1,1,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,2,9853,1,1,111.0,1,38,38,191,171,105.8,1,0,0,1,0,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,6,130.2,0,0,0,1,0,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,130.0,1,1,3,9,10,118.1,1,0,0,1,1,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,118.0,1,1,19,5,4,118.0,0,0,0,1,0,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,153.0,1,38,38,7,7,159.7,1,0,0,1,0,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,171,1,12,110.0,1,37,37,7,7,106.0,1,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,134.0,1,19,1,9,4,124.9,1,0,0,1,0,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,3,9254,1,1,121.0,1,19,19,9,9,125.9,1,0,0,1,0,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,160.0,1,19,19,4,9,154.4,0,0,0,1,0,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,3,140.0,1,19,19,9,7,152.4,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9130,1,1,130.0,1,19,1,191,144,110.0,0,0,0,1,1,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,142.0,1,38,37,9,5,127.3,1,0,0,1,0,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,37,37,9,9,130.0,0,0,1,1,0,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,124.0,1,37,19,9,4,121.2,0,0,0,1,1,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,120.0,1,19,19,9,3,113.9,1,0,0,1,0,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,114.0,1,19,38,5,3,112.6,1,0,0,1,0,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,Graduate +1,7,1,9991,0,40,120.0,1,1,19,4,9,120.0,0,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,128.0,1,19,38,9,9,118.2,0,0,0,1,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,4,9070,1,1,126.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,130.0,1,1,1,0,0,119.5,0,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,184.4,22,2,19,2,8,184.4,0,0,0,1,0,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,37,9,9,132.8,0,0,1,0,1,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9085,1,1,120.0,1,38,19,90,90,127.0,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,Graduate +1,17,4,9147,1,1,132.0,1,38,19,5,5,120.8,1,0,0,1,1,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,Dropout +1,10,1,9670,1,1,148.9,22,37,37,9,9,148.9,0,0,0,1,0,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,4,150.0,1,1,1,4,6,150.0,0,0,0,1,1,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,150.0,1,19,1,9,3,110.0,1,0,0,1,1,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,Graduate +1,15,1,9670,1,1,130.0,26,42,1,2,7,130.0,0,1,1,1,0,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,Graduate +2,7,1,8014,0,3,120.0,1,38,1,9,9,120.0,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,149.0,1,19,37,9,9,158.1,1,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,4,9147,1,1,124.0,1,37,37,9,9,117.4,0,0,0,1,0,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,142.0,1,34,1,5,10,136.1,1,0,0,0,1,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,1,1,8014,0,1,165.0,1,37,37,0,0,162.9,1,0,0,1,1,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,130.0,1,37,37,5,7,123.4,1,0,0,1,1,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,1,133.1,1,37,37,7,7,143.0,0,0,0,1,1,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,121.0,1,38,37,8,8,115.4,1,0,0,1,0,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9556,1,3,140.0,1,3,3,2,2,140.0,0,0,1,0,1,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,116.0,1,38,19,0,2,116.7,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,132.0,1,38,1,5,5,124.3,0,1,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,133.1,1,38,12,7,0,111.5,0,0,0,0,0,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,Dropout +1,53,1,9147,1,42,140.0,1,1,1,6,6,142.2,0,0,0,1,1,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,Graduate +2,44,1,9991,0,39,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9773,1,1,170.0,1,1,19,9,7,155.0,0,0,0,1,1,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,8014,0,19,133.1,1,37,37,4,8,112.5,0,0,0,1,0,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,120.0,1,1,1,5,8,112.0,1,0,0,1,0,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,123.0,1,1,1,3,3,113.6,1,0,0,1,0,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,Graduate +1,39,1,9085,1,1,133.1,1,1,19,9,9,162.3,1,0,0,1,0,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,116.0,1,37,1,9,8,115.7,1,0,1,0,0,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,160.0,1,9,19,4,3,151.3,0,0,0,1,0,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,19,149.0,1,34,34,0,0,126.3,0,0,0,1,0,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9238,1,39,140.0,41,1,1,4,6,137.5,0,0,1,1,0,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,130.0,1,37,37,9,9,129.0,1,0,0,1,0,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,19,38,7,7,118.7,0,0,0,1,1,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,128.0,0,0,0,1,0,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,Graduate +1,17,1,9070,1,1,135.0,1,19,37,5,9,145.9,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,128.0,1,1,19,9,7,118.2,0,0,0,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,128.0,1,19,38,9,9,127.0,0,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,140.0,1,37,12,9,9,150.0,0,0,1,1,1,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,Dropout +2,43,1,8014,0,1,160.0,1,37,39,9,4,140.9,0,0,0,1,0,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,133.0,1,38,19,8,7,127.3,1,0,0,1,0,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,Graduate +1,15,1,9670,1,1,160.0,1,37,12,9,9,149.5,1,0,0,0,1,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,152.0,101,2,1,9,1,168.5,1,0,0,1,1,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,Graduate +1,1,3,9085,1,1,147.0,1,19,19,9,1,135.6,1,0,0,1,0,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,2,8014,0,1,120.0,1,37,34,0,0,117.6,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,141.0,1,37,37,9,9,130.2,0,0,0,1,1,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,Graduate +1,16,2,9147,1,1,139.0,1,38,37,9,9,123.7,1,0,0,1,0,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,134.0,1,19,38,4,8,129.5,0,0,0,1,0,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,113.0,1,1,37,9,10,117.2,1,0,0,1,0,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,18,2,9556,1,1,126.0,1,3,3,2,2,115.5,0,0,0,1,1,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,1,134.0,1,37,38,4,7,110.0,1,0,0,1,0,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,171,1,1,132.0,1,1,1,1,4,132.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9003,1,1,130.0,1,19,19,9,1,140.0,0,0,0,1,0,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9773,1,1,132.0,1,38,19,9,9,125.0,1,0,0,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,140.0,1,37,37,9,6,132.8,0,0,0,1,1,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,130.0,1,37,19,9,5,140.2,1,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9070,1,1,118.0,1,43,3,123,123,110.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,19,100.0,1,37,37,5,5,111.0,1,0,0,1,0,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,3,9085,1,1,138.0,1,1,3,4,4,126.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,132.0,1,2,19,4,4,125.0,1,0,0,1,0,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,38,100.0,1,37,37,9,7,154.0,1,0,0,1,1,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,138.0,1,1,19,4,4,131.7,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,Graduate +2,39,2,9147,1,1,140.0,1,37,37,9,8,108.0,0,0,0,1,0,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,Enrolled +1,1,5,9147,1,1,134.0,1,3,2,2,2,134.7,0,0,0,1,1,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9130,1,1,120.0,1,2,3,3,2,120.0,1,0,0,0,1,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,Dropout +1,1,3,9085,1,1,140.0,1,10,19,90,90,135.8,1,0,0,1,0,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,142.0,1,37,38,5,1,129.4,0,0,0,1,0,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9670,1,1,120.0,1,1,19,5,5,117.2,1,0,0,1,0,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,136.0,1,1,19,5,7,136.4,0,0,0,1,0,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,120.0,1,37,37,5,5,124.6,0,0,0,1,0,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,Enrolled +1,39,1,9500,1,1,133.1,1,1,37,9,9,100.0,0,0,0,1,1,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,123.0,1,19,1,9,3,117.8,1,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,Graduate +5,39,1,9254,1,1,133.1,1,2,2,2,2,103.0,0,0,0,1,0,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,171,1,1,133.0,1,1,37,4,7,126.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,119.0,1,1,1,4,4,115.0,1,0,0,1,1,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,143.0,1,38,19,151,193,134.3,1,1,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,135.0,1,1,19,4,4,129.1,0,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,43,2,9670,1,1,130.0,1,19,1,4,4,127.6,1,0,0,1,1,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,126.0,1,37,37,5,1,126.0,0,0,0,0,1,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,42,1,9119,1,1,120.0,1,19,37,9,9,113.8,0,0,0,0,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9991,0,1,140.0,1,37,37,9,9,135.8,1,0,0,1,1,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,17,5,9085,1,1,118.0,1,38,38,9,9,112.4,1,0,0,1,0,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,3,9773,1,1,134.0,1,2,1,3,3,129.5,1,0,0,1,1,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,129.0,1,1,38,4,7,123.4,0,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,132.0,1,19,37,4,9,128.0,1,0,0,1,0,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,137.0,1,38,37,7,5,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,Graduate +1,17,5,9119,1,1,138.0,1,19,19,5,5,123.3,1,0,1,1,1,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,138.0,1,1,1,3,4,132.5,1,0,0,1,0,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,Graduate +1,16,2,9070,1,1,133.0,1,1,3,4,2,122.5,1,0,0,1,0,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,Enrolled +1,17,1,9130,1,1,137.0,1,38,19,5,7,130.0,1,0,0,1,0,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,Enrolled +1,17,1,9238,1,1,131.0,1,37,37,9,7,121.9,0,0,0,1,0,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,Graduate +2,1,1,9500,1,1,142.0,1,19,38,4,5,130.3,0,0,0,1,0,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,Graduate +2,39,1,9556,1,1,160.0,1,37,37,9,6,120.0,0,0,0,1,0,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,Dropout +1,51,1,9670,1,1,126.0,1,3,3,1,10,111.0,0,0,1,1,1,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,5,9853,1,1,141.0,1,37,19,9,5,133.0,1,0,0,1,0,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,Dropout +1,1,2,9670,1,1,124.0,1,19,1,9,4,117.7,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,133.0,1,19,19,9,5,120.1,1,0,0,1,0,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,Graduate +1,43,1,9147,1,1,133.1,1,4,19,2,1,128.2,0,0,0,1,0,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,Dropout +4,27,1,9070,1,2,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9003,1,1,150.0,1,2,4,4,1,150.0,0,0,0,1,1,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,19,133.1,1,19,37,7,5,155.5,1,0,1,0,1,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,1,9238,1,1,106.0,1,1,1,3,3,105.0,0,0,0,1,1,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,111.0,1,19,38,3,3,111.4,1,0,0,0,0,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,Dropout +1,43,1,9254,1,1,130.0,1,1,19,5,7,130.0,0,0,0,1,0,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,Dropout +1,17,1,8014,0,1,120.0,1,38,37,6,6,113.0,0,0,0,1,0,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,139.0,1,1,37,4,9,131.3,1,0,0,1,0,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,Graduate +1,43,3,9254,1,1,110.0,1,37,37,9,9,107.2,1,0,0,1,1,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,147.0,1,1,1,4,4,134.3,1,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,130.0,1,37,38,9,6,130.0,1,0,0,1,0,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,139.0,1,37,38,9,9,124.0,1,0,0,1,1,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,122.0,1,37,37,9,9,126.9,1,0,0,1,0,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,11,11,90,4,114.0,1,0,0,1,1,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9147,1,1,132.0,1,39,39,3,3,127.8,1,0,0,0,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,128.0,1,38,37,5,6,122.1,0,0,0,1,0,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9085,1,1,127.0,1,19,38,194,193,117.6,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9500,1,1,145.0,1,3,3,2,3,141.8,0,0,0,1,0,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,Graduate +1,53,1,9556,1,42,140.0,1,1,19,4,5,140.0,0,0,0,1,0,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,Graduate +1,18,1,9147,1,1,160.0,1,19,19,5,8,137.6,1,0,0,1,0,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,19,133.1,1,2,1,3,10,120.0,0,0,1,1,1,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,19,133.1,1,19,39,5,3,121.7,0,0,1,0,0,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,126.0,0,0,0,1,1,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,Graduate +1,1,3,171,1,1,140.0,1,37,37,9,9,124.3,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,136.0,1,38,37,9,9,126.9,1,0,0,1,0,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,136.0,1,19,1,9,9,129.0,1,0,0,1,0,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,144.0,1,38,38,7,7,136.0,1,0,0,1,0,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,154.0,1,38,38,9,9,156.5,1,1,0,1,0,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,131.0,1,19,19,9,9,134.9,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +4,43,1,8014,0,1,140.0,1,38,37,9,9,126.0,0,0,0,1,0,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,7,126.3,1,0,0,1,0,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,Graduate +1,44,1,8014,0,39,150.0,1,1,37,9,7,146.7,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,2,9119,1,1,140.0,1,19,19,9,9,125.7,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,12,100.0,1,1,1,4,4,100.0,0,0,0,1,0,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,Graduate +1,42,1,9500,1,1,111.0,1,1,3,9,10,128.2,1,0,0,1,1,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,Graduate +1,17,2,9773,1,1,132.0,1,19,19,9,6,120.1,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,131.0,1,4,4,2,1,120.5,0,0,0,1,0,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,44,1,9003,1,39,170.0,1,19,19,5,5,170.0,1,0,0,1,1,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,150.0,1,38,38,7,7,137.8,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,10,120.0,0,0,1,0,1,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9670,1,39,110.0,1,37,1,9,4,110.0,0,0,0,1,0,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,130.0,1,5,3,2,2,130.0,0,0,0,1,1,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9670,1,1,133.1,1,34,3,7,2,130.6,1,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,38,9,10,140.0,0,0,0,1,1,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,133.1,1,19,38,9,9,119.6,1,0,0,1,0,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,118.0,1,19,19,3,3,110.0,1,0,0,1,0,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,137.0,1,1,1,5,5,129.3,1,0,0,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,127.0,1,19,38,5,9,129.5,1,0,0,1,0,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,126.0,1,38,19,9,6,119.4,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,116.5,0,0,0,1,0,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,125.0,1,19,19,4,7,128.5,1,0,0,1,0,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,Enrolled +1,43,1,9773,1,1,133.1,22,34,34,90,90,130.0,0,0,1,1,0,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,125.0,1,1,1,5,5,128.5,0,0,0,1,1,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9500,1,1,133.1,1,19,37,9,9,120.0,0,0,0,1,0,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,Graduate +2,39,2,9147,1,1,133.1,1,37,37,5,7,110.0,0,0,0,1,1,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,6,9500,1,1,141.0,1,1,19,1,1,126.7,1,0,0,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,146.0,1,40,43,4,4,150.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,148.0,1,1,1,4,9,129.8,0,0,0,1,0,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,Enrolled +1,17,1,9853,1,1,133.0,1,38,38,9,9,127.4,0,0,1,1,0,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,43,1,9147,1,1,120.0,1,37,37,5,3,113.4,0,0,0,1,1,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,148.0,1,19,3,4,2,136.5,0,0,0,1,0,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,178.0,1,2,1,2,3,157.7,0,0,0,1,1,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +2,7,1,9254,1,3,130.0,1,1,3,4,3,130.0,0,0,0,1,0,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,33,1,40,120.0,1,38,37,5,6,120.0,1,0,1,0,1,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,Dropout +2,1,1,9147,1,1,151.0,1,38,37,9,8,132.1,1,0,0,1,0,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Dropout +1,43,2,9556,1,1,120.0,1,1,19,4,3,110.2,0,0,0,1,0,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,Graduate +2,1,4,9500,1,1,140.0,1,1,37,4,9,128.0,0,0,0,1,0,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,6,120.0,1,35,35,6,6,128.2,1,0,0,1,1,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,120.0,1,37,37,9,6,120.0,1,0,0,1,0,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,8,7,150.0,0,0,0,1,1,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,145.0,1,19,37,4,7,148.9,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,34,34,0,0,104.0,1,0,0,1,0,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9085,1,1,110.0,1,3,19,4,6,105.0,0,0,1,0,1,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Dropout +1,17,2,9254,1,1,108.0,1,37,37,9,7,108.0,1,0,0,1,0,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,Graduate +4,43,1,9238,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,0,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,136.0,1,19,37,173,183,118.4,1,0,0,1,0,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,18,1,9556,1,1,140.0,1,38,37,9,9,122.8,0,0,0,1,0,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,Graduate +1,39,1,9119,1,1,150.0,1,3,3,4,4,150.0,1,0,0,1,1,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,141.0,1,1,1,4,10,138.9,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,Graduate +1,18,4,9773,1,1,130.0,1,19,19,4,4,121.3,1,0,0,1,0,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,1,130.0,1,37,37,9,6,160.0,0,0,0,1,1,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,149.0,1,37,37,9,9,136.0,0,0,0,1,0,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,151.0,1,37,1,4,10,138.4,0,0,0,1,0,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9254,1,1,130.0,1,37,37,9,9,126.5,0,0,0,1,1,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,143.0,1,19,37,7,7,127.0,1,0,0,1,0,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,Graduate +2,57,1,9991,0,1,133.1,41,38,37,4,6,100.0,0,0,0,1,0,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,138.0,1,37,37,9,9,135.9,1,0,0,1,0,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,43,1,8014,0,1,145.7,22,37,37,9,9,145.7,1,0,0,1,0,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,Graduate +4,39,1,9773,1,19,133.1,1,37,37,9,1,117.5,0,0,0,1,0,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9238,1,1,118.0,1,1,19,4,10,112.4,1,0,0,1,0,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,8014,0,1,133.1,1,37,37,9,7,162.5,0,0,0,1,1,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,1,3,9254,1,1,115.0,1,1,1,3,3,117.5,1,0,0,1,0,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,133.0,1,37,38,9,9,130.2,1,0,0,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,152.0,1,2,22,4,3,146.1,1,0,0,1,0,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +2,39,1,9085,1,12,133.1,1,1,39,5,3,140.0,1,0,1,0,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9003,1,1,140.0,1,38,1,9,4,138.3,0,0,0,1,1,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,130.0,1,38,37,9,6,133.9,0,0,0,1,1,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,140.0,1,37,37,9,9,142.5,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,120.0,1,38,1,9,3,118.3,1,0,0,1,0,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,117.0,1,1,19,4,7,113.5,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,141.0,1,19,1,7,3,128.8,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9147,1,1,125.0,1,3,38,2,10,118.7,1,0,0,1,0,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,116.0,1,37,1,5,3,124.8,1,0,0,1,1,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,120.0,1,36,37,0,0,126.7,1,0,0,1,1,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,4,9853,1,1,140.0,1,19,38,4,1,128.5,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,1,3,10,130.0,0,0,0,1,1,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,136.0,1,3,37,2,8,121.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,154.0,1,37,37,9,9,149.5,1,0,0,1,0,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,138.0,1,19,38,5,8,133.5,0,0,0,1,0,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,128.0,1,1,37,4,3,117.9,1,0,0,1,0,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,Graduate +1,43,1,9130,1,1,150.0,1,3,3,3,4,150.0,1,0,0,1,0,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,110.0,1,19,38,3,5,117.4,1,0,0,1,0,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,135.0,1,37,38,9,6,122.1,1,0,0,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9003,1,1,140.0,1,37,37,9,6,104.8,0,0,0,1,0,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,143.0,1,37,37,9,7,131.8,1,0,0,1,0,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,142.0,1,1,1,3,3,133.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,141.0,1,1,19,5,10,127.0,0,0,0,1,0,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,Graduate +3,1,2,9085,1,1,135.0,1,19,1,4,4,129.4,1,0,0,1,0,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,39,1,9254,1,1,133.1,1,19,19,4,7,123.0,0,0,1,0,0,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9500,1,1,131.0,1,19,37,9,7,129.8,1,0,0,1,0,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,Graduate +1,39,1,9670,1,9,133.1,1,6,22,3,3,120.0,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,131.0,1,37,37,3,3,131.7,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,137.0,1,19,19,5,5,134.6,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,131.0,1,1,1,4,10,129.3,0,0,0,1,0,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,140.0,1,1,37,141,192,129.7,0,0,0,1,0,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,140.0,1,37,37,9,9,124.6,0,0,0,1,0,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,138.0,1,37,37,5,9,125.1,1,1,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Dropout +1,2,1,9147,1,1,150.0,1,37,37,9,9,122.0,1,0,0,1,0,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,135.0,1,3,1,4,4,136.1,1,0,0,1,1,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,Enrolled +1,39,1,9991,0,1,150.0,1,1,19,4,8,123.0,0,0,0,1,1,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,141.0,1,19,37,5,8,130.2,0,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,106.0,1,37,37,9,9,108.0,1,0,1,1,0,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,19,133.1,1,37,38,9,7,100.5,1,0,0,1,1,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,Enrolled +1,43,1,9254,1,1,142.0,1,38,38,9,9,125.9,0,0,0,1,0,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,150.0,1,1,37,9,7,130.2,0,0,0,1,0,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,Graduate +4,39,1,9670,1,1,140.0,1,2,1,3,9,170.0,0,0,1,0,1,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9773,1,1,119.0,1,38,19,9,9,118.3,0,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,117.0,1,34,34,0,0,109.3,0,0,0,1,0,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,120.0,1,34,34,99,99,111.6,0,0,1,1,1,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,139.0,1,19,19,9,7,110.3,0,0,1,1,1,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,3,19,9,9,113.2,0,0,0,1,0,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,Enrolled +1,43,1,9991,0,1,120.0,1,38,38,9,7,141.0,0,0,0,1,1,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,151.0,1,3,1,2,4,151.0,1,0,0,1,0,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,130.0,1,37,37,9,6,110.0,1,0,0,1,0,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9853,1,1,130.0,1,2,39,2,5,124.6,0,0,0,1,1,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,138.0,1,1,1,4,3,141.5,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,120.0,1,37,37,9,5,100.0,0,0,0,1,0,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9991,0,39,150.0,1,37,37,6,6,150.0,0,0,0,1,0,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9085,1,19,133.1,1,38,38,4,7,128.2,0,0,0,1,0,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.0,41,19,19,9,9,119.7,1,0,1,1,0,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9085,1,1,128.0,1,1,19,4,90,124.2,0,0,0,0,0,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,120.0,1,1,1,9,9,129.1,1,0,0,1,1,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9773,1,1,125.0,1,19,19,9,7,129.6,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,137.0,1,40,19,2,9,130.7,1,0,0,1,0,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,Dropout +1,51,1,9147,1,1,116.0,1,3,3,2,2,115.2,0,0,1,1,1,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,5,9853,1,1,132.0,1,12,12,4,4,123.3,1,0,0,1,0,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,Dropout +1,7,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,1,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,135.0,1,19,38,9,5,136.8,1,0,0,1,0,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,137.0,1,1,1,4,7,134.6,1,0,0,1,1,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,4,171,1,1,133.1,1,38,38,9,9,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,133.1,1,19,37,7,8,120.0,0,0,1,0,0,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,140.0,1,1,19,9,7,127.0,1,0,0,1,0,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,Graduate +1,18,1,9500,1,1,124.0,1,38,37,9,7,119.3,1,0,0,1,0,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,3,19,2,4,150.0,1,0,0,1,0,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,19,133.1,1,3,19,90,90,123.5,0,0,0,1,0,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9853,1,1,133.1,1,37,37,5,5,116.5,0,0,0,1,0,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,Dropout +1,18,6,9500,1,1,144.0,1,1,1,3,6,130.8,1,0,0,1,0,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9670,1,1,151.0,1,19,19,1,1,100.0,0,0,1,1,0,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,125.0,1,1,19,4,6,115.2,0,1,0,1,0,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,37,38,4,9,110.0,0,0,1,0,0,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,133.1,1,19,19,5,5,108.5,1,0,0,1,0,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,130.0,1,37,11,90,90,122.6,0,0,0,1,0,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,113.0,1,19,37,9,9,118.6,1,0,0,1,0,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,140.0,6,2,3,5,2,124.3,1,0,0,1,0,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,Enrolled +1,1,4,9119,1,1,111.0,1,37,37,9,5,107.5,1,0,0,1,1,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,143.0,1,19,38,9,9,133.4,1,0,0,1,0,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,Graduate +1,17,1,9773,1,1,141.0,1,2,3,2,2,133.7,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,151.0,41,3,3,2,5,161.9,1,0,0,1,0,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,43,1,33,1,1,143.0,1,37,1,9,10,121.2,1,0,0,1,1,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,0,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,141.0,1,1,19,8,7,128.8,1,0,0,1,0,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Enrolled +1,1,1,9238,1,1,115.0,1,19,38,7,7,108.7,0,0,0,1,0,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,114.0,1,1,1,4,0,108.8,1,0,0,1,0,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,2,9853,1,1,112.0,1,37,37,191,182,106.1,1,0,1,1,0,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,2,9085,1,1,157.0,1,3,38,4,6,142.3,0,0,0,1,0,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,Graduate +2,44,1,8014,0,39,160.0,1,37,19,9,10,155.9,0,0,0,1,0,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,Graduate +1,1,4,171,1,1,137.0,1,1,38,4,8,141.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,144.0,1,1,37,9,9,126.5,1,0,0,1,0,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,145.0,1,1,1,4,10,131.4,0,0,0,1,0,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,115.0,1,1,1,9,4,109.1,1,0,1,0,0,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,170.0,1,37,37,0,0,150.8,1,0,0,1,0,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,5,3,9070,1,1,157.0,1,3,1,9,6,138.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,Graduate +1,43,2,9238,1,1,129.0,1,34,30,0,5,118.9,1,0,0,1,1,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,5,9853,1,1,141.0,1,3,19,2,7,130.9,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Graduate +4,39,1,9991,0,1,133.1,1,37,37,9,9,130.4,0,0,0,1,0,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,130.0,1,19,38,9,9,126.9,0,0,1,1,0,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,136.0,1,19,1,4,3,125.2,1,0,0,1,0,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,37,9,9,140.2,0,0,0,1,1,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,132.0,1,37,38,9,5,120.8,0,0,0,1,0,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,150.0,1,19,37,6,6,150.0,0,0,1,1,0,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,Graduate +2,42,1,9991,0,1,130.0,1,3,2,2,2,130.0,0,0,0,1,1,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,Enrolled +4,39,1,8014,0,1,133.1,1,38,37,5,7,144.5,0,0,0,1,0,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,2,9773,1,1,150.0,41,1,37,9,7,130.8,0,0,0,1,0,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,Graduate +2,1,1,8014,0,1,151.0,1,37,37,9,9,152.4,0,0,0,1,0,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,Graduate +6,39,1,9500,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,Dropout +2,43,1,9670,1,1,100.0,1,34,34,0,0,128.2,0,0,0,1,1,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,148.0,1,1,19,3,3,131.7,1,0,0,1,0,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,142.0,1,19,19,7,7,142.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,127.0,1,1,38,4,7,125.6,0,0,1,1,0,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,146.0,1,38,38,9,7,134.1,1,0,0,1,1,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,115.0,1,1,1,4,4,109.1,1,0,0,1,0,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,Enrolled +1,1,2,9773,1,1,148.0,1,1,19,9,9,141.7,0,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,116.0,1,37,37,0,5,114.3,1,0,0,1,0,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,139.0,1,38,19,5,7,130.6,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,Graduate +1,1,6,9147,1,1,128.0,1,37,37,9,9,116.5,0,0,0,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9130,1,3,150.0,1,3,1,90,90,150.0,1,0,0,1,0,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9670,1,1,122.0,1,1,19,4,4,116.1,0,0,0,1,1,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,Enrolled +1,39,1,9119,1,1,100.0,1,37,37,9,8,160.0,0,0,1,0,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9254,1,1,128.0,1,19,1,7,9,121.7,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,143.0,1,37,38,7,7,133.8,1,0,0,1,0,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,107.0,1,38,38,7,7,103.5,1,0,0,1,0,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,Graduate +1,39,2,9147,1,1,143.0,1,19,5,4,1,100.0,1,0,0,1,1,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,140.0,0,0,1,0,0,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,160.0,1,1,1,5,4,160.0,1,1,0,0,1,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,Dropout +2,39,1,9500,1,19,133.1,1,38,38,2,10,120.0,0,0,0,1,0,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,2,9853,1,1,122.0,1,19,19,4,5,112.6,1,0,0,1,0,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,3,9500,1,1,137.0,1,19,37,7,7,126.7,1,0,0,1,0,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,Graduate +1,7,1,9070,1,40,120.0,1,1,19,3,9,120.0,1,0,0,1,0,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,157.0,1,38,3,5,2,141.4,0,0,0,1,0,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,Graduate +2,1,2,8014,0,1,110.0,1,37,1,9,10,108.7,1,0,0,1,0,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,129.0,1,19,37,7,6,120.0,1,0,0,1,0,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,108.0,1,19,1,4,3,111.9,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9070,1,12,110.0,1,37,38,5,10,130.0,0,0,1,0,1,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,122.0,1,1,1,193,101,126.2,0,0,0,1,0,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,4,4,3,3,143.6,0,0,1,1,1,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,Enrolled +1,7,1,9119,1,3,130.0,1,34,34,90,90,130.0,0,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,8014,0,39,120.0,1,19,37,7,6,121.8,1,0,0,1,0,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,142.0,1,37,38,9,9,137.5,1,0,0,1,1,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,138.0,1,3,19,2,4,131.0,1,0,0,1,1,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,Dropout +1,17,2,9853,1,1,125.0,1,1,19,5,5,119.4,1,0,0,1,0,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,137.0,1,1,1,5,4,131.1,1,0,0,1,0,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,133.0,1,38,38,9,9,128.1,1,0,0,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Dropout +4,39,1,9991,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,0,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,17,1,9130,1,1,138.0,1,2,19,2,6,126.3,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,Enrolled +1,17,4,9500,1,1,135.0,1,1,1,4,4,127.0,1,0,0,1,0,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,140.0,1,4,3,3,3,127.8,0,0,0,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,5,1,9147,1,1,126.0,1,19,38,5,6,117.3,1,0,0,1,0,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,Enrolled +1,39,1,9670,1,1,133.1,1,1,19,4,9,140.0,0,0,0,1,1,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,126.0,1,38,38,9,8,118.8,1,0,0,1,0,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,Graduate +2,42,1,9147,1,1,133.1,1,37,37,9,9,115.8,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,126.0,1,1,37,7,9,132.7,0,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,133.0,1,19,19,5,7,123.6,0,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,4,9556,1,1,135.0,1,38,37,3,7,129.0,1,0,0,1,0,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,110.0,1,37,37,9,9,107.6,1,0,0,1,1,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Enrolled +1,17,4,9147,1,1,135.0,1,19,1,0,4,128.7,1,0,0,1,1,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +2,1,1,8014,0,1,150.0,1,1,37,4,7,139.9,1,0,0,1,0,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,116.0,1,1,38,4,3,114.6,1,0,0,1,0,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,121.0,1,19,37,1,3,131.5,0,0,0,1,0,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,100.0,1,19,1,1,90,114.0,1,0,1,0,0,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,146.0,1,19,37,5,8,135.8,1,0,0,1,0,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9119,1,39,140.0,1,1,19,4,5,140.0,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9670,1,1,136.0,1,19,19,5,5,122.0,0,0,1,0,0,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9003,1,1,133.1,1,19,19,4,4,107.5,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9070,1,1,164.0,1,38,38,9,7,165.8,1,0,0,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,154.0,1,38,38,9,9,133.4,1,0,0,1,0,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,127.0,1,19,37,7,7,121.5,1,0,0,1,1,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,Enrolled +1,43,6,9238,1,1,129.0,1,34,34,0,0,125.2,0,0,0,1,0,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,125.0,1,19,1,4,5,122.6,1,1,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,136.0,1,38,19,7,7,121.7,1,0,0,1,0,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,131.0,1,38,1,7,4,128.3,1,0,0,1,0,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,Graduate +1,1,4,171,1,1,132.0,1,1,19,4,5,138.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9254,1,1,115.0,1,12,1,9,3,108.7,1,0,0,1,0,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,131.0,1,1,37,3,7,120.2,0,0,0,1,0,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,134.0,1,1,1,4,9,124.2,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,142.0,1,19,1,9,1,132.6,0,0,0,1,0,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,2,1,3,6,150.0,1,0,0,1,1,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,130.0,1,19,38,9,7,113.5,0,0,0,1,0,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,135.0,1,2,1,2,8,126.6,0,0,0,1,0,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,12,133.1,1,37,37,5,7,119.3,1,0,0,1,1,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9130,1,1,110.0,1,3,19,2,9,105.5,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9130,1,1,134.0,41,1,19,5,5,125.6,1,0,0,1,0,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,151.0,2,1,1,5,9,146.5,0,0,0,1,0,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,133.0,1,1,3,3,3,135.8,1,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,7,1,9070,1,3,140.0,1,37,2,9,3,140.0,0,0,0,0,0,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,147.0,1,37,19,9,5,133.7,1,0,0,1,0,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,Enrolled +1,51,1,9500,1,1,127.0,1,19,1,5,9,150.0,0,0,0,1,0,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,143.0,1,1,37,5,9,126.6,0,0,1,0,0,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,9,160.0,0,0,1,1,0,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,Graduate +4,39,1,8014,0,19,133.1,1,34,34,0,0,100.0,0,0,0,1,0,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +4,43,1,9853,1,1,133.1,100,19,22,90,90,100.0,0,0,0,1,0,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,2,120.0,1,37,37,9,8,120.0,0,0,0,1,0,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9130,1,40,129.0,1,3,3,2,2,155.3,1,0,0,1,0,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,150.0,1,38,37,9,9,150.0,1,0,0,1,1,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,160.0,1,1,37,3,3,160.0,1,0,1,0,0,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,Dropout +2,39,1,9003,1,1,133.1,1,1,19,4,4,120.0,0,0,1,0,1,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,115.0,1,19,38,9,9,108.0,0,0,0,1,0,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,134.0,1,1,19,4,5,126.0,0,0,0,1,0,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,135.0,1,38,38,5,8,133.3,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,5,1,9670,1,1,135.0,1,1,12,4,4,140.3,1,0,0,1,0,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,122.0,1,19,1,4,8,135.8,0,0,0,1,0,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,19,19,3,9,112.6,1,0,0,1,0,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,4,9773,1,1,147.0,1,1,1,4,5,139.7,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,140.0,1,19,19,4,5,140.0,1,0,0,1,0,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,130.0,1,12,12,9,9,126.1,0,0,0,1,1,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,2,9147,1,1,130.0,1,34,37,9,9,118.5,1,0,0,1,1,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,138.0,1,4,1,2,1,133.0,1,0,0,1,0,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,138.0,1,37,37,194,171,131.0,1,0,0,1,0,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,19,5,8,147.3,0,0,0,1,0,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,6,9500,1,1,149.0,1,1,1,4,9,133.0,1,0,0,1,0,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,Graduate +1,16,6,9773,1,1,136.0,1,38,14,0,0,129.7,1,0,0,1,0,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,130.0,1,1,34,9,9,124.8,1,0,0,1,0,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,111.0,1,1,1,3,3,112.4,1,0,0,1,1,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,121.0,1,1,19,4,7,135.4,1,0,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,Graduate +1,1,1,9556,1,1,135.0,1,37,38,7,9,125.8,0,0,0,1,0,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,136.0,1,37,19,5,8,129.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,4,9670,1,1,110.0,1,1,37,7,7,111.1,1,0,0,0,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,128.0,1,38,38,5,5,118.6,1,0,0,1,0,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,Graduate +2,39,1,9500,1,19,133.1,1,37,38,9,10,120.9,1,0,0,1,0,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,Dropout +1,5,3,9085,1,1,143.0,1,37,37,0,90,159.1,0,0,1,1,0,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Dropout +4,39,1,9238,1,1,120.0,1,37,37,9,9,125.5,1,0,0,1,0,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,126.0,1,3,1,2,5,116.9,1,1,0,1,0,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,16,1,9556,1,1,137.0,1,37,37,9,7,122.7,1,0,0,1,0,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,136.0,1,1,1,9,9,123.8,1,0,0,1,0,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +4,39,1,9130,1,1,133.1,1,3,1,5,5,110.0,1,0,0,1,0,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,Dropout +1,17,4,9085,1,1,138.0,1,19,36,90,7,134.9,1,0,0,1,0,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,130.0,1,1,4,4,2,131.4,0,0,0,1,1,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,Graduate +2,42,1,9853,1,1,133.1,1,37,37,4,7,100.0,0,0,0,1,0,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,115.0,1,1,1,9,9,134.3,1,0,0,1,1,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,108.0,1,1,38,5,8,105.9,0,0,0,1,0,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9991,0,1,120.0,1,19,37,5,5,128.2,0,0,0,0,1,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +5,7,1,9130,1,3,160.0,1,19,38,9,6,160.0,0,0,0,0,0,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,121.0,1,3,19,2,9,115.4,1,0,0,1,1,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..92db5db9a6143e84d4ca37f25e2fb4c176360620 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/val.csv @@ -0,0 +1,443 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,17,1,9254,1,1,118.0,1,11,34,5,0,122.2,1,0,0,1,0,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,43,1,9238,1,1,120.0,1,1,38,4,3,118.3,0,0,0,1,0,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,108.0,1,3,1,3,4,109.1,1,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,9991,0,40,130.0,1,19,19,7,3,130.0,0,0,0,1,0,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,19,9,10,150.0,0,0,0,1,1,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9119,1,40,130.0,1,1,1,4,4,130.0,0,0,0,1,1,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,128.0,1,19,19,5,5,124.5,1,0,0,1,0,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,170.0,1,19,19,5,1,170.0,1,0,0,1,0,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,Enrolled +1,1,3,9500,1,1,113.0,1,3,1,134,135,107.8,1,0,0,1,0,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,Enrolled +1,1,2,9670,1,1,117.0,1,37,37,9,9,111.8,0,0,0,1,0,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,1,1,9,4,126.2,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,145.0,1,19,38,7,6,128.6,1,0,0,1,0,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9147,1,3,130.0,1,38,38,1,9,130.0,0,0,0,1,0,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,170.0,1,19,37,8,8,100.0,0,0,0,1,0,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9147,1,1,148.0,1,38,37,5,5,134.0,0,0,0,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,5,9085,1,1,118.0,1,1,38,4,7,122.2,1,0,0,1,0,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,133.1,1,38,38,191,192,118.0,0,0,1,1,0,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,Graduate +1,18,1,9853,1,1,132.0,1,37,37,9,5,126.1,0,0,0,1,0,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +6,39,1,8014,0,1,133.1,1,37,37,9,9,119.0,0,0,0,1,0,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,133.1,1,1,37,7,7,118.0,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,123.0,1,38,38,4,7,114.3,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9991,0,1,143.0,1,19,37,5,8,135.0,0,0,0,1,0,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,128.0,1,1,1,2,10,116.5,0,0,0,1,1,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,Dropout +2,39,1,9085,1,1,120.0,1,19,19,1,4,130.0,0,0,0,1,0,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,Dropout +2,39,1,171,1,19,100.0,1,37,37,9,9,139.0,0,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,3,9500,1,1,139.0,1,38,37,9,8,146.5,0,0,0,1,0,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,120.0,1,37,37,9,1,123.2,0,0,0,1,0,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,1,140.0,1,3,3,4,2,141.7,1,0,0,1,0,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,127.0,1,2,2,3,4,115.8,1,0,0,1,1,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,117.0,1,19,19,9,9,116.3,1,0,0,1,0,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,152.0,1,19,37,3,8,156.9,0,0,0,1,0,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,140.0,1,1,19,4,4,140.7,0,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,133.0,1,3,19,2,7,120.4,1,0,0,1,0,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,1,160.0,1,38,38,7,9,121.4,0,1,0,1,0,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,120.0,1,1,2,9,3,130.0,1,0,0,1,0,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,139.0,1,2,3,3,3,132.7,1,0,0,1,0,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,6,108.3,0,0,0,1,1,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,8014,0,1,107.0,1,19,11,0,0,103.5,1,0,0,1,0,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,113.0,1,38,38,191,175,110.2,1,0,1,1,0,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,1,19,1,5,100.0,1,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,39,140.0,1,38,19,9,5,110.0,0,0,0,1,0,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,Enrolled +1,18,2,9238,1,1,126.0,1,19,37,5,7,129.9,1,0,0,1,1,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,18,1,9254,1,1,137.0,1,19,19,4,5,126.9,0,0,0,1,1,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,121.0,1,37,37,9,9,122.4,0,0,0,1,0,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,51,1,9070,1,1,122.0,1,38,38,9,9,128.8,1,0,0,1,1,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,141.0,1,1,1,3,10,142.8,0,0,0,1,0,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,130.0,1,19,38,9,9,162.3,0,0,0,1,1,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,Dropout +1,18,1,9853,1,1,133.1,1,1,19,141,182,106.0,1,0,1,1,0,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,17,1,9147,1,1,120.0,1,19,19,3,3,113.4,0,0,0,1,0,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,147.0,1,37,19,7,7,134.4,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,1,120.0,1,1,3,144,123,120.0,0,0,0,1,1,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,17,4,9500,1,1,137.0,1,1,37,9,9,128.4,1,0,0,1,0,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,120.0,0,1,1,1,0,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9085,1,1,140.0,1,37,37,9,9,154.6,0,0,0,0,0,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,19,133.1,1,37,19,9,7,134.3,0,0,0,1,1,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,Dropout +1,39,1,9119,1,1,130.0,1,19,37,9,4,149.0,1,0,0,1,1,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,Enrolled +1,17,1,9254,1,1,115.0,1,1,19,3,3,109.4,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,126.0,1,37,3,5,2,116.9,0,0,0,1,1,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,128.0,1,1,1,2,2,130.8,1,0,0,1,0,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,127.0,1,19,19,4,6,120.7,0,0,1,0,0,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9238,1,1,110.0,1,14,14,90,90,112.5,1,0,0,1,0,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,19,5,5,130.8,1,0,0,1,0,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9130,1,1,150.0,1,1,1,4,10,110.0,0,0,1,1,1,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,5,9238,1,3,135.0,1,1,38,9,3,129.4,0,0,1,1,0,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,133.0,1,19,37,1,9,128.5,1,0,0,1,0,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,Graduate +1,39,2,9991,0,1,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9773,1,1,136.0,1,1,38,9,8,131.5,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,138.0,1,37,38,9,8,134.2,1,0,0,1,0,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,7,2,9500,1,3,140.0,1,37,38,9,9,138.0,0,0,0,1,1,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,Dropout +1,43,1,9003,1,1,120.0,1,1,1,4,10,134.4,0,0,0,1,1,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,140.0,1,19,19,9,9,124.3,1,0,0,1,0,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,Graduate +1,17,3,9254,1,1,127.0,1,12,38,5,7,116.9,1,0,1,1,0,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,1,9238,1,1,145.0,1,38,38,9,7,145.0,0,0,0,1,0,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,140.0,1,19,19,9,7,102.5,0,0,0,1,0,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,17,6,9500,1,1,131.0,1,1,19,7,7,126.5,1,0,0,1,0,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,34,34,0,0,123.3,1,0,0,1,0,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,120.0,1,37,3,9,3,168.2,0,0,0,1,1,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,5,9773,1,1,118.0,1,38,19,9,9,113.8,1,0,0,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,122.0,1,19,38,7,7,117.1,1,0,0,1,0,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,115.0,1,19,1,3,7,113.6,0,0,0,1,1,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,141.0,1,1,4,4,4,127.7,0,0,0,1,0,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,130.0,1,37,38,6,6,130.0,1,0,0,1,0,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,120.0,1,37,37,5,5,111.3,1,0,0,1,0,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,145.0,1,1,19,10,5,150.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,129.0,1,38,19,3,7,118.9,1,0,0,1,0,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,Enrolled +1,1,5,9085,1,1,121.0,1,38,37,9,8,114.0,1,0,0,0,0,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,17,1,9254,1,1,126.0,1,1,1,9,9,124.3,0,0,0,1,0,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,149.0,1,1,3,0,0,148.7,0,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9147,1,1,125.0,1,38,38,6,8,114.5,1,0,0,1,0,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,Graduate +1,16,3,9085,1,1,130.0,1,37,37,9,2,119.5,1,0,0,1,0,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,145.0,1,19,37,9,9,132.3,1,0,0,1,0,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,128.0,1,19,38,5,7,125.6,1,0,0,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9254,1,1,135.0,1,38,37,9,7,139.2,0,0,0,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,139.0,1,37,38,6,6,121.3,1,0,0,1,0,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9070,1,39,150.0,1,12,37,3,9,147.7,0,0,1,1,0,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,110.0,1,3,19,4,5,109.0,0,0,0,1,1,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,133.1,1,38,38,5,9,105.0,1,0,0,1,0,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,Graduate +2,51,1,9991,0,1,127.0,1,37,37,8,4,100.1,0,0,0,1,0,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,135.0,1,19,1,4,1,131.9,1,0,0,1,1,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +4,39,1,9556,1,1,160.0,1,19,3,9,2,130.0,0,0,0,1,0,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,Enrolled +1,17,5,9119,1,1,123.0,1,3,1,2,9,116.0,1,0,1,0,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9500,1,1,140.0,1,19,19,7,7,138.6,0,0,0,1,0,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,19,38,9,7,125.6,1,0,0,1,0,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,3,130.0,1,2,2,1,1,130.0,0,0,0,1,0,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,7,9,111.0,0,0,0,0,1,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,148.0,1,1,1,4,8,141.4,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9147,1,1,115.0,1,1,38,3,8,109.8,1,0,0,1,0,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +1,7,3,9130,1,3,130.0,1,19,37,90,5,130.0,0,0,1,0,0,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,5,9500,1,1,141.0,1,38,19,7,7,132.5,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,19,37,9,9,129.9,0,0,0,1,1,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,142.0,1,19,37,4,7,141.3,0,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,19,38,7,4,125.7,0,0,0,1,0,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,129.0,1,19,37,9,9,117.5,1,0,0,1,0,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,103.0,1,1,19,9,9,108.3,0,0,0,1,0,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9853,1,1,133.1,1,19,19,9,9,97.0,1,0,0,1,0,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9238,1,3,150.0,1,37,37,191,192,150.0,0,0,0,1,0,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9085,1,12,133.1,1,34,34,99,99,128.2,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9070,1,1,129.0,1,3,4,2,2,136.4,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Enrolled +1,39,2,9147,1,38,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,133.1,1,34,34,0,0,118.9,1,0,0,1,0,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,135.0,1,19,38,9,9,129.2,0,0,0,1,0,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,122.0,1,37,37,9,3,115.7,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,9853,1,1,120.0,1,1,19,4,7,111.3,0,0,0,1,0,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,141.0,1,38,19,9,10,125.6,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,4,9500,1,1,133.0,1,19,19,3,10,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,106.0,1,1,19,4,4,106.4,1,0,0,1,0,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,Enrolled +2,39,1,9147,1,1,133.1,1,37,37,9,9,140.0,0,0,0,0,0,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,51,1,9070,1,1,130.0,1,3,1,2,8,122.2,0,0,1,1,0,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,Graduate +1,17,6,9500,1,1,143.0,1,38,1,9,10,127.3,1,0,0,1,0,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,154.0,1,1,1,5,7,154.7,0,0,0,1,0,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,120.0,1,37,37,9,7,120.0,0,0,0,1,0,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,151.0,1,37,1,9,9,138.4,1,0,0,1,0,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Graduate +2,39,2,9003,1,19,133.1,1,38,19,4,1,110.0,0,0,0,0,1,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9119,1,1,129.0,1,12,1,4,10,124.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,120.0,1,37,37,4,9,117.1,1,0,0,1,0,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,133.1,1,3,1,4,9,105.0,1,0,0,1,1,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9147,1,1,120.0,1,38,38,9,8,118.3,0,0,0,1,1,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9147,1,1,147.0,1,19,1,9,7,139.3,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,140.0,1,19,19,5,5,131.3,0,0,0,1,1,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,133.0,1,38,19,9,8,128.8,1,0,0,1,1,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,Graduate +1,17,1,9254,1,1,127.0,1,1,1,4,8,126.7,1,0,0,0,1,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9147,1,1,131.0,1,1,19,4,5,120.2,1,0,0,1,0,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,143.0,1,38,38,5,5,133.9,0,0,0,1,0,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,Graduate +4,39,1,9147,1,1,140.0,1,37,37,9,9,142.8,0,0,0,1,0,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,138.0,1,19,1,5,5,128.0,1,0,0,1,0,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,Graduate +1,43,1,9500,1,1,150.0,1,37,37,9,9,130.8,1,0,0,1,0,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,160.0,1,19,38,9,9,152.0,0,0,0,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,42,1,9254,1,1,154.0,1,38,37,1,1,154.0,1,0,0,1,0,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,141.0,1,37,37,4,4,138.9,0,0,0,1,0,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,135.0,1,38,37,9,8,126.3,1,0,0,1,0,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,Graduate +1,17,2,9853,1,1,138.0,1,1,1,9,4,123.0,1,0,0,1,0,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +2,1,1,9085,1,1,139.0,1,19,19,192,144,127.1,0,0,0,1,1,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,Graduate +1,17,4,9070,1,1,116.0,1,38,37,9,9,109.0,0,0,0,1,0,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,38,38,6,3,140.0,0,0,0,1,0,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9254,1,1,120.0,1,19,19,4,4,125.5,0,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9991,0,1,120.0,1,37,37,9,8,122.5,1,0,0,1,0,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,136.0,1,1,37,4,5,130.8,0,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,116.0,1,38,19,8,10,110.8,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9853,1,1,146.0,1,19,38,9,3,145.3,1,0,0,1,0,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,150.0,1,37,37,9,7,150.0,0,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,124.0,1,1,19,5,4,124.4,0,0,0,1,0,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,37,38,9,9,148.5,0,0,0,1,1,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,9,9,127.0,1,0,0,1,1,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,Graduate +4,1,1,8014,0,1,133.1,1,39,19,4,10,143.0,1,0,0,1,0,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,133.1,1,1,19,3,5,115.0,0,0,0,0,1,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,Dropout +2,44,1,9003,1,39,160.0,1,37,38,9,4,160.0,0,0,0,1,0,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,Graduate +1,16,3,9070,1,1,152.0,1,1,38,4,8,156.9,1,0,0,1,0,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,9,9,126.3,0,0,0,1,0,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9773,1,1,131.0,1,1,38,9,5,132.4,1,0,1,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9556,1,1,140.0,1,37,37,9,8,105.0,1,0,0,1,0,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9070,1,1,128.0,1,19,19,3,3,129.8,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,7,9,125.5,1,0,0,1,0,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,140.0,1,38,37,7,7,143.0,0,0,0,1,0,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,139.0,1,19,38,4,9,146.7,1,0,0,1,0,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,129.0,1,1,37,9,9,118.2,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,142.0,1,34,34,99,99,131.9,0,0,0,1,0,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,139.0,1,1,19,9,3,130.3,1,0,0,1,0,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,38,5,5,152.4,0,0,0,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,19,19,4,6,147.6,1,0,0,1,0,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,Graduate +1,51,1,8014,0,2,110.0,1,19,38,9,10,110.0,0,0,0,1,1,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,Graduate +1,17,3,9119,1,1,135.0,1,1,19,141,193,121.7,1,0,0,1,1,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,1,4,9773,1,1,122.0,1,19,19,9,7,121.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9003,1,3,120.0,1,1,19,4,1,120.0,1,0,0,1,1,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,140.0,1,19,37,4,8,133.3,1,0,0,1,0,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,121.0,1,1,1,5,4,111.9,1,0,0,0,1,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,3,130.0,1,1,38,90,90,143.4,0,0,0,1,1,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,1,120.0,1,37,37,6,9,121.0,0,0,0,1,0,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,154.0,1,38,37,4,4,141.4,0,0,0,1,0,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,40,130.0,1,19,1,5,10,130.0,1,0,1,0,0,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,133.1,1,1,1,4,4,120.0,0,0,1,0,1,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,120.0,1,37,1,9,5,113.4,1,0,0,1,0,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,139.0,1,38,37,7,7,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,135.0,1,38,19,194,193,135.4,1,0,0,1,1,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,150.0,1,3,2,2,2,150.0,0,0,0,1,1,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +2,43,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,1,1,7,4,136.0,1,0,0,1,1,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,3,130.0,1,3,3,1,2,150.0,0,0,0,1,0,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,123.0,1,1,38,4,7,115.3,1,0,0,1,0,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,101.0,1,38,38,9,9,104.5,1,0,0,1,0,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,140.0,1,1,19,9,9,128.8,0,0,0,1,1,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,Graduate +1,39,2,9119,1,1,120.0,1,37,37,5,5,128.0,0,0,0,1,1,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,15,133.1,1,34,34,0,0,100.0,1,0,0,0,0,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,133.1,1,6,11,4,5,138.4,0,0,0,1,1,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,142.0,1,37,37,6,7,136.1,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,132.0,1,37,37,9,9,123.6,1,0,0,1,0,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,9,9,126.9,1,0,0,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,15,1,9238,1,1,150.0,26,3,37,2,8,132.5,1,0,0,0,0,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,142.0,1,12,12,9,4,132.6,1,0,0,1,0,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,4,9254,1,1,106.0,1,37,19,9,7,116.9,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,160.0,1,1,19,5,7,155.5,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,42,1,9500,1,1,157.0,1,3,3,3,3,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,131.0,1,3,19,1,4,118.8,0,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,Graduate +1,43,2,9773,1,1,120.0,1,34,34,0,0,103.6,1,0,0,1,0,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,125.0,1,34,37,9,9,129.2,1,0,1,0,0,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,4,9085,1,1,145.0,1,37,1,9,9,145.0,1,0,0,1,0,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,136.0,1,1,1,9,3,122.7,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,1,4,9147,1,1,120.0,1,19,38,5,5,122.8,1,0,0,1,1,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,2,9085,1,1,140.0,1,37,38,9,7,137.0,0,0,0,1,0,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,120.0,1,4,1,4,10,112.0,1,0,0,1,0,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,37,38,7,7,110.0,0,0,0,1,1,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,138.0,1,38,19,9,5,144.3,0,0,0,1,0,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,12,133.1,1,37,37,9,9,120.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9147,1,1,140.0,1,19,19,9,7,120.4,0,0,1,0,0,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,145.0,1,37,1,9,4,138.8,1,0,0,1,0,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,19,38,5,0,133.7,1,0,0,1,0,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9130,1,39,150.0,1,5,1,2,5,150.0,1,0,0,1,1,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,Enrolled +1,43,1,9991,0,1,140.0,1,37,38,9,8,135.5,0,0,1,0,0,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,Dropout +1,1,1,9254,1,1,123.0,1,38,19,9,4,117.8,0,0,0,1,1,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9500,1,1,125.0,1,1,12,3,6,115.2,1,0,0,1,0,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,Graduate +1,17,2,9254,1,1,129.0,1,12,37,9,9,122.0,1,0,0,1,0,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,2,9070,1,1,143.0,1,1,1,4,10,146.2,1,0,0,1,1,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,117.0,1,38,38,4,9,120.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,3,130.0,1,3,1,1,10,160.0,0,0,0,1,0,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,Dropout +1,17,1,9556,1,1,133.0,1,38,37,9,9,124.4,1,0,0,1,0,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,Graduate +1,1,1,9003,1,1,124.0,1,38,19,9,7,116.0,0,0,0,1,1,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,164.0,1,19,1,9,9,161.2,0,0,0,1,1,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,1,130.0,1,37,37,9,9,119.5,1,0,0,1,0,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,1,19,1,5,130.0,0,0,1,1,0,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,142.0,1,19,19,7,3,132.9,0,0,0,1,1,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,126.0,1,19,19,3,7,123.9,0,0,0,1,0,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9254,1,1,132.0,1,1,38,5,6,122.6,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,1,6,9238,1,1,125.0,1,38,1,7,4,118.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,1,140.0,1,3,3,2,2,110.0,0,0,0,1,1,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,138.0,1,1,40,4,3,149.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,43,1,171,1,1,144.0,1,19,19,9,4,121.6,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9773,1,1,129.0,1,37,37,9,7,117.1,1,0,0,1,0,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,Enrolled +1,1,6,9853,1,1,114.0,1,19,19,9,9,110.2,1,0,0,1,1,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Dropout +2,42,1,9147,1,1,100.0,1,37,37,9,9,100.0,1,0,0,1,0,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,135.0,1,38,19,9,5,126.3,0,0,0,1,1,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,156.0,1,3,3,2,2,147.7,1,0,0,1,0,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,Graduate +1,1,1,9147,1,1,139.0,1,38,1,5,5,127.1,1,0,0,1,1,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,127.0,1,1,37,4,9,128.1,0,0,0,1,1,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,5,9070,1,1,124.0,1,37,37,9,9,113.9,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,129.0,1,38,37,9,5,120.0,1,0,0,1,0,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,118.0,1,19,19,9,9,122.2,0,0,0,1,0,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,Graduate +2,39,1,9556,1,19,133.1,1,38,37,7,7,99.5,1,0,1,0,0,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,130.0,1,38,38,7,7,136.3,1,0,0,1,1,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,1,9853,1,1,112.0,1,2,19,3,9,106.1,1,0,0,1,0,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,43,1,9119,1,1,146.0,1,3,1,2,3,100.0,0,0,0,1,1,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,132.0,1,1,12,4,5,124.3,0,0,0,1,0,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,8014,0,1,136.0,1,37,37,5,8,132.5,0,0,1,1,0,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,37,37,90,90,130.0,1,0,0,1,1,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,135.0,1,1,1,4,4,122.8,0,0,0,1,0,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,Graduate +2,39,1,9254,1,1,130.0,1,37,37,9,9,125.0,0,0,0,1,0,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,133.1,1,19,19,9,8,132.0,1,0,0,1,0,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,Dropout +2,39,1,9070,1,1,160.0,1,3,1,2,5,126.5,0,0,0,1,0,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,15,1,9556,1,1,137.0,26,19,1,9,4,137.0,0,0,1,1,0,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9773,1,1,133.1,1,3,5,0,2,125.8,1,0,0,0,1,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,16,4,9238,1,1,135.0,1,37,37,9,9,121.0,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,2,9556,1,1,130.0,1,37,19,9,8,110.0,0,0,0,1,1,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,Enrolled +1,1,1,9853,1,1,123.0,1,1,38,9,6,121.6,1,0,0,1,0,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9119,1,1,126.0,1,38,19,5,5,130.2,0,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,5,9500,1,1,122.0,1,37,3,9,2,116.8,1,0,0,1,0,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,132.0,1,38,38,9,9,119.3,1,0,0,1,0,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,116.0,1,38,1,5,1,111.1,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9500,1,1,113.0,1,38,19,9,7,106.7,1,0,0,1,0,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,Enrolled +1,39,1,9670,1,1,120.0,1,34,34,0,0,106.0,1,0,0,0,1,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,145.0,1,19,37,5,9,130.5,1,0,0,1,0,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,Graduate +2,39,1,9238,1,19,133.1,1,37,37,4,4,98.5,0,0,0,1,0,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,152.0,1,41,19,3,5,137.8,0,0,0,1,0,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,Graduate +1,43,2,8014,0,3,130.0,1,34,34,0,0,130.0,0,0,0,1,1,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,152.0,1,38,37,9,9,139.1,0,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,18,1,9003,1,1,133.1,1,1,38,9,6,101.0,0,0,0,1,1,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,19,1,9,8,105.0,0,0,0,1,0,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,162.0,1,19,1,5,5,147.5,1,0,0,1,0,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,19,1,4,1,101.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9119,1,1,116.0,1,19,1,9,7,112.2,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,133.0,1,38,37,9,7,120.1,1,0,0,1,0,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,110.0,1,37,37,5,6,108.3,0,0,0,0,0,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,Dropout +1,17,2,9773,1,1,121.0,1,1,1,5,5,123.1,1,0,0,1,1,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,17,1,9556,1,1,133.0,1,1,38,4,9,119.0,0,0,0,1,0,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,Enrolled +1,17,1,9147,1,1,139.0,1,1,38,4,5,152.0,0,0,0,1,0,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,160.0,1,12,38,4,8,160.0,1,0,0,1,1,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,133.1,1,19,19,7,7,117.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,128.0,1,3,1,3,3,121.0,1,1,1,1,1,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,116.0,1,1,19,4,7,127.6,1,0,0,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,Dropout +1,18,3,9119,1,1,111.0,1,1,19,9,8,111.0,1,0,0,1,1,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,146.0,1,1,1,9,7,126.0,0,0,0,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,Enrolled +1,53,1,9085,1,42,140.0,1,1,1,5,5,143.3,1,0,0,0,0,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,Enrolled +1,1,1,9070,1,1,144.0,1,1,1,3,5,127.2,1,0,0,1,0,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,141.0,1,38,1,5,7,132.6,0,0,0,1,0,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,18,1,9085,1,1,153.0,1,37,37,9,9,138.0,1,0,0,1,0,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,137.0,1,1,3,5,2,133.9,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,150.0,1,19,38,9,5,143.0,0,0,0,1,0,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,1,9,6,126.1,1,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9070,1,1,133.0,1,4,1,4,4,132.0,1,1,0,1,0,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,140.0,1,1,19,9,9,140.0,1,0,0,1,0,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,133.1,1,3,1,2,4,128.2,1,0,0,1,0,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,1,133.1,1,37,36,90,7,128.2,0,0,0,1,1,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,114.0,1,19,38,9,7,135.9,0,0,0,1,1,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,Graduate +2,51,1,9500,1,1,130.0,1,37,37,5,5,120.0,0,0,0,1,1,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,Dropout +1,43,1,9670,1,39,110.0,1,19,3,7,10,110.0,0,0,0,1,0,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,43,1,9500,1,1,148.0,1,29,38,90,3,131.0,1,0,0,1,0,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,Graduate +1,18,1,9254,1,1,118.0,1,38,38,5,5,123.3,1,0,0,1,1,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9003,1,3,130.0,1,1,38,9,7,130.0,1,0,0,0,1,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,3,38,2,7,121.7,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9991,0,1,133.1,1,38,38,5,5,145.0,0,0,0,1,0,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,136.0,1,1,12,9,10,121.7,1,0,0,1,0,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,160.0,1,19,1,4,10,153.0,1,0,0,1,0,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,Graduate +2,53,1,9147,1,42,130.0,1,19,19,175,152,132.4,0,0,0,1,0,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9119,1,40,120.0,1,1,1,5,10,146.8,0,0,0,1,1,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,150.0,1,19,11,0,0,131.1,1,0,0,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,122.0,1,1,19,4,3,130.4,1,0,0,1,0,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,5,9119,1,1,132.0,1,38,19,5,3,119.1,0,0,0,1,0,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,137.0,1,1,3,4,3,124.6,0,0,0,1,0,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,126.0,1,1,38,4,7,124.3,1,0,0,1,0,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,Graduate +1,43,1,9238,1,39,120.0,1,2,1,1,2,118.6,0,0,0,1,1,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,34,34,0,0,119.1,1,0,0,1,0,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,127.0,1,1,1,4,4,120.4,1,0,0,1,0,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,135.0,1,1,38,5,5,122.4,0,0,1,1,0,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,Graduate +1,18,2,9773,1,1,109.0,1,1,1,4,4,109.0,1,0,0,0,0,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9500,1,1,132.0,1,19,3,9,5,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,Enrolled +1,43,1,33,1,19,133.1,1,38,38,4,4,140.0,0,0,1,1,1,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,Dropout +1,17,1,9773,1,1,120.0,1,37,37,5,5,125.3,0,0,0,1,0,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,1,19,5,10,141.1,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,145.0,1,19,38,4,4,132.1,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9254,1,1,122.0,1,19,19,5,5,118.2,0,0,0,1,0,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,Enrolled +1,17,1,8014,0,1,119.0,1,34,34,0,0,112.4,1,0,0,1,0,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,5,9500,1,1,125.0,1,1,1,3,8,115.6,1,0,0,1,0,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,Enrolled +2,39,1,9991,0,1,150.0,1,1,4,4,2,146.0,0,0,0,1,1,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,132.0,1,4,2,123,112,143.6,1,0,0,1,1,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9085,1,1,144.0,1,1,19,4,10,132.1,1,0,0,1,0,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,19,19,1,1,125.5,1,0,0,1,0,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,130.0,1,19,19,9,6,135.0,0,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,1,140.0,1,19,19,90,90,120.0,0,0,1,0,1,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,143.0,1,1,37,3,8,128.0,0,0,0,1,0,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,Graduate +1,1,3,9070,1,1,146.0,1,34,34,0,0,143.6,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9130,1,1,130.0,1,1,19,6,6,154.0,1,0,0,1,1,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,10,170.0,0,0,0,1,0,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,Enrolled +6,39,1,9991,0,12,130.0,1,37,37,90,90,119.0,1,0,0,0,1,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,53,1,9003,1,42,130.0,1,1,1,144,144,125.8,0,0,1,1,0,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,145.0,1,40,1,2,4,160.1,0,0,0,1,0,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9070,1,1,140.0,1,1,1,9,8,144.3,1,0,0,1,0,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,150.0,1,1,38,6,6,150.0,1,0,0,1,1,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,148.0,1,37,37,9,9,143.5,0,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,123.0,1,19,19,9,8,125.5,0,0,0,0,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,130.0,1,34,1,0,2,128.2,0,0,0,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,1,130.0,1,1,1,3,7,140.0,0,0,0,1,1,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,17,4,9556,1,1,112.0,1,1,1,4,10,107.1,1,0,0,1,0,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,101.0,1,1,1,3,4,102.4,0,0,0,1,0,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,133.0,1,37,37,9,7,121.8,0,0,0,1,1,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9500,1,1,133.1,1,3,1,5,5,148.8,0,0,0,1,0,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,157.0,1,19,38,5,3,149.3,0,0,0,1,0,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,163.0,1,3,4,2,5,175.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,148.0,1,1,3,4,1,163.4,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,Graduate +1,53,1,9085,1,42,130.0,1,38,38,9,9,128.8,0,0,0,1,0,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,Dropout +1,39,1,8014,0,1,120.0,1,1,1,4,4,150.5,0,0,0,1,0,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Graduate +1,51,1,9147,1,1,130.0,1,1,1,4,4,120.0,0,0,0,1,0,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,Enrolled +4,39,2,9556,1,19,133.1,1,19,19,4,6,123.0,0,0,0,1,0,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,Graduate +4,39,1,8014,0,19,140.0,1,37,37,9,3,131.0,0,0,0,1,0,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,131.0,1,19,38,9,9,129.7,1,0,0,1,0,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,Graduate +1,7,1,9238,1,40,130.0,1,37,37,5,5,130.0,0,0,0,1,1,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,Graduate +1,1,1,9130,1,1,133.0,1,3,1,2,4,126.0,0,0,0,1,1,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,100.0,1,1,1,4,4,120.0,0,0,0,1,1,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,138.7,1,1,12,4,3,111.3,0,0,0,1,1,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,135.0,1,38,38,5,7,121.0,0,0,0,1,0,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,1,19,5,9,111.1,0,0,0,1,1,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,43,1,9130,1,1,100.0,41,3,4,3,2,100.0,0,0,0,1,0,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9147,1,3,130.0,1,37,19,9,8,130.0,0,0,0,1,0,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,Graduate +1,1,4,9085,1,1,138.0,1,3,1,1,4,123.3,1,0,0,1,0,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,Graduate +1,17,1,9003,1,1,131.0,1,19,1,9,2,134.5,1,0,0,1,0,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,139.0,1,38,1,9,5,131.8,1,0,0,1,0,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,133.1,1,37,37,6,6,136.2,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,123.9,1,37,1,9,7,123.9,0,0,0,1,1,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,Dropout +1,1,1,9147,1,1,143.0,1,3,1,5,5,152.1,1,0,1,1,1,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,Dropout +1,1,6,9500,1,1,142.0,1,1,37,7,7,123.5,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,124.0,1,2,1,4,10,117.4,1,0,0,1,0,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,5,9119,1,1,130.0,1,19,1,4,5,118.1,1,0,1,0,1,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,Dropout +1,17,4,9147,1,1,121.0,1,38,37,6,7,113.0,1,0,0,1,0,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,150.0,1,19,19,4,10,100.0,0,0,0,1,0,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,151.0,1,37,37,9,9,138.0,1,0,0,1,0,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,138.0,1,38,38,9,9,126.8,0,0,0,1,1,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,Graduate +6,17,3,8014,0,1,115.0,1,19,1,5,90,115.0,0,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,127.0,1,1,19,3,3,120.2,1,0,0,1,0,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,Graduate +1,51,1,9991,0,1,134.0,1,1,1,5,3,120.6,1,0,0,1,1,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,121.0,1,19,1,7,9,117.9,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,131.0,1,1,38,4,8,121.9,1,0,0,1,0,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,19,133.1,1,38,38,7,8,170.0,0,0,0,1,1,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,100.0,1,37,37,9,5,170.0,0,0,0,1,1,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,95.0,1,37,37,5,8,95.0,0,0,0,0,1,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,148.0,1,37,37,9,9,134.7,0,0,0,1,0,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,Enrolled +1,1,2,9238,1,1,121.0,1,19,19,191,171,119.3,1,0,1,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9119,1,1,136.0,1,1,2,5,4,122.7,1,0,0,1,1,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,Dropout +1,17,4,9254,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,1,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,4,9,100.0,0,0,0,0,0,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9254,1,1,160.0,1,1,3,3,3,142.5,1,0,0,0,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,138.0,1,1,19,7,8,129.3,1,0,0,1,0,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,90,90,100.0,0,0,0,1,1,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,148.0,1,1,37,9,7,143.3,0,0,0,1,0,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,19,38,4,10,130.0,1,0,0,1,0,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,19,37,9,7,110.0,1,0,0,1,1,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9254,1,1,131.0,1,4,3,7,4,126.1,1,0,0,1,0,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,Graduate +1,43,2,9500,1,1,136.0,1,38,38,9,5,131.3,0,0,0,1,0,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,119.0,1,1,1,4,10,125.0,0,0,0,1,1,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,Enrolled +1,17,2,9238,1,1,132.0,1,38,1,7,7,133.1,1,0,0,1,0,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,126.0,1,12,1,5,10,120.2,0,0,0,1,0,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,Enrolled +1,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,161.0,22,37,37,9,9,137.9,0,0,1,0,0,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,Graduate +1,17,2,9147,1,1,133.0,1,19,1,9,3,120.1,1,0,0,1,0,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9085,1,1,127.0,1,3,3,2,8,138.8,1,0,0,1,0,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,121.0,1,1,1,1,1,115.1,1,0,0,1,0,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9130,1,1,130.0,1,3,19,2,9,115.9,0,0,0,1,0,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +2,7,1,9991,0,3,140.0,1,34,34,99,99,140.0,1,0,0,0,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,113.2,0,0,0,1,0,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9500,1,1,137.0,1,1,1,9,9,127.9,1,0,0,1,0,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,Dropout +1,1,5,9500,1,1,130.0,1,19,37,9,7,127.6,1,0,0,1,0,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,133.1,1,1,38,3,7,121.7,0,0,0,1,0,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,130.0,1,3,1,4,1,130.0,1,0,0,0,0,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,107.0,1,2,12,3,10,104.2,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,9,113.5,0,0,0,1,0,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,145.0,1,19,37,4,8,136.8,1,0,0,1,0,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,120.0,1,19,38,5,6,112.3,0,0,0,1,0,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,133.1,1,34,34,0,0,125.3,0,0,0,1,1,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,Dropout +1,1,6,9853,1,1,136.0,1,1,19,5,5,122.0,0,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,121.0,1,4,1,2,3,120.7,1,0,0,1,0,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,1,1,9147,1,1,133.1,1,34,34,0,0,131.8,0,0,0,1,0,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,4,100.0,0,0,0,1,0,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,127.0,1,19,38,3,3,121.1,1,0,0,1,1,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4d3adeb1d015dd6dfd7b3b58236164dbf2d2a0a8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e26b2fa53ab2bf7308f215b269c3d225a6e98428 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "tabsyn", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/synthetic/tabsyn_m5/real.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/synthetic/tabsyn_m5/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..0a6042a3e210bfe563db68aaf16ce01ce4c1e401 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/synthetic/tabsyn_m5/real.csv @@ -0,0 +1,3982 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,0,1,127.0,1,1,1,9,6,110.0,0,0,0,0,0,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,0 +1,17,2,9773,0,1,122.0,1,38,37,5,3,119.6,1,0,1,1,1,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,1 +1,1,6,9147,0,1,121.0,1,3,19,4,5,116.8,0,0,1,1,0,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,158.0,1,38,37,5,5,140.2,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,19,19,9,7,131.7,1,0,1,1,1,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,1 +1,1,3,9085,0,1,133.0,1,1,38,9,90,128.2,0,0,1,1,1,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,122.0,1,1,19,9,9,120.3,1,0,1,1,0,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,0 +1,43,1,9119,0,1,130.0,1,1,1,9,2,128.0,0,0,0,0,0,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,2 +1,17,3,9254,0,1,122.0,1,1,1,4,4,126.6,0,0,1,0,1,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,1,100.0,1,37,37,9,9,133.0,0,0,1,1,0,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,0 +1,44,1,9119,0,39,130.0,1,19,3,3,4,130.0,0,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9085,0,39,140.0,1,1,1,4,7,140.0,1,0,0,1,1,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,0 +1,17,2,9070,0,1,130.0,1,37,37,9,9,123.7,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +4,1,1,9991,1,1,130.0,1,37,37,9,9,118.1,0,0,0,0,1,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9500,0,1,190.0,108,3,2,122,4,190.0,1,0,1,1,1,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,102.0,1,1,19,9,5,100.6,1,0,1,1,1,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,1 +1,7,1,9500,0,3,120.0,1,19,3,4,2,120.0,1,0,1,1,1,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,130.0,1,38,19,9,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,111.0,1,3,4,4,3,108.2,1,0,1,1,1,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,39,1,9119,0,1,160.0,1,1,38,4,7,112.0,0,0,1,0,0,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,149.0,1,19,1,4,4,134.8,0,0,1,1,1,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,135.0,1,19,38,3,9,136.1,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,2,9500,0,1,120.0,1,37,34,90,0,121.5,0,0,0,1,1,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,1 +1,1,3,171,0,1,147.0,1,12,19,9,3,151.6,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,128.0,1,37,37,9,9,123.5,1,0,1,1,0,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,1,2,9070,0,1,129.0,1,1,1,4,9,132.9,1,0,1,1,0,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,2 +1,17,2,9500,0,1,138.0,1,1,38,5,8,132.8,1,0,1,1,1,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,134.0,1,19,37,9,9,131.6,1,1,1,1,1,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,130.0,1,37,37,9,9,122.0,1,0,1,1,1,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,37,37,9,10,130.0,0,0,0,0,1,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,2,9085,0,1,130.0,1,37,19,9,8,129.0,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,2 +1,17,5,9119,0,1,126.0,1,38,38,5,9,116.9,1,0,0,1,0,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,37,38,5,6,140.0,1,0,1,1,1,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,2 +1,18,4,9853,0,1,123.0,1,19,38,4,10,123.7,1,0,1,1,1,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,118.0,1,4,3,2,3,110.7,1,0,1,1,1,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,1 +1,39,1,8014,1,2,130.0,1,37,37,5,7,147.5,0,0,1,1,1,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,146.0,1,4,1,2,3,140.0,1,0,1,1,1,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,1 +1,44,1,9003,0,39,160.0,1,37,38,9,7,160.0,0,0,1,1,1,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,7,0,9003,0,3,130.0,1,1,37,4,9,130.0,1,0,1,1,1,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,19,133.1,1,34,34,99,99,96.0,0,0,1,1,0,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,136.0,1,37,37,7,7,140.9,1,0,1,1,0,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,1,9853,0,1,127.0,1,1,1,5,7,121.4,1,0,1,1,1,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,134.0,1,3,19,2,10,128.8,0,0,1,1,1,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,140.0,1,1,3,4,2,142.8,1,0,1,0,1,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,126.3,0,0,1,1,0,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.1,1,19,1,1,3,101.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9147,0,1,122.0,1,1,38,1,7,118.9,0,0,1,1,0,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,107.0,1,19,37,7,7,103.5,1,0,1,1,1,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,156.0,1,38,37,9,9,156.3,0,0,1,1,0,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,128.0,1,1,1,9,9,120.0,1,0,1,1,1,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,0 +1,17,2,9119,0,1,127.0,1,19,1,9,10,121.1,1,0,1,1,0,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,2 +1,39,1,9003,0,4,160.0,1,3,3,4,2,180.4,0,0,0,1,0,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,0 +1,43,1,9670,0,1,132.0,1,3,19,4,8,120.5,0,0,1,1,0,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,134.0,1,1,19,4,5,122.5,1,0,1,1,1,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,142.0,1,1,19,4,4,128.0,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,133.0,1,2,37,9,7,125.7,1,0,1,1,0,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,135.0,1,1,3,4,3,133.3,0,0,1,1,1,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,3,140.0,1,37,12,9,4,140.0,0,0,1,0,1,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9500,0,1,141.0,1,2,38,2,10,135.4,1,0,1,1,1,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,2 +2,43,1,9991,1,2,120.0,1,37,37,9,9,120.0,0,0,1,0,1,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,147.0,1,1,19,4,4,137.2,0,0,1,0,1,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9085,0,1,120.0,1,37,38,9,9,111.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,141.0,1,3,1,9,9,124.3,0,0,1,1,1,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,2 +1,18,1,9773,0,1,125.0,1,1,1,4,7,121.5,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,140.0,1,37,37,5,5,150.0,0,0,0,1,1,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,112.0,1,1,37,4,9,106.8,1,0,1,1,1,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,168.0,1,38,37,9,8,155.1,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,15,1,9119,0,1,133.1,41,2,2,2,2,100.0,0,0,0,1,0,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,2 +2,1,1,8014,1,1,121.0,1,37,37,9,9,114.4,1,0,1,1,1,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,136.0,1,1,38,4,5,132.2,0,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,1 +1,16,1,9070,0,1,145.0,1,1,1,3,3,146.1,1,0,1,1,1,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,2 +1,7,1,9085,0,40,140.0,1,5,3,2,2,140.0,0,0,0,1,0,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,0 +1,1,3,9085,0,1,126.0,1,38,1,9,9,132.0,1,0,1,1,1,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,146.0,1,1,37,9,9,129.3,0,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,131.0,1,37,37,9,6,127.2,0,0,1,1,1,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,139.0,1,37,37,9,9,124.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,133.1,1,37,1,5,4,151.2,0,0,1,1,0,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,170.0,1,38,19,9,2,160.6,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,131.0,1,37,37,9,6,130.7,0,0,0,1,1,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,2 +1,1,6,9500,0,1,122.0,1,19,37,3,5,116.6,1,0,0,1,0,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,1 +1,17,3,171,0,1,147.0,1,19,1,5,4,137.6,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,9,120.0,0,0,1,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,5,1,9130,0,1,157.0,1,5,43,2,2,149.7,1,0,1,1,1,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9003,0,39,160.0,1,3,1,2,6,160.0,1,0,1,0,1,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,140.0,1,9,19,4,4,131.2,0,0,1,1,0,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,1,130.0,1,1,3,2,6,110.0,0,0,1,1,0,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,1 +1,39,1,171,0,1,147.0,1,37,38,175,193,133.3,0,0,1,0,1,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,148.0,1,38,19,4,9,134.7,1,0,1,1,1,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,130.0,1,19,1,9,7,130.4,1,0,1,1,1,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,133.1,1,1,37,4,9,96.0,1,0,1,1,1,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,2 +1,39,1,9991,1,12,120.0,1,37,38,5,5,155.7,0,0,1,1,0,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,117.0,1,3,1,3,3,113.2,0,1,1,1,1,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,1 +1,17,2,9853,0,1,150.0,1,38,19,5,5,142.0,1,0,1,1,1,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,144.0,1,1,19,9,4,130.8,1,0,1,1,1,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,1 +1,17,4,9254,0,1,118.0,1,38,37,5,7,111.7,1,0,1,1,0,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,0 +1,1,6,9500,0,1,141.0,1,2,1,4,4,136.3,1,0,1,1,1,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,1 +2,39,1,9003,0,1,120.0,1,2,2,1,4,100.0,0,0,1,1,0,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,141.0,1,4,3,2,1,136.3,1,0,1,1,0,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,120.0,1,1,19,5,4,140.4,0,0,1,1,1,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,154.0,1,1,37,4,9,134.8,1,0,1,1,1,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,100.0,1,19,19,5,5,101.8,1,0,1,1,1,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,2 +1,17,3,9670,0,1,137.0,1,1,38,4,7,138.4,0,0,1,1,0,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,152.0,1,37,37,7,5,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,118.0,1,37,1,9,7,117.0,1,0,1,0,0,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,140.0,1,12,3,4,3,118.0,1,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9070,0,1,133.0,1,1,2,9,2,128.8,0,0,1,1,0,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,1 +1,39,1,171,0,1,140.0,1,37,37,9,9,100.8,0,1,1,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9070,0,42,130.0,1,40,19,3,5,130.0,1,0,1,0,1,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,143.0,1,1,19,3,3,133.9,0,0,1,1,1,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,1 +2,1,5,9500,0,1,130.0,1,1,19,4,4,122.3,0,0,1,1,1,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,9,9,125.0,1,0,1,1,1,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,120.0,1,37,37,7,8,120.0,0,0,1,1,1,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,1 +1,1,2,9147,0,1,125.0,1,1,19,4,9,124.0,1,0,1,1,1,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,131.0,1,38,19,9,9,130.0,1,0,1,1,0,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,132.0,1,1,1,4,1,119.4,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9500,0,1,135.0,1,19,19,7,7,128.0,1,0,1,1,1,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,1 +1,39,1,9500,0,19,133.1,1,38,38,9,9,114.8,0,0,1,1,1,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,130.0,1,2,2,6,6,130.0,0,0,1,0,0,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,112.0,1,19,38,9,10,112.0,1,0,1,1,1,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,2 +1,39,1,9254,0,1,170.0,1,37,37,4,6,138.3,0,0,1,1,1,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,1 +1,39,1,9147,0,19,100.0,1,38,19,7,9,132.0,0,0,0,0,0,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,133.1,1,19,19,9,9,119.0,1,0,1,0,1,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,0 +1,17,2,9085,0,1,138.0,1,37,37,9,7,123.3,1,0,1,1,1,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,2 +1,39,1,8014,1,1,133.1,1,37,37,9,9,112.5,0,0,1,1,1,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,1 +1,51,1,9670,0,1,140.0,1,12,5,3,3,126.6,0,0,1,1,0,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,1 +1,51,1,9085,0,1,125.0,1,1,1,9,4,120.0,0,0,1,1,1,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,151.0,1,1,1,4,3,132.3,0,0,1,1,0,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,1 +1,43,1,9556,0,1,130.0,1,1,37,5,5,128.0,1,0,1,1,0,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,1 +1,17,6,9670,0,1,113.0,1,4,1,3,10,112.3,0,0,1,1,1,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,17,1,9773,0,1,125.0,1,37,37,5,7,120.1,0,0,1,1,1,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,1 +1,53,1,171,0,42,130.0,1,1,19,9,9,130.0,1,0,1,0,0,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,1 +1,51,1,33,0,1,121.0,1,19,37,5,7,118.6,0,0,1,1,1,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,131.0,1,37,37,90,90,137.0,0,0,1,1,1,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,150.0,1,19,1,4,4,137.8,0,0,1,1,1,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,1,140.0,1,37,37,5,6,128.5,0,0,1,1,1,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,130.0,1,37,2,9,4,126.5,1,0,1,0,0,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,0 +1,1,2,9238,0,1,147.0,1,19,38,9,8,135.8,1,0,1,1,1,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,106.0,1,19,37,9,7,109.5,1,0,1,1,1,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,110.0,1,37,37,9,10,140.0,0,0,0,0,0,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,105.0,1,19,37,8,8,102.6,0,1,1,1,1,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,2 +1,17,6,9147,0,1,133.0,1,19,38,5,6,123.2,1,0,1,1,0,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,2 +1,43,1,9670,0,1,160.0,1,34,34,99,99,100.1,0,0,1,0,0,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,0 +4,7,1,9500,0,40,130.0,1,37,37,3,3,130.0,1,0,1,1,1,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,2 +1,43,2,9853,0,1,118.0,1,19,1,5,4,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,2 +1,43,1,8014,1,1,117.0,1,37,37,9,9,100.0,0,0,1,1,1,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,0 +1,53,1,9238,0,42,130.0,1,1,19,5,5,128.3,0,0,0,0,1,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,0 +1,43,1,9130,0,1,127.0,1,19,38,4,5,120.7,1,0,0,1,1,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,38,37,9,4,150.0,1,0,1,1,0,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,1 +1,39,1,9238,0,1,133.1,1,37,29,0,4,120.5,0,0,1,0,0,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,121.0,1,37,19,9,9,141.4,0,0,0,0,0,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,120.0,1,38,37,9,7,108.0,0,0,1,1,0,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,153.0,6,37,37,9,9,131.8,1,0,1,1,1,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,153.0,1,38,19,9,5,138.5,1,0,1,1,1,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,1 +1,17,2,9254,0,1,107.0,1,12,19,5,5,102.8,1,0,1,1,1,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9238,0,1,135.0,1,1,19,7,7,126.6,1,0,1,1,1,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,124.0,1,1,19,123,103,113.9,1,1,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,144.0,1,37,37,7,9,126.8,1,0,0,0,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9556,0,1,120.0,1,37,37,9,4,150.0,0,0,1,0,1,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,0 +1,43,3,171,0,1,120.0,1,37,37,9,9,143.3,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,140.0,1,38,19,4,10,122.3,1,0,1,1,1,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,157.0,1,3,38,1,5,136.7,1,0,1,1,1,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,2 +2,39,1,9991,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,150.0,1,3,1,2,8,153.8,1,0,1,1,1,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,130.0,1,2,1,2,7,126.2,1,0,1,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,142.0,1,37,37,9,9,132.9,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,43,1,9238,0,1,124.0,1,1,1,3,1,118.8,1,0,0,0,1,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,1,19,4,5,100.0,0,0,1,1,0,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,2 +1,17,5,9238,0,1,122.0,1,37,37,7,5,112.9,1,0,1,1,1,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,97.5,1,0,1,1,0,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,171,0,1,140.0,1,1,3,3,3,138.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,132.0,1,1,1,3,3,119.4,1,0,1,1,1,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,1 +1,42,1,9500,0,1,100.0,1,3,19,2,8,153.0,0,0,1,1,0,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,2 +1,1,1,9254,0,1,123.0,1,38,37,5,5,125.1,0,0,1,1,1,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9130,0,1,133.0,1,38,38,5,8,120.4,1,0,1,1,1,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,1 +1,17,4,9773,0,1,129.0,1,3,1,2,7,132.5,1,0,1,1,0,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,2 +4,39,1,9003,0,19,133.1,1,37,37,9,9,110.0,0,0,1,1,0,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,133.0,1,3,1,9,3,123.2,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,137.0,1,38,19,9,5,129.3,1,0,1,1,1,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,123.0,1,3,1,2,9,127.6,1,0,1,1,0,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,2 +2,39,1,9085,0,19,133.1,1,19,19,9,5,101.0,1,0,1,1,1,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,116.0,1,19,19,7,7,111.1,1,0,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,1,1,9070,0,1,147.0,1,3,1,2,3,149.8,1,0,1,1,0,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,100.0,1,37,37,7,9,100.0,1,0,1,1,1,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,141.0,1,38,38,7,7,132.5,1,0,1,1,1,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,168.0,1,1,1,5,5,161.0,1,0,1,1,0,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,0 +5,39,1,9003,0,19,133.1,1,19,1,9,9,119.4,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,114.0,1,1,19,9,9,111.9,1,0,1,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,2 +1,39,1,9500,0,1,130.0,1,37,37,3,7,143.8,0,0,1,1,0,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,133.1,1,19,19,9,7,100.0,0,0,1,1,0,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,0 +1,17,3,9853,0,1,132.0,1,34,34,0,0,131.3,1,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,157.0,1,37,37,9,9,143.0,0,0,1,1,0,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,1 +5,42,1,9254,0,2,120.0,1,37,37,4,9,120.0,0,0,1,1,1,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,6,1,1,192,144,129.8,0,0,1,1,0,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,2 +1,1,2,9500,0,1,139.0,1,38,37,9,7,125.0,1,0,1,1,1,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,1 +1,17,4,9238,0,1,133.1,1,1,19,9,5,95.0,1,0,1,1,1,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,180.0,1,37,37,7,4,153.8,1,0,1,1,1,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,4,9773,0,1,133.0,1,1,19,9,9,119.7,1,0,1,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,1 +1,17,5,9500,0,1,124.0,1,3,38,2,1,119.8,0,0,1,1,0,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,133.1,1,37,37,9,9,148.2,1,0,0,1,1,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,2 +2,39,1,9991,1,19,133.1,1,37,37,9,7,114.8,0,0,0,1,0,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,133.1,1,1,19,4,8,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,180.0,41,37,37,9,9,152.7,1,0,0,0,0,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9085,0,1,130.0,1,19,19,90,7,115.8,0,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,161.0,1,38,37,5,5,154.4,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,148.0,1,1,38,4,5,148.7,0,0,1,1,0,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,19,38,9,7,131.3,1,0,0,1,1,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,122.0,1,1,1,4,9,112.9,1,0,1,1,1,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,1,4,9500,0,1,142.0,1,38,38,9,8,129.8,1,0,1,1,1,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,1 +3,39,1,9003,0,1,170.0,1,1,37,6,6,170.0,0,0,0,1,1,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,2 +1,1,2,9147,0,1,130.0,1,37,37,9,9,117.8,0,0,1,1,1,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9147,0,1,140.0,1,37,37,9,7,132.3,1,0,1,1,1,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,132.0,1,2,1,9,9,126.4,1,1,1,1,1,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,140.0,1,1,3,9,2,140.0,1,0,1,1,1,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,117.0,1,1,19,4,4,109.3,0,0,1,1,0,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,176.0,1,3,38,3,7,169.7,0,0,1,1,1,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,133.1,1,37,38,7,7,98.0,1,0,1,1,0,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,136.0,1,3,3,2,2,128.7,0,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,12,38,4,9,107.0,1,0,1,1,1,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,0 +1,17,1,9130,0,1,156.0,1,2,9,3,5,166.9,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,1 +1,17,1,9130,0,1,123.0,1,19,3,3,2,121.6,1,0,0,1,1,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,171,0,1,129.0,1,1,1,9,9,124.8,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9119,0,1,125.0,1,19,1,5,4,121.5,1,0,1,1,0,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,0 +1,17,1,9085,0,1,163.0,14,37,37,9,9,150.8,1,0,1,1,1,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,1 +1,7,2,9130,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,1,9085,0,1,135.0,1,1,2,9,1,134.3,1,0,1,1,1,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,19,37,6,6,120.0,0,0,1,1,1,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,1,130.0,1,37,37,9,7,133.0,1,0,1,1,1,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,143.0,1,1,19,4,6,135.0,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +4,43,2,9991,1,38,133.1,1,3,1,2,9,125.4,0,0,1,1,0,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,140.0,1,3,1,2,4,124.1,0,0,1,1,1,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,37,38,175,103,127.0,0,0,1,1,0,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,151.0,1,1,3,1,1,111.0,0,0,1,1,0,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,133.0,1,37,19,9,8,141.4,0,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,133.1,1,38,37,5,5,108.0,0,0,1,1,1,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,9147,0,1,118.0,1,3,19,2,4,113.8,1,0,1,1,1,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,1,1,3,5,141.7,0,0,1,1,1,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,42,1,9119,0,1,130.0,1,19,37,9,3,135.0,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,0 +4,39,2,9147,0,19,133.1,1,37,37,9,7,116.4,0,0,0,0,0,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,148.0,1,19,38,9,8,134.8,1,0,1,1,0,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,116.0,1,19,19,4,7,110.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,1 +1,1,5,9147,0,1,122.0,1,38,38,9,9,117.5,1,0,0,0,1,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,122.0,1,37,37,9,9,125.9,1,0,1,1,0,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,171,0,1,127.0,1,1,1,9,5,124.2,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9147,0,39,117.4,1,19,1,4,9,117.4,1,0,1,1,1,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,150.0,1,37,38,9,9,146.2,0,0,1,1,1,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,2 +1,17,1,9254,0,1,158.0,1,37,37,5,9,138.1,1,0,1,1,1,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,0 +1,7,1,9500,0,3,140.0,1,1,37,9,5,140.0,0,0,1,1,1,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,1 +1,44,1,9238,0,39,140.0,1,1,1,9,3,135.7,1,0,1,1,1,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +2,7,1,171,0,3,120.0,1,19,19,9,9,130.0,1,0,1,1,0,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,10,100.0,1,34,34,0,0,113.0,1,0,1,1,1,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,1 +1,1,1,8014,1,1,125.0,1,37,37,9,7,114.9,0,0,1,1,1,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,1 +1,18,6,9500,0,1,124.0,1,37,37,9,7,117.8,0,0,1,1,1,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,1 +1,1,1,9773,0,1,109.0,1,2,3,3,3,111.8,1,0,0,1,0,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,149.0,1,1,1,9,3,156.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +2,44,1,9119,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,2 +1,44,1,9130,0,39,120.0,6,4,4,3,6,120.0,0,0,0,0,1,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,0 +5,1,3,9085,0,1,133.0,1,19,19,4,7,119.7,1,0,1,1,1,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,2 +1,1,1,9085,0,1,127.0,1,37,37,9,9,122.8,1,0,1,1,1,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,171,0,39,140.0,1,1,1,9,9,140.0,0,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9773,0,1,132.0,1,1,1,4,9,124.3,1,0,0,1,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +4,39,2,9670,0,19,133.1,1,19,1,90,90,103.0,0,0,1,0,0,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,26,1,9147,0,2,133.1,1,34,34,0,0,121.5,1,0,1,1,1,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,143.0,1,19,38,9,6,131.5,1,0,1,1,0,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,1 +1,17,1,9147,0,1,123.0,1,1,19,3,4,122.0,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,171,0,1,133.1,1,3,1,2,3,141.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,19,37,9,4,120.0,0,0,1,1,1,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,1,1,3,3,125.7,1,0,1,1,1,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,121.0,1,37,37,5,5,118.9,1,0,1,1,1,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,1 +1,51,1,9500,0,1,129.0,1,37,38,3,3,137.8,1,0,1,1,1,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,144.0,1,3,1,2,4,134.9,1,0,0,1,1,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,0 +1,17,5,9254,0,1,113.0,1,1,1,2,3,110.2,1,0,1,1,0,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,1,133.1,1,1,19,4,5,120.0,1,0,1,1,0,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,0 +1,39,1,9254,0,19,133.1,1,19,1,9,5,97.0,0,0,0,0,0,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9500,0,1,126.0,1,1,19,6,7,115.5,1,0,1,1,1,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,1 +1,42,1,9853,0,1,141.0,1,37,19,9,3,133.0,0,0,1,1,1,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,0 +1,39,1,9085,0,19,133.1,1,19,19,4,9,139.9,1,0,1,1,1,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,43,2,9254,0,1,140.0,1,19,19,9,9,126.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,108.0,1,34,38,0,3,105.9,0,0,1,1,0,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,114.0,1,19,19,9,7,107.7,0,0,1,1,1,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,0 +1,17,1,171,0,1,130.0,1,3,1,9,9,126.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.1,1,19,37,0,0,137.0,1,0,1,1,1,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9119,0,1,117.0,1,1,2,3,2,119.8,1,0,1,1,0,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9147,0,1,115.0,1,1,37,4,9,117.1,1,0,0,1,1,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,130.0,1,12,19,4,5,118.5,0,1,1,1,1,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,34,37,5,5,120.4,0,0,1,0,1,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,0 +1,44,1,171,0,39,150.0,1,19,1,9,9,154.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,43,1,9147,0,1,140.0,1,37,37,6,6,122.9,0,0,1,1,1,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,0 +1,42,1,9070,0,1,100.0,1,3,2,2,2,115.9,0,0,1,1,1,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,2 +1,17,1,171,0,1,128.0,1,1,1,4,10,134.7,0,0,1,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,1,1,9,9,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,110.0,1,37,37,7,7,133.9,0,0,1,1,1,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,0 +1,43,1,9773,0,1,119.0,1,19,37,5,5,105.0,1,0,1,1,1,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,2 +2,43,1,9991,1,1,140.0,1,37,37,4,1,122.7,0,0,1,1,0,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,135.0,1,37,1,3,5,121.0,0,0,1,1,1,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,123.0,1,3,1,2,3,124.1,1,0,1,1,1,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,0 +1,17,1,9670,0,1,132.0,1,19,1,5,4,119.1,0,0,0,1,0,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,5,9254,0,1,130.0,1,37,38,9,9,122.7,1,0,0,1,0,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9147,0,1,117.0,1,1,38,8,9,117.0,1,0,1,1,0,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,140.0,1,19,19,9,6,135.4,1,0,1,1,1,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,162.0,1,37,37,9,6,132.0,0,0,0,1,0,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,139.0,1,19,38,4,9,128.5,1,0,1,1,1,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,0 +4,39,1,9991,1,1,130.0,1,38,19,9,7,148.0,0,0,1,1,1,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +5,43,1,9500,0,1,131.0,1,1,38,5,5,118.8,0,0,1,1,1,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,5,9238,0,1,126.0,1,38,1,9,5,125.7,1,0,1,1,1,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,1 +1,53,1,9085,0,42,140.0,1,1,1,4,3,140.0,1,0,0,1,1,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,128.0,1,1,1,4,5,120.8,1,0,1,1,1,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,139.0,1,37,37,9,6,133.5,1,0,1,1,1,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,150.0,1,38,38,4,1,150.0,1,0,1,1,0,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,9147,0,1,133.1,1,1,1,4,4,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9853,0,1,140.0,1,37,19,9,8,122.3,0,0,1,1,1,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,0 +1,43,1,8014,1,1,120.0,1,38,19,5,4,118.3,0,0,1,1,1,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,2 +1,7,1,9130,0,3,140.0,1,2,38,2,3,140.0,1,0,1,0,0,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,122.0,1,9,19,90,6,103.4,0,0,1,1,1,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,1 +2,39,1,9070,0,19,133.1,1,37,37,9,10,126.3,0,0,1,0,0,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,160.0,1,38,38,7,7,147.8,0,0,1,1,1,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,2 +1,39,1,9238,0,12,100.0,1,37,37,9,9,124.3,0,0,1,1,0,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,1 +1,18,2,8014,1,1,117.0,1,3,1,3,4,111.8,1,0,1,1,1,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,38,37,7,7,140.0,0,0,1,1,0,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,0 +1,43,1,9853,0,1,140.0,1,3,1,3,3,128.3,1,0,1,1,1,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,127.0,1,37,38,9,9,120.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,1,161.0,1,19,37,4,10,100.0,0,0,1,1,0,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,1 +1,16,4,9500,0,1,145.0,1,1,1,4,4,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,1 +1,7,1,9853,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,0 +1,1,2,171,0,1,127.0,1,2,19,5,5,139.6,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,148.0,1,19,19,4,4,133.8,0,0,1,1,1,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,140.0,1,19,19,1,1,129.5,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,171,0,1,129.0,1,37,37,9,9,122.0,1,0,1,0,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,1,12,3,10,131.6,1,0,1,1,1,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,130.0,1,38,37,3,6,135.6,1,0,1,1,1,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,0 +1,51,1,9991,1,39,120.0,1,1,4,4,10,118.1,0,0,1,1,0,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,0 +1,39,1,9853,0,19,133.1,1,19,4,9,4,116.0,1,0,1,1,1,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9238,0,1,133.1,1,1,37,8,9,118.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,4,9500,0,1,125.0,1,19,1,1,1,117.8,1,0,1,1,1,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,141.0,1,1,38,4,5,125.0,1,0,1,1,1,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,121.0,1,38,38,7,5,120.0,1,0,1,1,1,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,2 +1,17,3,9500,0,1,142.0,1,3,3,3,3,132.9,1,0,1,1,0,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,0 +1,44,1,9238,0,39,140.0,1,37,19,191,102,136.1,1,0,0,1,1,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,2 +1,39,1,9991,1,2,140.0,1,3,3,2,2,155.7,1,0,1,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9119,0,1,135.0,1,12,19,5,5,121.0,0,0,1,1,0,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,135.0,1,3,3,2,2,123.0,1,0,1,0,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,117.0,1,1,1,4,4,117.7,1,0,1,1,0,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +1,43,1,171,0,1,120.0,1,3,3,2,2,120.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,1,38,1,7,120.0,0,0,1,1,1,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,1 +1,17,3,9238,0,1,122.0,1,19,19,7,7,117.5,1,0,1,1,1,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,1,37,37,9,9,144.2,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +4,39,1,9500,0,1,140.0,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,131.0,1,19,19,9,9,139.8,1,0,1,1,1,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,127.0,1,3,3,2,5,100.0,0,0,1,1,1,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,2 +1,39,1,9085,0,1,133.1,1,3,19,2,9,110.0,0,0,1,1,1,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,0 +4,39,1,9500,0,19,133.1,1,38,1,9,4,120.0,0,0,1,1,1,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,1 +1,16,1,9085,0,1,150.0,1,3,3,2,1,153.5,1,0,1,1,1,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,153.0,1,19,37,9,9,153.7,0,0,1,1,1,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,130.0,1,19,19,3,8,131.8,0,0,1,1,1,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,1,2,9853,0,1,131.0,1,1,1,2,9,121.9,1,0,1,1,1,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,136.0,1,3,3,3,3,130.8,0,0,1,1,1,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,126.0,1,1,19,4,0,120.1,0,1,1,1,1,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +1,44,1,9003,0,1,120.0,1,3,2,2,6,120.0,1,0,1,1,0,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,2 +2,39,1,9130,0,19,133.1,1,2,1,2,9,157.0,1,0,1,1,0,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,1 +1,7,1,9853,0,3,150.0,1,19,19,4,5,150.0,0,0,0,0,1,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,51,1,9070,0,12,133.1,1,37,19,3,7,106.6,0,0,0,1,1,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,2 +1,1,2,9085,0,1,157.0,1,3,3,5,2,153.9,1,0,1,1,1,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,1 +1,1,2,171,0,1,117.0,1,1,19,3,3,121.6,1,0,1,1,1,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,1 +1,1,2,9147,0,1,113.0,1,38,38,9,5,107.4,1,0,1,1,0,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,2 +1,39,2,9147,0,12,133.1,1,19,38,9,9,120.0,1,0,0,0,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,152.0,1,37,37,9,9,139.0,1,0,1,1,1,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,138.0,1,1,19,9,9,124.0,0,0,1,1,1,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,1 +2,39,1,9853,0,1,110.0,1,37,37,9,9,95.5,0,0,0,0,1,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9130,0,1,150.0,1,19,19,4,4,130.0,0,0,1,0,0,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,3,9119,0,1,138.0,1,1,19,4,3,125.4,1,0,1,1,0,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,0 +1,17,6,9147,0,1,120.0,1,37,38,9,9,115.5,1,0,0,0,0,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,2 +1,1,3,9670,0,1,134.0,1,14,11,0,0,128.4,1,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,145.0,1,38,37,9,7,129.3,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,18,6,9500,0,1,126.0,1,37,37,5,5,122.8,1,0,1,1,1,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,133.0,1,1,1,4,4,129.2,1,0,1,1,1,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,0 +1,44,1,9070,0,39,120.0,1,1,19,4,7,120.0,0,0,0,0,0,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,136.0,1,19,38,9,9,121.7,0,1,1,1,1,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,126.0,1,1,1,9,10,126.7,1,0,1,1,1,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,1 +1,1,3,9085,0,1,134.0,1,38,19,9,5,129.1,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,133.1,1,1,37,9,9,117.0,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,5,9238,0,1,130.0,1,19,1,5,5,130.0,1,0,1,1,1,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,8014,1,40,140.0,1,19,37,5,9,148.0,0,0,1,1,1,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,137.0,1,3,38,1,9,131.4,0,0,1,0,0,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,0 +1,1,2,9670,0,1,123.0,1,1,38,7,7,120.6,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,139.0,1,3,1,2,7,124.0,1,0,1,1,1,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,0 +1,1,2,171,0,1,152.0,1,38,19,9,9,151.7,1,0,1,1,1,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,110.0,1,37,37,9,4,114.3,1,0,1,1,0,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,2 +1,51,1,9991,1,1,120.0,1,38,3,5,3,128.2,0,0,0,1,0,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,141.0,1,3,2,2,2,133.3,1,0,1,1,0,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,2 +1,5,1,171,0,1,137.0,1,3,19,1,10,144.7,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,2 +1,43,1,9003,0,1,130.0,1,37,1,5,4,130.0,0,0,1,1,0,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,0 +1,18,1,9773,0,1,135.0,1,1,1,3,3,129.8,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,150.0,1,38,38,9,8,150.0,1,0,1,1,0,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,1 +1,17,2,9773,0,1,150.0,1,1,1,4,5,130.8,0,0,1,1,0,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9773,0,1,123.0,1,1,1,4,7,125.1,1,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,1 +1,17,4,9119,0,1,129.0,1,34,36,0,5,118.9,1,0,1,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,0 +1,1,2,9500,0,1,144.0,1,38,37,9,9,128.8,1,0,1,1,0,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,130.0,1,38,38,9,9,150.0,0,0,0,0,0,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,128.0,1,1,1,7,7,120.5,1,0,1,1,1,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,2 +1,7,1,9500,0,3,140.0,1,3,1,4,4,140.0,0,0,1,1,1,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,134.0,1,19,19,1,1,120.4,1,0,1,1,0,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,147.0,1,1,38,4,8,141.1,1,0,1,1,1,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,126.0,1,3,1,5,5,125.7,0,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,1 +2,1,4,9853,0,1,134.0,1,37,37,5,7,122.5,0,1,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,148.0,1,38,38,4,9,131.6,0,0,1,1,0,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,0 +2,39,1,9085,0,9,133.1,1,1,1,4,4,120.0,1,0,1,0,0,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,0 +1,39,1,9254,0,1,150.0,1,3,1,3,4,122.3,0,0,1,1,0,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,125.0,1,19,37,3,7,126.8,0,0,1,1,1,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,2 +1,18,1,9670,0,1,128.0,1,19,3,9,7,120.0,1,0,1,1,1,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,160.0,1,2,1,4,4,137.3,1,0,1,1,1,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,1 +2,39,1,9238,0,42,170.0,1,19,38,8,8,159.5,0,0,1,1,0,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9773,0,1,143.0,1,1,1,4,9,144.1,1,0,1,1,0,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,9991,1,1,130.0,1,37,37,9,9,127.8,0,0,1,1,0,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,51,1,9147,0,1,130.0,1,19,38,9,8,115.7,0,0,1,1,0,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,2 +1,17,3,9773,0,1,135.0,1,1,19,5,7,135.0,0,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,135.0,1,1,1,9,9,133.3,0,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,6,9500,0,1,136.0,1,1,1,4,5,123.3,0,0,1,0,1,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,143.0,1,5,5,2,2,137.8,0,0,1,1,0,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,133.1,1,1,19,141,114,140.0,1,0,1,1,1,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,17,6,9670,0,1,117.0,1,38,19,0,1,114.6,0,0,1,0,0,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,133.1,1,1,19,4,10,145.8,0,0,1,1,0,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,129.0,1,1,37,4,9,118.2,0,0,1,1,0,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,1 +1,7,1,9500,0,3,130.0,1,37,37,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,1 +1,17,4,9670,0,1,135.0,1,38,38,9,7,127.0,1,0,1,1,1,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,126.0,1,1,1,90,90,119.0,1,0,0,1,0,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9773,0,1,120.0,1,1,38,5,5,121.4,0,0,1,0,1,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,136.0,1,1,38,9,9,130.8,1,0,1,1,1,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,131.0,1,19,37,9,9,123.8,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,144.0,1,19,19,9,9,142.6,1,0,1,1,1,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,126.0,1,38,38,7,8,126.7,1,0,1,1,1,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,3,171,0,1,125.0,1,37,37,5,10,120.5,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,7,1,9130,0,2,110.0,1,19,19,4,8,110.0,1,0,1,1,0,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,3,1,2,8,150.0,0,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,5,171,0,1,139.0,1,19,3,9,2,136.9,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,1,9147,0,1,100.0,1,38,38,5,5,101.8,1,0,1,1,1,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,2 +1,44,2,9238,0,39,150.0,1,3,19,4,9,147.0,1,0,1,1,1,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,39,1,9254,0,19,133.1,1,37,37,9,4,100.0,0,0,1,1,0,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,0 +1,17,1,9130,0,1,130.0,1,19,38,4,7,122.5,0,0,1,1,0,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,19,37,1,1,140.0,0,0,0,1,0,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,2 +1,17,1,9070,0,1,157.0,1,3,3,3,3,146.2,0,0,1,1,0,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,9500,0,1,150.0,1,37,19,8,4,130.8,0,0,1,1,0,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,133.1,1,19,19,7,7,130.0,1,0,1,1,1,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,150.0,1,19,1,9,8,150.0,1,0,1,1,0,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,127.0,1,1,19,7,7,121.8,1,0,1,1,1,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,2 +1,1,1,9853,0,1,148.0,1,19,19,5,7,141.7,0,0,1,1,1,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,130.0,1,1,19,9,9,133.4,0,0,1,1,1,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,123.0,1,37,38,3,3,122.0,0,0,0,1,0,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,2 +1,17,1,9070,0,1,132.0,1,37,38,9,7,138.0,0,0,1,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,146.0,1,2,19,3,9,130.3,1,0,1,1,0,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,1 +1,44,1,171,0,39,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,116.0,1,3,1,3,4,115.7,0,0,1,0,0,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,2 +1,1,1,9670,0,1,130.0,1,19,37,4,5,118.8,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,124.0,1,37,37,7,9,121.2,0,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,127.0,1,19,37,9,3,120.7,1,0,1,1,1,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +2,43,1,9070,0,2,140.0,1,37,37,6,6,140.0,1,0,1,1,0,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,1 +1,39,1,9500,0,1,100.0,1,3,1,2,5,121.3,1,0,1,1,1,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,2 +1,39,1,9991,1,19,133.1,1,37,37,9,6,105.3,0,0,0,1,1,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9670,0,1,155.0,1,1,19,4,8,134.7,1,0,1,1,1,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,15,1,9119,0,1,160.0,32,1,3,143,152,160.0,0,0,0,1,1,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,2 +1,53,1,9670,0,42,140.0,1,19,37,3,6,140.0,1,0,0,1,1,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,2 +1,1,6,9853,0,1,140.0,1,38,38,9,7,137.6,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,140.0,1,19,19,7,7,129.5,1,0,1,1,1,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,1 +1,39,1,9773,0,19,133.1,1,19,19,3,4,104.0,0,0,0,0,1,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,130.0,1,37,37,9,9,118.8,0,0,0,1,0,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,136.0,1,1,1,9,1,133.0,1,0,1,1,1,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,143.0,1,38,38,9,9,138.8,1,0,1,1,1,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,1 +2,39,1,9147,0,1,140.0,1,37,37,6,10,131.8,0,0,1,1,1,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,2 +1,39,1,9085,0,1,130.0,1,4,1,2,9,120.0,0,0,1,0,1,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,2 +1,1,4,9500,0,1,148.0,1,19,19,4,5,137.0,1,0,1,1,1,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,120.0,1,37,19,5,3,156.0,1,0,1,1,0,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,9853,0,1,133.1,1,12,1,4,0,134.8,1,0,1,1,1,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,122.0,1,1,1,9,8,120.3,0,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,156.0,1,19,38,9,5,170.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,3,171,0,1,129.0,1,38,37,9,3,127.3,1,0,0,0,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,142.0,1,38,38,9,10,127.0,1,0,1,1,1,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,150.0,1,38,19,3,3,120.1,0,0,1,0,1,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,141.0,1,37,37,9,9,126.7,1,0,0,1,1,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,43,3,9147,0,1,127.0,21,3,37,3,3,117.9,1,0,1,1,1,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,1,120.0,1,1,19,4,7,110.0,0,0,1,1,0,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,0 +2,42,1,9254,0,1,136.0,1,2,2,134,112,130.0,1,0,1,1,0,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,0 +1,18,1,9119,0,1,122.0,1,19,1,90,3,116.1,1,0,0,0,0,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9500,0,1,120.0,1,2,4,4,5,136.6,0,0,1,1,0,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,0 +1,18,1,9070,0,1,143.0,1,38,38,7,5,141.6,0,0,1,1,1,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,1 +1,43,1,9119,0,1,140.0,1,37,38,5,7,146.5,0,0,1,1,0,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,125.0,1,19,19,9,9,121.5,1,0,1,1,1,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,1,0,1,1,1,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,159.0,1,3,3,2,2,165.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,127.0,1,3,1,2,9,119.3,1,0,1,1,1,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,1 +1,17,6,9238,0,1,117.0,1,1,38,4,7,114.6,0,0,1,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9119,0,1,148.0,1,19,19,9,8,129.8,0,0,1,0,0,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,2 +1,17,4,9119,0,1,127.0,1,19,19,5,5,120.4,1,0,0,0,0,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,5,9500,0,1,144.0,1,19,1,5,3,141.0,1,0,1,1,1,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,1 +1,17,3,9556,0,1,126.0,1,19,19,9,4,119.0,1,0,1,1,1,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,0 +1,1,4,9119,0,1,126.0,1,3,19,2,9,123.6,1,0,1,1,0,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,120.0,1,1,2,144,123,125.3,0,0,0,1,0,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,2 +1,39,1,9070,0,1,130.0,1,1,19,4,4,110.0,1,0,1,1,1,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,140.0,1,37,37,90,5,115.5,0,0,1,0,0,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,130.0,1,38,38,9,9,120.0,0,0,1,1,1,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,0 +1,17,2,9853,0,1,141.0,1,3,1,1,5,130.2,1,0,1,1,1,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,2 +2,1,1,9500,0,1,156.0,1,1,1,9,10,135.5,0,0,1,1,1,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,1 +2,7,1,8014,1,3,170.0,1,19,19,4,4,170.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,2,9147,0,1,134.0,1,37,19,9,8,126.3,1,0,1,1,1,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,122.0,1,12,12,5,7,126.6,1,0,1,1,1,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,38,38,9,7,138.8,1,0,1,1,1,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,132.0,1,37,37,5,7,127.5,1,0,1,1,1,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,1 +1,16,2,9238,0,1,130.0,1,37,37,5,6,126.9,1,0,1,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,110.0,1,3,2,3,3,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,127.0,1,2,19,4,5,121.8,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,1 +1,39,1,9085,0,12,133.1,1,38,19,9,8,138.3,1,0,0,0,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +1,39,1,9147,0,19,133.1,1,3,1,3,5,153.2,1,0,0,1,1,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,37,19,5,9,130.0,1,0,1,1,1,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +2,39,2,9147,0,1,130.0,1,19,37,4,7,140.0,0,0,1,1,0,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,128.0,1,19,19,7,7,124.4,0,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,19,3,8,150.3,1,0,1,1,0,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,143.0,1,38,19,7,9,129.5,1,0,1,1,1,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,1 +1,42,1,9500,0,6,141.0,1,37,1,9,4,145.0,0,0,1,1,1,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,1 +1,17,1,9238,0,1,160.0,1,19,37,6,6,144.3,0,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,2,9238,0,1,133.1,1,19,19,4,5,120.6,1,0,1,1,1,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,37,19,9,3,116.5,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,127.0,1,1,1,3,4,130.2,1,0,1,1,0,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,4,9254,0,1,131.0,1,38,36,9,9,124.0,1,0,1,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,1 +1,1,5,9254,0,1,120.0,1,37,37,9,7,127.0,1,0,1,1,1,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,135.0,1,34,34,0,0,134.1,1,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9254,0,1,133.1,1,37,37,9,6,121.5,0,0,1,1,0,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,144.0,1,38,38,5,7,128.0,1,0,1,1,1,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,132.0,1,1,19,6,6,124.7,1,0,1,1,0,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,1 +1,17,2,9991,1,1,116.0,1,37,19,9,4,118.5,0,0,1,1,0,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,133.1,1,1,1,9,1,103.0,1,0,1,1,1,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,16,5,9085,0,1,134.0,1,19,37,8,8,123.9,1,0,1,1,0,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,2 +1,43,1,9773,0,1,114.0,1,37,38,9,5,107.4,1,0,1,0,0,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,38,37,5,7,120.0,1,0,1,1,1,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,135.0,1,1,38,4,6,122.1,0,1,0,0,0,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,0 +2,39,1,8014,1,1,150.0,1,37,37,7,5,143.0,0,0,1,1,1,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,1 +1,44,1,9991,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,1 +4,39,1,9238,0,19,133.1,1,37,37,9,10,103.5,0,0,1,0,1,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,126.0,1,19,38,9,9,132.0,1,0,1,1,1,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,125.0,1,1,1,7,3,143.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,39,1,9147,0,1,120.0,1,37,1,9,1,122.7,0,0,1,0,1,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +2,7,1,8014,1,3,124.4,1,37,34,0,0,130.0,0,0,1,1,1,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,1 +1,18,1,9085,0,1,106.0,1,1,19,3,5,104.6,0,0,1,0,0,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,2 +1,44,1,9119,0,39,160.0,1,3,38,2,3,160.0,0,0,0,0,0,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,148.0,1,3,19,2,5,130.0,0,0,1,1,1,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,2 +1,1,1,9130,0,1,133.0,1,1,37,9,9,123.2,1,0,1,1,1,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,17,5,9500,0,1,130.0,1,19,1,9,4,128.8,1,0,1,1,1,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,149.0,1,19,1,9,9,137.8,1,0,1,1,0,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,1 +4,43,1,9670,0,1,150.0,1,37,37,9,6,110.0,0,0,1,1,1,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,1 +2,39,1,9119,0,1,110.0,1,19,19,0,5,137.0,0,0,0,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9556,0,1,122.0,1,19,19,3,10,113.3,1,0,1,1,1,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,140.0,1,1,19,4,5,127.5,0,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,3,9070,0,1,128.0,1,37,37,5,5,124.5,1,0,1,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,1 +1,44,1,9085,0,39,150.0,6,5,4,1,1,150.0,0,0,1,1,1,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,131.0,1,38,37,7,7,127.2,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,130.0,1,37,37,9,6,126.5,1,0,1,1,1,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,1 +1,17,1,9119,0,1,116.0,1,19,37,90,5,116.7,1,0,1,1,0,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,0 +1,17,3,9853,0,1,140.0,1,38,38,5,7,126.7,1,0,1,1,1,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,0 +1,17,4,9238,0,1,129.0,1,37,37,9,8,117.1,1,0,1,1,0,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,144.0,1,19,19,9,9,130.5,1,0,1,1,1,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,124.0,1,19,1,7,10,116.0,1,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,122.0,1,1,19,4,4,127.3,1,0,0,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,12,12,4,1,155.3,1,1,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +2,15,1,9773,0,1,133.1,41,37,37,9,6,100.0,0,0,1,1,1,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,138.0,41,1,1,9,9,126.5,1,0,1,1,1,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,1 +1,18,6,9500,0,1,142.0,1,38,37,9,5,128.0,1,0,1,0,1,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,3,1,2,3,140.0,1,0,1,1,1,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,2 +1,42,1,9991,1,1,150.0,1,19,19,5,5,113.7,0,0,1,1,0,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,135.0,1,1,19,5,5,130.1,1,0,1,1,1,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,2,9254,0,1,120.0,1,19,1,9,8,117.2,0,0,1,1,0,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,130.0,1,19,19,9,7,119.5,1,0,1,1,0,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,133.0,1,1,1,4,5,136.2,1,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,15,1,9147,0,1,133.1,21,1,3,192,3,100.0,0,0,0,1,0,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,2 +1,1,1,9670,0,1,112.0,1,37,1,7,0,110.6,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9238,0,1,117.0,1,19,19,9,9,117.0,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9991,1,1,140.0,1,1,37,9,8,154.5,0,0,1,1,1,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,97.0,1,0,1,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,119.0,1,37,37,5,4,118.0,1,0,1,1,0,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,112.0,1,19,38,5,7,107.1,1,0,1,1,1,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,1 +2,18,2,8014,1,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,144.0,1,37,37,9,6,129.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,120.0,100,1,1,4,7,119.5,0,0,0,1,1,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,136.0,1,19,38,5,8,130.3,1,0,1,1,1,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,7,9,121.3,1,0,1,1,1,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,135.0,1,1,4,5,3,124.9,0,0,1,1,1,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,4,9670,0,1,128.0,1,38,38,3,7,121.0,1,0,1,1,1,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,15,1,9556,0,1,114.0,26,3,19,122,144,114.0,0,0,1,1,1,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,2 +1,17,2,9238,0,1,125.0,1,19,19,3,3,118.0,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,118.0,1,37,37,7,7,114.2,0,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,2 +1,17,1,9147,0,1,115.0,1,19,37,5,7,112.9,1,0,1,0,0,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,120.0,1,19,37,9,9,118.3,0,0,0,0,0,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9119,0,10,133.1,1,34,37,0,0,128.8,1,0,1,1,0,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,115.0,1,19,38,5,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,137.0,1,37,37,9,9,132.8,1,0,1,1,1,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9003,0,1,148.0,1,19,37,9,9,131.6,1,0,1,1,0,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9773,0,1,161.0,1,1,19,4,7,148.4,0,0,1,1,1,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,1 +2,43,1,9991,1,1,133.1,1,37,37,9,7,113.5,0,0,1,1,1,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,132.0,1,1,1,9,9,133.8,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,1,9254,0,1,125.0,1,37,37,9,9,122.9,0,0,1,1,0,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,123.0,1,3,1,9,3,121.3,1,0,1,1,1,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,2 +1,17,1,9991,1,1,154.0,1,38,38,4,5,134.1,0,0,1,1,1,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,2 +1,44,1,9130,0,39,140.0,1,19,19,5,5,140.0,1,0,0,0,1,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,2 +1,53,1,9085,0,42,170.0,1,1,19,4,7,170.0,0,0,1,1,1,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,1 +1,17,5,9147,0,1,131.0,1,19,38,3,10,119.8,1,0,1,1,1,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,141.0,1,19,19,9,9,126.0,1,0,1,1,1,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,1 +1,1,3,9500,0,1,137.0,1,19,19,5,4,131.5,1,0,1,1,1,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,118.0,1,19,1,9,3,113.5,1,0,0,1,1,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,100.0,1,37,37,99,99,100.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9130,0,1,120.0,6,1,3,9,2,120.0,0,0,0,1,1,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,2 +1,1,1,9147,0,1,127.0,1,19,19,5,5,129.8,1,0,1,1,1,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,134.0,1,37,37,9,9,129.8,1,0,1,1,1,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,121.0,1,37,37,5,9,116.5,1,0,1,1,1,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9070,0,1,117.0,1,19,37,5,5,131.0,1,0,0,0,0,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,125.0,1,1,38,9,7,119.8,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,5,9500,0,1,140.0,1,1,1,4,3,131.1,1,0,1,1,1,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,1 +1,1,5,9254,0,1,101.0,1,3,19,3,9,98.9,1,0,1,1,0,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,130.0,1,37,38,7,9,117.8,0,0,0,1,1,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,128.0,1,34,19,3,0,141.0,1,0,1,0,1,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,150.0,1,38,37,9,9,130.8,0,0,1,1,0,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,125.0,1,1,19,4,7,116.6,0,0,1,1,0,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,1 +1,43,1,9670,0,1,130.0,1,34,34,0,0,114.8,0,0,1,1,0,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,1 +2,42,1,9003,0,1,120.0,1,3,1,2,2,113.3,0,0,1,1,0,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +4,39,1,9991,1,1,133.1,1,37,37,5,5,138.7,0,0,1,1,1,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,0 +1,39,1,9238,0,1,140.0,1,34,34,0,0,114.0,1,0,1,0,1,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9991,1,1,133.1,1,37,19,3,10,136.1,0,0,1,1,0,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9070,0,1,110.0,1,37,37,7,7,110.2,0,0,1,1,0,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,150.0,1,4,5,4,2,150.0,0,0,1,1,0,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,2 +1,1,2,9119,0,1,149.0,1,38,38,5,5,141.0,0,0,1,1,0,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,2 +1,42,1,9085,0,39,150.0,1,1,1,4,7,150.0,1,0,1,1,1,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,1,38,4,9,131.7,1,0,1,1,1,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,42,1,9853,0,1,120.0,1,1,37,5,5,113.9,1,0,1,1,1,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9085,0,1,130.0,1,37,19,9,7,130.0,1,0,1,1,1,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,2 +1,17,4,9500,0,1,133.0,1,38,37,5,7,126.4,1,0,1,1,0,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,147.0,1,3,1,2,3,131.6,0,0,1,1,1,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,1 +1,39,1,9991,1,12,133.1,1,37,37,9,9,121.5,0,0,1,1,0,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,2 +2,1,1,9991,1,1,150.0,1,37,37,9,9,131.8,0,0,1,0,1,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,0 +1,43,4,8014,1,1,116.0,1,34,34,0,0,116.2,0,0,1,1,0,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,1 +1,44,1,9130,0,39,140.0,1,1,19,4,7,140.0,0,0,1,1,0,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,2 +1,17,1,9773,0,1,136.0,1,3,1,2,3,132.5,1,0,1,1,1,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,1 +4,39,1,9500,0,19,110.0,1,37,38,5,5,151.0,0,0,0,0,0,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,0 +1,17,2,9254,0,1,123.0,1,19,19,5,5,113.2,1,0,0,1,1,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,137.0,1,3,19,2,9,122.3,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +4,39,1,9254,0,1,120.0,1,37,19,9,9,131.0,1,0,1,1,0,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9556,0,1,123.0,1,19,19,4,9,113.8,1,0,1,1,1,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,150.0,1,3,37,4,7,139.5,0,0,1,1,0,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,145.0,1,38,37,3,9,138.4,1,0,1,0,1,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,2 +1,39,1,8014,1,1,140.0,1,37,37,9,7,122.0,1,0,0,0,0,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,0 +2,43,3,9991,1,1,120.0,1,37,37,9,9,128.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,6,9500,0,1,126.0,1,12,37,5,9,121.8,1,0,1,1,1,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,0 +2,39,1,9991,1,1,130.0,1,37,37,9,9,140.0,1,0,1,1,0,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,130.0,1,37,19,9,8,130.8,0,0,1,1,0,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,2 +1,1,3,9070,0,1,125.0,1,19,38,9,9,125.4,1,0,1,1,1,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,132.0,1,38,38,4,9,119.1,0,0,1,1,1,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,1 +4,7,1,9147,0,3,130.0,1,19,1,5,5,130.0,0,0,1,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,130.0,1,19,19,7,7,121.6,1,0,1,1,1,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9773,0,1,126.0,1,37,38,5,5,129.5,1,0,0,0,1,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,133.0,1,38,38,5,5,123.2,0,0,1,1,1,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,140.0,1,37,37,9,9,121.0,0,0,1,1,1,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,3,9500,0,1,131.0,1,37,37,9,9,118.0,1,0,1,1,1,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,2 +1,1,1,9670,0,1,120.0,1,38,19,4,8,115.1,0,0,1,1,1,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,2 +1,17,5,9773,0,1,111.0,1,19,12,7,3,115.9,1,0,1,1,1,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,135.0,1,1,19,9,7,123.5,1,0,1,1,1,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,37,4,9,130.0,1,0,1,1,1,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,2 +1,44,1,9119,0,39,130.0,1,3,19,3,4,130.0,0,0,1,1,0,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,2 +1,44,1,9147,0,39,130.0,22,2,37,2,8,130.0,0,0,0,0,0,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,119.0,1,37,37,9,6,119.0,0,0,0,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9500,0,1,142.0,1,38,37,9,8,130.8,1,0,1,1,1,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,136.0,1,38,1,9,4,129.7,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,1 +1,42,1,9003,0,1,140.0,1,19,19,4,4,140.0,1,0,1,1,0,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,19,133.1,1,1,19,4,10,114.0,0,0,1,1,0,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,0 +1,17,5,9670,0,1,125.0,1,19,30,7,7,118.4,1,0,1,1,1,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,2 +1,1,2,9500,0,1,135.0,1,19,19,9,10,122.9,1,0,1,1,1,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,100.0,1,37,37,9,9,108.0,1,0,1,1,0,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,127.0,1,37,37,9,9,119.3,1,1,1,1,0,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,133.0,1,38,19,9,10,125.0,1,0,1,1,1,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,116.0,1,3,3,3,3,110.1,1,0,1,1,0,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,133.1,1,1,1,5,8,123.0,1,0,1,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,144.0,1,37,37,9,3,150.5,0,0,1,1,1,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,133.0,1,3,1,2,4,130.2,0,0,1,1,0,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,116.0,1,38,37,9,6,109.7,1,0,1,1,1,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,1 +1,18,3,9853,0,1,128.0,1,38,37,5,9,116.8,1,0,1,0,0,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,150.0,1,37,37,4,9,132.1,1,0,0,1,1,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,160.0,1,1,19,4,6,155.7,1,0,1,1,1,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,130.0,1,19,1,9,9,131.9,0,0,1,1,1,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,126.0,1,3,3,2,2,121.1,0,0,0,1,1,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,133.0,1,38,38,7,7,147.0,0,0,1,1,1,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,137.0,1,37,37,9,9,126.2,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,149.0,1,38,37,5,5,137.1,1,0,1,1,1,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,143.0,1,2,37,1,1,133.2,1,0,1,1,1,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,2 +1,17,5,9070,0,1,122.0,1,19,38,5,7,119.6,0,0,0,0,1,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,137.0,1,19,38,9,9,127.2,1,0,1,1,1,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,110.0,1,1,1,4,4,125.9,0,0,1,1,0,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,130.0,1,1,38,5,9,118.1,0,0,0,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9853,0,1,130.0,1,37,19,9,5,102.5,0,0,1,1,1,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.0,1,19,1,9,1,122.2,0,0,1,1,1,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,39,140.0,1,3,3,2,2,140.0,1,0,1,1,1,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,134.0,1,37,38,9,9,120.3,1,0,1,1,1,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,1,1,37,4,7,110.0,0,0,1,1,0,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,0 +1,15,1,9085,0,1,133.1,41,3,3,4,2,101.3,0,0,1,1,1,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,113.0,1,1,1,5,4,106.7,1,0,0,1,1,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,0 +2,39,1,9991,1,19,133.1,1,37,37,5,5,111.9,1,0,1,1,0,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9853,0,1,134.0,1,19,38,4,8,122.1,1,0,1,1,1,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,0 +1,1,2,9853,0,1,133.0,1,19,37,4,9,130.2,1,0,1,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,127.0,1,19,19,5,5,160.0,0,0,1,1,0,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,1 +1,7,1,9500,0,3,130.0,1,37,38,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,140.0,1,19,38,7,7,136.5,1,0,1,1,1,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,1 +2,39,1,9773,0,19,133.1,1,37,37,9,6,110.0,0,0,1,0,1,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,0 +2,39,1,8014,1,1,120.0,1,34,34,99,99,101.8,0,0,1,0,1,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,135.0,1,1,1,4,7,129.8,1,0,1,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,131.0,1,37,38,5,5,128.9,0,0,1,1,1,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,1 +1,1,4,9070,0,1,139.0,1,3,19,1,5,138.3,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,6,9500,0,1,122.0,1,1,1,3,7,114.3,1,0,1,1,0,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,2 +1,1,1,9500,0,1,150.0,1,37,37,9,7,136.5,1,0,1,1,1,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,3,1,2,8,121.4,0,0,1,1,0,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,117.0,1,19,19,194,193,117.4,1,0,1,1,1,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,2 +2,39,1,9085,0,1,133.1,1,36,36,99,5,128.2,0,0,1,0,1,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,121.0,1,3,1,2,3,114.0,0,0,1,1,0,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,2 +1,51,1,9853,0,1,139.0,1,1,1,4,10,134.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9070,0,1,137.0,1,1,1,3,1,141.2,1,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,133.1,1,37,37,6,3,140.0,0,0,0,1,0,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,1,9147,0,1,126.0,1,37,37,4,7,116.9,0,0,1,1,0,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,2 +1,44,1,9130,0,39,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +2,43,1,9991,1,1,130.0,1,37,37,9,9,128.2,0,0,1,1,1,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,131.0,1,19,9,5,3,118.4,0,0,1,1,1,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,138.0,1,19,19,3,3,131.0,1,0,1,1,1,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,1,130.0,1,37,12,9,8,129.4,1,0,0,0,0,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,9991,1,1,134.0,1,37,37,9,9,113.7,0,0,1,1,1,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,5,9853,0,1,117.0,1,38,38,9,7,114.6,1,0,1,1,1,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,145.0,1,3,3,4,4,153.1,1,0,1,1,1,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,2 +1,43,1,9085,0,1,130.0,1,19,38,4,9,130.0,1,0,1,0,1,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9119,0,1,146.0,1,37,37,9,9,148.5,1,0,1,1,0,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,136.0,1,1,1,4,4,124.1,0,0,1,1,1,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,100.0,1,37,38,9,4,140.0,0,0,1,1,0,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,2 +1,44,1,9003,0,39,180.0,1,1,3,4,2,180.0,0,0,1,1,1,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,1 +1,15,1,9773,0,1,120.0,26,19,19,4,5,120.0,1,0,1,1,1,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,141.0,1,4,19,4,10,100.0,0,0,1,1,0,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,1,150.0,1,29,10,6,6,150.0,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,5,5,9254,0,1,122.0,1,1,37,9,7,119.6,1,0,1,1,1,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,128.0,1,19,38,9,7,124.2,1,0,1,1,0,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9130,0,1,172.0,1,19,19,9,9,163.3,1,0,1,1,1,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,129.0,1,38,37,5,5,142.0,1,0,1,1,1,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,100.0,1,1,3,9,10,120.0,0,0,0,0,0,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,1 +1,1,3,9238,0,1,135.0,1,1,12,9,10,121.0,1,0,1,1,1,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,136.0,1,2,2,3,3,120.0,1,0,1,1,0,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,2 +1,1,6,9147,0,1,143.0,1,38,37,9,9,128.7,1,0,1,1,0,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,2 +1,17,2,9500,0,1,126.0,1,37,37,7,7,126.2,1,0,1,1,1,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,2 +1,17,2,9254,0,1,135.0,1,19,19,4,3,135.0,1,0,1,1,0,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,2 +1,1,2,9254,0,1,132.0,1,1,19,9,9,129.9,1,0,1,1,1,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +2,39,1,8014,1,1,120.0,1,34,34,0,0,104.0,0,0,1,1,1,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,0 +2,39,1,8014,1,9,133.1,1,37,37,8,10,100.0,1,0,1,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,43,1,9147,0,1,130.0,1,19,37,7,10,138.0,0,0,1,1,1,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,1 +1,17,2,9119,0,1,120.0,1,1,19,9,8,117.2,0,0,1,1,0,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,133.1,1,1,12,4,5,116.5,0,0,1,1,0,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,105.0,1,19,19,6,6,106.1,1,0,1,1,1,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,118.0,1,1,19,4,8,118.7,0,0,1,1,0,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,6,9500,0,1,140.0,1,3,19,3,8,129.0,1,0,1,1,1,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,168.0,1,19,19,4,4,171.2,0,0,1,1,0,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,133.0,1,19,9,0,0,121.5,1,0,1,1,1,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,177.0,1,1,38,3,9,162.3,0,0,1,1,1,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,130.0,1,38,38,2,9,124.8,0,0,1,1,1,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,136.0,1,38,1,5,6,133.9,1,0,1,1,1,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,154.0,1,1,1,5,3,144.9,0,0,1,1,0,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,1 +1,44,1,9119,0,39,150.0,1,19,37,9,9,150.0,1,0,0,1,0,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,0 +1,1,4,9254,0,1,132.0,1,12,19,9,9,124.7,1,0,1,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,33,0,1,100.0,41,38,37,9,8,100.0,0,0,0,0,0,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9085,0,1,120.0,1,4,1,2,9,113.4,0,0,1,1,1,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,134.0,1,1,19,9,9,136.1,1,0,1,1,1,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9500,0,1,150.0,1,1,19,5,3,140.0,0,1,1,1,1,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,129.0,1,37,37,9,9,128.8,1,0,1,1,1,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +2,39,1,9500,0,1,100.0,1,37,38,4,4,130.0,0,0,1,1,0,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,2 +1,1,1,9773,0,1,140.0,1,19,37,9,6,135.8,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,7,1,9085,0,40,150.0,1,19,19,9,5,150.0,0,0,0,0,1,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9500,0,1,148.0,1,1,37,4,8,132.0,1,0,1,1,1,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,1 +1,7,1,9119,0,40,140.0,1,3,1,2,5,140.0,0,0,1,1,0,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,163.0,1,19,1,9,7,143.1,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,3,9070,0,1,164.0,1,1,1,5,3,161.2,1,0,1,1,1,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,1 +1,1,6,9773,0,1,141.0,1,30,37,7,7,128.4,1,0,0,0,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,0 +1,43,2,9147,0,1,126.0,1,1,19,3,3,100.0,1,0,1,1,0,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,171,0,1,141.0,1,19,19,5,10,135.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,4,9670,0,1,117.0,1,3,3,4,4,113.2,0,0,1,1,0,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +2,43,1,9991,1,3,140.0,1,37,19,9,4,140.0,0,0,0,1,1,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,134.3,0,0,1,1,0,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,137.0,1,38,19,9,7,125.1,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,130.0,1,37,37,9,6,134.0,0,0,1,1,1,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,123.0,1,37,37,7,7,119.7,0,0,1,1,0,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9147,0,1,120.0,1,37,37,9,9,104.7,1,0,1,1,0,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9238,0,1,137.0,62,1,1,9,9,129.3,0,0,1,1,1,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,8014,1,1,122.0,1,37,19,9,9,123.8,0,0,1,1,1,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,1 +2,39,2,8014,1,1,100.0,1,34,34,0,0,100.0,1,0,1,1,1,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,1 +2,1,1,9991,1,2,120.0,1,37,37,6,3,129.2,0,0,1,1,1,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,150.0,1,3,19,2,6,150.0,0,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9991,1,1,123.0,1,1,3,4,2,113.2,0,0,1,0,0,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,0 +1,1,3,9773,0,1,130.0,1,1,37,4,5,120.9,1,0,0,1,1,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,146.0,1,19,3,4,9,127.0,0,0,1,1,0,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,44,1,171,0,39,160.0,1,19,38,9,9,160.0,1,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9085,0,39,150.0,1,38,37,6,6,150.0,1,0,1,1,1,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,1 +1,17,2,9254,0,1,136.0,1,19,19,4,7,123.1,1,0,1,1,1,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +2,39,1,9670,0,1,150.0,1,37,19,9,4,135.6,0,0,1,1,1,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,1 +1,1,6,171,0,1,134.0,1,19,37,5,5,126.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +4,39,1,9773,0,38,133.1,1,19,19,7,9,133.0,0,0,1,1,1,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,2 +1,17,2,9119,0,1,120.0,1,10,12,9,9,120.4,1,0,1,1,0,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,4,9254,0,1,113.0,1,38,19,7,7,107.4,1,0,1,1,1,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,137.0,1,1,19,4,5,136.3,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,142.0,1,37,37,9,7,132.7,1,0,1,1,1,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,1 +1,18,5,9085,0,1,121.0,1,5,3,2,3,111.9,1,0,1,1,1,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,9,133.1,1,34,36,0,90,107.5,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,8014,1,19,133.1,1,19,37,6,8,149.5,0,0,1,1,0,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9147,0,1,120.0,1,1,37,4,9,113.4,1,0,1,1,0,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,130.0,1,37,38,9,5,130.5,1,0,1,1,1,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,153.0,1,1,19,9,10,147.8,0,0,1,1,1,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,1 +1,1,1,171,0,1,159.0,1,3,1,4,4,162.2,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,122.0,1,37,37,5,6,114.3,0,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,2,9556,0,19,133.1,1,37,37,3,7,117.8,0,0,1,1,1,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,132.0,1,38,1,9,9,124.3,1,0,1,1,1,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,141.0,1,19,19,9,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,1 +1,17,1,9500,0,1,152.0,1,19,19,4,9,132.5,0,0,1,1,0,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,1 +1,17,1,9991,1,40,127.0,1,37,37,6,6,124.9,0,0,1,1,1,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,133.1,1,1,19,4,6,106.0,1,0,1,1,1,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,19,37,4,7,150.0,1,0,1,1,1,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,1 +1,1,1,9254,0,1,125.0,1,1,1,191,193,114.5,0,0,1,1,0,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,134.0,1,19,19,4,7,131.0,1,0,1,1,0,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,1 +1,1,2,9500,0,1,134.0,1,19,19,9,9,125.8,1,0,1,1,1,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,1 +1,17,1,171,0,1,125.0,1,37,37,7,9,134.1,1,0,1,1,0,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,0 +1,51,1,9254,0,1,120.0,1,38,38,9,9,118.0,0,0,1,1,1,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,155.0,1,1,1,4,3,140.5,1,0,1,1,1,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,125.0,1,1,1,4,90,125.4,1,0,1,1,0,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,1,5,5,126.3,0,0,1,1,0,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,1 +1,39,1,9147,0,1,140.0,1,37,3,9,2,135.1,0,0,1,1,0,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,5,171,0,1,122.0,1,19,12,5,9,127.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,2,9670,0,1,150.0,1,34,34,0,0,107.0,1,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,3,130.0,1,19,19,3,9,130.0,0,0,1,0,0,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,0 +1,39,1,33,0,1,133.1,1,19,37,9,9,96.1,0,0,1,1,0,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,0 +2,42,1,9500,0,2,130.0,1,37,37,9,9,130.0,0,0,1,1,1,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,1 +1,18,1,9238,0,1,137.0,1,19,38,5,8,137.4,1,0,1,1,1,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,2 +1,1,1,9254,0,1,140.0,1,19,1,9,8,140.9,1,0,1,1,1,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,132.0,1,1,2,9,3,128.2,1,0,1,1,1,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,17,4,9085,0,1,126.0,1,1,3,5,5,123.9,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,19,133.1,1,37,37,9,7,106.5,0,0,1,1,1,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,132.0,1,37,19,7,7,132.4,1,0,1,1,1,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,139.0,1,37,38,9,9,126.1,0,0,1,1,1,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,136.0,1,19,38,9,9,123.0,1,0,1,1,1,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,140.0,1,1,38,9,1,140.0,1,0,1,1,0,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,123.0,1,19,19,9,8,134.0,0,0,1,1,1,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,130.0,1,38,19,9,4,118.4,0,0,0,1,1,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,126.0,1,1,1,9,9,116.2,0,0,0,0,0,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,19,1,7,10,105.0,0,0,1,1,0,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,0 +1,17,1,9119,0,1,130.0,1,19,19,7,9,121.3,1,0,1,1,0,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,0 +1,43,1,9500,0,19,133.1,1,34,34,0,0,110.0,1,0,1,1,0,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,0 +1,1,3,9070,0,1,139.0,1,1,38,4,7,142.2,1,0,1,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,142.0,1,38,1,5,4,136.6,0,0,1,1,1,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,1 +1,17,2,9670,0,1,128.0,1,37,38,5,8,121.7,0,0,1,1,0,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,140.0,1,1,3,9,4,140.0,0,0,0,0,1,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,125.0,1,19,19,9,10,122.0,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,8014,1,1,130.0,1,37,37,9,8,103.5,0,0,1,1,1,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,1 +1,17,3,9085,0,1,117.0,1,19,38,5,7,111.1,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,42,1,9085,0,39,140.0,1,19,3,9,1,159.9,1,0,1,1,1,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,1 +1,1,2,9254,0,1,112.0,1,37,37,6,6,106.1,1,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9070,0,1,117.0,1,5,1,2,10,120.0,1,0,1,1,1,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,2 +1,7,1,9556,0,2,130.0,1,37,37,9,9,130.0,1,0,1,1,1,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,40,140.0,1,1,19,9,9,139.0,0,0,1,1,1,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,10,130.0,0,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,51,1,9070,0,1,135.0,1,3,1,3,5,121.8,0,0,1,1,1,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,135.0,1,19,3,9,4,121.5,1,0,1,1,1,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,136.0,1,19,38,4,8,125.5,1,0,1,1,1,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,142.0,1,3,37,4,8,132.4,1,0,1,1,1,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,142.0,1,34,38,4,7,127.3,0,0,1,1,1,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,1 +1,15,1,9147,0,1,130.0,26,1,1,2,3,130.0,0,0,1,1,1,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,17,2,8014,1,1,133.0,1,19,1,5,5,119.7,1,0,1,1,1,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,6,133.1,1,1,1,90,3,107.0,1,0,1,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,130.0,1,1,1,4,5,123.8,0,0,1,1,1,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9670,0,1,130.0,1,38,37,5,5,123.4,1,0,1,1,1,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,130.0,1,37,36,4,90,127.6,0,0,1,1,0,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +2,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,2 +1,1,5,9070,0,1,122.0,1,37,37,9,9,124.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,3,120.0,1,37,37,9,9,141.0,0,0,1,1,1,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,0 +1,43,1,33,0,1,134.0,1,37,37,1,1,100.0,1,0,1,1,0,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,0 +1,18,1,9773,0,1,125.0,1,19,37,9,5,122.2,0,0,1,0,1,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,113.4,0,0,1,1,1,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,142.0,1,19,39,5,4,141.7,0,0,1,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,137.0,1,1,38,5,8,125.8,0,0,1,0,1,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,141.0,1,1,37,4,3,126.8,1,0,1,1,1,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,1 +1,17,4,9500,0,1,133.0,1,4,4,4,4,130.7,1,0,1,1,1,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,1 +1,1,2,9500,0,1,119.0,1,1,1,4,4,115.2,1,0,1,1,1,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,128.0,1,1,1,4,10,118.9,1,0,1,1,1,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,130.0,1,37,38,7,8,119.3,1,0,1,1,1,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,148.0,1,3,1,4,5,132.8,0,0,1,1,1,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,1 +1,1,5,9500,0,1,143.0,1,37,19,4,4,123.3,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9147,0,1,130.0,1,34,34,99,99,109.8,1,0,1,0,0,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9085,0,2,140.0,1,38,38,9,10,150.0,0,0,1,1,0,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9670,0,42,110.0,1,1,19,9,9,114.2,0,0,1,1,0,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,1 +1,53,1,9147,0,42,140.0,1,3,4,2,1,140.2,0,0,1,1,1,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,145.0,1,19,38,9,7,136.3,1,0,1,1,1,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,38,37,9,9,154.4,0,0,1,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,127.0,1,38,38,9,6,122.8,0,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,120.2,1,0,1,1,0,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,124.0,1,3,1,2,5,121.6,0,0,1,1,1,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,2 +1,17,5,9853,0,1,132.0,1,37,38,5,6,119.1,1,0,1,1,1,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,1 +1,17,6,9670,0,1,110.0,1,1,19,4,10,111.3,0,0,1,1,0,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,120.0,1,38,37,9,9,114.8,1,1,1,1,1,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,140.0,1,19,19,9,3,130.0,0,0,1,1,0,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9254,0,1,120.0,1,37,37,9,9,115.1,1,0,1,0,0,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,142.0,1,1,37,5,7,128.0,0,0,1,1,1,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,168.0,1,37,1,9,4,133.4,1,0,1,1,1,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,1 +1,43,4,9085,0,1,133.1,1,34,34,99,99,125.2,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9147,0,1,123.0,1,1,1,9,7,117.4,1,0,1,1,1,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,1 +1,1,6,9119,0,1,135.0,1,2,1,3,5,123.5,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,2 +1,17,2,9254,0,1,118.0,22,19,37,9,9,110.3,1,0,1,0,1,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,126.0,1,1,19,4,4,116.9,0,0,1,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,117.0,1,1,38,3,9,109.3,0,0,0,0,1,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,0 +4,39,1,8014,1,1,133.1,1,37,37,9,8,113.0,0,0,1,1,1,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,1 +2,42,1,9991,1,6,123.0,1,37,37,9,9,123.0,0,0,1,1,0,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,2 +1,39,1,9003,0,1,100.0,1,37,37,9,5,110.0,0,0,1,1,1,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,127.0,1,37,38,9,5,131.2,1,0,1,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,110.0,1,37,37,9,7,112.5,1,0,1,1,1,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,126.0,1,19,37,7,5,119.4,0,0,1,1,1,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,121.0,1,1,1,4,3,120.5,1,0,1,1,1,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,134.0,1,1,1,3,3,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,3,9500,0,1,150.0,1,19,38,1,1,130.8,1,0,1,1,1,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,17,5,9119,0,1,124.0,11,4,12,2,9,119.5,1,0,1,1,0,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,117.0,1,19,1,4,7,112.1,0,0,1,1,1,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,2 +1,1,5,9500,0,1,132.0,1,37,37,7,7,120.3,1,0,1,1,1,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,1 +2,39,1,9119,0,1,110.0,1,37,37,90,5,150.0,1,0,1,1,0,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9773,0,1,130.0,1,38,37,5,3,122.3,1,0,0,0,1,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,0 +1,1,1,9556,0,1,118.0,1,19,38,9,9,116.3,1,0,1,1,1,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,120.0,1,3,3,3,3,111.6,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,131.0,1,37,19,9,9,134.5,1,0,1,1,0,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,2 +1,17,2,9556,0,1,133.1,1,37,38,9,8,106.0,1,0,1,1,1,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,2,110.0,1,37,37,9,9,112.9,0,0,1,1,1,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,0 +1,17,2,9773,0,1,126.0,1,19,38,9,8,118.7,1,0,1,1,1,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,140.0,1,1,1,3,3,127.6,1,0,1,1,1,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,163.0,1,19,1,5,10,146.6,1,0,0,1,1,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,39,151.0,1,19,37,4,7,151.0,0,0,0,1,1,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,165.0,1,19,37,5,5,142.3,0,0,1,1,1,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9773,0,19,133.1,1,19,1,7,9,115.0,1,0,0,0,0,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,0 +1,1,2,9556,0,1,130.0,1,1,38,3,8,119.5,1,0,1,1,1,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,1 +1,17,3,171,0,1,125.0,1,3,39,2,5,117.0,1,1,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,2,9147,0,1,133.0,1,19,1,5,10,121.8,0,0,1,1,0,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,2 +1,17,1,9119,0,1,131.0,1,1,3,9,10,123.7,1,0,1,1,0,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,148.0,1,37,38,9,8,133.0,1,0,1,1,1,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9254,0,1,120.0,1,3,19,3,9,114.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9773,0,1,114.0,1,1,1,9,9,111.6,1,0,1,1,1,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,115.0,1,38,1,9,8,118.5,0,0,1,1,0,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,2,5,127.0,0,0,1,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,117.0,1,1,1,4,7,109.3,1,0,1,1,1,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,1 +1,53,1,9085,0,42,140.0,1,19,38,9,9,138.2,0,0,0,0,1,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,125.0,1,1,1,3,3,114.5,0,0,1,1,0,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,1 +1,44,1,9147,0,39,130.0,1,19,1,9,3,130.0,0,0,1,1,1,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,145.0,1,38,19,4,9,127.9,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,128.0,1,37,37,9,8,124.3,1,0,1,1,1,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,1 +1,18,3,9070,0,1,138.0,1,38,37,9,7,125.1,1,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,17,5,9119,0,1,131.0,1,19,37,9,7,123.3,1,0,1,1,0,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,130.0,1,37,19,9,8,106.2,1,0,1,1,1,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,131.0,1,19,38,4,5,132.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,43,1,9003,0,1,120.0,1,37,37,5,9,120.0,1,0,1,1,0,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,132.0,1,4,39,2,2,136.6,1,0,1,1,1,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,2 +1,7,1,9500,0,40,170.0,1,1,1,9,4,170.0,0,0,1,1,1,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,1 +1,16,1,9003,0,1,147.0,1,1,37,4,9,140.7,1,0,0,1,1,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,125.0,1,1,1,4,8,115.6,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,150.0,1,37,37,9,6,138.5,0,0,1,1,1,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,1 +1,1,2,9991,1,1,143.0,1,5,1,4,4,131.5,0,0,1,1,0,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,9556,0,1,133.1,6,3,3,4,4,169.2,0,0,0,0,1,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,39,2,9556,0,1,133.1,1,1,1,9,10,100.5,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +1,17,1,9773,0,1,120.0,1,19,38,9,7,117.9,1,0,1,1,1,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,17,1,171,0,1,146.0,1,1,38,9,9,135.5,1,0,0,1,1,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,2 +1,1,3,9254,0,1,122.0,1,19,38,3,10,114.3,1,0,1,1,1,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,9130,0,1,130.0,1,2,3,9,1,117.6,0,0,1,1,0,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,2 +4,43,4,9991,1,12,133.1,1,37,37,9,9,153.0,0,0,1,0,1,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,18,2,9500,0,1,135.0,1,38,37,9,5,125.3,1,0,1,1,1,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,38,37,9,9,133.0,0,0,1,1,1,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,1 +1,17,1,171,0,1,129.0,1,38,37,4,6,128.0,0,0,1,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,128.0,1,2,19,2,4,123.3,1,0,1,1,1,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,130.0,1,19,3,4,2,159.0,0,0,1,1,1,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,1 +2,7,1,8014,1,3,130.0,1,19,38,3,7,130.0,0,0,1,1,1,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,116.0,1,19,37,3,3,109.0,1,0,1,1,1,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,123.0,1,1,1,3,9,116.7,1,0,1,1,1,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,144.0,1,19,19,4,4,130.7,1,0,1,1,1,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,42,1,9500,0,1,100.0,1,19,37,5,7,134.3,1,0,1,1,1,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,143.0,1,1,19,4,4,129.9,0,0,1,1,1,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,1 +2,39,1,9991,1,19,133.1,1,19,37,7,9,137.2,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9853,0,1,123.0,1,19,19,9,7,117.4,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,144.0,1,19,19,5,5,130.3,1,0,1,1,1,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,137.0,1,1,19,4,7,126.7,1,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,4,9773,0,1,124.0,1,3,12,2,9,137.0,1,0,1,1,0,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,135.0,1,37,37,9,8,123.0,1,0,1,1,1,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,123.0,1,38,37,9,7,120.6,1,0,1,0,1,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,0 +2,2,1,9147,0,2,120.0,1,37,37,9,9,120.0,0,0,1,0,0,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,103.0,1,1,3,2,2,100.6,1,1,1,1,1,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,126.0,1,3,1,2,8,123.9,1,0,1,1,1,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,2 +1,17,4,9500,0,1,136.0,1,3,3,2,2,132.5,1,0,1,1,1,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,114.0,1,3,29,3,5,111.9,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,125.0,1,19,1,9,9,130.6,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,147.0,1,37,38,9,5,134.8,1,0,1,1,1,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,131.0,1,1,19,9,9,130.3,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,118.0,1,3,1,2,5,110.0,1,0,1,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,130.0,1,19,19,4,10,116.8,0,0,1,1,1,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,1 +1,43,1,8014,1,6,133.1,1,34,34,0,0,100.0,0,0,0,1,1,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9670,0,12,170.0,1,1,37,3,5,110.0,0,0,1,1,0,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,1 +2,1,1,9991,1,3,160.0,1,1,3,4,9,137.3,0,0,1,1,1,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,108.0,1,19,1,5,5,107.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,121.0,1,3,3,2,2,112.3,1,0,0,0,1,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,0 +1,1,2,9773,0,1,138.0,1,19,1,9,3,133.5,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,136.0,1,38,38,9,9,121.7,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,0 +1,1,1,9500,0,1,132.0,1,38,37,9,7,122.0,1,0,1,1,1,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,1 +1,17,1,9003,0,1,125.0,1,3,3,2,2,100.0,0,0,1,1,0,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,137.0,1,1,1,1,5,131.8,0,0,1,1,1,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,140.0,1,37,37,9,9,148.0,1,0,1,0,0,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,127.0,1,3,1,3,7,137.2,1,0,1,1,1,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,150.0,1,37,19,9,9,150.0,0,0,1,1,0,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,1 +1,43,4,171,0,1,136.0,1,37,37,9,9,123.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,1,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,1 +1,1,1,9853,0,1,162.0,1,37,19,9,8,142.8,0,0,0,1,1,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,127.0,1,1,38,5,7,123.5,1,0,1,1,1,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,133.1,1,19,37,9,9,130.0,0,0,1,0,1,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,1 +1,17,2,9070,0,1,121.0,1,1,19,144,144,111.9,1,0,1,1,0,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,115.0,1,19,37,9,9,114.3,0,0,1,1,0,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,0 +1,10,1,9254,0,1,115.0,24,3,1,9,9,116.1,1,0,1,1,1,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,143.0,1,19,3,4,4,147.2,0,0,1,1,1,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,160.0,1,1,38,4,4,160.0,1,0,1,1,0,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,1 +2,1,1,9238,0,1,134.0,1,37,37,5,5,120.4,0,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,133.1,1,38,37,9,4,120.0,0,0,1,1,0,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,1 +1,18,1,9119,0,1,108.0,1,1,1,4,3,105.6,1,0,1,1,0,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,137.0,1,37,37,9,9,141.0,0,0,1,1,0,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9254,0,1,113.0,1,1,2,5,3,106.7,1,0,0,1,0,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,16,1,9085,0,1,140.0,1,1,1,9,9,127.1,1,0,1,1,1,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,1 +1,53,1,9238,0,42,140.0,1,37,37,9,10,136.9,1,0,1,1,1,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,1 +4,39,1,8014,1,19,133.1,1,37,37,9,7,134.5,0,0,1,1,1,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,1 +1,1,2,9773,0,1,125.0,1,19,1,4,5,122.2,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9070,0,1,134.0,1,1,19,3,3,127.7,1,0,1,0,1,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,17,1,9147,0,1,96.0,1,38,37,6,4,96.0,1,0,1,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,0 +1,10,1,9085,0,1,134.0,1,37,37,5,5,134.0,1,0,1,1,1,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,143.0,1,1,3,3,3,149.0,1,0,1,1,1,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,0 +1,18,3,9070,0,1,142.0,1,1,37,4,7,130.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,7,1,9003,0,3,140.0,1,3,19,2,10,140.0,0,0,1,0,0,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,151.0,1,38,37,9,5,138.4,1,0,1,1,1,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,143.0,1,19,19,4,4,135.3,1,0,1,1,1,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,133.0,1,1,19,9,9,132.0,0,0,1,1,0,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,19,133.1,1,37,37,9,5,135.5,0,0,1,1,1,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9254,0,1,134.0,1,37,37,9,9,133.3,1,0,0,1,1,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,0 +1,1,3,9085,0,1,135.0,1,3,2,4,3,121.0,1,0,1,1,1,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,140.0,1,1,1,4,4,123.5,1,0,1,1,1,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,188.0,1,3,3,2,2,178.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9238,0,1,126.0,1,30,19,0,2,121.5,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,131.0,1,3,19,5,5,127.2,1,0,1,1,1,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,1 +1,17,4,9853,0,1,143.0,1,37,37,9,5,127.3,1,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,0 +1,17,2,9238,0,1,111.0,1,19,38,9,9,110.7,1,0,1,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,140.0,1,19,38,9,7,125.7,1,0,1,1,0,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,2 +1,17,6,9500,0,1,126.0,1,19,37,3,9,119.4,1,0,1,1,1,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,131.0,1,1,1,4,9,122.3,0,0,1,1,0,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,128.0,1,1,19,9,8,100.0,1,0,1,1,1,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,138.0,1,19,19,5,1,130.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,1,140.0,1,3,3,1,1,140.0,1,0,1,1,1,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,3,130.0,1,1,19,5,9,130.0,0,0,1,1,0,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9773,0,1,131.0,1,38,1,5,7,131.0,1,0,1,1,0,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,19,133.1,1,19,19,9,7,140.0,0,0,0,0,1,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,133.1,1,37,37,9,9,126.5,0,0,1,1,1,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9500,0,1,132.0,1,37,37,9,7,128.3,1,0,1,1,1,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,1 +1,16,1,171,0,1,145.0,1,3,3,3,3,155.0,1,0,1,1,1,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,2 +4,1,1,9991,1,1,140.0,1,37,37,9,7,139.0,0,0,1,1,1,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,2 +1,17,2,9070,0,1,152.0,1,39,39,3,3,134.2,1,0,1,1,0,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,1,1,9500,0,1,141.0,1,19,19,7,9,139.8,0,0,1,1,1,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,1 +1,1,4,9670,0,1,133.0,1,1,2,4,7,121.1,1,0,1,1,1,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,1 +1,15,1,9147,0,1,135.0,26,1,1,9,7,135.0,0,0,0,1,0,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,2 +2,1,1,9991,1,1,144.0,1,19,19,9,9,151.4,0,0,1,1,1,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,1 +1,18,4,9853,0,1,118.0,1,19,37,9,6,111.4,1,0,0,0,1,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9500,0,1,134.0,1,38,1,9,6,133.5,1,0,1,1,0,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,37,37,9,6,107.0,0,0,1,1,0,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,141.0,1,38,38,9,9,128.4,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,133.0,1,1,1,9,9,128.5,1,0,1,1,1,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,1 +1,51,1,9085,0,40,120.0,1,3,3,4,2,125.0,0,0,1,1,1,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,150.0,1,37,38,3,7,134.5,0,0,1,1,1,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,127.0,1,3,19,4,4,116.9,0,0,1,1,0,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,136.0,1,2,38,143,163,129.7,1,0,1,1,0,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,2 +1,1,2,9773,0,1,159.0,1,1,1,3,3,151.0,1,0,1,1,1,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,165.0,1,37,38,9,8,152.4,1,0,1,1,1,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,1 +1,1,6,9500,0,1,139.0,1,1,1,4,4,124.5,1,0,1,1,1,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,134.0,1,1,1,5,3,128.4,1,0,1,1,1,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,1 +1,17,2,9238,0,1,133.0,1,2,1,3,4,136.2,1,0,1,1,1,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,120.0,1,19,1,8,7,115.1,1,0,1,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,131.0,1,1,39,5,3,122.6,1,0,1,1,1,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,8014,1,1,130.0,1,1,1,9,9,118.1,0,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,1 +1,39,9,9991,1,1,120.0,1,38,38,9,5,144.8,0,0,1,1,0,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9500,0,19,133.1,1,37,37,9,9,129.0,1,0,1,1,1,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,138.0,1,1,19,4,7,123.0,1,0,0,0,1,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,143.0,1,1,37,9,9,135.0,1,0,1,1,1,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,120.0,1,19,1,9,3,120.0,1,0,1,1,0,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,162.0,1,37,1,9,9,165.2,1,0,1,1,1,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,142.0,1,37,37,5,5,131.3,1,0,1,1,1,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,1 +1,1,3,171,0,1,125.0,1,38,37,4,9,115.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,120.0,1,38,37,5,3,110.5,0,0,1,1,1,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,1 +1,42,1,9773,0,6,120.0,1,34,34,0,0,122.0,1,0,1,1,1,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,162.0,1,1,38,4,5,138.6,1,0,1,1,1,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9500,0,1,152.0,1,1,1,4,4,141.0,1,0,1,1,1,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,139.0,1,3,19,3,5,120.8,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,135.0,1,1,1,3,5,130.1,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,1,9670,0,1,127.0,1,3,3,1,1,121.4,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9556,0,1,135.0,1,1,1,1,1,131.5,0,0,1,1,0,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,2 +1,17,3,9670,0,1,147.0,1,37,37,8,8,128.8,0,0,0,1,1,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,133.1,41,38,38,9,8,134.8,0,0,1,1,1,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,133.1,1,37,37,90,8,128.2,0,0,1,1,1,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,131.0,1,1,37,4,4,126.1,1,0,1,1,1,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,9,9,125.3,1,0,1,1,0,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,0 +2,39,1,8014,1,3,110.0,1,37,37,9,9,160.5,0,0,1,1,1,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,138.0,1,38,1,9,4,127.5,1,0,1,1,1,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,2 +1,39,1,9238,0,1,170.0,1,38,19,9,9,140.0,1,0,1,1,1,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,1,19,4,10,142.3,1,0,1,1,1,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,154.0,1,38,37,9,9,140.4,0,0,1,1,1,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,133.1,41,19,1,9,9,105.0,1,0,1,0,1,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +2,44,1,9085,0,39,160.0,1,37,37,192,192,160.0,0,0,1,1,1,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,141.0,1,38,38,9,9,142.3,1,0,1,1,1,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,119.0,1,37,37,7,7,112.0,1,0,1,0,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,137.0,1,37,37,9,9,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,1 +4,39,1,9670,0,1,100.0,1,37,37,4,10,120.0,0,0,0,1,1,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,130.0,1,3,3,2,2,131.1,0,0,1,1,0,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,120.0,1,1,19,9,3,116.9,1,0,0,0,0,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,42,1,9500,0,1,100.0,1,1,19,4,8,136.0,1,0,1,1,1,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,1 +1,1,2,171,0,1,125.0,1,38,19,9,9,117.3,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,152.0,1,1,38,4,9,160.4,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,12,133.1,1,37,37,9,7,139.4,0,0,0,1,1,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,2 +1,1,3,9070,0,1,150.0,1,1,1,4,8,131.5,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,7,1,9556,0,4,190.0,1,5,5,2,2,190.0,1,0,1,1,0,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,0 +1,17,3,9238,0,1,121.0,1,1,1,4,5,117.2,0,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,130.0,1,37,37,9,7,113.0,1,0,1,0,0,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,123.0,1,19,19,4,10,124.4,1,0,1,1,1,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,1 +1,17,2,9238,0,1,133.0,1,37,37,3,9,119.7,0,1,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,138.0,1,38,19,9,10,133.1,0,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,108.0,1,38,38,7,7,105.2,1,0,1,1,0,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,0 +1,1,3,171,0,1,115.0,1,9,1,6,6,108.7,1,0,1,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,4,4,119.8,1,0,1,1,1,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,1 +1,1,6,9119,0,1,126.0,1,19,19,7,3,116.6,1,0,1,1,0,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,1 +2,39,1,9500,0,1,133.1,1,37,37,9,9,130.1,0,0,1,0,0,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,124.0,1,37,38,9,3,114.2,0,0,1,1,1,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,1 +1,17,3,9147,0,1,137.0,1,1,1,4,7,124.4,1,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,2 +1,39,1,9130,0,19,133.1,1,37,37,9,10,156.4,1,0,0,1,0,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,0 +1,18,5,9853,0,1,121.0,1,38,19,7,7,117.5,1,0,0,0,1,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,1,2,9238,0,1,117.0,1,19,1,9,8,110.0,1,0,0,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9147,0,1,148.0,1,1,19,9,6,118.4,1,0,1,1,0,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,133.0,1,1,1,4,4,100.0,0,0,1,1,1,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,17,1,9238,0,1,158.0,1,1,1,5,6,140.5,0,0,1,1,1,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,157.0,1,19,38,9,7,146.2,1,0,1,1,1,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9119,0,1,131.0,1,3,1,4,1,135.9,0,0,1,1,0,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,38,37,5,10,117.8,1,0,1,1,0,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,1 +1,1,2,9119,0,1,126.0,1,1,38,141,192,122.5,1,0,1,1,0,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,117.0,1,37,37,0,4,120.5,1,0,1,1,0,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9254,0,1,110.0,1,12,19,9,9,125.0,0,0,1,0,0,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,0 +1,18,1,9147,0,1,121.0,1,19,3,5,5,115.8,1,0,1,1,1,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,1 +1,39,1,9238,0,19,133.1,1,37,37,9,9,139.0,0,0,0,0,0,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9003,0,3,130.0,1,3,3,6,2,130.0,1,0,1,1,0,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,132.0,1,19,37,3,5,125.4,1,0,1,0,1,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,133.1,1,38,38,4,7,115.6,1,0,1,0,1,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,129.0,1,1,2,3,1,125.9,1,0,1,1,1,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,37,37,9,9,143.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,126.0,1,3,19,3,3,115.2,0,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,123.0,1,19,38,9,10,116.7,1,0,1,1,1,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,1 +1,17,2,9254,0,1,125.0,1,37,37,9,8,122.6,1,0,0,0,1,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,39,1,9119,0,1,160.0,1,38,37,7,7,129.0,0,0,1,1,0,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,3,19,2,3,133.8,1,0,1,1,1,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,120.0,1,19,19,4,7,115.5,1,0,0,1,0,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,120.0,1,38,38,3,3,140.0,0,0,1,1,1,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9238,0,1,127.0,1,1,19,4,3,141.7,1,0,1,1,0,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,111.0,1,37,37,9,10,95.8,1,0,1,0,0,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,130.0,1,38,1,9,4,140.0,1,0,1,1,1,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,1 +1,1,2,9147,0,1,131.0,1,1,1,9,9,118.8,0,0,1,1,0,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,161.0,1,1,19,4,4,152.3,0,0,1,1,1,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,124.0,1,38,38,9,9,115.6,0,0,1,1,0,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,160.0,1,3,3,1,2,149.2,0,0,1,1,0,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,16,3,9853,0,1,134.0,1,19,37,9,9,121.1,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,2 +1,43,2,9991,1,1,140.0,1,37,37,5,5,124.3,1,0,1,0,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,127.0,1,38,37,5,7,123.9,1,0,1,1,1,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,120.0,1,19,37,6,8,160.0,0,0,1,1,0,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,1 +1,39,1,9085,0,1,133.1,1,3,3,4,2,144.9,1,0,1,1,1,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,130.0,1,1,19,3,10,130.0,1,0,1,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,1 +1,42,1,9003,0,1,130.0,1,3,2,2,6,105.3,0,0,1,0,0,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9991,1,1,130.0,1,37,37,9,9,127.6,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,100.0,1,1,38,4,6,104.8,0,0,0,0,1,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,0 +1,1,5,9070,0,1,125.0,1,3,3,2,2,140.8,1,0,1,1,0,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,133.1,1,34,38,0,4,147.0,0,0,1,1,1,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,126.0,1,34,34,0,0,142.4,0,0,1,1,1,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,121.0,1,19,38,4,10,114.4,0,0,1,1,1,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,133.1,1,37,37,5,0,111.5,0,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,130.0,1,1,19,5,5,129.1,1,0,1,1,1,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,3,1,4,6,130.0,0,0,1,1,0,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,2 +1,39,1,9500,0,1,123.0,1,19,1,1,1,140.8,0,0,1,1,1,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,1 +1,44,1,9070,0,39,130.0,1,1,1,4,10,130.0,1,0,1,1,1,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,1 +4,39,1,9085,0,1,133.1,1,34,34,0,0,128.2,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,128.0,1,37,37,9,9,135.7,1,0,1,1,0,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,135.0,1,38,38,4,7,121.7,1,0,1,1,1,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,2 +1,43,1,9085,0,1,110.0,25,38,38,9,6,117.2,1,0,1,1,0,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,1 +1,43,3,9500,0,1,140.0,1,1,19,9,7,127.5,1,0,0,1,1,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,1 +1,17,3,9238,0,1,133.1,1,41,1,2,3,117.0,1,0,1,1,1,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9254,0,1,112.0,1,37,37,9,9,108.5,0,0,1,1,0,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,51,1,9238,0,39,140.0,1,38,38,5,7,129.1,1,0,1,1,1,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,122.0,1,38,19,9,9,126.6,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,123.0,1,1,1,4,4,114.4,0,0,1,1,0,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,0 +1,18,4,171,0,1,133.0,1,1,4,9,5,129.2,1,0,0,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,128.0,1,19,19,9,5,121.7,1,0,1,1,1,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,1 +1,39,1,9130,0,1,150.0,1,19,19,9,5,160.0,1,0,1,1,0,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,160.0,1,19,37,5,3,152.0,0,0,1,1,1,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,53,1,9085,0,42,140.0,1,19,37,9,8,142.5,1,0,1,1,1,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,130.0,1,9,19,4,1,134.2,1,0,1,1,1,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,3,9254,0,1,121.0,1,19,19,9,6,125.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,1,128.0,1,19,1,9,10,157.4,1,0,1,1,1,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,146.0,1,37,37,9,7,149.2,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9853,0,12,133.1,1,37,37,7,8,103.0,0,0,1,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,143.0,1,19,19,5,6,142.3,0,0,1,1,1,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,2 +1,1,2,9085,0,1,118.0,1,1,19,3,3,112.4,1,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,2 +2,43,1,9991,1,1,100.0,1,37,37,9,9,128.2,0,0,1,1,0,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,118.0,1,38,38,5,5,110.0,0,0,1,1,1,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9147,0,1,136.0,1,38,38,9,9,127.3,1,0,1,1,0,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,170.0,1,19,19,8,8,176.7,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,124.0,41,19,38,9,9,123.3,1,0,1,1,1,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,1 +1,1,4,9070,0,1,170.0,1,3,3,2,2,165.8,1,0,1,1,0,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,3,37,9,9,142.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9147,0,1,122.0,1,1,38,4,5,116.4,0,0,1,1,0,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,150.0,1,1,1,4,4,138.1,1,0,1,1,1,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,2 +1,17,6,9238,0,1,138.0,1,3,3,1,2,123.0,1,0,1,1,1,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,135.0,1,19,12,9,7,137.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9070,0,1,125.0,1,1,3,3,3,128.9,0,0,1,1,1,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,128.0,1,38,19,9,10,125.2,1,0,1,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,2 +1,42,1,9003,0,1,140.0,1,1,3,4,2,140.0,1,0,1,1,0,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,2 +1,39,1,9500,0,19,133.1,1,37,38,151,161,143.7,0,0,1,1,1,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,118.0,1,38,38,7,7,115.2,1,0,1,1,1,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,152.0,1,19,37,9,8,135.6,1,0,1,1,0,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,12,110.0,1,34,34,0,0,157.8,0,0,1,1,1,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,1 +1,1,6,9147,0,1,112.0,1,38,38,9,9,117.3,1,0,1,1,1,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,1 +1,17,3,9147,0,1,118.0,1,1,19,5,7,118.0,0,0,1,1,1,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,2 +1,44,1,9070,0,39,120.0,1,1,19,5,8,119.8,0,0,1,1,0,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9670,0,1,133.1,1,19,19,3,9,118.0,0,0,1,1,0,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,159.0,1,1,19,9,9,151.3,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,118.0,1,1,38,5,7,120.8,1,0,1,1,1,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,132.0,1,1,37,8,9,128.0,1,0,1,1,1,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,1 +1,42,1,9147,0,1,135.0,1,19,1,4,4,120.0,0,0,1,0,0,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9670,0,1,122.0,1,1,38,3,3,114.3,1,0,1,1,1,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,171,0,1,131.0,1,1,1,0,3,149.9,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +4,39,2,9556,0,1,133.1,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,5,9119,0,1,126.0,1,12,19,4,5,122.5,1,0,1,1,0,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,145.0,1,2,38,3,8,136.3,1,0,1,1,1,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,2 +1,15,1,9147,0,1,150.0,1,38,1,9,1,150.0,0,0,1,1,0,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,150.0,1,3,39,3,7,126.4,0,0,1,1,0,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,2 +1,17,2,9773,0,1,148.0,1,3,38,2,6,144.2,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,124.0,1,37,19,9,3,116.3,1,0,1,1,1,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +2,39,1,9003,0,1,130.0,1,1,37,9,1,122.0,0,0,0,0,0,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,160.0,1,19,38,5,7,139.0,1,0,1,1,1,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,157.0,1,3,2,3,6,150.9,1,0,1,1,1,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,0 +1,42,1,9119,0,1,120.0,1,1,1,5,7,108.6,0,0,1,0,0,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,0 +1,16,3,9773,0,1,138.0,1,37,38,4,9,134.2,1,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,110.0,1,0,1,1,1,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,0 +4,39,1,9853,0,1,143.0,1,37,1,9,10,140.0,0,0,0,0,1,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,130.0,1,3,19,4,8,133.0,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,19,38,6,7,140.0,1,0,1,1,0,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,132.0,1,2,2,6,6,128.5,0,0,1,1,1,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,0 +1,1,2,171,0,1,135.0,1,19,19,4,7,149.0,1,0,1,1,0,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,130.0,1,19,38,3,9,126.5,1,0,1,1,1,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,125.0,1,19,38,9,8,121.5,0,0,1,1,1,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,37,37,9,7,129.0,0,0,1,1,1,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,0 +1,7,3,9130,0,3,130.0,1,37,26,90,10,130.0,0,0,1,0,0,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,2,9500,0,1,123.0,1,19,19,7,7,120.8,1,0,1,1,1,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,1 +1,18,2,9853,0,1,168.0,1,1,19,3,9,126.8,1,0,1,1,0,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,2 +1,44,1,9085,0,39,140.0,1,3,1,4,3,140.0,1,0,1,1,1,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,148.0,1,19,19,9,9,138.7,0,0,1,1,1,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,1 +1,18,1,171,0,1,110.0,1,19,2,5,5,117.7,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9070,0,1,136.0,1,37,38,9,9,125.2,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +2,39,1,8014,1,1,133.1,1,37,37,5,4,134.5,0,0,1,1,1,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,2 +1,42,1,9119,0,1,150.0,1,38,37,5,8,133.5,1,0,1,1,0,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,140.0,1,1,3,4,6,139.2,0,0,0,1,1,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,125.0,1,19,19,5,5,117.0,0,0,1,1,1,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,1 +1,39,1,9147,0,12,133.1,1,19,37,7,9,118.2,0,0,1,1,1,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,0 +1,1,2,9147,0,1,121.0,1,1,19,9,9,113.7,1,0,1,0,1,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,0 +1,43,1,9130,0,1,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,131.0,1,3,19,2,3,132.8,1,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,1 +1,17,3,9500,0,1,136.0,1,37,38,4,5,126.0,1,0,1,1,1,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,1 +1,1,1,9853,0,1,145.0,1,37,37,9,5,146.8,0,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,123.0,1,1,1,4,9,116.7,1,0,1,1,0,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,0 +1,18,1,171,0,1,121.0,1,1,1,4,3,116.8,1,0,1,1,1,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,141.0,1,38,1,9,4,129.0,1,0,1,1,1,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,133.1,1,34,34,0,0,130.0,0,0,1,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,126.0,1,1,3,4,3,122.5,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,0 +2,1,1,9254,0,1,136.0,1,37,37,9,9,122.7,0,0,1,1,1,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,37,37,9,10,100.0,0,0,1,1,0,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9500,0,1,133.1,1,38,19,7,9,115.5,1,0,1,1,0,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,1 +1,1,1,9991,1,1,131.0,1,19,37,9,9,118.4,1,0,1,1,1,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,2 +1,1,1,9147,0,1,153.0,1,1,38,4,3,146.7,0,0,1,1,1,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,1 +1,43,1,8014,1,12,114.0,1,34,34,0,99,110.0,0,0,1,1,1,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,147.0,1,1,1,5,5,134.9,0,1,1,1,1,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,1 +1,1,2,9085,0,1,156.0,1,40,40,3,7,150.9,1,0,1,1,1,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,137.0,1,38,38,5,7,122.7,1,0,1,1,1,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,123.0,1,1,19,4,5,117.8,0,0,1,1,0,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,2 +1,17,1,9238,0,1,135.0,1,37,37,8,6,127.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,131.0,1,37,37,9,9,123.0,1,0,1,1,1,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,2 +1,17,2,9670,0,1,123.0,1,3,1,3,1,116.7,0,0,1,1,1,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,1 +1,7,1,9085,0,40,140.0,1,1,19,5,5,140.0,1,0,1,1,1,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,1 +4,39,1,9500,0,19,133.1,1,38,19,5,7,140.0,0,0,1,1,1,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,127.0,1,3,19,3,9,127.0,1,0,1,1,0,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,1 +1,17,2,8014,1,1,120.0,1,19,1,5,10,114.8,1,0,1,1,1,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9670,0,19,133.1,1,37,37,9,7,130.0,0,0,0,1,0,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,171,0,1,131.0,41,19,1,4,7,131.4,1,0,1,1,0,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,16,2,171,0,1,145.0,1,3,3,2,2,143.6,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,120.0,1,19,38,6,6,120.0,1,0,1,1,0,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,1 +1,17,6,9238,0,1,131.0,1,1,3,4,2,131.7,1,0,1,1,1,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,137.0,1,3,1,4,9,128.6,0,0,1,1,1,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,170.0,1,19,19,9,7,170.0,1,0,0,1,0,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,17,4,9853,0,1,122.0,1,38,37,9,9,118.9,1,0,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,1 +1,17,5,9500,0,1,148.0,1,1,19,4,8,130.2,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9003,0,19,133.1,1,1,19,9,8,120.0,0,0,0,0,0,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,2,9147,0,1,143.0,1,19,38,9,7,132.2,1,0,1,1,1,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9556,0,1,132.0,1,38,37,7,7,119.0,1,0,1,1,1,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,133.1,1,3,1,4,4,95.0,0,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,154.0,1,3,1,2,1,137.2,0,0,1,1,0,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,2 +1,1,1,9853,0,1,129.0,1,38,37,6,6,138.1,0,0,1,1,1,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,17,2,9670,0,1,129.0,1,1,19,5,5,119.2,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,43,1,9500,0,1,137.0,1,3,3,2,2,115.0,0,0,1,1,1,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,1 +1,17,2,9254,0,1,115.0,1,19,19,9,7,113.3,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,133.0,1,38,38,7,7,125.3,1,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,110.0,1,37,37,7,10,150.0,0,0,1,0,1,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,19,133.1,1,19,19,144,141,131.5,0,0,0,1,1,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,133.0,1,38,1,2,4,126.0,0,0,1,1,1,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,15,1,9147,0,1,133.1,41,41,1,3,4,100.0,0,0,0,0,0,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,0 +1,10,2,9773,0,1,154.4,22,19,38,3,5,154.4,1,0,1,0,1,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,9070,0,39,100.0,1,1,1,4,4,106.0,0,0,1,1,0,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,135.0,1,38,19,8,8,126.3,1,0,0,1,1,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,120.0,41,1,1,9,6,114.8,1,0,1,1,1,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,2 +1,17,1,9085,0,1,124.0,1,19,38,7,7,113.9,1,0,1,1,1,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,1 +1,1,6,9254,0,1,126.0,1,38,37,5,7,123.9,1,0,1,1,1,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,125.0,1,37,37,9,9,121.5,1,0,1,1,0,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,1 +1,1,6,9773,0,1,125.0,1,1,1,5,4,122.2,0,0,1,1,0,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,135.0,1,19,19,4,5,126.8,1,0,1,1,0,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9238,0,1,133.0,1,1,37,7,9,127.4,1,0,1,1,1,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,3,9070,0,1,127.0,1,19,38,5,7,141.0,1,0,1,1,0,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +2,39,1,9119,0,3,120.0,1,37,37,4,7,122.5,0,0,1,0,1,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,2,9147,0,1,150.0,1,19,37,9,7,101.0,0,0,0,0,1,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,0 +1,7,1,9003,0,4,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,1 +1,17,5,9500,0,1,143.0,1,38,1,9,7,130.6,1,0,1,1,1,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,129.0,1,38,19,5,7,124.0,1,0,1,1,1,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,1 +1,17,2,9500,0,1,140.0,1,1,1,5,10,128.5,1,0,1,1,1,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,2 +4,39,1,8014,1,19,100.0,1,1,37,9,1,111.5,0,0,1,1,0,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,0 +2,39,2,9556,0,1,110.0,1,19,38,9,9,112.8,0,0,1,1,1,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,2 +1,1,1,9147,0,1,116.0,1,19,19,5,8,127.9,0,0,0,0,1,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,0 +1,43,4,171,0,1,117.0,1,19,12,9,10,109.3,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,130.0,1,1,38,5,5,122.3,1,0,1,1,1,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,1 +1,15,1,9119,0,1,130.0,26,38,3,9,2,137.0,1,0,1,1,0,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,2 +1,39,1,9556,0,1,133.1,1,38,19,9,6,100.0,1,0,1,1,1,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,150.0,1,3,1,3,9,154.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,43,1,9147,0,1,131.0,1,3,19,2,9,126.1,0,0,1,1,1,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,2 +1,1,6,9773,0,1,145.0,1,1,19,4,4,131.0,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,136.0,1,19,38,4,7,140.9,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,155.0,1,19,37,4,5,117.5,0,0,1,1,1,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,2 +1,1,3,9147,0,1,128.0,1,3,3,5,10,116.5,0,0,1,1,0,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,17,4,9254,0,1,133.0,1,37,37,5,8,128.5,1,0,1,1,1,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,0 +1,17,1,9119,0,1,141.0,1,37,1,9,2,133.0,1,0,1,1,0,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,2 +1,51,1,8014,1,1,120.0,1,1,1,4,4,128.5,0,0,0,0,0,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,0 +1,43,1,9003,0,1,120.0,1,3,3,1,2,115.0,0,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,136.0,1,19,19,4,7,136.0,0,0,1,1,1,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,1 +1,17,1,9070,0,1,116.0,1,38,38,9,9,123.7,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,125.0,1,19,19,4,8,117.0,1,0,1,1,1,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,135.0,1,1,38,5,7,137.5,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,140.0,1,19,19,7,7,124.6,1,0,1,1,1,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,2 +1,39,1,9670,0,19,133.1,1,1,1,4,7,100.0,0,0,0,0,1,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,122.0,1,37,37,9,9,131.0,1,0,1,1,1,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,0 +2,43,1,9773,0,1,160.0,1,37,37,5,0,160.0,0,0,0,0,0,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9670,0,1,113.0,1,37,19,9,9,110.2,1,0,1,1,1,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,125.0,1,37,37,9,9,126.0,1,0,0,1,1,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,1 +1,43,1,171,0,39,140.0,1,38,37,9,7,140.0,0,0,1,0,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,16,3,9853,0,1,134.0,1,37,19,9,5,121.4,1,0,1,1,1,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,2 +1,1,1,8014,1,1,120.0,1,1,37,7,3,122.8,0,0,1,1,1,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,1,1,4,2,127.7,0,0,1,1,1,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,2 +2,39,1,9991,1,1,120.0,1,19,37,3,9,132.9,0,0,1,1,0,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,138.0,1,1,38,4,9,132.5,1,0,1,1,1,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,133.1,1,19,37,7,7,126.0,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +5,39,1,9500,0,1,110.0,1,38,38,9,9,110.0,0,0,1,0,1,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,0 +5,7,1,9500,0,40,150.0,1,37,37,4,9,150.0,0,0,1,1,1,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,1 +1,17,1,9070,0,1,126.0,1,19,38,9,7,118.7,0,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,16,4,9254,0,1,126.0,1,38,37,9,7,118.7,1,0,1,1,1,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,3,9773,0,1,110.0,1,19,19,5,5,105.5,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,1 +1,39,1,9238,0,9,133.1,1,34,34,0,0,118.0,0,0,1,1,1,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,140.0,1,3,2,4,6,133.4,1,0,1,0,0,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,2 +1,1,1,171,0,1,134.0,1,3,2,2,2,141.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,6,9773,0,1,133.1,1,1,1,90,90,129.6,0,0,1,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,133.1,1,38,19,5,6,138.0,0,0,0,1,0,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,2 +1,17,3,9500,0,1,156.0,1,19,37,4,9,132.3,1,0,1,1,0,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,1 +1,44,1,9085,0,39,140.0,1,3,3,4,2,140.0,1,0,1,1,1,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,1 +1,43,1,171,0,1,116.0,1,3,1,2,3,117.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,141.0,1,38,19,9,6,126.3,1,0,1,1,1,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,44,1,9238,0,39,140.0,1,1,19,191,102,143.0,0,0,1,1,1,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,1 +1,43,5,8014,1,1,110.0,1,34,34,0,0,110.0,0,0,1,1,0,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9238,0,1,143.0,1,1,11,4,3,128.0,1,0,1,1,1,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +3,17,1,9238,0,1,138.0,1,37,37,9,9,133.5,1,0,1,1,1,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,2 +1,7,1,9119,0,3,150.0,1,3,2,2,2,150.0,0,0,1,1,1,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9003,0,39,150.0,1,19,1,1,1,150.0,0,0,1,1,0,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,2 +1,17,1,9085,0,1,134.0,1,19,37,2,7,131.2,0,0,1,1,1,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,171,0,1,133.1,1,37,37,9,7,100.0,0,0,0,1,0,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,18,1,9556,0,1,133.1,1,3,19,2,8,106.0,1,0,1,1,0,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,1 +1,17,2,9500,0,1,135.0,1,19,19,9,4,129.8,1,0,1,1,1,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,1 +1,39,1,33,0,1,130.0,1,38,37,9,6,102.5,0,0,0,0,0,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,0 +1,18,1,9500,0,1,144.0,1,37,37,6,6,127.5,1,0,1,1,1,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,130.0,1,37,38,9,9,133.9,1,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,1 +2,44,1,9003,0,39,140.0,1,37,37,4,7,140.0,0,0,1,1,0,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,0 +1,1,4,9773,0,1,137.0,1,3,19,2,3,139.8,1,1,1,1,1,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,2 +1,1,1,9991,1,1,130.0,1,2,37,3,9,131.4,0,0,1,1,0,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,135.0,1,3,3,1,1,125.8,1,0,1,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,1 +1,18,1,9238,0,1,147.0,1,38,34,4,0,130.2,0,0,1,1,1,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +5,17,5,9500,0,1,143.0,1,37,38,5,8,133.5,1,0,1,1,1,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,99.0,1,1,3,5,10,100.0,1,0,1,1,0,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,1 +1,16,2,9147,0,1,131.0,1,37,37,9,9,135.9,1,0,1,1,0,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,146.0,1,38,37,6,6,143.9,0,0,1,1,1,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,1 +1,17,1,9085,0,1,139.0,1,38,38,5,3,136.2,0,0,1,1,1,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,153.0,1,3,1,2,8,137.6,1,0,1,1,1,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,17,2,9085,0,1,133.1,1,19,38,9,1,100.0,1,0,0,0,0,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,0 +1,1,2,9773,0,1,121.0,1,19,19,9,9,122.8,0,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,141.0,1,37,38,9,10,138.9,0,0,1,1,1,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,1,6,9500,0,1,117.0,1,4,12,5,9,119.8,1,0,1,1,1,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,1 +1,17,4,9119,0,1,122.0,62,1,1,191,171,121.0,1,0,1,1,0,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,38,19,3,3,98.6,0,0,1,1,1,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,140.0,1,38,37,5,6,124.3,1,0,1,1,1,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,140.0,1,37,37,9,9,127.7,1,0,1,1,1,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,121.0,1,37,37,9,9,124.2,1,0,1,1,1,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,1 +1,18,1,9130,0,1,146.0,1,3,3,5,2,137.8,0,0,1,1,0,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,3,120.0,1,1,1,7,10,120.0,1,0,1,0,0,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,120.0,1,37,37,7,8,120.0,1,0,0,0,1,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,178.0,1,19,1,4,8,174.7,0,0,1,1,1,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,1 +1,17,5,9254,0,1,114.0,1,38,1,5,9,109.5,0,0,1,1,0,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,143.0,1,38,38,9,9,140.0,0,0,1,1,0,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,160.0,1,38,37,9,5,159.3,0,0,1,1,1,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,143.0,1,38,34,9,9,133.6,1,0,1,1,1,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,1 +4,43,1,9500,0,19,100.0,1,34,34,0,0,110.0,0,0,1,1,0,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,1 +1,1,2,9254,0,1,125.0,1,1,19,4,1,121.5,1,0,1,1,0,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,19,7,3,120.0,1,0,1,1,0,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,3,120.0,1,19,1,9,5,134.0,0,0,1,1,1,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,0 +1,39,1,9254,0,1,160.0,1,19,37,7,10,100.0,0,0,1,1,0,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,2 +1,15,1,171,0,1,130.0,26,1,1,2,9,130.0,0,0,1,1,0,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,2 +1,1,1,171,0,1,140.0,1,19,37,5,6,137.9,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,123.0,1,19,37,9,9,124.1,1,0,1,1,1,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,140.0,1,38,38,6,6,140.0,0,0,1,1,1,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,9991,1,9,133.1,1,34,34,0,0,118.4,0,0,1,0,1,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,6,9254,0,1,125.0,1,1,1,4,3,120.5,1,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,1 +1,1,6,171,0,1,126.0,1,10,10,4,4,130.2,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,120.0,1,1,19,4,7,120.0,0,0,1,1,0,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,2 +1,17,5,9773,0,1,143.0,1,1,1,7,7,136.7,1,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,42,1,9147,0,1,130.0,1,37,38,9,1,130.0,1,0,1,1,1,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,1,130.0,1,37,37,9,9,124.0,0,0,1,1,0,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,1 +1,17,2,9238,0,1,136.0,1,1,3,3,4,126.6,1,0,1,1,1,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,127.0,1,19,1,5,7,118.3,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,2 +4,39,1,9991,1,1,147.0,1,19,19,7,8,147.9,0,0,1,1,1,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,2 +1,1,4,9773,0,1,124.0,1,19,37,99,90,124.0,0,0,1,0,1,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +2,43,1,9003,0,1,133.1,1,37,37,9,7,136.0,0,0,1,1,0,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,1 +1,1,1,9085,0,1,140.0,1,12,1,1,90,141.8,0,0,1,1,1,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,133.1,1,37,37,191,154,95.0,0,0,1,1,1,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,147.0,1,2,3,4,8,145.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +2,7,1,9238,0,3,130.0,1,37,19,4,5,130.0,0,0,1,1,1,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,1 +1,7,2,9085,0,3,130.0,1,3,3,1,1,130.0,0,0,1,0,1,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,0 +2,39,2,9147,0,3,130.0,1,3,37,9,9,103.4,0,0,1,1,1,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,0 +1,17,1,9085,0,1,135.0,1,1,19,4,10,125.6,1,0,1,1,1,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,1,1,5,5,96.0,1,0,1,0,0,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +5,39,1,9853,0,19,133.1,1,38,1,5,3,105.5,0,0,0,1,1,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,136.0,1,37,37,7,7,121.7,1,0,1,1,1,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9119,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,0,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,19,133.1,1,19,19,4,4,100.0,0,0,1,1,0,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,2 +1,1,1,171,0,1,124.0,1,2,2,3,2,118.4,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,17,1,9085,0,1,120.0,1,2,3,2,2,116.1,0,0,1,1,1,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,162.0,1,37,37,9,9,142.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,131.0,1,37,1,9,9,135.9,1,0,1,1,1,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,37,37,9,7,100.0,0,0,1,1,0,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,1 +1,43,1,9500,0,1,127.0,1,19,19,4,7,121.1,0,0,1,1,1,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,143.0,1,37,37,9,5,131.6,1,0,1,1,1,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,1 +1,17,4,9085,0,1,140.0,1,19,37,4,7,123.7,0,0,1,1,1,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,156.0,1,19,1,5,10,136.8,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,0 +2,39,1,9853,0,10,133.1,1,37,34,0,0,115.5,0,0,1,1,1,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,0 +1,1,3,9119,0,1,113.0,1,4,38,2,7,107.4,1,0,1,1,0,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,1 +2,39,1,9670,0,1,130.0,1,37,37,9,0,158.0,0,0,0,0,1,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,0 +1,43,1,9853,0,1,110.0,1,37,37,9,9,107.7,0,0,0,0,1,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,124.0,1,2,2,3,3,124.7,1,0,1,1,0,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,127.0,1,37,37,5,10,125.3,0,0,1,1,0,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,1 +1,16,1,9500,0,1,133.1,1,37,37,9,9,95.0,1,0,1,1,1,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,1 +1,1,4,9238,0,1,127.0,1,19,19,4,0,127.4,1,0,1,1,1,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,113.0,1,38,38,3,7,112.3,0,0,1,1,1,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,1 +1,17,4,9670,0,1,110.0,1,19,37,9,99,106.1,1,1,0,0,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,141.0,1,1,38,4,8,136.8,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,133.1,1,37,37,9,7,140.0,0,0,1,1,1,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,124.0,1,1,1,4,4,118.8,0,0,1,1,0,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,4,120.0,1,2,3,2,2,120.0,0,0,1,1,1,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,0 +1,17,2,9670,0,1,110.0,1,3,3,4,10,115.6,1,0,1,1,0,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,118.0,1,1,19,4,10,110.7,1,1,1,1,1,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,2 +4,39,1,9238,0,1,130.0,1,19,3,9,2,140.0,0,0,1,1,0,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,1,140.0,1,1,19,3,9,140.0,1,0,0,0,1,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,0 +1,17,3,9773,0,1,123.0,1,1,19,5,5,117.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,115.0,1,38,38,8,7,112.9,1,0,1,1,1,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,1 +1,1,6,9147,0,1,142.0,1,38,37,7,7,134.3,0,1,1,1,0,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9085,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,1,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,129.0,1,19,1,3,7,121.0,0,0,1,1,1,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,156.0,1,3,3,123,122,155.0,0,0,1,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,136.0,1,37,37,9,9,126.3,1,0,1,1,1,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,1 +2,43,1,9991,1,1,110.0,1,37,37,9,9,132.5,0,0,1,1,0,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,19,133.1,1,37,1,5,5,138.3,0,0,1,1,0,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,0 +1,1,2,9130,0,1,140.0,1,19,37,9,9,129.5,1,0,1,1,1,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,2 +1,7,1,9500,0,3,140.0,1,37,37,4,4,140.0,0,0,1,1,1,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,1 +4,42,1,9147,0,1,110.0,1,37,37,9,9,128.2,0,0,1,1,1,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,1 +1,39,1,9119,0,19,133.1,1,1,1,4,3,134.4,0,0,0,0,0,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,136.0,1,37,1,5,4,120.8,1,0,1,1,1,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,1 +1,17,2,9500,0,1,140.0,1,37,37,9,9,132.5,1,0,1,1,1,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,1 +1,17,6,9147,0,1,130.0,1,37,37,9,9,110.4,1,0,1,1,0,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,4,5,105.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,136.0,1,19,19,4,3,126.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,116.0,1,38,2,9,2,112.2,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9238,0,1,122.0,1,19,3,5,2,112.6,0,0,0,1,1,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,2 +1,17,1,9147,0,1,118.0,1,1,38,9,9,118.4,1,0,1,1,0,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,2 +1,17,1,9130,0,1,117.0,1,19,19,4,4,113.5,1,0,1,1,1,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,117.0,1,19,19,9,9,111.8,1,0,1,1,0,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,0 +1,1,6,9500,0,1,118.0,1,38,19,3,3,113.5,1,0,1,1,0,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,1 +2,43,2,9853,0,1,130.0,1,38,31,4,1,124.2,0,0,1,1,1,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,128.0,1,38,38,9,7,124.5,1,0,1,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,2 +1,1,1,9238,0,1,116.0,1,38,38,9,8,108.7,1,0,1,1,0,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9254,0,19,133.1,1,37,19,9,10,156.5,0,0,1,1,0,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,1 +1,39,1,9003,0,1,160.0,1,1,37,191,193,140.0,0,0,1,1,0,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,110.0,1,37,37,9,10,150.0,0,0,1,1,0,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,1 +1,18,2,9070,0,1,122.0,1,38,19,5,5,119.9,0,0,1,1,0,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,125.0,1,19,38,9,7,116.3,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,37,37,6,6,147.8,0,0,1,1,1,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,2 +1,1,1,171,0,1,174.0,1,5,3,3,3,157.9,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,131.0,1,1,1,4,4,127.2,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,0 +1,17,1,9670,0,3,110.0,1,12,3,5,8,106.5,1,0,0,0,1,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9500,0,1,124.0,1,37,37,9,9,116.0,1,0,1,1,1,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,38,38,5,7,146.2,0,0,1,1,1,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,133.1,1,37,37,9,9,97.0,0,0,1,1,1,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,132.0,1,19,1,9,9,141.8,1,0,1,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,1 +2,43,1,9254,0,3,120.0,1,38,37,9,3,120.0,1,0,1,1,1,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,135.0,1,3,2,1,1,133.6,1,0,1,0,1,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,133.0,1,38,38,5,2,135.5,0,0,1,1,1,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,125.0,1,39,3,3,2,125.0,1,0,1,1,1,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,133.1,1,1,1,3,4,112.0,0,0,1,1,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,141.0,1,1,1,5,9,126.3,0,0,1,1,0,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,1 +1,39,1,9003,0,1,133.1,1,1,37,9,8,130.0,0,0,1,1,0,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,0 +2,43,1,9991,1,1,140.0,1,37,37,3,10,107.8,0,0,1,1,1,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,2 +1,43,1,9500,0,1,120.0,1,3,4,2,4,120.6,0,0,1,1,0,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,1,133.1,1,1,19,9,9,120.0,0,0,1,1,0,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,1 +1,39,1,9853,0,1,140.0,1,19,1,9,4,128.2,0,0,1,0,1,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,133.1,1,37,19,9,3,123.0,0,0,1,1,0,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,2 +1,39,1,9147,0,1,150.0,1,37,1,7,3,148.8,0,0,1,1,0,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,1 +1,17,1,9670,0,1,125.0,1,38,37,7,5,126.4,0,0,1,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,1 +1,44,1,9003,0,39,140.0,1,38,1,134,134,140.0,1,0,0,1,0,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,2 +1,44,1,9070,0,39,140.0,1,1,19,4,4,140.0,0,0,1,1,0,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,130.0,1,1,1,9,9,124.1,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,2 +1,51,1,9070,0,1,130.0,1,19,19,5,7,124.5,0,0,1,1,1,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,101.0,1,37,37,9,4,101.0,1,0,0,1,1,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,2 +1,1,1,8014,1,1,115.0,1,38,38,9,7,115.0,1,0,1,1,1,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,1 +1,17,1,9130,0,1,122.0,1,19,19,9,9,121.7,1,0,1,0,1,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,135.0,1,38,38,9,6,138.1,0,0,0,0,1,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9147,0,1,130.0,1,37,37,9,9,119.9,1,0,1,0,1,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,134.0,1,1,1,9,9,133.0,1,0,1,1,1,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,19,37,9,9,117.8,1,0,1,1,1,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,119.0,1,1,19,4,10,115.5,1,0,1,1,1,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,2 +1,17,3,9119,0,1,138.0,1,3,3,3,4,125.4,1,1,1,1,0,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,164.0,1,19,19,9,9,149.0,1,0,1,1,1,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,44,1,9085,0,1,140.0,1,4,4,2,6,140.0,0,0,1,1,1,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,1 +1,43,1,9070,0,1,160.0,1,1,2,4,2,100.0,0,0,1,1,0,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,132.0,1,37,37,9,5,135.9,0,0,1,1,1,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,142.0,1,37,19,7,7,133.0,1,0,1,1,1,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,1 +1,7,1,9556,0,3,130.0,1,1,37,4,8,130.0,0,0,1,0,0,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,0 +1,44,1,171,0,39,110.0,1,1,1,1,7,114.2,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9147,0,1,129.0,1,19,19,4,9,127.6,1,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,164.0,1,34,1,0,0,163.0,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9556,0,1,122.0,1,19,38,4,8,118.3,1,0,1,1,1,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,1 +1,17,4,9500,0,1,141.0,1,38,37,3,3,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,1 +1,1,1,9003,0,1,148.0,1,1,19,194,194,143.5,0,0,0,1,0,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,150.0,1,37,19,6,4,137.0,0,0,1,1,0,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,38,38,1,4,138.7,0,0,1,1,0,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,103.8,0,0,1,1,1,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,0 +1,17,1,8014,1,1,127.0,1,19,37,4,7,115.8,0,0,1,1,1,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,143.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,130.0,1,38,19,5,6,125.1,1,0,1,1,1,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9254,0,1,133.0,1,19,1,9,9,137.2,0,0,1,1,0,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +2,1,4,8014,1,1,140.0,1,34,34,0,0,128.0,1,0,1,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,120.0,1,1,1,9,10,118.3,0,0,1,1,0,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,2 +2,39,1,8014,1,12,133.1,1,37,37,9,1,113.0,0,0,1,1,1,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,128.0,1,19,1,0,5,122.1,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,37,38,3,3,123.0,0,0,1,1,1,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,120.0,1,37,1,7,4,95.0,1,0,1,1,1,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,0 +1,17,4,9238,0,1,123.0,1,19,19,191,144,116.0,1,0,1,1,1,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,39,1,9085,0,1,140.0,1,37,37,90,90,106.3,0,0,0,0,0,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,159.0,1,3,3,2,2,162.5,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,125.0,1,19,19,9,9,115.9,0,0,1,1,1,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,130.0,1,19,19,3,7,129.0,0,0,0,0,1,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,133.1,1,38,37,5,5,136.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,156.0,1,5,4,2,1,140.8,0,0,1,1,1,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,1,161.0,1,37,37,9,9,100.0,1,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,7,1,8014,1,3,130.0,1,35,35,90,90,140.0,0,0,1,0,1,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,0 +2,1,1,9991,1,1,120.0,1,37,19,9,9,135.0,1,0,1,1,0,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,0,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,148.0,1,3,3,2,2,137.3,1,0,1,1,1,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,120.0,1,19,37,5,7,115.1,0,0,1,1,1,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,2 +1,17,6,9773,0,1,138.0,1,1,1,4,2,140.5,1,0,1,1,1,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,1 +2,43,1,9085,0,1,160.0,1,37,37,9,7,120.0,0,0,1,1,0,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,2 +1,17,2,8014,1,1,134.0,1,1,19,4,99,126.0,1,0,1,1,0,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,100.0,1,0,1,1,1,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,131.0,1,1,1,5,9,129.5,1,0,1,1,1,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,1 +1,1,4,171,0,1,139.0,1,37,38,9,9,127.8,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,150.0,1,37,37,5,6,132.5,1,0,1,1,1,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,2 +1,1,1,9085,0,1,133.1,1,19,38,5,7,110.0,1,0,1,1,1,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,1 +1,43,1,9254,0,6,138.6,1,34,34,0,0,138.6,1,0,1,1,0,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,133.1,1,1,1,4,10,100.8,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,5,140.0,1,19,1,4,1,140.0,1,0,1,0,1,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,118.0,1,1,19,9,10,113.1,1,0,1,1,1,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,115.0,1,3,3,2,2,111.5,1,0,0,0,1,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9254,0,39,170.0,1,19,2,9,3,170.0,0,0,1,0,0,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,37,9,9,120.0,0,0,1,1,1,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,3,9500,0,1,137.0,1,19,38,7,7,126.5,1,0,1,1,1,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,136.0,1,19,19,90,8,133.9,1,0,1,0,0,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,0 +1,18,2,9500,0,1,141.0,24,1,1,4,3,126.8,1,0,1,1,1,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,1 +1,17,4,9238,0,1,124.0,1,19,19,5,8,117.7,1,0,1,1,1,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,149.0,1,19,38,9,9,126.5,1,0,1,1,1,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,153.0,1,1,1,141,175,157.9,0,0,0,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,140.0,1,1,2,4,6,140.0,1,0,1,1,1,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,137.0,1,1,3,3,2,121.3,1,0,1,1,1,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,143.0,1,1,1,4,6,138.8,0,0,1,0,0,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,160.0,1,1,3,1,2,130.0,0,0,1,0,0,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,19,19,9,8,105.8,0,0,1,1,1,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,0 +1,5,4,9119,0,1,115.0,1,19,37,4,6,113.3,1,0,1,1,0,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,19,4,3,125.4,1,0,1,1,1,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,1 +4,42,1,9500,0,19,133.1,1,1,1,5,5,126.0,1,0,1,1,0,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9254,0,3,133.1,1,19,19,4,6,130.5,0,0,1,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9147,0,1,108.0,1,1,19,4,4,105.9,1,0,1,1,0,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,126.0,1,19,19,9,9,115.2,0,0,0,1,1,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,2 +1,1,1,9853,0,1,140.0,1,37,37,9,9,145.3,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,1,6,9070,0,6,119.0,1,1,1,9,9,123.2,1,0,1,1,0,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,160.0,1,1,38,5,6,168.6,0,0,1,1,0,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9254,0,1,120.0,1,1,19,9,9,148.3,0,0,1,1,0,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,1 +1,7,1,9085,0,3,130.0,1,1,19,9,10,130.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,137.0,1,38,38,151,151,141.6,0,0,1,1,0,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,1 +1,39,1,9003,0,19,133.1,1,37,37,9,4,140.0,0,0,1,1,0,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,2 +1,43,1,9085,0,1,162.0,1,2,1,4,4,162.0,0,0,1,1,1,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,1 +1,43,1,171,0,1,133.0,1,19,19,5,7,133.0,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,154.0,1,37,37,9,7,150.2,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,19,100.0,1,38,19,0,10,111.3,0,0,0,0,1,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,38,4,9,126.2,0,0,1,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,132.0,1,3,1,2,7,125.5,1,0,1,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,127.0,1,37,37,5,7,116.2,0,0,1,1,0,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9773,0,1,121.0,1,19,38,9,7,113.0,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,130.0,1,19,19,9,9,127.6,1,0,1,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,160.0,1,34,34,99,99,114.3,0,0,1,1,0,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,2 +1,18,4,9254,0,1,119.0,1,37,37,9,9,113.1,1,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,130.0,1,38,37,5,6,130.0,0,0,1,1,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,163.0,1,19,37,5,8,150.8,1,0,1,1,0,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,2 +1,43,1,9238,0,1,122.0,1,19,19,5,5,114.3,1,0,1,1,1,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,2 +1,18,1,9147,0,1,131.0,1,34,34,90,90,131.0,0,0,1,1,0,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,4,9773,0,1,137.0,1,1,1,5,5,125.8,0,0,0,1,0,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9670,0,1,133.1,1,37,37,90,90,97.4,0,0,0,0,0,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,37,38,7,5,106.0,1,0,1,1,1,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,1 +1,17,6,9254,0,1,108.0,1,1,19,4,5,112.2,1,0,1,1,0,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,19,133.1,1,1,19,4,10,111.8,1,0,1,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,133.1,1,1,37,9,10,139.0,0,0,1,1,0,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,122.0,1,12,19,4,8,117.8,1,0,1,1,1,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,128.0,1,19,19,0,5,120.3,1,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,133.1,1,34,19,0,3,117.1,1,0,1,1,1,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9556,0,19,133.1,1,37,38,9,9,123.0,0,0,1,1,1,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,1 +1,17,2,9238,0,1,133.0,1,37,37,9,4,123.6,0,0,1,1,1,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,5,9670,0,1,132.0,1,19,19,5,5,134.1,1,0,1,1,0,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,129.0,1,38,1,4,10,129.4,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,136.0,1,19,19,4,8,150.4,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,154.0,1,3,3,1,3,129.0,1,0,1,1,1,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,2 +1,44,1,9130,0,39,150.0,1,1,1,4,4,150.0,1,0,1,1,1,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,2 +1,17,1,9773,0,1,115.0,1,37,37,9,8,116.1,1,0,1,1,1,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,157.0,1,19,3,4,9,138.8,0,0,1,1,0,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9670,0,19,133.1,1,19,1,5,8,97.2,1,0,1,1,0,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,141.0,1,37,38,6,6,125.6,1,0,1,1,1,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,143.0,1,19,1,9,9,144.4,1,0,1,1,1,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9119,0,1,127.0,1,19,1,4,5,115.8,0,0,1,1,0,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,150.0,1,1,1,9,10,142.7,0,0,0,1,1,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,132.0,11,12,12,90,4,129.9,1,0,1,1,1,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,115.0,1,19,19,191,171,109.1,0,0,0,0,0,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,2 +1,17,1,9773,0,1,121.0,1,38,38,9,8,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,7,1,9085,0,40,130.0,1,1,1,4,4,130.0,1,0,1,1,1,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,140.0,1,19,38,4,4,138.3,0,0,1,1,0,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,6,9773,0,1,116.0,1,19,1,4,4,110.1,1,0,1,1,1,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,131.0,1,38,38,9,9,127.9,0,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,1 +1,51,1,9991,1,42,110.0,1,19,37,5,9,128.2,0,0,1,0,1,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,0 +1,1,3,9500,0,1,138.0,1,19,19,5,8,124.9,1,0,1,1,1,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,172.0,1,1,1,4,9,167.1,0,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +5,39,1,9991,1,1,120.0,1,37,37,9,9,138.1,0,0,1,1,0,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,37,38,3,7,96.7,0,0,1,1,0,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,15,1,9130,0,1,133.1,41,1,1,4,4,100.0,0,0,1,1,1,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9119,0,1,122.0,1,19,19,9,9,114.7,0,0,1,1,0,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,133.1,1,19,38,192,192,96.0,1,0,1,1,1,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,160.0,1,1,37,9,10,118.0,0,0,1,1,1,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,2 +1,18,4,9119,0,1,134.0,1,19,38,194,175,124.9,1,0,0,1,0,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,4,19,4,5,98.0,0,0,1,1,0,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +5,43,1,9991,1,3,130.0,1,3,3,1,1,130.0,0,0,1,1,1,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,120.0,1,19,19,4,5,114.8,1,0,0,0,1,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,0 +1,18,6,8014,1,1,134.0,1,3,19,2,4,120.7,1,0,1,1,1,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,133.1,1,37,37,9,9,109.7,0,0,1,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9070,0,1,128.0,1,19,19,3,3,123.5,1,1,1,0,0,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,133.1,1,1,19,5,9,130.0,0,0,1,1,0,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,1 +1,7,1,9991,1,40,120.0,1,43,3,3,3,120.0,0,0,1,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,2 +1,17,5,9556,0,1,139.0,1,19,19,9,8,121.3,1,0,1,1,1,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,156.0,1,3,19,3,3,151.1,0,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,1 +1,16,2,9147,0,1,132.0,1,37,37,9,9,122.6,1,0,1,1,1,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,130.0,1,2,3,9,6,130.0,0,0,1,1,0,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,133.1,1,1,1,1,6,120.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,0,1,0,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,133.0,1,3,3,1,1,126.2,1,0,1,1,1,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,1 +1,18,2,9147,0,1,140.0,1,37,37,5,9,124.3,1,0,1,1,0,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,44,1,9003,0,39,150.0,1,37,38,4,8,150.0,0,0,1,1,1,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,140.0,1,37,19,191,163,129.3,1,0,0,1,1,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +4,7,1,9500,0,3,130.0,1,3,19,2,3,130.0,0,0,1,1,1,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9070,0,1,131.0,1,19,19,7,7,125.1,0,0,1,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,2 +1,10,1,9773,0,1,152.0,22,38,37,5,9,152.0,1,0,1,1,1,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,123.0,1,34,38,0,7,120.2,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,1,1,9070,0,1,131.0,1,3,19,4,4,130.3,1,0,1,1,0,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,115.0,1,1,1,5,4,108.0,1,0,1,1,1,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,130.0,1,38,37,9,9,144.0,0,0,1,1,1,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9238,0,1,134.0,1,3,1,3,4,133.0,1,0,1,1,1,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,1 +1,51,1,9670,0,1,133.1,1,3,1,3,10,116.2,0,0,1,1,0,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,139.0,0,0,1,1,0,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,126.0,1,19,1,9,9,122.5,1,0,1,0,1,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,121.0,1,19,19,9,9,126.3,1,0,1,1,1,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9003,0,1,133.1,1,38,38,4,8,115.0,0,0,0,1,0,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,19,37,9,9,151.5,0,0,0,0,0,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9853,0,40,110.0,1,41,3,2,1,110.0,0,0,0,1,1,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,1 +1,17,5,9238,0,1,131.0,1,19,37,5,7,120.2,1,0,1,1,1,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,2 +5,7,1,9070,0,3,140.0,1,37,37,7,7,140.0,0,0,1,0,0,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +4,39,1,9254,0,1,140.0,1,38,37,9,9,112.0,0,0,0,1,1,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,0 +1,18,3,9853,0,1,122.0,1,38,37,9,5,120.3,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9070,0,1,125.0,1,1,38,9,7,118.0,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,2 +1,1,3,9670,0,1,111.0,1,1,1,5,5,105.4,0,0,1,1,1,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +2,39,1,9254,0,1,130.0,1,37,37,4,7,120.0,1,0,1,1,1,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,160.0,1,37,37,9,9,160.0,1,0,1,1,1,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,1 +1,39,1,9147,0,12,133.1,1,37,37,9,9,140.0,0,0,1,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9147,0,1,118.0,1,1,2,10,10,117.3,1,0,1,1,1,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,3,9085,0,1,130.0,1,1,19,9,9,121.3,1,0,1,1,1,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,19,133.1,1,37,37,9,9,130.0,0,0,1,1,1,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,3,9085,0,1,130.0,1,19,37,5,5,121.3,1,0,1,1,1,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,2 +1,1,2,9254,0,1,120.0,1,19,19,9,9,116.5,1,0,1,1,1,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,1 +2,39,1,9500,0,1,140.0,1,37,37,9,4,127.3,0,0,1,1,0,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,1 +1,17,1,9670,0,1,118.0,1,37,38,8,7,115.2,1,0,1,1,1,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,17,3,9238,0,1,125.0,1,19,19,7,8,121.5,0,0,1,1,1,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,125.0,1,19,19,5,5,114.5,1,0,1,1,1,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,136.0,1,39,1,3,4,134.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,115.0,1,3,2,4,5,112.6,0,0,1,1,0,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,53,1,9003,0,1,130.0,1,19,1,9,9,130.0,0,0,0,1,0,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,2 +1,1,3,9773,0,1,136.0,1,3,1,5,3,129.0,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,3,150.0,1,2,3,4,7,173.3,1,0,1,1,1,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,140.0,1,1,19,7,7,129.9,1,0,1,1,1,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,0 +1,7,1,9119,0,1,140.8,1,34,34,0,0,134.0,0,0,1,1,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9254,0,1,115.0,1,37,19,5,5,109.8,1,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,137.0,1,1,1,4,4,127.6,1,0,1,1,1,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,1 +4,7,1,9238,0,40,130.0,1,34,34,99,99,130.0,0,0,0,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9147,0,1,123.0,1,37,37,9,9,106.2,0,0,1,1,1,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,121.0,1,1,3,3,7,113.0,1,0,1,1,0,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,1 +1,17,1,9254,0,1,140.0,1,3,1,2,3,129.9,0,0,1,1,1,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,7,1,9991,1,40,130.0,1,38,38,9,7,130.0,0,0,1,1,0,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,0 +1,51,1,9070,0,1,132.0,1,19,19,153,153,120.0,0,0,1,1,1,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,9119,0,1,110.0,1,37,37,9,9,106.8,0,0,1,1,0,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9070,0,1,124.0,1,19,37,4,4,126.8,0,0,1,1,1,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,2 +1,18,3,9147,0,1,133.1,1,1,38,4,7,101.0,1,0,1,0,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,3,9147,0,1,125.0,1,38,19,7,7,125.7,0,0,1,1,1,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,2 +1,17,4,9853,0,1,121.0,1,38,38,5,7,113.7,1,0,1,1,1,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,1,133.1,1,1,1,9,6,105.0,1,0,0,0,1,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,143.0,1,5,1,2,5,136.7,0,0,1,1,1,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,1 +1,1,2,9556,0,1,142.0,1,1,19,4,5,130.5,1,0,1,1,1,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,131.0,1,19,19,7,5,122.1,1,0,1,1,1,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,132.0,1,1,37,4,7,121.8,1,0,1,1,1,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,123.0,1,37,37,3,3,123.0,1,0,1,1,1,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,129.0,1,19,38,2,7,126.9,1,0,1,1,1,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,2 +1,1,4,9238,0,1,118.0,1,19,38,9,9,110.0,0,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,125.0,1,3,1,4,4,119.4,1,0,1,1,1,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,2 +1,17,1,9085,0,1,131.0,1,1,3,4,1,129.3,1,0,1,1,1,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9500,0,1,147.0,1,37,37,9,9,134.3,0,0,1,1,1,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,1 +2,39,2,9670,0,19,133.1,1,37,37,9,9,135.6,0,0,1,1,1,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,152.0,1,37,19,9,9,137.0,1,0,1,1,1,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,118.0,1,12,1,4,10,115.7,0,0,1,1,0,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,2 +1,15,1,9119,0,1,133.1,41,1,3,5,8,100.0,0,0,0,1,0,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,0 +1,1,5,9119,0,1,131.0,1,1,19,4,7,126.8,0,0,1,0,0,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,132.0,1,19,38,9,7,119.1,0,0,1,0,0,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,8014,1,1,120.0,1,37,37,5,5,161.1,0,0,1,1,0,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,18,5,9500,0,1,137.0,1,19,1,1,10,129.3,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,118.0,1,37,19,5,5,119.1,1,0,1,1,1,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,134.0,1,38,38,9,9,122.0,1,0,1,1,0,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,163.0,1,1,1,4,3,149.7,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,140.0,1,38,38,9,7,140.0,0,0,1,1,1,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,2 +1,17,4,9147,0,1,122.0,1,19,19,5,7,116.4,1,0,0,1,1,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,140.0,1,3,37,3,7,116.9,0,0,1,1,0,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,5,2,9238,0,1,123.0,1,40,38,2,9,118.1,1,0,1,1,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,7,1,9991,1,3,130.0,1,3,19,2,3,133.9,0,0,1,1,1,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,125.0,1,1,38,4,7,114.9,1,0,1,1,1,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,130.0,1,1,1,4,10,115.2,0,0,1,1,0,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,124.0,1,38,19,9,7,129.6,1,0,1,1,0,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,139.0,1,38,38,7,5,133.4,0,0,1,1,1,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,4,9254,0,1,125.0,1,38,38,5,5,115.6,1,0,1,1,1,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,147.0,1,37,37,9,9,142.8,1,0,1,1,1,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,0 +1,1,1,9003,0,1,144.0,1,19,19,9,9,132.8,0,0,1,1,0,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,12,133.1,1,19,1,9,1,130.0,0,0,1,1,0,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,140.0,1,37,37,9,6,135.5,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,6,9254,0,1,102.0,1,3,1,2,2,101.7,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,133.1,1,19,38,5,5,131.8,1,0,0,1,1,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,1 +1,44,1,171,0,39,150.0,1,4,4,2,2,150.0,0,0,1,1,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,53,1,9254,0,42,110.0,1,1,1,4,7,111.8,1,0,1,1,1,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,121.0,1,19,38,6,6,116.1,1,0,1,1,0,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,1 +1,17,4,9773,0,1,127.0,1,1,19,4,1,115.8,1,0,1,1,1,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,37,37,9,7,160.0,1,0,1,0,0,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,15,170.0,1,34,1,90,2,101.0,0,0,1,1,1,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,125.0,1,3,3,3,3,116.6,1,0,1,0,1,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,2 +1,17,4,9070,0,1,117.0,1,1,1,3,3,125.4,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,146.0,1,19,37,7,7,133.8,1,0,1,1,1,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,142.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,1 +1,1,1,171,0,3,116.0,1,3,3,2,2,128.2,0,0,1,1,1,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,1 +1,1,2,9500,0,1,124.0,1,37,37,7,7,116.5,1,0,1,1,1,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,118.0,1,19,19,5,7,117.8,0,0,1,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,1 +1,18,3,9670,0,1,119.0,1,38,38,9,9,115.2,1,0,1,1,1,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,131.0,1,3,19,3,10,123.3,0,0,1,1,0,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,2 +1,17,1,9254,0,1,136.0,1,39,3,3,3,128.7,1,0,1,1,1,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,0 +1,18,1,9500,0,1,140.0,1,37,38,5,7,126.0,1,0,1,1,1,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +1,44,1,9119,0,39,150.0,1,19,3,5,2,150.0,0,0,1,1,0,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,2 +1,43,1,9773,0,1,137.0,1,38,37,9,5,127.9,1,0,1,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,119.9,0,0,1,1,1,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,2 +1,18,2,9773,0,1,132.0,24,37,19,9,7,119.1,1,0,1,1,1,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,43,1,8014,1,1,133.1,1,34,34,0,0,100.0,0,0,1,1,1,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,1,133.1,1,38,19,9,9,128.0,1,0,1,0,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,125.0,1,19,19,5,4,136.2,1,0,0,1,0,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,132.0,1,38,38,0,5,126.1,0,0,1,1,0,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9670,0,1,130.0,1,1,1,9,10,116.3,1,0,1,1,1,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,1 +1,1,3,9773,0,1,150.0,1,19,38,4,4,146.5,1,0,1,1,1,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,1 +4,39,2,8014,1,1,160.0,1,37,38,7,5,115.0,0,0,1,1,1,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,135.0,1,19,1,9,9,122.1,1,0,1,1,1,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,136.0,1,3,3,9,9,136.0,1,0,0,0,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,3,3,7,1,130.0,1,0,1,1,0,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,2 +1,39,1,9119,0,19,133.1,1,19,19,5,3,100.9,1,0,1,1,0,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,2 +1,17,1,9254,0,1,137.0,1,34,38,0,7,137.7,1,0,0,0,1,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +4,39,1,8014,1,19,133.1,1,37,37,90,7,110.0,0,0,1,0,1,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,144.0,1,38,37,9,9,125.8,0,0,1,1,1,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,1,4,9070,0,1,167.0,1,1,1,7,3,158.3,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,133.0,1,37,19,7,7,126.7,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,118.0,1,38,38,7,7,121.2,1,0,1,1,1,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,19,133.1,1,19,19,4,4,150.0,0,0,1,0,0,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,0 +1,17,2,9085,0,1,166.0,1,1,19,4,3,158.7,0,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,1 +1,44,1,9254,0,39,130.0,1,39,39,194,193,130.0,1,0,0,1,0,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,2 +1,17,1,9085,0,1,140.0,1,37,38,7,9,129.9,0,0,1,1,1,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,1 +1,7,1,9147,0,3,120.0,1,1,39,4,7,120.0,0,0,1,1,1,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,5,9254,0,1,118.0,1,19,37,5,5,120.5,1,0,1,1,0,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,0 +1,17,3,9070,0,1,120.0,1,3,1,4,4,116.9,1,0,1,1,1,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,1 +1,43,5,9238,0,1,101.0,24,37,19,9,7,119.9,1,0,0,0,1,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,128.0,1,19,1,4,3,117.2,1,0,1,1,1,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,1 +1,1,3,9254,0,1,118.0,1,1,19,9,9,111.7,1,0,1,1,1,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9773,0,1,137.0,1,37,37,0,90,134.2,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,144.0,1,3,39,2,3,129.0,1,0,1,1,1,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,0 +1,1,5,9147,0,1,125.0,1,37,38,7,7,122.2,1,0,1,1,1,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,2 +1,1,2,9500,0,1,147.0,1,3,1,4,3,136.7,0,0,1,1,1,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,1 +1,39,1,9085,0,39,120.0,1,37,37,1,9,137.7,1,0,1,0,0,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,160.0,1,1,37,9,9,146.0,1,0,1,1,1,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,2 +1,44,1,9238,0,39,130.0,1,1,19,4,5,127.4,0,0,0,0,0,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,3,1,2,4,154.9,0,0,0,0,0,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,0 +1,17,2,9670,0,1,129.0,1,19,19,5,4,129.4,0,0,1,1,1,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,137.0,1,3,19,3,5,136.3,1,0,1,1,1,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,1 +1,39,1,9991,1,1,100.0,1,37,37,9,6,153.5,0,0,0,0,0,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,134.0,1,38,38,7,9,132.8,1,0,1,1,1,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,137.0,1,37,37,7,9,130.8,1,0,1,1,1,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,133.1,1,37,37,1,1,97.0,0,0,1,1,0,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,143.0,1,3,38,2,10,129.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +2,39,1,9991,1,1,110.0,1,37,37,9,3,127.1,0,0,1,1,1,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,2 +2,7,1,9147,0,3,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,160.0,1,37,37,9,9,160.0,0,0,1,1,0,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,162.0,1,3,4,3,3,154.1,0,0,1,1,1,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,1 +1,1,2,9147,0,1,119.0,1,19,37,4,5,113.8,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,139.0,1,19,1,9,5,135.0,1,0,1,1,1,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,120.0,1,1,38,5,5,116.3,1,1,1,1,0,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,1 +1,17,2,9500,0,1,135.0,1,1,19,4,10,133.5,1,0,1,1,1,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,1 +1,1,3,9119,0,1,117.0,1,1,1,3,5,111.1,0,0,1,1,0,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,140.0,1,1,39,4,1,128.1,1,1,1,1,0,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9003,0,1,133.1,1,37,37,3,8,130.0,0,0,0,1,1,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,134.0,1,19,37,5,5,125.3,1,0,1,1,0,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,37,38,9,9,114.0,0,0,1,1,1,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,38,37,4,5,102.5,0,0,0,0,0,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,171,0,1,143.0,1,19,37,5,9,156.3,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,130.0,1,19,1,9,5,122.1,1,0,1,1,1,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,1 +1,39,2,8014,1,1,100.0,1,35,37,90,90,100.0,0,0,1,1,1,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +2,39,2,9670,0,1,100.0,1,37,37,9,9,110.0,0,0,1,1,0,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,2,9853,0,1,126.0,1,1,19,2,10,126.0,1,0,1,1,1,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,2 +1,18,3,9070,0,1,131.0,1,1,37,5,5,122.3,1,0,1,0,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,150.0,1,19,37,9,8,138.5,0,0,1,1,1,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,2,171,0,1,146.0,1,3,3,3,3,155.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9147,0,1,120.0,1,19,19,9,7,118.6,1,0,1,1,1,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,145.0,1,38,38,9,9,125.5,1,0,1,1,1,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,4,9070,0,1,143.0,1,1,1,9,7,134.6,1,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,0 +1,51,1,8014,1,1,121.0,1,1,38,5,7,112.3,0,0,1,1,1,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,130.0,1,37,1,9,8,120.2,1,0,1,1,0,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,1 +2,7,1,9254,0,2,100.0,1,37,37,9,9,100.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9119,0,1,130.0,1,37,3,9,3,137.0,1,0,1,1,0,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,1,0,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,140.0,1,38,37,7,7,105.2,0,0,1,1,0,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,131.0,1,1,19,4,7,135.9,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,108.0,1,19,38,9,7,110.5,1,0,1,1,1,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,111.0,1,1,38,5,9,107.5,0,0,1,1,0,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,1,9147,0,1,147.0,1,37,37,9,6,142.8,1,0,0,0,1,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,170.0,1,38,19,4,8,134.7,0,0,1,1,1,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,138.0,1,4,19,2,3,124.7,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,125.0,1,37,38,9,9,125.0,1,0,0,0,1,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,118.0,1,38,38,5,5,114.2,1,0,1,1,1,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,3,3,1,5,118.8,0,0,1,1,1,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,1 +1,1,3,9085,0,1,131.0,1,37,19,9,8,136.3,1,0,0,0,1,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,0 +1,43,1,9991,1,1,141.0,1,37,37,9,9,131.9,0,0,1,1,1,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,0 +1,42,1,9070,0,1,120.0,1,3,2,3,1,116.9,0,0,1,1,0,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,130.0,1,1,1,9,7,152.1,0,0,1,1,0,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,12,133.1,1,34,34,0,0,135.0,0,0,1,1,1,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,0 +1,17,2,9500,0,1,130.0,1,38,38,7,7,122.5,1,0,1,1,1,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,160.0,1,1,1,194,131,128.4,0,0,1,1,1,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,132.0,1,1,38,7,7,129.6,0,1,1,1,0,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,1,1,3,9,118.4,0,0,1,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,1 +1,1,2,9556,0,1,133.1,1,19,19,9,9,104.5,1,0,1,1,1,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,0 +1,53,1,9003,0,42,150.0,1,1,38,8,8,150.0,0,0,1,1,1,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,144.0,1,3,1,2,3,126.9,0,0,1,1,1,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,150.0,1,3,3,2,2,120.0,0,0,0,0,1,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,3,3,2,10,160.0,1,0,1,1,0,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,129.0,1,1,1,9,9,120.0,0,0,1,1,0,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,1 +4,39,1,9003,0,12,133.1,1,37,37,9,6,160.0,0,0,1,1,1,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,1 +2,39,2,9991,1,1,100.0,1,37,37,9,9,100.0,1,0,1,1,0,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,115.0,1,19,1,3,8,123.4,0,0,1,1,1,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,124.0,1,19,37,3,8,117.5,1,0,1,1,0,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,2 +1,1,6,9254,0,1,129.0,1,38,19,9,5,117.8,1,0,1,1,1,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,127.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,19,133.1,1,38,38,7,8,120.0,0,0,1,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,0 +6,39,2,9147,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,4,9500,0,1,148.0,1,3,19,4,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,39,150.0,1,1,3,4,1,150.0,0,0,1,1,0,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,0 +1,17,1,171,0,1,145.0,1,37,37,9,1,150.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,123.0,1,1,1,9,9,115.7,1,0,1,1,1,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,16,1,171,0,1,122.0,1,19,37,9,7,133.9,1,0,1,1,0,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,124.0,1,37,38,9,8,114.6,1,0,1,1,0,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,120.0,1,38,37,9,8,113.4,1,0,1,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,7,1,9991,1,40,140.0,1,37,37,6,6,140.0,0,0,1,1,1,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,1 +1,1,5,9670,0,1,133.1,1,9,1,2,4,133.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,100.0,1,19,19,4,4,113.0,0,0,1,1,0,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,2 +4,39,1,9003,0,1,133.1,1,19,19,9,4,100.7,0,0,1,1,1,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,2 +1,17,2,9147,0,1,133.1,1,38,38,4,7,109.0,1,0,1,1,0,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,2 +1,15,1,9238,0,1,140.0,26,19,19,9,6,140.0,0,0,1,1,0,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,1,3,9500,0,1,114.0,1,1,1,5,5,114.5,1,0,1,1,1,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,134.0,1,1,38,4,4,120.7,0,0,0,0,1,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,1,133.1,1,37,11,9,7,96.0,0,0,0,0,0,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,131.0,1,3,3,3,3,135.9,0,0,1,1,1,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,1 +1,43,2,9500,0,1,130.0,1,38,37,4,4,126.8,1,0,1,1,0,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,19,37,7,7,124.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9670,0,1,120.0,1,1,19,4,5,100.0,0,0,1,1,1,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,145.0,1,38,38,9,10,139.8,1,0,1,1,1,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,141.0,1,19,38,5,7,125.5,0,0,1,1,1,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,1 +5,39,1,9147,0,1,133.1,1,1,19,4,7,114.0,0,0,1,0,0,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9991,1,1,110.0,1,37,37,1,4,120.0,1,0,1,0,0,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,172.0,41,37,37,5,5,153.8,1,0,1,1,1,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,1 +1,17,1,9556,0,1,140.0,1,3,3,1,7,131.6,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,148.0,1,1,1,4,3,137.5,0,0,1,1,0,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,137.0,1,19,38,3,9,124.9,0,0,1,1,1,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,139.0,1,18,18,1,1,130.8,1,0,1,0,1,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,0 +1,17,1,9003,0,1,120.0,1,38,37,5,9,131.4,1,0,1,1,0,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,1 +1,53,1,9085,0,42,160.0,1,19,37,4,9,160.0,1,0,1,1,1,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,1 +1,18,1,9670,0,1,140.0,1,1,37,9,9,130.2,1,0,1,1,0,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,1 +1,43,1,9853,0,1,140.0,1,37,37,6,6,125.2,0,0,0,1,1,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,1 +1,1,4,9556,0,1,122.0,1,37,1,5,4,123.9,0,0,1,1,1,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,1,19,3,3,123.0,0,0,1,1,1,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,140.0,1,19,38,4,0,140.0,1,0,1,1,0,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,129.0,1,1,1,4,2,126.2,0,0,0,0,1,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,0 +2,17,3,8014,1,1,123.0,1,19,37,3,3,113.2,0,0,0,0,1,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,133.1,1,38,19,9,10,114.5,0,0,1,1,1,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,2 +1,51,1,9991,1,1,141.0,1,19,38,5,7,100.0,0,0,1,1,1,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,1 +1,17,2,171,0,1,131.0,1,2,1,3,3,148.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,39,1,9085,0,19,133.1,1,37,37,9,9,100.0,1,0,0,0,1,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,117.0,1,1,38,5,1,113.5,1,0,1,1,1,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,116.0,1,19,38,9,9,119.5,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,1,19,3,4,116.7,0,0,1,1,1,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,129.0,1,2,3,2,2,128.3,1,0,1,1,1,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,2 +1,1,3,9085,0,1,138.0,1,1,1,4,8,128.7,1,0,1,1,1,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,1,5,9147,0,1,118.0,1,19,19,9,9,114.2,1,0,1,1,0,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,133.0,1,3,19,2,8,126.7,0,0,1,1,1,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,2 +1,16,1,171,0,1,158.0,1,38,37,9,9,164.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,43,3,9500,0,1,126.0,1,38,37,6,5,124.3,1,0,1,1,1,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,123.0,1,38,38,9,5,124.8,0,0,1,0,1,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,2 +1,1,1,9130,0,1,160.0,1,3,3,3,2,155.1,1,0,1,1,1,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,1 +4,43,1,9500,0,1,130.0,1,37,37,9,9,103.7,0,0,1,1,1,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,2 +1,16,2,9238,0,1,133.0,1,19,38,4,5,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,130.0,1,38,37,9,9,124.8,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,135.0,1,37,1,7,7,132.8,1,0,1,1,1,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9119,0,1,128.0,1,1,38,4,7,100.0,0,0,1,1,0,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,2 +1,17,2,9085,0,1,120.0,1,1,1,9,10,115.0,0,0,1,0,1,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,0 +1,17,2,9070,0,1,142.0,1,3,1,2,4,141.0,1,0,1,1,0,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,2,9853,0,1,124.0,1,38,37,5,3,118.1,1,0,1,0,1,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,145.0,1,37,37,9,9,132.0,1,0,1,1,1,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,1 +1,39,1,9130,0,1,114.0,1,38,38,9,10,120.0,0,0,1,1,1,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,140.0,1,3,3,2,2,146.4,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,1 +1,1,5,9773,0,1,130.0,1,34,38,0,8,128.3,1,0,1,0,1,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,3,9670,0,1,110.0,1,19,1,4,4,107.5,1,0,1,1,1,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,135.0,1,37,37,5,5,126.3,1,1,1,1,1,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,1 +2,1,1,9254,0,1,140.0,1,19,38,4,7,133.0,0,0,1,1,0,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9254,0,1,150.0,1,37,37,9,9,115.0,0,0,1,1,0,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,1 +1,39,1,9070,0,1,130.0,1,1,1,5,3,112.0,1,0,1,1,0,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,1 +1,1,1,9070,0,1,110.0,1,1,37,9,9,105.1,1,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,131.0,1,37,37,9,7,118.4,0,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,0 +1,17,1,171,0,1,136.0,1,38,38,7,7,127.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9773,0,1,127.0,1,19,19,5,8,120.0,0,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,3,171,0,1,139.0,1,37,19,9,8,142.2,1,0,1,1,0,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,128.0,1,37,19,9,4,127.3,1,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,16,4,9773,0,1,109.0,1,37,37,9,3,137.0,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,1 +1,53,1,9085,0,42,130.0,1,19,1,9,9,130.0,1,0,0,0,1,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,2 +1,7,1,171,0,3,130.0,1,1,2,9,2,130.0,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,120.0,1,37,37,9,9,120.0,1,0,0,1,1,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,0 +1,2,1,9853,0,1,120.0,1,19,38,9,9,122.5,0,0,1,0,1,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,19,133.1,1,2,1,8,8,120.0,1,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,0 +1,43,1,9773,0,1,121.0,1,1,1,4,5,121.0,1,0,1,1,0,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,4,9147,0,1,120.0,1,38,19,9,9,111.3,1,0,1,1,1,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,38,19,5,0,141.8,0,0,1,1,1,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,131.0,1,1,1,7,4,127.2,1,0,0,1,0,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,11,9,10,131.5,0,0,1,1,1,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,3,19,2,3,125.7,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,1,2,9556,0,1,136.0,1,19,19,9,9,129.5,1,0,1,1,1,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,1 +1,42,1,9119,0,1,120.0,1,5,5,2,2,115.0,0,0,1,1,0,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,0 +1,17,6,9119,0,1,124.0,1,19,19,4,0,126.1,1,0,1,1,0,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,1 +1,1,1,9254,0,1,160.0,1,19,38,9,9,140.8,1,0,1,1,0,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,123.0,1,37,37,9,9,115.0,1,0,1,1,1,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,1 +2,39,2,9670,0,1,133.1,41,37,19,9,9,130.0,0,0,1,1,1,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9670,0,6,170.0,1,34,34,0,0,111.6,0,0,1,1,0,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,138.0,1,1,3,9,1,123.0,1,0,1,1,1,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,1,37,6,6,130.0,1,0,1,1,0,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,1 +1,17,2,9119,0,1,133.1,1,1,2,3,3,117.0,1,0,1,1,0,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,2 +1,1,5,9254,0,1,131.0,1,19,37,9,9,123.7,0,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,130.0,1,1,1,9,4,140.0,0,0,1,0,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9773,0,1,135.0,1,1,19,4,10,129.4,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,132.0,1,1,19,3,3,122.9,1,0,1,1,1,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,115.0,1,37,37,9,8,129.0,1,0,0,0,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,51,1,9238,0,1,160.0,1,3,19,2,1,116.1,0,0,0,1,1,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9003,0,12,133.1,1,37,1,9,10,130.0,0,0,1,1,0,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,129.0,1,37,38,4,9,121.0,1,0,1,1,1,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9119,0,1,130.0,1,38,19,7,3,119.9,1,0,0,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,133.1,1,37,37,9,9,100.2,1,0,1,0,1,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,4,38,4,5,140.0,1,0,1,1,1,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,2 +2,7,1,9991,1,43,140.0,1,40,5,3,3,140.0,0,0,1,1,1,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,1 +1,43,2,9670,0,1,129.0,1,3,3,5,5,122.4,1,0,1,1,1,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,2 +1,1,1,9238,0,1,116.0,1,38,38,9,6,116.4,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,44,1,9130,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,130.0,1,1,3,9,2,130.0,1,0,0,1,1,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,139.0,1,38,38,9,5,130.5,1,0,1,1,1,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,1 +1,42,1,9500,0,1,100.0,1,19,19,9,9,100.0,0,0,0,1,0,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,0 +1,7,1,9773,0,43,140.0,1,19,1,4,8,140.0,0,0,1,1,0,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9003,0,1,125.0,1,1,38,4,7,125.0,1,0,1,1,1,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,1 +1,39,2,9147,0,19,133.1,1,38,19,4,10,116.3,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,3,9500,0,1,132.0,1,37,37,4,3,127.3,1,0,1,1,1,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,127.0,1,1,37,4,8,121.1,1,0,1,1,0,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,1 +1,39,1,9670,0,1,140.0,1,37,37,6,6,120.0,0,0,1,1,1,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,133.0,1,37,37,9,5,139.2,1,0,0,1,0,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,140.0,1,19,19,1,4,133.3,1,0,1,1,1,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,120.0,1,3,3,2,2,112.0,0,0,1,1,1,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,2 +2,1,1,9147,0,1,137.0,1,19,37,9,9,124.4,0,0,1,1,1,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,130.0,1,38,38,9,3,145.6,0,0,1,1,0,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,6,9670,0,1,120.0,1,1,14,4,5,113.7,1,0,1,1,1,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,120.0,1,38,19,9,3,112.7,0,0,1,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,122.0,1,37,37,9,9,114.3,1,0,1,0,1,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,1,8014,1,1,133.1,1,3,1,1,7,100.0,0,0,1,1,1,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,4,19,3,5,123.7,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,4,4,4,2,120.0,1,0,1,1,0,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,2 +1,1,3,9238,0,1,137.0,1,1,1,3,3,131.4,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,1 +1,43,1,9130,0,1,130.0,1,1,1,1,1,130.0,1,0,1,1,0,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,2 +1,1,2,9773,0,1,121.0,1,1,19,9,7,118.9,1,0,1,1,1,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,133.1,1,19,38,9,8,128.2,1,0,1,1,0,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,2 +1,43,1,9070,0,1,134.0,1,19,37,7,7,132.7,1,0,1,1,0,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9147,0,1,125.0,1,1,38,7,7,120.1,0,0,0,1,0,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,129.0,1,37,37,9,9,117.1,1,0,1,1,1,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,145.0,1,38,38,5,7,138.0,1,0,1,1,1,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,120.0,105,1,1,9,9,119.0,1,0,0,0,1,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,131.0,1,1,19,9,9,127.0,0,0,1,1,0,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,100.0,1,38,19,6,10,112.8,0,0,1,1,1,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,2,9070,0,1,145.0,1,38,19,7,7,130.0,1,0,1,1,0,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,126.0,1,37,38,7,7,119.0,0,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,1 +1,1,2,9773,0,1,137.0,1,1,19,7,7,133.2,1,0,1,1,1,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,128.0,1,38,38,9,7,128.4,1,0,1,1,1,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,2 +1,44,1,9085,0,39,150.0,1,19,38,194,193,150.0,1,0,1,1,1,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,2 +1,1,4,171,0,1,146.0,1,1,1,9,5,151.3,1,0,1,1,1,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,1 +1,1,6,9147,0,1,139.0,1,19,12,4,4,125.0,1,0,1,1,1,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,1 +1,1,2,9254,0,1,136.0,1,1,1,9,4,123.4,1,0,1,1,1,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,5,9670,0,1,127.0,1,3,4,2,2,122.8,0,0,1,1,0,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,127.0,1,38,37,5,7,121.8,1,0,0,1,1,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,2 +1,39,1,9003,0,1,130.0,1,38,37,7,7,120.0,0,0,1,1,0,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,1 +1,1,2,9238,0,1,100.0,1,38,1,7,7,99.3,1,0,1,1,1,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9119,0,1,160.0,1,37,37,9,6,153.7,0,0,1,1,0,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,2 +1,17,4,9500,0,1,138.0,1,3,1,2,5,134.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,1 +1,17,4,9254,0,1,124.0,1,3,3,3,3,126.1,1,0,1,1,1,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,0 +2,7,1,9147,0,3,110.0,1,19,1,9,9,110.0,0,0,1,1,1,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,2 +1,1,1,9500,0,1,143.0,1,3,19,3,10,126.8,0,0,1,1,0,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,1 +1,17,2,9670,0,1,110.0,1,1,1,4,10,115.3,1,0,1,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,1 +1,51,1,9119,0,1,129.0,1,2,37,2,9,121.6,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,2 +1,15,1,9254,0,1,140.0,26,19,1,9,7,140.0,1,0,1,0,1,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,118.0,1,19,38,7,9,113.5,1,0,1,1,1,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,5,9853,0,1,110.0,1,19,37,7,7,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,2 +1,39,1,171,0,1,145.0,1,3,1,2,10,114.5,1,0,1,1,0,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,43,2,9670,0,1,125.0,1,38,19,4,3,106.6,1,0,1,1,1,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,0 +4,39,1,9500,0,19,133.1,1,37,37,5,7,100.0,0,0,1,0,1,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,133.0,1,1,1,9,9,119.7,1,1,0,1,0,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,1 +1,1,2,9853,0,1,134.0,1,1,38,9,8,122.5,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,120.0,1,19,37,3,9,100.0,0,0,1,1,1,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,37,37,6,6,100.0,0,0,0,0,0,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,160.0,1,38,38,6,6,160.0,1,0,1,1,1,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,19,133.1,1,37,37,9,7,116.0,0,0,1,1,1,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,1 +1,18,3,9500,0,1,145.0,1,1,1,4,8,133.6,1,0,1,1,1,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,3,19,2,3,124.5,0,0,1,1,1,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,125.0,1,19,38,9,8,118.3,0,0,1,1,0,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,0 +1,5,1,9085,0,1,150.0,1,1,1,4,4,139.4,0,0,1,1,1,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,2 +1,17,1,9773,0,1,133.1,1,38,38,9,5,117.0,0,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,2 +1,1,3,9500,0,1,142.0,1,1,1,4,7,131.0,1,0,1,1,1,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,1,19,3,3,154.3,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9147,0,1,135.0,1,37,38,9,9,128.0,1,0,0,1,1,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,149.0,1,37,37,9,9,138.0,0,0,1,1,0,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,38,9,9,129.2,1,0,1,1,1,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9556,0,1,147.0,1,3,4,3,2,100.0,0,0,1,1,1,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,2 +1,39,1,9085,0,12,133.1,1,37,37,10,9,144.0,0,0,1,1,0,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9254,0,1,100.0,1,3,19,3,5,115.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9670,0,1,140.0,1,1,1,4,3,133.4,0,0,1,1,0,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,2 +1,1,2,171,0,1,127.0,1,3,39,1,3,133.5,1,0,1,1,0,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9147,0,1,112.0,1,1,19,3,5,107.8,1,0,1,1,1,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,2 +2,39,1,9147,0,1,110.0,1,37,37,9,10,140.0,0,0,1,1,1,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,120.0,1,1,3,175,121,105.9,0,0,1,1,1,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,2 +1,1,1,9238,0,1,168.0,1,37,37,9,9,149.5,0,0,1,1,1,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,1 +1,17,1,8014,1,1,141.0,1,34,34,0,0,136.1,0,0,1,1,1,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,140.0,1,1,1,4,3,130.7,1,0,1,1,0,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,0 +1,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,134.0,1,1,37,8,7,120.5,1,0,1,1,0,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,160.0,1,1,38,4,7,141.5,1,0,1,1,0,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,122.0,1,38,37,191,195,112.9,1,0,1,1,1,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,41,1,1,9,7,163.1,1,0,1,0,1,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,1 +1,39,1,9500,0,1,110.0,1,1,37,9,9,126.0,1,0,1,1,0,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,2 +1,17,1,9670,0,1,109.0,1,1,1,4,4,108.0,0,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,131.0,2,37,1,9,3,126.1,1,0,1,1,0,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,1,2,9556,0,1,125.0,1,38,1,9,3,116.3,1,0,1,1,1,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,1 +1,17,1,9085,0,1,138.0,1,2,19,2,9,126.8,1,0,1,1,1,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,2 +1,1,5,9853,0,1,128.0,1,38,37,9,9,120.3,1,0,0,0,1,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,130.0,1,1,38,4,9,122.7,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,0 +1,39,1,9991,1,9,133.1,1,37,34,90,90,118.1,1,0,1,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,1,1,9085,0,1,125.0,1,1,19,4,9,114.5,1,0,1,1,1,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,1 +1,1,5,9773,0,1,138.0,1,19,19,9,9,139.4,1,0,1,1,1,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,125.0,1,19,38,3,5,115.9,0,0,1,1,1,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,1 +1,43,1,9500,0,1,134.0,1,38,19,5,8,120.7,0,0,1,1,1,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,133.1,41,3,1,3,10,100.0,1,0,1,0,1,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,0 +5,39,1,9003,0,1,133.1,1,37,37,9,7,110.0,0,0,0,0,1,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,0 +1,17,1,9254,0,1,128.0,1,19,1,5,7,120.7,1,0,0,1,1,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,162.0,1,19,19,4,7,152.9,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,51,1,9238,0,1,121.0,1,3,19,3,10,111.9,1,0,1,1,1,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,1 +1,39,2,9991,1,1,172.0,1,19,37,9,8,150.0,1,0,1,1,1,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,116.0,1,19,19,9,8,119.9,1,0,1,1,1,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,125.0,1,19,19,3,10,131.0,1,0,1,1,0,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,39,1,9500,0,4,150.0,1,3,38,3,7,127.0,1,0,1,1,0,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,128.0,1,38,38,9,9,129.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,120.0,1,3,19,4,5,115.5,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,38,38,9,6,160.0,1,0,1,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,130.0,1,3,1,2,9,130.0,1,0,1,1,1,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,140.0,1,1,19,4,8,124.6,1,0,1,1,1,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,150.0,1,3,3,2,2,150.0,1,0,1,1,1,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,1 +2,39,1,9853,0,1,133.1,1,37,19,9,5,138.3,0,0,1,1,1,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,0 +1,43,1,9991,1,1,150.0,1,3,3,4,4,100.0,1,0,1,1,0,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,1 +1,44,1,9238,0,1,150.0,1,1,38,4,9,145.9,0,0,1,1,1,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,1 +1,18,3,9500,0,1,131.0,1,19,1,4,7,127.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,1 +1,7,1,9085,0,3,150.0,1,19,37,90,90,140.0,0,0,1,1,0,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,167.0,1,19,19,9,7,156.2,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,140.0,1,1,3,4,5,130.0,0,0,1,1,0,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9238,0,1,132.0,1,1,19,4,9,127.1,1,0,1,1,1,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9119,0,1,133.0,1,3,1,3,4,121.8,1,0,1,1,0,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,2 +1,17,1,9670,0,1,133.1,1,1,37,4,5,150.0,0,0,1,1,0,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,150.0,103,37,37,9,9,134.6,0,0,1,1,0,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,1 +1,17,6,9773,0,1,131.0,1,34,34,0,0,129.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,139.0,1,3,1,4,1,126.0,1,0,1,1,0,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,0 +1,17,1,9670,0,1,138.0,1,1,1,4,8,123.0,0,0,0,0,0,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,2 +5,39,1,9853,0,19,133.1,1,37,37,9,8,118.0,0,0,1,1,1,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,142.0,1,37,38,9,9,137.3,1,0,1,1,1,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,136.0,1,3,38,2,9,125.7,1,0,1,1,1,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,1,1,4,10,128.3,1,0,1,1,1,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,132.0,1,1,37,4,9,127.1,0,0,1,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,122.0,1,19,19,7,7,116.1,1,0,1,1,1,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,1 +1,44,1,9085,0,1,140.0,1,1,2,3,3,140.0,0,0,1,1,1,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,2 +1,42,1,9853,0,12,133.1,1,1,3,3,2,133.7,0,0,1,1,1,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,0 +2,7,1,9500,0,3,120.0,1,37,19,9,7,120.0,1,0,1,1,1,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,2 +1,1,4,9238,0,1,134.0,1,38,19,7,7,128.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,130.0,1,19,38,4,7,121.3,1,0,1,1,1,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,1 +1,39,2,9238,0,1,110.0,1,19,1,5,5,136.5,0,0,1,1,0,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9670,0,1,133.1,1,38,19,9,8,122.9,0,0,0,0,0,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,124.0,1,19,1,9,3,123.7,1,0,1,1,1,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,17,1,9991,1,1,120.0,1,38,3,9,3,116.9,1,0,0,0,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,43,2,9147,0,1,160.0,1,37,37,9,9,96.0,0,0,1,0,1,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,154.0,1,19,37,9,7,140.4,1,0,1,1,1,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,2 +1,17,5,9070,0,1,125.0,1,19,1,5,5,122.6,1,0,1,1,0,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,2,9119,0,1,137.0,1,1,1,4,4,130.4,1,0,0,1,0,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,0 +1,1,1,9085,0,1,134.0,1,37,19,9,9,136.8,1,0,1,1,0,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,1 +1,39,1,9773,0,19,100.0,1,37,37,0,0,128.0,1,0,1,1,0,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +4,39,1,9130,0,19,133.1,1,37,38,9,4,100.9,0,0,1,1,0,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,127.0,1,1,19,5,7,130.5,1,0,1,1,1,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,1 +2,1,1,9003,0,1,131.0,1,19,38,5,5,118.4,0,0,1,1,1,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,142.0,1,1,38,5,7,127.7,0,0,1,1,1,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,130.0,1,1,38,4,9,115.0,0,0,1,1,0,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,100.0,0,0,1,1,1,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,1 +1,17,5,9773,0,1,134.0,1,1,19,9,5,121.8,1,0,1,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,1 +1,1,3,9853,0,1,122.0,1,1,3,5,3,113.6,0,0,1,1,1,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,114.0,1,37,37,7,8,116.7,0,0,1,1,0,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,130.0,1,3,1,3,3,120.5,0,0,1,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,148.0,1,19,19,4,5,143.5,0,0,1,1,1,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,19,9,9,107.0,0,0,1,0,0,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,130.0,1,3,19,5,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,39,1,9500,0,19,133.1,1,37,37,9,6,120.0,0,0,1,0,1,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,0 +1,1,2,9853,0,1,123.0,1,19,1,194,103,115.3,1,0,1,1,1,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,2 +1,18,1,9130,0,1,135.0,1,38,19,9,5,121.7,1,0,1,1,1,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,116.0,1,38,38,5,8,110.8,1,0,1,1,1,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,7,1,9147,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9991,1,1,133.1,41,37,37,9,8,114.7,0,0,1,1,1,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,122.0,1,37,37,9,7,120.6,1,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,150.0,1,5,5,2,2,146.2,0,0,1,1,1,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,0 +2,7,1,9147,0,3,130.0,1,1,4,3,10,130.0,0,0,1,1,1,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9085,0,19,110.0,1,37,37,90,90,110.0,0,0,1,0,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,140.0,1,1,1,9,9,136.9,1,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,44,1,9085,0,39,150.0,1,19,19,9,9,150.0,1,0,1,1,1,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,1 +2,43,1,9003,0,1,149.0,1,1,1,4,5,156.1,1,0,1,0,0,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9119,0,1,133.1,1,1,1,9,3,136.0,0,0,1,1,0,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,0 +1,16,2,9238,0,1,122.0,1,19,37,9,7,127.3,1,0,1,1,1,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,133.0,1,1,1,6,7,134.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,141.0,1,19,38,9,9,130.5,0,0,1,1,0,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,121.0,1,1,3,9,3,123.8,0,0,1,0,0,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,0 +1,44,1,9238,0,39,140.0,1,1,1,4,3,138.6,0,0,1,1,0,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,0 +1,1,1,9991,1,1,145.0,1,2,37,4,9,127.5,1,0,1,1,0,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,100.0,1,37,19,9,2,121.9,0,0,1,0,1,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,120.0,1,38,38,9,9,148.5,0,0,1,1,1,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +5,39,1,9991,1,1,110.0,1,1,1,3,3,119.0,0,0,1,1,0,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9254,0,1,137.0,1,1,38,2,8,122.3,1,0,1,1,0,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,42,1,9238,0,1,133.1,1,1,19,4,9,134.0,0,0,1,1,1,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,38,37,9,7,130.0,1,0,1,1,0,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,1 +5,7,1,9147,0,40,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,120.0,1,37,37,9,9,111.1,0,0,1,1,1,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,124.0,1,38,19,6,10,126.8,1,0,1,1,1,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,1 +2,1,1,9500,0,1,151.0,1,37,38,9,7,134.5,0,0,0,1,1,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,133.0,1,19,37,9,8,121.8,1,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,148.0,1,1,19,4,5,135.1,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,120.0,1,19,38,4,8,122.5,0,0,1,0,0,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,9070,0,1,140.0,1,37,37,9,10,118.0,0,0,0,1,0,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,3,133.1,1,9,9,90,90,130.0,0,0,1,1,1,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,150.0,1,34,34,0,0,108.0,0,0,1,1,1,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,1,150.0,1,1,38,3,5,120.0,0,0,1,1,0,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,2 +1,44,1,9085,0,39,150.0,1,38,1,5,5,150.0,0,0,1,1,1,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,2 +1,1,2,9238,0,1,133.1,1,19,19,9,9,106.0,1,0,1,1,1,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,102.0,1,38,38,9,9,99.6,1,0,1,1,1,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,140.0,1,38,19,9,5,130.0,0,0,0,1,1,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,2 +1,1,3,9773,0,1,138.0,1,3,1,2,3,135.9,1,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,1,9,4,150.0,1,0,1,1,0,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,0 +1,1,6,9147,0,1,127.0,1,1,19,1,6,120.0,1,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,0,0,1,1,0,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,137.0,1,38,38,4,8,126.5,1,0,1,1,1,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,1,19,4,4,132.6,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,130.0,1,1,1,4,9,150.0,0,0,1,1,0,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,146.0,1,3,1,1,3,149.2,1,0,1,1,1,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,129.0,1,38,38,6,6,118.5,1,0,1,1,1,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,131.0,1,19,3,3,2,126.1,1,0,1,1,1,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,2 +1,39,1,9085,0,43,160.0,1,3,39,2,3,172.0,0,0,1,1,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,39,1,9670,0,1,133.1,1,1,1,4,4,112.9,0,0,1,1,1,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,0 +2,39,1,9003,0,1,150.0,1,37,37,9,6,140.0,0,0,1,1,0,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,127.0,1,37,38,9,7,115.8,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,133.1,1,1,37,5,9,143.0,1,0,0,1,1,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,124.0,1,19,19,9,9,138.4,1,0,0,1,1,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,0 +1,1,1,9070,0,1,125.0,1,1,1,4,4,132.0,0,0,1,0,1,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,1,5,9130,0,1,160.0,1,3,1,2,9,150.2,1,0,1,1,1,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,1,110.0,1,37,37,9,4,160.0,0,0,1,1,1,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,135.0,1,19,37,5,7,121.4,0,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,2,9670,0,1,135.0,1,19,19,7,10,121.4,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,125.0,1,1,38,4,9,118.4,1,0,1,1,1,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,2 +1,1,6,9500,0,1,145.0,1,38,37,5,6,127.5,1,0,1,1,1,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,1 +1,43,3,171,0,1,140.0,1,37,38,7,7,143.4,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,134.0,1,37,19,9,10,141.4,1,0,1,1,1,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,130.0,1,29,38,9,8,122.0,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,109.0,1,19,19,4,9,104.1,1,0,0,0,1,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,116.0,1,34,34,0,0,127.0,1,0,1,1,0,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,3,8014,1,19,100.0,1,37,37,9,9,120.0,1,0,1,1,0,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9238,0,1,122.0,1,37,38,4,7,118.2,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,8014,1,1,100.0,1,12,5,9,4,116.5,0,0,0,0,1,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,122.0,1,19,19,193,194,112.6,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,42,3,9500,0,1,136.0,1,1,1,4,4,148.8,1,0,1,1,1,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,137.0,1,19,1,9,9,132.8,0,0,1,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,130.0,1,37,37,6,6,111.9,0,0,0,1,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9254,0,1,116.0,1,19,38,5,5,116.0,1,0,1,1,1,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,18,2,9500,0,1,131.0,1,1,3,3,2,121.2,1,0,1,1,1,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,141.0,1,1,19,3,3,131.9,1,0,1,1,1,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,120.0,1,37,37,9,10,122.6,0,0,1,1,1,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,0 +1,18,5,9119,0,1,136.0,1,3,2,2,3,125.2,1,0,1,1,0,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,125.0,1,19,1,7,4,122.6,0,0,1,1,0,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,139.0,1,19,37,9,9,131.5,1,0,1,1,1,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,1 +1,5,1,9853,0,1,119.0,1,1,38,5,8,118.3,1,0,1,1,1,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,2 +1,17,2,9773,0,1,125.0,1,1,38,5,6,115.9,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,126.0,1,1,19,4,8,120.1,1,0,1,1,1,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,1 +1,17,1,9085,0,1,125.0,1,1,37,4,9,117.0,1,0,1,1,1,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,135.0,1,19,38,7,5,121.0,0,0,1,1,1,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,138.0,1,38,37,3,3,133.1,0,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,148.0,1,19,37,9,5,130.9,0,0,1,0,0,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,145.0,1,12,1,4,10,139.8,1,0,1,1,1,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,118.0,1,37,37,3,5,110.0,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,51,1,9147,0,1,99.0,1,3,1,3,3,99.7,1,0,0,0,1,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,2 +1,17,2,9556,0,1,137.0,41,1,1,7,7,124.4,1,0,1,1,1,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,1 +1,17,3,9853,0,1,133.1,1,34,34,0,0,115.0,0,0,1,1,1,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,123.0,1,37,38,9,9,113.9,1,0,0,0,1,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,0 +1,1,4,9238,0,1,125.0,1,19,38,9,6,114.9,1,0,0,1,1,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,2 +1,18,1,8014,1,1,137.0,1,1,1,4,3,123.0,0,0,0,1,1,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,1 +1,43,1,8014,1,1,131.0,1,19,37,8,5,125.0,0,0,1,1,0,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9147,0,3,150.0,1,6,27,1,7,150.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,9,4,117.0,0,0,1,1,1,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,133.1,1,37,1,9,10,100.0,0,0,1,1,1,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,0 +1,1,3,9670,0,1,121.0,1,1,19,5,5,111.9,1,0,1,1,0,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,133.1,1,1,19,3,3,112.0,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,43,1,9991,1,1,140.0,1,1,1,6,6,100.0,0,0,1,1,0,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,1 +2,42,1,9556,0,1,110.0,1,37,37,9,6,140.0,0,0,1,1,0,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,130.0,1,1,1,4,4,124.8,0,0,1,1,1,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,138.0,1,38,37,9,6,126.8,1,0,1,1,0,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,1 +1,17,4,9773,0,1,127.0,1,2,37,9,9,115.8,1,0,0,0,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9085,0,1,170.0,1,1,1,4,5,166.6,0,0,0,0,1,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,130.0,1,1,1,4,4,130.0,1,1,1,1,0,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,3,1,2,8,100.0,1,0,1,1,0,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9670,0,1,106.0,1,3,1,2,3,105.7,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,43,1,9556,0,1,140.0,1,37,37,9,9,128.0,1,0,1,0,1,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,0 +1,1,1,9147,0,1,127.0,1,1,4,9,10,121.8,0,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,134.0,1,1,1,9,6,130.9,0,0,0,1,1,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,133.1,1,37,37,7,4,132.0,0,0,1,1,0,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,110.0,1,12,3,5,2,100.0,1,0,1,1,0,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,6,9238,0,1,113.0,1,1,38,194,163,112.3,1,0,0,1,1,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,118.0,1,19,19,5,7,121.2,0,0,1,1,0,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,51,1,9773,0,1,158.0,1,1,19,8,8,117.1,1,0,1,1,0,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,0 +1,17,1,9070,0,1,119.0,1,37,38,9,8,124.6,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,111.0,1,19,19,3,10,117.7,0,0,1,1,1,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,140.0,1,3,1,5,9,130.0,0,0,1,1,0,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,122.0,1,3,1,9,10,114.7,0,0,1,1,1,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,1 +2,39,1,9238,0,19,133.1,1,1,2,4,6,130.0,0,0,1,1,1,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,2 +1,17,2,9500,0,1,131.0,1,38,1,5,7,118.4,1,0,1,1,1,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,0 +1,43,5,9853,0,1,150.0,1,34,34,0,0,150.2,1,0,1,0,1,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,140.0,1,37,19,9,9,166.0,1,0,0,1,0,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9085,0,1,133.1,1,19,37,9,6,130.0,1,0,1,1,1,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,1 +1,1,4,9147,0,1,120.0,1,38,38,5,10,111.3,0,0,1,1,0,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,2 +1,1,5,9500,0,1,125.0,1,3,19,4,8,120.3,1,0,1,1,1,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,2 +1,17,2,9556,0,1,136.0,1,1,1,9,9,128.3,0,0,1,1,1,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,133.1,1,38,19,5,5,128.0,0,0,1,1,1,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,9,133.1,1,37,37,5,3,110.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9254,0,1,118.0,1,19,1,4,4,115.9,1,0,1,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,134.0,1,19,37,7,7,136.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,130.0,1,37,37,9,7,119.9,0,0,1,1,1,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9773,0,1,153.0,1,34,34,99,99,133.1,1,0,0,1,1,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,10,133.1,1,12,36,90,90,128.2,0,0,1,0,0,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,1,9991,1,1,112.0,1,43,40,2,2,106.4,0,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,122.0,1,3,3,2,2,122.0,1,0,1,1,1,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,137.0,1,1,19,4,3,121.3,1,0,1,1,0,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,1 +1,39,1,9085,0,19,133.1,1,3,1,2,5,103.0,0,0,1,1,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,136.0,1,1,19,9,9,131.5,0,0,1,1,1,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,154.0,1,1,3,4,2,164.9,0,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,1 +1,17,6,9147,0,1,129.0,1,19,1,9,4,122.0,1,0,1,1,0,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,132.0,1,19,19,9,7,128.0,1,0,1,1,0,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,1 +2,39,1,9773,0,19,133.1,1,19,19,9,4,131.0,0,0,0,0,0,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,0 +4,39,1,8014,1,1,160.0,1,37,37,5,5,126.0,0,0,1,1,1,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,1 +1,16,2,9238,0,1,126.0,1,38,37,3,5,127.1,1,0,1,1,1,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,1 +1,1,2,9254,0,1,111.0,1,1,19,5,7,109.3,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,1 +1,17,2,9556,0,1,133.1,1,37,37,3,10,108.0,0,0,1,1,1,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,1 +1,1,4,9773,0,1,140.0,22,1,37,3,9,130.5,1,0,1,1,1,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,1 +1,7,1,9500,0,3,140.0,1,1,1,9,5,140.0,0,0,1,1,1,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,0 +1,17,3,9670,0,1,125.0,1,1,3,4,3,117.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,150.0,1,37,38,9,9,131.5,1,0,1,1,1,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,5,100.0,0,0,1,0,0,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9773,0,1,133.0,1,19,19,7,7,134.4,1,0,1,1,0,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,135.0,1,19,37,9,9,128.0,1,0,1,1,1,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,5,9670,0,1,115.0,1,1,19,5,5,117.1,0,0,1,1,1,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,2 +1,51,1,9003,0,39,130.0,1,1,19,4,4,120.0,1,0,0,0,0,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,0 +1,1,3,9773,0,1,117.0,1,38,19,7,7,110.4,1,0,0,0,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9773,0,1,127.0,1,19,38,8,3,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,38,37,1,1,115.0,1,0,1,1,1,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,2 +1,18,2,9853,0,1,123.0,1,1,3,9,2,123.7,1,0,0,0,1,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,0 +1,1,3,9853,0,1,122.0,1,3,3,2,2,112.6,1,0,1,1,1,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,17,3,9254,0,1,127.0,1,37,37,9,6,123.5,1,0,1,1,1,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,141.0,1,37,37,9,9,136.3,1,0,1,1,0,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,1 +1,1,1,9773,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,17,2,9254,0,1,140.0,1,3,3,2,2,124.3,0,0,1,0,0,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,125.0,1,1,3,4,1,121.9,1,0,1,1,0,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,0 +1,17,1,9070,0,1,134.0,1,1,1,5,0,133.3,1,0,1,1,0,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9670,0,1,127.0,22,37,37,9,9,127.0,1,0,1,1,0,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,1 +1,42,1,9853,0,1,120.0,1,37,38,3,3,113.7,0,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,0 +1,1,3,9670,0,1,121.0,1,3,19,2,8,122.4,1,0,1,1,0,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,2 +1,1,3,171,0,1,139.0,1,19,19,5,3,128.2,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,42,1,9085,0,1,100.0,1,1,38,4,9,100.0,1,0,1,1,1,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,10,1,9500,0,1,140.0,24,3,3,2,9,140.0,1,0,0,0,1,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,0 +1,1,1,9773,0,1,132.0,1,37,19,9,9,131.0,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,124.0,1,1,1,4,4,127.9,1,0,1,1,0,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,2 +5,39,1,9119,0,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,2 +1,17,1,9773,0,1,117.0,1,38,38,9,9,111.1,0,0,0,1,0,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,19,133.1,1,19,37,9,9,149.4,0,0,1,0,0,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,1,1,161.9,0,0,1,1,0,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9147,0,1,140.0,1,38,37,4,7,130.0,1,0,1,0,1,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,43,1,171,0,1,145.0,1,19,38,9,9,100.0,0,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9773,0,1,120.0,1,37,38,9,3,155.5,0,0,1,1,0,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,121.8,0,0,1,0,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,7,1,9130,0,3,140.0,1,5,4,2,0,140.0,0,0,0,0,1,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,0 +1,51,1,171,0,1,128.0,1,2,1,3,3,131.2,1,0,1,1,0,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,1 +2,39,1,8014,1,12,110.0,1,37,37,7,9,120.0,0,0,1,1,1,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,150.0,1,2,3,3,2,140.8,0,0,1,1,1,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,2 +1,43,1,9070,0,1,125.0,1,19,19,7,8,133.4,1,0,1,1,0,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,2 +1,1,5,171,0,1,160.0,1,1,1,4,4,139.7,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,1,120.0,1,1,38,9,9,150.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,154.0,1,19,19,3,3,142.0,0,0,1,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9254,0,1,110.0,1,4,19,4,3,114.8,1,0,1,0,0,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9119,0,1,140.0,1,34,34,9,9,140.0,0,0,1,0,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,125.0,1,1,1,4,2,134.1,1,0,1,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,7,1,9254,0,40,130.0,1,1,1,3,6,130.0,0,0,1,1,1,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9254,0,1,122.0,1,37,37,9,3,124.5,1,0,1,1,1,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,130.0,1,1,3,9,2,128.6,1,0,1,1,1,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,1 +1,17,4,9670,0,1,122.0,1,3,1,2,3,119.6,1,0,1,1,0,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,1 +1,44,3,9085,0,39,150.0,1,1,19,4,1,150.0,1,0,1,1,1,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,19,37,9,9,130.0,1,0,1,1,0,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,133.1,1,38,19,4,7,98.0,1,0,1,1,0,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,2 +1,17,2,9556,0,1,125.0,1,38,19,7,7,121.5,1,0,1,1,1,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,0 +2,1,4,9500,0,1,143.0,1,38,38,5,5,128.7,1,0,1,1,1,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,1,100.0,1,1,19,4,8,122.0,0,0,1,1,1,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,1 +1,51,1,9500,0,1,170.0,1,1,1,4,10,125.0,0,0,1,1,0,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,1 +1,18,4,9500,0,1,137.0,1,3,1,3,4,126.7,1,0,1,1,1,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,19,133.1,1,38,38,9,8,106.0,1,0,1,1,0,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,1 +1,39,1,9991,1,40,130.0,1,19,1,3,4,152.0,1,0,1,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9085,0,39,140.0,1,1,39,3,9,140.0,1,0,1,1,1,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,2 +1,17,2,9773,0,1,133.1,1,3,1,4,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +2,43,1,9853,0,1,110.0,1,37,37,7,7,100.0,0,0,1,1,0,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,1 +1,7,1,9119,0,3,120.0,1,19,19,1,1,120.0,0,0,1,0,0,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,1,130.0,1,34,34,99,99,114.8,0,0,1,1,1,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,1 +2,39,1,8014,1,1,140.0,1,37,3,9,10,172.0,0,0,1,1,0,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,2 +1,17,2,9670,0,1,123.0,1,34,37,0,0,114.6,1,0,0,0,1,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,0 +1,43,2,9500,0,1,136.0,1,19,1,9,10,124.1,0,0,1,1,0,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,116.0,1,1,1,1,1,110.8,1,0,1,1,1,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,1 +1,39,1,9003,0,1,133.1,1,37,37,4,7,130.0,0,0,0,0,0,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,0 +1,1,3,9085,0,1,158.0,1,1,19,9,9,153.6,1,0,1,1,1,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,1 +1,17,4,9773,0,1,121.0,1,1,19,9,8,120.3,1,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,5,3,9085,0,1,141.0,1,1,19,7,5,128.8,1,0,1,1,1,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,2 +1,18,4,9556,0,1,127.0,1,1,38,4,7,121.8,1,0,1,1,1,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,37,37,9,9,109.0,1,0,1,1,1,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,110.0,1,34,34,0,0,114.6,1,0,1,1,1,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9085,0,1,128.0,1,38,19,8,8,117.2,0,0,1,1,0,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,143.0,1,1,38,3,3,133.2,1,0,1,1,1,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,1 +1,1,4,9853,0,1,134.0,1,19,1,5,9,127.4,1,0,1,1,1,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,2 +1,1,1,9670,0,1,133.1,1,3,1,1,7,155.0,0,0,1,1,1,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,114.0,1,19,38,9,7,129.1,0,0,1,1,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,149.0,1,19,37,7,4,134.3,0,1,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,130.0,1,1,38,3,5,128.6,1,0,1,1,0,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,1 +1,42,1,9147,0,1,139.0,1,3,38,2,5,112.3,1,0,1,1,1,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,2 +1,1,3,9773,0,1,130.0,1,19,19,9,9,123.0,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,43,1,9500,0,1,130.0,1,38,38,9,5,100.0,0,0,1,1,1,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,2 +6,39,1,8014,1,1,133.1,1,37,1,9,7,114.8,0,0,1,1,1,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,121.0,1,1,38,4,9,114.4,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,18,1,9238,0,1,122.0,1,38,38,9,7,114.7,0,0,0,1,1,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,1 +1,17,2,9773,0,1,120.0,1,1,1,2,5,127.0,1,0,1,0,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,39,120.0,1,4,1,2,8,120.0,0,0,1,1,0,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,1 +1,17,3,9500,0,1,143.0,1,38,1,9,5,133.8,1,0,1,1,1,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,130.0,1,1,19,9,7,133.8,0,0,0,1,1,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,1 +2,39,1,9556,0,1,100.0,1,37,37,9,9,120.0,0,0,1,1,1,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,133.1,1,1,19,5,4,102.5,0,0,1,1,1,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9003,0,1,111.0,1,1,3,4,2,162.4,0,0,0,0,0,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,133.1,1,19,1,9,3,107.0,1,0,1,1,1,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,128.0,1,19,1,4,4,124.3,1,0,1,1,0,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,140.0,1,36,14,9,10,130.0,1,0,1,1,0,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,150.0,1,38,19,7,10,134.6,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9070,0,1,134.0,1,34,1,5,7,129.8,1,0,1,1,1,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,150.0,1,37,37,9,3,150.0,1,0,1,1,0,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,0 +2,39,1,9238,0,1,126.6,1,38,38,9,7,107.5,0,0,0,1,1,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,120.0,1,37,37,9,7,106.8,0,0,1,1,1,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,1,9254,0,1,117.0,1,1,1,5,5,116.3,1,0,1,1,0,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,130.0,1,19,19,5,5,157.0,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9556,0,1,133.1,1,44,40,2,2,115.5,0,0,1,1,1,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,133.1,1,3,1,2,4,125.0,0,0,1,1,0,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,2 +2,39,1,9003,0,1,133.1,1,37,37,9,9,100.0,0,0,1,0,0,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,0 +1,17,2,9500,0,1,141.0,1,37,1,9,4,127.3,1,0,1,1,1,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,117.0,1,38,38,175,183,113.2,1,0,0,1,1,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,133.1,1,37,37,7,7,124.5,0,0,1,0,0,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,0 +1,17,2,9070,0,1,133.1,1,37,38,9,10,178.0,1,0,1,1,0,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,120.0,1,19,19,9,9,115.0,1,0,1,1,0,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9853,0,1,146.0,1,1,1,3,4,128.2,0,0,0,1,1,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,2 +1,17,4,9070,0,1,128.0,1,1,1,9,10,136.1,1,0,0,0,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,0 +5,39,1,9500,0,3,140.0,1,37,38,9,9,160.0,0,0,1,1,1,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,1 +1,39,1,8014,1,1,133.1,1,37,37,9,8,121.0,0,0,0,0,1,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,0 +1,43,1,9130,0,1,140.0,1,2,1,2,3,140.0,1,0,1,1,1,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,1 +1,1,3,9670,0,1,126.0,1,37,37,0,0,136.5,1,0,1,1,1,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,1 +1,17,4,9238,0,1,140.0,1,19,37,9,9,130.2,1,0,1,1,1,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,142.0,1,1,3,1,2,133.0,0,0,1,1,1,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,136.0,1,19,38,9,9,121.7,1,0,1,1,0,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,17,4,9085,0,1,106.0,1,37,1,3,9,106.0,0,0,1,1,1,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,2 +1,1,3,9500,0,1,135.0,1,1,37,7,7,120.5,1,0,1,1,1,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,115.0,1,19,19,7,7,115.0,1,0,1,1,1,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9238,0,1,160.0,1,38,1,9,3,124.0,0,0,0,1,0,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,2 +1,1,1,9500,0,1,129.0,1,38,38,5,5,120.8,1,0,1,1,1,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,160.0,41,37,19,9,9,160.0,0,0,1,1,1,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,132.0,1,1,19,7,5,129.9,1,0,1,1,0,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,136.0,1,37,38,9,8,139.2,1,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,127.0,1,19,37,9,7,121.3,1,0,1,1,1,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,1 +1,1,1,9119,0,1,142.0,1,1,38,4,3,129.8,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,133.1,1,37,37,5,8,133.2,0,0,1,0,0,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,0 +1,1,1,9147,0,1,150.0,1,1,19,5,5,137.8,1,0,1,1,0,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,135.0,1,3,1,2,4,129.8,1,0,1,1,0,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,1 +1,43,2,9773,0,1,132.0,1,19,19,0,0,127.1,0,0,1,1,0,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,1 +1,17,3,9500,0,1,140.0,1,3,2,3,3,126.4,1,0,1,1,1,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,0 +2,39,2,9119,0,19,133.1,1,37,37,7,7,118.0,0,0,1,0,0,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,110.0,1,3,4,2,2,110.0,1,0,1,1,0,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,0 +2,39,1,9500,0,38,133.1,1,37,37,9,3,146.6,0,0,1,1,0,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,146.0,1,1,3,4,1,135.2,1,0,1,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,3,5,2,2,135.8,0,0,0,1,0,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,0 +2,39,1,9773,0,19,100.0,1,37,37,0,0,163.5,0,0,0,0,0,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,124.0,1,19,19,9,7,113.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,143.0,1,3,3,9,7,129.0,1,0,1,1,0,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,1 +1,1,2,9853,0,1,117.0,1,1,38,4,9,109.7,1,0,1,1,1,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,2 +1,7,1,9130,0,2,133.1,6,42,1,4,9,100.0,0,0,1,1,0,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,115.8,0,0,0,0,0,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,0 +1,18,1,9773,0,1,167.0,1,38,38,6,7,153.0,1,0,1,1,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,51,1,9238,0,1,141.0,1,1,1,5,9,125.0,0,0,1,1,0,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,17,4,9500,0,1,132.0,1,38,19,5,7,125.5,0,0,1,1,1,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,1 +1,1,1,9119,0,1,132.0,1,1,12,3,3,133.1,1,0,1,1,0,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,149.0,1,1,1,4,4,129.3,1,0,1,1,0,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,1 +2,39,1,9147,0,1,130.0,1,37,37,9,9,142.5,0,0,1,1,1,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,2 +1,1,6,9773,0,1,133.1,1,1,37,3,3,100.0,1,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,138.0,1,37,37,9,6,145.0,1,0,1,1,1,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,19,19,3,6,124.3,1,0,1,1,1,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,135.0,1,37,37,9,7,132.6,1,0,1,1,1,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,159.0,1,34,26,0,6,160.1,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,1 +2,39,1,8014,1,1,133.1,1,37,37,6,8,100.0,0,0,0,1,1,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9070,0,1,153.0,1,3,3,1,2,146.7,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,1 +1,43,1,171,0,2,140.0,1,37,37,9,9,140.0,1,0,1,1,1,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,141.0,1,19,19,9,8,142.8,0,0,1,1,1,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,1 +1,39,2,9556,0,1,130.0,1,19,19,4,5,100.0,0,0,1,1,0,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,120.0,1,38,19,3,5,120.0,0,0,1,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,2 +1,39,2,9147,0,1,120.0,1,37,37,9,9,104.0,0,0,1,0,0,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9085,0,1,150.0,1,38,38,9,9,132.0,1,0,1,1,1,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,142.0,1,38,38,9,9,132.9,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9085,0,1,160.0,1,4,19,2,5,162.1,1,0,1,1,1,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,141.0,1,37,37,9,8,130.2,1,0,1,1,1,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,118.0,1,1,1,9,9,111.0,0,0,1,0,0,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,119.0,1,37,37,10,6,119.7,1,0,1,1,1,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,2 +1,17,2,171,0,1,137.0,1,1,1,4,1,143.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,18,3,9085,0,1,149.0,103,1,1,9,9,132.2,1,0,1,1,1,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,130.0,1,37,37,90,90,125.1,0,0,1,1,1,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,1 +4,17,5,8014,1,1,100.0,1,19,19,90,90,107.0,0,0,1,1,1,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,19,133.1,1,38,19,9,10,142.7,0,0,0,1,0,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,139.0,1,19,37,5,5,125.5,0,0,1,1,1,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,133.0,1,4,1,5,5,131.6,0,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,148.0,1,19,19,9,3,125.0,1,0,1,1,1,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,110.0,1,37,37,9,9,110.3,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,53,1,9003,0,42,130.0,1,38,38,9,9,130.0,1,0,0,1,0,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,2 +1,1,4,9070,0,1,140.0,1,4,19,2,10,125.0,1,0,1,1,0,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,2 +1,42,1,9003,0,39,140.0,1,19,1,5,5,140.0,0,0,1,1,1,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,2 +1,1,4,9070,0,1,136.0,1,37,37,9,8,136.7,1,0,1,1,1,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,1,5,9773,0,1,125.0,1,37,3,5,2,126.1,1,0,1,1,0,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,8014,1,1,126.0,1,37,38,9,10,119.4,0,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,123.0,1,1,3,2,2,118.8,0,0,1,1,0,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,2 +1,1,6,9500,0,1,144.0,1,1,37,9,9,127.5,1,0,1,1,1,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,1 +1,43,1,9070,0,1,125.0,1,38,37,8,7,131.7,1,0,1,1,0,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,144.0,1,37,37,8,8,138.4,0,0,1,1,1,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,160.0,1,37,37,3,4,97.0,0,0,1,1,1,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9853,0,1,119.0,1,37,38,9,9,125.0,1,0,1,1,1,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,117.0,1,37,37,9,9,109.3,0,0,1,0,1,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,3,130.0,1,37,37,9,9,146.2,0,0,1,1,1,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,150.0,1,37,37,9,9,130.3,0,0,1,1,1,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,1 +2,39,2,8014,1,19,100.0,1,37,37,4,7,100.0,0,0,0,1,1,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,39,1,8014,1,38,133.1,1,38,37,4,8,95.5,0,0,1,1,0,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,120.7,0,0,1,1,1,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,1 +1,39,1,9119,0,19,120.0,1,37,37,9,4,98.6,0,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9130,0,1,120.0,1,19,37,1,9,116.1,1,0,1,1,0,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9500,0,1,136.0,1,1,1,4,9,128.5,1,0,1,1,1,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,132.0,1,38,37,7,7,131.3,1,0,1,1,1,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,2 +1,1,2,9500,0,1,115.0,1,38,38,9,8,108.4,1,0,1,1,1,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,120.0,1,37,37,9,9,98.7,0,0,1,1,0,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,120.0,1,37,37,9,9,155.8,0,0,1,1,0,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,151.0,1,19,1,5,0,144.4,1,0,1,1,1,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,1 +1,43,2,9147,0,1,131.0,1,19,37,5,9,123.7,1,0,1,1,1,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,2 +1,17,4,9085,0,1,128.0,1,38,37,4,9,117.9,1,0,1,1,1,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,1 +1,43,1,8014,1,12,133.1,1,37,1,9,10,112.5,0,0,1,1,0,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,0 +1,39,1,9085,0,19,133.1,1,37,37,4,8,140.0,0,0,1,1,1,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,7,1,9147,0,2,150.0,1,3,37,2,5,150.0,1,0,0,0,1,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,18,2,9147,0,1,102.0,1,37,38,191,143,101.7,1,0,1,1,1,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,128.0,1,19,1,4,1,118.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,0 +2,39,1,8014,1,1,133.1,1,19,1,4,8,144.3,0,0,1,1,0,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,1 +1,1,5,9254,0,1,128.0,1,19,1,7,10,116.5,1,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,140.0,1,19,19,7,5,135.1,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,1 +1,18,2,9500,0,1,129.0,1,38,37,5,5,119.0,1,0,1,1,1,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,140.0,1,3,1,3,3,131.5,1,0,1,1,1,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,143.0,1,3,3,2,5,144.8,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,127.0,1,37,37,9,8,123.2,1,0,1,1,1,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,2 +1,43,1,9500,0,1,125.0,1,37,37,9,7,123.6,1,0,1,1,1,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,138.0,1,1,38,3,9,123.0,1,0,1,1,1,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,139.0,1,38,38,9,9,145.0,1,0,1,1,1,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,121.0,1,37,19,6,7,116.8,1,0,1,1,1,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,2,9085,0,1,123.0,1,1,19,4,9,113.6,1,0,1,1,1,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,2 +1,17,6,9773,0,1,126.0,1,1,19,5,5,119.0,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,4,9119,0,1,139.0,1,37,19,9,4,133.1,1,0,1,1,0,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,2 +1,1,1,9147,0,1,158.0,1,1,38,3,6,155.2,0,0,1,1,0,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,1 +1,17,2,8014,1,1,133.1,1,19,1,1,1,118.0,0,0,1,1,1,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,136.0,1,22,30,0,8,135.7,1,0,1,1,1,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,120.0,1,37,37,9,9,110.0,0,0,1,0,0,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,124.0,1,19,19,7,9,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,2 +5,7,1,9991,1,2,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,1 +1,1,4,9238,0,1,123.0,1,38,1,4,10,129.0,1,0,1,1,1,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,17,4,9119,0,1,135.0,1,38,37,5,7,126.6,1,0,1,1,0,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,2 +1,1,3,9070,0,1,129.0,1,5,3,5,7,124.8,1,0,1,1,1,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,1 +1,17,5,9147,0,1,127.0,1,1,38,4,5,124.6,1,0,1,1,1,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,135.0,1,1,1,4,4,118.5,0,0,1,1,1,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,171,0,1,142.0,1,3,1,2,6,139.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +5,39,1,9147,0,1,133.1,1,19,19,9,9,119.8,0,0,1,1,0,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,123.0,1,1,37,9,9,132.1,0,0,1,1,1,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,1 +1,43,1,9853,0,1,115.0,1,3,37,2,5,108.7,1,0,1,1,1,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,12,133.1,1,37,34,90,90,110.7,1,0,1,1,1,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,155.0,1,4,3,1,1,144.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,4,9254,0,1,105.0,1,1,19,9,6,106.1,1,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,150.0,1,19,19,3,4,135.0,0,0,1,1,1,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,152.0,1,37,37,5,7,136.3,0,0,1,1,1,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,34,34,0,0,120.5,1,0,1,1,0,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,140.0,1,1,37,4,5,123.6,1,0,1,1,1,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,120.0,1,37,37,9,9,150.1,1,0,1,1,0,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,144.0,1,37,38,9,9,126.9,0,0,1,1,1,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,120.0,1,37,37,9,9,128.2,0,0,1,0,0,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,0 +1,18,2,9147,0,1,115.0,1,1,37,5,5,108.7,1,0,1,1,1,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,140.0,1,19,19,4,4,140.0,1,0,1,0,0,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,1,1,3,7,140.0,1,0,1,1,1,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9500,0,1,129.0,1,19,19,5,5,119.6,1,0,1,1,1,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,1 +1,17,6,9773,0,1,141.0,1,37,37,5,5,127.7,1,0,1,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,137.0,1,19,37,4,7,126.3,1,0,1,1,1,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,1 +2,39,1,9003,0,1,168.0,1,1,41,9,3,153.9,0,0,0,0,0,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,133.0,1,37,37,9,9,121.8,1,0,1,1,1,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,119.0,1,2,1,4,3,113.1,1,0,1,1,1,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,43,1,9147,0,1,142.0,1,38,19,141,171,115.0,0,0,1,1,1,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,2 +1,17,4,9773,0,1,138.0,1,37,19,5,7,133.5,1,0,1,0,1,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +2,7,1,8014,1,3,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,133.0,1,3,19,2,5,130.8,1,0,1,1,1,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,137.0,1,38,19,152,171,131.1,1,0,1,1,1,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,3,9119,0,1,130.0,1,1,38,3,3,129.3,0,0,1,1,0,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,1 +1,43,1,9773,0,1,126.0,1,1,37,3,0,110.0,0,0,0,1,1,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,116.0,1,1,12,5,8,110.4,1,0,1,1,0,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,1,1,4,10,110.0,0,0,0,1,1,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,17,5,9238,0,1,134.0,1,38,37,9,9,126.0,0,0,0,0,1,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,0 +2,39,1,9147,0,1,130.0,1,1,19,9,9,109.9,0,0,1,0,1,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9085,0,1,133.1,41,37,37,9,9,109.6,0,0,1,1,1,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,0 +1,44,1,9003,0,39,140.0,1,37,37,9,1,140.0,0,0,1,1,0,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,2 +2,39,1,9991,1,19,133.1,1,38,38,90,90,121.7,1,0,1,1,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,143.0,1,1,3,4,7,129.7,1,0,1,1,1,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,133.0,1,1,19,9,6,121.5,1,0,1,1,1,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,1 +1,17,1,9003,0,1,133.0,1,38,37,9,9,125.3,1,0,1,1,1,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,1 +1,42,1,9991,1,1,160.0,1,1,2,4,3,120.0,0,0,1,1,1,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,1 +2,39,2,9556,0,1,133.1,105,1,3,9,2,152.8,1,0,1,1,1,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,123.0,1,1,1,4,6,118.8,1,0,1,1,1,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9853,0,1,122.0,1,3,19,2,3,112.9,0,0,1,1,1,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,1 +1,1,5,9853,0,1,123.0,1,1,12,4,9,113.2,1,0,1,1,1,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,140.0,1,37,37,9,9,141.5,1,0,0,0,1,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,129.0,1,19,19,4,8,127.3,1,0,1,1,1,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,1 +1,39,1,9085,0,1,130.0,1,37,37,6,6,110.0,0,0,1,1,1,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,2 +4,39,1,8014,1,19,133.1,1,37,37,9,9,95.0,0,0,0,0,1,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9853,0,1,127.0,1,37,19,9,8,137.5,1,0,1,1,1,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,1 +1,1,5,9500,0,1,142.0,1,38,37,5,7,128.8,1,0,1,1,1,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,1 +1,17,2,9147,0,1,142.0,1,19,19,4,8,127.3,0,0,1,1,1,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +3,39,1,9991,1,1,120.0,1,37,1,9,2,170.0,0,0,1,1,0,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,138.0,1,19,37,4,9,141.0,0,0,1,1,0,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,132.0,1,1,38,9,9,120.1,1,0,1,1,0,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,140.0,1,1,1,2,7,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,121.0,1,37,19,9,10,113.7,0,0,1,1,1,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,2 +1,39,1,8014,1,38,133.1,1,1,1,4,4,107.5,0,0,0,0,0,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,150.0,1,1,1,5,1,155.6,0,0,1,1,1,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,150.0,1,37,37,9,6,131.1,0,0,1,1,1,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,100.0,1,3,19,1,1,117.9,0,0,1,0,0,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,39,2,9991,1,1,150.0,1,37,37,9,9,120.0,0,0,1,1,1,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,150.0,1,1,38,4,9,150.0,0,0,1,1,0,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,2 +2,43,1,9130,0,9,133.1,1,34,34,0,0,128.2,0,0,1,1,0,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,141.0,1,1,1,90,3,127.8,0,0,1,1,1,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,0 +1,1,1,9070,0,1,116.0,1,3,3,0,1,108.7,1,0,1,1,0,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,0 +2,39,1,9500,0,1,140.0,1,19,19,9,7,110.5,0,0,1,1,1,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9254,0,19,133.1,1,34,34,0,0,120.0,0,0,0,0,0,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,1,133.1,1,37,37,191,172,115.2,0,0,1,1,1,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,37,38,9,6,160.0,0,0,1,1,1,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,133.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9556,0,1,131.0,1,19,38,9,7,128.5,0,0,1,1,1,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,160.0,1,37,38,9,7,161.0,1,0,1,1,1,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,136.0,1,3,3,1,2,152.5,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9853,0,1,114.0,1,19,37,5,5,109.5,1,0,1,1,1,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,150.0,1,37,37,9,7,122.5,0,0,1,1,0,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,0 +1,44,1,9991,1,39,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,2 +1,51,1,8014,1,42,140.0,1,19,37,134,193,138.0,1,0,0,1,1,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,127.0,1,2,19,3,9,121.5,0,0,1,1,0,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,133.1,1,19,19,3,3,125.3,0,1,1,1,0,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,4,9670,0,1,125.0,1,4,19,2,5,118.0,1,0,1,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,1 +2,42,1,9070,0,1,170.0,1,37,25,0,4,148.5,0,0,1,1,0,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,0 +1,17,5,9254,0,1,121.0,1,1,19,4,7,116.5,1,0,1,0,0,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,120.0,1,19,38,5,9,130.2,0,0,1,1,1,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,140.0,1,19,37,9,9,140.7,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,140.0,1,19,19,5,9,131.3,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,42,1,9119,0,1,140.0,1,3,3,3,2,133.6,1,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,8014,1,1,150.0,1,19,2,4,6,148.0,0,0,1,1,1,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,127.0,1,37,2,9,4,123.2,1,0,1,1,1,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,119.0,1,19,37,9,9,119.4,1,0,1,1,1,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,132.0,1,2,1,4,1,127.8,0,0,1,1,0,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,0 +1,42,1,9119,0,1,136.0,1,1,37,5,5,117.5,0,0,1,1,0,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,2 +1,1,1,9991,1,1,122.0,1,37,37,9,3,113.6,0,0,1,1,0,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,19,19,5,6,137.4,0,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,2 +1,17,1,9238,0,1,128.0,1,19,19,5,4,116.5,0,0,1,1,1,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,139.0,1,1,38,6,6,143.6,1,0,0,1,0,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9130,0,1,154.0,1,3,3,2,2,137.2,1,0,0,1,0,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,0 +1,17,6,9500,0,1,142.0,1,19,37,4,9,131.9,1,0,1,1,1,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,0 +1,1,2,9773,0,1,131.0,1,19,37,9,10,121.9,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +2,7,1,9130,0,3,120.0,1,3,3,1,1,128.2,0,0,1,1,1,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,19,133.1,1,37,37,9,9,150.3,0,0,1,1,1,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,125.0,1,37,37,5,5,124.0,0,0,1,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,135.0,1,37,19,9,9,125.2,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,135.0,1,19,19,9,9,124.5,0,0,1,1,1,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,175.0,1,3,38,2,10,157.5,1,0,1,1,1,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,139.0,1,1,1,4,10,140.7,0,0,1,1,0,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,0 +1,1,4,9500,0,1,128.0,1,1,1,4,10,125.2,1,0,1,1,0,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,150.0,1,1,37,1,1,131.5,1,0,1,1,1,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,168.0,1,38,1,9,10,166.0,1,0,1,1,1,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,1 +1,51,1,9070,0,1,125.0,1,42,3,125,124,130.0,1,0,1,1,0,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,135.0,1,1,38,4,5,127.5,1,0,1,1,1,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,1 +1,18,1,9119,0,1,148.0,1,3,19,3,5,147.7,0,0,1,1,0,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9773,0,1,130.0,109,19,1,9,9,126.9,1,0,1,1,1,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,125.0,1,19,38,3,7,114.9,0,0,1,1,1,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,1 +1,7,1,9119,0,3,130.0,1,37,37,9,9,130.0,0,0,1,0,0,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9853,0,1,130.0,1,37,19,7,3,140.0,0,0,0,1,1,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,112.0,1,3,1,3,5,111.0,0,0,1,1,1,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,37,38,193,181,125.9,0,0,1,1,1,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,1 +1,42,1,9119,0,1,120.0,1,34,34,0,0,128.2,1,0,1,1,0,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,19,133.1,1,37,37,9,9,117.2,0,0,1,1,1,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9147,0,1,131.0,1,19,38,9,7,132.4,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,2 +5,39,1,9003,0,1,180.0,1,1,1,4,8,179.6,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,1,5,9119,0,1,135.0,1,37,37,90,90,122.1,1,0,1,1,0,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,133.0,1,1,38,5,10,131.3,1,0,1,1,1,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,2 +1,18,1,9500,0,1,126.0,1,37,19,5,5,119.3,0,0,1,1,1,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,110.0,1,19,37,9,6,120.0,0,0,0,0,0,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9556,0,1,130.0,1,37,37,9,9,159.0,1,0,1,1,1,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,2 +1,17,1,9070,0,1,141.0,1,19,38,4,5,133.7,1,0,1,1,0,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,150.0,1,1,37,4,6,120.0,0,0,1,1,0,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,17,2,9085,0,1,123.0,1,3,19,2,9,118.9,0,0,1,1,0,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,17,1,9991,1,1,140.0,1,38,37,6,7,127.3,0,0,1,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,151.0,1,3,1,2,1,129.8,1,0,1,1,0,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,1 +1,43,1,8014,1,1,113.0,1,37,37,0,6,128.2,0,0,1,0,1,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9070,0,1,117.0,1,1,37,4,7,127.9,1,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,145.0,1,19,19,9,7,136.6,0,0,1,1,1,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.0,1,34,37,4,9,134.4,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,9238,0,39,130.0,1,38,38,5,10,126.7,0,0,0,1,1,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,1 +1,17,1,9773,0,1,122.0,1,1,1,4,7,116.8,1,0,0,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,3,9147,0,1,124.0,1,1,1,5,3,116.7,1,0,1,1,0,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,38,1,9,4,123.2,0,0,1,1,1,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,2 +1,39,1,9556,0,40,130.0,1,1,1,4,5,145.0,0,0,1,1,1,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,2 +1,43,1,9147,0,1,127.0,25,1,5,9,10,124.2,1,0,1,1,0,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,2 +2,43,1,9670,0,1,120.0,1,34,34,0,0,128.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,0 +1,18,1,9238,0,1,122.0,1,1,3,9,2,112.6,1,0,1,1,0,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,122.0,1,1,1,4,4,119.6,1,0,1,1,1,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,2 +1,17,5,9670,0,1,125.0,1,1,19,9,7,119.4,1,0,1,1,1,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,146.0,1,19,37,9,7,153.0,1,0,1,1,1,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,108.0,1,38,38,7,7,115.0,1,0,0,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,133.1,1,1,1,3,9,138.0,1,0,1,1,1,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,140.0,1,37,37,9,5,140.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,19,133.1,1,2,1,2,4,100.0,0,0,1,1,0,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9147,0,1,129.0,1,38,37,3,5,132.9,1,0,1,1,1,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,149.0,1,3,2,2,5,151.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,135.0,1,19,4,9,2,143.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9147,0,1,158.0,1,19,37,9,7,130.0,1,0,1,1,1,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,1 +1,17,6,9556,0,1,122.0,1,1,1,4,5,117.1,1,0,1,1,1,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9556,0,12,133.1,1,34,34,99,99,100.5,0,0,1,1,1,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,9003,0,1,123.0,1,37,37,9,9,110.0,0,0,0,0,1,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,138.0,1,3,3,2,2,127.5,1,0,1,1,1,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,1 +1,43,1,9500,0,1,121.0,1,38,19,5,5,115.4,1,0,1,1,1,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,2 +1,17,4,9147,0,1,114.0,1,19,19,4,4,109.5,1,0,1,1,0,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,1 +1,17,1,9254,0,1,148.0,1,1,1,4,8,145.2,0,0,1,1,0,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,121.0,1,1,1,4,4,123.1,1,0,1,1,0,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,150.0,1,3,3,2,5,154.6,1,0,1,1,1,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,151.0,1,19,38,9,9,157.0,1,0,0,1,1,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,101.0,0,0,1,1,1,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,1 +1,1,2,9254,0,1,127.0,1,3,19,3,10,130.9,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,146.0,1,1,1,9,8,149.5,1,0,1,1,0,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9130,0,6,133.1,1,1,29,4,90,123.3,1,0,1,1,1,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,3,3,7,146.5,1,0,0,1,0,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,2 +1,7,1,8014,1,40,120.0,1,37,19,9,3,120.0,0,0,1,1,1,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9853,0,1,125.0,1,37,37,9,9,114.9,1,0,0,0,1,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,0 +1,1,2,9773,0,1,140.0,1,1,1,4,3,131.6,0,0,1,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,142.0,1,1,19,9,9,136.1,0,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,113.0,1,1,1,4,4,106.7,1,0,1,1,1,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,130.0,1,1,2,4,2,130.0,0,0,1,1,0,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,39,1,9119,0,1,130.0,1,19,37,9,9,134.0,0,0,1,1,0,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,2 +1,18,1,9500,0,1,123.0,1,37,37,3,3,118.0,1,0,1,1,1,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,1 +1,10,2,9085,0,1,163.3,22,19,1,4,9,163.3,0,0,1,1,1,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,135.0,1,19,19,9,5,135.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,136.0,1,4,5,2,2,126.2,0,0,1,1,0,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,44,1,9130,0,39,150.0,1,1,37,4,8,150.0,1,0,1,0,1,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9085,0,3,140.0,1,19,20,4,90,140.0,1,0,1,1,1,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,43,1,9070,0,1,135.0,1,1,38,3,9,126.4,1,0,1,1,1,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,140.0,1,19,38,7,8,129.9,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,133.1,1,1,1,9,9,155.0,0,0,1,1,1,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,17,5,9773,0,1,122.0,1,38,38,7,7,123.1,1,0,1,0,1,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9130,0,1,117.0,1,1,1,9,9,109.3,1,0,1,1,1,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9500,0,1,130.0,1,1,38,9,9,125.1,1,0,1,1,1,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,2 +1,1,2,9773,0,1,144.0,1,3,3,3,2,140.2,1,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,145.0,1,1,1,4,10,145.0,0,0,1,1,1,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,0 +1,51,1,9070,0,1,143.0,1,1,1,4,4,120.0,1,0,1,1,1,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,0 +1,17,1,9773,0,1,145.0,1,1,38,90,8,132.8,1,0,1,0,0,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9556,0,1,120.0,1,38,38,191,193,120.0,0,0,0,1,1,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,148.0,1,19,1,7,5,138.3,1,0,1,1,0,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,146.0,1,3,3,3,6,133.4,1,0,1,1,1,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,1 +1,17,1,9130,0,1,131.0,1,12,12,2,8,128.2,1,0,1,1,0,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,6,9556,0,1,115.0,1,19,2,5,3,112.2,1,0,1,1,1,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,1 +1,43,1,9556,0,1,126.0,1,2,3,3,2,100.0,0,0,1,1,1,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,2 +1,17,1,9238,0,1,120.0,1,19,37,9,9,113.0,1,0,1,1,1,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,132.0,1,19,38,5,5,118.0,1,0,1,1,1,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,1 +2,1,1,9238,0,1,145.0,1,37,34,9,7,139.4,0,0,1,0,1,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,131.0,1,38,38,191,174,125.4,1,0,1,1,1,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,1 +2,39,1,9119,0,1,120.0,1,37,38,9,10,145.4,0,0,0,1,0,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,0 +1,1,1,9130,0,1,138.0,1,4,5,2,2,123.0,1,0,1,1,1,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,127.0,1,5,3,4,4,122.8,1,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,136.0,1,1,1,4,4,127.0,1,0,1,1,1,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,2 +1,17,3,9119,0,1,115.0,1,3,1,3,3,116.1,1,0,1,0,0,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,143.0,1,38,37,4,9,116.5,1,0,1,1,1,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,3,19,3,8,134.9,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,1 +1,44,1,9119,0,39,140.0,1,5,41,3,2,140.0,0,0,1,1,0,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,124.0,1,19,19,9,3,115.6,1,0,1,0,0,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,0 +1,7,1,9500,0,3,130.0,1,19,38,5,3,130.0,0,0,1,1,1,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,137.0,1,1,1,4,10,124.8,1,0,1,1,0,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,138.0,1,1,3,1,4,127.5,1,0,1,1,0,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,112.0,1,1,1,5,1,111.7,0,0,0,0,0,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,0 +1,1,4,9500,0,1,147.0,1,1,1,4,9,124.5,1,0,1,1,1,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,1 +1,7,1,9500,0,3,140.0,1,3,19,2,6,140.0,0,0,1,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,121.0,1,19,19,7,7,113.0,1,0,1,1,1,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,0 +1,1,2,8014,1,1,96.0,1,3,1,3,9,100.0,0,0,1,1,1,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,3,120.0,1,37,37,9,9,120.0,0,0,1,1,1,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,152.0,1,1,38,4,5,144.7,0,0,1,1,1,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,1 +2,1,1,9070,0,1,127.0,1,12,19,9,9,123.2,0,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,1 +1,1,3,9070,0,1,147.0,1,34,37,5,7,135.8,1,0,1,1,1,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,7,1,9119,0,4,180.0,1,4,3,2,7,180.0,0,0,0,1,0,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,2 +1,1,6,9500,0,1,129.0,1,37,19,9,7,127.8,1,0,1,1,1,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,100.0,1,37,37,7,7,160.0,1,0,1,1,1,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,127.0,1,19,1,5,5,117.6,1,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,2 +1,39,1,9003,0,1,110.0,1,1,1,9,4,120.0,0,0,0,0,0,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9773,0,1,143.0,11,19,19,4,9,133.9,1,0,1,1,0,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,1 +1,44,1,8014,1,39,160.0,1,37,37,7,7,156.1,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,43,2,9670,0,1,135.0,1,3,19,1,7,123.5,1,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,1,130.0,1,38,3,132,122,100.0,0,0,1,1,0,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,2 +1,15,1,9238,0,1,150.0,26,19,1,9,9,146.5,1,0,0,0,0,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,1 +1,17,6,9119,0,1,129.0,1,37,13,4,90,117.1,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,3,130.0,1,3,3,3,10,147.6,0,0,1,1,0,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,171,0,1,145.0,1,1,1,3,3,140.1,1,0,1,1,1,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,43,3,9254,0,1,135.0,1,3,3,2,2,122.1,0,0,1,1,0,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,2 +1,17,1,171,0,1,140.0,41,1,1,5,7,146.3,1,0,1,1,1,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9070,0,1,126.0,1,38,38,9,8,129.9,1,0,1,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,1 +1,7,1,9070,0,3,120.0,1,4,4,2,2,120.0,0,0,1,1,0,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,0 +1,17,4,9070,0,1,144.0,1,38,1,9,9,137.4,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,125.0,1,3,3,2,3,118.0,1,0,1,1,0,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,0 +5,39,1,9238,0,1,130.0,1,19,38,9,10,146.0,0,0,1,1,0,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,100.0,1,37,37,6,5,107.5,0,0,1,1,1,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9773,0,1,130.0,1,1,19,1,3,161.5,0,0,1,1,0,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,140.0,1,19,19,9,4,127.8,1,0,1,1,0,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,113.0,1,1,37,1,10,116.5,1,0,1,1,1,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,1 +1,1,2,9238,0,1,145.0,1,1,19,4,8,121.4,0,0,1,1,1,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9003,0,19,133.1,1,19,37,9,10,120.0,0,0,0,1,1,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,2 +1,1,1,9085,0,1,150.0,1,12,2,4,2,144.6,0,0,0,0,1,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,40,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,0 +1,17,5,9500,0,1,137.0,1,1,1,5,5,132.6,1,0,1,1,1,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,3,19,4,7,119.0,0,0,1,1,0,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,128.0,1,1,1,4,5,124.7,0,0,1,1,0,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,2 +1,39,2,9670,0,19,133.1,1,34,34,0,0,100.0,1,0,1,0,0,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,0 +1,39,1,9556,0,1,120.0,1,19,19,4,5,122.8,0,0,1,1,1,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,0 +1,1,2,171,0,1,165.0,1,3,3,2,2,163.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,133.8,1,3,37,2,10,184.0,0,0,1,1,1,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,120.0,1,37,19,9,4,148.8,0,0,1,1,1,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,1 +1,1,5,9500,0,1,151.0,1,1,1,9,9,127.8,0,0,1,1,1,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,131.0,1,38,19,7,7,125.3,1,0,1,1,1,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,128.0,1,1,1,9,6,120.3,0,0,1,1,0,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,2 +1,1,5,9500,0,1,118.0,1,3,1,5,10,113.5,1,0,1,1,1,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,140.0,1,37,37,7,9,126.8,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,117.0,1,38,37,9,9,113.5,1,0,1,1,1,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,135.0,1,19,19,9,9,122.8,1,0,1,1,0,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,151.0,1,37,37,9,7,147.5,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,1,3,4,4,147.5,1,0,1,1,1,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,128.0,1,38,37,9,9,124.9,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9085,0,1,124.0,1,3,19,2,3,113.9,1,0,1,1,1,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,120.0,1,3,19,4,7,119.7,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,171,0,1,147.0,1,1,12,4,4,148.4,1,0,1,1,0,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,136.0,1,19,1,9,8,123.4,1,0,1,1,1,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,123.0,1,3,1,2,5,112.9,0,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,2,9556,0,1,133.1,1,3,1,2,4,136.1,0,0,1,1,0,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,141.0,1,3,1,4,4,142.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,1,1,9003,0,1,120.0,1,37,37,9,9,120.5,1,0,0,1,0,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,140.0,1,37,37,9,6,140.0,1,0,1,1,0,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,147.0,1,19,1,4,3,138.5,1,0,1,1,1,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,123.0,1,34,34,90,90,113.3,1,0,1,1,1,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,38,4,5,130.4,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,7,7,134.0,0,0,1,1,0,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,38,38,4,7,111.6,1,0,1,1,1,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,1 +1,1,1,9119,0,1,148.0,1,19,38,9,7,133.0,0,0,1,1,0,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,128.0,1,3,1,2,1,127.8,0,0,1,1,1,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,172.0,1,38,37,9,9,149.3,0,0,1,1,0,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,138.0,1,37,37,9,8,127.2,1,0,1,1,1,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,140.0,1,3,1,2,6,137.6,1,0,1,1,0,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,1 +2,43,1,8014,1,1,110.0,1,37,19,9,3,100.0,0,0,1,1,1,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,2,1,2,4,140.7,1,0,1,1,0,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,1 +1,1,1,9130,0,1,137.0,1,3,38,3,5,129.3,1,0,1,1,1,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,136.0,1,38,38,0,7,133.2,1,0,1,1,1,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,145.0,6,34,34,0,0,134.5,1,0,1,1,0,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,147.0,1,19,19,3,10,151.9,1,0,1,1,1,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,118.0,1,37,37,9,9,112.1,1,0,1,1,1,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,0 +1,43,1,9773,0,1,122.0,1,1,1,4,5,126.9,0,0,1,1,1,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,126.0,1,12,38,9,5,122.2,0,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,143.0,1,3,3,2,2,129.0,0,0,1,1,0,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,1 +1,39,1,9556,0,1,130.0,1,19,38,9,8,113.3,0,0,1,1,1,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,101.0,1,1,37,4,9,98.9,1,0,1,1,1,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,133.1,1,34,34,90,90,116.0,0,0,1,0,1,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,0 +2,39,1,9991,1,1,170.0,1,37,19,9,3,151.1,0,0,1,1,0,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,1 +2,17,5,9119,0,1,126.0,1,37,38,4,4,122.9,1,0,1,1,0,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,2 +1,1,2,9500,0,1,125.0,1,19,19,9,9,114.9,0,0,1,1,1,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,1 +1,18,3,9773,0,1,128.0,1,19,1,9,9,122.1,1,0,1,1,0,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,149.0,1,38,37,9,9,139.5,0,0,1,1,0,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,1,3,9,5,137.1,0,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,126.0,1,38,37,5,5,114.8,1,0,1,1,1,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,1 +2,39,1,9085,0,1,120.0,1,37,37,6,6,150.0,0,0,1,1,0,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,137.0,1,38,19,0,90,122.3,0,0,1,1,1,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,0 +2,39,1,9853,0,19,133.1,1,37,19,3,7,100.0,0,0,1,1,1,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,145.0,1,4,2,2,3,127.3,1,0,1,1,0,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,129.0,1,1,1,4,8,129.0,0,0,1,0,1,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,143.0,1,1,1,4,4,129.0,1,0,1,1,0,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,136.0,1,19,38,9,9,119.3,1,0,1,1,1,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,151.6,0,0,1,1,1,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,2 +1,1,1,9238,0,1,108.0,1,19,38,9,9,107.3,0,1,1,1,1,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,134.0,1,1,1,2,7,128.4,1,0,1,1,1,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,1 +1,42,1,9119,0,1,120.0,1,3,1,2,9,108.2,1,0,1,1,0,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,0 +1,16,2,9500,0,1,127.0,1,2,38,4,9,119.0,1,0,1,1,1,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,131.0,1,1,1,9,9,122.0,0,0,1,1,1,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,1 +1,7,1,9070,0,3,133.1,1,3,5,2,2,120.0,1,0,1,1,1,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,150.0,1,19,19,5,5,132.8,1,0,1,1,1,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,1 +1,18,2,9670,0,1,121.0,1,37,38,4,1,111.9,1,0,1,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,108.0,41,3,3,9,9,107.0,0,0,0,0,1,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,150.0,1,34,19,0,4,152.8,1,0,1,1,0,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,18,2,9238,0,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,130.0,6,19,1,6,4,130.0,1,0,1,1,1,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,2 +1,51,1,9119,0,1,136.0,1,1,19,3,5,133.6,1,0,1,1,0,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,0 +1,1,4,9773,0,1,155.0,1,3,19,1,4,149.8,1,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9070,0,1,124.0,1,19,38,4,0,117.6,1,0,1,1,0,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,9,100.0,0,0,1,1,0,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,2 +1,44,1,9238,0,1,140.0,1,1,1,5,5,143.4,0,0,1,1,1,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,120.0,1,1,19,7,7,111.3,0,0,1,1,0,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,2 +2,1,1,9556,0,1,144.0,1,19,19,193,144,139.8,0,0,0,1,0,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,110.0,1,1,1,5,5,160.0,1,0,0,1,1,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,0 +2,39,1,9853,0,19,133.1,1,37,37,9,9,131.0,0,0,1,1,1,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,139.0,1,4,1,2,10,136.4,1,0,1,1,1,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,1 +1,17,3,9085,0,1,134.0,1,37,38,9,9,120.4,1,0,1,1,1,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,148.0,1,3,2,4,2,131.6,1,0,1,1,1,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,0 +1,1,3,9500,0,1,145.0,1,19,37,7,7,141.5,1,0,1,1,1,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,1 +2,39,1,9130,0,19,133.1,1,37,38,9,9,120.0,0,0,1,1,0,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,3,9254,0,1,121.0,1,19,37,4,7,116.8,1,0,1,1,1,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,1 +1,1,3,9254,0,1,123.0,1,1,1,4,3,123.4,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,38,38,9,9,133.4,1,0,1,1,0,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,1 +1,42,1,9500,0,1,124.0,1,19,19,4,9,124.0,0,0,1,1,1,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,40,130.0,1,37,37,9,7,130.0,0,0,1,1,1,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,140.0,1,3,38,2,9,140.0,1,0,1,1,1,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,158.0,1,38,38,9,7,144.7,1,0,1,1,1,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,18,2,9238,0,1,121.0,1,19,1,4,3,121.4,1,0,1,1,1,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,12,133.1,1,37,19,9,10,120.0,0,0,1,1,0,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,122.0,1,3,1,4,3,114.8,1,0,1,1,1,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,2 +4,43,1,9991,1,1,164.0,1,37,37,6,6,131.8,0,0,1,1,1,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,1 +1,1,3,9773,0,1,145.0,1,38,38,9,5,133.1,0,0,1,1,1,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9853,0,19,133.1,1,38,19,9,9,108.0,0,0,0,0,1,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,2 +1,17,3,9070,0,1,131.0,1,38,37,5,5,120.2,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,2 +1,43,1,9238,0,1,130.0,1,38,37,9,7,133.2,0,0,1,1,1,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,112.0,1,1,1,3,3,106.4,1,0,1,1,0,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,125.0,1,1,38,144,181,123.3,0,0,1,1,1,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,125.0,1,3,2,2,1,119.1,1,0,1,1,1,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,0 +1,7,1,9853,0,3,140.0,1,34,34,0,0,140.0,1,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,135.0,1,1,19,3,9,137.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,7,1,9991,1,3,120.0,1,37,37,6,7,120.0,0,0,0,0,0,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,130.0,1,1,1,4,3,125.1,1,0,1,1,1,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,1 +2,39,1,33,0,1,120.0,1,38,1,9,5,153.8,0,0,0,1,0,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,1,150.0,1,37,37,9,9,140.0,0,0,1,0,0,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,127.0,1,1,38,9,7,120.4,1,0,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,7,1,8014,1,43,180.0,1,19,19,9,4,180.0,0,0,1,1,1,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,1 +1,1,3,9147,0,1,143.0,1,1,1,5,7,133.2,1,0,1,1,1,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,1 +1,15,1,9853,0,1,133.1,41,43,1,153,135,128.2,0,0,1,1,1,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,1 +1,39,1,9147,0,12,133.1,1,1,1,9,4,140.0,1,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,151.0,1,1,38,4,7,137.0,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,1 +1,17,4,171,0,1,172.0,1,3,1,2,10,155.6,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,129.0,1,19,1,9,5,112.0,0,0,1,1,0,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,150.0,1,38,3,9,1,140.0,0,0,1,1,0,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,1 +1,1,1,9773,0,1,124.0,17,1,1,3,5,118.1,1,0,0,0,1,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,0 +1,17,1,9670,0,1,124.0,1,37,19,5,8,114.2,1,0,0,1,1,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,122.0,1,1,19,3,5,116.8,1,0,1,1,1,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,144.0,1,38,1,9,10,137.4,0,0,1,1,1,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,19,19,9,9,120.0,0,0,1,1,1,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,138.0,1,38,38,7,6,124.7,1,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,2 +1,18,2,9147,0,1,132.0,1,3,3,5,7,119.1,1,0,0,0,1,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,17,6,9119,0,1,111.0,1,19,3,5,10,106.5,1,0,1,1,0,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,0 +1,7,1,9500,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,1,140.0,1,37,37,9,9,130.0,1,0,1,1,0,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,125.0,1,37,37,3,3,124.0,0,0,1,1,0,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,128.0,1,19,2,7,3,126.3,1,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +2,39,1,9500,0,1,110.0,1,37,37,9,6,114.3,0,0,1,1,1,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,9085,0,1,133.1,1,1,9,4,4,128.2,0,0,1,1,1,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,1 +1,1,3,9238,0,1,126.0,1,38,19,5,8,120.8,1,0,1,1,1,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,121.0,1,1,1,9,8,118.9,1,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,109.0,1,19,37,5,5,108.3,0,0,1,1,1,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,2 +1,1,4,9670,0,1,127.0,1,1,1,7,7,116.5,1,0,1,1,1,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,171,0,19,133.1,101,1,19,2,7,110.0,0,0,1,1,0,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,133.0,1,37,37,9,7,124.6,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,39,137.0,1,1,1,5,10,124.5,0,0,1,0,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,130.0,1,19,19,7,7,121.6,0,0,1,1,1,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,1 +2,39,1,8014,1,1,130.0,1,37,37,6,5,113.5,1,0,1,1,1,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9670,0,1,120.0,1,38,38,5,7,115.1,1,0,1,1,1,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,115.0,1,38,1,9,4,116.1,1,0,1,1,0,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,130.1,0,0,1,1,1,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,2 +1,1,3,9238,0,1,133.1,1,1,1,9,9,100.0,1,0,1,1,0,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,168.0,0,0,1,1,0,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,148.0,1,1,1,9,9,141.7,0,0,1,0,0,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,0 +1,15,1,33,0,1,133.1,41,2,3,2,4,100.0,0,0,1,1,0,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,2 +1,17,3,9147,0,1,135.0,1,37,37,6,5,121.0,1,0,1,1,0,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,151.0,1,3,3,1,90,161.9,0,0,1,1,1,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,8,108.5,0,0,1,1,0,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9670,0,1,130.0,1,26,30,0,5,128.6,1,0,0,1,1,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,1 +1,43,1,9500,0,1,140.0,100,1,1,6,6,128.2,0,0,1,1,1,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,140.0,1,19,37,5,7,140.0,1,0,1,1,0,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,0 +1,39,1,33,0,1,140.0,1,3,1,2,4,152.8,0,0,1,1,1,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,2 +1,43,1,9070,0,1,117.0,1,1,1,4,7,112.5,1,0,1,1,0,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,126.0,1,37,19,7,7,125.7,0,0,1,1,1,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,2 +1,1,2,9773,0,1,140.0,1,38,38,5,7,126.4,1,0,1,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,121.0,1,37,38,6,9,121.0,0,0,1,1,1,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,136.0,1,12,1,4,4,122.0,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,117.0,1,37,37,9,9,120.2,1,0,1,1,1,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,133.1,1,38,1,9,9,121.0,0,0,0,0,0,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,0 +1,44,1,9991,1,39,130.0,1,37,37,5,5,130.0,1,0,1,1,0,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,138.0,1,1,19,4,9,142.2,1,0,1,1,1,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,148.0,1,3,1,2,10,148.0,1,0,1,1,1,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,1 +1,17,6,9556,0,1,134.0,1,19,38,7,7,128.5,1,0,1,1,1,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,141.0,1,1,19,5,8,141.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,149.0,1,3,1,9,9,137.5,0,0,1,1,0,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,1 +1,1,3,9085,0,1,142.0,1,11,11,90,90,155.3,0,0,1,1,1,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +1,1,2,9070,0,1,135.0,1,19,37,9,9,134.0,1,0,1,1,1,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,132.0,1,19,38,9,7,120.1,0,0,1,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9147,0,1,133.0,1,37,37,9,5,119.7,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,139.0,1,3,4,2,2,130.6,0,0,1,1,1,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,130.0,1,1,3,9,2,130.0,1,0,0,0,0,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,0 +1,17,3,9500,0,1,138.0,1,3,3,4,5,130.0,1,0,1,1,1,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,121.0,1,19,19,3,3,116.1,1,0,1,1,1,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,160.0,1,3,38,1,9,152.0,1,0,1,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,130.0,41,37,19,9,8,125.5,1,0,1,1,1,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,133.1,1,38,38,191,193,146.0,0,0,0,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,1 +4,39,1,9003,0,1,140.0,1,37,37,9,8,150.0,0,0,1,1,0,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,2 +1,17,2,9670,0,1,132.0,1,1,19,5,3,124.0,1,0,1,1,0,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,117.0,1,19,19,5,7,118.4,0,0,1,1,0,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,140.0,6,1,19,4,7,131.6,1,0,1,1,1,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,142.0,1,38,1,8,10,138.5,1,0,1,1,0,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,2 +1,1,1,9130,0,1,132.0,1,3,1,4,9,121.9,1,0,1,1,1,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,122.0,1,1,1,9,9,116.1,1,0,1,1,0,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,0 +1,7,1,8014,1,3,130.0,1,37,38,0,5,130.0,0,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,138.0,1,19,19,9,5,124.8,1,0,1,1,1,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,140.0,1,19,38,3,9,140.0,1,0,1,1,0,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +4,39,1,8014,1,1,138.0,1,19,19,90,90,127.0,0,0,1,0,1,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9500,0,19,133.1,1,1,3,2,2,100.0,0,0,0,1,0,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,117.0,1,3,1,3,5,110.7,1,0,1,1,0,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,120.0,1,19,19,5,5,113.0,1,0,1,1,1,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,160.0,1,37,37,7,7,133.0,1,0,1,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,137.0,1,1,1,4,5,126.3,1,0,1,1,1,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,19,37,9,7,123.9,1,0,1,1,1,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,38,38,9,5,130.0,0,0,0,0,0,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,137.0,1,19,37,9,7,130.8,0,0,0,1,1,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,38,37,4,6,150.0,1,0,1,1,1,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,115.0,1,34,38,0,5,108.4,1,0,1,1,1,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,140.0,1,3,38,141,151,135.3,0,0,1,1,0,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,148.0,1,19,19,7,7,130.9,0,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,127.0,1,1,1,4,3,126.3,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,2,9670,0,1,100.0,1,37,37,9,9,100.0,0,0,1,1,1,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,2 +1,17,2,171,0,1,141.0,1,19,37,9,9,136.1,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,123.0,1,30,19,4,90,122.3,0,0,1,1,1,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,145.0,1,1,38,5,7,127.5,1,0,1,1,0,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9085,0,1,150.0,1,37,37,90,10,112.0,0,0,1,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,128.0,1,37,1,9,7,124.2,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,0 +1,43,1,9070,0,39,130.0,1,19,37,5,9,124.0,1,0,1,1,1,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,1 +1,17,1,9003,0,1,170.0,1,1,4,9,5,144.1,1,0,0,0,0,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9670,0,1,110.0,1,19,19,90,99,107.2,0,0,1,1,0,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9238,0,19,133.1,1,37,37,9,9,130.0,1,0,1,1,1,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,42,1,9119,0,1,144.0,1,34,34,0,0,119.5,0,0,1,1,0,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,19,133.1,1,37,37,6,6,162.0,0,0,0,1,0,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,16,1,9085,0,1,138.0,1,37,37,9,9,123.0,1,0,1,1,1,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,39,1,9500,0,1,133.1,1,19,19,5,6,121.4,0,0,0,1,1,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9085,0,1,138.0,1,1,1,4,7,132.1,1,0,1,1,1,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,1 +1,39,1,9119,0,1,133.1,1,37,37,9,9,101.6,0,0,1,1,0,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9500,0,1,126.0,1,1,19,131,181,120.1,1,0,1,1,1,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,38,9,9,142.0,1,0,1,1,1,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,1 +1,18,1,8014,1,1,138.0,1,19,1,9,5,134.5,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,19,9,9,150.0,0,0,1,1,0,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,126.0,1,38,37,9,9,123.6,1,0,1,1,1,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,39,1,9254,0,19,133.1,1,19,19,3,1,101.5,0,0,0,0,0,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,43,2,9119,0,1,115.0,1,38,19,9,6,112.2,1,0,0,1,0,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,2 +2,39,1,9003,0,1,120.0,1,37,37,9,9,125.7,0,0,0,0,1,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,0 +1,17,2,9773,0,1,115.0,1,1,1,5,5,119.6,1,0,1,1,1,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,19,9,4,140.0,0,0,1,1,1,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,125.0,1,37,19,90,90,137.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,120.0,1,3,38,3,7,124.2,1,0,1,1,0,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,2 +1,1,1,9147,0,1,146.0,1,5,1,1,5,144.6,0,0,1,1,0,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,116.0,1,1,1,3,4,113.6,1,0,1,1,1,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,1 +4,42,1,9147,0,1,133.1,1,37,38,7,3,123.0,1,0,1,1,0,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,118.9,1,38,37,5,9,118.9,1,0,1,1,1,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,123.0,1,12,1,9,9,119.2,1,0,1,1,1,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,1 +1,7,1,9500,0,2,140.0,1,38,37,7,8,140.0,0,0,1,1,1,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,110.0,1,37,37,90,90,108.4,1,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9119,0,1,146.0,1,1,37,7,7,132.4,1,0,1,1,0,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,19,133.1,1,19,3,9,2,140.0,1,0,0,1,0,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,0 +1,18,2,9853,0,1,111.0,1,38,38,191,171,105.8,1,0,1,1,1,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,6,130.2,0,0,1,1,1,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,130.0,1,1,3,9,10,118.1,1,0,1,1,0,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,118.0,1,1,19,5,4,118.0,0,0,1,1,1,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,153.0,1,38,38,7,7,159.7,1,0,1,1,1,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,171,0,12,110.0,1,37,37,7,7,106.0,1,0,1,1,0,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,134.0,1,19,1,9,4,124.9,1,0,1,1,1,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,0 +1,1,3,9254,0,1,121.0,1,19,19,9,9,125.9,1,0,1,1,1,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,160.0,1,19,19,4,9,154.4,0,0,1,1,1,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,3,140.0,1,19,19,9,7,152.4,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9130,0,1,130.0,1,19,1,191,144,110.0,0,0,1,1,0,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,142.0,1,38,37,9,5,127.3,1,0,1,1,1,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,37,37,9,9,130.0,0,0,0,1,1,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,124.0,1,37,19,9,4,121.2,0,0,1,1,0,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,1 +4,39,1,9991,1,1,120.0,1,19,19,9,3,113.9,1,0,1,1,1,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,114.0,1,19,38,5,3,112.6,1,0,1,1,1,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,1 +1,7,1,9991,1,40,120.0,1,1,19,4,9,120.0,0,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,128.0,1,19,38,9,9,118.2,0,0,1,1,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,4,9070,0,1,126.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,130.0,1,1,1,0,0,119.5,0,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,184.4,22,2,19,2,8,184.4,0,0,1,1,1,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,133.1,1,37,37,9,9,132.8,0,0,0,0,0,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9085,0,1,120.0,1,38,19,90,90,127.0,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,1 +1,17,4,9147,0,1,132.0,1,38,19,5,5,120.8,1,0,1,1,0,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,0 +1,10,1,9670,0,1,148.9,22,37,37,9,9,148.9,0,0,1,1,1,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,4,150.0,1,1,1,4,6,150.0,0,0,1,1,0,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,150.0,1,19,1,9,3,110.0,1,0,1,1,0,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,1 +1,15,1,9670,0,1,130.0,26,42,1,2,7,130.0,0,1,0,1,1,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,1 +2,7,1,8014,1,3,120.0,1,38,1,9,9,120.0,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,149.0,1,19,37,9,9,158.1,1,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,4,9147,0,1,124.0,1,37,37,9,9,117.4,0,0,1,1,1,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,142.0,1,34,1,5,10,136.1,1,0,1,0,0,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,1,1,8014,1,1,165.0,1,37,37,0,0,162.9,1,0,1,1,0,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,130.0,1,37,37,5,7,123.4,1,0,1,1,0,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,0 +4,39,1,8014,1,1,133.1,1,37,37,7,7,143.0,0,0,1,1,0,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,121.0,1,38,37,8,8,115.4,1,0,1,1,1,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,7,1,9556,0,3,140.0,1,3,3,2,2,140.0,0,0,0,0,0,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,116.0,1,38,19,0,2,116.7,1,0,1,1,0,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,132.0,1,38,1,5,5,124.3,0,1,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,133.1,1,38,12,7,0,111.5,0,0,1,0,1,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,0 +1,53,1,9147,0,42,140.0,1,1,1,6,6,142.2,0,0,1,1,0,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,1 +2,44,1,9991,1,39,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,9773,0,1,170.0,1,1,19,9,7,155.0,0,0,1,1,0,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,8014,1,19,133.1,1,37,37,4,8,112.5,0,0,1,1,1,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,120.0,1,1,1,5,8,112.0,1,0,1,1,1,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,123.0,1,1,1,3,3,113.6,1,0,1,1,1,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,1 +1,39,1,9085,0,1,133.1,1,1,19,9,9,162.3,1,0,1,1,1,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,116.0,1,37,1,9,8,115.7,1,0,0,0,1,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,160.0,1,9,19,4,3,151.3,0,0,1,1,1,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,1 +1,39,1,8014,1,19,149.0,1,34,34,0,0,126.3,0,0,1,1,1,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,44,1,9238,0,39,140.0,41,1,1,4,6,137.5,0,0,0,1,1,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,130.0,1,37,37,9,9,129.0,1,0,1,1,1,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,19,38,7,7,118.7,0,0,1,1,0,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,128.0,0,0,1,1,1,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,1 +1,17,1,9070,0,1,135.0,1,19,37,5,9,145.9,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,128.0,1,1,19,9,7,118.2,0,0,1,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,128.0,1,19,38,9,9,127.0,0,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,140.0,1,37,12,9,9,150.0,0,0,0,1,0,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,0 +2,43,1,8014,1,1,160.0,1,37,39,9,4,140.9,0,0,1,1,1,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,133.0,1,38,19,8,7,127.3,1,0,1,1,1,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,1 +1,15,1,9670,0,1,160.0,1,37,12,9,9,149.5,1,0,1,0,0,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,152.0,101,2,1,9,1,168.5,1,0,1,1,0,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,1 +1,1,3,9085,0,1,147.0,1,19,19,9,1,135.6,1,0,1,1,1,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,1 +1,17,2,8014,1,1,120.0,1,37,34,0,0,117.6,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,141.0,1,37,37,9,9,130.2,0,0,1,1,0,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,1 +1,16,2,9147,0,1,139.0,1,38,37,9,9,123.7,1,0,1,1,1,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,134.0,1,19,38,4,8,129.5,0,0,1,1,1,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,113.0,1,1,37,9,10,117.2,1,0,1,1,1,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,18,2,9556,0,1,126.0,1,3,3,2,2,115.5,0,0,1,1,0,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,1 +1,39,1,8014,1,1,134.0,1,37,38,4,7,110.0,1,0,1,1,1,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,42,1,171,0,1,132.0,1,1,1,1,4,132.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9003,0,1,130.0,1,19,19,9,1,140.0,0,0,1,1,1,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9773,0,1,132.0,1,38,19,9,9,125.0,1,0,1,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,140.0,1,37,37,9,6,132.8,0,0,1,1,0,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,130.0,1,37,19,9,5,140.2,1,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9070,0,1,118.0,1,43,3,123,123,110.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,1 +1,39,1,8014,1,19,100.0,1,37,37,5,5,111.0,1,0,1,1,1,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,2 +1,1,3,9085,0,1,138.0,1,1,3,4,4,126.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,132.0,1,2,19,4,4,125.0,1,0,1,1,1,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,38,100.0,1,37,37,9,7,154.0,1,0,1,1,0,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,138.0,1,1,19,4,4,131.7,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,1 +2,39,2,9147,0,1,140.0,1,37,37,9,8,108.0,0,0,1,1,1,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,2 +1,1,5,9147,0,1,134.0,1,3,2,2,2,134.7,0,0,1,1,0,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,2 +1,43,1,9130,0,1,120.0,1,2,3,3,2,120.0,1,0,1,0,0,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,0 +1,1,3,9085,0,1,140.0,1,10,19,90,90,135.8,1,0,1,1,1,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,142.0,1,37,38,5,1,129.4,0,0,1,1,1,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,1 +1,17,4,9670,0,1,120.0,1,1,19,5,5,117.2,1,0,1,1,1,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,136.0,1,1,19,5,7,136.4,0,0,1,1,1,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,120.0,1,37,37,5,5,124.6,0,0,1,1,1,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,2 +1,39,1,9500,0,1,133.1,1,1,37,9,9,100.0,0,0,1,1,0,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,123.0,1,19,1,9,3,117.8,1,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,1 +5,39,1,9254,0,1,133.1,1,2,2,2,2,103.0,0,0,1,1,1,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,171,0,1,133.0,1,1,37,4,7,126.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,6,9500,0,1,119.0,1,1,1,4,4,115.0,1,0,1,1,0,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,143.0,1,38,19,151,193,134.3,1,1,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,135.0,1,1,19,4,4,129.1,0,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,43,2,9670,0,1,130.0,1,19,1,4,4,127.6,1,0,1,1,0,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,1,9254,0,1,126.0,1,37,37,5,1,126.0,0,0,1,0,0,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,0 +1,42,1,9119,0,1,120.0,1,19,37,9,9,113.8,0,0,1,0,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9991,1,1,140.0,1,37,37,9,9,135.8,1,0,1,1,0,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,1 +1,17,5,9085,0,1,118.0,1,38,38,9,9,112.4,1,0,1,1,1,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,1 +1,17,3,9773,0,1,134.0,1,2,1,3,3,129.5,1,0,1,1,0,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,129.0,1,1,38,4,7,123.4,0,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,132.0,1,19,37,4,9,128.0,1,0,1,1,1,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,137.0,1,38,37,7,5,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,1 +1,17,5,9119,0,1,138.0,1,19,19,5,5,123.3,1,0,0,1,0,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,138.0,1,1,1,3,4,132.5,1,0,1,1,1,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,1 +1,16,2,9070,0,1,133.0,1,1,3,4,2,122.5,1,0,1,1,1,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,2 +1,17,1,9130,0,1,137.0,1,38,19,5,7,130.0,1,0,1,1,1,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,2 +1,17,1,9238,0,1,131.0,1,37,37,9,7,121.9,0,0,1,1,1,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,1 +2,1,1,9500,0,1,142.0,1,19,38,4,5,130.3,0,0,1,1,1,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,1 +2,39,1,9556,0,1,160.0,1,37,37,9,6,120.0,0,0,1,1,1,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,0 +1,51,1,9670,0,1,126.0,1,3,3,1,10,111.0,0,0,0,1,0,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,1 +1,1,5,9853,0,1,141.0,1,37,19,9,5,133.0,1,0,1,1,1,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,0 +1,1,2,9670,0,1,124.0,1,19,1,9,4,117.7,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,133.0,1,19,19,9,5,120.1,1,0,1,1,1,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,1 +1,43,1,9147,0,1,133.1,1,4,19,2,1,128.2,0,0,1,1,1,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,0 +4,27,1,9070,0,2,130.0,1,34,34,0,0,130.0,0,0,1,1,1,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,0 +1,43,1,9003,0,1,150.0,1,2,4,4,1,150.0,0,0,1,1,0,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,1 +1,39,1,9991,1,19,133.1,1,19,37,7,5,155.5,1,0,0,0,0,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,0 +1,1,1,9238,0,1,106.0,1,1,1,3,3,105.0,0,0,1,1,0,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,111.0,1,19,38,3,3,111.4,1,0,1,0,1,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,0 +1,43,1,9254,0,1,130.0,1,1,19,5,7,130.0,0,0,1,1,1,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,0 +1,17,1,8014,1,1,120.0,1,38,37,6,6,113.0,0,0,1,1,1,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,139.0,1,1,37,4,9,131.3,1,0,1,1,1,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,1 +1,43,3,9254,0,1,110.0,1,37,37,9,9,107.2,1,0,1,1,0,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,147.0,1,1,1,4,4,134.3,1,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,130.0,1,37,38,9,6,130.0,1,0,1,1,1,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,139.0,1,37,38,9,9,124.0,1,0,1,1,0,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,122.0,1,37,37,9,9,126.9,1,0,1,1,1,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,11,11,90,4,114.0,1,0,1,1,0,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9147,0,1,132.0,1,39,39,3,3,127.8,1,0,1,0,0,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,128.0,1,38,37,5,6,122.1,0,0,1,1,1,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,2 +1,17,1,9085,0,1,127.0,1,19,38,194,193,117.6,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9500,0,1,145.0,1,3,3,2,3,141.8,0,0,1,1,1,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,1 +1,53,1,9556,0,42,140.0,1,1,19,4,5,140.0,0,0,1,1,1,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,1 +1,18,1,9147,0,1,160.0,1,19,19,5,8,137.6,1,0,1,1,1,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,1 +1,51,1,9670,0,19,133.1,1,2,1,3,10,120.0,0,0,0,1,0,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,19,133.1,1,19,39,5,3,121.7,0,0,0,0,1,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,126.0,0,0,1,1,0,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,1 +1,1,3,171,0,1,140.0,1,37,37,9,9,124.3,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,136.0,1,38,37,9,9,126.9,1,0,1,1,1,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,136.0,1,19,1,9,9,129.0,1,0,1,1,1,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,144.0,1,38,38,7,7,136.0,1,0,1,1,1,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,154.0,1,38,38,9,9,156.5,1,1,1,1,1,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,131.0,1,19,19,9,9,134.9,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +4,43,1,8014,1,1,140.0,1,38,37,9,9,126.0,0,0,1,1,1,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,141.0,1,37,37,9,7,126.3,1,0,1,1,1,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,1 +1,44,1,8014,1,39,150.0,1,1,37,9,7,146.7,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +1,1,2,9119,0,1,140.0,1,19,19,9,9,125.7,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,12,100.0,1,1,1,4,4,100.0,0,0,1,1,1,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,1 +1,42,1,9500,0,1,111.0,1,1,3,9,10,128.2,1,0,1,1,0,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,1 +1,17,2,9773,0,1,132.0,1,19,19,9,6,120.1,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,131.0,1,4,4,2,1,120.5,0,0,1,1,1,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,44,1,9003,0,39,170.0,1,19,19,5,5,170.0,1,0,1,1,0,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,1 +1,17,1,9773,0,1,150.0,1,38,38,7,7,137.8,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,19,133.1,1,37,37,9,10,120.0,0,0,0,0,0,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9670,0,39,110.0,1,37,1,9,4,110.0,0,0,1,1,1,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,130.0,1,5,3,2,2,130.0,0,0,1,1,0,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9670,0,1,133.1,1,34,3,7,2,130.6,1,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,38,9,10,140.0,0,0,1,1,0,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,133.1,1,19,38,9,9,119.6,1,0,1,1,1,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,118.0,1,19,19,3,3,110.0,1,0,1,1,1,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,2 +1,1,1,9773,0,1,137.0,1,1,1,5,5,129.3,1,0,1,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,127.0,1,19,38,5,9,129.5,1,0,1,1,1,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,126.0,1,38,19,9,6,119.4,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,116.5,0,0,1,1,1,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,125.0,1,19,19,4,7,128.5,1,0,1,1,1,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,2 +1,43,1,9773,0,1,133.1,22,34,34,90,90,130.0,0,0,0,1,1,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,125.0,1,1,1,5,5,128.5,0,0,1,1,0,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9500,0,1,133.1,1,19,37,9,9,120.0,0,0,1,1,1,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,1 +2,39,2,9147,0,1,133.1,1,37,37,5,7,110.0,0,0,1,1,0,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,6,9500,0,1,141.0,1,1,19,1,1,126.7,1,0,1,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,146.0,1,40,43,4,4,150.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,148.0,1,1,1,4,9,129.8,0,0,1,1,1,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,2 +1,17,1,9853,0,1,133.0,1,38,38,9,9,127.4,0,0,0,1,1,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,43,1,9147,0,1,120.0,1,37,37,5,3,113.4,0,0,1,1,0,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,148.0,1,19,3,4,2,136.5,0,0,1,1,1,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,178.0,1,2,1,2,3,157.7,0,0,1,1,0,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +2,7,1,9254,0,3,130.0,1,1,3,4,3,130.0,0,0,1,1,1,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,7,1,33,0,40,120.0,1,38,37,5,6,120.0,1,0,0,0,0,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,0 +2,1,1,9147,0,1,151.0,1,38,37,9,8,132.1,1,0,1,1,1,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,0 +1,43,2,9556,0,1,120.0,1,1,19,4,3,110.2,0,0,1,1,1,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,1 +2,1,4,9500,0,1,140.0,1,1,37,4,9,128.0,0,0,1,1,1,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,1 +1,42,1,9119,0,6,120.0,1,35,35,6,6,128.2,1,0,1,1,0,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,120.0,1,37,37,9,6,120.0,1,0,1,1,1,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,2 +2,39,1,9003,0,1,133.1,1,37,37,8,7,150.0,0,0,1,1,0,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,145.0,1,19,37,4,7,148.9,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,34,34,0,0,104.0,1,0,1,1,1,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,43,1,9085,0,1,110.0,1,3,19,4,6,105.0,0,0,0,0,0,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,0 +1,17,2,9254,0,1,108.0,1,37,37,9,7,108.0,1,0,1,1,1,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,1 +4,43,1,9238,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,1,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,136.0,1,19,37,173,183,118.4,1,0,1,1,1,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,18,1,9556,0,1,140.0,1,38,37,9,9,122.8,0,0,1,1,1,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,1 +1,39,1,9119,0,1,150.0,1,3,3,4,4,150.0,1,0,1,1,0,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,141.0,1,1,1,4,10,138.9,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,1 +1,18,4,9773,0,1,130.0,1,19,19,4,4,121.3,1,0,1,1,1,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,1,130.0,1,37,37,9,6,160.0,0,0,1,1,0,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,149.0,1,37,37,9,9,136.0,0,0,1,1,1,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,151.0,1,37,1,4,10,138.4,0,0,1,1,1,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,2 +1,39,1,9254,0,1,130.0,1,37,37,9,9,126.5,0,0,1,1,0,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,143.0,1,19,37,7,7,127.0,1,0,1,1,1,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,1 +2,57,1,9991,1,1,133.1,41,38,37,4,6,100.0,0,0,1,1,1,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,138.0,1,37,37,9,9,135.9,1,0,1,1,1,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,2 +1,43,1,8014,1,1,145.7,22,37,37,9,9,145.7,1,0,1,1,1,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,1 +4,39,1,9773,0,19,133.1,1,37,37,9,1,117.5,0,0,1,1,1,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,17,3,9238,0,1,118.0,1,1,19,4,10,112.4,1,0,1,1,1,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,8014,1,1,133.1,1,37,37,9,7,162.5,0,0,1,1,0,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,1 +1,1,3,9254,0,1,115.0,1,1,1,3,3,117.5,1,0,1,1,1,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,133.0,1,37,38,9,9,130.2,1,0,1,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,152.0,1,2,22,4,3,146.1,1,0,1,1,1,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +2,39,1,9085,0,12,133.1,1,1,39,5,3,140.0,1,0,0,0,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9003,0,1,140.0,1,38,1,9,4,138.3,0,0,1,1,0,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,130.0,1,38,37,9,6,133.9,0,0,1,1,0,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,140.0,1,37,37,9,9,142.5,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,120.0,1,38,1,9,3,118.3,1,0,1,1,1,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,117.0,1,1,19,4,7,113.5,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,141.0,1,19,1,7,3,128.8,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9147,0,1,125.0,1,3,38,2,10,118.7,1,0,1,1,1,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,116.0,1,37,1,5,3,124.8,1,0,1,1,0,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,120.0,1,36,37,0,0,126.7,1,0,1,1,0,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,1 +1,17,4,9853,0,1,140.0,1,19,38,4,1,128.5,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,1,1,3,10,130.0,0,0,1,1,0,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,136.0,1,3,37,2,8,121.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,154.0,1,37,37,9,9,149.5,1,0,1,1,1,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,138.0,1,19,38,5,8,133.5,0,0,1,1,1,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,128.0,1,1,37,4,3,117.9,1,0,1,1,1,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,1 +1,43,1,9130,0,1,150.0,1,3,3,3,4,150.0,1,0,1,1,1,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,110.0,1,19,38,3,5,117.4,1,0,1,1,1,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,135.0,1,37,38,9,6,122.1,1,0,1,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9003,0,1,140.0,1,37,37,9,6,104.8,0,0,1,1,1,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,143.0,1,37,37,9,7,131.8,1,0,1,1,1,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,142.0,1,1,1,3,3,133.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,141.0,1,1,19,5,10,127.0,0,0,1,1,1,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,1 +3,1,2,9085,0,1,135.0,1,19,1,4,4,129.4,1,0,1,1,1,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,39,1,9254,0,1,133.1,1,19,19,4,7,123.0,0,0,0,0,1,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,0 +1,17,2,9500,0,1,131.0,1,19,37,9,7,129.8,1,0,1,1,1,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,1 +1,39,1,9670,0,9,133.1,1,6,22,3,3,120.0,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,131.0,1,37,37,3,3,131.7,1,0,1,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,137.0,1,19,19,5,5,134.6,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,131.0,1,1,1,4,10,129.3,0,0,1,1,1,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,140.0,1,1,37,141,192,129.7,0,0,1,1,1,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,140.0,1,37,37,9,9,124.6,0,0,1,1,1,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,138.0,1,37,37,5,9,125.1,1,1,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,0 +1,2,1,9147,0,1,150.0,1,37,37,9,9,122.0,1,0,1,1,1,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,135.0,1,3,1,4,4,136.1,1,0,1,1,0,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,2 +1,39,1,9991,1,1,150.0,1,1,19,4,8,123.0,0,0,1,1,0,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,141.0,1,19,37,5,8,130.2,0,0,1,1,0,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,106.0,1,37,37,9,9,108.0,1,0,0,1,1,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,19,133.1,1,37,38,9,7,100.5,1,0,1,1,0,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,2 +1,43,1,9254,0,1,142.0,1,38,38,9,9,125.9,0,0,1,1,1,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,150.0,1,1,37,9,7,130.2,0,0,1,1,1,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,1 +4,39,1,9670,0,1,140.0,1,2,1,3,9,170.0,0,0,0,0,0,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9773,0,1,119.0,1,38,19,9,9,118.3,0,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,117.0,1,34,34,0,0,109.3,0,0,1,1,1,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,120.0,1,34,34,99,99,111.6,0,0,0,1,0,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,2 +1,39,1,9119,0,1,139.0,1,19,19,9,7,110.3,0,0,0,1,0,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,2 +1,43,1,9147,0,1,123.0,1,3,19,9,9,113.2,0,0,1,1,1,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,2 +1,43,1,9991,1,1,120.0,1,38,38,9,7,141.0,0,0,1,1,0,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,1 +1,1,1,9130,0,1,151.0,1,3,1,2,4,151.0,1,0,1,1,1,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,130.0,1,37,37,9,6,110.0,1,0,1,1,1,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,1 +1,43,1,9853,0,1,130.0,1,2,39,2,5,124.6,0,0,1,1,0,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,138.0,1,1,1,4,3,141.5,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,120.0,1,37,37,9,5,100.0,0,0,1,1,1,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9991,1,39,150.0,1,37,37,6,6,150.0,0,0,1,1,1,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,2 +2,39,1,9085,0,19,133.1,1,38,38,4,7,128.2,0,0,1,1,1,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.0,41,19,19,9,9,119.7,1,0,0,1,1,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,17,3,9085,0,1,128.0,1,1,19,4,90,124.2,0,0,1,0,1,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,120.0,1,1,1,9,9,129.1,1,0,1,1,0,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9773,0,1,125.0,1,19,19,9,7,129.6,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,137.0,1,40,19,2,9,130.7,1,0,1,1,1,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,0 +1,51,1,9147,0,1,116.0,1,3,3,2,2,115.2,0,0,0,1,0,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,17,5,9853,0,1,132.0,1,12,12,4,4,123.3,1,0,1,1,1,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,0 +1,7,1,9991,1,3,130.0,1,37,37,9,9,130.0,0,0,1,1,0,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,135.0,1,19,38,9,5,136.8,1,0,1,1,1,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,137.0,1,1,1,4,7,134.6,1,0,1,1,0,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,4,171,0,1,133.1,1,38,38,9,9,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,133.1,1,19,37,7,8,120.0,0,0,0,0,1,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,140.0,1,1,19,9,7,127.0,1,0,1,1,1,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,1 +1,18,1,9500,0,1,124.0,1,38,37,9,7,119.3,1,0,1,1,1,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,3,19,2,4,150.0,1,0,1,1,1,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,8014,1,19,133.1,1,3,19,90,90,123.5,0,0,1,1,1,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9853,0,1,133.1,1,37,37,5,5,116.5,0,0,1,1,1,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,0 +1,18,6,9500,0,1,144.0,1,1,1,3,6,130.8,1,0,1,1,1,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9670,0,1,151.0,1,19,19,1,1,100.0,0,0,0,1,1,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,125.0,1,1,19,4,6,115.2,0,1,1,1,1,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,37,38,4,9,110.0,0,0,0,0,1,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,133.1,1,19,19,5,5,108.5,1,0,1,1,1,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,130.0,1,37,11,90,90,122.6,0,0,1,1,1,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,113.0,1,19,37,9,9,118.6,1,0,1,1,1,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,140.0,6,2,3,5,2,124.3,1,0,1,1,1,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,2 +1,1,4,9119,0,1,111.0,1,37,37,9,5,107.5,1,0,1,1,0,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,143.0,1,19,38,9,9,133.4,1,0,1,1,1,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,1 +1,17,1,9773,0,1,141.0,1,2,3,2,2,133.7,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,151.0,41,3,3,2,5,161.9,1,0,1,1,1,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,43,1,33,0,1,143.0,1,37,1,9,10,121.2,1,0,1,1,0,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,1,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,141.0,1,1,19,8,7,128.8,1,0,1,1,1,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,2 +1,1,1,9238,0,1,115.0,1,19,38,7,7,108.7,0,0,1,1,1,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,114.0,1,1,1,4,0,108.8,1,0,1,1,1,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,2 +1,1,2,9853,0,1,112.0,1,37,37,191,182,106.1,1,0,0,1,1,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,2,9085,0,1,157.0,1,3,38,4,6,142.3,0,0,1,1,1,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,1 +2,44,1,8014,1,39,160.0,1,37,19,9,10,155.9,0,0,1,1,1,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,1 +1,1,4,171,0,1,137.0,1,1,38,4,8,141.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,144.0,1,1,37,9,9,126.5,1,0,1,1,1,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,145.0,1,1,1,4,10,131.4,0,0,1,1,1,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,115.0,1,1,1,9,4,109.1,1,0,0,0,1,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,170.0,1,37,37,0,0,150.8,1,0,1,1,1,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,0 +1,5,3,9070,0,1,157.0,1,3,1,9,6,138.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,1 +1,43,2,9238,0,1,129.0,1,34,30,0,5,118.9,1,0,1,1,0,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,5,9853,0,1,141.0,1,3,19,2,7,130.9,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,1 +4,39,1,9991,1,1,133.1,1,37,37,9,9,130.4,0,0,1,1,1,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,130.0,1,19,38,9,9,126.9,0,0,0,1,1,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,136.0,1,19,1,4,3,125.2,1,0,1,1,1,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,37,9,9,140.2,0,0,1,1,0,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,132.0,1,37,38,9,5,120.8,0,0,1,1,1,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,150.0,1,19,37,6,6,150.0,0,0,0,1,1,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,1 +2,42,1,9991,1,1,130.0,1,3,2,2,2,130.0,0,0,1,1,0,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,2 +4,39,1,8014,1,1,133.1,1,38,37,5,7,144.5,0,0,1,1,1,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,2,9773,0,1,150.0,41,1,37,9,7,130.8,0,0,1,1,1,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,1 +2,1,1,8014,1,1,151.0,1,37,37,9,9,152.4,0,0,1,1,1,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,1 +6,39,1,9500,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,0 +2,43,1,9670,0,1,100.0,1,34,34,0,0,128.2,0,0,1,1,0,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,148.0,1,1,19,3,3,131.7,1,0,1,1,1,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,142.0,1,19,19,7,7,142.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,127.0,1,1,38,4,7,125.6,0,0,0,1,1,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,146.0,1,38,38,9,7,134.1,1,0,1,1,0,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,0 +1,17,1,9670,0,1,115.0,1,1,1,4,4,109.1,1,0,1,1,1,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,2 +1,1,2,9773,0,1,148.0,1,1,19,9,9,141.7,0,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,116.0,1,37,37,0,5,114.3,1,0,1,1,1,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,139.0,1,38,19,5,7,130.6,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,1 +1,1,6,9147,0,1,128.0,1,37,37,9,9,116.5,0,0,1,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,2 +1,39,1,9130,0,3,150.0,1,3,1,90,90,150.0,1,0,1,1,1,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9670,0,1,122.0,1,1,19,4,4,116.1,0,0,1,1,0,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,2 +1,39,1,9119,0,1,100.0,1,37,37,9,8,160.0,0,0,0,0,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9254,0,1,128.0,1,19,1,7,9,121.7,1,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,143.0,1,37,38,7,7,133.8,1,0,1,1,1,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,107.0,1,38,38,7,7,103.5,1,0,1,1,1,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,1 +1,39,2,9147,0,1,143.0,1,19,5,4,1,100.0,1,0,1,1,0,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,140.0,0,0,0,0,1,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,160.0,1,1,1,5,4,160.0,1,1,1,0,0,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,0 +2,39,1,9500,0,19,133.1,1,38,38,2,10,120.0,0,0,1,1,1,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,0 +1,5,2,9853,0,1,122.0,1,19,19,4,5,112.6,1,0,1,1,1,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,3,9500,0,1,137.0,1,19,37,7,7,126.7,1,0,1,1,1,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,1 +1,7,1,9070,0,40,120.0,1,1,19,3,9,120.0,1,0,1,1,1,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,157.0,1,38,3,5,2,141.4,0,0,1,1,1,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,1 +2,1,2,8014,1,1,110.0,1,37,1,9,10,108.7,1,0,1,1,1,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,129.0,1,19,37,7,6,120.0,1,0,1,1,1,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,108.0,1,19,1,4,3,111.9,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9070,0,12,110.0,1,37,38,5,10,130.0,0,0,0,0,0,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,122.0,1,1,1,193,101,126.2,0,0,1,1,1,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,4,4,3,3,143.6,0,0,0,1,0,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,2 +1,7,1,9119,0,3,130.0,1,34,34,90,90,130.0,0,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,8014,1,39,120.0,1,19,37,7,6,121.8,1,0,1,1,1,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,142.0,1,37,38,9,9,137.5,1,0,1,1,0,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,138.0,1,3,19,2,4,131.0,1,0,1,1,0,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,0 +1,17,2,9853,0,1,125.0,1,1,19,5,5,119.4,1,0,1,1,1,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,137.0,1,1,1,5,4,131.1,1,0,1,1,1,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,133.0,1,38,38,9,9,128.1,1,0,1,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,0 +4,39,1,9991,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,1,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,17,1,9130,0,1,138.0,1,2,19,2,6,126.3,1,0,1,1,1,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,2 +1,17,4,9500,0,1,135.0,1,1,1,4,4,127.0,1,0,1,1,1,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,140.0,1,4,3,3,3,127.8,0,0,1,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,1 +1,5,1,9147,0,1,126.0,1,19,38,5,6,117.3,1,0,1,1,1,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,2 +1,39,1,9670,0,1,133.1,1,1,19,4,9,140.0,0,0,1,1,0,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,126.0,1,38,38,9,8,118.8,1,0,1,1,1,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,1 +2,42,1,9147,0,1,133.1,1,37,37,9,9,115.8,0,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,126.0,1,1,37,7,9,132.7,0,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,133.0,1,19,19,5,7,123.6,0,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +1,17,4,9556,0,1,135.0,1,38,37,3,7,129.0,1,0,1,1,1,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,110.0,1,37,37,9,9,107.6,1,0,1,1,0,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,2 +1,17,4,9147,0,1,135.0,1,19,1,0,4,128.7,1,0,1,1,0,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +2,1,1,8014,1,1,150.0,1,1,37,4,7,139.9,1,0,1,1,1,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,116.0,1,1,38,4,3,114.6,1,0,1,1,1,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,121.0,1,19,37,1,3,131.5,0,0,1,1,1,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,100.0,1,19,1,1,90,114.0,1,0,0,0,1,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,146.0,1,19,37,5,8,135.8,1,0,1,1,1,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,1 +1,44,1,9119,0,39,140.0,1,1,19,4,5,140.0,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9670,0,1,136.0,1,19,19,5,5,122.0,0,0,0,0,1,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,0 +2,39,1,9003,0,1,133.1,1,19,19,4,4,107.5,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9070,0,1,164.0,1,38,38,9,7,165.8,1,0,1,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,154.0,1,38,38,9,9,133.4,1,0,1,1,1,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,127.0,1,19,37,7,7,121.5,1,0,1,1,0,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,2 +1,43,6,9238,0,1,129.0,1,34,34,0,0,125.2,0,0,1,1,1,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,125.0,1,19,1,4,5,122.6,1,1,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,2 +1,17,1,9070,0,1,136.0,1,38,19,7,7,121.7,1,0,1,1,1,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,131.0,1,38,1,7,4,128.3,1,0,1,1,1,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,1 +1,1,4,171,0,1,132.0,1,1,19,4,5,138.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9254,0,1,115.0,1,12,1,9,3,108.7,1,0,1,1,1,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,131.0,1,1,37,3,7,120.2,0,0,1,1,1,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,134.0,1,1,1,4,9,124.2,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,142.0,1,19,1,9,1,132.6,0,0,1,1,1,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,2,1,3,6,150.0,1,0,1,1,0,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,1 +1,39,1,9254,0,1,130.0,1,19,38,9,7,113.5,0,0,1,1,1,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,135.0,1,2,1,2,8,126.6,0,0,1,1,1,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,1 +1,39,1,9254,0,12,133.1,1,37,37,5,7,119.3,1,0,1,1,0,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,2 +1,1,1,9130,0,1,110.0,1,3,19,2,9,105.5,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9130,0,1,134.0,41,1,19,5,5,125.6,1,0,1,1,1,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,151.0,2,1,1,5,9,146.5,0,0,1,1,1,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,133.0,1,1,3,3,3,135.8,1,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,7,1,9070,0,3,140.0,1,37,2,9,3,140.0,0,0,1,0,1,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,147.0,1,37,19,9,5,133.7,1,0,1,1,1,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,2 +1,51,1,9500,0,1,127.0,1,19,1,5,9,150.0,0,0,1,1,1,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,143.0,1,1,37,5,9,126.6,0,0,0,0,1,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,160.0,1,37,38,9,9,160.0,0,0,0,1,1,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,1 +4,39,1,8014,1,19,133.1,1,34,34,0,0,100.0,0,0,1,1,1,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,0 +4,43,1,9853,0,1,133.1,100,19,22,90,90,100.0,0,0,1,1,1,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,2,120.0,1,37,37,9,8,120.0,0,0,1,1,1,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,2 +1,39,1,9130,0,40,129.0,1,3,3,2,2,155.3,1,0,1,1,1,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,150.0,1,38,37,9,9,150.0,1,0,1,1,0,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +1,44,1,9130,0,39,160.0,1,1,37,3,3,160.0,1,0,0,0,1,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,0 +2,39,1,9003,0,1,133.1,1,1,19,4,4,120.0,0,0,0,0,0,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,115.0,1,19,38,9,9,108.0,0,0,1,1,1,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,134.0,1,1,19,4,5,126.0,0,0,1,1,1,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,135.0,1,38,38,5,8,133.3,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,5,1,9670,0,1,135.0,1,1,12,4,4,140.3,1,0,1,1,1,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,122.0,1,19,1,4,8,135.8,0,0,1,1,1,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,19,19,3,9,112.6,1,0,1,1,1,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,4,9773,0,1,147.0,1,1,1,4,5,139.7,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,140.0,1,19,19,4,5,140.0,1,0,1,1,1,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,130.0,1,12,12,9,9,126.1,0,0,1,1,0,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,0 +1,43,2,9147,0,1,130.0,1,34,37,9,9,118.5,1,0,1,1,0,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,1 +1,17,4,9500,0,1,138.0,1,4,1,2,1,133.0,1,0,1,1,1,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,138.0,1,37,37,194,171,131.0,1,0,1,1,1,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,19,5,8,147.3,0,0,1,1,1,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,1 +1,1,6,9500,0,1,149.0,1,1,1,4,9,133.0,1,0,1,1,1,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,1 +1,16,6,9773,0,1,136.0,1,38,14,0,0,129.7,1,0,1,1,1,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,130.0,1,1,34,9,9,124.8,1,0,1,1,1,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,111.0,1,1,1,3,3,112.4,1,0,1,1,0,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,121.0,1,1,19,4,7,135.4,1,0,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,1 +1,1,1,9556,0,1,135.0,1,37,38,7,9,125.8,0,0,1,1,1,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,136.0,1,37,19,5,8,129.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,4,9670,0,1,110.0,1,1,37,7,7,111.1,1,0,1,0,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,128.0,1,38,38,5,5,118.6,1,0,1,1,1,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,1 +2,39,1,9500,0,19,133.1,1,37,38,9,10,120.9,1,0,1,1,1,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,0 +1,5,3,9085,0,1,143.0,1,37,37,0,90,159.1,0,0,0,1,1,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,0 +4,39,1,9238,0,1,120.0,1,37,37,9,9,125.5,1,0,1,1,1,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,126.0,1,3,1,2,5,116.9,1,1,1,1,1,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,2 +1,16,1,9556,0,1,137.0,1,37,37,9,7,122.7,1,0,1,1,1,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,136.0,1,1,1,9,9,123.8,1,0,1,1,1,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +4,39,1,9130,0,1,133.1,1,3,1,5,5,110.0,1,0,1,1,1,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,0 +1,17,4,9085,0,1,138.0,1,19,36,90,7,134.9,1,0,1,1,1,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,3,9070,0,1,130.0,1,1,4,4,2,131.4,0,0,1,1,0,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,1 +2,42,1,9853,0,1,133.1,1,37,37,4,7,100.0,0,0,1,1,1,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,115.0,1,1,1,9,9,134.3,1,0,1,1,0,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,108.0,1,1,38,5,8,105.9,0,0,1,1,1,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,2 +1,39,1,9991,1,1,120.0,1,19,37,5,5,128.2,0,0,1,0,0,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +5,7,1,9130,0,3,160.0,1,19,38,9,6,160.0,0,0,1,0,1,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,0 +1,1,1,9130,0,1,121.0,1,3,19,2,9,115.4,1,0,1,1,0,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,0 +1,17,1,9254,0,1,118.0,1,11,34,5,0,122.2,1,0,1,1,1,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,0 +1,43,1,9238,0,1,120.0,1,1,38,4,3,118.3,0,0,1,1,1,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,1 +1,1,4,9147,0,1,108.0,1,3,1,3,4,109.1,1,0,1,1,0,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,7,1,9991,1,40,130.0,1,19,19,7,3,130.0,0,0,1,1,1,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,133.1,1,37,19,9,10,150.0,0,0,1,1,0,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,2 +1,7,1,9119,0,40,130.0,1,1,1,4,4,130.0,0,0,1,1,0,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,128.0,1,19,19,5,5,124.5,1,0,1,1,1,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,1 +1,43,1,9085,0,1,170.0,1,19,19,5,1,170.0,1,0,1,1,1,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,2 +1,1,3,9500,0,1,113.0,1,3,1,134,135,107.8,1,0,1,1,1,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,2 +1,1,2,9670,0,1,117.0,1,37,37,9,9,111.8,0,0,1,1,1,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,1,1,9,4,126.2,1,0,1,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,1 +1,17,2,9238,0,1,145.0,1,19,38,7,6,128.6,1,0,1,1,1,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,1 +1,7,1,9147,0,3,130.0,1,38,38,1,9,130.0,0,0,1,1,1,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,1 +1,43,1,9500,0,1,170.0,1,19,37,8,8,100.0,0,0,1,1,1,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,2 +1,17,1,9147,0,1,148.0,1,38,37,5,5,134.0,0,0,1,1,0,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,17,5,9085,0,1,118.0,1,1,38,4,7,122.2,1,0,1,1,1,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,133.1,1,38,38,191,192,118.0,0,0,0,1,1,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,1 +1,18,1,9853,0,1,132.0,1,37,37,9,5,126.1,0,0,1,1,1,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,1 +6,39,1,8014,1,1,133.1,1,37,37,9,9,119.0,0,0,1,1,1,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,133.1,1,1,37,7,7,118.0,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,123.0,1,38,38,4,7,114.3,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9991,1,1,143.0,1,19,37,5,8,135.0,0,0,1,1,1,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,128.0,1,1,1,2,10,116.5,0,0,1,1,0,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,0 +2,39,1,9085,0,1,120.0,1,19,19,1,4,130.0,0,0,1,1,1,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,0 +2,39,1,171,0,19,100.0,1,37,37,9,9,139.0,0,0,1,1,0,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,43,3,9500,0,1,139.0,1,38,37,9,8,146.5,0,0,1,1,1,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,1 +1,1,1,9085,0,1,120.0,1,37,37,9,1,123.2,0,0,1,1,1,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,1 +1,39,1,9085,0,1,140.0,1,3,3,4,2,141.7,1,0,1,1,1,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,127.0,1,2,2,3,4,115.8,1,0,1,1,0,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,117.0,1,19,19,9,9,116.3,1,0,1,1,1,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,152.0,1,19,37,3,8,156.9,0,0,1,1,1,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,140.0,1,1,19,4,4,140.7,0,0,1,1,1,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,133.0,1,3,19,2,7,120.4,1,0,1,1,1,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,1 +1,39,1,9147,0,1,160.0,1,38,38,7,9,121.4,0,1,1,1,1,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,120.0,1,1,2,9,3,130.0,1,0,1,1,1,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,1 +1,17,2,9238,0,1,139.0,1,2,3,3,3,132.7,1,0,1,1,1,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,100.0,1,37,37,6,6,108.3,0,0,1,1,0,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,2 +1,1,2,8014,1,1,107.0,1,19,11,0,0,103.5,1,0,1,1,1,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,1 +1,17,5,9773,0,1,113.0,1,38,38,191,175,110.2,1,0,0,1,1,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,39,1,9670,0,12,133.1,1,1,19,1,5,100.0,1,0,0,0,1,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,39,140.0,1,38,19,9,5,110.0,0,0,1,1,1,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,2 +1,18,2,9238,0,1,126.0,1,19,37,5,7,129.9,1,0,1,1,0,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,1 +1,18,1,9254,0,1,137.0,1,19,19,4,5,126.9,0,0,1,1,0,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,1 +1,17,1,9773,0,1,121.0,1,37,37,9,9,122.4,0,0,1,1,1,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,51,1,9070,0,1,122.0,1,38,38,9,9,128.8,1,0,1,1,0,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,141.0,1,1,1,3,10,142.8,0,0,1,1,1,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,1 +2,39,1,9670,0,1,130.0,1,19,38,9,9,162.3,0,0,1,1,0,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,0 +1,18,1,9853,0,1,133.1,1,1,19,141,182,106.0,1,0,0,1,1,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,2 +1,17,1,9147,0,1,120.0,1,19,19,3,3,113.4,0,0,1,1,1,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,147.0,1,37,19,7,7,134.4,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,44,1,9003,0,1,120.0,1,1,3,144,123,120.0,0,0,1,1,0,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,2 +1,17,4,9500,0,1,137.0,1,1,37,9,9,128.4,1,0,1,1,1,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,1 +1,39,1,9238,0,19,133.1,1,37,37,9,9,120.0,0,1,0,1,1,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,0 +4,39,1,9085,0,1,140.0,1,37,37,9,9,154.6,0,0,1,0,1,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,2 +1,39,1,9003,0,19,133.1,1,37,19,9,7,134.3,0,0,1,1,0,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,0 +1,39,1,9119,0,1,130.0,1,19,37,9,4,149.0,1,0,1,1,0,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,2 +1,17,1,9254,0,1,115.0,1,1,19,3,3,109.4,1,0,1,1,1,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,1 +1,17,1,9003,0,1,126.0,1,37,3,5,2,116.9,0,0,1,1,0,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,128.0,1,1,1,2,2,130.8,1,0,1,1,1,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,0 +1,1,1,9254,0,1,127.0,1,19,19,4,6,120.7,0,0,0,0,1,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,43,1,9238,0,1,110.0,1,14,14,90,90,112.5,1,0,1,1,1,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,142.0,1,3,19,5,5,130.8,1,0,1,1,1,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,1 +1,39,1,9130,0,1,150.0,1,1,1,4,10,110.0,0,0,0,1,0,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,0 +1,1,5,9238,0,3,135.0,1,1,38,9,3,129.4,0,0,0,1,1,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,133.0,1,19,37,1,9,128.5,1,0,1,1,1,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,1 +1,39,2,9991,1,1,133.1,1,19,38,9,9,102.5,0,0,1,0,0,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9773,0,1,136.0,1,1,38,9,8,131.5,1,0,1,1,1,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,138.0,1,37,38,9,8,134.2,1,0,1,1,1,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,7,2,9500,0,3,140.0,1,37,38,9,9,138.0,0,0,1,1,0,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,0 +1,43,1,9003,0,1,120.0,1,1,1,4,10,134.4,0,0,1,1,0,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,140.0,1,19,19,9,9,124.3,1,0,1,1,1,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,1 +1,17,3,9254,0,1,127.0,1,12,38,5,7,116.9,1,0,0,1,1,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,0 +1,17,1,9238,0,1,145.0,1,38,38,9,7,145.0,0,0,1,1,1,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +2,39,1,8014,1,1,140.0,1,19,19,9,7,102.5,0,0,1,1,1,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,1 +1,17,6,9500,0,1,131.0,1,1,19,7,7,126.5,1,0,1,1,1,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,1 +1,1,2,9500,0,1,124.0,1,34,34,0,0,123.3,1,0,1,1,1,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,0 +2,39,1,9991,1,1,120.0,1,37,3,9,3,168.2,0,0,1,1,0,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,5,9773,0,1,118.0,1,38,19,9,9,113.8,1,0,1,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,122.0,1,19,38,7,7,117.1,1,0,1,1,1,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,115.0,1,19,1,3,7,113.6,0,0,1,1,0,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,2 +1,17,2,9254,0,1,141.0,1,1,4,4,4,127.7,0,0,1,1,1,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,1 +1,44,1,8014,1,39,130.0,1,37,38,6,6,130.0,1,0,1,1,1,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,1 +1,17,2,9556,0,1,120.0,1,37,37,5,5,111.3,1,0,1,1,1,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,145.0,1,1,19,10,5,150.6,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,129.0,1,38,19,3,7,118.9,1,0,1,1,1,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,2 +1,1,5,9085,0,1,121.0,1,38,37,9,8,114.0,1,0,1,0,1,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,0 +1,17,1,9254,0,1,126.0,1,1,1,9,9,124.3,0,0,1,1,1,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,149.0,1,1,3,0,0,148.7,0,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9147,0,1,125.0,1,38,38,6,8,114.5,1,0,1,1,1,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,1 +1,16,3,9085,0,1,130.0,1,37,37,9,2,119.5,1,0,1,1,1,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,145.0,1,19,37,9,9,132.3,1,0,1,1,1,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,2 +1,17,1,9773,0,1,128.0,1,19,38,5,7,125.6,1,0,1,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9254,0,1,135.0,1,38,37,9,7,139.2,0,0,1,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,139.0,1,37,38,6,6,121.3,1,0,1,1,1,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,2 +1,44,1,9070,0,39,150.0,1,12,37,3,9,147.7,0,0,0,1,1,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,110.0,1,3,19,4,5,109.0,0,0,1,1,0,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,133.1,1,38,38,5,9,105.0,1,0,1,1,1,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,1 +2,51,1,9991,1,1,127.0,1,37,37,8,4,100.1,0,0,1,1,1,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,1 +1,17,1,171,0,1,135.0,1,19,1,4,1,131.9,1,0,1,1,0,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,1 +4,39,1,9556,0,1,160.0,1,19,3,9,2,130.0,0,0,1,1,1,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,2 +1,17,5,9119,0,1,123.0,1,3,1,2,9,116.0,1,0,0,0,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,43,1,9500,0,1,140.0,1,19,19,7,7,138.6,0,0,1,1,1,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,1 +1,17,3,9238,0,1,141.0,1,19,38,9,7,125.6,1,0,1,1,1,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,39,1,9500,0,3,130.0,1,2,2,1,1,130.0,0,0,1,1,1,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,37,37,7,9,111.0,0,0,1,0,0,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9070,0,1,148.0,1,1,1,4,8,141.4,0,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9147,0,1,115.0,1,1,38,3,8,109.8,1,0,1,1,1,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,1 +1,7,3,9130,0,3,130.0,1,19,37,90,5,130.0,0,0,0,0,1,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,0 +1,1,5,9500,0,1,141.0,1,38,19,7,7,132.5,1,0,1,0,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,133.0,1,19,37,9,9,129.9,0,0,1,1,0,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,142.0,1,19,37,4,7,141.3,0,0,1,1,1,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,130.0,1,37,37,9,10,130.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,133.1,1,19,38,7,4,125.7,0,0,1,1,1,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,129.0,1,19,37,9,9,117.5,1,0,1,1,1,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,103.0,1,1,19,9,9,108.3,0,0,1,1,1,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,2 +1,1,1,9853,0,1,133.1,1,19,19,9,9,97.0,1,0,1,1,1,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,0 +2,7,1,9238,0,3,150.0,1,37,37,191,192,150.0,0,0,1,1,1,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,0 +1,39,1,9085,0,12,133.1,1,34,34,99,99,128.2,0,0,0,0,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9070,0,1,129.0,1,3,4,2,2,136.4,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,2 +1,39,2,9147,0,38,133.1,1,19,38,9,9,102.5,0,0,1,0,0,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9853,0,1,133.1,1,34,34,0,0,118.9,1,0,1,1,1,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,135.0,1,19,38,9,9,129.2,0,0,1,1,1,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,122.0,1,37,37,9,3,115.7,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,42,1,9853,0,1,120.0,1,1,19,4,7,111.3,0,0,1,1,1,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,141.0,1,38,19,9,10,125.6,1,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,1 +1,17,4,9500,0,1,133.0,1,19,19,3,10,131.1,1,0,1,1,1,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,106.0,1,1,19,4,4,106.4,1,0,1,1,1,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,2 +2,39,1,9147,0,1,133.1,1,37,37,9,9,140.0,0,0,1,0,1,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,0 +1,51,1,9070,0,1,130.0,1,3,1,2,8,122.2,0,0,0,1,1,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,1 +1,17,6,9500,0,1,143.0,1,38,1,9,10,127.3,1,0,1,1,1,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,154.0,1,1,1,5,7,154.7,0,0,1,1,1,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,1 +1,7,1,9991,1,40,120.0,1,37,37,9,7,120.0,0,0,1,1,1,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,151.0,1,37,1,9,9,138.4,1,0,1,1,1,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,1 +2,39,2,9003,0,19,133.1,1,38,19,4,1,110.0,0,0,1,0,0,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9119,0,1,129.0,1,12,1,4,10,124.1,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,0 +1,17,1,9238,0,1,120.0,1,37,37,4,9,117.1,1,0,1,1,1,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,133.1,1,3,1,4,9,105.0,1,0,1,1,0,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,2 +1,17,1,9147,0,1,120.0,1,38,38,9,8,118.3,0,0,1,1,0,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,0 +1,18,1,9147,0,1,147.0,1,19,1,9,7,139.3,1,0,1,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,140.0,1,19,19,5,5,131.3,0,0,1,1,0,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,133.0,1,38,19,9,8,128.8,1,0,1,1,0,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,1 +1,17,1,9254,0,1,127.0,1,1,1,4,8,126.7,1,0,1,0,0,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9147,0,1,131.0,1,1,19,4,5,120.2,1,0,1,1,1,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,143.0,1,38,38,5,5,133.9,0,0,1,1,1,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,1 +4,39,1,9147,0,1,140.0,1,37,37,9,9,142.8,0,0,1,1,1,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,138.0,1,19,1,5,5,128.0,1,0,1,1,1,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,1 +1,43,1,9500,0,1,150.0,1,37,37,9,9,130.8,1,0,1,1,1,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,160.0,1,19,38,9,9,152.0,0,0,1,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,42,1,9254,0,1,154.0,1,38,37,1,1,154.0,1,0,1,1,1,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,141.0,1,37,37,4,4,138.9,0,0,1,1,1,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,135.0,1,38,37,9,8,126.3,1,0,1,1,1,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,1 +1,17,2,9853,0,1,138.0,1,1,1,9,4,123.0,1,0,1,1,1,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,0 +2,1,1,9085,0,1,139.0,1,19,19,192,144,127.1,0,0,1,1,0,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,1 +1,17,4,9070,0,1,116.0,1,38,37,9,9,109.0,0,0,1,1,1,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,0 +1,44,1,9003,0,39,140.0,1,38,38,6,3,140.0,0,0,1,1,1,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9254,0,1,120.0,1,19,19,4,4,125.5,0,0,1,1,0,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,43,1,9991,1,1,120.0,1,37,37,9,8,122.5,1,0,1,1,1,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,2 +1,17,1,9070,0,1,136.0,1,1,37,4,5,130.8,0,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,116.0,1,38,19,8,10,110.8,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9853,0,1,146.0,1,19,38,9,3,145.3,1,0,1,1,1,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,150.0,1,37,37,9,7,150.0,0,0,1,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9670,0,1,124.0,1,1,19,5,4,124.4,0,0,1,1,1,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,39,1,8014,1,1,133.1,1,37,38,9,9,148.5,0,0,1,1,0,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,148.0,1,1,1,9,9,127.0,1,0,1,1,0,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,1 +4,1,1,8014,1,1,133.1,1,39,19,4,10,143.0,1,0,1,1,1,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,133.1,1,1,19,3,5,115.0,0,0,1,0,0,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,0 +2,44,1,9003,0,39,160.0,1,37,38,9,4,160.0,0,0,1,1,1,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,1 +1,16,3,9070,0,1,152.0,1,1,38,4,8,156.9,1,0,1,1,1,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,37,37,9,9,126.3,0,0,1,1,1,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,1,5,9773,0,1,131.0,1,1,38,9,5,132.4,1,0,0,0,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,9556,0,1,140.0,1,37,37,9,8,105.0,1,0,1,1,1,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,1 +1,1,3,9070,0,1,128.0,1,19,19,3,3,129.8,1,0,1,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,2 +1,1,2,9500,0,1,133.1,1,19,38,7,9,125.5,1,0,1,1,1,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,1 +1,44,1,9238,0,39,140.0,1,38,37,7,7,143.0,0,0,1,1,1,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,139.0,1,19,38,4,9,146.7,1,0,1,1,1,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,1 +1,17,1,9085,0,1,129.0,1,1,37,9,9,118.2,1,0,1,1,1,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,1 +1,43,1,9238,0,1,142.0,1,34,34,99,99,131.9,0,0,1,1,1,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,1 +1,1,3,9500,0,1,139.0,1,1,19,9,3,130.3,1,0,1,1,1,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,120.0,1,19,38,5,5,152.4,0,0,1,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,149.0,1,19,19,4,6,147.6,1,0,1,1,1,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,1 +1,51,1,8014,1,2,110.0,1,19,38,9,10,110.0,0,0,1,1,0,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,1 +1,17,3,9119,0,1,135.0,1,1,19,141,193,121.7,1,0,1,1,0,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,2 +1,1,4,9773,0,1,122.0,1,19,19,9,7,121.0,1,0,1,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,7,1,9003,0,3,120.0,1,1,19,4,1,120.0,1,0,1,1,0,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,1 +1,17,4,9500,0,1,140.0,1,19,37,4,8,133.3,1,0,1,1,1,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,121.0,1,1,1,5,4,111.9,1,0,1,0,0,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9119,0,3,130.0,1,1,38,90,90,143.4,0,0,1,1,0,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,9238,0,1,120.0,1,37,37,6,9,121.0,0,0,1,1,1,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,154.0,1,38,37,4,4,141.4,0,0,1,1,1,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,1 +1,7,1,8014,1,40,130.0,1,19,1,5,10,130.0,1,0,0,0,1,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,1,133.1,1,1,1,4,4,120.0,0,0,0,0,0,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,120.0,1,37,1,9,5,113.4,1,0,1,1,1,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,1 +1,1,5,9500,0,1,139.0,1,38,37,7,7,126.3,1,0,1,1,1,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,135.0,1,38,19,194,193,135.4,1,0,1,1,0,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,150.0,1,3,2,2,2,150.0,0,0,1,1,0,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,0 +2,43,1,9991,1,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,1 +1,43,1,9500,0,1,130.0,1,1,1,7,4,136.0,1,0,1,1,0,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,1 +1,39,1,9003,0,3,130.0,1,3,3,1,2,150.0,0,0,1,1,1,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,1 +1,17,2,9147,0,1,123.0,1,1,38,4,7,115.3,1,0,1,1,1,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,2 +1,1,5,9500,0,1,101.0,1,38,38,9,9,104.5,1,0,1,1,1,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,140.0,1,1,19,9,9,128.8,0,0,1,1,0,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,1 +1,39,2,9119,0,1,120.0,1,37,37,5,5,128.0,0,0,1,1,0,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,8014,1,15,133.1,1,34,34,0,0,100.0,1,0,1,0,1,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9130,0,1,133.1,1,6,11,4,5,138.4,0,0,1,1,0,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,142.0,1,37,37,6,7,136.1,1,0,1,1,1,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,132.0,1,37,37,9,9,123.6,1,0,1,1,1,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,19,19,9,9,126.9,1,0,1,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,15,1,9238,0,1,150.0,26,3,37,2,8,132.5,1,0,1,0,1,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,1,1,9853,0,1,142.0,1,12,12,9,4,132.6,1,0,1,1,1,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,1 +1,17,4,9254,0,1,106.0,1,37,19,9,7,116.9,1,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,1 +1,17,4,9070,0,1,160.0,1,1,19,5,7,155.5,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,1 +1,42,1,9500,0,1,157.0,1,3,3,3,3,100.0,0,0,1,1,1,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,131.0,1,3,19,1,4,118.8,0,0,1,1,1,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,1 +1,43,2,9773,0,1,120.0,1,34,34,0,0,103.6,1,0,1,1,1,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,125.0,1,34,37,9,9,129.2,1,0,0,0,1,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,0 +1,1,4,9085,0,1,145.0,1,37,1,9,9,145.0,1,0,1,1,1,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,136.0,1,1,1,9,3,122.7,1,0,1,1,0,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,2 +1,1,4,9147,0,1,120.0,1,19,38,5,5,122.8,1,0,1,1,0,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,2 +1,1,2,9085,0,1,140.0,1,37,38,9,7,137.0,0,0,1,1,1,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,120.0,1,4,1,4,10,112.0,1,0,1,1,1,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,2 +1,43,1,9147,0,1,123.0,1,37,38,7,7,110.0,0,0,1,1,0,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,138.0,1,38,19,9,5,144.3,0,0,1,1,1,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,12,133.1,1,37,37,9,9,120.0,0,0,1,1,1,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,51,1,9147,0,1,140.0,1,19,19,9,7,120.4,0,0,0,0,1,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,145.0,1,37,1,9,4,138.8,1,0,1,1,1,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,133.0,1,19,38,5,0,133.7,1,0,1,1,1,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9130,0,39,150.0,1,5,1,2,5,150.0,1,0,1,1,0,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,2 +1,43,1,9991,1,1,140.0,1,37,38,9,8,135.5,0,0,0,0,1,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,0 +1,1,1,9254,0,1,123.0,1,38,19,9,4,117.8,0,0,1,1,0,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,2 +1,1,4,9500,0,1,125.0,1,1,12,3,6,115.2,1,0,1,1,1,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,1 +1,17,2,9254,0,1,129.0,1,12,37,9,9,122.0,1,0,1,1,1,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,5,2,9070,0,1,143.0,1,1,1,4,10,146.2,1,0,1,1,0,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,117.0,1,38,38,4,9,120.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +2,39,1,9991,1,3,130.0,1,3,1,1,10,160.0,0,0,1,1,1,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,0 +1,17,1,9556,0,1,133.0,1,38,37,9,9,124.4,1,0,1,1,1,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,1 +1,1,1,9003,0,1,124.0,1,38,19,9,7,116.0,0,0,1,1,0,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,164.0,1,19,1,9,9,161.2,0,0,1,1,0,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,1 +1,43,1,9991,1,1,130.0,1,37,37,9,9,119.5,1,0,1,1,1,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,100.0,1,1,19,1,5,130.0,0,0,0,1,1,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,142.0,1,19,19,7,3,132.9,0,0,1,1,0,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,126.0,1,19,19,3,7,123.9,0,0,1,1,1,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,1 +1,1,4,9254,0,1,132.0,1,1,38,5,6,122.6,1,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,1 +1,1,6,9238,0,1,125.0,1,38,1,7,4,118.4,1,0,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,9003,0,1,140.0,1,3,3,2,2,110.0,0,0,1,1,0,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,1 +1,1,1,171,0,1,138.0,1,1,40,4,3,149.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,43,1,171,0,1,144.0,1,19,19,9,4,121.6,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,2,9773,0,1,129.0,1,37,37,9,7,117.1,1,0,1,1,1,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,2 +1,1,6,9853,0,1,114.0,1,19,19,9,9,110.2,1,0,1,1,0,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,0 +2,42,1,9147,0,1,100.0,1,37,37,9,9,100.0,1,0,1,1,1,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,135.0,1,38,19,9,5,126.3,0,0,1,1,0,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,171,0,1,156.0,1,3,3,2,2,147.7,1,0,1,1,1,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,1 +1,1,1,9147,0,1,139.0,1,38,1,5,5,127.1,1,0,1,1,0,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,127.0,1,1,37,4,9,128.1,0,0,1,1,0,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,2 +1,1,5,9070,0,1,124.0,1,37,37,9,9,113.9,1,0,1,1,1,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,17,4,9500,0,1,129.0,1,38,37,9,5,120.0,1,0,1,1,1,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,118.0,1,19,19,9,9,122.2,0,0,1,1,1,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,1 +2,39,1,9556,0,19,133.1,1,38,37,7,7,99.5,1,0,0,0,1,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,130.0,1,38,38,7,7,136.3,1,0,1,1,0,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,1 +1,17,1,9853,0,1,112.0,1,2,19,3,9,106.1,1,0,1,1,1,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,2 +1,43,1,9119,0,1,146.0,1,3,1,2,3,100.0,0,0,1,1,0,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9085,0,1,132.0,1,1,12,4,5,124.3,0,0,1,1,1,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,2 +1,17,1,8014,1,1,136.0,1,37,37,5,8,132.5,0,0,0,1,1,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,1 +1,7,1,9500,0,3,130.0,1,37,37,90,90,130.0,1,0,1,1,0,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,135.0,1,1,1,4,4,122.8,0,0,1,1,1,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,1 +2,39,1,9254,0,1,130.0,1,37,37,9,9,125.0,0,0,1,1,1,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,1 +2,43,1,8014,1,1,130.0,1,34,34,0,0,130.0,0,0,1,1,1,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,133.1,1,19,19,9,8,132.0,1,0,1,1,1,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,0 +2,39,1,9070,0,1,160.0,1,3,1,2,5,126.5,0,0,1,1,1,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,1 +1,15,1,9556,0,1,137.0,26,19,1,9,4,137.0,0,0,0,1,1,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,2 +1,17,2,9773,0,1,133.1,1,3,5,0,2,125.8,1,0,1,0,0,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,0 +1,16,4,9238,0,1,135.0,1,37,37,9,9,121.0,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,39,2,9556,0,1,130.0,1,37,19,9,8,110.0,0,0,1,1,0,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,2 +1,1,1,9853,0,1,123.0,1,1,38,9,6,121.6,1,0,1,1,1,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,2 +1,1,1,9119,0,1,126.0,1,38,19,5,5,130.2,0,0,1,1,0,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,2 +1,1,5,9500,0,1,122.0,1,37,3,9,2,116.8,1,0,1,1,1,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,132.0,1,38,38,9,9,119.3,1,0,1,1,1,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,116.0,1,38,1,5,1,111.1,0,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9500,0,1,113.0,1,38,19,9,7,106.7,1,0,1,1,1,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,2 +1,39,1,9670,0,1,120.0,1,34,34,0,0,106.0,1,0,1,0,0,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,0 +1,17,2,9500,0,1,145.0,1,19,37,5,9,130.5,1,0,1,1,1,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,1 +2,39,1,9238,0,19,133.1,1,37,37,4,4,98.5,0,0,1,1,1,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,0 +1,1,1,9500,0,1,152.0,1,41,19,3,5,137.8,0,0,1,1,1,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,1 +1,43,2,8014,1,3,130.0,1,34,34,0,0,130.0,0,0,1,1,0,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,1 +1,1,1,9773,0,1,152.0,1,38,37,9,9,139.1,0,0,1,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,18,1,9003,0,1,133.1,1,1,38,9,6,101.0,0,0,1,1,0,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,140.0,1,19,1,9,8,105.0,0,0,1,1,1,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,2 +1,1,1,9500,0,1,162.0,1,19,1,5,5,147.5,1,0,1,1,1,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,1,133.1,1,19,1,4,1,101.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9119,0,1,116.0,1,19,1,9,7,112.2,0,0,1,1,0,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9085,0,1,133.0,1,38,37,9,7,120.1,1,0,1,1,1,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,1 +1,44,1,171,0,39,110.0,1,37,37,5,6,108.3,0,0,1,0,1,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,0 +1,17,2,9773,0,1,121.0,1,1,1,5,5,123.1,1,0,1,1,0,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,1 +1,17,1,9556,0,1,133.0,1,1,38,4,9,119.0,0,0,1,1,1,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,2 +1,17,1,9147,0,1,139.0,1,1,38,4,5,152.0,0,0,1,1,1,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,160.0,1,12,38,4,8,160.0,1,0,1,1,0,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,133.1,1,19,19,7,7,117.0,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9147,0,1,128.0,1,3,1,3,3,121.0,1,1,0,1,0,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,2 +1,1,2,9773,0,1,116.0,1,1,19,4,7,127.6,1,0,1,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,0 +1,18,3,9119,0,1,111.0,1,1,19,9,8,111.0,1,0,1,1,0,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,146.0,1,1,1,9,7,126.0,0,0,1,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,2 +1,53,1,9085,0,42,140.0,1,1,1,5,5,143.3,1,0,1,0,1,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,2 +1,1,1,9070,0,1,144.0,1,1,1,3,5,127.2,1,0,1,1,1,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,141.0,1,38,1,5,7,132.6,0,0,1,1,1,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,18,1,9085,0,1,153.0,1,37,37,9,9,138.0,1,0,1,1,1,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,0 +1,1,3,171,0,1,137.0,1,1,3,5,2,133.9,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,150.0,1,19,38,9,5,143.0,0,0,1,1,1,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,1,9,6,126.1,1,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,5,9070,0,1,133.0,1,4,1,4,4,132.0,1,1,1,1,1,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,140.0,1,1,19,9,9,140.0,1,0,1,1,1,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,2 +1,1,1,171,0,1,133.1,1,3,1,2,4,128.2,1,0,1,1,1,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,1 +1,39,1,9085,0,1,133.1,1,37,36,90,7,128.2,0,0,1,1,0,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,43,1,9070,0,1,114.0,1,19,38,9,7,135.9,0,0,1,1,0,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,1 +2,51,1,9500,0,1,130.0,1,37,37,5,5,120.0,0,0,1,1,0,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,0 +1,43,1,9670,0,39,110.0,1,19,3,7,10,110.0,0,0,1,1,1,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,2 +1,43,1,9500,0,1,148.0,1,29,38,90,3,131.0,1,0,1,1,1,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,1 +1,18,1,9254,0,1,118.0,1,38,38,5,5,123.3,1,0,1,1,0,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,2 +1,7,1,9003,0,3,130.0,1,1,38,9,7,130.0,1,0,1,0,0,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,133.1,1,3,38,2,7,121.7,0,0,1,1,0,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +1,18,1,9991,1,1,133.1,1,38,38,5,5,145.0,0,0,1,1,1,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,2 +1,1,4,9773,0,1,136.0,1,1,12,9,10,121.7,1,0,1,1,1,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,1 +1,17,1,9500,0,1,160.0,1,19,1,4,10,153.0,1,0,1,1,1,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,1 +2,53,1,9147,0,42,130.0,1,19,19,175,152,132.4,0,0,1,1,1,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,2 +1,39,1,9119,0,40,120.0,1,1,1,5,10,146.8,0,0,1,1,0,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,150.0,1,19,11,0,0,131.1,1,0,1,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,122.0,1,1,19,4,3,130.4,1,0,1,1,1,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,1 +1,1,5,9119,0,1,132.0,1,38,19,5,3,119.1,0,0,1,1,1,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,137.0,1,1,3,4,3,124.6,0,0,1,1,1,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,1 +1,1,2,9500,0,1,126.0,1,1,38,4,7,124.3,1,0,1,1,1,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,1 +1,43,1,9238,0,39,120.0,1,2,1,1,2,118.6,0,0,1,1,0,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,132.0,1,34,34,0,0,119.1,1,0,1,1,1,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,1 +1,1,1,9130,0,1,127.0,1,1,1,4,4,120.4,1,0,1,1,1,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,135.0,1,1,38,5,5,122.4,0,0,0,1,1,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,1 +1,18,2,9773,0,1,109.0,1,1,1,4,4,109.0,1,0,1,0,1,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,3,9500,0,1,132.0,1,19,3,9,5,130.8,1,0,1,1,1,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,2 +1,43,1,33,0,19,133.1,1,38,38,4,4,140.0,0,0,0,1,0,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,0 +1,17,1,9773,0,1,120.0,1,37,37,5,5,125.3,0,0,1,1,1,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,1 +1,1,1,9773,0,1,140.0,1,1,19,5,10,141.1,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,145.0,1,19,38,4,4,132.1,1,0,1,1,0,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9254,0,1,122.0,1,19,19,5,5,118.2,0,0,1,1,1,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,2 +1,17,1,8014,1,1,119.0,1,34,34,0,0,112.4,1,0,1,1,1,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,0 +1,1,5,9500,0,1,125.0,1,1,1,3,8,115.6,1,0,1,1,1,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,2 +2,39,1,9991,1,1,150.0,1,1,4,4,2,146.0,0,0,1,1,0,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,2 +1,1,1,9670,0,1,132.0,1,4,2,123,112,143.6,1,0,1,1,0,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,2 +1,1,2,9085,0,1,144.0,1,1,19,4,10,132.1,1,0,1,1,1,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,142.0,1,19,19,1,1,125.5,1,0,1,1,1,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,130.0,1,19,19,9,6,135.0,0,0,1,1,1,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,1 +1,42,1,9119,0,1,140.0,1,19,19,90,90,120.0,0,0,0,0,0,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,143.0,1,1,37,3,8,128.0,0,0,1,1,1,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,1 +1,1,3,9070,0,1,146.0,1,34,34,0,0,143.6,1,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,0 +2,39,1,9130,0,1,130.0,1,1,19,6,6,154.0,1,0,1,1,0,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,1 +2,39,1,9991,1,1,120.0,1,37,37,9,10,170.0,0,0,1,1,1,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,2 +6,39,1,9991,1,12,130.0,1,37,37,90,90,119.0,1,0,1,0,0,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,53,1,9003,0,42,130.0,1,1,1,144,144,125.8,0,0,0,1,1,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,145.0,1,40,1,2,4,160.1,0,0,1,1,1,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,1 +1,44,1,9070,0,1,140.0,1,1,1,9,8,144.3,1,0,1,1,1,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,150.0,1,1,38,6,6,150.0,1,0,1,1,0,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,148.0,1,37,37,9,9,143.5,0,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,123.0,1,19,19,9,8,125.5,0,0,1,0,1,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,1 +1,39,1,9085,0,1,130.0,1,34,1,0,2,128.2,0,0,1,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9991,1,1,130.0,1,1,1,3,7,140.0,0,0,1,1,0,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,1 +1,17,4,9556,0,1,112.0,1,1,1,4,10,107.1,1,0,1,1,1,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,101.0,1,1,1,3,4,102.4,0,0,1,1,1,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,133.0,1,37,37,9,7,121.8,0,0,1,1,0,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,1 +2,39,1,9500,0,1,133.1,1,3,1,5,5,148.8,0,0,1,1,1,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,157.0,1,19,38,5,3,149.3,0,0,1,1,1,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,163.0,1,3,4,2,5,175.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,4,9070,0,1,148.0,1,1,3,4,1,163.4,1,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,1 +1,53,1,9085,0,42,130.0,1,38,38,9,9,128.8,0,0,1,1,1,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,0 +1,39,1,8014,1,1,120.0,1,1,1,4,4,150.5,0,0,1,1,1,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,1 +1,51,1,9147,0,1,130.0,1,1,1,4,4,120.0,0,0,1,1,1,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,2 +4,39,2,9556,0,19,133.1,1,19,19,4,6,123.0,0,0,1,1,1,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,1 +4,39,1,8014,1,19,140.0,1,37,37,9,3,131.0,0,0,1,1,1,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,1 +1,43,1,9147,0,1,131.0,1,19,38,9,9,129.7,1,0,1,1,1,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,1 +1,7,1,9238,0,40,130.0,1,37,37,5,5,130.0,0,0,1,1,0,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,1 +1,1,1,9130,0,1,133.0,1,3,1,2,4,126.0,0,0,1,1,0,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,100.0,1,1,1,4,4,120.0,0,0,1,1,0,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,0 +2,7,1,9147,0,3,120.0,1,37,37,9,9,120.0,0,0,1,1,1,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,2 +1,39,1,9119,0,1,138.7,1,1,12,4,3,111.3,0,0,1,1,0,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,135.0,1,38,38,5,7,121.0,0,0,1,1,1,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,116.0,1,1,19,5,9,111.1,0,0,1,1,0,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,1 +1,43,1,9130,0,1,100.0,41,3,4,3,2,100.0,0,0,1,1,1,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,2 +1,7,1,9147,0,3,130.0,1,37,19,9,8,130.0,0,0,1,1,1,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,1 +1,1,4,9085,0,1,138.0,1,3,1,1,4,123.3,1,0,1,1,1,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,1 +1,17,1,9003,0,1,131.0,1,19,1,9,2,134.5,1,0,1,1,1,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,139.0,1,38,1,9,5,131.8,1,0,1,1,1,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,1 +4,39,1,9991,1,1,133.1,1,37,37,6,6,136.2,0,0,1,1,1,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,1 +1,44,1,9070,0,39,123.9,1,37,1,9,7,123.9,0,0,1,1,0,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,0 +1,1,1,9147,0,1,143.0,1,3,1,5,5,152.1,1,0,0,1,0,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,0 +1,1,6,9500,0,1,142.0,1,1,37,7,7,123.5,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,124.0,1,2,1,4,10,117.4,1,0,1,1,1,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,1 +1,17,5,9119,0,1,130.0,1,19,1,4,5,118.1,1,0,0,0,0,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,0 +1,17,4,9147,0,1,121.0,1,38,37,6,7,113.0,1,0,1,1,1,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,150.0,1,19,19,4,10,100.0,0,0,1,1,1,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,151.0,1,37,37,9,9,138.0,1,0,1,1,1,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,138.0,1,38,38,9,9,126.8,0,0,1,1,0,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,1 +6,17,3,8014,1,1,115.0,1,19,1,5,90,115.0,0,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,127.0,1,1,19,3,3,120.2,1,0,1,1,1,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,1 +1,51,1,9991,1,1,134.0,1,1,1,5,3,120.6,1,0,1,1,0,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,121.0,1,19,1,7,9,117.9,1,0,1,1,1,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,131.0,1,1,38,4,8,121.9,1,0,1,1,1,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,1 +2,39,1,9500,0,19,133.1,1,38,38,7,8,170.0,0,0,1,1,0,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9147,0,1,100.0,1,37,37,9,5,170.0,0,0,1,1,0,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,95.0,1,37,37,5,8,95.0,0,0,1,0,0,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,0 +1,43,1,8014,1,1,148.0,1,37,37,9,9,134.7,0,0,1,1,1,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,2 +1,1,2,9238,0,1,121.0,1,19,19,191,171,119.3,1,0,0,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,18,2,9119,0,1,136.0,1,1,2,5,4,122.7,1,0,1,1,0,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,0 +1,17,4,9254,0,1,130.0,1,19,1,5,5,130.0,1,0,1,1,0,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,0 +2,43,1,9991,1,1,140.0,1,37,37,4,9,100.0,0,0,1,0,1,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,0 +1,15,1,9254,0,1,160.0,1,1,3,3,3,142.5,1,0,1,0,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,17,3,9500,0,1,138.0,1,1,19,7,8,129.3,1,0,1,1,1,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,1 +1,39,1,9254,0,19,133.1,1,37,37,90,90,100.0,0,0,1,1,0,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,148.0,1,1,37,9,7,143.3,0,0,1,1,1,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,1 +1,7,1,9500,0,3,130.0,1,19,38,4,10,130.0,1,0,1,1,1,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,133.1,1,19,37,9,7,110.0,1,0,1,1,0,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9254,0,1,131.0,1,4,3,7,4,126.1,1,0,1,1,1,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,1 +1,43,2,9500,0,1,136.0,1,38,38,9,5,131.3,0,0,1,1,1,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,1 +1,17,1,9254,0,1,119.0,1,1,1,4,10,125.0,0,0,1,1,0,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,2 +1,17,2,9238,0,1,132.0,1,38,1,7,7,133.1,1,0,1,1,1,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,1 +1,1,4,9500,0,1,126.0,1,12,1,5,10,120.2,0,0,1,1,1,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,2 +1,7,1,9147,0,40,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,161.0,22,37,37,9,9,137.9,0,0,0,0,1,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,1 +1,17,2,9147,0,1,133.0,1,19,1,9,3,120.1,1,0,1,1,1,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,0 +1,51,1,9085,0,1,127.0,1,3,3,2,8,138.8,1,0,1,1,1,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,121.0,1,1,1,1,1,115.1,1,0,1,1,1,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,1 +1,17,1,9130,0,1,130.0,1,3,19,2,9,115.9,0,0,1,1,1,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +2,7,1,9991,1,3,140.0,1,34,34,99,99,140.0,1,0,1,0,0,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,123.0,1,1,1,9,9,113.2,0,0,1,1,1,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9500,0,1,137.0,1,1,1,9,9,127.9,1,0,1,1,1,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,0 +1,1,5,9500,0,1,130.0,1,19,37,9,7,127.6,1,0,1,1,1,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,133.1,1,1,38,3,7,121.7,0,0,1,1,1,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,2 +1,44,1,9130,0,39,130.0,1,3,1,4,1,130.0,1,0,1,0,1,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,107.0,1,2,12,3,10,104.2,1,0,1,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,1 +4,39,1,8014,1,19,133.1,1,37,37,9,9,113.5,0,0,1,1,1,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,1 +1,17,1,9500,0,1,145.0,1,19,37,4,8,136.8,1,0,1,1,1,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,120.0,1,19,38,5,6,112.3,0,0,1,1,1,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,133.1,1,34,34,0,0,125.3,0,0,1,1,0,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,0 +1,1,6,9853,0,1,136.0,1,1,19,5,5,122.0,0,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,1 +1,1,2,9070,0,1,121.0,1,4,1,2,3,120.7,1,0,1,1,1,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,2 +2,1,1,9147,0,1,133.1,1,34,34,0,0,131.8,0,0,1,1,1,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,0 +1,15,1,9670,0,1,133.1,41,1,1,9,4,100.0,0,0,1,1,1,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,127.0,1,19,38,3,3,121.1,1,0,1,1,0,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/synthetic/tabsyn_m5/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/synthetic/tabsyn_m5/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f25e40d604bfed0e9d1581444dcbf633dcdd0869 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/synthetic/tabsyn_m5/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,1,1,126.0,1,38,37,5,5,118.7,0,0,1,1,1,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,19,37,9,7,111.4,0,0,1,1,0,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9003,0,39,140.0,1,1,1,4,3,140.0,1,0,1,1,1,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,1 +1,1,2,9085,0,1,141.0,1,1,38,9,8,128.9,1,0,1,1,1,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,128.0,1,19,19,7,8,120.0,1,0,1,1,1,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,2 +1,17,1,9070,0,1,123.0,1,4,37,2,9,113.9,0,0,1,1,1,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,1,140.0,41,1,1,9,9,100.0,0,0,0,0,1,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,133.1,1,1,3,9,9,116.0,0,0,1,1,0,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,143.0,1,3,3,2,10,141.3,0,0,0,0,1,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,2 +1,1,1,9500,0,1,106.0,1,37,38,191,163,102.2,1,0,0,1,0,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,2 +1,16,2,9085,0,1,136.0,1,37,37,9,9,123.4,1,0,1,1,1,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,125.0,1,38,38,9,9,125.4,0,0,0,0,1,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,0 +4,39,1,9773,0,12,120.0,1,37,37,4,9,130.0,0,0,1,0,0,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,0 +1,44,1,9853,0,39,150.0,1,3,37,2,7,150.0,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,145.0,1,1,19,9,9,129.3,0,0,0,1,1,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,1 +1,44,1,9119,0,39,180.0,1,1,1,9,8,180.0,0,0,1,1,0,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,2 +1,1,4,9085,0,1,135.0,1,38,37,9,9,132.6,1,0,1,1,1,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,1 +1,44,1,9130,0,39,130.0,1,3,1,3,6,130.0,1,0,0,1,0,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,182.0,1,19,1,5,7,156.8,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,142.0,1,19,38,7,10,128.4,1,0,1,1,1,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,19,133.1,1,37,37,9,4,103.5,0,0,1,1,0,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,116.0,1,1,1,3,3,119.2,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +1,44,1,9991,1,39,140.0,1,37,19,9,8,140.0,0,0,1,1,1,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,2 +1,1,6,9500,0,1,133.0,1,38,38,9,9,128.8,1,0,1,1,1,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,1 +1,17,1,9853,0,1,119.0,1,3,3,132,132,110.6,0,0,1,1,1,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,2 +1,42,1,9773,0,1,133.1,1,19,6,4,3,120.0,0,0,1,1,0,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9147,0,1,160.0,1,37,37,9,7,110.0,0,0,1,1,0,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,100.0,1,19,37,5,5,120.7,0,0,1,1,1,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,2 +1,1,2,9500,0,1,136.0,1,19,19,9,9,140.0,1,0,1,1,1,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,135.0,1,3,3,2,2,132.9,1,0,1,0,1,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,0 +1,53,1,9003,0,42,130.0,1,1,38,9,6,128.5,0,0,1,1,0,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,1 +1,7,1,9991,1,3,140.0,1,37,37,9,9,140.0,0,0,1,1,0,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,124.0,1,19,37,5,7,119.1,0,0,1,1,0,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,1 +1,39,1,9556,0,1,140.0,1,37,38,9,9,106.0,1,0,0,0,1,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,0 +1,42,4,9500,0,6,133.0,1,1,19,2,9,127.8,1,0,1,1,1,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,1 +1,1,2,9085,0,1,130.0,1,19,19,90,90,122.0,0,0,1,1,1,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,125.0,1,37,19,9,9,122.4,1,0,1,1,0,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,1 +2,39,1,9003,0,3,110.0,1,3,19,4,6,150.0,0,0,1,1,0,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,1 +1,17,1,9670,0,1,123.0,1,19,19,1,1,114.6,0,0,1,1,1,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,131.0,1,38,38,9,9,126.5,0,0,1,1,1,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,133.1,1,38,19,132,103,146.0,0,0,0,1,1,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,1 +1,17,3,9238,0,1,141.0,1,3,3,2,2,124.9,1,0,1,1,1,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,1,136.0,1,3,4,2,2,133.9,0,0,1,0,0,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,2,1,4,6,140.0,0,0,1,1,0,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,111.0,1,19,19,9,9,114.2,1,0,1,1,1,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,1 +1,43,1,9085,0,1,130.0,1,19,38,7,7,120.2,1,0,1,1,1,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,1 +1,7,1,9670,0,3,110.0,1,27,37,3,3,110.0,1,0,1,1,0,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,142.0,1,38,19,7,10,128.4,0,0,1,1,1,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,0 +1,1,3,9773,0,1,158.0,1,1,38,4,7,157.0,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,127.0,1,1,33,3,3,129.8,0,0,1,0,0,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9773,0,1,140.0,1,34,37,0,0,102.5,0,0,1,1,1,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,130.0,1,1,38,5,7,122.0,1,0,1,1,0,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,145.0,1,19,1,6,5,127.9,1,0,1,1,1,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,17,2,9254,0,1,132.0,1,38,38,9,8,122.6,1,0,1,1,1,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,132.0,1,37,37,9,7,129.9,1,0,1,1,1,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,2 +1,1,1,9500,0,1,121.0,1,1,1,4,4,114.9,0,0,1,1,0,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,1 +1,7,1,8014,1,3,140.0,1,1,1,4,4,140.0,0,0,1,1,1,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,137.0,1,1,19,4,4,125.3,0,0,1,1,0,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,2 +1,18,1,9670,0,1,133.0,1,1,1,9,9,121.5,1,0,1,1,1,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,42,1,9500,0,1,100.0,1,3,37,2,6,130.0,1,0,1,1,1,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,1 +1,39,1,9991,1,1,150.0,1,19,38,9,8,140.9,0,1,1,1,1,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,0 +1,39,1,9085,0,1,133.1,1,37,37,9,9,120.0,0,0,1,0,1,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,8014,1,1,128.0,1,38,38,0,0,122.1,0,0,1,1,1,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,1 +1,17,1,9119,0,1,130.0,1,1,3,4,2,123.0,0,0,1,1,0,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,121.0,1,19,38,7,9,123.8,0,0,1,1,1,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,2 +1,17,1,9070,0,1,122.0,1,1,1,4,8,123.8,1,0,0,0,1,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,12,133.1,1,37,37,9,9,133.8,1,0,1,1,0,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,3,3,2,2,149.0,0,0,1,0,0,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,140.0,1,1,38,1,9,140.0,0,0,1,1,0,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,0 +1,1,5,9773,0,1,135.0,1,37,1,5,5,124.9,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,17,1,9119,0,1,132.0,1,37,37,9,6,119.4,1,0,1,1,0,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,7,1,9670,0,3,110.0,1,37,37,7,7,110.0,0,0,1,1,1,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,1 +1,17,5,9119,0,1,118.0,1,1,19,9,9,120.5,1,0,1,1,0,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,1 +2,39,1,9003,0,19,133.1,1,37,19,9,4,140.0,0,0,0,1,1,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +1,17,4,9670,0,1,126.0,1,1,1,4,7,115.2,0,0,1,0,1,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,0 +1,1,1,9254,0,1,158.0,1,19,39,4,8,153.5,1,0,1,1,1,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,1 +1,1,3,9254,0,1,129.0,1,37,38,7,7,122.0,1,0,1,1,1,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,12,133.1,1,37,1,9,4,138.4,0,0,1,1,0,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,0 +1,7,1,9238,0,3,130.0,1,1,1,4,10,125.1,0,0,0,0,1,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9085,0,1,110.0,1,40,1,5,6,142.5,0,0,0,0,0,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,0 +1,16,1,9070,0,1,125.0,1,1,1,4,4,120.8,1,0,1,1,1,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,128.0,1,19,1,5,4,135.7,1,0,1,1,1,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,142.0,1,19,19,9,9,139.9,0,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,1 +1,17,1,171,0,1,123.0,1,3,12,2,9,116.4,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9238,0,1,125.0,1,19,1,9,10,123.6,1,0,1,1,1,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,12,133.1,1,12,12,9,9,120.0,0,0,1,1,0,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,0 +1,17,5,9500,0,1,144.0,1,19,38,9,5,130.7,1,0,1,1,1,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,1 +1,17,6,9500,0,1,136.0,1,19,38,9,3,132.5,1,0,1,1,1,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,1 +2,43,1,9991,1,1,140.0,1,38,37,5,6,117.3,0,0,1,1,1,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,2 +2,43,1,9500,0,1,140.0,1,37,37,9,10,105.7,1,0,1,1,1,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,19,133.1,1,1,5,4,3,100.0,0,0,1,1,1,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,1 +1,17,3,9238,0,1,143.0,1,37,38,0,7,126.9,1,0,1,1,1,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,138.0,1,37,1,9,9,123.7,1,0,0,1,1,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,1,150.0,1,34,34,0,0,112.5,0,0,1,1,1,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,141.0,1,3,2,2,3,130.2,1,0,1,1,1,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,1 +1,1,1,9070,0,1,139.0,1,1,19,3,9,134.9,1,0,1,1,0,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,133.1,1,1,1,3,3,102.0,1,0,1,1,1,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,153.0,1,38,37,7,8,147.9,0,0,1,1,1,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,1 +1,17,3,9085,0,1,121.0,1,38,1,9,9,111.9,1,0,1,1,0,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,1 +1,43,1,9238,0,1,149.0,1,37,37,9,6,130.5,1,0,1,1,1,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,1 +1,17,5,9773,0,1,139.0,1,38,1,4,4,123.6,1,0,1,1,0,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9119,0,1,120.0,1,3,1,123,152,116.9,0,0,1,1,0,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9238,0,1,130.0,1,1,19,4,5,124.8,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,1 +1,53,1,9085,0,42,150.0,1,1,19,4,8,145.2,1,0,1,1,1,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,1 +4,39,1,9130,0,1,140.0,1,37,37,6,7,150.0,1,0,1,1,0,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,1,4,171,0,1,133.1,1,1,1,9,10,110.0,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +1,1,1,171,0,1,124.0,1,19,1,9,9,121.2,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,44,1,9119,0,39,130.0,1,38,19,9,5,130.0,1,0,1,1,0,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,2 +4,7,1,9500,0,3,140.0,1,37,38,9,7,140.0,0,0,1,1,0,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,117.0,1,1,37,5,9,118.4,0,0,1,1,0,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,1 +1,51,1,33,0,1,130.0,1,19,19,9,9,117.7,0,0,1,1,1,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,0 +4,7,1,9500,0,40,130.0,1,19,19,4,6,130.0,0,0,1,0,1,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,144.0,13,3,3,6,6,137.6,1,0,1,1,1,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,1 +1,17,1,9670,0,1,132.0,1,38,37,9,9,122.9,0,0,1,0,0,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,0 +1,1,2,9773,0,1,124.0,1,3,3,3,4,114.6,1,0,1,1,1,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,100.0,1,38,38,9,10,100.0,0,0,1,1,1,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,1 +1,18,2,9853,0,1,120.0,1,19,37,9,4,113.7,1,0,0,0,1,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,0 +1,43,1,9500,0,1,136.0,1,3,3,2,2,100.0,0,0,1,1,1,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,1 +1,39,1,9130,0,1,133.1,1,3,34,3,0,120.0,0,0,0,0,0,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,140.0,1,1,19,3,3,140.0,1,0,1,1,1,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,1 +1,17,1,9085,0,1,128.0,1,38,37,9,9,116.5,1,0,1,1,0,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,1 +1,1,1,9130,0,1,132.0,1,6,6,0,4,119.1,1,0,0,1,1,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,0 +1,43,1,9500,0,6,134.0,1,1,37,9,9,120.4,1,0,1,1,1,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,100.0,1,34,34,0,0,100.0,0,0,1,1,1,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,1 +1,1,2,9085,0,1,122.0,1,3,1,4,7,116.1,1,0,1,1,1,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,1,120.0,1,37,37,9,9,117.0,1,0,1,1,1,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,1 +1,1,5,9254,0,1,126.0,1,19,19,4,7,116.6,1,0,1,1,1,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,1 +1,43,1,9991,1,4,160.0,1,3,3,2,1,125.0,0,0,1,1,0,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,1 +1,1,1,9670,0,1,130.0,1,37,37,0,0,117.8,1,0,1,1,1,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,1 +1,1,1,171,0,1,169.0,1,19,37,9,7,176.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,1,1,9500,0,1,137.0,1,3,38,2,4,121.0,0,0,1,1,1,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,132.0,1,19,1,9,5,123.4,0,0,1,1,1,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,1 +1,17,2,9238,0,3,105.0,1,37,37,7,8,129.7,1,0,1,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,6,9254,0,1,119.0,1,19,19,9,9,118.7,1,0,1,1,0,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,0 +2,39,1,8014,1,1,120.0,1,37,37,9,6,117.0,0,0,1,1,0,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,1,3,9,6,130.0,0,0,1,1,0,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,143.0,1,19,37,9,9,126.2,1,0,1,1,1,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,1 +1,39,1,9991,1,39,150.0,1,19,19,9,9,150.3,0,0,1,1,0,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9130,0,1,143.0,1,3,3,2,2,131.8,1,0,0,0,1,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,2 +1,44,1,9238,0,39,140.0,1,19,19,8,8,144.3,1,0,1,1,1,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,131.0,1,19,19,4,4,122.0,1,0,1,1,1,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,2 +1,17,2,9500,0,1,127.0,1,3,3,1,10,118.8,1,0,1,1,0,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,146.0,1,37,38,9,7,128.5,0,0,0,1,1,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,0 +1,7,1,9003,0,3,140.0,1,39,39,9,4,140.0,0,0,1,1,0,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,123.0,1,38,19,4,90,127.2,0,0,0,0,0,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,0 +1,15,1,9670,0,1,133.1,41,1,1,9,5,128.2,0,0,0,0,0,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,126.0,1,1,1,9,9,127.4,1,0,1,1,1,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,150.0,1,37,37,9,9,150.0,0,0,1,1,1,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,130.0,1,38,19,9,6,120.0,1,0,1,1,0,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,2 +1,17,1,9238,0,1,103.0,1,19,37,7,9,104.1,0,0,1,1,1,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9500,0,1,145.0,1,3,19,1,5,130.0,1,0,1,1,1,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,123.0,1,1,38,9,9,116.7,0,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,9991,1,1,110.0,1,37,37,5,1,120.0,1,0,1,1,1,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,141.0,1,19,1,90,90,128.0,0,0,1,1,0,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,0 +1,1,1,171,0,1,124.0,1,3,3,2,2,119.1,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,5,4,9853,0,1,116.0,1,3,38,3,8,110.4,1,0,1,1,1,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,2 +1,17,1,9070,0,1,119.0,1,38,19,9,9,115.2,0,0,1,1,0,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,0 +1,17,2,9254,0,1,123.0,1,37,37,7,7,113.9,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +2,43,1,9147,0,2,120.0,1,37,37,9,9,122.8,0,0,0,0,1,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,6,122.0,1,19,19,9,9,126.2,1,0,1,1,1,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,122.0,1,1,1,2,5,113.3,1,0,1,1,1,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,2 +1,1,1,9085,0,1,142.0,1,1,1,9,9,127.7,1,0,1,1,0,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,1 +1,43,1,9070,0,1,116.0,1,1,1,3,3,120.9,0,0,1,1,0,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9500,0,1,128.0,1,1,19,4,7,125.6,1,0,1,1,0,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,1 +1,7,1,9991,1,40,130.0,1,1,3,4,2,130.0,0,0,1,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,39,120.0,1,1,19,9,7,120.0,0,0,1,1,0,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,137.0,1,38,37,9,9,122.3,0,0,1,1,0,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,4,9773,0,1,122.0,1,41,1,4,3,119.6,1,0,1,1,1,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,157.0,1,38,37,9,5,137.8,0,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9130,0,1,132.0,1,19,38,9,9,130.4,1,0,1,1,0,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,1 +4,43,1,8014,1,12,133.1,1,34,34,0,0,106.0,1,0,1,1,1,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,2 +1,17,2,9130,0,1,127.0,1,3,1,2,1,116.5,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,8014,1,1,125.0,1,37,37,5,6,122.2,1,0,0,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9556,0,1,128.0,1,38,38,7,8,123.5,1,0,1,1,1,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,2 +1,43,1,9130,0,1,156.0,1,19,1,9,4,156.0,0,0,0,0,0,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,0 +1,7,1,9130,0,3,140.0,1,19,38,9,9,140.0,1,0,1,1,1,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,8014,1,1,123.0,1,34,37,9,90,121.3,1,0,1,1,1,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,39,1,9085,0,19,133.1,1,19,37,7,90,104.0,0,0,1,1,1,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,18,4,9254,0,1,106.0,1,19,37,7,7,106.0,1,0,1,1,0,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,0 +1,17,1,9003,0,1,119.0,1,37,37,4,6,113.2,0,0,0,1,1,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,133.1,1,19,19,9,9,100.0,0,0,1,1,1,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,145.0,1,3,1,4,3,149.9,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,166.0,1,19,37,4,8,146.4,0,0,1,1,0,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,2 +1,1,1,9853,0,1,145.0,1,38,37,5,5,142.2,0,0,1,1,1,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,2 +1,39,1,8014,1,19,133.1,1,37,37,9,9,100.0,0,0,1,1,1,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,156.0,1,19,38,9,1,153.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,1,9853,0,1,117.0,1,19,38,4,0,113.5,1,0,1,1,1,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,138.0,1,37,19,9,9,127.8,1,0,1,1,1,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,1 +1,39,1,9500,0,40,130.0,1,1,1,4,4,190.0,1,0,1,1,1,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,1 +1,17,5,9070,0,1,131.0,1,37,37,9,9,126.1,1,0,1,0,1,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,133.1,1,19,37,9,9,95.0,1,0,0,0,1,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,2 +1,1,1,9773,0,1,143.0,1,1,38,8,8,136.7,1,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,0 +1,42,1,8014,1,1,120.0,1,37,38,90,7,120.0,1,0,1,1,1,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,0 +1,1,1,9254,0,1,121.0,1,19,19,5,8,117.5,1,0,1,1,1,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,1 +1,39,1,9254,0,1,160.0,1,3,1,6,6,116.3,1,0,1,1,1,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,134.0,1,1,38,4,5,122.8,0,0,1,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,7,1,8014,1,3,120.0,1,19,37,5,3,121.3,0,0,1,1,1,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,134.0,1,38,19,9,4,128.4,1,0,1,1,1,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,130.0,1,19,1,7,4,117.8,1,0,1,1,0,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,2 +1,1,1,9130,0,1,132.0,1,1,1,3,3,143.9,1,0,1,1,0,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,130.0,1,19,1,9,4,101.3,1,0,1,1,0,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,135.0,1,37,19,5,10,121.0,0,0,0,1,1,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,2 +1,44,1,9991,1,39,120.0,1,37,37,7,7,120.0,1,0,1,1,1,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,43,1,8014,1,1,133.1,1,3,3,2,3,135.0,0,0,1,1,1,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,110.0,1,19,19,9,7,105.8,1,0,1,1,0,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,160.0,1,1,38,4,10,144.3,1,0,1,1,1,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,1 +4,39,1,9254,0,1,120.0,1,37,37,9,8,95.0,0,0,1,1,1,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,137.0,1,19,19,7,7,120.8,1,0,1,1,1,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,1 +1,1,5,9500,0,1,144.0,1,19,38,4,8,141.3,1,0,1,1,1,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,148.0,1,19,1,3,9,140.0,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,128.0,1,38,38,7,7,131.5,0,0,1,1,1,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,128.0,1,38,19,191,175,118.6,1,0,1,1,1,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,2 +1,17,3,9147,0,1,122.0,1,3,38,123,171,116.1,1,0,0,1,0,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,2 +1,1,1,9773,0,1,128.0,1,38,38,6,3,116.5,0,0,1,1,0,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,97.0,1,1,19,2,7,98.1,1,0,1,1,1,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,1 +1,53,1,9991,1,1,140.0,1,38,38,191,193,135.0,0,0,0,1,1,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,2 +1,1,2,9773,0,1,122.0,1,37,37,9,9,130.8,1,0,1,1,1,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,1 +2,39,1,9147,0,1,130.0,1,37,37,9,9,117.9,0,0,1,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,43,1,9991,1,1,100.0,1,37,19,9,4,130.0,0,0,1,1,0,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,0 +1,17,6,9670,0,1,125.0,1,38,1,9,7,125.0,1,0,1,1,0,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,1 +2,7,1,9070,0,43,140.0,1,37,1,9,7,140.0,0,0,1,1,1,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,1 +1,7,1,9254,0,3,110.0,1,19,19,3,3,110.0,0,0,1,1,0,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,17,2,9500,0,1,135.0,1,19,1,5,4,127.3,1,0,1,1,1,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,1 +1,17,4,9238,0,1,129.0,1,19,19,4,7,123.1,1,0,1,1,1,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,53,1,9085,0,42,140.0,1,19,38,8,9,144.9,1,0,0,0,1,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,9500,0,1,136.0,1,1,1,4,4,123.8,0,0,1,1,1,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,1 +4,43,1,9991,1,1,140.0,1,37,37,5,5,149.8,0,0,1,1,0,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,150.0,1,38,19,9,9,137.8,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +5,39,1,9147,0,1,180.0,1,1,1,4,8,140.5,0,0,0,0,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,131.0,1,19,19,3,7,127.9,1,0,1,1,1,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,1 +1,17,1,9147,0,1,110.0,1,1,1,4,4,99.0,0,0,1,1,0,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,2 +1,39,1,9070,0,1,139.3,1,38,38,5,5,117.5,0,0,1,1,0,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9130,0,1,147.0,1,4,1,2,10,141.8,1,0,1,1,1,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,1 +2,44,1,8014,1,39,150.0,1,1,1,5,5,154.0,0,0,1,1,0,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,1 +1,17,1,9254,0,1,133.1,1,1,1,4,5,131.0,1,0,1,1,1,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,132.0,1,1,38,9,7,127.1,1,0,1,1,1,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,17,4,9147,0,1,125.0,1,19,19,5,5,118.0,1,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,108.0,1,19,1,9,3,107.8,1,0,1,1,1,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,143.0,1,37,37,9,8,130.6,1,0,1,1,1,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,126.0,1,37,1,7,7,118.7,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9238,0,1,140.0,1,1,44,4,2,124.6,1,0,0,0,0,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,112.0,1,9,22,4,3,106.1,0,0,1,1,1,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,1,130.0,1,37,37,191,183,163.7,0,0,1,1,1,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,2 +4,39,1,9500,0,19,133.1,1,37,37,6,6,117.8,0,0,0,0,1,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,0 +1,18,2,9853,0,1,120.0,1,1,1,9,0,115.8,0,0,1,1,1,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,2 +1,17,1,9070,0,1,118.0,1,38,19,9,3,111.0,1,0,1,1,1,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,16,1,171,0,1,150.0,1,37,37,9,9,134.6,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9130,0,1,133.1,6,37,37,9,6,100.0,0,0,1,1,1,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9147,0,1,137.0,1,1,37,5,9,131.4,1,0,1,1,0,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,0 +2,44,1,9991,1,39,130.0,1,1,37,4,9,130.0,0,0,1,0,1,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,0 +1,1,2,9238,0,1,136.0,1,19,19,4,7,121.7,1,0,1,1,1,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,133.1,1,1,38,9,7,110.5,0,0,1,1,1,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,1 +1,39,1,9556,0,19,100.0,1,37,38,9,9,120.0,0,0,1,1,1,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,3,9070,0,1,142.0,1,1,38,3,5,146.9,1,0,1,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,127.0,1,19,19,7,8,120.3,1,0,1,1,1,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,130.0,1,1,38,7,8,135.6,1,0,1,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,137.0,1,19,38,9,3,125.0,1,0,1,1,1,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,1 +1,1,5,9500,0,1,135.0,1,37,37,7,7,124.0,1,0,1,1,1,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,2 +2,39,1,9556,0,1,100.0,6,38,38,9,9,130.0,0,0,1,1,1,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,1 +1,42,1,9003,0,39,120.0,1,3,1,2,6,128.2,1,0,1,1,0,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,2 +1,1,3,9773,0,1,121.0,1,19,19,3,3,116.1,0,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,136.0,1,1,19,4,9,131.1,1,0,1,1,1,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,2 +1,1,3,9500,0,1,141.0,1,3,19,2,10,126.8,1,0,1,1,0,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,1 +1,1,6,9773,0,1,136.0,1,38,38,9,9,132.9,1,0,1,1,0,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,1 +1,39,1,9130,0,1,133.1,1,1,1,90,1,120.0,1,0,0,0,0,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,0 +1,17,1,8014,1,1,132.0,1,37,19,5,5,121.2,0,0,1,1,1,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,1 +1,43,2,9500,0,6,119.1,1,1,19,4,10,119.1,0,0,1,1,0,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,153.0,1,1,19,9,4,139.7,1,0,1,1,1,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,1 +1,1,1,9119,0,1,150.0,1,1,1,3,3,143.4,0,0,1,0,0,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,2 +1,1,4,9500,0,1,130.0,1,19,19,9,7,119.9,1,0,1,1,1,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,1,38,9,6,140.0,0,0,1,1,0,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,2 +1,18,1,9500,0,1,115.0,1,38,37,5,5,115.0,0,0,1,1,1,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,150.0,1,19,37,5,4,142.7,1,0,1,1,1,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,133.1,1,34,5,0,1,118.5,1,0,1,1,1,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9130,0,1,125.0,1,3,3,2,2,132.4,0,0,1,1,0,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,1 +1,17,3,9070,0,1,116.0,1,37,37,9,9,110.8,0,0,1,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,2 +1,43,1,9070,0,1,115.0,1,12,12,1,10,115.0,0,0,0,1,0,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,0 +1,1,1,9500,0,1,125.0,1,37,37,9,9,118.8,0,0,1,1,0,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,130.0,1,3,1,2,5,133.8,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9500,0,1,141.0,1,12,1,5,5,133.0,1,0,1,1,1,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,141.0,1,38,38,7,10,139.8,1,0,1,1,1,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,1 +1,51,1,9147,0,19,133.1,1,19,19,9,5,112.1,0,0,0,0,0,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,132.0,1,19,2,9,3,126.0,1,0,1,1,1,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,131.0,1,2,38,4,5,132.3,1,0,1,1,1,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,124.0,1,1,19,9,8,116.7,1,0,1,1,1,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,0 +1,1,1,9556,0,1,180.0,103,5,3,1,1,183.5,1,0,1,1,1,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,0 +1,10,1,9773,0,1,151.0,22,38,37,0,5,151.0,1,0,1,1,1,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,135.0,1,19,19,9,10,133.4,1,0,1,1,1,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,135.0,1,3,3,2,2,137.1,1,0,1,1,1,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,133.1,1,38,38,5,10,101.0,0,0,1,1,0,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,1 +1,39,1,9085,0,40,130.0,1,3,2,3,2,160.0,1,0,1,1,1,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,18,1,9773,0,1,124.0,1,38,37,9,8,126.8,0,0,1,1,0,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,140.0,1,19,37,9,9,125.5,1,0,1,1,1,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,1 +2,39,1,9500,0,1,133.1,1,37,38,9,8,118.9,0,0,1,1,1,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9991,1,1,160.0,1,34,34,0,0,161.8,1,0,0,1,0,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,140.0,1,1,38,4,7,100.0,0,0,1,1,1,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,1 +1,44,1,9070,0,39,120.0,1,2,19,3,8,120.0,0,0,1,1,0,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,124.0,1,38,19,3,10,128.6,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,2 +1,44,1,9085,0,39,140.0,1,1,19,4,4,140.0,0,0,1,1,1,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,145.0,1,1,19,4,3,133.5,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,1 +4,39,1,9085,0,1,110.0,1,37,37,90,90,110.0,0,0,1,0,1,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,134.0,1,19,37,4,7,133.5,1,0,1,1,1,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,1 +1,1,2,9147,0,1,132.0,1,1,19,4,3,126.4,1,0,1,1,1,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,1 +1,39,1,9003,0,19,133.1,1,4,1,2,4,120.0,0,0,1,1,0,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,151.0,1,40,4,2,2,144.5,1,0,1,1,1,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +2,39,1,9147,0,19,133.1,1,37,19,9,3,128.0,0,0,1,1,0,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,0 +1,39,2,8014,1,1,141.0,1,37,37,9,9,150.5,0,0,1,1,1,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,122.0,1,19,19,4,6,119.9,0,0,1,1,1,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,1 +1,39,1,9254,0,9,133.1,1,34,34,0,0,110.0,1,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,18,1,9500,0,1,128.0,1,19,1,9,4,125.8,0,0,1,1,1,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,2 +1,1,3,9773,0,1,133.1,1,38,38,5,5,131.3,1,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +1,16,6,9147,0,1,128.0,1,37,37,9,9,116.5,1,0,1,1,1,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,1 +2,39,1,9991,1,1,147.0,1,34,34,90,90,111.7,1,0,1,1,1,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,8014,1,1,120.0,1,1,19,6,8,122.0,0,0,1,1,1,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,1 +2,39,2,9254,0,19,133.1,1,19,19,9,5,123.5,0,0,1,1,0,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,114.0,1,37,37,9,9,130.0,0,0,1,1,0,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,1 +2,39,1,8014,1,1,100.0,1,37,38,9,9,141.5,0,0,1,1,1,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,1 +1,17,6,9556,0,1,118.0,1,38,38,5,5,117.8,1,0,1,1,1,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,1 +1,39,1,9773,0,19,133.1,1,19,19,171,163,104.0,0,0,0,0,1,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,1 +1,39,1,8014,1,39,110.0,1,19,37,9,8,127.5,0,0,0,0,1,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,0 +1,39,1,9119,0,1,120.0,1,37,38,9,8,100.0,0,0,0,1,0,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,5,9147,0,1,133.0,1,19,3,9,9,123.2,1,0,1,1,0,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,133.1,1,34,34,0,0,142.8,0,0,1,1,0,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9119,0,1,120.0,1,34,34,0,0,140.0,1,0,1,1,0,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,120.0,1,3,37,4,7,115.1,1,0,1,1,1,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,1 +1,51,1,9119,0,1,140.0,1,1,19,4,4,150.0,0,0,1,1,0,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,0 +1,43,1,9556,0,1,149.0,1,1,1,4,8,140.2,1,1,1,1,1,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,160.0,1,37,19,9,10,160.0,1,0,1,1,1,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,9238,0,1,115.0,1,19,38,7,8,116.4,1,0,1,1,1,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,1 +1,44,1,9130,0,39,140.0,1,4,4,2,10,140.0,1,0,1,1,0,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,19,133.1,1,1,1,4,4,130.0,0,0,1,1,0,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,17,5,9773,0,1,146.0,1,1,37,5,5,146.7,1,0,1,1,0,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,142.0,1,1,38,9,9,127.0,0,0,0,0,0,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,0 +4,39,1,8014,1,1,130.0,1,37,37,9,7,138.0,0,0,1,1,1,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,1 +1,39,1,9773,0,9,133.1,1,38,1,5,4,102.0,1,0,1,1,0,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,125.0,1,19,19,7,5,118.0,1,0,1,1,1,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,145.0,1,19,38,4,10,131.7,1,0,1,1,1,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,133.1,1,37,19,9,9,114.0,0,0,1,1,1,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,140.0,1,38,37,4,10,140.0,0,0,0,0,1,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,0 +1,1,1,9773,0,1,128.0,1,1,19,4,4,124.5,0,0,1,1,0,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,126.0,1,37,19,9,8,116.9,1,0,1,1,1,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,2 +1,17,1,9773,0,1,177.0,1,2,1,123,135,155.7,0,0,0,1,1,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,135.0,1,37,1,5,5,126.8,1,0,1,1,1,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,125.0,1,4,3,1,1,119.8,0,0,1,1,1,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,1 +1,53,1,9147,0,42,130.0,1,1,19,143,172,133.8,1,0,1,1,1,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,1 +1,17,3,9670,0,1,123.0,1,38,38,7,8,118.8,1,1,1,1,1,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,112.0,1,38,19,9,5,113.8,1,0,1,1,1,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,124.0,1,34,34,0,0,129.3,0,0,1,1,1,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,9773,0,12,120.0,1,1,1,9,9,129.8,1,0,1,1,0,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,111.0,1,19,19,9,9,110.0,1,0,1,1,1,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,163.0,1,37,37,5,6,155.0,0,0,1,1,1,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,145.0,1,19,1,9,5,145.0,0,0,1,1,1,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,160.0,1,38,37,9,7,155.5,1,0,1,1,1,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,137.0,1,1,3,7,3,131.1,1,0,0,1,1,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,1 +2,39,1,8014,1,1,133.1,1,38,38,9,9,113.5,0,0,1,1,1,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,130.0,1,1,1,9,9,131.8,0,0,1,1,0,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,137.0,1,38,37,7,7,126.0,1,0,1,1,1,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,1 +1,42,1,9003,0,1,160.0,1,19,1,9,5,107.8,1,0,1,0,0,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9070,0,39,120.0,1,3,38,3,9,120.0,0,0,1,1,0,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,1 +1,17,1,9670,0,1,145.0,1,3,3,2,1,129.3,1,0,1,1,1,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,117.0,1,38,19,5,7,118.1,0,0,1,1,0,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,1 +1,44,1,9085,0,1,130.0,1,1,1,4,3,130.0,1,0,1,1,1,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,2 +2,43,1,9238,0,12,100.0,1,37,37,9,9,134.4,0,0,1,1,1,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,1 +2,43,1,8014,1,14,133.1,1,34,34,0,0,100.0,0,0,1,0,1,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,0 +1,17,4,9254,0,1,122.0,1,1,1,4,2,116.1,1,0,1,1,0,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,2 +1,1,4,9254,0,1,110.0,1,37,37,9,7,113.2,1,0,1,1,1,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,17,1,9254,0,1,131.0,1,38,37,4,9,131.7,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,150.0,1,1,19,4,10,150.0,0,0,1,1,0,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,1 +1,17,1,9119,0,1,142.0,1,19,38,9,7,127.3,0,0,1,1,0,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,2 +1,7,1,9556,0,43,160.0,1,38,19,9,9,160.0,0,0,1,1,0,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +1,1,1,9853,0,1,130.0,1,19,12,9,4,133.2,1,0,1,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,1 +1,43,1,9119,0,1,130.0,1,37,38,9,9,120.0,0,0,0,0,1,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,42,1,3,7,110.5,0,0,1,1,0,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +2,39,1,9003,0,1,130.0,1,1,19,4,9,152.4,1,0,1,1,1,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,1 +1,16,1,171,0,1,155.0,1,1,3,5,10,167.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,3,9254,0,1,114.0,26,38,3,9,3,127.3,1,0,0,0,1,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,124.0,1,37,37,9,9,125.4,1,0,1,1,0,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,5,9773,0,1,127.0,1,38,1,4,5,121.1,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,2 +1,17,2,171,0,1,130.0,41,1,1,2,3,148.6,1,0,1,1,0,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9130,0,1,120.0,1,1,19,9,9,120.0,1,0,1,1,1,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,133.0,1,1,37,4,10,143.2,0,0,1,1,1,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +1,1,2,9254,0,1,136.0,1,38,38,9,7,125.2,1,0,1,1,1,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,1 +1,17,1,9254,0,1,102.0,1,37,37,7,7,102.0,0,0,1,1,1,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,140.0,1,19,38,5,7,128.5,1,0,1,1,1,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,1 +1,1,4,9500,0,1,140.0,1,38,38,7,7,133.2,1,0,1,1,1,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,123.0,1,1,1,3,3,120.9,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,18,2,9500,0,1,135.0,1,19,1,5,5,128.9,1,0,1,1,1,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,144.0,1,3,1,1,3,137.7,0,0,1,0,1,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,0 +1,17,1,171,0,1,158.0,1,3,3,3,3,151.4,1,0,1,0,1,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,1 +1,39,1,9670,0,12,133.1,1,37,1,9,3,120.0,0,0,0,0,0,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,51,1,9773,0,1,135.0,1,1,42,5,3,110.0,1,0,1,1,0,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,143.0,1,3,38,2,9,144.1,1,0,1,1,1,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,2 +1,1,3,9070,0,1,132.0,1,1,3,9,7,126.1,1,0,1,1,1,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,1 +1,1,6,9500,0,1,141.0,1,19,1,9,10,126.8,1,0,1,1,1,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,1 +1,44,1,9238,0,39,130.0,1,38,38,6,9,126.3,1,0,1,1,1,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,1,140.0,1,1,1,4,5,140.0,0,0,1,1,0,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,2 +1,39,2,9147,0,1,130.0,1,19,19,5,9,121.5,0,0,1,0,0,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +2,51,1,8014,1,19,133.1,1,37,37,9,9,104.0,0,0,0,1,1,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,120.0,1,3,4,2,2,120.0,0,0,1,1,0,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,1 +1,1,4,171,0,1,131.0,1,19,19,4,4,119.8,1,1,1,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +1,18,3,9070,0,1,134.0,1,1,1,3,4,121.4,0,0,1,1,1,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,1,140.0,1,37,37,9,9,118.2,0,0,1,1,0,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,1 +1,1,1,9147,0,1,130.0,1,19,37,9,9,131.8,1,0,1,1,1,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,134.0,1,38,19,3,10,121.2,0,0,1,1,1,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,1 +1,43,2,9500,0,1,120.0,1,41,3,2,2,112.7,0,0,1,1,1,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,134.0,1,1,19,4,9,129.8,0,0,1,1,1,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,1 +1,17,1,9085,0,1,133.0,1,19,1,4,5,127.1,1,0,1,1,1,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,1 +1,17,1,9500,0,1,148.0,1,38,37,5,9,137.8,1,0,1,1,1,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,129.0,1,37,37,9,7,117.8,0,0,1,1,1,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,2 +4,39,1,8014,1,3,100.0,1,37,37,9,9,130.0,0,0,1,1,1,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,145.0,1,1,40,9,2,129.6,0,0,1,1,1,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,17,4,9254,0,1,124.0,1,1,1,4,4,122.3,1,0,1,1,1,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,0 +2,43,2,9147,0,1,133.1,1,37,37,9,9,109.0,1,0,1,1,1,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,1 +1,51,1,9556,0,1,131.0,1,1,37,152,193,126.6,1,0,1,1,0,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,2 +1,44,1,9085,0,39,110.0,1,3,5,2,2,110.0,0,0,1,1,0,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,15,1,9147,0,1,140.0,26,37,2,6,4,140.0,0,0,0,1,0,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,1 +2,51,1,9853,0,1,130.0,1,37,37,7,8,120.3,0,0,1,1,1,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,8014,1,19,133.1,1,37,37,6,6,139.0,0,0,1,1,0,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,1 +1,1,3,9670,0,1,120.0,1,37,37,7,7,111.3,1,0,1,1,0,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,2 +1,7,1,9085,0,3,120.0,1,37,37,7,7,120.0,0,0,1,1,1,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,0 +1,17,3,9147,0,1,147.0,1,19,38,5,7,132.3,1,0,1,1,1,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,1 +1,1,3,9130,0,1,167.0,1,37,37,90,90,159.3,0,0,1,1,1,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,132.0,1,1,1,4,9,136.6,1,0,1,1,0,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,2 +1,5,2,9853,0,1,124.0,1,19,19,3,3,113.9,1,0,1,1,1,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,3,130.0,1,3,1,2,9,130.0,0,0,1,1,0,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9773,0,1,160.0,1,1,38,4,7,146.5,0,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,1 +1,1,1,9670,0,1,141.0,1,19,3,4,0,137.9,1,0,1,0,0,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,0 +1,39,1,8014,1,1,120.0,1,19,37,8,7,100.0,1,0,1,1,1,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,134.0,1,38,19,7,7,124.2,0,0,1,1,1,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,1 +1,44,1,9238,0,39,150.0,1,1,37,4,8,145.6,1,0,1,1,1,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,1,4,9147,0,1,146.0,1,3,1,3,10,138.7,0,0,1,1,0,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,7,1,9991,1,40,133.1,1,1,37,4,1,100.0,0,0,1,1,1,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,127.0,1,38,19,9,10,117.9,0,0,1,1,1,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,131.0,1,37,38,9,7,137.0,0,0,1,1,1,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,1 +1,7,1,9238,0,3,140.0,1,37,37,9,9,140.0,1,0,1,1,1,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,1 +2,39,1,9085,0,1,133.1,1,37,37,90,90,110.3,0,0,1,1,0,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,125.0,1,38,1,3,10,114.5,1,0,1,1,0,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,152.0,1,19,19,9,5,154.1,0,0,0,1,1,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,1 +1,7,1,9500,0,3,120.0,1,37,37,4,5,120.0,0,0,0,0,1,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,0 +2,39,1,8014,1,1,146.0,1,37,37,9,8,120.5,0,0,1,1,1,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,39,1,9119,0,12,133.1,1,34,34,0,0,95.1,0,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9238,0,1,128.0,1,19,37,9,8,116.5,0,0,1,1,1,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,1 +2,39,1,9991,1,1,140.0,1,37,37,9,9,120.0,0,0,1,0,1,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/train_20260421_023649.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/train_20260421_023649.log new file mode 100644 index 0000000000000000000000000000000000000000..51a5263e08a482d8d3fa335b8a081398bb049001 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260421_023648/train_20260421_023649.log @@ -0,0 +1,36565 @@ +[TabSyn] Step 1/2: Training VAE in /workspace/tabsyn, dataname=tabsyn_m5 +/opt/conda/lib/python3.11/site-packages/torch/cuda/__init__.py:63: FutureWarning: The pynvml package is deprecated. Please install nvidia-ml-py instead. If you did not install pynvml directly, please report this to the maintainers of the package that installed pynvml for you. + import pynvml # type: ignore[import] +No NaNs in numerical features, skipping +self.category_embeddings.weight.shape=torch.Size([19, 4]) +self.category_embeddings.weight.shape=torch.Size([19, 4]) + + 0%| | 0/1 [00:00 {output_csv}") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/_tabsyn_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..44240bff241be7f4f795917ae8307011b6b55415 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/_tabsyn_train.py @@ -0,0 +1,63 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916" +dataname = "tabsyn_m5" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "1024") +_te = 1000 +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/info.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/info.json new file mode 100644 index 0000000000000000000000000000000000000000..6134cc8252d76a2ea8e33ab15467731109319b61 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/info.json @@ -0,0 +1,356 @@ +{ + "name": "tabsyn_m5", + "task_type": "multiclass", + "n_num_features": 28, + "n_cat_features": 8, + "train_size": 3539, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 19, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ], + "cat_col_idx": [ + 4, + 13, + 14, + 15, + 16, + 17, + 18, + 20 + ], + "target_col_idx": [ + 36 + ], + "column_names": [ + "Marital status", + "Application mode", + "Application order", + "Course", + "Daytime/evening attendance", + "Previous qualification", + "Previous qualification (grade)", + "Nacionality", + "Mother's qualification", + "Father's qualification", + "Mother's occupation", + "Father's occupation", + "Admission grade", + "Displaced", + "Educational special needs", + "Debtor", + "Tuition fees up to date", + "Gender", + "Scholarship holder", + "Age at enrollment", + "International", + "Curricular units 1st sem (credited)", + "Curricular units 1st sem (enrolled)", + "Curricular units 1st sem (evaluations)", + "Curricular units 1st sem (approved)", + "Curricular units 1st sem (grade)", + "Curricular units 1st sem (without evaluations)", + "Curricular units 2nd sem (credited)", + "Curricular units 2nd sem (enrolled)", + "Curricular units 2nd sem (evaluations)", + "Curricular units 2nd sem (approved)", + "Curricular units 2nd sem (grade)", + "Curricular units 2nd sem (without evaluations)", + "Unemployment rate", + "Inflation rate", + "GDP", + "Target" + ], + "train_num": 3539, + "test_num": 3539, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_m5/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 28, + "5": 4, + "6": 5, + "7": 6, + "8": 7, + "9": 8, + "10": 9, + "11": 10, + "12": 11, + "13": 29, + "14": 30, + "15": 31, + "16": 32, + "17": 33, + "18": 34, + "19": 12, + "20": 35, + "21": 13, + "22": 14, + "23": 15, + "24": 16, + "25": 17, + "26": 18, + "27": 19, + "28": 20, + "29": 21, + "30": 22, + "31": 23, + "32": 24, + "33": 25, + "34": 26, + "35": 27, + "36": 36 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "28": 4, + "4": 5, + "5": 6, + "6": 7, + "7": 8, + "8": 9, + "9": 10, + "10": 11, + "11": 12, + "29": 13, + "30": 14, + "31": 15, + "32": 16, + "33": 17, + "34": 18, + "12": 19, + "35": 20, + "13": 21, + "14": 22, + "15": 23, + "16": 24, + "17": 25, + "18": 26, + "19": 27, + "20": 28, + "21": 29, + "22": 30, + "23": 31, + "24": 32, + "25": 33, + "26": 34, + "27": 35, + "36": 36 + }, + "idx_name_mapping": { + "0": "Marital status", + "1": "Application mode", + "2": "Application order", + "3": "Course", + "4": "Daytime/evening attendance", + "5": "Previous qualification", + "6": "Previous qualification (grade)", + "7": "Nacionality", + "8": "Mother's qualification", + "9": "Father's qualification", + "10": "Mother's occupation", + "11": "Father's occupation", + "12": "Admission grade", + "13": "Displaced", + "14": "Educational special needs", + "15": "Debtor", + "16": "Tuition fees up to date", + "17": "Gender", + "18": "Scholarship holder", + "19": "Age at enrollment", + "20": "International", + "21": "Curricular units 1st sem (credited)", + "22": "Curricular units 1st sem (enrolled)", + "23": "Curricular units 1st sem (evaluations)", + "24": "Curricular units 1st sem (approved)", + "25": "Curricular units 1st sem (grade)", + "26": "Curricular units 1st sem (without evaluations)", + "27": "Curricular units 2nd sem (credited)", + "28": "Curricular units 2nd sem (enrolled)", + "29": "Curricular units 2nd sem (evaluations)", + "30": "Curricular units 2nd sem (approved)", + "31": "Curricular units 2nd sem (grade)", + "32": "Curricular units 2nd sem (without evaluations)", + "33": "Unemployment rate", + "34": "Inflation rate", + "35": "GDP", + "36": "Target" + }, + "n_classes": 3, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "12": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "19": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "21": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "22": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "23": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "24": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "25": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "26": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "27": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "28": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "29": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "30": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "31": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "32": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "33": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "34": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "35": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "categorical" + }, + "13": { + "sdtype": "categorical" + }, + "14": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + }, + "16": { + "sdtype": "categorical" + }, + "17": { + "sdtype": "categorical" + }, + "18": { + "sdtype": "categorical" + }, + "20": { + "sdtype": "categorical" + }, + "36": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..1536cf99ff8a3aaf05d2bd6b84a42986911aea5d --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/test.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,0,1,127.0,1,1,1,9,6,110.0,0,0,0,0,0,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,0 +1,17,2,9773,0,1,122.0,1,38,37,5,3,119.6,1,0,1,1,1,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,1 +1,1,6,9147,0,1,121.0,1,3,19,4,5,116.8,0,0,1,1,0,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,158.0,1,38,37,5,5,140.2,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,19,19,9,7,131.7,1,0,1,1,1,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,1 +1,1,3,9085,0,1,133.0,1,1,38,9,90,128.2,0,0,1,1,1,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,122.0,1,1,19,9,9,120.3,1,0,1,1,0,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,0 +1,43,1,9119,0,1,130.0,1,1,1,9,2,128.0,0,0,0,0,0,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,2 +1,17,3,9254,0,1,122.0,1,1,1,4,4,126.6,0,0,1,0,1,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,1,100.0,1,37,37,9,9,133.0,0,0,1,1,0,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,0 +1,44,1,9119,0,39,130.0,1,19,3,3,4,130.0,0,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9085,0,39,140.0,1,1,1,4,7,140.0,1,0,0,1,1,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,0 +1,17,2,9070,0,1,130.0,1,37,37,9,9,123.7,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +4,1,1,9991,1,1,130.0,1,37,37,9,9,118.1,0,0,0,0,1,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9500,0,1,190.0,108,3,2,122,4,190.0,1,0,1,1,1,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,102.0,1,1,19,9,5,100.6,1,0,1,1,1,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,1 +1,7,1,9500,0,3,120.0,1,19,3,4,2,120.0,1,0,1,1,1,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,130.0,1,38,19,9,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,111.0,1,3,4,4,3,108.2,1,0,1,1,1,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,39,1,9119,0,1,160.0,1,1,38,4,7,112.0,0,0,1,0,0,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,149.0,1,19,1,4,4,134.8,0,0,1,1,1,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,135.0,1,19,38,3,9,136.1,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,2,9500,0,1,120.0,1,37,34,90,0,121.5,0,0,0,1,1,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,1 +1,1,3,171,0,1,147.0,1,12,19,9,3,151.6,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,128.0,1,37,37,9,9,123.5,1,0,1,1,0,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,1,2,9070,0,1,129.0,1,1,1,4,9,132.9,1,0,1,1,0,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,2 +1,17,2,9500,0,1,138.0,1,1,38,5,8,132.8,1,0,1,1,1,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,134.0,1,19,37,9,9,131.6,1,1,1,1,1,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,130.0,1,37,37,9,9,122.0,1,0,1,1,1,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,37,37,9,10,130.0,0,0,0,0,1,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,2,9085,0,1,130.0,1,37,19,9,8,129.0,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,2 +1,17,5,9119,0,1,126.0,1,38,38,5,9,116.9,1,0,0,1,0,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,37,38,5,6,140.0,1,0,1,1,1,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,2 +1,18,4,9853,0,1,123.0,1,19,38,4,10,123.7,1,0,1,1,1,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,118.0,1,4,3,2,3,110.7,1,0,1,1,1,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,1 +1,39,1,8014,1,2,130.0,1,37,37,5,7,147.5,0,0,1,1,1,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,146.0,1,4,1,2,3,140.0,1,0,1,1,1,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,1 +1,44,1,9003,0,39,160.0,1,37,38,9,7,160.0,0,0,1,1,1,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,7,0,9003,0,3,130.0,1,1,37,4,9,130.0,1,0,1,1,1,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,19,133.1,1,34,34,99,99,96.0,0,0,1,1,0,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,136.0,1,37,37,7,7,140.9,1,0,1,1,0,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,1,9853,0,1,127.0,1,1,1,5,7,121.4,1,0,1,1,1,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,134.0,1,3,19,2,10,128.8,0,0,1,1,1,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,140.0,1,1,3,4,2,142.8,1,0,1,0,1,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,126.3,0,0,1,1,0,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.1,1,19,1,1,3,101.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9147,0,1,122.0,1,1,38,1,7,118.9,0,0,1,1,0,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,107.0,1,19,37,7,7,103.5,1,0,1,1,1,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,156.0,1,38,37,9,9,156.3,0,0,1,1,0,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,128.0,1,1,1,9,9,120.0,1,0,1,1,1,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,0 +1,17,2,9119,0,1,127.0,1,19,1,9,10,121.1,1,0,1,1,0,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,2 +1,39,1,9003,0,4,160.0,1,3,3,4,2,180.4,0,0,0,1,0,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,0 +1,43,1,9670,0,1,132.0,1,3,19,4,8,120.5,0,0,1,1,0,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,134.0,1,1,19,4,5,122.5,1,0,1,1,1,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,142.0,1,1,19,4,4,128.0,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,133.0,1,2,37,9,7,125.7,1,0,1,1,0,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,135.0,1,1,3,4,3,133.3,0,0,1,1,1,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,3,140.0,1,37,12,9,4,140.0,0,0,1,0,1,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9500,0,1,141.0,1,2,38,2,10,135.4,1,0,1,1,1,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,2 +2,43,1,9991,1,2,120.0,1,37,37,9,9,120.0,0,0,1,0,1,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,147.0,1,1,19,4,4,137.2,0,0,1,0,1,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9085,0,1,120.0,1,37,38,9,9,111.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,141.0,1,3,1,9,9,124.3,0,0,1,1,1,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,2 +1,18,1,9773,0,1,125.0,1,1,1,4,7,121.5,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,140.0,1,37,37,5,5,150.0,0,0,0,1,1,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,112.0,1,1,37,4,9,106.8,1,0,1,1,1,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,168.0,1,38,37,9,8,155.1,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,15,1,9119,0,1,133.1,41,2,2,2,2,100.0,0,0,0,1,0,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,2 +2,1,1,8014,1,1,121.0,1,37,37,9,9,114.4,1,0,1,1,1,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,136.0,1,1,38,4,5,132.2,0,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,1 +1,16,1,9070,0,1,145.0,1,1,1,3,3,146.1,1,0,1,1,1,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,2 +1,7,1,9085,0,40,140.0,1,5,3,2,2,140.0,0,0,0,1,0,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,0 +1,1,3,9085,0,1,126.0,1,38,1,9,9,132.0,1,0,1,1,1,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,146.0,1,1,37,9,9,129.3,0,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,131.0,1,37,37,9,6,127.2,0,0,1,1,1,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,139.0,1,37,37,9,9,124.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,133.1,1,37,1,5,4,151.2,0,0,1,1,0,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,170.0,1,38,19,9,2,160.6,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,131.0,1,37,37,9,6,130.7,0,0,0,1,1,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,2 +1,1,6,9500,0,1,122.0,1,19,37,3,5,116.6,1,0,0,1,0,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,1 +1,17,3,171,0,1,147.0,1,19,1,5,4,137.6,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,9,120.0,0,0,1,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,5,1,9130,0,1,157.0,1,5,43,2,2,149.7,1,0,1,1,1,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9003,0,39,160.0,1,3,1,2,6,160.0,1,0,1,0,1,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,140.0,1,9,19,4,4,131.2,0,0,1,1,0,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,1,130.0,1,1,3,2,6,110.0,0,0,1,1,0,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,1 +1,39,1,171,0,1,147.0,1,37,38,175,193,133.3,0,0,1,0,1,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,148.0,1,38,19,4,9,134.7,1,0,1,1,1,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,130.0,1,19,1,9,7,130.4,1,0,1,1,1,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,133.1,1,1,37,4,9,96.0,1,0,1,1,1,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,2 +1,39,1,9991,1,12,120.0,1,37,38,5,5,155.7,0,0,1,1,0,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,117.0,1,3,1,3,3,113.2,0,1,1,1,1,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,1 +1,17,2,9853,0,1,150.0,1,38,19,5,5,142.0,1,0,1,1,1,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,144.0,1,1,19,9,4,130.8,1,0,1,1,1,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,1 +1,17,4,9254,0,1,118.0,1,38,37,5,7,111.7,1,0,1,1,0,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,0 +1,1,6,9500,0,1,141.0,1,2,1,4,4,136.3,1,0,1,1,1,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,1 +2,39,1,9003,0,1,120.0,1,2,2,1,4,100.0,0,0,1,1,0,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,141.0,1,4,3,2,1,136.3,1,0,1,1,0,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,120.0,1,1,19,5,4,140.4,0,0,1,1,1,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,154.0,1,1,37,4,9,134.8,1,0,1,1,1,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,100.0,1,19,19,5,5,101.8,1,0,1,1,1,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,2 +1,17,3,9670,0,1,137.0,1,1,38,4,7,138.4,0,0,1,1,0,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,152.0,1,37,37,7,5,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,118.0,1,37,1,9,7,117.0,1,0,1,0,0,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,140.0,1,12,3,4,3,118.0,1,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9070,0,1,133.0,1,1,2,9,2,128.8,0,0,1,1,0,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,1 +1,39,1,171,0,1,140.0,1,37,37,9,9,100.8,0,1,1,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9070,0,42,130.0,1,40,19,3,5,130.0,1,0,1,0,1,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,143.0,1,1,19,3,3,133.9,0,0,1,1,1,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,1 +2,1,5,9500,0,1,130.0,1,1,19,4,4,122.3,0,0,1,1,1,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,9,9,125.0,1,0,1,1,1,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,120.0,1,37,37,7,8,120.0,0,0,1,1,1,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,1 +1,1,2,9147,0,1,125.0,1,1,19,4,9,124.0,1,0,1,1,1,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,131.0,1,38,19,9,9,130.0,1,0,1,1,0,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,132.0,1,1,1,4,1,119.4,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9500,0,1,135.0,1,19,19,7,7,128.0,1,0,1,1,1,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,1 +1,39,1,9500,0,19,133.1,1,38,38,9,9,114.8,0,0,1,1,1,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,130.0,1,2,2,6,6,130.0,0,0,1,0,0,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,112.0,1,19,38,9,10,112.0,1,0,1,1,1,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,2 +1,39,1,9254,0,1,170.0,1,37,37,4,6,138.3,0,0,1,1,1,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,1 +1,39,1,9147,0,19,100.0,1,38,19,7,9,132.0,0,0,0,0,0,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,133.1,1,19,19,9,9,119.0,1,0,1,0,1,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,0 +1,17,2,9085,0,1,138.0,1,37,37,9,7,123.3,1,0,1,1,1,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,2 +1,39,1,8014,1,1,133.1,1,37,37,9,9,112.5,0,0,1,1,1,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,1 +1,51,1,9670,0,1,140.0,1,12,5,3,3,126.6,0,0,1,1,0,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,1 +1,51,1,9085,0,1,125.0,1,1,1,9,4,120.0,0,0,1,1,1,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,151.0,1,1,1,4,3,132.3,0,0,1,1,0,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,1 +1,43,1,9556,0,1,130.0,1,1,37,5,5,128.0,1,0,1,1,0,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,1 +1,17,6,9670,0,1,113.0,1,4,1,3,10,112.3,0,0,1,1,1,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,17,1,9773,0,1,125.0,1,37,37,5,7,120.1,0,0,1,1,1,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,1 +1,53,1,171,0,42,130.0,1,1,19,9,9,130.0,1,0,1,0,0,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,1 +1,51,1,33,0,1,121.0,1,19,37,5,7,118.6,0,0,1,1,1,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,131.0,1,37,37,90,90,137.0,0,0,1,1,1,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,150.0,1,19,1,4,4,137.8,0,0,1,1,1,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,1,140.0,1,37,37,5,6,128.5,0,0,1,1,1,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,130.0,1,37,2,9,4,126.5,1,0,1,0,0,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,0 +1,1,2,9238,0,1,147.0,1,19,38,9,8,135.8,1,0,1,1,1,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,106.0,1,19,37,9,7,109.5,1,0,1,1,1,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,110.0,1,37,37,9,10,140.0,0,0,0,0,0,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,105.0,1,19,37,8,8,102.6,0,1,1,1,1,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,2 +1,17,6,9147,0,1,133.0,1,19,38,5,6,123.2,1,0,1,1,0,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,2 +1,43,1,9670,0,1,160.0,1,34,34,99,99,100.1,0,0,1,0,0,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,0 +4,7,1,9500,0,40,130.0,1,37,37,3,3,130.0,1,0,1,1,1,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,2 +1,43,2,9853,0,1,118.0,1,19,1,5,4,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,2 +1,43,1,8014,1,1,117.0,1,37,37,9,9,100.0,0,0,1,1,1,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,0 +1,53,1,9238,0,42,130.0,1,1,19,5,5,128.3,0,0,0,0,1,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,0 +1,43,1,9130,0,1,127.0,1,19,38,4,5,120.7,1,0,0,1,1,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,38,37,9,4,150.0,1,0,1,1,0,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,1 +1,39,1,9238,0,1,133.1,1,37,29,0,4,120.5,0,0,1,0,0,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,121.0,1,37,19,9,9,141.4,0,0,0,0,0,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,120.0,1,38,37,9,7,108.0,0,0,1,1,0,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,153.0,6,37,37,9,9,131.8,1,0,1,1,1,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,153.0,1,38,19,9,5,138.5,1,0,1,1,1,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,1 +1,17,2,9254,0,1,107.0,1,12,19,5,5,102.8,1,0,1,1,1,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9238,0,1,135.0,1,1,19,7,7,126.6,1,0,1,1,1,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,124.0,1,1,19,123,103,113.9,1,1,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,144.0,1,37,37,7,9,126.8,1,0,0,0,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9556,0,1,120.0,1,37,37,9,4,150.0,0,0,1,0,1,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,0 +1,43,3,171,0,1,120.0,1,37,37,9,9,143.3,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,140.0,1,38,19,4,10,122.3,1,0,1,1,1,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,157.0,1,3,38,1,5,136.7,1,0,1,1,1,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,2 +2,39,1,9991,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,150.0,1,3,1,2,8,153.8,1,0,1,1,1,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,130.0,1,2,1,2,7,126.2,1,0,1,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,142.0,1,37,37,9,9,132.9,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,43,1,9238,0,1,124.0,1,1,1,3,1,118.8,1,0,0,0,1,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,1,19,4,5,100.0,0,0,1,1,0,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,2 +1,17,5,9238,0,1,122.0,1,37,37,7,5,112.9,1,0,1,1,1,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,97.5,1,0,1,1,0,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,171,0,1,140.0,1,1,3,3,3,138.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,132.0,1,1,1,3,3,119.4,1,0,1,1,1,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,1 +1,42,1,9500,0,1,100.0,1,3,19,2,8,153.0,0,0,1,1,0,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,2 +1,1,1,9254,0,1,123.0,1,38,37,5,5,125.1,0,0,1,1,1,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9130,0,1,133.0,1,38,38,5,8,120.4,1,0,1,1,1,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,1 +1,17,4,9773,0,1,129.0,1,3,1,2,7,132.5,1,0,1,1,0,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,2 +4,39,1,9003,0,19,133.1,1,37,37,9,9,110.0,0,0,1,1,0,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,133.0,1,3,1,9,3,123.2,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,137.0,1,38,19,9,5,129.3,1,0,1,1,1,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,123.0,1,3,1,2,9,127.6,1,0,1,1,0,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,2 +2,39,1,9085,0,19,133.1,1,19,19,9,5,101.0,1,0,1,1,1,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,116.0,1,19,19,7,7,111.1,1,0,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,1,1,9070,0,1,147.0,1,3,1,2,3,149.8,1,0,1,1,0,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,100.0,1,37,37,7,9,100.0,1,0,1,1,1,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,141.0,1,38,38,7,7,132.5,1,0,1,1,1,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,168.0,1,1,1,5,5,161.0,1,0,1,1,0,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,0 +5,39,1,9003,0,19,133.1,1,19,1,9,9,119.4,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,114.0,1,1,19,9,9,111.9,1,0,1,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,2 +1,39,1,9500,0,1,130.0,1,37,37,3,7,143.8,0,0,1,1,0,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,133.1,1,19,19,9,7,100.0,0,0,1,1,0,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,0 +1,17,3,9853,0,1,132.0,1,34,34,0,0,131.3,1,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,157.0,1,37,37,9,9,143.0,0,0,1,1,0,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,1 +5,42,1,9254,0,2,120.0,1,37,37,4,9,120.0,0,0,1,1,1,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,6,1,1,192,144,129.8,0,0,1,1,0,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,2 +1,1,2,9500,0,1,139.0,1,38,37,9,7,125.0,1,0,1,1,1,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,1 +1,17,4,9238,0,1,133.1,1,1,19,9,5,95.0,1,0,1,1,1,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,180.0,1,37,37,7,4,153.8,1,0,1,1,1,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,4,9773,0,1,133.0,1,1,19,9,9,119.7,1,0,1,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,1 +1,17,5,9500,0,1,124.0,1,3,38,2,1,119.8,0,0,1,1,0,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,133.1,1,37,37,9,9,148.2,1,0,0,1,1,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,2 +2,39,1,9991,1,19,133.1,1,37,37,9,7,114.8,0,0,0,1,0,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,133.1,1,1,19,4,8,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,180.0,41,37,37,9,9,152.7,1,0,0,0,0,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9085,0,1,130.0,1,19,19,90,7,115.8,0,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,161.0,1,38,37,5,5,154.4,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,148.0,1,1,38,4,5,148.7,0,0,1,1,0,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,19,38,9,7,131.3,1,0,0,1,1,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,122.0,1,1,1,4,9,112.9,1,0,1,1,1,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,1,4,9500,0,1,142.0,1,38,38,9,8,129.8,1,0,1,1,1,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,1 +3,39,1,9003,0,1,170.0,1,1,37,6,6,170.0,0,0,0,1,1,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,2 +1,1,2,9147,0,1,130.0,1,37,37,9,9,117.8,0,0,1,1,1,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9147,0,1,140.0,1,37,37,9,7,132.3,1,0,1,1,1,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,132.0,1,2,1,9,9,126.4,1,1,1,1,1,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,140.0,1,1,3,9,2,140.0,1,0,1,1,1,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,117.0,1,1,19,4,4,109.3,0,0,1,1,0,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,176.0,1,3,38,3,7,169.7,0,0,1,1,1,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,133.1,1,37,38,7,7,98.0,1,0,1,1,0,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,136.0,1,3,3,2,2,128.7,0,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,12,38,4,9,107.0,1,0,1,1,1,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,0 +1,17,1,9130,0,1,156.0,1,2,9,3,5,166.9,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,1 +1,17,1,9130,0,1,123.0,1,19,3,3,2,121.6,1,0,0,1,1,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,171,0,1,129.0,1,1,1,9,9,124.8,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9119,0,1,125.0,1,19,1,5,4,121.5,1,0,1,1,0,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,0 +1,17,1,9085,0,1,163.0,14,37,37,9,9,150.8,1,0,1,1,1,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,1 +1,7,2,9130,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,1,9085,0,1,135.0,1,1,2,9,1,134.3,1,0,1,1,1,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,19,37,6,6,120.0,0,0,1,1,1,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,1,130.0,1,37,37,9,7,133.0,1,0,1,1,1,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,143.0,1,1,19,4,6,135.0,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +4,43,2,9991,1,38,133.1,1,3,1,2,9,125.4,0,0,1,1,0,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,140.0,1,3,1,2,4,124.1,0,0,1,1,1,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,37,38,175,103,127.0,0,0,1,1,0,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,151.0,1,1,3,1,1,111.0,0,0,1,1,0,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,133.0,1,37,19,9,8,141.4,0,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,133.1,1,38,37,5,5,108.0,0,0,1,1,1,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,9147,0,1,118.0,1,3,19,2,4,113.8,1,0,1,1,1,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,1,1,3,5,141.7,0,0,1,1,1,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,42,1,9119,0,1,130.0,1,19,37,9,3,135.0,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,0 +4,39,2,9147,0,19,133.1,1,37,37,9,7,116.4,0,0,0,0,0,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,148.0,1,19,38,9,8,134.8,1,0,1,1,0,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,116.0,1,19,19,4,7,110.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,1 +1,1,5,9147,0,1,122.0,1,38,38,9,9,117.5,1,0,0,0,1,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,122.0,1,37,37,9,9,125.9,1,0,1,1,0,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,171,0,1,127.0,1,1,1,9,5,124.2,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9147,0,39,117.4,1,19,1,4,9,117.4,1,0,1,1,1,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,150.0,1,37,38,9,9,146.2,0,0,1,1,1,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,2 +1,17,1,9254,0,1,158.0,1,37,37,5,9,138.1,1,0,1,1,1,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,0 +1,7,1,9500,0,3,140.0,1,1,37,9,5,140.0,0,0,1,1,1,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,1 +1,44,1,9238,0,39,140.0,1,1,1,9,3,135.7,1,0,1,1,1,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +2,7,1,171,0,3,120.0,1,19,19,9,9,130.0,1,0,1,1,0,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,10,100.0,1,34,34,0,0,113.0,1,0,1,1,1,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,1 +1,1,1,8014,1,1,125.0,1,37,37,9,7,114.9,0,0,1,1,1,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,1 +1,18,6,9500,0,1,124.0,1,37,37,9,7,117.8,0,0,1,1,1,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,1 +1,1,1,9773,0,1,109.0,1,2,3,3,3,111.8,1,0,0,1,0,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,149.0,1,1,1,9,3,156.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +2,44,1,9119,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,2 +1,44,1,9130,0,39,120.0,6,4,4,3,6,120.0,0,0,0,0,1,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,0 +5,1,3,9085,0,1,133.0,1,19,19,4,7,119.7,1,0,1,1,1,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,2 +1,1,1,9085,0,1,127.0,1,37,37,9,9,122.8,1,0,1,1,1,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,171,0,39,140.0,1,1,1,9,9,140.0,0,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9773,0,1,132.0,1,1,1,4,9,124.3,1,0,0,1,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +4,39,2,9670,0,19,133.1,1,19,1,90,90,103.0,0,0,1,0,0,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,26,1,9147,0,2,133.1,1,34,34,0,0,121.5,1,0,1,1,1,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,143.0,1,19,38,9,6,131.5,1,0,1,1,0,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,1 +1,17,1,9147,0,1,123.0,1,1,19,3,4,122.0,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,171,0,1,133.1,1,3,1,2,3,141.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,19,37,9,4,120.0,0,0,1,1,1,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,1,1,3,3,125.7,1,0,1,1,1,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,121.0,1,37,37,5,5,118.9,1,0,1,1,1,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,1 +1,51,1,9500,0,1,129.0,1,37,38,3,3,137.8,1,0,1,1,1,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,144.0,1,3,1,2,4,134.9,1,0,0,1,1,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,0 +1,17,5,9254,0,1,113.0,1,1,1,2,3,110.2,1,0,1,1,0,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,1,133.1,1,1,19,4,5,120.0,1,0,1,1,0,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,0 +1,39,1,9254,0,19,133.1,1,19,1,9,5,97.0,0,0,0,0,0,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9500,0,1,126.0,1,1,19,6,7,115.5,1,0,1,1,1,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,1 +1,42,1,9853,0,1,141.0,1,37,19,9,3,133.0,0,0,1,1,1,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,0 +1,39,1,9085,0,19,133.1,1,19,19,4,9,139.9,1,0,1,1,1,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,43,2,9254,0,1,140.0,1,19,19,9,9,126.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,108.0,1,34,38,0,3,105.9,0,0,1,1,0,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,114.0,1,19,19,9,7,107.7,0,0,1,1,1,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,0 +1,17,1,171,0,1,130.0,1,3,1,9,9,126.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.1,1,19,37,0,0,137.0,1,0,1,1,1,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9119,0,1,117.0,1,1,2,3,2,119.8,1,0,1,1,0,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9147,0,1,115.0,1,1,37,4,9,117.1,1,0,0,1,1,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,130.0,1,12,19,4,5,118.5,0,1,1,1,1,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,34,37,5,5,120.4,0,0,1,0,1,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,0 +1,44,1,171,0,39,150.0,1,19,1,9,9,154.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,43,1,9147,0,1,140.0,1,37,37,6,6,122.9,0,0,1,1,1,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,0 +1,42,1,9070,0,1,100.0,1,3,2,2,2,115.9,0,0,1,1,1,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,2 +1,17,1,171,0,1,128.0,1,1,1,4,10,134.7,0,0,1,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,1,1,9,9,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,110.0,1,37,37,7,7,133.9,0,0,1,1,1,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,0 +1,43,1,9773,0,1,119.0,1,19,37,5,5,105.0,1,0,1,1,1,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,2 +2,43,1,9991,1,1,140.0,1,37,37,4,1,122.7,0,0,1,1,0,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,135.0,1,37,1,3,5,121.0,0,0,1,1,1,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,123.0,1,3,1,2,3,124.1,1,0,1,1,1,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,0 +1,17,1,9670,0,1,132.0,1,19,1,5,4,119.1,0,0,0,1,0,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,5,9254,0,1,130.0,1,37,38,9,9,122.7,1,0,0,1,0,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9147,0,1,117.0,1,1,38,8,9,117.0,1,0,1,1,0,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,140.0,1,19,19,9,6,135.4,1,0,1,1,1,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,162.0,1,37,37,9,6,132.0,0,0,0,1,0,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,139.0,1,19,38,4,9,128.5,1,0,1,1,1,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,0 +4,39,1,9991,1,1,130.0,1,38,19,9,7,148.0,0,0,1,1,1,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +5,43,1,9500,0,1,131.0,1,1,38,5,5,118.8,0,0,1,1,1,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,5,9238,0,1,126.0,1,38,1,9,5,125.7,1,0,1,1,1,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,1 +1,53,1,9085,0,42,140.0,1,1,1,4,3,140.0,1,0,0,1,1,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,128.0,1,1,1,4,5,120.8,1,0,1,1,1,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,139.0,1,37,37,9,6,133.5,1,0,1,1,1,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,150.0,1,38,38,4,1,150.0,1,0,1,1,0,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,9147,0,1,133.1,1,1,1,4,4,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9853,0,1,140.0,1,37,19,9,8,122.3,0,0,1,1,1,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,0 +1,43,1,8014,1,1,120.0,1,38,19,5,4,118.3,0,0,1,1,1,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,2 +1,7,1,9130,0,3,140.0,1,2,38,2,3,140.0,1,0,1,0,0,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,122.0,1,9,19,90,6,103.4,0,0,1,1,1,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,1 +2,39,1,9070,0,19,133.1,1,37,37,9,10,126.3,0,0,1,0,0,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,160.0,1,38,38,7,7,147.8,0,0,1,1,1,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,2 +1,39,1,9238,0,12,100.0,1,37,37,9,9,124.3,0,0,1,1,0,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,1 +1,18,2,8014,1,1,117.0,1,3,1,3,4,111.8,1,0,1,1,1,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,38,37,7,7,140.0,0,0,1,1,0,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,0 +1,43,1,9853,0,1,140.0,1,3,1,3,3,128.3,1,0,1,1,1,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,127.0,1,37,38,9,9,120.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,1,161.0,1,19,37,4,10,100.0,0,0,1,1,0,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,1 +1,16,4,9500,0,1,145.0,1,1,1,4,4,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,1 +1,7,1,9853,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,0 +1,1,2,171,0,1,127.0,1,2,19,5,5,139.6,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,148.0,1,19,19,4,4,133.8,0,0,1,1,1,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,140.0,1,19,19,1,1,129.5,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,171,0,1,129.0,1,37,37,9,9,122.0,1,0,1,0,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,1,12,3,10,131.6,1,0,1,1,1,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,130.0,1,38,37,3,6,135.6,1,0,1,1,1,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,0 +1,51,1,9991,1,39,120.0,1,1,4,4,10,118.1,0,0,1,1,0,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,0 +1,39,1,9853,0,19,133.1,1,19,4,9,4,116.0,1,0,1,1,1,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9238,0,1,133.1,1,1,37,8,9,118.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,4,9500,0,1,125.0,1,19,1,1,1,117.8,1,0,1,1,1,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,141.0,1,1,38,4,5,125.0,1,0,1,1,1,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,121.0,1,38,38,7,5,120.0,1,0,1,1,1,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,2 +1,17,3,9500,0,1,142.0,1,3,3,3,3,132.9,1,0,1,1,0,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,0 +1,44,1,9238,0,39,140.0,1,37,19,191,102,136.1,1,0,0,1,1,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,2 +1,39,1,9991,1,2,140.0,1,3,3,2,2,155.7,1,0,1,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9119,0,1,135.0,1,12,19,5,5,121.0,0,0,1,1,0,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,135.0,1,3,3,2,2,123.0,1,0,1,0,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,117.0,1,1,1,4,4,117.7,1,0,1,1,0,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +1,43,1,171,0,1,120.0,1,3,3,2,2,120.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,1,38,1,7,120.0,0,0,1,1,1,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,1 +1,17,3,9238,0,1,122.0,1,19,19,7,7,117.5,1,0,1,1,1,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,1,37,37,9,9,144.2,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +4,39,1,9500,0,1,140.0,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,131.0,1,19,19,9,9,139.8,1,0,1,1,1,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,127.0,1,3,3,2,5,100.0,0,0,1,1,1,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,2 +1,39,1,9085,0,1,133.1,1,3,19,2,9,110.0,0,0,1,1,1,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,0 +4,39,1,9500,0,19,133.1,1,38,1,9,4,120.0,0,0,1,1,1,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,1 +1,16,1,9085,0,1,150.0,1,3,3,2,1,153.5,1,0,1,1,1,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,153.0,1,19,37,9,9,153.7,0,0,1,1,1,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,130.0,1,19,19,3,8,131.8,0,0,1,1,1,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,1,2,9853,0,1,131.0,1,1,1,2,9,121.9,1,0,1,1,1,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,136.0,1,3,3,3,3,130.8,0,0,1,1,1,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,126.0,1,1,19,4,0,120.1,0,1,1,1,1,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +1,44,1,9003,0,1,120.0,1,3,2,2,6,120.0,1,0,1,1,0,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,2 +2,39,1,9130,0,19,133.1,1,2,1,2,9,157.0,1,0,1,1,0,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,1 +1,7,1,9853,0,3,150.0,1,19,19,4,5,150.0,0,0,0,0,1,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,51,1,9070,0,12,133.1,1,37,19,3,7,106.6,0,0,0,1,1,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,2 +1,1,2,9085,0,1,157.0,1,3,3,5,2,153.9,1,0,1,1,1,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,1 +1,1,2,171,0,1,117.0,1,1,19,3,3,121.6,1,0,1,1,1,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,1 +1,1,2,9147,0,1,113.0,1,38,38,9,5,107.4,1,0,1,1,0,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,2 +1,39,2,9147,0,12,133.1,1,19,38,9,9,120.0,1,0,0,0,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,152.0,1,37,37,9,9,139.0,1,0,1,1,1,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,138.0,1,1,19,9,9,124.0,0,0,1,1,1,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,1 +2,39,1,9853,0,1,110.0,1,37,37,9,9,95.5,0,0,0,0,1,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9130,0,1,150.0,1,19,19,4,4,130.0,0,0,1,0,0,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,3,9119,0,1,138.0,1,1,19,4,3,125.4,1,0,1,1,0,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,0 +1,17,6,9147,0,1,120.0,1,37,38,9,9,115.5,1,0,0,0,0,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,2 +1,1,3,9670,0,1,134.0,1,14,11,0,0,128.4,1,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,145.0,1,38,37,9,7,129.3,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,18,6,9500,0,1,126.0,1,37,37,5,5,122.8,1,0,1,1,1,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,133.0,1,1,1,4,4,129.2,1,0,1,1,1,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,0 +1,44,1,9070,0,39,120.0,1,1,19,4,7,120.0,0,0,0,0,0,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,136.0,1,19,38,9,9,121.7,0,1,1,1,1,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,126.0,1,1,1,9,10,126.7,1,0,1,1,1,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,1 +1,1,3,9085,0,1,134.0,1,38,19,9,5,129.1,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,133.1,1,1,37,9,9,117.0,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,5,9238,0,1,130.0,1,19,1,5,5,130.0,1,0,1,1,1,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,8014,1,40,140.0,1,19,37,5,9,148.0,0,0,1,1,1,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,137.0,1,3,38,1,9,131.4,0,0,1,0,0,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,0 +1,1,2,9670,0,1,123.0,1,1,38,7,7,120.6,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,139.0,1,3,1,2,7,124.0,1,0,1,1,1,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,0 +1,1,2,171,0,1,152.0,1,38,19,9,9,151.7,1,0,1,1,1,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,110.0,1,37,37,9,4,114.3,1,0,1,1,0,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,2 +1,51,1,9991,1,1,120.0,1,38,3,5,3,128.2,0,0,0,1,0,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,141.0,1,3,2,2,2,133.3,1,0,1,1,0,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,2 +1,5,1,171,0,1,137.0,1,3,19,1,10,144.7,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,2 +1,43,1,9003,0,1,130.0,1,37,1,5,4,130.0,0,0,1,1,0,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,0 +1,18,1,9773,0,1,135.0,1,1,1,3,3,129.8,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,150.0,1,38,38,9,8,150.0,1,0,1,1,0,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,1 +1,17,2,9773,0,1,150.0,1,1,1,4,5,130.8,0,0,1,1,0,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9773,0,1,123.0,1,1,1,4,7,125.1,1,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,1 +1,17,4,9119,0,1,129.0,1,34,36,0,5,118.9,1,0,1,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,0 +1,1,2,9500,0,1,144.0,1,38,37,9,9,128.8,1,0,1,1,0,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,130.0,1,38,38,9,9,150.0,0,0,0,0,0,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,128.0,1,1,1,7,7,120.5,1,0,1,1,1,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,2 +1,7,1,9500,0,3,140.0,1,3,1,4,4,140.0,0,0,1,1,1,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,134.0,1,19,19,1,1,120.4,1,0,1,1,0,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,147.0,1,1,38,4,8,141.1,1,0,1,1,1,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,126.0,1,3,1,5,5,125.7,0,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,1 +2,1,4,9853,0,1,134.0,1,37,37,5,7,122.5,0,1,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,148.0,1,38,38,4,9,131.6,0,0,1,1,0,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,0 +2,39,1,9085,0,9,133.1,1,1,1,4,4,120.0,1,0,1,0,0,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,0 +1,39,1,9254,0,1,150.0,1,3,1,3,4,122.3,0,0,1,1,0,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,125.0,1,19,37,3,7,126.8,0,0,1,1,1,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,2 +1,18,1,9670,0,1,128.0,1,19,3,9,7,120.0,1,0,1,1,1,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,160.0,1,2,1,4,4,137.3,1,0,1,1,1,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,1 +2,39,1,9238,0,42,170.0,1,19,38,8,8,159.5,0,0,1,1,0,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9773,0,1,143.0,1,1,1,4,9,144.1,1,0,1,1,0,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,9991,1,1,130.0,1,37,37,9,9,127.8,0,0,1,1,0,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,51,1,9147,0,1,130.0,1,19,38,9,8,115.7,0,0,1,1,0,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,2 +1,17,3,9773,0,1,135.0,1,1,19,5,7,135.0,0,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,135.0,1,1,1,9,9,133.3,0,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,6,9500,0,1,136.0,1,1,1,4,5,123.3,0,0,1,0,1,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,143.0,1,5,5,2,2,137.8,0,0,1,1,0,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,133.1,1,1,19,141,114,140.0,1,0,1,1,1,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,17,6,9670,0,1,117.0,1,38,19,0,1,114.6,0,0,1,0,0,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,133.1,1,1,19,4,10,145.8,0,0,1,1,0,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,129.0,1,1,37,4,9,118.2,0,0,1,1,0,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,1 +1,7,1,9500,0,3,130.0,1,37,37,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,1 +1,17,4,9670,0,1,135.0,1,38,38,9,7,127.0,1,0,1,1,1,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,126.0,1,1,1,90,90,119.0,1,0,0,1,0,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9773,0,1,120.0,1,1,38,5,5,121.4,0,0,1,0,1,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,136.0,1,1,38,9,9,130.8,1,0,1,1,1,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,131.0,1,19,37,9,9,123.8,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,144.0,1,19,19,9,9,142.6,1,0,1,1,1,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,126.0,1,38,38,7,8,126.7,1,0,1,1,1,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,3,171,0,1,125.0,1,37,37,5,10,120.5,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,7,1,9130,0,2,110.0,1,19,19,4,8,110.0,1,0,1,1,0,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,3,1,2,8,150.0,0,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,5,171,0,1,139.0,1,19,3,9,2,136.9,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,1,9147,0,1,100.0,1,38,38,5,5,101.8,1,0,1,1,1,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,2 +1,44,2,9238,0,39,150.0,1,3,19,4,9,147.0,1,0,1,1,1,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,39,1,9254,0,19,133.1,1,37,37,9,4,100.0,0,0,1,1,0,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,0 +1,17,1,9130,0,1,130.0,1,19,38,4,7,122.5,0,0,1,1,0,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,19,37,1,1,140.0,0,0,0,1,0,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,2 +1,17,1,9070,0,1,157.0,1,3,3,3,3,146.2,0,0,1,1,0,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,9500,0,1,150.0,1,37,19,8,4,130.8,0,0,1,1,0,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,133.1,1,19,19,7,7,130.0,1,0,1,1,1,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,150.0,1,19,1,9,8,150.0,1,0,1,1,0,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,127.0,1,1,19,7,7,121.8,1,0,1,1,1,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,2 +1,1,1,9853,0,1,148.0,1,19,19,5,7,141.7,0,0,1,1,1,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,130.0,1,1,19,9,9,133.4,0,0,1,1,1,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,123.0,1,37,38,3,3,122.0,0,0,0,1,0,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,2 +1,17,1,9070,0,1,132.0,1,37,38,9,7,138.0,0,0,1,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,146.0,1,2,19,3,9,130.3,1,0,1,1,0,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,1 +1,44,1,171,0,39,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,116.0,1,3,1,3,4,115.7,0,0,1,0,0,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,2 +1,1,1,9670,0,1,130.0,1,19,37,4,5,118.8,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,124.0,1,37,37,7,9,121.2,0,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,127.0,1,19,37,9,3,120.7,1,0,1,1,1,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +2,43,1,9070,0,2,140.0,1,37,37,6,6,140.0,1,0,1,1,0,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,1 +1,39,1,9500,0,1,100.0,1,3,1,2,5,121.3,1,0,1,1,1,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,2 +1,39,1,9991,1,19,133.1,1,37,37,9,6,105.3,0,0,0,1,1,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9670,0,1,155.0,1,1,19,4,8,134.7,1,0,1,1,1,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,15,1,9119,0,1,160.0,32,1,3,143,152,160.0,0,0,0,1,1,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,2 +1,53,1,9670,0,42,140.0,1,19,37,3,6,140.0,1,0,0,1,1,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,2 +1,1,6,9853,0,1,140.0,1,38,38,9,7,137.6,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,140.0,1,19,19,7,7,129.5,1,0,1,1,1,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,1 +1,39,1,9773,0,19,133.1,1,19,19,3,4,104.0,0,0,0,0,1,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,130.0,1,37,37,9,9,118.8,0,0,0,1,0,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,136.0,1,1,1,9,1,133.0,1,0,1,1,1,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,143.0,1,38,38,9,9,138.8,1,0,1,1,1,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,1 +2,39,1,9147,0,1,140.0,1,37,37,6,10,131.8,0,0,1,1,1,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,2 +1,39,1,9085,0,1,130.0,1,4,1,2,9,120.0,0,0,1,0,1,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,2 +1,1,4,9500,0,1,148.0,1,19,19,4,5,137.0,1,0,1,1,1,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,120.0,1,37,19,5,3,156.0,1,0,1,1,0,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,9853,0,1,133.1,1,12,1,4,0,134.8,1,0,1,1,1,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,122.0,1,1,1,9,8,120.3,0,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,156.0,1,19,38,9,5,170.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,3,171,0,1,129.0,1,38,37,9,3,127.3,1,0,0,0,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,142.0,1,38,38,9,10,127.0,1,0,1,1,1,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,150.0,1,38,19,3,3,120.1,0,0,1,0,1,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,141.0,1,37,37,9,9,126.7,1,0,0,1,1,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,43,3,9147,0,1,127.0,21,3,37,3,3,117.9,1,0,1,1,1,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,1,120.0,1,1,19,4,7,110.0,0,0,1,1,0,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,0 +2,42,1,9254,0,1,136.0,1,2,2,134,112,130.0,1,0,1,1,0,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,0 +1,18,1,9119,0,1,122.0,1,19,1,90,3,116.1,1,0,0,0,0,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9500,0,1,120.0,1,2,4,4,5,136.6,0,0,1,1,0,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,0 +1,18,1,9070,0,1,143.0,1,38,38,7,5,141.6,0,0,1,1,1,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,1 +1,43,1,9119,0,1,140.0,1,37,38,5,7,146.5,0,0,1,1,0,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,125.0,1,19,19,9,9,121.5,1,0,1,1,1,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,1,0,1,1,1,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,159.0,1,3,3,2,2,165.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,127.0,1,3,1,2,9,119.3,1,0,1,1,1,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,1 +1,17,6,9238,0,1,117.0,1,1,38,4,7,114.6,0,0,1,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9119,0,1,148.0,1,19,19,9,8,129.8,0,0,1,0,0,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,2 +1,17,4,9119,0,1,127.0,1,19,19,5,5,120.4,1,0,0,0,0,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,5,9500,0,1,144.0,1,19,1,5,3,141.0,1,0,1,1,1,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,1 +1,17,3,9556,0,1,126.0,1,19,19,9,4,119.0,1,0,1,1,1,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,0 +1,1,4,9119,0,1,126.0,1,3,19,2,9,123.6,1,0,1,1,0,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,120.0,1,1,2,144,123,125.3,0,0,0,1,0,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,2 +1,39,1,9070,0,1,130.0,1,1,19,4,4,110.0,1,0,1,1,1,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,140.0,1,37,37,90,5,115.5,0,0,1,0,0,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,130.0,1,38,38,9,9,120.0,0,0,1,1,1,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,0 +1,17,2,9853,0,1,141.0,1,3,1,1,5,130.2,1,0,1,1,1,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,2 +2,1,1,9500,0,1,156.0,1,1,1,9,10,135.5,0,0,1,1,1,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,1 +2,7,1,8014,1,3,170.0,1,19,19,4,4,170.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,2,9147,0,1,134.0,1,37,19,9,8,126.3,1,0,1,1,1,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,122.0,1,12,12,5,7,126.6,1,0,1,1,1,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,38,38,9,7,138.8,1,0,1,1,1,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,132.0,1,37,37,5,7,127.5,1,0,1,1,1,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,1 +1,16,2,9238,0,1,130.0,1,37,37,5,6,126.9,1,0,1,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,110.0,1,3,2,3,3,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,127.0,1,2,19,4,5,121.8,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,1 +1,39,1,9085,0,12,133.1,1,38,19,9,8,138.3,1,0,0,0,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +1,39,1,9147,0,19,133.1,1,3,1,3,5,153.2,1,0,0,1,1,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,37,19,5,9,130.0,1,0,1,1,1,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +2,39,2,9147,0,1,130.0,1,19,37,4,7,140.0,0,0,1,1,0,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,128.0,1,19,19,7,7,124.4,0,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,19,3,8,150.3,1,0,1,1,0,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,143.0,1,38,19,7,9,129.5,1,0,1,1,1,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,1 +1,42,1,9500,0,6,141.0,1,37,1,9,4,145.0,0,0,1,1,1,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,1 +1,17,1,9238,0,1,160.0,1,19,37,6,6,144.3,0,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,2,9238,0,1,133.1,1,19,19,4,5,120.6,1,0,1,1,1,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,37,19,9,3,116.5,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,127.0,1,1,1,3,4,130.2,1,0,1,1,0,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,4,9254,0,1,131.0,1,38,36,9,9,124.0,1,0,1,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,1 +1,1,5,9254,0,1,120.0,1,37,37,9,7,127.0,1,0,1,1,1,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,135.0,1,34,34,0,0,134.1,1,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9254,0,1,133.1,1,37,37,9,6,121.5,0,0,1,1,0,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,144.0,1,38,38,5,7,128.0,1,0,1,1,1,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,132.0,1,1,19,6,6,124.7,1,0,1,1,0,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,1 +1,17,2,9991,1,1,116.0,1,37,19,9,4,118.5,0,0,1,1,0,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,133.1,1,1,1,9,1,103.0,1,0,1,1,1,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,16,5,9085,0,1,134.0,1,19,37,8,8,123.9,1,0,1,1,0,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,2 +1,43,1,9773,0,1,114.0,1,37,38,9,5,107.4,1,0,1,0,0,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,38,37,5,7,120.0,1,0,1,1,1,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,135.0,1,1,38,4,6,122.1,0,1,0,0,0,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,0 +2,39,1,8014,1,1,150.0,1,37,37,7,5,143.0,0,0,1,1,1,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,1 +1,44,1,9991,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,1 +4,39,1,9238,0,19,133.1,1,37,37,9,10,103.5,0,0,1,0,1,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,126.0,1,19,38,9,9,132.0,1,0,1,1,1,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,125.0,1,1,1,7,3,143.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,39,1,9147,0,1,120.0,1,37,1,9,1,122.7,0,0,1,0,1,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +2,7,1,8014,1,3,124.4,1,37,34,0,0,130.0,0,0,1,1,1,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,1 +1,18,1,9085,0,1,106.0,1,1,19,3,5,104.6,0,0,1,0,0,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,2 +1,44,1,9119,0,39,160.0,1,3,38,2,3,160.0,0,0,0,0,0,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,148.0,1,3,19,2,5,130.0,0,0,1,1,1,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,2 +1,1,1,9130,0,1,133.0,1,1,37,9,9,123.2,1,0,1,1,1,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,17,5,9500,0,1,130.0,1,19,1,9,4,128.8,1,0,1,1,1,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,149.0,1,19,1,9,9,137.8,1,0,1,1,0,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,1 +4,43,1,9670,0,1,150.0,1,37,37,9,6,110.0,0,0,1,1,1,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,1 +2,39,1,9119,0,1,110.0,1,19,19,0,5,137.0,0,0,0,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9556,0,1,122.0,1,19,19,3,10,113.3,1,0,1,1,1,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,140.0,1,1,19,4,5,127.5,0,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,3,9070,0,1,128.0,1,37,37,5,5,124.5,1,0,1,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,1 +1,44,1,9085,0,39,150.0,6,5,4,1,1,150.0,0,0,1,1,1,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,131.0,1,38,37,7,7,127.2,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,130.0,1,37,37,9,6,126.5,1,0,1,1,1,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,1 +1,17,1,9119,0,1,116.0,1,19,37,90,5,116.7,1,0,1,1,0,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,0 +1,17,3,9853,0,1,140.0,1,38,38,5,7,126.7,1,0,1,1,1,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,0 +1,17,4,9238,0,1,129.0,1,37,37,9,8,117.1,1,0,1,1,0,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,144.0,1,19,19,9,9,130.5,1,0,1,1,1,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,124.0,1,19,1,7,10,116.0,1,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,122.0,1,1,19,4,4,127.3,1,0,0,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,12,12,4,1,155.3,1,1,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +2,15,1,9773,0,1,133.1,41,37,37,9,6,100.0,0,0,1,1,1,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,138.0,41,1,1,9,9,126.5,1,0,1,1,1,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,1 +1,18,6,9500,0,1,142.0,1,38,37,9,5,128.0,1,0,1,0,1,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,3,1,2,3,140.0,1,0,1,1,1,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,2 +1,42,1,9991,1,1,150.0,1,19,19,5,5,113.7,0,0,1,1,0,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,135.0,1,1,19,5,5,130.1,1,0,1,1,1,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,2,9254,0,1,120.0,1,19,1,9,8,117.2,0,0,1,1,0,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,130.0,1,19,19,9,7,119.5,1,0,1,1,0,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,133.0,1,1,1,4,5,136.2,1,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,15,1,9147,0,1,133.1,21,1,3,192,3,100.0,0,0,0,1,0,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,2 +1,1,1,9670,0,1,112.0,1,37,1,7,0,110.6,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9238,0,1,117.0,1,19,19,9,9,117.0,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9991,1,1,140.0,1,1,37,9,8,154.5,0,0,1,1,1,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,97.0,1,0,1,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,119.0,1,37,37,5,4,118.0,1,0,1,1,0,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,112.0,1,19,38,5,7,107.1,1,0,1,1,1,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,1 +2,18,2,8014,1,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,144.0,1,37,37,9,6,129.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,120.0,100,1,1,4,7,119.5,0,0,0,1,1,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,136.0,1,19,38,5,8,130.3,1,0,1,1,1,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,7,9,121.3,1,0,1,1,1,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,135.0,1,1,4,5,3,124.9,0,0,1,1,1,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,4,9670,0,1,128.0,1,38,38,3,7,121.0,1,0,1,1,1,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,15,1,9556,0,1,114.0,26,3,19,122,144,114.0,0,0,1,1,1,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,2 +1,17,2,9238,0,1,125.0,1,19,19,3,3,118.0,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,118.0,1,37,37,7,7,114.2,0,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,2 +1,17,1,9147,0,1,115.0,1,19,37,5,7,112.9,1,0,1,0,0,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,120.0,1,19,37,9,9,118.3,0,0,0,0,0,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9119,0,10,133.1,1,34,37,0,0,128.8,1,0,1,1,0,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,115.0,1,19,38,5,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,137.0,1,37,37,9,9,132.8,1,0,1,1,1,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9003,0,1,148.0,1,19,37,9,9,131.6,1,0,1,1,0,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9773,0,1,161.0,1,1,19,4,7,148.4,0,0,1,1,1,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,1 +2,43,1,9991,1,1,133.1,1,37,37,9,7,113.5,0,0,1,1,1,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,132.0,1,1,1,9,9,133.8,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,1,9254,0,1,125.0,1,37,37,9,9,122.9,0,0,1,1,0,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,123.0,1,3,1,9,3,121.3,1,0,1,1,1,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,2 +1,17,1,9991,1,1,154.0,1,38,38,4,5,134.1,0,0,1,1,1,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,2 +1,44,1,9130,0,39,140.0,1,19,19,5,5,140.0,1,0,0,0,1,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,2 +1,53,1,9085,0,42,170.0,1,1,19,4,7,170.0,0,0,1,1,1,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,1 +1,17,5,9147,0,1,131.0,1,19,38,3,10,119.8,1,0,1,1,1,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,141.0,1,19,19,9,9,126.0,1,0,1,1,1,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,1 +1,1,3,9500,0,1,137.0,1,19,19,5,4,131.5,1,0,1,1,1,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,118.0,1,19,1,9,3,113.5,1,0,0,1,1,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,100.0,1,37,37,99,99,100.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9130,0,1,120.0,6,1,3,9,2,120.0,0,0,0,1,1,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,2 +1,1,1,9147,0,1,127.0,1,19,19,5,5,129.8,1,0,1,1,1,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,134.0,1,37,37,9,9,129.8,1,0,1,1,1,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,121.0,1,37,37,5,9,116.5,1,0,1,1,1,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9070,0,1,117.0,1,19,37,5,5,131.0,1,0,0,0,0,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,125.0,1,1,38,9,7,119.8,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,5,9500,0,1,140.0,1,1,1,4,3,131.1,1,0,1,1,1,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,1 +1,1,5,9254,0,1,101.0,1,3,19,3,9,98.9,1,0,1,1,0,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,130.0,1,37,38,7,9,117.8,0,0,0,1,1,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,128.0,1,34,19,3,0,141.0,1,0,1,0,1,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,150.0,1,38,37,9,9,130.8,0,0,1,1,0,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,125.0,1,1,19,4,7,116.6,0,0,1,1,0,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,1 +1,43,1,9670,0,1,130.0,1,34,34,0,0,114.8,0,0,1,1,0,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,1 +2,42,1,9003,0,1,120.0,1,3,1,2,2,113.3,0,0,1,1,0,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +4,39,1,9991,1,1,133.1,1,37,37,5,5,138.7,0,0,1,1,1,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,0 +1,39,1,9238,0,1,140.0,1,34,34,0,0,114.0,1,0,1,0,1,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9991,1,1,133.1,1,37,19,3,10,136.1,0,0,1,1,0,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9070,0,1,110.0,1,37,37,7,7,110.2,0,0,1,1,0,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,150.0,1,4,5,4,2,150.0,0,0,1,1,0,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,2 +1,1,2,9119,0,1,149.0,1,38,38,5,5,141.0,0,0,1,1,0,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,2 +1,42,1,9085,0,39,150.0,1,1,1,4,7,150.0,1,0,1,1,1,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,1,38,4,9,131.7,1,0,1,1,1,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,42,1,9853,0,1,120.0,1,1,37,5,5,113.9,1,0,1,1,1,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9085,0,1,130.0,1,37,19,9,7,130.0,1,0,1,1,1,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,2 +1,17,4,9500,0,1,133.0,1,38,37,5,7,126.4,1,0,1,1,0,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,147.0,1,3,1,2,3,131.6,0,0,1,1,1,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,1 +1,39,1,9991,1,12,133.1,1,37,37,9,9,121.5,0,0,1,1,0,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,2 +2,1,1,9991,1,1,150.0,1,37,37,9,9,131.8,0,0,1,0,1,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,0 +1,43,4,8014,1,1,116.0,1,34,34,0,0,116.2,0,0,1,1,0,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,1 +1,44,1,9130,0,39,140.0,1,1,19,4,7,140.0,0,0,1,1,0,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,2 +1,17,1,9773,0,1,136.0,1,3,1,2,3,132.5,1,0,1,1,1,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,1 +4,39,1,9500,0,19,110.0,1,37,38,5,5,151.0,0,0,0,0,0,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,0 +1,17,2,9254,0,1,123.0,1,19,19,5,5,113.2,1,0,0,1,1,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,137.0,1,3,19,2,9,122.3,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +4,39,1,9254,0,1,120.0,1,37,19,9,9,131.0,1,0,1,1,0,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9556,0,1,123.0,1,19,19,4,9,113.8,1,0,1,1,1,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,150.0,1,3,37,4,7,139.5,0,0,1,1,0,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,145.0,1,38,37,3,9,138.4,1,0,1,0,1,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,2 +1,39,1,8014,1,1,140.0,1,37,37,9,7,122.0,1,0,0,0,0,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,0 +2,43,3,9991,1,1,120.0,1,37,37,9,9,128.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,6,9500,0,1,126.0,1,12,37,5,9,121.8,1,0,1,1,1,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,0 +2,39,1,9991,1,1,130.0,1,37,37,9,9,140.0,1,0,1,1,0,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,130.0,1,37,19,9,8,130.8,0,0,1,1,0,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,2 +1,1,3,9070,0,1,125.0,1,19,38,9,9,125.4,1,0,1,1,1,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,132.0,1,38,38,4,9,119.1,0,0,1,1,1,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,1 +4,7,1,9147,0,3,130.0,1,19,1,5,5,130.0,0,0,1,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,130.0,1,19,19,7,7,121.6,1,0,1,1,1,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9773,0,1,126.0,1,37,38,5,5,129.5,1,0,0,0,1,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,133.0,1,38,38,5,5,123.2,0,0,1,1,1,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,140.0,1,37,37,9,9,121.0,0,0,1,1,1,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,3,9500,0,1,131.0,1,37,37,9,9,118.0,1,0,1,1,1,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,2 +1,1,1,9670,0,1,120.0,1,38,19,4,8,115.1,0,0,1,1,1,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,2 +1,17,5,9773,0,1,111.0,1,19,12,7,3,115.9,1,0,1,1,1,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,135.0,1,1,19,9,7,123.5,1,0,1,1,1,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,37,4,9,130.0,1,0,1,1,1,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,2 +1,44,1,9119,0,39,130.0,1,3,19,3,4,130.0,0,0,1,1,0,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,2 +1,44,1,9147,0,39,130.0,22,2,37,2,8,130.0,0,0,0,0,0,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,119.0,1,37,37,9,6,119.0,0,0,0,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9500,0,1,142.0,1,38,37,9,8,130.8,1,0,1,1,1,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,136.0,1,38,1,9,4,129.7,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,1 +1,42,1,9003,0,1,140.0,1,19,19,4,4,140.0,1,0,1,1,0,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,19,133.1,1,1,19,4,10,114.0,0,0,1,1,0,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,0 +1,17,5,9670,0,1,125.0,1,19,30,7,7,118.4,1,0,1,1,1,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,2 +1,1,2,9500,0,1,135.0,1,19,19,9,10,122.9,1,0,1,1,1,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,100.0,1,37,37,9,9,108.0,1,0,1,1,0,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,127.0,1,37,37,9,9,119.3,1,1,1,1,0,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,133.0,1,38,19,9,10,125.0,1,0,1,1,1,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,116.0,1,3,3,3,3,110.1,1,0,1,1,0,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,133.1,1,1,1,5,8,123.0,1,0,1,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,144.0,1,37,37,9,3,150.5,0,0,1,1,1,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,133.0,1,3,1,2,4,130.2,0,0,1,1,0,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,116.0,1,38,37,9,6,109.7,1,0,1,1,1,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,1 +1,18,3,9853,0,1,128.0,1,38,37,5,9,116.8,1,0,1,0,0,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,150.0,1,37,37,4,9,132.1,1,0,0,1,1,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,160.0,1,1,19,4,6,155.7,1,0,1,1,1,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,130.0,1,19,1,9,9,131.9,0,0,1,1,1,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,126.0,1,3,3,2,2,121.1,0,0,0,1,1,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,133.0,1,38,38,7,7,147.0,0,0,1,1,1,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,137.0,1,37,37,9,9,126.2,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,149.0,1,38,37,5,5,137.1,1,0,1,1,1,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,143.0,1,2,37,1,1,133.2,1,0,1,1,1,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,2 +1,17,5,9070,0,1,122.0,1,19,38,5,7,119.6,0,0,0,0,1,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,137.0,1,19,38,9,9,127.2,1,0,1,1,1,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,110.0,1,1,1,4,4,125.9,0,0,1,1,0,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,130.0,1,1,38,5,9,118.1,0,0,0,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9853,0,1,130.0,1,37,19,9,5,102.5,0,0,1,1,1,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.0,1,19,1,9,1,122.2,0,0,1,1,1,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,39,140.0,1,3,3,2,2,140.0,1,0,1,1,1,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,134.0,1,37,38,9,9,120.3,1,0,1,1,1,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,1,1,37,4,7,110.0,0,0,1,1,0,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,0 +1,15,1,9085,0,1,133.1,41,3,3,4,2,101.3,0,0,1,1,1,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,113.0,1,1,1,5,4,106.7,1,0,0,1,1,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,0 +2,39,1,9991,1,19,133.1,1,37,37,5,5,111.9,1,0,1,1,0,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9853,0,1,134.0,1,19,38,4,8,122.1,1,0,1,1,1,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,0 +1,1,2,9853,0,1,133.0,1,19,37,4,9,130.2,1,0,1,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,127.0,1,19,19,5,5,160.0,0,0,1,1,0,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,1 +1,7,1,9500,0,3,130.0,1,37,38,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,140.0,1,19,38,7,7,136.5,1,0,1,1,1,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,1 +2,39,1,9773,0,19,133.1,1,37,37,9,6,110.0,0,0,1,0,1,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,0 +2,39,1,8014,1,1,120.0,1,34,34,99,99,101.8,0,0,1,0,1,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,135.0,1,1,1,4,7,129.8,1,0,1,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,131.0,1,37,38,5,5,128.9,0,0,1,1,1,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,1 +1,1,4,9070,0,1,139.0,1,3,19,1,5,138.3,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,6,9500,0,1,122.0,1,1,1,3,7,114.3,1,0,1,1,0,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,2 +1,1,1,9500,0,1,150.0,1,37,37,9,7,136.5,1,0,1,1,1,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,3,1,2,8,121.4,0,0,1,1,0,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,117.0,1,19,19,194,193,117.4,1,0,1,1,1,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,2 +2,39,1,9085,0,1,133.1,1,36,36,99,5,128.2,0,0,1,0,1,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,121.0,1,3,1,2,3,114.0,0,0,1,1,0,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,2 +1,51,1,9853,0,1,139.0,1,1,1,4,10,134.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9070,0,1,137.0,1,1,1,3,1,141.2,1,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,133.1,1,37,37,6,3,140.0,0,0,0,1,0,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,1,9147,0,1,126.0,1,37,37,4,7,116.9,0,0,1,1,0,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,2 +1,44,1,9130,0,39,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +2,43,1,9991,1,1,130.0,1,37,37,9,9,128.2,0,0,1,1,1,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,131.0,1,19,9,5,3,118.4,0,0,1,1,1,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,138.0,1,19,19,3,3,131.0,1,0,1,1,1,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,1,130.0,1,37,12,9,8,129.4,1,0,0,0,0,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,9991,1,1,134.0,1,37,37,9,9,113.7,0,0,1,1,1,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,5,9853,0,1,117.0,1,38,38,9,7,114.6,1,0,1,1,1,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,145.0,1,3,3,4,4,153.1,1,0,1,1,1,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,2 +1,43,1,9085,0,1,130.0,1,19,38,4,9,130.0,1,0,1,0,1,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9119,0,1,146.0,1,37,37,9,9,148.5,1,0,1,1,0,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,136.0,1,1,1,4,4,124.1,0,0,1,1,1,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,100.0,1,37,38,9,4,140.0,0,0,1,1,0,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,2 +1,44,1,9003,0,39,180.0,1,1,3,4,2,180.0,0,0,1,1,1,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,1 +1,15,1,9773,0,1,120.0,26,19,19,4,5,120.0,1,0,1,1,1,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,141.0,1,4,19,4,10,100.0,0,0,1,1,0,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,1,150.0,1,29,10,6,6,150.0,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,5,5,9254,0,1,122.0,1,1,37,9,7,119.6,1,0,1,1,1,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,128.0,1,19,38,9,7,124.2,1,0,1,1,0,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9130,0,1,172.0,1,19,19,9,9,163.3,1,0,1,1,1,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,129.0,1,38,37,5,5,142.0,1,0,1,1,1,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,100.0,1,1,3,9,10,120.0,0,0,0,0,0,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,1 +1,1,3,9238,0,1,135.0,1,1,12,9,10,121.0,1,0,1,1,1,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,136.0,1,2,2,3,3,120.0,1,0,1,1,0,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,2 +1,1,6,9147,0,1,143.0,1,38,37,9,9,128.7,1,0,1,1,0,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,2 +1,17,2,9500,0,1,126.0,1,37,37,7,7,126.2,1,0,1,1,1,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,2 +1,17,2,9254,0,1,135.0,1,19,19,4,3,135.0,1,0,1,1,0,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,2 +1,1,2,9254,0,1,132.0,1,1,19,9,9,129.9,1,0,1,1,1,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +2,39,1,8014,1,1,120.0,1,34,34,0,0,104.0,0,0,1,1,1,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,0 +2,39,1,8014,1,9,133.1,1,37,37,8,10,100.0,1,0,1,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,43,1,9147,0,1,130.0,1,19,37,7,10,138.0,0,0,1,1,1,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,1 +1,17,2,9119,0,1,120.0,1,1,19,9,8,117.2,0,0,1,1,0,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,133.1,1,1,12,4,5,116.5,0,0,1,1,0,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,105.0,1,19,19,6,6,106.1,1,0,1,1,1,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,118.0,1,1,19,4,8,118.7,0,0,1,1,0,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,6,9500,0,1,140.0,1,3,19,3,8,129.0,1,0,1,1,1,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,168.0,1,19,19,4,4,171.2,0,0,1,1,0,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,133.0,1,19,9,0,0,121.5,1,0,1,1,1,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,177.0,1,1,38,3,9,162.3,0,0,1,1,1,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,130.0,1,38,38,2,9,124.8,0,0,1,1,1,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,136.0,1,38,1,5,6,133.9,1,0,1,1,1,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,154.0,1,1,1,5,3,144.9,0,0,1,1,0,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,1 +1,44,1,9119,0,39,150.0,1,19,37,9,9,150.0,1,0,0,1,0,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,0 +1,1,4,9254,0,1,132.0,1,12,19,9,9,124.7,1,0,1,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,33,0,1,100.0,41,38,37,9,8,100.0,0,0,0,0,0,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9085,0,1,120.0,1,4,1,2,9,113.4,0,0,1,1,1,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,134.0,1,1,19,9,9,136.1,1,0,1,1,1,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9500,0,1,150.0,1,1,19,5,3,140.0,0,1,1,1,1,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,129.0,1,37,37,9,9,128.8,1,0,1,1,1,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +2,39,1,9500,0,1,100.0,1,37,38,4,4,130.0,0,0,1,1,0,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,2 +1,1,1,9773,0,1,140.0,1,19,37,9,6,135.8,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,7,1,9085,0,40,150.0,1,19,19,9,5,150.0,0,0,0,0,1,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9500,0,1,148.0,1,1,37,4,8,132.0,1,0,1,1,1,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,1 +1,7,1,9119,0,40,140.0,1,3,1,2,5,140.0,0,0,1,1,0,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,163.0,1,19,1,9,7,143.1,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,3,9070,0,1,164.0,1,1,1,5,3,161.2,1,0,1,1,1,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,1 +1,1,6,9773,0,1,141.0,1,30,37,7,7,128.4,1,0,0,0,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,0 +1,43,2,9147,0,1,126.0,1,1,19,3,3,100.0,1,0,1,1,0,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,171,0,1,141.0,1,19,19,5,10,135.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,4,9670,0,1,117.0,1,3,3,4,4,113.2,0,0,1,1,0,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +2,43,1,9991,1,3,140.0,1,37,19,9,4,140.0,0,0,0,1,1,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,134.3,0,0,1,1,0,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,137.0,1,38,19,9,7,125.1,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,130.0,1,37,37,9,6,134.0,0,0,1,1,1,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,123.0,1,37,37,7,7,119.7,0,0,1,1,0,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9147,0,1,120.0,1,37,37,9,9,104.7,1,0,1,1,0,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9238,0,1,137.0,62,1,1,9,9,129.3,0,0,1,1,1,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,8014,1,1,122.0,1,37,19,9,9,123.8,0,0,1,1,1,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,1 +2,39,2,8014,1,1,100.0,1,34,34,0,0,100.0,1,0,1,1,1,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,1 +2,1,1,9991,1,2,120.0,1,37,37,6,3,129.2,0,0,1,1,1,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,150.0,1,3,19,2,6,150.0,0,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9991,1,1,123.0,1,1,3,4,2,113.2,0,0,1,0,0,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,0 +1,1,3,9773,0,1,130.0,1,1,37,4,5,120.9,1,0,0,1,1,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,146.0,1,19,3,4,9,127.0,0,0,1,1,0,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,44,1,171,0,39,160.0,1,19,38,9,9,160.0,1,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9085,0,39,150.0,1,38,37,6,6,150.0,1,0,1,1,1,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,1 +1,17,2,9254,0,1,136.0,1,19,19,4,7,123.1,1,0,1,1,1,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +2,39,1,9670,0,1,150.0,1,37,19,9,4,135.6,0,0,1,1,1,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,1 +1,1,6,171,0,1,134.0,1,19,37,5,5,126.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +4,39,1,9773,0,38,133.1,1,19,19,7,9,133.0,0,0,1,1,1,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,2 +1,17,2,9119,0,1,120.0,1,10,12,9,9,120.4,1,0,1,1,0,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,4,9254,0,1,113.0,1,38,19,7,7,107.4,1,0,1,1,1,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,137.0,1,1,19,4,5,136.3,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,142.0,1,37,37,9,7,132.7,1,0,1,1,1,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,1 +1,18,5,9085,0,1,121.0,1,5,3,2,3,111.9,1,0,1,1,1,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,9,133.1,1,34,36,0,90,107.5,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,8014,1,19,133.1,1,19,37,6,8,149.5,0,0,1,1,0,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9147,0,1,120.0,1,1,37,4,9,113.4,1,0,1,1,0,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,130.0,1,37,38,9,5,130.5,1,0,1,1,1,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,153.0,1,1,19,9,10,147.8,0,0,1,1,1,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,1 +1,1,1,171,0,1,159.0,1,3,1,4,4,162.2,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,122.0,1,37,37,5,6,114.3,0,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,2,9556,0,19,133.1,1,37,37,3,7,117.8,0,0,1,1,1,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,132.0,1,38,1,9,9,124.3,1,0,1,1,1,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,141.0,1,19,19,9,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,1 +1,17,1,9500,0,1,152.0,1,19,19,4,9,132.5,0,0,1,1,0,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,1 +1,17,1,9991,1,40,127.0,1,37,37,6,6,124.9,0,0,1,1,1,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,133.1,1,1,19,4,6,106.0,1,0,1,1,1,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,19,37,4,7,150.0,1,0,1,1,1,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,1 +1,1,1,9254,0,1,125.0,1,1,1,191,193,114.5,0,0,1,1,0,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,134.0,1,19,19,4,7,131.0,1,0,1,1,0,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,1 +1,1,2,9500,0,1,134.0,1,19,19,9,9,125.8,1,0,1,1,1,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,1 +1,17,1,171,0,1,125.0,1,37,37,7,9,134.1,1,0,1,1,0,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,0 +1,51,1,9254,0,1,120.0,1,38,38,9,9,118.0,0,0,1,1,1,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,155.0,1,1,1,4,3,140.5,1,0,1,1,1,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,125.0,1,1,1,4,90,125.4,1,0,1,1,0,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,1,5,5,126.3,0,0,1,1,0,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,1 +1,39,1,9147,0,1,140.0,1,37,3,9,2,135.1,0,0,1,1,0,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,5,171,0,1,122.0,1,19,12,5,9,127.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,2,9670,0,1,150.0,1,34,34,0,0,107.0,1,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,3,130.0,1,19,19,3,9,130.0,0,0,1,0,0,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,0 +1,39,1,33,0,1,133.1,1,19,37,9,9,96.1,0,0,1,1,0,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,0 +2,42,1,9500,0,2,130.0,1,37,37,9,9,130.0,0,0,1,1,1,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,1 +1,18,1,9238,0,1,137.0,1,19,38,5,8,137.4,1,0,1,1,1,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,2 +1,1,1,9254,0,1,140.0,1,19,1,9,8,140.9,1,0,1,1,1,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,132.0,1,1,2,9,3,128.2,1,0,1,1,1,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,17,4,9085,0,1,126.0,1,1,3,5,5,123.9,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,19,133.1,1,37,37,9,7,106.5,0,0,1,1,1,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,132.0,1,37,19,7,7,132.4,1,0,1,1,1,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,139.0,1,37,38,9,9,126.1,0,0,1,1,1,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,136.0,1,19,38,9,9,123.0,1,0,1,1,1,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,140.0,1,1,38,9,1,140.0,1,0,1,1,0,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,123.0,1,19,19,9,8,134.0,0,0,1,1,1,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,130.0,1,38,19,9,4,118.4,0,0,0,1,1,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,126.0,1,1,1,9,9,116.2,0,0,0,0,0,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,19,1,7,10,105.0,0,0,1,1,0,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,0 +1,17,1,9119,0,1,130.0,1,19,19,7,9,121.3,1,0,1,1,0,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,0 +1,43,1,9500,0,19,133.1,1,34,34,0,0,110.0,1,0,1,1,0,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,0 +1,1,3,9070,0,1,139.0,1,1,38,4,7,142.2,1,0,1,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,142.0,1,38,1,5,4,136.6,0,0,1,1,1,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,1 +1,17,2,9670,0,1,128.0,1,37,38,5,8,121.7,0,0,1,1,0,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,140.0,1,1,3,9,4,140.0,0,0,0,0,1,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,125.0,1,19,19,9,10,122.0,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,8014,1,1,130.0,1,37,37,9,8,103.5,0,0,1,1,1,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,1 +1,17,3,9085,0,1,117.0,1,19,38,5,7,111.1,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,42,1,9085,0,39,140.0,1,19,3,9,1,159.9,1,0,1,1,1,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,1 +1,1,2,9254,0,1,112.0,1,37,37,6,6,106.1,1,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9070,0,1,117.0,1,5,1,2,10,120.0,1,0,1,1,1,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,2 +1,7,1,9556,0,2,130.0,1,37,37,9,9,130.0,1,0,1,1,1,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,40,140.0,1,1,19,9,9,139.0,0,0,1,1,1,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,10,130.0,0,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,51,1,9070,0,1,135.0,1,3,1,3,5,121.8,0,0,1,1,1,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,135.0,1,19,3,9,4,121.5,1,0,1,1,1,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,136.0,1,19,38,4,8,125.5,1,0,1,1,1,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,142.0,1,3,37,4,8,132.4,1,0,1,1,1,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,142.0,1,34,38,4,7,127.3,0,0,1,1,1,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,1 +1,15,1,9147,0,1,130.0,26,1,1,2,3,130.0,0,0,1,1,1,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,17,2,8014,1,1,133.0,1,19,1,5,5,119.7,1,0,1,1,1,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,6,133.1,1,1,1,90,3,107.0,1,0,1,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,130.0,1,1,1,4,5,123.8,0,0,1,1,1,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9670,0,1,130.0,1,38,37,5,5,123.4,1,0,1,1,1,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,130.0,1,37,36,4,90,127.6,0,0,1,1,0,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +2,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,2 +1,1,5,9070,0,1,122.0,1,37,37,9,9,124.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,3,120.0,1,37,37,9,9,141.0,0,0,1,1,1,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,0 +1,43,1,33,0,1,134.0,1,37,37,1,1,100.0,1,0,1,1,0,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,0 +1,18,1,9773,0,1,125.0,1,19,37,9,5,122.2,0,0,1,0,1,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,113.4,0,0,1,1,1,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,142.0,1,19,39,5,4,141.7,0,0,1,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,137.0,1,1,38,5,8,125.8,0,0,1,0,1,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,141.0,1,1,37,4,3,126.8,1,0,1,1,1,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,1 +1,17,4,9500,0,1,133.0,1,4,4,4,4,130.7,1,0,1,1,1,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,1 +1,1,2,9500,0,1,119.0,1,1,1,4,4,115.2,1,0,1,1,1,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,128.0,1,1,1,4,10,118.9,1,0,1,1,1,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,130.0,1,37,38,7,8,119.3,1,0,1,1,1,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,148.0,1,3,1,4,5,132.8,0,0,1,1,1,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,1 +1,1,5,9500,0,1,143.0,1,37,19,4,4,123.3,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9147,0,1,130.0,1,34,34,99,99,109.8,1,0,1,0,0,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9085,0,2,140.0,1,38,38,9,10,150.0,0,0,1,1,0,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9670,0,42,110.0,1,1,19,9,9,114.2,0,0,1,1,0,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,1 +1,53,1,9147,0,42,140.0,1,3,4,2,1,140.2,0,0,1,1,1,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,145.0,1,19,38,9,7,136.3,1,0,1,1,1,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,38,37,9,9,154.4,0,0,1,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,127.0,1,38,38,9,6,122.8,0,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,120.2,1,0,1,1,0,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,124.0,1,3,1,2,5,121.6,0,0,1,1,1,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,2 +1,17,5,9853,0,1,132.0,1,37,38,5,6,119.1,1,0,1,1,1,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,1 +1,17,6,9670,0,1,110.0,1,1,19,4,10,111.3,0,0,1,1,0,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,120.0,1,38,37,9,9,114.8,1,1,1,1,1,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,140.0,1,19,19,9,3,130.0,0,0,1,1,0,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9254,0,1,120.0,1,37,37,9,9,115.1,1,0,1,0,0,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,142.0,1,1,37,5,7,128.0,0,0,1,1,1,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,168.0,1,37,1,9,4,133.4,1,0,1,1,1,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,1 +1,43,4,9085,0,1,133.1,1,34,34,99,99,125.2,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9147,0,1,123.0,1,1,1,9,7,117.4,1,0,1,1,1,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,1 +1,1,6,9119,0,1,135.0,1,2,1,3,5,123.5,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,2 +1,17,2,9254,0,1,118.0,22,19,37,9,9,110.3,1,0,1,0,1,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,126.0,1,1,19,4,4,116.9,0,0,1,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,117.0,1,1,38,3,9,109.3,0,0,0,0,1,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,0 +4,39,1,8014,1,1,133.1,1,37,37,9,8,113.0,0,0,1,1,1,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,1 +2,42,1,9991,1,6,123.0,1,37,37,9,9,123.0,0,0,1,1,0,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,2 +1,39,1,9003,0,1,100.0,1,37,37,9,5,110.0,0,0,1,1,1,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,127.0,1,37,38,9,5,131.2,1,0,1,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,110.0,1,37,37,9,7,112.5,1,0,1,1,1,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,126.0,1,19,37,7,5,119.4,0,0,1,1,1,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,121.0,1,1,1,4,3,120.5,1,0,1,1,1,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,134.0,1,1,1,3,3,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,3,9500,0,1,150.0,1,19,38,1,1,130.8,1,0,1,1,1,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,17,5,9119,0,1,124.0,11,4,12,2,9,119.5,1,0,1,1,0,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,117.0,1,19,1,4,7,112.1,0,0,1,1,1,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,2 +1,1,5,9500,0,1,132.0,1,37,37,7,7,120.3,1,0,1,1,1,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,1 +2,39,1,9119,0,1,110.0,1,37,37,90,5,150.0,1,0,1,1,0,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9773,0,1,130.0,1,38,37,5,3,122.3,1,0,0,0,1,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,0 +1,1,1,9556,0,1,118.0,1,19,38,9,9,116.3,1,0,1,1,1,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,120.0,1,3,3,3,3,111.6,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,131.0,1,37,19,9,9,134.5,1,0,1,1,0,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,2 +1,17,2,9556,0,1,133.1,1,37,38,9,8,106.0,1,0,1,1,1,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,2,110.0,1,37,37,9,9,112.9,0,0,1,1,1,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,0 +1,17,2,9773,0,1,126.0,1,19,38,9,8,118.7,1,0,1,1,1,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,140.0,1,1,1,3,3,127.6,1,0,1,1,1,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,163.0,1,19,1,5,10,146.6,1,0,0,1,1,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,39,151.0,1,19,37,4,7,151.0,0,0,0,1,1,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,165.0,1,19,37,5,5,142.3,0,0,1,1,1,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9773,0,19,133.1,1,19,1,7,9,115.0,1,0,0,0,0,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,0 +1,1,2,9556,0,1,130.0,1,1,38,3,8,119.5,1,0,1,1,1,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,1 +1,17,3,171,0,1,125.0,1,3,39,2,5,117.0,1,1,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,2,9147,0,1,133.0,1,19,1,5,10,121.8,0,0,1,1,0,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,2 +1,17,1,9119,0,1,131.0,1,1,3,9,10,123.7,1,0,1,1,0,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,148.0,1,37,38,9,8,133.0,1,0,1,1,1,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9254,0,1,120.0,1,3,19,3,9,114.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9773,0,1,114.0,1,1,1,9,9,111.6,1,0,1,1,1,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,115.0,1,38,1,9,8,118.5,0,0,1,1,0,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,2,5,127.0,0,0,1,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,117.0,1,1,1,4,7,109.3,1,0,1,1,1,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,1 +1,53,1,9085,0,42,140.0,1,19,38,9,9,138.2,0,0,0,0,1,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,125.0,1,1,1,3,3,114.5,0,0,1,1,0,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,1 +1,44,1,9147,0,39,130.0,1,19,1,9,3,130.0,0,0,1,1,1,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,145.0,1,38,19,4,9,127.9,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,128.0,1,37,37,9,8,124.3,1,0,1,1,1,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,1 +1,18,3,9070,0,1,138.0,1,38,37,9,7,125.1,1,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,17,5,9119,0,1,131.0,1,19,37,9,7,123.3,1,0,1,1,0,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,130.0,1,37,19,9,8,106.2,1,0,1,1,1,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,131.0,1,19,38,4,5,132.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,43,1,9003,0,1,120.0,1,37,37,5,9,120.0,1,0,1,1,0,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,132.0,1,4,39,2,2,136.6,1,0,1,1,1,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,2 +1,7,1,9500,0,40,170.0,1,1,1,9,4,170.0,0,0,1,1,1,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,1 +1,16,1,9003,0,1,147.0,1,1,37,4,9,140.7,1,0,0,1,1,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,125.0,1,1,1,4,8,115.6,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,150.0,1,37,37,9,6,138.5,0,0,1,1,1,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,1 +1,1,2,9991,1,1,143.0,1,5,1,4,4,131.5,0,0,1,1,0,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,9556,0,1,133.1,6,3,3,4,4,169.2,0,0,0,0,1,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,39,2,9556,0,1,133.1,1,1,1,9,10,100.5,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +1,17,1,9773,0,1,120.0,1,19,38,9,7,117.9,1,0,1,1,1,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,17,1,171,0,1,146.0,1,1,38,9,9,135.5,1,0,0,1,1,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,2 +1,1,3,9254,0,1,122.0,1,19,38,3,10,114.3,1,0,1,1,1,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,9130,0,1,130.0,1,2,3,9,1,117.6,0,0,1,1,0,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,2 +4,43,4,9991,1,12,133.1,1,37,37,9,9,153.0,0,0,1,0,1,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,18,2,9500,0,1,135.0,1,38,37,9,5,125.3,1,0,1,1,1,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,38,37,9,9,133.0,0,0,1,1,1,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,1 +1,17,1,171,0,1,129.0,1,38,37,4,6,128.0,0,0,1,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,128.0,1,2,19,2,4,123.3,1,0,1,1,1,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,130.0,1,19,3,4,2,159.0,0,0,1,1,1,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,1 +2,7,1,8014,1,3,130.0,1,19,38,3,7,130.0,0,0,1,1,1,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,116.0,1,19,37,3,3,109.0,1,0,1,1,1,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,123.0,1,1,1,3,9,116.7,1,0,1,1,1,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,144.0,1,19,19,4,4,130.7,1,0,1,1,1,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,42,1,9500,0,1,100.0,1,19,37,5,7,134.3,1,0,1,1,1,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,143.0,1,1,19,4,4,129.9,0,0,1,1,1,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,1 +2,39,1,9991,1,19,133.1,1,19,37,7,9,137.2,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9853,0,1,123.0,1,19,19,9,7,117.4,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,144.0,1,19,19,5,5,130.3,1,0,1,1,1,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,137.0,1,1,19,4,7,126.7,1,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,4,9773,0,1,124.0,1,3,12,2,9,137.0,1,0,1,1,0,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,135.0,1,37,37,9,8,123.0,1,0,1,1,1,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,123.0,1,38,37,9,7,120.6,1,0,1,0,1,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,0 +2,2,1,9147,0,2,120.0,1,37,37,9,9,120.0,0,0,1,0,0,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,103.0,1,1,3,2,2,100.6,1,1,1,1,1,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,126.0,1,3,1,2,8,123.9,1,0,1,1,1,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,2 +1,17,4,9500,0,1,136.0,1,3,3,2,2,132.5,1,0,1,1,1,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,114.0,1,3,29,3,5,111.9,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,125.0,1,19,1,9,9,130.6,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,147.0,1,37,38,9,5,134.8,1,0,1,1,1,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,131.0,1,1,19,9,9,130.3,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,118.0,1,3,1,2,5,110.0,1,0,1,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,130.0,1,19,19,4,10,116.8,0,0,1,1,1,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,1 +1,43,1,8014,1,6,133.1,1,34,34,0,0,100.0,0,0,0,1,1,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9670,0,12,170.0,1,1,37,3,5,110.0,0,0,1,1,0,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,1 +2,1,1,9991,1,3,160.0,1,1,3,4,9,137.3,0,0,1,1,1,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,108.0,1,19,1,5,5,107.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,121.0,1,3,3,2,2,112.3,1,0,0,0,1,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,0 +1,1,2,9773,0,1,138.0,1,19,1,9,3,133.5,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,136.0,1,38,38,9,9,121.7,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,0 +1,1,1,9500,0,1,132.0,1,38,37,9,7,122.0,1,0,1,1,1,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,1 +1,17,1,9003,0,1,125.0,1,3,3,2,2,100.0,0,0,1,1,0,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,137.0,1,1,1,1,5,131.8,0,0,1,1,1,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,140.0,1,37,37,9,9,148.0,1,0,1,0,0,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,127.0,1,3,1,3,7,137.2,1,0,1,1,1,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,150.0,1,37,19,9,9,150.0,0,0,1,1,0,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,1 +1,43,4,171,0,1,136.0,1,37,37,9,9,123.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,1,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,1 +1,1,1,9853,0,1,162.0,1,37,19,9,8,142.8,0,0,0,1,1,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,127.0,1,1,38,5,7,123.5,1,0,1,1,1,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,133.1,1,19,37,9,9,130.0,0,0,1,0,1,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,1 +1,17,2,9070,0,1,121.0,1,1,19,144,144,111.9,1,0,1,1,0,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,115.0,1,19,37,9,9,114.3,0,0,1,1,0,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,0 +1,10,1,9254,0,1,115.0,24,3,1,9,9,116.1,1,0,1,1,1,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,143.0,1,19,3,4,4,147.2,0,0,1,1,1,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,160.0,1,1,38,4,4,160.0,1,0,1,1,0,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,1 +2,1,1,9238,0,1,134.0,1,37,37,5,5,120.4,0,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,133.1,1,38,37,9,4,120.0,0,0,1,1,0,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,1 +1,18,1,9119,0,1,108.0,1,1,1,4,3,105.6,1,0,1,1,0,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,137.0,1,37,37,9,9,141.0,0,0,1,1,0,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9254,0,1,113.0,1,1,2,5,3,106.7,1,0,0,1,0,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,16,1,9085,0,1,140.0,1,1,1,9,9,127.1,1,0,1,1,1,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,1 +1,53,1,9238,0,42,140.0,1,37,37,9,10,136.9,1,0,1,1,1,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,1 +4,39,1,8014,1,19,133.1,1,37,37,9,7,134.5,0,0,1,1,1,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,1 +1,1,2,9773,0,1,125.0,1,19,1,4,5,122.2,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9070,0,1,134.0,1,1,19,3,3,127.7,1,0,1,0,1,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,17,1,9147,0,1,96.0,1,38,37,6,4,96.0,1,0,1,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,0 +1,10,1,9085,0,1,134.0,1,37,37,5,5,134.0,1,0,1,1,1,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,143.0,1,1,3,3,3,149.0,1,0,1,1,1,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,0 +1,18,3,9070,0,1,142.0,1,1,37,4,7,130.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,7,1,9003,0,3,140.0,1,3,19,2,10,140.0,0,0,1,0,0,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,151.0,1,38,37,9,5,138.4,1,0,1,1,1,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,143.0,1,19,19,4,4,135.3,1,0,1,1,1,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,133.0,1,1,19,9,9,132.0,0,0,1,1,0,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,19,133.1,1,37,37,9,5,135.5,0,0,1,1,1,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9254,0,1,134.0,1,37,37,9,9,133.3,1,0,0,1,1,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,0 +1,1,3,9085,0,1,135.0,1,3,2,4,3,121.0,1,0,1,1,1,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,140.0,1,1,1,4,4,123.5,1,0,1,1,1,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,188.0,1,3,3,2,2,178.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9238,0,1,126.0,1,30,19,0,2,121.5,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,131.0,1,3,19,5,5,127.2,1,0,1,1,1,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,1 +1,17,4,9853,0,1,143.0,1,37,37,9,5,127.3,1,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,0 +1,17,2,9238,0,1,111.0,1,19,38,9,9,110.7,1,0,1,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,140.0,1,19,38,9,7,125.7,1,0,1,1,0,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,2 +1,17,6,9500,0,1,126.0,1,19,37,3,9,119.4,1,0,1,1,1,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,131.0,1,1,1,4,9,122.3,0,0,1,1,0,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,128.0,1,1,19,9,8,100.0,1,0,1,1,1,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,138.0,1,19,19,5,1,130.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,1,140.0,1,3,3,1,1,140.0,1,0,1,1,1,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,3,130.0,1,1,19,5,9,130.0,0,0,1,1,0,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9773,0,1,131.0,1,38,1,5,7,131.0,1,0,1,1,0,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,19,133.1,1,19,19,9,7,140.0,0,0,0,0,1,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,133.1,1,37,37,9,9,126.5,0,0,1,1,1,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9500,0,1,132.0,1,37,37,9,7,128.3,1,0,1,1,1,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,1 +1,16,1,171,0,1,145.0,1,3,3,3,3,155.0,1,0,1,1,1,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,2 +4,1,1,9991,1,1,140.0,1,37,37,9,7,139.0,0,0,1,1,1,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,2 +1,17,2,9070,0,1,152.0,1,39,39,3,3,134.2,1,0,1,1,0,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,1,1,9500,0,1,141.0,1,19,19,7,9,139.8,0,0,1,1,1,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,1 +1,1,4,9670,0,1,133.0,1,1,2,4,7,121.1,1,0,1,1,1,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,1 +1,15,1,9147,0,1,135.0,26,1,1,9,7,135.0,0,0,0,1,0,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,2 +2,1,1,9991,1,1,144.0,1,19,19,9,9,151.4,0,0,1,1,1,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,1 +1,18,4,9853,0,1,118.0,1,19,37,9,6,111.4,1,0,0,0,1,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9500,0,1,134.0,1,38,1,9,6,133.5,1,0,1,1,0,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,37,37,9,6,107.0,0,0,1,1,0,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,141.0,1,38,38,9,9,128.4,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,133.0,1,1,1,9,9,128.5,1,0,1,1,1,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,1 +1,51,1,9085,0,40,120.0,1,3,3,4,2,125.0,0,0,1,1,1,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,150.0,1,37,38,3,7,134.5,0,0,1,1,1,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,127.0,1,3,19,4,4,116.9,0,0,1,1,0,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,136.0,1,2,38,143,163,129.7,1,0,1,1,0,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,2 +1,1,2,9773,0,1,159.0,1,1,1,3,3,151.0,1,0,1,1,1,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,165.0,1,37,38,9,8,152.4,1,0,1,1,1,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,1 +1,1,6,9500,0,1,139.0,1,1,1,4,4,124.5,1,0,1,1,1,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,134.0,1,1,1,5,3,128.4,1,0,1,1,1,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,1 +1,17,2,9238,0,1,133.0,1,2,1,3,4,136.2,1,0,1,1,1,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,120.0,1,19,1,8,7,115.1,1,0,1,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,131.0,1,1,39,5,3,122.6,1,0,1,1,1,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,8014,1,1,130.0,1,1,1,9,9,118.1,0,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,1 +1,39,9,9991,1,1,120.0,1,38,38,9,5,144.8,0,0,1,1,0,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9500,0,19,133.1,1,37,37,9,9,129.0,1,0,1,1,1,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,138.0,1,1,19,4,7,123.0,1,0,0,0,1,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,143.0,1,1,37,9,9,135.0,1,0,1,1,1,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,120.0,1,19,1,9,3,120.0,1,0,1,1,0,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,162.0,1,37,1,9,9,165.2,1,0,1,1,1,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,142.0,1,37,37,5,5,131.3,1,0,1,1,1,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,1 +1,1,3,171,0,1,125.0,1,38,37,4,9,115.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,120.0,1,38,37,5,3,110.5,0,0,1,1,1,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,1 +1,42,1,9773,0,6,120.0,1,34,34,0,0,122.0,1,0,1,1,1,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,162.0,1,1,38,4,5,138.6,1,0,1,1,1,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9500,0,1,152.0,1,1,1,4,4,141.0,1,0,1,1,1,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,139.0,1,3,19,3,5,120.8,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,135.0,1,1,1,3,5,130.1,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,1,9670,0,1,127.0,1,3,3,1,1,121.4,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9556,0,1,135.0,1,1,1,1,1,131.5,0,0,1,1,0,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,2 +1,17,3,9670,0,1,147.0,1,37,37,8,8,128.8,0,0,0,1,1,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,133.1,41,38,38,9,8,134.8,0,0,1,1,1,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,133.1,1,37,37,90,8,128.2,0,0,1,1,1,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,131.0,1,1,37,4,4,126.1,1,0,1,1,1,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,9,9,125.3,1,0,1,1,0,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,0 +2,39,1,8014,1,3,110.0,1,37,37,9,9,160.5,0,0,1,1,1,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,138.0,1,38,1,9,4,127.5,1,0,1,1,1,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,2 +1,39,1,9238,0,1,170.0,1,38,19,9,9,140.0,1,0,1,1,1,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,1,19,4,10,142.3,1,0,1,1,1,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,154.0,1,38,37,9,9,140.4,0,0,1,1,1,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,133.1,41,19,1,9,9,105.0,1,0,1,0,1,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +2,44,1,9085,0,39,160.0,1,37,37,192,192,160.0,0,0,1,1,1,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,141.0,1,38,38,9,9,142.3,1,0,1,1,1,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,119.0,1,37,37,7,7,112.0,1,0,1,0,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,137.0,1,37,37,9,9,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,1 +4,39,1,9670,0,1,100.0,1,37,37,4,10,120.0,0,0,0,1,1,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,130.0,1,3,3,2,2,131.1,0,0,1,1,0,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,120.0,1,1,19,9,3,116.9,1,0,0,0,0,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,42,1,9500,0,1,100.0,1,1,19,4,8,136.0,1,0,1,1,1,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,1 +1,1,2,171,0,1,125.0,1,38,19,9,9,117.3,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,152.0,1,1,38,4,9,160.4,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,12,133.1,1,37,37,9,7,139.4,0,0,0,1,1,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,2 +1,1,3,9070,0,1,150.0,1,1,1,4,8,131.5,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,7,1,9556,0,4,190.0,1,5,5,2,2,190.0,1,0,1,1,0,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,0 +1,17,3,9238,0,1,121.0,1,1,1,4,5,117.2,0,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,130.0,1,37,37,9,7,113.0,1,0,1,0,0,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,123.0,1,19,19,4,10,124.4,1,0,1,1,1,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,1 +1,17,2,9238,0,1,133.0,1,37,37,3,9,119.7,0,1,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,138.0,1,38,19,9,10,133.1,0,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,108.0,1,38,38,7,7,105.2,1,0,1,1,0,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,0 +1,1,3,171,0,1,115.0,1,9,1,6,6,108.7,1,0,1,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,4,4,119.8,1,0,1,1,1,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,1 +1,1,6,9119,0,1,126.0,1,19,19,7,3,116.6,1,0,1,1,0,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,1 +2,39,1,9500,0,1,133.1,1,37,37,9,9,130.1,0,0,1,0,0,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,124.0,1,37,38,9,3,114.2,0,0,1,1,1,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,1 +1,17,3,9147,0,1,137.0,1,1,1,4,7,124.4,1,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,2 +1,39,1,9130,0,19,133.1,1,37,37,9,10,156.4,1,0,0,1,0,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,0 +1,18,5,9853,0,1,121.0,1,38,19,7,7,117.5,1,0,0,0,1,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,1,2,9238,0,1,117.0,1,19,1,9,8,110.0,1,0,0,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9147,0,1,148.0,1,1,19,9,6,118.4,1,0,1,1,0,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,133.0,1,1,1,4,4,100.0,0,0,1,1,1,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,17,1,9238,0,1,158.0,1,1,1,5,6,140.5,0,0,1,1,1,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,157.0,1,19,38,9,7,146.2,1,0,1,1,1,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9119,0,1,131.0,1,3,1,4,1,135.9,0,0,1,1,0,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,38,37,5,10,117.8,1,0,1,1,0,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,1 +1,1,2,9119,0,1,126.0,1,1,38,141,192,122.5,1,0,1,1,0,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,117.0,1,37,37,0,4,120.5,1,0,1,1,0,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9254,0,1,110.0,1,12,19,9,9,125.0,0,0,1,0,0,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,0 +1,18,1,9147,0,1,121.0,1,19,3,5,5,115.8,1,0,1,1,1,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,1 +1,39,1,9238,0,19,133.1,1,37,37,9,9,139.0,0,0,0,0,0,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9003,0,3,130.0,1,3,3,6,2,130.0,1,0,1,1,0,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,132.0,1,19,37,3,5,125.4,1,0,1,0,1,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,133.1,1,38,38,4,7,115.6,1,0,1,0,1,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,129.0,1,1,2,3,1,125.9,1,0,1,1,1,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,37,37,9,9,143.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,126.0,1,3,19,3,3,115.2,0,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,123.0,1,19,38,9,10,116.7,1,0,1,1,1,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,1 +1,17,2,9254,0,1,125.0,1,37,37,9,8,122.6,1,0,0,0,1,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,39,1,9119,0,1,160.0,1,38,37,7,7,129.0,0,0,1,1,0,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,3,19,2,3,133.8,1,0,1,1,1,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,120.0,1,19,19,4,7,115.5,1,0,0,1,0,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,120.0,1,38,38,3,3,140.0,0,0,1,1,1,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9238,0,1,127.0,1,1,19,4,3,141.7,1,0,1,1,0,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,111.0,1,37,37,9,10,95.8,1,0,1,0,0,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,130.0,1,38,1,9,4,140.0,1,0,1,1,1,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,1 +1,1,2,9147,0,1,131.0,1,1,1,9,9,118.8,0,0,1,1,0,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,161.0,1,1,19,4,4,152.3,0,0,1,1,1,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,124.0,1,38,38,9,9,115.6,0,0,1,1,0,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,160.0,1,3,3,1,2,149.2,0,0,1,1,0,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,16,3,9853,0,1,134.0,1,19,37,9,9,121.1,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,2 +1,43,2,9991,1,1,140.0,1,37,37,5,5,124.3,1,0,1,0,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,127.0,1,38,37,5,7,123.9,1,0,1,1,1,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,120.0,1,19,37,6,8,160.0,0,0,1,1,0,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,1 +1,39,1,9085,0,1,133.1,1,3,3,4,2,144.9,1,0,1,1,1,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,130.0,1,1,19,3,10,130.0,1,0,1,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,1 +1,42,1,9003,0,1,130.0,1,3,2,2,6,105.3,0,0,1,0,0,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9991,1,1,130.0,1,37,37,9,9,127.6,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,100.0,1,1,38,4,6,104.8,0,0,0,0,1,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,0 +1,1,5,9070,0,1,125.0,1,3,3,2,2,140.8,1,0,1,1,0,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,133.1,1,34,38,0,4,147.0,0,0,1,1,1,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,126.0,1,34,34,0,0,142.4,0,0,1,1,1,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,121.0,1,19,38,4,10,114.4,0,0,1,1,1,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,133.1,1,37,37,5,0,111.5,0,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,130.0,1,1,19,5,5,129.1,1,0,1,1,1,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,3,1,4,6,130.0,0,0,1,1,0,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,2 +1,39,1,9500,0,1,123.0,1,19,1,1,1,140.8,0,0,1,1,1,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,1 +1,44,1,9070,0,39,130.0,1,1,1,4,10,130.0,1,0,1,1,1,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,1 +4,39,1,9085,0,1,133.1,1,34,34,0,0,128.2,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,128.0,1,37,37,9,9,135.7,1,0,1,1,0,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,135.0,1,38,38,4,7,121.7,1,0,1,1,1,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,2 +1,43,1,9085,0,1,110.0,25,38,38,9,6,117.2,1,0,1,1,0,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,1 +1,43,3,9500,0,1,140.0,1,1,19,9,7,127.5,1,0,0,1,1,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,1 +1,17,3,9238,0,1,133.1,1,41,1,2,3,117.0,1,0,1,1,1,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9254,0,1,112.0,1,37,37,9,9,108.5,0,0,1,1,0,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,51,1,9238,0,39,140.0,1,38,38,5,7,129.1,1,0,1,1,1,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,122.0,1,38,19,9,9,126.6,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,123.0,1,1,1,4,4,114.4,0,0,1,1,0,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,0 +1,18,4,171,0,1,133.0,1,1,4,9,5,129.2,1,0,0,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,128.0,1,19,19,9,5,121.7,1,0,1,1,1,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,1 +1,39,1,9130,0,1,150.0,1,19,19,9,5,160.0,1,0,1,1,0,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,160.0,1,19,37,5,3,152.0,0,0,1,1,1,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,53,1,9085,0,42,140.0,1,19,37,9,8,142.5,1,0,1,1,1,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,130.0,1,9,19,4,1,134.2,1,0,1,1,1,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,3,9254,0,1,121.0,1,19,19,9,6,125.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,1,128.0,1,19,1,9,10,157.4,1,0,1,1,1,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,146.0,1,37,37,9,7,149.2,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9853,0,12,133.1,1,37,37,7,8,103.0,0,0,1,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,143.0,1,19,19,5,6,142.3,0,0,1,1,1,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,2 +1,1,2,9085,0,1,118.0,1,1,19,3,3,112.4,1,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,2 +2,43,1,9991,1,1,100.0,1,37,37,9,9,128.2,0,0,1,1,0,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,118.0,1,38,38,5,5,110.0,0,0,1,1,1,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9147,0,1,136.0,1,38,38,9,9,127.3,1,0,1,1,0,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,170.0,1,19,19,8,8,176.7,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,124.0,41,19,38,9,9,123.3,1,0,1,1,1,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,1 +1,1,4,9070,0,1,170.0,1,3,3,2,2,165.8,1,0,1,1,0,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,3,37,9,9,142.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9147,0,1,122.0,1,1,38,4,5,116.4,0,0,1,1,0,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,150.0,1,1,1,4,4,138.1,1,0,1,1,1,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,2 +1,17,6,9238,0,1,138.0,1,3,3,1,2,123.0,1,0,1,1,1,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,135.0,1,19,12,9,7,137.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9070,0,1,125.0,1,1,3,3,3,128.9,0,0,1,1,1,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,128.0,1,38,19,9,10,125.2,1,0,1,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,2 +1,42,1,9003,0,1,140.0,1,1,3,4,2,140.0,1,0,1,1,0,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,2 +1,39,1,9500,0,19,133.1,1,37,38,151,161,143.7,0,0,1,1,1,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,118.0,1,38,38,7,7,115.2,1,0,1,1,1,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,152.0,1,19,37,9,8,135.6,1,0,1,1,0,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,12,110.0,1,34,34,0,0,157.8,0,0,1,1,1,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,1 +1,1,6,9147,0,1,112.0,1,38,38,9,9,117.3,1,0,1,1,1,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,1 +1,17,3,9147,0,1,118.0,1,1,19,5,7,118.0,0,0,1,1,1,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,2 +1,44,1,9070,0,39,120.0,1,1,19,5,8,119.8,0,0,1,1,0,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9670,0,1,133.1,1,19,19,3,9,118.0,0,0,1,1,0,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,159.0,1,1,19,9,9,151.3,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,118.0,1,1,38,5,7,120.8,1,0,1,1,1,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,132.0,1,1,37,8,9,128.0,1,0,1,1,1,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,1 +1,42,1,9147,0,1,135.0,1,19,1,4,4,120.0,0,0,1,0,0,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9670,0,1,122.0,1,1,38,3,3,114.3,1,0,1,1,1,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,171,0,1,131.0,1,1,1,0,3,149.9,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +4,39,2,9556,0,1,133.1,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,5,9119,0,1,126.0,1,12,19,4,5,122.5,1,0,1,1,0,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,145.0,1,2,38,3,8,136.3,1,0,1,1,1,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,2 +1,15,1,9147,0,1,150.0,1,38,1,9,1,150.0,0,0,1,1,0,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,150.0,1,3,39,3,7,126.4,0,0,1,1,0,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,2 +1,17,2,9773,0,1,148.0,1,3,38,2,6,144.2,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,124.0,1,37,19,9,3,116.3,1,0,1,1,1,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +2,39,1,9003,0,1,130.0,1,1,37,9,1,122.0,0,0,0,0,0,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,160.0,1,19,38,5,7,139.0,1,0,1,1,1,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,157.0,1,3,2,3,6,150.9,1,0,1,1,1,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,0 +1,42,1,9119,0,1,120.0,1,1,1,5,7,108.6,0,0,1,0,0,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,0 +1,16,3,9773,0,1,138.0,1,37,38,4,9,134.2,1,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,110.0,1,0,1,1,1,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,0 +4,39,1,9853,0,1,143.0,1,37,1,9,10,140.0,0,0,0,0,1,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,130.0,1,3,19,4,8,133.0,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,19,38,6,7,140.0,1,0,1,1,0,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,132.0,1,2,2,6,6,128.5,0,0,1,1,1,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,0 +1,1,2,171,0,1,135.0,1,19,19,4,7,149.0,1,0,1,1,0,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,130.0,1,19,38,3,9,126.5,1,0,1,1,1,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,125.0,1,19,38,9,8,121.5,0,0,1,1,1,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,37,37,9,7,129.0,0,0,1,1,1,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,0 +1,7,3,9130,0,3,130.0,1,37,26,90,10,130.0,0,0,1,0,0,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,2,9500,0,1,123.0,1,19,19,7,7,120.8,1,0,1,1,1,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,1 +1,18,2,9853,0,1,168.0,1,1,19,3,9,126.8,1,0,1,1,0,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,2 +1,44,1,9085,0,39,140.0,1,3,1,4,3,140.0,1,0,1,1,1,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,148.0,1,19,19,9,9,138.7,0,0,1,1,1,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,1 +1,18,1,171,0,1,110.0,1,19,2,5,5,117.7,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9070,0,1,136.0,1,37,38,9,9,125.2,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +2,39,1,8014,1,1,133.1,1,37,37,5,4,134.5,0,0,1,1,1,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,2 +1,42,1,9119,0,1,150.0,1,38,37,5,8,133.5,1,0,1,1,0,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,140.0,1,1,3,4,6,139.2,0,0,0,1,1,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,125.0,1,19,19,5,5,117.0,0,0,1,1,1,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,1 +1,39,1,9147,0,12,133.1,1,19,37,7,9,118.2,0,0,1,1,1,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,0 +1,1,2,9147,0,1,121.0,1,1,19,9,9,113.7,1,0,1,0,1,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,0 +1,43,1,9130,0,1,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,131.0,1,3,19,2,3,132.8,1,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,1 +1,17,3,9500,0,1,136.0,1,37,38,4,5,126.0,1,0,1,1,1,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,1 +1,1,1,9853,0,1,145.0,1,37,37,9,5,146.8,0,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,123.0,1,1,1,4,9,116.7,1,0,1,1,0,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,0 +1,18,1,171,0,1,121.0,1,1,1,4,3,116.8,1,0,1,1,1,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,141.0,1,38,1,9,4,129.0,1,0,1,1,1,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,133.1,1,34,34,0,0,130.0,0,0,1,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,126.0,1,1,3,4,3,122.5,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,0 +2,1,1,9254,0,1,136.0,1,37,37,9,9,122.7,0,0,1,1,1,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,37,37,9,10,100.0,0,0,1,1,0,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9500,0,1,133.1,1,38,19,7,9,115.5,1,0,1,1,0,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,1 +1,1,1,9991,1,1,131.0,1,19,37,9,9,118.4,1,0,1,1,1,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,2 +1,1,1,9147,0,1,153.0,1,1,38,4,3,146.7,0,0,1,1,1,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,1 +1,43,1,8014,1,12,114.0,1,34,34,0,99,110.0,0,0,1,1,1,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,147.0,1,1,1,5,5,134.9,0,1,1,1,1,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,1 +1,1,2,9085,0,1,156.0,1,40,40,3,7,150.9,1,0,1,1,1,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,137.0,1,38,38,5,7,122.7,1,0,1,1,1,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,123.0,1,1,19,4,5,117.8,0,0,1,1,0,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,2 +1,17,1,9238,0,1,135.0,1,37,37,8,6,127.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,131.0,1,37,37,9,9,123.0,1,0,1,1,1,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,2 +1,17,2,9670,0,1,123.0,1,3,1,3,1,116.7,0,0,1,1,1,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,1 +1,7,1,9085,0,40,140.0,1,1,19,5,5,140.0,1,0,1,1,1,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,1 +4,39,1,9500,0,19,133.1,1,38,19,5,7,140.0,0,0,1,1,1,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,127.0,1,3,19,3,9,127.0,1,0,1,1,0,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,1 +1,17,2,8014,1,1,120.0,1,19,1,5,10,114.8,1,0,1,1,1,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9670,0,19,133.1,1,37,37,9,7,130.0,0,0,0,1,0,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,171,0,1,131.0,41,19,1,4,7,131.4,1,0,1,1,0,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,16,2,171,0,1,145.0,1,3,3,2,2,143.6,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,120.0,1,19,38,6,6,120.0,1,0,1,1,0,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,1 +1,17,6,9238,0,1,131.0,1,1,3,4,2,131.7,1,0,1,1,1,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,137.0,1,3,1,4,9,128.6,0,0,1,1,1,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,170.0,1,19,19,9,7,170.0,1,0,0,1,0,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,17,4,9853,0,1,122.0,1,38,37,9,9,118.9,1,0,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,1 +1,17,5,9500,0,1,148.0,1,1,19,4,8,130.2,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9003,0,19,133.1,1,1,19,9,8,120.0,0,0,0,0,0,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,2,9147,0,1,143.0,1,19,38,9,7,132.2,1,0,1,1,1,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9556,0,1,132.0,1,38,37,7,7,119.0,1,0,1,1,1,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,133.1,1,3,1,4,4,95.0,0,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,154.0,1,3,1,2,1,137.2,0,0,1,1,0,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,2 +1,1,1,9853,0,1,129.0,1,38,37,6,6,138.1,0,0,1,1,1,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,17,2,9670,0,1,129.0,1,1,19,5,5,119.2,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,43,1,9500,0,1,137.0,1,3,3,2,2,115.0,0,0,1,1,1,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,1 +1,17,2,9254,0,1,115.0,1,19,19,9,7,113.3,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,133.0,1,38,38,7,7,125.3,1,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,110.0,1,37,37,7,10,150.0,0,0,1,0,1,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,19,133.1,1,19,19,144,141,131.5,0,0,0,1,1,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,133.0,1,38,1,2,4,126.0,0,0,1,1,1,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,15,1,9147,0,1,133.1,41,41,1,3,4,100.0,0,0,0,0,0,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,0 +1,10,2,9773,0,1,154.4,22,19,38,3,5,154.4,1,0,1,0,1,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,9070,0,39,100.0,1,1,1,4,4,106.0,0,0,1,1,0,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,135.0,1,38,19,8,8,126.3,1,0,0,1,1,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,120.0,41,1,1,9,6,114.8,1,0,1,1,1,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,2 +1,17,1,9085,0,1,124.0,1,19,38,7,7,113.9,1,0,1,1,1,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,1 +1,1,6,9254,0,1,126.0,1,38,37,5,7,123.9,1,0,1,1,1,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,125.0,1,37,37,9,9,121.5,1,0,1,1,0,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,1 +1,1,6,9773,0,1,125.0,1,1,1,5,4,122.2,0,0,1,1,0,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,135.0,1,19,19,4,5,126.8,1,0,1,1,0,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9238,0,1,133.0,1,1,37,7,9,127.4,1,0,1,1,1,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,3,9070,0,1,127.0,1,19,38,5,7,141.0,1,0,1,1,0,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +2,39,1,9119,0,3,120.0,1,37,37,4,7,122.5,0,0,1,0,1,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,2,9147,0,1,150.0,1,19,37,9,7,101.0,0,0,0,0,1,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,0 +1,7,1,9003,0,4,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,1 +1,17,5,9500,0,1,143.0,1,38,1,9,7,130.6,1,0,1,1,1,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,129.0,1,38,19,5,7,124.0,1,0,1,1,1,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,1 +1,17,2,9500,0,1,140.0,1,1,1,5,10,128.5,1,0,1,1,1,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,2 +4,39,1,8014,1,19,100.0,1,1,37,9,1,111.5,0,0,1,1,0,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,0 +2,39,2,9556,0,1,110.0,1,19,38,9,9,112.8,0,0,1,1,1,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,2 +1,1,1,9147,0,1,116.0,1,19,19,5,8,127.9,0,0,0,0,1,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,0 +1,43,4,171,0,1,117.0,1,19,12,9,10,109.3,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,130.0,1,1,38,5,5,122.3,1,0,1,1,1,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,1 +1,15,1,9119,0,1,130.0,26,38,3,9,2,137.0,1,0,1,1,0,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,2 +1,39,1,9556,0,1,133.1,1,38,19,9,6,100.0,1,0,1,1,1,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,150.0,1,3,1,3,9,154.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,43,1,9147,0,1,131.0,1,3,19,2,9,126.1,0,0,1,1,1,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,2 +1,1,6,9773,0,1,145.0,1,1,19,4,4,131.0,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,136.0,1,19,38,4,7,140.9,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,155.0,1,19,37,4,5,117.5,0,0,1,1,1,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,2 +1,1,3,9147,0,1,128.0,1,3,3,5,10,116.5,0,0,1,1,0,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,17,4,9254,0,1,133.0,1,37,37,5,8,128.5,1,0,1,1,1,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,0 +1,17,1,9119,0,1,141.0,1,37,1,9,2,133.0,1,0,1,1,0,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,2 +1,51,1,8014,1,1,120.0,1,1,1,4,4,128.5,0,0,0,0,0,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,0 +1,43,1,9003,0,1,120.0,1,3,3,1,2,115.0,0,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,136.0,1,19,19,4,7,136.0,0,0,1,1,1,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,1 +1,17,1,9070,0,1,116.0,1,38,38,9,9,123.7,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,125.0,1,19,19,4,8,117.0,1,0,1,1,1,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,135.0,1,1,38,5,7,137.5,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,140.0,1,19,19,7,7,124.6,1,0,1,1,1,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,2 +1,39,1,9670,0,19,133.1,1,1,1,4,7,100.0,0,0,0,0,1,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,122.0,1,37,37,9,9,131.0,1,0,1,1,1,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,0 +2,43,1,9773,0,1,160.0,1,37,37,5,0,160.0,0,0,0,0,0,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9670,0,1,113.0,1,37,19,9,9,110.2,1,0,1,1,1,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,125.0,1,37,37,9,9,126.0,1,0,0,1,1,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,1 +1,43,1,171,0,39,140.0,1,38,37,9,7,140.0,0,0,1,0,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,16,3,9853,0,1,134.0,1,37,19,9,5,121.4,1,0,1,1,1,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,2 +1,1,1,8014,1,1,120.0,1,1,37,7,3,122.8,0,0,1,1,1,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,1,1,4,2,127.7,0,0,1,1,1,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,2 +2,39,1,9991,1,1,120.0,1,19,37,3,9,132.9,0,0,1,1,0,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,138.0,1,1,38,4,9,132.5,1,0,1,1,1,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,133.1,1,19,37,7,7,126.0,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +5,39,1,9500,0,1,110.0,1,38,38,9,9,110.0,0,0,1,0,1,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,0 +5,7,1,9500,0,40,150.0,1,37,37,4,9,150.0,0,0,1,1,1,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,1 +1,17,1,9070,0,1,126.0,1,19,38,9,7,118.7,0,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,16,4,9254,0,1,126.0,1,38,37,9,7,118.7,1,0,1,1,1,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,3,9773,0,1,110.0,1,19,19,5,5,105.5,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,1 +1,39,1,9238,0,9,133.1,1,34,34,0,0,118.0,0,0,1,1,1,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,140.0,1,3,2,4,6,133.4,1,0,1,0,0,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,2 +1,1,1,171,0,1,134.0,1,3,2,2,2,141.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,6,9773,0,1,133.1,1,1,1,90,90,129.6,0,0,1,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,133.1,1,38,19,5,6,138.0,0,0,0,1,0,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,2 +1,17,3,9500,0,1,156.0,1,19,37,4,9,132.3,1,0,1,1,0,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,1 +1,44,1,9085,0,39,140.0,1,3,3,4,2,140.0,1,0,1,1,1,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,1 +1,43,1,171,0,1,116.0,1,3,1,2,3,117.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,141.0,1,38,19,9,6,126.3,1,0,1,1,1,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,44,1,9238,0,39,140.0,1,1,19,191,102,143.0,0,0,1,1,1,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,1 +1,43,5,8014,1,1,110.0,1,34,34,0,0,110.0,0,0,1,1,0,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9238,0,1,143.0,1,1,11,4,3,128.0,1,0,1,1,1,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +3,17,1,9238,0,1,138.0,1,37,37,9,9,133.5,1,0,1,1,1,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,2 +1,7,1,9119,0,3,150.0,1,3,2,2,2,150.0,0,0,1,1,1,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9003,0,39,150.0,1,19,1,1,1,150.0,0,0,1,1,0,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,2 +1,17,1,9085,0,1,134.0,1,19,37,2,7,131.2,0,0,1,1,1,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,171,0,1,133.1,1,37,37,9,7,100.0,0,0,0,1,0,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,18,1,9556,0,1,133.1,1,3,19,2,8,106.0,1,0,1,1,0,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,1 +1,17,2,9500,0,1,135.0,1,19,19,9,4,129.8,1,0,1,1,1,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,1 +1,39,1,33,0,1,130.0,1,38,37,9,6,102.5,0,0,0,0,0,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,0 +1,18,1,9500,0,1,144.0,1,37,37,6,6,127.5,1,0,1,1,1,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,130.0,1,37,38,9,9,133.9,1,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,1 +2,44,1,9003,0,39,140.0,1,37,37,4,7,140.0,0,0,1,1,0,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,0 +1,1,4,9773,0,1,137.0,1,3,19,2,3,139.8,1,1,1,1,1,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,2 +1,1,1,9991,1,1,130.0,1,2,37,3,9,131.4,0,0,1,1,0,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,135.0,1,3,3,1,1,125.8,1,0,1,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,1 +1,18,1,9238,0,1,147.0,1,38,34,4,0,130.2,0,0,1,1,1,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +5,17,5,9500,0,1,143.0,1,37,38,5,8,133.5,1,0,1,1,1,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,99.0,1,1,3,5,10,100.0,1,0,1,1,0,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,1 +1,16,2,9147,0,1,131.0,1,37,37,9,9,135.9,1,0,1,1,0,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,146.0,1,38,37,6,6,143.9,0,0,1,1,1,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,1 +1,17,1,9085,0,1,139.0,1,38,38,5,3,136.2,0,0,1,1,1,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,153.0,1,3,1,2,8,137.6,1,0,1,1,1,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,17,2,9085,0,1,133.1,1,19,38,9,1,100.0,1,0,0,0,0,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,0 +1,1,2,9773,0,1,121.0,1,19,19,9,9,122.8,0,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,141.0,1,37,38,9,10,138.9,0,0,1,1,1,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,1,6,9500,0,1,117.0,1,4,12,5,9,119.8,1,0,1,1,1,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,1 +1,17,4,9119,0,1,122.0,62,1,1,191,171,121.0,1,0,1,1,0,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,38,19,3,3,98.6,0,0,1,1,1,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,140.0,1,38,37,5,6,124.3,1,0,1,1,1,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,140.0,1,37,37,9,9,127.7,1,0,1,1,1,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,121.0,1,37,37,9,9,124.2,1,0,1,1,1,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,1 +1,18,1,9130,0,1,146.0,1,3,3,5,2,137.8,0,0,1,1,0,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,3,120.0,1,1,1,7,10,120.0,1,0,1,0,0,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,120.0,1,37,37,7,8,120.0,1,0,0,0,1,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,178.0,1,19,1,4,8,174.7,0,0,1,1,1,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,1 +1,17,5,9254,0,1,114.0,1,38,1,5,9,109.5,0,0,1,1,0,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,143.0,1,38,38,9,9,140.0,0,0,1,1,0,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,160.0,1,38,37,9,5,159.3,0,0,1,1,1,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,143.0,1,38,34,9,9,133.6,1,0,1,1,1,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,1 +4,43,1,9500,0,19,100.0,1,34,34,0,0,110.0,0,0,1,1,0,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,1 +1,1,2,9254,0,1,125.0,1,1,19,4,1,121.5,1,0,1,1,0,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,19,7,3,120.0,1,0,1,1,0,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,3,120.0,1,19,1,9,5,134.0,0,0,1,1,1,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,0 +1,39,1,9254,0,1,160.0,1,19,37,7,10,100.0,0,0,1,1,0,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,2 +1,15,1,171,0,1,130.0,26,1,1,2,9,130.0,0,0,1,1,0,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,2 +1,1,1,171,0,1,140.0,1,19,37,5,6,137.9,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,123.0,1,19,37,9,9,124.1,1,0,1,1,1,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,140.0,1,38,38,6,6,140.0,0,0,1,1,1,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,9991,1,9,133.1,1,34,34,0,0,118.4,0,0,1,0,1,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,6,9254,0,1,125.0,1,1,1,4,3,120.5,1,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,1 +1,1,6,171,0,1,126.0,1,10,10,4,4,130.2,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,120.0,1,1,19,4,7,120.0,0,0,1,1,0,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,2 +1,17,5,9773,0,1,143.0,1,1,1,7,7,136.7,1,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,42,1,9147,0,1,130.0,1,37,38,9,1,130.0,1,0,1,1,1,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,1,130.0,1,37,37,9,9,124.0,0,0,1,1,0,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,1 +1,17,2,9238,0,1,136.0,1,1,3,3,4,126.6,1,0,1,1,1,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,127.0,1,19,1,5,7,118.3,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,2 +4,39,1,9991,1,1,147.0,1,19,19,7,8,147.9,0,0,1,1,1,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,2 +1,1,4,9773,0,1,124.0,1,19,37,99,90,124.0,0,0,1,0,1,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +2,43,1,9003,0,1,133.1,1,37,37,9,7,136.0,0,0,1,1,0,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,1 +1,1,1,9085,0,1,140.0,1,12,1,1,90,141.8,0,0,1,1,1,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,133.1,1,37,37,191,154,95.0,0,0,1,1,1,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,147.0,1,2,3,4,8,145.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +2,7,1,9238,0,3,130.0,1,37,19,4,5,130.0,0,0,1,1,1,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,1 +1,7,2,9085,0,3,130.0,1,3,3,1,1,130.0,0,0,1,0,1,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,0 +2,39,2,9147,0,3,130.0,1,3,37,9,9,103.4,0,0,1,1,1,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,0 +1,17,1,9085,0,1,135.0,1,1,19,4,10,125.6,1,0,1,1,1,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,1,1,5,5,96.0,1,0,1,0,0,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +5,39,1,9853,0,19,133.1,1,38,1,5,3,105.5,0,0,0,1,1,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,136.0,1,37,37,7,7,121.7,1,0,1,1,1,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9119,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,0,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,19,133.1,1,19,19,4,4,100.0,0,0,1,1,0,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,2 +1,1,1,171,0,1,124.0,1,2,2,3,2,118.4,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,17,1,9085,0,1,120.0,1,2,3,2,2,116.1,0,0,1,1,1,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,162.0,1,37,37,9,9,142.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,131.0,1,37,1,9,9,135.9,1,0,1,1,1,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,37,37,9,7,100.0,0,0,1,1,0,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,1 +1,43,1,9500,0,1,127.0,1,19,19,4,7,121.1,0,0,1,1,1,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,143.0,1,37,37,9,5,131.6,1,0,1,1,1,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,1 +1,17,4,9085,0,1,140.0,1,19,37,4,7,123.7,0,0,1,1,1,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,156.0,1,19,1,5,10,136.8,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,0 +2,39,1,9853,0,10,133.1,1,37,34,0,0,115.5,0,0,1,1,1,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,0 +1,1,3,9119,0,1,113.0,1,4,38,2,7,107.4,1,0,1,1,0,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,1 +2,39,1,9670,0,1,130.0,1,37,37,9,0,158.0,0,0,0,0,1,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,0 +1,43,1,9853,0,1,110.0,1,37,37,9,9,107.7,0,0,0,0,1,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,124.0,1,2,2,3,3,124.7,1,0,1,1,0,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,127.0,1,37,37,5,10,125.3,0,0,1,1,0,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,1 +1,16,1,9500,0,1,133.1,1,37,37,9,9,95.0,1,0,1,1,1,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,1 +1,1,4,9238,0,1,127.0,1,19,19,4,0,127.4,1,0,1,1,1,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,113.0,1,38,38,3,7,112.3,0,0,1,1,1,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,1 +1,17,4,9670,0,1,110.0,1,19,37,9,99,106.1,1,1,0,0,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,141.0,1,1,38,4,8,136.8,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,133.1,1,37,37,9,7,140.0,0,0,1,1,1,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,124.0,1,1,1,4,4,118.8,0,0,1,1,0,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,4,120.0,1,2,3,2,2,120.0,0,0,1,1,1,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,0 +1,17,2,9670,0,1,110.0,1,3,3,4,10,115.6,1,0,1,1,0,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,118.0,1,1,19,4,10,110.7,1,1,1,1,1,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,2 +4,39,1,9238,0,1,130.0,1,19,3,9,2,140.0,0,0,1,1,0,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,1,140.0,1,1,19,3,9,140.0,1,0,0,0,1,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,0 +1,17,3,9773,0,1,123.0,1,1,19,5,5,117.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,115.0,1,38,38,8,7,112.9,1,0,1,1,1,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,1 +1,1,6,9147,0,1,142.0,1,38,37,7,7,134.3,0,1,1,1,0,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9085,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,1,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,129.0,1,19,1,3,7,121.0,0,0,1,1,1,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,156.0,1,3,3,123,122,155.0,0,0,1,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,136.0,1,37,37,9,9,126.3,1,0,1,1,1,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,1 +2,43,1,9991,1,1,110.0,1,37,37,9,9,132.5,0,0,1,1,0,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,19,133.1,1,37,1,5,5,138.3,0,0,1,1,0,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,0 +1,1,2,9130,0,1,140.0,1,19,37,9,9,129.5,1,0,1,1,1,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,2 +1,7,1,9500,0,3,140.0,1,37,37,4,4,140.0,0,0,1,1,1,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,1 +4,42,1,9147,0,1,110.0,1,37,37,9,9,128.2,0,0,1,1,1,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,1 +1,39,1,9119,0,19,133.1,1,1,1,4,3,134.4,0,0,0,0,0,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,136.0,1,37,1,5,4,120.8,1,0,1,1,1,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,1 +1,17,2,9500,0,1,140.0,1,37,37,9,9,132.5,1,0,1,1,1,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,1 +1,17,6,9147,0,1,130.0,1,37,37,9,9,110.4,1,0,1,1,0,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,4,5,105.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,136.0,1,19,19,4,3,126.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,116.0,1,38,2,9,2,112.2,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9238,0,1,122.0,1,19,3,5,2,112.6,0,0,0,1,1,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,2 +1,17,1,9147,0,1,118.0,1,1,38,9,9,118.4,1,0,1,1,0,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,2 +1,17,1,9130,0,1,117.0,1,19,19,4,4,113.5,1,0,1,1,1,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,117.0,1,19,19,9,9,111.8,1,0,1,1,0,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,0 +1,1,6,9500,0,1,118.0,1,38,19,3,3,113.5,1,0,1,1,0,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,1 +2,43,2,9853,0,1,130.0,1,38,31,4,1,124.2,0,0,1,1,1,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,128.0,1,38,38,9,7,124.5,1,0,1,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,2 +1,1,1,9238,0,1,116.0,1,38,38,9,8,108.7,1,0,1,1,0,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9254,0,19,133.1,1,37,19,9,10,156.5,0,0,1,1,0,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,1 +1,39,1,9003,0,1,160.0,1,1,37,191,193,140.0,0,0,1,1,0,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,110.0,1,37,37,9,10,150.0,0,0,1,1,0,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,1 +1,18,2,9070,0,1,122.0,1,38,19,5,5,119.9,0,0,1,1,0,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,125.0,1,19,38,9,7,116.3,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,37,37,6,6,147.8,0,0,1,1,1,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,2 +1,1,1,171,0,1,174.0,1,5,3,3,3,157.9,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,131.0,1,1,1,4,4,127.2,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,0 +1,17,1,9670,0,3,110.0,1,12,3,5,8,106.5,1,0,0,0,1,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9500,0,1,124.0,1,37,37,9,9,116.0,1,0,1,1,1,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,38,38,5,7,146.2,0,0,1,1,1,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,133.1,1,37,37,9,9,97.0,0,0,1,1,1,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,132.0,1,19,1,9,9,141.8,1,0,1,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,1 +2,43,1,9254,0,3,120.0,1,38,37,9,3,120.0,1,0,1,1,1,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,135.0,1,3,2,1,1,133.6,1,0,1,0,1,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,133.0,1,38,38,5,2,135.5,0,0,1,1,1,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,125.0,1,39,3,3,2,125.0,1,0,1,1,1,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,133.1,1,1,1,3,4,112.0,0,0,1,1,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,141.0,1,1,1,5,9,126.3,0,0,1,1,0,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,1 +1,39,1,9003,0,1,133.1,1,1,37,9,8,130.0,0,0,1,1,0,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,0 +2,43,1,9991,1,1,140.0,1,37,37,3,10,107.8,0,0,1,1,1,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,2 +1,43,1,9500,0,1,120.0,1,3,4,2,4,120.6,0,0,1,1,0,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,1,133.1,1,1,19,9,9,120.0,0,0,1,1,0,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,1 +1,39,1,9853,0,1,140.0,1,19,1,9,4,128.2,0,0,1,0,1,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,133.1,1,37,19,9,3,123.0,0,0,1,1,0,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,2 +1,39,1,9147,0,1,150.0,1,37,1,7,3,148.8,0,0,1,1,0,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,1 +1,17,1,9670,0,1,125.0,1,38,37,7,5,126.4,0,0,1,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,1 +1,44,1,9003,0,39,140.0,1,38,1,134,134,140.0,1,0,0,1,0,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,2 +1,44,1,9070,0,39,140.0,1,1,19,4,4,140.0,0,0,1,1,0,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,130.0,1,1,1,9,9,124.1,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,2 +1,51,1,9070,0,1,130.0,1,19,19,5,7,124.5,0,0,1,1,1,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,101.0,1,37,37,9,4,101.0,1,0,0,1,1,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,2 +1,1,1,8014,1,1,115.0,1,38,38,9,7,115.0,1,0,1,1,1,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,1 +1,17,1,9130,0,1,122.0,1,19,19,9,9,121.7,1,0,1,0,1,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,135.0,1,38,38,9,6,138.1,0,0,0,0,1,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9147,0,1,130.0,1,37,37,9,9,119.9,1,0,1,0,1,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,134.0,1,1,1,9,9,133.0,1,0,1,1,1,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,19,37,9,9,117.8,1,0,1,1,1,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,119.0,1,1,19,4,10,115.5,1,0,1,1,1,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,2 +1,17,3,9119,0,1,138.0,1,3,3,3,4,125.4,1,1,1,1,0,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,164.0,1,19,19,9,9,149.0,1,0,1,1,1,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,44,1,9085,0,1,140.0,1,4,4,2,6,140.0,0,0,1,1,1,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,1 +1,43,1,9070,0,1,160.0,1,1,2,4,2,100.0,0,0,1,1,0,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,132.0,1,37,37,9,5,135.9,0,0,1,1,1,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,142.0,1,37,19,7,7,133.0,1,0,1,1,1,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,1 +1,7,1,9556,0,3,130.0,1,1,37,4,8,130.0,0,0,1,0,0,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,0 +1,44,1,171,0,39,110.0,1,1,1,1,7,114.2,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9147,0,1,129.0,1,19,19,4,9,127.6,1,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,164.0,1,34,1,0,0,163.0,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9556,0,1,122.0,1,19,38,4,8,118.3,1,0,1,1,1,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,1 +1,17,4,9500,0,1,141.0,1,38,37,3,3,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,1 +1,1,1,9003,0,1,148.0,1,1,19,194,194,143.5,0,0,0,1,0,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,150.0,1,37,19,6,4,137.0,0,0,1,1,0,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,38,38,1,4,138.7,0,0,1,1,0,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,103.8,0,0,1,1,1,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,0 +1,17,1,8014,1,1,127.0,1,19,37,4,7,115.8,0,0,1,1,1,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,143.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,130.0,1,38,19,5,6,125.1,1,0,1,1,1,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9254,0,1,133.0,1,19,1,9,9,137.2,0,0,1,1,0,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +2,1,4,8014,1,1,140.0,1,34,34,0,0,128.0,1,0,1,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,120.0,1,1,1,9,10,118.3,0,0,1,1,0,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,2 +2,39,1,8014,1,12,133.1,1,37,37,9,1,113.0,0,0,1,1,1,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,128.0,1,19,1,0,5,122.1,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,37,38,3,3,123.0,0,0,1,1,1,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,120.0,1,37,1,7,4,95.0,1,0,1,1,1,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,0 +1,17,4,9238,0,1,123.0,1,19,19,191,144,116.0,1,0,1,1,1,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,39,1,9085,0,1,140.0,1,37,37,90,90,106.3,0,0,0,0,0,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,159.0,1,3,3,2,2,162.5,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,125.0,1,19,19,9,9,115.9,0,0,1,1,1,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,130.0,1,19,19,3,7,129.0,0,0,0,0,1,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,133.1,1,38,37,5,5,136.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,156.0,1,5,4,2,1,140.8,0,0,1,1,1,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,1,161.0,1,37,37,9,9,100.0,1,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,7,1,8014,1,3,130.0,1,35,35,90,90,140.0,0,0,1,0,1,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,0 +2,1,1,9991,1,1,120.0,1,37,19,9,9,135.0,1,0,1,1,0,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,0,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,148.0,1,3,3,2,2,137.3,1,0,1,1,1,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,120.0,1,19,37,5,7,115.1,0,0,1,1,1,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,2 +1,17,6,9773,0,1,138.0,1,1,1,4,2,140.5,1,0,1,1,1,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,1 +2,43,1,9085,0,1,160.0,1,37,37,9,7,120.0,0,0,1,1,0,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,2 +1,17,2,8014,1,1,134.0,1,1,19,4,99,126.0,1,0,1,1,0,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,100.0,1,0,1,1,1,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,131.0,1,1,1,5,9,129.5,1,0,1,1,1,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,1 +1,1,4,171,0,1,139.0,1,37,38,9,9,127.8,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,150.0,1,37,37,5,6,132.5,1,0,1,1,1,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,2 +1,1,1,9085,0,1,133.1,1,19,38,5,7,110.0,1,0,1,1,1,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,1 +1,43,1,9254,0,6,138.6,1,34,34,0,0,138.6,1,0,1,1,0,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,133.1,1,1,1,4,10,100.8,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,5,140.0,1,19,1,4,1,140.0,1,0,1,0,1,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,118.0,1,1,19,9,10,113.1,1,0,1,1,1,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,115.0,1,3,3,2,2,111.5,1,0,0,0,1,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9254,0,39,170.0,1,19,2,9,3,170.0,0,0,1,0,0,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,37,9,9,120.0,0,0,1,1,1,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,3,9500,0,1,137.0,1,19,38,7,7,126.5,1,0,1,1,1,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,136.0,1,19,19,90,8,133.9,1,0,1,0,0,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,0 +1,18,2,9500,0,1,141.0,24,1,1,4,3,126.8,1,0,1,1,1,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,1 +1,17,4,9238,0,1,124.0,1,19,19,5,8,117.7,1,0,1,1,1,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,149.0,1,19,38,9,9,126.5,1,0,1,1,1,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,153.0,1,1,1,141,175,157.9,0,0,0,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,140.0,1,1,2,4,6,140.0,1,0,1,1,1,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,137.0,1,1,3,3,2,121.3,1,0,1,1,1,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,143.0,1,1,1,4,6,138.8,0,0,1,0,0,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,160.0,1,1,3,1,2,130.0,0,0,1,0,0,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,19,19,9,8,105.8,0,0,1,1,1,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,0 +1,5,4,9119,0,1,115.0,1,19,37,4,6,113.3,1,0,1,1,0,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,19,4,3,125.4,1,0,1,1,1,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,1 +4,42,1,9500,0,19,133.1,1,1,1,5,5,126.0,1,0,1,1,0,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9254,0,3,133.1,1,19,19,4,6,130.5,0,0,1,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9147,0,1,108.0,1,1,19,4,4,105.9,1,0,1,1,0,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,126.0,1,19,19,9,9,115.2,0,0,0,1,1,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,2 +1,1,1,9853,0,1,140.0,1,37,37,9,9,145.3,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,1,6,9070,0,6,119.0,1,1,1,9,9,123.2,1,0,1,1,0,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,160.0,1,1,38,5,6,168.6,0,0,1,1,0,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9254,0,1,120.0,1,1,19,9,9,148.3,0,0,1,1,0,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,1 +1,7,1,9085,0,3,130.0,1,1,19,9,10,130.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,137.0,1,38,38,151,151,141.6,0,0,1,1,0,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,1 +1,39,1,9003,0,19,133.1,1,37,37,9,4,140.0,0,0,1,1,0,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,2 +1,43,1,9085,0,1,162.0,1,2,1,4,4,162.0,0,0,1,1,1,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,1 +1,43,1,171,0,1,133.0,1,19,19,5,7,133.0,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,154.0,1,37,37,9,7,150.2,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,19,100.0,1,38,19,0,10,111.3,0,0,0,0,1,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,38,4,9,126.2,0,0,1,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,132.0,1,3,1,2,7,125.5,1,0,1,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,127.0,1,37,37,5,7,116.2,0,0,1,1,0,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9773,0,1,121.0,1,19,38,9,7,113.0,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,130.0,1,19,19,9,9,127.6,1,0,1,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,160.0,1,34,34,99,99,114.3,0,0,1,1,0,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,2 +1,18,4,9254,0,1,119.0,1,37,37,9,9,113.1,1,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,130.0,1,38,37,5,6,130.0,0,0,1,1,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,163.0,1,19,37,5,8,150.8,1,0,1,1,0,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,2 +1,43,1,9238,0,1,122.0,1,19,19,5,5,114.3,1,0,1,1,1,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,2 +1,18,1,9147,0,1,131.0,1,34,34,90,90,131.0,0,0,1,1,0,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,4,9773,0,1,137.0,1,1,1,5,5,125.8,0,0,0,1,0,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9670,0,1,133.1,1,37,37,90,90,97.4,0,0,0,0,0,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,37,38,7,5,106.0,1,0,1,1,1,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,1 +1,17,6,9254,0,1,108.0,1,1,19,4,5,112.2,1,0,1,1,0,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,19,133.1,1,1,19,4,10,111.8,1,0,1,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,133.1,1,1,37,9,10,139.0,0,0,1,1,0,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,122.0,1,12,19,4,8,117.8,1,0,1,1,1,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,128.0,1,19,19,0,5,120.3,1,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,133.1,1,34,19,0,3,117.1,1,0,1,1,1,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9556,0,19,133.1,1,37,38,9,9,123.0,0,0,1,1,1,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,1 +1,17,2,9238,0,1,133.0,1,37,37,9,4,123.6,0,0,1,1,1,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,5,9670,0,1,132.0,1,19,19,5,5,134.1,1,0,1,1,0,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,129.0,1,38,1,4,10,129.4,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,136.0,1,19,19,4,8,150.4,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,154.0,1,3,3,1,3,129.0,1,0,1,1,1,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,2 +1,44,1,9130,0,39,150.0,1,1,1,4,4,150.0,1,0,1,1,1,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,2 +1,17,1,9773,0,1,115.0,1,37,37,9,8,116.1,1,0,1,1,1,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,157.0,1,19,3,4,9,138.8,0,0,1,1,0,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9670,0,19,133.1,1,19,1,5,8,97.2,1,0,1,1,0,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,141.0,1,37,38,6,6,125.6,1,0,1,1,1,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,143.0,1,19,1,9,9,144.4,1,0,1,1,1,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9119,0,1,127.0,1,19,1,4,5,115.8,0,0,1,1,0,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,150.0,1,1,1,9,10,142.7,0,0,0,1,1,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,132.0,11,12,12,90,4,129.9,1,0,1,1,1,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,115.0,1,19,19,191,171,109.1,0,0,0,0,0,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,2 +1,17,1,9773,0,1,121.0,1,38,38,9,8,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,7,1,9085,0,40,130.0,1,1,1,4,4,130.0,1,0,1,1,1,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,140.0,1,19,38,4,4,138.3,0,0,1,1,0,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,6,9773,0,1,116.0,1,19,1,4,4,110.1,1,0,1,1,1,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,131.0,1,38,38,9,9,127.9,0,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,1 +1,51,1,9991,1,42,110.0,1,19,37,5,9,128.2,0,0,1,0,1,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,0 +1,1,3,9500,0,1,138.0,1,19,19,5,8,124.9,1,0,1,1,1,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,172.0,1,1,1,4,9,167.1,0,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +5,39,1,9991,1,1,120.0,1,37,37,9,9,138.1,0,0,1,1,0,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,37,38,3,7,96.7,0,0,1,1,0,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,15,1,9130,0,1,133.1,41,1,1,4,4,100.0,0,0,1,1,1,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9119,0,1,122.0,1,19,19,9,9,114.7,0,0,1,1,0,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,133.1,1,19,38,192,192,96.0,1,0,1,1,1,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,160.0,1,1,37,9,10,118.0,0,0,1,1,1,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,2 +1,18,4,9119,0,1,134.0,1,19,38,194,175,124.9,1,0,0,1,0,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,4,19,4,5,98.0,0,0,1,1,0,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +5,43,1,9991,1,3,130.0,1,3,3,1,1,130.0,0,0,1,1,1,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,120.0,1,19,19,4,5,114.8,1,0,0,0,1,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,0 +1,18,6,8014,1,1,134.0,1,3,19,2,4,120.7,1,0,1,1,1,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,133.1,1,37,37,9,9,109.7,0,0,1,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9070,0,1,128.0,1,19,19,3,3,123.5,1,1,1,0,0,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,133.1,1,1,19,5,9,130.0,0,0,1,1,0,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,1 +1,7,1,9991,1,40,120.0,1,43,3,3,3,120.0,0,0,1,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,2 +1,17,5,9556,0,1,139.0,1,19,19,9,8,121.3,1,0,1,1,1,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,156.0,1,3,19,3,3,151.1,0,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,1 +1,16,2,9147,0,1,132.0,1,37,37,9,9,122.6,1,0,1,1,1,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,130.0,1,2,3,9,6,130.0,0,0,1,1,0,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,133.1,1,1,1,1,6,120.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,0,1,0,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,133.0,1,3,3,1,1,126.2,1,0,1,1,1,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,1 +1,18,2,9147,0,1,140.0,1,37,37,5,9,124.3,1,0,1,1,0,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,44,1,9003,0,39,150.0,1,37,38,4,8,150.0,0,0,1,1,1,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,140.0,1,37,19,191,163,129.3,1,0,0,1,1,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +4,7,1,9500,0,3,130.0,1,3,19,2,3,130.0,0,0,1,1,1,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9070,0,1,131.0,1,19,19,7,7,125.1,0,0,1,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,2 +1,10,1,9773,0,1,152.0,22,38,37,5,9,152.0,1,0,1,1,1,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,123.0,1,34,38,0,7,120.2,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,1,1,9070,0,1,131.0,1,3,19,4,4,130.3,1,0,1,1,0,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,115.0,1,1,1,5,4,108.0,1,0,1,1,1,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,130.0,1,38,37,9,9,144.0,0,0,1,1,1,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9238,0,1,134.0,1,3,1,3,4,133.0,1,0,1,1,1,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,1 +1,51,1,9670,0,1,133.1,1,3,1,3,10,116.2,0,0,1,1,0,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,139.0,0,0,1,1,0,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,126.0,1,19,1,9,9,122.5,1,0,1,0,1,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,121.0,1,19,19,9,9,126.3,1,0,1,1,1,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9003,0,1,133.1,1,38,38,4,8,115.0,0,0,0,1,0,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,19,37,9,9,151.5,0,0,0,0,0,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9853,0,40,110.0,1,41,3,2,1,110.0,0,0,0,1,1,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,1 +1,17,5,9238,0,1,131.0,1,19,37,5,7,120.2,1,0,1,1,1,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,2 +5,7,1,9070,0,3,140.0,1,37,37,7,7,140.0,0,0,1,0,0,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +4,39,1,9254,0,1,140.0,1,38,37,9,9,112.0,0,0,0,1,1,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,0 +1,18,3,9853,0,1,122.0,1,38,37,9,5,120.3,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9070,0,1,125.0,1,1,38,9,7,118.0,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,2 +1,1,3,9670,0,1,111.0,1,1,1,5,5,105.4,0,0,1,1,1,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +2,39,1,9254,0,1,130.0,1,37,37,4,7,120.0,1,0,1,1,1,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,160.0,1,37,37,9,9,160.0,1,0,1,1,1,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,1 +1,39,1,9147,0,12,133.1,1,37,37,9,9,140.0,0,0,1,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9147,0,1,118.0,1,1,2,10,10,117.3,1,0,1,1,1,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,3,9085,0,1,130.0,1,1,19,9,9,121.3,1,0,1,1,1,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,19,133.1,1,37,37,9,9,130.0,0,0,1,1,1,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,3,9085,0,1,130.0,1,19,37,5,5,121.3,1,0,1,1,1,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,2 +1,1,2,9254,0,1,120.0,1,19,19,9,9,116.5,1,0,1,1,1,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,1 +2,39,1,9500,0,1,140.0,1,37,37,9,4,127.3,0,0,1,1,0,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,1 +1,17,1,9670,0,1,118.0,1,37,38,8,7,115.2,1,0,1,1,1,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,17,3,9238,0,1,125.0,1,19,19,7,8,121.5,0,0,1,1,1,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,125.0,1,19,19,5,5,114.5,1,0,1,1,1,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,136.0,1,39,1,3,4,134.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,115.0,1,3,2,4,5,112.6,0,0,1,1,0,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,53,1,9003,0,1,130.0,1,19,1,9,9,130.0,0,0,0,1,0,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,2 +1,1,3,9773,0,1,136.0,1,3,1,5,3,129.0,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,3,150.0,1,2,3,4,7,173.3,1,0,1,1,1,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,140.0,1,1,19,7,7,129.9,1,0,1,1,1,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,0 +1,7,1,9119,0,1,140.8,1,34,34,0,0,134.0,0,0,1,1,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9254,0,1,115.0,1,37,19,5,5,109.8,1,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,137.0,1,1,1,4,4,127.6,1,0,1,1,1,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,1 +4,7,1,9238,0,40,130.0,1,34,34,99,99,130.0,0,0,0,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9147,0,1,123.0,1,37,37,9,9,106.2,0,0,1,1,1,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,121.0,1,1,3,3,7,113.0,1,0,1,1,0,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,1 +1,17,1,9254,0,1,140.0,1,3,1,2,3,129.9,0,0,1,1,1,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,7,1,9991,1,40,130.0,1,38,38,9,7,130.0,0,0,1,1,0,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,0 +1,51,1,9070,0,1,132.0,1,19,19,153,153,120.0,0,0,1,1,1,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,9119,0,1,110.0,1,37,37,9,9,106.8,0,0,1,1,0,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9070,0,1,124.0,1,19,37,4,4,126.8,0,0,1,1,1,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,2 +1,18,3,9147,0,1,133.1,1,1,38,4,7,101.0,1,0,1,0,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,3,9147,0,1,125.0,1,38,19,7,7,125.7,0,0,1,1,1,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,2 +1,17,4,9853,0,1,121.0,1,38,38,5,7,113.7,1,0,1,1,1,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,1,133.1,1,1,1,9,6,105.0,1,0,0,0,1,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,143.0,1,5,1,2,5,136.7,0,0,1,1,1,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,1 +1,1,2,9556,0,1,142.0,1,1,19,4,5,130.5,1,0,1,1,1,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,131.0,1,19,19,7,5,122.1,1,0,1,1,1,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,132.0,1,1,37,4,7,121.8,1,0,1,1,1,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,123.0,1,37,37,3,3,123.0,1,0,1,1,1,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,129.0,1,19,38,2,7,126.9,1,0,1,1,1,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,2 +1,1,4,9238,0,1,118.0,1,19,38,9,9,110.0,0,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,125.0,1,3,1,4,4,119.4,1,0,1,1,1,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,2 +1,17,1,9085,0,1,131.0,1,1,3,4,1,129.3,1,0,1,1,1,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9500,0,1,147.0,1,37,37,9,9,134.3,0,0,1,1,1,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,1 +2,39,2,9670,0,19,133.1,1,37,37,9,9,135.6,0,0,1,1,1,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,152.0,1,37,19,9,9,137.0,1,0,1,1,1,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,118.0,1,12,1,4,10,115.7,0,0,1,1,0,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,2 +1,15,1,9119,0,1,133.1,41,1,3,5,8,100.0,0,0,0,1,0,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,0 +1,1,5,9119,0,1,131.0,1,1,19,4,7,126.8,0,0,1,0,0,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,132.0,1,19,38,9,7,119.1,0,0,1,0,0,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,8014,1,1,120.0,1,37,37,5,5,161.1,0,0,1,1,0,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,18,5,9500,0,1,137.0,1,19,1,1,10,129.3,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,118.0,1,37,19,5,5,119.1,1,0,1,1,1,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,134.0,1,38,38,9,9,122.0,1,0,1,1,0,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,163.0,1,1,1,4,3,149.7,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,140.0,1,38,38,9,7,140.0,0,0,1,1,1,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,2 +1,17,4,9147,0,1,122.0,1,19,19,5,7,116.4,1,0,0,1,1,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,140.0,1,3,37,3,7,116.9,0,0,1,1,0,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,5,2,9238,0,1,123.0,1,40,38,2,9,118.1,1,0,1,1,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,7,1,9991,1,3,130.0,1,3,19,2,3,133.9,0,0,1,1,1,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,125.0,1,1,38,4,7,114.9,1,0,1,1,1,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,130.0,1,1,1,4,10,115.2,0,0,1,1,0,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,124.0,1,38,19,9,7,129.6,1,0,1,1,0,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,139.0,1,38,38,7,5,133.4,0,0,1,1,1,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,4,9254,0,1,125.0,1,38,38,5,5,115.6,1,0,1,1,1,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,147.0,1,37,37,9,9,142.8,1,0,1,1,1,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,0 +1,1,1,9003,0,1,144.0,1,19,19,9,9,132.8,0,0,1,1,0,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,12,133.1,1,19,1,9,1,130.0,0,0,1,1,0,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,140.0,1,37,37,9,6,135.5,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,6,9254,0,1,102.0,1,3,1,2,2,101.7,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,133.1,1,19,38,5,5,131.8,1,0,0,1,1,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,1 +1,44,1,171,0,39,150.0,1,4,4,2,2,150.0,0,0,1,1,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,53,1,9254,0,42,110.0,1,1,1,4,7,111.8,1,0,1,1,1,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,121.0,1,19,38,6,6,116.1,1,0,1,1,0,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,1 +1,17,4,9773,0,1,127.0,1,1,19,4,1,115.8,1,0,1,1,1,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,37,37,9,7,160.0,1,0,1,0,0,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,15,170.0,1,34,1,90,2,101.0,0,0,1,1,1,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,125.0,1,3,3,3,3,116.6,1,0,1,0,1,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,2 +1,17,4,9070,0,1,117.0,1,1,1,3,3,125.4,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,146.0,1,19,37,7,7,133.8,1,0,1,1,1,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,142.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,1 +1,1,1,171,0,3,116.0,1,3,3,2,2,128.2,0,0,1,1,1,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,1 +1,1,2,9500,0,1,124.0,1,37,37,7,7,116.5,1,0,1,1,1,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,118.0,1,19,19,5,7,117.8,0,0,1,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,1 +1,18,3,9670,0,1,119.0,1,38,38,9,9,115.2,1,0,1,1,1,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,131.0,1,3,19,3,10,123.3,0,0,1,1,0,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,2 +1,17,1,9254,0,1,136.0,1,39,3,3,3,128.7,1,0,1,1,1,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,0 +1,18,1,9500,0,1,140.0,1,37,38,5,7,126.0,1,0,1,1,1,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +1,44,1,9119,0,39,150.0,1,19,3,5,2,150.0,0,0,1,1,0,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,2 +1,43,1,9773,0,1,137.0,1,38,37,9,5,127.9,1,0,1,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,119.9,0,0,1,1,1,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,2 +1,18,2,9773,0,1,132.0,24,37,19,9,7,119.1,1,0,1,1,1,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,43,1,8014,1,1,133.1,1,34,34,0,0,100.0,0,0,1,1,1,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,1,133.1,1,38,19,9,9,128.0,1,0,1,0,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,125.0,1,19,19,5,4,136.2,1,0,0,1,0,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,132.0,1,38,38,0,5,126.1,0,0,1,1,0,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9670,0,1,130.0,1,1,1,9,10,116.3,1,0,1,1,1,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,1 +1,1,3,9773,0,1,150.0,1,19,38,4,4,146.5,1,0,1,1,1,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,1 +4,39,2,8014,1,1,160.0,1,37,38,7,5,115.0,0,0,1,1,1,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,135.0,1,19,1,9,9,122.1,1,0,1,1,1,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,136.0,1,3,3,9,9,136.0,1,0,0,0,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,3,3,7,1,130.0,1,0,1,1,0,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,2 +1,39,1,9119,0,19,133.1,1,19,19,5,3,100.9,1,0,1,1,0,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,2 +1,17,1,9254,0,1,137.0,1,34,38,0,7,137.7,1,0,0,0,1,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +4,39,1,8014,1,19,133.1,1,37,37,90,7,110.0,0,0,1,0,1,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,144.0,1,38,37,9,9,125.8,0,0,1,1,1,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,1,4,9070,0,1,167.0,1,1,1,7,3,158.3,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,133.0,1,37,19,7,7,126.7,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,118.0,1,38,38,7,7,121.2,1,0,1,1,1,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,19,133.1,1,19,19,4,4,150.0,0,0,1,0,0,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,0 +1,17,2,9085,0,1,166.0,1,1,19,4,3,158.7,0,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,1 +1,44,1,9254,0,39,130.0,1,39,39,194,193,130.0,1,0,0,1,0,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,2 +1,17,1,9085,0,1,140.0,1,37,38,7,9,129.9,0,0,1,1,1,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,1 +1,7,1,9147,0,3,120.0,1,1,39,4,7,120.0,0,0,1,1,1,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,5,9254,0,1,118.0,1,19,37,5,5,120.5,1,0,1,1,0,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,0 +1,17,3,9070,0,1,120.0,1,3,1,4,4,116.9,1,0,1,1,1,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,1 +1,43,5,9238,0,1,101.0,24,37,19,9,7,119.9,1,0,0,0,1,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,128.0,1,19,1,4,3,117.2,1,0,1,1,1,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,1 +1,1,3,9254,0,1,118.0,1,1,19,9,9,111.7,1,0,1,1,1,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9773,0,1,137.0,1,37,37,0,90,134.2,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,144.0,1,3,39,2,3,129.0,1,0,1,1,1,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,0 +1,1,5,9147,0,1,125.0,1,37,38,7,7,122.2,1,0,1,1,1,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,2 +1,1,2,9500,0,1,147.0,1,3,1,4,3,136.7,0,0,1,1,1,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,1 +1,39,1,9085,0,39,120.0,1,37,37,1,9,137.7,1,0,1,0,0,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,160.0,1,1,37,9,9,146.0,1,0,1,1,1,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,2 +1,44,1,9238,0,39,130.0,1,1,19,4,5,127.4,0,0,0,0,0,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,3,1,2,4,154.9,0,0,0,0,0,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,0 +1,17,2,9670,0,1,129.0,1,19,19,5,4,129.4,0,0,1,1,1,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,137.0,1,3,19,3,5,136.3,1,0,1,1,1,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,1 +1,39,1,9991,1,1,100.0,1,37,37,9,6,153.5,0,0,0,0,0,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,134.0,1,38,38,7,9,132.8,1,0,1,1,1,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,137.0,1,37,37,7,9,130.8,1,0,1,1,1,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,133.1,1,37,37,1,1,97.0,0,0,1,1,0,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,143.0,1,3,38,2,10,129.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +2,39,1,9991,1,1,110.0,1,37,37,9,3,127.1,0,0,1,1,1,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,2 +2,7,1,9147,0,3,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,160.0,1,37,37,9,9,160.0,0,0,1,1,0,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,162.0,1,3,4,3,3,154.1,0,0,1,1,1,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,1 +1,1,2,9147,0,1,119.0,1,19,37,4,5,113.8,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,139.0,1,19,1,9,5,135.0,1,0,1,1,1,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,120.0,1,1,38,5,5,116.3,1,1,1,1,0,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,1 +1,17,2,9500,0,1,135.0,1,1,19,4,10,133.5,1,0,1,1,1,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,1 +1,1,3,9119,0,1,117.0,1,1,1,3,5,111.1,0,0,1,1,0,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,140.0,1,1,39,4,1,128.1,1,1,1,1,0,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9003,0,1,133.1,1,37,37,3,8,130.0,0,0,0,1,1,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,134.0,1,19,37,5,5,125.3,1,0,1,1,0,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,37,38,9,9,114.0,0,0,1,1,1,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,38,37,4,5,102.5,0,0,0,0,0,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,171,0,1,143.0,1,19,37,5,9,156.3,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,130.0,1,19,1,9,5,122.1,1,0,1,1,1,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,1 +1,39,2,8014,1,1,100.0,1,35,37,90,90,100.0,0,0,1,1,1,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +2,39,2,9670,0,1,100.0,1,37,37,9,9,110.0,0,0,1,1,0,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,2,9853,0,1,126.0,1,1,19,2,10,126.0,1,0,1,1,1,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,2 +1,18,3,9070,0,1,131.0,1,1,37,5,5,122.3,1,0,1,0,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,150.0,1,19,37,9,8,138.5,0,0,1,1,1,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,2,171,0,1,146.0,1,3,3,3,3,155.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9147,0,1,120.0,1,19,19,9,7,118.6,1,0,1,1,1,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,145.0,1,38,38,9,9,125.5,1,0,1,1,1,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,4,9070,0,1,143.0,1,1,1,9,7,134.6,1,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,0 +1,51,1,8014,1,1,121.0,1,1,38,5,7,112.3,0,0,1,1,1,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,130.0,1,37,1,9,8,120.2,1,0,1,1,0,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,1 +2,7,1,9254,0,2,100.0,1,37,37,9,9,100.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9119,0,1,130.0,1,37,3,9,3,137.0,1,0,1,1,0,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,1,0,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,140.0,1,38,37,7,7,105.2,0,0,1,1,0,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,131.0,1,1,19,4,7,135.9,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,108.0,1,19,38,9,7,110.5,1,0,1,1,1,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,111.0,1,1,38,5,9,107.5,0,0,1,1,0,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,1,9147,0,1,147.0,1,37,37,9,6,142.8,1,0,0,0,1,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,170.0,1,38,19,4,8,134.7,0,0,1,1,1,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,138.0,1,4,19,2,3,124.7,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,125.0,1,37,38,9,9,125.0,1,0,0,0,1,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,118.0,1,38,38,5,5,114.2,1,0,1,1,1,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,3,3,1,5,118.8,0,0,1,1,1,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,1 +1,1,3,9085,0,1,131.0,1,37,19,9,8,136.3,1,0,0,0,1,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,0 +1,43,1,9991,1,1,141.0,1,37,37,9,9,131.9,0,0,1,1,1,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,0 +1,42,1,9070,0,1,120.0,1,3,2,3,1,116.9,0,0,1,1,0,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,130.0,1,1,1,9,7,152.1,0,0,1,1,0,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,12,133.1,1,34,34,0,0,135.0,0,0,1,1,1,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,0 +1,17,2,9500,0,1,130.0,1,38,38,7,7,122.5,1,0,1,1,1,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,160.0,1,1,1,194,131,128.4,0,0,1,1,1,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,132.0,1,1,38,7,7,129.6,0,1,1,1,0,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,1,1,3,9,118.4,0,0,1,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,1 +1,1,2,9556,0,1,133.1,1,19,19,9,9,104.5,1,0,1,1,1,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,0 +1,53,1,9003,0,42,150.0,1,1,38,8,8,150.0,0,0,1,1,1,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,144.0,1,3,1,2,3,126.9,0,0,1,1,1,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,150.0,1,3,3,2,2,120.0,0,0,0,0,1,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,3,3,2,10,160.0,1,0,1,1,0,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,129.0,1,1,1,9,9,120.0,0,0,1,1,0,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,1 +4,39,1,9003,0,12,133.1,1,37,37,9,6,160.0,0,0,1,1,1,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,1 +2,39,2,9991,1,1,100.0,1,37,37,9,9,100.0,1,0,1,1,0,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,115.0,1,19,1,3,8,123.4,0,0,1,1,1,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,124.0,1,19,37,3,8,117.5,1,0,1,1,0,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,2 +1,1,6,9254,0,1,129.0,1,38,19,9,5,117.8,1,0,1,1,1,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,127.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,19,133.1,1,38,38,7,8,120.0,0,0,1,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,0 +6,39,2,9147,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,4,9500,0,1,148.0,1,3,19,4,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,39,150.0,1,1,3,4,1,150.0,0,0,1,1,0,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,0 +1,17,1,171,0,1,145.0,1,37,37,9,1,150.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,123.0,1,1,1,9,9,115.7,1,0,1,1,1,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,16,1,171,0,1,122.0,1,19,37,9,7,133.9,1,0,1,1,0,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,124.0,1,37,38,9,8,114.6,1,0,1,1,0,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,120.0,1,38,37,9,8,113.4,1,0,1,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,7,1,9991,1,40,140.0,1,37,37,6,6,140.0,0,0,1,1,1,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,1 +1,1,5,9670,0,1,133.1,1,9,1,2,4,133.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,100.0,1,19,19,4,4,113.0,0,0,1,1,0,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,2 +4,39,1,9003,0,1,133.1,1,19,19,9,4,100.7,0,0,1,1,1,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,2 +1,17,2,9147,0,1,133.1,1,38,38,4,7,109.0,1,0,1,1,0,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,2 +1,15,1,9238,0,1,140.0,26,19,19,9,6,140.0,0,0,1,1,0,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,1,3,9500,0,1,114.0,1,1,1,5,5,114.5,1,0,1,1,1,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,134.0,1,1,38,4,4,120.7,0,0,0,0,1,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,1,133.1,1,37,11,9,7,96.0,0,0,0,0,0,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,131.0,1,3,3,3,3,135.9,0,0,1,1,1,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,1 +1,43,2,9500,0,1,130.0,1,38,37,4,4,126.8,1,0,1,1,0,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,19,37,7,7,124.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9670,0,1,120.0,1,1,19,4,5,100.0,0,0,1,1,1,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,145.0,1,38,38,9,10,139.8,1,0,1,1,1,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,141.0,1,19,38,5,7,125.5,0,0,1,1,1,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,1 +5,39,1,9147,0,1,133.1,1,1,19,4,7,114.0,0,0,1,0,0,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9991,1,1,110.0,1,37,37,1,4,120.0,1,0,1,0,0,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,172.0,41,37,37,5,5,153.8,1,0,1,1,1,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,1 +1,17,1,9556,0,1,140.0,1,3,3,1,7,131.6,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,148.0,1,1,1,4,3,137.5,0,0,1,1,0,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,137.0,1,19,38,3,9,124.9,0,0,1,1,1,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,139.0,1,18,18,1,1,130.8,1,0,1,0,1,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,0 +1,17,1,9003,0,1,120.0,1,38,37,5,9,131.4,1,0,1,1,0,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,1 +1,53,1,9085,0,42,160.0,1,19,37,4,9,160.0,1,0,1,1,1,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,1 +1,18,1,9670,0,1,140.0,1,1,37,9,9,130.2,1,0,1,1,0,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,1 +1,43,1,9853,0,1,140.0,1,37,37,6,6,125.2,0,0,0,1,1,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,1 +1,1,4,9556,0,1,122.0,1,37,1,5,4,123.9,0,0,1,1,1,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,1,19,3,3,123.0,0,0,1,1,1,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,140.0,1,19,38,4,0,140.0,1,0,1,1,0,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,129.0,1,1,1,4,2,126.2,0,0,0,0,1,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,0 +2,17,3,8014,1,1,123.0,1,19,37,3,3,113.2,0,0,0,0,1,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,133.1,1,38,19,9,10,114.5,0,0,1,1,1,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,2 +1,51,1,9991,1,1,141.0,1,19,38,5,7,100.0,0,0,1,1,1,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,1 +1,17,2,171,0,1,131.0,1,2,1,3,3,148.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,39,1,9085,0,19,133.1,1,37,37,9,9,100.0,1,0,0,0,1,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,117.0,1,1,38,5,1,113.5,1,0,1,1,1,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,116.0,1,19,38,9,9,119.5,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,1,19,3,4,116.7,0,0,1,1,1,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,129.0,1,2,3,2,2,128.3,1,0,1,1,1,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,2 +1,1,3,9085,0,1,138.0,1,1,1,4,8,128.7,1,0,1,1,1,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,1,5,9147,0,1,118.0,1,19,19,9,9,114.2,1,0,1,1,0,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,133.0,1,3,19,2,8,126.7,0,0,1,1,1,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,2 +1,16,1,171,0,1,158.0,1,38,37,9,9,164.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,43,3,9500,0,1,126.0,1,38,37,6,5,124.3,1,0,1,1,1,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,123.0,1,38,38,9,5,124.8,0,0,1,0,1,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,2 +1,1,1,9130,0,1,160.0,1,3,3,3,2,155.1,1,0,1,1,1,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,1 +4,43,1,9500,0,1,130.0,1,37,37,9,9,103.7,0,0,1,1,1,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,2 +1,16,2,9238,0,1,133.0,1,19,38,4,5,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,130.0,1,38,37,9,9,124.8,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,135.0,1,37,1,7,7,132.8,1,0,1,1,1,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9119,0,1,128.0,1,1,38,4,7,100.0,0,0,1,1,0,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,2 +1,17,2,9085,0,1,120.0,1,1,1,9,10,115.0,0,0,1,0,1,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,0 +1,17,2,9070,0,1,142.0,1,3,1,2,4,141.0,1,0,1,1,0,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,2,9853,0,1,124.0,1,38,37,5,3,118.1,1,0,1,0,1,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,145.0,1,37,37,9,9,132.0,1,0,1,1,1,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,1 +1,39,1,9130,0,1,114.0,1,38,38,9,10,120.0,0,0,1,1,1,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,140.0,1,3,3,2,2,146.4,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,1 +1,1,5,9773,0,1,130.0,1,34,38,0,8,128.3,1,0,1,0,1,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,3,9670,0,1,110.0,1,19,1,4,4,107.5,1,0,1,1,1,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,135.0,1,37,37,5,5,126.3,1,1,1,1,1,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,1 +2,1,1,9254,0,1,140.0,1,19,38,4,7,133.0,0,0,1,1,0,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9254,0,1,150.0,1,37,37,9,9,115.0,0,0,1,1,0,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,1 +1,39,1,9070,0,1,130.0,1,1,1,5,3,112.0,1,0,1,1,0,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,1 +1,1,1,9070,0,1,110.0,1,1,37,9,9,105.1,1,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,131.0,1,37,37,9,7,118.4,0,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,0 +1,17,1,171,0,1,136.0,1,38,38,7,7,127.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9773,0,1,127.0,1,19,19,5,8,120.0,0,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,3,171,0,1,139.0,1,37,19,9,8,142.2,1,0,1,1,0,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,128.0,1,37,19,9,4,127.3,1,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,16,4,9773,0,1,109.0,1,37,37,9,3,137.0,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,1 +1,53,1,9085,0,42,130.0,1,19,1,9,9,130.0,1,0,0,0,1,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,2 +1,7,1,171,0,3,130.0,1,1,2,9,2,130.0,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,120.0,1,37,37,9,9,120.0,1,0,0,1,1,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,0 +1,2,1,9853,0,1,120.0,1,19,38,9,9,122.5,0,0,1,0,1,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,19,133.1,1,2,1,8,8,120.0,1,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,0 +1,43,1,9773,0,1,121.0,1,1,1,4,5,121.0,1,0,1,1,0,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,4,9147,0,1,120.0,1,38,19,9,9,111.3,1,0,1,1,1,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,38,19,5,0,141.8,0,0,1,1,1,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,131.0,1,1,1,7,4,127.2,1,0,0,1,0,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,11,9,10,131.5,0,0,1,1,1,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,3,19,2,3,125.7,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,1,2,9556,0,1,136.0,1,19,19,9,9,129.5,1,0,1,1,1,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,1 +1,42,1,9119,0,1,120.0,1,5,5,2,2,115.0,0,0,1,1,0,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,0 +1,17,6,9119,0,1,124.0,1,19,19,4,0,126.1,1,0,1,1,0,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,1 +1,1,1,9254,0,1,160.0,1,19,38,9,9,140.8,1,0,1,1,0,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,123.0,1,37,37,9,9,115.0,1,0,1,1,1,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,1 +2,39,2,9670,0,1,133.1,41,37,19,9,9,130.0,0,0,1,1,1,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9670,0,6,170.0,1,34,34,0,0,111.6,0,0,1,1,0,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,138.0,1,1,3,9,1,123.0,1,0,1,1,1,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,1,37,6,6,130.0,1,0,1,1,0,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,1 +1,17,2,9119,0,1,133.1,1,1,2,3,3,117.0,1,0,1,1,0,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,2 +1,1,5,9254,0,1,131.0,1,19,37,9,9,123.7,0,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,130.0,1,1,1,9,4,140.0,0,0,1,0,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9773,0,1,135.0,1,1,19,4,10,129.4,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,132.0,1,1,19,3,3,122.9,1,0,1,1,1,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,115.0,1,37,37,9,8,129.0,1,0,0,0,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,51,1,9238,0,1,160.0,1,3,19,2,1,116.1,0,0,0,1,1,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9003,0,12,133.1,1,37,1,9,10,130.0,0,0,1,1,0,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,129.0,1,37,38,4,9,121.0,1,0,1,1,1,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9119,0,1,130.0,1,38,19,7,3,119.9,1,0,0,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,133.1,1,37,37,9,9,100.2,1,0,1,0,1,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,4,38,4,5,140.0,1,0,1,1,1,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,2 +2,7,1,9991,1,43,140.0,1,40,5,3,3,140.0,0,0,1,1,1,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,1 +1,43,2,9670,0,1,129.0,1,3,3,5,5,122.4,1,0,1,1,1,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,2 +1,1,1,9238,0,1,116.0,1,38,38,9,6,116.4,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,44,1,9130,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,130.0,1,1,3,9,2,130.0,1,0,0,1,1,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,139.0,1,38,38,9,5,130.5,1,0,1,1,1,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,1 +1,42,1,9500,0,1,100.0,1,19,19,9,9,100.0,0,0,0,1,0,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,0 +1,7,1,9773,0,43,140.0,1,19,1,4,8,140.0,0,0,1,1,0,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9003,0,1,125.0,1,1,38,4,7,125.0,1,0,1,1,1,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,1 +1,39,2,9147,0,19,133.1,1,38,19,4,10,116.3,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,3,9500,0,1,132.0,1,37,37,4,3,127.3,1,0,1,1,1,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,127.0,1,1,37,4,8,121.1,1,0,1,1,0,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,1 +1,39,1,9670,0,1,140.0,1,37,37,6,6,120.0,0,0,1,1,1,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,133.0,1,37,37,9,5,139.2,1,0,0,1,0,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,140.0,1,19,19,1,4,133.3,1,0,1,1,1,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,120.0,1,3,3,2,2,112.0,0,0,1,1,1,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,2 +2,1,1,9147,0,1,137.0,1,19,37,9,9,124.4,0,0,1,1,1,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,130.0,1,38,38,9,3,145.6,0,0,1,1,0,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,6,9670,0,1,120.0,1,1,14,4,5,113.7,1,0,1,1,1,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,120.0,1,38,19,9,3,112.7,0,0,1,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,122.0,1,37,37,9,9,114.3,1,0,1,0,1,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,1,8014,1,1,133.1,1,3,1,1,7,100.0,0,0,1,1,1,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,4,19,3,5,123.7,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,4,4,4,2,120.0,1,0,1,1,0,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,2 +1,1,3,9238,0,1,137.0,1,1,1,3,3,131.4,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,1 +1,43,1,9130,0,1,130.0,1,1,1,1,1,130.0,1,0,1,1,0,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,2 +1,1,2,9773,0,1,121.0,1,1,19,9,7,118.9,1,0,1,1,1,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,133.1,1,19,38,9,8,128.2,1,0,1,1,0,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,2 +1,43,1,9070,0,1,134.0,1,19,37,7,7,132.7,1,0,1,1,0,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9147,0,1,125.0,1,1,38,7,7,120.1,0,0,0,1,0,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,129.0,1,37,37,9,9,117.1,1,0,1,1,1,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,145.0,1,38,38,5,7,138.0,1,0,1,1,1,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,120.0,105,1,1,9,9,119.0,1,0,0,0,1,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,131.0,1,1,19,9,9,127.0,0,0,1,1,0,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,100.0,1,38,19,6,10,112.8,0,0,1,1,1,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,2,9070,0,1,145.0,1,38,19,7,7,130.0,1,0,1,1,0,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,126.0,1,37,38,7,7,119.0,0,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,1 +1,1,2,9773,0,1,137.0,1,1,19,7,7,133.2,1,0,1,1,1,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,128.0,1,38,38,9,7,128.4,1,0,1,1,1,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,2 +1,44,1,9085,0,39,150.0,1,19,38,194,193,150.0,1,0,1,1,1,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,2 +1,1,4,171,0,1,146.0,1,1,1,9,5,151.3,1,0,1,1,1,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,1 +1,1,6,9147,0,1,139.0,1,19,12,4,4,125.0,1,0,1,1,1,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,1 +1,1,2,9254,0,1,136.0,1,1,1,9,4,123.4,1,0,1,1,1,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,5,9670,0,1,127.0,1,3,4,2,2,122.8,0,0,1,1,0,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,127.0,1,38,37,5,7,121.8,1,0,0,1,1,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,2 +1,39,1,9003,0,1,130.0,1,38,37,7,7,120.0,0,0,1,1,0,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,1 +1,1,2,9238,0,1,100.0,1,38,1,7,7,99.3,1,0,1,1,1,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9119,0,1,160.0,1,37,37,9,6,153.7,0,0,1,1,0,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,2 +1,17,4,9500,0,1,138.0,1,3,1,2,5,134.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,1 +1,17,4,9254,0,1,124.0,1,3,3,3,3,126.1,1,0,1,1,1,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,0 +2,7,1,9147,0,3,110.0,1,19,1,9,9,110.0,0,0,1,1,1,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,2 +1,1,1,9500,0,1,143.0,1,3,19,3,10,126.8,0,0,1,1,0,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,1 +1,17,2,9670,0,1,110.0,1,1,1,4,10,115.3,1,0,1,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,1 +1,51,1,9119,0,1,129.0,1,2,37,2,9,121.6,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,2 +1,15,1,9254,0,1,140.0,26,19,1,9,7,140.0,1,0,1,0,1,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,118.0,1,19,38,7,9,113.5,1,0,1,1,1,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,5,9853,0,1,110.0,1,19,37,7,7,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,2 +1,39,1,171,0,1,145.0,1,3,1,2,10,114.5,1,0,1,1,0,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,43,2,9670,0,1,125.0,1,38,19,4,3,106.6,1,0,1,1,1,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,0 +4,39,1,9500,0,19,133.1,1,37,37,5,7,100.0,0,0,1,0,1,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,133.0,1,1,1,9,9,119.7,1,1,0,1,0,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,1 +1,1,2,9853,0,1,134.0,1,1,38,9,8,122.5,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,120.0,1,19,37,3,9,100.0,0,0,1,1,1,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,37,37,6,6,100.0,0,0,0,0,0,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,160.0,1,38,38,6,6,160.0,1,0,1,1,1,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,19,133.1,1,37,37,9,7,116.0,0,0,1,1,1,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,1 +1,18,3,9500,0,1,145.0,1,1,1,4,8,133.6,1,0,1,1,1,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,3,19,2,3,124.5,0,0,1,1,1,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,125.0,1,19,38,9,8,118.3,0,0,1,1,0,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,0 +1,5,1,9085,0,1,150.0,1,1,1,4,4,139.4,0,0,1,1,1,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,2 +1,17,1,9773,0,1,133.1,1,38,38,9,5,117.0,0,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,2 +1,1,3,9500,0,1,142.0,1,1,1,4,7,131.0,1,0,1,1,1,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,1,19,3,3,154.3,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9147,0,1,135.0,1,37,38,9,9,128.0,1,0,0,1,1,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,149.0,1,37,37,9,9,138.0,0,0,1,1,0,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,38,9,9,129.2,1,0,1,1,1,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9556,0,1,147.0,1,3,4,3,2,100.0,0,0,1,1,1,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,2 +1,39,1,9085,0,12,133.1,1,37,37,10,9,144.0,0,0,1,1,0,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9254,0,1,100.0,1,3,19,3,5,115.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9670,0,1,140.0,1,1,1,4,3,133.4,0,0,1,1,0,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,2 +1,1,2,171,0,1,127.0,1,3,39,1,3,133.5,1,0,1,1,0,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9147,0,1,112.0,1,1,19,3,5,107.8,1,0,1,1,1,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,2 +2,39,1,9147,0,1,110.0,1,37,37,9,10,140.0,0,0,1,1,1,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,120.0,1,1,3,175,121,105.9,0,0,1,1,1,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,2 +1,1,1,9238,0,1,168.0,1,37,37,9,9,149.5,0,0,1,1,1,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,1 +1,17,1,8014,1,1,141.0,1,34,34,0,0,136.1,0,0,1,1,1,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,140.0,1,1,1,4,3,130.7,1,0,1,1,0,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,0 +1,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,134.0,1,1,37,8,7,120.5,1,0,1,1,0,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,160.0,1,1,38,4,7,141.5,1,0,1,1,0,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,122.0,1,38,37,191,195,112.9,1,0,1,1,1,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,41,1,1,9,7,163.1,1,0,1,0,1,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,1 +1,39,1,9500,0,1,110.0,1,1,37,9,9,126.0,1,0,1,1,0,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,2 +1,17,1,9670,0,1,109.0,1,1,1,4,4,108.0,0,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,131.0,2,37,1,9,3,126.1,1,0,1,1,0,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,1,2,9556,0,1,125.0,1,38,1,9,3,116.3,1,0,1,1,1,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,1 +1,17,1,9085,0,1,138.0,1,2,19,2,9,126.8,1,0,1,1,1,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,2 +1,1,5,9853,0,1,128.0,1,38,37,9,9,120.3,1,0,0,0,1,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,130.0,1,1,38,4,9,122.7,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,0 +1,39,1,9991,1,9,133.1,1,37,34,90,90,118.1,1,0,1,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,1,1,9085,0,1,125.0,1,1,19,4,9,114.5,1,0,1,1,1,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,1 +1,1,5,9773,0,1,138.0,1,19,19,9,9,139.4,1,0,1,1,1,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,125.0,1,19,38,3,5,115.9,0,0,1,1,1,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,1 +1,43,1,9500,0,1,134.0,1,38,19,5,8,120.7,0,0,1,1,1,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,133.1,41,3,1,3,10,100.0,1,0,1,0,1,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,0 +5,39,1,9003,0,1,133.1,1,37,37,9,7,110.0,0,0,0,0,1,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,0 +1,17,1,9254,0,1,128.0,1,19,1,5,7,120.7,1,0,0,1,1,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,162.0,1,19,19,4,7,152.9,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,51,1,9238,0,1,121.0,1,3,19,3,10,111.9,1,0,1,1,1,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,1 +1,39,2,9991,1,1,172.0,1,19,37,9,8,150.0,1,0,1,1,1,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,116.0,1,19,19,9,8,119.9,1,0,1,1,1,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,125.0,1,19,19,3,10,131.0,1,0,1,1,0,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,39,1,9500,0,4,150.0,1,3,38,3,7,127.0,1,0,1,1,0,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,128.0,1,38,38,9,9,129.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,120.0,1,3,19,4,5,115.5,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,38,38,9,6,160.0,1,0,1,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,130.0,1,3,1,2,9,130.0,1,0,1,1,1,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,140.0,1,1,19,4,8,124.6,1,0,1,1,1,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,150.0,1,3,3,2,2,150.0,1,0,1,1,1,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,1 +2,39,1,9853,0,1,133.1,1,37,19,9,5,138.3,0,0,1,1,1,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,0 +1,43,1,9991,1,1,150.0,1,3,3,4,4,100.0,1,0,1,1,0,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,1 +1,44,1,9238,0,1,150.0,1,1,38,4,9,145.9,0,0,1,1,1,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,1 +1,18,3,9500,0,1,131.0,1,19,1,4,7,127.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,1 +1,7,1,9085,0,3,150.0,1,19,37,90,90,140.0,0,0,1,1,0,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,167.0,1,19,19,9,7,156.2,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,140.0,1,1,3,4,5,130.0,0,0,1,1,0,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9238,0,1,132.0,1,1,19,4,9,127.1,1,0,1,1,1,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9119,0,1,133.0,1,3,1,3,4,121.8,1,0,1,1,0,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,2 +1,17,1,9670,0,1,133.1,1,1,37,4,5,150.0,0,0,1,1,0,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,150.0,103,37,37,9,9,134.6,0,0,1,1,0,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,1 +1,17,6,9773,0,1,131.0,1,34,34,0,0,129.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,139.0,1,3,1,4,1,126.0,1,0,1,1,0,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,0 +1,17,1,9670,0,1,138.0,1,1,1,4,8,123.0,0,0,0,0,0,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,2 +5,39,1,9853,0,19,133.1,1,37,37,9,8,118.0,0,0,1,1,1,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,142.0,1,37,38,9,9,137.3,1,0,1,1,1,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,136.0,1,3,38,2,9,125.7,1,0,1,1,1,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,1,1,4,10,128.3,1,0,1,1,1,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,132.0,1,1,37,4,9,127.1,0,0,1,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,122.0,1,19,19,7,7,116.1,1,0,1,1,1,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,1 +1,44,1,9085,0,1,140.0,1,1,2,3,3,140.0,0,0,1,1,1,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,2 +1,42,1,9853,0,12,133.1,1,1,3,3,2,133.7,0,0,1,1,1,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,0 +2,7,1,9500,0,3,120.0,1,37,19,9,7,120.0,1,0,1,1,1,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,2 +1,1,4,9238,0,1,134.0,1,38,19,7,7,128.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,130.0,1,19,38,4,7,121.3,1,0,1,1,1,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,1 +1,39,2,9238,0,1,110.0,1,19,1,5,5,136.5,0,0,1,1,0,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9670,0,1,133.1,1,38,19,9,8,122.9,0,0,0,0,0,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,124.0,1,19,1,9,3,123.7,1,0,1,1,1,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,17,1,9991,1,1,120.0,1,38,3,9,3,116.9,1,0,0,0,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,43,2,9147,0,1,160.0,1,37,37,9,9,96.0,0,0,1,0,1,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,154.0,1,19,37,9,7,140.4,1,0,1,1,1,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,2 +1,17,5,9070,0,1,125.0,1,19,1,5,5,122.6,1,0,1,1,0,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,2,9119,0,1,137.0,1,1,1,4,4,130.4,1,0,0,1,0,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,0 +1,1,1,9085,0,1,134.0,1,37,19,9,9,136.8,1,0,1,1,0,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,1 +1,39,1,9773,0,19,100.0,1,37,37,0,0,128.0,1,0,1,1,0,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +4,39,1,9130,0,19,133.1,1,37,38,9,4,100.9,0,0,1,1,0,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,127.0,1,1,19,5,7,130.5,1,0,1,1,1,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,1 +2,1,1,9003,0,1,131.0,1,19,38,5,5,118.4,0,0,1,1,1,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,142.0,1,1,38,5,7,127.7,0,0,1,1,1,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,130.0,1,1,38,4,9,115.0,0,0,1,1,0,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,100.0,0,0,1,1,1,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,1 +1,17,5,9773,0,1,134.0,1,1,19,9,5,121.8,1,0,1,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,1 +1,1,3,9853,0,1,122.0,1,1,3,5,3,113.6,0,0,1,1,1,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,114.0,1,37,37,7,8,116.7,0,0,1,1,0,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,130.0,1,3,1,3,3,120.5,0,0,1,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,148.0,1,19,19,4,5,143.5,0,0,1,1,1,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,19,9,9,107.0,0,0,1,0,0,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,130.0,1,3,19,5,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,39,1,9500,0,19,133.1,1,37,37,9,6,120.0,0,0,1,0,1,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,0 +1,1,2,9853,0,1,123.0,1,19,1,194,103,115.3,1,0,1,1,1,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,2 +1,18,1,9130,0,1,135.0,1,38,19,9,5,121.7,1,0,1,1,1,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,116.0,1,38,38,5,8,110.8,1,0,1,1,1,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,7,1,9147,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9991,1,1,133.1,41,37,37,9,8,114.7,0,0,1,1,1,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,122.0,1,37,37,9,7,120.6,1,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,150.0,1,5,5,2,2,146.2,0,0,1,1,1,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,0 +2,7,1,9147,0,3,130.0,1,1,4,3,10,130.0,0,0,1,1,1,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9085,0,19,110.0,1,37,37,90,90,110.0,0,0,1,0,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,140.0,1,1,1,9,9,136.9,1,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,44,1,9085,0,39,150.0,1,19,19,9,9,150.0,1,0,1,1,1,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,1 +2,43,1,9003,0,1,149.0,1,1,1,4,5,156.1,1,0,1,0,0,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9119,0,1,133.1,1,1,1,9,3,136.0,0,0,1,1,0,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,0 +1,16,2,9238,0,1,122.0,1,19,37,9,7,127.3,1,0,1,1,1,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,133.0,1,1,1,6,7,134.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,141.0,1,19,38,9,9,130.5,0,0,1,1,0,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,121.0,1,1,3,9,3,123.8,0,0,1,0,0,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,0 +1,44,1,9238,0,39,140.0,1,1,1,4,3,138.6,0,0,1,1,0,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,0 +1,1,1,9991,1,1,145.0,1,2,37,4,9,127.5,1,0,1,1,0,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,100.0,1,37,19,9,2,121.9,0,0,1,0,1,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,120.0,1,38,38,9,9,148.5,0,0,1,1,1,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +5,39,1,9991,1,1,110.0,1,1,1,3,3,119.0,0,0,1,1,0,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9254,0,1,137.0,1,1,38,2,8,122.3,1,0,1,1,0,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,42,1,9238,0,1,133.1,1,1,19,4,9,134.0,0,0,1,1,1,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,38,37,9,7,130.0,1,0,1,1,0,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,1 +5,7,1,9147,0,40,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,120.0,1,37,37,9,9,111.1,0,0,1,1,1,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,124.0,1,38,19,6,10,126.8,1,0,1,1,1,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,1 +2,1,1,9500,0,1,151.0,1,37,38,9,7,134.5,0,0,0,1,1,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,133.0,1,19,37,9,8,121.8,1,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,148.0,1,1,19,4,5,135.1,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,120.0,1,19,38,4,8,122.5,0,0,1,0,0,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,9070,0,1,140.0,1,37,37,9,10,118.0,0,0,0,1,0,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,3,133.1,1,9,9,90,90,130.0,0,0,1,1,1,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,150.0,1,34,34,0,0,108.0,0,0,1,1,1,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,1,150.0,1,1,38,3,5,120.0,0,0,1,1,0,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,2 +1,44,1,9085,0,39,150.0,1,38,1,5,5,150.0,0,0,1,1,1,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,2 +1,1,2,9238,0,1,133.1,1,19,19,9,9,106.0,1,0,1,1,1,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,102.0,1,38,38,9,9,99.6,1,0,1,1,1,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,140.0,1,38,19,9,5,130.0,0,0,0,1,1,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,2 +1,1,3,9773,0,1,138.0,1,3,1,2,3,135.9,1,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,1,9,4,150.0,1,0,1,1,0,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,0 +1,1,6,9147,0,1,127.0,1,1,19,1,6,120.0,1,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,0,0,1,1,0,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,137.0,1,38,38,4,8,126.5,1,0,1,1,1,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,1,19,4,4,132.6,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,130.0,1,1,1,4,9,150.0,0,0,1,1,0,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,146.0,1,3,1,1,3,149.2,1,0,1,1,1,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,129.0,1,38,38,6,6,118.5,1,0,1,1,1,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,131.0,1,19,3,3,2,126.1,1,0,1,1,1,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,2 +1,39,1,9085,0,43,160.0,1,3,39,2,3,172.0,0,0,1,1,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,39,1,9670,0,1,133.1,1,1,1,4,4,112.9,0,0,1,1,1,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,0 +2,39,1,9003,0,1,150.0,1,37,37,9,6,140.0,0,0,1,1,0,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,127.0,1,37,38,9,7,115.8,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,133.1,1,1,37,5,9,143.0,1,0,0,1,1,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,124.0,1,19,19,9,9,138.4,1,0,0,1,1,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,0 +1,1,1,9070,0,1,125.0,1,1,1,4,4,132.0,0,0,1,0,1,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,1,5,9130,0,1,160.0,1,3,1,2,9,150.2,1,0,1,1,1,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,1,110.0,1,37,37,9,4,160.0,0,0,1,1,1,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,135.0,1,19,37,5,7,121.4,0,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,2,9670,0,1,135.0,1,19,19,7,10,121.4,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,125.0,1,1,38,4,9,118.4,1,0,1,1,1,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,2 +1,1,6,9500,0,1,145.0,1,38,37,5,6,127.5,1,0,1,1,1,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,1 +1,43,3,171,0,1,140.0,1,37,38,7,7,143.4,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,134.0,1,37,19,9,10,141.4,1,0,1,1,1,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,130.0,1,29,38,9,8,122.0,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,109.0,1,19,19,4,9,104.1,1,0,0,0,1,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,116.0,1,34,34,0,0,127.0,1,0,1,1,0,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,3,8014,1,19,100.0,1,37,37,9,9,120.0,1,0,1,1,0,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9238,0,1,122.0,1,37,38,4,7,118.2,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,8014,1,1,100.0,1,12,5,9,4,116.5,0,0,0,0,1,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,122.0,1,19,19,193,194,112.6,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,42,3,9500,0,1,136.0,1,1,1,4,4,148.8,1,0,1,1,1,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,137.0,1,19,1,9,9,132.8,0,0,1,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,130.0,1,37,37,6,6,111.9,0,0,0,1,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9254,0,1,116.0,1,19,38,5,5,116.0,1,0,1,1,1,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,18,2,9500,0,1,131.0,1,1,3,3,2,121.2,1,0,1,1,1,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,141.0,1,1,19,3,3,131.9,1,0,1,1,1,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,120.0,1,37,37,9,10,122.6,0,0,1,1,1,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,0 +1,18,5,9119,0,1,136.0,1,3,2,2,3,125.2,1,0,1,1,0,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,125.0,1,19,1,7,4,122.6,0,0,1,1,0,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,139.0,1,19,37,9,9,131.5,1,0,1,1,1,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,1 +1,5,1,9853,0,1,119.0,1,1,38,5,8,118.3,1,0,1,1,1,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,2 +1,17,2,9773,0,1,125.0,1,1,38,5,6,115.9,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,126.0,1,1,19,4,8,120.1,1,0,1,1,1,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,1 +1,17,1,9085,0,1,125.0,1,1,37,4,9,117.0,1,0,1,1,1,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,135.0,1,19,38,7,5,121.0,0,0,1,1,1,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,138.0,1,38,37,3,3,133.1,0,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,148.0,1,19,37,9,5,130.9,0,0,1,0,0,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,145.0,1,12,1,4,10,139.8,1,0,1,1,1,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,118.0,1,37,37,3,5,110.0,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,51,1,9147,0,1,99.0,1,3,1,3,3,99.7,1,0,0,0,1,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,2 +1,17,2,9556,0,1,137.0,41,1,1,7,7,124.4,1,0,1,1,1,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,1 +1,17,3,9853,0,1,133.1,1,34,34,0,0,115.0,0,0,1,1,1,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,123.0,1,37,38,9,9,113.9,1,0,0,0,1,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,0 +1,1,4,9238,0,1,125.0,1,19,38,9,6,114.9,1,0,0,1,1,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,2 +1,18,1,8014,1,1,137.0,1,1,1,4,3,123.0,0,0,0,1,1,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,1 +1,43,1,8014,1,1,131.0,1,19,37,8,5,125.0,0,0,1,1,0,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9147,0,3,150.0,1,6,27,1,7,150.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,9,4,117.0,0,0,1,1,1,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,133.1,1,37,1,9,10,100.0,0,0,1,1,1,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,0 +1,1,3,9670,0,1,121.0,1,1,19,5,5,111.9,1,0,1,1,0,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,133.1,1,1,19,3,3,112.0,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,43,1,9991,1,1,140.0,1,1,1,6,6,100.0,0,0,1,1,0,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,1 +2,42,1,9556,0,1,110.0,1,37,37,9,6,140.0,0,0,1,1,0,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,130.0,1,1,1,4,4,124.8,0,0,1,1,1,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,138.0,1,38,37,9,6,126.8,1,0,1,1,0,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,1 +1,17,4,9773,0,1,127.0,1,2,37,9,9,115.8,1,0,0,0,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9085,0,1,170.0,1,1,1,4,5,166.6,0,0,0,0,1,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,130.0,1,1,1,4,4,130.0,1,1,1,1,0,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,3,1,2,8,100.0,1,0,1,1,0,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9670,0,1,106.0,1,3,1,2,3,105.7,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,43,1,9556,0,1,140.0,1,37,37,9,9,128.0,1,0,1,0,1,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,0 +1,1,1,9147,0,1,127.0,1,1,4,9,10,121.8,0,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,134.0,1,1,1,9,6,130.9,0,0,0,1,1,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,133.1,1,37,37,7,4,132.0,0,0,1,1,0,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,110.0,1,12,3,5,2,100.0,1,0,1,1,0,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,6,9238,0,1,113.0,1,1,38,194,163,112.3,1,0,0,1,1,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,118.0,1,19,19,5,7,121.2,0,0,1,1,0,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,51,1,9773,0,1,158.0,1,1,19,8,8,117.1,1,0,1,1,0,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,0 +1,17,1,9070,0,1,119.0,1,37,38,9,8,124.6,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,111.0,1,19,19,3,10,117.7,0,0,1,1,1,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,140.0,1,3,1,5,9,130.0,0,0,1,1,0,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,122.0,1,3,1,9,10,114.7,0,0,1,1,1,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,1 +2,39,1,9238,0,19,133.1,1,1,2,4,6,130.0,0,0,1,1,1,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,2 +1,17,2,9500,0,1,131.0,1,38,1,5,7,118.4,1,0,1,1,1,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,0 +1,43,5,9853,0,1,150.0,1,34,34,0,0,150.2,1,0,1,0,1,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,140.0,1,37,19,9,9,166.0,1,0,0,1,0,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9085,0,1,133.1,1,19,37,9,6,130.0,1,0,1,1,1,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,1 +1,1,4,9147,0,1,120.0,1,38,38,5,10,111.3,0,0,1,1,0,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,2 +1,1,5,9500,0,1,125.0,1,3,19,4,8,120.3,1,0,1,1,1,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,2 +1,17,2,9556,0,1,136.0,1,1,1,9,9,128.3,0,0,1,1,1,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,133.1,1,38,19,5,5,128.0,0,0,1,1,1,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,9,133.1,1,37,37,5,3,110.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9254,0,1,118.0,1,19,1,4,4,115.9,1,0,1,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,134.0,1,19,37,7,7,136.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,130.0,1,37,37,9,7,119.9,0,0,1,1,1,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9773,0,1,153.0,1,34,34,99,99,133.1,1,0,0,1,1,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,10,133.1,1,12,36,90,90,128.2,0,0,1,0,0,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,1,9991,1,1,112.0,1,43,40,2,2,106.4,0,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,122.0,1,3,3,2,2,122.0,1,0,1,1,1,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,137.0,1,1,19,4,3,121.3,1,0,1,1,0,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,1 +1,39,1,9085,0,19,133.1,1,3,1,2,5,103.0,0,0,1,1,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,136.0,1,1,19,9,9,131.5,0,0,1,1,1,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,154.0,1,1,3,4,2,164.9,0,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,1 +1,17,6,9147,0,1,129.0,1,19,1,9,4,122.0,1,0,1,1,0,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,132.0,1,19,19,9,7,128.0,1,0,1,1,0,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,1 +2,39,1,9773,0,19,133.1,1,19,19,9,4,131.0,0,0,0,0,0,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,0 +4,39,1,8014,1,1,160.0,1,37,37,5,5,126.0,0,0,1,1,1,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,1 +1,16,2,9238,0,1,126.0,1,38,37,3,5,127.1,1,0,1,1,1,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,1 +1,1,2,9254,0,1,111.0,1,1,19,5,7,109.3,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,1 +1,17,2,9556,0,1,133.1,1,37,37,3,10,108.0,0,0,1,1,1,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,1 +1,1,4,9773,0,1,140.0,22,1,37,3,9,130.5,1,0,1,1,1,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,1 +1,7,1,9500,0,3,140.0,1,1,1,9,5,140.0,0,0,1,1,1,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,0 +1,17,3,9670,0,1,125.0,1,1,3,4,3,117.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,150.0,1,37,38,9,9,131.5,1,0,1,1,1,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,5,100.0,0,0,1,0,0,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9773,0,1,133.0,1,19,19,7,7,134.4,1,0,1,1,0,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,135.0,1,19,37,9,9,128.0,1,0,1,1,1,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,5,9670,0,1,115.0,1,1,19,5,5,117.1,0,0,1,1,1,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,2 +1,51,1,9003,0,39,130.0,1,1,19,4,4,120.0,1,0,0,0,0,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,0 +1,1,3,9773,0,1,117.0,1,38,19,7,7,110.4,1,0,0,0,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9773,0,1,127.0,1,19,38,8,3,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,38,37,1,1,115.0,1,0,1,1,1,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,2 +1,18,2,9853,0,1,123.0,1,1,3,9,2,123.7,1,0,0,0,1,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,0 +1,1,3,9853,0,1,122.0,1,3,3,2,2,112.6,1,0,1,1,1,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,17,3,9254,0,1,127.0,1,37,37,9,6,123.5,1,0,1,1,1,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,141.0,1,37,37,9,9,136.3,1,0,1,1,0,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,1 +1,1,1,9773,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,17,2,9254,0,1,140.0,1,3,3,2,2,124.3,0,0,1,0,0,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,125.0,1,1,3,4,1,121.9,1,0,1,1,0,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,0 +1,17,1,9070,0,1,134.0,1,1,1,5,0,133.3,1,0,1,1,0,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9670,0,1,127.0,22,37,37,9,9,127.0,1,0,1,1,0,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,1 +1,42,1,9853,0,1,120.0,1,37,38,3,3,113.7,0,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,0 +1,1,3,9670,0,1,121.0,1,3,19,2,8,122.4,1,0,1,1,0,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,2 +1,1,3,171,0,1,139.0,1,19,19,5,3,128.2,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,42,1,9085,0,1,100.0,1,1,38,4,9,100.0,1,0,1,1,1,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,10,1,9500,0,1,140.0,24,3,3,2,9,140.0,1,0,0,0,1,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,0 +1,1,1,9773,0,1,132.0,1,37,19,9,9,131.0,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,124.0,1,1,1,4,4,127.9,1,0,1,1,0,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,2 +5,39,1,9119,0,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,2 +1,17,1,9773,0,1,117.0,1,38,38,9,9,111.1,0,0,0,1,0,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,19,133.1,1,19,37,9,9,149.4,0,0,1,0,0,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,1,1,161.9,0,0,1,1,0,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9147,0,1,140.0,1,38,37,4,7,130.0,1,0,1,0,1,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,43,1,171,0,1,145.0,1,19,38,9,9,100.0,0,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9773,0,1,120.0,1,37,38,9,3,155.5,0,0,1,1,0,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,121.8,0,0,1,0,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,7,1,9130,0,3,140.0,1,5,4,2,0,140.0,0,0,0,0,1,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,0 +1,51,1,171,0,1,128.0,1,2,1,3,3,131.2,1,0,1,1,0,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,1 +2,39,1,8014,1,12,110.0,1,37,37,7,9,120.0,0,0,1,1,1,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,150.0,1,2,3,3,2,140.8,0,0,1,1,1,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,2 +1,43,1,9070,0,1,125.0,1,19,19,7,8,133.4,1,0,1,1,0,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,2 +1,1,5,171,0,1,160.0,1,1,1,4,4,139.7,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,1,120.0,1,1,38,9,9,150.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,154.0,1,19,19,3,3,142.0,0,0,1,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9254,0,1,110.0,1,4,19,4,3,114.8,1,0,1,0,0,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9119,0,1,140.0,1,34,34,9,9,140.0,0,0,1,0,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,125.0,1,1,1,4,2,134.1,1,0,1,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,7,1,9254,0,40,130.0,1,1,1,3,6,130.0,0,0,1,1,1,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9254,0,1,122.0,1,37,37,9,3,124.5,1,0,1,1,1,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,130.0,1,1,3,9,2,128.6,1,0,1,1,1,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,1 +1,17,4,9670,0,1,122.0,1,3,1,2,3,119.6,1,0,1,1,0,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,1 +1,44,3,9085,0,39,150.0,1,1,19,4,1,150.0,1,0,1,1,1,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,19,37,9,9,130.0,1,0,1,1,0,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,133.1,1,38,19,4,7,98.0,1,0,1,1,0,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,2 +1,17,2,9556,0,1,125.0,1,38,19,7,7,121.5,1,0,1,1,1,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,0 +2,1,4,9500,0,1,143.0,1,38,38,5,5,128.7,1,0,1,1,1,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,1,100.0,1,1,19,4,8,122.0,0,0,1,1,1,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,1 +1,51,1,9500,0,1,170.0,1,1,1,4,10,125.0,0,0,1,1,0,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,1 +1,18,4,9500,0,1,137.0,1,3,1,3,4,126.7,1,0,1,1,1,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,19,133.1,1,38,38,9,8,106.0,1,0,1,1,0,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,1 +1,39,1,9991,1,40,130.0,1,19,1,3,4,152.0,1,0,1,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9085,0,39,140.0,1,1,39,3,9,140.0,1,0,1,1,1,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,2 +1,17,2,9773,0,1,133.1,1,3,1,4,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +2,43,1,9853,0,1,110.0,1,37,37,7,7,100.0,0,0,1,1,0,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,1 +1,7,1,9119,0,3,120.0,1,19,19,1,1,120.0,0,0,1,0,0,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,1,130.0,1,34,34,99,99,114.8,0,0,1,1,1,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,1 +2,39,1,8014,1,1,140.0,1,37,3,9,10,172.0,0,0,1,1,0,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,2 +1,17,2,9670,0,1,123.0,1,34,37,0,0,114.6,1,0,0,0,1,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,0 +1,43,2,9500,0,1,136.0,1,19,1,9,10,124.1,0,0,1,1,0,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,116.0,1,1,1,1,1,110.8,1,0,1,1,1,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,1 +1,39,1,9003,0,1,133.1,1,37,37,4,7,130.0,0,0,0,0,0,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,0 +1,1,3,9085,0,1,158.0,1,1,19,9,9,153.6,1,0,1,1,1,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,1 +1,17,4,9773,0,1,121.0,1,1,19,9,8,120.3,1,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,5,3,9085,0,1,141.0,1,1,19,7,5,128.8,1,0,1,1,1,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,2 +1,18,4,9556,0,1,127.0,1,1,38,4,7,121.8,1,0,1,1,1,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,37,37,9,9,109.0,1,0,1,1,1,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,110.0,1,34,34,0,0,114.6,1,0,1,1,1,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9085,0,1,128.0,1,38,19,8,8,117.2,0,0,1,1,0,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,143.0,1,1,38,3,3,133.2,1,0,1,1,1,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,1 +1,1,4,9853,0,1,134.0,1,19,1,5,9,127.4,1,0,1,1,1,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,2 +1,1,1,9670,0,1,133.1,1,3,1,1,7,155.0,0,0,1,1,1,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,114.0,1,19,38,9,7,129.1,0,0,1,1,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,149.0,1,19,37,7,4,134.3,0,1,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,130.0,1,1,38,3,5,128.6,1,0,1,1,0,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,1 +1,42,1,9147,0,1,139.0,1,3,38,2,5,112.3,1,0,1,1,1,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,2 +1,1,3,9773,0,1,130.0,1,19,19,9,9,123.0,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,43,1,9500,0,1,130.0,1,38,38,9,5,100.0,0,0,1,1,1,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,2 +6,39,1,8014,1,1,133.1,1,37,1,9,7,114.8,0,0,1,1,1,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,121.0,1,1,38,4,9,114.4,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,18,1,9238,0,1,122.0,1,38,38,9,7,114.7,0,0,0,1,1,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,1 +1,17,2,9773,0,1,120.0,1,1,1,2,5,127.0,1,0,1,0,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,39,120.0,1,4,1,2,8,120.0,0,0,1,1,0,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,1 +1,17,3,9500,0,1,143.0,1,38,1,9,5,133.8,1,0,1,1,1,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,130.0,1,1,19,9,7,133.8,0,0,0,1,1,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,1 +2,39,1,9556,0,1,100.0,1,37,37,9,9,120.0,0,0,1,1,1,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,133.1,1,1,19,5,4,102.5,0,0,1,1,1,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9003,0,1,111.0,1,1,3,4,2,162.4,0,0,0,0,0,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,133.1,1,19,1,9,3,107.0,1,0,1,1,1,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,128.0,1,19,1,4,4,124.3,1,0,1,1,0,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,140.0,1,36,14,9,10,130.0,1,0,1,1,0,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,150.0,1,38,19,7,10,134.6,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9070,0,1,134.0,1,34,1,5,7,129.8,1,0,1,1,1,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,150.0,1,37,37,9,3,150.0,1,0,1,1,0,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,0 +2,39,1,9238,0,1,126.6,1,38,38,9,7,107.5,0,0,0,1,1,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,120.0,1,37,37,9,7,106.8,0,0,1,1,1,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,1,9254,0,1,117.0,1,1,1,5,5,116.3,1,0,1,1,0,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,130.0,1,19,19,5,5,157.0,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9556,0,1,133.1,1,44,40,2,2,115.5,0,0,1,1,1,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,133.1,1,3,1,2,4,125.0,0,0,1,1,0,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,2 +2,39,1,9003,0,1,133.1,1,37,37,9,9,100.0,0,0,1,0,0,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,0 +1,17,2,9500,0,1,141.0,1,37,1,9,4,127.3,1,0,1,1,1,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,117.0,1,38,38,175,183,113.2,1,0,0,1,1,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,133.1,1,37,37,7,7,124.5,0,0,1,0,0,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,0 +1,17,2,9070,0,1,133.1,1,37,38,9,10,178.0,1,0,1,1,0,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,120.0,1,19,19,9,9,115.0,1,0,1,1,0,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9853,0,1,146.0,1,1,1,3,4,128.2,0,0,0,1,1,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,2 +1,17,4,9070,0,1,128.0,1,1,1,9,10,136.1,1,0,0,0,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,0 +5,39,1,9500,0,3,140.0,1,37,38,9,9,160.0,0,0,1,1,1,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,1 +1,39,1,8014,1,1,133.1,1,37,37,9,8,121.0,0,0,0,0,1,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,0 +1,43,1,9130,0,1,140.0,1,2,1,2,3,140.0,1,0,1,1,1,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,1 +1,1,3,9670,0,1,126.0,1,37,37,0,0,136.5,1,0,1,1,1,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,1 +1,17,4,9238,0,1,140.0,1,19,37,9,9,130.2,1,0,1,1,1,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,142.0,1,1,3,1,2,133.0,0,0,1,1,1,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,136.0,1,19,38,9,9,121.7,1,0,1,1,0,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,17,4,9085,0,1,106.0,1,37,1,3,9,106.0,0,0,1,1,1,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,2 +1,1,3,9500,0,1,135.0,1,1,37,7,7,120.5,1,0,1,1,1,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,115.0,1,19,19,7,7,115.0,1,0,1,1,1,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9238,0,1,160.0,1,38,1,9,3,124.0,0,0,0,1,0,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,2 +1,1,1,9500,0,1,129.0,1,38,38,5,5,120.8,1,0,1,1,1,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,160.0,41,37,19,9,9,160.0,0,0,1,1,1,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,132.0,1,1,19,7,5,129.9,1,0,1,1,0,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,136.0,1,37,38,9,8,139.2,1,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,127.0,1,19,37,9,7,121.3,1,0,1,1,1,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,1 +1,1,1,9119,0,1,142.0,1,1,38,4,3,129.8,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,133.1,1,37,37,5,8,133.2,0,0,1,0,0,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,0 +1,1,1,9147,0,1,150.0,1,1,19,5,5,137.8,1,0,1,1,0,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,135.0,1,3,1,2,4,129.8,1,0,1,1,0,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,1 +1,43,2,9773,0,1,132.0,1,19,19,0,0,127.1,0,0,1,1,0,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,1 +1,17,3,9500,0,1,140.0,1,3,2,3,3,126.4,1,0,1,1,1,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,0 +2,39,2,9119,0,19,133.1,1,37,37,7,7,118.0,0,0,1,0,0,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,110.0,1,3,4,2,2,110.0,1,0,1,1,0,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,0 +2,39,1,9500,0,38,133.1,1,37,37,9,3,146.6,0,0,1,1,0,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,146.0,1,1,3,4,1,135.2,1,0,1,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,3,5,2,2,135.8,0,0,0,1,0,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,0 +2,39,1,9773,0,19,100.0,1,37,37,0,0,163.5,0,0,0,0,0,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,124.0,1,19,19,9,7,113.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,143.0,1,3,3,9,7,129.0,1,0,1,1,0,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,1 +1,1,2,9853,0,1,117.0,1,1,38,4,9,109.7,1,0,1,1,1,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,2 +1,7,1,9130,0,2,133.1,6,42,1,4,9,100.0,0,0,1,1,0,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,115.8,0,0,0,0,0,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,0 +1,18,1,9773,0,1,167.0,1,38,38,6,7,153.0,1,0,1,1,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,51,1,9238,0,1,141.0,1,1,1,5,9,125.0,0,0,1,1,0,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,17,4,9500,0,1,132.0,1,38,19,5,7,125.5,0,0,1,1,1,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,1 +1,1,1,9119,0,1,132.0,1,1,12,3,3,133.1,1,0,1,1,0,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,149.0,1,1,1,4,4,129.3,1,0,1,1,0,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,1 +2,39,1,9147,0,1,130.0,1,37,37,9,9,142.5,0,0,1,1,1,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,2 +1,1,6,9773,0,1,133.1,1,1,37,3,3,100.0,1,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,138.0,1,37,37,9,6,145.0,1,0,1,1,1,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,19,19,3,6,124.3,1,0,1,1,1,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,135.0,1,37,37,9,7,132.6,1,0,1,1,1,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,159.0,1,34,26,0,6,160.1,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,1 +2,39,1,8014,1,1,133.1,1,37,37,6,8,100.0,0,0,0,1,1,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9070,0,1,153.0,1,3,3,1,2,146.7,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,1 +1,43,1,171,0,2,140.0,1,37,37,9,9,140.0,1,0,1,1,1,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,141.0,1,19,19,9,8,142.8,0,0,1,1,1,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,1 +1,39,2,9556,0,1,130.0,1,19,19,4,5,100.0,0,0,1,1,0,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,120.0,1,38,19,3,5,120.0,0,0,1,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,2 +1,39,2,9147,0,1,120.0,1,37,37,9,9,104.0,0,0,1,0,0,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9085,0,1,150.0,1,38,38,9,9,132.0,1,0,1,1,1,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,142.0,1,38,38,9,9,132.9,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9085,0,1,160.0,1,4,19,2,5,162.1,1,0,1,1,1,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,141.0,1,37,37,9,8,130.2,1,0,1,1,1,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,118.0,1,1,1,9,9,111.0,0,0,1,0,0,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,119.0,1,37,37,10,6,119.7,1,0,1,1,1,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,2 +1,17,2,171,0,1,137.0,1,1,1,4,1,143.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,18,3,9085,0,1,149.0,103,1,1,9,9,132.2,1,0,1,1,1,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,130.0,1,37,37,90,90,125.1,0,0,1,1,1,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,1 +4,17,5,8014,1,1,100.0,1,19,19,90,90,107.0,0,0,1,1,1,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,19,133.1,1,38,19,9,10,142.7,0,0,0,1,0,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,139.0,1,19,37,5,5,125.5,0,0,1,1,1,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,133.0,1,4,1,5,5,131.6,0,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,148.0,1,19,19,9,3,125.0,1,0,1,1,1,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,110.0,1,37,37,9,9,110.3,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,53,1,9003,0,42,130.0,1,38,38,9,9,130.0,1,0,0,1,0,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,2 +1,1,4,9070,0,1,140.0,1,4,19,2,10,125.0,1,0,1,1,0,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,2 +1,42,1,9003,0,39,140.0,1,19,1,5,5,140.0,0,0,1,1,1,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,2 +1,1,4,9070,0,1,136.0,1,37,37,9,8,136.7,1,0,1,1,1,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,1,5,9773,0,1,125.0,1,37,3,5,2,126.1,1,0,1,1,0,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,8014,1,1,126.0,1,37,38,9,10,119.4,0,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,123.0,1,1,3,2,2,118.8,0,0,1,1,0,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,2 +1,1,6,9500,0,1,144.0,1,1,37,9,9,127.5,1,0,1,1,1,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,1 +1,43,1,9070,0,1,125.0,1,38,37,8,7,131.7,1,0,1,1,0,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,144.0,1,37,37,8,8,138.4,0,0,1,1,1,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,160.0,1,37,37,3,4,97.0,0,0,1,1,1,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9853,0,1,119.0,1,37,38,9,9,125.0,1,0,1,1,1,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,117.0,1,37,37,9,9,109.3,0,0,1,0,1,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,3,130.0,1,37,37,9,9,146.2,0,0,1,1,1,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,150.0,1,37,37,9,9,130.3,0,0,1,1,1,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,1 +2,39,2,8014,1,19,100.0,1,37,37,4,7,100.0,0,0,0,1,1,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,39,1,8014,1,38,133.1,1,38,37,4,8,95.5,0,0,1,1,0,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,120.7,0,0,1,1,1,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,1 +1,39,1,9119,0,19,120.0,1,37,37,9,4,98.6,0,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9130,0,1,120.0,1,19,37,1,9,116.1,1,0,1,1,0,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9500,0,1,136.0,1,1,1,4,9,128.5,1,0,1,1,1,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,132.0,1,38,37,7,7,131.3,1,0,1,1,1,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,2 +1,1,2,9500,0,1,115.0,1,38,38,9,8,108.4,1,0,1,1,1,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,120.0,1,37,37,9,9,98.7,0,0,1,1,0,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,120.0,1,37,37,9,9,155.8,0,0,1,1,0,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,151.0,1,19,1,5,0,144.4,1,0,1,1,1,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,1 +1,43,2,9147,0,1,131.0,1,19,37,5,9,123.7,1,0,1,1,1,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,2 +1,17,4,9085,0,1,128.0,1,38,37,4,9,117.9,1,0,1,1,1,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,1 +1,43,1,8014,1,12,133.1,1,37,1,9,10,112.5,0,0,1,1,0,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,0 +1,39,1,9085,0,19,133.1,1,37,37,4,8,140.0,0,0,1,1,1,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,7,1,9147,0,2,150.0,1,3,37,2,5,150.0,1,0,0,0,1,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,18,2,9147,0,1,102.0,1,37,38,191,143,101.7,1,0,1,1,1,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,128.0,1,19,1,4,1,118.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,0 +2,39,1,8014,1,1,133.1,1,19,1,4,8,144.3,0,0,1,1,0,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,1 +1,1,5,9254,0,1,128.0,1,19,1,7,10,116.5,1,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,140.0,1,19,19,7,5,135.1,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,1 +1,18,2,9500,0,1,129.0,1,38,37,5,5,119.0,1,0,1,1,1,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,140.0,1,3,1,3,3,131.5,1,0,1,1,1,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,143.0,1,3,3,2,5,144.8,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,127.0,1,37,37,9,8,123.2,1,0,1,1,1,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,2 +1,43,1,9500,0,1,125.0,1,37,37,9,7,123.6,1,0,1,1,1,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,138.0,1,1,38,3,9,123.0,1,0,1,1,1,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,139.0,1,38,38,9,9,145.0,1,0,1,1,1,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,121.0,1,37,19,6,7,116.8,1,0,1,1,1,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,2,9085,0,1,123.0,1,1,19,4,9,113.6,1,0,1,1,1,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,2 +1,17,6,9773,0,1,126.0,1,1,19,5,5,119.0,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,4,9119,0,1,139.0,1,37,19,9,4,133.1,1,0,1,1,0,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,2 +1,1,1,9147,0,1,158.0,1,1,38,3,6,155.2,0,0,1,1,0,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,1 +1,17,2,8014,1,1,133.1,1,19,1,1,1,118.0,0,0,1,1,1,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,136.0,1,22,30,0,8,135.7,1,0,1,1,1,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,120.0,1,37,37,9,9,110.0,0,0,1,0,0,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,124.0,1,19,19,7,9,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,2 +5,7,1,9991,1,2,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,1 +1,1,4,9238,0,1,123.0,1,38,1,4,10,129.0,1,0,1,1,1,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,17,4,9119,0,1,135.0,1,38,37,5,7,126.6,1,0,1,1,0,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,2 +1,1,3,9070,0,1,129.0,1,5,3,5,7,124.8,1,0,1,1,1,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,1 +1,17,5,9147,0,1,127.0,1,1,38,4,5,124.6,1,0,1,1,1,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,135.0,1,1,1,4,4,118.5,0,0,1,1,1,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,171,0,1,142.0,1,3,1,2,6,139.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +5,39,1,9147,0,1,133.1,1,19,19,9,9,119.8,0,0,1,1,0,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,123.0,1,1,37,9,9,132.1,0,0,1,1,1,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,1 +1,43,1,9853,0,1,115.0,1,3,37,2,5,108.7,1,0,1,1,1,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,12,133.1,1,37,34,90,90,110.7,1,0,1,1,1,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,155.0,1,4,3,1,1,144.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,4,9254,0,1,105.0,1,1,19,9,6,106.1,1,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,150.0,1,19,19,3,4,135.0,0,0,1,1,1,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,152.0,1,37,37,5,7,136.3,0,0,1,1,1,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,34,34,0,0,120.5,1,0,1,1,0,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,140.0,1,1,37,4,5,123.6,1,0,1,1,1,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,120.0,1,37,37,9,9,150.1,1,0,1,1,0,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,144.0,1,37,38,9,9,126.9,0,0,1,1,1,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,120.0,1,37,37,9,9,128.2,0,0,1,0,0,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,0 +1,18,2,9147,0,1,115.0,1,1,37,5,5,108.7,1,0,1,1,1,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,140.0,1,19,19,4,4,140.0,1,0,1,0,0,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,1,1,3,7,140.0,1,0,1,1,1,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9500,0,1,129.0,1,19,19,5,5,119.6,1,0,1,1,1,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,1 +1,17,6,9773,0,1,141.0,1,37,37,5,5,127.7,1,0,1,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,137.0,1,19,37,4,7,126.3,1,0,1,1,1,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,1 +2,39,1,9003,0,1,168.0,1,1,41,9,3,153.9,0,0,0,0,0,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,133.0,1,37,37,9,9,121.8,1,0,1,1,1,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,119.0,1,2,1,4,3,113.1,1,0,1,1,1,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,43,1,9147,0,1,142.0,1,38,19,141,171,115.0,0,0,1,1,1,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,2 +1,17,4,9773,0,1,138.0,1,37,19,5,7,133.5,1,0,1,0,1,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +2,7,1,8014,1,3,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,133.0,1,3,19,2,5,130.8,1,0,1,1,1,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,137.0,1,38,19,152,171,131.1,1,0,1,1,1,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,3,9119,0,1,130.0,1,1,38,3,3,129.3,0,0,1,1,0,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,1 +1,43,1,9773,0,1,126.0,1,1,37,3,0,110.0,0,0,0,1,1,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,116.0,1,1,12,5,8,110.4,1,0,1,1,0,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,1,1,4,10,110.0,0,0,0,1,1,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,17,5,9238,0,1,134.0,1,38,37,9,9,126.0,0,0,0,0,1,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,0 +2,39,1,9147,0,1,130.0,1,1,19,9,9,109.9,0,0,1,0,1,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9085,0,1,133.1,41,37,37,9,9,109.6,0,0,1,1,1,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,0 +1,44,1,9003,0,39,140.0,1,37,37,9,1,140.0,0,0,1,1,0,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,2 +2,39,1,9991,1,19,133.1,1,38,38,90,90,121.7,1,0,1,1,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,143.0,1,1,3,4,7,129.7,1,0,1,1,1,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,133.0,1,1,19,9,6,121.5,1,0,1,1,1,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,1 +1,17,1,9003,0,1,133.0,1,38,37,9,9,125.3,1,0,1,1,1,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,1 +1,42,1,9991,1,1,160.0,1,1,2,4,3,120.0,0,0,1,1,1,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,1 +2,39,2,9556,0,1,133.1,105,1,3,9,2,152.8,1,0,1,1,1,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,123.0,1,1,1,4,6,118.8,1,0,1,1,1,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9853,0,1,122.0,1,3,19,2,3,112.9,0,0,1,1,1,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,1 +1,1,5,9853,0,1,123.0,1,1,12,4,9,113.2,1,0,1,1,1,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,140.0,1,37,37,9,9,141.5,1,0,0,0,1,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,129.0,1,19,19,4,8,127.3,1,0,1,1,1,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,1 +1,39,1,9085,0,1,130.0,1,37,37,6,6,110.0,0,0,1,1,1,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,2 +4,39,1,8014,1,19,133.1,1,37,37,9,9,95.0,0,0,0,0,1,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9853,0,1,127.0,1,37,19,9,8,137.5,1,0,1,1,1,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,1 +1,1,5,9500,0,1,142.0,1,38,37,5,7,128.8,1,0,1,1,1,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,1 +1,17,2,9147,0,1,142.0,1,19,19,4,8,127.3,0,0,1,1,1,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +3,39,1,9991,1,1,120.0,1,37,1,9,2,170.0,0,0,1,1,0,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,138.0,1,19,37,4,9,141.0,0,0,1,1,0,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,132.0,1,1,38,9,9,120.1,1,0,1,1,0,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,140.0,1,1,1,2,7,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,121.0,1,37,19,9,10,113.7,0,0,1,1,1,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,2 +1,39,1,8014,1,38,133.1,1,1,1,4,4,107.5,0,0,0,0,0,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,150.0,1,1,1,5,1,155.6,0,0,1,1,1,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,150.0,1,37,37,9,6,131.1,0,0,1,1,1,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,100.0,1,3,19,1,1,117.9,0,0,1,0,0,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,39,2,9991,1,1,150.0,1,37,37,9,9,120.0,0,0,1,1,1,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,150.0,1,1,38,4,9,150.0,0,0,1,1,0,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,2 +2,43,1,9130,0,9,133.1,1,34,34,0,0,128.2,0,0,1,1,0,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,141.0,1,1,1,90,3,127.8,0,0,1,1,1,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,0 +1,1,1,9070,0,1,116.0,1,3,3,0,1,108.7,1,0,1,1,0,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,0 +2,39,1,9500,0,1,140.0,1,19,19,9,7,110.5,0,0,1,1,1,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9254,0,19,133.1,1,34,34,0,0,120.0,0,0,0,0,0,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,1,133.1,1,37,37,191,172,115.2,0,0,1,1,1,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,37,38,9,6,160.0,0,0,1,1,1,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,133.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9556,0,1,131.0,1,19,38,9,7,128.5,0,0,1,1,1,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,160.0,1,37,38,9,7,161.0,1,0,1,1,1,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,136.0,1,3,3,1,2,152.5,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9853,0,1,114.0,1,19,37,5,5,109.5,1,0,1,1,1,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,150.0,1,37,37,9,7,122.5,0,0,1,1,0,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,0 +1,44,1,9991,1,39,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,2 +1,51,1,8014,1,42,140.0,1,19,37,134,193,138.0,1,0,0,1,1,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,127.0,1,2,19,3,9,121.5,0,0,1,1,0,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,133.1,1,19,19,3,3,125.3,0,1,1,1,0,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,4,9670,0,1,125.0,1,4,19,2,5,118.0,1,0,1,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,1 +2,42,1,9070,0,1,170.0,1,37,25,0,4,148.5,0,0,1,1,0,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,0 +1,17,5,9254,0,1,121.0,1,1,19,4,7,116.5,1,0,1,0,0,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,120.0,1,19,38,5,9,130.2,0,0,1,1,1,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,140.0,1,19,37,9,9,140.7,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,140.0,1,19,19,5,9,131.3,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,42,1,9119,0,1,140.0,1,3,3,3,2,133.6,1,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,8014,1,1,150.0,1,19,2,4,6,148.0,0,0,1,1,1,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,127.0,1,37,2,9,4,123.2,1,0,1,1,1,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,119.0,1,19,37,9,9,119.4,1,0,1,1,1,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,132.0,1,2,1,4,1,127.8,0,0,1,1,0,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,0 +1,42,1,9119,0,1,136.0,1,1,37,5,5,117.5,0,0,1,1,0,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,2 +1,1,1,9991,1,1,122.0,1,37,37,9,3,113.6,0,0,1,1,0,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,19,19,5,6,137.4,0,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,2 +1,17,1,9238,0,1,128.0,1,19,19,5,4,116.5,0,0,1,1,1,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,139.0,1,1,38,6,6,143.6,1,0,0,1,0,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9130,0,1,154.0,1,3,3,2,2,137.2,1,0,0,1,0,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,0 +1,17,6,9500,0,1,142.0,1,19,37,4,9,131.9,1,0,1,1,1,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,0 +1,1,2,9773,0,1,131.0,1,19,37,9,10,121.9,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +2,7,1,9130,0,3,120.0,1,3,3,1,1,128.2,0,0,1,1,1,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,19,133.1,1,37,37,9,9,150.3,0,0,1,1,1,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,125.0,1,37,37,5,5,124.0,0,0,1,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,135.0,1,37,19,9,9,125.2,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,135.0,1,19,19,9,9,124.5,0,0,1,1,1,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,175.0,1,3,38,2,10,157.5,1,0,1,1,1,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,139.0,1,1,1,4,10,140.7,0,0,1,1,0,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,0 +1,1,4,9500,0,1,128.0,1,1,1,4,10,125.2,1,0,1,1,0,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,150.0,1,1,37,1,1,131.5,1,0,1,1,1,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,168.0,1,38,1,9,10,166.0,1,0,1,1,1,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,1 +1,51,1,9070,0,1,125.0,1,42,3,125,124,130.0,1,0,1,1,0,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,135.0,1,1,38,4,5,127.5,1,0,1,1,1,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,1 +1,18,1,9119,0,1,148.0,1,3,19,3,5,147.7,0,0,1,1,0,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9773,0,1,130.0,109,19,1,9,9,126.9,1,0,1,1,1,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,125.0,1,19,38,3,7,114.9,0,0,1,1,1,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,1 +1,7,1,9119,0,3,130.0,1,37,37,9,9,130.0,0,0,1,0,0,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9853,0,1,130.0,1,37,19,7,3,140.0,0,0,0,1,1,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,112.0,1,3,1,3,5,111.0,0,0,1,1,1,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,37,38,193,181,125.9,0,0,1,1,1,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,1 +1,42,1,9119,0,1,120.0,1,34,34,0,0,128.2,1,0,1,1,0,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,19,133.1,1,37,37,9,9,117.2,0,0,1,1,1,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9147,0,1,131.0,1,19,38,9,7,132.4,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,2 +5,39,1,9003,0,1,180.0,1,1,1,4,8,179.6,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,1,5,9119,0,1,135.0,1,37,37,90,90,122.1,1,0,1,1,0,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,133.0,1,1,38,5,10,131.3,1,0,1,1,1,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,2 +1,18,1,9500,0,1,126.0,1,37,19,5,5,119.3,0,0,1,1,1,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,110.0,1,19,37,9,6,120.0,0,0,0,0,0,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9556,0,1,130.0,1,37,37,9,9,159.0,1,0,1,1,1,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,2 +1,17,1,9070,0,1,141.0,1,19,38,4,5,133.7,1,0,1,1,0,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,150.0,1,1,37,4,6,120.0,0,0,1,1,0,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,17,2,9085,0,1,123.0,1,3,19,2,9,118.9,0,0,1,1,0,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,17,1,9991,1,1,140.0,1,38,37,6,7,127.3,0,0,1,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,151.0,1,3,1,2,1,129.8,1,0,1,1,0,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,1 +1,43,1,8014,1,1,113.0,1,37,37,0,6,128.2,0,0,1,0,1,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9070,0,1,117.0,1,1,37,4,7,127.9,1,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,145.0,1,19,19,9,7,136.6,0,0,1,1,1,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.0,1,34,37,4,9,134.4,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,9238,0,39,130.0,1,38,38,5,10,126.7,0,0,0,1,1,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,1 +1,17,1,9773,0,1,122.0,1,1,1,4,7,116.8,1,0,0,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,3,9147,0,1,124.0,1,1,1,5,3,116.7,1,0,1,1,0,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,38,1,9,4,123.2,0,0,1,1,1,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,2 +1,39,1,9556,0,40,130.0,1,1,1,4,5,145.0,0,0,1,1,1,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,2 +1,43,1,9147,0,1,127.0,25,1,5,9,10,124.2,1,0,1,1,0,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,2 +2,43,1,9670,0,1,120.0,1,34,34,0,0,128.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,0 +1,18,1,9238,0,1,122.0,1,1,3,9,2,112.6,1,0,1,1,0,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,122.0,1,1,1,4,4,119.6,1,0,1,1,1,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,2 +1,17,5,9670,0,1,125.0,1,1,19,9,7,119.4,1,0,1,1,1,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,146.0,1,19,37,9,7,153.0,1,0,1,1,1,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,108.0,1,38,38,7,7,115.0,1,0,0,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,133.1,1,1,1,3,9,138.0,1,0,1,1,1,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,140.0,1,37,37,9,5,140.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,19,133.1,1,2,1,2,4,100.0,0,0,1,1,0,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9147,0,1,129.0,1,38,37,3,5,132.9,1,0,1,1,1,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,149.0,1,3,2,2,5,151.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,135.0,1,19,4,9,2,143.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9147,0,1,158.0,1,19,37,9,7,130.0,1,0,1,1,1,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,1 +1,17,6,9556,0,1,122.0,1,1,1,4,5,117.1,1,0,1,1,1,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9556,0,12,133.1,1,34,34,99,99,100.5,0,0,1,1,1,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,9003,0,1,123.0,1,37,37,9,9,110.0,0,0,0,0,1,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,138.0,1,3,3,2,2,127.5,1,0,1,1,1,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,1 +1,43,1,9500,0,1,121.0,1,38,19,5,5,115.4,1,0,1,1,1,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,2 +1,17,4,9147,0,1,114.0,1,19,19,4,4,109.5,1,0,1,1,0,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,1 +1,17,1,9254,0,1,148.0,1,1,1,4,8,145.2,0,0,1,1,0,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,121.0,1,1,1,4,4,123.1,1,0,1,1,0,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,150.0,1,3,3,2,5,154.6,1,0,1,1,1,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,151.0,1,19,38,9,9,157.0,1,0,0,1,1,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,101.0,0,0,1,1,1,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,1 +1,1,2,9254,0,1,127.0,1,3,19,3,10,130.9,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,146.0,1,1,1,9,8,149.5,1,0,1,1,0,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9130,0,6,133.1,1,1,29,4,90,123.3,1,0,1,1,1,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,3,3,7,146.5,1,0,0,1,0,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,2 +1,7,1,8014,1,40,120.0,1,37,19,9,3,120.0,0,0,1,1,1,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9853,0,1,125.0,1,37,37,9,9,114.9,1,0,0,0,1,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,0 +1,1,2,9773,0,1,140.0,1,1,1,4,3,131.6,0,0,1,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,142.0,1,1,19,9,9,136.1,0,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,113.0,1,1,1,4,4,106.7,1,0,1,1,1,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,130.0,1,1,2,4,2,130.0,0,0,1,1,0,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,39,1,9119,0,1,130.0,1,19,37,9,9,134.0,0,0,1,1,0,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,2 +1,18,1,9500,0,1,123.0,1,37,37,3,3,118.0,1,0,1,1,1,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,1 +1,10,2,9085,0,1,163.3,22,19,1,4,9,163.3,0,0,1,1,1,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,135.0,1,19,19,9,5,135.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,136.0,1,4,5,2,2,126.2,0,0,1,1,0,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,44,1,9130,0,39,150.0,1,1,37,4,8,150.0,1,0,1,0,1,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9085,0,3,140.0,1,19,20,4,90,140.0,1,0,1,1,1,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,43,1,9070,0,1,135.0,1,1,38,3,9,126.4,1,0,1,1,1,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,140.0,1,19,38,7,8,129.9,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,133.1,1,1,1,9,9,155.0,0,0,1,1,1,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,17,5,9773,0,1,122.0,1,38,38,7,7,123.1,1,0,1,0,1,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9130,0,1,117.0,1,1,1,9,9,109.3,1,0,1,1,1,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9500,0,1,130.0,1,1,38,9,9,125.1,1,0,1,1,1,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,2 +1,1,2,9773,0,1,144.0,1,3,3,3,2,140.2,1,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,145.0,1,1,1,4,10,145.0,0,0,1,1,1,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,0 +1,51,1,9070,0,1,143.0,1,1,1,4,4,120.0,1,0,1,1,1,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,0 +1,17,1,9773,0,1,145.0,1,1,38,90,8,132.8,1,0,1,0,0,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9556,0,1,120.0,1,38,38,191,193,120.0,0,0,0,1,1,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,148.0,1,19,1,7,5,138.3,1,0,1,1,0,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,146.0,1,3,3,3,6,133.4,1,0,1,1,1,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,1 +1,17,1,9130,0,1,131.0,1,12,12,2,8,128.2,1,0,1,1,0,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,6,9556,0,1,115.0,1,19,2,5,3,112.2,1,0,1,1,1,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,1 +1,43,1,9556,0,1,126.0,1,2,3,3,2,100.0,0,0,1,1,1,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,2 +1,17,1,9238,0,1,120.0,1,19,37,9,9,113.0,1,0,1,1,1,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,132.0,1,19,38,5,5,118.0,1,0,1,1,1,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,1 +2,1,1,9238,0,1,145.0,1,37,34,9,7,139.4,0,0,1,0,1,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,131.0,1,38,38,191,174,125.4,1,0,1,1,1,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,1 +2,39,1,9119,0,1,120.0,1,37,38,9,10,145.4,0,0,0,1,0,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,0 +1,1,1,9130,0,1,138.0,1,4,5,2,2,123.0,1,0,1,1,1,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,127.0,1,5,3,4,4,122.8,1,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,136.0,1,1,1,4,4,127.0,1,0,1,1,1,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,2 +1,17,3,9119,0,1,115.0,1,3,1,3,3,116.1,1,0,1,0,0,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,143.0,1,38,37,4,9,116.5,1,0,1,1,1,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,3,19,3,8,134.9,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,1 +1,44,1,9119,0,39,140.0,1,5,41,3,2,140.0,0,0,1,1,0,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,124.0,1,19,19,9,3,115.6,1,0,1,0,0,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,0 +1,7,1,9500,0,3,130.0,1,19,38,5,3,130.0,0,0,1,1,1,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,137.0,1,1,1,4,10,124.8,1,0,1,1,0,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,138.0,1,1,3,1,4,127.5,1,0,1,1,0,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,112.0,1,1,1,5,1,111.7,0,0,0,0,0,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,0 +1,1,4,9500,0,1,147.0,1,1,1,4,9,124.5,1,0,1,1,1,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,1 +1,7,1,9500,0,3,140.0,1,3,19,2,6,140.0,0,0,1,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,121.0,1,19,19,7,7,113.0,1,0,1,1,1,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,0 +1,1,2,8014,1,1,96.0,1,3,1,3,9,100.0,0,0,1,1,1,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,3,120.0,1,37,37,9,9,120.0,0,0,1,1,1,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,152.0,1,1,38,4,5,144.7,0,0,1,1,1,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,1 +2,1,1,9070,0,1,127.0,1,12,19,9,9,123.2,0,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,1 +1,1,3,9070,0,1,147.0,1,34,37,5,7,135.8,1,0,1,1,1,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,7,1,9119,0,4,180.0,1,4,3,2,7,180.0,0,0,0,1,0,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,2 +1,1,6,9500,0,1,129.0,1,37,19,9,7,127.8,1,0,1,1,1,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,100.0,1,37,37,7,7,160.0,1,0,1,1,1,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,127.0,1,19,1,5,5,117.6,1,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,2 +1,39,1,9003,0,1,110.0,1,1,1,9,4,120.0,0,0,0,0,0,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9773,0,1,143.0,11,19,19,4,9,133.9,1,0,1,1,0,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,1 +1,44,1,8014,1,39,160.0,1,37,37,7,7,156.1,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,43,2,9670,0,1,135.0,1,3,19,1,7,123.5,1,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,1,130.0,1,38,3,132,122,100.0,0,0,1,1,0,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,2 +1,15,1,9238,0,1,150.0,26,19,1,9,9,146.5,1,0,0,0,0,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,1 +1,17,6,9119,0,1,129.0,1,37,13,4,90,117.1,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,3,130.0,1,3,3,3,10,147.6,0,0,1,1,0,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,171,0,1,145.0,1,1,1,3,3,140.1,1,0,1,1,1,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,43,3,9254,0,1,135.0,1,3,3,2,2,122.1,0,0,1,1,0,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,2 +1,17,1,171,0,1,140.0,41,1,1,5,7,146.3,1,0,1,1,1,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9070,0,1,126.0,1,38,38,9,8,129.9,1,0,1,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,1 +1,7,1,9070,0,3,120.0,1,4,4,2,2,120.0,0,0,1,1,0,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,0 +1,17,4,9070,0,1,144.0,1,38,1,9,9,137.4,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,125.0,1,3,3,2,3,118.0,1,0,1,1,0,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,0 +5,39,1,9238,0,1,130.0,1,19,38,9,10,146.0,0,0,1,1,0,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,100.0,1,37,37,6,5,107.5,0,0,1,1,1,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9773,0,1,130.0,1,1,19,1,3,161.5,0,0,1,1,0,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,140.0,1,19,19,9,4,127.8,1,0,1,1,0,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,113.0,1,1,37,1,10,116.5,1,0,1,1,1,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,1 +1,1,2,9238,0,1,145.0,1,1,19,4,8,121.4,0,0,1,1,1,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9003,0,19,133.1,1,19,37,9,10,120.0,0,0,0,1,1,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,2 +1,1,1,9085,0,1,150.0,1,12,2,4,2,144.6,0,0,0,0,1,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,40,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,0 +1,17,5,9500,0,1,137.0,1,1,1,5,5,132.6,1,0,1,1,1,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,3,19,4,7,119.0,0,0,1,1,0,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,128.0,1,1,1,4,5,124.7,0,0,1,1,0,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,2 +1,39,2,9670,0,19,133.1,1,34,34,0,0,100.0,1,0,1,0,0,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,0 +1,39,1,9556,0,1,120.0,1,19,19,4,5,122.8,0,0,1,1,1,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,0 +1,1,2,171,0,1,165.0,1,3,3,2,2,163.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,133.8,1,3,37,2,10,184.0,0,0,1,1,1,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,120.0,1,37,19,9,4,148.8,0,0,1,1,1,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,1 +1,1,5,9500,0,1,151.0,1,1,1,9,9,127.8,0,0,1,1,1,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,131.0,1,38,19,7,7,125.3,1,0,1,1,1,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,128.0,1,1,1,9,6,120.3,0,0,1,1,0,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,2 +1,1,5,9500,0,1,118.0,1,3,1,5,10,113.5,1,0,1,1,1,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,140.0,1,37,37,7,9,126.8,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,117.0,1,38,37,9,9,113.5,1,0,1,1,1,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,135.0,1,19,19,9,9,122.8,1,0,1,1,0,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,151.0,1,37,37,9,7,147.5,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,1,3,4,4,147.5,1,0,1,1,1,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,128.0,1,38,37,9,9,124.9,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9085,0,1,124.0,1,3,19,2,3,113.9,1,0,1,1,1,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,120.0,1,3,19,4,7,119.7,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,171,0,1,147.0,1,1,12,4,4,148.4,1,0,1,1,0,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,136.0,1,19,1,9,8,123.4,1,0,1,1,1,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,123.0,1,3,1,2,5,112.9,0,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,2,9556,0,1,133.1,1,3,1,2,4,136.1,0,0,1,1,0,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,141.0,1,3,1,4,4,142.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,1,1,9003,0,1,120.0,1,37,37,9,9,120.5,1,0,0,1,0,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,140.0,1,37,37,9,6,140.0,1,0,1,1,0,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,147.0,1,19,1,4,3,138.5,1,0,1,1,1,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,123.0,1,34,34,90,90,113.3,1,0,1,1,1,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,38,4,5,130.4,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,7,7,134.0,0,0,1,1,0,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,38,38,4,7,111.6,1,0,1,1,1,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,1 +1,1,1,9119,0,1,148.0,1,19,38,9,7,133.0,0,0,1,1,0,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,128.0,1,3,1,2,1,127.8,0,0,1,1,1,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,172.0,1,38,37,9,9,149.3,0,0,1,1,0,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,138.0,1,37,37,9,8,127.2,1,0,1,1,1,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,140.0,1,3,1,2,6,137.6,1,0,1,1,0,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,1 +2,43,1,8014,1,1,110.0,1,37,19,9,3,100.0,0,0,1,1,1,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,2,1,2,4,140.7,1,0,1,1,0,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,1 +1,1,1,9130,0,1,137.0,1,3,38,3,5,129.3,1,0,1,1,1,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,136.0,1,38,38,0,7,133.2,1,0,1,1,1,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,145.0,6,34,34,0,0,134.5,1,0,1,1,0,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,147.0,1,19,19,3,10,151.9,1,0,1,1,1,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,118.0,1,37,37,9,9,112.1,1,0,1,1,1,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,0 +1,43,1,9773,0,1,122.0,1,1,1,4,5,126.9,0,0,1,1,1,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,126.0,1,12,38,9,5,122.2,0,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,143.0,1,3,3,2,2,129.0,0,0,1,1,0,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,1 +1,39,1,9556,0,1,130.0,1,19,38,9,8,113.3,0,0,1,1,1,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,101.0,1,1,37,4,9,98.9,1,0,1,1,1,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,133.1,1,34,34,90,90,116.0,0,0,1,0,1,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,0 +2,39,1,9991,1,1,170.0,1,37,19,9,3,151.1,0,0,1,1,0,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,1 +2,17,5,9119,0,1,126.0,1,37,38,4,4,122.9,1,0,1,1,0,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,2 +1,1,2,9500,0,1,125.0,1,19,19,9,9,114.9,0,0,1,1,1,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,1 +1,18,3,9773,0,1,128.0,1,19,1,9,9,122.1,1,0,1,1,0,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,149.0,1,38,37,9,9,139.5,0,0,1,1,0,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,1,3,9,5,137.1,0,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,126.0,1,38,37,5,5,114.8,1,0,1,1,1,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,1 +2,39,1,9085,0,1,120.0,1,37,37,6,6,150.0,0,0,1,1,0,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,137.0,1,38,19,0,90,122.3,0,0,1,1,1,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,0 +2,39,1,9853,0,19,133.1,1,37,19,3,7,100.0,0,0,1,1,1,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,145.0,1,4,2,2,3,127.3,1,0,1,1,0,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,129.0,1,1,1,4,8,129.0,0,0,1,0,1,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,143.0,1,1,1,4,4,129.0,1,0,1,1,0,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,136.0,1,19,38,9,9,119.3,1,0,1,1,1,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,151.6,0,0,1,1,1,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,2 +1,1,1,9238,0,1,108.0,1,19,38,9,9,107.3,0,1,1,1,1,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,134.0,1,1,1,2,7,128.4,1,0,1,1,1,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,1 +1,42,1,9119,0,1,120.0,1,3,1,2,9,108.2,1,0,1,1,0,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,0 +1,16,2,9500,0,1,127.0,1,2,38,4,9,119.0,1,0,1,1,1,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,131.0,1,1,1,9,9,122.0,0,0,1,1,1,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,1 +1,7,1,9070,0,3,133.1,1,3,5,2,2,120.0,1,0,1,1,1,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,150.0,1,19,19,5,5,132.8,1,0,1,1,1,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,1 +1,18,2,9670,0,1,121.0,1,37,38,4,1,111.9,1,0,1,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,108.0,41,3,3,9,9,107.0,0,0,0,0,1,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,150.0,1,34,19,0,4,152.8,1,0,1,1,0,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,18,2,9238,0,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,130.0,6,19,1,6,4,130.0,1,0,1,1,1,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,2 +1,51,1,9119,0,1,136.0,1,1,19,3,5,133.6,1,0,1,1,0,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,0 +1,1,4,9773,0,1,155.0,1,3,19,1,4,149.8,1,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9070,0,1,124.0,1,19,38,4,0,117.6,1,0,1,1,0,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,9,100.0,0,0,1,1,0,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,2 +1,44,1,9238,0,1,140.0,1,1,1,5,5,143.4,0,0,1,1,1,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,120.0,1,1,19,7,7,111.3,0,0,1,1,0,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,2 +2,1,1,9556,0,1,144.0,1,19,19,193,144,139.8,0,0,0,1,0,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,110.0,1,1,1,5,5,160.0,1,0,0,1,1,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,0 +2,39,1,9853,0,19,133.1,1,37,37,9,9,131.0,0,0,1,1,1,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,139.0,1,4,1,2,10,136.4,1,0,1,1,1,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,1 +1,17,3,9085,0,1,134.0,1,37,38,9,9,120.4,1,0,1,1,1,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,148.0,1,3,2,4,2,131.6,1,0,1,1,1,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,0 +1,1,3,9500,0,1,145.0,1,19,37,7,7,141.5,1,0,1,1,1,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,1 +2,39,1,9130,0,19,133.1,1,37,38,9,9,120.0,0,0,1,1,0,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,3,9254,0,1,121.0,1,19,37,4,7,116.8,1,0,1,1,1,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,1 +1,1,3,9254,0,1,123.0,1,1,1,4,3,123.4,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,38,38,9,9,133.4,1,0,1,1,0,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,1 +1,42,1,9500,0,1,124.0,1,19,19,4,9,124.0,0,0,1,1,1,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,40,130.0,1,37,37,9,7,130.0,0,0,1,1,1,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,140.0,1,3,38,2,9,140.0,1,0,1,1,1,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,158.0,1,38,38,9,7,144.7,1,0,1,1,1,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,18,2,9238,0,1,121.0,1,19,1,4,3,121.4,1,0,1,1,1,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,12,133.1,1,37,19,9,10,120.0,0,0,1,1,0,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,122.0,1,3,1,4,3,114.8,1,0,1,1,1,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,2 +4,43,1,9991,1,1,164.0,1,37,37,6,6,131.8,0,0,1,1,1,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,1 +1,1,3,9773,0,1,145.0,1,38,38,9,5,133.1,0,0,1,1,1,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9853,0,19,133.1,1,38,19,9,9,108.0,0,0,0,0,1,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,2 +1,17,3,9070,0,1,131.0,1,38,37,5,5,120.2,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,2 +1,43,1,9238,0,1,130.0,1,38,37,9,7,133.2,0,0,1,1,1,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,112.0,1,1,1,3,3,106.4,1,0,1,1,0,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,125.0,1,1,38,144,181,123.3,0,0,1,1,1,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,125.0,1,3,2,2,1,119.1,1,0,1,1,1,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,0 +1,7,1,9853,0,3,140.0,1,34,34,0,0,140.0,1,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,135.0,1,1,19,3,9,137.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,7,1,9991,1,3,120.0,1,37,37,6,7,120.0,0,0,0,0,0,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,130.0,1,1,1,4,3,125.1,1,0,1,1,1,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,1 +2,39,1,33,0,1,120.0,1,38,1,9,5,153.8,0,0,0,1,0,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,1,150.0,1,37,37,9,9,140.0,0,0,1,0,0,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,127.0,1,1,38,9,7,120.4,1,0,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,7,1,8014,1,43,180.0,1,19,19,9,4,180.0,0,0,1,1,1,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,1 +1,1,3,9147,0,1,143.0,1,1,1,5,7,133.2,1,0,1,1,1,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,1 +1,15,1,9853,0,1,133.1,41,43,1,153,135,128.2,0,0,1,1,1,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,1 +1,39,1,9147,0,12,133.1,1,1,1,9,4,140.0,1,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,151.0,1,1,38,4,7,137.0,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,1 +1,17,4,171,0,1,172.0,1,3,1,2,10,155.6,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,129.0,1,19,1,9,5,112.0,0,0,1,1,0,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,150.0,1,38,3,9,1,140.0,0,0,1,1,0,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,1 +1,1,1,9773,0,1,124.0,17,1,1,3,5,118.1,1,0,0,0,1,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,0 +1,17,1,9670,0,1,124.0,1,37,19,5,8,114.2,1,0,0,1,1,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,122.0,1,1,19,3,5,116.8,1,0,1,1,1,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,144.0,1,38,1,9,10,137.4,0,0,1,1,1,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,19,19,9,9,120.0,0,0,1,1,1,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,138.0,1,38,38,7,6,124.7,1,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,2 +1,18,2,9147,0,1,132.0,1,3,3,5,7,119.1,1,0,0,0,1,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,17,6,9119,0,1,111.0,1,19,3,5,10,106.5,1,0,1,1,0,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,0 +1,7,1,9500,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,1,140.0,1,37,37,9,9,130.0,1,0,1,1,0,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,125.0,1,37,37,3,3,124.0,0,0,1,1,0,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,128.0,1,19,2,7,3,126.3,1,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +2,39,1,9500,0,1,110.0,1,37,37,9,6,114.3,0,0,1,1,1,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,9085,0,1,133.1,1,1,9,4,4,128.2,0,0,1,1,1,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,1 +1,1,3,9238,0,1,126.0,1,38,19,5,8,120.8,1,0,1,1,1,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,121.0,1,1,1,9,8,118.9,1,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,109.0,1,19,37,5,5,108.3,0,0,1,1,1,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,2 +1,1,4,9670,0,1,127.0,1,1,1,7,7,116.5,1,0,1,1,1,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,171,0,19,133.1,101,1,19,2,7,110.0,0,0,1,1,0,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,133.0,1,37,37,9,7,124.6,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,39,137.0,1,1,1,5,10,124.5,0,0,1,0,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,130.0,1,19,19,7,7,121.6,0,0,1,1,1,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,1 +2,39,1,8014,1,1,130.0,1,37,37,6,5,113.5,1,0,1,1,1,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9670,0,1,120.0,1,38,38,5,7,115.1,1,0,1,1,1,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,115.0,1,38,1,9,4,116.1,1,0,1,1,0,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,130.1,0,0,1,1,1,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,2 +1,1,3,9238,0,1,133.1,1,1,1,9,9,100.0,1,0,1,1,0,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,168.0,0,0,1,1,0,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,148.0,1,1,1,9,9,141.7,0,0,1,0,0,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,0 +1,15,1,33,0,1,133.1,41,2,3,2,4,100.0,0,0,1,1,0,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,2 +1,17,3,9147,0,1,135.0,1,37,37,6,5,121.0,1,0,1,1,0,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,151.0,1,3,3,1,90,161.9,0,0,1,1,1,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,8,108.5,0,0,1,1,0,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9670,0,1,130.0,1,26,30,0,5,128.6,1,0,0,1,1,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,1 +1,43,1,9500,0,1,140.0,100,1,1,6,6,128.2,0,0,1,1,1,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,140.0,1,19,37,5,7,140.0,1,0,1,1,0,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,0 +1,39,1,33,0,1,140.0,1,3,1,2,4,152.8,0,0,1,1,1,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,2 +1,43,1,9070,0,1,117.0,1,1,1,4,7,112.5,1,0,1,1,0,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,126.0,1,37,19,7,7,125.7,0,0,1,1,1,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,2 +1,1,2,9773,0,1,140.0,1,38,38,5,7,126.4,1,0,1,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,121.0,1,37,38,6,9,121.0,0,0,1,1,1,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,136.0,1,12,1,4,4,122.0,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,117.0,1,37,37,9,9,120.2,1,0,1,1,1,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,133.1,1,38,1,9,9,121.0,0,0,0,0,0,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,0 +1,44,1,9991,1,39,130.0,1,37,37,5,5,130.0,1,0,1,1,0,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,138.0,1,1,19,4,9,142.2,1,0,1,1,1,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,148.0,1,3,1,2,10,148.0,1,0,1,1,1,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,1 +1,17,6,9556,0,1,134.0,1,19,38,7,7,128.5,1,0,1,1,1,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,141.0,1,1,19,5,8,141.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,149.0,1,3,1,9,9,137.5,0,0,1,1,0,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,1 +1,1,3,9085,0,1,142.0,1,11,11,90,90,155.3,0,0,1,1,1,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +1,1,2,9070,0,1,135.0,1,19,37,9,9,134.0,1,0,1,1,1,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,132.0,1,19,38,9,7,120.1,0,0,1,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9147,0,1,133.0,1,37,37,9,5,119.7,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,139.0,1,3,4,2,2,130.6,0,0,1,1,1,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,130.0,1,1,3,9,2,130.0,1,0,0,0,0,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,0 +1,17,3,9500,0,1,138.0,1,3,3,4,5,130.0,1,0,1,1,1,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,121.0,1,19,19,3,3,116.1,1,0,1,1,1,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,160.0,1,3,38,1,9,152.0,1,0,1,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,130.0,41,37,19,9,8,125.5,1,0,1,1,1,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,133.1,1,38,38,191,193,146.0,0,0,0,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,1 +4,39,1,9003,0,1,140.0,1,37,37,9,8,150.0,0,0,1,1,0,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,2 +1,17,2,9670,0,1,132.0,1,1,19,5,3,124.0,1,0,1,1,0,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,117.0,1,19,19,5,7,118.4,0,0,1,1,0,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,140.0,6,1,19,4,7,131.6,1,0,1,1,1,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,142.0,1,38,1,8,10,138.5,1,0,1,1,0,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,2 +1,1,1,9130,0,1,132.0,1,3,1,4,9,121.9,1,0,1,1,1,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,122.0,1,1,1,9,9,116.1,1,0,1,1,0,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,0 +1,7,1,8014,1,3,130.0,1,37,38,0,5,130.0,0,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,138.0,1,19,19,9,5,124.8,1,0,1,1,1,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,140.0,1,19,38,3,9,140.0,1,0,1,1,0,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +4,39,1,8014,1,1,138.0,1,19,19,90,90,127.0,0,0,1,0,1,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9500,0,19,133.1,1,1,3,2,2,100.0,0,0,0,1,0,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,117.0,1,3,1,3,5,110.7,1,0,1,1,0,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,120.0,1,19,19,5,5,113.0,1,0,1,1,1,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,160.0,1,37,37,7,7,133.0,1,0,1,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,137.0,1,1,1,4,5,126.3,1,0,1,1,1,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,19,37,9,7,123.9,1,0,1,1,1,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,38,38,9,5,130.0,0,0,0,0,0,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,137.0,1,19,37,9,7,130.8,0,0,0,1,1,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,38,37,4,6,150.0,1,0,1,1,1,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,115.0,1,34,38,0,5,108.4,1,0,1,1,1,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,140.0,1,3,38,141,151,135.3,0,0,1,1,0,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,148.0,1,19,19,7,7,130.9,0,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,127.0,1,1,1,4,3,126.3,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,2,9670,0,1,100.0,1,37,37,9,9,100.0,0,0,1,1,1,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,2 +1,17,2,171,0,1,141.0,1,19,37,9,9,136.1,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,123.0,1,30,19,4,90,122.3,0,0,1,1,1,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,145.0,1,1,38,5,7,127.5,1,0,1,1,0,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9085,0,1,150.0,1,37,37,90,10,112.0,0,0,1,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,128.0,1,37,1,9,7,124.2,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,0 +1,43,1,9070,0,39,130.0,1,19,37,5,9,124.0,1,0,1,1,1,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,1 +1,17,1,9003,0,1,170.0,1,1,4,9,5,144.1,1,0,0,0,0,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9670,0,1,110.0,1,19,19,90,99,107.2,0,0,1,1,0,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9238,0,19,133.1,1,37,37,9,9,130.0,1,0,1,1,1,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,42,1,9119,0,1,144.0,1,34,34,0,0,119.5,0,0,1,1,0,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,19,133.1,1,37,37,6,6,162.0,0,0,0,1,0,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,16,1,9085,0,1,138.0,1,37,37,9,9,123.0,1,0,1,1,1,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,39,1,9500,0,1,133.1,1,19,19,5,6,121.4,0,0,0,1,1,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9085,0,1,138.0,1,1,1,4,7,132.1,1,0,1,1,1,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,1 +1,39,1,9119,0,1,133.1,1,37,37,9,9,101.6,0,0,1,1,0,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9500,0,1,126.0,1,1,19,131,181,120.1,1,0,1,1,1,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,38,9,9,142.0,1,0,1,1,1,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,1 +1,18,1,8014,1,1,138.0,1,19,1,9,5,134.5,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,19,9,9,150.0,0,0,1,1,0,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,126.0,1,38,37,9,9,123.6,1,0,1,1,1,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,39,1,9254,0,19,133.1,1,19,19,3,1,101.5,0,0,0,0,0,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,43,2,9119,0,1,115.0,1,38,19,9,6,112.2,1,0,0,1,0,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,2 +2,39,1,9003,0,1,120.0,1,37,37,9,9,125.7,0,0,0,0,1,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,0 +1,17,2,9773,0,1,115.0,1,1,1,5,5,119.6,1,0,1,1,1,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,19,9,4,140.0,0,0,1,1,1,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,125.0,1,37,19,90,90,137.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,120.0,1,3,38,3,7,124.2,1,0,1,1,0,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,2 +1,1,1,9147,0,1,146.0,1,5,1,1,5,144.6,0,0,1,1,0,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,116.0,1,1,1,3,4,113.6,1,0,1,1,1,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,1 +4,42,1,9147,0,1,133.1,1,37,38,7,3,123.0,1,0,1,1,0,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,118.9,1,38,37,5,9,118.9,1,0,1,1,1,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,123.0,1,12,1,9,9,119.2,1,0,1,1,1,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,1 +1,7,1,9500,0,2,140.0,1,38,37,7,8,140.0,0,0,1,1,1,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,110.0,1,37,37,90,90,108.4,1,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9119,0,1,146.0,1,1,37,7,7,132.4,1,0,1,1,0,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,19,133.1,1,19,3,9,2,140.0,1,0,0,1,0,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,0 +1,18,2,9853,0,1,111.0,1,38,38,191,171,105.8,1,0,1,1,1,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,6,130.2,0,0,1,1,1,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,130.0,1,1,3,9,10,118.1,1,0,1,1,0,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,118.0,1,1,19,5,4,118.0,0,0,1,1,1,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,153.0,1,38,38,7,7,159.7,1,0,1,1,1,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,171,0,12,110.0,1,37,37,7,7,106.0,1,0,1,1,0,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,134.0,1,19,1,9,4,124.9,1,0,1,1,1,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,0 +1,1,3,9254,0,1,121.0,1,19,19,9,9,125.9,1,0,1,1,1,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,160.0,1,19,19,4,9,154.4,0,0,1,1,1,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,3,140.0,1,19,19,9,7,152.4,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9130,0,1,130.0,1,19,1,191,144,110.0,0,0,1,1,0,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,142.0,1,38,37,9,5,127.3,1,0,1,1,1,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,37,37,9,9,130.0,0,0,0,1,1,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,124.0,1,37,19,9,4,121.2,0,0,1,1,0,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,1 +4,39,1,9991,1,1,120.0,1,19,19,9,3,113.9,1,0,1,1,1,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,114.0,1,19,38,5,3,112.6,1,0,1,1,1,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,1 +1,7,1,9991,1,40,120.0,1,1,19,4,9,120.0,0,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,128.0,1,19,38,9,9,118.2,0,0,1,1,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,4,9070,0,1,126.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,130.0,1,1,1,0,0,119.5,0,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,184.4,22,2,19,2,8,184.4,0,0,1,1,1,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,133.1,1,37,37,9,9,132.8,0,0,0,0,0,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9085,0,1,120.0,1,38,19,90,90,127.0,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,1 +1,17,4,9147,0,1,132.0,1,38,19,5,5,120.8,1,0,1,1,0,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,0 +1,10,1,9670,0,1,148.9,22,37,37,9,9,148.9,0,0,1,1,1,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,4,150.0,1,1,1,4,6,150.0,0,0,1,1,0,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,150.0,1,19,1,9,3,110.0,1,0,1,1,0,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,1 +1,15,1,9670,0,1,130.0,26,42,1,2,7,130.0,0,1,0,1,1,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,1 +2,7,1,8014,1,3,120.0,1,38,1,9,9,120.0,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,149.0,1,19,37,9,9,158.1,1,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,4,9147,0,1,124.0,1,37,37,9,9,117.4,0,0,1,1,1,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,142.0,1,34,1,5,10,136.1,1,0,1,0,0,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,1,1,8014,1,1,165.0,1,37,37,0,0,162.9,1,0,1,1,0,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,130.0,1,37,37,5,7,123.4,1,0,1,1,0,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,0 +4,39,1,8014,1,1,133.1,1,37,37,7,7,143.0,0,0,1,1,0,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,121.0,1,38,37,8,8,115.4,1,0,1,1,1,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,7,1,9556,0,3,140.0,1,3,3,2,2,140.0,0,0,0,0,0,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,116.0,1,38,19,0,2,116.7,1,0,1,1,0,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,132.0,1,38,1,5,5,124.3,0,1,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,133.1,1,38,12,7,0,111.5,0,0,1,0,1,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,0 +1,53,1,9147,0,42,140.0,1,1,1,6,6,142.2,0,0,1,1,0,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,1 +2,44,1,9991,1,39,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,9773,0,1,170.0,1,1,19,9,7,155.0,0,0,1,1,0,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,8014,1,19,133.1,1,37,37,4,8,112.5,0,0,1,1,1,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,120.0,1,1,1,5,8,112.0,1,0,1,1,1,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,123.0,1,1,1,3,3,113.6,1,0,1,1,1,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,1 +1,39,1,9085,0,1,133.1,1,1,19,9,9,162.3,1,0,1,1,1,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,116.0,1,37,1,9,8,115.7,1,0,0,0,1,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,160.0,1,9,19,4,3,151.3,0,0,1,1,1,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,1 +1,39,1,8014,1,19,149.0,1,34,34,0,0,126.3,0,0,1,1,1,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,44,1,9238,0,39,140.0,41,1,1,4,6,137.5,0,0,0,1,1,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,130.0,1,37,37,9,9,129.0,1,0,1,1,1,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,19,38,7,7,118.7,0,0,1,1,0,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,128.0,0,0,1,1,1,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,1 +1,17,1,9070,0,1,135.0,1,19,37,5,9,145.9,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,128.0,1,1,19,9,7,118.2,0,0,1,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,128.0,1,19,38,9,9,127.0,0,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,140.0,1,37,12,9,9,150.0,0,0,0,1,0,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,0 +2,43,1,8014,1,1,160.0,1,37,39,9,4,140.9,0,0,1,1,1,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,133.0,1,38,19,8,7,127.3,1,0,1,1,1,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,1 +1,15,1,9670,0,1,160.0,1,37,12,9,9,149.5,1,0,1,0,0,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,152.0,101,2,1,9,1,168.5,1,0,1,1,0,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,1 +1,1,3,9085,0,1,147.0,1,19,19,9,1,135.6,1,0,1,1,1,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,1 +1,17,2,8014,1,1,120.0,1,37,34,0,0,117.6,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,141.0,1,37,37,9,9,130.2,0,0,1,1,0,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,1 +1,16,2,9147,0,1,139.0,1,38,37,9,9,123.7,1,0,1,1,1,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,134.0,1,19,38,4,8,129.5,0,0,1,1,1,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,113.0,1,1,37,9,10,117.2,1,0,1,1,1,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,18,2,9556,0,1,126.0,1,3,3,2,2,115.5,0,0,1,1,0,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,1 +1,39,1,8014,1,1,134.0,1,37,38,4,7,110.0,1,0,1,1,1,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,42,1,171,0,1,132.0,1,1,1,1,4,132.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9003,0,1,130.0,1,19,19,9,1,140.0,0,0,1,1,1,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9773,0,1,132.0,1,38,19,9,9,125.0,1,0,1,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,140.0,1,37,37,9,6,132.8,0,0,1,1,0,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,130.0,1,37,19,9,5,140.2,1,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9070,0,1,118.0,1,43,3,123,123,110.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,1 +1,39,1,8014,1,19,100.0,1,37,37,5,5,111.0,1,0,1,1,1,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,2 +1,1,3,9085,0,1,138.0,1,1,3,4,4,126.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,132.0,1,2,19,4,4,125.0,1,0,1,1,1,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,38,100.0,1,37,37,9,7,154.0,1,0,1,1,0,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,138.0,1,1,19,4,4,131.7,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,1 +2,39,2,9147,0,1,140.0,1,37,37,9,8,108.0,0,0,1,1,1,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,2 +1,1,5,9147,0,1,134.0,1,3,2,2,2,134.7,0,0,1,1,0,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,2 +1,43,1,9130,0,1,120.0,1,2,3,3,2,120.0,1,0,1,0,0,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,0 +1,1,3,9085,0,1,140.0,1,10,19,90,90,135.8,1,0,1,1,1,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,142.0,1,37,38,5,1,129.4,0,0,1,1,1,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,1 +1,17,4,9670,0,1,120.0,1,1,19,5,5,117.2,1,0,1,1,1,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,136.0,1,1,19,5,7,136.4,0,0,1,1,1,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,120.0,1,37,37,5,5,124.6,0,0,1,1,1,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,2 +1,39,1,9500,0,1,133.1,1,1,37,9,9,100.0,0,0,1,1,0,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,123.0,1,19,1,9,3,117.8,1,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,1 +5,39,1,9254,0,1,133.1,1,2,2,2,2,103.0,0,0,1,1,1,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,171,0,1,133.0,1,1,37,4,7,126.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,6,9500,0,1,119.0,1,1,1,4,4,115.0,1,0,1,1,0,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,143.0,1,38,19,151,193,134.3,1,1,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,135.0,1,1,19,4,4,129.1,0,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,43,2,9670,0,1,130.0,1,19,1,4,4,127.6,1,0,1,1,0,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,1,9254,0,1,126.0,1,37,37,5,1,126.0,0,0,1,0,0,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,0 +1,42,1,9119,0,1,120.0,1,19,37,9,9,113.8,0,0,1,0,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9991,1,1,140.0,1,37,37,9,9,135.8,1,0,1,1,0,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,1 +1,17,5,9085,0,1,118.0,1,38,38,9,9,112.4,1,0,1,1,1,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,1 +1,17,3,9773,0,1,134.0,1,2,1,3,3,129.5,1,0,1,1,0,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,129.0,1,1,38,4,7,123.4,0,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,132.0,1,19,37,4,9,128.0,1,0,1,1,1,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,137.0,1,38,37,7,5,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,1 +1,17,5,9119,0,1,138.0,1,19,19,5,5,123.3,1,0,0,1,0,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,138.0,1,1,1,3,4,132.5,1,0,1,1,1,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,1 +1,16,2,9070,0,1,133.0,1,1,3,4,2,122.5,1,0,1,1,1,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,2 +1,17,1,9130,0,1,137.0,1,38,19,5,7,130.0,1,0,1,1,1,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,2 +1,17,1,9238,0,1,131.0,1,37,37,9,7,121.9,0,0,1,1,1,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,1 +2,1,1,9500,0,1,142.0,1,19,38,4,5,130.3,0,0,1,1,1,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,1 +2,39,1,9556,0,1,160.0,1,37,37,9,6,120.0,0,0,1,1,1,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,0 +1,51,1,9670,0,1,126.0,1,3,3,1,10,111.0,0,0,0,1,0,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,1 +1,1,5,9853,0,1,141.0,1,37,19,9,5,133.0,1,0,1,1,1,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,0 +1,1,2,9670,0,1,124.0,1,19,1,9,4,117.7,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,133.0,1,19,19,9,5,120.1,1,0,1,1,1,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,1 +1,43,1,9147,0,1,133.1,1,4,19,2,1,128.2,0,0,1,1,1,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,0 +4,27,1,9070,0,2,130.0,1,34,34,0,0,130.0,0,0,1,1,1,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,0 +1,43,1,9003,0,1,150.0,1,2,4,4,1,150.0,0,0,1,1,0,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,1 +1,39,1,9991,1,19,133.1,1,19,37,7,5,155.5,1,0,0,0,0,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,0 +1,1,1,9238,0,1,106.0,1,1,1,3,3,105.0,0,0,1,1,0,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,111.0,1,19,38,3,3,111.4,1,0,1,0,1,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,0 +1,43,1,9254,0,1,130.0,1,1,19,5,7,130.0,0,0,1,1,1,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,0 +1,17,1,8014,1,1,120.0,1,38,37,6,6,113.0,0,0,1,1,1,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,139.0,1,1,37,4,9,131.3,1,0,1,1,1,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,1 +1,43,3,9254,0,1,110.0,1,37,37,9,9,107.2,1,0,1,1,0,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,147.0,1,1,1,4,4,134.3,1,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,130.0,1,37,38,9,6,130.0,1,0,1,1,1,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,139.0,1,37,38,9,9,124.0,1,0,1,1,0,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,122.0,1,37,37,9,9,126.9,1,0,1,1,1,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,11,11,90,4,114.0,1,0,1,1,0,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9147,0,1,132.0,1,39,39,3,3,127.8,1,0,1,0,0,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,128.0,1,38,37,5,6,122.1,0,0,1,1,1,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,2 +1,17,1,9085,0,1,127.0,1,19,38,194,193,117.6,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9500,0,1,145.0,1,3,3,2,3,141.8,0,0,1,1,1,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,1 +1,53,1,9556,0,42,140.0,1,1,19,4,5,140.0,0,0,1,1,1,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,1 +1,18,1,9147,0,1,160.0,1,19,19,5,8,137.6,1,0,1,1,1,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,1 +1,51,1,9670,0,19,133.1,1,2,1,3,10,120.0,0,0,0,1,0,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,19,133.1,1,19,39,5,3,121.7,0,0,0,0,1,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,126.0,0,0,1,1,0,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,1 +1,1,3,171,0,1,140.0,1,37,37,9,9,124.3,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,136.0,1,38,37,9,9,126.9,1,0,1,1,1,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,136.0,1,19,1,9,9,129.0,1,0,1,1,1,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,144.0,1,38,38,7,7,136.0,1,0,1,1,1,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,154.0,1,38,38,9,9,156.5,1,1,1,1,1,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,131.0,1,19,19,9,9,134.9,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +4,43,1,8014,1,1,140.0,1,38,37,9,9,126.0,0,0,1,1,1,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,141.0,1,37,37,9,7,126.3,1,0,1,1,1,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,1 +1,44,1,8014,1,39,150.0,1,1,37,9,7,146.7,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +1,1,2,9119,0,1,140.0,1,19,19,9,9,125.7,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,12,100.0,1,1,1,4,4,100.0,0,0,1,1,1,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,1 +1,42,1,9500,0,1,111.0,1,1,3,9,10,128.2,1,0,1,1,0,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,1 +1,17,2,9773,0,1,132.0,1,19,19,9,6,120.1,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,131.0,1,4,4,2,1,120.5,0,0,1,1,1,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,44,1,9003,0,39,170.0,1,19,19,5,5,170.0,1,0,1,1,0,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,1 +1,17,1,9773,0,1,150.0,1,38,38,7,7,137.8,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,19,133.1,1,37,37,9,10,120.0,0,0,0,0,0,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9670,0,39,110.0,1,37,1,9,4,110.0,0,0,1,1,1,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,130.0,1,5,3,2,2,130.0,0,0,1,1,0,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9670,0,1,133.1,1,34,3,7,2,130.6,1,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,38,9,10,140.0,0,0,1,1,0,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,133.1,1,19,38,9,9,119.6,1,0,1,1,1,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,118.0,1,19,19,3,3,110.0,1,0,1,1,1,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,2 +1,1,1,9773,0,1,137.0,1,1,1,5,5,129.3,1,0,1,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,127.0,1,19,38,5,9,129.5,1,0,1,1,1,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,126.0,1,38,19,9,6,119.4,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,116.5,0,0,1,1,1,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,125.0,1,19,19,4,7,128.5,1,0,1,1,1,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,2 +1,43,1,9773,0,1,133.1,22,34,34,90,90,130.0,0,0,0,1,1,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,125.0,1,1,1,5,5,128.5,0,0,1,1,0,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9500,0,1,133.1,1,19,37,9,9,120.0,0,0,1,1,1,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,1 +2,39,2,9147,0,1,133.1,1,37,37,5,7,110.0,0,0,1,1,0,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,6,9500,0,1,141.0,1,1,19,1,1,126.7,1,0,1,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,146.0,1,40,43,4,4,150.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,148.0,1,1,1,4,9,129.8,0,0,1,1,1,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,2 +1,17,1,9853,0,1,133.0,1,38,38,9,9,127.4,0,0,0,1,1,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,43,1,9147,0,1,120.0,1,37,37,5,3,113.4,0,0,1,1,0,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,148.0,1,19,3,4,2,136.5,0,0,1,1,1,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,178.0,1,2,1,2,3,157.7,0,0,1,1,0,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +2,7,1,9254,0,3,130.0,1,1,3,4,3,130.0,0,0,1,1,1,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,7,1,33,0,40,120.0,1,38,37,5,6,120.0,1,0,0,0,0,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,0 +2,1,1,9147,0,1,151.0,1,38,37,9,8,132.1,1,0,1,1,1,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,0 +1,43,2,9556,0,1,120.0,1,1,19,4,3,110.2,0,0,1,1,1,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,1 +2,1,4,9500,0,1,140.0,1,1,37,4,9,128.0,0,0,1,1,1,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,1 +1,42,1,9119,0,6,120.0,1,35,35,6,6,128.2,1,0,1,1,0,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,120.0,1,37,37,9,6,120.0,1,0,1,1,1,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,2 +2,39,1,9003,0,1,133.1,1,37,37,8,7,150.0,0,0,1,1,0,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,145.0,1,19,37,4,7,148.9,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,34,34,0,0,104.0,1,0,1,1,1,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,43,1,9085,0,1,110.0,1,3,19,4,6,105.0,0,0,0,0,0,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,0 +1,17,2,9254,0,1,108.0,1,37,37,9,7,108.0,1,0,1,1,1,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,1 +4,43,1,9238,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,1,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,136.0,1,19,37,173,183,118.4,1,0,1,1,1,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,18,1,9556,0,1,140.0,1,38,37,9,9,122.8,0,0,1,1,1,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,1 +1,39,1,9119,0,1,150.0,1,3,3,4,4,150.0,1,0,1,1,0,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,141.0,1,1,1,4,10,138.9,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,1 +1,18,4,9773,0,1,130.0,1,19,19,4,4,121.3,1,0,1,1,1,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,1,130.0,1,37,37,9,6,160.0,0,0,1,1,0,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,149.0,1,37,37,9,9,136.0,0,0,1,1,1,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,151.0,1,37,1,4,10,138.4,0,0,1,1,1,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,2 +1,39,1,9254,0,1,130.0,1,37,37,9,9,126.5,0,0,1,1,0,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,143.0,1,19,37,7,7,127.0,1,0,1,1,1,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,1 +2,57,1,9991,1,1,133.1,41,38,37,4,6,100.0,0,0,1,1,1,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,138.0,1,37,37,9,9,135.9,1,0,1,1,1,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,2 +1,43,1,8014,1,1,145.7,22,37,37,9,9,145.7,1,0,1,1,1,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,1 +4,39,1,9773,0,19,133.1,1,37,37,9,1,117.5,0,0,1,1,1,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,17,3,9238,0,1,118.0,1,1,19,4,10,112.4,1,0,1,1,1,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,8014,1,1,133.1,1,37,37,9,7,162.5,0,0,1,1,0,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,1 +1,1,3,9254,0,1,115.0,1,1,1,3,3,117.5,1,0,1,1,1,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,133.0,1,37,38,9,9,130.2,1,0,1,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,152.0,1,2,22,4,3,146.1,1,0,1,1,1,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +2,39,1,9085,0,12,133.1,1,1,39,5,3,140.0,1,0,0,0,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9003,0,1,140.0,1,38,1,9,4,138.3,0,0,1,1,0,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,130.0,1,38,37,9,6,133.9,0,0,1,1,0,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,140.0,1,37,37,9,9,142.5,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,120.0,1,38,1,9,3,118.3,1,0,1,1,1,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,117.0,1,1,19,4,7,113.5,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,141.0,1,19,1,7,3,128.8,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9147,0,1,125.0,1,3,38,2,10,118.7,1,0,1,1,1,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,116.0,1,37,1,5,3,124.8,1,0,1,1,0,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,120.0,1,36,37,0,0,126.7,1,0,1,1,0,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,1 +1,17,4,9853,0,1,140.0,1,19,38,4,1,128.5,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,1,1,3,10,130.0,0,0,1,1,0,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,136.0,1,3,37,2,8,121.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,154.0,1,37,37,9,9,149.5,1,0,1,1,1,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,138.0,1,19,38,5,8,133.5,0,0,1,1,1,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,128.0,1,1,37,4,3,117.9,1,0,1,1,1,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,1 +1,43,1,9130,0,1,150.0,1,3,3,3,4,150.0,1,0,1,1,1,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,110.0,1,19,38,3,5,117.4,1,0,1,1,1,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,135.0,1,37,38,9,6,122.1,1,0,1,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9003,0,1,140.0,1,37,37,9,6,104.8,0,0,1,1,1,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,143.0,1,37,37,9,7,131.8,1,0,1,1,1,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,142.0,1,1,1,3,3,133.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,141.0,1,1,19,5,10,127.0,0,0,1,1,1,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,1 +3,1,2,9085,0,1,135.0,1,19,1,4,4,129.4,1,0,1,1,1,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,39,1,9254,0,1,133.1,1,19,19,4,7,123.0,0,0,0,0,1,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,0 +1,17,2,9500,0,1,131.0,1,19,37,9,7,129.8,1,0,1,1,1,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,1 +1,39,1,9670,0,9,133.1,1,6,22,3,3,120.0,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,131.0,1,37,37,3,3,131.7,1,0,1,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,137.0,1,19,19,5,5,134.6,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,131.0,1,1,1,4,10,129.3,0,0,1,1,1,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,140.0,1,1,37,141,192,129.7,0,0,1,1,1,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,140.0,1,37,37,9,9,124.6,0,0,1,1,1,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,138.0,1,37,37,5,9,125.1,1,1,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,0 +1,2,1,9147,0,1,150.0,1,37,37,9,9,122.0,1,0,1,1,1,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,135.0,1,3,1,4,4,136.1,1,0,1,1,0,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,2 +1,39,1,9991,1,1,150.0,1,1,19,4,8,123.0,0,0,1,1,0,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,141.0,1,19,37,5,8,130.2,0,0,1,1,0,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,106.0,1,37,37,9,9,108.0,1,0,0,1,1,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,19,133.1,1,37,38,9,7,100.5,1,0,1,1,0,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,2 +1,43,1,9254,0,1,142.0,1,38,38,9,9,125.9,0,0,1,1,1,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,150.0,1,1,37,9,7,130.2,0,0,1,1,1,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,1 +4,39,1,9670,0,1,140.0,1,2,1,3,9,170.0,0,0,0,0,0,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9773,0,1,119.0,1,38,19,9,9,118.3,0,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,117.0,1,34,34,0,0,109.3,0,0,1,1,1,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,120.0,1,34,34,99,99,111.6,0,0,0,1,0,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,2 +1,39,1,9119,0,1,139.0,1,19,19,9,7,110.3,0,0,0,1,0,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,2 +1,43,1,9147,0,1,123.0,1,3,19,9,9,113.2,0,0,1,1,1,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,2 +1,43,1,9991,1,1,120.0,1,38,38,9,7,141.0,0,0,1,1,0,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,1 +1,1,1,9130,0,1,151.0,1,3,1,2,4,151.0,1,0,1,1,1,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,130.0,1,37,37,9,6,110.0,1,0,1,1,1,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,1 +1,43,1,9853,0,1,130.0,1,2,39,2,5,124.6,0,0,1,1,0,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,138.0,1,1,1,4,3,141.5,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,120.0,1,37,37,9,5,100.0,0,0,1,1,1,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9991,1,39,150.0,1,37,37,6,6,150.0,0,0,1,1,1,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,2 +2,39,1,9085,0,19,133.1,1,38,38,4,7,128.2,0,0,1,1,1,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.0,41,19,19,9,9,119.7,1,0,0,1,1,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,17,3,9085,0,1,128.0,1,1,19,4,90,124.2,0,0,1,0,1,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,120.0,1,1,1,9,9,129.1,1,0,1,1,0,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9773,0,1,125.0,1,19,19,9,7,129.6,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,137.0,1,40,19,2,9,130.7,1,0,1,1,1,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,0 +1,51,1,9147,0,1,116.0,1,3,3,2,2,115.2,0,0,0,1,0,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,17,5,9853,0,1,132.0,1,12,12,4,4,123.3,1,0,1,1,1,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,0 +1,7,1,9991,1,3,130.0,1,37,37,9,9,130.0,0,0,1,1,0,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,135.0,1,19,38,9,5,136.8,1,0,1,1,1,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,137.0,1,1,1,4,7,134.6,1,0,1,1,0,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,4,171,0,1,133.1,1,38,38,9,9,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,133.1,1,19,37,7,8,120.0,0,0,0,0,1,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,140.0,1,1,19,9,7,127.0,1,0,1,1,1,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,1 +1,18,1,9500,0,1,124.0,1,38,37,9,7,119.3,1,0,1,1,1,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,3,19,2,4,150.0,1,0,1,1,1,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,8014,1,19,133.1,1,3,19,90,90,123.5,0,0,1,1,1,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9853,0,1,133.1,1,37,37,5,5,116.5,0,0,1,1,1,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,0 +1,18,6,9500,0,1,144.0,1,1,1,3,6,130.8,1,0,1,1,1,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9670,0,1,151.0,1,19,19,1,1,100.0,0,0,0,1,1,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,125.0,1,1,19,4,6,115.2,0,1,1,1,1,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,37,38,4,9,110.0,0,0,0,0,1,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,133.1,1,19,19,5,5,108.5,1,0,1,1,1,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,130.0,1,37,11,90,90,122.6,0,0,1,1,1,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,113.0,1,19,37,9,9,118.6,1,0,1,1,1,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,140.0,6,2,3,5,2,124.3,1,0,1,1,1,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,2 +1,1,4,9119,0,1,111.0,1,37,37,9,5,107.5,1,0,1,1,0,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,143.0,1,19,38,9,9,133.4,1,0,1,1,1,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,1 +1,17,1,9773,0,1,141.0,1,2,3,2,2,133.7,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,151.0,41,3,3,2,5,161.9,1,0,1,1,1,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,43,1,33,0,1,143.0,1,37,1,9,10,121.2,1,0,1,1,0,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,1,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,141.0,1,1,19,8,7,128.8,1,0,1,1,1,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,2 +1,1,1,9238,0,1,115.0,1,19,38,7,7,108.7,0,0,1,1,1,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,114.0,1,1,1,4,0,108.8,1,0,1,1,1,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,2 +1,1,2,9853,0,1,112.0,1,37,37,191,182,106.1,1,0,0,1,1,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,2,9085,0,1,157.0,1,3,38,4,6,142.3,0,0,1,1,1,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,1 +2,44,1,8014,1,39,160.0,1,37,19,9,10,155.9,0,0,1,1,1,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,1 +1,1,4,171,0,1,137.0,1,1,38,4,8,141.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,144.0,1,1,37,9,9,126.5,1,0,1,1,1,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,145.0,1,1,1,4,10,131.4,0,0,1,1,1,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,115.0,1,1,1,9,4,109.1,1,0,0,0,1,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,170.0,1,37,37,0,0,150.8,1,0,1,1,1,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,0 +1,5,3,9070,0,1,157.0,1,3,1,9,6,138.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,1 +1,43,2,9238,0,1,129.0,1,34,30,0,5,118.9,1,0,1,1,0,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,5,9853,0,1,141.0,1,3,19,2,7,130.9,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,1 +4,39,1,9991,1,1,133.1,1,37,37,9,9,130.4,0,0,1,1,1,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,130.0,1,19,38,9,9,126.9,0,0,0,1,1,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,136.0,1,19,1,4,3,125.2,1,0,1,1,1,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,37,9,9,140.2,0,0,1,1,0,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,132.0,1,37,38,9,5,120.8,0,0,1,1,1,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,150.0,1,19,37,6,6,150.0,0,0,0,1,1,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,1 +2,42,1,9991,1,1,130.0,1,3,2,2,2,130.0,0,0,1,1,0,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,2 +4,39,1,8014,1,1,133.1,1,38,37,5,7,144.5,0,0,1,1,1,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,2,9773,0,1,150.0,41,1,37,9,7,130.8,0,0,1,1,1,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,1 +2,1,1,8014,1,1,151.0,1,37,37,9,9,152.4,0,0,1,1,1,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,1 +6,39,1,9500,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,0 +2,43,1,9670,0,1,100.0,1,34,34,0,0,128.2,0,0,1,1,0,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,148.0,1,1,19,3,3,131.7,1,0,1,1,1,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,142.0,1,19,19,7,7,142.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,127.0,1,1,38,4,7,125.6,0,0,0,1,1,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,146.0,1,38,38,9,7,134.1,1,0,1,1,0,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,0 +1,17,1,9670,0,1,115.0,1,1,1,4,4,109.1,1,0,1,1,1,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,2 +1,1,2,9773,0,1,148.0,1,1,19,9,9,141.7,0,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,116.0,1,37,37,0,5,114.3,1,0,1,1,1,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,139.0,1,38,19,5,7,130.6,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,1 +1,1,6,9147,0,1,128.0,1,37,37,9,9,116.5,0,0,1,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,2 +1,39,1,9130,0,3,150.0,1,3,1,90,90,150.0,1,0,1,1,1,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9670,0,1,122.0,1,1,19,4,4,116.1,0,0,1,1,0,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,2 +1,39,1,9119,0,1,100.0,1,37,37,9,8,160.0,0,0,0,0,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9254,0,1,128.0,1,19,1,7,9,121.7,1,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,143.0,1,37,38,7,7,133.8,1,0,1,1,1,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,107.0,1,38,38,7,7,103.5,1,0,1,1,1,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,1 +1,39,2,9147,0,1,143.0,1,19,5,4,1,100.0,1,0,1,1,0,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,140.0,0,0,0,0,1,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,160.0,1,1,1,5,4,160.0,1,1,1,0,0,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,0 +2,39,1,9500,0,19,133.1,1,38,38,2,10,120.0,0,0,1,1,1,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,0 +1,5,2,9853,0,1,122.0,1,19,19,4,5,112.6,1,0,1,1,1,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,3,9500,0,1,137.0,1,19,37,7,7,126.7,1,0,1,1,1,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,1 +1,7,1,9070,0,40,120.0,1,1,19,3,9,120.0,1,0,1,1,1,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,157.0,1,38,3,5,2,141.4,0,0,1,1,1,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,1 +2,1,2,8014,1,1,110.0,1,37,1,9,10,108.7,1,0,1,1,1,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,129.0,1,19,37,7,6,120.0,1,0,1,1,1,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,108.0,1,19,1,4,3,111.9,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9070,0,12,110.0,1,37,38,5,10,130.0,0,0,0,0,0,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,122.0,1,1,1,193,101,126.2,0,0,1,1,1,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,4,4,3,3,143.6,0,0,0,1,0,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,2 +1,7,1,9119,0,3,130.0,1,34,34,90,90,130.0,0,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,8014,1,39,120.0,1,19,37,7,6,121.8,1,0,1,1,1,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,142.0,1,37,38,9,9,137.5,1,0,1,1,0,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,138.0,1,3,19,2,4,131.0,1,0,1,1,0,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,0 +1,17,2,9853,0,1,125.0,1,1,19,5,5,119.4,1,0,1,1,1,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,137.0,1,1,1,5,4,131.1,1,0,1,1,1,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,133.0,1,38,38,9,9,128.1,1,0,1,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,0 +4,39,1,9991,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,1,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,17,1,9130,0,1,138.0,1,2,19,2,6,126.3,1,0,1,1,1,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,2 +1,17,4,9500,0,1,135.0,1,1,1,4,4,127.0,1,0,1,1,1,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,140.0,1,4,3,3,3,127.8,0,0,1,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,1 +1,5,1,9147,0,1,126.0,1,19,38,5,6,117.3,1,0,1,1,1,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,2 +1,39,1,9670,0,1,133.1,1,1,19,4,9,140.0,0,0,1,1,0,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,126.0,1,38,38,9,8,118.8,1,0,1,1,1,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,1 +2,42,1,9147,0,1,133.1,1,37,37,9,9,115.8,0,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,126.0,1,1,37,7,9,132.7,0,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,133.0,1,19,19,5,7,123.6,0,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +1,17,4,9556,0,1,135.0,1,38,37,3,7,129.0,1,0,1,1,1,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,110.0,1,37,37,9,9,107.6,1,0,1,1,0,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,2 +1,17,4,9147,0,1,135.0,1,19,1,0,4,128.7,1,0,1,1,0,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +2,1,1,8014,1,1,150.0,1,1,37,4,7,139.9,1,0,1,1,1,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,116.0,1,1,38,4,3,114.6,1,0,1,1,1,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,121.0,1,19,37,1,3,131.5,0,0,1,1,1,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,100.0,1,19,1,1,90,114.0,1,0,0,0,1,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,146.0,1,19,37,5,8,135.8,1,0,1,1,1,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,1 +1,44,1,9119,0,39,140.0,1,1,19,4,5,140.0,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9670,0,1,136.0,1,19,19,5,5,122.0,0,0,0,0,1,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,0 +2,39,1,9003,0,1,133.1,1,19,19,4,4,107.5,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9070,0,1,164.0,1,38,38,9,7,165.8,1,0,1,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,154.0,1,38,38,9,9,133.4,1,0,1,1,1,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,127.0,1,19,37,7,7,121.5,1,0,1,1,0,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,2 +1,43,6,9238,0,1,129.0,1,34,34,0,0,125.2,0,0,1,1,1,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,125.0,1,19,1,4,5,122.6,1,1,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,2 +1,17,1,9070,0,1,136.0,1,38,19,7,7,121.7,1,0,1,1,1,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,131.0,1,38,1,7,4,128.3,1,0,1,1,1,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,1 +1,1,4,171,0,1,132.0,1,1,19,4,5,138.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9254,0,1,115.0,1,12,1,9,3,108.7,1,0,1,1,1,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,131.0,1,1,37,3,7,120.2,0,0,1,1,1,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,134.0,1,1,1,4,9,124.2,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,142.0,1,19,1,9,1,132.6,0,0,1,1,1,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,2,1,3,6,150.0,1,0,1,1,0,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,1 +1,39,1,9254,0,1,130.0,1,19,38,9,7,113.5,0,0,1,1,1,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,135.0,1,2,1,2,8,126.6,0,0,1,1,1,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,1 +1,39,1,9254,0,12,133.1,1,37,37,5,7,119.3,1,0,1,1,0,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,2 +1,1,1,9130,0,1,110.0,1,3,19,2,9,105.5,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9130,0,1,134.0,41,1,19,5,5,125.6,1,0,1,1,1,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,151.0,2,1,1,5,9,146.5,0,0,1,1,1,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,133.0,1,1,3,3,3,135.8,1,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,7,1,9070,0,3,140.0,1,37,2,9,3,140.0,0,0,1,0,1,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,147.0,1,37,19,9,5,133.7,1,0,1,1,1,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,2 +1,51,1,9500,0,1,127.0,1,19,1,5,9,150.0,0,0,1,1,1,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,143.0,1,1,37,5,9,126.6,0,0,0,0,1,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,160.0,1,37,38,9,9,160.0,0,0,0,1,1,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,1 +4,39,1,8014,1,19,133.1,1,34,34,0,0,100.0,0,0,1,1,1,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,0 +4,43,1,9853,0,1,133.1,100,19,22,90,90,100.0,0,0,1,1,1,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,2,120.0,1,37,37,9,8,120.0,0,0,1,1,1,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,2 +1,39,1,9130,0,40,129.0,1,3,3,2,2,155.3,1,0,1,1,1,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,150.0,1,38,37,9,9,150.0,1,0,1,1,0,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +1,44,1,9130,0,39,160.0,1,1,37,3,3,160.0,1,0,0,0,1,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,0 +2,39,1,9003,0,1,133.1,1,1,19,4,4,120.0,0,0,0,0,0,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,115.0,1,19,38,9,9,108.0,0,0,1,1,1,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,134.0,1,1,19,4,5,126.0,0,0,1,1,1,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,135.0,1,38,38,5,8,133.3,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,5,1,9670,0,1,135.0,1,1,12,4,4,140.3,1,0,1,1,1,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,122.0,1,19,1,4,8,135.8,0,0,1,1,1,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,19,19,3,9,112.6,1,0,1,1,1,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,4,9773,0,1,147.0,1,1,1,4,5,139.7,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,140.0,1,19,19,4,5,140.0,1,0,1,1,1,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,130.0,1,12,12,9,9,126.1,0,0,1,1,0,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,0 +1,43,2,9147,0,1,130.0,1,34,37,9,9,118.5,1,0,1,1,0,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,1 +1,17,4,9500,0,1,138.0,1,4,1,2,1,133.0,1,0,1,1,1,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,138.0,1,37,37,194,171,131.0,1,0,1,1,1,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,19,5,8,147.3,0,0,1,1,1,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,1 +1,1,6,9500,0,1,149.0,1,1,1,4,9,133.0,1,0,1,1,1,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,1 +1,16,6,9773,0,1,136.0,1,38,14,0,0,129.7,1,0,1,1,1,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,130.0,1,1,34,9,9,124.8,1,0,1,1,1,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,111.0,1,1,1,3,3,112.4,1,0,1,1,0,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,121.0,1,1,19,4,7,135.4,1,0,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,1 +1,1,1,9556,0,1,135.0,1,37,38,7,9,125.8,0,0,1,1,1,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,136.0,1,37,19,5,8,129.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,4,9670,0,1,110.0,1,1,37,7,7,111.1,1,0,1,0,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,128.0,1,38,38,5,5,118.6,1,0,1,1,1,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,1 +2,39,1,9500,0,19,133.1,1,37,38,9,10,120.9,1,0,1,1,1,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,0 +1,5,3,9085,0,1,143.0,1,37,37,0,90,159.1,0,0,0,1,1,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,0 +4,39,1,9238,0,1,120.0,1,37,37,9,9,125.5,1,0,1,1,1,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,126.0,1,3,1,2,5,116.9,1,1,1,1,1,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,2 +1,16,1,9556,0,1,137.0,1,37,37,9,7,122.7,1,0,1,1,1,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,136.0,1,1,1,9,9,123.8,1,0,1,1,1,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +4,39,1,9130,0,1,133.1,1,3,1,5,5,110.0,1,0,1,1,1,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,0 +1,17,4,9085,0,1,138.0,1,19,36,90,7,134.9,1,0,1,1,1,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,3,9070,0,1,130.0,1,1,4,4,2,131.4,0,0,1,1,0,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,1 +2,42,1,9853,0,1,133.1,1,37,37,4,7,100.0,0,0,1,1,1,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,115.0,1,1,1,9,9,134.3,1,0,1,1,0,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,108.0,1,1,38,5,8,105.9,0,0,1,1,1,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,2 +1,39,1,9991,1,1,120.0,1,19,37,5,5,128.2,0,0,1,0,0,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +5,7,1,9130,0,3,160.0,1,19,38,9,6,160.0,0,0,1,0,1,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,0 +1,1,1,9130,0,1,121.0,1,3,19,2,9,115.4,1,0,1,1,0,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..1536cf99ff8a3aaf05d2bd6b84a42986911aea5d --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/train.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,0,1,127.0,1,1,1,9,6,110.0,0,0,0,0,0,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,0 +1,17,2,9773,0,1,122.0,1,38,37,5,3,119.6,1,0,1,1,1,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,1 +1,1,6,9147,0,1,121.0,1,3,19,4,5,116.8,0,0,1,1,0,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,158.0,1,38,37,5,5,140.2,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,19,19,9,7,131.7,1,0,1,1,1,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,1 +1,1,3,9085,0,1,133.0,1,1,38,9,90,128.2,0,0,1,1,1,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,122.0,1,1,19,9,9,120.3,1,0,1,1,0,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,0 +1,43,1,9119,0,1,130.0,1,1,1,9,2,128.0,0,0,0,0,0,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,2 +1,17,3,9254,0,1,122.0,1,1,1,4,4,126.6,0,0,1,0,1,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,1,100.0,1,37,37,9,9,133.0,0,0,1,1,0,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,0 +1,44,1,9119,0,39,130.0,1,19,3,3,4,130.0,0,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9085,0,39,140.0,1,1,1,4,7,140.0,1,0,0,1,1,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,0 +1,17,2,9070,0,1,130.0,1,37,37,9,9,123.7,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +4,1,1,9991,1,1,130.0,1,37,37,9,9,118.1,0,0,0,0,1,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9500,0,1,190.0,108,3,2,122,4,190.0,1,0,1,1,1,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,102.0,1,1,19,9,5,100.6,1,0,1,1,1,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,1 +1,7,1,9500,0,3,120.0,1,19,3,4,2,120.0,1,0,1,1,1,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,130.0,1,38,19,9,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,111.0,1,3,4,4,3,108.2,1,0,1,1,1,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,39,1,9119,0,1,160.0,1,1,38,4,7,112.0,0,0,1,0,0,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,149.0,1,19,1,4,4,134.8,0,0,1,1,1,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,135.0,1,19,38,3,9,136.1,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,2,9500,0,1,120.0,1,37,34,90,0,121.5,0,0,0,1,1,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,1 +1,1,3,171,0,1,147.0,1,12,19,9,3,151.6,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,128.0,1,37,37,9,9,123.5,1,0,1,1,0,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,1,2,9070,0,1,129.0,1,1,1,4,9,132.9,1,0,1,1,0,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,2 +1,17,2,9500,0,1,138.0,1,1,38,5,8,132.8,1,0,1,1,1,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,134.0,1,19,37,9,9,131.6,1,1,1,1,1,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,130.0,1,37,37,9,9,122.0,1,0,1,1,1,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,37,37,9,10,130.0,0,0,0,0,1,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,2,9085,0,1,130.0,1,37,19,9,8,129.0,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,2 +1,17,5,9119,0,1,126.0,1,38,38,5,9,116.9,1,0,0,1,0,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,37,38,5,6,140.0,1,0,1,1,1,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,2 +1,18,4,9853,0,1,123.0,1,19,38,4,10,123.7,1,0,1,1,1,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,118.0,1,4,3,2,3,110.7,1,0,1,1,1,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,1 +1,39,1,8014,1,2,130.0,1,37,37,5,7,147.5,0,0,1,1,1,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,146.0,1,4,1,2,3,140.0,1,0,1,1,1,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,1 +1,44,1,9003,0,39,160.0,1,37,38,9,7,160.0,0,0,1,1,1,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,7,0,9003,0,3,130.0,1,1,37,4,9,130.0,1,0,1,1,1,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,19,133.1,1,34,34,99,99,96.0,0,0,1,1,0,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,136.0,1,37,37,7,7,140.9,1,0,1,1,0,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,1,9853,0,1,127.0,1,1,1,5,7,121.4,1,0,1,1,1,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,134.0,1,3,19,2,10,128.8,0,0,1,1,1,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,140.0,1,1,3,4,2,142.8,1,0,1,0,1,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,126.3,0,0,1,1,0,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.1,1,19,1,1,3,101.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9147,0,1,122.0,1,1,38,1,7,118.9,0,0,1,1,0,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,107.0,1,19,37,7,7,103.5,1,0,1,1,1,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,156.0,1,38,37,9,9,156.3,0,0,1,1,0,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,128.0,1,1,1,9,9,120.0,1,0,1,1,1,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,0 +1,17,2,9119,0,1,127.0,1,19,1,9,10,121.1,1,0,1,1,0,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,2 +1,39,1,9003,0,4,160.0,1,3,3,4,2,180.4,0,0,0,1,0,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,0 +1,43,1,9670,0,1,132.0,1,3,19,4,8,120.5,0,0,1,1,0,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,134.0,1,1,19,4,5,122.5,1,0,1,1,1,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,142.0,1,1,19,4,4,128.0,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,133.0,1,2,37,9,7,125.7,1,0,1,1,0,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,135.0,1,1,3,4,3,133.3,0,0,1,1,1,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,3,140.0,1,37,12,9,4,140.0,0,0,1,0,1,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9500,0,1,141.0,1,2,38,2,10,135.4,1,0,1,1,1,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,2 +2,43,1,9991,1,2,120.0,1,37,37,9,9,120.0,0,0,1,0,1,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,147.0,1,1,19,4,4,137.2,0,0,1,0,1,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9085,0,1,120.0,1,37,38,9,9,111.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,141.0,1,3,1,9,9,124.3,0,0,1,1,1,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,2 +1,18,1,9773,0,1,125.0,1,1,1,4,7,121.5,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,140.0,1,37,37,5,5,150.0,0,0,0,1,1,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,112.0,1,1,37,4,9,106.8,1,0,1,1,1,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,168.0,1,38,37,9,8,155.1,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,15,1,9119,0,1,133.1,41,2,2,2,2,100.0,0,0,0,1,0,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,2 +2,1,1,8014,1,1,121.0,1,37,37,9,9,114.4,1,0,1,1,1,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,136.0,1,1,38,4,5,132.2,0,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,1 +1,16,1,9070,0,1,145.0,1,1,1,3,3,146.1,1,0,1,1,1,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,2 +1,7,1,9085,0,40,140.0,1,5,3,2,2,140.0,0,0,0,1,0,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,0 +1,1,3,9085,0,1,126.0,1,38,1,9,9,132.0,1,0,1,1,1,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,146.0,1,1,37,9,9,129.3,0,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,131.0,1,37,37,9,6,127.2,0,0,1,1,1,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,139.0,1,37,37,9,9,124.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,133.1,1,37,1,5,4,151.2,0,0,1,1,0,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,170.0,1,38,19,9,2,160.6,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,131.0,1,37,37,9,6,130.7,0,0,0,1,1,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,2 +1,1,6,9500,0,1,122.0,1,19,37,3,5,116.6,1,0,0,1,0,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,1 +1,17,3,171,0,1,147.0,1,19,1,5,4,137.6,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,9,120.0,0,0,1,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,5,1,9130,0,1,157.0,1,5,43,2,2,149.7,1,0,1,1,1,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9003,0,39,160.0,1,3,1,2,6,160.0,1,0,1,0,1,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,140.0,1,9,19,4,4,131.2,0,0,1,1,0,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,1,130.0,1,1,3,2,6,110.0,0,0,1,1,0,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,1 +1,39,1,171,0,1,147.0,1,37,38,175,193,133.3,0,0,1,0,1,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,148.0,1,38,19,4,9,134.7,1,0,1,1,1,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,130.0,1,19,1,9,7,130.4,1,0,1,1,1,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,133.1,1,1,37,4,9,96.0,1,0,1,1,1,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,2 +1,39,1,9991,1,12,120.0,1,37,38,5,5,155.7,0,0,1,1,0,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,117.0,1,3,1,3,3,113.2,0,1,1,1,1,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,1 +1,17,2,9853,0,1,150.0,1,38,19,5,5,142.0,1,0,1,1,1,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,144.0,1,1,19,9,4,130.8,1,0,1,1,1,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,1 +1,17,4,9254,0,1,118.0,1,38,37,5,7,111.7,1,0,1,1,0,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,0 +1,1,6,9500,0,1,141.0,1,2,1,4,4,136.3,1,0,1,1,1,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,1 +2,39,1,9003,0,1,120.0,1,2,2,1,4,100.0,0,0,1,1,0,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,141.0,1,4,3,2,1,136.3,1,0,1,1,0,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,120.0,1,1,19,5,4,140.4,0,0,1,1,1,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,154.0,1,1,37,4,9,134.8,1,0,1,1,1,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,100.0,1,19,19,5,5,101.8,1,0,1,1,1,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,2 +1,17,3,9670,0,1,137.0,1,1,38,4,7,138.4,0,0,1,1,0,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,152.0,1,37,37,7,5,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,118.0,1,37,1,9,7,117.0,1,0,1,0,0,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,140.0,1,12,3,4,3,118.0,1,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9070,0,1,133.0,1,1,2,9,2,128.8,0,0,1,1,0,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,1 +1,39,1,171,0,1,140.0,1,37,37,9,9,100.8,0,1,1,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9070,0,42,130.0,1,40,19,3,5,130.0,1,0,1,0,1,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,143.0,1,1,19,3,3,133.9,0,0,1,1,1,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,1 +2,1,5,9500,0,1,130.0,1,1,19,4,4,122.3,0,0,1,1,1,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,9,9,125.0,1,0,1,1,1,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,120.0,1,37,37,7,8,120.0,0,0,1,1,1,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,1 +1,1,2,9147,0,1,125.0,1,1,19,4,9,124.0,1,0,1,1,1,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,131.0,1,38,19,9,9,130.0,1,0,1,1,0,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,132.0,1,1,1,4,1,119.4,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9500,0,1,135.0,1,19,19,7,7,128.0,1,0,1,1,1,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,1 +1,39,1,9500,0,19,133.1,1,38,38,9,9,114.8,0,0,1,1,1,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,130.0,1,2,2,6,6,130.0,0,0,1,0,0,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,112.0,1,19,38,9,10,112.0,1,0,1,1,1,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,2 +1,39,1,9254,0,1,170.0,1,37,37,4,6,138.3,0,0,1,1,1,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,1 +1,39,1,9147,0,19,100.0,1,38,19,7,9,132.0,0,0,0,0,0,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,133.1,1,19,19,9,9,119.0,1,0,1,0,1,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,0 +1,17,2,9085,0,1,138.0,1,37,37,9,7,123.3,1,0,1,1,1,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,2 +1,39,1,8014,1,1,133.1,1,37,37,9,9,112.5,0,0,1,1,1,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,1 +1,51,1,9670,0,1,140.0,1,12,5,3,3,126.6,0,0,1,1,0,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,1 +1,51,1,9085,0,1,125.0,1,1,1,9,4,120.0,0,0,1,1,1,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,151.0,1,1,1,4,3,132.3,0,0,1,1,0,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,1 +1,43,1,9556,0,1,130.0,1,1,37,5,5,128.0,1,0,1,1,0,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,1 +1,17,6,9670,0,1,113.0,1,4,1,3,10,112.3,0,0,1,1,1,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,17,1,9773,0,1,125.0,1,37,37,5,7,120.1,0,0,1,1,1,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,1 +1,53,1,171,0,42,130.0,1,1,19,9,9,130.0,1,0,1,0,0,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,1 +1,51,1,33,0,1,121.0,1,19,37,5,7,118.6,0,0,1,1,1,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,131.0,1,37,37,90,90,137.0,0,0,1,1,1,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,150.0,1,19,1,4,4,137.8,0,0,1,1,1,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,1,140.0,1,37,37,5,6,128.5,0,0,1,1,1,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,130.0,1,37,2,9,4,126.5,1,0,1,0,0,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,0 +1,1,2,9238,0,1,147.0,1,19,38,9,8,135.8,1,0,1,1,1,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,106.0,1,19,37,9,7,109.5,1,0,1,1,1,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,110.0,1,37,37,9,10,140.0,0,0,0,0,0,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,105.0,1,19,37,8,8,102.6,0,1,1,1,1,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,2 +1,17,6,9147,0,1,133.0,1,19,38,5,6,123.2,1,0,1,1,0,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,2 +1,43,1,9670,0,1,160.0,1,34,34,99,99,100.1,0,0,1,0,0,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,0 +4,7,1,9500,0,40,130.0,1,37,37,3,3,130.0,1,0,1,1,1,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,2 +1,43,2,9853,0,1,118.0,1,19,1,5,4,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,2 +1,43,1,8014,1,1,117.0,1,37,37,9,9,100.0,0,0,1,1,1,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,0 +1,53,1,9238,0,42,130.0,1,1,19,5,5,128.3,0,0,0,0,1,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,0 +1,43,1,9130,0,1,127.0,1,19,38,4,5,120.7,1,0,0,1,1,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,38,37,9,4,150.0,1,0,1,1,0,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,1 +1,39,1,9238,0,1,133.1,1,37,29,0,4,120.5,0,0,1,0,0,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,121.0,1,37,19,9,9,141.4,0,0,0,0,0,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,120.0,1,38,37,9,7,108.0,0,0,1,1,0,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,153.0,6,37,37,9,9,131.8,1,0,1,1,1,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,153.0,1,38,19,9,5,138.5,1,0,1,1,1,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,1 +1,17,2,9254,0,1,107.0,1,12,19,5,5,102.8,1,0,1,1,1,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9238,0,1,135.0,1,1,19,7,7,126.6,1,0,1,1,1,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,124.0,1,1,19,123,103,113.9,1,1,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,144.0,1,37,37,7,9,126.8,1,0,0,0,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9556,0,1,120.0,1,37,37,9,4,150.0,0,0,1,0,1,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,0 +1,43,3,171,0,1,120.0,1,37,37,9,9,143.3,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,140.0,1,38,19,4,10,122.3,1,0,1,1,1,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,157.0,1,3,38,1,5,136.7,1,0,1,1,1,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,2 +2,39,1,9991,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,150.0,1,3,1,2,8,153.8,1,0,1,1,1,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,130.0,1,2,1,2,7,126.2,1,0,1,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,142.0,1,37,37,9,9,132.9,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,43,1,9238,0,1,124.0,1,1,1,3,1,118.8,1,0,0,0,1,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,1,19,4,5,100.0,0,0,1,1,0,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,2 +1,17,5,9238,0,1,122.0,1,37,37,7,5,112.9,1,0,1,1,1,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,97.5,1,0,1,1,0,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,171,0,1,140.0,1,1,3,3,3,138.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,132.0,1,1,1,3,3,119.4,1,0,1,1,1,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,1 +1,42,1,9500,0,1,100.0,1,3,19,2,8,153.0,0,0,1,1,0,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,2 +1,1,1,9254,0,1,123.0,1,38,37,5,5,125.1,0,0,1,1,1,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9130,0,1,133.0,1,38,38,5,8,120.4,1,0,1,1,1,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,1 +1,17,4,9773,0,1,129.0,1,3,1,2,7,132.5,1,0,1,1,0,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,2 +4,39,1,9003,0,19,133.1,1,37,37,9,9,110.0,0,0,1,1,0,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,133.0,1,3,1,9,3,123.2,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,137.0,1,38,19,9,5,129.3,1,0,1,1,1,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,123.0,1,3,1,2,9,127.6,1,0,1,1,0,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,2 +2,39,1,9085,0,19,133.1,1,19,19,9,5,101.0,1,0,1,1,1,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,116.0,1,19,19,7,7,111.1,1,0,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,1,1,9070,0,1,147.0,1,3,1,2,3,149.8,1,0,1,1,0,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,100.0,1,37,37,7,9,100.0,1,0,1,1,1,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,141.0,1,38,38,7,7,132.5,1,0,1,1,1,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,168.0,1,1,1,5,5,161.0,1,0,1,1,0,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,0 +5,39,1,9003,0,19,133.1,1,19,1,9,9,119.4,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,114.0,1,1,19,9,9,111.9,1,0,1,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,2 +1,39,1,9500,0,1,130.0,1,37,37,3,7,143.8,0,0,1,1,0,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,133.1,1,19,19,9,7,100.0,0,0,1,1,0,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,0 +1,17,3,9853,0,1,132.0,1,34,34,0,0,131.3,1,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,157.0,1,37,37,9,9,143.0,0,0,1,1,0,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,1 +5,42,1,9254,0,2,120.0,1,37,37,4,9,120.0,0,0,1,1,1,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,6,1,1,192,144,129.8,0,0,1,1,0,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,2 +1,1,2,9500,0,1,139.0,1,38,37,9,7,125.0,1,0,1,1,1,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,1 +1,17,4,9238,0,1,133.1,1,1,19,9,5,95.0,1,0,1,1,1,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,180.0,1,37,37,7,4,153.8,1,0,1,1,1,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,4,9773,0,1,133.0,1,1,19,9,9,119.7,1,0,1,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,1 +1,17,5,9500,0,1,124.0,1,3,38,2,1,119.8,0,0,1,1,0,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,133.1,1,37,37,9,9,148.2,1,0,0,1,1,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,2 +2,39,1,9991,1,19,133.1,1,37,37,9,7,114.8,0,0,0,1,0,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,133.1,1,1,19,4,8,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,180.0,41,37,37,9,9,152.7,1,0,0,0,0,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9085,0,1,130.0,1,19,19,90,7,115.8,0,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,161.0,1,38,37,5,5,154.4,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,148.0,1,1,38,4,5,148.7,0,0,1,1,0,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,19,38,9,7,131.3,1,0,0,1,1,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,122.0,1,1,1,4,9,112.9,1,0,1,1,1,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,1,4,9500,0,1,142.0,1,38,38,9,8,129.8,1,0,1,1,1,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,1 +3,39,1,9003,0,1,170.0,1,1,37,6,6,170.0,0,0,0,1,1,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,2 +1,1,2,9147,0,1,130.0,1,37,37,9,9,117.8,0,0,1,1,1,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9147,0,1,140.0,1,37,37,9,7,132.3,1,0,1,1,1,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,132.0,1,2,1,9,9,126.4,1,1,1,1,1,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,140.0,1,1,3,9,2,140.0,1,0,1,1,1,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,117.0,1,1,19,4,4,109.3,0,0,1,1,0,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,176.0,1,3,38,3,7,169.7,0,0,1,1,1,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,133.1,1,37,38,7,7,98.0,1,0,1,1,0,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,136.0,1,3,3,2,2,128.7,0,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,12,38,4,9,107.0,1,0,1,1,1,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,0 +1,17,1,9130,0,1,156.0,1,2,9,3,5,166.9,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,1 +1,17,1,9130,0,1,123.0,1,19,3,3,2,121.6,1,0,0,1,1,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,171,0,1,129.0,1,1,1,9,9,124.8,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9119,0,1,125.0,1,19,1,5,4,121.5,1,0,1,1,0,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,0 +1,17,1,9085,0,1,163.0,14,37,37,9,9,150.8,1,0,1,1,1,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,1 +1,7,2,9130,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,1,9085,0,1,135.0,1,1,2,9,1,134.3,1,0,1,1,1,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,19,37,6,6,120.0,0,0,1,1,1,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,1,130.0,1,37,37,9,7,133.0,1,0,1,1,1,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,143.0,1,1,19,4,6,135.0,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +4,43,2,9991,1,38,133.1,1,3,1,2,9,125.4,0,0,1,1,0,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,140.0,1,3,1,2,4,124.1,0,0,1,1,1,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,37,38,175,103,127.0,0,0,1,1,0,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,151.0,1,1,3,1,1,111.0,0,0,1,1,0,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,133.0,1,37,19,9,8,141.4,0,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,133.1,1,38,37,5,5,108.0,0,0,1,1,1,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,9147,0,1,118.0,1,3,19,2,4,113.8,1,0,1,1,1,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,1,1,3,5,141.7,0,0,1,1,1,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,42,1,9119,0,1,130.0,1,19,37,9,3,135.0,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,0 +4,39,2,9147,0,19,133.1,1,37,37,9,7,116.4,0,0,0,0,0,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,148.0,1,19,38,9,8,134.8,1,0,1,1,0,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,116.0,1,19,19,4,7,110.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,1 +1,1,5,9147,0,1,122.0,1,38,38,9,9,117.5,1,0,0,0,1,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,122.0,1,37,37,9,9,125.9,1,0,1,1,0,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,171,0,1,127.0,1,1,1,9,5,124.2,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9147,0,39,117.4,1,19,1,4,9,117.4,1,0,1,1,1,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,150.0,1,37,38,9,9,146.2,0,0,1,1,1,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,2 +1,17,1,9254,0,1,158.0,1,37,37,5,9,138.1,1,0,1,1,1,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,0 +1,7,1,9500,0,3,140.0,1,1,37,9,5,140.0,0,0,1,1,1,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,1 +1,44,1,9238,0,39,140.0,1,1,1,9,3,135.7,1,0,1,1,1,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +2,7,1,171,0,3,120.0,1,19,19,9,9,130.0,1,0,1,1,0,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,10,100.0,1,34,34,0,0,113.0,1,0,1,1,1,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,1 +1,1,1,8014,1,1,125.0,1,37,37,9,7,114.9,0,0,1,1,1,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,1 +1,18,6,9500,0,1,124.0,1,37,37,9,7,117.8,0,0,1,1,1,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,1 +1,1,1,9773,0,1,109.0,1,2,3,3,3,111.8,1,0,0,1,0,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,149.0,1,1,1,9,3,156.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +2,44,1,9119,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,2 +1,44,1,9130,0,39,120.0,6,4,4,3,6,120.0,0,0,0,0,1,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,0 +5,1,3,9085,0,1,133.0,1,19,19,4,7,119.7,1,0,1,1,1,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,2 +1,1,1,9085,0,1,127.0,1,37,37,9,9,122.8,1,0,1,1,1,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,171,0,39,140.0,1,1,1,9,9,140.0,0,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9773,0,1,132.0,1,1,1,4,9,124.3,1,0,0,1,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +4,39,2,9670,0,19,133.1,1,19,1,90,90,103.0,0,0,1,0,0,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,26,1,9147,0,2,133.1,1,34,34,0,0,121.5,1,0,1,1,1,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,143.0,1,19,38,9,6,131.5,1,0,1,1,0,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,1 +1,17,1,9147,0,1,123.0,1,1,19,3,4,122.0,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,171,0,1,133.1,1,3,1,2,3,141.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,19,37,9,4,120.0,0,0,1,1,1,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,1,1,3,3,125.7,1,0,1,1,1,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,121.0,1,37,37,5,5,118.9,1,0,1,1,1,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,1 +1,51,1,9500,0,1,129.0,1,37,38,3,3,137.8,1,0,1,1,1,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,144.0,1,3,1,2,4,134.9,1,0,0,1,1,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,0 +1,17,5,9254,0,1,113.0,1,1,1,2,3,110.2,1,0,1,1,0,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,1,133.1,1,1,19,4,5,120.0,1,0,1,1,0,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,0 +1,39,1,9254,0,19,133.1,1,19,1,9,5,97.0,0,0,0,0,0,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9500,0,1,126.0,1,1,19,6,7,115.5,1,0,1,1,1,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,1 +1,42,1,9853,0,1,141.0,1,37,19,9,3,133.0,0,0,1,1,1,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,0 +1,39,1,9085,0,19,133.1,1,19,19,4,9,139.9,1,0,1,1,1,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,43,2,9254,0,1,140.0,1,19,19,9,9,126.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,108.0,1,34,38,0,3,105.9,0,0,1,1,0,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,114.0,1,19,19,9,7,107.7,0,0,1,1,1,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,0 +1,17,1,171,0,1,130.0,1,3,1,9,9,126.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.1,1,19,37,0,0,137.0,1,0,1,1,1,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9119,0,1,117.0,1,1,2,3,2,119.8,1,0,1,1,0,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9147,0,1,115.0,1,1,37,4,9,117.1,1,0,0,1,1,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,130.0,1,12,19,4,5,118.5,0,1,1,1,1,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,34,37,5,5,120.4,0,0,1,0,1,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,0 +1,44,1,171,0,39,150.0,1,19,1,9,9,154.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,43,1,9147,0,1,140.0,1,37,37,6,6,122.9,0,0,1,1,1,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,0 +1,42,1,9070,0,1,100.0,1,3,2,2,2,115.9,0,0,1,1,1,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,2 +1,17,1,171,0,1,128.0,1,1,1,4,10,134.7,0,0,1,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,1,1,9,9,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,110.0,1,37,37,7,7,133.9,0,0,1,1,1,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,0 +1,43,1,9773,0,1,119.0,1,19,37,5,5,105.0,1,0,1,1,1,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,2 +2,43,1,9991,1,1,140.0,1,37,37,4,1,122.7,0,0,1,1,0,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,135.0,1,37,1,3,5,121.0,0,0,1,1,1,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,123.0,1,3,1,2,3,124.1,1,0,1,1,1,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,0 +1,17,1,9670,0,1,132.0,1,19,1,5,4,119.1,0,0,0,1,0,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,5,9254,0,1,130.0,1,37,38,9,9,122.7,1,0,0,1,0,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9147,0,1,117.0,1,1,38,8,9,117.0,1,0,1,1,0,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,140.0,1,19,19,9,6,135.4,1,0,1,1,1,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,162.0,1,37,37,9,6,132.0,0,0,0,1,0,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,139.0,1,19,38,4,9,128.5,1,0,1,1,1,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,0 +4,39,1,9991,1,1,130.0,1,38,19,9,7,148.0,0,0,1,1,1,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +5,43,1,9500,0,1,131.0,1,1,38,5,5,118.8,0,0,1,1,1,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,5,9238,0,1,126.0,1,38,1,9,5,125.7,1,0,1,1,1,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,1 +1,53,1,9085,0,42,140.0,1,1,1,4,3,140.0,1,0,0,1,1,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,128.0,1,1,1,4,5,120.8,1,0,1,1,1,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,139.0,1,37,37,9,6,133.5,1,0,1,1,1,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,150.0,1,38,38,4,1,150.0,1,0,1,1,0,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,9147,0,1,133.1,1,1,1,4,4,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9853,0,1,140.0,1,37,19,9,8,122.3,0,0,1,1,1,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,0 +1,43,1,8014,1,1,120.0,1,38,19,5,4,118.3,0,0,1,1,1,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,2 +1,7,1,9130,0,3,140.0,1,2,38,2,3,140.0,1,0,1,0,0,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,122.0,1,9,19,90,6,103.4,0,0,1,1,1,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,1 +2,39,1,9070,0,19,133.1,1,37,37,9,10,126.3,0,0,1,0,0,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,160.0,1,38,38,7,7,147.8,0,0,1,1,1,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,2 +1,39,1,9238,0,12,100.0,1,37,37,9,9,124.3,0,0,1,1,0,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,1 +1,18,2,8014,1,1,117.0,1,3,1,3,4,111.8,1,0,1,1,1,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,38,37,7,7,140.0,0,0,1,1,0,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,0 +1,43,1,9853,0,1,140.0,1,3,1,3,3,128.3,1,0,1,1,1,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,127.0,1,37,38,9,9,120.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,1,161.0,1,19,37,4,10,100.0,0,0,1,1,0,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,1 +1,16,4,9500,0,1,145.0,1,1,1,4,4,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,1 +1,7,1,9853,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,0 +1,1,2,171,0,1,127.0,1,2,19,5,5,139.6,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,148.0,1,19,19,4,4,133.8,0,0,1,1,1,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,140.0,1,19,19,1,1,129.5,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,171,0,1,129.0,1,37,37,9,9,122.0,1,0,1,0,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,1,12,3,10,131.6,1,0,1,1,1,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,130.0,1,38,37,3,6,135.6,1,0,1,1,1,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,0 +1,51,1,9991,1,39,120.0,1,1,4,4,10,118.1,0,0,1,1,0,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,0 +1,39,1,9853,0,19,133.1,1,19,4,9,4,116.0,1,0,1,1,1,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9238,0,1,133.1,1,1,37,8,9,118.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,4,9500,0,1,125.0,1,19,1,1,1,117.8,1,0,1,1,1,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,141.0,1,1,38,4,5,125.0,1,0,1,1,1,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,121.0,1,38,38,7,5,120.0,1,0,1,1,1,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,2 +1,17,3,9500,0,1,142.0,1,3,3,3,3,132.9,1,0,1,1,0,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,0 +1,44,1,9238,0,39,140.0,1,37,19,191,102,136.1,1,0,0,1,1,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,2 +1,39,1,9991,1,2,140.0,1,3,3,2,2,155.7,1,0,1,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9119,0,1,135.0,1,12,19,5,5,121.0,0,0,1,1,0,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,135.0,1,3,3,2,2,123.0,1,0,1,0,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,117.0,1,1,1,4,4,117.7,1,0,1,1,0,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +1,43,1,171,0,1,120.0,1,3,3,2,2,120.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,1,38,1,7,120.0,0,0,1,1,1,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,1 +1,17,3,9238,0,1,122.0,1,19,19,7,7,117.5,1,0,1,1,1,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,1,37,37,9,9,144.2,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +4,39,1,9500,0,1,140.0,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,131.0,1,19,19,9,9,139.8,1,0,1,1,1,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,127.0,1,3,3,2,5,100.0,0,0,1,1,1,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,2 +1,39,1,9085,0,1,133.1,1,3,19,2,9,110.0,0,0,1,1,1,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,0 +4,39,1,9500,0,19,133.1,1,38,1,9,4,120.0,0,0,1,1,1,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,1 +1,16,1,9085,0,1,150.0,1,3,3,2,1,153.5,1,0,1,1,1,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,153.0,1,19,37,9,9,153.7,0,0,1,1,1,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,130.0,1,19,19,3,8,131.8,0,0,1,1,1,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,1,2,9853,0,1,131.0,1,1,1,2,9,121.9,1,0,1,1,1,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,136.0,1,3,3,3,3,130.8,0,0,1,1,1,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,126.0,1,1,19,4,0,120.1,0,1,1,1,1,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +1,44,1,9003,0,1,120.0,1,3,2,2,6,120.0,1,0,1,1,0,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,2 +2,39,1,9130,0,19,133.1,1,2,1,2,9,157.0,1,0,1,1,0,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,1 +1,7,1,9853,0,3,150.0,1,19,19,4,5,150.0,0,0,0,0,1,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,51,1,9070,0,12,133.1,1,37,19,3,7,106.6,0,0,0,1,1,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,2 +1,1,2,9085,0,1,157.0,1,3,3,5,2,153.9,1,0,1,1,1,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,1 +1,1,2,171,0,1,117.0,1,1,19,3,3,121.6,1,0,1,1,1,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,1 +1,1,2,9147,0,1,113.0,1,38,38,9,5,107.4,1,0,1,1,0,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,2 +1,39,2,9147,0,12,133.1,1,19,38,9,9,120.0,1,0,0,0,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,152.0,1,37,37,9,9,139.0,1,0,1,1,1,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,138.0,1,1,19,9,9,124.0,0,0,1,1,1,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,1 +2,39,1,9853,0,1,110.0,1,37,37,9,9,95.5,0,0,0,0,1,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9130,0,1,150.0,1,19,19,4,4,130.0,0,0,1,0,0,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,3,9119,0,1,138.0,1,1,19,4,3,125.4,1,0,1,1,0,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,0 +1,17,6,9147,0,1,120.0,1,37,38,9,9,115.5,1,0,0,0,0,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,2 +1,1,3,9670,0,1,134.0,1,14,11,0,0,128.4,1,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,145.0,1,38,37,9,7,129.3,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,18,6,9500,0,1,126.0,1,37,37,5,5,122.8,1,0,1,1,1,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,133.0,1,1,1,4,4,129.2,1,0,1,1,1,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,0 +1,44,1,9070,0,39,120.0,1,1,19,4,7,120.0,0,0,0,0,0,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,136.0,1,19,38,9,9,121.7,0,1,1,1,1,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,126.0,1,1,1,9,10,126.7,1,0,1,1,1,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,1 +1,1,3,9085,0,1,134.0,1,38,19,9,5,129.1,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,133.1,1,1,37,9,9,117.0,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,5,9238,0,1,130.0,1,19,1,5,5,130.0,1,0,1,1,1,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,8014,1,40,140.0,1,19,37,5,9,148.0,0,0,1,1,1,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,137.0,1,3,38,1,9,131.4,0,0,1,0,0,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,0 +1,1,2,9670,0,1,123.0,1,1,38,7,7,120.6,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,139.0,1,3,1,2,7,124.0,1,0,1,1,1,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,0 +1,1,2,171,0,1,152.0,1,38,19,9,9,151.7,1,0,1,1,1,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,110.0,1,37,37,9,4,114.3,1,0,1,1,0,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,2 +1,51,1,9991,1,1,120.0,1,38,3,5,3,128.2,0,0,0,1,0,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,141.0,1,3,2,2,2,133.3,1,0,1,1,0,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,2 +1,5,1,171,0,1,137.0,1,3,19,1,10,144.7,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,2 +1,43,1,9003,0,1,130.0,1,37,1,5,4,130.0,0,0,1,1,0,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,0 +1,18,1,9773,0,1,135.0,1,1,1,3,3,129.8,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,150.0,1,38,38,9,8,150.0,1,0,1,1,0,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,1 +1,17,2,9773,0,1,150.0,1,1,1,4,5,130.8,0,0,1,1,0,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9773,0,1,123.0,1,1,1,4,7,125.1,1,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,1 +1,17,4,9119,0,1,129.0,1,34,36,0,5,118.9,1,0,1,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,0 +1,1,2,9500,0,1,144.0,1,38,37,9,9,128.8,1,0,1,1,0,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,130.0,1,38,38,9,9,150.0,0,0,0,0,0,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,128.0,1,1,1,7,7,120.5,1,0,1,1,1,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,2 +1,7,1,9500,0,3,140.0,1,3,1,4,4,140.0,0,0,1,1,1,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,134.0,1,19,19,1,1,120.4,1,0,1,1,0,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,147.0,1,1,38,4,8,141.1,1,0,1,1,1,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,126.0,1,3,1,5,5,125.7,0,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,1 +2,1,4,9853,0,1,134.0,1,37,37,5,7,122.5,0,1,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,148.0,1,38,38,4,9,131.6,0,0,1,1,0,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,0 +2,39,1,9085,0,9,133.1,1,1,1,4,4,120.0,1,0,1,0,0,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,0 +1,39,1,9254,0,1,150.0,1,3,1,3,4,122.3,0,0,1,1,0,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,125.0,1,19,37,3,7,126.8,0,0,1,1,1,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,2 +1,18,1,9670,0,1,128.0,1,19,3,9,7,120.0,1,0,1,1,1,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,160.0,1,2,1,4,4,137.3,1,0,1,1,1,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,1 +2,39,1,9238,0,42,170.0,1,19,38,8,8,159.5,0,0,1,1,0,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9773,0,1,143.0,1,1,1,4,9,144.1,1,0,1,1,0,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,9991,1,1,130.0,1,37,37,9,9,127.8,0,0,1,1,0,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,51,1,9147,0,1,130.0,1,19,38,9,8,115.7,0,0,1,1,0,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,2 +1,17,3,9773,0,1,135.0,1,1,19,5,7,135.0,0,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,135.0,1,1,1,9,9,133.3,0,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,6,9500,0,1,136.0,1,1,1,4,5,123.3,0,0,1,0,1,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,143.0,1,5,5,2,2,137.8,0,0,1,1,0,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,133.1,1,1,19,141,114,140.0,1,0,1,1,1,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,17,6,9670,0,1,117.0,1,38,19,0,1,114.6,0,0,1,0,0,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,133.1,1,1,19,4,10,145.8,0,0,1,1,0,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,129.0,1,1,37,4,9,118.2,0,0,1,1,0,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,1 +1,7,1,9500,0,3,130.0,1,37,37,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,1 +1,17,4,9670,0,1,135.0,1,38,38,9,7,127.0,1,0,1,1,1,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,126.0,1,1,1,90,90,119.0,1,0,0,1,0,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9773,0,1,120.0,1,1,38,5,5,121.4,0,0,1,0,1,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,136.0,1,1,38,9,9,130.8,1,0,1,1,1,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,131.0,1,19,37,9,9,123.8,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,144.0,1,19,19,9,9,142.6,1,0,1,1,1,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,126.0,1,38,38,7,8,126.7,1,0,1,1,1,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,3,171,0,1,125.0,1,37,37,5,10,120.5,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,7,1,9130,0,2,110.0,1,19,19,4,8,110.0,1,0,1,1,0,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,3,1,2,8,150.0,0,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,5,171,0,1,139.0,1,19,3,9,2,136.9,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,1,9147,0,1,100.0,1,38,38,5,5,101.8,1,0,1,1,1,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,2 +1,44,2,9238,0,39,150.0,1,3,19,4,9,147.0,1,0,1,1,1,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,39,1,9254,0,19,133.1,1,37,37,9,4,100.0,0,0,1,1,0,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,0 +1,17,1,9130,0,1,130.0,1,19,38,4,7,122.5,0,0,1,1,0,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,19,37,1,1,140.0,0,0,0,1,0,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,2 +1,17,1,9070,0,1,157.0,1,3,3,3,3,146.2,0,0,1,1,0,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,9500,0,1,150.0,1,37,19,8,4,130.8,0,0,1,1,0,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,133.1,1,19,19,7,7,130.0,1,0,1,1,1,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,150.0,1,19,1,9,8,150.0,1,0,1,1,0,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,127.0,1,1,19,7,7,121.8,1,0,1,1,1,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,2 +1,1,1,9853,0,1,148.0,1,19,19,5,7,141.7,0,0,1,1,1,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,130.0,1,1,19,9,9,133.4,0,0,1,1,1,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,123.0,1,37,38,3,3,122.0,0,0,0,1,0,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,2 +1,17,1,9070,0,1,132.0,1,37,38,9,7,138.0,0,0,1,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,146.0,1,2,19,3,9,130.3,1,0,1,1,0,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,1 +1,44,1,171,0,39,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,116.0,1,3,1,3,4,115.7,0,0,1,0,0,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,2 +1,1,1,9670,0,1,130.0,1,19,37,4,5,118.8,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,124.0,1,37,37,7,9,121.2,0,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,127.0,1,19,37,9,3,120.7,1,0,1,1,1,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +2,43,1,9070,0,2,140.0,1,37,37,6,6,140.0,1,0,1,1,0,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,1 +1,39,1,9500,0,1,100.0,1,3,1,2,5,121.3,1,0,1,1,1,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,2 +1,39,1,9991,1,19,133.1,1,37,37,9,6,105.3,0,0,0,1,1,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9670,0,1,155.0,1,1,19,4,8,134.7,1,0,1,1,1,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,15,1,9119,0,1,160.0,32,1,3,143,152,160.0,0,0,0,1,1,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,2 +1,53,1,9670,0,42,140.0,1,19,37,3,6,140.0,1,0,0,1,1,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,2 +1,1,6,9853,0,1,140.0,1,38,38,9,7,137.6,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,140.0,1,19,19,7,7,129.5,1,0,1,1,1,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,1 +1,39,1,9773,0,19,133.1,1,19,19,3,4,104.0,0,0,0,0,1,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,130.0,1,37,37,9,9,118.8,0,0,0,1,0,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,136.0,1,1,1,9,1,133.0,1,0,1,1,1,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,143.0,1,38,38,9,9,138.8,1,0,1,1,1,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,1 +2,39,1,9147,0,1,140.0,1,37,37,6,10,131.8,0,0,1,1,1,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,2 +1,39,1,9085,0,1,130.0,1,4,1,2,9,120.0,0,0,1,0,1,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,2 +1,1,4,9500,0,1,148.0,1,19,19,4,5,137.0,1,0,1,1,1,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,120.0,1,37,19,5,3,156.0,1,0,1,1,0,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,9853,0,1,133.1,1,12,1,4,0,134.8,1,0,1,1,1,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,122.0,1,1,1,9,8,120.3,0,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,156.0,1,19,38,9,5,170.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,3,171,0,1,129.0,1,38,37,9,3,127.3,1,0,0,0,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,142.0,1,38,38,9,10,127.0,1,0,1,1,1,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,150.0,1,38,19,3,3,120.1,0,0,1,0,1,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,141.0,1,37,37,9,9,126.7,1,0,0,1,1,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,43,3,9147,0,1,127.0,21,3,37,3,3,117.9,1,0,1,1,1,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,1,120.0,1,1,19,4,7,110.0,0,0,1,1,0,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,0 +2,42,1,9254,0,1,136.0,1,2,2,134,112,130.0,1,0,1,1,0,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,0 +1,18,1,9119,0,1,122.0,1,19,1,90,3,116.1,1,0,0,0,0,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9500,0,1,120.0,1,2,4,4,5,136.6,0,0,1,1,0,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,0 +1,18,1,9070,0,1,143.0,1,38,38,7,5,141.6,0,0,1,1,1,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,1 +1,43,1,9119,0,1,140.0,1,37,38,5,7,146.5,0,0,1,1,0,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,125.0,1,19,19,9,9,121.5,1,0,1,1,1,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,1,0,1,1,1,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,159.0,1,3,3,2,2,165.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,127.0,1,3,1,2,9,119.3,1,0,1,1,1,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,1 +1,17,6,9238,0,1,117.0,1,1,38,4,7,114.6,0,0,1,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9119,0,1,148.0,1,19,19,9,8,129.8,0,0,1,0,0,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,2 +1,17,4,9119,0,1,127.0,1,19,19,5,5,120.4,1,0,0,0,0,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,5,9500,0,1,144.0,1,19,1,5,3,141.0,1,0,1,1,1,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,1 +1,17,3,9556,0,1,126.0,1,19,19,9,4,119.0,1,0,1,1,1,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,0 +1,1,4,9119,0,1,126.0,1,3,19,2,9,123.6,1,0,1,1,0,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,120.0,1,1,2,144,123,125.3,0,0,0,1,0,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,2 +1,39,1,9070,0,1,130.0,1,1,19,4,4,110.0,1,0,1,1,1,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,140.0,1,37,37,90,5,115.5,0,0,1,0,0,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,130.0,1,38,38,9,9,120.0,0,0,1,1,1,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,0 +1,17,2,9853,0,1,141.0,1,3,1,1,5,130.2,1,0,1,1,1,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,2 +2,1,1,9500,0,1,156.0,1,1,1,9,10,135.5,0,0,1,1,1,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,1 +2,7,1,8014,1,3,170.0,1,19,19,4,4,170.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,2,9147,0,1,134.0,1,37,19,9,8,126.3,1,0,1,1,1,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,122.0,1,12,12,5,7,126.6,1,0,1,1,1,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,38,38,9,7,138.8,1,0,1,1,1,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,132.0,1,37,37,5,7,127.5,1,0,1,1,1,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,1 +1,16,2,9238,0,1,130.0,1,37,37,5,6,126.9,1,0,1,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,110.0,1,3,2,3,3,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,127.0,1,2,19,4,5,121.8,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,1 +1,39,1,9085,0,12,133.1,1,38,19,9,8,138.3,1,0,0,0,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +1,39,1,9147,0,19,133.1,1,3,1,3,5,153.2,1,0,0,1,1,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,37,19,5,9,130.0,1,0,1,1,1,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +2,39,2,9147,0,1,130.0,1,19,37,4,7,140.0,0,0,1,1,0,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,128.0,1,19,19,7,7,124.4,0,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,19,3,8,150.3,1,0,1,1,0,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,143.0,1,38,19,7,9,129.5,1,0,1,1,1,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,1 +1,42,1,9500,0,6,141.0,1,37,1,9,4,145.0,0,0,1,1,1,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,1 +1,17,1,9238,0,1,160.0,1,19,37,6,6,144.3,0,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,2,9238,0,1,133.1,1,19,19,4,5,120.6,1,0,1,1,1,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,37,19,9,3,116.5,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,127.0,1,1,1,3,4,130.2,1,0,1,1,0,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,4,9254,0,1,131.0,1,38,36,9,9,124.0,1,0,1,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,1 +1,1,5,9254,0,1,120.0,1,37,37,9,7,127.0,1,0,1,1,1,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,135.0,1,34,34,0,0,134.1,1,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9254,0,1,133.1,1,37,37,9,6,121.5,0,0,1,1,0,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,144.0,1,38,38,5,7,128.0,1,0,1,1,1,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,132.0,1,1,19,6,6,124.7,1,0,1,1,0,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,1 +1,17,2,9991,1,1,116.0,1,37,19,9,4,118.5,0,0,1,1,0,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,133.1,1,1,1,9,1,103.0,1,0,1,1,1,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,16,5,9085,0,1,134.0,1,19,37,8,8,123.9,1,0,1,1,0,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,2 +1,43,1,9773,0,1,114.0,1,37,38,9,5,107.4,1,0,1,0,0,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,38,37,5,7,120.0,1,0,1,1,1,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,135.0,1,1,38,4,6,122.1,0,1,0,0,0,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,0 +2,39,1,8014,1,1,150.0,1,37,37,7,5,143.0,0,0,1,1,1,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,1 +1,44,1,9991,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,1 +4,39,1,9238,0,19,133.1,1,37,37,9,10,103.5,0,0,1,0,1,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,126.0,1,19,38,9,9,132.0,1,0,1,1,1,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,125.0,1,1,1,7,3,143.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,39,1,9147,0,1,120.0,1,37,1,9,1,122.7,0,0,1,0,1,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +2,7,1,8014,1,3,124.4,1,37,34,0,0,130.0,0,0,1,1,1,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,1 +1,18,1,9085,0,1,106.0,1,1,19,3,5,104.6,0,0,1,0,0,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,2 +1,44,1,9119,0,39,160.0,1,3,38,2,3,160.0,0,0,0,0,0,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,148.0,1,3,19,2,5,130.0,0,0,1,1,1,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,2 +1,1,1,9130,0,1,133.0,1,1,37,9,9,123.2,1,0,1,1,1,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,17,5,9500,0,1,130.0,1,19,1,9,4,128.8,1,0,1,1,1,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,149.0,1,19,1,9,9,137.8,1,0,1,1,0,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,1 +4,43,1,9670,0,1,150.0,1,37,37,9,6,110.0,0,0,1,1,1,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,1 +2,39,1,9119,0,1,110.0,1,19,19,0,5,137.0,0,0,0,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9556,0,1,122.0,1,19,19,3,10,113.3,1,0,1,1,1,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,140.0,1,1,19,4,5,127.5,0,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,3,9070,0,1,128.0,1,37,37,5,5,124.5,1,0,1,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,1 +1,44,1,9085,0,39,150.0,6,5,4,1,1,150.0,0,0,1,1,1,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,131.0,1,38,37,7,7,127.2,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,130.0,1,37,37,9,6,126.5,1,0,1,1,1,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,1 +1,17,1,9119,0,1,116.0,1,19,37,90,5,116.7,1,0,1,1,0,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,0 +1,17,3,9853,0,1,140.0,1,38,38,5,7,126.7,1,0,1,1,1,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,0 +1,17,4,9238,0,1,129.0,1,37,37,9,8,117.1,1,0,1,1,0,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,144.0,1,19,19,9,9,130.5,1,0,1,1,1,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,124.0,1,19,1,7,10,116.0,1,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,122.0,1,1,19,4,4,127.3,1,0,0,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,12,12,4,1,155.3,1,1,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +2,15,1,9773,0,1,133.1,41,37,37,9,6,100.0,0,0,1,1,1,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,138.0,41,1,1,9,9,126.5,1,0,1,1,1,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,1 +1,18,6,9500,0,1,142.0,1,38,37,9,5,128.0,1,0,1,0,1,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,3,1,2,3,140.0,1,0,1,1,1,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,2 +1,42,1,9991,1,1,150.0,1,19,19,5,5,113.7,0,0,1,1,0,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,135.0,1,1,19,5,5,130.1,1,0,1,1,1,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,2,9254,0,1,120.0,1,19,1,9,8,117.2,0,0,1,1,0,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,130.0,1,19,19,9,7,119.5,1,0,1,1,0,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,133.0,1,1,1,4,5,136.2,1,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,15,1,9147,0,1,133.1,21,1,3,192,3,100.0,0,0,0,1,0,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,2 +1,1,1,9670,0,1,112.0,1,37,1,7,0,110.6,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9238,0,1,117.0,1,19,19,9,9,117.0,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9991,1,1,140.0,1,1,37,9,8,154.5,0,0,1,1,1,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,97.0,1,0,1,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,119.0,1,37,37,5,4,118.0,1,0,1,1,0,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,112.0,1,19,38,5,7,107.1,1,0,1,1,1,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,1 +2,18,2,8014,1,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,144.0,1,37,37,9,6,129.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,120.0,100,1,1,4,7,119.5,0,0,0,1,1,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,136.0,1,19,38,5,8,130.3,1,0,1,1,1,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,7,9,121.3,1,0,1,1,1,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,135.0,1,1,4,5,3,124.9,0,0,1,1,1,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,4,9670,0,1,128.0,1,38,38,3,7,121.0,1,0,1,1,1,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,15,1,9556,0,1,114.0,26,3,19,122,144,114.0,0,0,1,1,1,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,2 +1,17,2,9238,0,1,125.0,1,19,19,3,3,118.0,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,118.0,1,37,37,7,7,114.2,0,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,2 +1,17,1,9147,0,1,115.0,1,19,37,5,7,112.9,1,0,1,0,0,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,120.0,1,19,37,9,9,118.3,0,0,0,0,0,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9119,0,10,133.1,1,34,37,0,0,128.8,1,0,1,1,0,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,115.0,1,19,38,5,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,137.0,1,37,37,9,9,132.8,1,0,1,1,1,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9003,0,1,148.0,1,19,37,9,9,131.6,1,0,1,1,0,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9773,0,1,161.0,1,1,19,4,7,148.4,0,0,1,1,1,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,1 +2,43,1,9991,1,1,133.1,1,37,37,9,7,113.5,0,0,1,1,1,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,132.0,1,1,1,9,9,133.8,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,1,9254,0,1,125.0,1,37,37,9,9,122.9,0,0,1,1,0,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,123.0,1,3,1,9,3,121.3,1,0,1,1,1,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,2 +1,17,1,9991,1,1,154.0,1,38,38,4,5,134.1,0,0,1,1,1,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,2 +1,44,1,9130,0,39,140.0,1,19,19,5,5,140.0,1,0,0,0,1,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,2 +1,53,1,9085,0,42,170.0,1,1,19,4,7,170.0,0,0,1,1,1,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,1 +1,17,5,9147,0,1,131.0,1,19,38,3,10,119.8,1,0,1,1,1,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,141.0,1,19,19,9,9,126.0,1,0,1,1,1,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,1 +1,1,3,9500,0,1,137.0,1,19,19,5,4,131.5,1,0,1,1,1,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,118.0,1,19,1,9,3,113.5,1,0,0,1,1,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,100.0,1,37,37,99,99,100.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9130,0,1,120.0,6,1,3,9,2,120.0,0,0,0,1,1,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,2 +1,1,1,9147,0,1,127.0,1,19,19,5,5,129.8,1,0,1,1,1,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,134.0,1,37,37,9,9,129.8,1,0,1,1,1,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,121.0,1,37,37,5,9,116.5,1,0,1,1,1,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9070,0,1,117.0,1,19,37,5,5,131.0,1,0,0,0,0,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,125.0,1,1,38,9,7,119.8,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,5,9500,0,1,140.0,1,1,1,4,3,131.1,1,0,1,1,1,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,1 +1,1,5,9254,0,1,101.0,1,3,19,3,9,98.9,1,0,1,1,0,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,130.0,1,37,38,7,9,117.8,0,0,0,1,1,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,128.0,1,34,19,3,0,141.0,1,0,1,0,1,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,150.0,1,38,37,9,9,130.8,0,0,1,1,0,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,125.0,1,1,19,4,7,116.6,0,0,1,1,0,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,1 +1,43,1,9670,0,1,130.0,1,34,34,0,0,114.8,0,0,1,1,0,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,1 +2,42,1,9003,0,1,120.0,1,3,1,2,2,113.3,0,0,1,1,0,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +4,39,1,9991,1,1,133.1,1,37,37,5,5,138.7,0,0,1,1,1,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,0 +1,39,1,9238,0,1,140.0,1,34,34,0,0,114.0,1,0,1,0,1,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9991,1,1,133.1,1,37,19,3,10,136.1,0,0,1,1,0,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9070,0,1,110.0,1,37,37,7,7,110.2,0,0,1,1,0,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,150.0,1,4,5,4,2,150.0,0,0,1,1,0,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,2 +1,1,2,9119,0,1,149.0,1,38,38,5,5,141.0,0,0,1,1,0,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,2 +1,42,1,9085,0,39,150.0,1,1,1,4,7,150.0,1,0,1,1,1,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,1,38,4,9,131.7,1,0,1,1,1,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,42,1,9853,0,1,120.0,1,1,37,5,5,113.9,1,0,1,1,1,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9085,0,1,130.0,1,37,19,9,7,130.0,1,0,1,1,1,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,2 +1,17,4,9500,0,1,133.0,1,38,37,5,7,126.4,1,0,1,1,0,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,147.0,1,3,1,2,3,131.6,0,0,1,1,1,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,1 +1,39,1,9991,1,12,133.1,1,37,37,9,9,121.5,0,0,1,1,0,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,2 +2,1,1,9991,1,1,150.0,1,37,37,9,9,131.8,0,0,1,0,1,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,0 +1,43,4,8014,1,1,116.0,1,34,34,0,0,116.2,0,0,1,1,0,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,1 +1,44,1,9130,0,39,140.0,1,1,19,4,7,140.0,0,0,1,1,0,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,2 +1,17,1,9773,0,1,136.0,1,3,1,2,3,132.5,1,0,1,1,1,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,1 +4,39,1,9500,0,19,110.0,1,37,38,5,5,151.0,0,0,0,0,0,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,0 +1,17,2,9254,0,1,123.0,1,19,19,5,5,113.2,1,0,0,1,1,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,137.0,1,3,19,2,9,122.3,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +4,39,1,9254,0,1,120.0,1,37,19,9,9,131.0,1,0,1,1,0,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9556,0,1,123.0,1,19,19,4,9,113.8,1,0,1,1,1,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,150.0,1,3,37,4,7,139.5,0,0,1,1,0,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,145.0,1,38,37,3,9,138.4,1,0,1,0,1,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,2 +1,39,1,8014,1,1,140.0,1,37,37,9,7,122.0,1,0,0,0,0,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,0 +2,43,3,9991,1,1,120.0,1,37,37,9,9,128.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,6,9500,0,1,126.0,1,12,37,5,9,121.8,1,0,1,1,1,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,0 +2,39,1,9991,1,1,130.0,1,37,37,9,9,140.0,1,0,1,1,0,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,130.0,1,37,19,9,8,130.8,0,0,1,1,0,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,2 +1,1,3,9070,0,1,125.0,1,19,38,9,9,125.4,1,0,1,1,1,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,132.0,1,38,38,4,9,119.1,0,0,1,1,1,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,1 +4,7,1,9147,0,3,130.0,1,19,1,5,5,130.0,0,0,1,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,130.0,1,19,19,7,7,121.6,1,0,1,1,1,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9773,0,1,126.0,1,37,38,5,5,129.5,1,0,0,0,1,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,133.0,1,38,38,5,5,123.2,0,0,1,1,1,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,140.0,1,37,37,9,9,121.0,0,0,1,1,1,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,3,9500,0,1,131.0,1,37,37,9,9,118.0,1,0,1,1,1,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,2 +1,1,1,9670,0,1,120.0,1,38,19,4,8,115.1,0,0,1,1,1,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,2 +1,17,5,9773,0,1,111.0,1,19,12,7,3,115.9,1,0,1,1,1,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,135.0,1,1,19,9,7,123.5,1,0,1,1,1,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,37,4,9,130.0,1,0,1,1,1,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,2 +1,44,1,9119,0,39,130.0,1,3,19,3,4,130.0,0,0,1,1,0,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,2 +1,44,1,9147,0,39,130.0,22,2,37,2,8,130.0,0,0,0,0,0,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,119.0,1,37,37,9,6,119.0,0,0,0,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9500,0,1,142.0,1,38,37,9,8,130.8,1,0,1,1,1,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,136.0,1,38,1,9,4,129.7,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,1 +1,42,1,9003,0,1,140.0,1,19,19,4,4,140.0,1,0,1,1,0,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,19,133.1,1,1,19,4,10,114.0,0,0,1,1,0,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,0 +1,17,5,9670,0,1,125.0,1,19,30,7,7,118.4,1,0,1,1,1,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,2 +1,1,2,9500,0,1,135.0,1,19,19,9,10,122.9,1,0,1,1,1,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,100.0,1,37,37,9,9,108.0,1,0,1,1,0,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,127.0,1,37,37,9,9,119.3,1,1,1,1,0,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,133.0,1,38,19,9,10,125.0,1,0,1,1,1,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,116.0,1,3,3,3,3,110.1,1,0,1,1,0,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,133.1,1,1,1,5,8,123.0,1,0,1,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,144.0,1,37,37,9,3,150.5,0,0,1,1,1,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,133.0,1,3,1,2,4,130.2,0,0,1,1,0,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,116.0,1,38,37,9,6,109.7,1,0,1,1,1,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,1 +1,18,3,9853,0,1,128.0,1,38,37,5,9,116.8,1,0,1,0,0,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,150.0,1,37,37,4,9,132.1,1,0,0,1,1,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,160.0,1,1,19,4,6,155.7,1,0,1,1,1,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,130.0,1,19,1,9,9,131.9,0,0,1,1,1,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,126.0,1,3,3,2,2,121.1,0,0,0,1,1,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,133.0,1,38,38,7,7,147.0,0,0,1,1,1,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,137.0,1,37,37,9,9,126.2,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,149.0,1,38,37,5,5,137.1,1,0,1,1,1,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,143.0,1,2,37,1,1,133.2,1,0,1,1,1,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,2 +1,17,5,9070,0,1,122.0,1,19,38,5,7,119.6,0,0,0,0,1,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,137.0,1,19,38,9,9,127.2,1,0,1,1,1,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,110.0,1,1,1,4,4,125.9,0,0,1,1,0,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,130.0,1,1,38,5,9,118.1,0,0,0,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9853,0,1,130.0,1,37,19,9,5,102.5,0,0,1,1,1,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.0,1,19,1,9,1,122.2,0,0,1,1,1,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,39,140.0,1,3,3,2,2,140.0,1,0,1,1,1,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,134.0,1,37,38,9,9,120.3,1,0,1,1,1,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,1,1,37,4,7,110.0,0,0,1,1,0,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,0 +1,15,1,9085,0,1,133.1,41,3,3,4,2,101.3,0,0,1,1,1,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,113.0,1,1,1,5,4,106.7,1,0,0,1,1,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,0 +2,39,1,9991,1,19,133.1,1,37,37,5,5,111.9,1,0,1,1,0,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9853,0,1,134.0,1,19,38,4,8,122.1,1,0,1,1,1,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,0 +1,1,2,9853,0,1,133.0,1,19,37,4,9,130.2,1,0,1,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,127.0,1,19,19,5,5,160.0,0,0,1,1,0,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,1 +1,7,1,9500,0,3,130.0,1,37,38,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,140.0,1,19,38,7,7,136.5,1,0,1,1,1,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,1 +2,39,1,9773,0,19,133.1,1,37,37,9,6,110.0,0,0,1,0,1,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,0 +2,39,1,8014,1,1,120.0,1,34,34,99,99,101.8,0,0,1,0,1,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,135.0,1,1,1,4,7,129.8,1,0,1,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,131.0,1,37,38,5,5,128.9,0,0,1,1,1,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,1 +1,1,4,9070,0,1,139.0,1,3,19,1,5,138.3,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,6,9500,0,1,122.0,1,1,1,3,7,114.3,1,0,1,1,0,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,2 +1,1,1,9500,0,1,150.0,1,37,37,9,7,136.5,1,0,1,1,1,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,3,1,2,8,121.4,0,0,1,1,0,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,117.0,1,19,19,194,193,117.4,1,0,1,1,1,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,2 +2,39,1,9085,0,1,133.1,1,36,36,99,5,128.2,0,0,1,0,1,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,121.0,1,3,1,2,3,114.0,0,0,1,1,0,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,2 +1,51,1,9853,0,1,139.0,1,1,1,4,10,134.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9070,0,1,137.0,1,1,1,3,1,141.2,1,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,133.1,1,37,37,6,3,140.0,0,0,0,1,0,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,1,9147,0,1,126.0,1,37,37,4,7,116.9,0,0,1,1,0,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,2 +1,44,1,9130,0,39,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +2,43,1,9991,1,1,130.0,1,37,37,9,9,128.2,0,0,1,1,1,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,131.0,1,19,9,5,3,118.4,0,0,1,1,1,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,138.0,1,19,19,3,3,131.0,1,0,1,1,1,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,1,130.0,1,37,12,9,8,129.4,1,0,0,0,0,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,9991,1,1,134.0,1,37,37,9,9,113.7,0,0,1,1,1,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,5,9853,0,1,117.0,1,38,38,9,7,114.6,1,0,1,1,1,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,145.0,1,3,3,4,4,153.1,1,0,1,1,1,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,2 +1,43,1,9085,0,1,130.0,1,19,38,4,9,130.0,1,0,1,0,1,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9119,0,1,146.0,1,37,37,9,9,148.5,1,0,1,1,0,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,136.0,1,1,1,4,4,124.1,0,0,1,1,1,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,100.0,1,37,38,9,4,140.0,0,0,1,1,0,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,2 +1,44,1,9003,0,39,180.0,1,1,3,4,2,180.0,0,0,1,1,1,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,1 +1,15,1,9773,0,1,120.0,26,19,19,4,5,120.0,1,0,1,1,1,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,141.0,1,4,19,4,10,100.0,0,0,1,1,0,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,1,150.0,1,29,10,6,6,150.0,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,5,5,9254,0,1,122.0,1,1,37,9,7,119.6,1,0,1,1,1,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,128.0,1,19,38,9,7,124.2,1,0,1,1,0,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9130,0,1,172.0,1,19,19,9,9,163.3,1,0,1,1,1,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,129.0,1,38,37,5,5,142.0,1,0,1,1,1,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,100.0,1,1,3,9,10,120.0,0,0,0,0,0,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,1 +1,1,3,9238,0,1,135.0,1,1,12,9,10,121.0,1,0,1,1,1,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,136.0,1,2,2,3,3,120.0,1,0,1,1,0,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,2 +1,1,6,9147,0,1,143.0,1,38,37,9,9,128.7,1,0,1,1,0,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,2 +1,17,2,9500,0,1,126.0,1,37,37,7,7,126.2,1,0,1,1,1,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,2 +1,17,2,9254,0,1,135.0,1,19,19,4,3,135.0,1,0,1,1,0,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,2 +1,1,2,9254,0,1,132.0,1,1,19,9,9,129.9,1,0,1,1,1,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +2,39,1,8014,1,1,120.0,1,34,34,0,0,104.0,0,0,1,1,1,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,0 +2,39,1,8014,1,9,133.1,1,37,37,8,10,100.0,1,0,1,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,43,1,9147,0,1,130.0,1,19,37,7,10,138.0,0,0,1,1,1,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,1 +1,17,2,9119,0,1,120.0,1,1,19,9,8,117.2,0,0,1,1,0,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,133.1,1,1,12,4,5,116.5,0,0,1,1,0,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,105.0,1,19,19,6,6,106.1,1,0,1,1,1,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,118.0,1,1,19,4,8,118.7,0,0,1,1,0,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,6,9500,0,1,140.0,1,3,19,3,8,129.0,1,0,1,1,1,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,168.0,1,19,19,4,4,171.2,0,0,1,1,0,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,133.0,1,19,9,0,0,121.5,1,0,1,1,1,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,177.0,1,1,38,3,9,162.3,0,0,1,1,1,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,130.0,1,38,38,2,9,124.8,0,0,1,1,1,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,136.0,1,38,1,5,6,133.9,1,0,1,1,1,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,154.0,1,1,1,5,3,144.9,0,0,1,1,0,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,1 +1,44,1,9119,0,39,150.0,1,19,37,9,9,150.0,1,0,0,1,0,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,0 +1,1,4,9254,0,1,132.0,1,12,19,9,9,124.7,1,0,1,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,33,0,1,100.0,41,38,37,9,8,100.0,0,0,0,0,0,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9085,0,1,120.0,1,4,1,2,9,113.4,0,0,1,1,1,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,134.0,1,1,19,9,9,136.1,1,0,1,1,1,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9500,0,1,150.0,1,1,19,5,3,140.0,0,1,1,1,1,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,129.0,1,37,37,9,9,128.8,1,0,1,1,1,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +2,39,1,9500,0,1,100.0,1,37,38,4,4,130.0,0,0,1,1,0,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,2 +1,1,1,9773,0,1,140.0,1,19,37,9,6,135.8,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,7,1,9085,0,40,150.0,1,19,19,9,5,150.0,0,0,0,0,1,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9500,0,1,148.0,1,1,37,4,8,132.0,1,0,1,1,1,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,1 +1,7,1,9119,0,40,140.0,1,3,1,2,5,140.0,0,0,1,1,0,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,163.0,1,19,1,9,7,143.1,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,3,9070,0,1,164.0,1,1,1,5,3,161.2,1,0,1,1,1,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,1 +1,1,6,9773,0,1,141.0,1,30,37,7,7,128.4,1,0,0,0,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,0 +1,43,2,9147,0,1,126.0,1,1,19,3,3,100.0,1,0,1,1,0,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,171,0,1,141.0,1,19,19,5,10,135.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,4,9670,0,1,117.0,1,3,3,4,4,113.2,0,0,1,1,0,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +2,43,1,9991,1,3,140.0,1,37,19,9,4,140.0,0,0,0,1,1,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,134.3,0,0,1,1,0,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,137.0,1,38,19,9,7,125.1,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,130.0,1,37,37,9,6,134.0,0,0,1,1,1,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,123.0,1,37,37,7,7,119.7,0,0,1,1,0,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9147,0,1,120.0,1,37,37,9,9,104.7,1,0,1,1,0,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9238,0,1,137.0,62,1,1,9,9,129.3,0,0,1,1,1,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,8014,1,1,122.0,1,37,19,9,9,123.8,0,0,1,1,1,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,1 +2,39,2,8014,1,1,100.0,1,34,34,0,0,100.0,1,0,1,1,1,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,1 +2,1,1,9991,1,2,120.0,1,37,37,6,3,129.2,0,0,1,1,1,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,150.0,1,3,19,2,6,150.0,0,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9991,1,1,123.0,1,1,3,4,2,113.2,0,0,1,0,0,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,0 +1,1,3,9773,0,1,130.0,1,1,37,4,5,120.9,1,0,0,1,1,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,146.0,1,19,3,4,9,127.0,0,0,1,1,0,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,44,1,171,0,39,160.0,1,19,38,9,9,160.0,1,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9085,0,39,150.0,1,38,37,6,6,150.0,1,0,1,1,1,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,1 +1,17,2,9254,0,1,136.0,1,19,19,4,7,123.1,1,0,1,1,1,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +2,39,1,9670,0,1,150.0,1,37,19,9,4,135.6,0,0,1,1,1,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,1 +1,1,6,171,0,1,134.0,1,19,37,5,5,126.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +4,39,1,9773,0,38,133.1,1,19,19,7,9,133.0,0,0,1,1,1,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,2 +1,17,2,9119,0,1,120.0,1,10,12,9,9,120.4,1,0,1,1,0,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,4,9254,0,1,113.0,1,38,19,7,7,107.4,1,0,1,1,1,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,137.0,1,1,19,4,5,136.3,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,142.0,1,37,37,9,7,132.7,1,0,1,1,1,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,1 +1,18,5,9085,0,1,121.0,1,5,3,2,3,111.9,1,0,1,1,1,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,9,133.1,1,34,36,0,90,107.5,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,8014,1,19,133.1,1,19,37,6,8,149.5,0,0,1,1,0,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9147,0,1,120.0,1,1,37,4,9,113.4,1,0,1,1,0,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,130.0,1,37,38,9,5,130.5,1,0,1,1,1,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,153.0,1,1,19,9,10,147.8,0,0,1,1,1,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,1 +1,1,1,171,0,1,159.0,1,3,1,4,4,162.2,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,122.0,1,37,37,5,6,114.3,0,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,2,9556,0,19,133.1,1,37,37,3,7,117.8,0,0,1,1,1,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,132.0,1,38,1,9,9,124.3,1,0,1,1,1,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,141.0,1,19,19,9,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,1 +1,17,1,9500,0,1,152.0,1,19,19,4,9,132.5,0,0,1,1,0,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,1 +1,17,1,9991,1,40,127.0,1,37,37,6,6,124.9,0,0,1,1,1,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,133.1,1,1,19,4,6,106.0,1,0,1,1,1,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,19,37,4,7,150.0,1,0,1,1,1,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,1 +1,1,1,9254,0,1,125.0,1,1,1,191,193,114.5,0,0,1,1,0,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,134.0,1,19,19,4,7,131.0,1,0,1,1,0,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,1 +1,1,2,9500,0,1,134.0,1,19,19,9,9,125.8,1,0,1,1,1,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,1 +1,17,1,171,0,1,125.0,1,37,37,7,9,134.1,1,0,1,1,0,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,0 +1,51,1,9254,0,1,120.0,1,38,38,9,9,118.0,0,0,1,1,1,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,155.0,1,1,1,4,3,140.5,1,0,1,1,1,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,125.0,1,1,1,4,90,125.4,1,0,1,1,0,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,1,5,5,126.3,0,0,1,1,0,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,1 +1,39,1,9147,0,1,140.0,1,37,3,9,2,135.1,0,0,1,1,0,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,5,171,0,1,122.0,1,19,12,5,9,127.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,2,9670,0,1,150.0,1,34,34,0,0,107.0,1,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,3,130.0,1,19,19,3,9,130.0,0,0,1,0,0,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,0 +1,39,1,33,0,1,133.1,1,19,37,9,9,96.1,0,0,1,1,0,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,0 +2,42,1,9500,0,2,130.0,1,37,37,9,9,130.0,0,0,1,1,1,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,1 +1,18,1,9238,0,1,137.0,1,19,38,5,8,137.4,1,0,1,1,1,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,2 +1,1,1,9254,0,1,140.0,1,19,1,9,8,140.9,1,0,1,1,1,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,132.0,1,1,2,9,3,128.2,1,0,1,1,1,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,17,4,9085,0,1,126.0,1,1,3,5,5,123.9,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,19,133.1,1,37,37,9,7,106.5,0,0,1,1,1,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,132.0,1,37,19,7,7,132.4,1,0,1,1,1,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,139.0,1,37,38,9,9,126.1,0,0,1,1,1,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,136.0,1,19,38,9,9,123.0,1,0,1,1,1,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,140.0,1,1,38,9,1,140.0,1,0,1,1,0,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,123.0,1,19,19,9,8,134.0,0,0,1,1,1,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,130.0,1,38,19,9,4,118.4,0,0,0,1,1,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,126.0,1,1,1,9,9,116.2,0,0,0,0,0,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,19,1,7,10,105.0,0,0,1,1,0,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,0 +1,17,1,9119,0,1,130.0,1,19,19,7,9,121.3,1,0,1,1,0,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,0 +1,43,1,9500,0,19,133.1,1,34,34,0,0,110.0,1,0,1,1,0,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,0 +1,1,3,9070,0,1,139.0,1,1,38,4,7,142.2,1,0,1,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,142.0,1,38,1,5,4,136.6,0,0,1,1,1,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,1 +1,17,2,9670,0,1,128.0,1,37,38,5,8,121.7,0,0,1,1,0,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,140.0,1,1,3,9,4,140.0,0,0,0,0,1,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,125.0,1,19,19,9,10,122.0,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,8014,1,1,130.0,1,37,37,9,8,103.5,0,0,1,1,1,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,1 +1,17,3,9085,0,1,117.0,1,19,38,5,7,111.1,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,42,1,9085,0,39,140.0,1,19,3,9,1,159.9,1,0,1,1,1,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,1 +1,1,2,9254,0,1,112.0,1,37,37,6,6,106.1,1,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9070,0,1,117.0,1,5,1,2,10,120.0,1,0,1,1,1,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,2 +1,7,1,9556,0,2,130.0,1,37,37,9,9,130.0,1,0,1,1,1,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,40,140.0,1,1,19,9,9,139.0,0,0,1,1,1,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,10,130.0,0,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,51,1,9070,0,1,135.0,1,3,1,3,5,121.8,0,0,1,1,1,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,135.0,1,19,3,9,4,121.5,1,0,1,1,1,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,136.0,1,19,38,4,8,125.5,1,0,1,1,1,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,142.0,1,3,37,4,8,132.4,1,0,1,1,1,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,142.0,1,34,38,4,7,127.3,0,0,1,1,1,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,1 +1,15,1,9147,0,1,130.0,26,1,1,2,3,130.0,0,0,1,1,1,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,17,2,8014,1,1,133.0,1,19,1,5,5,119.7,1,0,1,1,1,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,6,133.1,1,1,1,90,3,107.0,1,0,1,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,130.0,1,1,1,4,5,123.8,0,0,1,1,1,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9670,0,1,130.0,1,38,37,5,5,123.4,1,0,1,1,1,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,130.0,1,37,36,4,90,127.6,0,0,1,1,0,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +2,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,2 +1,1,5,9070,0,1,122.0,1,37,37,9,9,124.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,3,120.0,1,37,37,9,9,141.0,0,0,1,1,1,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,0 +1,43,1,33,0,1,134.0,1,37,37,1,1,100.0,1,0,1,1,0,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,0 +1,18,1,9773,0,1,125.0,1,19,37,9,5,122.2,0,0,1,0,1,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,113.4,0,0,1,1,1,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,142.0,1,19,39,5,4,141.7,0,0,1,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,137.0,1,1,38,5,8,125.8,0,0,1,0,1,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,141.0,1,1,37,4,3,126.8,1,0,1,1,1,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,1 +1,17,4,9500,0,1,133.0,1,4,4,4,4,130.7,1,0,1,1,1,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,1 +1,1,2,9500,0,1,119.0,1,1,1,4,4,115.2,1,0,1,1,1,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,128.0,1,1,1,4,10,118.9,1,0,1,1,1,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,130.0,1,37,38,7,8,119.3,1,0,1,1,1,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,148.0,1,3,1,4,5,132.8,0,0,1,1,1,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,1 +1,1,5,9500,0,1,143.0,1,37,19,4,4,123.3,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9147,0,1,130.0,1,34,34,99,99,109.8,1,0,1,0,0,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9085,0,2,140.0,1,38,38,9,10,150.0,0,0,1,1,0,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9670,0,42,110.0,1,1,19,9,9,114.2,0,0,1,1,0,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,1 +1,53,1,9147,0,42,140.0,1,3,4,2,1,140.2,0,0,1,1,1,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,145.0,1,19,38,9,7,136.3,1,0,1,1,1,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,38,37,9,9,154.4,0,0,1,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,127.0,1,38,38,9,6,122.8,0,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,120.2,1,0,1,1,0,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,124.0,1,3,1,2,5,121.6,0,0,1,1,1,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,2 +1,17,5,9853,0,1,132.0,1,37,38,5,6,119.1,1,0,1,1,1,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,1 +1,17,6,9670,0,1,110.0,1,1,19,4,10,111.3,0,0,1,1,0,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,120.0,1,38,37,9,9,114.8,1,1,1,1,1,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,140.0,1,19,19,9,3,130.0,0,0,1,1,0,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9254,0,1,120.0,1,37,37,9,9,115.1,1,0,1,0,0,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,142.0,1,1,37,5,7,128.0,0,0,1,1,1,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,168.0,1,37,1,9,4,133.4,1,0,1,1,1,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,1 +1,43,4,9085,0,1,133.1,1,34,34,99,99,125.2,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9147,0,1,123.0,1,1,1,9,7,117.4,1,0,1,1,1,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,1 +1,1,6,9119,0,1,135.0,1,2,1,3,5,123.5,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,2 +1,17,2,9254,0,1,118.0,22,19,37,9,9,110.3,1,0,1,0,1,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,126.0,1,1,19,4,4,116.9,0,0,1,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,117.0,1,1,38,3,9,109.3,0,0,0,0,1,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,0 +4,39,1,8014,1,1,133.1,1,37,37,9,8,113.0,0,0,1,1,1,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,1 +2,42,1,9991,1,6,123.0,1,37,37,9,9,123.0,0,0,1,1,0,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,2 +1,39,1,9003,0,1,100.0,1,37,37,9,5,110.0,0,0,1,1,1,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,127.0,1,37,38,9,5,131.2,1,0,1,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,110.0,1,37,37,9,7,112.5,1,0,1,1,1,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,126.0,1,19,37,7,5,119.4,0,0,1,1,1,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,121.0,1,1,1,4,3,120.5,1,0,1,1,1,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,134.0,1,1,1,3,3,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,3,9500,0,1,150.0,1,19,38,1,1,130.8,1,0,1,1,1,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,17,5,9119,0,1,124.0,11,4,12,2,9,119.5,1,0,1,1,0,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,117.0,1,19,1,4,7,112.1,0,0,1,1,1,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,2 +1,1,5,9500,0,1,132.0,1,37,37,7,7,120.3,1,0,1,1,1,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,1 +2,39,1,9119,0,1,110.0,1,37,37,90,5,150.0,1,0,1,1,0,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9773,0,1,130.0,1,38,37,5,3,122.3,1,0,0,0,1,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,0 +1,1,1,9556,0,1,118.0,1,19,38,9,9,116.3,1,0,1,1,1,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,120.0,1,3,3,3,3,111.6,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,131.0,1,37,19,9,9,134.5,1,0,1,1,0,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,2 +1,17,2,9556,0,1,133.1,1,37,38,9,8,106.0,1,0,1,1,1,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,2,110.0,1,37,37,9,9,112.9,0,0,1,1,1,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,0 +1,17,2,9773,0,1,126.0,1,19,38,9,8,118.7,1,0,1,1,1,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,140.0,1,1,1,3,3,127.6,1,0,1,1,1,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,163.0,1,19,1,5,10,146.6,1,0,0,1,1,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,39,151.0,1,19,37,4,7,151.0,0,0,0,1,1,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,165.0,1,19,37,5,5,142.3,0,0,1,1,1,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9773,0,19,133.1,1,19,1,7,9,115.0,1,0,0,0,0,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,0 +1,1,2,9556,0,1,130.0,1,1,38,3,8,119.5,1,0,1,1,1,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,1 +1,17,3,171,0,1,125.0,1,3,39,2,5,117.0,1,1,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,2,9147,0,1,133.0,1,19,1,5,10,121.8,0,0,1,1,0,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,2 +1,17,1,9119,0,1,131.0,1,1,3,9,10,123.7,1,0,1,1,0,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,148.0,1,37,38,9,8,133.0,1,0,1,1,1,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9254,0,1,120.0,1,3,19,3,9,114.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9773,0,1,114.0,1,1,1,9,9,111.6,1,0,1,1,1,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,115.0,1,38,1,9,8,118.5,0,0,1,1,0,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,2,5,127.0,0,0,1,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,117.0,1,1,1,4,7,109.3,1,0,1,1,1,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,1 +1,53,1,9085,0,42,140.0,1,19,38,9,9,138.2,0,0,0,0,1,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,125.0,1,1,1,3,3,114.5,0,0,1,1,0,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,1 +1,44,1,9147,0,39,130.0,1,19,1,9,3,130.0,0,0,1,1,1,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,145.0,1,38,19,4,9,127.9,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,128.0,1,37,37,9,8,124.3,1,0,1,1,1,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,1 +1,18,3,9070,0,1,138.0,1,38,37,9,7,125.1,1,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,17,5,9119,0,1,131.0,1,19,37,9,7,123.3,1,0,1,1,0,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,130.0,1,37,19,9,8,106.2,1,0,1,1,1,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,131.0,1,19,38,4,5,132.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,43,1,9003,0,1,120.0,1,37,37,5,9,120.0,1,0,1,1,0,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,132.0,1,4,39,2,2,136.6,1,0,1,1,1,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,2 +1,7,1,9500,0,40,170.0,1,1,1,9,4,170.0,0,0,1,1,1,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,1 +1,16,1,9003,0,1,147.0,1,1,37,4,9,140.7,1,0,0,1,1,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,125.0,1,1,1,4,8,115.6,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,150.0,1,37,37,9,6,138.5,0,0,1,1,1,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,1 +1,1,2,9991,1,1,143.0,1,5,1,4,4,131.5,0,0,1,1,0,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,9556,0,1,133.1,6,3,3,4,4,169.2,0,0,0,0,1,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,39,2,9556,0,1,133.1,1,1,1,9,10,100.5,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +1,17,1,9773,0,1,120.0,1,19,38,9,7,117.9,1,0,1,1,1,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,17,1,171,0,1,146.0,1,1,38,9,9,135.5,1,0,0,1,1,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,2 +1,1,3,9254,0,1,122.0,1,19,38,3,10,114.3,1,0,1,1,1,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,9130,0,1,130.0,1,2,3,9,1,117.6,0,0,1,1,0,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,2 +4,43,4,9991,1,12,133.1,1,37,37,9,9,153.0,0,0,1,0,1,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,18,2,9500,0,1,135.0,1,38,37,9,5,125.3,1,0,1,1,1,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,38,37,9,9,133.0,0,0,1,1,1,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,1 +1,17,1,171,0,1,129.0,1,38,37,4,6,128.0,0,0,1,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,128.0,1,2,19,2,4,123.3,1,0,1,1,1,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,130.0,1,19,3,4,2,159.0,0,0,1,1,1,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,1 +2,7,1,8014,1,3,130.0,1,19,38,3,7,130.0,0,0,1,1,1,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,116.0,1,19,37,3,3,109.0,1,0,1,1,1,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,123.0,1,1,1,3,9,116.7,1,0,1,1,1,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,144.0,1,19,19,4,4,130.7,1,0,1,1,1,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,42,1,9500,0,1,100.0,1,19,37,5,7,134.3,1,0,1,1,1,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,143.0,1,1,19,4,4,129.9,0,0,1,1,1,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,1 +2,39,1,9991,1,19,133.1,1,19,37,7,9,137.2,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9853,0,1,123.0,1,19,19,9,7,117.4,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,144.0,1,19,19,5,5,130.3,1,0,1,1,1,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,137.0,1,1,19,4,7,126.7,1,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,4,9773,0,1,124.0,1,3,12,2,9,137.0,1,0,1,1,0,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,135.0,1,37,37,9,8,123.0,1,0,1,1,1,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,123.0,1,38,37,9,7,120.6,1,0,1,0,1,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,0 +2,2,1,9147,0,2,120.0,1,37,37,9,9,120.0,0,0,1,0,0,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,103.0,1,1,3,2,2,100.6,1,1,1,1,1,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,126.0,1,3,1,2,8,123.9,1,0,1,1,1,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,2 +1,17,4,9500,0,1,136.0,1,3,3,2,2,132.5,1,0,1,1,1,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,114.0,1,3,29,3,5,111.9,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,125.0,1,19,1,9,9,130.6,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,147.0,1,37,38,9,5,134.8,1,0,1,1,1,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,131.0,1,1,19,9,9,130.3,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,118.0,1,3,1,2,5,110.0,1,0,1,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,130.0,1,19,19,4,10,116.8,0,0,1,1,1,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,1 +1,43,1,8014,1,6,133.1,1,34,34,0,0,100.0,0,0,0,1,1,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9670,0,12,170.0,1,1,37,3,5,110.0,0,0,1,1,0,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,1 +2,1,1,9991,1,3,160.0,1,1,3,4,9,137.3,0,0,1,1,1,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,108.0,1,19,1,5,5,107.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,121.0,1,3,3,2,2,112.3,1,0,0,0,1,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,0 +1,1,2,9773,0,1,138.0,1,19,1,9,3,133.5,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,136.0,1,38,38,9,9,121.7,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,0 +1,1,1,9500,0,1,132.0,1,38,37,9,7,122.0,1,0,1,1,1,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,1 +1,17,1,9003,0,1,125.0,1,3,3,2,2,100.0,0,0,1,1,0,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,137.0,1,1,1,1,5,131.8,0,0,1,1,1,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,140.0,1,37,37,9,9,148.0,1,0,1,0,0,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,127.0,1,3,1,3,7,137.2,1,0,1,1,1,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,150.0,1,37,19,9,9,150.0,0,0,1,1,0,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,1 +1,43,4,171,0,1,136.0,1,37,37,9,9,123.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,1,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,1 +1,1,1,9853,0,1,162.0,1,37,19,9,8,142.8,0,0,0,1,1,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,127.0,1,1,38,5,7,123.5,1,0,1,1,1,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,133.1,1,19,37,9,9,130.0,0,0,1,0,1,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,1 +1,17,2,9070,0,1,121.0,1,1,19,144,144,111.9,1,0,1,1,0,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,115.0,1,19,37,9,9,114.3,0,0,1,1,0,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,0 +1,10,1,9254,0,1,115.0,24,3,1,9,9,116.1,1,0,1,1,1,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,143.0,1,19,3,4,4,147.2,0,0,1,1,1,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,160.0,1,1,38,4,4,160.0,1,0,1,1,0,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,1 +2,1,1,9238,0,1,134.0,1,37,37,5,5,120.4,0,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,133.1,1,38,37,9,4,120.0,0,0,1,1,0,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,1 +1,18,1,9119,0,1,108.0,1,1,1,4,3,105.6,1,0,1,1,0,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,137.0,1,37,37,9,9,141.0,0,0,1,1,0,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9254,0,1,113.0,1,1,2,5,3,106.7,1,0,0,1,0,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,16,1,9085,0,1,140.0,1,1,1,9,9,127.1,1,0,1,1,1,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,1 +1,53,1,9238,0,42,140.0,1,37,37,9,10,136.9,1,0,1,1,1,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,1 +4,39,1,8014,1,19,133.1,1,37,37,9,7,134.5,0,0,1,1,1,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,1 +1,1,2,9773,0,1,125.0,1,19,1,4,5,122.2,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9070,0,1,134.0,1,1,19,3,3,127.7,1,0,1,0,1,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,17,1,9147,0,1,96.0,1,38,37,6,4,96.0,1,0,1,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,0 +1,10,1,9085,0,1,134.0,1,37,37,5,5,134.0,1,0,1,1,1,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,143.0,1,1,3,3,3,149.0,1,0,1,1,1,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,0 +1,18,3,9070,0,1,142.0,1,1,37,4,7,130.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,7,1,9003,0,3,140.0,1,3,19,2,10,140.0,0,0,1,0,0,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,151.0,1,38,37,9,5,138.4,1,0,1,1,1,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,143.0,1,19,19,4,4,135.3,1,0,1,1,1,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,133.0,1,1,19,9,9,132.0,0,0,1,1,0,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,19,133.1,1,37,37,9,5,135.5,0,0,1,1,1,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9254,0,1,134.0,1,37,37,9,9,133.3,1,0,0,1,1,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,0 +1,1,3,9085,0,1,135.0,1,3,2,4,3,121.0,1,0,1,1,1,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,140.0,1,1,1,4,4,123.5,1,0,1,1,1,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,188.0,1,3,3,2,2,178.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9238,0,1,126.0,1,30,19,0,2,121.5,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,131.0,1,3,19,5,5,127.2,1,0,1,1,1,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,1 +1,17,4,9853,0,1,143.0,1,37,37,9,5,127.3,1,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,0 +1,17,2,9238,0,1,111.0,1,19,38,9,9,110.7,1,0,1,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,140.0,1,19,38,9,7,125.7,1,0,1,1,0,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,2 +1,17,6,9500,0,1,126.0,1,19,37,3,9,119.4,1,0,1,1,1,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,131.0,1,1,1,4,9,122.3,0,0,1,1,0,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,128.0,1,1,19,9,8,100.0,1,0,1,1,1,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,138.0,1,19,19,5,1,130.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,1,140.0,1,3,3,1,1,140.0,1,0,1,1,1,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,3,130.0,1,1,19,5,9,130.0,0,0,1,1,0,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9773,0,1,131.0,1,38,1,5,7,131.0,1,0,1,1,0,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,19,133.1,1,19,19,9,7,140.0,0,0,0,0,1,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,133.1,1,37,37,9,9,126.5,0,0,1,1,1,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9500,0,1,132.0,1,37,37,9,7,128.3,1,0,1,1,1,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,1 +1,16,1,171,0,1,145.0,1,3,3,3,3,155.0,1,0,1,1,1,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,2 +4,1,1,9991,1,1,140.0,1,37,37,9,7,139.0,0,0,1,1,1,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,2 +1,17,2,9070,0,1,152.0,1,39,39,3,3,134.2,1,0,1,1,0,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,1,1,9500,0,1,141.0,1,19,19,7,9,139.8,0,0,1,1,1,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,1 +1,1,4,9670,0,1,133.0,1,1,2,4,7,121.1,1,0,1,1,1,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,1 +1,15,1,9147,0,1,135.0,26,1,1,9,7,135.0,0,0,0,1,0,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,2 +2,1,1,9991,1,1,144.0,1,19,19,9,9,151.4,0,0,1,1,1,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,1 +1,18,4,9853,0,1,118.0,1,19,37,9,6,111.4,1,0,0,0,1,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9500,0,1,134.0,1,38,1,9,6,133.5,1,0,1,1,0,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,37,37,9,6,107.0,0,0,1,1,0,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,141.0,1,38,38,9,9,128.4,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,133.0,1,1,1,9,9,128.5,1,0,1,1,1,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,1 +1,51,1,9085,0,40,120.0,1,3,3,4,2,125.0,0,0,1,1,1,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,150.0,1,37,38,3,7,134.5,0,0,1,1,1,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,127.0,1,3,19,4,4,116.9,0,0,1,1,0,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,136.0,1,2,38,143,163,129.7,1,0,1,1,0,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,2 +1,1,2,9773,0,1,159.0,1,1,1,3,3,151.0,1,0,1,1,1,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,165.0,1,37,38,9,8,152.4,1,0,1,1,1,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,1 +1,1,6,9500,0,1,139.0,1,1,1,4,4,124.5,1,0,1,1,1,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,134.0,1,1,1,5,3,128.4,1,0,1,1,1,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,1 +1,17,2,9238,0,1,133.0,1,2,1,3,4,136.2,1,0,1,1,1,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,120.0,1,19,1,8,7,115.1,1,0,1,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,131.0,1,1,39,5,3,122.6,1,0,1,1,1,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,8014,1,1,130.0,1,1,1,9,9,118.1,0,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,1 +1,39,9,9991,1,1,120.0,1,38,38,9,5,144.8,0,0,1,1,0,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9500,0,19,133.1,1,37,37,9,9,129.0,1,0,1,1,1,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,138.0,1,1,19,4,7,123.0,1,0,0,0,1,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,143.0,1,1,37,9,9,135.0,1,0,1,1,1,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,120.0,1,19,1,9,3,120.0,1,0,1,1,0,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,162.0,1,37,1,9,9,165.2,1,0,1,1,1,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,142.0,1,37,37,5,5,131.3,1,0,1,1,1,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,1 +1,1,3,171,0,1,125.0,1,38,37,4,9,115.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,120.0,1,38,37,5,3,110.5,0,0,1,1,1,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,1 +1,42,1,9773,0,6,120.0,1,34,34,0,0,122.0,1,0,1,1,1,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,162.0,1,1,38,4,5,138.6,1,0,1,1,1,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9500,0,1,152.0,1,1,1,4,4,141.0,1,0,1,1,1,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,139.0,1,3,19,3,5,120.8,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,135.0,1,1,1,3,5,130.1,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,1,9670,0,1,127.0,1,3,3,1,1,121.4,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9556,0,1,135.0,1,1,1,1,1,131.5,0,0,1,1,0,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,2 +1,17,3,9670,0,1,147.0,1,37,37,8,8,128.8,0,0,0,1,1,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,133.1,41,38,38,9,8,134.8,0,0,1,1,1,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,133.1,1,37,37,90,8,128.2,0,0,1,1,1,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,131.0,1,1,37,4,4,126.1,1,0,1,1,1,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,9,9,125.3,1,0,1,1,0,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,0 +2,39,1,8014,1,3,110.0,1,37,37,9,9,160.5,0,0,1,1,1,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,138.0,1,38,1,9,4,127.5,1,0,1,1,1,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,2 +1,39,1,9238,0,1,170.0,1,38,19,9,9,140.0,1,0,1,1,1,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,1,19,4,10,142.3,1,0,1,1,1,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,154.0,1,38,37,9,9,140.4,0,0,1,1,1,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,133.1,41,19,1,9,9,105.0,1,0,1,0,1,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +2,44,1,9085,0,39,160.0,1,37,37,192,192,160.0,0,0,1,1,1,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,141.0,1,38,38,9,9,142.3,1,0,1,1,1,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,119.0,1,37,37,7,7,112.0,1,0,1,0,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,137.0,1,37,37,9,9,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,1 +4,39,1,9670,0,1,100.0,1,37,37,4,10,120.0,0,0,0,1,1,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,130.0,1,3,3,2,2,131.1,0,0,1,1,0,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,120.0,1,1,19,9,3,116.9,1,0,0,0,0,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,42,1,9500,0,1,100.0,1,1,19,4,8,136.0,1,0,1,1,1,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,1 +1,1,2,171,0,1,125.0,1,38,19,9,9,117.3,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,152.0,1,1,38,4,9,160.4,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,12,133.1,1,37,37,9,7,139.4,0,0,0,1,1,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,2 +1,1,3,9070,0,1,150.0,1,1,1,4,8,131.5,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,7,1,9556,0,4,190.0,1,5,5,2,2,190.0,1,0,1,1,0,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,0 +1,17,3,9238,0,1,121.0,1,1,1,4,5,117.2,0,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,130.0,1,37,37,9,7,113.0,1,0,1,0,0,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,123.0,1,19,19,4,10,124.4,1,0,1,1,1,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,1 +1,17,2,9238,0,1,133.0,1,37,37,3,9,119.7,0,1,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,138.0,1,38,19,9,10,133.1,0,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,108.0,1,38,38,7,7,105.2,1,0,1,1,0,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,0 +1,1,3,171,0,1,115.0,1,9,1,6,6,108.7,1,0,1,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,4,4,119.8,1,0,1,1,1,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,1 +1,1,6,9119,0,1,126.0,1,19,19,7,3,116.6,1,0,1,1,0,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,1 +2,39,1,9500,0,1,133.1,1,37,37,9,9,130.1,0,0,1,0,0,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,124.0,1,37,38,9,3,114.2,0,0,1,1,1,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,1 +1,17,3,9147,0,1,137.0,1,1,1,4,7,124.4,1,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,2 +1,39,1,9130,0,19,133.1,1,37,37,9,10,156.4,1,0,0,1,0,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,0 +1,18,5,9853,0,1,121.0,1,38,19,7,7,117.5,1,0,0,0,1,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,1,2,9238,0,1,117.0,1,19,1,9,8,110.0,1,0,0,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9147,0,1,148.0,1,1,19,9,6,118.4,1,0,1,1,0,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,133.0,1,1,1,4,4,100.0,0,0,1,1,1,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,17,1,9238,0,1,158.0,1,1,1,5,6,140.5,0,0,1,1,1,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,157.0,1,19,38,9,7,146.2,1,0,1,1,1,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9119,0,1,131.0,1,3,1,4,1,135.9,0,0,1,1,0,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,38,37,5,10,117.8,1,0,1,1,0,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,1 +1,1,2,9119,0,1,126.0,1,1,38,141,192,122.5,1,0,1,1,0,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,117.0,1,37,37,0,4,120.5,1,0,1,1,0,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9254,0,1,110.0,1,12,19,9,9,125.0,0,0,1,0,0,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,0 +1,18,1,9147,0,1,121.0,1,19,3,5,5,115.8,1,0,1,1,1,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,1 +1,39,1,9238,0,19,133.1,1,37,37,9,9,139.0,0,0,0,0,0,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9003,0,3,130.0,1,3,3,6,2,130.0,1,0,1,1,0,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,132.0,1,19,37,3,5,125.4,1,0,1,0,1,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,133.1,1,38,38,4,7,115.6,1,0,1,0,1,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,129.0,1,1,2,3,1,125.9,1,0,1,1,1,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,37,37,9,9,143.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,126.0,1,3,19,3,3,115.2,0,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,123.0,1,19,38,9,10,116.7,1,0,1,1,1,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,1 +1,17,2,9254,0,1,125.0,1,37,37,9,8,122.6,1,0,0,0,1,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,39,1,9119,0,1,160.0,1,38,37,7,7,129.0,0,0,1,1,0,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,3,19,2,3,133.8,1,0,1,1,1,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,120.0,1,19,19,4,7,115.5,1,0,0,1,0,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,120.0,1,38,38,3,3,140.0,0,0,1,1,1,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9238,0,1,127.0,1,1,19,4,3,141.7,1,0,1,1,0,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,111.0,1,37,37,9,10,95.8,1,0,1,0,0,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,130.0,1,38,1,9,4,140.0,1,0,1,1,1,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,1 +1,1,2,9147,0,1,131.0,1,1,1,9,9,118.8,0,0,1,1,0,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,161.0,1,1,19,4,4,152.3,0,0,1,1,1,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,124.0,1,38,38,9,9,115.6,0,0,1,1,0,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,160.0,1,3,3,1,2,149.2,0,0,1,1,0,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,16,3,9853,0,1,134.0,1,19,37,9,9,121.1,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,2 +1,43,2,9991,1,1,140.0,1,37,37,5,5,124.3,1,0,1,0,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,127.0,1,38,37,5,7,123.9,1,0,1,1,1,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,120.0,1,19,37,6,8,160.0,0,0,1,1,0,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,1 +1,39,1,9085,0,1,133.1,1,3,3,4,2,144.9,1,0,1,1,1,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,130.0,1,1,19,3,10,130.0,1,0,1,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,1 +1,42,1,9003,0,1,130.0,1,3,2,2,6,105.3,0,0,1,0,0,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9991,1,1,130.0,1,37,37,9,9,127.6,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,100.0,1,1,38,4,6,104.8,0,0,0,0,1,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,0 +1,1,5,9070,0,1,125.0,1,3,3,2,2,140.8,1,0,1,1,0,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,133.1,1,34,38,0,4,147.0,0,0,1,1,1,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,126.0,1,34,34,0,0,142.4,0,0,1,1,1,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,121.0,1,19,38,4,10,114.4,0,0,1,1,1,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,133.1,1,37,37,5,0,111.5,0,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,130.0,1,1,19,5,5,129.1,1,0,1,1,1,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,3,1,4,6,130.0,0,0,1,1,0,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,2 +1,39,1,9500,0,1,123.0,1,19,1,1,1,140.8,0,0,1,1,1,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,1 +1,44,1,9070,0,39,130.0,1,1,1,4,10,130.0,1,0,1,1,1,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,1 +4,39,1,9085,0,1,133.1,1,34,34,0,0,128.2,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,128.0,1,37,37,9,9,135.7,1,0,1,1,0,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,135.0,1,38,38,4,7,121.7,1,0,1,1,1,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,2 +1,43,1,9085,0,1,110.0,25,38,38,9,6,117.2,1,0,1,1,0,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,1 +1,43,3,9500,0,1,140.0,1,1,19,9,7,127.5,1,0,0,1,1,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,1 +1,17,3,9238,0,1,133.1,1,41,1,2,3,117.0,1,0,1,1,1,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9254,0,1,112.0,1,37,37,9,9,108.5,0,0,1,1,0,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,51,1,9238,0,39,140.0,1,38,38,5,7,129.1,1,0,1,1,1,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,122.0,1,38,19,9,9,126.6,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,123.0,1,1,1,4,4,114.4,0,0,1,1,0,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,0 +1,18,4,171,0,1,133.0,1,1,4,9,5,129.2,1,0,0,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,128.0,1,19,19,9,5,121.7,1,0,1,1,1,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,1 +1,39,1,9130,0,1,150.0,1,19,19,9,5,160.0,1,0,1,1,0,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,160.0,1,19,37,5,3,152.0,0,0,1,1,1,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,53,1,9085,0,42,140.0,1,19,37,9,8,142.5,1,0,1,1,1,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,130.0,1,9,19,4,1,134.2,1,0,1,1,1,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,3,9254,0,1,121.0,1,19,19,9,6,125.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,1,128.0,1,19,1,9,10,157.4,1,0,1,1,1,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,146.0,1,37,37,9,7,149.2,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9853,0,12,133.1,1,37,37,7,8,103.0,0,0,1,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,143.0,1,19,19,5,6,142.3,0,0,1,1,1,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,2 +1,1,2,9085,0,1,118.0,1,1,19,3,3,112.4,1,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,2 +2,43,1,9991,1,1,100.0,1,37,37,9,9,128.2,0,0,1,1,0,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,118.0,1,38,38,5,5,110.0,0,0,1,1,1,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9147,0,1,136.0,1,38,38,9,9,127.3,1,0,1,1,0,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,170.0,1,19,19,8,8,176.7,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,124.0,41,19,38,9,9,123.3,1,0,1,1,1,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,1 +1,1,4,9070,0,1,170.0,1,3,3,2,2,165.8,1,0,1,1,0,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,3,37,9,9,142.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9147,0,1,122.0,1,1,38,4,5,116.4,0,0,1,1,0,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,150.0,1,1,1,4,4,138.1,1,0,1,1,1,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,2 +1,17,6,9238,0,1,138.0,1,3,3,1,2,123.0,1,0,1,1,1,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,135.0,1,19,12,9,7,137.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9070,0,1,125.0,1,1,3,3,3,128.9,0,0,1,1,1,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,128.0,1,38,19,9,10,125.2,1,0,1,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,2 +1,42,1,9003,0,1,140.0,1,1,3,4,2,140.0,1,0,1,1,0,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,2 +1,39,1,9500,0,19,133.1,1,37,38,151,161,143.7,0,0,1,1,1,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,118.0,1,38,38,7,7,115.2,1,0,1,1,1,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,152.0,1,19,37,9,8,135.6,1,0,1,1,0,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,12,110.0,1,34,34,0,0,157.8,0,0,1,1,1,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,1 +1,1,6,9147,0,1,112.0,1,38,38,9,9,117.3,1,0,1,1,1,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,1 +1,17,3,9147,0,1,118.0,1,1,19,5,7,118.0,0,0,1,1,1,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,2 +1,44,1,9070,0,39,120.0,1,1,19,5,8,119.8,0,0,1,1,0,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9670,0,1,133.1,1,19,19,3,9,118.0,0,0,1,1,0,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,159.0,1,1,19,9,9,151.3,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,118.0,1,1,38,5,7,120.8,1,0,1,1,1,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,132.0,1,1,37,8,9,128.0,1,0,1,1,1,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,1 +1,42,1,9147,0,1,135.0,1,19,1,4,4,120.0,0,0,1,0,0,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9670,0,1,122.0,1,1,38,3,3,114.3,1,0,1,1,1,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,171,0,1,131.0,1,1,1,0,3,149.9,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +4,39,2,9556,0,1,133.1,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,5,9119,0,1,126.0,1,12,19,4,5,122.5,1,0,1,1,0,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,145.0,1,2,38,3,8,136.3,1,0,1,1,1,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,2 +1,15,1,9147,0,1,150.0,1,38,1,9,1,150.0,0,0,1,1,0,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,150.0,1,3,39,3,7,126.4,0,0,1,1,0,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,2 +1,17,2,9773,0,1,148.0,1,3,38,2,6,144.2,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,124.0,1,37,19,9,3,116.3,1,0,1,1,1,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +2,39,1,9003,0,1,130.0,1,1,37,9,1,122.0,0,0,0,0,0,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,160.0,1,19,38,5,7,139.0,1,0,1,1,1,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,157.0,1,3,2,3,6,150.9,1,0,1,1,1,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,0 +1,42,1,9119,0,1,120.0,1,1,1,5,7,108.6,0,0,1,0,0,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,0 +1,16,3,9773,0,1,138.0,1,37,38,4,9,134.2,1,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,110.0,1,0,1,1,1,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,0 +4,39,1,9853,0,1,143.0,1,37,1,9,10,140.0,0,0,0,0,1,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,130.0,1,3,19,4,8,133.0,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,19,38,6,7,140.0,1,0,1,1,0,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,132.0,1,2,2,6,6,128.5,0,0,1,1,1,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,0 +1,1,2,171,0,1,135.0,1,19,19,4,7,149.0,1,0,1,1,0,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,130.0,1,19,38,3,9,126.5,1,0,1,1,1,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,125.0,1,19,38,9,8,121.5,0,0,1,1,1,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,37,37,9,7,129.0,0,0,1,1,1,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,0 +1,7,3,9130,0,3,130.0,1,37,26,90,10,130.0,0,0,1,0,0,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,2,9500,0,1,123.0,1,19,19,7,7,120.8,1,0,1,1,1,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,1 +1,18,2,9853,0,1,168.0,1,1,19,3,9,126.8,1,0,1,1,0,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,2 +1,44,1,9085,0,39,140.0,1,3,1,4,3,140.0,1,0,1,1,1,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,148.0,1,19,19,9,9,138.7,0,0,1,1,1,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,1 +1,18,1,171,0,1,110.0,1,19,2,5,5,117.7,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9070,0,1,136.0,1,37,38,9,9,125.2,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +2,39,1,8014,1,1,133.1,1,37,37,5,4,134.5,0,0,1,1,1,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,2 +1,42,1,9119,0,1,150.0,1,38,37,5,8,133.5,1,0,1,1,0,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,140.0,1,1,3,4,6,139.2,0,0,0,1,1,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,125.0,1,19,19,5,5,117.0,0,0,1,1,1,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,1 +1,39,1,9147,0,12,133.1,1,19,37,7,9,118.2,0,0,1,1,1,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,0 +1,1,2,9147,0,1,121.0,1,1,19,9,9,113.7,1,0,1,0,1,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,0 +1,43,1,9130,0,1,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,131.0,1,3,19,2,3,132.8,1,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,1 +1,17,3,9500,0,1,136.0,1,37,38,4,5,126.0,1,0,1,1,1,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,1 +1,1,1,9853,0,1,145.0,1,37,37,9,5,146.8,0,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,123.0,1,1,1,4,9,116.7,1,0,1,1,0,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,0 +1,18,1,171,0,1,121.0,1,1,1,4,3,116.8,1,0,1,1,1,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,141.0,1,38,1,9,4,129.0,1,0,1,1,1,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,133.1,1,34,34,0,0,130.0,0,0,1,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,126.0,1,1,3,4,3,122.5,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,0 +2,1,1,9254,0,1,136.0,1,37,37,9,9,122.7,0,0,1,1,1,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,37,37,9,10,100.0,0,0,1,1,0,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9500,0,1,133.1,1,38,19,7,9,115.5,1,0,1,1,0,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,1 +1,1,1,9991,1,1,131.0,1,19,37,9,9,118.4,1,0,1,1,1,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,2 +1,1,1,9147,0,1,153.0,1,1,38,4,3,146.7,0,0,1,1,1,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,1 +1,43,1,8014,1,12,114.0,1,34,34,0,99,110.0,0,0,1,1,1,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,147.0,1,1,1,5,5,134.9,0,1,1,1,1,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,1 +1,1,2,9085,0,1,156.0,1,40,40,3,7,150.9,1,0,1,1,1,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,137.0,1,38,38,5,7,122.7,1,0,1,1,1,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,123.0,1,1,19,4,5,117.8,0,0,1,1,0,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,2 +1,17,1,9238,0,1,135.0,1,37,37,8,6,127.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,131.0,1,37,37,9,9,123.0,1,0,1,1,1,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,2 +1,17,2,9670,0,1,123.0,1,3,1,3,1,116.7,0,0,1,1,1,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,1 +1,7,1,9085,0,40,140.0,1,1,19,5,5,140.0,1,0,1,1,1,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,1 +4,39,1,9500,0,19,133.1,1,38,19,5,7,140.0,0,0,1,1,1,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,127.0,1,3,19,3,9,127.0,1,0,1,1,0,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,1 +1,17,2,8014,1,1,120.0,1,19,1,5,10,114.8,1,0,1,1,1,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9670,0,19,133.1,1,37,37,9,7,130.0,0,0,0,1,0,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,171,0,1,131.0,41,19,1,4,7,131.4,1,0,1,1,0,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,16,2,171,0,1,145.0,1,3,3,2,2,143.6,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,120.0,1,19,38,6,6,120.0,1,0,1,1,0,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,1 +1,17,6,9238,0,1,131.0,1,1,3,4,2,131.7,1,0,1,1,1,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,137.0,1,3,1,4,9,128.6,0,0,1,1,1,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,170.0,1,19,19,9,7,170.0,1,0,0,1,0,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,17,4,9853,0,1,122.0,1,38,37,9,9,118.9,1,0,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,1 +1,17,5,9500,0,1,148.0,1,1,19,4,8,130.2,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9003,0,19,133.1,1,1,19,9,8,120.0,0,0,0,0,0,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,2,9147,0,1,143.0,1,19,38,9,7,132.2,1,0,1,1,1,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9556,0,1,132.0,1,38,37,7,7,119.0,1,0,1,1,1,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,133.1,1,3,1,4,4,95.0,0,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,154.0,1,3,1,2,1,137.2,0,0,1,1,0,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,2 +1,1,1,9853,0,1,129.0,1,38,37,6,6,138.1,0,0,1,1,1,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,17,2,9670,0,1,129.0,1,1,19,5,5,119.2,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,43,1,9500,0,1,137.0,1,3,3,2,2,115.0,0,0,1,1,1,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,1 +1,17,2,9254,0,1,115.0,1,19,19,9,7,113.3,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,133.0,1,38,38,7,7,125.3,1,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,110.0,1,37,37,7,10,150.0,0,0,1,0,1,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,19,133.1,1,19,19,144,141,131.5,0,0,0,1,1,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,133.0,1,38,1,2,4,126.0,0,0,1,1,1,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,15,1,9147,0,1,133.1,41,41,1,3,4,100.0,0,0,0,0,0,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,0 +1,10,2,9773,0,1,154.4,22,19,38,3,5,154.4,1,0,1,0,1,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,9070,0,39,100.0,1,1,1,4,4,106.0,0,0,1,1,0,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,135.0,1,38,19,8,8,126.3,1,0,0,1,1,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,120.0,41,1,1,9,6,114.8,1,0,1,1,1,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,2 +1,17,1,9085,0,1,124.0,1,19,38,7,7,113.9,1,0,1,1,1,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,1 +1,1,6,9254,0,1,126.0,1,38,37,5,7,123.9,1,0,1,1,1,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,125.0,1,37,37,9,9,121.5,1,0,1,1,0,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,1 +1,1,6,9773,0,1,125.0,1,1,1,5,4,122.2,0,0,1,1,0,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,135.0,1,19,19,4,5,126.8,1,0,1,1,0,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9238,0,1,133.0,1,1,37,7,9,127.4,1,0,1,1,1,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,3,9070,0,1,127.0,1,19,38,5,7,141.0,1,0,1,1,0,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +2,39,1,9119,0,3,120.0,1,37,37,4,7,122.5,0,0,1,0,1,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,2,9147,0,1,150.0,1,19,37,9,7,101.0,0,0,0,0,1,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,0 +1,7,1,9003,0,4,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,1 +1,17,5,9500,0,1,143.0,1,38,1,9,7,130.6,1,0,1,1,1,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,129.0,1,38,19,5,7,124.0,1,0,1,1,1,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,1 +1,17,2,9500,0,1,140.0,1,1,1,5,10,128.5,1,0,1,1,1,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,2 +4,39,1,8014,1,19,100.0,1,1,37,9,1,111.5,0,0,1,1,0,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,0 +2,39,2,9556,0,1,110.0,1,19,38,9,9,112.8,0,0,1,1,1,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,2 +1,1,1,9147,0,1,116.0,1,19,19,5,8,127.9,0,0,0,0,1,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,0 +1,43,4,171,0,1,117.0,1,19,12,9,10,109.3,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,130.0,1,1,38,5,5,122.3,1,0,1,1,1,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,1 +1,15,1,9119,0,1,130.0,26,38,3,9,2,137.0,1,0,1,1,0,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,2 +1,39,1,9556,0,1,133.1,1,38,19,9,6,100.0,1,0,1,1,1,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,150.0,1,3,1,3,9,154.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,43,1,9147,0,1,131.0,1,3,19,2,9,126.1,0,0,1,1,1,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,2 +1,1,6,9773,0,1,145.0,1,1,19,4,4,131.0,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,136.0,1,19,38,4,7,140.9,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,155.0,1,19,37,4,5,117.5,0,0,1,1,1,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,2 +1,1,3,9147,0,1,128.0,1,3,3,5,10,116.5,0,0,1,1,0,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,17,4,9254,0,1,133.0,1,37,37,5,8,128.5,1,0,1,1,1,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,0 +1,17,1,9119,0,1,141.0,1,37,1,9,2,133.0,1,0,1,1,0,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,2 +1,51,1,8014,1,1,120.0,1,1,1,4,4,128.5,0,0,0,0,0,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,0 +1,43,1,9003,0,1,120.0,1,3,3,1,2,115.0,0,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,136.0,1,19,19,4,7,136.0,0,0,1,1,1,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,1 +1,17,1,9070,0,1,116.0,1,38,38,9,9,123.7,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,125.0,1,19,19,4,8,117.0,1,0,1,1,1,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,135.0,1,1,38,5,7,137.5,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,140.0,1,19,19,7,7,124.6,1,0,1,1,1,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,2 +1,39,1,9670,0,19,133.1,1,1,1,4,7,100.0,0,0,0,0,1,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,122.0,1,37,37,9,9,131.0,1,0,1,1,1,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,0 +2,43,1,9773,0,1,160.0,1,37,37,5,0,160.0,0,0,0,0,0,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9670,0,1,113.0,1,37,19,9,9,110.2,1,0,1,1,1,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,125.0,1,37,37,9,9,126.0,1,0,0,1,1,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,1 +1,43,1,171,0,39,140.0,1,38,37,9,7,140.0,0,0,1,0,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,16,3,9853,0,1,134.0,1,37,19,9,5,121.4,1,0,1,1,1,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,2 +1,1,1,8014,1,1,120.0,1,1,37,7,3,122.8,0,0,1,1,1,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,1,1,4,2,127.7,0,0,1,1,1,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,2 +2,39,1,9991,1,1,120.0,1,19,37,3,9,132.9,0,0,1,1,0,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,138.0,1,1,38,4,9,132.5,1,0,1,1,1,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,133.1,1,19,37,7,7,126.0,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +5,39,1,9500,0,1,110.0,1,38,38,9,9,110.0,0,0,1,0,1,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,0 +5,7,1,9500,0,40,150.0,1,37,37,4,9,150.0,0,0,1,1,1,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,1 +1,17,1,9070,0,1,126.0,1,19,38,9,7,118.7,0,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,16,4,9254,0,1,126.0,1,38,37,9,7,118.7,1,0,1,1,1,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,3,9773,0,1,110.0,1,19,19,5,5,105.5,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,1 +1,39,1,9238,0,9,133.1,1,34,34,0,0,118.0,0,0,1,1,1,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,140.0,1,3,2,4,6,133.4,1,0,1,0,0,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,2 +1,1,1,171,0,1,134.0,1,3,2,2,2,141.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,6,9773,0,1,133.1,1,1,1,90,90,129.6,0,0,1,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,133.1,1,38,19,5,6,138.0,0,0,0,1,0,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,2 +1,17,3,9500,0,1,156.0,1,19,37,4,9,132.3,1,0,1,1,0,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,1 +1,44,1,9085,0,39,140.0,1,3,3,4,2,140.0,1,0,1,1,1,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,1 +1,43,1,171,0,1,116.0,1,3,1,2,3,117.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,141.0,1,38,19,9,6,126.3,1,0,1,1,1,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,44,1,9238,0,39,140.0,1,1,19,191,102,143.0,0,0,1,1,1,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,1 +1,43,5,8014,1,1,110.0,1,34,34,0,0,110.0,0,0,1,1,0,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9238,0,1,143.0,1,1,11,4,3,128.0,1,0,1,1,1,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +3,17,1,9238,0,1,138.0,1,37,37,9,9,133.5,1,0,1,1,1,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,2 +1,7,1,9119,0,3,150.0,1,3,2,2,2,150.0,0,0,1,1,1,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9003,0,39,150.0,1,19,1,1,1,150.0,0,0,1,1,0,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,2 +1,17,1,9085,0,1,134.0,1,19,37,2,7,131.2,0,0,1,1,1,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,171,0,1,133.1,1,37,37,9,7,100.0,0,0,0,1,0,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,18,1,9556,0,1,133.1,1,3,19,2,8,106.0,1,0,1,1,0,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,1 +1,17,2,9500,0,1,135.0,1,19,19,9,4,129.8,1,0,1,1,1,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,1 +1,39,1,33,0,1,130.0,1,38,37,9,6,102.5,0,0,0,0,0,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,0 +1,18,1,9500,0,1,144.0,1,37,37,6,6,127.5,1,0,1,1,1,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,130.0,1,37,38,9,9,133.9,1,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,1 +2,44,1,9003,0,39,140.0,1,37,37,4,7,140.0,0,0,1,1,0,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,0 +1,1,4,9773,0,1,137.0,1,3,19,2,3,139.8,1,1,1,1,1,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,2 +1,1,1,9991,1,1,130.0,1,2,37,3,9,131.4,0,0,1,1,0,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,135.0,1,3,3,1,1,125.8,1,0,1,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,1 +1,18,1,9238,0,1,147.0,1,38,34,4,0,130.2,0,0,1,1,1,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +5,17,5,9500,0,1,143.0,1,37,38,5,8,133.5,1,0,1,1,1,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,99.0,1,1,3,5,10,100.0,1,0,1,1,0,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,1 +1,16,2,9147,0,1,131.0,1,37,37,9,9,135.9,1,0,1,1,0,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,146.0,1,38,37,6,6,143.9,0,0,1,1,1,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,1 +1,17,1,9085,0,1,139.0,1,38,38,5,3,136.2,0,0,1,1,1,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,153.0,1,3,1,2,8,137.6,1,0,1,1,1,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,17,2,9085,0,1,133.1,1,19,38,9,1,100.0,1,0,0,0,0,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,0 +1,1,2,9773,0,1,121.0,1,19,19,9,9,122.8,0,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,141.0,1,37,38,9,10,138.9,0,0,1,1,1,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,1,6,9500,0,1,117.0,1,4,12,5,9,119.8,1,0,1,1,1,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,1 +1,17,4,9119,0,1,122.0,62,1,1,191,171,121.0,1,0,1,1,0,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,38,19,3,3,98.6,0,0,1,1,1,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,140.0,1,38,37,5,6,124.3,1,0,1,1,1,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,140.0,1,37,37,9,9,127.7,1,0,1,1,1,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,121.0,1,37,37,9,9,124.2,1,0,1,1,1,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,1 +1,18,1,9130,0,1,146.0,1,3,3,5,2,137.8,0,0,1,1,0,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,3,120.0,1,1,1,7,10,120.0,1,0,1,0,0,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,120.0,1,37,37,7,8,120.0,1,0,0,0,1,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,178.0,1,19,1,4,8,174.7,0,0,1,1,1,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,1 +1,17,5,9254,0,1,114.0,1,38,1,5,9,109.5,0,0,1,1,0,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,143.0,1,38,38,9,9,140.0,0,0,1,1,0,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,160.0,1,38,37,9,5,159.3,0,0,1,1,1,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,143.0,1,38,34,9,9,133.6,1,0,1,1,1,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,1 +4,43,1,9500,0,19,100.0,1,34,34,0,0,110.0,0,0,1,1,0,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,1 +1,1,2,9254,0,1,125.0,1,1,19,4,1,121.5,1,0,1,1,0,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,19,7,3,120.0,1,0,1,1,0,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,3,120.0,1,19,1,9,5,134.0,0,0,1,1,1,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,0 +1,39,1,9254,0,1,160.0,1,19,37,7,10,100.0,0,0,1,1,0,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,2 +1,15,1,171,0,1,130.0,26,1,1,2,9,130.0,0,0,1,1,0,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,2 +1,1,1,171,0,1,140.0,1,19,37,5,6,137.9,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,123.0,1,19,37,9,9,124.1,1,0,1,1,1,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,140.0,1,38,38,6,6,140.0,0,0,1,1,1,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,9991,1,9,133.1,1,34,34,0,0,118.4,0,0,1,0,1,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,6,9254,0,1,125.0,1,1,1,4,3,120.5,1,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,1 +1,1,6,171,0,1,126.0,1,10,10,4,4,130.2,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,120.0,1,1,19,4,7,120.0,0,0,1,1,0,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,2 +1,17,5,9773,0,1,143.0,1,1,1,7,7,136.7,1,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,42,1,9147,0,1,130.0,1,37,38,9,1,130.0,1,0,1,1,1,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,1,130.0,1,37,37,9,9,124.0,0,0,1,1,0,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,1 +1,17,2,9238,0,1,136.0,1,1,3,3,4,126.6,1,0,1,1,1,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,127.0,1,19,1,5,7,118.3,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,2 +4,39,1,9991,1,1,147.0,1,19,19,7,8,147.9,0,0,1,1,1,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,2 +1,1,4,9773,0,1,124.0,1,19,37,99,90,124.0,0,0,1,0,1,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +2,43,1,9003,0,1,133.1,1,37,37,9,7,136.0,0,0,1,1,0,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,1 +1,1,1,9085,0,1,140.0,1,12,1,1,90,141.8,0,0,1,1,1,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,133.1,1,37,37,191,154,95.0,0,0,1,1,1,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,147.0,1,2,3,4,8,145.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +2,7,1,9238,0,3,130.0,1,37,19,4,5,130.0,0,0,1,1,1,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,1 +1,7,2,9085,0,3,130.0,1,3,3,1,1,130.0,0,0,1,0,1,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,0 +2,39,2,9147,0,3,130.0,1,3,37,9,9,103.4,0,0,1,1,1,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,0 +1,17,1,9085,0,1,135.0,1,1,19,4,10,125.6,1,0,1,1,1,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,1,1,5,5,96.0,1,0,1,0,0,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +5,39,1,9853,0,19,133.1,1,38,1,5,3,105.5,0,0,0,1,1,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,136.0,1,37,37,7,7,121.7,1,0,1,1,1,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9119,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,0,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,19,133.1,1,19,19,4,4,100.0,0,0,1,1,0,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,2 +1,1,1,171,0,1,124.0,1,2,2,3,2,118.4,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,17,1,9085,0,1,120.0,1,2,3,2,2,116.1,0,0,1,1,1,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,162.0,1,37,37,9,9,142.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,131.0,1,37,1,9,9,135.9,1,0,1,1,1,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,37,37,9,7,100.0,0,0,1,1,0,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,1 +1,43,1,9500,0,1,127.0,1,19,19,4,7,121.1,0,0,1,1,1,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,143.0,1,37,37,9,5,131.6,1,0,1,1,1,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,1 +1,17,4,9085,0,1,140.0,1,19,37,4,7,123.7,0,0,1,1,1,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,156.0,1,19,1,5,10,136.8,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,0 +2,39,1,9853,0,10,133.1,1,37,34,0,0,115.5,0,0,1,1,1,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,0 +1,1,3,9119,0,1,113.0,1,4,38,2,7,107.4,1,0,1,1,0,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,1 +2,39,1,9670,0,1,130.0,1,37,37,9,0,158.0,0,0,0,0,1,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,0 +1,43,1,9853,0,1,110.0,1,37,37,9,9,107.7,0,0,0,0,1,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,124.0,1,2,2,3,3,124.7,1,0,1,1,0,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,127.0,1,37,37,5,10,125.3,0,0,1,1,0,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,1 +1,16,1,9500,0,1,133.1,1,37,37,9,9,95.0,1,0,1,1,1,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,1 +1,1,4,9238,0,1,127.0,1,19,19,4,0,127.4,1,0,1,1,1,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,113.0,1,38,38,3,7,112.3,0,0,1,1,1,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,1 +1,17,4,9670,0,1,110.0,1,19,37,9,99,106.1,1,1,0,0,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,141.0,1,1,38,4,8,136.8,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,133.1,1,37,37,9,7,140.0,0,0,1,1,1,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,124.0,1,1,1,4,4,118.8,0,0,1,1,0,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,4,120.0,1,2,3,2,2,120.0,0,0,1,1,1,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,0 +1,17,2,9670,0,1,110.0,1,3,3,4,10,115.6,1,0,1,1,0,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,118.0,1,1,19,4,10,110.7,1,1,1,1,1,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,2 +4,39,1,9238,0,1,130.0,1,19,3,9,2,140.0,0,0,1,1,0,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,1,140.0,1,1,19,3,9,140.0,1,0,0,0,1,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,0 +1,17,3,9773,0,1,123.0,1,1,19,5,5,117.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,115.0,1,38,38,8,7,112.9,1,0,1,1,1,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,1 +1,1,6,9147,0,1,142.0,1,38,37,7,7,134.3,0,1,1,1,0,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9085,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,1,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,129.0,1,19,1,3,7,121.0,0,0,1,1,1,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,156.0,1,3,3,123,122,155.0,0,0,1,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,136.0,1,37,37,9,9,126.3,1,0,1,1,1,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,1 +2,43,1,9991,1,1,110.0,1,37,37,9,9,132.5,0,0,1,1,0,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,19,133.1,1,37,1,5,5,138.3,0,0,1,1,0,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,0 +1,1,2,9130,0,1,140.0,1,19,37,9,9,129.5,1,0,1,1,1,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,2 +1,7,1,9500,0,3,140.0,1,37,37,4,4,140.0,0,0,1,1,1,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,1 +4,42,1,9147,0,1,110.0,1,37,37,9,9,128.2,0,0,1,1,1,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,1 +1,39,1,9119,0,19,133.1,1,1,1,4,3,134.4,0,0,0,0,0,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,136.0,1,37,1,5,4,120.8,1,0,1,1,1,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,1 +1,17,2,9500,0,1,140.0,1,37,37,9,9,132.5,1,0,1,1,1,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,1 +1,17,6,9147,0,1,130.0,1,37,37,9,9,110.4,1,0,1,1,0,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,4,5,105.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,136.0,1,19,19,4,3,126.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,116.0,1,38,2,9,2,112.2,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9238,0,1,122.0,1,19,3,5,2,112.6,0,0,0,1,1,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,2 +1,17,1,9147,0,1,118.0,1,1,38,9,9,118.4,1,0,1,1,0,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,2 +1,17,1,9130,0,1,117.0,1,19,19,4,4,113.5,1,0,1,1,1,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,117.0,1,19,19,9,9,111.8,1,0,1,1,0,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,0 +1,1,6,9500,0,1,118.0,1,38,19,3,3,113.5,1,0,1,1,0,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,1 +2,43,2,9853,0,1,130.0,1,38,31,4,1,124.2,0,0,1,1,1,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,128.0,1,38,38,9,7,124.5,1,0,1,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,2 +1,1,1,9238,0,1,116.0,1,38,38,9,8,108.7,1,0,1,1,0,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9254,0,19,133.1,1,37,19,9,10,156.5,0,0,1,1,0,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,1 +1,39,1,9003,0,1,160.0,1,1,37,191,193,140.0,0,0,1,1,0,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,110.0,1,37,37,9,10,150.0,0,0,1,1,0,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,1 +1,18,2,9070,0,1,122.0,1,38,19,5,5,119.9,0,0,1,1,0,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,125.0,1,19,38,9,7,116.3,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,37,37,6,6,147.8,0,0,1,1,1,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,2 +1,1,1,171,0,1,174.0,1,5,3,3,3,157.9,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,131.0,1,1,1,4,4,127.2,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,0 +1,17,1,9670,0,3,110.0,1,12,3,5,8,106.5,1,0,0,0,1,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9500,0,1,124.0,1,37,37,9,9,116.0,1,0,1,1,1,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,38,38,5,7,146.2,0,0,1,1,1,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,133.1,1,37,37,9,9,97.0,0,0,1,1,1,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,132.0,1,19,1,9,9,141.8,1,0,1,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,1 +2,43,1,9254,0,3,120.0,1,38,37,9,3,120.0,1,0,1,1,1,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,135.0,1,3,2,1,1,133.6,1,0,1,0,1,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,133.0,1,38,38,5,2,135.5,0,0,1,1,1,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,125.0,1,39,3,3,2,125.0,1,0,1,1,1,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,133.1,1,1,1,3,4,112.0,0,0,1,1,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,141.0,1,1,1,5,9,126.3,0,0,1,1,0,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,1 +1,39,1,9003,0,1,133.1,1,1,37,9,8,130.0,0,0,1,1,0,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,0 +2,43,1,9991,1,1,140.0,1,37,37,3,10,107.8,0,0,1,1,1,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,2 +1,43,1,9500,0,1,120.0,1,3,4,2,4,120.6,0,0,1,1,0,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,1,133.1,1,1,19,9,9,120.0,0,0,1,1,0,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,1 +1,39,1,9853,0,1,140.0,1,19,1,9,4,128.2,0,0,1,0,1,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,133.1,1,37,19,9,3,123.0,0,0,1,1,0,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,2 +1,39,1,9147,0,1,150.0,1,37,1,7,3,148.8,0,0,1,1,0,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,1 +1,17,1,9670,0,1,125.0,1,38,37,7,5,126.4,0,0,1,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,1 +1,44,1,9003,0,39,140.0,1,38,1,134,134,140.0,1,0,0,1,0,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,2 +1,44,1,9070,0,39,140.0,1,1,19,4,4,140.0,0,0,1,1,0,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,130.0,1,1,1,9,9,124.1,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,2 +1,51,1,9070,0,1,130.0,1,19,19,5,7,124.5,0,0,1,1,1,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,101.0,1,37,37,9,4,101.0,1,0,0,1,1,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,2 +1,1,1,8014,1,1,115.0,1,38,38,9,7,115.0,1,0,1,1,1,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,1 +1,17,1,9130,0,1,122.0,1,19,19,9,9,121.7,1,0,1,0,1,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,135.0,1,38,38,9,6,138.1,0,0,0,0,1,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9147,0,1,130.0,1,37,37,9,9,119.9,1,0,1,0,1,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,134.0,1,1,1,9,9,133.0,1,0,1,1,1,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,19,37,9,9,117.8,1,0,1,1,1,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,119.0,1,1,19,4,10,115.5,1,0,1,1,1,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,2 +1,17,3,9119,0,1,138.0,1,3,3,3,4,125.4,1,1,1,1,0,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,164.0,1,19,19,9,9,149.0,1,0,1,1,1,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,44,1,9085,0,1,140.0,1,4,4,2,6,140.0,0,0,1,1,1,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,1 +1,43,1,9070,0,1,160.0,1,1,2,4,2,100.0,0,0,1,1,0,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,132.0,1,37,37,9,5,135.9,0,0,1,1,1,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,142.0,1,37,19,7,7,133.0,1,0,1,1,1,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,1 +1,7,1,9556,0,3,130.0,1,1,37,4,8,130.0,0,0,1,0,0,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,0 +1,44,1,171,0,39,110.0,1,1,1,1,7,114.2,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9147,0,1,129.0,1,19,19,4,9,127.6,1,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,164.0,1,34,1,0,0,163.0,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9556,0,1,122.0,1,19,38,4,8,118.3,1,0,1,1,1,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,1 +1,17,4,9500,0,1,141.0,1,38,37,3,3,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,1 +1,1,1,9003,0,1,148.0,1,1,19,194,194,143.5,0,0,0,1,0,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,150.0,1,37,19,6,4,137.0,0,0,1,1,0,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,38,38,1,4,138.7,0,0,1,1,0,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,103.8,0,0,1,1,1,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,0 +1,17,1,8014,1,1,127.0,1,19,37,4,7,115.8,0,0,1,1,1,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,143.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,130.0,1,38,19,5,6,125.1,1,0,1,1,1,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9254,0,1,133.0,1,19,1,9,9,137.2,0,0,1,1,0,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +2,1,4,8014,1,1,140.0,1,34,34,0,0,128.0,1,0,1,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,120.0,1,1,1,9,10,118.3,0,0,1,1,0,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,2 +2,39,1,8014,1,12,133.1,1,37,37,9,1,113.0,0,0,1,1,1,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,128.0,1,19,1,0,5,122.1,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,37,38,3,3,123.0,0,0,1,1,1,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,120.0,1,37,1,7,4,95.0,1,0,1,1,1,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,0 +1,17,4,9238,0,1,123.0,1,19,19,191,144,116.0,1,0,1,1,1,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,39,1,9085,0,1,140.0,1,37,37,90,90,106.3,0,0,0,0,0,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,159.0,1,3,3,2,2,162.5,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,125.0,1,19,19,9,9,115.9,0,0,1,1,1,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,130.0,1,19,19,3,7,129.0,0,0,0,0,1,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,133.1,1,38,37,5,5,136.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,156.0,1,5,4,2,1,140.8,0,0,1,1,1,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,1,161.0,1,37,37,9,9,100.0,1,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,7,1,8014,1,3,130.0,1,35,35,90,90,140.0,0,0,1,0,1,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,0 +2,1,1,9991,1,1,120.0,1,37,19,9,9,135.0,1,0,1,1,0,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,0,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,148.0,1,3,3,2,2,137.3,1,0,1,1,1,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,120.0,1,19,37,5,7,115.1,0,0,1,1,1,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,2 +1,17,6,9773,0,1,138.0,1,1,1,4,2,140.5,1,0,1,1,1,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,1 +2,43,1,9085,0,1,160.0,1,37,37,9,7,120.0,0,0,1,1,0,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,2 +1,17,2,8014,1,1,134.0,1,1,19,4,99,126.0,1,0,1,1,0,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,100.0,1,0,1,1,1,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,131.0,1,1,1,5,9,129.5,1,0,1,1,1,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,1 +1,1,4,171,0,1,139.0,1,37,38,9,9,127.8,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,150.0,1,37,37,5,6,132.5,1,0,1,1,1,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,2 +1,1,1,9085,0,1,133.1,1,19,38,5,7,110.0,1,0,1,1,1,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,1 +1,43,1,9254,0,6,138.6,1,34,34,0,0,138.6,1,0,1,1,0,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,133.1,1,1,1,4,10,100.8,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,5,140.0,1,19,1,4,1,140.0,1,0,1,0,1,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,118.0,1,1,19,9,10,113.1,1,0,1,1,1,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,115.0,1,3,3,2,2,111.5,1,0,0,0,1,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9254,0,39,170.0,1,19,2,9,3,170.0,0,0,1,0,0,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,37,9,9,120.0,0,0,1,1,1,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,3,9500,0,1,137.0,1,19,38,7,7,126.5,1,0,1,1,1,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,136.0,1,19,19,90,8,133.9,1,0,1,0,0,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,0 +1,18,2,9500,0,1,141.0,24,1,1,4,3,126.8,1,0,1,1,1,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,1 +1,17,4,9238,0,1,124.0,1,19,19,5,8,117.7,1,0,1,1,1,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,149.0,1,19,38,9,9,126.5,1,0,1,1,1,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,153.0,1,1,1,141,175,157.9,0,0,0,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,140.0,1,1,2,4,6,140.0,1,0,1,1,1,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,137.0,1,1,3,3,2,121.3,1,0,1,1,1,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,143.0,1,1,1,4,6,138.8,0,0,1,0,0,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,160.0,1,1,3,1,2,130.0,0,0,1,0,0,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,19,19,9,8,105.8,0,0,1,1,1,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,0 +1,5,4,9119,0,1,115.0,1,19,37,4,6,113.3,1,0,1,1,0,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,19,4,3,125.4,1,0,1,1,1,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,1 +4,42,1,9500,0,19,133.1,1,1,1,5,5,126.0,1,0,1,1,0,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9254,0,3,133.1,1,19,19,4,6,130.5,0,0,1,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9147,0,1,108.0,1,1,19,4,4,105.9,1,0,1,1,0,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,126.0,1,19,19,9,9,115.2,0,0,0,1,1,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,2 +1,1,1,9853,0,1,140.0,1,37,37,9,9,145.3,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,1,6,9070,0,6,119.0,1,1,1,9,9,123.2,1,0,1,1,0,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,160.0,1,1,38,5,6,168.6,0,0,1,1,0,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9254,0,1,120.0,1,1,19,9,9,148.3,0,0,1,1,0,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,1 +1,7,1,9085,0,3,130.0,1,1,19,9,10,130.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,137.0,1,38,38,151,151,141.6,0,0,1,1,0,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,1 +1,39,1,9003,0,19,133.1,1,37,37,9,4,140.0,0,0,1,1,0,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,2 +1,43,1,9085,0,1,162.0,1,2,1,4,4,162.0,0,0,1,1,1,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,1 +1,43,1,171,0,1,133.0,1,19,19,5,7,133.0,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,154.0,1,37,37,9,7,150.2,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,19,100.0,1,38,19,0,10,111.3,0,0,0,0,1,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,38,4,9,126.2,0,0,1,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,132.0,1,3,1,2,7,125.5,1,0,1,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,127.0,1,37,37,5,7,116.2,0,0,1,1,0,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9773,0,1,121.0,1,19,38,9,7,113.0,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,130.0,1,19,19,9,9,127.6,1,0,1,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,160.0,1,34,34,99,99,114.3,0,0,1,1,0,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,2 +1,18,4,9254,0,1,119.0,1,37,37,9,9,113.1,1,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,130.0,1,38,37,5,6,130.0,0,0,1,1,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,163.0,1,19,37,5,8,150.8,1,0,1,1,0,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,2 +1,43,1,9238,0,1,122.0,1,19,19,5,5,114.3,1,0,1,1,1,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,2 +1,18,1,9147,0,1,131.0,1,34,34,90,90,131.0,0,0,1,1,0,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,4,9773,0,1,137.0,1,1,1,5,5,125.8,0,0,0,1,0,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9670,0,1,133.1,1,37,37,90,90,97.4,0,0,0,0,0,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,37,38,7,5,106.0,1,0,1,1,1,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,1 +1,17,6,9254,0,1,108.0,1,1,19,4,5,112.2,1,0,1,1,0,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,19,133.1,1,1,19,4,10,111.8,1,0,1,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,133.1,1,1,37,9,10,139.0,0,0,1,1,0,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,122.0,1,12,19,4,8,117.8,1,0,1,1,1,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,128.0,1,19,19,0,5,120.3,1,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,133.1,1,34,19,0,3,117.1,1,0,1,1,1,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9556,0,19,133.1,1,37,38,9,9,123.0,0,0,1,1,1,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,1 +1,17,2,9238,0,1,133.0,1,37,37,9,4,123.6,0,0,1,1,1,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,5,9670,0,1,132.0,1,19,19,5,5,134.1,1,0,1,1,0,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,129.0,1,38,1,4,10,129.4,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,136.0,1,19,19,4,8,150.4,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,154.0,1,3,3,1,3,129.0,1,0,1,1,1,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,2 +1,44,1,9130,0,39,150.0,1,1,1,4,4,150.0,1,0,1,1,1,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,2 +1,17,1,9773,0,1,115.0,1,37,37,9,8,116.1,1,0,1,1,1,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,157.0,1,19,3,4,9,138.8,0,0,1,1,0,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9670,0,19,133.1,1,19,1,5,8,97.2,1,0,1,1,0,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,141.0,1,37,38,6,6,125.6,1,0,1,1,1,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,143.0,1,19,1,9,9,144.4,1,0,1,1,1,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9119,0,1,127.0,1,19,1,4,5,115.8,0,0,1,1,0,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,150.0,1,1,1,9,10,142.7,0,0,0,1,1,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,132.0,11,12,12,90,4,129.9,1,0,1,1,1,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,115.0,1,19,19,191,171,109.1,0,0,0,0,0,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,2 +1,17,1,9773,0,1,121.0,1,38,38,9,8,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,7,1,9085,0,40,130.0,1,1,1,4,4,130.0,1,0,1,1,1,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,140.0,1,19,38,4,4,138.3,0,0,1,1,0,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,6,9773,0,1,116.0,1,19,1,4,4,110.1,1,0,1,1,1,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,131.0,1,38,38,9,9,127.9,0,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,1 +1,51,1,9991,1,42,110.0,1,19,37,5,9,128.2,0,0,1,0,1,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,0 +1,1,3,9500,0,1,138.0,1,19,19,5,8,124.9,1,0,1,1,1,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,172.0,1,1,1,4,9,167.1,0,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +5,39,1,9991,1,1,120.0,1,37,37,9,9,138.1,0,0,1,1,0,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,37,38,3,7,96.7,0,0,1,1,0,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,15,1,9130,0,1,133.1,41,1,1,4,4,100.0,0,0,1,1,1,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9119,0,1,122.0,1,19,19,9,9,114.7,0,0,1,1,0,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,133.1,1,19,38,192,192,96.0,1,0,1,1,1,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,160.0,1,1,37,9,10,118.0,0,0,1,1,1,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,2 +1,18,4,9119,0,1,134.0,1,19,38,194,175,124.9,1,0,0,1,0,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,4,19,4,5,98.0,0,0,1,1,0,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +5,43,1,9991,1,3,130.0,1,3,3,1,1,130.0,0,0,1,1,1,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,120.0,1,19,19,4,5,114.8,1,0,0,0,1,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,0 +1,18,6,8014,1,1,134.0,1,3,19,2,4,120.7,1,0,1,1,1,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,133.1,1,37,37,9,9,109.7,0,0,1,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9070,0,1,128.0,1,19,19,3,3,123.5,1,1,1,0,0,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,133.1,1,1,19,5,9,130.0,0,0,1,1,0,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,1 +1,7,1,9991,1,40,120.0,1,43,3,3,3,120.0,0,0,1,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,2 +1,17,5,9556,0,1,139.0,1,19,19,9,8,121.3,1,0,1,1,1,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,156.0,1,3,19,3,3,151.1,0,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,1 +1,16,2,9147,0,1,132.0,1,37,37,9,9,122.6,1,0,1,1,1,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,130.0,1,2,3,9,6,130.0,0,0,1,1,0,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,133.1,1,1,1,1,6,120.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,0,1,0,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,133.0,1,3,3,1,1,126.2,1,0,1,1,1,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,1 +1,18,2,9147,0,1,140.0,1,37,37,5,9,124.3,1,0,1,1,0,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,44,1,9003,0,39,150.0,1,37,38,4,8,150.0,0,0,1,1,1,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,140.0,1,37,19,191,163,129.3,1,0,0,1,1,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +4,7,1,9500,0,3,130.0,1,3,19,2,3,130.0,0,0,1,1,1,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9070,0,1,131.0,1,19,19,7,7,125.1,0,0,1,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,2 +1,10,1,9773,0,1,152.0,22,38,37,5,9,152.0,1,0,1,1,1,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,123.0,1,34,38,0,7,120.2,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,1,1,9070,0,1,131.0,1,3,19,4,4,130.3,1,0,1,1,0,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,115.0,1,1,1,5,4,108.0,1,0,1,1,1,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,130.0,1,38,37,9,9,144.0,0,0,1,1,1,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9238,0,1,134.0,1,3,1,3,4,133.0,1,0,1,1,1,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,1 +1,51,1,9670,0,1,133.1,1,3,1,3,10,116.2,0,0,1,1,0,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,139.0,0,0,1,1,0,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,126.0,1,19,1,9,9,122.5,1,0,1,0,1,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,121.0,1,19,19,9,9,126.3,1,0,1,1,1,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9003,0,1,133.1,1,38,38,4,8,115.0,0,0,0,1,0,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,19,37,9,9,151.5,0,0,0,0,0,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9853,0,40,110.0,1,41,3,2,1,110.0,0,0,0,1,1,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,1 +1,17,5,9238,0,1,131.0,1,19,37,5,7,120.2,1,0,1,1,1,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,2 +5,7,1,9070,0,3,140.0,1,37,37,7,7,140.0,0,0,1,0,0,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +4,39,1,9254,0,1,140.0,1,38,37,9,9,112.0,0,0,0,1,1,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,0 +1,18,3,9853,0,1,122.0,1,38,37,9,5,120.3,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9070,0,1,125.0,1,1,38,9,7,118.0,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,2 +1,1,3,9670,0,1,111.0,1,1,1,5,5,105.4,0,0,1,1,1,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +2,39,1,9254,0,1,130.0,1,37,37,4,7,120.0,1,0,1,1,1,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,160.0,1,37,37,9,9,160.0,1,0,1,1,1,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,1 +1,39,1,9147,0,12,133.1,1,37,37,9,9,140.0,0,0,1,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9147,0,1,118.0,1,1,2,10,10,117.3,1,0,1,1,1,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,3,9085,0,1,130.0,1,1,19,9,9,121.3,1,0,1,1,1,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,19,133.1,1,37,37,9,9,130.0,0,0,1,1,1,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,3,9085,0,1,130.0,1,19,37,5,5,121.3,1,0,1,1,1,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,2 +1,1,2,9254,0,1,120.0,1,19,19,9,9,116.5,1,0,1,1,1,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,1 +2,39,1,9500,0,1,140.0,1,37,37,9,4,127.3,0,0,1,1,0,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,1 +1,17,1,9670,0,1,118.0,1,37,38,8,7,115.2,1,0,1,1,1,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,17,3,9238,0,1,125.0,1,19,19,7,8,121.5,0,0,1,1,1,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,125.0,1,19,19,5,5,114.5,1,0,1,1,1,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,136.0,1,39,1,3,4,134.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,115.0,1,3,2,4,5,112.6,0,0,1,1,0,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,53,1,9003,0,1,130.0,1,19,1,9,9,130.0,0,0,0,1,0,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,2 +1,1,3,9773,0,1,136.0,1,3,1,5,3,129.0,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,3,150.0,1,2,3,4,7,173.3,1,0,1,1,1,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,140.0,1,1,19,7,7,129.9,1,0,1,1,1,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,0 +1,7,1,9119,0,1,140.8,1,34,34,0,0,134.0,0,0,1,1,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9254,0,1,115.0,1,37,19,5,5,109.8,1,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,137.0,1,1,1,4,4,127.6,1,0,1,1,1,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,1 +4,7,1,9238,0,40,130.0,1,34,34,99,99,130.0,0,0,0,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9147,0,1,123.0,1,37,37,9,9,106.2,0,0,1,1,1,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,121.0,1,1,3,3,7,113.0,1,0,1,1,0,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,1 +1,17,1,9254,0,1,140.0,1,3,1,2,3,129.9,0,0,1,1,1,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,7,1,9991,1,40,130.0,1,38,38,9,7,130.0,0,0,1,1,0,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,0 +1,51,1,9070,0,1,132.0,1,19,19,153,153,120.0,0,0,1,1,1,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,9119,0,1,110.0,1,37,37,9,9,106.8,0,0,1,1,0,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9070,0,1,124.0,1,19,37,4,4,126.8,0,0,1,1,1,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,2 +1,18,3,9147,0,1,133.1,1,1,38,4,7,101.0,1,0,1,0,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,3,9147,0,1,125.0,1,38,19,7,7,125.7,0,0,1,1,1,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,2 +1,17,4,9853,0,1,121.0,1,38,38,5,7,113.7,1,0,1,1,1,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,1,133.1,1,1,1,9,6,105.0,1,0,0,0,1,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,143.0,1,5,1,2,5,136.7,0,0,1,1,1,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,1 +1,1,2,9556,0,1,142.0,1,1,19,4,5,130.5,1,0,1,1,1,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,131.0,1,19,19,7,5,122.1,1,0,1,1,1,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,132.0,1,1,37,4,7,121.8,1,0,1,1,1,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,123.0,1,37,37,3,3,123.0,1,0,1,1,1,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,129.0,1,19,38,2,7,126.9,1,0,1,1,1,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,2 +1,1,4,9238,0,1,118.0,1,19,38,9,9,110.0,0,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,125.0,1,3,1,4,4,119.4,1,0,1,1,1,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,2 +1,17,1,9085,0,1,131.0,1,1,3,4,1,129.3,1,0,1,1,1,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9500,0,1,147.0,1,37,37,9,9,134.3,0,0,1,1,1,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,1 +2,39,2,9670,0,19,133.1,1,37,37,9,9,135.6,0,0,1,1,1,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,152.0,1,37,19,9,9,137.0,1,0,1,1,1,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,118.0,1,12,1,4,10,115.7,0,0,1,1,0,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,2 +1,15,1,9119,0,1,133.1,41,1,3,5,8,100.0,0,0,0,1,0,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,0 +1,1,5,9119,0,1,131.0,1,1,19,4,7,126.8,0,0,1,0,0,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,132.0,1,19,38,9,7,119.1,0,0,1,0,0,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,8014,1,1,120.0,1,37,37,5,5,161.1,0,0,1,1,0,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,18,5,9500,0,1,137.0,1,19,1,1,10,129.3,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,118.0,1,37,19,5,5,119.1,1,0,1,1,1,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,134.0,1,38,38,9,9,122.0,1,0,1,1,0,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,163.0,1,1,1,4,3,149.7,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,140.0,1,38,38,9,7,140.0,0,0,1,1,1,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,2 +1,17,4,9147,0,1,122.0,1,19,19,5,7,116.4,1,0,0,1,1,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,140.0,1,3,37,3,7,116.9,0,0,1,1,0,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,5,2,9238,0,1,123.0,1,40,38,2,9,118.1,1,0,1,1,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,7,1,9991,1,3,130.0,1,3,19,2,3,133.9,0,0,1,1,1,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,125.0,1,1,38,4,7,114.9,1,0,1,1,1,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,130.0,1,1,1,4,10,115.2,0,0,1,1,0,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,124.0,1,38,19,9,7,129.6,1,0,1,1,0,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,139.0,1,38,38,7,5,133.4,0,0,1,1,1,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,4,9254,0,1,125.0,1,38,38,5,5,115.6,1,0,1,1,1,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,147.0,1,37,37,9,9,142.8,1,0,1,1,1,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,0 +1,1,1,9003,0,1,144.0,1,19,19,9,9,132.8,0,0,1,1,0,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,12,133.1,1,19,1,9,1,130.0,0,0,1,1,0,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,140.0,1,37,37,9,6,135.5,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,6,9254,0,1,102.0,1,3,1,2,2,101.7,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,133.1,1,19,38,5,5,131.8,1,0,0,1,1,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,1 +1,44,1,171,0,39,150.0,1,4,4,2,2,150.0,0,0,1,1,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,53,1,9254,0,42,110.0,1,1,1,4,7,111.8,1,0,1,1,1,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,121.0,1,19,38,6,6,116.1,1,0,1,1,0,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,1 +1,17,4,9773,0,1,127.0,1,1,19,4,1,115.8,1,0,1,1,1,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,37,37,9,7,160.0,1,0,1,0,0,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,15,170.0,1,34,1,90,2,101.0,0,0,1,1,1,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,125.0,1,3,3,3,3,116.6,1,0,1,0,1,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,2 +1,17,4,9070,0,1,117.0,1,1,1,3,3,125.4,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,146.0,1,19,37,7,7,133.8,1,0,1,1,1,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,142.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,1 +1,1,1,171,0,3,116.0,1,3,3,2,2,128.2,0,0,1,1,1,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,1 +1,1,2,9500,0,1,124.0,1,37,37,7,7,116.5,1,0,1,1,1,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,118.0,1,19,19,5,7,117.8,0,0,1,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,1 +1,18,3,9670,0,1,119.0,1,38,38,9,9,115.2,1,0,1,1,1,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,131.0,1,3,19,3,10,123.3,0,0,1,1,0,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,2 +1,17,1,9254,0,1,136.0,1,39,3,3,3,128.7,1,0,1,1,1,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,0 +1,18,1,9500,0,1,140.0,1,37,38,5,7,126.0,1,0,1,1,1,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +1,44,1,9119,0,39,150.0,1,19,3,5,2,150.0,0,0,1,1,0,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,2 +1,43,1,9773,0,1,137.0,1,38,37,9,5,127.9,1,0,1,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,119.9,0,0,1,1,1,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,2 +1,18,2,9773,0,1,132.0,24,37,19,9,7,119.1,1,0,1,1,1,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,43,1,8014,1,1,133.1,1,34,34,0,0,100.0,0,0,1,1,1,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,1,133.1,1,38,19,9,9,128.0,1,0,1,0,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,125.0,1,19,19,5,4,136.2,1,0,0,1,0,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,132.0,1,38,38,0,5,126.1,0,0,1,1,0,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9670,0,1,130.0,1,1,1,9,10,116.3,1,0,1,1,1,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,1 +1,1,3,9773,0,1,150.0,1,19,38,4,4,146.5,1,0,1,1,1,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,1 +4,39,2,8014,1,1,160.0,1,37,38,7,5,115.0,0,0,1,1,1,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,135.0,1,19,1,9,9,122.1,1,0,1,1,1,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,136.0,1,3,3,9,9,136.0,1,0,0,0,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,3,3,7,1,130.0,1,0,1,1,0,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,2 +1,39,1,9119,0,19,133.1,1,19,19,5,3,100.9,1,0,1,1,0,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,2 +1,17,1,9254,0,1,137.0,1,34,38,0,7,137.7,1,0,0,0,1,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +4,39,1,8014,1,19,133.1,1,37,37,90,7,110.0,0,0,1,0,1,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,144.0,1,38,37,9,9,125.8,0,0,1,1,1,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,1,4,9070,0,1,167.0,1,1,1,7,3,158.3,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,133.0,1,37,19,7,7,126.7,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,118.0,1,38,38,7,7,121.2,1,0,1,1,1,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,19,133.1,1,19,19,4,4,150.0,0,0,1,0,0,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,0 +1,17,2,9085,0,1,166.0,1,1,19,4,3,158.7,0,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,1 +1,44,1,9254,0,39,130.0,1,39,39,194,193,130.0,1,0,0,1,0,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,2 +1,17,1,9085,0,1,140.0,1,37,38,7,9,129.9,0,0,1,1,1,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,1 +1,7,1,9147,0,3,120.0,1,1,39,4,7,120.0,0,0,1,1,1,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,5,9254,0,1,118.0,1,19,37,5,5,120.5,1,0,1,1,0,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,0 +1,17,3,9070,0,1,120.0,1,3,1,4,4,116.9,1,0,1,1,1,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,1 +1,43,5,9238,0,1,101.0,24,37,19,9,7,119.9,1,0,0,0,1,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,128.0,1,19,1,4,3,117.2,1,0,1,1,1,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,1 +1,1,3,9254,0,1,118.0,1,1,19,9,9,111.7,1,0,1,1,1,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9773,0,1,137.0,1,37,37,0,90,134.2,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,144.0,1,3,39,2,3,129.0,1,0,1,1,1,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,0 +1,1,5,9147,0,1,125.0,1,37,38,7,7,122.2,1,0,1,1,1,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,2 +1,1,2,9500,0,1,147.0,1,3,1,4,3,136.7,0,0,1,1,1,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,1 +1,39,1,9085,0,39,120.0,1,37,37,1,9,137.7,1,0,1,0,0,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,160.0,1,1,37,9,9,146.0,1,0,1,1,1,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,2 +1,44,1,9238,0,39,130.0,1,1,19,4,5,127.4,0,0,0,0,0,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,3,1,2,4,154.9,0,0,0,0,0,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,0 +1,17,2,9670,0,1,129.0,1,19,19,5,4,129.4,0,0,1,1,1,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,137.0,1,3,19,3,5,136.3,1,0,1,1,1,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,1 +1,39,1,9991,1,1,100.0,1,37,37,9,6,153.5,0,0,0,0,0,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,134.0,1,38,38,7,9,132.8,1,0,1,1,1,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,137.0,1,37,37,7,9,130.8,1,0,1,1,1,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,133.1,1,37,37,1,1,97.0,0,0,1,1,0,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,143.0,1,3,38,2,10,129.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +2,39,1,9991,1,1,110.0,1,37,37,9,3,127.1,0,0,1,1,1,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,2 +2,7,1,9147,0,3,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,160.0,1,37,37,9,9,160.0,0,0,1,1,0,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,162.0,1,3,4,3,3,154.1,0,0,1,1,1,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,1 +1,1,2,9147,0,1,119.0,1,19,37,4,5,113.8,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,139.0,1,19,1,9,5,135.0,1,0,1,1,1,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,120.0,1,1,38,5,5,116.3,1,1,1,1,0,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,1 +1,17,2,9500,0,1,135.0,1,1,19,4,10,133.5,1,0,1,1,1,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,1 +1,1,3,9119,0,1,117.0,1,1,1,3,5,111.1,0,0,1,1,0,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,140.0,1,1,39,4,1,128.1,1,1,1,1,0,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9003,0,1,133.1,1,37,37,3,8,130.0,0,0,0,1,1,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,134.0,1,19,37,5,5,125.3,1,0,1,1,0,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,37,38,9,9,114.0,0,0,1,1,1,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,38,37,4,5,102.5,0,0,0,0,0,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,171,0,1,143.0,1,19,37,5,9,156.3,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,130.0,1,19,1,9,5,122.1,1,0,1,1,1,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,1 +1,39,2,8014,1,1,100.0,1,35,37,90,90,100.0,0,0,1,1,1,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +2,39,2,9670,0,1,100.0,1,37,37,9,9,110.0,0,0,1,1,0,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,2,9853,0,1,126.0,1,1,19,2,10,126.0,1,0,1,1,1,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,2 +1,18,3,9070,0,1,131.0,1,1,37,5,5,122.3,1,0,1,0,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,150.0,1,19,37,9,8,138.5,0,0,1,1,1,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,2,171,0,1,146.0,1,3,3,3,3,155.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9147,0,1,120.0,1,19,19,9,7,118.6,1,0,1,1,1,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,145.0,1,38,38,9,9,125.5,1,0,1,1,1,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,4,9070,0,1,143.0,1,1,1,9,7,134.6,1,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,0 +1,51,1,8014,1,1,121.0,1,1,38,5,7,112.3,0,0,1,1,1,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,130.0,1,37,1,9,8,120.2,1,0,1,1,0,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,1 +2,7,1,9254,0,2,100.0,1,37,37,9,9,100.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9119,0,1,130.0,1,37,3,9,3,137.0,1,0,1,1,0,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,1,0,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,140.0,1,38,37,7,7,105.2,0,0,1,1,0,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,131.0,1,1,19,4,7,135.9,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,108.0,1,19,38,9,7,110.5,1,0,1,1,1,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,111.0,1,1,38,5,9,107.5,0,0,1,1,0,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,1,9147,0,1,147.0,1,37,37,9,6,142.8,1,0,0,0,1,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,170.0,1,38,19,4,8,134.7,0,0,1,1,1,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,138.0,1,4,19,2,3,124.7,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,125.0,1,37,38,9,9,125.0,1,0,0,0,1,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,118.0,1,38,38,5,5,114.2,1,0,1,1,1,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,3,3,1,5,118.8,0,0,1,1,1,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,1 +1,1,3,9085,0,1,131.0,1,37,19,9,8,136.3,1,0,0,0,1,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,0 +1,43,1,9991,1,1,141.0,1,37,37,9,9,131.9,0,0,1,1,1,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,0 +1,42,1,9070,0,1,120.0,1,3,2,3,1,116.9,0,0,1,1,0,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,130.0,1,1,1,9,7,152.1,0,0,1,1,0,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,12,133.1,1,34,34,0,0,135.0,0,0,1,1,1,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,0 +1,17,2,9500,0,1,130.0,1,38,38,7,7,122.5,1,0,1,1,1,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,160.0,1,1,1,194,131,128.4,0,0,1,1,1,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,132.0,1,1,38,7,7,129.6,0,1,1,1,0,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,1,1,3,9,118.4,0,0,1,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,1 +1,1,2,9556,0,1,133.1,1,19,19,9,9,104.5,1,0,1,1,1,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,0 +1,53,1,9003,0,42,150.0,1,1,38,8,8,150.0,0,0,1,1,1,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,144.0,1,3,1,2,3,126.9,0,0,1,1,1,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,150.0,1,3,3,2,2,120.0,0,0,0,0,1,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,3,3,2,10,160.0,1,0,1,1,0,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,129.0,1,1,1,9,9,120.0,0,0,1,1,0,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,1 +4,39,1,9003,0,12,133.1,1,37,37,9,6,160.0,0,0,1,1,1,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,1 +2,39,2,9991,1,1,100.0,1,37,37,9,9,100.0,1,0,1,1,0,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,115.0,1,19,1,3,8,123.4,0,0,1,1,1,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,124.0,1,19,37,3,8,117.5,1,0,1,1,0,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,2 +1,1,6,9254,0,1,129.0,1,38,19,9,5,117.8,1,0,1,1,1,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,127.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,19,133.1,1,38,38,7,8,120.0,0,0,1,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,0 +6,39,2,9147,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,4,9500,0,1,148.0,1,3,19,4,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,39,150.0,1,1,3,4,1,150.0,0,0,1,1,0,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,0 +1,17,1,171,0,1,145.0,1,37,37,9,1,150.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,123.0,1,1,1,9,9,115.7,1,0,1,1,1,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,16,1,171,0,1,122.0,1,19,37,9,7,133.9,1,0,1,1,0,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,124.0,1,37,38,9,8,114.6,1,0,1,1,0,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,120.0,1,38,37,9,8,113.4,1,0,1,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,7,1,9991,1,40,140.0,1,37,37,6,6,140.0,0,0,1,1,1,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,1 +1,1,5,9670,0,1,133.1,1,9,1,2,4,133.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,100.0,1,19,19,4,4,113.0,0,0,1,1,0,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,2 +4,39,1,9003,0,1,133.1,1,19,19,9,4,100.7,0,0,1,1,1,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,2 +1,17,2,9147,0,1,133.1,1,38,38,4,7,109.0,1,0,1,1,0,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,2 +1,15,1,9238,0,1,140.0,26,19,19,9,6,140.0,0,0,1,1,0,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,1,3,9500,0,1,114.0,1,1,1,5,5,114.5,1,0,1,1,1,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,134.0,1,1,38,4,4,120.7,0,0,0,0,1,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,1,133.1,1,37,11,9,7,96.0,0,0,0,0,0,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,131.0,1,3,3,3,3,135.9,0,0,1,1,1,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,1 +1,43,2,9500,0,1,130.0,1,38,37,4,4,126.8,1,0,1,1,0,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,19,37,7,7,124.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9670,0,1,120.0,1,1,19,4,5,100.0,0,0,1,1,1,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,145.0,1,38,38,9,10,139.8,1,0,1,1,1,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,141.0,1,19,38,5,7,125.5,0,0,1,1,1,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,1 +5,39,1,9147,0,1,133.1,1,1,19,4,7,114.0,0,0,1,0,0,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9991,1,1,110.0,1,37,37,1,4,120.0,1,0,1,0,0,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,172.0,41,37,37,5,5,153.8,1,0,1,1,1,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,1 +1,17,1,9556,0,1,140.0,1,3,3,1,7,131.6,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,148.0,1,1,1,4,3,137.5,0,0,1,1,0,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,137.0,1,19,38,3,9,124.9,0,0,1,1,1,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,139.0,1,18,18,1,1,130.8,1,0,1,0,1,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,0 +1,17,1,9003,0,1,120.0,1,38,37,5,9,131.4,1,0,1,1,0,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,1 +1,53,1,9085,0,42,160.0,1,19,37,4,9,160.0,1,0,1,1,1,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,1 +1,18,1,9670,0,1,140.0,1,1,37,9,9,130.2,1,0,1,1,0,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,1 +1,43,1,9853,0,1,140.0,1,37,37,6,6,125.2,0,0,0,1,1,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,1 +1,1,4,9556,0,1,122.0,1,37,1,5,4,123.9,0,0,1,1,1,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,1,19,3,3,123.0,0,0,1,1,1,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,140.0,1,19,38,4,0,140.0,1,0,1,1,0,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,129.0,1,1,1,4,2,126.2,0,0,0,0,1,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,0 +2,17,3,8014,1,1,123.0,1,19,37,3,3,113.2,0,0,0,0,1,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,133.1,1,38,19,9,10,114.5,0,0,1,1,1,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,2 +1,51,1,9991,1,1,141.0,1,19,38,5,7,100.0,0,0,1,1,1,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,1 +1,17,2,171,0,1,131.0,1,2,1,3,3,148.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,39,1,9085,0,19,133.1,1,37,37,9,9,100.0,1,0,0,0,1,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,117.0,1,1,38,5,1,113.5,1,0,1,1,1,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,116.0,1,19,38,9,9,119.5,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,1,19,3,4,116.7,0,0,1,1,1,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,129.0,1,2,3,2,2,128.3,1,0,1,1,1,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,2 +1,1,3,9085,0,1,138.0,1,1,1,4,8,128.7,1,0,1,1,1,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,1,5,9147,0,1,118.0,1,19,19,9,9,114.2,1,0,1,1,0,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,133.0,1,3,19,2,8,126.7,0,0,1,1,1,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,2 +1,16,1,171,0,1,158.0,1,38,37,9,9,164.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,43,3,9500,0,1,126.0,1,38,37,6,5,124.3,1,0,1,1,1,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,123.0,1,38,38,9,5,124.8,0,0,1,0,1,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,2 +1,1,1,9130,0,1,160.0,1,3,3,3,2,155.1,1,0,1,1,1,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,1 +4,43,1,9500,0,1,130.0,1,37,37,9,9,103.7,0,0,1,1,1,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,2 +1,16,2,9238,0,1,133.0,1,19,38,4,5,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,130.0,1,38,37,9,9,124.8,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,135.0,1,37,1,7,7,132.8,1,0,1,1,1,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9119,0,1,128.0,1,1,38,4,7,100.0,0,0,1,1,0,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,2 +1,17,2,9085,0,1,120.0,1,1,1,9,10,115.0,0,0,1,0,1,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,0 +1,17,2,9070,0,1,142.0,1,3,1,2,4,141.0,1,0,1,1,0,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,2,9853,0,1,124.0,1,38,37,5,3,118.1,1,0,1,0,1,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,145.0,1,37,37,9,9,132.0,1,0,1,1,1,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,1 +1,39,1,9130,0,1,114.0,1,38,38,9,10,120.0,0,0,1,1,1,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,140.0,1,3,3,2,2,146.4,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,1 +1,1,5,9773,0,1,130.0,1,34,38,0,8,128.3,1,0,1,0,1,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,3,9670,0,1,110.0,1,19,1,4,4,107.5,1,0,1,1,1,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,135.0,1,37,37,5,5,126.3,1,1,1,1,1,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,1 +2,1,1,9254,0,1,140.0,1,19,38,4,7,133.0,0,0,1,1,0,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9254,0,1,150.0,1,37,37,9,9,115.0,0,0,1,1,0,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,1 +1,39,1,9070,0,1,130.0,1,1,1,5,3,112.0,1,0,1,1,0,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,1 +1,1,1,9070,0,1,110.0,1,1,37,9,9,105.1,1,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,131.0,1,37,37,9,7,118.4,0,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,0 +1,17,1,171,0,1,136.0,1,38,38,7,7,127.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9773,0,1,127.0,1,19,19,5,8,120.0,0,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,3,171,0,1,139.0,1,37,19,9,8,142.2,1,0,1,1,0,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,128.0,1,37,19,9,4,127.3,1,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,16,4,9773,0,1,109.0,1,37,37,9,3,137.0,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,1 +1,53,1,9085,0,42,130.0,1,19,1,9,9,130.0,1,0,0,0,1,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,2 +1,7,1,171,0,3,130.0,1,1,2,9,2,130.0,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,120.0,1,37,37,9,9,120.0,1,0,0,1,1,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,0 +1,2,1,9853,0,1,120.0,1,19,38,9,9,122.5,0,0,1,0,1,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,19,133.1,1,2,1,8,8,120.0,1,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,0 +1,43,1,9773,0,1,121.0,1,1,1,4,5,121.0,1,0,1,1,0,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,4,9147,0,1,120.0,1,38,19,9,9,111.3,1,0,1,1,1,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,38,19,5,0,141.8,0,0,1,1,1,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,131.0,1,1,1,7,4,127.2,1,0,0,1,0,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,11,9,10,131.5,0,0,1,1,1,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,3,19,2,3,125.7,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,1,2,9556,0,1,136.0,1,19,19,9,9,129.5,1,0,1,1,1,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,1 +1,42,1,9119,0,1,120.0,1,5,5,2,2,115.0,0,0,1,1,0,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,0 +1,17,6,9119,0,1,124.0,1,19,19,4,0,126.1,1,0,1,1,0,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,1 +1,1,1,9254,0,1,160.0,1,19,38,9,9,140.8,1,0,1,1,0,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,123.0,1,37,37,9,9,115.0,1,0,1,1,1,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,1 +2,39,2,9670,0,1,133.1,41,37,19,9,9,130.0,0,0,1,1,1,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9670,0,6,170.0,1,34,34,0,0,111.6,0,0,1,1,0,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,138.0,1,1,3,9,1,123.0,1,0,1,1,1,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,1,37,6,6,130.0,1,0,1,1,0,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,1 +1,17,2,9119,0,1,133.1,1,1,2,3,3,117.0,1,0,1,1,0,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,2 +1,1,5,9254,0,1,131.0,1,19,37,9,9,123.7,0,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,130.0,1,1,1,9,4,140.0,0,0,1,0,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9773,0,1,135.0,1,1,19,4,10,129.4,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,132.0,1,1,19,3,3,122.9,1,0,1,1,1,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,115.0,1,37,37,9,8,129.0,1,0,0,0,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,51,1,9238,0,1,160.0,1,3,19,2,1,116.1,0,0,0,1,1,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9003,0,12,133.1,1,37,1,9,10,130.0,0,0,1,1,0,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,129.0,1,37,38,4,9,121.0,1,0,1,1,1,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9119,0,1,130.0,1,38,19,7,3,119.9,1,0,0,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,133.1,1,37,37,9,9,100.2,1,0,1,0,1,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,4,38,4,5,140.0,1,0,1,1,1,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,2 +2,7,1,9991,1,43,140.0,1,40,5,3,3,140.0,0,0,1,1,1,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,1 +1,43,2,9670,0,1,129.0,1,3,3,5,5,122.4,1,0,1,1,1,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,2 +1,1,1,9238,0,1,116.0,1,38,38,9,6,116.4,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,44,1,9130,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,130.0,1,1,3,9,2,130.0,1,0,0,1,1,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,139.0,1,38,38,9,5,130.5,1,0,1,1,1,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,1 +1,42,1,9500,0,1,100.0,1,19,19,9,9,100.0,0,0,0,1,0,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,0 +1,7,1,9773,0,43,140.0,1,19,1,4,8,140.0,0,0,1,1,0,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9003,0,1,125.0,1,1,38,4,7,125.0,1,0,1,1,1,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,1 +1,39,2,9147,0,19,133.1,1,38,19,4,10,116.3,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,3,9500,0,1,132.0,1,37,37,4,3,127.3,1,0,1,1,1,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,127.0,1,1,37,4,8,121.1,1,0,1,1,0,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,1 +1,39,1,9670,0,1,140.0,1,37,37,6,6,120.0,0,0,1,1,1,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,133.0,1,37,37,9,5,139.2,1,0,0,1,0,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,140.0,1,19,19,1,4,133.3,1,0,1,1,1,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,120.0,1,3,3,2,2,112.0,0,0,1,1,1,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,2 +2,1,1,9147,0,1,137.0,1,19,37,9,9,124.4,0,0,1,1,1,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,130.0,1,38,38,9,3,145.6,0,0,1,1,0,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,6,9670,0,1,120.0,1,1,14,4,5,113.7,1,0,1,1,1,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,120.0,1,38,19,9,3,112.7,0,0,1,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,122.0,1,37,37,9,9,114.3,1,0,1,0,1,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,1,8014,1,1,133.1,1,3,1,1,7,100.0,0,0,1,1,1,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,4,19,3,5,123.7,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,4,4,4,2,120.0,1,0,1,1,0,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,2 +1,1,3,9238,0,1,137.0,1,1,1,3,3,131.4,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,1 +1,43,1,9130,0,1,130.0,1,1,1,1,1,130.0,1,0,1,1,0,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,2 +1,1,2,9773,0,1,121.0,1,1,19,9,7,118.9,1,0,1,1,1,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,133.1,1,19,38,9,8,128.2,1,0,1,1,0,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,2 +1,43,1,9070,0,1,134.0,1,19,37,7,7,132.7,1,0,1,1,0,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9147,0,1,125.0,1,1,38,7,7,120.1,0,0,0,1,0,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,129.0,1,37,37,9,9,117.1,1,0,1,1,1,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,145.0,1,38,38,5,7,138.0,1,0,1,1,1,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,120.0,105,1,1,9,9,119.0,1,0,0,0,1,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,131.0,1,1,19,9,9,127.0,0,0,1,1,0,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,100.0,1,38,19,6,10,112.8,0,0,1,1,1,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,2,9070,0,1,145.0,1,38,19,7,7,130.0,1,0,1,1,0,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,126.0,1,37,38,7,7,119.0,0,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,1 +1,1,2,9773,0,1,137.0,1,1,19,7,7,133.2,1,0,1,1,1,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,128.0,1,38,38,9,7,128.4,1,0,1,1,1,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,2 +1,44,1,9085,0,39,150.0,1,19,38,194,193,150.0,1,0,1,1,1,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,2 +1,1,4,171,0,1,146.0,1,1,1,9,5,151.3,1,0,1,1,1,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,1 +1,1,6,9147,0,1,139.0,1,19,12,4,4,125.0,1,0,1,1,1,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,1 +1,1,2,9254,0,1,136.0,1,1,1,9,4,123.4,1,0,1,1,1,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,5,9670,0,1,127.0,1,3,4,2,2,122.8,0,0,1,1,0,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,127.0,1,38,37,5,7,121.8,1,0,0,1,1,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,2 +1,39,1,9003,0,1,130.0,1,38,37,7,7,120.0,0,0,1,1,0,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,1 +1,1,2,9238,0,1,100.0,1,38,1,7,7,99.3,1,0,1,1,1,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9119,0,1,160.0,1,37,37,9,6,153.7,0,0,1,1,0,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,2 +1,17,4,9500,0,1,138.0,1,3,1,2,5,134.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,1 +1,17,4,9254,0,1,124.0,1,3,3,3,3,126.1,1,0,1,1,1,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,0 +2,7,1,9147,0,3,110.0,1,19,1,9,9,110.0,0,0,1,1,1,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,2 +1,1,1,9500,0,1,143.0,1,3,19,3,10,126.8,0,0,1,1,0,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,1 +1,17,2,9670,0,1,110.0,1,1,1,4,10,115.3,1,0,1,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,1 +1,51,1,9119,0,1,129.0,1,2,37,2,9,121.6,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,2 +1,15,1,9254,0,1,140.0,26,19,1,9,7,140.0,1,0,1,0,1,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,118.0,1,19,38,7,9,113.5,1,0,1,1,1,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,5,9853,0,1,110.0,1,19,37,7,7,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,2 +1,39,1,171,0,1,145.0,1,3,1,2,10,114.5,1,0,1,1,0,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,43,2,9670,0,1,125.0,1,38,19,4,3,106.6,1,0,1,1,1,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,0 +4,39,1,9500,0,19,133.1,1,37,37,5,7,100.0,0,0,1,0,1,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,133.0,1,1,1,9,9,119.7,1,1,0,1,0,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,1 +1,1,2,9853,0,1,134.0,1,1,38,9,8,122.5,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,120.0,1,19,37,3,9,100.0,0,0,1,1,1,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,37,37,6,6,100.0,0,0,0,0,0,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,160.0,1,38,38,6,6,160.0,1,0,1,1,1,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,19,133.1,1,37,37,9,7,116.0,0,0,1,1,1,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,1 +1,18,3,9500,0,1,145.0,1,1,1,4,8,133.6,1,0,1,1,1,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,3,19,2,3,124.5,0,0,1,1,1,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,125.0,1,19,38,9,8,118.3,0,0,1,1,0,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,0 +1,5,1,9085,0,1,150.0,1,1,1,4,4,139.4,0,0,1,1,1,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,2 +1,17,1,9773,0,1,133.1,1,38,38,9,5,117.0,0,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,2 +1,1,3,9500,0,1,142.0,1,1,1,4,7,131.0,1,0,1,1,1,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,1,19,3,3,154.3,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9147,0,1,135.0,1,37,38,9,9,128.0,1,0,0,1,1,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,149.0,1,37,37,9,9,138.0,0,0,1,1,0,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,38,9,9,129.2,1,0,1,1,1,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9556,0,1,147.0,1,3,4,3,2,100.0,0,0,1,1,1,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,2 +1,39,1,9085,0,12,133.1,1,37,37,10,9,144.0,0,0,1,1,0,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9254,0,1,100.0,1,3,19,3,5,115.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9670,0,1,140.0,1,1,1,4,3,133.4,0,0,1,1,0,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,2 +1,1,2,171,0,1,127.0,1,3,39,1,3,133.5,1,0,1,1,0,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9147,0,1,112.0,1,1,19,3,5,107.8,1,0,1,1,1,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,2 +2,39,1,9147,0,1,110.0,1,37,37,9,10,140.0,0,0,1,1,1,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,120.0,1,1,3,175,121,105.9,0,0,1,1,1,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,2 +1,1,1,9238,0,1,168.0,1,37,37,9,9,149.5,0,0,1,1,1,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,1 +1,17,1,8014,1,1,141.0,1,34,34,0,0,136.1,0,0,1,1,1,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,140.0,1,1,1,4,3,130.7,1,0,1,1,0,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,0 +1,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,134.0,1,1,37,8,7,120.5,1,0,1,1,0,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,160.0,1,1,38,4,7,141.5,1,0,1,1,0,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,122.0,1,38,37,191,195,112.9,1,0,1,1,1,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,41,1,1,9,7,163.1,1,0,1,0,1,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,1 +1,39,1,9500,0,1,110.0,1,1,37,9,9,126.0,1,0,1,1,0,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,2 +1,17,1,9670,0,1,109.0,1,1,1,4,4,108.0,0,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,131.0,2,37,1,9,3,126.1,1,0,1,1,0,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,1,2,9556,0,1,125.0,1,38,1,9,3,116.3,1,0,1,1,1,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,1 +1,17,1,9085,0,1,138.0,1,2,19,2,9,126.8,1,0,1,1,1,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,2 +1,1,5,9853,0,1,128.0,1,38,37,9,9,120.3,1,0,0,0,1,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,130.0,1,1,38,4,9,122.7,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,0 +1,39,1,9991,1,9,133.1,1,37,34,90,90,118.1,1,0,1,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,1,1,9085,0,1,125.0,1,1,19,4,9,114.5,1,0,1,1,1,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,1 +1,1,5,9773,0,1,138.0,1,19,19,9,9,139.4,1,0,1,1,1,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,125.0,1,19,38,3,5,115.9,0,0,1,1,1,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,1 +1,43,1,9500,0,1,134.0,1,38,19,5,8,120.7,0,0,1,1,1,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,133.1,41,3,1,3,10,100.0,1,0,1,0,1,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,0 +5,39,1,9003,0,1,133.1,1,37,37,9,7,110.0,0,0,0,0,1,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,0 +1,17,1,9254,0,1,128.0,1,19,1,5,7,120.7,1,0,0,1,1,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,162.0,1,19,19,4,7,152.9,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,51,1,9238,0,1,121.0,1,3,19,3,10,111.9,1,0,1,1,1,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,1 +1,39,2,9991,1,1,172.0,1,19,37,9,8,150.0,1,0,1,1,1,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,116.0,1,19,19,9,8,119.9,1,0,1,1,1,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,125.0,1,19,19,3,10,131.0,1,0,1,1,0,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,39,1,9500,0,4,150.0,1,3,38,3,7,127.0,1,0,1,1,0,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,128.0,1,38,38,9,9,129.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,120.0,1,3,19,4,5,115.5,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,38,38,9,6,160.0,1,0,1,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,130.0,1,3,1,2,9,130.0,1,0,1,1,1,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,140.0,1,1,19,4,8,124.6,1,0,1,1,1,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,150.0,1,3,3,2,2,150.0,1,0,1,1,1,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,1 +2,39,1,9853,0,1,133.1,1,37,19,9,5,138.3,0,0,1,1,1,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,0 +1,43,1,9991,1,1,150.0,1,3,3,4,4,100.0,1,0,1,1,0,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,1 +1,44,1,9238,0,1,150.0,1,1,38,4,9,145.9,0,0,1,1,1,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,1 +1,18,3,9500,0,1,131.0,1,19,1,4,7,127.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,1 +1,7,1,9085,0,3,150.0,1,19,37,90,90,140.0,0,0,1,1,0,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,167.0,1,19,19,9,7,156.2,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,140.0,1,1,3,4,5,130.0,0,0,1,1,0,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9238,0,1,132.0,1,1,19,4,9,127.1,1,0,1,1,1,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9119,0,1,133.0,1,3,1,3,4,121.8,1,0,1,1,0,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,2 +1,17,1,9670,0,1,133.1,1,1,37,4,5,150.0,0,0,1,1,0,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,150.0,103,37,37,9,9,134.6,0,0,1,1,0,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,1 +1,17,6,9773,0,1,131.0,1,34,34,0,0,129.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,139.0,1,3,1,4,1,126.0,1,0,1,1,0,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,0 +1,17,1,9670,0,1,138.0,1,1,1,4,8,123.0,0,0,0,0,0,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,2 +5,39,1,9853,0,19,133.1,1,37,37,9,8,118.0,0,0,1,1,1,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,142.0,1,37,38,9,9,137.3,1,0,1,1,1,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,136.0,1,3,38,2,9,125.7,1,0,1,1,1,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,1,1,4,10,128.3,1,0,1,1,1,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,132.0,1,1,37,4,9,127.1,0,0,1,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,122.0,1,19,19,7,7,116.1,1,0,1,1,1,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,1 +1,44,1,9085,0,1,140.0,1,1,2,3,3,140.0,0,0,1,1,1,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,2 +1,42,1,9853,0,12,133.1,1,1,3,3,2,133.7,0,0,1,1,1,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,0 +2,7,1,9500,0,3,120.0,1,37,19,9,7,120.0,1,0,1,1,1,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,2 +1,1,4,9238,0,1,134.0,1,38,19,7,7,128.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,130.0,1,19,38,4,7,121.3,1,0,1,1,1,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,1 +1,39,2,9238,0,1,110.0,1,19,1,5,5,136.5,0,0,1,1,0,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9670,0,1,133.1,1,38,19,9,8,122.9,0,0,0,0,0,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,124.0,1,19,1,9,3,123.7,1,0,1,1,1,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,17,1,9991,1,1,120.0,1,38,3,9,3,116.9,1,0,0,0,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,43,2,9147,0,1,160.0,1,37,37,9,9,96.0,0,0,1,0,1,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,154.0,1,19,37,9,7,140.4,1,0,1,1,1,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,2 +1,17,5,9070,0,1,125.0,1,19,1,5,5,122.6,1,0,1,1,0,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,2,9119,0,1,137.0,1,1,1,4,4,130.4,1,0,0,1,0,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,0 +1,1,1,9085,0,1,134.0,1,37,19,9,9,136.8,1,0,1,1,0,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,1 +1,39,1,9773,0,19,100.0,1,37,37,0,0,128.0,1,0,1,1,0,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +4,39,1,9130,0,19,133.1,1,37,38,9,4,100.9,0,0,1,1,0,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,127.0,1,1,19,5,7,130.5,1,0,1,1,1,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,1 +2,1,1,9003,0,1,131.0,1,19,38,5,5,118.4,0,0,1,1,1,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,142.0,1,1,38,5,7,127.7,0,0,1,1,1,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,130.0,1,1,38,4,9,115.0,0,0,1,1,0,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,100.0,0,0,1,1,1,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,1 +1,17,5,9773,0,1,134.0,1,1,19,9,5,121.8,1,0,1,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,1 +1,1,3,9853,0,1,122.0,1,1,3,5,3,113.6,0,0,1,1,1,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,114.0,1,37,37,7,8,116.7,0,0,1,1,0,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,130.0,1,3,1,3,3,120.5,0,0,1,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,148.0,1,19,19,4,5,143.5,0,0,1,1,1,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,19,9,9,107.0,0,0,1,0,0,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,130.0,1,3,19,5,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,39,1,9500,0,19,133.1,1,37,37,9,6,120.0,0,0,1,0,1,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,0 +1,1,2,9853,0,1,123.0,1,19,1,194,103,115.3,1,0,1,1,1,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,2 +1,18,1,9130,0,1,135.0,1,38,19,9,5,121.7,1,0,1,1,1,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,116.0,1,38,38,5,8,110.8,1,0,1,1,1,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,7,1,9147,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9991,1,1,133.1,41,37,37,9,8,114.7,0,0,1,1,1,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,122.0,1,37,37,9,7,120.6,1,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,150.0,1,5,5,2,2,146.2,0,0,1,1,1,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,0 +2,7,1,9147,0,3,130.0,1,1,4,3,10,130.0,0,0,1,1,1,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9085,0,19,110.0,1,37,37,90,90,110.0,0,0,1,0,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,140.0,1,1,1,9,9,136.9,1,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,44,1,9085,0,39,150.0,1,19,19,9,9,150.0,1,0,1,1,1,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,1 +2,43,1,9003,0,1,149.0,1,1,1,4,5,156.1,1,0,1,0,0,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9119,0,1,133.1,1,1,1,9,3,136.0,0,0,1,1,0,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,0 +1,16,2,9238,0,1,122.0,1,19,37,9,7,127.3,1,0,1,1,1,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,133.0,1,1,1,6,7,134.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,141.0,1,19,38,9,9,130.5,0,0,1,1,0,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,121.0,1,1,3,9,3,123.8,0,0,1,0,0,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,0 +1,44,1,9238,0,39,140.0,1,1,1,4,3,138.6,0,0,1,1,0,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,0 +1,1,1,9991,1,1,145.0,1,2,37,4,9,127.5,1,0,1,1,0,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,100.0,1,37,19,9,2,121.9,0,0,1,0,1,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,120.0,1,38,38,9,9,148.5,0,0,1,1,1,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +5,39,1,9991,1,1,110.0,1,1,1,3,3,119.0,0,0,1,1,0,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9254,0,1,137.0,1,1,38,2,8,122.3,1,0,1,1,0,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,42,1,9238,0,1,133.1,1,1,19,4,9,134.0,0,0,1,1,1,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,38,37,9,7,130.0,1,0,1,1,0,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,1 +5,7,1,9147,0,40,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,120.0,1,37,37,9,9,111.1,0,0,1,1,1,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,124.0,1,38,19,6,10,126.8,1,0,1,1,1,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,1 +2,1,1,9500,0,1,151.0,1,37,38,9,7,134.5,0,0,0,1,1,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,133.0,1,19,37,9,8,121.8,1,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,148.0,1,1,19,4,5,135.1,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,120.0,1,19,38,4,8,122.5,0,0,1,0,0,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,9070,0,1,140.0,1,37,37,9,10,118.0,0,0,0,1,0,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,3,133.1,1,9,9,90,90,130.0,0,0,1,1,1,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,150.0,1,34,34,0,0,108.0,0,0,1,1,1,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,1,150.0,1,1,38,3,5,120.0,0,0,1,1,0,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,2 +1,44,1,9085,0,39,150.0,1,38,1,5,5,150.0,0,0,1,1,1,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,2 +1,1,2,9238,0,1,133.1,1,19,19,9,9,106.0,1,0,1,1,1,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,102.0,1,38,38,9,9,99.6,1,0,1,1,1,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,140.0,1,38,19,9,5,130.0,0,0,0,1,1,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,2 +1,1,3,9773,0,1,138.0,1,3,1,2,3,135.9,1,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,1,9,4,150.0,1,0,1,1,0,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,0 +1,1,6,9147,0,1,127.0,1,1,19,1,6,120.0,1,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,0,0,1,1,0,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,137.0,1,38,38,4,8,126.5,1,0,1,1,1,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,1,19,4,4,132.6,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,130.0,1,1,1,4,9,150.0,0,0,1,1,0,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,146.0,1,3,1,1,3,149.2,1,0,1,1,1,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,129.0,1,38,38,6,6,118.5,1,0,1,1,1,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,131.0,1,19,3,3,2,126.1,1,0,1,1,1,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,2 +1,39,1,9085,0,43,160.0,1,3,39,2,3,172.0,0,0,1,1,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,39,1,9670,0,1,133.1,1,1,1,4,4,112.9,0,0,1,1,1,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,0 +2,39,1,9003,0,1,150.0,1,37,37,9,6,140.0,0,0,1,1,0,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,127.0,1,37,38,9,7,115.8,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,133.1,1,1,37,5,9,143.0,1,0,0,1,1,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,124.0,1,19,19,9,9,138.4,1,0,0,1,1,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,0 +1,1,1,9070,0,1,125.0,1,1,1,4,4,132.0,0,0,1,0,1,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,1,5,9130,0,1,160.0,1,3,1,2,9,150.2,1,0,1,1,1,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,1,110.0,1,37,37,9,4,160.0,0,0,1,1,1,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,135.0,1,19,37,5,7,121.4,0,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,2,9670,0,1,135.0,1,19,19,7,10,121.4,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,125.0,1,1,38,4,9,118.4,1,0,1,1,1,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,2 +1,1,6,9500,0,1,145.0,1,38,37,5,6,127.5,1,0,1,1,1,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,1 +1,43,3,171,0,1,140.0,1,37,38,7,7,143.4,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,134.0,1,37,19,9,10,141.4,1,0,1,1,1,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,130.0,1,29,38,9,8,122.0,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,109.0,1,19,19,4,9,104.1,1,0,0,0,1,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,116.0,1,34,34,0,0,127.0,1,0,1,1,0,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,3,8014,1,19,100.0,1,37,37,9,9,120.0,1,0,1,1,0,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9238,0,1,122.0,1,37,38,4,7,118.2,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,8014,1,1,100.0,1,12,5,9,4,116.5,0,0,0,0,1,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,122.0,1,19,19,193,194,112.6,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,42,3,9500,0,1,136.0,1,1,1,4,4,148.8,1,0,1,1,1,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,137.0,1,19,1,9,9,132.8,0,0,1,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,130.0,1,37,37,6,6,111.9,0,0,0,1,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9254,0,1,116.0,1,19,38,5,5,116.0,1,0,1,1,1,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,18,2,9500,0,1,131.0,1,1,3,3,2,121.2,1,0,1,1,1,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,141.0,1,1,19,3,3,131.9,1,0,1,1,1,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,120.0,1,37,37,9,10,122.6,0,0,1,1,1,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,0 +1,18,5,9119,0,1,136.0,1,3,2,2,3,125.2,1,0,1,1,0,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,125.0,1,19,1,7,4,122.6,0,0,1,1,0,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,139.0,1,19,37,9,9,131.5,1,0,1,1,1,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,1 +1,5,1,9853,0,1,119.0,1,1,38,5,8,118.3,1,0,1,1,1,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,2 +1,17,2,9773,0,1,125.0,1,1,38,5,6,115.9,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,126.0,1,1,19,4,8,120.1,1,0,1,1,1,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,1 +1,17,1,9085,0,1,125.0,1,1,37,4,9,117.0,1,0,1,1,1,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,135.0,1,19,38,7,5,121.0,0,0,1,1,1,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,138.0,1,38,37,3,3,133.1,0,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,148.0,1,19,37,9,5,130.9,0,0,1,0,0,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,145.0,1,12,1,4,10,139.8,1,0,1,1,1,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,118.0,1,37,37,3,5,110.0,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,51,1,9147,0,1,99.0,1,3,1,3,3,99.7,1,0,0,0,1,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,2 +1,17,2,9556,0,1,137.0,41,1,1,7,7,124.4,1,0,1,1,1,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,1 +1,17,3,9853,0,1,133.1,1,34,34,0,0,115.0,0,0,1,1,1,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,123.0,1,37,38,9,9,113.9,1,0,0,0,1,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,0 +1,1,4,9238,0,1,125.0,1,19,38,9,6,114.9,1,0,0,1,1,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,2 +1,18,1,8014,1,1,137.0,1,1,1,4,3,123.0,0,0,0,1,1,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,1 +1,43,1,8014,1,1,131.0,1,19,37,8,5,125.0,0,0,1,1,0,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9147,0,3,150.0,1,6,27,1,7,150.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,9,4,117.0,0,0,1,1,1,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,133.1,1,37,1,9,10,100.0,0,0,1,1,1,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,0 +1,1,3,9670,0,1,121.0,1,1,19,5,5,111.9,1,0,1,1,0,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,133.1,1,1,19,3,3,112.0,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,43,1,9991,1,1,140.0,1,1,1,6,6,100.0,0,0,1,1,0,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,1 +2,42,1,9556,0,1,110.0,1,37,37,9,6,140.0,0,0,1,1,0,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,130.0,1,1,1,4,4,124.8,0,0,1,1,1,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,138.0,1,38,37,9,6,126.8,1,0,1,1,0,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,1 +1,17,4,9773,0,1,127.0,1,2,37,9,9,115.8,1,0,0,0,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9085,0,1,170.0,1,1,1,4,5,166.6,0,0,0,0,1,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,130.0,1,1,1,4,4,130.0,1,1,1,1,0,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,3,1,2,8,100.0,1,0,1,1,0,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9670,0,1,106.0,1,3,1,2,3,105.7,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,43,1,9556,0,1,140.0,1,37,37,9,9,128.0,1,0,1,0,1,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,0 +1,1,1,9147,0,1,127.0,1,1,4,9,10,121.8,0,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,134.0,1,1,1,9,6,130.9,0,0,0,1,1,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,133.1,1,37,37,7,4,132.0,0,0,1,1,0,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,110.0,1,12,3,5,2,100.0,1,0,1,1,0,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,6,9238,0,1,113.0,1,1,38,194,163,112.3,1,0,0,1,1,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,118.0,1,19,19,5,7,121.2,0,0,1,1,0,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,51,1,9773,0,1,158.0,1,1,19,8,8,117.1,1,0,1,1,0,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,0 +1,17,1,9070,0,1,119.0,1,37,38,9,8,124.6,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,111.0,1,19,19,3,10,117.7,0,0,1,1,1,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,140.0,1,3,1,5,9,130.0,0,0,1,1,0,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,122.0,1,3,1,9,10,114.7,0,0,1,1,1,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,1 +2,39,1,9238,0,19,133.1,1,1,2,4,6,130.0,0,0,1,1,1,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,2 +1,17,2,9500,0,1,131.0,1,38,1,5,7,118.4,1,0,1,1,1,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,0 +1,43,5,9853,0,1,150.0,1,34,34,0,0,150.2,1,0,1,0,1,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,140.0,1,37,19,9,9,166.0,1,0,0,1,0,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9085,0,1,133.1,1,19,37,9,6,130.0,1,0,1,1,1,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,1 +1,1,4,9147,0,1,120.0,1,38,38,5,10,111.3,0,0,1,1,0,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,2 +1,1,5,9500,0,1,125.0,1,3,19,4,8,120.3,1,0,1,1,1,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,2 +1,17,2,9556,0,1,136.0,1,1,1,9,9,128.3,0,0,1,1,1,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,133.1,1,38,19,5,5,128.0,0,0,1,1,1,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,9,133.1,1,37,37,5,3,110.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9254,0,1,118.0,1,19,1,4,4,115.9,1,0,1,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,134.0,1,19,37,7,7,136.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,130.0,1,37,37,9,7,119.9,0,0,1,1,1,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9773,0,1,153.0,1,34,34,99,99,133.1,1,0,0,1,1,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,10,133.1,1,12,36,90,90,128.2,0,0,1,0,0,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,1,9991,1,1,112.0,1,43,40,2,2,106.4,0,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,122.0,1,3,3,2,2,122.0,1,0,1,1,1,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,137.0,1,1,19,4,3,121.3,1,0,1,1,0,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,1 +1,39,1,9085,0,19,133.1,1,3,1,2,5,103.0,0,0,1,1,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,136.0,1,1,19,9,9,131.5,0,0,1,1,1,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,154.0,1,1,3,4,2,164.9,0,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,1 +1,17,6,9147,0,1,129.0,1,19,1,9,4,122.0,1,0,1,1,0,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,132.0,1,19,19,9,7,128.0,1,0,1,1,0,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,1 +2,39,1,9773,0,19,133.1,1,19,19,9,4,131.0,0,0,0,0,0,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,0 +4,39,1,8014,1,1,160.0,1,37,37,5,5,126.0,0,0,1,1,1,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,1 +1,16,2,9238,0,1,126.0,1,38,37,3,5,127.1,1,0,1,1,1,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,1 +1,1,2,9254,0,1,111.0,1,1,19,5,7,109.3,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,1 +1,17,2,9556,0,1,133.1,1,37,37,3,10,108.0,0,0,1,1,1,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,1 +1,1,4,9773,0,1,140.0,22,1,37,3,9,130.5,1,0,1,1,1,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,1 +1,7,1,9500,0,3,140.0,1,1,1,9,5,140.0,0,0,1,1,1,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,0 +1,17,3,9670,0,1,125.0,1,1,3,4,3,117.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,150.0,1,37,38,9,9,131.5,1,0,1,1,1,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,5,100.0,0,0,1,0,0,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9773,0,1,133.0,1,19,19,7,7,134.4,1,0,1,1,0,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,135.0,1,19,37,9,9,128.0,1,0,1,1,1,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,5,9670,0,1,115.0,1,1,19,5,5,117.1,0,0,1,1,1,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,2 +1,51,1,9003,0,39,130.0,1,1,19,4,4,120.0,1,0,0,0,0,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,0 +1,1,3,9773,0,1,117.0,1,38,19,7,7,110.4,1,0,0,0,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9773,0,1,127.0,1,19,38,8,3,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,38,37,1,1,115.0,1,0,1,1,1,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,2 +1,18,2,9853,0,1,123.0,1,1,3,9,2,123.7,1,0,0,0,1,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,0 +1,1,3,9853,0,1,122.0,1,3,3,2,2,112.6,1,0,1,1,1,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,17,3,9254,0,1,127.0,1,37,37,9,6,123.5,1,0,1,1,1,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,141.0,1,37,37,9,9,136.3,1,0,1,1,0,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,1 +1,1,1,9773,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,17,2,9254,0,1,140.0,1,3,3,2,2,124.3,0,0,1,0,0,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,125.0,1,1,3,4,1,121.9,1,0,1,1,0,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,0 +1,17,1,9070,0,1,134.0,1,1,1,5,0,133.3,1,0,1,1,0,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9670,0,1,127.0,22,37,37,9,9,127.0,1,0,1,1,0,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,1 +1,42,1,9853,0,1,120.0,1,37,38,3,3,113.7,0,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,0 +1,1,3,9670,0,1,121.0,1,3,19,2,8,122.4,1,0,1,1,0,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,2 +1,1,3,171,0,1,139.0,1,19,19,5,3,128.2,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,42,1,9085,0,1,100.0,1,1,38,4,9,100.0,1,0,1,1,1,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,10,1,9500,0,1,140.0,24,3,3,2,9,140.0,1,0,0,0,1,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,0 +1,1,1,9773,0,1,132.0,1,37,19,9,9,131.0,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,124.0,1,1,1,4,4,127.9,1,0,1,1,0,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,2 +5,39,1,9119,0,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,2 +1,17,1,9773,0,1,117.0,1,38,38,9,9,111.1,0,0,0,1,0,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,19,133.1,1,19,37,9,9,149.4,0,0,1,0,0,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,1,1,161.9,0,0,1,1,0,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9147,0,1,140.0,1,38,37,4,7,130.0,1,0,1,0,1,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,43,1,171,0,1,145.0,1,19,38,9,9,100.0,0,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9773,0,1,120.0,1,37,38,9,3,155.5,0,0,1,1,0,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,121.8,0,0,1,0,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,7,1,9130,0,3,140.0,1,5,4,2,0,140.0,0,0,0,0,1,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,0 +1,51,1,171,0,1,128.0,1,2,1,3,3,131.2,1,0,1,1,0,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,1 +2,39,1,8014,1,12,110.0,1,37,37,7,9,120.0,0,0,1,1,1,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,150.0,1,2,3,3,2,140.8,0,0,1,1,1,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,2 +1,43,1,9070,0,1,125.0,1,19,19,7,8,133.4,1,0,1,1,0,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,2 +1,1,5,171,0,1,160.0,1,1,1,4,4,139.7,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,1,120.0,1,1,38,9,9,150.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,154.0,1,19,19,3,3,142.0,0,0,1,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9254,0,1,110.0,1,4,19,4,3,114.8,1,0,1,0,0,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9119,0,1,140.0,1,34,34,9,9,140.0,0,0,1,0,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,125.0,1,1,1,4,2,134.1,1,0,1,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,7,1,9254,0,40,130.0,1,1,1,3,6,130.0,0,0,1,1,1,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9254,0,1,122.0,1,37,37,9,3,124.5,1,0,1,1,1,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,130.0,1,1,3,9,2,128.6,1,0,1,1,1,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,1 +1,17,4,9670,0,1,122.0,1,3,1,2,3,119.6,1,0,1,1,0,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,1 +1,44,3,9085,0,39,150.0,1,1,19,4,1,150.0,1,0,1,1,1,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,19,37,9,9,130.0,1,0,1,1,0,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,133.1,1,38,19,4,7,98.0,1,0,1,1,0,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,2 +1,17,2,9556,0,1,125.0,1,38,19,7,7,121.5,1,0,1,1,1,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,0 +2,1,4,9500,0,1,143.0,1,38,38,5,5,128.7,1,0,1,1,1,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,1,100.0,1,1,19,4,8,122.0,0,0,1,1,1,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,1 +1,51,1,9500,0,1,170.0,1,1,1,4,10,125.0,0,0,1,1,0,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,1 +1,18,4,9500,0,1,137.0,1,3,1,3,4,126.7,1,0,1,1,1,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,19,133.1,1,38,38,9,8,106.0,1,0,1,1,0,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,1 +1,39,1,9991,1,40,130.0,1,19,1,3,4,152.0,1,0,1,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9085,0,39,140.0,1,1,39,3,9,140.0,1,0,1,1,1,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,2 +1,17,2,9773,0,1,133.1,1,3,1,4,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +2,43,1,9853,0,1,110.0,1,37,37,7,7,100.0,0,0,1,1,0,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,1 +1,7,1,9119,0,3,120.0,1,19,19,1,1,120.0,0,0,1,0,0,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,1,130.0,1,34,34,99,99,114.8,0,0,1,1,1,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,1 +2,39,1,8014,1,1,140.0,1,37,3,9,10,172.0,0,0,1,1,0,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,2 +1,17,2,9670,0,1,123.0,1,34,37,0,0,114.6,1,0,0,0,1,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,0 +1,43,2,9500,0,1,136.0,1,19,1,9,10,124.1,0,0,1,1,0,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,116.0,1,1,1,1,1,110.8,1,0,1,1,1,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,1 +1,39,1,9003,0,1,133.1,1,37,37,4,7,130.0,0,0,0,0,0,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,0 +1,1,3,9085,0,1,158.0,1,1,19,9,9,153.6,1,0,1,1,1,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,1 +1,17,4,9773,0,1,121.0,1,1,19,9,8,120.3,1,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,5,3,9085,0,1,141.0,1,1,19,7,5,128.8,1,0,1,1,1,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,2 +1,18,4,9556,0,1,127.0,1,1,38,4,7,121.8,1,0,1,1,1,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,37,37,9,9,109.0,1,0,1,1,1,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,110.0,1,34,34,0,0,114.6,1,0,1,1,1,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9085,0,1,128.0,1,38,19,8,8,117.2,0,0,1,1,0,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,143.0,1,1,38,3,3,133.2,1,0,1,1,1,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,1 +1,1,4,9853,0,1,134.0,1,19,1,5,9,127.4,1,0,1,1,1,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,2 +1,1,1,9670,0,1,133.1,1,3,1,1,7,155.0,0,0,1,1,1,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,114.0,1,19,38,9,7,129.1,0,0,1,1,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,149.0,1,19,37,7,4,134.3,0,1,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,130.0,1,1,38,3,5,128.6,1,0,1,1,0,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,1 +1,42,1,9147,0,1,139.0,1,3,38,2,5,112.3,1,0,1,1,1,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,2 +1,1,3,9773,0,1,130.0,1,19,19,9,9,123.0,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,43,1,9500,0,1,130.0,1,38,38,9,5,100.0,0,0,1,1,1,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,2 +6,39,1,8014,1,1,133.1,1,37,1,9,7,114.8,0,0,1,1,1,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,121.0,1,1,38,4,9,114.4,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,18,1,9238,0,1,122.0,1,38,38,9,7,114.7,0,0,0,1,1,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,1 +1,17,2,9773,0,1,120.0,1,1,1,2,5,127.0,1,0,1,0,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,39,120.0,1,4,1,2,8,120.0,0,0,1,1,0,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,1 +1,17,3,9500,0,1,143.0,1,38,1,9,5,133.8,1,0,1,1,1,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,130.0,1,1,19,9,7,133.8,0,0,0,1,1,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,1 +2,39,1,9556,0,1,100.0,1,37,37,9,9,120.0,0,0,1,1,1,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,133.1,1,1,19,5,4,102.5,0,0,1,1,1,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9003,0,1,111.0,1,1,3,4,2,162.4,0,0,0,0,0,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,133.1,1,19,1,9,3,107.0,1,0,1,1,1,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,128.0,1,19,1,4,4,124.3,1,0,1,1,0,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,140.0,1,36,14,9,10,130.0,1,0,1,1,0,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,150.0,1,38,19,7,10,134.6,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9070,0,1,134.0,1,34,1,5,7,129.8,1,0,1,1,1,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,150.0,1,37,37,9,3,150.0,1,0,1,1,0,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,0 +2,39,1,9238,0,1,126.6,1,38,38,9,7,107.5,0,0,0,1,1,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,120.0,1,37,37,9,7,106.8,0,0,1,1,1,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,1,9254,0,1,117.0,1,1,1,5,5,116.3,1,0,1,1,0,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,130.0,1,19,19,5,5,157.0,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9556,0,1,133.1,1,44,40,2,2,115.5,0,0,1,1,1,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,133.1,1,3,1,2,4,125.0,0,0,1,1,0,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,2 +2,39,1,9003,0,1,133.1,1,37,37,9,9,100.0,0,0,1,0,0,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,0 +1,17,2,9500,0,1,141.0,1,37,1,9,4,127.3,1,0,1,1,1,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,117.0,1,38,38,175,183,113.2,1,0,0,1,1,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,133.1,1,37,37,7,7,124.5,0,0,1,0,0,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,0 +1,17,2,9070,0,1,133.1,1,37,38,9,10,178.0,1,0,1,1,0,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,120.0,1,19,19,9,9,115.0,1,0,1,1,0,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9853,0,1,146.0,1,1,1,3,4,128.2,0,0,0,1,1,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,2 +1,17,4,9070,0,1,128.0,1,1,1,9,10,136.1,1,0,0,0,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,0 +5,39,1,9500,0,3,140.0,1,37,38,9,9,160.0,0,0,1,1,1,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,1 +1,39,1,8014,1,1,133.1,1,37,37,9,8,121.0,0,0,0,0,1,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,0 +1,43,1,9130,0,1,140.0,1,2,1,2,3,140.0,1,0,1,1,1,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,1 +1,1,3,9670,0,1,126.0,1,37,37,0,0,136.5,1,0,1,1,1,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,1 +1,17,4,9238,0,1,140.0,1,19,37,9,9,130.2,1,0,1,1,1,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,142.0,1,1,3,1,2,133.0,0,0,1,1,1,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,136.0,1,19,38,9,9,121.7,1,0,1,1,0,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,17,4,9085,0,1,106.0,1,37,1,3,9,106.0,0,0,1,1,1,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,2 +1,1,3,9500,0,1,135.0,1,1,37,7,7,120.5,1,0,1,1,1,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,115.0,1,19,19,7,7,115.0,1,0,1,1,1,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9238,0,1,160.0,1,38,1,9,3,124.0,0,0,0,1,0,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,2 +1,1,1,9500,0,1,129.0,1,38,38,5,5,120.8,1,0,1,1,1,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,160.0,41,37,19,9,9,160.0,0,0,1,1,1,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,132.0,1,1,19,7,5,129.9,1,0,1,1,0,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,136.0,1,37,38,9,8,139.2,1,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,127.0,1,19,37,9,7,121.3,1,0,1,1,1,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,1 +1,1,1,9119,0,1,142.0,1,1,38,4,3,129.8,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,133.1,1,37,37,5,8,133.2,0,0,1,0,0,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,0 +1,1,1,9147,0,1,150.0,1,1,19,5,5,137.8,1,0,1,1,0,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,135.0,1,3,1,2,4,129.8,1,0,1,1,0,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,1 +1,43,2,9773,0,1,132.0,1,19,19,0,0,127.1,0,0,1,1,0,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,1 +1,17,3,9500,0,1,140.0,1,3,2,3,3,126.4,1,0,1,1,1,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,0 +2,39,2,9119,0,19,133.1,1,37,37,7,7,118.0,0,0,1,0,0,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,110.0,1,3,4,2,2,110.0,1,0,1,1,0,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,0 +2,39,1,9500,0,38,133.1,1,37,37,9,3,146.6,0,0,1,1,0,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,146.0,1,1,3,4,1,135.2,1,0,1,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,3,5,2,2,135.8,0,0,0,1,0,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,0 +2,39,1,9773,0,19,100.0,1,37,37,0,0,163.5,0,0,0,0,0,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,124.0,1,19,19,9,7,113.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,143.0,1,3,3,9,7,129.0,1,0,1,1,0,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,1 +1,1,2,9853,0,1,117.0,1,1,38,4,9,109.7,1,0,1,1,1,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,2 +1,7,1,9130,0,2,133.1,6,42,1,4,9,100.0,0,0,1,1,0,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,115.8,0,0,0,0,0,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,0 +1,18,1,9773,0,1,167.0,1,38,38,6,7,153.0,1,0,1,1,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,51,1,9238,0,1,141.0,1,1,1,5,9,125.0,0,0,1,1,0,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,17,4,9500,0,1,132.0,1,38,19,5,7,125.5,0,0,1,1,1,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,1 +1,1,1,9119,0,1,132.0,1,1,12,3,3,133.1,1,0,1,1,0,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,149.0,1,1,1,4,4,129.3,1,0,1,1,0,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,1 +2,39,1,9147,0,1,130.0,1,37,37,9,9,142.5,0,0,1,1,1,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,2 +1,1,6,9773,0,1,133.1,1,1,37,3,3,100.0,1,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,138.0,1,37,37,9,6,145.0,1,0,1,1,1,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,19,19,3,6,124.3,1,0,1,1,1,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,135.0,1,37,37,9,7,132.6,1,0,1,1,1,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,159.0,1,34,26,0,6,160.1,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,1 +2,39,1,8014,1,1,133.1,1,37,37,6,8,100.0,0,0,0,1,1,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9070,0,1,153.0,1,3,3,1,2,146.7,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,1 +1,43,1,171,0,2,140.0,1,37,37,9,9,140.0,1,0,1,1,1,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,141.0,1,19,19,9,8,142.8,0,0,1,1,1,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,1 +1,39,2,9556,0,1,130.0,1,19,19,4,5,100.0,0,0,1,1,0,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,120.0,1,38,19,3,5,120.0,0,0,1,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,2 +1,39,2,9147,0,1,120.0,1,37,37,9,9,104.0,0,0,1,0,0,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9085,0,1,150.0,1,38,38,9,9,132.0,1,0,1,1,1,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,142.0,1,38,38,9,9,132.9,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9085,0,1,160.0,1,4,19,2,5,162.1,1,0,1,1,1,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,141.0,1,37,37,9,8,130.2,1,0,1,1,1,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,118.0,1,1,1,9,9,111.0,0,0,1,0,0,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,119.0,1,37,37,10,6,119.7,1,0,1,1,1,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,2 +1,17,2,171,0,1,137.0,1,1,1,4,1,143.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,18,3,9085,0,1,149.0,103,1,1,9,9,132.2,1,0,1,1,1,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,130.0,1,37,37,90,90,125.1,0,0,1,1,1,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,1 +4,17,5,8014,1,1,100.0,1,19,19,90,90,107.0,0,0,1,1,1,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,19,133.1,1,38,19,9,10,142.7,0,0,0,1,0,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,139.0,1,19,37,5,5,125.5,0,0,1,1,1,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,133.0,1,4,1,5,5,131.6,0,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,148.0,1,19,19,9,3,125.0,1,0,1,1,1,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,110.0,1,37,37,9,9,110.3,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,53,1,9003,0,42,130.0,1,38,38,9,9,130.0,1,0,0,1,0,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,2 +1,1,4,9070,0,1,140.0,1,4,19,2,10,125.0,1,0,1,1,0,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,2 +1,42,1,9003,0,39,140.0,1,19,1,5,5,140.0,0,0,1,1,1,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,2 +1,1,4,9070,0,1,136.0,1,37,37,9,8,136.7,1,0,1,1,1,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,1,5,9773,0,1,125.0,1,37,3,5,2,126.1,1,0,1,1,0,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,8014,1,1,126.0,1,37,38,9,10,119.4,0,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,123.0,1,1,3,2,2,118.8,0,0,1,1,0,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,2 +1,1,6,9500,0,1,144.0,1,1,37,9,9,127.5,1,0,1,1,1,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,1 +1,43,1,9070,0,1,125.0,1,38,37,8,7,131.7,1,0,1,1,0,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,144.0,1,37,37,8,8,138.4,0,0,1,1,1,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,160.0,1,37,37,3,4,97.0,0,0,1,1,1,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9853,0,1,119.0,1,37,38,9,9,125.0,1,0,1,1,1,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,117.0,1,37,37,9,9,109.3,0,0,1,0,1,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,3,130.0,1,37,37,9,9,146.2,0,0,1,1,1,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,150.0,1,37,37,9,9,130.3,0,0,1,1,1,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,1 +2,39,2,8014,1,19,100.0,1,37,37,4,7,100.0,0,0,0,1,1,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,39,1,8014,1,38,133.1,1,38,37,4,8,95.5,0,0,1,1,0,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,120.7,0,0,1,1,1,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,1 +1,39,1,9119,0,19,120.0,1,37,37,9,4,98.6,0,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9130,0,1,120.0,1,19,37,1,9,116.1,1,0,1,1,0,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9500,0,1,136.0,1,1,1,4,9,128.5,1,0,1,1,1,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,132.0,1,38,37,7,7,131.3,1,0,1,1,1,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,2 +1,1,2,9500,0,1,115.0,1,38,38,9,8,108.4,1,0,1,1,1,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,120.0,1,37,37,9,9,98.7,0,0,1,1,0,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,120.0,1,37,37,9,9,155.8,0,0,1,1,0,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,151.0,1,19,1,5,0,144.4,1,0,1,1,1,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,1 +1,43,2,9147,0,1,131.0,1,19,37,5,9,123.7,1,0,1,1,1,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,2 +1,17,4,9085,0,1,128.0,1,38,37,4,9,117.9,1,0,1,1,1,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,1 +1,43,1,8014,1,12,133.1,1,37,1,9,10,112.5,0,0,1,1,0,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,0 +1,39,1,9085,0,19,133.1,1,37,37,4,8,140.0,0,0,1,1,1,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,7,1,9147,0,2,150.0,1,3,37,2,5,150.0,1,0,0,0,1,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,18,2,9147,0,1,102.0,1,37,38,191,143,101.7,1,0,1,1,1,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,128.0,1,19,1,4,1,118.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,0 +2,39,1,8014,1,1,133.1,1,19,1,4,8,144.3,0,0,1,1,0,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,1 +1,1,5,9254,0,1,128.0,1,19,1,7,10,116.5,1,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,140.0,1,19,19,7,5,135.1,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,1 +1,18,2,9500,0,1,129.0,1,38,37,5,5,119.0,1,0,1,1,1,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,140.0,1,3,1,3,3,131.5,1,0,1,1,1,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,143.0,1,3,3,2,5,144.8,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,127.0,1,37,37,9,8,123.2,1,0,1,1,1,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,2 +1,43,1,9500,0,1,125.0,1,37,37,9,7,123.6,1,0,1,1,1,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,138.0,1,1,38,3,9,123.0,1,0,1,1,1,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,139.0,1,38,38,9,9,145.0,1,0,1,1,1,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,121.0,1,37,19,6,7,116.8,1,0,1,1,1,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,2,9085,0,1,123.0,1,1,19,4,9,113.6,1,0,1,1,1,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,2 +1,17,6,9773,0,1,126.0,1,1,19,5,5,119.0,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,4,9119,0,1,139.0,1,37,19,9,4,133.1,1,0,1,1,0,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,2 +1,1,1,9147,0,1,158.0,1,1,38,3,6,155.2,0,0,1,1,0,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,1 +1,17,2,8014,1,1,133.1,1,19,1,1,1,118.0,0,0,1,1,1,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,136.0,1,22,30,0,8,135.7,1,0,1,1,1,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,120.0,1,37,37,9,9,110.0,0,0,1,0,0,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,124.0,1,19,19,7,9,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,2 +5,7,1,9991,1,2,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,1 +1,1,4,9238,0,1,123.0,1,38,1,4,10,129.0,1,0,1,1,1,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,17,4,9119,0,1,135.0,1,38,37,5,7,126.6,1,0,1,1,0,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,2 +1,1,3,9070,0,1,129.0,1,5,3,5,7,124.8,1,0,1,1,1,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,1 +1,17,5,9147,0,1,127.0,1,1,38,4,5,124.6,1,0,1,1,1,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,135.0,1,1,1,4,4,118.5,0,0,1,1,1,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,171,0,1,142.0,1,3,1,2,6,139.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +5,39,1,9147,0,1,133.1,1,19,19,9,9,119.8,0,0,1,1,0,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,123.0,1,1,37,9,9,132.1,0,0,1,1,1,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,1 +1,43,1,9853,0,1,115.0,1,3,37,2,5,108.7,1,0,1,1,1,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,12,133.1,1,37,34,90,90,110.7,1,0,1,1,1,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,155.0,1,4,3,1,1,144.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,4,9254,0,1,105.0,1,1,19,9,6,106.1,1,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,150.0,1,19,19,3,4,135.0,0,0,1,1,1,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,152.0,1,37,37,5,7,136.3,0,0,1,1,1,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,34,34,0,0,120.5,1,0,1,1,0,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,140.0,1,1,37,4,5,123.6,1,0,1,1,1,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,120.0,1,37,37,9,9,150.1,1,0,1,1,0,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,144.0,1,37,38,9,9,126.9,0,0,1,1,1,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,120.0,1,37,37,9,9,128.2,0,0,1,0,0,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,0 +1,18,2,9147,0,1,115.0,1,1,37,5,5,108.7,1,0,1,1,1,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,140.0,1,19,19,4,4,140.0,1,0,1,0,0,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,1,1,3,7,140.0,1,0,1,1,1,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9500,0,1,129.0,1,19,19,5,5,119.6,1,0,1,1,1,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,1 +1,17,6,9773,0,1,141.0,1,37,37,5,5,127.7,1,0,1,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,137.0,1,19,37,4,7,126.3,1,0,1,1,1,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,1 +2,39,1,9003,0,1,168.0,1,1,41,9,3,153.9,0,0,0,0,0,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,133.0,1,37,37,9,9,121.8,1,0,1,1,1,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,119.0,1,2,1,4,3,113.1,1,0,1,1,1,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,43,1,9147,0,1,142.0,1,38,19,141,171,115.0,0,0,1,1,1,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,2 +1,17,4,9773,0,1,138.0,1,37,19,5,7,133.5,1,0,1,0,1,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +2,7,1,8014,1,3,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,133.0,1,3,19,2,5,130.8,1,0,1,1,1,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,137.0,1,38,19,152,171,131.1,1,0,1,1,1,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,3,9119,0,1,130.0,1,1,38,3,3,129.3,0,0,1,1,0,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,1 +1,43,1,9773,0,1,126.0,1,1,37,3,0,110.0,0,0,0,1,1,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,116.0,1,1,12,5,8,110.4,1,0,1,1,0,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,1,1,4,10,110.0,0,0,0,1,1,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,17,5,9238,0,1,134.0,1,38,37,9,9,126.0,0,0,0,0,1,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,0 +2,39,1,9147,0,1,130.0,1,1,19,9,9,109.9,0,0,1,0,1,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9085,0,1,133.1,41,37,37,9,9,109.6,0,0,1,1,1,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,0 +1,44,1,9003,0,39,140.0,1,37,37,9,1,140.0,0,0,1,1,0,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,2 +2,39,1,9991,1,19,133.1,1,38,38,90,90,121.7,1,0,1,1,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,143.0,1,1,3,4,7,129.7,1,0,1,1,1,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,133.0,1,1,19,9,6,121.5,1,0,1,1,1,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,1 +1,17,1,9003,0,1,133.0,1,38,37,9,9,125.3,1,0,1,1,1,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,1 +1,42,1,9991,1,1,160.0,1,1,2,4,3,120.0,0,0,1,1,1,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,1 +2,39,2,9556,0,1,133.1,105,1,3,9,2,152.8,1,0,1,1,1,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,123.0,1,1,1,4,6,118.8,1,0,1,1,1,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9853,0,1,122.0,1,3,19,2,3,112.9,0,0,1,1,1,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,1 +1,1,5,9853,0,1,123.0,1,1,12,4,9,113.2,1,0,1,1,1,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,140.0,1,37,37,9,9,141.5,1,0,0,0,1,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,129.0,1,19,19,4,8,127.3,1,0,1,1,1,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,1 +1,39,1,9085,0,1,130.0,1,37,37,6,6,110.0,0,0,1,1,1,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,2 +4,39,1,8014,1,19,133.1,1,37,37,9,9,95.0,0,0,0,0,1,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9853,0,1,127.0,1,37,19,9,8,137.5,1,0,1,1,1,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,1 +1,1,5,9500,0,1,142.0,1,38,37,5,7,128.8,1,0,1,1,1,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,1 +1,17,2,9147,0,1,142.0,1,19,19,4,8,127.3,0,0,1,1,1,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +3,39,1,9991,1,1,120.0,1,37,1,9,2,170.0,0,0,1,1,0,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,138.0,1,19,37,4,9,141.0,0,0,1,1,0,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,132.0,1,1,38,9,9,120.1,1,0,1,1,0,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,140.0,1,1,1,2,7,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,121.0,1,37,19,9,10,113.7,0,0,1,1,1,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,2 +1,39,1,8014,1,38,133.1,1,1,1,4,4,107.5,0,0,0,0,0,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,150.0,1,1,1,5,1,155.6,0,0,1,1,1,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,150.0,1,37,37,9,6,131.1,0,0,1,1,1,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,100.0,1,3,19,1,1,117.9,0,0,1,0,0,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,39,2,9991,1,1,150.0,1,37,37,9,9,120.0,0,0,1,1,1,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,150.0,1,1,38,4,9,150.0,0,0,1,1,0,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,2 +2,43,1,9130,0,9,133.1,1,34,34,0,0,128.2,0,0,1,1,0,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,141.0,1,1,1,90,3,127.8,0,0,1,1,1,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,0 +1,1,1,9070,0,1,116.0,1,3,3,0,1,108.7,1,0,1,1,0,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,0 +2,39,1,9500,0,1,140.0,1,19,19,9,7,110.5,0,0,1,1,1,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9254,0,19,133.1,1,34,34,0,0,120.0,0,0,0,0,0,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,1,133.1,1,37,37,191,172,115.2,0,0,1,1,1,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,37,38,9,6,160.0,0,0,1,1,1,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,133.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9556,0,1,131.0,1,19,38,9,7,128.5,0,0,1,1,1,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,160.0,1,37,38,9,7,161.0,1,0,1,1,1,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,136.0,1,3,3,1,2,152.5,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9853,0,1,114.0,1,19,37,5,5,109.5,1,0,1,1,1,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,150.0,1,37,37,9,7,122.5,0,0,1,1,0,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,0 +1,44,1,9991,1,39,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,2 +1,51,1,8014,1,42,140.0,1,19,37,134,193,138.0,1,0,0,1,1,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,127.0,1,2,19,3,9,121.5,0,0,1,1,0,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,133.1,1,19,19,3,3,125.3,0,1,1,1,0,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,4,9670,0,1,125.0,1,4,19,2,5,118.0,1,0,1,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,1 +2,42,1,9070,0,1,170.0,1,37,25,0,4,148.5,0,0,1,1,0,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,0 +1,17,5,9254,0,1,121.0,1,1,19,4,7,116.5,1,0,1,0,0,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,120.0,1,19,38,5,9,130.2,0,0,1,1,1,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,140.0,1,19,37,9,9,140.7,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,140.0,1,19,19,5,9,131.3,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,42,1,9119,0,1,140.0,1,3,3,3,2,133.6,1,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,8014,1,1,150.0,1,19,2,4,6,148.0,0,0,1,1,1,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,127.0,1,37,2,9,4,123.2,1,0,1,1,1,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,119.0,1,19,37,9,9,119.4,1,0,1,1,1,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,132.0,1,2,1,4,1,127.8,0,0,1,1,0,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,0 +1,42,1,9119,0,1,136.0,1,1,37,5,5,117.5,0,0,1,1,0,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,2 +1,1,1,9991,1,1,122.0,1,37,37,9,3,113.6,0,0,1,1,0,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,19,19,5,6,137.4,0,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,2 +1,17,1,9238,0,1,128.0,1,19,19,5,4,116.5,0,0,1,1,1,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,139.0,1,1,38,6,6,143.6,1,0,0,1,0,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9130,0,1,154.0,1,3,3,2,2,137.2,1,0,0,1,0,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,0 +1,17,6,9500,0,1,142.0,1,19,37,4,9,131.9,1,0,1,1,1,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,0 +1,1,2,9773,0,1,131.0,1,19,37,9,10,121.9,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +2,7,1,9130,0,3,120.0,1,3,3,1,1,128.2,0,0,1,1,1,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,19,133.1,1,37,37,9,9,150.3,0,0,1,1,1,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,125.0,1,37,37,5,5,124.0,0,0,1,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,135.0,1,37,19,9,9,125.2,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,135.0,1,19,19,9,9,124.5,0,0,1,1,1,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,175.0,1,3,38,2,10,157.5,1,0,1,1,1,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,139.0,1,1,1,4,10,140.7,0,0,1,1,0,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,0 +1,1,4,9500,0,1,128.0,1,1,1,4,10,125.2,1,0,1,1,0,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,150.0,1,1,37,1,1,131.5,1,0,1,1,1,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,168.0,1,38,1,9,10,166.0,1,0,1,1,1,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,1 +1,51,1,9070,0,1,125.0,1,42,3,125,124,130.0,1,0,1,1,0,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,135.0,1,1,38,4,5,127.5,1,0,1,1,1,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,1 +1,18,1,9119,0,1,148.0,1,3,19,3,5,147.7,0,0,1,1,0,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9773,0,1,130.0,109,19,1,9,9,126.9,1,0,1,1,1,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,125.0,1,19,38,3,7,114.9,0,0,1,1,1,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,1 +1,7,1,9119,0,3,130.0,1,37,37,9,9,130.0,0,0,1,0,0,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9853,0,1,130.0,1,37,19,7,3,140.0,0,0,0,1,1,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,112.0,1,3,1,3,5,111.0,0,0,1,1,1,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,37,38,193,181,125.9,0,0,1,1,1,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,1 +1,42,1,9119,0,1,120.0,1,34,34,0,0,128.2,1,0,1,1,0,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,19,133.1,1,37,37,9,9,117.2,0,0,1,1,1,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9147,0,1,131.0,1,19,38,9,7,132.4,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,2 +5,39,1,9003,0,1,180.0,1,1,1,4,8,179.6,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,1,5,9119,0,1,135.0,1,37,37,90,90,122.1,1,0,1,1,0,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,133.0,1,1,38,5,10,131.3,1,0,1,1,1,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,2 +1,18,1,9500,0,1,126.0,1,37,19,5,5,119.3,0,0,1,1,1,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,110.0,1,19,37,9,6,120.0,0,0,0,0,0,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9556,0,1,130.0,1,37,37,9,9,159.0,1,0,1,1,1,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,2 +1,17,1,9070,0,1,141.0,1,19,38,4,5,133.7,1,0,1,1,0,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,150.0,1,1,37,4,6,120.0,0,0,1,1,0,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,17,2,9085,0,1,123.0,1,3,19,2,9,118.9,0,0,1,1,0,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,17,1,9991,1,1,140.0,1,38,37,6,7,127.3,0,0,1,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,151.0,1,3,1,2,1,129.8,1,0,1,1,0,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,1 +1,43,1,8014,1,1,113.0,1,37,37,0,6,128.2,0,0,1,0,1,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9070,0,1,117.0,1,1,37,4,7,127.9,1,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,145.0,1,19,19,9,7,136.6,0,0,1,1,1,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.0,1,34,37,4,9,134.4,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,9238,0,39,130.0,1,38,38,5,10,126.7,0,0,0,1,1,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,1 +1,17,1,9773,0,1,122.0,1,1,1,4,7,116.8,1,0,0,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,3,9147,0,1,124.0,1,1,1,5,3,116.7,1,0,1,1,0,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,38,1,9,4,123.2,0,0,1,1,1,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,2 +1,39,1,9556,0,40,130.0,1,1,1,4,5,145.0,0,0,1,1,1,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,2 +1,43,1,9147,0,1,127.0,25,1,5,9,10,124.2,1,0,1,1,0,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,2 +2,43,1,9670,0,1,120.0,1,34,34,0,0,128.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,0 +1,18,1,9238,0,1,122.0,1,1,3,9,2,112.6,1,0,1,1,0,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,122.0,1,1,1,4,4,119.6,1,0,1,1,1,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,2 +1,17,5,9670,0,1,125.0,1,1,19,9,7,119.4,1,0,1,1,1,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,146.0,1,19,37,9,7,153.0,1,0,1,1,1,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,108.0,1,38,38,7,7,115.0,1,0,0,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,133.1,1,1,1,3,9,138.0,1,0,1,1,1,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,140.0,1,37,37,9,5,140.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,19,133.1,1,2,1,2,4,100.0,0,0,1,1,0,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9147,0,1,129.0,1,38,37,3,5,132.9,1,0,1,1,1,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,149.0,1,3,2,2,5,151.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,135.0,1,19,4,9,2,143.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9147,0,1,158.0,1,19,37,9,7,130.0,1,0,1,1,1,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,1 +1,17,6,9556,0,1,122.0,1,1,1,4,5,117.1,1,0,1,1,1,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9556,0,12,133.1,1,34,34,99,99,100.5,0,0,1,1,1,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,9003,0,1,123.0,1,37,37,9,9,110.0,0,0,0,0,1,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,138.0,1,3,3,2,2,127.5,1,0,1,1,1,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,1 +1,43,1,9500,0,1,121.0,1,38,19,5,5,115.4,1,0,1,1,1,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,2 +1,17,4,9147,0,1,114.0,1,19,19,4,4,109.5,1,0,1,1,0,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,1 +1,17,1,9254,0,1,148.0,1,1,1,4,8,145.2,0,0,1,1,0,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,121.0,1,1,1,4,4,123.1,1,0,1,1,0,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,150.0,1,3,3,2,5,154.6,1,0,1,1,1,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,151.0,1,19,38,9,9,157.0,1,0,0,1,1,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,101.0,0,0,1,1,1,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,1 +1,1,2,9254,0,1,127.0,1,3,19,3,10,130.9,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,146.0,1,1,1,9,8,149.5,1,0,1,1,0,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9130,0,6,133.1,1,1,29,4,90,123.3,1,0,1,1,1,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,3,3,7,146.5,1,0,0,1,0,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,2 +1,7,1,8014,1,40,120.0,1,37,19,9,3,120.0,0,0,1,1,1,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9853,0,1,125.0,1,37,37,9,9,114.9,1,0,0,0,1,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,0 +1,1,2,9773,0,1,140.0,1,1,1,4,3,131.6,0,0,1,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,142.0,1,1,19,9,9,136.1,0,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,113.0,1,1,1,4,4,106.7,1,0,1,1,1,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,130.0,1,1,2,4,2,130.0,0,0,1,1,0,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,39,1,9119,0,1,130.0,1,19,37,9,9,134.0,0,0,1,1,0,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,2 +1,18,1,9500,0,1,123.0,1,37,37,3,3,118.0,1,0,1,1,1,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,1 +1,10,2,9085,0,1,163.3,22,19,1,4,9,163.3,0,0,1,1,1,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,135.0,1,19,19,9,5,135.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,136.0,1,4,5,2,2,126.2,0,0,1,1,0,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,44,1,9130,0,39,150.0,1,1,37,4,8,150.0,1,0,1,0,1,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9085,0,3,140.0,1,19,20,4,90,140.0,1,0,1,1,1,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,43,1,9070,0,1,135.0,1,1,38,3,9,126.4,1,0,1,1,1,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,140.0,1,19,38,7,8,129.9,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,133.1,1,1,1,9,9,155.0,0,0,1,1,1,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,17,5,9773,0,1,122.0,1,38,38,7,7,123.1,1,0,1,0,1,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9130,0,1,117.0,1,1,1,9,9,109.3,1,0,1,1,1,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9500,0,1,130.0,1,1,38,9,9,125.1,1,0,1,1,1,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,2 +1,1,2,9773,0,1,144.0,1,3,3,3,2,140.2,1,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,145.0,1,1,1,4,10,145.0,0,0,1,1,1,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,0 +1,51,1,9070,0,1,143.0,1,1,1,4,4,120.0,1,0,1,1,1,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,0 +1,17,1,9773,0,1,145.0,1,1,38,90,8,132.8,1,0,1,0,0,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9556,0,1,120.0,1,38,38,191,193,120.0,0,0,0,1,1,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,148.0,1,19,1,7,5,138.3,1,0,1,1,0,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,146.0,1,3,3,3,6,133.4,1,0,1,1,1,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,1 +1,17,1,9130,0,1,131.0,1,12,12,2,8,128.2,1,0,1,1,0,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,6,9556,0,1,115.0,1,19,2,5,3,112.2,1,0,1,1,1,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,1 +1,43,1,9556,0,1,126.0,1,2,3,3,2,100.0,0,0,1,1,1,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,2 +1,17,1,9238,0,1,120.0,1,19,37,9,9,113.0,1,0,1,1,1,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,132.0,1,19,38,5,5,118.0,1,0,1,1,1,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,1 +2,1,1,9238,0,1,145.0,1,37,34,9,7,139.4,0,0,1,0,1,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,131.0,1,38,38,191,174,125.4,1,0,1,1,1,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,1 +2,39,1,9119,0,1,120.0,1,37,38,9,10,145.4,0,0,0,1,0,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,0 +1,1,1,9130,0,1,138.0,1,4,5,2,2,123.0,1,0,1,1,1,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,127.0,1,5,3,4,4,122.8,1,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,136.0,1,1,1,4,4,127.0,1,0,1,1,1,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,2 +1,17,3,9119,0,1,115.0,1,3,1,3,3,116.1,1,0,1,0,0,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,143.0,1,38,37,4,9,116.5,1,0,1,1,1,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,3,19,3,8,134.9,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,1 +1,44,1,9119,0,39,140.0,1,5,41,3,2,140.0,0,0,1,1,0,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,124.0,1,19,19,9,3,115.6,1,0,1,0,0,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,0 +1,7,1,9500,0,3,130.0,1,19,38,5,3,130.0,0,0,1,1,1,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,137.0,1,1,1,4,10,124.8,1,0,1,1,0,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,138.0,1,1,3,1,4,127.5,1,0,1,1,0,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,112.0,1,1,1,5,1,111.7,0,0,0,0,0,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,0 +1,1,4,9500,0,1,147.0,1,1,1,4,9,124.5,1,0,1,1,1,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,1 +1,7,1,9500,0,3,140.0,1,3,19,2,6,140.0,0,0,1,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,121.0,1,19,19,7,7,113.0,1,0,1,1,1,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,0 +1,1,2,8014,1,1,96.0,1,3,1,3,9,100.0,0,0,1,1,1,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,3,120.0,1,37,37,9,9,120.0,0,0,1,1,1,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,152.0,1,1,38,4,5,144.7,0,0,1,1,1,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,1 +2,1,1,9070,0,1,127.0,1,12,19,9,9,123.2,0,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,1 +1,1,3,9070,0,1,147.0,1,34,37,5,7,135.8,1,0,1,1,1,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,7,1,9119,0,4,180.0,1,4,3,2,7,180.0,0,0,0,1,0,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,2 +1,1,6,9500,0,1,129.0,1,37,19,9,7,127.8,1,0,1,1,1,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,100.0,1,37,37,7,7,160.0,1,0,1,1,1,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,127.0,1,19,1,5,5,117.6,1,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,2 +1,39,1,9003,0,1,110.0,1,1,1,9,4,120.0,0,0,0,0,0,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9773,0,1,143.0,11,19,19,4,9,133.9,1,0,1,1,0,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,1 +1,44,1,8014,1,39,160.0,1,37,37,7,7,156.1,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,43,2,9670,0,1,135.0,1,3,19,1,7,123.5,1,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,1,130.0,1,38,3,132,122,100.0,0,0,1,1,0,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,2 +1,15,1,9238,0,1,150.0,26,19,1,9,9,146.5,1,0,0,0,0,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,1 +1,17,6,9119,0,1,129.0,1,37,13,4,90,117.1,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,3,130.0,1,3,3,3,10,147.6,0,0,1,1,0,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,171,0,1,145.0,1,1,1,3,3,140.1,1,0,1,1,1,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,43,3,9254,0,1,135.0,1,3,3,2,2,122.1,0,0,1,1,0,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,2 +1,17,1,171,0,1,140.0,41,1,1,5,7,146.3,1,0,1,1,1,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9070,0,1,126.0,1,38,38,9,8,129.9,1,0,1,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,1 +1,7,1,9070,0,3,120.0,1,4,4,2,2,120.0,0,0,1,1,0,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,0 +1,17,4,9070,0,1,144.0,1,38,1,9,9,137.4,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,125.0,1,3,3,2,3,118.0,1,0,1,1,0,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,0 +5,39,1,9238,0,1,130.0,1,19,38,9,10,146.0,0,0,1,1,0,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,100.0,1,37,37,6,5,107.5,0,0,1,1,1,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9773,0,1,130.0,1,1,19,1,3,161.5,0,0,1,1,0,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,140.0,1,19,19,9,4,127.8,1,0,1,1,0,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,113.0,1,1,37,1,10,116.5,1,0,1,1,1,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,1 +1,1,2,9238,0,1,145.0,1,1,19,4,8,121.4,0,0,1,1,1,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9003,0,19,133.1,1,19,37,9,10,120.0,0,0,0,1,1,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,2 +1,1,1,9085,0,1,150.0,1,12,2,4,2,144.6,0,0,0,0,1,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,40,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,0 +1,17,5,9500,0,1,137.0,1,1,1,5,5,132.6,1,0,1,1,1,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,3,19,4,7,119.0,0,0,1,1,0,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,128.0,1,1,1,4,5,124.7,0,0,1,1,0,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,2 +1,39,2,9670,0,19,133.1,1,34,34,0,0,100.0,1,0,1,0,0,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,0 +1,39,1,9556,0,1,120.0,1,19,19,4,5,122.8,0,0,1,1,1,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,0 +1,1,2,171,0,1,165.0,1,3,3,2,2,163.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,133.8,1,3,37,2,10,184.0,0,0,1,1,1,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,120.0,1,37,19,9,4,148.8,0,0,1,1,1,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,1 +1,1,5,9500,0,1,151.0,1,1,1,9,9,127.8,0,0,1,1,1,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,131.0,1,38,19,7,7,125.3,1,0,1,1,1,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,128.0,1,1,1,9,6,120.3,0,0,1,1,0,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,2 +1,1,5,9500,0,1,118.0,1,3,1,5,10,113.5,1,0,1,1,1,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,140.0,1,37,37,7,9,126.8,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,117.0,1,38,37,9,9,113.5,1,0,1,1,1,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,135.0,1,19,19,9,9,122.8,1,0,1,1,0,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,151.0,1,37,37,9,7,147.5,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,1,3,4,4,147.5,1,0,1,1,1,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,128.0,1,38,37,9,9,124.9,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9085,0,1,124.0,1,3,19,2,3,113.9,1,0,1,1,1,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,120.0,1,3,19,4,7,119.7,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,171,0,1,147.0,1,1,12,4,4,148.4,1,0,1,1,0,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,136.0,1,19,1,9,8,123.4,1,0,1,1,1,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,123.0,1,3,1,2,5,112.9,0,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,2,9556,0,1,133.1,1,3,1,2,4,136.1,0,0,1,1,0,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,141.0,1,3,1,4,4,142.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,1,1,9003,0,1,120.0,1,37,37,9,9,120.5,1,0,0,1,0,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,140.0,1,37,37,9,6,140.0,1,0,1,1,0,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,147.0,1,19,1,4,3,138.5,1,0,1,1,1,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,123.0,1,34,34,90,90,113.3,1,0,1,1,1,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,38,4,5,130.4,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,7,7,134.0,0,0,1,1,0,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,38,38,4,7,111.6,1,0,1,1,1,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,1 +1,1,1,9119,0,1,148.0,1,19,38,9,7,133.0,0,0,1,1,0,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,128.0,1,3,1,2,1,127.8,0,0,1,1,1,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,172.0,1,38,37,9,9,149.3,0,0,1,1,0,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,138.0,1,37,37,9,8,127.2,1,0,1,1,1,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,140.0,1,3,1,2,6,137.6,1,0,1,1,0,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,1 +2,43,1,8014,1,1,110.0,1,37,19,9,3,100.0,0,0,1,1,1,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,2,1,2,4,140.7,1,0,1,1,0,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,1 +1,1,1,9130,0,1,137.0,1,3,38,3,5,129.3,1,0,1,1,1,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,136.0,1,38,38,0,7,133.2,1,0,1,1,1,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,145.0,6,34,34,0,0,134.5,1,0,1,1,0,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,147.0,1,19,19,3,10,151.9,1,0,1,1,1,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,118.0,1,37,37,9,9,112.1,1,0,1,1,1,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,0 +1,43,1,9773,0,1,122.0,1,1,1,4,5,126.9,0,0,1,1,1,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,126.0,1,12,38,9,5,122.2,0,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,143.0,1,3,3,2,2,129.0,0,0,1,1,0,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,1 +1,39,1,9556,0,1,130.0,1,19,38,9,8,113.3,0,0,1,1,1,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,101.0,1,1,37,4,9,98.9,1,0,1,1,1,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,133.1,1,34,34,90,90,116.0,0,0,1,0,1,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,0 +2,39,1,9991,1,1,170.0,1,37,19,9,3,151.1,0,0,1,1,0,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,1 +2,17,5,9119,0,1,126.0,1,37,38,4,4,122.9,1,0,1,1,0,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,2 +1,1,2,9500,0,1,125.0,1,19,19,9,9,114.9,0,0,1,1,1,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,1 +1,18,3,9773,0,1,128.0,1,19,1,9,9,122.1,1,0,1,1,0,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,149.0,1,38,37,9,9,139.5,0,0,1,1,0,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,1,3,9,5,137.1,0,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,126.0,1,38,37,5,5,114.8,1,0,1,1,1,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,1 +2,39,1,9085,0,1,120.0,1,37,37,6,6,150.0,0,0,1,1,0,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,137.0,1,38,19,0,90,122.3,0,0,1,1,1,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,0 +2,39,1,9853,0,19,133.1,1,37,19,3,7,100.0,0,0,1,1,1,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,145.0,1,4,2,2,3,127.3,1,0,1,1,0,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,129.0,1,1,1,4,8,129.0,0,0,1,0,1,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,143.0,1,1,1,4,4,129.0,1,0,1,1,0,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,136.0,1,19,38,9,9,119.3,1,0,1,1,1,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,151.6,0,0,1,1,1,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,2 +1,1,1,9238,0,1,108.0,1,19,38,9,9,107.3,0,1,1,1,1,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,134.0,1,1,1,2,7,128.4,1,0,1,1,1,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,1 +1,42,1,9119,0,1,120.0,1,3,1,2,9,108.2,1,0,1,1,0,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,0 +1,16,2,9500,0,1,127.0,1,2,38,4,9,119.0,1,0,1,1,1,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,131.0,1,1,1,9,9,122.0,0,0,1,1,1,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,1 +1,7,1,9070,0,3,133.1,1,3,5,2,2,120.0,1,0,1,1,1,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,150.0,1,19,19,5,5,132.8,1,0,1,1,1,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,1 +1,18,2,9670,0,1,121.0,1,37,38,4,1,111.9,1,0,1,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,108.0,41,3,3,9,9,107.0,0,0,0,0,1,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,150.0,1,34,19,0,4,152.8,1,0,1,1,0,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,18,2,9238,0,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,130.0,6,19,1,6,4,130.0,1,0,1,1,1,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,2 +1,51,1,9119,0,1,136.0,1,1,19,3,5,133.6,1,0,1,1,0,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,0 +1,1,4,9773,0,1,155.0,1,3,19,1,4,149.8,1,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9070,0,1,124.0,1,19,38,4,0,117.6,1,0,1,1,0,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,9,100.0,0,0,1,1,0,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,2 +1,44,1,9238,0,1,140.0,1,1,1,5,5,143.4,0,0,1,1,1,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,120.0,1,1,19,7,7,111.3,0,0,1,1,0,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,2 +2,1,1,9556,0,1,144.0,1,19,19,193,144,139.8,0,0,0,1,0,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,110.0,1,1,1,5,5,160.0,1,0,0,1,1,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,0 +2,39,1,9853,0,19,133.1,1,37,37,9,9,131.0,0,0,1,1,1,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,139.0,1,4,1,2,10,136.4,1,0,1,1,1,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,1 +1,17,3,9085,0,1,134.0,1,37,38,9,9,120.4,1,0,1,1,1,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,148.0,1,3,2,4,2,131.6,1,0,1,1,1,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,0 +1,1,3,9500,0,1,145.0,1,19,37,7,7,141.5,1,0,1,1,1,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,1 +2,39,1,9130,0,19,133.1,1,37,38,9,9,120.0,0,0,1,1,0,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,3,9254,0,1,121.0,1,19,37,4,7,116.8,1,0,1,1,1,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,1 +1,1,3,9254,0,1,123.0,1,1,1,4,3,123.4,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,38,38,9,9,133.4,1,0,1,1,0,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,1 +1,42,1,9500,0,1,124.0,1,19,19,4,9,124.0,0,0,1,1,1,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,40,130.0,1,37,37,9,7,130.0,0,0,1,1,1,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,140.0,1,3,38,2,9,140.0,1,0,1,1,1,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,158.0,1,38,38,9,7,144.7,1,0,1,1,1,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,18,2,9238,0,1,121.0,1,19,1,4,3,121.4,1,0,1,1,1,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,12,133.1,1,37,19,9,10,120.0,0,0,1,1,0,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,122.0,1,3,1,4,3,114.8,1,0,1,1,1,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,2 +4,43,1,9991,1,1,164.0,1,37,37,6,6,131.8,0,0,1,1,1,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,1 +1,1,3,9773,0,1,145.0,1,38,38,9,5,133.1,0,0,1,1,1,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9853,0,19,133.1,1,38,19,9,9,108.0,0,0,0,0,1,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,2 +1,17,3,9070,0,1,131.0,1,38,37,5,5,120.2,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,2 +1,43,1,9238,0,1,130.0,1,38,37,9,7,133.2,0,0,1,1,1,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,112.0,1,1,1,3,3,106.4,1,0,1,1,0,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,125.0,1,1,38,144,181,123.3,0,0,1,1,1,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,125.0,1,3,2,2,1,119.1,1,0,1,1,1,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,0 +1,7,1,9853,0,3,140.0,1,34,34,0,0,140.0,1,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,135.0,1,1,19,3,9,137.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,7,1,9991,1,3,120.0,1,37,37,6,7,120.0,0,0,0,0,0,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,130.0,1,1,1,4,3,125.1,1,0,1,1,1,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,1 +2,39,1,33,0,1,120.0,1,38,1,9,5,153.8,0,0,0,1,0,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,1,150.0,1,37,37,9,9,140.0,0,0,1,0,0,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,127.0,1,1,38,9,7,120.4,1,0,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,7,1,8014,1,43,180.0,1,19,19,9,4,180.0,0,0,1,1,1,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,1 +1,1,3,9147,0,1,143.0,1,1,1,5,7,133.2,1,0,1,1,1,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,1 +1,15,1,9853,0,1,133.1,41,43,1,153,135,128.2,0,0,1,1,1,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,1 +1,39,1,9147,0,12,133.1,1,1,1,9,4,140.0,1,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,151.0,1,1,38,4,7,137.0,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,1 +1,17,4,171,0,1,172.0,1,3,1,2,10,155.6,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,129.0,1,19,1,9,5,112.0,0,0,1,1,0,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,150.0,1,38,3,9,1,140.0,0,0,1,1,0,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,1 +1,1,1,9773,0,1,124.0,17,1,1,3,5,118.1,1,0,0,0,1,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,0 +1,17,1,9670,0,1,124.0,1,37,19,5,8,114.2,1,0,0,1,1,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,122.0,1,1,19,3,5,116.8,1,0,1,1,1,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,144.0,1,38,1,9,10,137.4,0,0,1,1,1,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,19,19,9,9,120.0,0,0,1,1,1,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,138.0,1,38,38,7,6,124.7,1,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,2 +1,18,2,9147,0,1,132.0,1,3,3,5,7,119.1,1,0,0,0,1,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,17,6,9119,0,1,111.0,1,19,3,5,10,106.5,1,0,1,1,0,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,0 +1,7,1,9500,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,1,140.0,1,37,37,9,9,130.0,1,0,1,1,0,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,125.0,1,37,37,3,3,124.0,0,0,1,1,0,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,128.0,1,19,2,7,3,126.3,1,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +2,39,1,9500,0,1,110.0,1,37,37,9,6,114.3,0,0,1,1,1,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,9085,0,1,133.1,1,1,9,4,4,128.2,0,0,1,1,1,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,1 +1,1,3,9238,0,1,126.0,1,38,19,5,8,120.8,1,0,1,1,1,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,121.0,1,1,1,9,8,118.9,1,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,109.0,1,19,37,5,5,108.3,0,0,1,1,1,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,2 +1,1,4,9670,0,1,127.0,1,1,1,7,7,116.5,1,0,1,1,1,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,171,0,19,133.1,101,1,19,2,7,110.0,0,0,1,1,0,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,133.0,1,37,37,9,7,124.6,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,39,137.0,1,1,1,5,10,124.5,0,0,1,0,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,130.0,1,19,19,7,7,121.6,0,0,1,1,1,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,1 +2,39,1,8014,1,1,130.0,1,37,37,6,5,113.5,1,0,1,1,1,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9670,0,1,120.0,1,38,38,5,7,115.1,1,0,1,1,1,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,115.0,1,38,1,9,4,116.1,1,0,1,1,0,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,130.1,0,0,1,1,1,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,2 +1,1,3,9238,0,1,133.1,1,1,1,9,9,100.0,1,0,1,1,0,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,168.0,0,0,1,1,0,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,148.0,1,1,1,9,9,141.7,0,0,1,0,0,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,0 +1,15,1,33,0,1,133.1,41,2,3,2,4,100.0,0,0,1,1,0,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,2 +1,17,3,9147,0,1,135.0,1,37,37,6,5,121.0,1,0,1,1,0,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,151.0,1,3,3,1,90,161.9,0,0,1,1,1,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,8,108.5,0,0,1,1,0,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9670,0,1,130.0,1,26,30,0,5,128.6,1,0,0,1,1,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,1 +1,43,1,9500,0,1,140.0,100,1,1,6,6,128.2,0,0,1,1,1,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,140.0,1,19,37,5,7,140.0,1,0,1,1,0,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,0 +1,39,1,33,0,1,140.0,1,3,1,2,4,152.8,0,0,1,1,1,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,2 +1,43,1,9070,0,1,117.0,1,1,1,4,7,112.5,1,0,1,1,0,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,126.0,1,37,19,7,7,125.7,0,0,1,1,1,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,2 +1,1,2,9773,0,1,140.0,1,38,38,5,7,126.4,1,0,1,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,121.0,1,37,38,6,9,121.0,0,0,1,1,1,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,136.0,1,12,1,4,4,122.0,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,117.0,1,37,37,9,9,120.2,1,0,1,1,1,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,133.1,1,38,1,9,9,121.0,0,0,0,0,0,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,0 +1,44,1,9991,1,39,130.0,1,37,37,5,5,130.0,1,0,1,1,0,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,138.0,1,1,19,4,9,142.2,1,0,1,1,1,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,148.0,1,3,1,2,10,148.0,1,0,1,1,1,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,1 +1,17,6,9556,0,1,134.0,1,19,38,7,7,128.5,1,0,1,1,1,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,141.0,1,1,19,5,8,141.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,149.0,1,3,1,9,9,137.5,0,0,1,1,0,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,1 +1,1,3,9085,0,1,142.0,1,11,11,90,90,155.3,0,0,1,1,1,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +1,1,2,9070,0,1,135.0,1,19,37,9,9,134.0,1,0,1,1,1,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,132.0,1,19,38,9,7,120.1,0,0,1,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9147,0,1,133.0,1,37,37,9,5,119.7,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,139.0,1,3,4,2,2,130.6,0,0,1,1,1,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,130.0,1,1,3,9,2,130.0,1,0,0,0,0,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,0 +1,17,3,9500,0,1,138.0,1,3,3,4,5,130.0,1,0,1,1,1,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,121.0,1,19,19,3,3,116.1,1,0,1,1,1,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,160.0,1,3,38,1,9,152.0,1,0,1,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,130.0,41,37,19,9,8,125.5,1,0,1,1,1,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,133.1,1,38,38,191,193,146.0,0,0,0,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,1 +4,39,1,9003,0,1,140.0,1,37,37,9,8,150.0,0,0,1,1,0,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,2 +1,17,2,9670,0,1,132.0,1,1,19,5,3,124.0,1,0,1,1,0,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,117.0,1,19,19,5,7,118.4,0,0,1,1,0,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,140.0,6,1,19,4,7,131.6,1,0,1,1,1,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,142.0,1,38,1,8,10,138.5,1,0,1,1,0,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,2 +1,1,1,9130,0,1,132.0,1,3,1,4,9,121.9,1,0,1,1,1,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,122.0,1,1,1,9,9,116.1,1,0,1,1,0,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,0 +1,7,1,8014,1,3,130.0,1,37,38,0,5,130.0,0,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,138.0,1,19,19,9,5,124.8,1,0,1,1,1,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,140.0,1,19,38,3,9,140.0,1,0,1,1,0,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +4,39,1,8014,1,1,138.0,1,19,19,90,90,127.0,0,0,1,0,1,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9500,0,19,133.1,1,1,3,2,2,100.0,0,0,0,1,0,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,117.0,1,3,1,3,5,110.7,1,0,1,1,0,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,120.0,1,19,19,5,5,113.0,1,0,1,1,1,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,160.0,1,37,37,7,7,133.0,1,0,1,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,137.0,1,1,1,4,5,126.3,1,0,1,1,1,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,19,37,9,7,123.9,1,0,1,1,1,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,38,38,9,5,130.0,0,0,0,0,0,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,137.0,1,19,37,9,7,130.8,0,0,0,1,1,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,38,37,4,6,150.0,1,0,1,1,1,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,115.0,1,34,38,0,5,108.4,1,0,1,1,1,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,140.0,1,3,38,141,151,135.3,0,0,1,1,0,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,148.0,1,19,19,7,7,130.9,0,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,127.0,1,1,1,4,3,126.3,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,2,9670,0,1,100.0,1,37,37,9,9,100.0,0,0,1,1,1,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,2 +1,17,2,171,0,1,141.0,1,19,37,9,9,136.1,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,123.0,1,30,19,4,90,122.3,0,0,1,1,1,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,145.0,1,1,38,5,7,127.5,1,0,1,1,0,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9085,0,1,150.0,1,37,37,90,10,112.0,0,0,1,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,128.0,1,37,1,9,7,124.2,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,0 +1,43,1,9070,0,39,130.0,1,19,37,5,9,124.0,1,0,1,1,1,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,1 +1,17,1,9003,0,1,170.0,1,1,4,9,5,144.1,1,0,0,0,0,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9670,0,1,110.0,1,19,19,90,99,107.2,0,0,1,1,0,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9238,0,19,133.1,1,37,37,9,9,130.0,1,0,1,1,1,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,42,1,9119,0,1,144.0,1,34,34,0,0,119.5,0,0,1,1,0,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,19,133.1,1,37,37,6,6,162.0,0,0,0,1,0,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,16,1,9085,0,1,138.0,1,37,37,9,9,123.0,1,0,1,1,1,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,39,1,9500,0,1,133.1,1,19,19,5,6,121.4,0,0,0,1,1,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9085,0,1,138.0,1,1,1,4,7,132.1,1,0,1,1,1,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,1 +1,39,1,9119,0,1,133.1,1,37,37,9,9,101.6,0,0,1,1,0,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9500,0,1,126.0,1,1,19,131,181,120.1,1,0,1,1,1,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,38,9,9,142.0,1,0,1,1,1,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,1 +1,18,1,8014,1,1,138.0,1,19,1,9,5,134.5,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,19,9,9,150.0,0,0,1,1,0,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,126.0,1,38,37,9,9,123.6,1,0,1,1,1,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,39,1,9254,0,19,133.1,1,19,19,3,1,101.5,0,0,0,0,0,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,43,2,9119,0,1,115.0,1,38,19,9,6,112.2,1,0,0,1,0,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,2 +2,39,1,9003,0,1,120.0,1,37,37,9,9,125.7,0,0,0,0,1,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,0 +1,17,2,9773,0,1,115.0,1,1,1,5,5,119.6,1,0,1,1,1,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,19,9,4,140.0,0,0,1,1,1,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,125.0,1,37,19,90,90,137.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,120.0,1,3,38,3,7,124.2,1,0,1,1,0,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,2 +1,1,1,9147,0,1,146.0,1,5,1,1,5,144.6,0,0,1,1,0,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,116.0,1,1,1,3,4,113.6,1,0,1,1,1,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,1 +4,42,1,9147,0,1,133.1,1,37,38,7,3,123.0,1,0,1,1,0,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,118.9,1,38,37,5,9,118.9,1,0,1,1,1,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,123.0,1,12,1,9,9,119.2,1,0,1,1,1,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,1 +1,7,1,9500,0,2,140.0,1,38,37,7,8,140.0,0,0,1,1,1,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,110.0,1,37,37,90,90,108.4,1,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9119,0,1,146.0,1,1,37,7,7,132.4,1,0,1,1,0,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,19,133.1,1,19,3,9,2,140.0,1,0,0,1,0,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,0 +1,18,2,9853,0,1,111.0,1,38,38,191,171,105.8,1,0,1,1,1,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,6,130.2,0,0,1,1,1,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,130.0,1,1,3,9,10,118.1,1,0,1,1,0,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,118.0,1,1,19,5,4,118.0,0,0,1,1,1,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,153.0,1,38,38,7,7,159.7,1,0,1,1,1,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,171,0,12,110.0,1,37,37,7,7,106.0,1,0,1,1,0,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,134.0,1,19,1,9,4,124.9,1,0,1,1,1,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,0 +1,1,3,9254,0,1,121.0,1,19,19,9,9,125.9,1,0,1,1,1,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,160.0,1,19,19,4,9,154.4,0,0,1,1,1,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,3,140.0,1,19,19,9,7,152.4,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9130,0,1,130.0,1,19,1,191,144,110.0,0,0,1,1,0,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,142.0,1,38,37,9,5,127.3,1,0,1,1,1,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,37,37,9,9,130.0,0,0,0,1,1,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,124.0,1,37,19,9,4,121.2,0,0,1,1,0,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,1 +4,39,1,9991,1,1,120.0,1,19,19,9,3,113.9,1,0,1,1,1,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,114.0,1,19,38,5,3,112.6,1,0,1,1,1,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,1 +1,7,1,9991,1,40,120.0,1,1,19,4,9,120.0,0,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,128.0,1,19,38,9,9,118.2,0,0,1,1,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,4,9070,0,1,126.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,130.0,1,1,1,0,0,119.5,0,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,184.4,22,2,19,2,8,184.4,0,0,1,1,1,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,133.1,1,37,37,9,9,132.8,0,0,0,0,0,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9085,0,1,120.0,1,38,19,90,90,127.0,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,1 +1,17,4,9147,0,1,132.0,1,38,19,5,5,120.8,1,0,1,1,0,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,0 +1,10,1,9670,0,1,148.9,22,37,37,9,9,148.9,0,0,1,1,1,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,4,150.0,1,1,1,4,6,150.0,0,0,1,1,0,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,150.0,1,19,1,9,3,110.0,1,0,1,1,0,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,1 +1,15,1,9670,0,1,130.0,26,42,1,2,7,130.0,0,1,0,1,1,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,1 +2,7,1,8014,1,3,120.0,1,38,1,9,9,120.0,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,149.0,1,19,37,9,9,158.1,1,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,4,9147,0,1,124.0,1,37,37,9,9,117.4,0,0,1,1,1,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,142.0,1,34,1,5,10,136.1,1,0,1,0,0,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,1,1,8014,1,1,165.0,1,37,37,0,0,162.9,1,0,1,1,0,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,130.0,1,37,37,5,7,123.4,1,0,1,1,0,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,0 +4,39,1,8014,1,1,133.1,1,37,37,7,7,143.0,0,0,1,1,0,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,121.0,1,38,37,8,8,115.4,1,0,1,1,1,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,7,1,9556,0,3,140.0,1,3,3,2,2,140.0,0,0,0,0,0,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,116.0,1,38,19,0,2,116.7,1,0,1,1,0,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,132.0,1,38,1,5,5,124.3,0,1,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,133.1,1,38,12,7,0,111.5,0,0,1,0,1,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,0 +1,53,1,9147,0,42,140.0,1,1,1,6,6,142.2,0,0,1,1,0,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,1 +2,44,1,9991,1,39,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,9773,0,1,170.0,1,1,19,9,7,155.0,0,0,1,1,0,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,8014,1,19,133.1,1,37,37,4,8,112.5,0,0,1,1,1,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,120.0,1,1,1,5,8,112.0,1,0,1,1,1,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,123.0,1,1,1,3,3,113.6,1,0,1,1,1,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,1 +1,39,1,9085,0,1,133.1,1,1,19,9,9,162.3,1,0,1,1,1,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,116.0,1,37,1,9,8,115.7,1,0,0,0,1,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,160.0,1,9,19,4,3,151.3,0,0,1,1,1,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,1 +1,39,1,8014,1,19,149.0,1,34,34,0,0,126.3,0,0,1,1,1,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,44,1,9238,0,39,140.0,41,1,1,4,6,137.5,0,0,0,1,1,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,130.0,1,37,37,9,9,129.0,1,0,1,1,1,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,19,38,7,7,118.7,0,0,1,1,0,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,128.0,0,0,1,1,1,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,1 +1,17,1,9070,0,1,135.0,1,19,37,5,9,145.9,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,128.0,1,1,19,9,7,118.2,0,0,1,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,128.0,1,19,38,9,9,127.0,0,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,140.0,1,37,12,9,9,150.0,0,0,0,1,0,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,0 +2,43,1,8014,1,1,160.0,1,37,39,9,4,140.9,0,0,1,1,1,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,133.0,1,38,19,8,7,127.3,1,0,1,1,1,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,1 +1,15,1,9670,0,1,160.0,1,37,12,9,9,149.5,1,0,1,0,0,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,152.0,101,2,1,9,1,168.5,1,0,1,1,0,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,1 +1,1,3,9085,0,1,147.0,1,19,19,9,1,135.6,1,0,1,1,1,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,1 +1,17,2,8014,1,1,120.0,1,37,34,0,0,117.6,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,141.0,1,37,37,9,9,130.2,0,0,1,1,0,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,1 +1,16,2,9147,0,1,139.0,1,38,37,9,9,123.7,1,0,1,1,1,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,134.0,1,19,38,4,8,129.5,0,0,1,1,1,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,113.0,1,1,37,9,10,117.2,1,0,1,1,1,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,18,2,9556,0,1,126.0,1,3,3,2,2,115.5,0,0,1,1,0,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,1 +1,39,1,8014,1,1,134.0,1,37,38,4,7,110.0,1,0,1,1,1,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,42,1,171,0,1,132.0,1,1,1,1,4,132.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9003,0,1,130.0,1,19,19,9,1,140.0,0,0,1,1,1,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9773,0,1,132.0,1,38,19,9,9,125.0,1,0,1,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,140.0,1,37,37,9,6,132.8,0,0,1,1,0,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,130.0,1,37,19,9,5,140.2,1,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9070,0,1,118.0,1,43,3,123,123,110.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,1 +1,39,1,8014,1,19,100.0,1,37,37,5,5,111.0,1,0,1,1,1,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,2 +1,1,3,9085,0,1,138.0,1,1,3,4,4,126.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,132.0,1,2,19,4,4,125.0,1,0,1,1,1,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,38,100.0,1,37,37,9,7,154.0,1,0,1,1,0,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,138.0,1,1,19,4,4,131.7,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,1 +2,39,2,9147,0,1,140.0,1,37,37,9,8,108.0,0,0,1,1,1,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,2 +1,1,5,9147,0,1,134.0,1,3,2,2,2,134.7,0,0,1,1,0,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,2 +1,43,1,9130,0,1,120.0,1,2,3,3,2,120.0,1,0,1,0,0,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,0 +1,1,3,9085,0,1,140.0,1,10,19,90,90,135.8,1,0,1,1,1,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,142.0,1,37,38,5,1,129.4,0,0,1,1,1,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,1 +1,17,4,9670,0,1,120.0,1,1,19,5,5,117.2,1,0,1,1,1,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,136.0,1,1,19,5,7,136.4,0,0,1,1,1,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,120.0,1,37,37,5,5,124.6,0,0,1,1,1,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,2 +1,39,1,9500,0,1,133.1,1,1,37,9,9,100.0,0,0,1,1,0,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,123.0,1,19,1,9,3,117.8,1,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,1 +5,39,1,9254,0,1,133.1,1,2,2,2,2,103.0,0,0,1,1,1,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,171,0,1,133.0,1,1,37,4,7,126.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,6,9500,0,1,119.0,1,1,1,4,4,115.0,1,0,1,1,0,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,143.0,1,38,19,151,193,134.3,1,1,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,135.0,1,1,19,4,4,129.1,0,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,43,2,9670,0,1,130.0,1,19,1,4,4,127.6,1,0,1,1,0,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,1,9254,0,1,126.0,1,37,37,5,1,126.0,0,0,1,0,0,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,0 +1,42,1,9119,0,1,120.0,1,19,37,9,9,113.8,0,0,1,0,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9991,1,1,140.0,1,37,37,9,9,135.8,1,0,1,1,0,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,1 +1,17,5,9085,0,1,118.0,1,38,38,9,9,112.4,1,0,1,1,1,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,1 +1,17,3,9773,0,1,134.0,1,2,1,3,3,129.5,1,0,1,1,0,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,129.0,1,1,38,4,7,123.4,0,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,132.0,1,19,37,4,9,128.0,1,0,1,1,1,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,137.0,1,38,37,7,5,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,1 +1,17,5,9119,0,1,138.0,1,19,19,5,5,123.3,1,0,0,1,0,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,138.0,1,1,1,3,4,132.5,1,0,1,1,1,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,1 +1,16,2,9070,0,1,133.0,1,1,3,4,2,122.5,1,0,1,1,1,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,2 +1,17,1,9130,0,1,137.0,1,38,19,5,7,130.0,1,0,1,1,1,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,2 +1,17,1,9238,0,1,131.0,1,37,37,9,7,121.9,0,0,1,1,1,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,1 +2,1,1,9500,0,1,142.0,1,19,38,4,5,130.3,0,0,1,1,1,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,1 +2,39,1,9556,0,1,160.0,1,37,37,9,6,120.0,0,0,1,1,1,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,0 +1,51,1,9670,0,1,126.0,1,3,3,1,10,111.0,0,0,0,1,0,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,1 +1,1,5,9853,0,1,141.0,1,37,19,9,5,133.0,1,0,1,1,1,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,0 +1,1,2,9670,0,1,124.0,1,19,1,9,4,117.7,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,133.0,1,19,19,9,5,120.1,1,0,1,1,1,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,1 +1,43,1,9147,0,1,133.1,1,4,19,2,1,128.2,0,0,1,1,1,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,0 +4,27,1,9070,0,2,130.0,1,34,34,0,0,130.0,0,0,1,1,1,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,0 +1,43,1,9003,0,1,150.0,1,2,4,4,1,150.0,0,0,1,1,0,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,1 +1,39,1,9991,1,19,133.1,1,19,37,7,5,155.5,1,0,0,0,0,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,0 +1,1,1,9238,0,1,106.0,1,1,1,3,3,105.0,0,0,1,1,0,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,111.0,1,19,38,3,3,111.4,1,0,1,0,1,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,0 +1,43,1,9254,0,1,130.0,1,1,19,5,7,130.0,0,0,1,1,1,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,0 +1,17,1,8014,1,1,120.0,1,38,37,6,6,113.0,0,0,1,1,1,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,139.0,1,1,37,4,9,131.3,1,0,1,1,1,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,1 +1,43,3,9254,0,1,110.0,1,37,37,9,9,107.2,1,0,1,1,0,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,147.0,1,1,1,4,4,134.3,1,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,130.0,1,37,38,9,6,130.0,1,0,1,1,1,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,139.0,1,37,38,9,9,124.0,1,0,1,1,0,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,122.0,1,37,37,9,9,126.9,1,0,1,1,1,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,11,11,90,4,114.0,1,0,1,1,0,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9147,0,1,132.0,1,39,39,3,3,127.8,1,0,1,0,0,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,128.0,1,38,37,5,6,122.1,0,0,1,1,1,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,2 +1,17,1,9085,0,1,127.0,1,19,38,194,193,117.6,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9500,0,1,145.0,1,3,3,2,3,141.8,0,0,1,1,1,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,1 +1,53,1,9556,0,42,140.0,1,1,19,4,5,140.0,0,0,1,1,1,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,1 +1,18,1,9147,0,1,160.0,1,19,19,5,8,137.6,1,0,1,1,1,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,1 +1,51,1,9670,0,19,133.1,1,2,1,3,10,120.0,0,0,0,1,0,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,19,133.1,1,19,39,5,3,121.7,0,0,0,0,1,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,126.0,0,0,1,1,0,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,1 +1,1,3,171,0,1,140.0,1,37,37,9,9,124.3,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,136.0,1,38,37,9,9,126.9,1,0,1,1,1,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,136.0,1,19,1,9,9,129.0,1,0,1,1,1,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,144.0,1,38,38,7,7,136.0,1,0,1,1,1,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,154.0,1,38,38,9,9,156.5,1,1,1,1,1,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,131.0,1,19,19,9,9,134.9,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +4,43,1,8014,1,1,140.0,1,38,37,9,9,126.0,0,0,1,1,1,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,141.0,1,37,37,9,7,126.3,1,0,1,1,1,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,1 +1,44,1,8014,1,39,150.0,1,1,37,9,7,146.7,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +1,1,2,9119,0,1,140.0,1,19,19,9,9,125.7,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,12,100.0,1,1,1,4,4,100.0,0,0,1,1,1,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,1 +1,42,1,9500,0,1,111.0,1,1,3,9,10,128.2,1,0,1,1,0,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,1 +1,17,2,9773,0,1,132.0,1,19,19,9,6,120.1,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,131.0,1,4,4,2,1,120.5,0,0,1,1,1,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,44,1,9003,0,39,170.0,1,19,19,5,5,170.0,1,0,1,1,0,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,1 +1,17,1,9773,0,1,150.0,1,38,38,7,7,137.8,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,19,133.1,1,37,37,9,10,120.0,0,0,0,0,0,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9670,0,39,110.0,1,37,1,9,4,110.0,0,0,1,1,1,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,130.0,1,5,3,2,2,130.0,0,0,1,1,0,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9670,0,1,133.1,1,34,3,7,2,130.6,1,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,38,9,10,140.0,0,0,1,1,0,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,133.1,1,19,38,9,9,119.6,1,0,1,1,1,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,118.0,1,19,19,3,3,110.0,1,0,1,1,1,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,2 +1,1,1,9773,0,1,137.0,1,1,1,5,5,129.3,1,0,1,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,127.0,1,19,38,5,9,129.5,1,0,1,1,1,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,126.0,1,38,19,9,6,119.4,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,116.5,0,0,1,1,1,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,125.0,1,19,19,4,7,128.5,1,0,1,1,1,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,2 +1,43,1,9773,0,1,133.1,22,34,34,90,90,130.0,0,0,0,1,1,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,125.0,1,1,1,5,5,128.5,0,0,1,1,0,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9500,0,1,133.1,1,19,37,9,9,120.0,0,0,1,1,1,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,1 +2,39,2,9147,0,1,133.1,1,37,37,5,7,110.0,0,0,1,1,0,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,6,9500,0,1,141.0,1,1,19,1,1,126.7,1,0,1,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,146.0,1,40,43,4,4,150.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,148.0,1,1,1,4,9,129.8,0,0,1,1,1,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,2 +1,17,1,9853,0,1,133.0,1,38,38,9,9,127.4,0,0,0,1,1,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,43,1,9147,0,1,120.0,1,37,37,5,3,113.4,0,0,1,1,0,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,148.0,1,19,3,4,2,136.5,0,0,1,1,1,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,178.0,1,2,1,2,3,157.7,0,0,1,1,0,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +2,7,1,9254,0,3,130.0,1,1,3,4,3,130.0,0,0,1,1,1,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,7,1,33,0,40,120.0,1,38,37,5,6,120.0,1,0,0,0,0,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,0 +2,1,1,9147,0,1,151.0,1,38,37,9,8,132.1,1,0,1,1,1,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,0 +1,43,2,9556,0,1,120.0,1,1,19,4,3,110.2,0,0,1,1,1,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,1 +2,1,4,9500,0,1,140.0,1,1,37,4,9,128.0,0,0,1,1,1,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,1 +1,42,1,9119,0,6,120.0,1,35,35,6,6,128.2,1,0,1,1,0,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,120.0,1,37,37,9,6,120.0,1,0,1,1,1,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,2 +2,39,1,9003,0,1,133.1,1,37,37,8,7,150.0,0,0,1,1,0,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,145.0,1,19,37,4,7,148.9,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,34,34,0,0,104.0,1,0,1,1,1,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,43,1,9085,0,1,110.0,1,3,19,4,6,105.0,0,0,0,0,0,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,0 +1,17,2,9254,0,1,108.0,1,37,37,9,7,108.0,1,0,1,1,1,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,1 +4,43,1,9238,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,1,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,136.0,1,19,37,173,183,118.4,1,0,1,1,1,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,18,1,9556,0,1,140.0,1,38,37,9,9,122.8,0,0,1,1,1,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,1 +1,39,1,9119,0,1,150.0,1,3,3,4,4,150.0,1,0,1,1,0,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,141.0,1,1,1,4,10,138.9,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,1 +1,18,4,9773,0,1,130.0,1,19,19,4,4,121.3,1,0,1,1,1,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,1,130.0,1,37,37,9,6,160.0,0,0,1,1,0,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,149.0,1,37,37,9,9,136.0,0,0,1,1,1,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,151.0,1,37,1,4,10,138.4,0,0,1,1,1,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,2 +1,39,1,9254,0,1,130.0,1,37,37,9,9,126.5,0,0,1,1,0,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,143.0,1,19,37,7,7,127.0,1,0,1,1,1,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,1 +2,57,1,9991,1,1,133.1,41,38,37,4,6,100.0,0,0,1,1,1,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,138.0,1,37,37,9,9,135.9,1,0,1,1,1,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,2 +1,43,1,8014,1,1,145.7,22,37,37,9,9,145.7,1,0,1,1,1,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,1 +4,39,1,9773,0,19,133.1,1,37,37,9,1,117.5,0,0,1,1,1,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,17,3,9238,0,1,118.0,1,1,19,4,10,112.4,1,0,1,1,1,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,8014,1,1,133.1,1,37,37,9,7,162.5,0,0,1,1,0,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,1 +1,1,3,9254,0,1,115.0,1,1,1,3,3,117.5,1,0,1,1,1,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,133.0,1,37,38,9,9,130.2,1,0,1,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,152.0,1,2,22,4,3,146.1,1,0,1,1,1,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +2,39,1,9085,0,12,133.1,1,1,39,5,3,140.0,1,0,0,0,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9003,0,1,140.0,1,38,1,9,4,138.3,0,0,1,1,0,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,130.0,1,38,37,9,6,133.9,0,0,1,1,0,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,140.0,1,37,37,9,9,142.5,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,120.0,1,38,1,9,3,118.3,1,0,1,1,1,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,117.0,1,1,19,4,7,113.5,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,141.0,1,19,1,7,3,128.8,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9147,0,1,125.0,1,3,38,2,10,118.7,1,0,1,1,1,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,116.0,1,37,1,5,3,124.8,1,0,1,1,0,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,120.0,1,36,37,0,0,126.7,1,0,1,1,0,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,1 +1,17,4,9853,0,1,140.0,1,19,38,4,1,128.5,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,1,1,3,10,130.0,0,0,1,1,0,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,136.0,1,3,37,2,8,121.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,154.0,1,37,37,9,9,149.5,1,0,1,1,1,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,138.0,1,19,38,5,8,133.5,0,0,1,1,1,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,128.0,1,1,37,4,3,117.9,1,0,1,1,1,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,1 +1,43,1,9130,0,1,150.0,1,3,3,3,4,150.0,1,0,1,1,1,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,110.0,1,19,38,3,5,117.4,1,0,1,1,1,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,135.0,1,37,38,9,6,122.1,1,0,1,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9003,0,1,140.0,1,37,37,9,6,104.8,0,0,1,1,1,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,143.0,1,37,37,9,7,131.8,1,0,1,1,1,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,142.0,1,1,1,3,3,133.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,141.0,1,1,19,5,10,127.0,0,0,1,1,1,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,1 +3,1,2,9085,0,1,135.0,1,19,1,4,4,129.4,1,0,1,1,1,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,39,1,9254,0,1,133.1,1,19,19,4,7,123.0,0,0,0,0,1,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,0 +1,17,2,9500,0,1,131.0,1,19,37,9,7,129.8,1,0,1,1,1,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,1 +1,39,1,9670,0,9,133.1,1,6,22,3,3,120.0,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,131.0,1,37,37,3,3,131.7,1,0,1,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,137.0,1,19,19,5,5,134.6,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,131.0,1,1,1,4,10,129.3,0,0,1,1,1,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,140.0,1,1,37,141,192,129.7,0,0,1,1,1,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,140.0,1,37,37,9,9,124.6,0,0,1,1,1,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,138.0,1,37,37,5,9,125.1,1,1,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,0 +1,2,1,9147,0,1,150.0,1,37,37,9,9,122.0,1,0,1,1,1,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,135.0,1,3,1,4,4,136.1,1,0,1,1,0,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,2 +1,39,1,9991,1,1,150.0,1,1,19,4,8,123.0,0,0,1,1,0,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,141.0,1,19,37,5,8,130.2,0,0,1,1,0,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,106.0,1,37,37,9,9,108.0,1,0,0,1,1,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,19,133.1,1,37,38,9,7,100.5,1,0,1,1,0,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,2 +1,43,1,9254,0,1,142.0,1,38,38,9,9,125.9,0,0,1,1,1,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,150.0,1,1,37,9,7,130.2,0,0,1,1,1,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,1 +4,39,1,9670,0,1,140.0,1,2,1,3,9,170.0,0,0,0,0,0,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9773,0,1,119.0,1,38,19,9,9,118.3,0,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,117.0,1,34,34,0,0,109.3,0,0,1,1,1,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,120.0,1,34,34,99,99,111.6,0,0,0,1,0,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,2 +1,39,1,9119,0,1,139.0,1,19,19,9,7,110.3,0,0,0,1,0,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,2 +1,43,1,9147,0,1,123.0,1,3,19,9,9,113.2,0,0,1,1,1,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,2 +1,43,1,9991,1,1,120.0,1,38,38,9,7,141.0,0,0,1,1,0,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,1 +1,1,1,9130,0,1,151.0,1,3,1,2,4,151.0,1,0,1,1,1,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,130.0,1,37,37,9,6,110.0,1,0,1,1,1,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,1 +1,43,1,9853,0,1,130.0,1,2,39,2,5,124.6,0,0,1,1,0,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,138.0,1,1,1,4,3,141.5,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,120.0,1,37,37,9,5,100.0,0,0,1,1,1,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9991,1,39,150.0,1,37,37,6,6,150.0,0,0,1,1,1,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,2 +2,39,1,9085,0,19,133.1,1,38,38,4,7,128.2,0,0,1,1,1,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.0,41,19,19,9,9,119.7,1,0,0,1,1,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,17,3,9085,0,1,128.0,1,1,19,4,90,124.2,0,0,1,0,1,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,120.0,1,1,1,9,9,129.1,1,0,1,1,0,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9773,0,1,125.0,1,19,19,9,7,129.6,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,137.0,1,40,19,2,9,130.7,1,0,1,1,1,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,0 +1,51,1,9147,0,1,116.0,1,3,3,2,2,115.2,0,0,0,1,0,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,17,5,9853,0,1,132.0,1,12,12,4,4,123.3,1,0,1,1,1,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,0 +1,7,1,9991,1,3,130.0,1,37,37,9,9,130.0,0,0,1,1,0,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,135.0,1,19,38,9,5,136.8,1,0,1,1,1,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,137.0,1,1,1,4,7,134.6,1,0,1,1,0,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,4,171,0,1,133.1,1,38,38,9,9,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,133.1,1,19,37,7,8,120.0,0,0,0,0,1,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,140.0,1,1,19,9,7,127.0,1,0,1,1,1,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,1 +1,18,1,9500,0,1,124.0,1,38,37,9,7,119.3,1,0,1,1,1,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,3,19,2,4,150.0,1,0,1,1,1,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,8014,1,19,133.1,1,3,19,90,90,123.5,0,0,1,1,1,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9853,0,1,133.1,1,37,37,5,5,116.5,0,0,1,1,1,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,0 +1,18,6,9500,0,1,144.0,1,1,1,3,6,130.8,1,0,1,1,1,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9670,0,1,151.0,1,19,19,1,1,100.0,0,0,0,1,1,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,125.0,1,1,19,4,6,115.2,0,1,1,1,1,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,37,38,4,9,110.0,0,0,0,0,1,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,133.1,1,19,19,5,5,108.5,1,0,1,1,1,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,130.0,1,37,11,90,90,122.6,0,0,1,1,1,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,113.0,1,19,37,9,9,118.6,1,0,1,1,1,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,140.0,6,2,3,5,2,124.3,1,0,1,1,1,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,2 +1,1,4,9119,0,1,111.0,1,37,37,9,5,107.5,1,0,1,1,0,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,143.0,1,19,38,9,9,133.4,1,0,1,1,1,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,1 +1,17,1,9773,0,1,141.0,1,2,3,2,2,133.7,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,151.0,41,3,3,2,5,161.9,1,0,1,1,1,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,43,1,33,0,1,143.0,1,37,1,9,10,121.2,1,0,1,1,0,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,1,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,141.0,1,1,19,8,7,128.8,1,0,1,1,1,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,2 +1,1,1,9238,0,1,115.0,1,19,38,7,7,108.7,0,0,1,1,1,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,114.0,1,1,1,4,0,108.8,1,0,1,1,1,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,2 +1,1,2,9853,0,1,112.0,1,37,37,191,182,106.1,1,0,0,1,1,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,2,9085,0,1,157.0,1,3,38,4,6,142.3,0,0,1,1,1,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,1 +2,44,1,8014,1,39,160.0,1,37,19,9,10,155.9,0,0,1,1,1,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,1 +1,1,4,171,0,1,137.0,1,1,38,4,8,141.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,144.0,1,1,37,9,9,126.5,1,0,1,1,1,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,145.0,1,1,1,4,10,131.4,0,0,1,1,1,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,115.0,1,1,1,9,4,109.1,1,0,0,0,1,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,170.0,1,37,37,0,0,150.8,1,0,1,1,1,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,0 +1,5,3,9070,0,1,157.0,1,3,1,9,6,138.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,1 +1,43,2,9238,0,1,129.0,1,34,30,0,5,118.9,1,0,1,1,0,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,5,9853,0,1,141.0,1,3,19,2,7,130.9,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,1 +4,39,1,9991,1,1,133.1,1,37,37,9,9,130.4,0,0,1,1,1,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,130.0,1,19,38,9,9,126.9,0,0,0,1,1,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,136.0,1,19,1,4,3,125.2,1,0,1,1,1,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,37,9,9,140.2,0,0,1,1,0,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,132.0,1,37,38,9,5,120.8,0,0,1,1,1,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,150.0,1,19,37,6,6,150.0,0,0,0,1,1,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,1 +2,42,1,9991,1,1,130.0,1,3,2,2,2,130.0,0,0,1,1,0,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,2 +4,39,1,8014,1,1,133.1,1,38,37,5,7,144.5,0,0,1,1,1,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,2,9773,0,1,150.0,41,1,37,9,7,130.8,0,0,1,1,1,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,1 +2,1,1,8014,1,1,151.0,1,37,37,9,9,152.4,0,0,1,1,1,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,1 +6,39,1,9500,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,0 +2,43,1,9670,0,1,100.0,1,34,34,0,0,128.2,0,0,1,1,0,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,148.0,1,1,19,3,3,131.7,1,0,1,1,1,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,142.0,1,19,19,7,7,142.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,127.0,1,1,38,4,7,125.6,0,0,0,1,1,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,146.0,1,38,38,9,7,134.1,1,0,1,1,0,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,0 +1,17,1,9670,0,1,115.0,1,1,1,4,4,109.1,1,0,1,1,1,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,2 +1,1,2,9773,0,1,148.0,1,1,19,9,9,141.7,0,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,116.0,1,37,37,0,5,114.3,1,0,1,1,1,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,139.0,1,38,19,5,7,130.6,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,1 +1,1,6,9147,0,1,128.0,1,37,37,9,9,116.5,0,0,1,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,2 +1,39,1,9130,0,3,150.0,1,3,1,90,90,150.0,1,0,1,1,1,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9670,0,1,122.0,1,1,19,4,4,116.1,0,0,1,1,0,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,2 +1,39,1,9119,0,1,100.0,1,37,37,9,8,160.0,0,0,0,0,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9254,0,1,128.0,1,19,1,7,9,121.7,1,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,143.0,1,37,38,7,7,133.8,1,0,1,1,1,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,107.0,1,38,38,7,7,103.5,1,0,1,1,1,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,1 +1,39,2,9147,0,1,143.0,1,19,5,4,1,100.0,1,0,1,1,0,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,140.0,0,0,0,0,1,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,160.0,1,1,1,5,4,160.0,1,1,1,0,0,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,0 +2,39,1,9500,0,19,133.1,1,38,38,2,10,120.0,0,0,1,1,1,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,0 +1,5,2,9853,0,1,122.0,1,19,19,4,5,112.6,1,0,1,1,1,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,3,9500,0,1,137.0,1,19,37,7,7,126.7,1,0,1,1,1,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,1 +1,7,1,9070,0,40,120.0,1,1,19,3,9,120.0,1,0,1,1,1,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,157.0,1,38,3,5,2,141.4,0,0,1,1,1,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,1 +2,1,2,8014,1,1,110.0,1,37,1,9,10,108.7,1,0,1,1,1,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,129.0,1,19,37,7,6,120.0,1,0,1,1,1,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,108.0,1,19,1,4,3,111.9,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9070,0,12,110.0,1,37,38,5,10,130.0,0,0,0,0,0,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,122.0,1,1,1,193,101,126.2,0,0,1,1,1,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,4,4,3,3,143.6,0,0,0,1,0,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,2 +1,7,1,9119,0,3,130.0,1,34,34,90,90,130.0,0,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,8014,1,39,120.0,1,19,37,7,6,121.8,1,0,1,1,1,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,142.0,1,37,38,9,9,137.5,1,0,1,1,0,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,138.0,1,3,19,2,4,131.0,1,0,1,1,0,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,0 +1,17,2,9853,0,1,125.0,1,1,19,5,5,119.4,1,0,1,1,1,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,137.0,1,1,1,5,4,131.1,1,0,1,1,1,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,133.0,1,38,38,9,9,128.1,1,0,1,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,0 +4,39,1,9991,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,1,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,17,1,9130,0,1,138.0,1,2,19,2,6,126.3,1,0,1,1,1,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,2 +1,17,4,9500,0,1,135.0,1,1,1,4,4,127.0,1,0,1,1,1,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,140.0,1,4,3,3,3,127.8,0,0,1,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,1 +1,5,1,9147,0,1,126.0,1,19,38,5,6,117.3,1,0,1,1,1,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,2 +1,39,1,9670,0,1,133.1,1,1,19,4,9,140.0,0,0,1,1,0,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,126.0,1,38,38,9,8,118.8,1,0,1,1,1,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,1 +2,42,1,9147,0,1,133.1,1,37,37,9,9,115.8,0,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,126.0,1,1,37,7,9,132.7,0,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,133.0,1,19,19,5,7,123.6,0,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +1,17,4,9556,0,1,135.0,1,38,37,3,7,129.0,1,0,1,1,1,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,110.0,1,37,37,9,9,107.6,1,0,1,1,0,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,2 +1,17,4,9147,0,1,135.0,1,19,1,0,4,128.7,1,0,1,1,0,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +2,1,1,8014,1,1,150.0,1,1,37,4,7,139.9,1,0,1,1,1,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,116.0,1,1,38,4,3,114.6,1,0,1,1,1,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,121.0,1,19,37,1,3,131.5,0,0,1,1,1,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,100.0,1,19,1,1,90,114.0,1,0,0,0,1,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,146.0,1,19,37,5,8,135.8,1,0,1,1,1,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,1 +1,44,1,9119,0,39,140.0,1,1,19,4,5,140.0,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9670,0,1,136.0,1,19,19,5,5,122.0,0,0,0,0,1,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,0 +2,39,1,9003,0,1,133.1,1,19,19,4,4,107.5,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9070,0,1,164.0,1,38,38,9,7,165.8,1,0,1,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,154.0,1,38,38,9,9,133.4,1,0,1,1,1,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,127.0,1,19,37,7,7,121.5,1,0,1,1,0,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,2 +1,43,6,9238,0,1,129.0,1,34,34,0,0,125.2,0,0,1,1,1,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,125.0,1,19,1,4,5,122.6,1,1,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,2 +1,17,1,9070,0,1,136.0,1,38,19,7,7,121.7,1,0,1,1,1,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,131.0,1,38,1,7,4,128.3,1,0,1,1,1,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,1 +1,1,4,171,0,1,132.0,1,1,19,4,5,138.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9254,0,1,115.0,1,12,1,9,3,108.7,1,0,1,1,1,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,131.0,1,1,37,3,7,120.2,0,0,1,1,1,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,134.0,1,1,1,4,9,124.2,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,142.0,1,19,1,9,1,132.6,0,0,1,1,1,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,2,1,3,6,150.0,1,0,1,1,0,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,1 +1,39,1,9254,0,1,130.0,1,19,38,9,7,113.5,0,0,1,1,1,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,135.0,1,2,1,2,8,126.6,0,0,1,1,1,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,1 +1,39,1,9254,0,12,133.1,1,37,37,5,7,119.3,1,0,1,1,0,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,2 +1,1,1,9130,0,1,110.0,1,3,19,2,9,105.5,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9130,0,1,134.0,41,1,19,5,5,125.6,1,0,1,1,1,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,151.0,2,1,1,5,9,146.5,0,0,1,1,1,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,133.0,1,1,3,3,3,135.8,1,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,7,1,9070,0,3,140.0,1,37,2,9,3,140.0,0,0,1,0,1,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,147.0,1,37,19,9,5,133.7,1,0,1,1,1,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,2 +1,51,1,9500,0,1,127.0,1,19,1,5,9,150.0,0,0,1,1,1,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,143.0,1,1,37,5,9,126.6,0,0,0,0,1,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,160.0,1,37,38,9,9,160.0,0,0,0,1,1,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,1 +4,39,1,8014,1,19,133.1,1,34,34,0,0,100.0,0,0,1,1,1,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,0 +4,43,1,9853,0,1,133.1,100,19,22,90,90,100.0,0,0,1,1,1,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,2,120.0,1,37,37,9,8,120.0,0,0,1,1,1,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,2 +1,39,1,9130,0,40,129.0,1,3,3,2,2,155.3,1,0,1,1,1,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,150.0,1,38,37,9,9,150.0,1,0,1,1,0,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +1,44,1,9130,0,39,160.0,1,1,37,3,3,160.0,1,0,0,0,1,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,0 +2,39,1,9003,0,1,133.1,1,1,19,4,4,120.0,0,0,0,0,0,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,115.0,1,19,38,9,9,108.0,0,0,1,1,1,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,134.0,1,1,19,4,5,126.0,0,0,1,1,1,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,135.0,1,38,38,5,8,133.3,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,5,1,9670,0,1,135.0,1,1,12,4,4,140.3,1,0,1,1,1,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,122.0,1,19,1,4,8,135.8,0,0,1,1,1,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,19,19,3,9,112.6,1,0,1,1,1,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,4,9773,0,1,147.0,1,1,1,4,5,139.7,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,140.0,1,19,19,4,5,140.0,1,0,1,1,1,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,130.0,1,12,12,9,9,126.1,0,0,1,1,0,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,0 +1,43,2,9147,0,1,130.0,1,34,37,9,9,118.5,1,0,1,1,0,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,1 +1,17,4,9500,0,1,138.0,1,4,1,2,1,133.0,1,0,1,1,1,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,138.0,1,37,37,194,171,131.0,1,0,1,1,1,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,19,5,8,147.3,0,0,1,1,1,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,1 +1,1,6,9500,0,1,149.0,1,1,1,4,9,133.0,1,0,1,1,1,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,1 +1,16,6,9773,0,1,136.0,1,38,14,0,0,129.7,1,0,1,1,1,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,130.0,1,1,34,9,9,124.8,1,0,1,1,1,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,111.0,1,1,1,3,3,112.4,1,0,1,1,0,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,121.0,1,1,19,4,7,135.4,1,0,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,1 +1,1,1,9556,0,1,135.0,1,37,38,7,9,125.8,0,0,1,1,1,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,136.0,1,37,19,5,8,129.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,4,9670,0,1,110.0,1,1,37,7,7,111.1,1,0,1,0,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,128.0,1,38,38,5,5,118.6,1,0,1,1,1,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,1 +2,39,1,9500,0,19,133.1,1,37,38,9,10,120.9,1,0,1,1,1,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,0 +1,5,3,9085,0,1,143.0,1,37,37,0,90,159.1,0,0,0,1,1,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,0 +4,39,1,9238,0,1,120.0,1,37,37,9,9,125.5,1,0,1,1,1,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,126.0,1,3,1,2,5,116.9,1,1,1,1,1,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,2 +1,16,1,9556,0,1,137.0,1,37,37,9,7,122.7,1,0,1,1,1,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,136.0,1,1,1,9,9,123.8,1,0,1,1,1,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +4,39,1,9130,0,1,133.1,1,3,1,5,5,110.0,1,0,1,1,1,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,0 +1,17,4,9085,0,1,138.0,1,19,36,90,7,134.9,1,0,1,1,1,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,3,9070,0,1,130.0,1,1,4,4,2,131.4,0,0,1,1,0,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,1 +2,42,1,9853,0,1,133.1,1,37,37,4,7,100.0,0,0,1,1,1,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,115.0,1,1,1,9,9,134.3,1,0,1,1,0,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,108.0,1,1,38,5,8,105.9,0,0,1,1,1,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,2 +1,39,1,9991,1,1,120.0,1,19,37,5,5,128.2,0,0,1,0,0,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +5,7,1,9130,0,3,160.0,1,19,38,9,6,160.0,0,0,1,0,1,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,0 +1,1,1,9130,0,1,121.0,1,3,19,2,9,115.4,1,0,1,1,0,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/y_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..c52e6b11bb7300aadb23ad02c9697ffebddaf895 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/y_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/y_train.npy b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c52e6b11bb7300aadb23ad02c9697ffebddaf895 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/data/tabsyn_m5/y_train.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/gen_20260426_223029.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/gen_20260426_223029.log new file mode 100644 index 0000000000000000000000000000000000000000..3c16873eaef252acc7060793c97810227b3bd327 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/gen_20260426_223029.log @@ -0,0 +1,8 @@ +[TabSyn] Sampling 3539 rows +/opt/conda/lib/python3.11/site-packages/torch/cuda/__init__.py:63: FutureWarning: The pynvml package is deprecated. Please install nvidia-ml-py instead. If you did not install pynvml directly, please report this to the maintainers of the package that installed pynvml for you. + import pynvml # type: ignore[import] +No NaNs in numerical features, skipping +(3539, 9) +Time: 3.026280403137207 +Saving sampled data to /work/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/tabsyn-m5-3539-20260426_223029.csv +[TabSyn] Saved -> /work/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/tabsyn-m5-3539-20260426_223029.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e2ce7e794960a8676a52e40a3d04fdd0f2bf0822 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4060712284cf74a51a173f403879fe62463cba24 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2fc515e8fe9c2e6a4d7c6690b345b2bc7d4797b9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "tabsyn", + "run_id": "tabsyn-m5-20260426_220916", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/tabsyn-m5-3539-20260426_223029.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a22a371258ab8267b23b3b79730d7e0f64866e52 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,0,1,126.0,1,38,37,5,5,118.7,0,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,19,37,9,7,111.4,0,0,0,1,1,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,140.0,1,1,1,4,3,140.0,1,0,0,1,0,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,Graduate +1,1,2,9085,1,1,141.0,1,1,38,9,8,128.9,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,128.0,1,19,19,7,8,120.0,1,0,0,1,0,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,123.0,1,4,37,2,9,113.9,0,0,0,1,0,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,1,140.0,41,1,1,9,9,100.0,0,0,1,0,0,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,133.1,1,1,3,9,9,116.0,0,0,0,1,1,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,143.0,1,3,3,2,10,141.3,0,0,1,0,0,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,106.0,1,37,38,191,163,102.2,1,0,1,1,1,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,Enrolled +1,16,2,9085,1,1,136.0,1,37,37,9,9,123.4,1,0,0,1,0,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,125.0,1,38,38,9,9,125.4,0,0,1,0,0,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,Dropout +4,39,1,9773,1,12,120.0,1,37,37,4,9,130.0,0,0,0,0,1,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,Dropout +1,44,1,9853,1,39,150.0,1,3,37,2,7,150.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,145.0,1,1,19,9,9,129.3,0,0,1,1,0,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Graduate +1,44,1,9119,1,39,180.0,1,1,1,9,8,180.0,0,0,0,1,1,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,Enrolled +1,1,4,9085,1,1,135.0,1,38,37,9,9,132.6,1,0,0,1,0,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,130.0,1,3,1,3,6,130.0,1,0,1,1,1,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,182.0,1,19,1,5,7,156.8,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,142.0,1,19,38,7,10,128.4,1,0,0,1,0,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,19,133.1,1,37,37,9,4,103.5,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,1,1,3,3,119.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,44,1,9991,0,39,140.0,1,37,19,9,8,140.0,0,0,0,1,0,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,133.0,1,38,38,9,9,128.8,1,0,0,1,0,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,3,3,132,132,110.6,0,0,0,1,0,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,Enrolled +1,42,1,9773,1,1,133.1,1,19,6,4,3,120.0,0,0,0,1,1,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9147,1,1,160.0,1,37,37,9,7,110.0,0,0,0,1,1,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,100.0,1,19,37,5,5,120.7,0,0,0,1,0,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,136.0,1,19,19,9,9,140.0,1,0,0,1,0,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,135.0,1,3,3,2,2,132.9,1,0,0,0,0,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,Dropout +1,53,1,9003,1,42,130.0,1,1,38,9,6,128.5,0,0,0,1,1,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,140.0,1,37,37,9,9,140.0,0,0,0,1,1,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,124.0,1,19,37,5,7,119.1,0,0,0,1,1,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9556,1,1,140.0,1,37,38,9,9,106.0,1,0,1,0,0,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,Dropout +1,42,4,9500,1,6,133.0,1,1,19,2,9,127.8,1,0,0,1,0,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,130.0,1,19,19,90,90,122.0,0,0,0,1,0,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,125.0,1,37,19,9,9,122.4,1,0,0,1,1,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,3,110.0,1,3,19,4,6,150.0,0,0,0,1,1,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,123.0,1,19,19,1,1,114.6,0,0,0,1,0,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,131.0,1,38,38,9,9,126.5,0,0,0,1,0,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,133.1,1,38,19,132,103,146.0,0,0,1,1,0,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,3,3,2,2,124.9,1,0,0,1,0,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,136.0,1,3,4,2,2,133.9,0,0,0,0,1,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,2,1,4,6,140.0,0,0,0,1,1,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,111.0,1,19,19,9,9,114.2,1,0,0,1,0,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,130.0,1,19,38,7,7,120.2,1,0,0,1,0,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,Graduate +1,7,1,9670,1,3,110.0,1,27,37,3,3,110.0,1,0,0,1,1,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,142.0,1,38,19,7,10,128.4,0,0,0,1,0,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9773,1,1,158.0,1,1,38,4,7,157.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,127.0,1,1,33,3,3,129.8,0,0,0,0,1,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9773,1,1,140.0,1,34,37,0,0,102.5,0,0,0,1,0,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,130.0,1,1,38,5,7,122.0,1,0,0,1,1,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,145.0,1,19,1,6,5,127.9,1,0,0,1,0,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,132.0,1,38,38,9,8,122.6,1,0,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,37,37,9,7,129.9,1,0,0,1,0,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,121.0,1,1,1,4,4,114.9,0,0,0,1,1,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,Graduate +1,7,1,8014,0,3,140.0,1,1,1,4,4,140.0,0,0,0,1,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,137.0,1,1,19,4,4,125.3,0,0,0,1,1,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,Enrolled +1,18,1,9670,1,1,133.0,1,1,1,9,9,121.5,1,0,0,1,0,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,42,1,9500,1,1,100.0,1,3,37,2,6,130.0,1,0,0,1,0,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,19,38,9,8,140.9,0,1,0,1,0,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,133.1,1,37,37,9,9,120.0,0,0,0,0,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,8014,0,1,128.0,1,38,38,0,0,122.1,0,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9119,1,1,130.0,1,1,3,4,2,123.0,0,0,0,1,1,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,121.0,1,19,38,7,9,123.8,0,0,0,1,0,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,9070,1,1,122.0,1,1,1,4,8,123.8,1,0,1,0,0,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,12,133.1,1,37,37,9,9,133.8,1,0,0,1,1,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,3,3,2,2,149.0,0,0,0,0,1,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,1,38,1,9,140.0,0,0,0,1,1,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,Dropout +1,1,5,9773,1,1,135.0,1,37,1,5,5,124.9,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,9119,1,1,132.0,1,37,37,9,6,119.4,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,9670,1,3,110.0,1,37,37,7,7,110.0,0,0,0,1,0,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,Graduate +1,17,5,9119,1,1,118.0,1,1,19,9,9,120.5,1,0,0,1,1,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,19,133.1,1,37,19,9,4,140.0,0,0,1,1,0,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,126.0,1,1,1,4,7,115.2,0,0,0,0,0,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9254,1,1,158.0,1,19,39,4,8,153.5,1,0,0,1,0,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,129.0,1,37,38,7,7,122.0,1,0,0,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,12,133.1,1,37,1,9,4,138.4,0,0,0,1,1,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,Dropout +1,7,1,9238,1,3,130.0,1,1,1,4,10,125.1,0,0,1,0,0,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,1,110.0,1,40,1,5,6,142.5,0,0,1,0,1,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,Dropout +1,16,1,9070,1,1,125.0,1,1,1,4,4,120.8,1,0,0,1,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,128.0,1,19,1,5,4,135.7,1,0,0,1,0,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,142.0,1,19,19,9,9,139.9,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,123.0,1,3,12,2,9,116.4,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,125.0,1,19,1,9,10,123.6,1,0,0,1,0,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,12,133.1,1,12,12,9,9,120.0,0,0,0,1,1,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,Dropout +1,17,5,9500,1,1,144.0,1,19,38,9,5,130.7,1,0,0,1,0,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,Graduate +1,17,6,9500,1,1,136.0,1,19,38,9,3,132.5,1,0,0,1,0,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,Graduate +2,43,1,9991,0,1,140.0,1,38,37,5,6,117.3,0,0,0,1,0,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,43,1,9500,1,1,140.0,1,37,37,9,10,105.7,1,0,0,1,0,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,19,133.1,1,1,5,4,3,100.0,0,0,0,1,0,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,3,9238,1,1,143.0,1,37,38,0,7,126.9,1,0,0,1,0,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,138.0,1,37,1,9,9,123.7,1,0,1,1,0,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,34,34,0,0,112.5,0,0,0,1,0,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,141.0,1,3,2,2,3,130.2,1,0,0,1,0,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,139.0,1,1,19,3,9,134.9,1,0,0,1,1,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,3,102.0,1,0,0,1,0,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,153.0,1,38,37,7,8,147.9,0,0,0,1,0,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,Graduate +1,17,3,9085,1,1,121.0,1,38,1,9,9,111.9,1,0,0,1,1,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,149.0,1,37,37,9,6,130.5,1,0,0,1,0,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,Graduate +1,17,5,9773,1,1,139.0,1,38,1,4,4,123.6,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9119,1,1,120.0,1,3,1,123,152,116.9,0,0,0,1,1,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9238,1,1,130.0,1,1,19,4,5,124.8,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,Graduate +1,53,1,9085,1,42,150.0,1,1,19,4,8,145.2,1,0,0,1,0,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,Graduate +4,39,1,9130,1,1,140.0,1,37,37,6,7,150.0,1,0,0,1,1,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,4,171,1,1,133.1,1,1,1,9,10,110.0,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,124.0,1,19,1,9,9,121.2,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9119,1,39,130.0,1,38,19,9,5,130.0,1,0,0,1,1,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,Enrolled +4,7,1,9500,1,3,140.0,1,37,38,9,7,140.0,0,0,0,1,1,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,37,5,9,118.4,0,0,0,1,1,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,33,1,1,130.0,1,19,19,9,9,117.7,0,0,0,1,0,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,Dropout +4,7,1,9500,1,40,130.0,1,19,19,4,6,130.0,0,0,0,0,0,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,144.0,13,3,3,6,6,137.6,1,0,0,1,0,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,132.0,1,38,37,9,9,122.9,0,0,0,0,1,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,Dropout +1,1,2,9773,1,1,124.0,1,3,3,3,4,114.6,1,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,100.0,1,38,38,9,10,100.0,0,0,0,1,0,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,Graduate +1,18,2,9853,1,1,120.0,1,19,37,9,4,113.7,1,0,1,0,0,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9500,1,1,136.0,1,3,3,2,2,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,Graduate +1,39,1,9130,1,1,133.1,1,3,34,3,0,120.0,0,0,1,0,1,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,140.0,1,1,19,3,3,140.0,1,0,0,1,0,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9085,1,1,128.0,1,38,37,9,9,116.5,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,132.0,1,6,6,0,4,119.1,1,0,1,1,0,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,Dropout +1,43,1,9500,1,6,134.0,1,1,37,9,9,120.4,1,0,0,1,0,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,34,34,0,0,100.0,0,0,0,1,0,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,122.0,1,3,1,4,7,116.1,1,0,0,1,0,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,120.0,1,37,37,9,9,117.0,1,0,0,1,0,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,5,9254,1,1,126.0,1,19,19,4,7,116.6,1,0,0,1,0,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,4,160.0,1,3,3,2,1,125.0,0,0,0,1,1,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,130.0,1,37,37,0,0,117.8,1,0,0,1,0,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,169.0,1,19,37,9,7,176.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9500,1,1,137.0,1,3,38,2,4,121.0,0,0,0,1,0,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,132.0,1,19,1,9,5,123.4,0,0,0,1,0,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,3,105.0,1,37,37,7,8,129.7,1,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9254,1,1,119.0,1,19,19,9,9,118.7,1,0,0,1,1,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,120.0,1,37,37,9,6,117.0,0,0,0,1,1,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,6,130.0,0,0,0,1,1,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,143.0,1,19,37,9,9,126.2,1,0,0,1,0,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,39,150.0,1,19,19,9,9,150.3,0,0,0,1,1,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9130,1,1,143.0,1,3,3,2,2,131.8,1,0,1,0,0,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,Enrolled +1,44,1,9238,1,39,140.0,1,19,19,8,8,144.3,1,0,0,1,0,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,131.0,1,19,19,4,4,122.0,1,0,0,1,0,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,Enrolled +1,17,2,9500,1,1,127.0,1,3,3,1,10,118.8,1,0,0,1,1,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,146.0,1,37,38,9,7,128.5,0,0,1,1,0,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,3,140.0,1,39,39,9,4,140.0,0,0,0,1,1,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,123.0,1,38,19,4,90,127.2,0,0,1,0,1,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,5,128.2,0,0,1,0,1,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,126.0,1,1,1,9,9,127.4,1,0,0,1,0,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,37,37,9,9,150.0,0,0,0,1,0,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,130.0,1,38,19,9,6,120.0,1,0,0,1,1,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,103.0,1,19,37,7,9,104.1,0,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,145.0,1,3,19,1,5,130.0,1,0,0,1,0,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,123.0,1,1,38,9,9,116.7,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,5,1,120.0,1,0,0,1,0,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,141.0,1,19,1,90,90,128.0,0,0,0,1,1,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,124.0,1,3,3,2,2,119.1,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,4,9853,1,1,116.0,1,3,38,3,8,110.4,1,0,0,1,0,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,119.0,1,38,19,9,9,115.2,0,0,0,1,1,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,37,37,7,7,113.9,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +2,43,1,9147,1,2,120.0,1,37,37,9,9,122.8,0,0,1,0,0,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,6,122.0,1,19,19,9,9,126.2,1,0,0,1,0,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,122.0,1,1,1,2,5,113.3,1,0,0,1,0,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,142.0,1,1,1,9,9,127.7,1,0,0,1,1,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,116.0,1,1,1,3,3,120.9,0,0,0,1,1,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,128.0,1,1,19,4,7,125.6,1,0,0,1,1,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,Graduate +1,7,1,9991,0,40,130.0,1,1,3,4,2,130.0,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,1,19,9,7,120.0,0,0,0,1,1,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,137.0,1,38,37,9,9,122.3,0,0,0,1,1,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,122.0,1,41,1,4,3,119.6,1,0,0,1,0,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,157.0,1,38,37,9,5,137.8,0,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9130,1,1,132.0,1,19,38,9,9,130.4,1,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Graduate +4,43,1,8014,0,12,133.1,1,34,34,0,0,106.0,1,0,0,1,0,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9130,1,1,127.0,1,3,1,2,1,116.5,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,8014,0,1,125.0,1,37,37,5,6,122.2,1,0,1,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9556,1,1,128.0,1,38,38,7,8,123.5,1,0,0,1,0,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,Enrolled +1,43,1,9130,1,1,156.0,1,19,1,9,4,156.0,0,0,1,0,1,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,Dropout +1,7,1,9130,1,3,140.0,1,19,38,9,9,140.0,1,0,0,1,0,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,8014,0,1,123.0,1,34,37,9,90,121.3,1,0,0,1,0,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,19,133.1,1,19,37,7,90,104.0,0,0,0,1,0,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,18,4,9254,1,1,106.0,1,19,37,7,7,106.0,1,0,0,1,1,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,119.0,1,37,37,4,6,113.2,0,0,1,1,0,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,19,19,9,9,100.0,0,0,0,1,0,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,145.0,1,3,1,4,3,149.9,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,166.0,1,19,37,4,8,146.4,0,0,0,1,1,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,145.0,1,38,37,5,5,142.2,0,0,0,1,0,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,156.0,1,19,38,9,1,153.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9853,1,1,117.0,1,19,38,4,0,113.5,1,0,0,1,0,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,138.0,1,37,19,9,9,127.8,1,0,0,1,0,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,40,130.0,1,1,1,4,4,190.0,1,0,0,1,0,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,Graduate +1,17,5,9070,1,1,131.0,1,37,37,9,9,126.1,1,0,0,0,0,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.1,1,19,37,9,9,95.0,1,0,1,0,0,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,143.0,1,1,38,8,8,136.7,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Dropout +1,42,1,8014,0,1,120.0,1,37,38,90,7,120.0,1,0,0,1,0,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,121.0,1,19,19,5,8,117.5,1,0,0,1,0,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,160.0,1,3,1,6,6,116.3,1,0,0,1,0,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,134.0,1,1,38,4,5,122.8,0,0,0,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,7,1,8014,0,3,120.0,1,19,37,5,3,121.3,0,0,0,1,0,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,134.0,1,38,19,9,4,128.4,1,0,0,1,0,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,130.0,1,19,1,7,4,117.8,1,0,0,1,1,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9130,1,1,132.0,1,1,1,3,3,143.9,1,0,0,1,1,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,130.0,1,19,1,9,4,101.3,1,0,0,1,1,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,135.0,1,37,19,5,10,121.0,0,0,1,1,0,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9991,0,39,120.0,1,37,37,7,7,120.0,1,0,0,1,0,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,133.1,1,3,3,2,3,135.0,0,0,0,1,0,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,110.0,1,19,19,9,7,105.8,1,0,0,1,1,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,160.0,1,1,38,4,10,144.3,1,0,0,1,0,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +4,39,1,9254,1,1,120.0,1,37,37,9,8,95.0,0,0,0,1,0,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,137.0,1,19,19,7,7,120.8,1,0,0,1,0,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,144.0,1,19,38,4,8,141.3,1,0,0,1,0,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,148.0,1,19,1,3,9,140.0,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,128.0,1,38,38,7,7,131.5,0,0,0,1,0,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,128.0,1,38,19,191,175,118.6,1,0,0,1,0,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,122.0,1,3,38,123,171,116.1,1,0,1,1,1,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9773,1,1,128.0,1,38,38,6,3,116.5,0,0,0,1,1,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,97.0,1,1,19,2,7,98.1,1,0,0,1,0,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,53,1,9991,0,1,140.0,1,38,38,191,193,135.0,0,0,1,1,0,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,Enrolled +1,1,2,9773,1,1,122.0,1,37,37,9,9,130.8,1,0,0,1,0,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,117.9,0,0,0,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9991,0,1,100.0,1,37,19,9,4,130.0,0,0,0,1,1,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,Dropout +1,17,6,9670,1,1,125.0,1,38,1,9,7,125.0,1,0,0,1,1,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,Graduate +2,7,1,9070,1,43,140.0,1,37,1,9,7,140.0,0,0,0,1,0,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,Graduate +1,7,1,9254,1,3,110.0,1,19,19,3,3,110.0,0,0,0,1,1,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9500,1,1,135.0,1,19,1,5,4,127.3,1,0,0,1,0,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,Graduate +1,17,4,9238,1,1,129.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,8,9,144.9,1,0,1,0,0,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9500,1,1,136.0,1,1,1,4,4,123.8,0,0,0,1,0,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,Graduate +4,43,1,9991,0,1,140.0,1,37,37,5,5,149.8,0,0,0,1,1,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,150.0,1,38,19,9,9,137.8,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +5,39,1,9147,1,1,180.0,1,1,1,4,8,140.5,0,0,1,0,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,131.0,1,19,19,3,7,127.9,1,0,0,1,0,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,110.0,1,1,1,4,4,99.0,0,0,0,1,1,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,Enrolled +1,39,1,9070,1,1,139.3,1,38,38,5,5,117.5,0,0,0,1,1,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9130,1,1,147.0,1,4,1,2,10,141.8,1,0,0,1,0,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,Graduate +2,44,1,8014,0,39,150.0,1,1,1,5,5,154.0,0,0,0,1,1,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,133.1,1,1,1,4,5,131.0,1,0,0,1,0,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,132.0,1,1,38,9,7,127.1,1,0,0,1,0,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,4,9147,1,1,125.0,1,19,19,5,5,118.0,1,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,108.0,1,19,1,9,3,107.8,1,0,0,1,0,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,143.0,1,37,37,9,8,130.6,1,0,0,1,0,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,126.0,1,37,1,7,7,118.7,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9238,1,1,140.0,1,1,44,4,2,124.6,1,0,1,0,1,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,112.0,1,9,22,4,3,106.1,0,0,0,1,0,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,130.0,1,37,37,191,183,163.7,0,0,0,1,0,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,Enrolled +4,39,1,9500,1,19,133.1,1,37,37,6,6,117.8,0,0,1,0,0,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,Dropout +1,18,2,9853,1,1,120.0,1,1,1,9,0,115.8,0,0,0,1,0,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,118.0,1,38,19,9,3,111.0,1,0,0,1,0,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,16,1,171,1,1,150.0,1,37,37,9,9,134.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,133.1,6,37,37,9,6,100.0,0,0,0,1,0,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,137.0,1,1,37,5,9,131.4,1,0,0,1,1,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Dropout +2,44,1,9991,0,39,130.0,1,1,37,4,9,130.0,0,0,0,0,0,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9238,1,1,136.0,1,19,19,4,7,121.7,1,0,0,1,0,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,133.1,1,1,38,9,7,110.5,0,0,0,1,0,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,Graduate +1,39,1,9556,1,19,100.0,1,37,38,9,9,120.0,0,0,0,1,0,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,142.0,1,1,38,3,5,146.9,1,0,0,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,127.0,1,19,19,7,8,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,130.0,1,1,38,7,8,135.6,1,0,0,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,137.0,1,19,38,9,3,125.0,1,0,0,1,0,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,135.0,1,37,37,7,7,124.0,1,0,0,1,0,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,Enrolled +2,39,1,9556,1,1,100.0,6,38,38,9,9,130.0,0,0,0,1,0,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,Graduate +1,42,1,9003,1,39,120.0,1,3,1,2,6,128.2,1,0,0,1,1,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,Enrolled +1,1,3,9773,1,1,121.0,1,19,19,3,3,116.1,0,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,136.0,1,1,19,4,9,131.1,1,0,0,1,0,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,141.0,1,3,19,2,10,126.8,1,0,0,1,1,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9773,1,1,136.0,1,38,38,9,9,132.9,1,0,0,1,1,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,133.1,1,1,1,90,1,120.0,1,0,1,0,1,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,Dropout +1,17,1,8014,0,1,132.0,1,37,19,5,5,121.2,0,0,0,1,0,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,2,9500,1,6,119.1,1,1,19,4,10,119.1,0,0,0,1,1,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,153.0,1,1,19,9,4,139.7,1,0,0,1,0,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,150.0,1,1,1,3,3,143.4,0,0,0,0,1,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Enrolled +1,1,4,9500,1,1,130.0,1,19,19,9,7,119.9,1,0,0,1,0,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,6,140.0,0,0,0,1,1,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,115.0,1,38,37,5,5,115.0,0,0,0,1,0,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,150.0,1,19,37,5,4,142.7,1,0,0,1,0,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,133.1,1,34,5,0,1,118.5,1,0,0,1,0,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9130,1,1,125.0,1,3,3,2,2,132.4,0,0,0,1,1,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,116.0,1,37,37,9,9,110.8,0,0,0,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,Enrolled +1,43,1,9070,1,1,115.0,1,12,12,1,10,115.0,0,0,1,1,1,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,125.0,1,37,37,9,9,118.8,0,0,0,1,1,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,130.0,1,3,1,2,5,133.8,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9500,1,1,141.0,1,12,1,5,5,133.0,1,0,0,1,0,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,141.0,1,38,38,7,10,139.8,1,0,0,1,0,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,Graduate +1,51,1,9147,1,19,133.1,1,19,19,9,5,112.1,0,0,1,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,132.0,1,19,2,9,3,126.0,1,0,0,1,0,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,131.0,1,2,38,4,5,132.3,1,0,0,1,0,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,124.0,1,1,19,9,8,116.7,1,0,0,1,0,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,180.0,103,5,3,1,1,183.5,1,0,0,1,0,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,10,1,9773,1,1,151.0,22,38,37,0,5,151.0,1,0,0,1,0,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,135.0,1,19,19,9,10,133.4,1,0,0,1,0,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,135.0,1,3,3,2,2,137.1,1,0,0,1,0,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.1,1,38,38,5,10,101.0,0,0,0,1,1,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,40,130.0,1,3,2,3,2,160.0,1,0,0,1,0,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,18,1,9773,1,1,124.0,1,38,37,9,8,126.8,0,0,0,1,1,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,140.0,1,19,37,9,9,125.5,1,0,0,1,0,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,1,133.1,1,37,38,9,8,118.9,0,0,0,1,0,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9991,0,1,160.0,1,34,34,0,0,161.8,1,0,1,1,1,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,140.0,1,1,38,4,7,100.0,0,0,0,1,0,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Graduate +1,44,1,9070,1,39,120.0,1,2,19,3,8,120.0,0,0,0,1,1,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,124.0,1,38,19,3,10,128.6,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,Enrolled +1,44,1,9085,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,0,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,145.0,1,1,19,4,3,133.5,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,Graduate +4,39,1,9085,1,1,110.0,1,37,37,90,90,110.0,0,0,0,0,0,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,134.0,1,19,37,4,7,133.5,1,0,0,1,0,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,132.0,1,1,19,4,3,126.4,1,0,0,1,0,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,19,133.1,1,4,1,2,4,120.0,0,0,0,1,1,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,151.0,1,40,4,2,2,144.5,1,0,0,1,0,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +2,39,1,9147,1,19,133.1,1,37,19,9,3,128.0,0,0,0,1,1,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,Dropout +1,39,2,8014,0,1,141.0,1,37,37,9,9,150.5,0,0,0,1,0,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,122.0,1,19,19,4,6,119.9,0,0,0,1,0,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,9,133.1,1,34,34,0,0,110.0,1,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,1,9500,1,1,128.0,1,19,1,9,4,125.8,0,0,0,1,0,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,3,9773,1,1,133.1,1,38,38,5,5,131.3,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,16,6,9147,1,1,128.0,1,37,37,9,9,116.5,1,0,0,1,0,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,1,147.0,1,34,34,90,90,111.7,1,0,0,1,0,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,1,19,6,8,122.0,0,0,0,1,0,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,Graduate +2,39,2,9254,1,19,133.1,1,19,19,9,5,123.5,0,0,0,1,1,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,114.0,1,37,37,9,9,130.0,0,0,0,1,1,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,Graduate +2,39,1,8014,0,1,100.0,1,37,38,9,9,141.5,0,0,0,1,0,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9556,1,1,118.0,1,38,38,5,5,117.8,1,0,0,1,0,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9773,1,19,133.1,1,19,19,171,163,104.0,0,0,1,0,0,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,39,110.0,1,19,37,9,8,127.5,0,0,1,0,0,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,1,120.0,1,37,38,9,8,100.0,0,0,1,1,1,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,133.0,1,19,3,9,9,123.2,1,0,0,1,1,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,133.1,1,34,34,0,0,142.8,0,0,0,1,1,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9119,1,1,120.0,1,34,34,0,0,140.0,1,0,0,1,1,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,120.0,1,3,37,4,7,115.1,1,0,0,1,0,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,Graduate +1,51,1,9119,1,1,140.0,1,1,19,4,4,150.0,0,0,0,1,1,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,Dropout +1,43,1,9556,1,1,149.0,1,1,1,4,8,140.2,1,1,0,1,0,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,160.0,1,37,19,9,10,160.0,1,0,0,1,0,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,115.0,1,19,38,7,8,116.4,1,0,0,1,0,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,140.0,1,4,4,2,10,140.0,1,0,0,1,1,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,19,133.1,1,1,1,4,4,130.0,0,0,0,1,1,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,5,9773,1,1,146.0,1,1,37,5,5,146.7,1,0,0,1,1,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,142.0,1,1,38,9,9,127.0,0,0,1,0,1,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,130.0,1,37,37,9,7,138.0,0,0,0,1,0,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9773,1,9,133.1,1,38,1,5,4,102.0,1,0,0,1,1,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,125.0,1,19,19,7,5,118.0,1,0,0,1,0,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,145.0,1,19,38,4,10,131.7,1,0,0,1,0,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,133.1,1,37,19,9,9,114.0,0,0,0,1,0,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,140.0,1,38,37,4,10,140.0,0,0,1,0,0,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,128.0,1,1,19,4,4,124.5,0,0,0,1,1,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,126.0,1,37,19,9,8,116.9,1,0,0,1,0,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,1,9773,1,1,177.0,1,2,1,123,135,155.7,0,0,1,1,0,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,135.0,1,37,1,5,5,126.8,1,0,0,1,0,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,125.0,1,4,3,1,1,119.8,0,0,0,1,0,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,Graduate +1,53,1,9147,1,42,130.0,1,1,19,143,172,133.8,1,0,0,1,0,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,Graduate +1,17,3,9670,1,1,123.0,1,38,38,7,8,118.8,1,1,0,1,0,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,112.0,1,38,19,9,5,113.8,1,0,0,1,0,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,124.0,1,34,34,0,0,129.3,0,0,0,1,0,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9773,1,12,120.0,1,1,1,9,9,129.8,1,0,0,1,1,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,111.0,1,19,19,9,9,110.0,1,0,0,1,0,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,163.0,1,37,37,5,6,155.0,0,0,0,1,0,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,145.0,1,19,1,9,5,145.0,0,0,0,1,0,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,160.0,1,38,37,9,7,155.5,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,137.0,1,1,3,7,3,131.1,1,0,1,1,0,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,133.1,1,38,38,9,9,113.5,0,0,0,1,0,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,130.0,1,1,1,9,9,131.8,0,0,0,1,1,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,137.0,1,38,37,7,7,126.0,1,0,0,1,0,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,160.0,1,19,1,9,5,107.8,1,0,0,0,1,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9070,1,39,120.0,1,3,38,3,9,120.0,0,0,0,1,1,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,145.0,1,3,3,2,1,129.3,1,0,0,1,0,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,117.0,1,38,19,5,7,118.1,0,0,0,1,1,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,130.0,1,1,1,4,3,130.0,1,0,0,1,0,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,Enrolled +2,43,1,9238,1,12,100.0,1,37,37,9,9,134.4,0,0,0,1,0,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,Graduate +2,43,1,8014,0,14,133.1,1,34,34,0,0,100.0,0,0,0,0,0,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,Dropout +1,17,4,9254,1,1,122.0,1,1,1,4,2,116.1,1,0,0,1,1,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,4,9254,1,1,110.0,1,37,37,9,7,113.2,1,0,0,1,0,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,131.0,1,38,37,4,9,131.7,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,1,19,4,10,150.0,0,0,0,1,1,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,142.0,1,19,38,9,7,127.3,0,0,0,1,1,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,Enrolled +1,7,1,9556,1,43,160.0,1,38,19,9,9,160.0,0,0,0,1,1,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,1,1,9853,1,1,130.0,1,19,12,9,4,133.2,1,0,0,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,43,1,9119,1,1,130.0,1,37,38,9,9,120.0,0,0,1,0,0,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,42,1,3,7,110.5,0,0,0,1,1,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +2,39,1,9003,1,1,130.0,1,1,19,4,9,152.4,1,0,0,1,0,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,Graduate +1,16,1,171,1,1,155.0,1,1,3,5,10,167.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,3,9254,1,1,114.0,26,38,3,9,3,127.3,1,0,1,0,0,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,37,37,9,9,125.4,1,0,0,1,1,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,5,9773,1,1,127.0,1,38,1,4,5,121.1,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Enrolled +1,17,2,171,1,1,130.0,41,1,1,2,3,148.6,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9130,1,1,120.0,1,1,19,9,9,120.0,1,0,0,1,0,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,133.0,1,1,37,4,10,143.2,0,0,0,1,0,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,38,38,9,7,125.2,1,0,0,1,0,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,102.0,1,37,37,7,7,102.0,0,0,0,1,0,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,19,38,5,7,128.5,1,0,0,1,0,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,140.0,1,38,38,7,7,133.2,1,0,0,1,0,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,123.0,1,1,1,3,3,120.9,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,2,9500,1,1,135.0,1,19,1,5,5,128.9,1,0,0,1,0,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,1,3,137.7,0,0,0,0,0,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,158.0,1,3,3,3,3,151.4,1,0,0,0,0,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,37,1,9,3,120.0,0,0,1,0,1,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,51,1,9773,1,1,135.0,1,1,42,5,3,110.0,1,0,0,1,1,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,143.0,1,3,38,2,9,144.1,1,0,0,1,0,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,Enrolled +1,1,3,9070,1,1,132.0,1,1,3,9,7,126.1,1,0,0,1,0,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,141.0,1,19,1,9,10,126.8,1,0,0,1,0,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,130.0,1,38,38,6,9,126.3,1,0,0,1,0,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,1,140.0,1,1,1,4,5,140.0,0,0,0,1,1,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,Enrolled +1,39,2,9147,1,1,130.0,1,19,19,5,9,121.5,0,0,0,0,1,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,51,1,8014,0,19,133.1,1,37,37,9,9,104.0,0,0,1,1,0,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,120.0,1,3,4,2,2,120.0,0,0,0,1,1,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,Graduate +1,1,4,171,1,1,131.0,1,19,19,4,4,119.8,1,1,0,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,18,3,9070,1,1,134.0,1,1,1,3,4,121.4,0,0,0,1,0,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,140.0,1,37,37,9,9,118.2,0,0,0,1,1,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,130.0,1,19,37,9,9,131.8,1,0,0,1,0,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,134.0,1,38,19,3,10,121.2,0,0,0,1,0,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,Graduate +1,43,2,9500,1,1,120.0,1,41,3,2,2,112.7,0,0,0,1,0,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,134.0,1,1,19,4,9,129.8,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,133.0,1,19,1,4,5,127.1,1,0,0,1,0,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,148.0,1,38,37,5,9,137.8,1,0,0,1,0,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,129.0,1,37,37,9,7,117.8,0,0,0,1,0,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,Enrolled +4,39,1,8014,0,3,100.0,1,37,37,9,9,130.0,0,0,0,1,0,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,145.0,1,1,40,9,2,129.6,0,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,4,9254,1,1,124.0,1,1,1,4,4,122.3,1,0,0,1,0,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Dropout +2,43,2,9147,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,Graduate +1,51,1,9556,1,1,131.0,1,1,37,152,193,126.6,1,0,0,1,1,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,44,1,9085,1,39,110.0,1,3,5,2,2,110.0,0,0,0,1,1,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,15,1,9147,1,1,140.0,26,37,2,6,4,140.0,0,0,1,1,1,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,Graduate +2,51,1,9853,1,1,130.0,1,37,37,7,8,120.3,0,0,0,1,0,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,19,133.1,1,37,37,6,6,139.0,0,0,0,1,1,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9670,1,1,120.0,1,37,37,7,7,111.3,1,0,0,1,1,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,3,120.0,1,37,37,7,7,120.0,0,0,0,1,0,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,Dropout +1,17,3,9147,1,1,147.0,1,19,38,5,7,132.3,1,0,0,1,0,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,3,9130,1,1,167.0,1,37,37,90,90,159.3,0,0,0,1,0,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,132.0,1,1,1,4,9,136.6,1,0,0,1,1,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,Enrolled +1,5,2,9853,1,1,124.0,1,19,19,3,3,113.9,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,3,130.0,1,3,1,2,9,130.0,0,0,0,1,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,160.0,1,1,38,4,7,146.5,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,141.0,1,19,3,4,0,137.9,1,0,0,0,1,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,19,37,8,7,100.0,1,0,0,1,0,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,134.0,1,38,19,7,7,124.2,0,0,0,1,0,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,150.0,1,1,37,4,8,145.6,1,0,0,1,0,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,146.0,1,3,1,3,10,138.7,0,0,0,1,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9991,0,40,133.1,1,1,37,4,1,100.0,0,0,0,1,0,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,127.0,1,38,19,9,10,117.9,0,0,0,1,0,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,131.0,1,37,38,9,7,137.0,0,0,0,1,0,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Graduate +1,7,1,9238,1,3,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,Graduate +2,39,1,9085,1,1,133.1,1,37,37,90,90,110.3,0,0,0,1,1,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,125.0,1,38,1,3,10,114.5,1,0,0,1,1,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,152.0,1,19,19,9,5,154.1,0,0,1,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,120.0,1,37,37,4,5,120.0,0,0,1,0,0,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,Dropout +2,39,1,8014,0,1,146.0,1,37,37,9,8,120.5,0,0,0,1,0,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,39,1,9119,1,12,133.1,1,34,34,0,0,95.1,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,128.0,1,19,37,9,8,116.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9307cf4b524ffa38ff4a36db610667ac23d91634 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/train.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,1,1,127.0,1,1,1,9,6,110.0,0,0,1,0,1,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9773,1,1,122.0,1,38,37,5,3,119.6,1,0,0,1,0,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,6,9147,1,1,121.0,1,3,19,4,5,116.8,0,0,0,1,1,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,158.0,1,38,37,5,5,140.2,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,19,19,9,7,131.7,1,0,0,1,0,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,Graduate +1,1,3,9085,1,1,133.0,1,1,38,9,90,128.2,0,0,0,1,0,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,122.0,1,1,19,9,9,120.3,1,0,0,1,1,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,Dropout +1,43,1,9119,1,1,130.0,1,1,1,9,2,128.0,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,3,9254,1,1,122.0,1,1,1,4,4,126.6,0,0,0,0,0,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,1,100.0,1,37,37,9,9,133.0,0,0,0,1,1,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,44,1,9119,1,39,130.0,1,19,3,3,4,130.0,0,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9085,1,39,140.0,1,1,1,4,7,140.0,1,0,1,1,0,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9070,1,1,130.0,1,37,37,9,9,123.7,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +4,1,1,9991,0,1,130.0,1,37,37,9,9,118.1,0,0,1,0,0,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9500,1,1,190.0,108,3,2,122,4,190.0,1,0,0,1,0,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,102.0,1,1,19,9,5,100.6,1,0,0,1,0,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,3,120.0,1,19,3,4,2,120.0,1,0,0,1,0,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,130.0,1,38,19,9,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,111.0,1,3,4,4,3,108.2,1,0,0,1,0,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9119,1,1,160.0,1,1,38,4,7,112.0,0,0,0,0,1,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,149.0,1,19,1,4,4,134.8,0,0,0,1,0,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,135.0,1,19,38,3,9,136.1,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,2,9500,1,1,120.0,1,37,34,90,0,121.5,0,0,1,1,0,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,147.0,1,12,19,9,3,151.6,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,128.0,1,37,37,9,9,123.5,1,0,0,1,1,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,2,9070,1,1,129.0,1,1,1,4,9,132.9,1,0,0,1,1,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,Enrolled +1,17,2,9500,1,1,138.0,1,1,38,5,8,132.8,1,0,0,1,0,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,134.0,1,19,37,9,9,131.6,1,1,0,1,0,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,130.0,1,37,37,9,9,122.0,1,0,0,1,0,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,1,0,0,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,2,9085,1,1,130.0,1,37,19,9,8,129.0,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,Enrolled +1,17,5,9119,1,1,126.0,1,38,38,5,9,116.9,1,0,1,1,1,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,37,38,5,6,140.0,1,0,0,1,0,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,18,4,9853,1,1,123.0,1,19,38,4,10,123.7,1,0,0,1,0,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,118.0,1,4,3,2,3,110.7,1,0,0,1,0,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,2,130.0,1,37,37,5,7,147.5,0,0,0,1,0,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,146.0,1,4,1,2,3,140.0,1,0,0,1,0,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,Graduate +1,44,1,9003,1,39,160.0,1,37,38,9,7,160.0,0,0,0,1,0,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,7,0,9003,1,3,130.0,1,1,37,4,9,130.0,1,0,0,1,0,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,19,133.1,1,34,34,99,99,96.0,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,136.0,1,37,37,7,7,140.9,1,0,0,1,1,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,1,9853,1,1,127.0,1,1,1,5,7,121.4,1,0,0,1,0,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,134.0,1,3,19,2,10,128.8,0,0,0,1,0,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,140.0,1,1,3,4,2,142.8,1,0,0,0,0,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,126.3,0,0,0,1,1,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.1,1,19,1,1,3,101.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9147,1,1,122.0,1,1,38,1,7,118.9,0,0,0,1,1,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,107.0,1,19,37,7,7,103.5,1,0,0,1,0,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,156.0,1,38,37,9,9,156.3,0,0,0,1,1,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,128.0,1,1,1,9,9,120.0,1,0,0,1,0,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9119,1,1,127.0,1,19,1,9,10,121.1,1,0,0,1,1,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,4,160.0,1,3,3,4,2,180.4,0,0,1,1,1,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,Dropout +1,43,1,9670,1,1,132.0,1,3,19,4,8,120.5,0,0,0,1,1,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,134.0,1,1,19,4,5,122.5,1,0,0,1,0,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,142.0,1,1,19,4,4,128.0,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,133.0,1,2,37,9,7,125.7,1,0,0,1,1,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,135.0,1,1,3,4,3,133.3,0,0,0,1,0,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,3,140.0,1,37,12,9,4,140.0,0,0,0,0,0,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9500,1,1,141.0,1,2,38,2,10,135.4,1,0,0,1,0,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,Enrolled +2,43,1,9991,0,2,120.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,147.0,1,1,19,4,4,137.2,0,0,0,0,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9085,1,1,120.0,1,37,38,9,9,111.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,141.0,1,3,1,9,9,124.3,0,0,0,1,0,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,Enrolled +1,18,1,9773,1,1,125.0,1,1,1,4,7,121.5,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,140.0,1,37,37,5,5,150.0,0,0,1,1,0,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,112.0,1,1,37,4,9,106.8,1,0,0,1,0,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,168.0,1,38,37,9,8,155.1,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,15,1,9119,1,1,133.1,41,2,2,2,2,100.0,0,0,1,1,1,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,Enrolled +2,1,1,8014,0,1,121.0,1,37,37,9,9,114.4,1,0,0,1,0,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,136.0,1,1,38,4,5,132.2,0,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,Graduate +1,16,1,9070,1,1,145.0,1,1,1,3,3,146.1,1,0,0,1,0,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,40,140.0,1,5,3,2,2,140.0,0,0,1,1,1,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,Dropout +1,1,3,9085,1,1,126.0,1,38,1,9,9,132.0,1,0,0,1,0,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,146.0,1,1,37,9,9,129.3,0,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,131.0,1,37,37,9,6,127.2,0,0,0,1,0,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,139.0,1,37,37,9,9,124.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,133.1,1,37,1,5,4,151.2,0,0,0,1,1,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,170.0,1,38,19,9,2,160.6,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,131.0,1,37,37,9,6,130.7,0,0,1,1,0,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,122.0,1,19,37,3,5,116.6,1,0,1,1,1,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,Graduate +1,17,3,171,1,1,147.0,1,19,1,5,4,137.6,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,9,120.0,0,0,0,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,5,1,9130,1,1,157.0,1,5,43,2,2,149.7,1,0,0,1,0,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9003,1,39,160.0,1,3,1,2,6,160.0,1,0,0,0,0,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,140.0,1,9,19,4,4,131.2,0,0,0,1,1,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,1,130.0,1,1,3,2,6,110.0,0,0,0,1,1,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,Graduate +1,39,1,171,1,1,147.0,1,37,38,175,193,133.3,0,0,0,0,0,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,148.0,1,38,19,4,9,134.7,1,0,0,1,0,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,130.0,1,19,1,9,7,130.4,1,0,0,1,0,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,133.1,1,1,37,4,9,96.0,1,0,0,1,0,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,Enrolled +1,39,1,9991,0,12,120.0,1,37,38,5,5,155.7,0,0,0,1,1,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,117.0,1,3,1,3,3,113.2,0,1,0,1,0,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,Graduate +1,17,2,9853,1,1,150.0,1,38,19,5,5,142.0,1,0,0,1,0,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,144.0,1,1,19,9,4,130.8,1,0,0,1,0,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,Graduate +1,17,4,9254,1,1,118.0,1,38,37,5,7,111.7,1,0,0,1,1,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,6,9500,1,1,141.0,1,2,1,4,4,136.3,1,0,0,1,0,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,Graduate +2,39,1,9003,1,1,120.0,1,2,2,1,4,100.0,0,0,0,1,1,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,141.0,1,4,3,2,1,136.3,1,0,0,1,1,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,120.0,1,1,19,5,4,140.4,0,0,0,1,0,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,154.0,1,1,37,4,9,134.8,1,0,0,1,0,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,100.0,1,19,19,5,5,101.8,1,0,0,1,0,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,3,9670,1,1,137.0,1,1,38,4,7,138.4,0,0,0,1,1,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,152.0,1,37,37,7,5,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,118.0,1,37,1,9,7,117.0,1,0,0,0,1,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,140.0,1,12,3,4,3,118.0,1,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,133.0,1,1,2,9,2,128.8,0,0,0,1,1,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,171,1,1,140.0,1,37,37,9,9,100.8,0,1,0,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9070,1,42,130.0,1,40,19,3,5,130.0,1,0,0,0,0,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,143.0,1,1,19,3,3,133.9,0,0,0,1,0,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,Graduate +2,1,5,9500,1,1,130.0,1,1,19,4,4,122.3,0,0,0,1,0,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,9,9,125.0,1,0,0,1,0,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,120.0,1,37,37,7,8,120.0,0,0,0,1,0,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,Graduate +1,1,2,9147,1,1,125.0,1,1,19,4,9,124.0,1,0,0,1,0,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,131.0,1,38,19,9,9,130.0,1,0,0,1,1,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,132.0,1,1,1,4,1,119.4,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9500,1,1,135.0,1,19,19,7,7,128.0,1,0,0,1,0,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,19,133.1,1,38,38,9,9,114.8,0,0,0,1,0,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,130.0,1,2,2,6,6,130.0,0,0,0,0,1,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,112.0,1,19,38,9,10,112.0,1,0,0,1,0,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9254,1,1,170.0,1,37,37,4,6,138.3,0,0,0,1,0,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9147,1,19,100.0,1,38,19,7,9,132.0,0,0,1,0,1,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,133.1,1,19,19,9,9,119.0,1,0,0,0,0,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,Dropout +1,17,2,9085,1,1,138.0,1,37,37,9,7,123.3,1,0,0,1,0,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,1,133.1,1,37,37,9,9,112.5,0,0,0,1,0,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,1,140.0,1,12,5,3,3,126.6,0,0,0,1,1,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,1,125.0,1,1,1,9,4,120.0,0,0,0,1,0,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,151.0,1,1,1,4,3,132.3,0,0,0,1,1,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,Graduate +1,43,1,9556,1,1,130.0,1,1,37,5,5,128.0,1,0,0,1,1,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,Graduate +1,17,6,9670,1,1,113.0,1,4,1,3,10,112.3,0,0,0,1,0,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9773,1,1,125.0,1,37,37,5,7,120.1,0,0,0,1,0,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,53,1,171,1,42,130.0,1,1,19,9,9,130.0,1,0,0,0,1,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,51,1,33,1,1,121.0,1,19,37,5,7,118.6,0,0,0,1,0,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,131.0,1,37,37,90,90,137.0,0,0,0,1,0,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,150.0,1,19,1,4,4,137.8,0,0,0,1,0,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,140.0,1,37,37,5,6,128.5,0,0,0,1,0,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,130.0,1,37,2,9,4,126.5,1,0,0,0,1,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,Dropout +1,1,2,9238,1,1,147.0,1,19,38,9,8,135.8,1,0,0,1,0,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,106.0,1,19,37,9,7,109.5,1,0,0,1,0,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,110.0,1,37,37,9,10,140.0,0,0,1,0,1,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,105.0,1,19,37,8,8,102.6,0,1,0,1,0,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,Enrolled +1,17,6,9147,1,1,133.0,1,19,38,5,6,123.2,1,0,0,1,1,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9670,1,1,160.0,1,34,34,99,99,100.1,0,0,0,0,1,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,Dropout +4,7,1,9500,1,40,130.0,1,37,37,3,3,130.0,1,0,0,1,0,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,Enrolled +1,43,2,9853,1,1,118.0,1,19,1,5,4,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,Enrolled +1,43,1,8014,0,1,117.0,1,37,37,9,9,100.0,0,0,0,1,0,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,Dropout +1,53,1,9238,1,42,130.0,1,1,19,5,5,128.3,0,0,1,0,0,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,127.0,1,19,38,4,5,120.7,1,0,1,1,0,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,38,37,9,4,150.0,1,0,0,1,1,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,1,133.1,1,37,29,0,4,120.5,0,0,0,0,1,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,121.0,1,37,19,9,9,141.4,0,0,1,0,1,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,120.0,1,38,37,9,7,108.0,0,0,0,1,1,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,153.0,6,37,37,9,9,131.8,1,0,0,1,0,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,153.0,1,38,19,9,5,138.5,1,0,0,1,0,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,107.0,1,12,19,5,5,102.8,1,0,0,1,0,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9238,1,1,135.0,1,1,19,7,7,126.6,1,0,0,1,0,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,124.0,1,1,19,123,103,113.9,1,1,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,144.0,1,37,37,7,9,126.8,1,0,1,0,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9556,1,1,120.0,1,37,37,9,4,150.0,0,0,0,0,0,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,Dropout +1,43,3,171,1,1,120.0,1,37,37,9,9,143.3,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,140.0,1,38,19,4,10,122.3,1,0,0,1,0,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,157.0,1,3,38,1,5,136.7,1,0,0,1,0,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,150.0,1,3,1,2,8,153.8,1,0,0,1,0,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,130.0,1,2,1,2,7,126.2,1,0,0,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,142.0,1,37,37,9,9,132.9,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9238,1,1,124.0,1,1,1,3,1,118.8,1,0,1,0,0,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,1,19,4,5,100.0,0,0,0,1,1,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,Enrolled +1,17,5,9238,1,1,122.0,1,37,37,7,5,112.9,1,0,0,1,0,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,97.5,1,0,0,1,1,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,171,1,1,140.0,1,1,3,3,3,138.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,132.0,1,1,1,3,3,119.4,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,Graduate +1,42,1,9500,1,1,100.0,1,3,19,2,8,153.0,0,0,0,1,1,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,Enrolled +1,1,1,9254,1,1,123.0,1,38,37,5,5,125.1,0,0,0,1,0,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9130,1,1,133.0,1,38,38,5,8,120.4,1,0,0,1,0,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,Graduate +1,17,4,9773,1,1,129.0,1,3,1,2,7,132.5,1,0,0,1,1,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Enrolled +4,39,1,9003,1,19,133.1,1,37,37,9,9,110.0,0,0,0,1,1,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,133.0,1,3,1,9,3,123.2,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,137.0,1,38,19,9,5,129.3,1,0,0,1,0,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,123.0,1,3,1,2,9,127.6,1,0,0,1,1,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,19,133.1,1,19,19,9,5,101.0,1,0,0,1,0,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,19,19,7,7,111.1,1,0,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9070,1,1,147.0,1,3,1,2,3,149.8,1,0,0,1,1,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,100.0,1,37,37,7,9,100.0,1,0,0,1,0,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,141.0,1,38,38,7,7,132.5,1,0,0,1,0,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,168.0,1,1,1,5,5,161.0,1,0,0,1,1,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,Dropout +5,39,1,9003,1,19,133.1,1,19,1,9,9,119.4,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,114.0,1,1,19,9,9,111.9,1,0,0,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,Enrolled +1,39,1,9500,1,1,130.0,1,37,37,3,7,143.8,0,0,0,1,1,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,133.1,1,19,19,9,7,100.0,0,0,0,1,1,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,Dropout +1,17,3,9853,1,1,132.0,1,34,34,0,0,131.3,1,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,157.0,1,37,37,9,9,143.0,0,0,0,1,1,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,Graduate +5,42,1,9254,1,2,120.0,1,37,37,4,9,120.0,0,0,0,1,0,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,6,1,1,192,144,129.8,0,0,0,1,1,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,Enrolled +1,1,2,9500,1,1,139.0,1,38,37,9,7,125.0,1,0,0,1,0,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,133.1,1,1,19,9,5,95.0,1,0,0,1,0,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,180.0,1,37,37,7,4,153.8,1,0,0,1,0,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,4,9773,1,1,133.0,1,1,19,9,9,119.7,1,0,0,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,Graduate +1,17,5,9500,1,1,124.0,1,3,38,2,1,119.8,0,0,0,1,1,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,133.1,1,37,37,9,9,148.2,1,0,1,1,0,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,19,133.1,1,37,37,9,7,114.8,0,0,1,1,1,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,133.1,1,1,19,4,8,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,180.0,41,37,37,9,9,152.7,1,0,1,0,1,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9085,1,1,130.0,1,19,19,90,7,115.8,0,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,161.0,1,38,37,5,5,154.4,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,148.0,1,1,38,4,5,148.7,0,0,0,1,1,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,19,38,9,7,131.3,1,0,1,1,0,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,122.0,1,1,1,4,9,112.9,1,0,0,1,0,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,4,9500,1,1,142.0,1,38,38,9,8,129.8,1,0,0,1,0,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,Graduate +3,39,1,9003,1,1,170.0,1,1,37,6,6,170.0,0,0,1,1,0,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Enrolled +1,1,2,9147,1,1,130.0,1,37,37,9,9,117.8,0,0,0,1,0,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9147,1,1,140.0,1,37,37,9,7,132.3,1,0,0,1,0,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,132.0,1,2,1,9,9,126.4,1,1,0,1,0,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,140.0,1,1,3,9,2,140.0,1,0,0,1,0,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,19,4,4,109.3,0,0,0,1,1,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,176.0,1,3,38,3,7,169.7,0,0,0,1,0,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,133.1,1,37,38,7,7,98.0,1,0,0,1,1,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,136.0,1,3,3,2,2,128.7,0,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,12,38,4,9,107.0,1,0,0,1,0,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,Dropout +1,17,1,9130,1,1,156.0,1,2,9,3,5,166.9,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,Graduate +1,17,1,9130,1,1,123.0,1,19,3,3,2,121.6,1,0,1,1,0,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,129.0,1,1,1,9,9,124.8,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9119,1,1,125.0,1,19,1,5,4,121.5,1,0,0,1,1,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,Dropout +1,17,1,9085,1,1,163.0,14,37,37,9,9,150.8,1,0,0,1,0,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,Graduate +1,7,2,9130,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,135.0,1,1,2,9,1,134.3,1,0,0,1,0,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,19,37,6,6,120.0,0,0,0,1,0,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,1,130.0,1,37,37,9,7,133.0,1,0,0,1,0,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,143.0,1,1,19,4,6,135.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +4,43,2,9991,0,38,133.1,1,3,1,2,9,125.4,0,0,0,1,1,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,140.0,1,3,1,2,4,124.1,0,0,0,1,0,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,37,38,175,103,127.0,0,0,0,1,1,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,151.0,1,1,3,1,1,111.0,0,0,0,1,1,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,133.0,1,37,19,9,8,141.4,0,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,133.1,1,38,37,5,5,108.0,0,0,0,1,0,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,9147,1,1,118.0,1,3,19,2,4,113.8,1,0,0,1,0,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,1,1,3,5,141.7,0,0,0,1,0,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,42,1,9119,1,1,130.0,1,19,37,9,3,135.0,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,Dropout +4,39,2,9147,1,19,133.1,1,37,37,9,7,116.4,0,0,1,0,1,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,148.0,1,19,38,9,8,134.8,1,0,0,1,1,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,116.0,1,19,19,4,7,110.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,5,9147,1,1,122.0,1,38,38,9,9,117.5,1,0,1,0,0,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,122.0,1,37,37,9,9,125.9,1,0,0,1,1,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,171,1,1,127.0,1,1,1,9,5,124.2,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9147,1,39,117.4,1,19,1,4,9,117.4,1,0,0,1,0,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,150.0,1,37,38,9,9,146.2,0,0,0,1,0,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,Enrolled +1,17,1,9254,1,1,158.0,1,37,37,5,9,138.1,1,0,0,1,0,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,Dropout +1,7,1,9500,1,3,140.0,1,1,37,9,5,140.0,0,0,0,1,0,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,140.0,1,1,1,9,3,135.7,1,0,0,1,0,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +2,7,1,171,1,3,120.0,1,19,19,9,9,130.0,1,0,0,1,1,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,10,100.0,1,34,34,0,0,113.0,1,0,0,1,0,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,1,8014,0,1,125.0,1,37,37,9,7,114.9,0,0,0,1,0,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,Graduate +1,18,6,9500,1,1,124.0,1,37,37,9,7,117.8,0,0,0,1,0,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,109.0,1,2,3,3,3,111.8,1,0,1,1,1,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,149.0,1,1,1,9,3,156.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +2,44,1,9119,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,120.0,6,4,4,3,6,120.0,0,0,1,0,0,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,Dropout +5,1,3,9085,1,1,133.0,1,19,19,4,7,119.7,1,0,0,1,0,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9085,1,1,127.0,1,37,37,9,9,122.8,1,0,0,1,0,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,171,1,39,140.0,1,1,1,9,9,140.0,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9773,1,1,132.0,1,1,1,4,9,124.3,1,0,1,1,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +4,39,2,9670,1,19,133.1,1,19,1,90,90,103.0,0,0,0,0,1,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,26,1,9147,1,2,133.1,1,34,34,0,0,121.5,1,0,0,1,0,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,143.0,1,19,38,9,6,131.5,1,0,0,1,1,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,123.0,1,1,19,3,4,122.0,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,171,1,1,133.1,1,3,1,2,3,141.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,19,37,9,4,120.0,0,0,0,1,0,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,1,1,3,3,125.7,1,0,0,1,0,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,121.0,1,37,37,5,5,118.9,1,0,0,1,0,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,Graduate +1,51,1,9500,1,1,129.0,1,37,38,3,3,137.8,1,0,0,1,0,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,2,4,134.9,1,0,1,1,0,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9254,1,1,113.0,1,1,1,2,3,110.2,1,0,0,1,1,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,1,133.1,1,1,19,4,5,120.0,1,0,0,1,1,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,Dropout +1,39,1,9254,1,19,133.1,1,19,1,9,5,97.0,0,0,1,0,1,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9500,1,1,126.0,1,1,19,6,7,115.5,1,0,0,1,0,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,Graduate +1,42,1,9853,1,1,141.0,1,37,19,9,3,133.0,0,0,0,1,0,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,19,133.1,1,19,19,4,9,139.9,1,0,0,1,0,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,2,9254,1,1,140.0,1,19,19,9,9,126.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,108.0,1,34,38,0,3,105.9,0,0,0,1,1,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,114.0,1,19,19,9,7,107.7,0,0,0,1,0,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,130.0,1,3,1,9,9,126.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.1,1,19,37,0,0,137.0,1,0,0,1,0,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9119,1,1,117.0,1,1,2,3,2,119.8,1,0,0,1,1,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9147,1,1,115.0,1,1,37,4,9,117.1,1,0,1,1,0,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,130.0,1,12,19,4,5,118.5,0,1,0,1,0,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,34,37,5,5,120.4,0,0,0,0,0,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,171,1,39,150.0,1,19,1,9,9,154.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,43,1,9147,1,1,140.0,1,37,37,6,6,122.9,0,0,0,1,0,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,Dropout +1,42,1,9070,1,1,100.0,1,3,2,2,2,115.9,0,0,0,1,0,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,Enrolled +1,17,1,171,1,1,128.0,1,1,1,4,10,134.7,0,0,0,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,1,1,9,9,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,7,133.9,0,0,0,1,0,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Dropout +1,43,1,9773,1,1,119.0,1,19,37,5,5,105.0,1,0,0,1,0,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,Enrolled +2,43,1,9991,0,1,140.0,1,37,37,4,1,122.7,0,0,0,1,1,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,135.0,1,37,1,3,5,121.0,0,0,0,1,0,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,123.0,1,3,1,2,3,124.1,1,0,0,1,0,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9670,1,1,132.0,1,19,1,5,4,119.1,0,0,1,1,1,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,5,9254,1,1,130.0,1,37,38,9,9,122.7,1,0,1,1,1,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9147,1,1,117.0,1,1,38,8,9,117.0,1,0,0,1,1,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,140.0,1,19,19,9,6,135.4,1,0,0,1,0,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,162.0,1,37,37,9,6,132.0,0,0,1,1,1,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,139.0,1,19,38,4,9,128.5,1,0,0,1,0,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,Dropout +4,39,1,9991,0,1,130.0,1,38,19,9,7,148.0,0,0,0,1,0,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,43,1,9500,1,1,131.0,1,1,38,5,5,118.8,0,0,0,1,0,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,5,9238,1,1,126.0,1,38,1,9,5,125.7,1,0,0,1,0,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,53,1,9085,1,42,140.0,1,1,1,4,3,140.0,1,0,1,1,0,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,128.0,1,1,1,4,5,120.8,1,0,0,1,0,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,139.0,1,37,37,9,6,133.5,1,0,0,1,0,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,150.0,1,38,38,4,1,150.0,1,0,0,1,1,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,133.1,1,1,1,4,4,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9853,1,1,140.0,1,37,19,9,8,122.3,0,0,0,1,0,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,120.0,1,38,19,5,4,118.3,0,0,0,1,0,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,Enrolled +1,7,1,9130,1,3,140.0,1,2,38,2,3,140.0,1,0,0,0,1,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,122.0,1,9,19,90,6,103.4,0,0,0,1,0,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,Graduate +2,39,1,9070,1,19,133.1,1,37,37,9,10,126.3,0,0,0,0,1,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,160.0,1,38,38,7,7,147.8,0,0,0,1,0,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9238,1,12,100.0,1,37,37,9,9,124.3,0,0,0,1,1,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,Graduate +1,18,2,8014,0,1,117.0,1,3,1,3,4,111.8,1,0,0,1,0,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,38,37,7,7,140.0,0,0,0,1,1,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,Dropout +1,43,1,9853,1,1,140.0,1,3,1,3,3,128.3,1,0,0,1,0,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,127.0,1,37,38,9,9,120.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,1,161.0,1,19,37,4,10,100.0,0,0,0,1,1,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,Graduate +1,16,4,9500,1,1,145.0,1,1,1,4,4,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9853,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,Dropout +1,1,2,171,1,1,127.0,1,2,19,5,5,139.6,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,148.0,1,19,19,4,4,133.8,0,0,0,1,0,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,140.0,1,19,19,1,1,129.5,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,171,1,1,129.0,1,37,37,9,9,122.0,1,0,0,0,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,1,12,3,10,131.6,1,0,0,1,0,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,130.0,1,38,37,3,6,135.6,1,0,0,1,0,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,51,1,9991,0,39,120.0,1,1,4,4,10,118.1,0,0,0,1,1,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,39,1,9853,1,19,133.1,1,19,4,9,4,116.0,1,0,0,1,0,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9238,1,1,133.1,1,1,37,8,9,118.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,4,9500,1,1,125.0,1,19,1,1,1,117.8,1,0,0,1,0,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,141.0,1,1,38,4,5,125.0,1,0,0,1,0,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,121.0,1,38,38,7,5,120.0,1,0,0,1,0,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,Enrolled +1,17,3,9500,1,1,142.0,1,3,3,3,3,132.9,1,0,0,1,1,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,Dropout +1,44,1,9238,1,39,140.0,1,37,19,191,102,136.1,1,0,1,1,0,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9991,0,2,140.0,1,3,3,2,2,155.7,1,0,0,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9119,1,1,135.0,1,12,19,5,5,121.0,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,135.0,1,3,3,2,2,123.0,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,117.0,1,1,1,4,4,117.7,1,0,0,1,1,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,43,1,171,1,1,120.0,1,3,3,2,2,120.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,1,38,1,7,120.0,0,0,0,1,0,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,Graduate +1,17,3,9238,1,1,122.0,1,19,19,7,7,117.5,1,0,0,1,0,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,1,37,37,9,9,144.2,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +4,39,1,9500,1,1,140.0,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,131.0,1,19,19,9,9,139.8,1,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,127.0,1,3,3,2,5,100.0,0,0,0,1,0,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,39,1,9085,1,1,133.1,1,3,19,2,9,110.0,0,0,0,1,0,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,Dropout +4,39,1,9500,1,19,133.1,1,38,1,9,4,120.0,0,0,0,1,0,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,Graduate +1,16,1,9085,1,1,150.0,1,3,3,2,1,153.5,1,0,0,1,0,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,153.0,1,19,37,9,9,153.7,0,0,0,1,0,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,130.0,1,19,19,3,8,131.8,0,0,0,1,0,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,2,9853,1,1,131.0,1,1,1,2,9,121.9,1,0,0,1,0,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,136.0,1,3,3,3,3,130.8,0,0,0,1,0,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,126.0,1,1,19,4,0,120.1,0,1,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,1,120.0,1,3,2,2,6,120.0,1,0,0,1,1,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,Enrolled +2,39,1,9130,1,19,133.1,1,2,1,2,9,157.0,1,0,0,1,1,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,Graduate +1,7,1,9853,1,3,150.0,1,19,19,4,5,150.0,0,0,1,0,0,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,51,1,9070,1,12,133.1,1,37,19,3,7,106.6,0,0,1,1,0,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,Enrolled +1,1,2,9085,1,1,157.0,1,3,3,5,2,153.9,1,0,0,1,0,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,171,1,1,117.0,1,1,19,3,3,121.6,1,0,0,1,0,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,Graduate +1,1,2,9147,1,1,113.0,1,38,38,9,5,107.4,1,0,0,1,1,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,Enrolled +1,39,2,9147,1,12,133.1,1,19,38,9,9,120.0,1,0,1,0,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,152.0,1,37,37,9,9,139.0,1,0,0,1,0,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,138.0,1,1,19,9,9,124.0,0,0,0,1,0,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9853,1,1,110.0,1,37,37,9,9,95.5,0,0,1,0,0,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9130,1,1,150.0,1,19,19,4,4,130.0,0,0,0,0,1,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,3,9119,1,1,138.0,1,1,19,4,3,125.4,1,0,0,1,1,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,17,6,9147,1,1,120.0,1,37,38,9,9,115.5,1,0,1,0,1,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,Enrolled +1,1,3,9670,1,1,134.0,1,14,11,0,0,128.4,1,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,145.0,1,38,37,9,7,129.3,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,18,6,9500,1,1,126.0,1,37,37,5,5,122.8,1,0,0,1,0,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,133.0,1,1,1,4,4,129.2,1,0,0,1,0,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,Dropout +1,44,1,9070,1,39,120.0,1,1,19,4,7,120.0,0,0,1,0,1,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,136.0,1,19,38,9,9,121.7,0,1,0,1,0,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,126.0,1,1,1,9,10,126.7,1,0,0,1,0,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,Graduate +1,1,3,9085,1,1,134.0,1,38,19,9,5,129.1,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,133.1,1,1,37,9,9,117.0,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,5,9238,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,0,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,40,140.0,1,19,37,5,9,148.0,0,0,0,1,0,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,137.0,1,3,38,1,9,131.4,0,0,0,0,1,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,Dropout +1,1,2,9670,1,1,123.0,1,1,38,7,7,120.6,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,139.0,1,3,1,2,7,124.0,1,0,0,1,0,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,Dropout +1,1,2,171,1,1,152.0,1,38,19,9,9,151.7,1,0,0,1,0,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,110.0,1,37,37,9,4,114.3,1,0,0,1,1,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,Enrolled +1,51,1,9991,0,1,120.0,1,38,3,5,3,128.2,0,0,1,1,1,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,141.0,1,3,2,2,2,133.3,1,0,0,1,1,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,Enrolled +1,5,1,171,1,1,137.0,1,3,19,1,10,144.7,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,43,1,9003,1,1,130.0,1,37,1,5,4,130.0,0,0,0,1,1,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,Dropout +1,18,1,9773,1,1,135.0,1,1,1,3,3,129.8,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,38,38,9,8,150.0,1,0,0,1,1,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,Graduate +1,17,2,9773,1,1,150.0,1,1,1,4,5,130.8,0,0,0,1,1,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9773,1,1,123.0,1,1,1,4,7,125.1,1,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,4,9119,1,1,129.0,1,34,36,0,5,118.9,1,0,0,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,144.0,1,38,37,9,9,128.8,1,0,0,1,1,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,130.0,1,38,38,9,9,150.0,0,0,1,0,1,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,128.0,1,1,1,7,7,120.5,1,0,0,1,0,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,Enrolled +1,7,1,9500,1,3,140.0,1,3,1,4,4,140.0,0,0,0,1,0,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,134.0,1,19,19,1,1,120.4,1,0,0,1,1,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,147.0,1,1,38,4,8,141.1,1,0,0,1,0,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,126.0,1,3,1,5,5,125.7,0,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +2,1,4,9853,1,1,134.0,1,37,37,5,7,122.5,0,1,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,148.0,1,38,38,4,9,131.6,0,0,0,1,1,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,Dropout +2,39,1,9085,1,9,133.1,1,1,1,4,4,120.0,1,0,0,0,1,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,39,1,9254,1,1,150.0,1,3,1,3,4,122.3,0,0,0,1,1,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,125.0,1,19,37,3,7,126.8,0,0,0,1,0,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,Enrolled +1,18,1,9670,1,1,128.0,1,19,3,9,7,120.0,1,0,0,1,0,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,160.0,1,2,1,4,4,137.3,1,0,0,1,0,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,Graduate +2,39,1,9238,1,42,170.0,1,19,38,8,8,159.5,0,0,0,1,1,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9773,1,1,143.0,1,1,1,4,9,144.1,1,0,0,1,1,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,9991,0,1,130.0,1,37,37,9,9,127.8,0,0,0,1,1,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,51,1,9147,1,1,130.0,1,19,38,9,8,115.7,0,0,0,1,1,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,Enrolled +1,17,3,9773,1,1,135.0,1,1,19,5,7,135.0,0,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,135.0,1,1,1,9,9,133.3,0,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,136.0,1,1,1,4,5,123.3,0,0,0,0,0,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,143.0,1,5,5,2,2,137.8,0,0,0,1,1,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,133.1,1,1,19,141,114,140.0,1,0,0,1,0,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9670,1,1,117.0,1,38,19,0,1,114.6,0,0,0,0,1,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,133.1,1,1,19,4,10,145.8,0,0,0,1,1,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,129.0,1,1,37,4,9,118.2,0,0,0,1,1,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,7,1,9500,1,3,130.0,1,37,37,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,Graduate +1,17,4,9670,1,1,135.0,1,38,38,9,7,127.0,1,0,0,1,0,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,126.0,1,1,1,90,90,119.0,1,0,1,1,1,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9773,1,1,120.0,1,1,38,5,5,121.4,0,0,0,0,0,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,136.0,1,1,38,9,9,130.8,1,0,0,1,0,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,131.0,1,19,37,9,9,123.8,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,144.0,1,19,19,9,9,142.6,1,0,0,1,0,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,126.0,1,38,38,7,8,126.7,1,0,0,1,0,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,3,171,1,1,125.0,1,37,37,5,10,120.5,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,7,1,9130,1,2,110.0,1,19,19,4,8,110.0,1,0,0,1,1,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,3,1,2,8,150.0,0,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,5,171,1,1,139.0,1,19,3,9,2,136.9,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9147,1,1,100.0,1,38,38,5,5,101.8,1,0,0,1,0,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,Enrolled +1,44,2,9238,1,39,150.0,1,3,19,4,9,147.0,1,0,0,1,0,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,9,4,100.0,0,0,0,1,1,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9130,1,1,130.0,1,19,38,4,7,122.5,0,0,0,1,1,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,19,37,1,1,140.0,0,0,1,1,1,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,Enrolled +1,17,1,9070,1,1,157.0,1,3,3,3,3,146.2,0,0,0,1,1,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,150.0,1,37,19,8,4,130.8,0,0,0,1,1,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,133.1,1,19,19,7,7,130.0,1,0,0,1,0,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,150.0,1,19,1,9,8,150.0,1,0,0,1,1,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,127.0,1,1,19,7,7,121.8,1,0,0,1,0,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9853,1,1,148.0,1,19,19,5,7,141.7,0,0,0,1,0,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,130.0,1,1,19,9,9,133.4,0,0,0,1,0,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,123.0,1,37,38,3,3,122.0,0,0,1,1,1,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9070,1,1,132.0,1,37,38,9,7,138.0,0,0,0,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,146.0,1,2,19,3,9,130.3,1,0,0,1,1,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,Graduate +1,44,1,171,1,39,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,116.0,1,3,1,3,4,115.7,0,0,0,0,1,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9670,1,1,130.0,1,19,37,4,5,118.8,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,124.0,1,37,37,7,9,121.2,0,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,127.0,1,19,37,9,3,120.7,1,0,0,1,0,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +2,43,1,9070,1,2,140.0,1,37,37,6,6,140.0,1,0,0,1,1,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,Graduate +1,39,1,9500,1,1,100.0,1,3,1,2,5,121.3,1,0,0,1,0,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,Enrolled +1,39,1,9991,0,19,133.1,1,37,37,9,6,105.3,0,0,1,1,0,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,1,155.0,1,1,19,4,8,134.7,1,0,0,1,0,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,15,1,9119,1,1,160.0,32,1,3,143,152,160.0,0,0,1,1,0,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,Enrolled +1,53,1,9670,1,42,140.0,1,19,37,3,6,140.0,1,0,1,1,0,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9853,1,1,140.0,1,38,38,9,7,137.6,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,140.0,1,19,19,7,7,129.5,1,0,0,1,0,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,133.1,1,19,19,3,4,104.0,0,0,1,0,0,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,130.0,1,37,37,9,9,118.8,0,0,1,1,1,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,136.0,1,1,1,9,1,133.0,1,0,0,1,0,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,143.0,1,38,38,9,9,138.8,1,0,0,1,0,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,Graduate +2,39,1,9147,1,1,140.0,1,37,37,6,10,131.8,0,0,0,1,0,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,1,130.0,1,4,1,2,9,120.0,0,0,0,0,0,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,Enrolled +1,1,4,9500,1,1,148.0,1,19,19,4,5,137.0,1,0,0,1,0,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,120.0,1,37,19,5,3,156.0,1,0,0,1,1,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9853,1,1,133.1,1,12,1,4,0,134.8,1,0,0,1,0,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,122.0,1,1,1,9,8,120.3,0,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,156.0,1,19,38,9,5,170.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,129.0,1,38,37,9,3,127.3,1,0,1,0,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,142.0,1,38,38,9,10,127.0,1,0,0,1,0,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,150.0,1,38,19,3,3,120.1,0,0,0,0,0,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,141.0,1,37,37,9,9,126.7,1,0,1,1,0,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,43,3,9147,1,1,127.0,21,3,37,3,3,117.9,1,0,0,1,0,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,1,120.0,1,1,19,4,7,110.0,0,0,0,1,1,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,Dropout +2,42,1,9254,1,1,136.0,1,2,2,134,112,130.0,1,0,0,1,1,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,Dropout +1,18,1,9119,1,1,122.0,1,19,1,90,3,116.1,1,0,1,0,1,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9500,1,1,120.0,1,2,4,4,5,136.6,0,0,0,1,1,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,Dropout +1,18,1,9070,1,1,143.0,1,38,38,7,5,141.6,0,0,0,1,0,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,Graduate +1,43,1,9119,1,1,140.0,1,37,38,5,7,146.5,0,0,0,1,1,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,125.0,1,19,19,9,9,121.5,1,0,0,1,0,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,1,0,0,1,0,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,159.0,1,3,3,2,2,165.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,127.0,1,3,1,2,9,119.3,1,0,0,1,0,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,Graduate +1,17,6,9238,1,1,117.0,1,1,38,4,7,114.6,0,0,0,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9119,1,1,148.0,1,19,19,9,8,129.8,0,0,0,0,1,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,Enrolled +1,17,4,9119,1,1,127.0,1,19,19,5,5,120.4,1,0,1,0,1,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9500,1,1,144.0,1,19,1,5,3,141.0,1,0,0,1,0,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,Graduate +1,17,3,9556,1,1,126.0,1,19,19,9,4,119.0,1,0,0,1,0,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,Dropout +1,1,4,9119,1,1,126.0,1,3,19,2,9,123.6,1,0,0,1,1,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,120.0,1,1,2,144,123,125.3,0,0,1,1,1,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9070,1,1,130.0,1,1,19,4,4,110.0,1,0,0,1,0,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,37,37,90,5,115.5,0,0,0,0,1,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,130.0,1,38,38,9,9,120.0,0,0,0,1,0,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9853,1,1,141.0,1,3,1,1,5,130.2,1,0,0,1,0,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,Enrolled +2,1,1,9500,1,1,156.0,1,1,1,9,10,135.5,0,0,0,1,0,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,Graduate +2,7,1,8014,0,3,170.0,1,19,19,4,4,170.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9147,1,1,134.0,1,37,19,9,8,126.3,1,0,0,1,0,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,122.0,1,12,12,5,7,126.6,1,0,0,1,0,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,38,38,9,7,138.8,1,0,0,1,0,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,132.0,1,37,37,5,7,127.5,1,0,0,1,0,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,Graduate +1,16,2,9238,1,1,130.0,1,37,37,5,6,126.9,1,0,0,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,110.0,1,3,2,3,3,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,127.0,1,2,19,4,5,121.8,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,12,133.1,1,38,19,9,8,138.3,1,0,1,0,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9147,1,19,133.1,1,3,1,3,5,153.2,1,0,1,1,0,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,37,19,5,9,130.0,1,0,0,1,0,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,2,9147,1,1,130.0,1,19,37,4,7,140.0,0,0,0,1,1,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,128.0,1,19,19,7,7,124.4,0,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,19,3,8,150.3,1,0,0,1,1,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,143.0,1,38,19,7,9,129.5,1,0,0,1,0,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,6,141.0,1,37,1,9,4,145.0,0,0,0,1,0,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,Graduate +1,17,1,9238,1,1,160.0,1,19,37,6,6,144.3,0,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,2,9238,1,1,133.1,1,19,19,4,5,120.6,1,0,0,1,0,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,3,116.5,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,127.0,1,1,1,3,4,130.2,1,0,0,1,1,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9254,1,1,131.0,1,38,36,9,9,124.0,1,0,0,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,5,9254,1,1,120.0,1,37,37,9,7,127.0,1,0,0,1,0,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,135.0,1,34,34,0,0,134.1,1,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9254,1,1,133.1,1,37,37,9,6,121.5,0,0,0,1,1,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,144.0,1,38,38,5,7,128.0,1,0,0,1,0,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,132.0,1,1,19,6,6,124.7,1,0,0,1,1,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,Graduate +1,17,2,9991,0,1,116.0,1,37,19,9,4,118.5,0,0,0,1,1,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,133.1,1,1,1,9,1,103.0,1,0,0,1,0,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,16,5,9085,1,1,134.0,1,19,37,8,8,123.9,1,0,0,1,1,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9773,1,1,114.0,1,37,38,9,5,107.4,1,0,0,0,1,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,38,37,5,7,120.0,1,0,0,1,0,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,135.0,1,1,38,4,6,122.1,0,1,1,0,1,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,1,150.0,1,37,37,7,5,143.0,0,0,0,1,0,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,Graduate +1,44,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,Graduate +4,39,1,9238,1,19,133.1,1,37,37,9,10,103.5,0,0,0,0,0,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,126.0,1,19,38,9,9,132.0,1,0,0,1,0,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,125.0,1,1,1,7,3,143.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9147,1,1,120.0,1,37,1,9,1,122.7,0,0,0,0,0,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,7,1,8014,0,3,124.4,1,37,34,0,0,130.0,0,0,0,1,0,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,Graduate +1,18,1,9085,1,1,106.0,1,1,19,3,5,104.6,0,0,0,0,1,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,Enrolled +1,44,1,9119,1,39,160.0,1,3,38,2,3,160.0,0,0,1,0,1,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,148.0,1,3,19,2,5,130.0,0,0,0,1,0,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,Enrolled +1,1,1,9130,1,1,133.0,1,1,37,9,9,123.2,1,0,0,1,0,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9500,1,1,130.0,1,19,1,9,4,128.8,1,0,0,1,0,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,149.0,1,19,1,9,9,137.8,1,0,0,1,1,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,Graduate +4,43,1,9670,1,1,150.0,1,37,37,9,6,110.0,0,0,0,1,0,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,Graduate +2,39,1,9119,1,1,110.0,1,19,19,0,5,137.0,0,0,1,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9556,1,1,122.0,1,19,19,3,10,113.3,1,0,0,1,0,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,140.0,1,1,19,4,5,127.5,0,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,128.0,1,37,37,5,5,124.5,1,0,0,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,39,150.0,6,5,4,1,1,150.0,0,0,0,1,0,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,131.0,1,38,37,7,7,127.2,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,130.0,1,37,37,9,6,126.5,1,0,0,1,0,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,116.0,1,19,37,90,5,116.7,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,Dropout +1,17,3,9853,1,1,140.0,1,38,38,5,7,126.7,1,0,0,1,0,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,4,9238,1,1,129.0,1,37,37,9,8,117.1,1,0,0,1,1,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,144.0,1,19,19,9,9,130.5,1,0,0,1,0,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,124.0,1,19,1,7,10,116.0,1,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,122.0,1,1,19,4,4,127.3,1,0,1,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,12,12,4,1,155.3,1,1,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +2,15,1,9773,1,1,133.1,41,37,37,9,6,100.0,0,0,0,1,0,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,138.0,41,1,1,9,9,126.5,1,0,0,1,0,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,Graduate +1,18,6,9500,1,1,142.0,1,38,37,9,5,128.0,1,0,0,0,0,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,3,1,2,3,140.0,1,0,0,1,0,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,Enrolled +1,42,1,9991,0,1,150.0,1,19,19,5,5,113.7,0,0,0,1,1,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,135.0,1,1,19,5,5,130.1,1,0,0,1,0,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9254,1,1,120.0,1,19,1,9,8,117.2,0,0,0,1,1,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,130.0,1,19,19,9,7,119.5,1,0,0,1,1,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,133.0,1,1,1,4,5,136.2,1,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,15,1,9147,1,1,133.1,21,1,3,192,3,100.0,0,0,1,1,1,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9670,1,1,112.0,1,37,1,7,0,110.6,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9238,1,1,117.0,1,19,19,9,9,117.0,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9991,0,1,140.0,1,1,37,9,8,154.5,0,0,0,1,0,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,97.0,1,0,0,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,119.0,1,37,37,5,4,118.0,1,0,0,1,1,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,112.0,1,19,38,5,7,107.1,1,0,0,1,0,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +2,18,2,8014,0,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,144.0,1,37,37,9,6,129.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,120.0,100,1,1,4,7,119.5,0,0,1,1,0,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,136.0,1,19,38,5,8,130.3,1,0,0,1,0,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,7,9,121.3,1,0,0,1,0,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,135.0,1,1,4,5,3,124.9,0,0,0,1,0,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,4,9670,1,1,128.0,1,38,38,3,7,121.0,1,0,0,1,0,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,15,1,9556,1,1,114.0,26,3,19,122,144,114.0,0,0,0,1,0,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9238,1,1,125.0,1,19,19,3,3,118.0,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,118.0,1,37,37,7,7,114.2,0,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,Enrolled +1,17,1,9147,1,1,115.0,1,19,37,5,7,112.9,1,0,0,0,1,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,120.0,1,19,37,9,9,118.3,0,0,1,0,1,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9119,1,10,133.1,1,34,37,0,0,128.8,1,0,0,1,1,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,115.0,1,19,38,5,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,137.0,1,37,37,9,9,132.8,1,0,0,1,0,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9003,1,1,148.0,1,19,37,9,9,131.6,1,0,0,1,1,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9773,1,1,161.0,1,1,19,4,7,148.4,0,0,0,1,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,43,1,9991,0,1,133.1,1,37,37,9,7,113.5,0,0,0,1,0,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,132.0,1,1,1,9,9,133.8,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9254,1,1,125.0,1,37,37,9,9,122.9,0,0,0,1,1,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,123.0,1,3,1,9,3,121.3,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,Enrolled +1,17,1,9991,0,1,154.0,1,38,38,4,5,134.1,0,0,0,1,0,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,Enrolled +1,44,1,9130,1,39,140.0,1,19,19,5,5,140.0,1,0,1,0,0,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,Enrolled +1,53,1,9085,1,42,170.0,1,1,19,4,7,170.0,0,0,0,1,0,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,Graduate +1,17,5,9147,1,1,131.0,1,19,38,3,10,119.8,1,0,0,1,0,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,141.0,1,19,19,9,9,126.0,1,0,0,1,0,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,Graduate +1,1,3,9500,1,1,137.0,1,19,19,5,4,131.5,1,0,0,1,0,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,118.0,1,19,1,9,3,113.5,1,0,1,1,0,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,100.0,1,37,37,99,99,100.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9130,1,1,120.0,6,1,3,9,2,120.0,0,0,1,1,0,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,127.0,1,19,19,5,5,129.8,1,0,0,1,0,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,134.0,1,37,37,9,9,129.8,1,0,0,1,0,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,121.0,1,37,37,5,9,116.5,1,0,0,1,0,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9070,1,1,117.0,1,19,37,5,5,131.0,1,0,1,0,1,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,125.0,1,1,38,9,7,119.8,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,5,9500,1,1,140.0,1,1,1,4,3,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,1,5,9254,1,1,101.0,1,3,19,3,9,98.9,1,0,0,1,1,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,130.0,1,37,38,7,9,117.8,0,0,1,1,0,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,128.0,1,34,19,3,0,141.0,1,0,0,0,0,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,150.0,1,38,37,9,9,130.8,0,0,0,1,1,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,125.0,1,1,19,4,7,116.6,0,0,0,1,1,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,Graduate +1,43,1,9670,1,1,130.0,1,34,34,0,0,114.8,0,0,0,1,1,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,Graduate +2,42,1,9003,1,1,120.0,1,3,1,2,2,113.3,0,0,0,1,1,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +4,39,1,9991,0,1,133.1,1,37,37,5,5,138.7,0,0,0,1,0,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,Dropout +1,39,1,9238,1,1,140.0,1,34,34,0,0,114.0,1,0,0,0,0,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9991,0,1,133.1,1,37,19,3,10,136.1,0,0,0,1,1,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9070,1,1,110.0,1,37,37,7,7,110.2,0,0,0,1,1,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,150.0,1,4,5,4,2,150.0,0,0,0,1,1,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,Enrolled +1,1,2,9119,1,1,149.0,1,38,38,5,5,141.0,0,0,0,1,1,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,Enrolled +1,42,1,9085,1,39,150.0,1,1,1,4,7,150.0,1,0,0,1,0,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,1,38,4,9,131.7,1,0,0,1,0,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,42,1,9853,1,1,120.0,1,1,37,5,5,113.9,1,0,0,1,0,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9085,1,1,130.0,1,37,19,9,7,130.0,1,0,0,1,0,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,Enrolled +1,17,4,9500,1,1,133.0,1,38,37,5,7,126.4,1,0,0,1,1,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,147.0,1,3,1,2,3,131.6,0,0,0,1,0,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,12,133.1,1,37,37,9,9,121.5,0,0,0,1,1,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,1,1,9991,0,1,150.0,1,37,37,9,9,131.8,0,0,0,0,0,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,43,4,8014,0,1,116.0,1,34,34,0,0,116.2,0,0,0,1,1,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,7,140.0,0,0,0,1,1,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9773,1,1,136.0,1,3,1,2,3,132.5,1,0,0,1,0,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,19,110.0,1,37,38,5,5,151.0,0,0,1,0,1,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,19,19,5,5,113.2,1,0,1,1,0,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,137.0,1,3,19,2,9,122.3,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +4,39,1,9254,1,1,120.0,1,37,19,9,9,131.0,1,0,0,1,1,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9556,1,1,123.0,1,19,19,4,9,113.8,1,0,0,1,0,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,150.0,1,3,37,4,7,139.5,0,0,0,1,1,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,145.0,1,38,37,3,9,138.4,1,0,0,0,0,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,39,1,8014,0,1,140.0,1,37,37,9,7,122.0,1,0,1,0,1,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,3,9991,0,1,120.0,1,37,37,9,9,128.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,6,9500,1,1,126.0,1,12,37,5,9,121.8,1,0,0,1,0,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,Dropout +2,39,1,9991,0,1,130.0,1,37,37,9,9,140.0,1,0,0,1,1,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,130.0,1,37,19,9,8,130.8,0,0,0,1,1,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,Enrolled +1,1,3,9070,1,1,125.0,1,19,38,9,9,125.4,1,0,0,1,0,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,132.0,1,38,38,4,9,119.1,0,0,0,1,0,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,Graduate +4,7,1,9147,1,3,130.0,1,19,1,5,5,130.0,0,0,0,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,130.0,1,19,19,7,7,121.6,1,0,0,1,0,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9773,1,1,126.0,1,37,38,5,5,129.5,1,0,1,0,0,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,133.0,1,38,38,5,5,123.2,0,0,0,1,0,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,140.0,1,37,37,9,9,121.0,0,0,0,1,0,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,3,9500,1,1,131.0,1,37,37,9,9,118.0,1,0,0,1,0,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,120.0,1,38,19,4,8,115.1,0,0,0,1,0,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,Enrolled +1,17,5,9773,1,1,111.0,1,19,12,7,3,115.9,1,0,0,1,0,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,135.0,1,1,19,9,7,123.5,1,0,0,1,0,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,37,4,9,130.0,1,0,0,1,0,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,Enrolled +1,44,1,9119,1,39,130.0,1,3,19,3,4,130.0,0,0,0,1,1,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,Enrolled +1,44,1,9147,1,39,130.0,22,2,37,2,8,130.0,0,0,1,0,1,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,119.0,1,37,37,9,6,119.0,0,0,1,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9500,1,1,142.0,1,38,37,9,8,130.8,1,0,0,1,0,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,136.0,1,38,1,9,4,129.7,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,140.0,1,19,19,4,4,140.0,1,0,0,1,1,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,19,133.1,1,1,19,4,10,114.0,0,0,0,1,1,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +1,17,5,9670,1,1,125.0,1,19,30,7,7,118.4,1,0,0,1,0,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,135.0,1,19,19,9,10,122.9,1,0,0,1,0,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,100.0,1,37,37,9,9,108.0,1,0,0,1,1,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,127.0,1,37,37,9,9,119.3,1,1,0,1,1,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,133.0,1,38,19,9,10,125.0,1,0,0,1,0,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,116.0,1,3,3,3,3,110.1,1,0,0,1,1,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,133.1,1,1,1,5,8,123.0,1,0,0,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,144.0,1,37,37,9,3,150.5,0,0,0,1,0,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,3,1,2,4,130.2,0,0,0,1,1,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,116.0,1,38,37,9,6,109.7,1,0,0,1,0,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,Graduate +1,18,3,9853,1,1,128.0,1,38,37,5,9,116.8,1,0,0,0,1,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,150.0,1,37,37,4,9,132.1,1,0,1,1,0,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,160.0,1,1,19,4,6,155.7,1,0,0,1,0,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,130.0,1,19,1,9,9,131.9,0,0,0,1,0,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,126.0,1,3,3,2,2,121.1,0,0,1,1,0,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,38,38,7,7,147.0,0,0,0,1,0,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,137.0,1,37,37,9,9,126.2,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,38,37,5,5,137.1,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,143.0,1,2,37,1,1,133.2,1,0,0,1,0,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,Enrolled +1,17,5,9070,1,1,122.0,1,19,38,5,7,119.6,0,0,1,0,0,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,137.0,1,19,38,9,9,127.2,1,0,0,1,0,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,110.0,1,1,1,4,4,125.9,0,0,0,1,1,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,130.0,1,1,38,5,9,118.1,0,0,1,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9853,1,1,130.0,1,37,19,9,5,102.5,0,0,0,1,0,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.0,1,19,1,9,1,122.2,0,0,0,1,0,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,39,140.0,1,3,3,2,2,140.0,1,0,0,1,0,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,134.0,1,37,38,9,9,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,1,1,37,4,7,110.0,0,0,0,1,1,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,Dropout +1,15,1,9085,1,1,133.1,41,3,3,4,2,101.3,0,0,0,1,0,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,113.0,1,1,1,5,4,106.7,1,0,1,1,0,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,Dropout +2,39,1,9991,0,19,133.1,1,37,37,5,5,111.9,1,0,0,1,1,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9853,1,1,134.0,1,19,38,4,8,122.1,1,0,0,1,0,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9853,1,1,133.0,1,19,37,4,9,130.2,1,0,0,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,127.0,1,19,19,5,5,160.0,0,0,0,1,1,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,Graduate +1,7,1,9500,1,3,130.0,1,37,38,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,140.0,1,19,38,7,7,136.5,1,0,0,1,0,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,Graduate +2,39,1,9773,1,19,133.1,1,37,37,9,6,110.0,0,0,0,0,0,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,Dropout +2,39,1,8014,0,1,120.0,1,34,34,99,99,101.8,0,0,0,0,0,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,135.0,1,1,1,4,7,129.8,1,0,0,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,131.0,1,37,38,5,5,128.9,0,0,0,1,0,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,Graduate +1,1,4,9070,1,1,139.0,1,3,19,1,5,138.3,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9500,1,1,122.0,1,1,1,3,7,114.3,1,0,0,1,1,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,150.0,1,37,37,9,7,136.5,1,0,0,1,0,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,3,1,2,8,121.4,0,0,0,1,1,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,117.0,1,19,19,194,193,117.4,1,0,0,1,0,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,Enrolled +2,39,1,9085,1,1,133.1,1,36,36,99,5,128.2,0,0,0,0,0,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,121.0,1,3,1,2,3,114.0,0,0,0,1,1,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,Enrolled +1,51,1,9853,1,1,139.0,1,1,1,4,10,134.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9070,1,1,137.0,1,1,1,3,1,141.2,1,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,133.1,1,37,37,6,3,140.0,0,0,1,1,1,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,1,9147,1,1,126.0,1,37,37,4,7,116.9,0,0,0,1,1,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,44,1,9130,1,39,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,1,9991,0,1,130.0,1,37,37,9,9,128.2,0,0,0,1,0,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,131.0,1,19,9,5,3,118.4,0,0,0,1,0,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,138.0,1,19,19,3,3,131.0,1,0,0,1,0,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,1,130.0,1,37,12,9,8,129.4,1,0,1,0,1,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,9991,0,1,134.0,1,37,37,9,9,113.7,0,0,0,1,0,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9853,1,1,117.0,1,38,38,9,7,114.6,1,0,0,1,0,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,145.0,1,3,3,4,4,153.1,1,0,0,1,0,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9085,1,1,130.0,1,19,38,4,9,130.0,1,0,0,0,0,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9119,1,1,146.0,1,37,37,9,9,148.5,1,0,0,1,1,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,136.0,1,1,1,4,4,124.1,0,0,0,1,0,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,100.0,1,37,38,9,4,140.0,0,0,0,1,1,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,Enrolled +1,44,1,9003,1,39,180.0,1,1,3,4,2,180.0,0,0,0,1,0,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,Graduate +1,15,1,9773,1,1,120.0,26,19,19,4,5,120.0,1,0,0,1,0,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,141.0,1,4,19,4,10,100.0,0,0,0,1,1,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,1,150.0,1,29,10,6,6,150.0,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,5,9254,1,1,122.0,1,1,37,9,7,119.6,1,0,0,1,0,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,128.0,1,19,38,9,7,124.2,1,0,0,1,1,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9130,1,1,172.0,1,19,19,9,9,163.3,1,0,0,1,0,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,129.0,1,38,37,5,5,142.0,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,100.0,1,1,3,9,10,120.0,0,0,1,0,1,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,Graduate +1,1,3,9238,1,1,135.0,1,1,12,9,10,121.0,1,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,136.0,1,2,2,3,3,120.0,1,0,0,1,1,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,6,9147,1,1,143.0,1,38,37,9,9,128.7,1,0,0,1,1,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9500,1,1,126.0,1,37,37,7,7,126.2,1,0,0,1,0,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,135.0,1,19,19,4,3,135.0,1,0,0,1,1,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,Enrolled +1,1,2,9254,1,1,132.0,1,1,19,9,9,129.9,1,0,0,1,0,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,120.0,1,34,34,0,0,104.0,0,0,0,1,0,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,9,133.1,1,37,37,8,10,100.0,1,0,0,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,43,1,9147,1,1,130.0,1,19,37,7,10,138.0,0,0,0,1,0,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,Graduate +1,17,2,9119,1,1,120.0,1,1,19,9,8,117.2,0,0,0,1,1,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,133.1,1,1,12,4,5,116.5,0,0,0,1,1,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,105.0,1,19,19,6,6,106.1,1,0,0,1,0,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,118.0,1,1,19,4,8,118.7,0,0,0,1,1,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,6,9500,1,1,140.0,1,3,19,3,8,129.0,1,0,0,1,0,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,168.0,1,19,19,4,4,171.2,0,0,0,1,1,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,133.0,1,19,9,0,0,121.5,1,0,0,1,0,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,177.0,1,1,38,3,9,162.3,0,0,0,1,0,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,130.0,1,38,38,2,9,124.8,0,0,0,1,0,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,136.0,1,38,1,5,6,133.9,1,0,0,1,0,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,154.0,1,1,1,5,3,144.9,0,0,0,1,1,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,Graduate +1,44,1,9119,1,39,150.0,1,19,37,9,9,150.0,1,0,1,1,1,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,Dropout +1,1,4,9254,1,1,132.0,1,12,19,9,9,124.7,1,0,0,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,33,1,1,100.0,41,38,37,9,8,100.0,0,0,1,0,1,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,120.0,1,4,1,2,9,113.4,0,0,0,1,0,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,134.0,1,1,19,9,9,136.1,1,0,0,1,0,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9500,1,1,150.0,1,1,19,5,3,140.0,0,1,0,1,0,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,129.0,1,37,37,9,9,128.8,1,0,0,1,0,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +2,39,1,9500,1,1,100.0,1,37,38,4,4,130.0,0,0,0,1,1,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,Enrolled +1,1,1,9773,1,1,140.0,1,19,37,9,6,135.8,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,40,150.0,1,19,19,9,5,150.0,0,0,1,0,0,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,148.0,1,1,37,4,8,132.0,1,0,0,1,0,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,Graduate +1,7,1,9119,1,40,140.0,1,3,1,2,5,140.0,0,0,0,1,1,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,163.0,1,19,1,9,7,143.1,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,3,9070,1,1,164.0,1,1,1,5,3,161.2,1,0,0,1,0,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,Graduate +1,1,6,9773,1,1,141.0,1,30,37,7,7,128.4,1,0,1,0,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,Dropout +1,43,2,9147,1,1,126.0,1,1,19,3,3,100.0,1,0,0,1,1,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,141.0,1,19,19,5,10,135.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,4,9670,1,1,117.0,1,3,3,4,4,113.2,0,0,0,1,1,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +2,43,1,9991,0,3,140.0,1,37,19,9,4,140.0,0,0,1,1,0,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,134.3,0,0,0,1,1,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,137.0,1,38,19,9,7,125.1,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,6,134.0,0,0,0,1,0,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,123.0,1,37,37,7,7,119.7,0,0,0,1,1,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9147,1,1,120.0,1,37,37,9,9,104.7,1,0,0,1,1,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,137.0,62,1,1,9,9,129.3,0,0,0,1,0,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,8014,0,1,122.0,1,37,19,9,9,123.8,0,0,0,1,0,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,Graduate +2,39,2,8014,0,1,100.0,1,34,34,0,0,100.0,1,0,0,1,0,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,Graduate +2,1,1,9991,0,2,120.0,1,37,37,6,3,129.2,0,0,0,1,0,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,150.0,1,3,19,2,6,150.0,0,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9991,0,1,123.0,1,1,3,4,2,113.2,0,0,0,0,1,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,Dropout +1,1,3,9773,1,1,130.0,1,1,37,4,5,120.9,1,0,1,1,0,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,146.0,1,19,3,4,9,127.0,0,0,0,1,1,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,160.0,1,19,38,9,9,160.0,1,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9085,1,39,150.0,1,38,37,6,6,150.0,1,0,0,1,0,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,136.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,150.0,1,37,19,9,4,135.6,0,0,0,1,0,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,6,171,1,1,134.0,1,19,37,5,5,126.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +4,39,1,9773,1,38,133.1,1,19,19,7,9,133.0,0,0,0,1,0,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,Enrolled +1,17,2,9119,1,1,120.0,1,10,12,9,9,120.4,1,0,0,1,1,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,4,9254,1,1,113.0,1,38,19,7,7,107.4,1,0,0,1,0,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,137.0,1,1,19,4,5,136.3,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,142.0,1,37,37,9,7,132.7,1,0,0,1,0,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,Graduate +1,18,5,9085,1,1,121.0,1,5,3,2,3,111.9,1,0,0,1,0,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,9,133.1,1,34,36,0,90,107.5,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,19,133.1,1,19,37,6,8,149.5,0,0,0,1,1,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9147,1,1,120.0,1,1,37,4,9,113.4,1,0,0,1,1,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,130.0,1,37,38,9,5,130.5,1,0,0,1,0,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,153.0,1,1,19,9,10,147.8,0,0,0,1,0,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,159.0,1,3,1,4,4,162.2,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,122.0,1,37,37,5,6,114.3,0,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,2,9556,1,19,133.1,1,37,37,3,7,117.8,0,0,0,1,0,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,132.0,1,38,1,9,9,124.3,1,0,0,1,0,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,141.0,1,19,19,9,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,Graduate +1,17,1,9500,1,1,152.0,1,19,19,4,9,132.5,0,0,0,1,1,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,Graduate +1,17,1,9991,0,40,127.0,1,37,37,6,6,124.9,0,0,0,1,0,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,133.1,1,1,19,4,6,106.0,1,0,0,1,0,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,19,37,4,7,150.0,1,0,0,1,0,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9254,1,1,125.0,1,1,1,191,193,114.5,0,0,0,1,1,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,134.0,1,19,19,4,7,131.0,1,0,0,1,1,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,134.0,1,19,19,9,9,125.8,1,0,0,1,0,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,Graduate +1,17,1,171,1,1,125.0,1,37,37,7,9,134.1,1,0,0,1,1,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,Dropout +1,51,1,9254,1,1,120.0,1,38,38,9,9,118.0,0,0,0,1,0,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,155.0,1,1,1,4,3,140.5,1,0,0,1,0,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,125.0,1,1,1,4,90,125.4,1,0,0,1,1,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,1,5,5,126.3,0,0,0,1,1,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,Graduate +1,39,1,9147,1,1,140.0,1,37,3,9,2,135.1,0,0,0,1,1,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,171,1,1,122.0,1,19,12,5,9,127.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,2,9670,1,1,150.0,1,34,34,0,0,107.0,1,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,3,130.0,1,19,19,3,9,130.0,0,0,0,0,1,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,Dropout +1,39,1,33,1,1,133.1,1,19,37,9,9,96.1,0,0,0,1,1,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,Dropout +2,42,1,9500,1,2,130.0,1,37,37,9,9,130.0,0,0,0,1,0,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,Graduate +1,18,1,9238,1,1,137.0,1,19,38,5,8,137.4,1,0,0,1,0,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9254,1,1,140.0,1,19,1,9,8,140.9,1,0,0,1,0,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,132.0,1,1,2,9,3,128.2,1,0,0,1,0,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9085,1,1,126.0,1,1,3,5,5,123.9,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,19,133.1,1,37,37,9,7,106.5,0,0,0,1,0,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,132.0,1,37,19,7,7,132.4,1,0,0,1,0,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,139.0,1,37,38,9,9,126.1,0,0,0,1,0,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,136.0,1,19,38,9,9,123.0,1,0,0,1,0,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,1,140.0,1,0,0,1,1,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,123.0,1,19,19,9,8,134.0,0,0,0,1,0,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,130.0,1,38,19,9,4,118.4,0,0,1,1,0,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,126.0,1,1,1,9,9,116.2,0,0,1,0,1,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,19,1,7,10,105.0,0,0,0,1,1,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,Dropout +1,17,1,9119,1,1,130.0,1,19,19,7,9,121.3,1,0,0,1,1,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,Dropout +1,43,1,9500,1,19,133.1,1,34,34,0,0,110.0,1,0,0,1,1,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,Dropout +1,1,3,9070,1,1,139.0,1,1,38,4,7,142.2,1,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,142.0,1,38,1,5,4,136.6,0,0,0,1,0,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,Graduate +1,17,2,9670,1,1,128.0,1,37,38,5,8,121.7,0,0,0,1,1,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,140.0,1,1,3,9,4,140.0,0,0,1,0,0,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,125.0,1,19,19,9,10,122.0,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,8014,0,1,130.0,1,37,37,9,8,103.5,0,0,0,1,0,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,3,9085,1,1,117.0,1,19,38,5,7,111.1,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,42,1,9085,1,39,140.0,1,19,3,9,1,159.9,1,0,0,1,0,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9254,1,1,112.0,1,37,37,6,6,106.1,1,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9070,1,1,117.0,1,5,1,2,10,120.0,1,0,0,1,0,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,Enrolled +1,7,1,9556,1,2,130.0,1,37,37,9,9,130.0,1,0,0,1,0,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,40,140.0,1,1,19,9,9,139.0,0,0,0,1,0,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,10,130.0,0,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,9070,1,1,135.0,1,3,1,3,5,121.8,0,0,0,1,0,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,135.0,1,19,3,9,4,121.5,1,0,0,1,0,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,136.0,1,19,38,4,8,125.5,1,0,0,1,0,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,37,4,8,132.4,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,142.0,1,34,38,4,7,127.3,0,0,0,1,0,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,15,1,9147,1,1,130.0,26,1,1,2,3,130.0,0,0,0,1,0,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,17,2,8014,0,1,133.0,1,19,1,5,5,119.7,1,0,0,1,0,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,6,133.1,1,1,1,90,3,107.0,1,0,0,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,130.0,1,1,1,4,5,123.8,0,0,0,1,0,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9670,1,1,130.0,1,38,37,5,5,123.4,1,0,0,1,0,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,130.0,1,37,36,4,90,127.6,0,0,0,1,1,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +2,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,Enrolled +1,1,5,9070,1,1,122.0,1,37,37,9,9,124.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,3,120.0,1,37,37,9,9,141.0,0,0,0,1,0,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,Dropout +1,43,1,33,1,1,134.0,1,37,37,1,1,100.0,1,0,0,1,1,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9773,1,1,125.0,1,19,37,9,5,122.2,0,0,0,0,0,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,113.4,0,0,0,1,0,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,142.0,1,19,39,5,4,141.7,0,0,0,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,137.0,1,1,38,5,8,125.8,0,0,0,0,0,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,141.0,1,1,37,4,3,126.8,1,0,0,1,0,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Graduate +1,17,4,9500,1,1,133.0,1,4,4,4,4,130.7,1,0,0,1,0,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,Graduate +1,1,2,9500,1,1,119.0,1,1,1,4,4,115.2,1,0,0,1,0,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,128.0,1,1,1,4,10,118.9,1,0,0,1,0,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,130.0,1,37,38,7,8,119.3,1,0,0,1,0,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,148.0,1,3,1,4,5,132.8,0,0,0,1,0,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,143.0,1,37,19,4,4,123.3,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9147,1,1,130.0,1,34,34,99,99,109.8,1,0,0,0,1,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9085,1,2,140.0,1,38,38,9,10,150.0,0,0,0,1,1,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9670,1,42,110.0,1,1,19,9,9,114.2,0,0,0,1,1,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,Graduate +1,53,1,9147,1,42,140.0,1,3,4,2,1,140.2,0,0,0,1,0,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,145.0,1,19,38,9,7,136.3,1,0,0,1,0,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,38,37,9,9,154.4,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,127.0,1,38,38,9,6,122.8,0,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,120.2,1,0,0,1,1,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,124.0,1,3,1,2,5,121.6,0,0,0,1,0,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Enrolled +1,17,5,9853,1,1,132.0,1,37,38,5,6,119.1,1,0,0,1,0,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,Graduate +1,17,6,9670,1,1,110.0,1,1,19,4,10,111.3,0,0,0,1,1,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,120.0,1,38,37,9,9,114.8,1,1,0,1,0,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,140.0,1,19,19,9,3,130.0,0,0,0,1,1,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9254,1,1,120.0,1,37,37,9,9,115.1,1,0,0,0,1,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,142.0,1,1,37,5,7,128.0,0,0,0,1,0,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,168.0,1,37,1,9,4,133.4,1,0,0,1,0,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,Graduate +1,43,4,9085,1,1,133.1,1,34,34,99,99,125.2,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9147,1,1,123.0,1,1,1,9,7,117.4,1,0,0,1,0,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,Graduate +1,1,6,9119,1,1,135.0,1,2,1,3,5,123.5,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,Enrolled +1,17,2,9254,1,1,118.0,22,19,37,9,9,110.3,1,0,0,0,0,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,126.0,1,1,19,4,4,116.9,0,0,0,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,117.0,1,1,38,3,9,109.3,0,0,1,0,0,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,133.1,1,37,37,9,8,113.0,0,0,0,1,0,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,Graduate +2,42,1,9991,0,6,123.0,1,37,37,9,9,123.0,0,0,0,1,1,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9003,1,1,100.0,1,37,37,9,5,110.0,0,0,0,1,0,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,127.0,1,37,38,9,5,131.2,1,0,0,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,110.0,1,37,37,9,7,112.5,1,0,0,1,0,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,126.0,1,19,37,7,5,119.4,0,0,0,1,0,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,121.0,1,1,1,4,3,120.5,1,0,0,1,0,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,134.0,1,1,1,3,3,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,3,9500,1,1,150.0,1,19,38,1,1,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,5,9119,1,1,124.0,11,4,12,2,9,119.5,1,0,0,1,1,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,117.0,1,19,1,4,7,112.1,0,0,0,1,0,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,Enrolled +1,1,5,9500,1,1,132.0,1,37,37,7,7,120.3,1,0,0,1,0,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,1,110.0,1,37,37,90,5,150.0,1,0,0,1,1,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9773,1,1,130.0,1,38,37,5,3,122.3,1,0,1,0,0,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9556,1,1,118.0,1,19,38,9,9,116.3,1,0,0,1,0,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,120.0,1,3,3,3,3,111.6,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,131.0,1,37,19,9,9,134.5,1,0,0,1,1,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Enrolled +1,17,2,9556,1,1,133.1,1,37,38,9,8,106.0,1,0,0,1,0,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,2,110.0,1,37,37,9,9,112.9,0,0,0,1,0,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,2,9773,1,1,126.0,1,19,38,9,8,118.7,1,0,0,1,0,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,140.0,1,1,1,3,3,127.6,1,0,0,1,0,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,163.0,1,19,1,5,10,146.6,1,0,1,1,0,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,39,151.0,1,19,37,4,7,151.0,0,0,1,1,0,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,165.0,1,19,37,5,5,142.3,0,0,0,1,0,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9773,1,19,133.1,1,19,1,7,9,115.0,1,0,1,0,1,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,Dropout +1,1,2,9556,1,1,130.0,1,1,38,3,8,119.5,1,0,0,1,0,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,Graduate +1,17,3,171,1,1,125.0,1,3,39,2,5,117.0,1,1,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9147,1,1,133.0,1,19,1,5,10,121.8,0,0,0,1,1,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9119,1,1,131.0,1,1,3,9,10,123.7,1,0,0,1,1,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,148.0,1,37,38,9,8,133.0,1,0,0,1,0,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9254,1,1,120.0,1,3,19,3,9,114.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9773,1,1,114.0,1,1,1,9,9,111.6,1,0,0,1,0,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,115.0,1,38,1,9,8,118.5,0,0,0,1,1,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,2,5,127.0,0,0,0,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,117.0,1,1,1,4,7,109.3,1,0,0,1,0,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,9,9,138.2,0,0,1,0,0,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,125.0,1,1,1,3,3,114.5,0,0,0,1,1,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,44,1,9147,1,39,130.0,1,19,1,9,3,130.0,0,0,0,1,0,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,145.0,1,38,19,4,9,127.9,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,128.0,1,37,37,9,8,124.3,1,0,0,1,0,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,Graduate +1,18,3,9070,1,1,138.0,1,38,37,9,7,125.1,1,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,5,9119,1,1,131.0,1,19,37,9,7,123.3,1,0,0,1,1,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,130.0,1,37,19,9,8,106.2,1,0,0,1,0,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,131.0,1,19,38,4,5,132.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9003,1,1,120.0,1,37,37,5,9,120.0,1,0,0,1,1,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,132.0,1,4,39,2,2,136.6,1,0,0,1,0,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,Enrolled +1,7,1,9500,1,40,170.0,1,1,1,9,4,170.0,0,0,0,1,0,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,Graduate +1,16,1,9003,1,1,147.0,1,1,37,4,9,140.7,1,0,1,1,0,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,125.0,1,1,1,4,8,115.6,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,150.0,1,37,37,9,6,138.5,0,0,0,1,0,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,2,9991,0,1,143.0,1,5,1,4,4,131.5,0,0,0,1,1,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,9556,1,1,133.1,6,3,3,4,4,169.2,0,0,1,0,0,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,2,9556,1,1,133.1,1,1,1,9,10,100.5,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,120.0,1,19,38,9,7,117.9,1,0,0,1,0,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,146.0,1,1,38,9,9,135.5,1,0,1,1,0,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,Enrolled +1,1,3,9254,1,1,122.0,1,19,38,3,10,114.3,1,0,0,1,0,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,9130,1,1,130.0,1,2,3,9,1,117.6,0,0,0,1,1,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,Enrolled +4,43,4,9991,0,12,133.1,1,37,37,9,9,153.0,0,0,0,0,0,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,2,9500,1,1,135.0,1,38,37,9,5,125.3,1,0,0,1,0,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,38,37,9,9,133.0,0,0,0,1,0,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,129.0,1,38,37,4,6,128.0,0,0,0,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,128.0,1,2,19,2,4,123.3,1,0,0,1,0,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,130.0,1,19,3,4,2,159.0,0,0,0,1,0,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,Graduate +2,7,1,8014,0,3,130.0,1,19,38,3,7,130.0,0,0,0,1,0,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,116.0,1,19,37,3,3,109.0,1,0,0,1,0,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,123.0,1,1,1,3,9,116.7,1,0,0,1,0,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,144.0,1,19,19,4,4,130.7,1,0,0,1,0,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,42,1,9500,1,1,100.0,1,19,37,5,7,134.3,1,0,0,1,0,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,143.0,1,1,19,4,4,129.9,0,0,0,1,0,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,19,133.1,1,19,37,7,9,137.2,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9853,1,1,123.0,1,19,19,9,7,117.4,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,144.0,1,19,19,5,5,130.3,1,0,0,1,0,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,137.0,1,1,19,4,7,126.7,1,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,4,9773,1,1,124.0,1,3,12,2,9,137.0,1,0,0,1,1,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,135.0,1,37,37,9,8,123.0,1,0,0,1,0,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,123.0,1,38,37,9,7,120.6,1,0,0,0,0,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,Dropout +2,2,1,9147,1,2,120.0,1,37,37,9,9,120.0,0,0,0,0,1,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,103.0,1,1,3,2,2,100.6,1,1,0,1,0,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,126.0,1,3,1,2,8,123.9,1,0,0,1,0,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,Enrolled +1,17,4,9500,1,1,136.0,1,3,3,2,2,132.5,1,0,0,1,0,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,114.0,1,3,29,3,5,111.9,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,125.0,1,19,1,9,9,130.6,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,147.0,1,37,38,9,5,134.8,1,0,0,1,0,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,131.0,1,1,19,9,9,130.3,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,118.0,1,3,1,2,5,110.0,1,0,0,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,130.0,1,19,19,4,10,116.8,0,0,0,1,0,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,Graduate +1,43,1,8014,0,6,133.1,1,34,34,0,0,100.0,0,0,1,1,0,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9670,1,12,170.0,1,1,37,3,5,110.0,0,0,0,1,1,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,Graduate +2,1,1,9991,0,3,160.0,1,1,3,4,9,137.3,0,0,0,1,0,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,108.0,1,19,1,5,5,107.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,121.0,1,3,3,2,2,112.3,1,0,1,0,0,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,Dropout +1,1,2,9773,1,1,138.0,1,19,1,9,3,133.5,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,136.0,1,38,38,9,9,121.7,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,132.0,1,38,37,9,7,122.0,1,0,0,1,0,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9003,1,1,125.0,1,3,3,2,2,100.0,0,0,0,1,1,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,137.0,1,1,1,1,5,131.8,0,0,0,1,0,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,140.0,1,37,37,9,9,148.0,1,0,0,0,1,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,127.0,1,3,1,3,7,137.2,1,0,0,1,0,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,150.0,1,37,19,9,9,150.0,0,0,0,1,1,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,Graduate +1,43,4,171,1,1,136.0,1,37,37,9,9,123.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,162.0,1,37,19,9,8,142.8,0,0,1,1,0,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,127.0,1,1,38,5,7,123.5,1,0,0,1,0,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,133.1,1,19,37,9,9,130.0,0,0,0,0,0,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,Graduate +1,17,2,9070,1,1,121.0,1,1,19,144,144,111.9,1,0,0,1,1,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,115.0,1,19,37,9,9,114.3,0,0,0,1,1,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,Dropout +1,10,1,9254,1,1,115.0,24,3,1,9,9,116.1,1,0,0,1,0,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,143.0,1,19,3,4,4,147.2,0,0,0,1,0,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,160.0,1,1,38,4,4,160.0,1,0,0,1,1,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,Graduate +2,1,1,9238,1,1,134.0,1,37,37,5,5,120.4,0,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,38,37,9,4,120.0,0,0,0,1,1,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Graduate +1,18,1,9119,1,1,108.0,1,1,1,4,3,105.6,1,0,0,1,1,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,137.0,1,37,37,9,9,141.0,0,0,0,1,1,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9254,1,1,113.0,1,1,2,5,3,106.7,1,0,1,1,1,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,16,1,9085,1,1,140.0,1,1,1,9,9,127.1,1,0,0,1,0,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,Graduate +1,53,1,9238,1,42,140.0,1,37,37,9,10,136.9,1,0,0,1,0,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,7,134.5,0,0,0,1,0,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,2,9773,1,1,125.0,1,19,1,4,5,122.2,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9070,1,1,134.0,1,1,19,3,3,127.7,1,0,0,0,0,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,96.0,1,38,37,6,4,96.0,1,0,0,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,Dropout +1,10,1,9085,1,1,134.0,1,37,37,5,5,134.0,1,0,0,1,0,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,143.0,1,1,3,3,3,149.0,1,0,0,1,0,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,Dropout +1,18,3,9070,1,1,142.0,1,1,37,4,7,130.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,7,1,9003,1,3,140.0,1,3,19,2,10,140.0,0,0,0,0,1,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,151.0,1,38,37,9,5,138.4,1,0,0,1,0,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,143.0,1,19,19,4,4,135.3,1,0,0,1,0,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,133.0,1,1,19,9,9,132.0,0,0,0,1,1,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,19,133.1,1,37,37,9,5,135.5,0,0,0,1,0,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9254,1,1,134.0,1,37,37,9,9,133.3,1,0,1,1,0,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,3,9085,1,1,135.0,1,3,2,4,3,121.0,1,0,0,1,0,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,140.0,1,1,1,4,4,123.5,1,0,0,1,0,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,188.0,1,3,3,2,2,178.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9238,1,1,126.0,1,30,19,0,2,121.5,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,131.0,1,3,19,5,5,127.2,1,0,0,1,0,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,Graduate +1,17,4,9853,1,1,143.0,1,37,37,9,5,127.3,1,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,111.0,1,19,38,9,9,110.7,1,0,0,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,140.0,1,19,38,9,7,125.7,1,0,0,1,1,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,6,9500,1,1,126.0,1,19,37,3,9,119.4,1,0,0,1,0,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,131.0,1,1,1,4,9,122.3,0,0,0,1,1,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,128.0,1,1,19,9,8,100.0,1,0,0,1,0,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,138.0,1,19,19,5,1,130.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,1,140.0,1,3,3,1,1,140.0,1,0,0,1,0,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,3,130.0,1,1,19,5,9,130.0,0,0,0,1,1,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,131.0,1,38,1,5,7,131.0,1,0,0,1,1,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,19,133.1,1,19,19,9,7,140.0,0,0,1,0,0,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,133.1,1,37,37,9,9,126.5,0,0,0,1,0,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9500,1,1,132.0,1,37,37,9,7,128.3,1,0,0,1,0,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,Graduate +1,16,1,171,1,1,145.0,1,3,3,3,3,155.0,1,0,0,1,0,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,Enrolled +4,1,1,9991,0,1,140.0,1,37,37,9,7,139.0,0,0,0,1,0,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9070,1,1,152.0,1,39,39,3,3,134.2,1,0,0,1,1,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,141.0,1,19,19,7,9,139.8,0,0,0,1,0,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,Graduate +1,1,4,9670,1,1,133.0,1,1,2,4,7,121.1,1,0,0,1,0,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,Graduate +1,15,1,9147,1,1,135.0,26,1,1,9,7,135.0,0,0,1,1,1,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,Enrolled +2,1,1,9991,0,1,144.0,1,19,19,9,9,151.4,0,0,0,1,0,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,18,4,9853,1,1,118.0,1,19,37,9,6,111.4,1,0,1,0,0,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9500,1,1,134.0,1,38,1,9,6,133.5,1,0,0,1,1,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,37,37,9,6,107.0,0,0,0,1,1,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,141.0,1,38,38,9,9,128.4,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,133.0,1,1,1,9,9,128.5,1,0,0,1,0,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,40,120.0,1,3,3,4,2,125.0,0,0,0,1,0,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,150.0,1,37,38,3,7,134.5,0,0,0,1,0,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,127.0,1,3,19,4,4,116.9,0,0,0,1,1,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,136.0,1,2,38,143,163,129.7,1,0,0,1,1,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,159.0,1,1,1,3,3,151.0,1,0,0,1,0,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,165.0,1,37,38,9,8,152.4,1,0,0,1,0,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,6,9500,1,1,139.0,1,1,1,4,4,124.5,1,0,0,1,0,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,134.0,1,1,1,5,3,128.4,1,0,0,1,0,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,133.0,1,2,1,3,4,136.2,1,0,0,1,0,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,120.0,1,19,1,8,7,115.1,1,0,0,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,131.0,1,1,39,5,3,122.6,1,0,0,1,0,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,8014,0,1,130.0,1,1,1,9,9,118.1,0,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,Graduate +1,39,9,9991,0,1,120.0,1,38,38,9,5,144.8,0,0,0,1,1,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9500,1,19,133.1,1,37,37,9,9,129.0,1,0,0,1,0,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,138.0,1,1,19,4,7,123.0,1,0,1,0,0,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,143.0,1,1,37,9,9,135.0,1,0,0,1,0,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,120.0,1,19,1,9,3,120.0,1,0,0,1,1,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,162.0,1,37,1,9,9,165.2,1,0,0,1,0,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,142.0,1,37,37,5,5,131.3,1,0,0,1,0,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,Graduate +1,1,3,171,1,1,125.0,1,38,37,4,9,115.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,120.0,1,38,37,5,3,110.5,0,0,0,1,0,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,Graduate +1,42,1,9773,1,6,120.0,1,34,34,0,0,122.0,1,0,0,1,0,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,162.0,1,1,38,4,5,138.6,1,0,0,1,0,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,152.0,1,1,1,4,4,141.0,1,0,0,1,0,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,139.0,1,3,19,3,5,120.8,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,135.0,1,1,1,3,5,130.1,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9670,1,1,127.0,1,3,3,1,1,121.4,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,135.0,1,1,1,1,1,131.5,0,0,0,1,1,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,Enrolled +1,17,3,9670,1,1,147.0,1,37,37,8,8,128.8,0,0,1,1,0,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,133.1,41,38,38,9,8,134.8,0,0,0,1,0,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,90,8,128.2,0,0,0,1,0,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,131.0,1,1,37,4,4,126.1,1,0,0,1,0,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,9,9,125.3,1,0,0,1,1,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,Dropout +2,39,1,8014,0,3,110.0,1,37,37,9,9,160.5,0,0,0,1,0,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,138.0,1,38,1,9,4,127.5,1,0,0,1,0,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,Enrolled +1,39,1,9238,1,1,170.0,1,38,19,9,9,140.0,1,0,0,1,0,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,1,19,4,10,142.3,1,0,0,1,0,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,154.0,1,38,37,9,9,140.4,0,0,0,1,0,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,133.1,41,19,1,9,9,105.0,1,0,0,0,0,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +2,44,1,9085,1,39,160.0,1,37,37,192,192,160.0,0,0,0,1,0,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,141.0,1,38,38,9,9,142.3,1,0,0,1,0,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,119.0,1,37,37,7,7,112.0,1,0,0,0,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,137.0,1,37,37,9,9,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,Graduate +4,39,1,9670,1,1,100.0,1,37,37,4,10,120.0,0,0,1,1,0,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,130.0,1,3,3,2,2,131.1,0,0,0,1,1,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,120.0,1,1,19,9,3,116.9,1,0,1,0,1,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,42,1,9500,1,1,100.0,1,1,19,4,8,136.0,1,0,0,1,0,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,Graduate +1,1,2,171,1,1,125.0,1,38,19,9,9,117.3,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,152.0,1,1,38,4,9,160.4,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,12,133.1,1,37,37,9,7,139.4,0,0,1,1,0,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,150.0,1,1,1,4,8,131.5,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,7,1,9556,1,4,190.0,1,5,5,2,2,190.0,1,0,0,1,1,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,Dropout +1,17,3,9238,1,1,121.0,1,1,1,4,5,117.2,0,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,130.0,1,37,37,9,7,113.0,1,0,0,0,1,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,123.0,1,19,19,4,10,124.4,1,0,0,1,0,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,Graduate +1,17,2,9238,1,1,133.0,1,37,37,3,9,119.7,0,1,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,138.0,1,38,19,9,10,133.1,0,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,108.0,1,38,38,7,7,105.2,1,0,0,1,1,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,Dropout +1,1,3,171,1,1,115.0,1,9,1,6,6,108.7,1,0,0,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,4,4,119.8,1,0,0,1,0,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9119,1,1,126.0,1,19,19,7,3,116.6,1,0,0,1,1,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,Graduate +2,39,1,9500,1,1,133.1,1,37,37,9,9,130.1,0,0,0,0,1,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,124.0,1,37,38,9,3,114.2,0,0,0,1,0,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,3,9147,1,1,137.0,1,1,1,4,7,124.4,1,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9130,1,19,133.1,1,37,37,9,10,156.4,1,0,1,1,1,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,5,9853,1,1,121.0,1,38,19,7,7,117.5,1,0,1,0,0,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,2,9238,1,1,117.0,1,19,1,9,8,110.0,1,0,1,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9147,1,1,148.0,1,1,19,9,6,118.4,1,0,0,1,1,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,133.0,1,1,1,4,4,100.0,0,0,0,1,0,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,17,1,9238,1,1,158.0,1,1,1,5,6,140.5,0,0,0,1,0,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,157.0,1,19,38,9,7,146.2,1,0,0,1,0,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,131.0,1,3,1,4,1,135.9,0,0,0,1,1,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,38,37,5,10,117.8,1,0,0,1,1,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,Graduate +1,1,2,9119,1,1,126.0,1,1,38,141,192,122.5,1,0,0,1,1,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,117.0,1,37,37,0,4,120.5,1,0,0,1,1,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9254,1,1,110.0,1,12,19,9,9,125.0,0,0,0,0,1,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,Dropout +1,18,1,9147,1,1,121.0,1,19,3,5,5,115.8,1,0,0,1,0,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,139.0,0,0,1,0,1,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9003,1,3,130.0,1,3,3,6,2,130.0,1,0,0,1,1,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,132.0,1,19,37,3,5,125.4,1,0,0,0,0,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,38,38,4,7,115.6,1,0,0,0,0,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,129.0,1,1,2,3,1,125.9,1,0,0,1,0,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,9,9,143.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,126.0,1,3,19,3,3,115.2,0,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,123.0,1,19,38,9,10,116.7,1,0,0,1,0,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,Graduate +1,17,2,9254,1,1,125.0,1,37,37,9,8,122.6,1,0,1,0,0,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9119,1,1,160.0,1,38,37,7,7,129.0,0,0,0,1,1,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,3,19,2,3,133.8,1,0,0,1,0,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,120.0,1,19,19,4,7,115.5,1,0,1,1,1,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,120.0,1,38,38,3,3,140.0,0,0,0,1,0,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9238,1,1,127.0,1,1,19,4,3,141.7,1,0,0,1,1,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,111.0,1,37,37,9,10,95.8,1,0,0,0,1,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,130.0,1,38,1,9,4,140.0,1,0,0,1,0,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,Graduate +1,1,2,9147,1,1,131.0,1,1,1,9,9,118.8,0,0,0,1,1,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,161.0,1,1,19,4,4,152.3,0,0,0,1,0,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,124.0,1,38,38,9,9,115.6,0,0,0,1,1,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,160.0,1,3,3,1,2,149.2,0,0,0,1,1,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,16,3,9853,1,1,134.0,1,19,37,9,9,121.1,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,Enrolled +1,43,2,9991,0,1,140.0,1,37,37,5,5,124.3,1,0,0,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,127.0,1,38,37,5,7,123.9,1,0,0,1,0,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,120.0,1,19,37,6,8,160.0,0,0,0,1,1,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,1,133.1,1,3,3,4,2,144.9,1,0,0,1,0,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,130.0,1,1,19,3,10,130.0,1,0,0,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,Graduate +1,42,1,9003,1,1,130.0,1,3,2,2,6,105.3,0,0,0,0,1,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9991,0,1,130.0,1,37,37,9,9,127.6,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,100.0,1,1,38,4,6,104.8,0,0,1,0,0,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,Dropout +1,1,5,9070,1,1,125.0,1,3,3,2,2,140.8,1,0,0,1,1,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,133.1,1,34,38,0,4,147.0,0,0,0,1,0,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,126.0,1,34,34,0,0,142.4,0,0,0,1,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,121.0,1,19,38,4,10,114.4,0,0,0,1,0,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,133.1,1,37,37,5,0,111.5,0,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,130.0,1,1,19,5,5,129.1,1,0,0,1,0,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,3,1,4,6,130.0,0,0,0,1,1,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,1,123.0,1,19,1,1,1,140.8,0,0,0,1,0,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,130.0,1,1,1,4,10,130.0,1,0,0,1,0,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,Graduate +4,39,1,9085,1,1,133.1,1,34,34,0,0,128.2,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,128.0,1,37,37,9,9,135.7,1,0,0,1,1,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,135.0,1,38,38,4,7,121.7,1,0,0,1,0,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9085,1,1,110.0,25,38,38,9,6,117.2,1,0,0,1,1,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,Graduate +1,43,3,9500,1,1,140.0,1,1,19,9,7,127.5,1,0,1,1,0,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,Graduate +1,17,3,9238,1,1,133.1,1,41,1,2,3,117.0,1,0,0,1,0,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,1,112.0,1,37,37,9,9,108.5,0,0,0,1,1,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,51,1,9238,1,39,140.0,1,38,38,5,7,129.1,1,0,0,1,0,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,122.0,1,38,19,9,9,126.6,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,123.0,1,1,1,4,4,114.4,0,0,0,1,1,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,Dropout +1,18,4,171,1,1,133.0,1,1,4,9,5,129.2,1,0,1,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,128.0,1,19,19,9,5,121.7,1,0,0,1,0,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,Graduate +1,39,1,9130,1,1,150.0,1,19,19,9,5,160.0,1,0,0,1,1,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,160.0,1,19,37,5,3,152.0,0,0,0,1,0,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,53,1,9085,1,42,140.0,1,19,37,9,8,142.5,1,0,0,1,0,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,130.0,1,9,19,4,1,134.2,1,0,0,1,0,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,3,9254,1,1,121.0,1,19,19,9,6,125.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,128.0,1,19,1,9,10,157.4,1,0,0,1,0,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,146.0,1,37,37,9,7,149.2,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9853,1,12,133.1,1,37,37,7,8,103.0,0,0,0,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,143.0,1,19,19,5,6,142.3,0,0,0,1,0,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,Enrolled +1,1,2,9085,1,1,118.0,1,1,19,3,3,112.4,1,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,Enrolled +2,43,1,9991,0,1,100.0,1,37,37,9,9,128.2,0,0,0,1,1,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,118.0,1,38,38,5,5,110.0,0,0,0,1,0,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9147,1,1,136.0,1,38,38,9,9,127.3,1,0,0,1,1,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,170.0,1,19,19,8,8,176.7,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,124.0,41,19,38,9,9,123.3,1,0,0,1,0,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9070,1,1,170.0,1,3,3,2,2,165.8,1,0,0,1,1,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,3,37,9,9,142.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9147,1,1,122.0,1,1,38,4,5,116.4,0,0,0,1,1,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,150.0,1,1,1,4,4,138.1,1,0,0,1,0,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,Enrolled +1,17,6,9238,1,1,138.0,1,3,3,1,2,123.0,1,0,0,1,0,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,135.0,1,19,12,9,7,137.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9070,1,1,125.0,1,1,3,3,3,128.9,0,0,0,1,0,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,128.0,1,38,19,9,10,125.2,1,0,0,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Enrolled +1,42,1,9003,1,1,140.0,1,1,3,4,2,140.0,1,0,0,1,1,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,Enrolled +1,39,1,9500,1,19,133.1,1,37,38,151,161,143.7,0,0,0,1,0,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,118.0,1,38,38,7,7,115.2,1,0,0,1,0,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,152.0,1,19,37,9,8,135.6,1,0,0,1,1,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,12,110.0,1,34,34,0,0,157.8,0,0,0,1,0,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,Graduate +1,1,6,9147,1,1,112.0,1,38,38,9,9,117.3,1,0,0,1,0,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,Graduate +1,17,3,9147,1,1,118.0,1,1,19,5,7,118.0,0,0,0,1,0,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,Enrolled +1,44,1,9070,1,39,120.0,1,1,19,5,8,119.8,0,0,0,1,1,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9670,1,1,133.1,1,19,19,3,9,118.0,0,0,0,1,1,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,159.0,1,1,19,9,9,151.3,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,118.0,1,1,38,5,7,120.8,1,0,0,1,0,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,132.0,1,1,37,8,9,128.0,1,0,0,1,0,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,Graduate +1,42,1,9147,1,1,135.0,1,19,1,4,4,120.0,0,0,0,0,1,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9670,1,1,122.0,1,1,38,3,3,114.3,1,0,0,1,0,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,171,1,1,131.0,1,1,1,0,3,149.9,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +4,39,2,9556,1,1,133.1,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,5,9119,1,1,126.0,1,12,19,4,5,122.5,1,0,0,1,1,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,145.0,1,2,38,3,8,136.3,1,0,0,1,0,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,Enrolled +1,15,1,9147,1,1,150.0,1,38,1,9,1,150.0,0,0,0,1,1,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,150.0,1,3,39,3,7,126.4,0,0,0,1,1,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,Enrolled +1,17,2,9773,1,1,148.0,1,3,38,2,6,144.2,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,124.0,1,37,19,9,3,116.3,1,0,0,1,0,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +2,39,1,9003,1,1,130.0,1,1,37,9,1,122.0,0,0,1,0,1,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,160.0,1,19,38,5,7,139.0,1,0,0,1,0,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,157.0,1,3,2,3,6,150.9,1,0,0,1,0,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,Dropout +1,42,1,9119,1,1,120.0,1,1,1,5,7,108.6,0,0,0,0,1,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9773,1,1,138.0,1,37,38,4,9,134.2,1,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,110.0,1,0,0,1,0,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,Dropout +4,39,1,9853,1,1,143.0,1,37,1,9,10,140.0,0,0,1,0,0,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,130.0,1,3,19,4,8,133.0,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,19,38,6,7,140.0,1,0,0,1,1,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,132.0,1,2,2,6,6,128.5,0,0,0,1,0,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,Dropout +1,1,2,171,1,1,135.0,1,19,19,4,7,149.0,1,0,0,1,1,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,130.0,1,19,38,3,9,126.5,1,0,0,1,0,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,125.0,1,19,38,9,8,121.5,0,0,0,1,0,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,7,129.0,0,0,0,1,0,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,Dropout +1,7,3,9130,1,3,130.0,1,37,26,90,10,130.0,0,0,0,0,1,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,123.0,1,19,19,7,7,120.8,1,0,0,1,0,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,Graduate +1,18,2,9853,1,1,168.0,1,1,19,3,9,126.8,1,0,0,1,1,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9085,1,39,140.0,1,3,1,4,3,140.0,1,0,0,1,0,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,148.0,1,19,19,9,9,138.7,0,0,0,1,0,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,Graduate +1,18,1,171,1,1,110.0,1,19,2,5,5,117.7,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9070,1,1,136.0,1,37,38,9,9,125.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +2,39,1,8014,0,1,133.1,1,37,37,5,4,134.5,0,0,0,1,0,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,Enrolled +1,42,1,9119,1,1,150.0,1,38,37,5,8,133.5,1,0,0,1,1,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,140.0,1,1,3,4,6,139.2,0,0,1,1,0,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,125.0,1,19,19,5,5,117.0,0,0,0,1,0,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,Graduate +1,39,1,9147,1,12,133.1,1,19,37,7,9,118.2,0,0,0,1,0,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,2,9147,1,1,121.0,1,1,19,9,9,113.7,1,0,0,0,0,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,131.0,1,3,19,2,3,132.8,1,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,136.0,1,37,38,4,5,126.0,1,0,0,1,0,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,Graduate +1,1,1,9853,1,1,145.0,1,37,37,9,5,146.8,0,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,123.0,1,1,1,4,9,116.7,1,0,0,1,1,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,Dropout +1,18,1,171,1,1,121.0,1,1,1,4,3,116.8,1,0,0,1,0,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,141.0,1,38,1,9,4,129.0,1,0,0,1,0,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,133.1,1,34,34,0,0,130.0,0,0,0,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,126.0,1,1,3,4,3,122.5,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,Dropout +2,1,1,9254,1,1,136.0,1,37,37,9,9,122.7,0,0,0,1,0,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,37,37,9,10,100.0,0,0,0,1,1,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9500,1,1,133.1,1,38,19,7,9,115.5,1,0,0,1,1,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9991,0,1,131.0,1,19,37,9,9,118.4,1,0,0,1,0,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,153.0,1,1,38,4,3,146.7,0,0,0,1,0,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,Graduate +1,43,1,8014,0,12,114.0,1,34,34,0,99,110.0,0,0,0,1,0,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,147.0,1,1,1,5,5,134.9,0,1,0,1,0,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,Graduate +1,1,2,9085,1,1,156.0,1,40,40,3,7,150.9,1,0,0,1,0,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,137.0,1,38,38,5,7,122.7,1,0,0,1,0,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,123.0,1,1,19,4,5,117.8,0,0,0,1,1,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9238,1,1,135.0,1,37,37,8,6,127.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,131.0,1,37,37,9,9,123.0,1,0,0,1,0,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9670,1,1,123.0,1,3,1,3,1,116.7,0,0,0,1,0,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,9085,1,40,140.0,1,1,19,5,5,140.0,1,0,0,1,0,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,Graduate +4,39,1,9500,1,19,133.1,1,38,19,5,7,140.0,0,0,0,1,0,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,127.0,1,3,19,3,9,127.0,1,0,0,1,1,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,Graduate +1,17,2,8014,0,1,120.0,1,19,1,5,10,114.8,1,0,0,1,0,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9670,1,19,133.1,1,37,37,9,7,130.0,0,0,1,1,1,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,171,1,1,131.0,41,19,1,4,7,131.4,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,16,2,171,1,1,145.0,1,3,3,2,2,143.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,120.0,1,19,38,6,6,120.0,1,0,0,1,1,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,6,9238,1,1,131.0,1,1,3,4,2,131.7,1,0,0,1,0,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,137.0,1,3,1,4,9,128.6,0,0,0,1,0,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,170.0,1,19,19,9,7,170.0,1,0,1,1,1,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9853,1,1,122.0,1,38,37,9,9,118.9,1,0,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,5,9500,1,1,148.0,1,1,19,4,8,130.2,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9003,1,19,133.1,1,1,19,9,8,120.0,0,0,1,0,1,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,2,9147,1,1,143.0,1,19,38,9,7,132.2,1,0,0,1,0,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9556,1,1,132.0,1,38,37,7,7,119.0,1,0,0,1,0,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,133.1,1,3,1,4,4,95.0,0,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,154.0,1,3,1,2,1,137.2,0,0,0,1,1,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,Enrolled +1,1,1,9853,1,1,129.0,1,38,37,6,6,138.1,0,0,0,1,0,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,17,2,9670,1,1,129.0,1,1,19,5,5,119.2,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,43,1,9500,1,1,137.0,1,3,3,2,2,115.0,0,0,0,1,0,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,Graduate +1,17,2,9254,1,1,115.0,1,19,19,9,7,113.3,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,133.0,1,38,38,7,7,125.3,1,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,10,150.0,0,0,0,0,0,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,19,133.1,1,19,19,144,141,131.5,0,0,1,1,0,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,133.0,1,38,1,2,4,126.0,0,0,0,1,0,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,15,1,9147,1,1,133.1,41,41,1,3,4,100.0,0,0,1,0,1,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,Dropout +1,10,2,9773,1,1,154.4,22,19,38,3,5,154.4,1,0,0,0,0,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9070,1,39,100.0,1,1,1,4,4,106.0,0,0,0,1,1,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,135.0,1,38,19,8,8,126.3,1,0,1,1,0,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,120.0,41,1,1,9,6,114.8,1,0,0,1,0,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,Enrolled +1,17,1,9085,1,1,124.0,1,19,38,7,7,113.9,1,0,0,1,0,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,Graduate +1,1,6,9254,1,1,126.0,1,38,37,5,7,123.9,1,0,0,1,0,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,125.0,1,37,37,9,9,121.5,1,0,0,1,1,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,6,9773,1,1,125.0,1,1,1,5,4,122.2,0,0,0,1,1,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,135.0,1,19,19,4,5,126.8,1,0,0,1,1,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9238,1,1,133.0,1,1,37,7,9,127.4,1,0,0,1,0,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,3,9070,1,1,127.0,1,19,38,5,7,141.0,1,0,0,1,1,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,3,120.0,1,37,37,4,7,122.5,0,0,0,0,0,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,2,9147,1,1,150.0,1,19,37,9,7,101.0,0,0,1,0,0,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,4,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,Graduate +1,17,5,9500,1,1,143.0,1,38,1,9,7,130.6,1,0,0,1,0,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,129.0,1,38,19,5,7,124.0,1,0,0,1,0,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,Graduate +1,17,2,9500,1,1,140.0,1,1,1,5,10,128.5,1,0,0,1,0,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,Enrolled +4,39,1,8014,0,19,100.0,1,1,37,9,1,111.5,0,0,0,1,1,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,Dropout +2,39,2,9556,1,1,110.0,1,19,38,9,9,112.8,0,0,0,1,0,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,116.0,1,19,19,5,8,127.9,0,0,1,0,0,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,Dropout +1,43,4,171,1,1,117.0,1,19,12,9,10,109.3,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,130.0,1,1,38,5,5,122.3,1,0,0,1,0,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,Graduate +1,15,1,9119,1,1,130.0,26,38,3,9,2,137.0,1,0,0,1,1,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,Enrolled +1,39,1,9556,1,1,133.1,1,38,19,9,6,100.0,1,0,0,1,0,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,150.0,1,3,1,3,9,154.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9147,1,1,131.0,1,3,19,2,9,126.1,0,0,0,1,0,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,1,6,9773,1,1,145.0,1,1,19,4,4,131.0,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,136.0,1,19,38,4,7,140.9,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,155.0,1,19,37,4,5,117.5,0,0,0,1,0,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9147,1,1,128.0,1,3,3,5,10,116.5,0,0,0,1,1,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,4,9254,1,1,133.0,1,37,37,5,8,128.5,1,0,0,1,0,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9119,1,1,141.0,1,37,1,9,2,133.0,1,0,0,1,1,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,Enrolled +1,51,1,8014,0,1,120.0,1,1,1,4,4,128.5,0,0,1,0,1,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,Dropout +1,43,1,9003,1,1,120.0,1,3,3,1,2,115.0,0,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,136.0,1,19,19,4,7,136.0,0,0,0,1,0,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,Graduate +1,17,1,9070,1,1,116.0,1,38,38,9,9,123.7,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,125.0,1,19,19,4,8,117.0,1,0,0,1,0,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,135.0,1,1,38,5,7,137.5,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,140.0,1,19,19,7,7,124.6,1,0,0,1,0,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,Enrolled +1,39,1,9670,1,19,133.1,1,1,1,4,7,100.0,0,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,122.0,1,37,37,9,9,131.0,1,0,0,1,0,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,Dropout +2,43,1,9773,1,1,160.0,1,37,37,5,0,160.0,0,0,1,0,1,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9670,1,1,113.0,1,37,19,9,9,110.2,1,0,0,1,0,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,125.0,1,37,37,9,9,126.0,1,0,1,1,0,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,Graduate +1,43,1,171,1,39,140.0,1,38,37,9,7,140.0,0,0,0,0,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9853,1,1,134.0,1,37,19,9,5,121.4,1,0,0,1,0,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,8014,0,1,120.0,1,1,37,7,3,122.8,0,0,0,1,0,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,1,1,4,2,127.7,0,0,0,1,0,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,Enrolled +2,39,1,9991,0,1,120.0,1,19,37,3,9,132.9,0,0,0,1,1,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,138.0,1,1,38,4,9,132.5,1,0,0,1,0,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,133.1,1,19,37,7,7,126.0,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9500,1,1,110.0,1,38,38,9,9,110.0,0,0,0,0,0,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,Dropout +5,7,1,9500,1,40,150.0,1,37,37,4,9,150.0,0,0,0,1,0,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,Graduate +1,17,1,9070,1,1,126.0,1,19,38,9,7,118.7,0,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,16,4,9254,1,1,126.0,1,38,37,9,7,118.7,1,0,0,1,0,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9773,1,1,110.0,1,19,19,5,5,105.5,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,9,133.1,1,34,34,0,0,118.0,0,0,0,1,0,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,140.0,1,3,2,4,6,133.4,1,0,0,0,1,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,Enrolled +1,1,1,171,1,1,134.0,1,3,2,2,2,141.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9773,1,1,133.1,1,1,1,90,90,129.6,0,0,0,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,133.1,1,38,19,5,6,138.0,0,0,1,1,1,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,Enrolled +1,17,3,9500,1,1,156.0,1,19,37,4,9,132.3,1,0,0,1,1,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,Graduate +1,44,1,9085,1,39,140.0,1,3,3,4,2,140.0,1,0,0,1,0,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,Graduate +1,43,1,171,1,1,116.0,1,3,1,2,3,117.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,141.0,1,38,19,9,6,126.3,1,0,0,1,0,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,44,1,9238,1,39,140.0,1,1,19,191,102,143.0,0,0,0,1,0,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,Graduate +1,43,5,8014,0,1,110.0,1,34,34,0,0,110.0,0,0,0,1,1,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9238,1,1,143.0,1,1,11,4,3,128.0,1,0,0,1,0,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +3,17,1,9238,1,1,138.0,1,37,37,9,9,133.5,1,0,0,1,0,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,Enrolled +1,7,1,9119,1,3,150.0,1,3,2,2,2,150.0,0,0,0,1,0,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,150.0,1,19,1,1,1,150.0,0,0,0,1,1,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,Enrolled +1,17,1,9085,1,1,134.0,1,19,37,2,7,131.2,0,0,0,1,0,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,171,1,1,133.1,1,37,37,9,7,100.0,0,0,1,1,1,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,1,9556,1,1,133.1,1,3,19,2,8,106.0,1,0,0,1,1,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,Graduate +1,17,2,9500,1,1,135.0,1,19,19,9,4,129.8,1,0,0,1,0,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,Graduate +1,39,1,33,1,1,130.0,1,38,37,9,6,102.5,0,0,1,0,1,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,Dropout +1,18,1,9500,1,1,144.0,1,37,37,6,6,127.5,1,0,0,1,0,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,130.0,1,37,38,9,9,133.9,1,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,44,1,9003,1,39,140.0,1,37,37,4,7,140.0,0,0,0,1,1,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,Dropout +1,1,4,9773,1,1,137.0,1,3,19,2,3,139.8,1,1,0,1,0,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,1,9991,0,1,130.0,1,2,37,3,9,131.4,0,0,0,1,1,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,135.0,1,3,3,1,1,125.8,1,0,0,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Graduate +1,18,1,9238,1,1,147.0,1,38,34,4,0,130.2,0,0,0,1,0,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +5,17,5,9500,1,1,143.0,1,37,38,5,8,133.5,1,0,0,1,0,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,99.0,1,1,3,5,10,100.0,1,0,0,1,1,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,Graduate +1,16,2,9147,1,1,131.0,1,37,37,9,9,135.9,1,0,0,1,1,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,146.0,1,38,37,6,6,143.9,0,0,0,1,0,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9085,1,1,139.0,1,38,38,5,3,136.2,0,0,0,1,0,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,153.0,1,3,1,2,8,137.6,1,0,0,1,0,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,2,9085,1,1,133.1,1,19,38,9,1,100.0,1,0,1,0,1,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,2,9773,1,1,121.0,1,19,19,9,9,122.8,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,141.0,1,37,38,9,10,138.9,0,0,0,1,0,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,6,9500,1,1,117.0,1,4,12,5,9,119.8,1,0,0,1,0,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,Graduate +1,17,4,9119,1,1,122.0,62,1,1,191,171,121.0,1,0,0,1,1,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,38,19,3,3,98.6,0,0,0,1,0,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,140.0,1,38,37,5,6,124.3,1,0,0,1,0,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,140.0,1,37,37,9,9,127.7,1,0,0,1,0,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,121.0,1,37,37,9,9,124.2,1,0,0,1,0,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,Graduate +1,18,1,9130,1,1,146.0,1,3,3,5,2,137.8,0,0,0,1,1,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,3,120.0,1,1,1,7,10,120.0,1,0,0,0,1,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,120.0,1,37,37,7,8,120.0,1,0,1,0,0,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,178.0,1,19,1,4,8,174.7,0,0,0,1,0,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,Graduate +1,17,5,9254,1,1,114.0,1,38,1,5,9,109.5,0,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,143.0,1,38,38,9,9,140.0,0,0,0,1,1,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,160.0,1,38,37,9,5,159.3,0,0,0,1,0,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,143.0,1,38,34,9,9,133.6,1,0,0,1,0,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,Graduate +4,43,1,9500,1,19,100.0,1,34,34,0,0,110.0,0,0,0,1,1,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,125.0,1,1,19,4,1,121.5,1,0,0,1,1,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,19,7,3,120.0,1,0,0,1,1,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,3,120.0,1,19,1,9,5,134.0,0,0,0,1,0,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,Dropout +1,39,1,9254,1,1,160.0,1,19,37,7,10,100.0,0,0,0,1,1,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,Enrolled +1,15,1,171,1,1,130.0,26,1,1,2,9,130.0,0,0,0,1,1,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,140.0,1,19,37,5,6,137.9,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,123.0,1,19,37,9,9,124.1,1,0,0,1,0,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,140.0,1,38,38,6,6,140.0,0,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,9,133.1,1,34,34,0,0,118.4,0,0,0,0,0,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,6,9254,1,1,125.0,1,1,1,4,3,120.5,1,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,6,171,1,1,126.0,1,10,10,4,4,130.2,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,120.0,1,1,19,4,7,120.0,0,0,0,1,1,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,Enrolled +1,17,5,9773,1,1,143.0,1,1,1,7,7,136.7,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,42,1,9147,1,1,130.0,1,37,38,9,1,130.0,1,0,0,1,0,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,1,130.0,1,37,37,9,9,124.0,0,0,0,1,1,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,Graduate +1,17,2,9238,1,1,136.0,1,1,3,3,4,126.6,1,0,0,1,0,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,127.0,1,19,1,5,7,118.3,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,Enrolled +4,39,1,9991,0,1,147.0,1,19,19,7,8,147.9,0,0,0,1,0,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,124.0,1,19,37,99,90,124.0,0,0,0,0,0,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +2,43,1,9003,1,1,133.1,1,37,37,9,7,136.0,0,0,0,1,1,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,1,9085,1,1,140.0,1,12,1,1,90,141.8,0,0,0,1,0,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,133.1,1,37,37,191,154,95.0,0,0,0,1,0,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,147.0,1,2,3,4,8,145.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9238,1,3,130.0,1,37,19,4,5,130.0,0,0,0,1,0,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,Graduate +1,7,2,9085,1,3,130.0,1,3,3,1,1,130.0,0,0,0,0,0,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,Dropout +2,39,2,9147,1,3,130.0,1,3,37,9,9,103.4,0,0,0,1,0,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,Dropout +1,17,1,9085,1,1,135.0,1,1,19,4,10,125.6,1,0,0,1,0,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,1,1,5,5,96.0,1,0,0,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +5,39,1,9853,1,19,133.1,1,38,1,5,3,105.5,0,0,1,1,0,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,136.0,1,37,37,7,7,121.7,1,0,0,1,0,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9119,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,1,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,19,133.1,1,19,19,4,4,100.0,0,0,0,1,1,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,124.0,1,2,2,3,2,118.4,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9085,1,1,120.0,1,2,3,2,2,116.1,0,0,0,1,0,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,162.0,1,37,37,9,9,142.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,131.0,1,37,1,9,9,135.9,1,0,0,1,0,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,7,100.0,0,0,0,1,1,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,Graduate +1,43,1,9500,1,1,127.0,1,19,19,4,7,121.1,0,0,0,1,0,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,143.0,1,37,37,9,5,131.6,1,0,0,1,0,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,Graduate +1,17,4,9085,1,1,140.0,1,19,37,4,7,123.7,0,0,0,1,0,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,156.0,1,19,1,5,10,136.8,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Dropout +2,39,1,9853,1,10,133.1,1,37,34,0,0,115.5,0,0,0,1,0,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,Dropout +1,1,3,9119,1,1,113.0,1,4,38,2,7,107.4,1,0,0,1,1,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,Graduate +2,39,1,9670,1,1,130.0,1,37,37,9,0,158.0,0,0,1,0,0,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,Dropout +1,43,1,9853,1,1,110.0,1,37,37,9,9,107.7,0,0,1,0,0,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,124.0,1,2,2,3,3,124.7,1,0,0,1,1,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,127.0,1,37,37,5,10,125.3,0,0,0,1,1,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Graduate +1,16,1,9500,1,1,133.1,1,37,37,9,9,95.0,1,0,0,1,0,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,4,9238,1,1,127.0,1,19,19,4,0,127.4,1,0,0,1,0,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,113.0,1,38,38,3,7,112.3,0,0,0,1,0,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,110.0,1,19,37,9,99,106.1,1,1,1,0,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,141.0,1,1,38,4,8,136.8,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,133.1,1,37,37,9,7,140.0,0,0,0,1,0,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,124.0,1,1,1,4,4,118.8,0,0,0,1,1,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,4,120.0,1,2,3,2,2,120.0,0,0,0,1,0,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,110.0,1,3,3,4,10,115.6,1,0,0,1,1,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,118.0,1,1,19,4,10,110.7,1,1,0,1,0,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +4,39,1,9238,1,1,130.0,1,19,3,9,2,140.0,0,0,0,1,1,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,1,140.0,1,1,19,3,9,140.0,1,0,1,0,0,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,3,9773,1,1,123.0,1,1,19,5,5,117.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,115.0,1,38,38,8,7,112.9,1,0,0,1,0,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,1,6,9147,1,1,142.0,1,38,37,7,7,134.3,0,1,0,1,1,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9085,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,0,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,129.0,1,19,1,3,7,121.0,0,0,0,1,0,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,156.0,1,3,3,123,122,155.0,0,0,0,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,136.0,1,37,37,9,9,126.3,1,0,0,1,0,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,Graduate +2,43,1,9991,0,1,110.0,1,37,37,9,9,132.5,0,0,0,1,1,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,19,133.1,1,37,1,5,5,138.3,0,0,0,1,1,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,Dropout +1,1,2,9130,1,1,140.0,1,19,37,9,9,129.5,1,0,0,1,0,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,Enrolled +1,7,1,9500,1,3,140.0,1,37,37,4,4,140.0,0,0,0,1,0,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,Graduate +4,42,1,9147,1,1,110.0,1,37,37,9,9,128.2,0,0,0,1,0,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,Graduate +1,39,1,9119,1,19,133.1,1,1,1,4,3,134.4,0,0,1,0,1,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,136.0,1,37,1,5,4,120.8,1,0,0,1,0,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,Graduate +1,17,2,9500,1,1,140.0,1,37,37,9,9,132.5,1,0,0,1,0,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,Graduate +1,17,6,9147,1,1,130.0,1,37,37,9,9,110.4,1,0,0,1,1,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,4,5,105.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,136.0,1,19,19,4,3,126.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,116.0,1,38,2,9,2,112.2,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9238,1,1,122.0,1,19,3,5,2,112.6,0,0,1,1,0,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9147,1,1,118.0,1,1,38,9,9,118.4,1,0,0,1,1,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,Enrolled +1,17,1,9130,1,1,117.0,1,19,19,4,4,113.5,1,0,0,1,0,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,117.0,1,19,19,9,9,111.8,1,0,0,1,1,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,Dropout +1,1,6,9500,1,1,118.0,1,38,19,3,3,113.5,1,0,0,1,1,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +2,43,2,9853,1,1,130.0,1,38,31,4,1,124.2,0,0,0,1,0,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,128.0,1,38,38,9,7,124.5,1,0,0,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,8,108.7,1,0,0,1,1,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9254,1,19,133.1,1,37,19,9,10,156.5,0,0,0,1,1,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,Graduate +1,39,1,9003,1,1,160.0,1,1,37,191,193,140.0,0,0,0,1,1,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,10,150.0,0,0,0,1,1,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,Graduate +1,18,2,9070,1,1,122.0,1,38,19,5,5,119.9,0,0,0,1,1,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,125.0,1,19,38,9,7,116.3,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,37,37,6,6,147.8,0,0,0,1,0,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,171,1,1,174.0,1,5,3,3,3,157.9,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,131.0,1,1,1,4,4,127.2,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,3,110.0,1,12,3,5,8,106.5,1,0,1,0,0,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,124.0,1,37,37,9,9,116.0,1,0,0,1,0,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,38,38,5,7,146.2,0,0,0,1,0,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,9,97.0,0,0,0,1,0,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,132.0,1,19,1,9,9,141.8,1,0,0,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +2,43,1,9254,1,3,120.0,1,38,37,9,3,120.0,1,0,0,1,0,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,135.0,1,3,2,1,1,133.6,1,0,0,0,0,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,133.0,1,38,38,5,2,135.5,0,0,0,1,0,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,125.0,1,39,3,3,2,125.0,1,0,0,1,0,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,4,112.0,0,0,0,1,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,141.0,1,1,1,5,9,126.3,0,0,0,1,1,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,1,133.1,1,1,37,9,8,130.0,0,0,0,1,1,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,3,10,107.8,0,0,0,1,0,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,Enrolled +1,43,1,9500,1,1,120.0,1,3,4,2,4,120.6,0,0,0,1,1,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,1,133.1,1,1,19,9,9,120.0,0,0,0,1,1,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,Graduate +1,39,1,9853,1,1,140.0,1,19,1,9,4,128.2,0,0,0,0,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,133.1,1,37,19,9,3,123.0,0,0,0,1,1,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9147,1,1,150.0,1,37,1,7,3,148.8,0,0,0,1,1,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,Graduate +1,17,1,9670,1,1,125.0,1,38,37,7,5,126.4,0,0,0,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,Graduate +1,44,1,9003,1,39,140.0,1,38,1,134,134,140.0,1,0,1,1,1,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,44,1,9070,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,1,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,130.0,1,1,1,9,9,124.1,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Enrolled +1,51,1,9070,1,1,130.0,1,19,19,5,7,124.5,0,0,0,1,0,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,101.0,1,37,37,9,4,101.0,1,0,1,1,0,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,Enrolled +1,1,1,8014,0,1,115.0,1,38,38,9,7,115.0,1,0,0,1,0,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9130,1,1,122.0,1,19,19,9,9,121.7,1,0,0,0,0,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,135.0,1,38,38,9,6,138.1,0,0,1,0,0,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9147,1,1,130.0,1,37,37,9,9,119.9,1,0,0,0,0,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,134.0,1,1,1,9,9,133.0,1,0,0,1,0,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,19,37,9,9,117.8,1,0,0,1,0,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,119.0,1,1,19,4,10,115.5,1,0,0,1,0,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,Enrolled +1,17,3,9119,1,1,138.0,1,3,3,3,4,125.4,1,1,0,1,1,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,164.0,1,19,19,9,9,149.0,1,0,0,1,0,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,1,140.0,1,4,4,2,6,140.0,0,0,0,1,0,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,Graduate +1,43,1,9070,1,1,160.0,1,1,2,4,2,100.0,0,0,0,1,1,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,132.0,1,37,37,9,5,135.9,0,0,0,1,0,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,142.0,1,37,19,7,7,133.0,1,0,0,1,0,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9556,1,3,130.0,1,1,37,4,8,130.0,0,0,0,0,1,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,Dropout +1,44,1,171,1,39,110.0,1,1,1,1,7,114.2,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9147,1,1,129.0,1,19,19,4,9,127.6,1,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,164.0,1,34,1,0,0,163.0,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9556,1,1,122.0,1,19,38,4,8,118.3,1,0,0,1,0,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,141.0,1,38,37,3,3,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,Graduate +1,1,1,9003,1,1,148.0,1,1,19,194,194,143.5,0,0,1,1,1,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,150.0,1,37,19,6,4,137.0,0,0,0,1,1,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,38,38,1,4,138.7,0,0,0,1,1,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,103.8,0,0,0,1,0,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,Dropout +1,17,1,8014,0,1,127.0,1,19,37,4,7,115.8,0,0,0,1,0,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,143.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,130.0,1,38,19,5,6,125.1,1,0,0,1,0,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9254,1,1,133.0,1,19,1,9,9,137.2,0,0,0,1,1,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +2,1,4,8014,0,1,140.0,1,34,34,0,0,128.0,1,0,0,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,120.0,1,1,1,9,10,118.3,0,0,0,1,1,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Enrolled +2,39,1,8014,0,12,133.1,1,37,37,9,1,113.0,0,0,0,1,0,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,128.0,1,19,1,0,5,122.1,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,37,38,3,3,123.0,0,0,0,1,0,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,120.0,1,37,1,7,4,95.0,1,0,0,1,0,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,Dropout +1,17,4,9238,1,1,123.0,1,19,19,191,144,116.0,1,0,0,1,0,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,140.0,1,37,37,90,90,106.3,0,0,1,0,1,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,159.0,1,3,3,2,2,162.5,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,125.0,1,19,19,9,9,115.9,0,0,0,1,0,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,130.0,1,19,19,3,7,129.0,0,0,1,0,0,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,133.1,1,38,37,5,5,136.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,156.0,1,5,4,2,1,140.8,0,0,0,1,0,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,161.0,1,37,37,9,9,100.0,1,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,8014,0,3,130.0,1,35,35,90,90,140.0,0,0,0,0,0,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,Dropout +2,1,1,9991,0,1,120.0,1,37,19,9,9,135.0,1,0,0,1,1,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,1,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,148.0,1,3,3,2,2,137.3,1,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,120.0,1,19,37,5,7,115.1,0,0,0,1,0,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,6,9773,1,1,138.0,1,1,1,4,2,140.5,1,0,0,1,0,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,Graduate +2,43,1,9085,1,1,160.0,1,37,37,9,7,120.0,0,0,0,1,1,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,Enrolled +1,17,2,8014,0,1,134.0,1,1,19,4,99,126.0,1,0,0,1,1,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,100.0,1,0,0,1,0,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,131.0,1,1,1,5,9,129.5,1,0,0,1,0,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,Graduate +1,1,4,171,1,1,139.0,1,37,38,9,9,127.8,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,150.0,1,37,37,5,6,132.5,1,0,0,1,0,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,133.1,1,19,38,5,7,110.0,1,0,0,1,0,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,6,138.6,1,34,34,0,0,138.6,1,0,0,1,1,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,133.1,1,1,1,4,10,100.8,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,5,140.0,1,19,1,4,1,140.0,1,0,0,0,0,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,118.0,1,1,19,9,10,113.1,1,0,0,1,0,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,115.0,1,3,3,2,2,111.5,1,0,1,0,0,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9254,1,39,170.0,1,19,2,9,3,170.0,0,0,0,0,1,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,9,120.0,0,0,0,1,0,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,137.0,1,19,38,7,7,126.5,1,0,0,1,0,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,136.0,1,19,19,90,8,133.9,1,0,0,0,1,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,Dropout +1,18,2,9500,1,1,141.0,24,1,1,4,3,126.8,1,0,0,1,0,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,Graduate +1,17,4,9238,1,1,124.0,1,19,19,5,8,117.7,1,0,0,1,0,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,149.0,1,19,38,9,9,126.5,1,0,0,1,0,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,153.0,1,1,1,141,175,157.9,0,0,1,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,140.0,1,1,2,4,6,140.0,1,0,0,1,0,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,137.0,1,1,3,3,2,121.3,1,0,0,1,0,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,143.0,1,1,1,4,6,138.8,0,0,0,0,1,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,160.0,1,1,3,1,2,130.0,0,0,0,0,1,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,19,19,9,8,105.8,0,0,0,1,0,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,Dropout +1,5,4,9119,1,1,115.0,1,19,37,4,6,113.3,1,0,0,1,1,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,19,4,3,125.4,1,0,0,1,0,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,Graduate +4,42,1,9500,1,19,133.1,1,1,1,5,5,126.0,1,0,0,1,1,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9254,1,3,133.1,1,19,19,4,6,130.5,0,0,0,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,108.0,1,1,19,4,4,105.9,1,0,0,1,1,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,126.0,1,19,19,9,9,115.2,0,0,1,1,0,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9853,1,1,140.0,1,37,37,9,9,145.3,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,6,9070,1,6,119.0,1,1,1,9,9,123.2,1,0,0,1,1,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,160.0,1,1,38,5,6,168.6,0,0,0,1,1,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9254,1,1,120.0,1,1,19,9,9,148.3,0,0,0,1,1,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,3,130.0,1,1,19,9,10,130.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,137.0,1,38,38,151,151,141.6,0,0,0,1,1,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,4,140.0,0,0,0,1,1,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,Enrolled +1,43,1,9085,1,1,162.0,1,2,1,4,4,162.0,0,0,0,1,0,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,43,1,171,1,1,133.0,1,19,19,5,7,133.0,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,154.0,1,37,37,9,7,150.2,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,19,100.0,1,38,19,0,10,111.3,0,0,1,0,0,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,38,4,9,126.2,0,0,0,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,132.0,1,3,1,2,7,125.5,1,0,0,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,127.0,1,37,37,5,7,116.2,0,0,0,1,1,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9773,1,1,121.0,1,19,38,9,7,113.0,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,130.0,1,19,19,9,9,127.6,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,160.0,1,34,34,99,99,114.3,0,0,0,1,1,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,Enrolled +1,18,4,9254,1,1,119.0,1,37,37,9,9,113.1,1,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,130.0,1,38,37,5,6,130.0,0,0,0,1,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,163.0,1,19,37,5,8,150.8,1,0,0,1,1,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,Enrolled +1,43,1,9238,1,1,122.0,1,19,19,5,5,114.3,1,0,0,1,0,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,Enrolled +1,18,1,9147,1,1,131.0,1,34,34,90,90,131.0,0,0,0,1,1,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,4,9773,1,1,137.0,1,1,1,5,5,125.8,0,0,1,1,1,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9670,1,1,133.1,1,37,37,90,90,97.4,0,0,1,0,1,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,37,38,7,5,106.0,1,0,0,1,0,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,Graduate +1,17,6,9254,1,1,108.0,1,1,19,4,5,112.2,1,0,0,1,1,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,19,133.1,1,1,19,4,10,111.8,1,0,0,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,133.1,1,1,37,9,10,139.0,0,0,0,1,1,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,122.0,1,12,19,4,8,117.8,1,0,0,1,0,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,128.0,1,19,19,0,5,120.3,1,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,133.1,1,34,19,0,3,117.1,1,0,0,1,0,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9556,1,19,133.1,1,37,38,9,9,123.0,0,0,0,1,0,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,Graduate +1,17,2,9238,1,1,133.0,1,37,37,9,4,123.6,0,0,0,1,0,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,5,9670,1,1,132.0,1,19,19,5,5,134.1,1,0,0,1,1,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,129.0,1,38,1,4,10,129.4,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,136.0,1,19,19,4,8,150.4,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,154.0,1,3,3,1,3,129.0,1,0,0,1,0,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,Enrolled +1,44,1,9130,1,39,150.0,1,1,1,4,4,150.0,1,0,0,1,0,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,115.0,1,37,37,9,8,116.1,1,0,0,1,0,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,157.0,1,19,3,4,9,138.8,0,0,0,1,1,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9670,1,19,133.1,1,19,1,5,8,97.2,1,0,0,1,1,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,141.0,1,37,38,6,6,125.6,1,0,0,1,0,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,143.0,1,19,1,9,9,144.4,1,0,0,1,0,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9119,1,1,127.0,1,19,1,4,5,115.8,0,0,0,1,1,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,150.0,1,1,1,9,10,142.7,0,0,1,1,0,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,132.0,11,12,12,90,4,129.9,1,0,0,1,0,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,115.0,1,19,19,191,171,109.1,0,0,1,0,1,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,Enrolled +1,17,1,9773,1,1,121.0,1,38,38,9,8,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,7,1,9085,1,40,130.0,1,1,1,4,4,130.0,1,0,0,1,0,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,140.0,1,19,38,4,4,138.3,0,0,0,1,1,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,6,9773,1,1,116.0,1,19,1,4,4,110.1,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,131.0,1,38,38,9,9,127.9,0,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,Graduate +1,51,1,9991,0,42,110.0,1,19,37,5,9,128.2,0,0,0,0,0,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,138.0,1,19,19,5,8,124.9,1,0,0,1,0,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,172.0,1,1,1,4,9,167.1,0,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +5,39,1,9991,0,1,120.0,1,37,37,9,9,138.1,0,0,0,1,1,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,37,38,3,7,96.7,0,0,0,1,1,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,15,1,9130,1,1,133.1,41,1,1,4,4,100.0,0,0,0,1,0,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9119,1,1,122.0,1,19,19,9,9,114.7,0,0,0,1,1,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,192,192,96.0,1,0,0,1,0,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,160.0,1,1,37,9,10,118.0,0,0,0,1,0,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,Enrolled +1,18,4,9119,1,1,134.0,1,19,38,194,175,124.9,1,0,1,1,1,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,4,19,4,5,98.0,0,0,0,1,1,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +5,43,1,9991,0,3,130.0,1,3,3,1,1,130.0,0,0,0,1,0,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,120.0,1,19,19,4,5,114.8,1,0,1,0,0,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,6,8014,0,1,134.0,1,3,19,2,4,120.7,1,0,0,1,0,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,133.1,1,37,37,9,9,109.7,0,0,0,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9070,1,1,128.0,1,19,19,3,3,123.5,1,1,0,0,1,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,133.1,1,1,19,5,9,130.0,0,0,0,1,1,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,Graduate +1,7,1,9991,0,40,120.0,1,43,3,3,3,120.0,0,0,0,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,Enrolled +1,17,5,9556,1,1,139.0,1,19,19,9,8,121.3,1,0,0,1,0,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,156.0,1,3,19,3,3,151.1,0,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,Graduate +1,16,2,9147,1,1,132.0,1,37,37,9,9,122.6,1,0,0,1,0,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,130.0,1,2,3,9,6,130.0,0,0,0,1,1,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,133.1,1,1,1,1,6,120.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,1,1,1,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,133.0,1,3,3,1,1,126.2,1,0,0,1,0,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,Graduate +1,18,2,9147,1,1,140.0,1,37,37,5,9,124.3,1,0,0,1,1,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,44,1,9003,1,39,150.0,1,37,38,4,8,150.0,0,0,0,1,0,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,140.0,1,37,19,191,163,129.3,1,0,1,1,0,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +4,7,1,9500,1,3,130.0,1,3,19,2,3,130.0,0,0,0,1,0,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9070,1,1,131.0,1,19,19,7,7,125.1,0,0,0,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,Enrolled +1,10,1,9773,1,1,152.0,22,38,37,5,9,152.0,1,0,0,1,0,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,123.0,1,34,38,0,7,120.2,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,131.0,1,3,19,4,4,130.3,1,0,0,1,1,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,115.0,1,1,1,5,4,108.0,1,0,0,1,0,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,130.0,1,38,37,9,9,144.0,0,0,0,1,0,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9238,1,1,134.0,1,3,1,3,4,133.0,1,0,0,1,0,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,Graduate +1,51,1,9670,1,1,133.1,1,3,1,3,10,116.2,0,0,0,1,1,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,139.0,0,0,0,1,1,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,126.0,1,19,1,9,9,122.5,1,0,0,0,0,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,121.0,1,19,19,9,9,126.3,1,0,0,1,0,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9003,1,1,133.1,1,38,38,4,8,115.0,0,0,1,1,1,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,19,37,9,9,151.5,0,0,1,0,1,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9853,1,40,110.0,1,41,3,2,1,110.0,0,0,1,1,0,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,17,5,9238,1,1,131.0,1,19,37,5,7,120.2,1,0,0,1,0,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,7,1,9070,1,3,140.0,1,37,37,7,7,140.0,0,0,0,0,1,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +4,39,1,9254,1,1,140.0,1,38,37,9,9,112.0,0,0,1,1,0,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,Dropout +1,18,3,9853,1,1,122.0,1,38,37,9,5,120.3,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9070,1,1,125.0,1,1,38,9,7,118.0,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Enrolled +1,1,3,9670,1,1,111.0,1,1,1,5,5,105.4,0,0,0,1,0,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +2,39,1,9254,1,1,130.0,1,37,37,4,7,120.0,1,0,0,1,0,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,160.0,1,37,37,9,9,160.0,1,0,0,1,0,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,39,1,9147,1,12,133.1,1,37,37,9,9,140.0,0,0,0,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9147,1,1,118.0,1,1,2,10,10,117.3,1,0,0,1,0,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,3,9085,1,1,130.0,1,1,19,9,9,121.3,1,0,0,1,0,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,9,130.0,0,0,0,1,0,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,3,9085,1,1,130.0,1,19,37,5,5,121.3,1,0,0,1,0,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,Enrolled +1,1,2,9254,1,1,120.0,1,19,19,9,9,116.5,1,0,0,1,0,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,Graduate +2,39,1,9500,1,1,140.0,1,37,37,9,4,127.3,0,0,0,1,1,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,118.0,1,37,38,8,7,115.2,1,0,0,1,0,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,17,3,9238,1,1,125.0,1,19,19,7,8,121.5,0,0,0,1,0,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,125.0,1,19,19,5,5,114.5,1,0,0,1,0,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,136.0,1,39,1,3,4,134.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,115.0,1,3,2,4,5,112.6,0,0,0,1,1,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,53,1,9003,1,1,130.0,1,19,1,9,9,130.0,0,0,1,1,1,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,Enrolled +1,1,3,9773,1,1,136.0,1,3,1,5,3,129.0,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,3,150.0,1,2,3,4,7,173.3,1,0,0,1,0,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,140.0,1,1,19,7,7,129.9,1,0,0,1,0,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,Dropout +1,7,1,9119,1,1,140.8,1,34,34,0,0,134.0,0,0,0,1,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9254,1,1,115.0,1,37,19,5,5,109.8,1,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,137.0,1,1,1,4,4,127.6,1,0,0,1,0,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,Graduate +4,7,1,9238,1,40,130.0,1,34,34,99,99,130.0,0,0,1,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9147,1,1,123.0,1,37,37,9,9,106.2,0,0,0,1,0,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,121.0,1,1,3,3,7,113.0,1,0,0,1,1,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,140.0,1,3,1,2,3,129.9,0,0,0,1,0,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,130.0,1,38,38,9,7,130.0,0,0,0,1,1,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,Dropout +1,51,1,9070,1,1,132.0,1,19,19,153,153,120.0,0,0,0,1,0,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,9119,1,1,110.0,1,37,37,9,9,106.8,0,0,0,1,1,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,124.0,1,19,37,4,4,126.8,0,0,0,1,0,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,Enrolled +1,18,3,9147,1,1,133.1,1,1,38,4,7,101.0,1,0,0,0,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9147,1,1,125.0,1,38,19,7,7,125.7,0,0,0,1,0,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,4,9853,1,1,121.0,1,38,38,5,7,113.7,1,0,0,1,0,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,1,1,9,6,105.0,1,0,1,0,0,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,143.0,1,5,1,2,5,136.7,0,0,0,1,0,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,Graduate +1,1,2,9556,1,1,142.0,1,1,19,4,5,130.5,1,0,0,1,0,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,131.0,1,19,19,7,5,122.1,1,0,0,1,0,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,132.0,1,1,37,4,7,121.8,1,0,0,1,0,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,123.0,1,37,37,3,3,123.0,1,0,0,1,0,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,129.0,1,19,38,2,7,126.9,1,0,0,1,0,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Enrolled +1,1,4,9238,1,1,118.0,1,19,38,9,9,110.0,0,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,125.0,1,3,1,4,4,119.4,1,0,0,1,0,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,Enrolled +1,17,1,9085,1,1,131.0,1,1,3,4,1,129.3,1,0,0,1,0,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,147.0,1,37,37,9,9,134.3,0,0,0,1,0,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,Graduate +2,39,2,9670,1,19,133.1,1,37,37,9,9,135.6,0,0,0,1,0,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,152.0,1,37,19,9,9,137.0,1,0,0,1,0,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,118.0,1,12,1,4,10,115.7,0,0,0,1,1,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,Enrolled +1,15,1,9119,1,1,133.1,41,1,3,5,8,100.0,0,0,1,1,1,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,5,9119,1,1,131.0,1,1,19,4,7,126.8,0,0,0,0,1,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,132.0,1,19,38,9,7,119.1,0,0,0,0,1,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,8014,0,1,120.0,1,37,37,5,5,161.1,0,0,0,1,1,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,18,5,9500,1,1,137.0,1,19,1,1,10,129.3,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,118.0,1,37,19,5,5,119.1,1,0,0,1,0,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,134.0,1,38,38,9,9,122.0,1,0,0,1,1,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,163.0,1,1,1,4,3,149.7,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,140.0,1,38,38,9,7,140.0,0,0,0,1,0,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,Enrolled +1,17,4,9147,1,1,122.0,1,19,19,5,7,116.4,1,0,1,1,0,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,140.0,1,3,37,3,7,116.9,0,0,0,1,1,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,5,2,9238,1,1,123.0,1,40,38,2,9,118.1,1,0,0,1,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,130.0,1,3,19,2,3,133.9,0,0,0,1,0,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,125.0,1,1,38,4,7,114.9,1,0,0,1,0,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,130.0,1,1,1,4,10,115.2,0,0,0,1,1,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,124.0,1,38,19,9,7,129.6,1,0,0,1,1,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,139.0,1,38,38,7,5,133.4,0,0,0,1,0,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9254,1,1,125.0,1,38,38,5,5,115.6,1,0,0,1,0,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,147.0,1,37,37,9,9,142.8,1,0,0,1,0,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9003,1,1,144.0,1,19,19,9,9,132.8,0,0,0,1,1,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,12,133.1,1,19,1,9,1,130.0,0,0,0,1,1,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,140.0,1,37,37,9,6,135.5,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,6,9254,1,1,102.0,1,3,1,2,2,101.7,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,133.1,1,19,38,5,5,131.8,1,0,1,1,0,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,Graduate +1,44,1,171,1,39,150.0,1,4,4,2,2,150.0,0,0,0,1,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,53,1,9254,1,42,110.0,1,1,1,4,7,111.8,1,0,0,1,0,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,121.0,1,19,38,6,6,116.1,1,0,0,1,1,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,Graduate +1,17,4,9773,1,1,127.0,1,1,19,4,1,115.8,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,37,37,9,7,160.0,1,0,0,0,1,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,15,170.0,1,34,1,90,2,101.0,0,0,0,1,0,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,125.0,1,3,3,3,3,116.6,1,0,0,0,0,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,4,9070,1,1,117.0,1,1,1,3,3,125.4,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,146.0,1,19,37,7,7,133.8,1,0,0,1,0,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,142.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,3,116.0,1,3,3,2,2,128.2,0,0,0,1,0,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,37,37,7,7,116.5,1,0,0,1,0,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,118.0,1,19,19,5,7,117.8,0,0,0,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,Graduate +1,18,3,9670,1,1,119.0,1,38,38,9,9,115.2,1,0,0,1,0,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,131.0,1,3,19,3,10,123.3,0,0,0,1,1,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,Enrolled +1,17,1,9254,1,1,136.0,1,39,3,3,3,128.7,1,0,0,1,0,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9500,1,1,140.0,1,37,38,5,7,126.0,1,0,0,1,0,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +1,44,1,9119,1,39,150.0,1,19,3,5,2,150.0,0,0,0,1,1,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,43,1,9773,1,1,137.0,1,38,37,9,5,127.9,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,119.9,0,0,0,1,0,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,18,2,9773,1,1,132.0,24,37,19,9,7,119.1,1,0,0,1,0,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,43,1,8014,0,1,133.1,1,34,34,0,0,100.0,0,0,0,1,0,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,1,133.1,1,38,19,9,9,128.0,1,0,0,0,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,125.0,1,19,19,5,4,136.2,1,0,1,1,1,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,132.0,1,38,38,0,5,126.1,0,0,0,1,1,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9670,1,1,130.0,1,1,1,9,10,116.3,1,0,0,1,0,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,3,9773,1,1,150.0,1,19,38,4,4,146.5,1,0,0,1,0,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +4,39,2,8014,0,1,160.0,1,37,38,7,5,115.0,0,0,0,1,0,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,135.0,1,19,1,9,9,122.1,1,0,0,1,0,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,136.0,1,3,3,9,9,136.0,1,0,1,0,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,3,3,7,1,130.0,1,0,0,1,1,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9119,1,19,133.1,1,19,19,5,3,100.9,1,0,0,1,1,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,Enrolled +1,17,1,9254,1,1,137.0,1,34,38,0,7,137.7,1,0,1,0,0,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,19,133.1,1,37,37,90,7,110.0,0,0,0,0,0,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,144.0,1,38,37,9,9,125.8,0,0,0,1,0,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,1,4,9070,1,1,167.0,1,1,1,7,3,158.3,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,133.0,1,37,19,7,7,126.7,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,118.0,1,38,38,7,7,121.2,1,0,0,1,0,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,19,133.1,1,19,19,4,4,150.0,0,0,0,0,1,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9085,1,1,166.0,1,1,19,4,3,158.7,0,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Graduate +1,44,1,9254,1,39,130.0,1,39,39,194,193,130.0,1,0,1,1,1,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,1,9085,1,1,140.0,1,37,38,7,9,129.9,0,0,0,1,0,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,9147,1,3,120.0,1,1,39,4,7,120.0,0,0,0,1,0,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,5,9254,1,1,118.0,1,19,37,5,5,120.5,1,0,0,1,1,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,Dropout +1,17,3,9070,1,1,120.0,1,3,1,4,4,116.9,1,0,0,1,0,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Graduate +1,43,5,9238,1,1,101.0,24,37,19,9,7,119.9,1,0,1,0,0,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,128.0,1,19,1,4,3,117.2,1,0,0,1,0,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,Graduate +1,1,3,9254,1,1,118.0,1,1,19,9,9,111.7,1,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,137.0,1,37,37,0,90,134.2,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,144.0,1,3,39,2,3,129.0,1,0,0,1,0,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,125.0,1,37,38,7,7,122.2,1,0,0,1,0,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,147.0,1,3,1,4,3,136.7,0,0,0,1,0,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,39,120.0,1,37,37,1,9,137.7,1,0,0,0,1,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,160.0,1,1,37,9,9,146.0,1,0,0,1,0,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9238,1,39,130.0,1,1,19,4,5,127.4,0,0,1,0,1,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,3,1,2,4,154.9,0,0,1,0,1,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,Dropout +1,17,2,9670,1,1,129.0,1,19,19,5,4,129.4,0,0,0,1,0,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,137.0,1,3,19,3,5,136.3,1,0,0,1,0,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,100.0,1,37,37,9,6,153.5,0,0,1,0,1,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,134.0,1,38,38,7,9,132.8,1,0,0,1,0,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,137.0,1,37,37,7,9,130.8,1,0,0,1,0,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,133.1,1,37,37,1,1,97.0,0,0,0,1,1,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,143.0,1,3,38,2,10,129.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,9,3,127.1,0,0,0,1,0,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,Enrolled +2,7,1,9147,1,3,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,160.0,1,37,37,9,9,160.0,0,0,0,1,1,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,162.0,1,3,4,3,3,154.1,0,0,0,1,0,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,Graduate +1,1,2,9147,1,1,119.0,1,19,37,4,5,113.8,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,139.0,1,19,1,9,5,135.0,1,0,0,1,0,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,120.0,1,1,38,5,5,116.3,1,1,0,1,1,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,2,9500,1,1,135.0,1,1,19,4,10,133.5,1,0,0,1,0,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,Graduate +1,1,3,9119,1,1,117.0,1,1,1,3,5,111.1,0,0,0,1,1,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,140.0,1,1,39,4,1,128.1,1,1,0,1,1,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9003,1,1,133.1,1,37,37,3,8,130.0,0,0,1,1,0,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,134.0,1,19,37,5,5,125.3,1,0,0,1,1,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,37,38,9,9,114.0,0,0,0,1,0,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,38,37,4,5,102.5,0,0,1,0,1,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,143.0,1,19,37,5,9,156.3,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,130.0,1,19,1,9,5,122.1,1,0,0,1,0,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,Graduate +1,39,2,8014,0,1,100.0,1,35,37,90,90,100.0,0,0,0,1,0,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +2,39,2,9670,1,1,100.0,1,37,37,9,9,110.0,0,0,0,1,1,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,2,9853,1,1,126.0,1,1,19,2,10,126.0,1,0,0,1,0,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,Enrolled +1,18,3,9070,1,1,131.0,1,1,37,5,5,122.3,1,0,0,0,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,150.0,1,19,37,9,8,138.5,0,0,0,1,0,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,2,171,1,1,146.0,1,3,3,3,3,155.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,120.0,1,19,19,9,7,118.6,1,0,0,1,0,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,145.0,1,38,38,9,9,125.5,1,0,0,1,0,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9070,1,1,143.0,1,1,1,9,7,134.6,1,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Dropout +1,51,1,8014,0,1,121.0,1,1,38,5,7,112.3,0,0,0,1,0,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,130.0,1,37,1,9,8,120.2,1,0,0,1,1,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +2,7,1,9254,1,2,100.0,1,37,37,9,9,100.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,1,130.0,1,37,3,9,3,137.0,1,0,0,1,1,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,0,0,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,140.0,1,38,37,7,7,105.2,0,0,0,1,1,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,131.0,1,1,19,4,7,135.9,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,108.0,1,19,38,9,7,110.5,1,0,0,1,0,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,111.0,1,1,38,5,9,107.5,0,0,0,1,1,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9147,1,1,147.0,1,37,37,9,6,142.8,1,0,1,0,0,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,170.0,1,38,19,4,8,134.7,0,0,0,1,0,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,138.0,1,4,19,2,3,124.7,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,125.0,1,37,38,9,9,125.0,1,0,1,0,0,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,118.0,1,38,38,5,5,114.2,1,0,0,1,0,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,3,3,1,5,118.8,0,0,0,1,0,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,Graduate +1,1,3,9085,1,1,131.0,1,37,19,9,8,136.3,1,0,1,0,0,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,Dropout +1,43,1,9991,0,1,141.0,1,37,37,9,9,131.9,0,0,0,1,0,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,42,1,9070,1,1,120.0,1,3,2,3,1,116.9,0,0,0,1,1,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,130.0,1,1,1,9,7,152.1,0,0,0,1,1,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,12,133.1,1,34,34,0,0,135.0,0,0,0,1,0,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,130.0,1,38,38,7,7,122.5,1,0,0,1,0,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,160.0,1,1,1,194,131,128.4,0,0,0,1,0,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,132.0,1,1,38,7,7,129.6,0,1,0,1,1,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,1,1,3,9,118.4,0,0,0,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,Graduate +1,1,2,9556,1,1,133.1,1,19,19,9,9,104.5,1,0,0,1,0,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,53,1,9003,1,42,150.0,1,1,38,8,8,150.0,0,0,0,1,0,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,144.0,1,3,1,2,3,126.9,0,0,0,1,0,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,150.0,1,3,3,2,2,120.0,0,0,1,0,0,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,3,3,2,10,160.0,1,0,0,1,1,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,129.0,1,1,1,9,9,120.0,0,0,0,1,1,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,Graduate +4,39,1,9003,1,12,133.1,1,37,37,9,6,160.0,0,0,0,1,0,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,Graduate +2,39,2,9991,0,1,100.0,1,37,37,9,9,100.0,1,0,0,1,1,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,115.0,1,19,1,3,8,123.4,0,0,0,1,0,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,124.0,1,19,37,3,8,117.5,1,0,0,1,1,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,Enrolled +1,1,6,9254,1,1,129.0,1,38,19,9,5,117.8,1,0,0,1,0,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,127.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,19,133.1,1,38,38,7,8,120.0,0,0,0,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +6,39,2,9147,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,4,9500,1,1,148.0,1,3,19,4,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,39,150.0,1,1,3,4,1,150.0,0,0,0,1,1,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,145.0,1,37,37,9,1,150.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,115.7,1,0,0,1,0,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,16,1,171,1,1,122.0,1,19,37,9,7,133.9,1,0,0,1,1,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,124.0,1,37,38,9,8,114.6,1,0,0,1,1,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,120.0,1,38,37,9,8,113.4,1,0,0,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,40,140.0,1,37,37,6,6,140.0,0,0,0,1,0,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,Graduate +1,1,5,9670,1,1,133.1,1,9,1,2,4,133.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,100.0,1,19,19,4,4,113.0,0,0,0,1,1,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,Enrolled +4,39,1,9003,1,1,133.1,1,19,19,9,4,100.7,0,0,0,1,0,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,Enrolled +1,17,2,9147,1,1,133.1,1,38,38,4,7,109.0,1,0,0,1,1,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,15,1,9238,1,1,140.0,26,19,19,9,6,140.0,0,0,0,1,1,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,3,9500,1,1,114.0,1,1,1,5,5,114.5,1,0,0,1,0,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,134.0,1,1,38,4,4,120.7,0,0,1,0,0,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,1,133.1,1,37,11,9,7,96.0,0,0,1,0,1,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,131.0,1,3,3,3,3,135.9,0,0,0,1,0,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,Graduate +1,43,2,9500,1,1,130.0,1,38,37,4,4,126.8,1,0,0,1,1,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,19,37,7,7,124.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9670,1,1,120.0,1,1,19,4,5,100.0,0,0,0,1,0,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,145.0,1,38,38,9,10,139.8,1,0,0,1,0,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,141.0,1,19,38,5,7,125.5,0,0,0,1,0,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,Graduate +5,39,1,9147,1,1,133.1,1,1,19,4,7,114.0,0,0,0,0,1,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9991,0,1,110.0,1,37,37,1,4,120.0,1,0,0,0,1,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,172.0,41,37,37,5,5,153.8,1,0,0,1,0,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,1,9556,1,1,140.0,1,3,3,1,7,131.6,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,4,3,137.5,0,0,0,1,1,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,137.0,1,19,38,3,9,124.9,0,0,0,1,0,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,139.0,1,18,18,1,1,130.8,1,0,0,0,0,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,120.0,1,38,37,5,9,131.4,1,0,0,1,1,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,Graduate +1,53,1,9085,1,42,160.0,1,19,37,4,9,160.0,1,0,0,1,0,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,Graduate +1,18,1,9670,1,1,140.0,1,1,37,9,9,130.2,1,0,0,1,1,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9853,1,1,140.0,1,37,37,6,6,125.2,0,0,1,1,0,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,Graduate +1,1,4,9556,1,1,122.0,1,37,1,5,4,123.9,0,0,0,1,0,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,1,19,3,3,123.0,0,0,0,1,0,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,140.0,1,19,38,4,0,140.0,1,0,0,1,1,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,129.0,1,1,1,4,2,126.2,0,0,1,0,0,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Dropout +2,17,3,8014,0,1,123.0,1,19,37,3,3,113.2,0,0,1,0,0,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,133.1,1,38,19,9,10,114.5,0,0,0,1,0,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,Enrolled +1,51,1,9991,0,1,141.0,1,19,38,5,7,100.0,0,0,0,1,0,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,Graduate +1,17,2,171,1,1,131.0,1,2,1,3,3,148.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,19,133.1,1,37,37,9,9,100.0,1,0,1,0,0,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,117.0,1,1,38,5,1,113.5,1,0,0,1,0,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,116.0,1,19,38,9,9,119.5,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,1,19,3,4,116.7,0,0,0,1,0,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,129.0,1,2,3,2,2,128.3,1,0,0,1,0,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,Enrolled +1,1,3,9085,1,1,138.0,1,1,1,4,8,128.7,1,0,0,1,0,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,5,9147,1,1,118.0,1,19,19,9,9,114.2,1,0,0,1,1,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.0,1,3,19,2,8,126.7,0,0,0,1,0,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,Enrolled +1,16,1,171,1,1,158.0,1,38,37,9,9,164.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,43,3,9500,1,1,126.0,1,38,37,6,5,124.3,1,0,0,1,0,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,123.0,1,38,38,9,5,124.8,0,0,0,0,0,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9130,1,1,160.0,1,3,3,3,2,155.1,1,0,0,1,0,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Graduate +4,43,1,9500,1,1,130.0,1,37,37,9,9,103.7,0,0,0,1,0,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,Enrolled +1,16,2,9238,1,1,133.0,1,19,38,4,5,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,130.0,1,38,37,9,9,124.8,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,135.0,1,37,1,7,7,132.8,1,0,0,1,0,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9119,1,1,128.0,1,1,38,4,7,100.0,0,0,0,1,1,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9085,1,1,120.0,1,1,1,9,10,115.0,0,0,0,0,0,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,2,9070,1,1,142.0,1,3,1,2,4,141.0,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9853,1,1,124.0,1,38,37,5,3,118.1,1,0,0,0,0,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,145.0,1,37,37,9,9,132.0,1,0,0,1,0,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,114.0,1,38,38,9,10,120.0,0,0,0,1,0,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,140.0,1,3,3,2,2,146.4,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,5,9773,1,1,130.0,1,34,38,0,8,128.3,1,0,0,0,0,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,3,9670,1,1,110.0,1,19,1,4,4,107.5,1,0,0,1,0,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,135.0,1,37,37,5,5,126.3,1,1,0,1,0,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,Graduate +2,1,1,9254,1,1,140.0,1,19,38,4,7,133.0,0,0,0,1,1,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,1,150.0,1,37,37,9,9,115.0,0,0,0,1,1,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9070,1,1,130.0,1,1,1,5,3,112.0,1,0,0,1,1,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,110.0,1,1,37,9,9,105.1,1,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,131.0,1,37,37,9,7,118.4,0,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,136.0,1,38,38,7,7,127.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9773,1,1,127.0,1,19,19,5,8,120.0,0,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,139.0,1,37,19,9,8,142.2,1,0,0,1,1,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,4,127.3,1,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,16,4,9773,1,1,109.0,1,37,37,9,3,137.0,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,Graduate +1,53,1,9085,1,42,130.0,1,19,1,9,9,130.0,1,0,1,0,0,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,Enrolled +1,7,1,171,1,3,130.0,1,1,2,9,2,130.0,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,120.0,1,37,37,9,9,120.0,1,0,1,1,0,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,Dropout +1,2,1,9853,1,1,120.0,1,19,38,9,9,122.5,0,0,0,0,0,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,19,133.1,1,2,1,8,8,120.0,1,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,43,1,9773,1,1,121.0,1,1,1,4,5,121.0,1,0,0,1,1,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9147,1,1,120.0,1,38,19,9,9,111.3,1,0,0,1,0,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,38,19,5,0,141.8,0,0,0,1,0,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,131.0,1,1,1,7,4,127.2,1,0,1,1,1,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,11,9,10,131.5,0,0,0,1,0,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,3,19,2,3,125.7,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9556,1,1,136.0,1,19,19,9,9,129.5,1,0,0,1,0,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,Graduate +1,42,1,9119,1,1,120.0,1,5,5,2,2,115.0,0,0,0,1,1,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,Dropout +1,17,6,9119,1,1,124.0,1,19,19,4,0,126.1,1,0,0,1,1,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,160.0,1,19,38,9,9,140.8,1,0,0,1,1,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,123.0,1,37,37,9,9,115.0,1,0,0,1,0,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,Graduate +2,39,2,9670,1,1,133.1,41,37,19,9,9,130.0,0,0,0,1,0,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9670,1,6,170.0,1,34,34,0,0,111.6,0,0,0,1,1,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,138.0,1,1,3,9,1,123.0,1,0,0,1,0,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,1,37,6,6,130.0,1,0,0,1,1,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,Graduate +1,17,2,9119,1,1,133.1,1,1,2,3,3,117.0,1,0,0,1,1,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,Enrolled +1,1,5,9254,1,1,131.0,1,19,37,9,9,123.7,0,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,130.0,1,1,1,9,4,140.0,0,0,0,0,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9773,1,1,135.0,1,1,19,4,10,129.4,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,132.0,1,1,19,3,3,122.9,1,0,0,1,0,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,115.0,1,37,37,9,8,129.0,1,0,1,0,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9238,1,1,160.0,1,3,19,2,1,116.1,0,0,1,1,0,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,12,133.1,1,37,1,9,10,130.0,0,0,0,1,1,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,129.0,1,37,38,4,9,121.0,1,0,0,1,0,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9119,1,1,130.0,1,38,19,7,3,119.9,1,0,1,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,133.1,1,37,37,9,9,100.2,1,0,0,0,0,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,4,38,4,5,140.0,1,0,0,1,0,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9991,0,43,140.0,1,40,5,3,3,140.0,0,0,0,1,0,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,Graduate +1,43,2,9670,1,1,129.0,1,3,3,5,5,122.4,1,0,0,1,0,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,6,116.4,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,130.0,1,1,3,9,2,130.0,1,0,1,1,0,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,139.0,1,38,38,9,5,130.5,1,0,0,1,0,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,1,100.0,1,19,19,9,9,100.0,0,0,1,1,1,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,Dropout +1,7,1,9773,1,43,140.0,1,19,1,4,8,140.0,0,0,0,1,1,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9003,1,1,125.0,1,1,38,4,7,125.0,1,0,0,1,0,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,Graduate +1,39,2,9147,1,19,133.1,1,38,19,4,10,116.3,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,3,9500,1,1,132.0,1,37,37,4,3,127.3,1,0,0,1,0,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,127.0,1,1,37,4,8,121.1,1,0,0,1,1,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9670,1,1,140.0,1,37,37,6,6,120.0,0,0,0,1,0,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,133.0,1,37,37,9,5,139.2,1,0,1,1,1,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,140.0,1,19,19,1,4,133.3,1,0,0,1,0,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,120.0,1,3,3,2,2,112.0,0,0,0,1,0,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,Enrolled +2,1,1,9147,1,1,137.0,1,19,37,9,9,124.4,0,0,0,1,0,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,130.0,1,38,38,9,3,145.6,0,0,0,1,1,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,6,9670,1,1,120.0,1,1,14,4,5,113.7,1,0,0,1,0,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,120.0,1,38,19,9,3,112.7,0,0,0,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,122.0,1,37,37,9,9,114.3,1,0,0,0,0,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,8014,0,1,133.1,1,3,1,1,7,100.0,0,0,0,1,0,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,4,19,3,5,123.7,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,4,4,4,2,120.0,1,0,0,1,1,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,3,9238,1,1,137.0,1,1,1,3,3,131.4,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,Graduate +1,43,1,9130,1,1,130.0,1,1,1,1,1,130.0,1,0,0,1,1,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9773,1,1,121.0,1,1,19,9,7,118.9,1,0,0,1,0,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,133.1,1,19,38,9,8,128.2,1,0,0,1,1,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,Enrolled +1,43,1,9070,1,1,134.0,1,19,37,7,7,132.7,1,0,0,1,1,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9147,1,1,125.0,1,1,38,7,7,120.1,0,0,1,1,1,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,129.0,1,37,37,9,9,117.1,1,0,0,1,0,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,145.0,1,38,38,5,7,138.0,1,0,0,1,0,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,120.0,105,1,1,9,9,119.0,1,0,1,0,0,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,131.0,1,1,19,9,9,127.0,0,0,0,1,1,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,100.0,1,38,19,6,10,112.8,0,0,0,1,0,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,2,9070,1,1,145.0,1,38,19,7,7,130.0,1,0,0,1,1,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,126.0,1,37,38,7,7,119.0,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,Graduate +1,1,2,9773,1,1,137.0,1,1,19,7,7,133.2,1,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,128.0,1,38,38,9,7,128.4,1,0,0,1,0,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9085,1,39,150.0,1,19,38,194,193,150.0,1,0,0,1,0,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,Enrolled +1,1,4,171,1,1,146.0,1,1,1,9,5,151.3,1,0,0,1,0,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,Graduate +1,1,6,9147,1,1,139.0,1,19,12,4,4,125.0,1,0,0,1,0,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,1,1,9,4,123.4,1,0,0,1,0,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9670,1,1,127.0,1,3,4,2,2,122.8,0,0,0,1,1,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,127.0,1,38,37,5,7,121.8,1,0,1,1,0,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,39,1,9003,1,1,130.0,1,38,37,7,7,120.0,0,0,0,1,1,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,Graduate +1,1,2,9238,1,1,100.0,1,38,1,7,7,99.3,1,0,0,1,0,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9119,1,1,160.0,1,37,37,9,6,153.7,0,0,0,1,1,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9500,1,1,138.0,1,3,1,2,5,134.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,Graduate +1,17,4,9254,1,1,124.0,1,3,3,3,3,126.1,1,0,0,1,0,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,Dropout +2,7,1,9147,1,3,110.0,1,19,1,9,9,110.0,0,0,0,1,0,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,143.0,1,3,19,3,10,126.8,0,0,0,1,1,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,Graduate +1,17,2,9670,1,1,110.0,1,1,1,4,10,115.3,1,0,0,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,9119,1,1,129.0,1,2,37,2,9,121.6,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Enrolled +1,15,1,9254,1,1,140.0,26,19,1,9,7,140.0,1,0,0,0,0,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,118.0,1,19,38,7,9,113.5,1,0,0,1,0,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,5,9853,1,1,110.0,1,19,37,7,7,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,171,1,1,145.0,1,3,1,2,10,114.5,1,0,0,1,1,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,43,2,9670,1,1,125.0,1,38,19,4,3,106.6,1,0,0,1,0,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Dropout +4,39,1,9500,1,19,133.1,1,37,37,5,7,100.0,0,0,0,0,0,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,133.0,1,1,1,9,9,119.7,1,1,1,1,1,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,Graduate +1,1,2,9853,1,1,134.0,1,1,38,9,8,122.5,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,120.0,1,19,37,3,9,100.0,0,0,0,1,0,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,37,37,6,6,100.0,0,0,1,0,1,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,160.0,1,38,38,6,6,160.0,1,0,0,1,0,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,7,116.0,0,0,0,1,0,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,Graduate +1,18,3,9500,1,1,145.0,1,1,1,4,8,133.6,1,0,0,1,0,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,3,19,2,3,124.5,0,0,0,1,0,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,125.0,1,19,38,9,8,118.3,0,0,0,1,1,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,Dropout +1,5,1,9085,1,1,150.0,1,1,1,4,4,139.4,0,0,0,1,0,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9773,1,1,133.1,1,38,38,9,5,117.0,0,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,142.0,1,1,1,4,7,131.0,1,0,0,1,0,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,1,19,3,3,154.3,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9147,1,1,135.0,1,37,38,9,9,128.0,1,0,1,1,0,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,149.0,1,37,37,9,9,138.0,0,0,0,1,1,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,38,9,9,129.2,1,0,0,1,0,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9556,1,1,147.0,1,3,4,3,2,100.0,0,0,0,1,0,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,12,133.1,1,37,37,10,9,144.0,0,0,0,1,1,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9254,1,1,100.0,1,3,19,3,5,115.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9670,1,1,140.0,1,1,1,4,3,133.4,0,0,0,1,1,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,Enrolled +1,1,2,171,1,1,127.0,1,3,39,1,3,133.5,1,0,0,1,1,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9147,1,1,112.0,1,1,19,3,5,107.8,1,0,0,1,0,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,Enrolled +2,39,1,9147,1,1,110.0,1,37,37,9,10,140.0,0,0,0,1,0,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,120.0,1,1,3,175,121,105.9,0,0,0,1,0,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,Enrolled +1,1,1,9238,1,1,168.0,1,37,37,9,9,149.5,0,0,0,1,0,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,Graduate +1,17,1,8014,0,1,141.0,1,34,34,0,0,136.1,0,0,0,1,0,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,140.0,1,1,1,4,3,130.7,1,0,0,1,1,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,Dropout +1,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,134.0,1,1,37,8,7,120.5,1,0,0,1,1,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,160.0,1,1,38,4,7,141.5,1,0,0,1,1,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,122.0,1,38,37,191,195,112.9,1,0,0,1,0,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,41,1,1,9,7,163.1,1,0,0,0,0,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,1,110.0,1,1,37,9,9,126.0,1,0,0,1,1,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,Enrolled +1,17,1,9670,1,1,109.0,1,1,1,4,4,108.0,0,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,131.0,2,37,1,9,3,126.1,1,0,0,1,1,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,1,2,9556,1,1,125.0,1,38,1,9,3,116.3,1,0,0,1,0,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,Graduate +1,17,1,9085,1,1,138.0,1,2,19,2,9,126.8,1,0,0,1,0,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,Enrolled +1,1,5,9853,1,1,128.0,1,38,37,9,9,120.3,1,0,1,0,0,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,130.0,1,1,38,4,9,122.7,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,9,133.1,1,37,34,90,90,118.1,1,0,0,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,125.0,1,1,19,4,9,114.5,1,0,0,1,0,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,Graduate +1,1,5,9773,1,1,138.0,1,19,19,9,9,139.4,1,0,0,1,0,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,125.0,1,19,38,3,5,115.9,0,0,0,1,0,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,134.0,1,38,19,5,8,120.7,0,0,0,1,0,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,133.1,41,3,1,3,10,100.0,1,0,0,0,0,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,Dropout +5,39,1,9003,1,1,133.1,1,37,37,9,7,110.0,0,0,1,0,0,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,Dropout +1,17,1,9254,1,1,128.0,1,19,1,5,7,120.7,1,0,1,1,0,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,162.0,1,19,19,4,7,152.9,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,51,1,9238,1,1,121.0,1,3,19,3,10,111.9,1,0,0,1,0,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,Graduate +1,39,2,9991,0,1,172.0,1,19,37,9,8,150.0,1,0,0,1,0,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,116.0,1,19,19,9,8,119.9,1,0,0,1,0,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,125.0,1,19,19,3,10,131.0,1,0,0,1,1,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,39,1,9500,1,4,150.0,1,3,38,3,7,127.0,1,0,0,1,1,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,128.0,1,38,38,9,9,129.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,120.0,1,3,19,4,5,115.5,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,38,38,9,6,160.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,130.0,1,3,1,2,9,130.0,1,0,0,1,0,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,140.0,1,1,19,4,8,124.6,1,0,0,1,0,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,3,3,2,2,150.0,1,0,0,1,0,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9853,1,1,133.1,1,37,19,9,5,138.3,0,0,0,1,0,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,Dropout +1,43,1,9991,0,1,150.0,1,3,3,4,4,100.0,1,0,0,1,1,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,Graduate +1,44,1,9238,1,1,150.0,1,1,38,4,9,145.9,0,0,0,1,0,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,Graduate +1,18,3,9500,1,1,131.0,1,19,1,4,7,127.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,Graduate +1,7,1,9085,1,3,150.0,1,19,37,90,90,140.0,0,0,0,1,1,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,167.0,1,19,19,9,7,156.2,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,140.0,1,1,3,4,5,130.0,0,0,0,1,1,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9238,1,1,132.0,1,1,19,4,9,127.1,1,0,0,1,0,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9119,1,1,133.0,1,3,1,3,4,121.8,1,0,0,1,1,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9670,1,1,133.1,1,1,37,4,5,150.0,0,0,0,1,1,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,150.0,103,37,37,9,9,134.6,0,0,0,1,1,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,6,9773,1,1,131.0,1,34,34,0,0,129.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,139.0,1,3,1,4,1,126.0,1,0,0,1,1,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,138.0,1,1,1,4,8,123.0,0,0,1,0,1,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,Enrolled +5,39,1,9853,1,19,133.1,1,37,37,9,8,118.0,0,0,0,1,0,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,142.0,1,37,38,9,9,137.3,1,0,0,1,0,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,136.0,1,3,38,2,9,125.7,1,0,0,1,0,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,1,1,4,10,128.3,1,0,0,1,0,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,132.0,1,1,37,4,9,127.1,0,0,0,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,122.0,1,19,19,7,7,116.1,1,0,0,1,0,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,140.0,1,1,2,3,3,140.0,0,0,0,1,0,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,Enrolled +1,42,1,9853,1,12,133.1,1,1,3,3,2,133.7,0,0,0,1,0,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,Dropout +2,7,1,9500,1,3,120.0,1,37,19,9,7,120.0,1,0,0,1,0,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,Enrolled +1,1,4,9238,1,1,134.0,1,38,19,7,7,128.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,130.0,1,19,38,4,7,121.3,1,0,0,1,0,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,Graduate +1,39,2,9238,1,1,110.0,1,19,1,5,5,136.5,0,0,0,1,1,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9670,1,1,133.1,1,38,19,9,8,122.9,0,0,1,0,1,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,124.0,1,19,1,9,3,123.7,1,0,0,1,0,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,17,1,9991,0,1,120.0,1,38,3,9,3,116.9,1,0,1,0,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,43,2,9147,1,1,160.0,1,37,37,9,9,96.0,0,0,0,0,0,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,154.0,1,19,37,9,7,140.4,1,0,0,1,0,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,Enrolled +1,17,5,9070,1,1,125.0,1,19,1,5,5,122.6,1,0,0,1,1,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9119,1,1,137.0,1,1,1,4,4,130.4,1,0,1,1,1,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,134.0,1,37,19,9,9,136.8,1,0,0,1,1,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,100.0,1,37,37,0,0,128.0,1,0,0,1,1,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +4,39,1,9130,1,19,133.1,1,37,38,9,4,100.9,0,0,0,1,1,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,127.0,1,1,19,5,7,130.5,1,0,0,1,0,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,1,1,9003,1,1,131.0,1,19,38,5,5,118.4,0,0,0,1,0,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,142.0,1,1,38,5,7,127.7,0,0,0,1,0,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,130.0,1,1,38,4,9,115.0,0,0,0,1,1,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,100.0,0,0,0,1,0,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,134.0,1,1,19,9,5,121.8,1,0,0,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,3,9853,1,1,122.0,1,1,3,5,3,113.6,0,0,0,1,0,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,114.0,1,37,37,7,8,116.7,0,0,0,1,1,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,130.0,1,3,1,3,3,120.5,0,0,0,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,148.0,1,19,19,4,5,143.5,0,0,0,1,0,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,19,9,9,107.0,0,0,0,0,1,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,130.0,1,3,19,5,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,6,120.0,0,0,0,0,0,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,1,2,9853,1,1,123.0,1,19,1,194,103,115.3,1,0,0,1,0,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,Enrolled +1,18,1,9130,1,1,135.0,1,38,19,9,5,121.7,1,0,0,1,0,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,116.0,1,38,38,5,8,110.8,1,0,0,1,0,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,7,1,9147,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9991,0,1,133.1,41,37,37,9,8,114.7,0,0,0,1,0,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,122.0,1,37,37,9,7,120.6,1,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,150.0,1,5,5,2,2,146.2,0,0,0,1,0,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,130.0,1,1,4,3,10,130.0,0,0,0,1,0,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9085,1,19,110.0,1,37,37,90,90,110.0,0,0,0,0,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,140.0,1,1,1,9,9,136.9,1,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,44,1,9085,1,39,150.0,1,19,19,9,9,150.0,1,0,0,1,0,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +2,43,1,9003,1,1,149.0,1,1,1,4,5,156.1,1,0,0,0,1,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9119,1,1,133.1,1,1,1,9,3,136.0,0,0,0,1,1,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,Dropout +1,16,2,9238,1,1,122.0,1,19,37,9,7,127.3,1,0,0,1,0,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,133.0,1,1,1,6,7,134.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,141.0,1,19,38,9,9,130.5,0,0,0,1,1,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,121.0,1,1,3,9,3,123.8,0,0,0,0,1,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,39,140.0,1,1,1,4,3,138.6,0,0,0,1,1,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9991,0,1,145.0,1,2,37,4,9,127.5,1,0,0,1,1,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,100.0,1,37,19,9,2,121.9,0,0,0,0,0,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,120.0,1,38,38,9,9,148.5,0,0,0,1,0,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +5,39,1,9991,0,1,110.0,1,1,1,3,3,119.0,0,0,0,1,1,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9254,1,1,137.0,1,1,38,2,8,122.3,1,0,0,1,1,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,42,1,9238,1,1,133.1,1,1,19,4,9,134.0,0,0,0,1,0,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,38,37,9,7,130.0,1,0,0,1,1,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,Graduate +5,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,120.0,1,37,37,9,9,111.1,0,0,0,1,0,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,124.0,1,38,19,6,10,126.8,1,0,0,1,0,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,Graduate +2,1,1,9500,1,1,151.0,1,37,38,9,7,134.5,0,0,1,1,0,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,133.0,1,19,37,9,8,121.8,1,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,148.0,1,1,19,4,5,135.1,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,120.0,1,19,38,4,8,122.5,0,0,0,0,1,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9070,1,1,140.0,1,37,37,9,10,118.0,0,0,1,1,1,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,3,133.1,1,9,9,90,90,130.0,0,0,0,1,0,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,150.0,1,34,34,0,0,108.0,0,0,0,1,0,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,1,150.0,1,1,38,3,5,120.0,0,0,0,1,1,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,Enrolled +1,44,1,9085,1,39,150.0,1,38,1,5,5,150.0,0,0,0,1,0,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,1,2,9238,1,1,133.1,1,19,19,9,9,106.0,1,0,0,1,0,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,102.0,1,38,38,9,9,99.6,1,0,0,1,0,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,140.0,1,38,19,9,5,130.0,0,0,1,1,0,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9773,1,1,138.0,1,3,1,2,3,135.9,1,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,1,9,4,150.0,1,0,0,1,1,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,Dropout +1,1,6,9147,1,1,127.0,1,1,19,1,6,120.0,1,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,0,0,0,1,1,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,137.0,1,38,38,4,8,126.5,1,0,0,1,0,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,1,19,4,4,132.6,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,130.0,1,1,1,4,9,150.0,0,0,0,1,1,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,146.0,1,3,1,1,3,149.2,1,0,0,1,0,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,129.0,1,38,38,6,6,118.5,1,0,0,1,0,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,131.0,1,19,3,3,2,126.1,1,0,0,1,0,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,Enrolled +1,39,1,9085,1,43,160.0,1,3,39,2,3,172.0,0,0,0,1,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,39,1,9670,1,1,133.1,1,1,1,4,4,112.9,0,0,0,1,0,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,Dropout +2,39,1,9003,1,1,150.0,1,37,37,9,6,140.0,0,0,0,1,1,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,127.0,1,37,38,9,7,115.8,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,133.1,1,1,37,5,9,143.0,1,0,1,1,0,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,9,138.4,1,0,1,1,0,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9070,1,1,125.0,1,1,1,4,4,132.0,0,0,0,0,0,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,5,9130,1,1,160.0,1,3,1,2,9,150.2,1,0,0,1,0,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,1,110.0,1,37,37,9,4,160.0,0,0,0,1,0,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,135.0,1,19,37,5,7,121.4,0,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9670,1,1,135.0,1,19,19,7,10,121.4,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,125.0,1,1,38,4,9,118.4,1,0,0,1,0,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,145.0,1,38,37,5,6,127.5,1,0,0,1,0,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,Graduate +1,43,3,171,1,1,140.0,1,37,38,7,7,143.4,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,134.0,1,37,19,9,10,141.4,1,0,0,1,0,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,130.0,1,29,38,9,8,122.0,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,109.0,1,19,19,4,9,104.1,1,0,1,0,0,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,116.0,1,34,34,0,0,127.0,1,0,0,1,1,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,3,8014,0,19,100.0,1,37,37,9,9,120.0,1,0,0,1,1,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9238,1,1,122.0,1,37,38,4,7,118.2,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,8014,0,1,100.0,1,12,5,9,4,116.5,0,0,1,0,0,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,122.0,1,19,19,193,194,112.6,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,42,3,9500,1,1,136.0,1,1,1,4,4,148.8,1,0,0,1,0,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,137.0,1,19,1,9,9,132.8,0,0,0,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,130.0,1,37,37,6,6,111.9,0,0,1,1,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9254,1,1,116.0,1,19,38,5,5,116.0,1,0,0,1,0,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9500,1,1,131.0,1,1,3,3,2,121.2,1,0,0,1,0,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,141.0,1,1,19,3,3,131.9,1,0,0,1,0,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,120.0,1,37,37,9,10,122.6,0,0,0,1,0,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,Dropout +1,18,5,9119,1,1,136.0,1,3,2,2,3,125.2,1,0,0,1,1,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,125.0,1,19,1,7,4,122.6,0,0,0,1,1,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,139.0,1,19,37,9,9,131.5,1,0,0,1,0,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,Graduate +1,5,1,9853,1,1,119.0,1,1,38,5,8,118.3,1,0,0,1,0,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9773,1,1,125.0,1,1,38,5,6,115.9,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,126.0,1,1,19,4,8,120.1,1,0,0,1,0,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,Graduate +1,17,1,9085,1,1,125.0,1,1,37,4,9,117.0,1,0,0,1,0,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,135.0,1,19,38,7,5,121.0,0,0,0,1,0,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,138.0,1,38,37,3,3,133.1,0,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,148.0,1,19,37,9,5,130.9,0,0,0,0,1,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,145.0,1,12,1,4,10,139.8,1,0,0,1,0,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,118.0,1,37,37,3,5,110.0,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9147,1,1,99.0,1,3,1,3,3,99.7,1,0,1,0,0,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,17,2,9556,1,1,137.0,41,1,1,7,7,124.4,1,0,0,1,0,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,Graduate +1,17,3,9853,1,1,133.1,1,34,34,0,0,115.0,0,0,0,1,0,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,123.0,1,37,38,9,9,113.9,1,0,1,0,0,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,1,4,9238,1,1,125.0,1,19,38,9,6,114.9,1,0,1,1,0,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,Enrolled +1,18,1,8014,0,1,137.0,1,1,1,4,3,123.0,0,0,1,1,0,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,Graduate +1,43,1,8014,0,1,131.0,1,19,37,8,5,125.0,0,0,0,1,1,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9147,1,3,150.0,1,6,27,1,7,150.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,9,4,117.0,0,0,0,1,0,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,133.1,1,37,1,9,10,100.0,0,0,0,1,0,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,Dropout +1,1,3,9670,1,1,121.0,1,1,19,5,5,111.9,1,0,0,1,1,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,133.1,1,1,19,3,3,112.0,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,43,1,9991,0,1,140.0,1,1,1,6,6,100.0,0,0,0,1,1,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,Graduate +2,42,1,9556,1,1,110.0,1,37,37,9,6,140.0,0,0,0,1,1,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,130.0,1,1,1,4,4,124.8,0,0,0,1,0,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,138.0,1,38,37,9,6,126.8,1,0,0,1,1,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,127.0,1,2,37,9,9,115.8,1,0,1,0,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9085,1,1,170.0,1,1,1,4,5,166.6,0,0,1,0,0,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,130.0,1,1,1,4,4,130.0,1,1,0,1,1,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,3,1,2,8,100.0,1,0,0,1,1,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9670,1,1,106.0,1,3,1,2,3,105.7,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,43,1,9556,1,1,140.0,1,37,37,9,9,128.0,1,0,0,0,0,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,127.0,1,1,4,9,10,121.8,0,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,134.0,1,1,1,9,6,130.9,0,0,1,1,0,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,133.1,1,37,37,7,4,132.0,0,0,0,1,1,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,110.0,1,12,3,5,2,100.0,1,0,0,1,1,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,6,9238,1,1,113.0,1,1,38,194,163,112.3,1,0,1,1,0,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,118.0,1,19,19,5,7,121.2,0,0,0,1,1,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,51,1,9773,1,1,158.0,1,1,19,8,8,117.1,1,0,0,1,1,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,Dropout +1,17,1,9070,1,1,119.0,1,37,38,9,8,124.6,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,111.0,1,19,19,3,10,117.7,0,0,0,1,0,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,140.0,1,3,1,5,9,130.0,0,0,0,1,1,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,122.0,1,3,1,9,10,114.7,0,0,0,1,0,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,Graduate +2,39,1,9238,1,19,133.1,1,1,2,4,6,130.0,0,0,0,1,0,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9500,1,1,131.0,1,38,1,5,7,118.4,1,0,0,1,0,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Dropout +1,43,5,9853,1,1,150.0,1,34,34,0,0,150.2,1,0,0,0,0,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,140.0,1,37,19,9,9,166.0,1,0,1,1,1,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9085,1,1,133.1,1,19,37,9,6,130.0,1,0,0,1,0,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,Graduate +1,1,4,9147,1,1,120.0,1,38,38,5,10,111.3,0,0,0,1,1,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,Enrolled +1,1,5,9500,1,1,125.0,1,3,19,4,8,120.3,1,0,0,1,0,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,Enrolled +1,17,2,9556,1,1,136.0,1,1,1,9,9,128.3,0,0,0,1,0,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,133.1,1,38,19,5,5,128.0,0,0,0,1,0,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,9,133.1,1,37,37,5,3,110.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9254,1,1,118.0,1,19,1,4,4,115.9,1,0,0,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,134.0,1,19,37,7,7,136.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,130.0,1,37,37,9,7,119.9,0,0,0,1,0,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9773,1,1,153.0,1,34,34,99,99,133.1,1,0,1,1,0,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,10,133.1,1,12,36,90,90,128.2,0,0,0,0,1,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,1,9991,0,1,112.0,1,43,40,2,2,106.4,0,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,122.0,1,3,3,2,2,122.0,1,0,0,1,0,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,137.0,1,1,19,4,3,121.3,1,0,0,1,1,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,19,133.1,1,3,1,2,5,103.0,0,0,0,1,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,136.0,1,1,19,9,9,131.5,0,0,0,1,0,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,154.0,1,1,3,4,2,164.9,0,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,6,9147,1,1,129.0,1,19,1,9,4,122.0,1,0,0,1,1,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,132.0,1,19,19,9,7,128.0,1,0,0,1,1,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,Graduate +2,39,1,9773,1,19,133.1,1,19,19,9,4,131.0,0,0,1,0,1,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,Dropout +4,39,1,8014,0,1,160.0,1,37,37,5,5,126.0,0,0,0,1,0,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,16,2,9238,1,1,126.0,1,38,37,3,5,127.1,1,0,0,1,0,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9254,1,1,111.0,1,1,19,5,7,109.3,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,133.1,1,37,37,3,10,108.0,0,0,0,1,0,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,Graduate +1,1,4,9773,1,1,140.0,22,1,37,3,9,130.5,1,0,0,1,0,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,140.0,1,1,1,9,5,140.0,0,0,0,1,0,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,Dropout +1,17,3,9670,1,1,125.0,1,1,3,4,3,117.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,150.0,1,37,38,9,9,131.5,1,0,0,1,0,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,5,100.0,0,0,0,0,1,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9773,1,1,133.0,1,19,19,7,7,134.4,1,0,0,1,1,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,135.0,1,19,37,9,9,128.0,1,0,0,1,0,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,5,9670,1,1,115.0,1,1,19,5,5,117.1,0,0,0,1,0,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,Enrolled +1,51,1,9003,1,39,130.0,1,1,19,4,4,120.0,1,0,1,0,1,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,Dropout +1,1,3,9773,1,1,117.0,1,38,19,7,7,110.4,1,0,1,0,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9773,1,1,127.0,1,19,38,8,3,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,38,37,1,1,115.0,1,0,0,1,0,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,18,2,9853,1,1,123.0,1,1,3,9,2,123.7,1,0,1,0,0,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,Dropout +1,1,3,9853,1,1,122.0,1,3,3,2,2,112.6,1,0,0,1,0,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,17,3,9254,1,1,127.0,1,37,37,9,6,123.5,1,0,0,1,0,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,141.0,1,37,37,9,9,136.3,1,0,0,1,1,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,140.0,1,3,3,2,2,124.3,0,0,0,0,1,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,125.0,1,1,3,4,1,121.9,1,0,0,1,1,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,Dropout +1,17,1,9070,1,1,134.0,1,1,1,5,0,133.3,1,0,0,1,1,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9670,1,1,127.0,22,37,37,9,9,127.0,1,0,0,1,1,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,Graduate +1,42,1,9853,1,1,120.0,1,37,38,3,3,113.7,0,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,3,9670,1,1,121.0,1,3,19,2,8,122.4,1,0,0,1,1,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,Enrolled +1,1,3,171,1,1,139.0,1,19,19,5,3,128.2,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,42,1,9085,1,1,100.0,1,1,38,4,9,100.0,1,0,0,1,0,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,10,1,9500,1,1,140.0,24,3,3,2,9,140.0,1,0,1,0,0,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,132.0,1,37,19,9,9,131.0,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,124.0,1,1,1,4,4,127.9,1,0,0,1,1,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9119,1,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9773,1,1,117.0,1,38,38,9,9,111.1,0,0,1,1,1,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,19,133.1,1,19,37,9,9,149.4,0,0,0,0,1,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,1,1,161.9,0,0,0,1,1,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,140.0,1,38,37,4,7,130.0,1,0,0,0,0,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,43,1,171,1,1,145.0,1,19,38,9,9,100.0,0,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9773,1,1,120.0,1,37,38,9,3,155.5,0,0,0,1,1,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,121.8,0,0,0,0,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9130,1,3,140.0,1,5,4,2,0,140.0,0,0,1,0,0,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,Dropout +1,51,1,171,1,1,128.0,1,2,1,3,3,131.2,1,0,0,1,1,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,12,110.0,1,37,37,7,9,120.0,0,0,0,1,0,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,150.0,1,2,3,3,2,140.8,0,0,0,1,0,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,Enrolled +1,43,1,9070,1,1,125.0,1,19,19,7,8,133.4,1,0,0,1,1,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,Enrolled +1,1,5,171,1,1,160.0,1,1,1,4,4,139.7,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,1,120.0,1,1,38,9,9,150.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,154.0,1,19,19,3,3,142.0,0,0,0,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9254,1,1,110.0,1,4,19,4,3,114.8,1,0,0,0,1,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9119,1,1,140.0,1,34,34,9,9,140.0,0,0,0,0,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,125.0,1,1,1,4,2,134.1,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9254,1,40,130.0,1,1,1,3,6,130.0,0,0,0,1,0,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9254,1,1,122.0,1,37,37,9,3,124.5,1,0,0,1,0,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,130.0,1,1,3,9,2,128.6,1,0,0,1,0,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,Graduate +1,17,4,9670,1,1,122.0,1,3,1,2,3,119.6,1,0,0,1,1,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,Graduate +1,44,3,9085,1,39,150.0,1,1,19,4,1,150.0,1,0,0,1,0,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,19,37,9,9,130.0,1,0,0,1,1,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,133.1,1,38,19,4,7,98.0,1,0,0,1,1,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,Enrolled +1,17,2,9556,1,1,125.0,1,38,19,7,7,121.5,1,0,0,1,0,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,Dropout +2,1,4,9500,1,1,143.0,1,38,38,5,5,128.7,1,0,0,1,0,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,1,100.0,1,1,19,4,8,122.0,0,0,0,1,0,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,Graduate +1,51,1,9500,1,1,170.0,1,1,1,4,10,125.0,0,0,0,1,1,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,Graduate +1,18,4,9500,1,1,137.0,1,3,1,3,4,126.7,1,0,0,1,0,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,19,133.1,1,38,38,9,8,106.0,1,0,0,1,1,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,40,130.0,1,19,1,3,4,152.0,1,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9085,1,39,140.0,1,1,39,3,9,140.0,1,0,0,1,0,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9773,1,1,133.1,1,3,1,4,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +2,43,1,9853,1,1,110.0,1,37,37,7,7,100.0,0,0,0,1,1,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,Graduate +1,7,1,9119,1,3,120.0,1,19,19,1,1,120.0,0,0,0,0,1,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,1,130.0,1,34,34,99,99,114.8,0,0,0,1,0,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,140.0,1,37,3,9,10,172.0,0,0,0,1,1,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,Enrolled +1,17,2,9670,1,1,123.0,1,34,37,0,0,114.6,1,0,1,0,0,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,Dropout +1,43,2,9500,1,1,136.0,1,19,1,9,10,124.1,0,0,0,1,1,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,116.0,1,1,1,1,1,110.8,1,0,0,1,0,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9003,1,1,133.1,1,37,37,4,7,130.0,0,0,1,0,1,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,Dropout +1,1,3,9085,1,1,158.0,1,1,19,9,9,153.6,1,0,0,1,0,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,Graduate +1,17,4,9773,1,1,121.0,1,1,19,9,8,120.3,1,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,5,3,9085,1,1,141.0,1,1,19,7,5,128.8,1,0,0,1,0,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,Enrolled +1,18,4,9556,1,1,127.0,1,1,38,4,7,121.8,1,0,0,1,0,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,110.0,1,34,34,0,0,114.6,1,0,0,1,0,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9085,1,1,128.0,1,38,19,8,8,117.2,0,0,0,1,1,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,143.0,1,1,38,3,3,133.2,1,0,0,1,0,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,Graduate +1,1,4,9853,1,1,134.0,1,19,1,5,9,127.4,1,0,0,1,0,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Enrolled +1,1,1,9670,1,1,133.1,1,3,1,1,7,155.0,0,0,0,1,0,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,114.0,1,19,38,9,7,129.1,0,0,0,1,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,149.0,1,19,37,7,4,134.3,0,1,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,130.0,1,1,38,3,5,128.6,1,0,0,1,1,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,42,1,9147,1,1,139.0,1,3,38,2,5,112.3,1,0,0,1,0,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,Enrolled +1,1,3,9773,1,1,130.0,1,19,19,9,9,123.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,38,38,9,5,100.0,0,0,0,1,0,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,Enrolled +6,39,1,8014,0,1,133.1,1,37,1,9,7,114.8,0,0,0,1,0,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,121.0,1,1,38,4,9,114.4,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,18,1,9238,1,1,122.0,1,38,38,9,7,114.7,0,0,1,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9773,1,1,120.0,1,1,1,2,5,127.0,1,0,0,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,4,1,2,8,120.0,0,0,0,1,1,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,3,9500,1,1,143.0,1,38,1,9,5,133.8,1,0,0,1,0,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,130.0,1,1,19,9,7,133.8,0,0,1,1,0,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,Graduate +2,39,1,9556,1,1,100.0,1,37,37,9,9,120.0,0,0,0,1,0,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,133.1,1,1,19,5,4,102.5,0,0,0,1,0,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9003,1,1,111.0,1,1,3,4,2,162.4,0,0,1,0,1,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,133.1,1,19,1,9,3,107.0,1,0,0,1,0,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,128.0,1,19,1,4,4,124.3,1,0,0,1,1,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,140.0,1,36,14,9,10,130.0,1,0,0,1,1,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,150.0,1,38,19,7,10,134.6,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9070,1,1,134.0,1,34,1,5,7,129.8,1,0,0,1,0,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,150.0,1,37,37,9,3,150.0,1,0,0,1,1,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,Dropout +2,39,1,9238,1,1,126.6,1,38,38,9,7,107.5,0,0,1,1,0,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,120.0,1,37,37,9,7,106.8,0,0,0,1,0,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9254,1,1,117.0,1,1,1,5,5,116.3,1,0,0,1,1,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,130.0,1,19,19,5,5,157.0,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9556,1,1,133.1,1,44,40,2,2,115.5,0,0,0,1,0,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,133.1,1,3,1,2,4,125.0,0,0,0,1,1,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,9,9,100.0,0,0,0,0,1,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9500,1,1,141.0,1,37,1,9,4,127.3,1,0,0,1,0,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,117.0,1,38,38,175,183,113.2,1,0,1,1,0,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,133.1,1,37,37,7,7,124.5,0,0,0,0,1,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,Dropout +1,17,2,9070,1,1,133.1,1,37,38,9,10,178.0,1,0,0,1,1,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,19,9,9,115.0,1,0,0,1,1,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,146.0,1,1,1,3,4,128.2,0,0,1,1,0,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,4,9070,1,1,128.0,1,1,1,9,10,136.1,1,0,1,0,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,Dropout +5,39,1,9500,1,3,140.0,1,37,38,9,9,160.0,0,0,0,1,0,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,8,121.0,0,0,1,0,0,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,140.0,1,2,1,2,3,140.0,1,0,0,1,0,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,3,9670,1,1,126.0,1,37,37,0,0,136.5,1,0,0,1,0,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,140.0,1,19,37,9,9,130.2,1,0,0,1,0,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,1,3,1,2,133.0,0,0,0,1,0,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,136.0,1,19,38,9,9,121.7,1,0,0,1,1,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,4,9085,1,1,106.0,1,37,1,3,9,106.0,0,0,0,1,0,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,Enrolled +1,1,3,9500,1,1,135.0,1,1,37,7,7,120.5,1,0,0,1,0,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,115.0,1,19,19,7,7,115.0,1,0,0,1,0,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9238,1,1,160.0,1,38,1,9,3,124.0,0,0,1,1,1,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,129.0,1,38,38,5,5,120.8,1,0,0,1,0,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,160.0,41,37,19,9,9,160.0,0,0,0,1,0,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,132.0,1,1,19,7,5,129.9,1,0,0,1,1,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,136.0,1,37,38,9,8,139.2,1,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,127.0,1,19,37,9,7,121.3,1,0,0,1,0,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9119,1,1,142.0,1,1,38,4,3,129.8,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,5,8,133.2,0,0,0,0,1,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,Dropout +1,1,1,9147,1,1,150.0,1,1,19,5,5,137.8,1,0,0,1,1,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,135.0,1,3,1,2,4,129.8,1,0,0,1,1,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,Graduate +1,43,2,9773,1,1,132.0,1,19,19,0,0,127.1,0,0,0,1,1,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,3,9500,1,1,140.0,1,3,2,3,3,126.4,1,0,0,1,0,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,Dropout +2,39,2,9119,1,19,133.1,1,37,37,7,7,118.0,0,0,0,0,1,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,110.0,1,3,4,2,2,110.0,1,0,0,1,1,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,Dropout +2,39,1,9500,1,38,133.1,1,37,37,9,3,146.6,0,0,0,1,1,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,146.0,1,1,3,4,1,135.2,1,0,0,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,3,5,2,2,135.8,0,0,1,1,1,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9773,1,19,100.0,1,37,37,0,0,163.5,0,0,1,0,1,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,7,113.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,143.0,1,3,3,9,7,129.0,1,0,0,1,1,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,Graduate +1,1,2,9853,1,1,117.0,1,1,38,4,9,109.7,1,0,0,1,0,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9130,1,2,133.1,6,42,1,4,9,100.0,0,0,0,1,1,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,115.8,0,0,1,0,1,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9773,1,1,167.0,1,38,38,6,7,153.0,1,0,0,1,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,51,1,9238,1,1,141.0,1,1,1,5,9,125.0,0,0,0,1,1,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,4,9500,1,1,132.0,1,38,19,5,7,125.5,0,0,0,1,0,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,Graduate +1,1,1,9119,1,1,132.0,1,1,12,3,3,133.1,1,0,0,1,1,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,149.0,1,1,1,4,4,129.3,1,0,0,1,1,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,142.5,0,0,0,1,0,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,Enrolled +1,1,6,9773,1,1,133.1,1,1,37,3,3,100.0,1,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,138.0,1,37,37,9,6,145.0,1,0,0,1,0,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,19,19,3,6,124.3,1,0,0,1,0,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,135.0,1,37,37,9,7,132.6,1,0,0,1,0,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,159.0,1,34,26,0,6,160.1,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,133.1,1,37,37,6,8,100.0,0,0,1,1,0,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9070,1,1,153.0,1,3,3,1,2,146.7,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,43,1,171,1,2,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,141.0,1,19,19,9,8,142.8,0,0,0,1,0,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,39,2,9556,1,1,130.0,1,19,19,4,5,100.0,0,0,0,1,1,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,120.0,1,38,19,3,5,120.0,0,0,0,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,2,9147,1,1,120.0,1,37,37,9,9,104.0,0,0,0,0,1,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,150.0,1,38,38,9,9,132.0,1,0,0,1,0,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,142.0,1,38,38,9,9,132.9,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9085,1,1,160.0,1,4,19,2,5,162.1,1,0,0,1,0,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,8,130.2,1,0,0,1,0,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,118.0,1,1,1,9,9,111.0,0,0,0,0,1,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,119.0,1,37,37,10,6,119.7,1,0,0,1,0,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,Enrolled +1,17,2,171,1,1,137.0,1,1,1,4,1,143.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,18,3,9085,1,1,149.0,103,1,1,9,9,132.2,1,0,0,1,0,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,130.0,1,37,37,90,90,125.1,0,0,0,1,0,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,Graduate +4,17,5,8014,0,1,100.0,1,19,19,90,90,107.0,0,0,0,1,0,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,19,133.1,1,38,19,9,10,142.7,0,0,1,1,1,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,139.0,1,19,37,5,5,125.5,0,0,0,1,0,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,133.0,1,4,1,5,5,131.6,0,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,148.0,1,19,19,9,3,125.0,1,0,0,1,0,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,110.0,1,37,37,9,9,110.3,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,53,1,9003,1,42,130.0,1,38,38,9,9,130.0,1,0,1,1,1,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,Enrolled +1,1,4,9070,1,1,140.0,1,4,19,2,10,125.0,1,0,0,1,1,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9003,1,39,140.0,1,19,1,5,5,140.0,0,0,0,1,0,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,Enrolled +1,1,4,9070,1,1,136.0,1,37,37,9,8,136.7,1,0,0,1,0,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,1,5,9773,1,1,125.0,1,37,3,5,2,126.1,1,0,0,1,1,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,8014,0,1,126.0,1,37,38,9,10,119.4,0,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,123.0,1,1,3,2,2,118.8,0,0,0,1,1,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9500,1,1,144.0,1,1,37,9,9,127.5,1,0,0,1,0,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,125.0,1,38,37,8,7,131.7,1,0,0,1,1,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,144.0,1,37,37,8,8,138.4,0,0,0,1,0,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,160.0,1,37,37,3,4,97.0,0,0,0,1,0,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,37,38,9,9,125.0,1,0,0,1,0,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,117.0,1,37,37,9,9,109.3,0,0,0,0,0,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,3,130.0,1,37,37,9,9,146.2,0,0,0,1,0,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,150.0,1,37,37,9,9,130.3,0,0,0,1,0,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,Graduate +2,39,2,8014,0,19,100.0,1,37,37,4,7,100.0,0,0,1,1,0,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,38,133.1,1,38,37,4,8,95.5,0,0,0,1,1,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,120.7,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9119,1,19,120.0,1,37,37,9,4,98.6,0,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9130,1,1,120.0,1,19,37,1,9,116.1,1,0,0,1,1,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9500,1,1,136.0,1,1,1,4,9,128.5,1,0,0,1,0,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,132.0,1,38,37,7,7,131.3,1,0,0,1,0,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,115.0,1,38,38,9,8,108.4,1,0,0,1,0,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,120.0,1,37,37,9,9,98.7,0,0,0,1,1,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,120.0,1,37,37,9,9,155.8,0,0,0,1,1,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,151.0,1,19,1,5,0,144.4,1,0,0,1,0,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,Graduate +1,43,2,9147,1,1,131.0,1,19,37,5,9,123.7,1,0,0,1,0,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,Enrolled +1,17,4,9085,1,1,128.0,1,38,37,4,9,117.9,1,0,0,1,0,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,8014,0,12,133.1,1,37,1,9,10,112.5,0,0,0,1,1,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,19,133.1,1,37,37,4,8,140.0,0,0,0,1,0,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,7,1,9147,1,2,150.0,1,3,37,2,5,150.0,1,0,1,0,0,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,2,9147,1,1,102.0,1,37,38,191,143,101.7,1,0,0,1,0,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,128.0,1,19,1,4,1,118.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,133.1,1,19,1,4,8,144.3,0,0,0,1,1,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,5,9254,1,1,128.0,1,19,1,7,10,116.5,1,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,140.0,1,19,19,7,5,135.1,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,18,2,9500,1,1,129.0,1,38,37,5,5,119.0,1,0,0,1,0,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,3,1,3,3,131.5,1,0,0,1,0,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,143.0,1,3,3,2,5,144.8,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,127.0,1,37,37,9,8,123.2,1,0,0,1,0,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9500,1,1,125.0,1,37,37,9,7,123.6,1,0,0,1,0,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,138.0,1,1,38,3,9,123.0,1,0,0,1,0,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,139.0,1,38,38,9,9,145.0,1,0,0,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,121.0,1,37,19,6,7,116.8,1,0,0,1,0,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,2,9085,1,1,123.0,1,1,19,4,9,113.6,1,0,0,1,0,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,17,6,9773,1,1,126.0,1,1,19,5,5,119.0,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,4,9119,1,1,139.0,1,37,19,9,4,133.1,1,0,0,1,1,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,158.0,1,1,38,3,6,155.2,0,0,0,1,1,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,8014,0,1,133.1,1,19,1,1,1,118.0,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,136.0,1,22,30,0,8,135.7,1,0,0,1,0,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,120.0,1,37,37,9,9,110.0,0,0,0,0,1,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,124.0,1,19,19,7,9,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,Enrolled +5,7,1,9991,0,2,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,4,9238,1,1,123.0,1,38,1,4,10,129.0,1,0,0,1,0,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,4,9119,1,1,135.0,1,38,37,5,7,126.6,1,0,0,1,1,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,129.0,1,5,3,5,7,124.8,1,0,0,1,0,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,Graduate +1,17,5,9147,1,1,127.0,1,1,38,4,5,124.6,1,0,0,1,0,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,135.0,1,1,1,4,4,118.5,0,0,0,1,0,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,171,1,1,142.0,1,3,1,2,6,139.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9147,1,1,133.1,1,19,19,9,9,119.8,0,0,0,1,1,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,123.0,1,1,37,9,9,132.1,0,0,0,1,0,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9853,1,1,115.0,1,3,37,2,5,108.7,1,0,0,1,0,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,12,133.1,1,37,34,90,90,110.7,1,0,0,1,0,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,155.0,1,4,3,1,1,144.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9254,1,1,105.0,1,1,19,9,6,106.1,1,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,150.0,1,19,19,3,4,135.0,0,0,0,1,0,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,152.0,1,37,37,5,7,136.3,0,0,0,1,0,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,34,34,0,0,120.5,1,0,0,1,1,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,140.0,1,1,37,4,5,123.6,1,0,0,1,0,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,120.0,1,37,37,9,9,150.1,1,0,0,1,1,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,144.0,1,37,38,9,9,126.9,0,0,0,1,0,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,120.0,1,37,37,9,9,128.2,0,0,0,0,1,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,Dropout +1,18,2,9147,1,1,115.0,1,1,37,5,5,108.7,1,0,0,1,0,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,140.0,1,19,19,4,4,140.0,1,0,0,0,1,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,1,1,3,7,140.0,1,0,0,1,0,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9500,1,1,129.0,1,19,19,5,5,119.6,1,0,0,1,0,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,Graduate +1,17,6,9773,1,1,141.0,1,37,37,5,5,127.7,1,0,0,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,137.0,1,19,37,4,7,126.3,1,0,0,1,0,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,1,168.0,1,1,41,9,3,153.9,0,0,1,0,1,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,133.0,1,37,37,9,9,121.8,1,0,0,1,0,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,119.0,1,2,1,4,3,113.1,1,0,0,1,0,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,142.0,1,38,19,141,171,115.0,0,0,0,1,0,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,4,9773,1,1,138.0,1,37,19,5,7,133.5,1,0,0,0,0,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +2,7,1,8014,0,3,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,133.0,1,3,19,2,5,130.8,1,0,0,1,0,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,137.0,1,38,19,152,171,131.1,1,0,0,1,0,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9119,1,1,130.0,1,1,38,3,3,129.3,0,0,0,1,1,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Graduate +1,43,1,9773,1,1,126.0,1,1,37,3,0,110.0,0,0,1,1,0,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,116.0,1,1,12,5,8,110.4,1,0,0,1,1,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,1,1,4,10,110.0,0,0,1,1,0,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,5,9238,1,1,134.0,1,38,37,9,9,126.0,0,0,1,0,0,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,Dropout +2,39,1,9147,1,1,130.0,1,1,19,9,9,109.9,0,0,0,0,0,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9085,1,1,133.1,41,37,37,9,9,109.6,0,0,0,1,0,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,1,140.0,0,0,0,1,1,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,Enrolled +2,39,1,9991,0,19,133.1,1,38,38,90,90,121.7,1,0,0,1,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,143.0,1,1,3,4,7,129.7,1,0,0,1,0,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,133.0,1,1,19,9,6,121.5,1,0,0,1,0,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,133.0,1,38,37,9,9,125.3,1,0,0,1,0,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,Graduate +1,42,1,9991,0,1,160.0,1,1,2,4,3,120.0,0,0,0,1,0,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,Graduate +2,39,2,9556,1,1,133.1,105,1,3,9,2,152.8,1,0,0,1,0,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,123.0,1,1,1,4,6,118.8,1,0,0,1,0,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,122.0,1,3,19,2,3,112.9,0,0,0,1,0,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,Graduate +1,1,5,9853,1,1,123.0,1,1,12,4,9,113.2,1,0,0,1,0,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,140.0,1,37,37,9,9,141.5,1,0,1,0,0,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,129.0,1,19,19,4,8,127.3,1,0,0,1,0,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,1,130.0,1,37,37,6,6,110.0,0,0,0,1,0,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,Enrolled +4,39,1,8014,0,19,133.1,1,37,37,9,9,95.0,0,0,1,0,0,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9853,1,1,127.0,1,37,19,9,8,137.5,1,0,0,1,0,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,142.0,1,38,37,5,7,128.8,1,0,0,1,0,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,Graduate +1,17,2,9147,1,1,142.0,1,19,19,4,8,127.3,0,0,0,1,0,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +3,39,1,9991,0,1,120.0,1,37,1,9,2,170.0,0,0,0,1,1,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,138.0,1,19,37,4,9,141.0,0,0,0,1,1,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,132.0,1,1,38,9,9,120.1,1,0,0,1,1,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,140.0,1,1,1,2,7,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,121.0,1,37,19,9,10,113.7,0,0,0,1,0,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,Enrolled +1,39,1,8014,0,38,133.1,1,1,1,4,4,107.5,0,0,1,0,1,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,150.0,1,1,1,5,1,155.6,0,0,0,1,0,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,150.0,1,37,37,9,6,131.1,0,0,0,1,0,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,100.0,1,3,19,1,1,117.9,0,0,0,0,1,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,2,9991,0,1,150.0,1,37,37,9,9,120.0,0,0,0,1,0,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,150.0,1,1,38,4,9,150.0,0,0,0,1,1,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,Enrolled +2,43,1,9130,1,9,133.1,1,34,34,0,0,128.2,0,0,0,1,1,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,141.0,1,1,1,90,3,127.8,0,0,0,1,0,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,116.0,1,3,3,0,1,108.7,1,0,0,1,1,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,Dropout +2,39,1,9500,1,1,140.0,1,19,19,9,7,110.5,0,0,0,1,0,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9254,1,19,133.1,1,34,34,0,0,120.0,0,0,1,0,1,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,133.1,1,37,37,191,172,115.2,0,0,0,1,0,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,6,160.0,0,0,0,1,0,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,133.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9556,1,1,131.0,1,19,38,9,7,128.5,0,0,0,1,0,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,160.0,1,37,38,9,7,161.0,1,0,0,1,0,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,136.0,1,3,3,1,2,152.5,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9853,1,1,114.0,1,19,37,5,5,109.5,1,0,0,1,0,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,150.0,1,37,37,9,7,122.5,0,0,0,1,1,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,Dropout +1,44,1,9991,0,39,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,8014,0,42,140.0,1,19,37,134,193,138.0,1,0,1,1,0,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,127.0,1,2,19,3,9,121.5,0,0,0,1,1,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,133.1,1,19,19,3,3,125.3,0,1,0,1,1,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,4,9670,1,1,125.0,1,4,19,2,5,118.0,1,0,0,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,Graduate +2,42,1,9070,1,1,170.0,1,37,25,0,4,148.5,0,0,0,1,1,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,Dropout +1,17,5,9254,1,1,121.0,1,1,19,4,7,116.5,1,0,0,0,1,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,120.0,1,19,38,5,9,130.2,0,0,0,1,0,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,140.0,1,19,37,9,9,140.7,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,140.0,1,19,19,5,9,131.3,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,42,1,9119,1,1,140.0,1,3,3,3,2,133.6,1,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,8014,0,1,150.0,1,19,2,4,6,148.0,0,0,0,1,0,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,127.0,1,37,2,9,4,123.2,1,0,0,1,0,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,119.0,1,19,37,9,9,119.4,1,0,0,1,0,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,132.0,1,2,1,4,1,127.8,0,0,0,1,1,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,Dropout +1,42,1,9119,1,1,136.0,1,1,37,5,5,117.5,0,0,0,1,1,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9991,0,1,122.0,1,37,37,9,3,113.6,0,0,0,1,1,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,5,6,137.4,0,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,128.0,1,19,19,5,4,116.5,0,0,0,1,0,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,139.0,1,1,38,6,6,143.6,1,0,1,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9130,1,1,154.0,1,3,3,2,2,137.2,1,0,1,1,1,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,6,9500,1,1,142.0,1,19,37,4,9,131.9,1,0,0,1,0,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Dropout +1,1,2,9773,1,1,131.0,1,19,37,9,10,121.9,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +2,7,1,9130,1,3,120.0,1,3,3,1,1,128.2,0,0,0,1,0,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,19,133.1,1,37,37,9,9,150.3,0,0,0,1,0,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,125.0,1,37,37,5,5,124.0,0,0,0,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,135.0,1,37,19,9,9,125.2,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,9,124.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,175.0,1,3,38,2,10,157.5,1,0,0,1,0,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,139.0,1,1,1,4,10,140.7,0,0,0,1,1,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,Dropout +1,1,4,9500,1,1,128.0,1,1,1,4,10,125.2,1,0,0,1,1,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,150.0,1,1,37,1,1,131.5,1,0,0,1,0,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,168.0,1,38,1,9,10,166.0,1,0,0,1,0,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,Graduate +1,51,1,9070,1,1,125.0,1,42,3,125,124,130.0,1,0,0,1,1,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,135.0,1,1,38,4,5,127.5,1,0,0,1,0,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,Graduate +1,18,1,9119,1,1,148.0,1,3,19,3,5,147.7,0,0,0,1,1,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9773,1,1,130.0,109,19,1,9,9,126.9,1,0,0,1,0,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,125.0,1,19,38,3,7,114.9,0,0,0,1,0,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,Graduate +1,7,1,9119,1,3,130.0,1,37,37,9,9,130.0,0,0,0,0,1,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9853,1,1,130.0,1,37,19,7,3,140.0,0,0,1,1,0,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,112.0,1,3,1,3,5,111.0,0,0,0,1,0,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,37,38,193,181,125.9,0,0,0,1,0,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,Graduate +1,42,1,9119,1,1,120.0,1,34,34,0,0,128.2,1,0,0,1,1,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,19,133.1,1,37,37,9,9,117.2,0,0,0,1,0,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9147,1,1,131.0,1,19,38,9,7,132.4,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9003,1,1,180.0,1,1,1,4,8,179.6,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,5,9119,1,1,135.0,1,37,37,90,90,122.1,1,0,0,1,1,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.0,1,1,38,5,10,131.3,1,0,0,1,0,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,126.0,1,37,19,5,5,119.3,0,0,0,1,0,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,110.0,1,19,37,9,6,120.0,0,0,1,0,1,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9556,1,1,130.0,1,37,37,9,9,159.0,1,0,0,1,0,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,141.0,1,19,38,4,5,133.7,1,0,0,1,1,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,1,37,4,6,120.0,0,0,0,1,1,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9085,1,1,123.0,1,3,19,2,9,118.9,0,0,0,1,1,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,17,1,9991,0,1,140.0,1,38,37,6,7,127.3,0,0,0,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,151.0,1,3,1,2,1,129.8,1,0,0,1,1,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,113.0,1,37,37,0,6,128.2,0,0,0,0,0,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9070,1,1,117.0,1,1,37,4,7,127.9,1,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,145.0,1,19,19,9,7,136.6,0,0,0,1,0,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.0,1,34,37,4,9,134.4,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,9238,1,39,130.0,1,38,38,5,10,126.7,0,0,1,1,0,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9773,1,1,122.0,1,1,1,4,7,116.8,1,0,1,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,3,9147,1,1,124.0,1,1,1,5,3,116.7,1,0,0,1,1,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,38,1,9,4,123.2,0,0,0,1,0,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,Enrolled +1,39,1,9556,1,40,130.0,1,1,1,4,5,145.0,0,0,0,1,0,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,Enrolled +1,43,1,9147,1,1,127.0,25,1,5,9,10,124.2,1,0,0,1,1,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,43,1,9670,1,1,120.0,1,34,34,0,0,128.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9238,1,1,122.0,1,1,3,9,2,112.6,1,0,0,1,1,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,122.0,1,1,1,4,4,119.6,1,0,0,1,0,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,Enrolled +1,17,5,9670,1,1,125.0,1,1,19,9,7,119.4,1,0,0,1,0,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,146.0,1,19,37,9,7,153.0,1,0,0,1,0,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,108.0,1,38,38,7,7,115.0,1,0,1,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,133.1,1,1,1,3,9,138.0,1,0,0,1,0,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,140.0,1,37,37,9,5,140.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,19,133.1,1,2,1,2,4,100.0,0,0,0,1,1,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9147,1,1,129.0,1,38,37,3,5,132.9,1,0,0,1,0,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,149.0,1,3,2,2,5,151.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,135.0,1,19,4,9,2,143.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9147,1,1,158.0,1,19,37,9,7,130.0,1,0,0,1,0,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,Graduate +1,17,6,9556,1,1,122.0,1,1,1,4,5,117.1,1,0,0,1,0,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9556,1,12,133.1,1,34,34,99,99,100.5,0,0,0,1,0,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9003,1,1,123.0,1,37,37,9,9,110.0,0,0,1,0,0,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,138.0,1,3,3,2,2,127.5,1,0,0,1,0,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,Graduate +1,43,1,9500,1,1,121.0,1,38,19,5,5,115.4,1,0,0,1,0,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,Enrolled +1,17,4,9147,1,1,114.0,1,19,19,4,4,109.5,1,0,0,1,1,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,148.0,1,1,1,4,8,145.2,0,0,0,1,1,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,121.0,1,1,1,4,4,123.1,1,0,0,1,1,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,150.0,1,3,3,2,5,154.6,1,0,0,1,0,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,151.0,1,19,38,9,9,157.0,1,0,1,1,0,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,101.0,0,0,0,1,0,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,2,9254,1,1,127.0,1,3,19,3,10,130.9,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,146.0,1,1,1,9,8,149.5,1,0,0,1,1,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9130,1,6,133.1,1,1,29,4,90,123.3,1,0,0,1,0,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,3,3,7,146.5,1,0,1,1,1,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,Enrolled +1,7,1,8014,0,40,120.0,1,37,19,9,3,120.0,0,0,0,1,0,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9853,1,1,125.0,1,37,37,9,9,114.9,1,0,1,0,0,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,2,9773,1,1,140.0,1,1,1,4,3,131.6,0,0,0,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,142.0,1,1,19,9,9,136.1,0,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,113.0,1,1,1,4,4,106.7,1,0,0,1,0,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,130.0,1,1,2,4,2,130.0,0,0,0,1,1,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,39,1,9119,1,1,130.0,1,19,37,9,9,134.0,0,0,0,1,1,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,Enrolled +1,18,1,9500,1,1,123.0,1,37,37,3,3,118.0,1,0,0,1,0,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,Graduate +1,10,2,9085,1,1,163.3,22,19,1,4,9,163.3,0,0,0,1,0,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,5,135.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,136.0,1,4,5,2,2,126.2,0,0,0,1,1,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,150.0,1,1,37,4,8,150.0,1,0,0,0,0,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9085,1,3,140.0,1,19,20,4,90,140.0,1,0,0,1,0,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,43,1,9070,1,1,135.0,1,1,38,3,9,126.4,1,0,0,1,0,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,140.0,1,19,38,7,8,129.9,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,133.1,1,1,1,9,9,155.0,0,0,0,1,0,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,5,9773,1,1,122.0,1,38,38,7,7,123.1,1,0,0,0,0,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,117.0,1,1,1,9,9,109.3,1,0,0,1,0,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9500,1,1,130.0,1,1,38,9,9,125.1,1,0,0,1,0,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,Enrolled +1,1,2,9773,1,1,144.0,1,3,3,3,2,140.2,1,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,145.0,1,1,1,4,10,145.0,0,0,0,1,0,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,Dropout +1,51,1,9070,1,1,143.0,1,1,1,4,4,120.0,1,0,0,1,0,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,145.0,1,1,38,90,8,132.8,1,0,0,0,1,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9556,1,1,120.0,1,38,38,191,193,120.0,0,0,1,1,0,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,148.0,1,19,1,7,5,138.3,1,0,0,1,1,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,146.0,1,3,3,3,6,133.4,1,0,0,1,0,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,Graduate +1,17,1,9130,1,1,131.0,1,12,12,2,8,128.2,1,0,0,1,1,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,6,9556,1,1,115.0,1,19,2,5,3,112.2,1,0,0,1,0,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,Graduate +1,43,1,9556,1,1,126.0,1,2,3,3,2,100.0,0,0,0,1,0,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,Enrolled +1,17,1,9238,1,1,120.0,1,19,37,9,9,113.0,1,0,0,1,0,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,132.0,1,19,38,5,5,118.0,1,0,0,1,0,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,Graduate +2,1,1,9238,1,1,145.0,1,37,34,9,7,139.4,0,0,0,0,0,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,131.0,1,38,38,191,174,125.4,1,0,0,1,0,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,39,1,9119,1,1,120.0,1,37,38,9,10,145.4,0,0,1,1,1,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,Dropout +1,1,1,9130,1,1,138.0,1,4,5,2,2,123.0,1,0,0,1,0,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,127.0,1,5,3,4,4,122.8,1,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,136.0,1,1,1,4,4,127.0,1,0,0,1,0,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,Enrolled +1,17,3,9119,1,1,115.0,1,3,1,3,3,116.1,1,0,0,0,1,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,143.0,1,38,37,4,9,116.5,1,0,0,1,0,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,3,19,3,8,134.9,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,Graduate +1,44,1,9119,1,39,140.0,1,5,41,3,2,140.0,0,0,0,1,1,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,124.0,1,19,19,9,3,115.6,1,0,0,0,1,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9500,1,3,130.0,1,19,38,5,3,130.0,0,0,0,1,0,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,137.0,1,1,1,4,10,124.8,1,0,0,1,1,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,138.0,1,1,3,1,4,127.5,1,0,0,1,1,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,112.0,1,1,1,5,1,111.7,0,0,1,0,1,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,Dropout +1,1,4,9500,1,1,147.0,1,1,1,4,9,124.5,1,0,0,1,0,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,Graduate +1,7,1,9500,1,3,140.0,1,3,19,2,6,140.0,0,0,0,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,121.0,1,19,19,7,7,113.0,1,0,0,1,0,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,8014,0,1,96.0,1,3,1,3,9,100.0,0,0,0,1,0,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,152.0,1,1,38,4,5,144.7,0,0,0,1,0,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,Graduate +2,1,1,9070,1,1,127.0,1,12,19,9,9,123.2,0,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,Graduate +1,1,3,9070,1,1,147.0,1,34,37,5,7,135.8,1,0,0,1,0,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,7,1,9119,1,4,180.0,1,4,3,2,7,180.0,0,0,1,1,1,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,Enrolled +1,1,6,9500,1,1,129.0,1,37,19,9,7,127.8,1,0,0,1,0,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,100.0,1,37,37,7,7,160.0,1,0,0,1,0,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,127.0,1,19,1,5,5,117.6,1,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9003,1,1,110.0,1,1,1,9,4,120.0,0,0,1,0,1,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9773,1,1,143.0,11,19,19,4,9,133.9,1,0,0,1,1,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,160.0,1,37,37,7,7,156.1,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,43,2,9670,1,1,135.0,1,3,19,1,7,123.5,1,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,1,130.0,1,38,3,132,122,100.0,0,0,0,1,1,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,Enrolled +1,15,1,9238,1,1,150.0,26,19,1,9,9,146.5,1,0,1,0,1,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,Graduate +1,17,6,9119,1,1,129.0,1,37,13,4,90,117.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,3,130.0,1,3,3,3,10,147.6,0,0,0,1,1,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,171,1,1,145.0,1,1,1,3,3,140.1,1,0,0,1,0,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,43,3,9254,1,1,135.0,1,3,3,2,2,122.1,0,0,0,1,1,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,171,1,1,140.0,41,1,1,5,7,146.3,1,0,0,1,0,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9070,1,1,126.0,1,38,38,9,8,129.9,1,0,0,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Graduate +1,7,1,9070,1,3,120.0,1,4,4,2,2,120.0,0,0,0,1,1,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,Dropout +1,17,4,9070,1,1,144.0,1,38,1,9,9,137.4,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,125.0,1,3,3,2,3,118.0,1,0,0,1,1,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,Dropout +5,39,1,9238,1,1,130.0,1,19,38,9,10,146.0,0,0,0,1,1,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,5,107.5,0,0,0,1,0,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9773,1,1,130.0,1,1,19,1,3,161.5,0,0,0,1,1,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,140.0,1,19,19,9,4,127.8,1,0,0,1,1,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,113.0,1,1,37,1,10,116.5,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,Graduate +1,1,2,9238,1,1,145.0,1,1,19,4,8,121.4,0,0,0,1,0,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9003,1,19,133.1,1,19,37,9,10,120.0,0,0,1,1,0,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,Enrolled +1,1,1,9085,1,1,150.0,1,12,2,4,2,144.6,0,0,1,0,0,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,40,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,Dropout +1,17,5,9500,1,1,137.0,1,1,1,5,5,132.6,1,0,0,1,0,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,3,19,4,7,119.0,0,0,0,1,1,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,128.0,1,1,1,4,5,124.7,0,0,0,1,1,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,Enrolled +1,39,2,9670,1,19,133.1,1,34,34,0,0,100.0,1,0,0,0,1,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,Dropout +1,39,1,9556,1,1,120.0,1,19,19,4,5,122.8,0,0,0,1,0,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,Dropout +1,1,2,171,1,1,165.0,1,3,3,2,2,163.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,133.8,1,3,37,2,10,184.0,0,0,0,1,0,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,120.0,1,37,19,9,4,148.8,0,0,0,1,0,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,5,9500,1,1,151.0,1,1,1,9,9,127.8,0,0,0,1,0,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,131.0,1,38,19,7,7,125.3,1,0,0,1,0,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,128.0,1,1,1,9,6,120.3,0,0,0,1,1,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,118.0,1,3,1,5,10,113.5,1,0,0,1,0,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,140.0,1,37,37,7,9,126.8,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,117.0,1,38,37,9,9,113.5,1,0,0,1,0,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,135.0,1,19,19,9,9,122.8,1,0,0,1,1,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,151.0,1,37,37,9,7,147.5,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,1,3,4,4,147.5,1,0,0,1,0,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,128.0,1,38,37,9,9,124.9,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9085,1,1,124.0,1,3,19,2,3,113.9,1,0,0,1,0,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,120.0,1,3,19,4,7,119.7,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,171,1,1,147.0,1,1,12,4,4,148.4,1,0,0,1,1,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,136.0,1,19,1,9,8,123.4,1,0,0,1,0,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,123.0,1,3,1,2,5,112.9,0,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,2,9556,1,1,133.1,1,3,1,2,4,136.1,0,0,0,1,1,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,141.0,1,3,1,4,4,142.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9003,1,1,120.0,1,37,37,9,9,120.5,1,0,1,1,1,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,6,140.0,1,0,0,1,1,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,147.0,1,19,1,4,3,138.5,1,0,0,1,0,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,123.0,1,34,34,90,90,113.3,1,0,0,1,0,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,38,4,5,130.4,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,7,7,134.0,0,0,0,1,1,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,38,38,4,7,111.6,1,0,0,1,0,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9119,1,1,148.0,1,19,38,9,7,133.0,0,0,0,1,1,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,128.0,1,3,1,2,1,127.8,0,0,0,1,0,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,172.0,1,38,37,9,9,149.3,0,0,0,1,1,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,138.0,1,37,37,9,8,127.2,1,0,0,1,0,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,140.0,1,3,1,2,6,137.6,1,0,0,1,1,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,110.0,1,37,19,9,3,100.0,0,0,0,1,0,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,2,1,2,4,140.7,1,0,0,1,1,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,137.0,1,3,38,3,5,129.3,1,0,0,1,0,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,136.0,1,38,38,0,7,133.2,1,0,0,1,0,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,145.0,6,34,34,0,0,134.5,1,0,0,1,1,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,147.0,1,19,19,3,10,151.9,1,0,0,1,0,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,118.0,1,37,37,9,9,112.1,1,0,0,1,0,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,Dropout +1,43,1,9773,1,1,122.0,1,1,1,4,5,126.9,0,0,0,1,0,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,126.0,1,12,38,9,5,122.2,0,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,143.0,1,3,3,2,2,129.0,0,0,0,1,1,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,Graduate +1,39,1,9556,1,1,130.0,1,19,38,9,8,113.3,0,0,0,1,0,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,101.0,1,1,37,4,9,98.9,1,0,0,1,0,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,133.1,1,34,34,90,90,116.0,0,0,0,0,0,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,Dropout +2,39,1,9991,0,1,170.0,1,37,19,9,3,151.1,0,0,0,1,1,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,Graduate +2,17,5,9119,1,1,126.0,1,37,38,4,4,122.9,1,0,0,1,1,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,125.0,1,19,19,9,9,114.9,0,0,0,1,0,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,Graduate +1,18,3,9773,1,1,128.0,1,19,1,9,9,122.1,1,0,0,1,1,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,149.0,1,38,37,9,9,139.5,0,0,0,1,1,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,1,3,9,5,137.1,0,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,126.0,1,38,37,5,5,114.8,1,0,0,1,0,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9085,1,1,120.0,1,37,37,6,6,150.0,0,0,0,1,1,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,137.0,1,38,19,0,90,122.3,0,0,0,1,0,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9853,1,19,133.1,1,37,19,3,7,100.0,0,0,0,1,0,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,145.0,1,4,2,2,3,127.3,1,0,0,1,1,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,129.0,1,1,1,4,8,129.0,0,0,0,0,0,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,143.0,1,1,1,4,4,129.0,1,0,0,1,1,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,136.0,1,19,38,9,9,119.3,1,0,0,1,0,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,151.6,0,0,0,1,0,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,Enrolled +1,1,1,9238,1,1,108.0,1,19,38,9,9,107.3,0,1,0,1,0,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,134.0,1,1,1,2,7,128.4,1,0,0,1,0,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,Graduate +1,42,1,9119,1,1,120.0,1,3,1,2,9,108.2,1,0,0,1,1,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,Dropout +1,16,2,9500,1,1,127.0,1,2,38,4,9,119.0,1,0,0,1,0,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,131.0,1,1,1,9,9,122.0,0,0,0,1,0,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9070,1,3,133.1,1,3,5,2,2,120.0,1,0,0,1,0,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,150.0,1,19,19,5,5,132.8,1,0,0,1,0,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,Graduate +1,18,2,9670,1,1,121.0,1,37,38,4,1,111.9,1,0,0,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,108.0,41,3,3,9,9,107.0,0,0,1,0,0,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,150.0,1,34,19,0,4,152.8,1,0,0,1,1,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,18,2,9238,1,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,130.0,6,19,1,6,4,130.0,1,0,0,1,0,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,Enrolled +1,51,1,9119,1,1,136.0,1,1,19,3,5,133.6,1,0,0,1,1,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,Dropout +1,1,4,9773,1,1,155.0,1,3,19,1,4,149.8,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9070,1,1,124.0,1,19,38,4,0,117.6,1,0,0,1,1,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,9,100.0,0,0,0,1,1,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,Enrolled +1,44,1,9238,1,1,140.0,1,1,1,5,5,143.4,0,0,0,1,0,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,120.0,1,1,19,7,7,111.3,0,0,0,1,1,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,Enrolled +2,1,1,9556,1,1,144.0,1,19,19,193,144,139.8,0,0,1,1,1,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,110.0,1,1,1,5,5,160.0,1,0,1,1,0,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,Dropout +2,39,1,9853,1,19,133.1,1,37,37,9,9,131.0,0,0,0,1,0,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,139.0,1,4,1,2,10,136.4,1,0,0,1,0,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,Graduate +1,17,3,9085,1,1,134.0,1,37,38,9,9,120.4,1,0,0,1,0,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,148.0,1,3,2,4,2,131.6,1,0,0,1,0,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,145.0,1,19,37,7,7,141.5,1,0,0,1,0,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9130,1,19,133.1,1,37,38,9,9,120.0,0,0,0,1,1,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,3,9254,1,1,121.0,1,19,37,4,7,116.8,1,0,0,1,0,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,123.0,1,1,1,4,3,123.4,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,38,38,9,9,133.4,1,0,0,1,1,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,Graduate +1,42,1,9500,1,1,124.0,1,19,19,4,9,124.0,0,0,0,1,0,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,40,130.0,1,37,37,9,7,130.0,0,0,0,1,0,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,140.0,1,3,38,2,9,140.0,1,0,0,1,0,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,158.0,1,38,38,9,7,144.7,1,0,0,1,0,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,18,2,9238,1,1,121.0,1,19,1,4,3,121.4,1,0,0,1,0,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,12,133.1,1,37,19,9,10,120.0,0,0,0,1,1,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,122.0,1,3,1,4,3,114.8,1,0,0,1,0,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,Enrolled +4,43,1,9991,0,1,164.0,1,37,37,6,6,131.8,0,0,0,1,0,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,3,9773,1,1,145.0,1,38,38,9,5,133.1,0,0,0,1,0,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9853,1,19,133.1,1,38,19,9,9,108.0,0,0,1,0,0,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,3,9070,1,1,131.0,1,38,37,5,5,120.2,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,Enrolled +1,43,1,9238,1,1,130.0,1,38,37,9,7,133.2,0,0,0,1,0,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,112.0,1,1,1,3,3,106.4,1,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,125.0,1,1,38,144,181,123.3,0,0,0,1,0,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,125.0,1,3,2,2,1,119.1,1,0,0,1,0,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9853,1,3,140.0,1,34,34,0,0,140.0,1,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,135.0,1,1,19,3,9,137.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9991,0,3,120.0,1,37,37,6,7,120.0,0,0,1,0,1,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,130.0,1,1,1,4,3,125.1,1,0,0,1,0,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,Graduate +2,39,1,33,1,1,120.0,1,38,1,9,5,153.8,0,0,1,1,1,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,37,37,9,9,140.0,0,0,0,0,1,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,127.0,1,1,38,9,7,120.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,43,180.0,1,19,19,9,4,180.0,0,0,0,1,0,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,Graduate +1,1,3,9147,1,1,143.0,1,1,1,5,7,133.2,1,0,0,1,0,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,Graduate +1,15,1,9853,1,1,133.1,41,43,1,153,135,128.2,0,0,0,1,0,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,12,133.1,1,1,1,9,4,140.0,1,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,151.0,1,1,38,4,7,137.0,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,Graduate +1,17,4,171,1,1,172.0,1,3,1,2,10,155.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,129.0,1,19,1,9,5,112.0,0,0,0,1,1,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,150.0,1,38,3,9,1,140.0,0,0,0,1,1,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,Graduate +1,1,1,9773,1,1,124.0,17,1,1,3,5,118.1,1,0,1,0,0,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9670,1,1,124.0,1,37,19,5,8,114.2,1,0,1,1,0,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,122.0,1,1,19,3,5,116.8,1,0,0,1,0,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,144.0,1,38,1,9,10,137.4,0,0,0,1,0,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,19,19,9,9,120.0,0,0,0,1,0,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,138.0,1,38,38,7,6,124.7,1,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,18,2,9147,1,1,132.0,1,3,3,5,7,119.1,1,0,1,0,0,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,17,6,9119,1,1,111.0,1,19,3,5,10,106.5,1,0,0,1,1,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,Dropout +1,7,1,9500,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,1,140.0,1,37,37,9,9,130.0,1,0,0,1,1,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,125.0,1,37,37,3,3,124.0,0,0,0,1,1,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,128.0,1,19,2,7,3,126.3,1,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +2,39,1,9500,1,1,110.0,1,37,37,9,6,114.3,0,0,0,1,0,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,9085,1,1,133.1,1,1,9,4,4,128.2,0,0,0,1,0,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,Graduate +1,1,3,9238,1,1,126.0,1,38,19,5,8,120.8,1,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,121.0,1,1,1,9,8,118.9,1,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,109.0,1,19,37,5,5,108.3,0,0,0,1,0,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,Enrolled +1,1,4,9670,1,1,127.0,1,1,1,7,7,116.5,1,0,0,1,0,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,171,1,19,133.1,101,1,19,2,7,110.0,0,0,0,1,1,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,133.0,1,37,37,9,7,124.6,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,39,137.0,1,1,1,5,10,124.5,0,0,0,0,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,130.0,1,19,19,7,7,121.6,0,0,0,1,0,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,130.0,1,37,37,6,5,113.5,1,0,0,1,0,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9670,1,1,120.0,1,38,38,5,7,115.1,1,0,0,1,0,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,115.0,1,38,1,9,4,116.1,1,0,0,1,1,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,130.1,0,0,0,1,0,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,Enrolled +1,1,3,9238,1,1,133.1,1,1,1,9,9,100.0,1,0,0,1,1,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,168.0,0,0,0,1,1,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,148.0,1,1,1,9,9,141.7,0,0,0,0,1,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,Dropout +1,15,1,33,1,1,133.1,41,2,3,2,4,100.0,0,0,0,1,1,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,135.0,1,37,37,6,5,121.0,1,0,0,1,1,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,151.0,1,3,3,1,90,161.9,0,0,0,1,0,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,8,108.5,0,0,0,1,1,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9670,1,1,130.0,1,26,30,0,5,128.6,1,0,1,1,0,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,Graduate +1,43,1,9500,1,1,140.0,100,1,1,6,6,128.2,0,0,0,1,0,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,140.0,1,19,37,5,7,140.0,1,0,0,1,1,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,Dropout +1,39,1,33,1,1,140.0,1,3,1,2,4,152.8,0,0,0,1,0,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,Enrolled +1,43,1,9070,1,1,117.0,1,1,1,4,7,112.5,1,0,0,1,1,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,126.0,1,37,19,7,7,125.7,0,0,0,1,0,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,Enrolled +1,1,2,9773,1,1,140.0,1,38,38,5,7,126.4,1,0,0,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,121.0,1,37,38,6,9,121.0,0,0,0,1,0,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,136.0,1,12,1,4,4,122.0,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,117.0,1,37,37,9,9,120.2,1,0,0,1,0,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,133.1,1,38,1,9,9,121.0,0,0,1,0,1,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,Dropout +1,44,1,9991,0,39,130.0,1,37,37,5,5,130.0,1,0,0,1,1,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,138.0,1,1,19,4,9,142.2,1,0,0,1,0,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,148.0,1,3,1,2,10,148.0,1,0,0,1,0,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,Graduate +1,17,6,9556,1,1,134.0,1,19,38,7,7,128.5,1,0,0,1,0,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,141.0,1,1,19,5,8,141.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,149.0,1,3,1,9,9,137.5,0,0,0,1,1,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,Graduate +1,1,3,9085,1,1,142.0,1,11,11,90,90,155.3,0,0,0,1,0,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,135.0,1,19,37,9,9,134.0,1,0,0,1,0,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,132.0,1,19,38,9,7,120.1,0,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9147,1,1,133.0,1,37,37,9,5,119.7,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,139.0,1,3,4,2,2,130.6,0,0,0,1,0,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,2,130.0,1,0,1,0,1,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,Dropout +1,17,3,9500,1,1,138.0,1,3,3,4,5,130.0,1,0,0,1,0,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,121.0,1,19,19,3,3,116.1,1,0,0,1,0,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,160.0,1,3,38,1,9,152.0,1,0,0,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,130.0,41,37,19,9,8,125.5,1,0,0,1,0,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,133.1,1,38,38,191,193,146.0,0,0,1,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,Graduate +4,39,1,9003,1,1,140.0,1,37,37,9,8,150.0,0,0,0,1,1,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,Enrolled +1,17,2,9670,1,1,132.0,1,1,19,5,3,124.0,1,0,0,1,1,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,117.0,1,19,19,5,7,118.4,0,0,0,1,1,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,140.0,6,1,19,4,7,131.6,1,0,0,1,0,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,142.0,1,38,1,8,10,138.5,1,0,0,1,1,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9130,1,1,132.0,1,3,1,4,9,121.9,1,0,0,1,0,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,122.0,1,1,1,9,9,116.1,1,0,0,1,1,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,Dropout +1,7,1,8014,0,3,130.0,1,37,38,0,5,130.0,0,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,138.0,1,19,19,9,5,124.8,1,0,0,1,0,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,140.0,1,19,38,3,9,140.0,1,0,0,1,1,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +4,39,1,8014,0,1,138.0,1,19,19,90,90,127.0,0,0,0,0,0,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9500,1,19,133.1,1,1,3,2,2,100.0,0,0,1,1,1,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,117.0,1,3,1,3,5,110.7,1,0,0,1,1,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,120.0,1,19,19,5,5,113.0,1,0,0,1,0,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,160.0,1,37,37,7,7,133.0,1,0,0,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,137.0,1,1,1,4,5,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,19,37,9,7,123.9,1,0,0,1,0,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,38,38,9,5,130.0,0,0,1,0,1,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,137.0,1,19,37,9,7,130.8,0,0,1,1,0,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,38,37,4,6,150.0,1,0,0,1,0,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,115.0,1,34,38,0,5,108.4,1,0,0,1,0,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,140.0,1,3,38,141,151,135.3,0,0,0,1,1,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,148.0,1,19,19,7,7,130.9,0,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,127.0,1,1,1,4,3,126.3,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,2,9670,1,1,100.0,1,37,37,9,9,100.0,0,0,0,1,0,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,2,171,1,1,141.0,1,19,37,9,9,136.1,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,123.0,1,30,19,4,90,122.3,0,0,0,1,0,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,145.0,1,1,38,5,7,127.5,1,0,0,1,1,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,1,150.0,1,37,37,90,10,112.0,0,0,0,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,128.0,1,37,1,9,7,124.2,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,Dropout +1,43,1,9070,1,39,130.0,1,19,37,5,9,124.0,1,0,0,1,0,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,Graduate +1,17,1,9003,1,1,170.0,1,1,4,9,5,144.1,1,0,1,0,1,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9670,1,1,110.0,1,19,19,90,99,107.2,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9238,1,19,133.1,1,37,37,9,9,130.0,1,0,0,1,0,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9119,1,1,144.0,1,34,34,0,0,119.5,0,0,0,1,1,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,19,133.1,1,37,37,6,6,162.0,0,0,1,1,1,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,16,1,9085,1,1,138.0,1,37,37,9,9,123.0,1,0,0,1,0,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9500,1,1,133.1,1,19,19,5,6,121.4,0,0,1,1,0,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,138.0,1,1,1,4,7,132.1,1,0,0,1,0,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,Graduate +1,39,1,9119,1,1,133.1,1,37,37,9,9,101.6,0,0,0,1,1,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9500,1,1,126.0,1,1,19,131,181,120.1,1,0,0,1,0,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,38,9,9,142.0,1,0,0,1,0,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,Graduate +1,18,1,8014,0,1,138.0,1,19,1,9,5,134.5,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,19,9,9,150.0,0,0,0,1,1,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,126.0,1,38,37,9,9,123.6,1,0,0,1,0,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9254,1,19,133.1,1,19,19,3,1,101.5,0,0,1,0,1,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,2,9119,1,1,115.0,1,38,19,9,6,112.2,1,0,1,1,1,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,39,1,9003,1,1,120.0,1,37,37,9,9,125.7,0,0,1,0,0,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,Dropout +1,17,2,9773,1,1,115.0,1,1,1,5,5,119.6,1,0,0,1,0,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,19,9,4,140.0,0,0,0,1,0,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,125.0,1,37,19,90,90,137.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,120.0,1,3,38,3,7,124.2,1,0,0,1,1,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9147,1,1,146.0,1,5,1,1,5,144.6,0,0,0,1,1,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,116.0,1,1,1,3,4,113.6,1,0,0,1,0,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,Graduate +4,42,1,9147,1,1,133.1,1,37,38,7,3,123.0,1,0,0,1,1,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,118.9,1,38,37,5,9,118.9,1,0,0,1,0,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,123.0,1,12,1,9,9,119.2,1,0,0,1,0,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,2,140.0,1,38,37,7,8,140.0,0,0,0,1,0,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,110.0,1,37,37,90,90,108.4,1,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9119,1,1,146.0,1,1,37,7,7,132.4,1,0,0,1,1,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,19,133.1,1,19,3,9,2,140.0,1,0,1,1,1,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,2,9853,1,1,111.0,1,38,38,191,171,105.8,1,0,0,1,0,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,6,130.2,0,0,0,1,0,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,130.0,1,1,3,9,10,118.1,1,0,0,1,1,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,118.0,1,1,19,5,4,118.0,0,0,0,1,0,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,153.0,1,38,38,7,7,159.7,1,0,0,1,0,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,171,1,12,110.0,1,37,37,7,7,106.0,1,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,134.0,1,19,1,9,4,124.9,1,0,0,1,0,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,3,9254,1,1,121.0,1,19,19,9,9,125.9,1,0,0,1,0,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,160.0,1,19,19,4,9,154.4,0,0,0,1,0,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,3,140.0,1,19,19,9,7,152.4,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9130,1,1,130.0,1,19,1,191,144,110.0,0,0,0,1,1,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,142.0,1,38,37,9,5,127.3,1,0,0,1,0,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,37,37,9,9,130.0,0,0,1,1,0,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,124.0,1,37,19,9,4,121.2,0,0,0,1,1,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,120.0,1,19,19,9,3,113.9,1,0,0,1,0,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,114.0,1,19,38,5,3,112.6,1,0,0,1,0,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,Graduate +1,7,1,9991,0,40,120.0,1,1,19,4,9,120.0,0,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,128.0,1,19,38,9,9,118.2,0,0,0,1,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,4,9070,1,1,126.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,130.0,1,1,1,0,0,119.5,0,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,184.4,22,2,19,2,8,184.4,0,0,0,1,0,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,37,9,9,132.8,0,0,1,0,1,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9085,1,1,120.0,1,38,19,90,90,127.0,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,Graduate +1,17,4,9147,1,1,132.0,1,38,19,5,5,120.8,1,0,0,1,1,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,Dropout +1,10,1,9670,1,1,148.9,22,37,37,9,9,148.9,0,0,0,1,0,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,4,150.0,1,1,1,4,6,150.0,0,0,0,1,1,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,150.0,1,19,1,9,3,110.0,1,0,0,1,1,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,Graduate +1,15,1,9670,1,1,130.0,26,42,1,2,7,130.0,0,1,1,1,0,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,Graduate +2,7,1,8014,0,3,120.0,1,38,1,9,9,120.0,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,149.0,1,19,37,9,9,158.1,1,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,4,9147,1,1,124.0,1,37,37,9,9,117.4,0,0,0,1,0,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,142.0,1,34,1,5,10,136.1,1,0,0,0,1,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,1,1,8014,0,1,165.0,1,37,37,0,0,162.9,1,0,0,1,1,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,130.0,1,37,37,5,7,123.4,1,0,0,1,1,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,1,133.1,1,37,37,7,7,143.0,0,0,0,1,1,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,121.0,1,38,37,8,8,115.4,1,0,0,1,0,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9556,1,3,140.0,1,3,3,2,2,140.0,0,0,1,0,1,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,116.0,1,38,19,0,2,116.7,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,132.0,1,38,1,5,5,124.3,0,1,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,133.1,1,38,12,7,0,111.5,0,0,0,0,0,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,Dropout +1,53,1,9147,1,42,140.0,1,1,1,6,6,142.2,0,0,0,1,1,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,Graduate +2,44,1,9991,0,39,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9773,1,1,170.0,1,1,19,9,7,155.0,0,0,0,1,1,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,8014,0,19,133.1,1,37,37,4,8,112.5,0,0,0,1,0,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,120.0,1,1,1,5,8,112.0,1,0,0,1,0,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,123.0,1,1,1,3,3,113.6,1,0,0,1,0,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,Graduate +1,39,1,9085,1,1,133.1,1,1,19,9,9,162.3,1,0,0,1,0,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,116.0,1,37,1,9,8,115.7,1,0,1,0,0,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,160.0,1,9,19,4,3,151.3,0,0,0,1,0,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,19,149.0,1,34,34,0,0,126.3,0,0,0,1,0,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9238,1,39,140.0,41,1,1,4,6,137.5,0,0,1,1,0,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,130.0,1,37,37,9,9,129.0,1,0,0,1,0,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,19,38,7,7,118.7,0,0,0,1,1,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,128.0,0,0,0,1,0,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,Graduate +1,17,1,9070,1,1,135.0,1,19,37,5,9,145.9,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,128.0,1,1,19,9,7,118.2,0,0,0,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,128.0,1,19,38,9,9,127.0,0,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,140.0,1,37,12,9,9,150.0,0,0,1,1,1,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,Dropout +2,43,1,8014,0,1,160.0,1,37,39,9,4,140.9,0,0,0,1,0,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,133.0,1,38,19,8,7,127.3,1,0,0,1,0,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,Graduate +1,15,1,9670,1,1,160.0,1,37,12,9,9,149.5,1,0,0,0,1,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,152.0,101,2,1,9,1,168.5,1,0,0,1,1,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,Graduate +1,1,3,9085,1,1,147.0,1,19,19,9,1,135.6,1,0,0,1,0,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,2,8014,0,1,120.0,1,37,34,0,0,117.6,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,141.0,1,37,37,9,9,130.2,0,0,0,1,1,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,Graduate +1,16,2,9147,1,1,139.0,1,38,37,9,9,123.7,1,0,0,1,0,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,134.0,1,19,38,4,8,129.5,0,0,0,1,0,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,113.0,1,1,37,9,10,117.2,1,0,0,1,0,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,18,2,9556,1,1,126.0,1,3,3,2,2,115.5,0,0,0,1,1,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,1,134.0,1,37,38,4,7,110.0,1,0,0,1,0,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,171,1,1,132.0,1,1,1,1,4,132.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9003,1,1,130.0,1,19,19,9,1,140.0,0,0,0,1,0,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9773,1,1,132.0,1,38,19,9,9,125.0,1,0,0,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,140.0,1,37,37,9,6,132.8,0,0,0,1,1,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,130.0,1,37,19,9,5,140.2,1,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9070,1,1,118.0,1,43,3,123,123,110.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,19,100.0,1,37,37,5,5,111.0,1,0,0,1,0,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,3,9085,1,1,138.0,1,1,3,4,4,126.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,132.0,1,2,19,4,4,125.0,1,0,0,1,0,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,38,100.0,1,37,37,9,7,154.0,1,0,0,1,1,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,138.0,1,1,19,4,4,131.7,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,Graduate +2,39,2,9147,1,1,140.0,1,37,37,9,8,108.0,0,0,0,1,0,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,Enrolled +1,1,5,9147,1,1,134.0,1,3,2,2,2,134.7,0,0,0,1,1,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9130,1,1,120.0,1,2,3,3,2,120.0,1,0,0,0,1,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,Dropout +1,1,3,9085,1,1,140.0,1,10,19,90,90,135.8,1,0,0,1,0,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,142.0,1,37,38,5,1,129.4,0,0,0,1,0,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9670,1,1,120.0,1,1,19,5,5,117.2,1,0,0,1,0,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,136.0,1,1,19,5,7,136.4,0,0,0,1,0,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,120.0,1,37,37,5,5,124.6,0,0,0,1,0,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,Enrolled +1,39,1,9500,1,1,133.1,1,1,37,9,9,100.0,0,0,0,1,1,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,123.0,1,19,1,9,3,117.8,1,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,Graduate +5,39,1,9254,1,1,133.1,1,2,2,2,2,103.0,0,0,0,1,0,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,171,1,1,133.0,1,1,37,4,7,126.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,119.0,1,1,1,4,4,115.0,1,0,0,1,1,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,143.0,1,38,19,151,193,134.3,1,1,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,135.0,1,1,19,4,4,129.1,0,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,43,2,9670,1,1,130.0,1,19,1,4,4,127.6,1,0,0,1,1,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,126.0,1,37,37,5,1,126.0,0,0,0,0,1,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,42,1,9119,1,1,120.0,1,19,37,9,9,113.8,0,0,0,0,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9991,0,1,140.0,1,37,37,9,9,135.8,1,0,0,1,1,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,17,5,9085,1,1,118.0,1,38,38,9,9,112.4,1,0,0,1,0,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,3,9773,1,1,134.0,1,2,1,3,3,129.5,1,0,0,1,1,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,129.0,1,1,38,4,7,123.4,0,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,132.0,1,19,37,4,9,128.0,1,0,0,1,0,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,137.0,1,38,37,7,5,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,Graduate +1,17,5,9119,1,1,138.0,1,19,19,5,5,123.3,1,0,1,1,1,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,138.0,1,1,1,3,4,132.5,1,0,0,1,0,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,Graduate +1,16,2,9070,1,1,133.0,1,1,3,4,2,122.5,1,0,0,1,0,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,Enrolled +1,17,1,9130,1,1,137.0,1,38,19,5,7,130.0,1,0,0,1,0,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,Enrolled +1,17,1,9238,1,1,131.0,1,37,37,9,7,121.9,0,0,0,1,0,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,Graduate +2,1,1,9500,1,1,142.0,1,19,38,4,5,130.3,0,0,0,1,0,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,Graduate +2,39,1,9556,1,1,160.0,1,37,37,9,6,120.0,0,0,0,1,0,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,Dropout +1,51,1,9670,1,1,126.0,1,3,3,1,10,111.0,0,0,1,1,1,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,5,9853,1,1,141.0,1,37,19,9,5,133.0,1,0,0,1,0,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,Dropout +1,1,2,9670,1,1,124.0,1,19,1,9,4,117.7,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,133.0,1,19,19,9,5,120.1,1,0,0,1,0,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,Graduate +1,43,1,9147,1,1,133.1,1,4,19,2,1,128.2,0,0,0,1,0,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,Dropout +4,27,1,9070,1,2,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9003,1,1,150.0,1,2,4,4,1,150.0,0,0,0,1,1,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,19,133.1,1,19,37,7,5,155.5,1,0,1,0,1,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,1,9238,1,1,106.0,1,1,1,3,3,105.0,0,0,0,1,1,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,111.0,1,19,38,3,3,111.4,1,0,0,0,0,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,Dropout +1,43,1,9254,1,1,130.0,1,1,19,5,7,130.0,0,0,0,1,0,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,Dropout +1,17,1,8014,0,1,120.0,1,38,37,6,6,113.0,0,0,0,1,0,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,139.0,1,1,37,4,9,131.3,1,0,0,1,0,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,Graduate +1,43,3,9254,1,1,110.0,1,37,37,9,9,107.2,1,0,0,1,1,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,147.0,1,1,1,4,4,134.3,1,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,130.0,1,37,38,9,6,130.0,1,0,0,1,0,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,139.0,1,37,38,9,9,124.0,1,0,0,1,1,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,122.0,1,37,37,9,9,126.9,1,0,0,1,0,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,11,11,90,4,114.0,1,0,0,1,1,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9147,1,1,132.0,1,39,39,3,3,127.8,1,0,0,0,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,128.0,1,38,37,5,6,122.1,0,0,0,1,0,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9085,1,1,127.0,1,19,38,194,193,117.6,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9500,1,1,145.0,1,3,3,2,3,141.8,0,0,0,1,0,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,Graduate +1,53,1,9556,1,42,140.0,1,1,19,4,5,140.0,0,0,0,1,0,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,Graduate +1,18,1,9147,1,1,160.0,1,19,19,5,8,137.6,1,0,0,1,0,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,19,133.1,1,2,1,3,10,120.0,0,0,1,1,1,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,19,133.1,1,19,39,5,3,121.7,0,0,1,0,0,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,126.0,0,0,0,1,1,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,Graduate +1,1,3,171,1,1,140.0,1,37,37,9,9,124.3,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,136.0,1,38,37,9,9,126.9,1,0,0,1,0,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,136.0,1,19,1,9,9,129.0,1,0,0,1,0,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,144.0,1,38,38,7,7,136.0,1,0,0,1,0,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,154.0,1,38,38,9,9,156.5,1,1,0,1,0,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,131.0,1,19,19,9,9,134.9,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +4,43,1,8014,0,1,140.0,1,38,37,9,9,126.0,0,0,0,1,0,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,7,126.3,1,0,0,1,0,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,Graduate +1,44,1,8014,0,39,150.0,1,1,37,9,7,146.7,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,2,9119,1,1,140.0,1,19,19,9,9,125.7,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,12,100.0,1,1,1,4,4,100.0,0,0,0,1,0,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,Graduate +1,42,1,9500,1,1,111.0,1,1,3,9,10,128.2,1,0,0,1,1,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,Graduate +1,17,2,9773,1,1,132.0,1,19,19,9,6,120.1,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,131.0,1,4,4,2,1,120.5,0,0,0,1,0,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,44,1,9003,1,39,170.0,1,19,19,5,5,170.0,1,0,0,1,1,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,150.0,1,38,38,7,7,137.8,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,10,120.0,0,0,1,0,1,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9670,1,39,110.0,1,37,1,9,4,110.0,0,0,0,1,0,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,130.0,1,5,3,2,2,130.0,0,0,0,1,1,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9670,1,1,133.1,1,34,3,7,2,130.6,1,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,38,9,10,140.0,0,0,0,1,1,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,133.1,1,19,38,9,9,119.6,1,0,0,1,0,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,118.0,1,19,19,3,3,110.0,1,0,0,1,0,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,137.0,1,1,1,5,5,129.3,1,0,0,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,127.0,1,19,38,5,9,129.5,1,0,0,1,0,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,126.0,1,38,19,9,6,119.4,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,116.5,0,0,0,1,0,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,125.0,1,19,19,4,7,128.5,1,0,0,1,0,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,Enrolled +1,43,1,9773,1,1,133.1,22,34,34,90,90,130.0,0,0,1,1,0,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,125.0,1,1,1,5,5,128.5,0,0,0,1,1,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9500,1,1,133.1,1,19,37,9,9,120.0,0,0,0,1,0,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,Graduate +2,39,2,9147,1,1,133.1,1,37,37,5,7,110.0,0,0,0,1,1,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,6,9500,1,1,141.0,1,1,19,1,1,126.7,1,0,0,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,146.0,1,40,43,4,4,150.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,148.0,1,1,1,4,9,129.8,0,0,0,1,0,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,Enrolled +1,17,1,9853,1,1,133.0,1,38,38,9,9,127.4,0,0,1,1,0,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,43,1,9147,1,1,120.0,1,37,37,5,3,113.4,0,0,0,1,1,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,148.0,1,19,3,4,2,136.5,0,0,0,1,0,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,178.0,1,2,1,2,3,157.7,0,0,0,1,1,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +2,7,1,9254,1,3,130.0,1,1,3,4,3,130.0,0,0,0,1,0,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,33,1,40,120.0,1,38,37,5,6,120.0,1,0,1,0,1,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,Dropout +2,1,1,9147,1,1,151.0,1,38,37,9,8,132.1,1,0,0,1,0,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Dropout +1,43,2,9556,1,1,120.0,1,1,19,4,3,110.2,0,0,0,1,0,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,Graduate +2,1,4,9500,1,1,140.0,1,1,37,4,9,128.0,0,0,0,1,0,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,6,120.0,1,35,35,6,6,128.2,1,0,0,1,1,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,120.0,1,37,37,9,6,120.0,1,0,0,1,0,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,8,7,150.0,0,0,0,1,1,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,145.0,1,19,37,4,7,148.9,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,34,34,0,0,104.0,1,0,0,1,0,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9085,1,1,110.0,1,3,19,4,6,105.0,0,0,1,0,1,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Dropout +1,17,2,9254,1,1,108.0,1,37,37,9,7,108.0,1,0,0,1,0,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,Graduate +4,43,1,9238,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,0,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,136.0,1,19,37,173,183,118.4,1,0,0,1,0,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,18,1,9556,1,1,140.0,1,38,37,9,9,122.8,0,0,0,1,0,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,Graduate +1,39,1,9119,1,1,150.0,1,3,3,4,4,150.0,1,0,0,1,1,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,141.0,1,1,1,4,10,138.9,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,Graduate +1,18,4,9773,1,1,130.0,1,19,19,4,4,121.3,1,0,0,1,0,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,1,130.0,1,37,37,9,6,160.0,0,0,0,1,1,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,149.0,1,37,37,9,9,136.0,0,0,0,1,0,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,151.0,1,37,1,4,10,138.4,0,0,0,1,0,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9254,1,1,130.0,1,37,37,9,9,126.5,0,0,0,1,1,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,143.0,1,19,37,7,7,127.0,1,0,0,1,0,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,Graduate +2,57,1,9991,0,1,133.1,41,38,37,4,6,100.0,0,0,0,1,0,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,138.0,1,37,37,9,9,135.9,1,0,0,1,0,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,43,1,8014,0,1,145.7,22,37,37,9,9,145.7,1,0,0,1,0,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,Graduate +4,39,1,9773,1,19,133.1,1,37,37,9,1,117.5,0,0,0,1,0,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9238,1,1,118.0,1,1,19,4,10,112.4,1,0,0,1,0,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,8014,0,1,133.1,1,37,37,9,7,162.5,0,0,0,1,1,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,1,3,9254,1,1,115.0,1,1,1,3,3,117.5,1,0,0,1,0,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,133.0,1,37,38,9,9,130.2,1,0,0,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,152.0,1,2,22,4,3,146.1,1,0,0,1,0,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +2,39,1,9085,1,12,133.1,1,1,39,5,3,140.0,1,0,1,0,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9003,1,1,140.0,1,38,1,9,4,138.3,0,0,0,1,1,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,130.0,1,38,37,9,6,133.9,0,0,0,1,1,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,140.0,1,37,37,9,9,142.5,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,120.0,1,38,1,9,3,118.3,1,0,0,1,0,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,117.0,1,1,19,4,7,113.5,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,141.0,1,19,1,7,3,128.8,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9147,1,1,125.0,1,3,38,2,10,118.7,1,0,0,1,0,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,116.0,1,37,1,5,3,124.8,1,0,0,1,1,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,120.0,1,36,37,0,0,126.7,1,0,0,1,1,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,4,9853,1,1,140.0,1,19,38,4,1,128.5,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,1,3,10,130.0,0,0,0,1,1,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,136.0,1,3,37,2,8,121.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,154.0,1,37,37,9,9,149.5,1,0,0,1,0,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,138.0,1,19,38,5,8,133.5,0,0,0,1,0,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,128.0,1,1,37,4,3,117.9,1,0,0,1,0,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,Graduate +1,43,1,9130,1,1,150.0,1,3,3,3,4,150.0,1,0,0,1,0,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,110.0,1,19,38,3,5,117.4,1,0,0,1,0,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,135.0,1,37,38,9,6,122.1,1,0,0,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9003,1,1,140.0,1,37,37,9,6,104.8,0,0,0,1,0,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,143.0,1,37,37,9,7,131.8,1,0,0,1,0,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,142.0,1,1,1,3,3,133.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,141.0,1,1,19,5,10,127.0,0,0,0,1,0,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,Graduate +3,1,2,9085,1,1,135.0,1,19,1,4,4,129.4,1,0,0,1,0,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,39,1,9254,1,1,133.1,1,19,19,4,7,123.0,0,0,1,0,0,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9500,1,1,131.0,1,19,37,9,7,129.8,1,0,0,1,0,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,Graduate +1,39,1,9670,1,9,133.1,1,6,22,3,3,120.0,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,131.0,1,37,37,3,3,131.7,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,137.0,1,19,19,5,5,134.6,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,131.0,1,1,1,4,10,129.3,0,0,0,1,0,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,140.0,1,1,37,141,192,129.7,0,0,0,1,0,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,140.0,1,37,37,9,9,124.6,0,0,0,1,0,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,138.0,1,37,37,5,9,125.1,1,1,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Dropout +1,2,1,9147,1,1,150.0,1,37,37,9,9,122.0,1,0,0,1,0,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,135.0,1,3,1,4,4,136.1,1,0,0,1,1,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,Enrolled +1,39,1,9991,0,1,150.0,1,1,19,4,8,123.0,0,0,0,1,1,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,141.0,1,19,37,5,8,130.2,0,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,106.0,1,37,37,9,9,108.0,1,0,1,1,0,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,19,133.1,1,37,38,9,7,100.5,1,0,0,1,1,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,Enrolled +1,43,1,9254,1,1,142.0,1,38,38,9,9,125.9,0,0,0,1,0,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,150.0,1,1,37,9,7,130.2,0,0,0,1,0,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,Graduate +4,39,1,9670,1,1,140.0,1,2,1,3,9,170.0,0,0,1,0,1,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9773,1,1,119.0,1,38,19,9,9,118.3,0,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,117.0,1,34,34,0,0,109.3,0,0,0,1,0,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,120.0,1,34,34,99,99,111.6,0,0,1,1,1,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,139.0,1,19,19,9,7,110.3,0,0,1,1,1,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,3,19,9,9,113.2,0,0,0,1,0,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,Enrolled +1,43,1,9991,0,1,120.0,1,38,38,9,7,141.0,0,0,0,1,1,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,151.0,1,3,1,2,4,151.0,1,0,0,1,0,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,130.0,1,37,37,9,6,110.0,1,0,0,1,0,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9853,1,1,130.0,1,2,39,2,5,124.6,0,0,0,1,1,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,138.0,1,1,1,4,3,141.5,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,120.0,1,37,37,9,5,100.0,0,0,0,1,0,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9991,0,39,150.0,1,37,37,6,6,150.0,0,0,0,1,0,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9085,1,19,133.1,1,38,38,4,7,128.2,0,0,0,1,0,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.0,41,19,19,9,9,119.7,1,0,1,1,0,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9085,1,1,128.0,1,1,19,4,90,124.2,0,0,0,0,0,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,120.0,1,1,1,9,9,129.1,1,0,0,1,1,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9773,1,1,125.0,1,19,19,9,7,129.6,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,137.0,1,40,19,2,9,130.7,1,0,0,1,0,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,Dropout +1,51,1,9147,1,1,116.0,1,3,3,2,2,115.2,0,0,1,1,1,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,5,9853,1,1,132.0,1,12,12,4,4,123.3,1,0,0,1,0,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,Dropout +1,7,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,1,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,135.0,1,19,38,9,5,136.8,1,0,0,1,0,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,137.0,1,1,1,4,7,134.6,1,0,0,1,1,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,4,171,1,1,133.1,1,38,38,9,9,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,133.1,1,19,37,7,8,120.0,0,0,1,0,0,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,140.0,1,1,19,9,7,127.0,1,0,0,1,0,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,Graduate +1,18,1,9500,1,1,124.0,1,38,37,9,7,119.3,1,0,0,1,0,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,3,19,2,4,150.0,1,0,0,1,0,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,19,133.1,1,3,19,90,90,123.5,0,0,0,1,0,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9853,1,1,133.1,1,37,37,5,5,116.5,0,0,0,1,0,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,Dropout +1,18,6,9500,1,1,144.0,1,1,1,3,6,130.8,1,0,0,1,0,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9670,1,1,151.0,1,19,19,1,1,100.0,0,0,1,1,0,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,125.0,1,1,19,4,6,115.2,0,1,0,1,0,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,37,38,4,9,110.0,0,0,1,0,0,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,133.1,1,19,19,5,5,108.5,1,0,0,1,0,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,130.0,1,37,11,90,90,122.6,0,0,0,1,0,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,113.0,1,19,37,9,9,118.6,1,0,0,1,0,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,140.0,6,2,3,5,2,124.3,1,0,0,1,0,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,Enrolled +1,1,4,9119,1,1,111.0,1,37,37,9,5,107.5,1,0,0,1,1,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,143.0,1,19,38,9,9,133.4,1,0,0,1,0,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,Graduate +1,17,1,9773,1,1,141.0,1,2,3,2,2,133.7,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,151.0,41,3,3,2,5,161.9,1,0,0,1,0,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,43,1,33,1,1,143.0,1,37,1,9,10,121.2,1,0,0,1,1,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,0,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,141.0,1,1,19,8,7,128.8,1,0,0,1,0,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Enrolled +1,1,1,9238,1,1,115.0,1,19,38,7,7,108.7,0,0,0,1,0,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,114.0,1,1,1,4,0,108.8,1,0,0,1,0,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,2,9853,1,1,112.0,1,37,37,191,182,106.1,1,0,1,1,0,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,2,9085,1,1,157.0,1,3,38,4,6,142.3,0,0,0,1,0,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,Graduate +2,44,1,8014,0,39,160.0,1,37,19,9,10,155.9,0,0,0,1,0,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,Graduate +1,1,4,171,1,1,137.0,1,1,38,4,8,141.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,144.0,1,1,37,9,9,126.5,1,0,0,1,0,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,145.0,1,1,1,4,10,131.4,0,0,0,1,0,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,115.0,1,1,1,9,4,109.1,1,0,1,0,0,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,170.0,1,37,37,0,0,150.8,1,0,0,1,0,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,5,3,9070,1,1,157.0,1,3,1,9,6,138.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,Graduate +1,43,2,9238,1,1,129.0,1,34,30,0,5,118.9,1,0,0,1,1,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,5,9853,1,1,141.0,1,3,19,2,7,130.9,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Graduate +4,39,1,9991,0,1,133.1,1,37,37,9,9,130.4,0,0,0,1,0,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,130.0,1,19,38,9,9,126.9,0,0,1,1,0,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,136.0,1,19,1,4,3,125.2,1,0,0,1,0,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,37,9,9,140.2,0,0,0,1,1,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,132.0,1,37,38,9,5,120.8,0,0,0,1,0,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,150.0,1,19,37,6,6,150.0,0,0,1,1,0,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,Graduate +2,42,1,9991,0,1,130.0,1,3,2,2,2,130.0,0,0,0,1,1,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,Enrolled +4,39,1,8014,0,1,133.1,1,38,37,5,7,144.5,0,0,0,1,0,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,2,9773,1,1,150.0,41,1,37,9,7,130.8,0,0,0,1,0,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,Graduate +2,1,1,8014,0,1,151.0,1,37,37,9,9,152.4,0,0,0,1,0,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,Graduate +6,39,1,9500,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,Dropout +2,43,1,9670,1,1,100.0,1,34,34,0,0,128.2,0,0,0,1,1,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,148.0,1,1,19,3,3,131.7,1,0,0,1,0,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,142.0,1,19,19,7,7,142.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,127.0,1,1,38,4,7,125.6,0,0,1,1,0,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,146.0,1,38,38,9,7,134.1,1,0,0,1,1,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,115.0,1,1,1,4,4,109.1,1,0,0,1,0,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,Enrolled +1,1,2,9773,1,1,148.0,1,1,19,9,9,141.7,0,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,116.0,1,37,37,0,5,114.3,1,0,0,1,0,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,139.0,1,38,19,5,7,130.6,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,Graduate +1,1,6,9147,1,1,128.0,1,37,37,9,9,116.5,0,0,0,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9130,1,3,150.0,1,3,1,90,90,150.0,1,0,0,1,0,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9670,1,1,122.0,1,1,19,4,4,116.1,0,0,0,1,1,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,Enrolled +1,39,1,9119,1,1,100.0,1,37,37,9,8,160.0,0,0,1,0,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9254,1,1,128.0,1,19,1,7,9,121.7,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,143.0,1,37,38,7,7,133.8,1,0,0,1,0,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,107.0,1,38,38,7,7,103.5,1,0,0,1,0,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,Graduate +1,39,2,9147,1,1,143.0,1,19,5,4,1,100.0,1,0,0,1,1,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,140.0,0,0,1,0,0,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,160.0,1,1,1,5,4,160.0,1,1,0,0,1,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,Dropout +2,39,1,9500,1,19,133.1,1,38,38,2,10,120.0,0,0,0,1,0,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,2,9853,1,1,122.0,1,19,19,4,5,112.6,1,0,0,1,0,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,3,9500,1,1,137.0,1,19,37,7,7,126.7,1,0,0,1,0,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,Graduate +1,7,1,9070,1,40,120.0,1,1,19,3,9,120.0,1,0,0,1,0,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,157.0,1,38,3,5,2,141.4,0,0,0,1,0,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,Graduate +2,1,2,8014,0,1,110.0,1,37,1,9,10,108.7,1,0,0,1,0,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,129.0,1,19,37,7,6,120.0,1,0,0,1,0,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,108.0,1,19,1,4,3,111.9,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9070,1,12,110.0,1,37,38,5,10,130.0,0,0,1,0,1,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,122.0,1,1,1,193,101,126.2,0,0,0,1,0,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,4,4,3,3,143.6,0,0,1,1,1,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,Enrolled +1,7,1,9119,1,3,130.0,1,34,34,90,90,130.0,0,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,8014,0,39,120.0,1,19,37,7,6,121.8,1,0,0,1,0,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,142.0,1,37,38,9,9,137.5,1,0,0,1,1,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,138.0,1,3,19,2,4,131.0,1,0,0,1,1,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,Dropout +1,17,2,9853,1,1,125.0,1,1,19,5,5,119.4,1,0,0,1,0,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,137.0,1,1,1,5,4,131.1,1,0,0,1,0,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,133.0,1,38,38,9,9,128.1,1,0,0,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Dropout +4,39,1,9991,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,0,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,17,1,9130,1,1,138.0,1,2,19,2,6,126.3,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,Enrolled +1,17,4,9500,1,1,135.0,1,1,1,4,4,127.0,1,0,0,1,0,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,140.0,1,4,3,3,3,127.8,0,0,0,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,5,1,9147,1,1,126.0,1,19,38,5,6,117.3,1,0,0,1,0,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,Enrolled +1,39,1,9670,1,1,133.1,1,1,19,4,9,140.0,0,0,0,1,1,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,126.0,1,38,38,9,8,118.8,1,0,0,1,0,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,Graduate +2,42,1,9147,1,1,133.1,1,37,37,9,9,115.8,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,126.0,1,1,37,7,9,132.7,0,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,133.0,1,19,19,5,7,123.6,0,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,4,9556,1,1,135.0,1,38,37,3,7,129.0,1,0,0,1,0,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,110.0,1,37,37,9,9,107.6,1,0,0,1,1,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Enrolled +1,17,4,9147,1,1,135.0,1,19,1,0,4,128.7,1,0,0,1,1,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +2,1,1,8014,0,1,150.0,1,1,37,4,7,139.9,1,0,0,1,0,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,116.0,1,1,38,4,3,114.6,1,0,0,1,0,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,121.0,1,19,37,1,3,131.5,0,0,0,1,0,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,100.0,1,19,1,1,90,114.0,1,0,1,0,0,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,146.0,1,19,37,5,8,135.8,1,0,0,1,0,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9119,1,39,140.0,1,1,19,4,5,140.0,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9670,1,1,136.0,1,19,19,5,5,122.0,0,0,1,0,0,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9003,1,1,133.1,1,19,19,4,4,107.5,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9070,1,1,164.0,1,38,38,9,7,165.8,1,0,0,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,154.0,1,38,38,9,9,133.4,1,0,0,1,0,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,127.0,1,19,37,7,7,121.5,1,0,0,1,1,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,Enrolled +1,43,6,9238,1,1,129.0,1,34,34,0,0,125.2,0,0,0,1,0,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,125.0,1,19,1,4,5,122.6,1,1,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,136.0,1,38,19,7,7,121.7,1,0,0,1,0,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,131.0,1,38,1,7,4,128.3,1,0,0,1,0,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,Graduate +1,1,4,171,1,1,132.0,1,1,19,4,5,138.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9254,1,1,115.0,1,12,1,9,3,108.7,1,0,0,1,0,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,131.0,1,1,37,3,7,120.2,0,0,0,1,0,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,134.0,1,1,1,4,9,124.2,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,142.0,1,19,1,9,1,132.6,0,0,0,1,0,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,2,1,3,6,150.0,1,0,0,1,1,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,130.0,1,19,38,9,7,113.5,0,0,0,1,0,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,135.0,1,2,1,2,8,126.6,0,0,0,1,0,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,12,133.1,1,37,37,5,7,119.3,1,0,0,1,1,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9130,1,1,110.0,1,3,19,2,9,105.5,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9130,1,1,134.0,41,1,19,5,5,125.6,1,0,0,1,0,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,151.0,2,1,1,5,9,146.5,0,0,0,1,0,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,133.0,1,1,3,3,3,135.8,1,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,7,1,9070,1,3,140.0,1,37,2,9,3,140.0,0,0,0,0,0,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,147.0,1,37,19,9,5,133.7,1,0,0,1,0,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,Enrolled +1,51,1,9500,1,1,127.0,1,19,1,5,9,150.0,0,0,0,1,0,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,143.0,1,1,37,5,9,126.6,0,0,1,0,0,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,9,160.0,0,0,1,1,0,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,Graduate +4,39,1,8014,0,19,133.1,1,34,34,0,0,100.0,0,0,0,1,0,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +4,43,1,9853,1,1,133.1,100,19,22,90,90,100.0,0,0,0,1,0,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,2,120.0,1,37,37,9,8,120.0,0,0,0,1,0,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9130,1,40,129.0,1,3,3,2,2,155.3,1,0,0,1,0,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,150.0,1,38,37,9,9,150.0,1,0,0,1,1,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,160.0,1,1,37,3,3,160.0,1,0,1,0,0,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,Dropout +2,39,1,9003,1,1,133.1,1,1,19,4,4,120.0,0,0,1,0,1,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,115.0,1,19,38,9,9,108.0,0,0,0,1,0,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,134.0,1,1,19,4,5,126.0,0,0,0,1,0,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,135.0,1,38,38,5,8,133.3,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,5,1,9670,1,1,135.0,1,1,12,4,4,140.3,1,0,0,1,0,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,122.0,1,19,1,4,8,135.8,0,0,0,1,0,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,19,19,3,9,112.6,1,0,0,1,0,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,4,9773,1,1,147.0,1,1,1,4,5,139.7,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,140.0,1,19,19,4,5,140.0,1,0,0,1,0,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,130.0,1,12,12,9,9,126.1,0,0,0,1,1,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,2,9147,1,1,130.0,1,34,37,9,9,118.5,1,0,0,1,1,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,138.0,1,4,1,2,1,133.0,1,0,0,1,0,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,138.0,1,37,37,194,171,131.0,1,0,0,1,0,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,19,5,8,147.3,0,0,0,1,0,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,6,9500,1,1,149.0,1,1,1,4,9,133.0,1,0,0,1,0,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,Graduate +1,16,6,9773,1,1,136.0,1,38,14,0,0,129.7,1,0,0,1,0,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,130.0,1,1,34,9,9,124.8,1,0,0,1,0,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,111.0,1,1,1,3,3,112.4,1,0,0,1,1,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,121.0,1,1,19,4,7,135.4,1,0,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,Graduate +1,1,1,9556,1,1,135.0,1,37,38,7,9,125.8,0,0,0,1,0,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,136.0,1,37,19,5,8,129.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,4,9670,1,1,110.0,1,1,37,7,7,111.1,1,0,0,0,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,128.0,1,38,38,5,5,118.6,1,0,0,1,0,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,Graduate +2,39,1,9500,1,19,133.1,1,37,38,9,10,120.9,1,0,0,1,0,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,Dropout +1,5,3,9085,1,1,143.0,1,37,37,0,90,159.1,0,0,1,1,0,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Dropout +4,39,1,9238,1,1,120.0,1,37,37,9,9,125.5,1,0,0,1,0,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,126.0,1,3,1,2,5,116.9,1,1,0,1,0,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,16,1,9556,1,1,137.0,1,37,37,9,7,122.7,1,0,0,1,0,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,136.0,1,1,1,9,9,123.8,1,0,0,1,0,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +4,39,1,9130,1,1,133.1,1,3,1,5,5,110.0,1,0,0,1,0,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,Dropout +1,17,4,9085,1,1,138.0,1,19,36,90,7,134.9,1,0,0,1,0,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,130.0,1,1,4,4,2,131.4,0,0,0,1,1,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,Graduate +2,42,1,9853,1,1,133.1,1,37,37,4,7,100.0,0,0,0,1,0,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,115.0,1,1,1,9,9,134.3,1,0,0,1,1,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,108.0,1,1,38,5,8,105.9,0,0,0,1,0,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9991,0,1,120.0,1,19,37,5,5,128.2,0,0,0,0,1,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +5,7,1,9130,1,3,160.0,1,19,38,9,6,160.0,0,0,0,0,0,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,121.0,1,3,19,2,9,115.4,1,0,0,1,1,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..92db5db9a6143e84d4ca37f25e2fb4c176360620 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/val.csv @@ -0,0 +1,443 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,17,1,9254,1,1,118.0,1,11,34,5,0,122.2,1,0,0,1,0,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,43,1,9238,1,1,120.0,1,1,38,4,3,118.3,0,0,0,1,0,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,108.0,1,3,1,3,4,109.1,1,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,9991,0,40,130.0,1,19,19,7,3,130.0,0,0,0,1,0,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,19,9,10,150.0,0,0,0,1,1,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9119,1,40,130.0,1,1,1,4,4,130.0,0,0,0,1,1,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,128.0,1,19,19,5,5,124.5,1,0,0,1,0,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,170.0,1,19,19,5,1,170.0,1,0,0,1,0,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,Enrolled +1,1,3,9500,1,1,113.0,1,3,1,134,135,107.8,1,0,0,1,0,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,Enrolled +1,1,2,9670,1,1,117.0,1,37,37,9,9,111.8,0,0,0,1,0,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,1,1,9,4,126.2,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,145.0,1,19,38,7,6,128.6,1,0,0,1,0,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9147,1,3,130.0,1,38,38,1,9,130.0,0,0,0,1,0,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,170.0,1,19,37,8,8,100.0,0,0,0,1,0,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9147,1,1,148.0,1,38,37,5,5,134.0,0,0,0,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,5,9085,1,1,118.0,1,1,38,4,7,122.2,1,0,0,1,0,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,133.1,1,38,38,191,192,118.0,0,0,1,1,0,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,Graduate +1,18,1,9853,1,1,132.0,1,37,37,9,5,126.1,0,0,0,1,0,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +6,39,1,8014,0,1,133.1,1,37,37,9,9,119.0,0,0,0,1,0,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,133.1,1,1,37,7,7,118.0,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,123.0,1,38,38,4,7,114.3,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9991,0,1,143.0,1,19,37,5,8,135.0,0,0,0,1,0,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,128.0,1,1,1,2,10,116.5,0,0,0,1,1,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,Dropout +2,39,1,9085,1,1,120.0,1,19,19,1,4,130.0,0,0,0,1,0,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,Dropout +2,39,1,171,1,19,100.0,1,37,37,9,9,139.0,0,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,3,9500,1,1,139.0,1,38,37,9,8,146.5,0,0,0,1,0,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,120.0,1,37,37,9,1,123.2,0,0,0,1,0,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,1,140.0,1,3,3,4,2,141.7,1,0,0,1,0,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,127.0,1,2,2,3,4,115.8,1,0,0,1,1,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,117.0,1,19,19,9,9,116.3,1,0,0,1,0,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,152.0,1,19,37,3,8,156.9,0,0,0,1,0,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,140.0,1,1,19,4,4,140.7,0,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,133.0,1,3,19,2,7,120.4,1,0,0,1,0,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,1,160.0,1,38,38,7,9,121.4,0,1,0,1,0,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,120.0,1,1,2,9,3,130.0,1,0,0,1,0,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,139.0,1,2,3,3,3,132.7,1,0,0,1,0,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,6,108.3,0,0,0,1,1,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,8014,0,1,107.0,1,19,11,0,0,103.5,1,0,0,1,0,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,113.0,1,38,38,191,175,110.2,1,0,1,1,0,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,1,19,1,5,100.0,1,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,39,140.0,1,38,19,9,5,110.0,0,0,0,1,0,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,Enrolled +1,18,2,9238,1,1,126.0,1,19,37,5,7,129.9,1,0,0,1,1,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,18,1,9254,1,1,137.0,1,19,19,4,5,126.9,0,0,0,1,1,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,121.0,1,37,37,9,9,122.4,0,0,0,1,0,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,51,1,9070,1,1,122.0,1,38,38,9,9,128.8,1,0,0,1,1,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,141.0,1,1,1,3,10,142.8,0,0,0,1,0,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,130.0,1,19,38,9,9,162.3,0,0,0,1,1,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,Dropout +1,18,1,9853,1,1,133.1,1,1,19,141,182,106.0,1,0,1,1,0,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,17,1,9147,1,1,120.0,1,19,19,3,3,113.4,0,0,0,1,0,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,147.0,1,37,19,7,7,134.4,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,1,120.0,1,1,3,144,123,120.0,0,0,0,1,1,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,17,4,9500,1,1,137.0,1,1,37,9,9,128.4,1,0,0,1,0,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,120.0,0,1,1,1,0,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9085,1,1,140.0,1,37,37,9,9,154.6,0,0,0,0,0,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,19,133.1,1,37,19,9,7,134.3,0,0,0,1,1,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,Dropout +1,39,1,9119,1,1,130.0,1,19,37,9,4,149.0,1,0,0,1,1,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,Enrolled +1,17,1,9254,1,1,115.0,1,1,19,3,3,109.4,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,126.0,1,37,3,5,2,116.9,0,0,0,1,1,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,128.0,1,1,1,2,2,130.8,1,0,0,1,0,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,127.0,1,19,19,4,6,120.7,0,0,1,0,0,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9238,1,1,110.0,1,14,14,90,90,112.5,1,0,0,1,0,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,19,5,5,130.8,1,0,0,1,0,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9130,1,1,150.0,1,1,1,4,10,110.0,0,0,1,1,1,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,5,9238,1,3,135.0,1,1,38,9,3,129.4,0,0,1,1,0,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,133.0,1,19,37,1,9,128.5,1,0,0,1,0,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,Graduate +1,39,2,9991,0,1,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9773,1,1,136.0,1,1,38,9,8,131.5,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,138.0,1,37,38,9,8,134.2,1,0,0,1,0,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,7,2,9500,1,3,140.0,1,37,38,9,9,138.0,0,0,0,1,1,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,Dropout +1,43,1,9003,1,1,120.0,1,1,1,4,10,134.4,0,0,0,1,1,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,140.0,1,19,19,9,9,124.3,1,0,0,1,0,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,Graduate +1,17,3,9254,1,1,127.0,1,12,38,5,7,116.9,1,0,1,1,0,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,1,9238,1,1,145.0,1,38,38,9,7,145.0,0,0,0,1,0,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,140.0,1,19,19,9,7,102.5,0,0,0,1,0,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,17,6,9500,1,1,131.0,1,1,19,7,7,126.5,1,0,0,1,0,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,34,34,0,0,123.3,1,0,0,1,0,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,120.0,1,37,3,9,3,168.2,0,0,0,1,1,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,5,9773,1,1,118.0,1,38,19,9,9,113.8,1,0,0,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,122.0,1,19,38,7,7,117.1,1,0,0,1,0,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,115.0,1,19,1,3,7,113.6,0,0,0,1,1,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,141.0,1,1,4,4,4,127.7,0,0,0,1,0,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,130.0,1,37,38,6,6,130.0,1,0,0,1,0,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,120.0,1,37,37,5,5,111.3,1,0,0,1,0,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,145.0,1,1,19,10,5,150.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,129.0,1,38,19,3,7,118.9,1,0,0,1,0,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,Enrolled +1,1,5,9085,1,1,121.0,1,38,37,9,8,114.0,1,0,0,0,0,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,17,1,9254,1,1,126.0,1,1,1,9,9,124.3,0,0,0,1,0,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,149.0,1,1,3,0,0,148.7,0,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9147,1,1,125.0,1,38,38,6,8,114.5,1,0,0,1,0,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,Graduate +1,16,3,9085,1,1,130.0,1,37,37,9,2,119.5,1,0,0,1,0,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,145.0,1,19,37,9,9,132.3,1,0,0,1,0,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,128.0,1,19,38,5,7,125.6,1,0,0,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9254,1,1,135.0,1,38,37,9,7,139.2,0,0,0,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,139.0,1,37,38,6,6,121.3,1,0,0,1,0,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9070,1,39,150.0,1,12,37,3,9,147.7,0,0,1,1,0,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,110.0,1,3,19,4,5,109.0,0,0,0,1,1,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,133.1,1,38,38,5,9,105.0,1,0,0,1,0,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,Graduate +2,51,1,9991,0,1,127.0,1,37,37,8,4,100.1,0,0,0,1,0,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,135.0,1,19,1,4,1,131.9,1,0,0,1,1,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +4,39,1,9556,1,1,160.0,1,19,3,9,2,130.0,0,0,0,1,0,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,Enrolled +1,17,5,9119,1,1,123.0,1,3,1,2,9,116.0,1,0,1,0,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9500,1,1,140.0,1,19,19,7,7,138.6,0,0,0,1,0,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,19,38,9,7,125.6,1,0,0,1,0,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,3,130.0,1,2,2,1,1,130.0,0,0,0,1,0,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,7,9,111.0,0,0,0,0,1,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,148.0,1,1,1,4,8,141.4,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9147,1,1,115.0,1,1,38,3,8,109.8,1,0,0,1,0,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +1,7,3,9130,1,3,130.0,1,19,37,90,5,130.0,0,0,1,0,0,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,5,9500,1,1,141.0,1,38,19,7,7,132.5,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,19,37,9,9,129.9,0,0,0,1,1,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,142.0,1,19,37,4,7,141.3,0,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,19,38,7,4,125.7,0,0,0,1,0,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,129.0,1,19,37,9,9,117.5,1,0,0,1,0,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,103.0,1,1,19,9,9,108.3,0,0,0,1,0,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9853,1,1,133.1,1,19,19,9,9,97.0,1,0,0,1,0,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9238,1,3,150.0,1,37,37,191,192,150.0,0,0,0,1,0,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9085,1,12,133.1,1,34,34,99,99,128.2,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9070,1,1,129.0,1,3,4,2,2,136.4,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Enrolled +1,39,2,9147,1,38,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,133.1,1,34,34,0,0,118.9,1,0,0,1,0,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,135.0,1,19,38,9,9,129.2,0,0,0,1,0,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,122.0,1,37,37,9,3,115.7,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,9853,1,1,120.0,1,1,19,4,7,111.3,0,0,0,1,0,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,141.0,1,38,19,9,10,125.6,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,4,9500,1,1,133.0,1,19,19,3,10,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,106.0,1,1,19,4,4,106.4,1,0,0,1,0,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,Enrolled +2,39,1,9147,1,1,133.1,1,37,37,9,9,140.0,0,0,0,0,0,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,51,1,9070,1,1,130.0,1,3,1,2,8,122.2,0,0,1,1,0,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,Graduate +1,17,6,9500,1,1,143.0,1,38,1,9,10,127.3,1,0,0,1,0,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,154.0,1,1,1,5,7,154.7,0,0,0,1,0,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,120.0,1,37,37,9,7,120.0,0,0,0,1,0,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,151.0,1,37,1,9,9,138.4,1,0,0,1,0,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Graduate +2,39,2,9003,1,19,133.1,1,38,19,4,1,110.0,0,0,0,0,1,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9119,1,1,129.0,1,12,1,4,10,124.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,120.0,1,37,37,4,9,117.1,1,0,0,1,0,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,133.1,1,3,1,4,9,105.0,1,0,0,1,1,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9147,1,1,120.0,1,38,38,9,8,118.3,0,0,0,1,1,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9147,1,1,147.0,1,19,1,9,7,139.3,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,140.0,1,19,19,5,5,131.3,0,0,0,1,1,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,133.0,1,38,19,9,8,128.8,1,0,0,1,1,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,Graduate +1,17,1,9254,1,1,127.0,1,1,1,4,8,126.7,1,0,0,0,1,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9147,1,1,131.0,1,1,19,4,5,120.2,1,0,0,1,0,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,143.0,1,38,38,5,5,133.9,0,0,0,1,0,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,Graduate +4,39,1,9147,1,1,140.0,1,37,37,9,9,142.8,0,0,0,1,0,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,138.0,1,19,1,5,5,128.0,1,0,0,1,0,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,Graduate +1,43,1,9500,1,1,150.0,1,37,37,9,9,130.8,1,0,0,1,0,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,160.0,1,19,38,9,9,152.0,0,0,0,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,42,1,9254,1,1,154.0,1,38,37,1,1,154.0,1,0,0,1,0,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,141.0,1,37,37,4,4,138.9,0,0,0,1,0,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,135.0,1,38,37,9,8,126.3,1,0,0,1,0,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,Graduate +1,17,2,9853,1,1,138.0,1,1,1,9,4,123.0,1,0,0,1,0,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +2,1,1,9085,1,1,139.0,1,19,19,192,144,127.1,0,0,0,1,1,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,Graduate +1,17,4,9070,1,1,116.0,1,38,37,9,9,109.0,0,0,0,1,0,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,38,38,6,3,140.0,0,0,0,1,0,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9254,1,1,120.0,1,19,19,4,4,125.5,0,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9991,0,1,120.0,1,37,37,9,8,122.5,1,0,0,1,0,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,136.0,1,1,37,4,5,130.8,0,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,116.0,1,38,19,8,10,110.8,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9853,1,1,146.0,1,19,38,9,3,145.3,1,0,0,1,0,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,150.0,1,37,37,9,7,150.0,0,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,124.0,1,1,19,5,4,124.4,0,0,0,1,0,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,37,38,9,9,148.5,0,0,0,1,1,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,9,9,127.0,1,0,0,1,1,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,Graduate +4,1,1,8014,0,1,133.1,1,39,19,4,10,143.0,1,0,0,1,0,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,133.1,1,1,19,3,5,115.0,0,0,0,0,1,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,Dropout +2,44,1,9003,1,39,160.0,1,37,38,9,4,160.0,0,0,0,1,0,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,Graduate +1,16,3,9070,1,1,152.0,1,1,38,4,8,156.9,1,0,0,1,0,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,9,9,126.3,0,0,0,1,0,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9773,1,1,131.0,1,1,38,9,5,132.4,1,0,1,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9556,1,1,140.0,1,37,37,9,8,105.0,1,0,0,1,0,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9070,1,1,128.0,1,19,19,3,3,129.8,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,7,9,125.5,1,0,0,1,0,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,140.0,1,38,37,7,7,143.0,0,0,0,1,0,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,139.0,1,19,38,4,9,146.7,1,0,0,1,0,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,129.0,1,1,37,9,9,118.2,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,142.0,1,34,34,99,99,131.9,0,0,0,1,0,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,139.0,1,1,19,9,3,130.3,1,0,0,1,0,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,38,5,5,152.4,0,0,0,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,19,19,4,6,147.6,1,0,0,1,0,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,Graduate +1,51,1,8014,0,2,110.0,1,19,38,9,10,110.0,0,0,0,1,1,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,Graduate +1,17,3,9119,1,1,135.0,1,1,19,141,193,121.7,1,0,0,1,1,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,1,4,9773,1,1,122.0,1,19,19,9,7,121.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9003,1,3,120.0,1,1,19,4,1,120.0,1,0,0,1,1,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,140.0,1,19,37,4,8,133.3,1,0,0,1,0,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,121.0,1,1,1,5,4,111.9,1,0,0,0,1,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,3,130.0,1,1,38,90,90,143.4,0,0,0,1,1,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,1,120.0,1,37,37,6,9,121.0,0,0,0,1,0,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,154.0,1,38,37,4,4,141.4,0,0,0,1,0,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,40,130.0,1,19,1,5,10,130.0,1,0,1,0,0,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,133.1,1,1,1,4,4,120.0,0,0,1,0,1,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,120.0,1,37,1,9,5,113.4,1,0,0,1,0,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,139.0,1,38,37,7,7,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,135.0,1,38,19,194,193,135.4,1,0,0,1,1,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,150.0,1,3,2,2,2,150.0,0,0,0,1,1,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +2,43,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,1,1,7,4,136.0,1,0,0,1,1,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,3,130.0,1,3,3,1,2,150.0,0,0,0,1,0,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,123.0,1,1,38,4,7,115.3,1,0,0,1,0,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,101.0,1,38,38,9,9,104.5,1,0,0,1,0,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,140.0,1,1,19,9,9,128.8,0,0,0,1,1,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,Graduate +1,39,2,9119,1,1,120.0,1,37,37,5,5,128.0,0,0,0,1,1,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,15,133.1,1,34,34,0,0,100.0,1,0,0,0,0,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,133.1,1,6,11,4,5,138.4,0,0,0,1,1,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,142.0,1,37,37,6,7,136.1,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,132.0,1,37,37,9,9,123.6,1,0,0,1,0,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,9,9,126.9,1,0,0,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,15,1,9238,1,1,150.0,26,3,37,2,8,132.5,1,0,0,0,0,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,142.0,1,12,12,9,4,132.6,1,0,0,1,0,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,4,9254,1,1,106.0,1,37,19,9,7,116.9,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,160.0,1,1,19,5,7,155.5,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,42,1,9500,1,1,157.0,1,3,3,3,3,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,131.0,1,3,19,1,4,118.8,0,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,Graduate +1,43,2,9773,1,1,120.0,1,34,34,0,0,103.6,1,0,0,1,0,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,125.0,1,34,37,9,9,129.2,1,0,1,0,0,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,4,9085,1,1,145.0,1,37,1,9,9,145.0,1,0,0,1,0,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,136.0,1,1,1,9,3,122.7,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,1,4,9147,1,1,120.0,1,19,38,5,5,122.8,1,0,0,1,1,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,2,9085,1,1,140.0,1,37,38,9,7,137.0,0,0,0,1,0,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,120.0,1,4,1,4,10,112.0,1,0,0,1,0,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,37,38,7,7,110.0,0,0,0,1,1,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,138.0,1,38,19,9,5,144.3,0,0,0,1,0,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,12,133.1,1,37,37,9,9,120.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9147,1,1,140.0,1,19,19,9,7,120.4,0,0,1,0,0,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,145.0,1,37,1,9,4,138.8,1,0,0,1,0,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,19,38,5,0,133.7,1,0,0,1,0,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9130,1,39,150.0,1,5,1,2,5,150.0,1,0,0,1,1,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,Enrolled +1,43,1,9991,0,1,140.0,1,37,38,9,8,135.5,0,0,1,0,0,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,Dropout +1,1,1,9254,1,1,123.0,1,38,19,9,4,117.8,0,0,0,1,1,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9500,1,1,125.0,1,1,12,3,6,115.2,1,0,0,1,0,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,Graduate +1,17,2,9254,1,1,129.0,1,12,37,9,9,122.0,1,0,0,1,0,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,2,9070,1,1,143.0,1,1,1,4,10,146.2,1,0,0,1,1,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,117.0,1,38,38,4,9,120.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,3,130.0,1,3,1,1,10,160.0,0,0,0,1,0,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,Dropout +1,17,1,9556,1,1,133.0,1,38,37,9,9,124.4,1,0,0,1,0,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,Graduate +1,1,1,9003,1,1,124.0,1,38,19,9,7,116.0,0,0,0,1,1,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,164.0,1,19,1,9,9,161.2,0,0,0,1,1,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,1,130.0,1,37,37,9,9,119.5,1,0,0,1,0,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,1,19,1,5,130.0,0,0,1,1,0,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,142.0,1,19,19,7,3,132.9,0,0,0,1,1,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,126.0,1,19,19,3,7,123.9,0,0,0,1,0,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9254,1,1,132.0,1,1,38,5,6,122.6,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,1,6,9238,1,1,125.0,1,38,1,7,4,118.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,1,140.0,1,3,3,2,2,110.0,0,0,0,1,1,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,138.0,1,1,40,4,3,149.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,43,1,171,1,1,144.0,1,19,19,9,4,121.6,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9773,1,1,129.0,1,37,37,9,7,117.1,1,0,0,1,0,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,Enrolled +1,1,6,9853,1,1,114.0,1,19,19,9,9,110.2,1,0,0,1,1,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Dropout +2,42,1,9147,1,1,100.0,1,37,37,9,9,100.0,1,0,0,1,0,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,135.0,1,38,19,9,5,126.3,0,0,0,1,1,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,156.0,1,3,3,2,2,147.7,1,0,0,1,0,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,Graduate +1,1,1,9147,1,1,139.0,1,38,1,5,5,127.1,1,0,0,1,1,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,127.0,1,1,37,4,9,128.1,0,0,0,1,1,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,5,9070,1,1,124.0,1,37,37,9,9,113.9,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,129.0,1,38,37,9,5,120.0,1,0,0,1,0,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,118.0,1,19,19,9,9,122.2,0,0,0,1,0,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,Graduate +2,39,1,9556,1,19,133.1,1,38,37,7,7,99.5,1,0,1,0,0,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,130.0,1,38,38,7,7,136.3,1,0,0,1,1,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,1,9853,1,1,112.0,1,2,19,3,9,106.1,1,0,0,1,0,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,43,1,9119,1,1,146.0,1,3,1,2,3,100.0,0,0,0,1,1,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,132.0,1,1,12,4,5,124.3,0,0,0,1,0,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,8014,0,1,136.0,1,37,37,5,8,132.5,0,0,1,1,0,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,37,37,90,90,130.0,1,0,0,1,1,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,135.0,1,1,1,4,4,122.8,0,0,0,1,0,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,Graduate +2,39,1,9254,1,1,130.0,1,37,37,9,9,125.0,0,0,0,1,0,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,133.1,1,19,19,9,8,132.0,1,0,0,1,0,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,Dropout +2,39,1,9070,1,1,160.0,1,3,1,2,5,126.5,0,0,0,1,0,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,15,1,9556,1,1,137.0,26,19,1,9,4,137.0,0,0,1,1,0,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9773,1,1,133.1,1,3,5,0,2,125.8,1,0,0,0,1,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,16,4,9238,1,1,135.0,1,37,37,9,9,121.0,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,2,9556,1,1,130.0,1,37,19,9,8,110.0,0,0,0,1,1,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,Enrolled +1,1,1,9853,1,1,123.0,1,1,38,9,6,121.6,1,0,0,1,0,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9119,1,1,126.0,1,38,19,5,5,130.2,0,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,5,9500,1,1,122.0,1,37,3,9,2,116.8,1,0,0,1,0,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,132.0,1,38,38,9,9,119.3,1,0,0,1,0,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,116.0,1,38,1,5,1,111.1,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9500,1,1,113.0,1,38,19,9,7,106.7,1,0,0,1,0,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,Enrolled +1,39,1,9670,1,1,120.0,1,34,34,0,0,106.0,1,0,0,0,1,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,145.0,1,19,37,5,9,130.5,1,0,0,1,0,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,Graduate +2,39,1,9238,1,19,133.1,1,37,37,4,4,98.5,0,0,0,1,0,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,152.0,1,41,19,3,5,137.8,0,0,0,1,0,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,Graduate +1,43,2,8014,0,3,130.0,1,34,34,0,0,130.0,0,0,0,1,1,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,152.0,1,38,37,9,9,139.1,0,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,18,1,9003,1,1,133.1,1,1,38,9,6,101.0,0,0,0,1,1,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,19,1,9,8,105.0,0,0,0,1,0,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,162.0,1,19,1,5,5,147.5,1,0,0,1,0,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,19,1,4,1,101.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9119,1,1,116.0,1,19,1,9,7,112.2,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,133.0,1,38,37,9,7,120.1,1,0,0,1,0,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,110.0,1,37,37,5,6,108.3,0,0,0,0,0,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,Dropout +1,17,2,9773,1,1,121.0,1,1,1,5,5,123.1,1,0,0,1,1,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,17,1,9556,1,1,133.0,1,1,38,4,9,119.0,0,0,0,1,0,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,Enrolled +1,17,1,9147,1,1,139.0,1,1,38,4,5,152.0,0,0,0,1,0,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,160.0,1,12,38,4,8,160.0,1,0,0,1,1,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,133.1,1,19,19,7,7,117.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,128.0,1,3,1,3,3,121.0,1,1,1,1,1,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,116.0,1,1,19,4,7,127.6,1,0,0,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,Dropout +1,18,3,9119,1,1,111.0,1,1,19,9,8,111.0,1,0,0,1,1,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,146.0,1,1,1,9,7,126.0,0,0,0,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,Enrolled +1,53,1,9085,1,42,140.0,1,1,1,5,5,143.3,1,0,0,0,0,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,Enrolled +1,1,1,9070,1,1,144.0,1,1,1,3,5,127.2,1,0,0,1,0,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,141.0,1,38,1,5,7,132.6,0,0,0,1,0,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,18,1,9085,1,1,153.0,1,37,37,9,9,138.0,1,0,0,1,0,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,137.0,1,1,3,5,2,133.9,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,150.0,1,19,38,9,5,143.0,0,0,0,1,0,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,1,9,6,126.1,1,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9070,1,1,133.0,1,4,1,4,4,132.0,1,1,0,1,0,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,140.0,1,1,19,9,9,140.0,1,0,0,1,0,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,133.1,1,3,1,2,4,128.2,1,0,0,1,0,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,1,133.1,1,37,36,90,7,128.2,0,0,0,1,1,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,114.0,1,19,38,9,7,135.9,0,0,0,1,1,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,Graduate +2,51,1,9500,1,1,130.0,1,37,37,5,5,120.0,0,0,0,1,1,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,Dropout +1,43,1,9670,1,39,110.0,1,19,3,7,10,110.0,0,0,0,1,0,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,43,1,9500,1,1,148.0,1,29,38,90,3,131.0,1,0,0,1,0,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,Graduate +1,18,1,9254,1,1,118.0,1,38,38,5,5,123.3,1,0,0,1,1,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9003,1,3,130.0,1,1,38,9,7,130.0,1,0,0,0,1,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,3,38,2,7,121.7,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9991,0,1,133.1,1,38,38,5,5,145.0,0,0,0,1,0,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,136.0,1,1,12,9,10,121.7,1,0,0,1,0,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,160.0,1,19,1,4,10,153.0,1,0,0,1,0,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,Graduate +2,53,1,9147,1,42,130.0,1,19,19,175,152,132.4,0,0,0,1,0,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9119,1,40,120.0,1,1,1,5,10,146.8,0,0,0,1,1,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,150.0,1,19,11,0,0,131.1,1,0,0,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,122.0,1,1,19,4,3,130.4,1,0,0,1,0,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,5,9119,1,1,132.0,1,38,19,5,3,119.1,0,0,0,1,0,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,137.0,1,1,3,4,3,124.6,0,0,0,1,0,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,126.0,1,1,38,4,7,124.3,1,0,0,1,0,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,Graduate +1,43,1,9238,1,39,120.0,1,2,1,1,2,118.6,0,0,0,1,1,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,34,34,0,0,119.1,1,0,0,1,0,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,127.0,1,1,1,4,4,120.4,1,0,0,1,0,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,135.0,1,1,38,5,5,122.4,0,0,1,1,0,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,Graduate +1,18,2,9773,1,1,109.0,1,1,1,4,4,109.0,1,0,0,0,0,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9500,1,1,132.0,1,19,3,9,5,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,Enrolled +1,43,1,33,1,19,133.1,1,38,38,4,4,140.0,0,0,1,1,1,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,Dropout +1,17,1,9773,1,1,120.0,1,37,37,5,5,125.3,0,0,0,1,0,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,1,19,5,10,141.1,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,145.0,1,19,38,4,4,132.1,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9254,1,1,122.0,1,19,19,5,5,118.2,0,0,0,1,0,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,Enrolled +1,17,1,8014,0,1,119.0,1,34,34,0,0,112.4,1,0,0,1,0,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,5,9500,1,1,125.0,1,1,1,3,8,115.6,1,0,0,1,0,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,Enrolled +2,39,1,9991,0,1,150.0,1,1,4,4,2,146.0,0,0,0,1,1,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,132.0,1,4,2,123,112,143.6,1,0,0,1,1,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9085,1,1,144.0,1,1,19,4,10,132.1,1,0,0,1,0,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,19,19,1,1,125.5,1,0,0,1,0,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,130.0,1,19,19,9,6,135.0,0,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,1,140.0,1,19,19,90,90,120.0,0,0,1,0,1,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,143.0,1,1,37,3,8,128.0,0,0,0,1,0,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,Graduate +1,1,3,9070,1,1,146.0,1,34,34,0,0,143.6,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9130,1,1,130.0,1,1,19,6,6,154.0,1,0,0,1,1,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,10,170.0,0,0,0,1,0,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,Enrolled +6,39,1,9991,0,12,130.0,1,37,37,90,90,119.0,1,0,0,0,1,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,53,1,9003,1,42,130.0,1,1,1,144,144,125.8,0,0,1,1,0,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,145.0,1,40,1,2,4,160.1,0,0,0,1,0,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9070,1,1,140.0,1,1,1,9,8,144.3,1,0,0,1,0,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,150.0,1,1,38,6,6,150.0,1,0,0,1,1,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,148.0,1,37,37,9,9,143.5,0,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,123.0,1,19,19,9,8,125.5,0,0,0,0,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,130.0,1,34,1,0,2,128.2,0,0,0,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,1,130.0,1,1,1,3,7,140.0,0,0,0,1,1,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,17,4,9556,1,1,112.0,1,1,1,4,10,107.1,1,0,0,1,0,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,101.0,1,1,1,3,4,102.4,0,0,0,1,0,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,133.0,1,37,37,9,7,121.8,0,0,0,1,1,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9500,1,1,133.1,1,3,1,5,5,148.8,0,0,0,1,0,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,157.0,1,19,38,5,3,149.3,0,0,0,1,0,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,163.0,1,3,4,2,5,175.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,148.0,1,1,3,4,1,163.4,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,Graduate +1,53,1,9085,1,42,130.0,1,38,38,9,9,128.8,0,0,0,1,0,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,Dropout +1,39,1,8014,0,1,120.0,1,1,1,4,4,150.5,0,0,0,1,0,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Graduate +1,51,1,9147,1,1,130.0,1,1,1,4,4,120.0,0,0,0,1,0,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,Enrolled +4,39,2,9556,1,19,133.1,1,19,19,4,6,123.0,0,0,0,1,0,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,Graduate +4,39,1,8014,0,19,140.0,1,37,37,9,3,131.0,0,0,0,1,0,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,131.0,1,19,38,9,9,129.7,1,0,0,1,0,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,Graduate +1,7,1,9238,1,40,130.0,1,37,37,5,5,130.0,0,0,0,1,1,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,Graduate +1,1,1,9130,1,1,133.0,1,3,1,2,4,126.0,0,0,0,1,1,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,100.0,1,1,1,4,4,120.0,0,0,0,1,1,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,138.7,1,1,12,4,3,111.3,0,0,0,1,1,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,135.0,1,38,38,5,7,121.0,0,0,0,1,0,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,1,19,5,9,111.1,0,0,0,1,1,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,43,1,9130,1,1,100.0,41,3,4,3,2,100.0,0,0,0,1,0,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9147,1,3,130.0,1,37,19,9,8,130.0,0,0,0,1,0,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,Graduate +1,1,4,9085,1,1,138.0,1,3,1,1,4,123.3,1,0,0,1,0,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,Graduate +1,17,1,9003,1,1,131.0,1,19,1,9,2,134.5,1,0,0,1,0,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,139.0,1,38,1,9,5,131.8,1,0,0,1,0,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,133.1,1,37,37,6,6,136.2,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,123.9,1,37,1,9,7,123.9,0,0,0,1,1,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,Dropout +1,1,1,9147,1,1,143.0,1,3,1,5,5,152.1,1,0,1,1,1,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,Dropout +1,1,6,9500,1,1,142.0,1,1,37,7,7,123.5,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,124.0,1,2,1,4,10,117.4,1,0,0,1,0,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,5,9119,1,1,130.0,1,19,1,4,5,118.1,1,0,1,0,1,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,Dropout +1,17,4,9147,1,1,121.0,1,38,37,6,7,113.0,1,0,0,1,0,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,150.0,1,19,19,4,10,100.0,0,0,0,1,0,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,151.0,1,37,37,9,9,138.0,1,0,0,1,0,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,138.0,1,38,38,9,9,126.8,0,0,0,1,1,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,Graduate +6,17,3,8014,0,1,115.0,1,19,1,5,90,115.0,0,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,127.0,1,1,19,3,3,120.2,1,0,0,1,0,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,Graduate +1,51,1,9991,0,1,134.0,1,1,1,5,3,120.6,1,0,0,1,1,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,121.0,1,19,1,7,9,117.9,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,131.0,1,1,38,4,8,121.9,1,0,0,1,0,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,19,133.1,1,38,38,7,8,170.0,0,0,0,1,1,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,100.0,1,37,37,9,5,170.0,0,0,0,1,1,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,95.0,1,37,37,5,8,95.0,0,0,0,0,1,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,148.0,1,37,37,9,9,134.7,0,0,0,1,0,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,Enrolled +1,1,2,9238,1,1,121.0,1,19,19,191,171,119.3,1,0,1,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9119,1,1,136.0,1,1,2,5,4,122.7,1,0,0,1,1,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,Dropout +1,17,4,9254,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,1,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,4,9,100.0,0,0,0,0,0,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9254,1,1,160.0,1,1,3,3,3,142.5,1,0,0,0,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,138.0,1,1,19,7,8,129.3,1,0,0,1,0,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,90,90,100.0,0,0,0,1,1,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,148.0,1,1,37,9,7,143.3,0,0,0,1,0,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,19,38,4,10,130.0,1,0,0,1,0,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,19,37,9,7,110.0,1,0,0,1,1,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9254,1,1,131.0,1,4,3,7,4,126.1,1,0,0,1,0,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,Graduate +1,43,2,9500,1,1,136.0,1,38,38,9,5,131.3,0,0,0,1,0,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,119.0,1,1,1,4,10,125.0,0,0,0,1,1,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,Enrolled +1,17,2,9238,1,1,132.0,1,38,1,7,7,133.1,1,0,0,1,0,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,126.0,1,12,1,5,10,120.2,0,0,0,1,0,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,Enrolled +1,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,161.0,22,37,37,9,9,137.9,0,0,1,0,0,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,Graduate +1,17,2,9147,1,1,133.0,1,19,1,9,3,120.1,1,0,0,1,0,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9085,1,1,127.0,1,3,3,2,8,138.8,1,0,0,1,0,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,121.0,1,1,1,1,1,115.1,1,0,0,1,0,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9130,1,1,130.0,1,3,19,2,9,115.9,0,0,0,1,0,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +2,7,1,9991,0,3,140.0,1,34,34,99,99,140.0,1,0,0,0,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,113.2,0,0,0,1,0,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9500,1,1,137.0,1,1,1,9,9,127.9,1,0,0,1,0,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,Dropout +1,1,5,9500,1,1,130.0,1,19,37,9,7,127.6,1,0,0,1,0,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,133.1,1,1,38,3,7,121.7,0,0,0,1,0,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,130.0,1,3,1,4,1,130.0,1,0,0,0,0,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,107.0,1,2,12,3,10,104.2,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,9,113.5,0,0,0,1,0,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,145.0,1,19,37,4,8,136.8,1,0,0,1,0,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,120.0,1,19,38,5,6,112.3,0,0,0,1,0,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,133.1,1,34,34,0,0,125.3,0,0,0,1,1,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,Dropout +1,1,6,9853,1,1,136.0,1,1,19,5,5,122.0,0,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,121.0,1,4,1,2,3,120.7,1,0,0,1,0,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,1,1,9147,1,1,133.1,1,34,34,0,0,131.8,0,0,0,1,0,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,4,100.0,0,0,0,1,0,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,127.0,1,19,38,3,3,121.1,1,0,0,1,1,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/tabsyn/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..43c648957acee2caaf13465b82c90777b50856c2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/tabsyn/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/tabsyn/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1790ef18fc7a35ae93c4ef6895f5e086868986e3 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "tabsyn", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/synthetic/tabsyn_m5/real.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/synthetic/tabsyn_m5/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..1536cf99ff8a3aaf05d2bd6b84a42986911aea5d --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/synthetic/tabsyn_m5/real.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,0,1,127.0,1,1,1,9,6,110.0,0,0,0,0,0,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,0 +1,17,2,9773,0,1,122.0,1,38,37,5,3,119.6,1,0,1,1,1,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,1 +1,1,6,9147,0,1,121.0,1,3,19,4,5,116.8,0,0,1,1,0,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,158.0,1,38,37,5,5,140.2,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,19,19,9,7,131.7,1,0,1,1,1,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,1 +1,1,3,9085,0,1,133.0,1,1,38,9,90,128.2,0,0,1,1,1,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,122.0,1,1,19,9,9,120.3,1,0,1,1,0,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,0 +1,43,1,9119,0,1,130.0,1,1,1,9,2,128.0,0,0,0,0,0,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,2 +1,17,3,9254,0,1,122.0,1,1,1,4,4,126.6,0,0,1,0,1,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,1,100.0,1,37,37,9,9,133.0,0,0,1,1,0,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,0 +1,44,1,9119,0,39,130.0,1,19,3,3,4,130.0,0,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9085,0,39,140.0,1,1,1,4,7,140.0,1,0,0,1,1,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,0 +1,17,2,9070,0,1,130.0,1,37,37,9,9,123.7,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +4,1,1,9991,1,1,130.0,1,37,37,9,9,118.1,0,0,0,0,1,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9500,0,1,190.0,108,3,2,122,4,190.0,1,0,1,1,1,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,102.0,1,1,19,9,5,100.6,1,0,1,1,1,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,1 +1,7,1,9500,0,3,120.0,1,19,3,4,2,120.0,1,0,1,1,1,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,130.0,1,38,19,9,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,111.0,1,3,4,4,3,108.2,1,0,1,1,1,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,39,1,9119,0,1,160.0,1,1,38,4,7,112.0,0,0,1,0,0,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,149.0,1,19,1,4,4,134.8,0,0,1,1,1,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,135.0,1,19,38,3,9,136.1,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,2,9500,0,1,120.0,1,37,34,90,0,121.5,0,0,0,1,1,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,1 +1,1,3,171,0,1,147.0,1,12,19,9,3,151.6,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,128.0,1,37,37,9,9,123.5,1,0,1,1,0,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,1,2,9070,0,1,129.0,1,1,1,4,9,132.9,1,0,1,1,0,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,2 +1,17,2,9500,0,1,138.0,1,1,38,5,8,132.8,1,0,1,1,1,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,134.0,1,19,37,9,9,131.6,1,1,1,1,1,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,130.0,1,37,37,9,9,122.0,1,0,1,1,1,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,37,37,9,10,130.0,0,0,0,0,1,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,2,9085,0,1,130.0,1,37,19,9,8,129.0,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,2 +1,17,5,9119,0,1,126.0,1,38,38,5,9,116.9,1,0,0,1,0,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,37,38,5,6,140.0,1,0,1,1,1,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,2 +1,18,4,9853,0,1,123.0,1,19,38,4,10,123.7,1,0,1,1,1,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,118.0,1,4,3,2,3,110.7,1,0,1,1,1,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,1 +1,39,1,8014,1,2,130.0,1,37,37,5,7,147.5,0,0,1,1,1,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,146.0,1,4,1,2,3,140.0,1,0,1,1,1,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,1 +1,44,1,9003,0,39,160.0,1,37,38,9,7,160.0,0,0,1,1,1,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,7,0,9003,0,3,130.0,1,1,37,4,9,130.0,1,0,1,1,1,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,19,133.1,1,34,34,99,99,96.0,0,0,1,1,0,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,136.0,1,37,37,7,7,140.9,1,0,1,1,0,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,1,9853,0,1,127.0,1,1,1,5,7,121.4,1,0,1,1,1,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,134.0,1,3,19,2,10,128.8,0,0,1,1,1,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,140.0,1,1,3,4,2,142.8,1,0,1,0,1,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,126.3,0,0,1,1,0,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.1,1,19,1,1,3,101.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9147,0,1,122.0,1,1,38,1,7,118.9,0,0,1,1,0,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,107.0,1,19,37,7,7,103.5,1,0,1,1,1,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,156.0,1,38,37,9,9,156.3,0,0,1,1,0,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,128.0,1,1,1,9,9,120.0,1,0,1,1,1,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,0 +1,17,2,9119,0,1,127.0,1,19,1,9,10,121.1,1,0,1,1,0,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,2 +1,39,1,9003,0,4,160.0,1,3,3,4,2,180.4,0,0,0,1,0,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,0 +1,43,1,9670,0,1,132.0,1,3,19,4,8,120.5,0,0,1,1,0,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,134.0,1,1,19,4,5,122.5,1,0,1,1,1,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,142.0,1,1,19,4,4,128.0,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,133.0,1,2,37,9,7,125.7,1,0,1,1,0,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,135.0,1,1,3,4,3,133.3,0,0,1,1,1,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,3,140.0,1,37,12,9,4,140.0,0,0,1,0,1,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9500,0,1,141.0,1,2,38,2,10,135.4,1,0,1,1,1,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,2 +2,43,1,9991,1,2,120.0,1,37,37,9,9,120.0,0,0,1,0,1,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,147.0,1,1,19,4,4,137.2,0,0,1,0,1,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9085,0,1,120.0,1,37,38,9,9,111.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,141.0,1,3,1,9,9,124.3,0,0,1,1,1,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,2 +1,18,1,9773,0,1,125.0,1,1,1,4,7,121.5,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,140.0,1,37,37,5,5,150.0,0,0,0,1,1,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,112.0,1,1,37,4,9,106.8,1,0,1,1,1,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,168.0,1,38,37,9,8,155.1,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,15,1,9119,0,1,133.1,41,2,2,2,2,100.0,0,0,0,1,0,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,2 +2,1,1,8014,1,1,121.0,1,37,37,9,9,114.4,1,0,1,1,1,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,136.0,1,1,38,4,5,132.2,0,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,1 +1,16,1,9070,0,1,145.0,1,1,1,3,3,146.1,1,0,1,1,1,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,2 +1,7,1,9085,0,40,140.0,1,5,3,2,2,140.0,0,0,0,1,0,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,0 +1,1,3,9085,0,1,126.0,1,38,1,9,9,132.0,1,0,1,1,1,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,146.0,1,1,37,9,9,129.3,0,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,131.0,1,37,37,9,6,127.2,0,0,1,1,1,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,139.0,1,37,37,9,9,124.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,133.1,1,37,1,5,4,151.2,0,0,1,1,0,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,170.0,1,38,19,9,2,160.6,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,131.0,1,37,37,9,6,130.7,0,0,0,1,1,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,2 +1,1,6,9500,0,1,122.0,1,19,37,3,5,116.6,1,0,0,1,0,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,1 +1,17,3,171,0,1,147.0,1,19,1,5,4,137.6,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,9,120.0,0,0,1,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,5,1,9130,0,1,157.0,1,5,43,2,2,149.7,1,0,1,1,1,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9003,0,39,160.0,1,3,1,2,6,160.0,1,0,1,0,1,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,140.0,1,9,19,4,4,131.2,0,0,1,1,0,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,1,130.0,1,1,3,2,6,110.0,0,0,1,1,0,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,1 +1,39,1,171,0,1,147.0,1,37,38,175,193,133.3,0,0,1,0,1,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,148.0,1,38,19,4,9,134.7,1,0,1,1,1,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,130.0,1,19,1,9,7,130.4,1,0,1,1,1,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,133.1,1,1,37,4,9,96.0,1,0,1,1,1,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,2 +1,39,1,9991,1,12,120.0,1,37,38,5,5,155.7,0,0,1,1,0,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,117.0,1,3,1,3,3,113.2,0,1,1,1,1,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,1 +1,17,2,9853,0,1,150.0,1,38,19,5,5,142.0,1,0,1,1,1,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,144.0,1,1,19,9,4,130.8,1,0,1,1,1,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,1 +1,17,4,9254,0,1,118.0,1,38,37,5,7,111.7,1,0,1,1,0,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,0 +1,1,6,9500,0,1,141.0,1,2,1,4,4,136.3,1,0,1,1,1,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,1 +2,39,1,9003,0,1,120.0,1,2,2,1,4,100.0,0,0,1,1,0,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,141.0,1,4,3,2,1,136.3,1,0,1,1,0,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,120.0,1,1,19,5,4,140.4,0,0,1,1,1,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,154.0,1,1,37,4,9,134.8,1,0,1,1,1,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,100.0,1,19,19,5,5,101.8,1,0,1,1,1,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,2 +1,17,3,9670,0,1,137.0,1,1,38,4,7,138.4,0,0,1,1,0,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,152.0,1,37,37,7,5,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,118.0,1,37,1,9,7,117.0,1,0,1,0,0,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,140.0,1,12,3,4,3,118.0,1,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9070,0,1,133.0,1,1,2,9,2,128.8,0,0,1,1,0,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,1 +1,39,1,171,0,1,140.0,1,37,37,9,9,100.8,0,1,1,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9070,0,42,130.0,1,40,19,3,5,130.0,1,0,1,0,1,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,143.0,1,1,19,3,3,133.9,0,0,1,1,1,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,1 +2,1,5,9500,0,1,130.0,1,1,19,4,4,122.3,0,0,1,1,1,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,9,9,125.0,1,0,1,1,1,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,120.0,1,37,37,7,8,120.0,0,0,1,1,1,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,1 +1,1,2,9147,0,1,125.0,1,1,19,4,9,124.0,1,0,1,1,1,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,131.0,1,38,19,9,9,130.0,1,0,1,1,0,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,132.0,1,1,1,4,1,119.4,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9500,0,1,135.0,1,19,19,7,7,128.0,1,0,1,1,1,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,1 +1,39,1,9500,0,19,133.1,1,38,38,9,9,114.8,0,0,1,1,1,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,130.0,1,2,2,6,6,130.0,0,0,1,0,0,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,112.0,1,19,38,9,10,112.0,1,0,1,1,1,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,2 +1,39,1,9254,0,1,170.0,1,37,37,4,6,138.3,0,0,1,1,1,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,1 +1,39,1,9147,0,19,100.0,1,38,19,7,9,132.0,0,0,0,0,0,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,133.1,1,19,19,9,9,119.0,1,0,1,0,1,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,0 +1,17,2,9085,0,1,138.0,1,37,37,9,7,123.3,1,0,1,1,1,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,2 +1,39,1,8014,1,1,133.1,1,37,37,9,9,112.5,0,0,1,1,1,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,1 +1,51,1,9670,0,1,140.0,1,12,5,3,3,126.6,0,0,1,1,0,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,1 +1,51,1,9085,0,1,125.0,1,1,1,9,4,120.0,0,0,1,1,1,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,151.0,1,1,1,4,3,132.3,0,0,1,1,0,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,1 +1,43,1,9556,0,1,130.0,1,1,37,5,5,128.0,1,0,1,1,0,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,1 +1,17,6,9670,0,1,113.0,1,4,1,3,10,112.3,0,0,1,1,1,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,17,1,9773,0,1,125.0,1,37,37,5,7,120.1,0,0,1,1,1,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,1 +1,53,1,171,0,42,130.0,1,1,19,9,9,130.0,1,0,1,0,0,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,1 +1,51,1,33,0,1,121.0,1,19,37,5,7,118.6,0,0,1,1,1,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,131.0,1,37,37,90,90,137.0,0,0,1,1,1,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,150.0,1,19,1,4,4,137.8,0,0,1,1,1,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,1,140.0,1,37,37,5,6,128.5,0,0,1,1,1,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,130.0,1,37,2,9,4,126.5,1,0,1,0,0,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,0 +1,1,2,9238,0,1,147.0,1,19,38,9,8,135.8,1,0,1,1,1,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,106.0,1,19,37,9,7,109.5,1,0,1,1,1,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,110.0,1,37,37,9,10,140.0,0,0,0,0,0,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,105.0,1,19,37,8,8,102.6,0,1,1,1,1,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,2 +1,17,6,9147,0,1,133.0,1,19,38,5,6,123.2,1,0,1,1,0,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,2 +1,43,1,9670,0,1,160.0,1,34,34,99,99,100.1,0,0,1,0,0,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,0 +4,7,1,9500,0,40,130.0,1,37,37,3,3,130.0,1,0,1,1,1,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,2 +1,43,2,9853,0,1,118.0,1,19,1,5,4,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,2 +1,43,1,8014,1,1,117.0,1,37,37,9,9,100.0,0,0,1,1,1,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,0 +1,53,1,9238,0,42,130.0,1,1,19,5,5,128.3,0,0,0,0,1,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,0 +1,43,1,9130,0,1,127.0,1,19,38,4,5,120.7,1,0,0,1,1,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,38,37,9,4,150.0,1,0,1,1,0,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,1 +1,39,1,9238,0,1,133.1,1,37,29,0,4,120.5,0,0,1,0,0,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,121.0,1,37,19,9,9,141.4,0,0,0,0,0,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,120.0,1,38,37,9,7,108.0,0,0,1,1,0,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,153.0,6,37,37,9,9,131.8,1,0,1,1,1,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,153.0,1,38,19,9,5,138.5,1,0,1,1,1,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,1 +1,17,2,9254,0,1,107.0,1,12,19,5,5,102.8,1,0,1,1,1,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9238,0,1,135.0,1,1,19,7,7,126.6,1,0,1,1,1,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,124.0,1,1,19,123,103,113.9,1,1,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,144.0,1,37,37,7,9,126.8,1,0,0,0,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9556,0,1,120.0,1,37,37,9,4,150.0,0,0,1,0,1,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,0 +1,43,3,171,0,1,120.0,1,37,37,9,9,143.3,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,140.0,1,38,19,4,10,122.3,1,0,1,1,1,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,157.0,1,3,38,1,5,136.7,1,0,1,1,1,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,2 +2,39,1,9991,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,150.0,1,3,1,2,8,153.8,1,0,1,1,1,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,130.0,1,2,1,2,7,126.2,1,0,1,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,142.0,1,37,37,9,9,132.9,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,43,1,9238,0,1,124.0,1,1,1,3,1,118.8,1,0,0,0,1,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,1,19,4,5,100.0,0,0,1,1,0,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,2 +1,17,5,9238,0,1,122.0,1,37,37,7,5,112.9,1,0,1,1,1,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,97.5,1,0,1,1,0,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,171,0,1,140.0,1,1,3,3,3,138.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,132.0,1,1,1,3,3,119.4,1,0,1,1,1,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,1 +1,42,1,9500,0,1,100.0,1,3,19,2,8,153.0,0,0,1,1,0,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,2 +1,1,1,9254,0,1,123.0,1,38,37,5,5,125.1,0,0,1,1,1,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9130,0,1,133.0,1,38,38,5,8,120.4,1,0,1,1,1,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,1 +1,17,4,9773,0,1,129.0,1,3,1,2,7,132.5,1,0,1,1,0,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,2 +4,39,1,9003,0,19,133.1,1,37,37,9,9,110.0,0,0,1,1,0,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,133.0,1,3,1,9,3,123.2,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,137.0,1,38,19,9,5,129.3,1,0,1,1,1,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,123.0,1,3,1,2,9,127.6,1,0,1,1,0,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,2 +2,39,1,9085,0,19,133.1,1,19,19,9,5,101.0,1,0,1,1,1,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,116.0,1,19,19,7,7,111.1,1,0,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,1,1,9070,0,1,147.0,1,3,1,2,3,149.8,1,0,1,1,0,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,100.0,1,37,37,7,9,100.0,1,0,1,1,1,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,141.0,1,38,38,7,7,132.5,1,0,1,1,1,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,168.0,1,1,1,5,5,161.0,1,0,1,1,0,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,0 +5,39,1,9003,0,19,133.1,1,19,1,9,9,119.4,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,114.0,1,1,19,9,9,111.9,1,0,1,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,2 +1,39,1,9500,0,1,130.0,1,37,37,3,7,143.8,0,0,1,1,0,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,133.1,1,19,19,9,7,100.0,0,0,1,1,0,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,0 +1,17,3,9853,0,1,132.0,1,34,34,0,0,131.3,1,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,157.0,1,37,37,9,9,143.0,0,0,1,1,0,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,1 +5,42,1,9254,0,2,120.0,1,37,37,4,9,120.0,0,0,1,1,1,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,6,1,1,192,144,129.8,0,0,1,1,0,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,2 +1,1,2,9500,0,1,139.0,1,38,37,9,7,125.0,1,0,1,1,1,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,1 +1,17,4,9238,0,1,133.1,1,1,19,9,5,95.0,1,0,1,1,1,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,180.0,1,37,37,7,4,153.8,1,0,1,1,1,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,4,9773,0,1,133.0,1,1,19,9,9,119.7,1,0,1,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,1 +1,17,5,9500,0,1,124.0,1,3,38,2,1,119.8,0,0,1,1,0,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,133.1,1,37,37,9,9,148.2,1,0,0,1,1,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,2 +2,39,1,9991,1,19,133.1,1,37,37,9,7,114.8,0,0,0,1,0,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,133.1,1,1,19,4,8,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,180.0,41,37,37,9,9,152.7,1,0,0,0,0,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9085,0,1,130.0,1,19,19,90,7,115.8,0,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,161.0,1,38,37,5,5,154.4,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,148.0,1,1,38,4,5,148.7,0,0,1,1,0,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,19,38,9,7,131.3,1,0,0,1,1,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,122.0,1,1,1,4,9,112.9,1,0,1,1,1,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,1,4,9500,0,1,142.0,1,38,38,9,8,129.8,1,0,1,1,1,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,1 +3,39,1,9003,0,1,170.0,1,1,37,6,6,170.0,0,0,0,1,1,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,2 +1,1,2,9147,0,1,130.0,1,37,37,9,9,117.8,0,0,1,1,1,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9147,0,1,140.0,1,37,37,9,7,132.3,1,0,1,1,1,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,132.0,1,2,1,9,9,126.4,1,1,1,1,1,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,140.0,1,1,3,9,2,140.0,1,0,1,1,1,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,117.0,1,1,19,4,4,109.3,0,0,1,1,0,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,176.0,1,3,38,3,7,169.7,0,0,1,1,1,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,133.1,1,37,38,7,7,98.0,1,0,1,1,0,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,136.0,1,3,3,2,2,128.7,0,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,12,38,4,9,107.0,1,0,1,1,1,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,0 +1,17,1,9130,0,1,156.0,1,2,9,3,5,166.9,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,1 +1,17,1,9130,0,1,123.0,1,19,3,3,2,121.6,1,0,0,1,1,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,171,0,1,129.0,1,1,1,9,9,124.8,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9119,0,1,125.0,1,19,1,5,4,121.5,1,0,1,1,0,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,0 +1,17,1,9085,0,1,163.0,14,37,37,9,9,150.8,1,0,1,1,1,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,1 +1,7,2,9130,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,1,9085,0,1,135.0,1,1,2,9,1,134.3,1,0,1,1,1,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,19,37,6,6,120.0,0,0,1,1,1,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,1,130.0,1,37,37,9,7,133.0,1,0,1,1,1,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,143.0,1,1,19,4,6,135.0,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +4,43,2,9991,1,38,133.1,1,3,1,2,9,125.4,0,0,1,1,0,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,140.0,1,3,1,2,4,124.1,0,0,1,1,1,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,37,38,175,103,127.0,0,0,1,1,0,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,151.0,1,1,3,1,1,111.0,0,0,1,1,0,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,133.0,1,37,19,9,8,141.4,0,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,133.1,1,38,37,5,5,108.0,0,0,1,1,1,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,9147,0,1,118.0,1,3,19,2,4,113.8,1,0,1,1,1,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,1,1,3,5,141.7,0,0,1,1,1,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,42,1,9119,0,1,130.0,1,19,37,9,3,135.0,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,0 +4,39,2,9147,0,19,133.1,1,37,37,9,7,116.4,0,0,0,0,0,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,148.0,1,19,38,9,8,134.8,1,0,1,1,0,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,116.0,1,19,19,4,7,110.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,1 +1,1,5,9147,0,1,122.0,1,38,38,9,9,117.5,1,0,0,0,1,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,122.0,1,37,37,9,9,125.9,1,0,1,1,0,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,171,0,1,127.0,1,1,1,9,5,124.2,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9147,0,39,117.4,1,19,1,4,9,117.4,1,0,1,1,1,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,150.0,1,37,38,9,9,146.2,0,0,1,1,1,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,2 +1,17,1,9254,0,1,158.0,1,37,37,5,9,138.1,1,0,1,1,1,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,0 +1,7,1,9500,0,3,140.0,1,1,37,9,5,140.0,0,0,1,1,1,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,1 +1,44,1,9238,0,39,140.0,1,1,1,9,3,135.7,1,0,1,1,1,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +2,7,1,171,0,3,120.0,1,19,19,9,9,130.0,1,0,1,1,0,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,10,100.0,1,34,34,0,0,113.0,1,0,1,1,1,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,1 +1,1,1,8014,1,1,125.0,1,37,37,9,7,114.9,0,0,1,1,1,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,1 +1,18,6,9500,0,1,124.0,1,37,37,9,7,117.8,0,0,1,1,1,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,1 +1,1,1,9773,0,1,109.0,1,2,3,3,3,111.8,1,0,0,1,0,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,149.0,1,1,1,9,3,156.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +2,44,1,9119,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,2 +1,44,1,9130,0,39,120.0,6,4,4,3,6,120.0,0,0,0,0,1,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,0 +5,1,3,9085,0,1,133.0,1,19,19,4,7,119.7,1,0,1,1,1,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,2 +1,1,1,9085,0,1,127.0,1,37,37,9,9,122.8,1,0,1,1,1,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,171,0,39,140.0,1,1,1,9,9,140.0,0,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9773,0,1,132.0,1,1,1,4,9,124.3,1,0,0,1,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +4,39,2,9670,0,19,133.1,1,19,1,90,90,103.0,0,0,1,0,0,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,26,1,9147,0,2,133.1,1,34,34,0,0,121.5,1,0,1,1,1,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,143.0,1,19,38,9,6,131.5,1,0,1,1,0,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,1 +1,17,1,9147,0,1,123.0,1,1,19,3,4,122.0,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,171,0,1,133.1,1,3,1,2,3,141.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,19,37,9,4,120.0,0,0,1,1,1,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,1,1,3,3,125.7,1,0,1,1,1,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,121.0,1,37,37,5,5,118.9,1,0,1,1,1,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,1 +1,51,1,9500,0,1,129.0,1,37,38,3,3,137.8,1,0,1,1,1,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,144.0,1,3,1,2,4,134.9,1,0,0,1,1,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,0 +1,17,5,9254,0,1,113.0,1,1,1,2,3,110.2,1,0,1,1,0,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,1,133.1,1,1,19,4,5,120.0,1,0,1,1,0,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,0 +1,39,1,9254,0,19,133.1,1,19,1,9,5,97.0,0,0,0,0,0,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9500,0,1,126.0,1,1,19,6,7,115.5,1,0,1,1,1,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,1 +1,42,1,9853,0,1,141.0,1,37,19,9,3,133.0,0,0,1,1,1,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,0 +1,39,1,9085,0,19,133.1,1,19,19,4,9,139.9,1,0,1,1,1,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,43,2,9254,0,1,140.0,1,19,19,9,9,126.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,108.0,1,34,38,0,3,105.9,0,0,1,1,0,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,114.0,1,19,19,9,7,107.7,0,0,1,1,1,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,0 +1,17,1,171,0,1,130.0,1,3,1,9,9,126.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.1,1,19,37,0,0,137.0,1,0,1,1,1,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9119,0,1,117.0,1,1,2,3,2,119.8,1,0,1,1,0,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9147,0,1,115.0,1,1,37,4,9,117.1,1,0,0,1,1,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,130.0,1,12,19,4,5,118.5,0,1,1,1,1,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,34,37,5,5,120.4,0,0,1,0,1,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,0 +1,44,1,171,0,39,150.0,1,19,1,9,9,154.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,43,1,9147,0,1,140.0,1,37,37,6,6,122.9,0,0,1,1,1,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,0 +1,42,1,9070,0,1,100.0,1,3,2,2,2,115.9,0,0,1,1,1,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,2 +1,17,1,171,0,1,128.0,1,1,1,4,10,134.7,0,0,1,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,1,1,9,9,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,110.0,1,37,37,7,7,133.9,0,0,1,1,1,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,0 +1,43,1,9773,0,1,119.0,1,19,37,5,5,105.0,1,0,1,1,1,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,2 +2,43,1,9991,1,1,140.0,1,37,37,4,1,122.7,0,0,1,1,0,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,135.0,1,37,1,3,5,121.0,0,0,1,1,1,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,123.0,1,3,1,2,3,124.1,1,0,1,1,1,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,0 +1,17,1,9670,0,1,132.0,1,19,1,5,4,119.1,0,0,0,1,0,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,5,9254,0,1,130.0,1,37,38,9,9,122.7,1,0,0,1,0,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9147,0,1,117.0,1,1,38,8,9,117.0,1,0,1,1,0,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,140.0,1,19,19,9,6,135.4,1,0,1,1,1,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,162.0,1,37,37,9,6,132.0,0,0,0,1,0,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,139.0,1,19,38,4,9,128.5,1,0,1,1,1,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,0 +4,39,1,9991,1,1,130.0,1,38,19,9,7,148.0,0,0,1,1,1,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +5,43,1,9500,0,1,131.0,1,1,38,5,5,118.8,0,0,1,1,1,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,5,9238,0,1,126.0,1,38,1,9,5,125.7,1,0,1,1,1,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,1 +1,53,1,9085,0,42,140.0,1,1,1,4,3,140.0,1,0,0,1,1,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,128.0,1,1,1,4,5,120.8,1,0,1,1,1,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,139.0,1,37,37,9,6,133.5,1,0,1,1,1,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,150.0,1,38,38,4,1,150.0,1,0,1,1,0,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,9147,0,1,133.1,1,1,1,4,4,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9853,0,1,140.0,1,37,19,9,8,122.3,0,0,1,1,1,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,0 +1,43,1,8014,1,1,120.0,1,38,19,5,4,118.3,0,0,1,1,1,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,2 +1,7,1,9130,0,3,140.0,1,2,38,2,3,140.0,1,0,1,0,0,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,122.0,1,9,19,90,6,103.4,0,0,1,1,1,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,1 +2,39,1,9070,0,19,133.1,1,37,37,9,10,126.3,0,0,1,0,0,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,160.0,1,38,38,7,7,147.8,0,0,1,1,1,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,2 +1,39,1,9238,0,12,100.0,1,37,37,9,9,124.3,0,0,1,1,0,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,1 +1,18,2,8014,1,1,117.0,1,3,1,3,4,111.8,1,0,1,1,1,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,38,37,7,7,140.0,0,0,1,1,0,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,0 +1,43,1,9853,0,1,140.0,1,3,1,3,3,128.3,1,0,1,1,1,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,127.0,1,37,38,9,9,120.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,1,161.0,1,19,37,4,10,100.0,0,0,1,1,0,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,1 +1,16,4,9500,0,1,145.0,1,1,1,4,4,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,1 +1,7,1,9853,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,0 +1,1,2,171,0,1,127.0,1,2,19,5,5,139.6,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,148.0,1,19,19,4,4,133.8,0,0,1,1,1,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,140.0,1,19,19,1,1,129.5,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,171,0,1,129.0,1,37,37,9,9,122.0,1,0,1,0,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,1,12,3,10,131.6,1,0,1,1,1,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,130.0,1,38,37,3,6,135.6,1,0,1,1,1,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,0 +1,51,1,9991,1,39,120.0,1,1,4,4,10,118.1,0,0,1,1,0,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,0 +1,39,1,9853,0,19,133.1,1,19,4,9,4,116.0,1,0,1,1,1,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9238,0,1,133.1,1,1,37,8,9,118.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,4,9500,0,1,125.0,1,19,1,1,1,117.8,1,0,1,1,1,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,141.0,1,1,38,4,5,125.0,1,0,1,1,1,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,121.0,1,38,38,7,5,120.0,1,0,1,1,1,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,2 +1,17,3,9500,0,1,142.0,1,3,3,3,3,132.9,1,0,1,1,0,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,0 +1,44,1,9238,0,39,140.0,1,37,19,191,102,136.1,1,0,0,1,1,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,2 +1,39,1,9991,1,2,140.0,1,3,3,2,2,155.7,1,0,1,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9119,0,1,135.0,1,12,19,5,5,121.0,0,0,1,1,0,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,135.0,1,3,3,2,2,123.0,1,0,1,0,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,117.0,1,1,1,4,4,117.7,1,0,1,1,0,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +1,43,1,171,0,1,120.0,1,3,3,2,2,120.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,1,38,1,7,120.0,0,0,1,1,1,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,1 +1,17,3,9238,0,1,122.0,1,19,19,7,7,117.5,1,0,1,1,1,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,1,37,37,9,9,144.2,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +4,39,1,9500,0,1,140.0,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,131.0,1,19,19,9,9,139.8,1,0,1,1,1,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,127.0,1,3,3,2,5,100.0,0,0,1,1,1,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,2 +1,39,1,9085,0,1,133.1,1,3,19,2,9,110.0,0,0,1,1,1,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,0 +4,39,1,9500,0,19,133.1,1,38,1,9,4,120.0,0,0,1,1,1,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,1 +1,16,1,9085,0,1,150.0,1,3,3,2,1,153.5,1,0,1,1,1,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,153.0,1,19,37,9,9,153.7,0,0,1,1,1,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,130.0,1,19,19,3,8,131.8,0,0,1,1,1,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,1,2,9853,0,1,131.0,1,1,1,2,9,121.9,1,0,1,1,1,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,136.0,1,3,3,3,3,130.8,0,0,1,1,1,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,126.0,1,1,19,4,0,120.1,0,1,1,1,1,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +1,44,1,9003,0,1,120.0,1,3,2,2,6,120.0,1,0,1,1,0,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,2 +2,39,1,9130,0,19,133.1,1,2,1,2,9,157.0,1,0,1,1,0,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,1 +1,7,1,9853,0,3,150.0,1,19,19,4,5,150.0,0,0,0,0,1,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,51,1,9070,0,12,133.1,1,37,19,3,7,106.6,0,0,0,1,1,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,2 +1,1,2,9085,0,1,157.0,1,3,3,5,2,153.9,1,0,1,1,1,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,1 +1,1,2,171,0,1,117.0,1,1,19,3,3,121.6,1,0,1,1,1,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,1 +1,1,2,9147,0,1,113.0,1,38,38,9,5,107.4,1,0,1,1,0,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,2 +1,39,2,9147,0,12,133.1,1,19,38,9,9,120.0,1,0,0,0,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,152.0,1,37,37,9,9,139.0,1,0,1,1,1,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,138.0,1,1,19,9,9,124.0,0,0,1,1,1,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,1 +2,39,1,9853,0,1,110.0,1,37,37,9,9,95.5,0,0,0,0,1,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9130,0,1,150.0,1,19,19,4,4,130.0,0,0,1,0,0,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,3,9119,0,1,138.0,1,1,19,4,3,125.4,1,0,1,1,0,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,0 +1,17,6,9147,0,1,120.0,1,37,38,9,9,115.5,1,0,0,0,0,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,2 +1,1,3,9670,0,1,134.0,1,14,11,0,0,128.4,1,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,145.0,1,38,37,9,7,129.3,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,18,6,9500,0,1,126.0,1,37,37,5,5,122.8,1,0,1,1,1,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,133.0,1,1,1,4,4,129.2,1,0,1,1,1,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,0 +1,44,1,9070,0,39,120.0,1,1,19,4,7,120.0,0,0,0,0,0,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,136.0,1,19,38,9,9,121.7,0,1,1,1,1,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,126.0,1,1,1,9,10,126.7,1,0,1,1,1,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,1 +1,1,3,9085,0,1,134.0,1,38,19,9,5,129.1,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,133.1,1,1,37,9,9,117.0,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,5,9238,0,1,130.0,1,19,1,5,5,130.0,1,0,1,1,1,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,8014,1,40,140.0,1,19,37,5,9,148.0,0,0,1,1,1,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,137.0,1,3,38,1,9,131.4,0,0,1,0,0,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,0 +1,1,2,9670,0,1,123.0,1,1,38,7,7,120.6,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,139.0,1,3,1,2,7,124.0,1,0,1,1,1,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,0 +1,1,2,171,0,1,152.0,1,38,19,9,9,151.7,1,0,1,1,1,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,110.0,1,37,37,9,4,114.3,1,0,1,1,0,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,2 +1,51,1,9991,1,1,120.0,1,38,3,5,3,128.2,0,0,0,1,0,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,141.0,1,3,2,2,2,133.3,1,0,1,1,0,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,2 +1,5,1,171,0,1,137.0,1,3,19,1,10,144.7,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,2 +1,43,1,9003,0,1,130.0,1,37,1,5,4,130.0,0,0,1,1,0,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,0 +1,18,1,9773,0,1,135.0,1,1,1,3,3,129.8,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,150.0,1,38,38,9,8,150.0,1,0,1,1,0,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,1 +1,17,2,9773,0,1,150.0,1,1,1,4,5,130.8,0,0,1,1,0,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9773,0,1,123.0,1,1,1,4,7,125.1,1,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,1 +1,17,4,9119,0,1,129.0,1,34,36,0,5,118.9,1,0,1,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,0 +1,1,2,9500,0,1,144.0,1,38,37,9,9,128.8,1,0,1,1,0,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,130.0,1,38,38,9,9,150.0,0,0,0,0,0,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,128.0,1,1,1,7,7,120.5,1,0,1,1,1,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,2 +1,7,1,9500,0,3,140.0,1,3,1,4,4,140.0,0,0,1,1,1,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,134.0,1,19,19,1,1,120.4,1,0,1,1,0,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,147.0,1,1,38,4,8,141.1,1,0,1,1,1,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,126.0,1,3,1,5,5,125.7,0,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,1 +2,1,4,9853,0,1,134.0,1,37,37,5,7,122.5,0,1,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,148.0,1,38,38,4,9,131.6,0,0,1,1,0,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,0 +2,39,1,9085,0,9,133.1,1,1,1,4,4,120.0,1,0,1,0,0,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,0 +1,39,1,9254,0,1,150.0,1,3,1,3,4,122.3,0,0,1,1,0,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,125.0,1,19,37,3,7,126.8,0,0,1,1,1,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,2 +1,18,1,9670,0,1,128.0,1,19,3,9,7,120.0,1,0,1,1,1,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,160.0,1,2,1,4,4,137.3,1,0,1,1,1,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,1 +2,39,1,9238,0,42,170.0,1,19,38,8,8,159.5,0,0,1,1,0,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9773,0,1,143.0,1,1,1,4,9,144.1,1,0,1,1,0,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,9991,1,1,130.0,1,37,37,9,9,127.8,0,0,1,1,0,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,51,1,9147,0,1,130.0,1,19,38,9,8,115.7,0,0,1,1,0,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,2 +1,17,3,9773,0,1,135.0,1,1,19,5,7,135.0,0,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,135.0,1,1,1,9,9,133.3,0,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,6,9500,0,1,136.0,1,1,1,4,5,123.3,0,0,1,0,1,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,143.0,1,5,5,2,2,137.8,0,0,1,1,0,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,133.1,1,1,19,141,114,140.0,1,0,1,1,1,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,17,6,9670,0,1,117.0,1,38,19,0,1,114.6,0,0,1,0,0,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,133.1,1,1,19,4,10,145.8,0,0,1,1,0,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,129.0,1,1,37,4,9,118.2,0,0,1,1,0,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,1 +1,7,1,9500,0,3,130.0,1,37,37,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,1 +1,17,4,9670,0,1,135.0,1,38,38,9,7,127.0,1,0,1,1,1,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,126.0,1,1,1,90,90,119.0,1,0,0,1,0,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9773,0,1,120.0,1,1,38,5,5,121.4,0,0,1,0,1,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,136.0,1,1,38,9,9,130.8,1,0,1,1,1,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,131.0,1,19,37,9,9,123.8,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,144.0,1,19,19,9,9,142.6,1,0,1,1,1,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,126.0,1,38,38,7,8,126.7,1,0,1,1,1,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,3,171,0,1,125.0,1,37,37,5,10,120.5,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,7,1,9130,0,2,110.0,1,19,19,4,8,110.0,1,0,1,1,0,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,3,1,2,8,150.0,0,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,5,171,0,1,139.0,1,19,3,9,2,136.9,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,1,9147,0,1,100.0,1,38,38,5,5,101.8,1,0,1,1,1,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,2 +1,44,2,9238,0,39,150.0,1,3,19,4,9,147.0,1,0,1,1,1,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,39,1,9254,0,19,133.1,1,37,37,9,4,100.0,0,0,1,1,0,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,0 +1,17,1,9130,0,1,130.0,1,19,38,4,7,122.5,0,0,1,1,0,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,19,37,1,1,140.0,0,0,0,1,0,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,2 +1,17,1,9070,0,1,157.0,1,3,3,3,3,146.2,0,0,1,1,0,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,9500,0,1,150.0,1,37,19,8,4,130.8,0,0,1,1,0,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,133.1,1,19,19,7,7,130.0,1,0,1,1,1,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,150.0,1,19,1,9,8,150.0,1,0,1,1,0,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,127.0,1,1,19,7,7,121.8,1,0,1,1,1,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,2 +1,1,1,9853,0,1,148.0,1,19,19,5,7,141.7,0,0,1,1,1,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,130.0,1,1,19,9,9,133.4,0,0,1,1,1,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,123.0,1,37,38,3,3,122.0,0,0,0,1,0,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,2 +1,17,1,9070,0,1,132.0,1,37,38,9,7,138.0,0,0,1,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,146.0,1,2,19,3,9,130.3,1,0,1,1,0,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,1 +1,44,1,171,0,39,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,116.0,1,3,1,3,4,115.7,0,0,1,0,0,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,2 +1,1,1,9670,0,1,130.0,1,19,37,4,5,118.8,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,124.0,1,37,37,7,9,121.2,0,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,127.0,1,19,37,9,3,120.7,1,0,1,1,1,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +2,43,1,9070,0,2,140.0,1,37,37,6,6,140.0,1,0,1,1,0,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,1 +1,39,1,9500,0,1,100.0,1,3,1,2,5,121.3,1,0,1,1,1,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,2 +1,39,1,9991,1,19,133.1,1,37,37,9,6,105.3,0,0,0,1,1,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9670,0,1,155.0,1,1,19,4,8,134.7,1,0,1,1,1,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,15,1,9119,0,1,160.0,32,1,3,143,152,160.0,0,0,0,1,1,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,2 +1,53,1,9670,0,42,140.0,1,19,37,3,6,140.0,1,0,0,1,1,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,2 +1,1,6,9853,0,1,140.0,1,38,38,9,7,137.6,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,140.0,1,19,19,7,7,129.5,1,0,1,1,1,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,1 +1,39,1,9773,0,19,133.1,1,19,19,3,4,104.0,0,0,0,0,1,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,130.0,1,37,37,9,9,118.8,0,0,0,1,0,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,136.0,1,1,1,9,1,133.0,1,0,1,1,1,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,143.0,1,38,38,9,9,138.8,1,0,1,1,1,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,1 +2,39,1,9147,0,1,140.0,1,37,37,6,10,131.8,0,0,1,1,1,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,2 +1,39,1,9085,0,1,130.0,1,4,1,2,9,120.0,0,0,1,0,1,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,2 +1,1,4,9500,0,1,148.0,1,19,19,4,5,137.0,1,0,1,1,1,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,120.0,1,37,19,5,3,156.0,1,0,1,1,0,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,9853,0,1,133.1,1,12,1,4,0,134.8,1,0,1,1,1,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,122.0,1,1,1,9,8,120.3,0,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,156.0,1,19,38,9,5,170.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,3,171,0,1,129.0,1,38,37,9,3,127.3,1,0,0,0,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,142.0,1,38,38,9,10,127.0,1,0,1,1,1,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,150.0,1,38,19,3,3,120.1,0,0,1,0,1,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,141.0,1,37,37,9,9,126.7,1,0,0,1,1,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,43,3,9147,0,1,127.0,21,3,37,3,3,117.9,1,0,1,1,1,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,1,120.0,1,1,19,4,7,110.0,0,0,1,1,0,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,0 +2,42,1,9254,0,1,136.0,1,2,2,134,112,130.0,1,0,1,1,0,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,0 +1,18,1,9119,0,1,122.0,1,19,1,90,3,116.1,1,0,0,0,0,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9500,0,1,120.0,1,2,4,4,5,136.6,0,0,1,1,0,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,0 +1,18,1,9070,0,1,143.0,1,38,38,7,5,141.6,0,0,1,1,1,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,1 +1,43,1,9119,0,1,140.0,1,37,38,5,7,146.5,0,0,1,1,0,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,125.0,1,19,19,9,9,121.5,1,0,1,1,1,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,1,0,1,1,1,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,159.0,1,3,3,2,2,165.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,127.0,1,3,1,2,9,119.3,1,0,1,1,1,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,1 +1,17,6,9238,0,1,117.0,1,1,38,4,7,114.6,0,0,1,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9119,0,1,148.0,1,19,19,9,8,129.8,0,0,1,0,0,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,2 +1,17,4,9119,0,1,127.0,1,19,19,5,5,120.4,1,0,0,0,0,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,5,9500,0,1,144.0,1,19,1,5,3,141.0,1,0,1,1,1,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,1 +1,17,3,9556,0,1,126.0,1,19,19,9,4,119.0,1,0,1,1,1,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,0 +1,1,4,9119,0,1,126.0,1,3,19,2,9,123.6,1,0,1,1,0,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,120.0,1,1,2,144,123,125.3,0,0,0,1,0,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,2 +1,39,1,9070,0,1,130.0,1,1,19,4,4,110.0,1,0,1,1,1,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,140.0,1,37,37,90,5,115.5,0,0,1,0,0,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,130.0,1,38,38,9,9,120.0,0,0,1,1,1,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,0 +1,17,2,9853,0,1,141.0,1,3,1,1,5,130.2,1,0,1,1,1,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,2 +2,1,1,9500,0,1,156.0,1,1,1,9,10,135.5,0,0,1,1,1,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,1 +2,7,1,8014,1,3,170.0,1,19,19,4,4,170.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,2,9147,0,1,134.0,1,37,19,9,8,126.3,1,0,1,1,1,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,122.0,1,12,12,5,7,126.6,1,0,1,1,1,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,38,38,9,7,138.8,1,0,1,1,1,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,132.0,1,37,37,5,7,127.5,1,0,1,1,1,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,1 +1,16,2,9238,0,1,130.0,1,37,37,5,6,126.9,1,0,1,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,110.0,1,3,2,3,3,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,127.0,1,2,19,4,5,121.8,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,1 +1,39,1,9085,0,12,133.1,1,38,19,9,8,138.3,1,0,0,0,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +1,39,1,9147,0,19,133.1,1,3,1,3,5,153.2,1,0,0,1,1,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,37,19,5,9,130.0,1,0,1,1,1,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +2,39,2,9147,0,1,130.0,1,19,37,4,7,140.0,0,0,1,1,0,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,128.0,1,19,19,7,7,124.4,0,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,19,3,8,150.3,1,0,1,1,0,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,143.0,1,38,19,7,9,129.5,1,0,1,1,1,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,1 +1,42,1,9500,0,6,141.0,1,37,1,9,4,145.0,0,0,1,1,1,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,1 +1,17,1,9238,0,1,160.0,1,19,37,6,6,144.3,0,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,2,9238,0,1,133.1,1,19,19,4,5,120.6,1,0,1,1,1,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,37,19,9,3,116.5,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,127.0,1,1,1,3,4,130.2,1,0,1,1,0,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,4,9254,0,1,131.0,1,38,36,9,9,124.0,1,0,1,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,1 +1,1,5,9254,0,1,120.0,1,37,37,9,7,127.0,1,0,1,1,1,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,135.0,1,34,34,0,0,134.1,1,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9254,0,1,133.1,1,37,37,9,6,121.5,0,0,1,1,0,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,144.0,1,38,38,5,7,128.0,1,0,1,1,1,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,132.0,1,1,19,6,6,124.7,1,0,1,1,0,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,1 +1,17,2,9991,1,1,116.0,1,37,19,9,4,118.5,0,0,1,1,0,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,133.1,1,1,1,9,1,103.0,1,0,1,1,1,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,16,5,9085,0,1,134.0,1,19,37,8,8,123.9,1,0,1,1,0,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,2 +1,43,1,9773,0,1,114.0,1,37,38,9,5,107.4,1,0,1,0,0,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,38,37,5,7,120.0,1,0,1,1,1,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,135.0,1,1,38,4,6,122.1,0,1,0,0,0,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,0 +2,39,1,8014,1,1,150.0,1,37,37,7,5,143.0,0,0,1,1,1,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,1 +1,44,1,9991,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,1 +4,39,1,9238,0,19,133.1,1,37,37,9,10,103.5,0,0,1,0,1,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,126.0,1,19,38,9,9,132.0,1,0,1,1,1,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,125.0,1,1,1,7,3,143.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,39,1,9147,0,1,120.0,1,37,1,9,1,122.7,0,0,1,0,1,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +2,7,1,8014,1,3,124.4,1,37,34,0,0,130.0,0,0,1,1,1,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,1 +1,18,1,9085,0,1,106.0,1,1,19,3,5,104.6,0,0,1,0,0,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,2 +1,44,1,9119,0,39,160.0,1,3,38,2,3,160.0,0,0,0,0,0,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,148.0,1,3,19,2,5,130.0,0,0,1,1,1,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,2 +1,1,1,9130,0,1,133.0,1,1,37,9,9,123.2,1,0,1,1,1,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,17,5,9500,0,1,130.0,1,19,1,9,4,128.8,1,0,1,1,1,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,149.0,1,19,1,9,9,137.8,1,0,1,1,0,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,1 +4,43,1,9670,0,1,150.0,1,37,37,9,6,110.0,0,0,1,1,1,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,1 +2,39,1,9119,0,1,110.0,1,19,19,0,5,137.0,0,0,0,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9556,0,1,122.0,1,19,19,3,10,113.3,1,0,1,1,1,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,140.0,1,1,19,4,5,127.5,0,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,3,9070,0,1,128.0,1,37,37,5,5,124.5,1,0,1,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,1 +1,44,1,9085,0,39,150.0,6,5,4,1,1,150.0,0,0,1,1,1,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,131.0,1,38,37,7,7,127.2,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,130.0,1,37,37,9,6,126.5,1,0,1,1,1,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,1 +1,17,1,9119,0,1,116.0,1,19,37,90,5,116.7,1,0,1,1,0,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,0 +1,17,3,9853,0,1,140.0,1,38,38,5,7,126.7,1,0,1,1,1,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,0 +1,17,4,9238,0,1,129.0,1,37,37,9,8,117.1,1,0,1,1,0,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,144.0,1,19,19,9,9,130.5,1,0,1,1,1,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,124.0,1,19,1,7,10,116.0,1,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,122.0,1,1,19,4,4,127.3,1,0,0,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,12,12,4,1,155.3,1,1,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +2,15,1,9773,0,1,133.1,41,37,37,9,6,100.0,0,0,1,1,1,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,138.0,41,1,1,9,9,126.5,1,0,1,1,1,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,1 +1,18,6,9500,0,1,142.0,1,38,37,9,5,128.0,1,0,1,0,1,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,3,1,2,3,140.0,1,0,1,1,1,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,2 +1,42,1,9991,1,1,150.0,1,19,19,5,5,113.7,0,0,1,1,0,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,135.0,1,1,19,5,5,130.1,1,0,1,1,1,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,2,9254,0,1,120.0,1,19,1,9,8,117.2,0,0,1,1,0,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,130.0,1,19,19,9,7,119.5,1,0,1,1,0,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,133.0,1,1,1,4,5,136.2,1,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,15,1,9147,0,1,133.1,21,1,3,192,3,100.0,0,0,0,1,0,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,2 +1,1,1,9670,0,1,112.0,1,37,1,7,0,110.6,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9238,0,1,117.0,1,19,19,9,9,117.0,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9991,1,1,140.0,1,1,37,9,8,154.5,0,0,1,1,1,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,97.0,1,0,1,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,119.0,1,37,37,5,4,118.0,1,0,1,1,0,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,112.0,1,19,38,5,7,107.1,1,0,1,1,1,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,1 +2,18,2,8014,1,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,144.0,1,37,37,9,6,129.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,120.0,100,1,1,4,7,119.5,0,0,0,1,1,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,136.0,1,19,38,5,8,130.3,1,0,1,1,1,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,7,9,121.3,1,0,1,1,1,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,135.0,1,1,4,5,3,124.9,0,0,1,1,1,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,4,9670,0,1,128.0,1,38,38,3,7,121.0,1,0,1,1,1,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,15,1,9556,0,1,114.0,26,3,19,122,144,114.0,0,0,1,1,1,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,2 +1,17,2,9238,0,1,125.0,1,19,19,3,3,118.0,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,118.0,1,37,37,7,7,114.2,0,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,2 +1,17,1,9147,0,1,115.0,1,19,37,5,7,112.9,1,0,1,0,0,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,120.0,1,19,37,9,9,118.3,0,0,0,0,0,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9119,0,10,133.1,1,34,37,0,0,128.8,1,0,1,1,0,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,115.0,1,19,38,5,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,137.0,1,37,37,9,9,132.8,1,0,1,1,1,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9003,0,1,148.0,1,19,37,9,9,131.6,1,0,1,1,0,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9773,0,1,161.0,1,1,19,4,7,148.4,0,0,1,1,1,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,1 +2,43,1,9991,1,1,133.1,1,37,37,9,7,113.5,0,0,1,1,1,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,132.0,1,1,1,9,9,133.8,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,1,9254,0,1,125.0,1,37,37,9,9,122.9,0,0,1,1,0,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,123.0,1,3,1,9,3,121.3,1,0,1,1,1,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,2 +1,17,1,9991,1,1,154.0,1,38,38,4,5,134.1,0,0,1,1,1,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,2 +1,44,1,9130,0,39,140.0,1,19,19,5,5,140.0,1,0,0,0,1,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,2 +1,53,1,9085,0,42,170.0,1,1,19,4,7,170.0,0,0,1,1,1,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,1 +1,17,5,9147,0,1,131.0,1,19,38,3,10,119.8,1,0,1,1,1,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,141.0,1,19,19,9,9,126.0,1,0,1,1,1,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,1 +1,1,3,9500,0,1,137.0,1,19,19,5,4,131.5,1,0,1,1,1,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,118.0,1,19,1,9,3,113.5,1,0,0,1,1,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,100.0,1,37,37,99,99,100.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9130,0,1,120.0,6,1,3,9,2,120.0,0,0,0,1,1,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,2 +1,1,1,9147,0,1,127.0,1,19,19,5,5,129.8,1,0,1,1,1,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,134.0,1,37,37,9,9,129.8,1,0,1,1,1,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,121.0,1,37,37,5,9,116.5,1,0,1,1,1,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9070,0,1,117.0,1,19,37,5,5,131.0,1,0,0,0,0,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,125.0,1,1,38,9,7,119.8,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,5,9500,0,1,140.0,1,1,1,4,3,131.1,1,0,1,1,1,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,1 +1,1,5,9254,0,1,101.0,1,3,19,3,9,98.9,1,0,1,1,0,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,130.0,1,37,38,7,9,117.8,0,0,0,1,1,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,128.0,1,34,19,3,0,141.0,1,0,1,0,1,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,150.0,1,38,37,9,9,130.8,0,0,1,1,0,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,125.0,1,1,19,4,7,116.6,0,0,1,1,0,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,1 +1,43,1,9670,0,1,130.0,1,34,34,0,0,114.8,0,0,1,1,0,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,1 +2,42,1,9003,0,1,120.0,1,3,1,2,2,113.3,0,0,1,1,0,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +4,39,1,9991,1,1,133.1,1,37,37,5,5,138.7,0,0,1,1,1,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,0 +1,39,1,9238,0,1,140.0,1,34,34,0,0,114.0,1,0,1,0,1,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9991,1,1,133.1,1,37,19,3,10,136.1,0,0,1,1,0,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9070,0,1,110.0,1,37,37,7,7,110.2,0,0,1,1,0,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,150.0,1,4,5,4,2,150.0,0,0,1,1,0,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,2 +1,1,2,9119,0,1,149.0,1,38,38,5,5,141.0,0,0,1,1,0,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,2 +1,42,1,9085,0,39,150.0,1,1,1,4,7,150.0,1,0,1,1,1,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,1,38,4,9,131.7,1,0,1,1,1,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,42,1,9853,0,1,120.0,1,1,37,5,5,113.9,1,0,1,1,1,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9085,0,1,130.0,1,37,19,9,7,130.0,1,0,1,1,1,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,2 +1,17,4,9500,0,1,133.0,1,38,37,5,7,126.4,1,0,1,1,0,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,147.0,1,3,1,2,3,131.6,0,0,1,1,1,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,1 +1,39,1,9991,1,12,133.1,1,37,37,9,9,121.5,0,0,1,1,0,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,2 +2,1,1,9991,1,1,150.0,1,37,37,9,9,131.8,0,0,1,0,1,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,0 +1,43,4,8014,1,1,116.0,1,34,34,0,0,116.2,0,0,1,1,0,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,1 +1,44,1,9130,0,39,140.0,1,1,19,4,7,140.0,0,0,1,1,0,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,2 +1,17,1,9773,0,1,136.0,1,3,1,2,3,132.5,1,0,1,1,1,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,1 +4,39,1,9500,0,19,110.0,1,37,38,5,5,151.0,0,0,0,0,0,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,0 +1,17,2,9254,0,1,123.0,1,19,19,5,5,113.2,1,0,0,1,1,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,137.0,1,3,19,2,9,122.3,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +4,39,1,9254,0,1,120.0,1,37,19,9,9,131.0,1,0,1,1,0,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9556,0,1,123.0,1,19,19,4,9,113.8,1,0,1,1,1,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,150.0,1,3,37,4,7,139.5,0,0,1,1,0,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,145.0,1,38,37,3,9,138.4,1,0,1,0,1,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,2 +1,39,1,8014,1,1,140.0,1,37,37,9,7,122.0,1,0,0,0,0,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,0 +2,43,3,9991,1,1,120.0,1,37,37,9,9,128.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,6,9500,0,1,126.0,1,12,37,5,9,121.8,1,0,1,1,1,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,0 +2,39,1,9991,1,1,130.0,1,37,37,9,9,140.0,1,0,1,1,0,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,130.0,1,37,19,9,8,130.8,0,0,1,1,0,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,2 +1,1,3,9070,0,1,125.0,1,19,38,9,9,125.4,1,0,1,1,1,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,132.0,1,38,38,4,9,119.1,0,0,1,1,1,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,1 +4,7,1,9147,0,3,130.0,1,19,1,5,5,130.0,0,0,1,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,130.0,1,19,19,7,7,121.6,1,0,1,1,1,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9773,0,1,126.0,1,37,38,5,5,129.5,1,0,0,0,1,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,133.0,1,38,38,5,5,123.2,0,0,1,1,1,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,140.0,1,37,37,9,9,121.0,0,0,1,1,1,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,3,9500,0,1,131.0,1,37,37,9,9,118.0,1,0,1,1,1,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,2 +1,1,1,9670,0,1,120.0,1,38,19,4,8,115.1,0,0,1,1,1,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,2 +1,17,5,9773,0,1,111.0,1,19,12,7,3,115.9,1,0,1,1,1,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,135.0,1,1,19,9,7,123.5,1,0,1,1,1,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,37,4,9,130.0,1,0,1,1,1,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,2 +1,44,1,9119,0,39,130.0,1,3,19,3,4,130.0,0,0,1,1,0,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,2 +1,44,1,9147,0,39,130.0,22,2,37,2,8,130.0,0,0,0,0,0,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,119.0,1,37,37,9,6,119.0,0,0,0,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9500,0,1,142.0,1,38,37,9,8,130.8,1,0,1,1,1,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,136.0,1,38,1,9,4,129.7,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,1 +1,42,1,9003,0,1,140.0,1,19,19,4,4,140.0,1,0,1,1,0,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,19,133.1,1,1,19,4,10,114.0,0,0,1,1,0,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,0 +1,17,5,9670,0,1,125.0,1,19,30,7,7,118.4,1,0,1,1,1,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,2 +1,1,2,9500,0,1,135.0,1,19,19,9,10,122.9,1,0,1,1,1,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,100.0,1,37,37,9,9,108.0,1,0,1,1,0,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,127.0,1,37,37,9,9,119.3,1,1,1,1,0,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,133.0,1,38,19,9,10,125.0,1,0,1,1,1,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,116.0,1,3,3,3,3,110.1,1,0,1,1,0,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,133.1,1,1,1,5,8,123.0,1,0,1,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,144.0,1,37,37,9,3,150.5,0,0,1,1,1,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,133.0,1,3,1,2,4,130.2,0,0,1,1,0,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,116.0,1,38,37,9,6,109.7,1,0,1,1,1,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,1 +1,18,3,9853,0,1,128.0,1,38,37,5,9,116.8,1,0,1,0,0,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,150.0,1,37,37,4,9,132.1,1,0,0,1,1,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,160.0,1,1,19,4,6,155.7,1,0,1,1,1,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,130.0,1,19,1,9,9,131.9,0,0,1,1,1,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,126.0,1,3,3,2,2,121.1,0,0,0,1,1,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,133.0,1,38,38,7,7,147.0,0,0,1,1,1,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,137.0,1,37,37,9,9,126.2,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,149.0,1,38,37,5,5,137.1,1,0,1,1,1,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,143.0,1,2,37,1,1,133.2,1,0,1,1,1,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,2 +1,17,5,9070,0,1,122.0,1,19,38,5,7,119.6,0,0,0,0,1,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,137.0,1,19,38,9,9,127.2,1,0,1,1,1,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,110.0,1,1,1,4,4,125.9,0,0,1,1,0,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,130.0,1,1,38,5,9,118.1,0,0,0,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9853,0,1,130.0,1,37,19,9,5,102.5,0,0,1,1,1,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.0,1,19,1,9,1,122.2,0,0,1,1,1,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,39,140.0,1,3,3,2,2,140.0,1,0,1,1,1,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,134.0,1,37,38,9,9,120.3,1,0,1,1,1,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,1,1,37,4,7,110.0,0,0,1,1,0,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,0 +1,15,1,9085,0,1,133.1,41,3,3,4,2,101.3,0,0,1,1,1,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,113.0,1,1,1,5,4,106.7,1,0,0,1,1,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,0 +2,39,1,9991,1,19,133.1,1,37,37,5,5,111.9,1,0,1,1,0,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9853,0,1,134.0,1,19,38,4,8,122.1,1,0,1,1,1,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,0 +1,1,2,9853,0,1,133.0,1,19,37,4,9,130.2,1,0,1,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,127.0,1,19,19,5,5,160.0,0,0,1,1,0,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,1 +1,7,1,9500,0,3,130.0,1,37,38,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,140.0,1,19,38,7,7,136.5,1,0,1,1,1,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,1 +2,39,1,9773,0,19,133.1,1,37,37,9,6,110.0,0,0,1,0,1,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,0 +2,39,1,8014,1,1,120.0,1,34,34,99,99,101.8,0,0,1,0,1,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,135.0,1,1,1,4,7,129.8,1,0,1,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,131.0,1,37,38,5,5,128.9,0,0,1,1,1,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,1 +1,1,4,9070,0,1,139.0,1,3,19,1,5,138.3,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,6,9500,0,1,122.0,1,1,1,3,7,114.3,1,0,1,1,0,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,2 +1,1,1,9500,0,1,150.0,1,37,37,9,7,136.5,1,0,1,1,1,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,3,1,2,8,121.4,0,0,1,1,0,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,117.0,1,19,19,194,193,117.4,1,0,1,1,1,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,2 +2,39,1,9085,0,1,133.1,1,36,36,99,5,128.2,0,0,1,0,1,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,121.0,1,3,1,2,3,114.0,0,0,1,1,0,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,2 +1,51,1,9853,0,1,139.0,1,1,1,4,10,134.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9070,0,1,137.0,1,1,1,3,1,141.2,1,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,133.1,1,37,37,6,3,140.0,0,0,0,1,0,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,1,9147,0,1,126.0,1,37,37,4,7,116.9,0,0,1,1,0,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,2 +1,44,1,9130,0,39,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +2,43,1,9991,1,1,130.0,1,37,37,9,9,128.2,0,0,1,1,1,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,131.0,1,19,9,5,3,118.4,0,0,1,1,1,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,138.0,1,19,19,3,3,131.0,1,0,1,1,1,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,1,130.0,1,37,12,9,8,129.4,1,0,0,0,0,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,9991,1,1,134.0,1,37,37,9,9,113.7,0,0,1,1,1,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,5,9853,0,1,117.0,1,38,38,9,7,114.6,1,0,1,1,1,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,145.0,1,3,3,4,4,153.1,1,0,1,1,1,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,2 +1,43,1,9085,0,1,130.0,1,19,38,4,9,130.0,1,0,1,0,1,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9119,0,1,146.0,1,37,37,9,9,148.5,1,0,1,1,0,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,136.0,1,1,1,4,4,124.1,0,0,1,1,1,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,100.0,1,37,38,9,4,140.0,0,0,1,1,0,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,2 +1,44,1,9003,0,39,180.0,1,1,3,4,2,180.0,0,0,1,1,1,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,1 +1,15,1,9773,0,1,120.0,26,19,19,4,5,120.0,1,0,1,1,1,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,141.0,1,4,19,4,10,100.0,0,0,1,1,0,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,1,150.0,1,29,10,6,6,150.0,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,5,5,9254,0,1,122.0,1,1,37,9,7,119.6,1,0,1,1,1,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,128.0,1,19,38,9,7,124.2,1,0,1,1,0,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9130,0,1,172.0,1,19,19,9,9,163.3,1,0,1,1,1,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,129.0,1,38,37,5,5,142.0,1,0,1,1,1,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,100.0,1,1,3,9,10,120.0,0,0,0,0,0,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,1 +1,1,3,9238,0,1,135.0,1,1,12,9,10,121.0,1,0,1,1,1,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,136.0,1,2,2,3,3,120.0,1,0,1,1,0,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,2 +1,1,6,9147,0,1,143.0,1,38,37,9,9,128.7,1,0,1,1,0,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,2 +1,17,2,9500,0,1,126.0,1,37,37,7,7,126.2,1,0,1,1,1,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,2 +1,17,2,9254,0,1,135.0,1,19,19,4,3,135.0,1,0,1,1,0,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,2 +1,1,2,9254,0,1,132.0,1,1,19,9,9,129.9,1,0,1,1,1,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +2,39,1,8014,1,1,120.0,1,34,34,0,0,104.0,0,0,1,1,1,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,0 +2,39,1,8014,1,9,133.1,1,37,37,8,10,100.0,1,0,1,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,43,1,9147,0,1,130.0,1,19,37,7,10,138.0,0,0,1,1,1,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,1 +1,17,2,9119,0,1,120.0,1,1,19,9,8,117.2,0,0,1,1,0,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,133.1,1,1,12,4,5,116.5,0,0,1,1,0,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,105.0,1,19,19,6,6,106.1,1,0,1,1,1,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,118.0,1,1,19,4,8,118.7,0,0,1,1,0,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,6,9500,0,1,140.0,1,3,19,3,8,129.0,1,0,1,1,1,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,168.0,1,19,19,4,4,171.2,0,0,1,1,0,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,133.0,1,19,9,0,0,121.5,1,0,1,1,1,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,177.0,1,1,38,3,9,162.3,0,0,1,1,1,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,130.0,1,38,38,2,9,124.8,0,0,1,1,1,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,136.0,1,38,1,5,6,133.9,1,0,1,1,1,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,154.0,1,1,1,5,3,144.9,0,0,1,1,0,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,1 +1,44,1,9119,0,39,150.0,1,19,37,9,9,150.0,1,0,0,1,0,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,0 +1,1,4,9254,0,1,132.0,1,12,19,9,9,124.7,1,0,1,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,33,0,1,100.0,41,38,37,9,8,100.0,0,0,0,0,0,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9085,0,1,120.0,1,4,1,2,9,113.4,0,0,1,1,1,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,134.0,1,1,19,9,9,136.1,1,0,1,1,1,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9500,0,1,150.0,1,1,19,5,3,140.0,0,1,1,1,1,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,129.0,1,37,37,9,9,128.8,1,0,1,1,1,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +2,39,1,9500,0,1,100.0,1,37,38,4,4,130.0,0,0,1,1,0,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,2 +1,1,1,9773,0,1,140.0,1,19,37,9,6,135.8,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,7,1,9085,0,40,150.0,1,19,19,9,5,150.0,0,0,0,0,1,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9500,0,1,148.0,1,1,37,4,8,132.0,1,0,1,1,1,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,1 +1,7,1,9119,0,40,140.0,1,3,1,2,5,140.0,0,0,1,1,0,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,163.0,1,19,1,9,7,143.1,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,3,9070,0,1,164.0,1,1,1,5,3,161.2,1,0,1,1,1,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,1 +1,1,6,9773,0,1,141.0,1,30,37,7,7,128.4,1,0,0,0,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,0 +1,43,2,9147,0,1,126.0,1,1,19,3,3,100.0,1,0,1,1,0,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,171,0,1,141.0,1,19,19,5,10,135.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,4,9670,0,1,117.0,1,3,3,4,4,113.2,0,0,1,1,0,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +2,43,1,9991,1,3,140.0,1,37,19,9,4,140.0,0,0,0,1,1,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,134.3,0,0,1,1,0,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,137.0,1,38,19,9,7,125.1,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,130.0,1,37,37,9,6,134.0,0,0,1,1,1,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,123.0,1,37,37,7,7,119.7,0,0,1,1,0,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9147,0,1,120.0,1,37,37,9,9,104.7,1,0,1,1,0,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9238,0,1,137.0,62,1,1,9,9,129.3,0,0,1,1,1,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,8014,1,1,122.0,1,37,19,9,9,123.8,0,0,1,1,1,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,1 +2,39,2,8014,1,1,100.0,1,34,34,0,0,100.0,1,0,1,1,1,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,1 +2,1,1,9991,1,2,120.0,1,37,37,6,3,129.2,0,0,1,1,1,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,150.0,1,3,19,2,6,150.0,0,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9991,1,1,123.0,1,1,3,4,2,113.2,0,0,1,0,0,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,0 +1,1,3,9773,0,1,130.0,1,1,37,4,5,120.9,1,0,0,1,1,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,146.0,1,19,3,4,9,127.0,0,0,1,1,0,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,44,1,171,0,39,160.0,1,19,38,9,9,160.0,1,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9085,0,39,150.0,1,38,37,6,6,150.0,1,0,1,1,1,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,1 +1,17,2,9254,0,1,136.0,1,19,19,4,7,123.1,1,0,1,1,1,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +2,39,1,9670,0,1,150.0,1,37,19,9,4,135.6,0,0,1,1,1,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,1 +1,1,6,171,0,1,134.0,1,19,37,5,5,126.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +4,39,1,9773,0,38,133.1,1,19,19,7,9,133.0,0,0,1,1,1,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,2 +1,17,2,9119,0,1,120.0,1,10,12,9,9,120.4,1,0,1,1,0,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,4,9254,0,1,113.0,1,38,19,7,7,107.4,1,0,1,1,1,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,137.0,1,1,19,4,5,136.3,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,142.0,1,37,37,9,7,132.7,1,0,1,1,1,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,1 +1,18,5,9085,0,1,121.0,1,5,3,2,3,111.9,1,0,1,1,1,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,9,133.1,1,34,36,0,90,107.5,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,8014,1,19,133.1,1,19,37,6,8,149.5,0,0,1,1,0,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9147,0,1,120.0,1,1,37,4,9,113.4,1,0,1,1,0,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,130.0,1,37,38,9,5,130.5,1,0,1,1,1,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,153.0,1,1,19,9,10,147.8,0,0,1,1,1,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,1 +1,1,1,171,0,1,159.0,1,3,1,4,4,162.2,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,122.0,1,37,37,5,6,114.3,0,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,2,9556,0,19,133.1,1,37,37,3,7,117.8,0,0,1,1,1,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,132.0,1,38,1,9,9,124.3,1,0,1,1,1,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,141.0,1,19,19,9,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,1 +1,17,1,9500,0,1,152.0,1,19,19,4,9,132.5,0,0,1,1,0,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,1 +1,17,1,9991,1,40,127.0,1,37,37,6,6,124.9,0,0,1,1,1,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,133.1,1,1,19,4,6,106.0,1,0,1,1,1,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,19,37,4,7,150.0,1,0,1,1,1,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,1 +1,1,1,9254,0,1,125.0,1,1,1,191,193,114.5,0,0,1,1,0,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,134.0,1,19,19,4,7,131.0,1,0,1,1,0,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,1 +1,1,2,9500,0,1,134.0,1,19,19,9,9,125.8,1,0,1,1,1,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,1 +1,17,1,171,0,1,125.0,1,37,37,7,9,134.1,1,0,1,1,0,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,0 +1,51,1,9254,0,1,120.0,1,38,38,9,9,118.0,0,0,1,1,1,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,155.0,1,1,1,4,3,140.5,1,0,1,1,1,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,125.0,1,1,1,4,90,125.4,1,0,1,1,0,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,1,5,5,126.3,0,0,1,1,0,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,1 +1,39,1,9147,0,1,140.0,1,37,3,9,2,135.1,0,0,1,1,0,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,5,171,0,1,122.0,1,19,12,5,9,127.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,2,9670,0,1,150.0,1,34,34,0,0,107.0,1,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,3,130.0,1,19,19,3,9,130.0,0,0,1,0,0,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,0 +1,39,1,33,0,1,133.1,1,19,37,9,9,96.1,0,0,1,1,0,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,0 +2,42,1,9500,0,2,130.0,1,37,37,9,9,130.0,0,0,1,1,1,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,1 +1,18,1,9238,0,1,137.0,1,19,38,5,8,137.4,1,0,1,1,1,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,2 +1,1,1,9254,0,1,140.0,1,19,1,9,8,140.9,1,0,1,1,1,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,132.0,1,1,2,9,3,128.2,1,0,1,1,1,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,17,4,9085,0,1,126.0,1,1,3,5,5,123.9,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,19,133.1,1,37,37,9,7,106.5,0,0,1,1,1,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,132.0,1,37,19,7,7,132.4,1,0,1,1,1,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,139.0,1,37,38,9,9,126.1,0,0,1,1,1,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,136.0,1,19,38,9,9,123.0,1,0,1,1,1,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,140.0,1,1,38,9,1,140.0,1,0,1,1,0,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,123.0,1,19,19,9,8,134.0,0,0,1,1,1,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,130.0,1,38,19,9,4,118.4,0,0,0,1,1,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,126.0,1,1,1,9,9,116.2,0,0,0,0,0,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,19,1,7,10,105.0,0,0,1,1,0,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,0 +1,17,1,9119,0,1,130.0,1,19,19,7,9,121.3,1,0,1,1,0,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,0 +1,43,1,9500,0,19,133.1,1,34,34,0,0,110.0,1,0,1,1,0,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,0 +1,1,3,9070,0,1,139.0,1,1,38,4,7,142.2,1,0,1,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,142.0,1,38,1,5,4,136.6,0,0,1,1,1,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,1 +1,17,2,9670,0,1,128.0,1,37,38,5,8,121.7,0,0,1,1,0,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,140.0,1,1,3,9,4,140.0,0,0,0,0,1,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,125.0,1,19,19,9,10,122.0,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,8014,1,1,130.0,1,37,37,9,8,103.5,0,0,1,1,1,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,1 +1,17,3,9085,0,1,117.0,1,19,38,5,7,111.1,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,42,1,9085,0,39,140.0,1,19,3,9,1,159.9,1,0,1,1,1,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,1 +1,1,2,9254,0,1,112.0,1,37,37,6,6,106.1,1,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9070,0,1,117.0,1,5,1,2,10,120.0,1,0,1,1,1,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,2 +1,7,1,9556,0,2,130.0,1,37,37,9,9,130.0,1,0,1,1,1,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,40,140.0,1,1,19,9,9,139.0,0,0,1,1,1,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,10,130.0,0,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,51,1,9070,0,1,135.0,1,3,1,3,5,121.8,0,0,1,1,1,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,135.0,1,19,3,9,4,121.5,1,0,1,1,1,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,136.0,1,19,38,4,8,125.5,1,0,1,1,1,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,142.0,1,3,37,4,8,132.4,1,0,1,1,1,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,142.0,1,34,38,4,7,127.3,0,0,1,1,1,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,1 +1,15,1,9147,0,1,130.0,26,1,1,2,3,130.0,0,0,1,1,1,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,17,2,8014,1,1,133.0,1,19,1,5,5,119.7,1,0,1,1,1,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,6,133.1,1,1,1,90,3,107.0,1,0,1,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,130.0,1,1,1,4,5,123.8,0,0,1,1,1,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9670,0,1,130.0,1,38,37,5,5,123.4,1,0,1,1,1,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,130.0,1,37,36,4,90,127.6,0,0,1,1,0,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +2,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,2 +1,1,5,9070,0,1,122.0,1,37,37,9,9,124.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,3,120.0,1,37,37,9,9,141.0,0,0,1,1,1,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,0 +1,43,1,33,0,1,134.0,1,37,37,1,1,100.0,1,0,1,1,0,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,0 +1,18,1,9773,0,1,125.0,1,19,37,9,5,122.2,0,0,1,0,1,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,113.4,0,0,1,1,1,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,142.0,1,19,39,5,4,141.7,0,0,1,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,137.0,1,1,38,5,8,125.8,0,0,1,0,1,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,141.0,1,1,37,4,3,126.8,1,0,1,1,1,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,1 +1,17,4,9500,0,1,133.0,1,4,4,4,4,130.7,1,0,1,1,1,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,1 +1,1,2,9500,0,1,119.0,1,1,1,4,4,115.2,1,0,1,1,1,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,128.0,1,1,1,4,10,118.9,1,0,1,1,1,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,130.0,1,37,38,7,8,119.3,1,0,1,1,1,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,148.0,1,3,1,4,5,132.8,0,0,1,1,1,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,1 +1,1,5,9500,0,1,143.0,1,37,19,4,4,123.3,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9147,0,1,130.0,1,34,34,99,99,109.8,1,0,1,0,0,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9085,0,2,140.0,1,38,38,9,10,150.0,0,0,1,1,0,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9670,0,42,110.0,1,1,19,9,9,114.2,0,0,1,1,0,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,1 +1,53,1,9147,0,42,140.0,1,3,4,2,1,140.2,0,0,1,1,1,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,145.0,1,19,38,9,7,136.3,1,0,1,1,1,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,38,37,9,9,154.4,0,0,1,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,127.0,1,38,38,9,6,122.8,0,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,120.2,1,0,1,1,0,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,124.0,1,3,1,2,5,121.6,0,0,1,1,1,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,2 +1,17,5,9853,0,1,132.0,1,37,38,5,6,119.1,1,0,1,1,1,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,1 +1,17,6,9670,0,1,110.0,1,1,19,4,10,111.3,0,0,1,1,0,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,120.0,1,38,37,9,9,114.8,1,1,1,1,1,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,140.0,1,19,19,9,3,130.0,0,0,1,1,0,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9254,0,1,120.0,1,37,37,9,9,115.1,1,0,1,0,0,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,142.0,1,1,37,5,7,128.0,0,0,1,1,1,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,168.0,1,37,1,9,4,133.4,1,0,1,1,1,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,1 +1,43,4,9085,0,1,133.1,1,34,34,99,99,125.2,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9147,0,1,123.0,1,1,1,9,7,117.4,1,0,1,1,1,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,1 +1,1,6,9119,0,1,135.0,1,2,1,3,5,123.5,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,2 +1,17,2,9254,0,1,118.0,22,19,37,9,9,110.3,1,0,1,0,1,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,126.0,1,1,19,4,4,116.9,0,0,1,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,117.0,1,1,38,3,9,109.3,0,0,0,0,1,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,0 +4,39,1,8014,1,1,133.1,1,37,37,9,8,113.0,0,0,1,1,1,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,1 +2,42,1,9991,1,6,123.0,1,37,37,9,9,123.0,0,0,1,1,0,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,2 +1,39,1,9003,0,1,100.0,1,37,37,9,5,110.0,0,0,1,1,1,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,127.0,1,37,38,9,5,131.2,1,0,1,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,110.0,1,37,37,9,7,112.5,1,0,1,1,1,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,126.0,1,19,37,7,5,119.4,0,0,1,1,1,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,121.0,1,1,1,4,3,120.5,1,0,1,1,1,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,134.0,1,1,1,3,3,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,3,9500,0,1,150.0,1,19,38,1,1,130.8,1,0,1,1,1,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,17,5,9119,0,1,124.0,11,4,12,2,9,119.5,1,0,1,1,0,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,117.0,1,19,1,4,7,112.1,0,0,1,1,1,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,2 +1,1,5,9500,0,1,132.0,1,37,37,7,7,120.3,1,0,1,1,1,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,1 +2,39,1,9119,0,1,110.0,1,37,37,90,5,150.0,1,0,1,1,0,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9773,0,1,130.0,1,38,37,5,3,122.3,1,0,0,0,1,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,0 +1,1,1,9556,0,1,118.0,1,19,38,9,9,116.3,1,0,1,1,1,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,120.0,1,3,3,3,3,111.6,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,131.0,1,37,19,9,9,134.5,1,0,1,1,0,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,2 +1,17,2,9556,0,1,133.1,1,37,38,9,8,106.0,1,0,1,1,1,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,2,110.0,1,37,37,9,9,112.9,0,0,1,1,1,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,0 +1,17,2,9773,0,1,126.0,1,19,38,9,8,118.7,1,0,1,1,1,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,140.0,1,1,1,3,3,127.6,1,0,1,1,1,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,163.0,1,19,1,5,10,146.6,1,0,0,1,1,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,39,151.0,1,19,37,4,7,151.0,0,0,0,1,1,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,165.0,1,19,37,5,5,142.3,0,0,1,1,1,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9773,0,19,133.1,1,19,1,7,9,115.0,1,0,0,0,0,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,0 +1,1,2,9556,0,1,130.0,1,1,38,3,8,119.5,1,0,1,1,1,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,1 +1,17,3,171,0,1,125.0,1,3,39,2,5,117.0,1,1,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,2,9147,0,1,133.0,1,19,1,5,10,121.8,0,0,1,1,0,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,2 +1,17,1,9119,0,1,131.0,1,1,3,9,10,123.7,1,0,1,1,0,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,148.0,1,37,38,9,8,133.0,1,0,1,1,1,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9254,0,1,120.0,1,3,19,3,9,114.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9773,0,1,114.0,1,1,1,9,9,111.6,1,0,1,1,1,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,115.0,1,38,1,9,8,118.5,0,0,1,1,0,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,2,5,127.0,0,0,1,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,117.0,1,1,1,4,7,109.3,1,0,1,1,1,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,1 +1,53,1,9085,0,42,140.0,1,19,38,9,9,138.2,0,0,0,0,1,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,125.0,1,1,1,3,3,114.5,0,0,1,1,0,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,1 +1,44,1,9147,0,39,130.0,1,19,1,9,3,130.0,0,0,1,1,1,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,145.0,1,38,19,4,9,127.9,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,128.0,1,37,37,9,8,124.3,1,0,1,1,1,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,1 +1,18,3,9070,0,1,138.0,1,38,37,9,7,125.1,1,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,17,5,9119,0,1,131.0,1,19,37,9,7,123.3,1,0,1,1,0,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,130.0,1,37,19,9,8,106.2,1,0,1,1,1,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,131.0,1,19,38,4,5,132.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,43,1,9003,0,1,120.0,1,37,37,5,9,120.0,1,0,1,1,0,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,132.0,1,4,39,2,2,136.6,1,0,1,1,1,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,2 +1,7,1,9500,0,40,170.0,1,1,1,9,4,170.0,0,0,1,1,1,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,1 +1,16,1,9003,0,1,147.0,1,1,37,4,9,140.7,1,0,0,1,1,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,125.0,1,1,1,4,8,115.6,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,150.0,1,37,37,9,6,138.5,0,0,1,1,1,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,1 +1,1,2,9991,1,1,143.0,1,5,1,4,4,131.5,0,0,1,1,0,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,9556,0,1,133.1,6,3,3,4,4,169.2,0,0,0,0,1,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,39,2,9556,0,1,133.1,1,1,1,9,10,100.5,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +1,17,1,9773,0,1,120.0,1,19,38,9,7,117.9,1,0,1,1,1,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,17,1,171,0,1,146.0,1,1,38,9,9,135.5,1,0,0,1,1,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,2 +1,1,3,9254,0,1,122.0,1,19,38,3,10,114.3,1,0,1,1,1,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,9130,0,1,130.0,1,2,3,9,1,117.6,0,0,1,1,0,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,2 +4,43,4,9991,1,12,133.1,1,37,37,9,9,153.0,0,0,1,0,1,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,18,2,9500,0,1,135.0,1,38,37,9,5,125.3,1,0,1,1,1,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,38,37,9,9,133.0,0,0,1,1,1,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,1 +1,17,1,171,0,1,129.0,1,38,37,4,6,128.0,0,0,1,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,128.0,1,2,19,2,4,123.3,1,0,1,1,1,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,130.0,1,19,3,4,2,159.0,0,0,1,1,1,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,1 +2,7,1,8014,1,3,130.0,1,19,38,3,7,130.0,0,0,1,1,1,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,116.0,1,19,37,3,3,109.0,1,0,1,1,1,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,123.0,1,1,1,3,9,116.7,1,0,1,1,1,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,144.0,1,19,19,4,4,130.7,1,0,1,1,1,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,42,1,9500,0,1,100.0,1,19,37,5,7,134.3,1,0,1,1,1,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,143.0,1,1,19,4,4,129.9,0,0,1,1,1,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,1 +2,39,1,9991,1,19,133.1,1,19,37,7,9,137.2,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9853,0,1,123.0,1,19,19,9,7,117.4,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,144.0,1,19,19,5,5,130.3,1,0,1,1,1,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,137.0,1,1,19,4,7,126.7,1,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,4,9773,0,1,124.0,1,3,12,2,9,137.0,1,0,1,1,0,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,135.0,1,37,37,9,8,123.0,1,0,1,1,1,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,123.0,1,38,37,9,7,120.6,1,0,1,0,1,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,0 +2,2,1,9147,0,2,120.0,1,37,37,9,9,120.0,0,0,1,0,0,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,103.0,1,1,3,2,2,100.6,1,1,1,1,1,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,126.0,1,3,1,2,8,123.9,1,0,1,1,1,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,2 +1,17,4,9500,0,1,136.0,1,3,3,2,2,132.5,1,0,1,1,1,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,114.0,1,3,29,3,5,111.9,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,125.0,1,19,1,9,9,130.6,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,147.0,1,37,38,9,5,134.8,1,0,1,1,1,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,131.0,1,1,19,9,9,130.3,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,118.0,1,3,1,2,5,110.0,1,0,1,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,130.0,1,19,19,4,10,116.8,0,0,1,1,1,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,1 +1,43,1,8014,1,6,133.1,1,34,34,0,0,100.0,0,0,0,1,1,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9670,0,12,170.0,1,1,37,3,5,110.0,0,0,1,1,0,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,1 +2,1,1,9991,1,3,160.0,1,1,3,4,9,137.3,0,0,1,1,1,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,108.0,1,19,1,5,5,107.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,121.0,1,3,3,2,2,112.3,1,0,0,0,1,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,0 +1,1,2,9773,0,1,138.0,1,19,1,9,3,133.5,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,136.0,1,38,38,9,9,121.7,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,0 +1,1,1,9500,0,1,132.0,1,38,37,9,7,122.0,1,0,1,1,1,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,1 +1,17,1,9003,0,1,125.0,1,3,3,2,2,100.0,0,0,1,1,0,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,137.0,1,1,1,1,5,131.8,0,0,1,1,1,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,140.0,1,37,37,9,9,148.0,1,0,1,0,0,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,127.0,1,3,1,3,7,137.2,1,0,1,1,1,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,150.0,1,37,19,9,9,150.0,0,0,1,1,0,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,1 +1,43,4,171,0,1,136.0,1,37,37,9,9,123.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,1,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,1 +1,1,1,9853,0,1,162.0,1,37,19,9,8,142.8,0,0,0,1,1,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,127.0,1,1,38,5,7,123.5,1,0,1,1,1,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,133.1,1,19,37,9,9,130.0,0,0,1,0,1,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,1 +1,17,2,9070,0,1,121.0,1,1,19,144,144,111.9,1,0,1,1,0,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,115.0,1,19,37,9,9,114.3,0,0,1,1,0,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,0 +1,10,1,9254,0,1,115.0,24,3,1,9,9,116.1,1,0,1,1,1,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,143.0,1,19,3,4,4,147.2,0,0,1,1,1,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,160.0,1,1,38,4,4,160.0,1,0,1,1,0,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,1 +2,1,1,9238,0,1,134.0,1,37,37,5,5,120.4,0,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,133.1,1,38,37,9,4,120.0,0,0,1,1,0,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,1 +1,18,1,9119,0,1,108.0,1,1,1,4,3,105.6,1,0,1,1,0,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,137.0,1,37,37,9,9,141.0,0,0,1,1,0,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9254,0,1,113.0,1,1,2,5,3,106.7,1,0,0,1,0,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,16,1,9085,0,1,140.0,1,1,1,9,9,127.1,1,0,1,1,1,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,1 +1,53,1,9238,0,42,140.0,1,37,37,9,10,136.9,1,0,1,1,1,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,1 +4,39,1,8014,1,19,133.1,1,37,37,9,7,134.5,0,0,1,1,1,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,1 +1,1,2,9773,0,1,125.0,1,19,1,4,5,122.2,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9070,0,1,134.0,1,1,19,3,3,127.7,1,0,1,0,1,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,17,1,9147,0,1,96.0,1,38,37,6,4,96.0,1,0,1,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,0 +1,10,1,9085,0,1,134.0,1,37,37,5,5,134.0,1,0,1,1,1,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,143.0,1,1,3,3,3,149.0,1,0,1,1,1,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,0 +1,18,3,9070,0,1,142.0,1,1,37,4,7,130.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,7,1,9003,0,3,140.0,1,3,19,2,10,140.0,0,0,1,0,0,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,151.0,1,38,37,9,5,138.4,1,0,1,1,1,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,143.0,1,19,19,4,4,135.3,1,0,1,1,1,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,133.0,1,1,19,9,9,132.0,0,0,1,1,0,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,19,133.1,1,37,37,9,5,135.5,0,0,1,1,1,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9254,0,1,134.0,1,37,37,9,9,133.3,1,0,0,1,1,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,0 +1,1,3,9085,0,1,135.0,1,3,2,4,3,121.0,1,0,1,1,1,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,140.0,1,1,1,4,4,123.5,1,0,1,1,1,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,188.0,1,3,3,2,2,178.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9238,0,1,126.0,1,30,19,0,2,121.5,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,131.0,1,3,19,5,5,127.2,1,0,1,1,1,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,1 +1,17,4,9853,0,1,143.0,1,37,37,9,5,127.3,1,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,0 +1,17,2,9238,0,1,111.0,1,19,38,9,9,110.7,1,0,1,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,140.0,1,19,38,9,7,125.7,1,0,1,1,0,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,2 +1,17,6,9500,0,1,126.0,1,19,37,3,9,119.4,1,0,1,1,1,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,131.0,1,1,1,4,9,122.3,0,0,1,1,0,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,128.0,1,1,19,9,8,100.0,1,0,1,1,1,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,138.0,1,19,19,5,1,130.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,1,140.0,1,3,3,1,1,140.0,1,0,1,1,1,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,3,130.0,1,1,19,5,9,130.0,0,0,1,1,0,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9773,0,1,131.0,1,38,1,5,7,131.0,1,0,1,1,0,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,19,133.1,1,19,19,9,7,140.0,0,0,0,0,1,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,133.1,1,37,37,9,9,126.5,0,0,1,1,1,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9500,0,1,132.0,1,37,37,9,7,128.3,1,0,1,1,1,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,1 +1,16,1,171,0,1,145.0,1,3,3,3,3,155.0,1,0,1,1,1,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,2 +4,1,1,9991,1,1,140.0,1,37,37,9,7,139.0,0,0,1,1,1,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,2 +1,17,2,9070,0,1,152.0,1,39,39,3,3,134.2,1,0,1,1,0,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,1,1,9500,0,1,141.0,1,19,19,7,9,139.8,0,0,1,1,1,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,1 +1,1,4,9670,0,1,133.0,1,1,2,4,7,121.1,1,0,1,1,1,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,1 +1,15,1,9147,0,1,135.0,26,1,1,9,7,135.0,0,0,0,1,0,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,2 +2,1,1,9991,1,1,144.0,1,19,19,9,9,151.4,0,0,1,1,1,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,1 +1,18,4,9853,0,1,118.0,1,19,37,9,6,111.4,1,0,0,0,1,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9500,0,1,134.0,1,38,1,9,6,133.5,1,0,1,1,0,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,37,37,9,6,107.0,0,0,1,1,0,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,141.0,1,38,38,9,9,128.4,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,133.0,1,1,1,9,9,128.5,1,0,1,1,1,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,1 +1,51,1,9085,0,40,120.0,1,3,3,4,2,125.0,0,0,1,1,1,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,150.0,1,37,38,3,7,134.5,0,0,1,1,1,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,127.0,1,3,19,4,4,116.9,0,0,1,1,0,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,136.0,1,2,38,143,163,129.7,1,0,1,1,0,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,2 +1,1,2,9773,0,1,159.0,1,1,1,3,3,151.0,1,0,1,1,1,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,165.0,1,37,38,9,8,152.4,1,0,1,1,1,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,1 +1,1,6,9500,0,1,139.0,1,1,1,4,4,124.5,1,0,1,1,1,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,134.0,1,1,1,5,3,128.4,1,0,1,1,1,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,1 +1,17,2,9238,0,1,133.0,1,2,1,3,4,136.2,1,0,1,1,1,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,120.0,1,19,1,8,7,115.1,1,0,1,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,131.0,1,1,39,5,3,122.6,1,0,1,1,1,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,8014,1,1,130.0,1,1,1,9,9,118.1,0,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,1 +1,39,9,9991,1,1,120.0,1,38,38,9,5,144.8,0,0,1,1,0,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9500,0,19,133.1,1,37,37,9,9,129.0,1,0,1,1,1,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,138.0,1,1,19,4,7,123.0,1,0,0,0,1,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,143.0,1,1,37,9,9,135.0,1,0,1,1,1,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,120.0,1,19,1,9,3,120.0,1,0,1,1,0,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,162.0,1,37,1,9,9,165.2,1,0,1,1,1,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,142.0,1,37,37,5,5,131.3,1,0,1,1,1,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,1 +1,1,3,171,0,1,125.0,1,38,37,4,9,115.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,120.0,1,38,37,5,3,110.5,0,0,1,1,1,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,1 +1,42,1,9773,0,6,120.0,1,34,34,0,0,122.0,1,0,1,1,1,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,162.0,1,1,38,4,5,138.6,1,0,1,1,1,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9500,0,1,152.0,1,1,1,4,4,141.0,1,0,1,1,1,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,139.0,1,3,19,3,5,120.8,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,135.0,1,1,1,3,5,130.1,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,1,9670,0,1,127.0,1,3,3,1,1,121.4,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9556,0,1,135.0,1,1,1,1,1,131.5,0,0,1,1,0,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,2 +1,17,3,9670,0,1,147.0,1,37,37,8,8,128.8,0,0,0,1,1,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,133.1,41,38,38,9,8,134.8,0,0,1,1,1,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,133.1,1,37,37,90,8,128.2,0,0,1,1,1,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,131.0,1,1,37,4,4,126.1,1,0,1,1,1,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,9,9,125.3,1,0,1,1,0,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,0 +2,39,1,8014,1,3,110.0,1,37,37,9,9,160.5,0,0,1,1,1,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,138.0,1,38,1,9,4,127.5,1,0,1,1,1,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,2 +1,39,1,9238,0,1,170.0,1,38,19,9,9,140.0,1,0,1,1,1,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,1,19,4,10,142.3,1,0,1,1,1,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,154.0,1,38,37,9,9,140.4,0,0,1,1,1,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,133.1,41,19,1,9,9,105.0,1,0,1,0,1,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +2,44,1,9085,0,39,160.0,1,37,37,192,192,160.0,0,0,1,1,1,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,141.0,1,38,38,9,9,142.3,1,0,1,1,1,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,119.0,1,37,37,7,7,112.0,1,0,1,0,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,137.0,1,37,37,9,9,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,1 +4,39,1,9670,0,1,100.0,1,37,37,4,10,120.0,0,0,0,1,1,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,130.0,1,3,3,2,2,131.1,0,0,1,1,0,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,120.0,1,1,19,9,3,116.9,1,0,0,0,0,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,42,1,9500,0,1,100.0,1,1,19,4,8,136.0,1,0,1,1,1,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,1 +1,1,2,171,0,1,125.0,1,38,19,9,9,117.3,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,152.0,1,1,38,4,9,160.4,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,12,133.1,1,37,37,9,7,139.4,0,0,0,1,1,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,2 +1,1,3,9070,0,1,150.0,1,1,1,4,8,131.5,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,7,1,9556,0,4,190.0,1,5,5,2,2,190.0,1,0,1,1,0,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,0 +1,17,3,9238,0,1,121.0,1,1,1,4,5,117.2,0,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,130.0,1,37,37,9,7,113.0,1,0,1,0,0,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,123.0,1,19,19,4,10,124.4,1,0,1,1,1,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,1 +1,17,2,9238,0,1,133.0,1,37,37,3,9,119.7,0,1,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,138.0,1,38,19,9,10,133.1,0,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,108.0,1,38,38,7,7,105.2,1,0,1,1,0,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,0 +1,1,3,171,0,1,115.0,1,9,1,6,6,108.7,1,0,1,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,4,4,119.8,1,0,1,1,1,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,1 +1,1,6,9119,0,1,126.0,1,19,19,7,3,116.6,1,0,1,1,0,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,1 +2,39,1,9500,0,1,133.1,1,37,37,9,9,130.1,0,0,1,0,0,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,124.0,1,37,38,9,3,114.2,0,0,1,1,1,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,1 +1,17,3,9147,0,1,137.0,1,1,1,4,7,124.4,1,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,2 +1,39,1,9130,0,19,133.1,1,37,37,9,10,156.4,1,0,0,1,0,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,0 +1,18,5,9853,0,1,121.0,1,38,19,7,7,117.5,1,0,0,0,1,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,1,2,9238,0,1,117.0,1,19,1,9,8,110.0,1,0,0,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9147,0,1,148.0,1,1,19,9,6,118.4,1,0,1,1,0,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,133.0,1,1,1,4,4,100.0,0,0,1,1,1,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,17,1,9238,0,1,158.0,1,1,1,5,6,140.5,0,0,1,1,1,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,157.0,1,19,38,9,7,146.2,1,0,1,1,1,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9119,0,1,131.0,1,3,1,4,1,135.9,0,0,1,1,0,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,38,37,5,10,117.8,1,0,1,1,0,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,1 +1,1,2,9119,0,1,126.0,1,1,38,141,192,122.5,1,0,1,1,0,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,117.0,1,37,37,0,4,120.5,1,0,1,1,0,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9254,0,1,110.0,1,12,19,9,9,125.0,0,0,1,0,0,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,0 +1,18,1,9147,0,1,121.0,1,19,3,5,5,115.8,1,0,1,1,1,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,1 +1,39,1,9238,0,19,133.1,1,37,37,9,9,139.0,0,0,0,0,0,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9003,0,3,130.0,1,3,3,6,2,130.0,1,0,1,1,0,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,132.0,1,19,37,3,5,125.4,1,0,1,0,1,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,133.1,1,38,38,4,7,115.6,1,0,1,0,1,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,129.0,1,1,2,3,1,125.9,1,0,1,1,1,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,37,37,9,9,143.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,126.0,1,3,19,3,3,115.2,0,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,123.0,1,19,38,9,10,116.7,1,0,1,1,1,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,1 +1,17,2,9254,0,1,125.0,1,37,37,9,8,122.6,1,0,0,0,1,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,39,1,9119,0,1,160.0,1,38,37,7,7,129.0,0,0,1,1,0,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,3,19,2,3,133.8,1,0,1,1,1,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,120.0,1,19,19,4,7,115.5,1,0,0,1,0,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,120.0,1,38,38,3,3,140.0,0,0,1,1,1,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9238,0,1,127.0,1,1,19,4,3,141.7,1,0,1,1,0,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,111.0,1,37,37,9,10,95.8,1,0,1,0,0,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,130.0,1,38,1,9,4,140.0,1,0,1,1,1,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,1 +1,1,2,9147,0,1,131.0,1,1,1,9,9,118.8,0,0,1,1,0,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,161.0,1,1,19,4,4,152.3,0,0,1,1,1,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,124.0,1,38,38,9,9,115.6,0,0,1,1,0,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,160.0,1,3,3,1,2,149.2,0,0,1,1,0,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,16,3,9853,0,1,134.0,1,19,37,9,9,121.1,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,2 +1,43,2,9991,1,1,140.0,1,37,37,5,5,124.3,1,0,1,0,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,127.0,1,38,37,5,7,123.9,1,0,1,1,1,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,120.0,1,19,37,6,8,160.0,0,0,1,1,0,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,1 +1,39,1,9085,0,1,133.1,1,3,3,4,2,144.9,1,0,1,1,1,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,130.0,1,1,19,3,10,130.0,1,0,1,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,1 +1,42,1,9003,0,1,130.0,1,3,2,2,6,105.3,0,0,1,0,0,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9991,1,1,130.0,1,37,37,9,9,127.6,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,100.0,1,1,38,4,6,104.8,0,0,0,0,1,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,0 +1,1,5,9070,0,1,125.0,1,3,3,2,2,140.8,1,0,1,1,0,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,133.1,1,34,38,0,4,147.0,0,0,1,1,1,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,126.0,1,34,34,0,0,142.4,0,0,1,1,1,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,121.0,1,19,38,4,10,114.4,0,0,1,1,1,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,133.1,1,37,37,5,0,111.5,0,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,130.0,1,1,19,5,5,129.1,1,0,1,1,1,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,3,1,4,6,130.0,0,0,1,1,0,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,2 +1,39,1,9500,0,1,123.0,1,19,1,1,1,140.8,0,0,1,1,1,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,1 +1,44,1,9070,0,39,130.0,1,1,1,4,10,130.0,1,0,1,1,1,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,1 +4,39,1,9085,0,1,133.1,1,34,34,0,0,128.2,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,128.0,1,37,37,9,9,135.7,1,0,1,1,0,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,135.0,1,38,38,4,7,121.7,1,0,1,1,1,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,2 +1,43,1,9085,0,1,110.0,25,38,38,9,6,117.2,1,0,1,1,0,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,1 +1,43,3,9500,0,1,140.0,1,1,19,9,7,127.5,1,0,0,1,1,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,1 +1,17,3,9238,0,1,133.1,1,41,1,2,3,117.0,1,0,1,1,1,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9254,0,1,112.0,1,37,37,9,9,108.5,0,0,1,1,0,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,51,1,9238,0,39,140.0,1,38,38,5,7,129.1,1,0,1,1,1,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,122.0,1,38,19,9,9,126.6,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,123.0,1,1,1,4,4,114.4,0,0,1,1,0,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,0 +1,18,4,171,0,1,133.0,1,1,4,9,5,129.2,1,0,0,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,128.0,1,19,19,9,5,121.7,1,0,1,1,1,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,1 +1,39,1,9130,0,1,150.0,1,19,19,9,5,160.0,1,0,1,1,0,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,160.0,1,19,37,5,3,152.0,0,0,1,1,1,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,53,1,9085,0,42,140.0,1,19,37,9,8,142.5,1,0,1,1,1,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,130.0,1,9,19,4,1,134.2,1,0,1,1,1,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,3,9254,0,1,121.0,1,19,19,9,6,125.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,1,128.0,1,19,1,9,10,157.4,1,0,1,1,1,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,146.0,1,37,37,9,7,149.2,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9853,0,12,133.1,1,37,37,7,8,103.0,0,0,1,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,143.0,1,19,19,5,6,142.3,0,0,1,1,1,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,2 +1,1,2,9085,0,1,118.0,1,1,19,3,3,112.4,1,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,2 +2,43,1,9991,1,1,100.0,1,37,37,9,9,128.2,0,0,1,1,0,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,118.0,1,38,38,5,5,110.0,0,0,1,1,1,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9147,0,1,136.0,1,38,38,9,9,127.3,1,0,1,1,0,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,170.0,1,19,19,8,8,176.7,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,124.0,41,19,38,9,9,123.3,1,0,1,1,1,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,1 +1,1,4,9070,0,1,170.0,1,3,3,2,2,165.8,1,0,1,1,0,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,3,37,9,9,142.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9147,0,1,122.0,1,1,38,4,5,116.4,0,0,1,1,0,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,150.0,1,1,1,4,4,138.1,1,0,1,1,1,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,2 +1,17,6,9238,0,1,138.0,1,3,3,1,2,123.0,1,0,1,1,1,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,135.0,1,19,12,9,7,137.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9070,0,1,125.0,1,1,3,3,3,128.9,0,0,1,1,1,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,128.0,1,38,19,9,10,125.2,1,0,1,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,2 +1,42,1,9003,0,1,140.0,1,1,3,4,2,140.0,1,0,1,1,0,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,2 +1,39,1,9500,0,19,133.1,1,37,38,151,161,143.7,0,0,1,1,1,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,118.0,1,38,38,7,7,115.2,1,0,1,1,1,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,152.0,1,19,37,9,8,135.6,1,0,1,1,0,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,12,110.0,1,34,34,0,0,157.8,0,0,1,1,1,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,1 +1,1,6,9147,0,1,112.0,1,38,38,9,9,117.3,1,0,1,1,1,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,1 +1,17,3,9147,0,1,118.0,1,1,19,5,7,118.0,0,0,1,1,1,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,2 +1,44,1,9070,0,39,120.0,1,1,19,5,8,119.8,0,0,1,1,0,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9670,0,1,133.1,1,19,19,3,9,118.0,0,0,1,1,0,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,159.0,1,1,19,9,9,151.3,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,118.0,1,1,38,5,7,120.8,1,0,1,1,1,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,132.0,1,1,37,8,9,128.0,1,0,1,1,1,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,1 +1,42,1,9147,0,1,135.0,1,19,1,4,4,120.0,0,0,1,0,0,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9670,0,1,122.0,1,1,38,3,3,114.3,1,0,1,1,1,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,171,0,1,131.0,1,1,1,0,3,149.9,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +4,39,2,9556,0,1,133.1,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,5,9119,0,1,126.0,1,12,19,4,5,122.5,1,0,1,1,0,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,145.0,1,2,38,3,8,136.3,1,0,1,1,1,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,2 +1,15,1,9147,0,1,150.0,1,38,1,9,1,150.0,0,0,1,1,0,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,150.0,1,3,39,3,7,126.4,0,0,1,1,0,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,2 +1,17,2,9773,0,1,148.0,1,3,38,2,6,144.2,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,124.0,1,37,19,9,3,116.3,1,0,1,1,1,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +2,39,1,9003,0,1,130.0,1,1,37,9,1,122.0,0,0,0,0,0,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,160.0,1,19,38,5,7,139.0,1,0,1,1,1,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,157.0,1,3,2,3,6,150.9,1,0,1,1,1,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,0 +1,42,1,9119,0,1,120.0,1,1,1,5,7,108.6,0,0,1,0,0,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,0 +1,16,3,9773,0,1,138.0,1,37,38,4,9,134.2,1,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,110.0,1,0,1,1,1,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,0 +4,39,1,9853,0,1,143.0,1,37,1,9,10,140.0,0,0,0,0,1,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,130.0,1,3,19,4,8,133.0,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,19,38,6,7,140.0,1,0,1,1,0,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,132.0,1,2,2,6,6,128.5,0,0,1,1,1,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,0 +1,1,2,171,0,1,135.0,1,19,19,4,7,149.0,1,0,1,1,0,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,130.0,1,19,38,3,9,126.5,1,0,1,1,1,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,125.0,1,19,38,9,8,121.5,0,0,1,1,1,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,37,37,9,7,129.0,0,0,1,1,1,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,0 +1,7,3,9130,0,3,130.0,1,37,26,90,10,130.0,0,0,1,0,0,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,2,9500,0,1,123.0,1,19,19,7,7,120.8,1,0,1,1,1,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,1 +1,18,2,9853,0,1,168.0,1,1,19,3,9,126.8,1,0,1,1,0,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,2 +1,44,1,9085,0,39,140.0,1,3,1,4,3,140.0,1,0,1,1,1,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,148.0,1,19,19,9,9,138.7,0,0,1,1,1,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,1 +1,18,1,171,0,1,110.0,1,19,2,5,5,117.7,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9070,0,1,136.0,1,37,38,9,9,125.2,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +2,39,1,8014,1,1,133.1,1,37,37,5,4,134.5,0,0,1,1,1,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,2 +1,42,1,9119,0,1,150.0,1,38,37,5,8,133.5,1,0,1,1,0,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,140.0,1,1,3,4,6,139.2,0,0,0,1,1,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,125.0,1,19,19,5,5,117.0,0,0,1,1,1,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,1 +1,39,1,9147,0,12,133.1,1,19,37,7,9,118.2,0,0,1,1,1,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,0 +1,1,2,9147,0,1,121.0,1,1,19,9,9,113.7,1,0,1,0,1,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,0 +1,43,1,9130,0,1,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,131.0,1,3,19,2,3,132.8,1,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,1 +1,17,3,9500,0,1,136.0,1,37,38,4,5,126.0,1,0,1,1,1,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,1 +1,1,1,9853,0,1,145.0,1,37,37,9,5,146.8,0,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,123.0,1,1,1,4,9,116.7,1,0,1,1,0,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,0 +1,18,1,171,0,1,121.0,1,1,1,4,3,116.8,1,0,1,1,1,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,141.0,1,38,1,9,4,129.0,1,0,1,1,1,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,133.1,1,34,34,0,0,130.0,0,0,1,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,126.0,1,1,3,4,3,122.5,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,0 +2,1,1,9254,0,1,136.0,1,37,37,9,9,122.7,0,0,1,1,1,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,37,37,9,10,100.0,0,0,1,1,0,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9500,0,1,133.1,1,38,19,7,9,115.5,1,0,1,1,0,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,1 +1,1,1,9991,1,1,131.0,1,19,37,9,9,118.4,1,0,1,1,1,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,2 +1,1,1,9147,0,1,153.0,1,1,38,4,3,146.7,0,0,1,1,1,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,1 +1,43,1,8014,1,12,114.0,1,34,34,0,99,110.0,0,0,1,1,1,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,147.0,1,1,1,5,5,134.9,0,1,1,1,1,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,1 +1,1,2,9085,0,1,156.0,1,40,40,3,7,150.9,1,0,1,1,1,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,137.0,1,38,38,5,7,122.7,1,0,1,1,1,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,123.0,1,1,19,4,5,117.8,0,0,1,1,0,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,2 +1,17,1,9238,0,1,135.0,1,37,37,8,6,127.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,131.0,1,37,37,9,9,123.0,1,0,1,1,1,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,2 +1,17,2,9670,0,1,123.0,1,3,1,3,1,116.7,0,0,1,1,1,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,1 +1,7,1,9085,0,40,140.0,1,1,19,5,5,140.0,1,0,1,1,1,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,1 +4,39,1,9500,0,19,133.1,1,38,19,5,7,140.0,0,0,1,1,1,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,127.0,1,3,19,3,9,127.0,1,0,1,1,0,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,1 +1,17,2,8014,1,1,120.0,1,19,1,5,10,114.8,1,0,1,1,1,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9670,0,19,133.1,1,37,37,9,7,130.0,0,0,0,1,0,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,171,0,1,131.0,41,19,1,4,7,131.4,1,0,1,1,0,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,16,2,171,0,1,145.0,1,3,3,2,2,143.6,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,120.0,1,19,38,6,6,120.0,1,0,1,1,0,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,1 +1,17,6,9238,0,1,131.0,1,1,3,4,2,131.7,1,0,1,1,1,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,137.0,1,3,1,4,9,128.6,0,0,1,1,1,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,170.0,1,19,19,9,7,170.0,1,0,0,1,0,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,17,4,9853,0,1,122.0,1,38,37,9,9,118.9,1,0,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,1 +1,17,5,9500,0,1,148.0,1,1,19,4,8,130.2,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9003,0,19,133.1,1,1,19,9,8,120.0,0,0,0,0,0,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,2,9147,0,1,143.0,1,19,38,9,7,132.2,1,0,1,1,1,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9556,0,1,132.0,1,38,37,7,7,119.0,1,0,1,1,1,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,133.1,1,3,1,4,4,95.0,0,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,154.0,1,3,1,2,1,137.2,0,0,1,1,0,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,2 +1,1,1,9853,0,1,129.0,1,38,37,6,6,138.1,0,0,1,1,1,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,17,2,9670,0,1,129.0,1,1,19,5,5,119.2,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,43,1,9500,0,1,137.0,1,3,3,2,2,115.0,0,0,1,1,1,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,1 +1,17,2,9254,0,1,115.0,1,19,19,9,7,113.3,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,133.0,1,38,38,7,7,125.3,1,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,110.0,1,37,37,7,10,150.0,0,0,1,0,1,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,19,133.1,1,19,19,144,141,131.5,0,0,0,1,1,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,133.0,1,38,1,2,4,126.0,0,0,1,1,1,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,15,1,9147,0,1,133.1,41,41,1,3,4,100.0,0,0,0,0,0,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,0 +1,10,2,9773,0,1,154.4,22,19,38,3,5,154.4,1,0,1,0,1,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,9070,0,39,100.0,1,1,1,4,4,106.0,0,0,1,1,0,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,135.0,1,38,19,8,8,126.3,1,0,0,1,1,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,120.0,41,1,1,9,6,114.8,1,0,1,1,1,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,2 +1,17,1,9085,0,1,124.0,1,19,38,7,7,113.9,1,0,1,1,1,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,1 +1,1,6,9254,0,1,126.0,1,38,37,5,7,123.9,1,0,1,1,1,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,125.0,1,37,37,9,9,121.5,1,0,1,1,0,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,1 +1,1,6,9773,0,1,125.0,1,1,1,5,4,122.2,0,0,1,1,0,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,135.0,1,19,19,4,5,126.8,1,0,1,1,0,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9238,0,1,133.0,1,1,37,7,9,127.4,1,0,1,1,1,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,3,9070,0,1,127.0,1,19,38,5,7,141.0,1,0,1,1,0,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +2,39,1,9119,0,3,120.0,1,37,37,4,7,122.5,0,0,1,0,1,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,2,9147,0,1,150.0,1,19,37,9,7,101.0,0,0,0,0,1,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,0 +1,7,1,9003,0,4,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,1 +1,17,5,9500,0,1,143.0,1,38,1,9,7,130.6,1,0,1,1,1,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,129.0,1,38,19,5,7,124.0,1,0,1,1,1,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,1 +1,17,2,9500,0,1,140.0,1,1,1,5,10,128.5,1,0,1,1,1,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,2 +4,39,1,8014,1,19,100.0,1,1,37,9,1,111.5,0,0,1,1,0,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,0 +2,39,2,9556,0,1,110.0,1,19,38,9,9,112.8,0,0,1,1,1,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,2 +1,1,1,9147,0,1,116.0,1,19,19,5,8,127.9,0,0,0,0,1,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,0 +1,43,4,171,0,1,117.0,1,19,12,9,10,109.3,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,130.0,1,1,38,5,5,122.3,1,0,1,1,1,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,1 +1,15,1,9119,0,1,130.0,26,38,3,9,2,137.0,1,0,1,1,0,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,2 +1,39,1,9556,0,1,133.1,1,38,19,9,6,100.0,1,0,1,1,1,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,150.0,1,3,1,3,9,154.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,43,1,9147,0,1,131.0,1,3,19,2,9,126.1,0,0,1,1,1,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,2 +1,1,6,9773,0,1,145.0,1,1,19,4,4,131.0,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,136.0,1,19,38,4,7,140.9,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,155.0,1,19,37,4,5,117.5,0,0,1,1,1,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,2 +1,1,3,9147,0,1,128.0,1,3,3,5,10,116.5,0,0,1,1,0,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,17,4,9254,0,1,133.0,1,37,37,5,8,128.5,1,0,1,1,1,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,0 +1,17,1,9119,0,1,141.0,1,37,1,9,2,133.0,1,0,1,1,0,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,2 +1,51,1,8014,1,1,120.0,1,1,1,4,4,128.5,0,0,0,0,0,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,0 +1,43,1,9003,0,1,120.0,1,3,3,1,2,115.0,0,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,136.0,1,19,19,4,7,136.0,0,0,1,1,1,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,1 +1,17,1,9070,0,1,116.0,1,38,38,9,9,123.7,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,125.0,1,19,19,4,8,117.0,1,0,1,1,1,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,135.0,1,1,38,5,7,137.5,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,140.0,1,19,19,7,7,124.6,1,0,1,1,1,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,2 +1,39,1,9670,0,19,133.1,1,1,1,4,7,100.0,0,0,0,0,1,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,122.0,1,37,37,9,9,131.0,1,0,1,1,1,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,0 +2,43,1,9773,0,1,160.0,1,37,37,5,0,160.0,0,0,0,0,0,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9670,0,1,113.0,1,37,19,9,9,110.2,1,0,1,1,1,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,125.0,1,37,37,9,9,126.0,1,0,0,1,1,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,1 +1,43,1,171,0,39,140.0,1,38,37,9,7,140.0,0,0,1,0,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,16,3,9853,0,1,134.0,1,37,19,9,5,121.4,1,0,1,1,1,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,2 +1,1,1,8014,1,1,120.0,1,1,37,7,3,122.8,0,0,1,1,1,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,1,1,4,2,127.7,0,0,1,1,1,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,2 +2,39,1,9991,1,1,120.0,1,19,37,3,9,132.9,0,0,1,1,0,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,138.0,1,1,38,4,9,132.5,1,0,1,1,1,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,133.1,1,19,37,7,7,126.0,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +5,39,1,9500,0,1,110.0,1,38,38,9,9,110.0,0,0,1,0,1,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,0 +5,7,1,9500,0,40,150.0,1,37,37,4,9,150.0,0,0,1,1,1,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,1 +1,17,1,9070,0,1,126.0,1,19,38,9,7,118.7,0,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,16,4,9254,0,1,126.0,1,38,37,9,7,118.7,1,0,1,1,1,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,3,9773,0,1,110.0,1,19,19,5,5,105.5,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,1 +1,39,1,9238,0,9,133.1,1,34,34,0,0,118.0,0,0,1,1,1,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,140.0,1,3,2,4,6,133.4,1,0,1,0,0,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,2 +1,1,1,171,0,1,134.0,1,3,2,2,2,141.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,6,9773,0,1,133.1,1,1,1,90,90,129.6,0,0,1,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,133.1,1,38,19,5,6,138.0,0,0,0,1,0,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,2 +1,17,3,9500,0,1,156.0,1,19,37,4,9,132.3,1,0,1,1,0,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,1 +1,44,1,9085,0,39,140.0,1,3,3,4,2,140.0,1,0,1,1,1,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,1 +1,43,1,171,0,1,116.0,1,3,1,2,3,117.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,141.0,1,38,19,9,6,126.3,1,0,1,1,1,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,44,1,9238,0,39,140.0,1,1,19,191,102,143.0,0,0,1,1,1,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,1 +1,43,5,8014,1,1,110.0,1,34,34,0,0,110.0,0,0,1,1,0,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9238,0,1,143.0,1,1,11,4,3,128.0,1,0,1,1,1,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +3,17,1,9238,0,1,138.0,1,37,37,9,9,133.5,1,0,1,1,1,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,2 +1,7,1,9119,0,3,150.0,1,3,2,2,2,150.0,0,0,1,1,1,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9003,0,39,150.0,1,19,1,1,1,150.0,0,0,1,1,0,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,2 +1,17,1,9085,0,1,134.0,1,19,37,2,7,131.2,0,0,1,1,1,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,171,0,1,133.1,1,37,37,9,7,100.0,0,0,0,1,0,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,18,1,9556,0,1,133.1,1,3,19,2,8,106.0,1,0,1,1,0,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,1 +1,17,2,9500,0,1,135.0,1,19,19,9,4,129.8,1,0,1,1,1,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,1 +1,39,1,33,0,1,130.0,1,38,37,9,6,102.5,0,0,0,0,0,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,0 +1,18,1,9500,0,1,144.0,1,37,37,6,6,127.5,1,0,1,1,1,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,130.0,1,37,38,9,9,133.9,1,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,1 +2,44,1,9003,0,39,140.0,1,37,37,4,7,140.0,0,0,1,1,0,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,0 +1,1,4,9773,0,1,137.0,1,3,19,2,3,139.8,1,1,1,1,1,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,2 +1,1,1,9991,1,1,130.0,1,2,37,3,9,131.4,0,0,1,1,0,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,135.0,1,3,3,1,1,125.8,1,0,1,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,1 +1,18,1,9238,0,1,147.0,1,38,34,4,0,130.2,0,0,1,1,1,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +5,17,5,9500,0,1,143.0,1,37,38,5,8,133.5,1,0,1,1,1,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,99.0,1,1,3,5,10,100.0,1,0,1,1,0,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,1 +1,16,2,9147,0,1,131.0,1,37,37,9,9,135.9,1,0,1,1,0,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,146.0,1,38,37,6,6,143.9,0,0,1,1,1,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,1 +1,17,1,9085,0,1,139.0,1,38,38,5,3,136.2,0,0,1,1,1,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,153.0,1,3,1,2,8,137.6,1,0,1,1,1,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,17,2,9085,0,1,133.1,1,19,38,9,1,100.0,1,0,0,0,0,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,0 +1,1,2,9773,0,1,121.0,1,19,19,9,9,122.8,0,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,141.0,1,37,38,9,10,138.9,0,0,1,1,1,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,1,6,9500,0,1,117.0,1,4,12,5,9,119.8,1,0,1,1,1,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,1 +1,17,4,9119,0,1,122.0,62,1,1,191,171,121.0,1,0,1,1,0,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,38,19,3,3,98.6,0,0,1,1,1,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,140.0,1,38,37,5,6,124.3,1,0,1,1,1,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,140.0,1,37,37,9,9,127.7,1,0,1,1,1,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,121.0,1,37,37,9,9,124.2,1,0,1,1,1,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,1 +1,18,1,9130,0,1,146.0,1,3,3,5,2,137.8,0,0,1,1,0,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,3,120.0,1,1,1,7,10,120.0,1,0,1,0,0,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,120.0,1,37,37,7,8,120.0,1,0,0,0,1,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,178.0,1,19,1,4,8,174.7,0,0,1,1,1,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,1 +1,17,5,9254,0,1,114.0,1,38,1,5,9,109.5,0,0,1,1,0,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,143.0,1,38,38,9,9,140.0,0,0,1,1,0,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,160.0,1,38,37,9,5,159.3,0,0,1,1,1,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,143.0,1,38,34,9,9,133.6,1,0,1,1,1,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,1 +4,43,1,9500,0,19,100.0,1,34,34,0,0,110.0,0,0,1,1,0,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,1 +1,1,2,9254,0,1,125.0,1,1,19,4,1,121.5,1,0,1,1,0,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,19,7,3,120.0,1,0,1,1,0,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,3,120.0,1,19,1,9,5,134.0,0,0,1,1,1,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,0 +1,39,1,9254,0,1,160.0,1,19,37,7,10,100.0,0,0,1,1,0,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,2 +1,15,1,171,0,1,130.0,26,1,1,2,9,130.0,0,0,1,1,0,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,2 +1,1,1,171,0,1,140.0,1,19,37,5,6,137.9,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,123.0,1,19,37,9,9,124.1,1,0,1,1,1,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,140.0,1,38,38,6,6,140.0,0,0,1,1,1,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,9991,1,9,133.1,1,34,34,0,0,118.4,0,0,1,0,1,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,6,9254,0,1,125.0,1,1,1,4,3,120.5,1,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,1 +1,1,6,171,0,1,126.0,1,10,10,4,4,130.2,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,120.0,1,1,19,4,7,120.0,0,0,1,1,0,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,2 +1,17,5,9773,0,1,143.0,1,1,1,7,7,136.7,1,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,42,1,9147,0,1,130.0,1,37,38,9,1,130.0,1,0,1,1,1,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,1,130.0,1,37,37,9,9,124.0,0,0,1,1,0,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,1 +1,17,2,9238,0,1,136.0,1,1,3,3,4,126.6,1,0,1,1,1,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,127.0,1,19,1,5,7,118.3,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,2 +4,39,1,9991,1,1,147.0,1,19,19,7,8,147.9,0,0,1,1,1,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,2 +1,1,4,9773,0,1,124.0,1,19,37,99,90,124.0,0,0,1,0,1,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +2,43,1,9003,0,1,133.1,1,37,37,9,7,136.0,0,0,1,1,0,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,1 +1,1,1,9085,0,1,140.0,1,12,1,1,90,141.8,0,0,1,1,1,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,133.1,1,37,37,191,154,95.0,0,0,1,1,1,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,147.0,1,2,3,4,8,145.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +2,7,1,9238,0,3,130.0,1,37,19,4,5,130.0,0,0,1,1,1,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,1 +1,7,2,9085,0,3,130.0,1,3,3,1,1,130.0,0,0,1,0,1,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,0 +2,39,2,9147,0,3,130.0,1,3,37,9,9,103.4,0,0,1,1,1,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,0 +1,17,1,9085,0,1,135.0,1,1,19,4,10,125.6,1,0,1,1,1,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,1,1,5,5,96.0,1,0,1,0,0,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +5,39,1,9853,0,19,133.1,1,38,1,5,3,105.5,0,0,0,1,1,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,136.0,1,37,37,7,7,121.7,1,0,1,1,1,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9119,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,0,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,19,133.1,1,19,19,4,4,100.0,0,0,1,1,0,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,2 +1,1,1,171,0,1,124.0,1,2,2,3,2,118.4,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,17,1,9085,0,1,120.0,1,2,3,2,2,116.1,0,0,1,1,1,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,162.0,1,37,37,9,9,142.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,131.0,1,37,1,9,9,135.9,1,0,1,1,1,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,37,37,9,7,100.0,0,0,1,1,0,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,1 +1,43,1,9500,0,1,127.0,1,19,19,4,7,121.1,0,0,1,1,1,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,143.0,1,37,37,9,5,131.6,1,0,1,1,1,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,1 +1,17,4,9085,0,1,140.0,1,19,37,4,7,123.7,0,0,1,1,1,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,156.0,1,19,1,5,10,136.8,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,0 +2,39,1,9853,0,10,133.1,1,37,34,0,0,115.5,0,0,1,1,1,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,0 +1,1,3,9119,0,1,113.0,1,4,38,2,7,107.4,1,0,1,1,0,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,1 +2,39,1,9670,0,1,130.0,1,37,37,9,0,158.0,0,0,0,0,1,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,0 +1,43,1,9853,0,1,110.0,1,37,37,9,9,107.7,0,0,0,0,1,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,124.0,1,2,2,3,3,124.7,1,0,1,1,0,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,127.0,1,37,37,5,10,125.3,0,0,1,1,0,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,1 +1,16,1,9500,0,1,133.1,1,37,37,9,9,95.0,1,0,1,1,1,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,1 +1,1,4,9238,0,1,127.0,1,19,19,4,0,127.4,1,0,1,1,1,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,113.0,1,38,38,3,7,112.3,0,0,1,1,1,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,1 +1,17,4,9670,0,1,110.0,1,19,37,9,99,106.1,1,1,0,0,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,141.0,1,1,38,4,8,136.8,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,133.1,1,37,37,9,7,140.0,0,0,1,1,1,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,124.0,1,1,1,4,4,118.8,0,0,1,1,0,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,4,120.0,1,2,3,2,2,120.0,0,0,1,1,1,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,0 +1,17,2,9670,0,1,110.0,1,3,3,4,10,115.6,1,0,1,1,0,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,118.0,1,1,19,4,10,110.7,1,1,1,1,1,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,2 +4,39,1,9238,0,1,130.0,1,19,3,9,2,140.0,0,0,1,1,0,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,1,140.0,1,1,19,3,9,140.0,1,0,0,0,1,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,0 +1,17,3,9773,0,1,123.0,1,1,19,5,5,117.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,115.0,1,38,38,8,7,112.9,1,0,1,1,1,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,1 +1,1,6,9147,0,1,142.0,1,38,37,7,7,134.3,0,1,1,1,0,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9085,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,1,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,129.0,1,19,1,3,7,121.0,0,0,1,1,1,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,156.0,1,3,3,123,122,155.0,0,0,1,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,136.0,1,37,37,9,9,126.3,1,0,1,1,1,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,1 +2,43,1,9991,1,1,110.0,1,37,37,9,9,132.5,0,0,1,1,0,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,19,133.1,1,37,1,5,5,138.3,0,0,1,1,0,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,0 +1,1,2,9130,0,1,140.0,1,19,37,9,9,129.5,1,0,1,1,1,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,2 +1,7,1,9500,0,3,140.0,1,37,37,4,4,140.0,0,0,1,1,1,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,1 +4,42,1,9147,0,1,110.0,1,37,37,9,9,128.2,0,0,1,1,1,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,1 +1,39,1,9119,0,19,133.1,1,1,1,4,3,134.4,0,0,0,0,0,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,136.0,1,37,1,5,4,120.8,1,0,1,1,1,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,1 +1,17,2,9500,0,1,140.0,1,37,37,9,9,132.5,1,0,1,1,1,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,1 +1,17,6,9147,0,1,130.0,1,37,37,9,9,110.4,1,0,1,1,0,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,4,5,105.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,136.0,1,19,19,4,3,126.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,116.0,1,38,2,9,2,112.2,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9238,0,1,122.0,1,19,3,5,2,112.6,0,0,0,1,1,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,2 +1,17,1,9147,0,1,118.0,1,1,38,9,9,118.4,1,0,1,1,0,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,2 +1,17,1,9130,0,1,117.0,1,19,19,4,4,113.5,1,0,1,1,1,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,117.0,1,19,19,9,9,111.8,1,0,1,1,0,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,0 +1,1,6,9500,0,1,118.0,1,38,19,3,3,113.5,1,0,1,1,0,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,1 +2,43,2,9853,0,1,130.0,1,38,31,4,1,124.2,0,0,1,1,1,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,128.0,1,38,38,9,7,124.5,1,0,1,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,2 +1,1,1,9238,0,1,116.0,1,38,38,9,8,108.7,1,0,1,1,0,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9254,0,19,133.1,1,37,19,9,10,156.5,0,0,1,1,0,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,1 +1,39,1,9003,0,1,160.0,1,1,37,191,193,140.0,0,0,1,1,0,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,110.0,1,37,37,9,10,150.0,0,0,1,1,0,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,1 +1,18,2,9070,0,1,122.0,1,38,19,5,5,119.9,0,0,1,1,0,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,125.0,1,19,38,9,7,116.3,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,37,37,6,6,147.8,0,0,1,1,1,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,2 +1,1,1,171,0,1,174.0,1,5,3,3,3,157.9,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,131.0,1,1,1,4,4,127.2,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,0 +1,17,1,9670,0,3,110.0,1,12,3,5,8,106.5,1,0,0,0,1,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9500,0,1,124.0,1,37,37,9,9,116.0,1,0,1,1,1,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,38,38,5,7,146.2,0,0,1,1,1,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,133.1,1,37,37,9,9,97.0,0,0,1,1,1,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,132.0,1,19,1,9,9,141.8,1,0,1,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,1 +2,43,1,9254,0,3,120.0,1,38,37,9,3,120.0,1,0,1,1,1,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,135.0,1,3,2,1,1,133.6,1,0,1,0,1,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,133.0,1,38,38,5,2,135.5,0,0,1,1,1,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,125.0,1,39,3,3,2,125.0,1,0,1,1,1,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,133.1,1,1,1,3,4,112.0,0,0,1,1,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,141.0,1,1,1,5,9,126.3,0,0,1,1,0,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,1 +1,39,1,9003,0,1,133.1,1,1,37,9,8,130.0,0,0,1,1,0,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,0 +2,43,1,9991,1,1,140.0,1,37,37,3,10,107.8,0,0,1,1,1,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,2 +1,43,1,9500,0,1,120.0,1,3,4,2,4,120.6,0,0,1,1,0,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,1,133.1,1,1,19,9,9,120.0,0,0,1,1,0,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,1 +1,39,1,9853,0,1,140.0,1,19,1,9,4,128.2,0,0,1,0,1,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,133.1,1,37,19,9,3,123.0,0,0,1,1,0,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,2 +1,39,1,9147,0,1,150.0,1,37,1,7,3,148.8,0,0,1,1,0,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,1 +1,17,1,9670,0,1,125.0,1,38,37,7,5,126.4,0,0,1,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,1 +1,44,1,9003,0,39,140.0,1,38,1,134,134,140.0,1,0,0,1,0,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,2 +1,44,1,9070,0,39,140.0,1,1,19,4,4,140.0,0,0,1,1,0,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,130.0,1,1,1,9,9,124.1,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,2 +1,51,1,9070,0,1,130.0,1,19,19,5,7,124.5,0,0,1,1,1,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,101.0,1,37,37,9,4,101.0,1,0,0,1,1,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,2 +1,1,1,8014,1,1,115.0,1,38,38,9,7,115.0,1,0,1,1,1,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,1 +1,17,1,9130,0,1,122.0,1,19,19,9,9,121.7,1,0,1,0,1,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,135.0,1,38,38,9,6,138.1,0,0,0,0,1,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9147,0,1,130.0,1,37,37,9,9,119.9,1,0,1,0,1,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,134.0,1,1,1,9,9,133.0,1,0,1,1,1,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,19,37,9,9,117.8,1,0,1,1,1,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,119.0,1,1,19,4,10,115.5,1,0,1,1,1,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,2 +1,17,3,9119,0,1,138.0,1,3,3,3,4,125.4,1,1,1,1,0,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,164.0,1,19,19,9,9,149.0,1,0,1,1,1,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,44,1,9085,0,1,140.0,1,4,4,2,6,140.0,0,0,1,1,1,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,1 +1,43,1,9070,0,1,160.0,1,1,2,4,2,100.0,0,0,1,1,0,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,132.0,1,37,37,9,5,135.9,0,0,1,1,1,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,142.0,1,37,19,7,7,133.0,1,0,1,1,1,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,1 +1,7,1,9556,0,3,130.0,1,1,37,4,8,130.0,0,0,1,0,0,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,0 +1,44,1,171,0,39,110.0,1,1,1,1,7,114.2,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9147,0,1,129.0,1,19,19,4,9,127.6,1,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,164.0,1,34,1,0,0,163.0,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9556,0,1,122.0,1,19,38,4,8,118.3,1,0,1,1,1,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,1 +1,17,4,9500,0,1,141.0,1,38,37,3,3,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,1 +1,1,1,9003,0,1,148.0,1,1,19,194,194,143.5,0,0,0,1,0,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,150.0,1,37,19,6,4,137.0,0,0,1,1,0,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,38,38,1,4,138.7,0,0,1,1,0,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,103.8,0,0,1,1,1,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,0 +1,17,1,8014,1,1,127.0,1,19,37,4,7,115.8,0,0,1,1,1,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,143.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,130.0,1,38,19,5,6,125.1,1,0,1,1,1,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9254,0,1,133.0,1,19,1,9,9,137.2,0,0,1,1,0,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +2,1,4,8014,1,1,140.0,1,34,34,0,0,128.0,1,0,1,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,120.0,1,1,1,9,10,118.3,0,0,1,1,0,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,2 +2,39,1,8014,1,12,133.1,1,37,37,9,1,113.0,0,0,1,1,1,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,128.0,1,19,1,0,5,122.1,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,37,38,3,3,123.0,0,0,1,1,1,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,120.0,1,37,1,7,4,95.0,1,0,1,1,1,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,0 +1,17,4,9238,0,1,123.0,1,19,19,191,144,116.0,1,0,1,1,1,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,39,1,9085,0,1,140.0,1,37,37,90,90,106.3,0,0,0,0,0,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,159.0,1,3,3,2,2,162.5,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,125.0,1,19,19,9,9,115.9,0,0,1,1,1,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,130.0,1,19,19,3,7,129.0,0,0,0,0,1,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,133.1,1,38,37,5,5,136.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,156.0,1,5,4,2,1,140.8,0,0,1,1,1,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,1,161.0,1,37,37,9,9,100.0,1,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,7,1,8014,1,3,130.0,1,35,35,90,90,140.0,0,0,1,0,1,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,0 +2,1,1,9991,1,1,120.0,1,37,19,9,9,135.0,1,0,1,1,0,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,0,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,148.0,1,3,3,2,2,137.3,1,0,1,1,1,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,120.0,1,19,37,5,7,115.1,0,0,1,1,1,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,2 +1,17,6,9773,0,1,138.0,1,1,1,4,2,140.5,1,0,1,1,1,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,1 +2,43,1,9085,0,1,160.0,1,37,37,9,7,120.0,0,0,1,1,0,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,2 +1,17,2,8014,1,1,134.0,1,1,19,4,99,126.0,1,0,1,1,0,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,100.0,1,0,1,1,1,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,131.0,1,1,1,5,9,129.5,1,0,1,1,1,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,1 +1,1,4,171,0,1,139.0,1,37,38,9,9,127.8,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,150.0,1,37,37,5,6,132.5,1,0,1,1,1,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,2 +1,1,1,9085,0,1,133.1,1,19,38,5,7,110.0,1,0,1,1,1,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,1 +1,43,1,9254,0,6,138.6,1,34,34,0,0,138.6,1,0,1,1,0,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,133.1,1,1,1,4,10,100.8,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,5,140.0,1,19,1,4,1,140.0,1,0,1,0,1,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,118.0,1,1,19,9,10,113.1,1,0,1,1,1,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,115.0,1,3,3,2,2,111.5,1,0,0,0,1,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9254,0,39,170.0,1,19,2,9,3,170.0,0,0,1,0,0,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,37,9,9,120.0,0,0,1,1,1,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,3,9500,0,1,137.0,1,19,38,7,7,126.5,1,0,1,1,1,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,136.0,1,19,19,90,8,133.9,1,0,1,0,0,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,0 +1,18,2,9500,0,1,141.0,24,1,1,4,3,126.8,1,0,1,1,1,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,1 +1,17,4,9238,0,1,124.0,1,19,19,5,8,117.7,1,0,1,1,1,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,149.0,1,19,38,9,9,126.5,1,0,1,1,1,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,153.0,1,1,1,141,175,157.9,0,0,0,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,140.0,1,1,2,4,6,140.0,1,0,1,1,1,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,137.0,1,1,3,3,2,121.3,1,0,1,1,1,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,143.0,1,1,1,4,6,138.8,0,0,1,0,0,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,160.0,1,1,3,1,2,130.0,0,0,1,0,0,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,19,19,9,8,105.8,0,0,1,1,1,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,0 +1,5,4,9119,0,1,115.0,1,19,37,4,6,113.3,1,0,1,1,0,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,19,4,3,125.4,1,0,1,1,1,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,1 +4,42,1,9500,0,19,133.1,1,1,1,5,5,126.0,1,0,1,1,0,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9254,0,3,133.1,1,19,19,4,6,130.5,0,0,1,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9147,0,1,108.0,1,1,19,4,4,105.9,1,0,1,1,0,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,126.0,1,19,19,9,9,115.2,0,0,0,1,1,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,2 +1,1,1,9853,0,1,140.0,1,37,37,9,9,145.3,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,1,6,9070,0,6,119.0,1,1,1,9,9,123.2,1,0,1,1,0,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,160.0,1,1,38,5,6,168.6,0,0,1,1,0,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9254,0,1,120.0,1,1,19,9,9,148.3,0,0,1,1,0,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,1 +1,7,1,9085,0,3,130.0,1,1,19,9,10,130.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,137.0,1,38,38,151,151,141.6,0,0,1,1,0,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,1 +1,39,1,9003,0,19,133.1,1,37,37,9,4,140.0,0,0,1,1,0,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,2 +1,43,1,9085,0,1,162.0,1,2,1,4,4,162.0,0,0,1,1,1,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,1 +1,43,1,171,0,1,133.0,1,19,19,5,7,133.0,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,154.0,1,37,37,9,7,150.2,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,19,100.0,1,38,19,0,10,111.3,0,0,0,0,1,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,38,4,9,126.2,0,0,1,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,132.0,1,3,1,2,7,125.5,1,0,1,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,127.0,1,37,37,5,7,116.2,0,0,1,1,0,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9773,0,1,121.0,1,19,38,9,7,113.0,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,130.0,1,19,19,9,9,127.6,1,0,1,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,160.0,1,34,34,99,99,114.3,0,0,1,1,0,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,2 +1,18,4,9254,0,1,119.0,1,37,37,9,9,113.1,1,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,130.0,1,38,37,5,6,130.0,0,0,1,1,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,163.0,1,19,37,5,8,150.8,1,0,1,1,0,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,2 +1,43,1,9238,0,1,122.0,1,19,19,5,5,114.3,1,0,1,1,1,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,2 +1,18,1,9147,0,1,131.0,1,34,34,90,90,131.0,0,0,1,1,0,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,4,9773,0,1,137.0,1,1,1,5,5,125.8,0,0,0,1,0,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9670,0,1,133.1,1,37,37,90,90,97.4,0,0,0,0,0,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,37,38,7,5,106.0,1,0,1,1,1,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,1 +1,17,6,9254,0,1,108.0,1,1,19,4,5,112.2,1,0,1,1,0,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,19,133.1,1,1,19,4,10,111.8,1,0,1,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,133.1,1,1,37,9,10,139.0,0,0,1,1,0,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,122.0,1,12,19,4,8,117.8,1,0,1,1,1,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,128.0,1,19,19,0,5,120.3,1,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,133.1,1,34,19,0,3,117.1,1,0,1,1,1,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9556,0,19,133.1,1,37,38,9,9,123.0,0,0,1,1,1,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,1 +1,17,2,9238,0,1,133.0,1,37,37,9,4,123.6,0,0,1,1,1,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,5,9670,0,1,132.0,1,19,19,5,5,134.1,1,0,1,1,0,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,129.0,1,38,1,4,10,129.4,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,136.0,1,19,19,4,8,150.4,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,154.0,1,3,3,1,3,129.0,1,0,1,1,1,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,2 +1,44,1,9130,0,39,150.0,1,1,1,4,4,150.0,1,0,1,1,1,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,2 +1,17,1,9773,0,1,115.0,1,37,37,9,8,116.1,1,0,1,1,1,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,157.0,1,19,3,4,9,138.8,0,0,1,1,0,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9670,0,19,133.1,1,19,1,5,8,97.2,1,0,1,1,0,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,141.0,1,37,38,6,6,125.6,1,0,1,1,1,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,143.0,1,19,1,9,9,144.4,1,0,1,1,1,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9119,0,1,127.0,1,19,1,4,5,115.8,0,0,1,1,0,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,150.0,1,1,1,9,10,142.7,0,0,0,1,1,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,132.0,11,12,12,90,4,129.9,1,0,1,1,1,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,115.0,1,19,19,191,171,109.1,0,0,0,0,0,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,2 +1,17,1,9773,0,1,121.0,1,38,38,9,8,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,7,1,9085,0,40,130.0,1,1,1,4,4,130.0,1,0,1,1,1,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,140.0,1,19,38,4,4,138.3,0,0,1,1,0,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,6,9773,0,1,116.0,1,19,1,4,4,110.1,1,0,1,1,1,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,131.0,1,38,38,9,9,127.9,0,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,1 +1,51,1,9991,1,42,110.0,1,19,37,5,9,128.2,0,0,1,0,1,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,0 +1,1,3,9500,0,1,138.0,1,19,19,5,8,124.9,1,0,1,1,1,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,172.0,1,1,1,4,9,167.1,0,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +5,39,1,9991,1,1,120.0,1,37,37,9,9,138.1,0,0,1,1,0,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,37,38,3,7,96.7,0,0,1,1,0,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,15,1,9130,0,1,133.1,41,1,1,4,4,100.0,0,0,1,1,1,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9119,0,1,122.0,1,19,19,9,9,114.7,0,0,1,1,0,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,133.1,1,19,38,192,192,96.0,1,0,1,1,1,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,160.0,1,1,37,9,10,118.0,0,0,1,1,1,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,2 +1,18,4,9119,0,1,134.0,1,19,38,194,175,124.9,1,0,0,1,0,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,4,19,4,5,98.0,0,0,1,1,0,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +5,43,1,9991,1,3,130.0,1,3,3,1,1,130.0,0,0,1,1,1,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,120.0,1,19,19,4,5,114.8,1,0,0,0,1,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,0 +1,18,6,8014,1,1,134.0,1,3,19,2,4,120.7,1,0,1,1,1,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,133.1,1,37,37,9,9,109.7,0,0,1,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9070,0,1,128.0,1,19,19,3,3,123.5,1,1,1,0,0,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,133.1,1,1,19,5,9,130.0,0,0,1,1,0,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,1 +1,7,1,9991,1,40,120.0,1,43,3,3,3,120.0,0,0,1,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,2 +1,17,5,9556,0,1,139.0,1,19,19,9,8,121.3,1,0,1,1,1,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,156.0,1,3,19,3,3,151.1,0,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,1 +1,16,2,9147,0,1,132.0,1,37,37,9,9,122.6,1,0,1,1,1,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,130.0,1,2,3,9,6,130.0,0,0,1,1,0,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,133.1,1,1,1,1,6,120.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,0,1,0,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,133.0,1,3,3,1,1,126.2,1,0,1,1,1,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,1 +1,18,2,9147,0,1,140.0,1,37,37,5,9,124.3,1,0,1,1,0,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,44,1,9003,0,39,150.0,1,37,38,4,8,150.0,0,0,1,1,1,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,140.0,1,37,19,191,163,129.3,1,0,0,1,1,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +4,7,1,9500,0,3,130.0,1,3,19,2,3,130.0,0,0,1,1,1,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9070,0,1,131.0,1,19,19,7,7,125.1,0,0,1,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,2 +1,10,1,9773,0,1,152.0,22,38,37,5,9,152.0,1,0,1,1,1,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,123.0,1,34,38,0,7,120.2,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,1,1,9070,0,1,131.0,1,3,19,4,4,130.3,1,0,1,1,0,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,115.0,1,1,1,5,4,108.0,1,0,1,1,1,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,130.0,1,38,37,9,9,144.0,0,0,1,1,1,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9238,0,1,134.0,1,3,1,3,4,133.0,1,0,1,1,1,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,1 +1,51,1,9670,0,1,133.1,1,3,1,3,10,116.2,0,0,1,1,0,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,139.0,0,0,1,1,0,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,126.0,1,19,1,9,9,122.5,1,0,1,0,1,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,121.0,1,19,19,9,9,126.3,1,0,1,1,1,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9003,0,1,133.1,1,38,38,4,8,115.0,0,0,0,1,0,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,19,37,9,9,151.5,0,0,0,0,0,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9853,0,40,110.0,1,41,3,2,1,110.0,0,0,0,1,1,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,1 +1,17,5,9238,0,1,131.0,1,19,37,5,7,120.2,1,0,1,1,1,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,2 +5,7,1,9070,0,3,140.0,1,37,37,7,7,140.0,0,0,1,0,0,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +4,39,1,9254,0,1,140.0,1,38,37,9,9,112.0,0,0,0,1,1,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,0 +1,18,3,9853,0,1,122.0,1,38,37,9,5,120.3,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9070,0,1,125.0,1,1,38,9,7,118.0,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,2 +1,1,3,9670,0,1,111.0,1,1,1,5,5,105.4,0,0,1,1,1,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +2,39,1,9254,0,1,130.0,1,37,37,4,7,120.0,1,0,1,1,1,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,160.0,1,37,37,9,9,160.0,1,0,1,1,1,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,1 +1,39,1,9147,0,12,133.1,1,37,37,9,9,140.0,0,0,1,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9147,0,1,118.0,1,1,2,10,10,117.3,1,0,1,1,1,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,3,9085,0,1,130.0,1,1,19,9,9,121.3,1,0,1,1,1,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,19,133.1,1,37,37,9,9,130.0,0,0,1,1,1,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,3,9085,0,1,130.0,1,19,37,5,5,121.3,1,0,1,1,1,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,2 +1,1,2,9254,0,1,120.0,1,19,19,9,9,116.5,1,0,1,1,1,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,1 +2,39,1,9500,0,1,140.0,1,37,37,9,4,127.3,0,0,1,1,0,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,1 +1,17,1,9670,0,1,118.0,1,37,38,8,7,115.2,1,0,1,1,1,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,17,3,9238,0,1,125.0,1,19,19,7,8,121.5,0,0,1,1,1,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,125.0,1,19,19,5,5,114.5,1,0,1,1,1,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,136.0,1,39,1,3,4,134.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,115.0,1,3,2,4,5,112.6,0,0,1,1,0,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,53,1,9003,0,1,130.0,1,19,1,9,9,130.0,0,0,0,1,0,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,2 +1,1,3,9773,0,1,136.0,1,3,1,5,3,129.0,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,3,150.0,1,2,3,4,7,173.3,1,0,1,1,1,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,140.0,1,1,19,7,7,129.9,1,0,1,1,1,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,0 +1,7,1,9119,0,1,140.8,1,34,34,0,0,134.0,0,0,1,1,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9254,0,1,115.0,1,37,19,5,5,109.8,1,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,137.0,1,1,1,4,4,127.6,1,0,1,1,1,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,1 +4,7,1,9238,0,40,130.0,1,34,34,99,99,130.0,0,0,0,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9147,0,1,123.0,1,37,37,9,9,106.2,0,0,1,1,1,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,121.0,1,1,3,3,7,113.0,1,0,1,1,0,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,1 +1,17,1,9254,0,1,140.0,1,3,1,2,3,129.9,0,0,1,1,1,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,7,1,9991,1,40,130.0,1,38,38,9,7,130.0,0,0,1,1,0,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,0 +1,51,1,9070,0,1,132.0,1,19,19,153,153,120.0,0,0,1,1,1,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,9119,0,1,110.0,1,37,37,9,9,106.8,0,0,1,1,0,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9070,0,1,124.0,1,19,37,4,4,126.8,0,0,1,1,1,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,2 +1,18,3,9147,0,1,133.1,1,1,38,4,7,101.0,1,0,1,0,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,3,9147,0,1,125.0,1,38,19,7,7,125.7,0,0,1,1,1,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,2 +1,17,4,9853,0,1,121.0,1,38,38,5,7,113.7,1,0,1,1,1,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,1,133.1,1,1,1,9,6,105.0,1,0,0,0,1,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,143.0,1,5,1,2,5,136.7,0,0,1,1,1,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,1 +1,1,2,9556,0,1,142.0,1,1,19,4,5,130.5,1,0,1,1,1,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,131.0,1,19,19,7,5,122.1,1,0,1,1,1,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,132.0,1,1,37,4,7,121.8,1,0,1,1,1,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,123.0,1,37,37,3,3,123.0,1,0,1,1,1,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,129.0,1,19,38,2,7,126.9,1,0,1,1,1,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,2 +1,1,4,9238,0,1,118.0,1,19,38,9,9,110.0,0,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,125.0,1,3,1,4,4,119.4,1,0,1,1,1,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,2 +1,17,1,9085,0,1,131.0,1,1,3,4,1,129.3,1,0,1,1,1,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9500,0,1,147.0,1,37,37,9,9,134.3,0,0,1,1,1,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,1 +2,39,2,9670,0,19,133.1,1,37,37,9,9,135.6,0,0,1,1,1,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,152.0,1,37,19,9,9,137.0,1,0,1,1,1,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,118.0,1,12,1,4,10,115.7,0,0,1,1,0,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,2 +1,15,1,9119,0,1,133.1,41,1,3,5,8,100.0,0,0,0,1,0,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,0 +1,1,5,9119,0,1,131.0,1,1,19,4,7,126.8,0,0,1,0,0,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,132.0,1,19,38,9,7,119.1,0,0,1,0,0,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,8014,1,1,120.0,1,37,37,5,5,161.1,0,0,1,1,0,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,18,5,9500,0,1,137.0,1,19,1,1,10,129.3,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,118.0,1,37,19,5,5,119.1,1,0,1,1,1,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,134.0,1,38,38,9,9,122.0,1,0,1,1,0,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,163.0,1,1,1,4,3,149.7,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,140.0,1,38,38,9,7,140.0,0,0,1,1,1,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,2 +1,17,4,9147,0,1,122.0,1,19,19,5,7,116.4,1,0,0,1,1,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,140.0,1,3,37,3,7,116.9,0,0,1,1,0,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,5,2,9238,0,1,123.0,1,40,38,2,9,118.1,1,0,1,1,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,7,1,9991,1,3,130.0,1,3,19,2,3,133.9,0,0,1,1,1,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,125.0,1,1,38,4,7,114.9,1,0,1,1,1,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,130.0,1,1,1,4,10,115.2,0,0,1,1,0,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,124.0,1,38,19,9,7,129.6,1,0,1,1,0,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,139.0,1,38,38,7,5,133.4,0,0,1,1,1,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,4,9254,0,1,125.0,1,38,38,5,5,115.6,1,0,1,1,1,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,147.0,1,37,37,9,9,142.8,1,0,1,1,1,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,0 +1,1,1,9003,0,1,144.0,1,19,19,9,9,132.8,0,0,1,1,0,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,12,133.1,1,19,1,9,1,130.0,0,0,1,1,0,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,140.0,1,37,37,9,6,135.5,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,6,9254,0,1,102.0,1,3,1,2,2,101.7,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,133.1,1,19,38,5,5,131.8,1,0,0,1,1,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,1 +1,44,1,171,0,39,150.0,1,4,4,2,2,150.0,0,0,1,1,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,53,1,9254,0,42,110.0,1,1,1,4,7,111.8,1,0,1,1,1,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,121.0,1,19,38,6,6,116.1,1,0,1,1,0,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,1 +1,17,4,9773,0,1,127.0,1,1,19,4,1,115.8,1,0,1,1,1,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,37,37,9,7,160.0,1,0,1,0,0,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,15,170.0,1,34,1,90,2,101.0,0,0,1,1,1,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,125.0,1,3,3,3,3,116.6,1,0,1,0,1,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,2 +1,17,4,9070,0,1,117.0,1,1,1,3,3,125.4,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,146.0,1,19,37,7,7,133.8,1,0,1,1,1,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,142.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,1 +1,1,1,171,0,3,116.0,1,3,3,2,2,128.2,0,0,1,1,1,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,1 +1,1,2,9500,0,1,124.0,1,37,37,7,7,116.5,1,0,1,1,1,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,118.0,1,19,19,5,7,117.8,0,0,1,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,1 +1,18,3,9670,0,1,119.0,1,38,38,9,9,115.2,1,0,1,1,1,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,131.0,1,3,19,3,10,123.3,0,0,1,1,0,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,2 +1,17,1,9254,0,1,136.0,1,39,3,3,3,128.7,1,0,1,1,1,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,0 +1,18,1,9500,0,1,140.0,1,37,38,5,7,126.0,1,0,1,1,1,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +1,44,1,9119,0,39,150.0,1,19,3,5,2,150.0,0,0,1,1,0,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,2 +1,43,1,9773,0,1,137.0,1,38,37,9,5,127.9,1,0,1,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,119.9,0,0,1,1,1,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,2 +1,18,2,9773,0,1,132.0,24,37,19,9,7,119.1,1,0,1,1,1,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,43,1,8014,1,1,133.1,1,34,34,0,0,100.0,0,0,1,1,1,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,1,133.1,1,38,19,9,9,128.0,1,0,1,0,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,125.0,1,19,19,5,4,136.2,1,0,0,1,0,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,132.0,1,38,38,0,5,126.1,0,0,1,1,0,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9670,0,1,130.0,1,1,1,9,10,116.3,1,0,1,1,1,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,1 +1,1,3,9773,0,1,150.0,1,19,38,4,4,146.5,1,0,1,1,1,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,1 +4,39,2,8014,1,1,160.0,1,37,38,7,5,115.0,0,0,1,1,1,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,135.0,1,19,1,9,9,122.1,1,0,1,1,1,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,136.0,1,3,3,9,9,136.0,1,0,0,0,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,3,3,7,1,130.0,1,0,1,1,0,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,2 +1,39,1,9119,0,19,133.1,1,19,19,5,3,100.9,1,0,1,1,0,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,2 +1,17,1,9254,0,1,137.0,1,34,38,0,7,137.7,1,0,0,0,1,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +4,39,1,8014,1,19,133.1,1,37,37,90,7,110.0,0,0,1,0,1,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,144.0,1,38,37,9,9,125.8,0,0,1,1,1,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,1,4,9070,0,1,167.0,1,1,1,7,3,158.3,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,133.0,1,37,19,7,7,126.7,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,118.0,1,38,38,7,7,121.2,1,0,1,1,1,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,19,133.1,1,19,19,4,4,150.0,0,0,1,0,0,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,0 +1,17,2,9085,0,1,166.0,1,1,19,4,3,158.7,0,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,1 +1,44,1,9254,0,39,130.0,1,39,39,194,193,130.0,1,0,0,1,0,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,2 +1,17,1,9085,0,1,140.0,1,37,38,7,9,129.9,0,0,1,1,1,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,1 +1,7,1,9147,0,3,120.0,1,1,39,4,7,120.0,0,0,1,1,1,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,5,9254,0,1,118.0,1,19,37,5,5,120.5,1,0,1,1,0,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,0 +1,17,3,9070,0,1,120.0,1,3,1,4,4,116.9,1,0,1,1,1,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,1 +1,43,5,9238,0,1,101.0,24,37,19,9,7,119.9,1,0,0,0,1,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,128.0,1,19,1,4,3,117.2,1,0,1,1,1,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,1 +1,1,3,9254,0,1,118.0,1,1,19,9,9,111.7,1,0,1,1,1,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9773,0,1,137.0,1,37,37,0,90,134.2,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,144.0,1,3,39,2,3,129.0,1,0,1,1,1,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,0 +1,1,5,9147,0,1,125.0,1,37,38,7,7,122.2,1,0,1,1,1,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,2 +1,1,2,9500,0,1,147.0,1,3,1,4,3,136.7,0,0,1,1,1,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,1 +1,39,1,9085,0,39,120.0,1,37,37,1,9,137.7,1,0,1,0,0,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,160.0,1,1,37,9,9,146.0,1,0,1,1,1,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,2 +1,44,1,9238,0,39,130.0,1,1,19,4,5,127.4,0,0,0,0,0,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,3,1,2,4,154.9,0,0,0,0,0,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,0 +1,17,2,9670,0,1,129.0,1,19,19,5,4,129.4,0,0,1,1,1,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,137.0,1,3,19,3,5,136.3,1,0,1,1,1,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,1 +1,39,1,9991,1,1,100.0,1,37,37,9,6,153.5,0,0,0,0,0,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,134.0,1,38,38,7,9,132.8,1,0,1,1,1,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,137.0,1,37,37,7,9,130.8,1,0,1,1,1,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,133.1,1,37,37,1,1,97.0,0,0,1,1,0,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,143.0,1,3,38,2,10,129.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +2,39,1,9991,1,1,110.0,1,37,37,9,3,127.1,0,0,1,1,1,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,2 +2,7,1,9147,0,3,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,160.0,1,37,37,9,9,160.0,0,0,1,1,0,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,162.0,1,3,4,3,3,154.1,0,0,1,1,1,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,1 +1,1,2,9147,0,1,119.0,1,19,37,4,5,113.8,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,139.0,1,19,1,9,5,135.0,1,0,1,1,1,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,120.0,1,1,38,5,5,116.3,1,1,1,1,0,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,1 +1,17,2,9500,0,1,135.0,1,1,19,4,10,133.5,1,0,1,1,1,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,1 +1,1,3,9119,0,1,117.0,1,1,1,3,5,111.1,0,0,1,1,0,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,140.0,1,1,39,4,1,128.1,1,1,1,1,0,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9003,0,1,133.1,1,37,37,3,8,130.0,0,0,0,1,1,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,134.0,1,19,37,5,5,125.3,1,0,1,1,0,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,37,38,9,9,114.0,0,0,1,1,1,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,38,37,4,5,102.5,0,0,0,0,0,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,171,0,1,143.0,1,19,37,5,9,156.3,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,130.0,1,19,1,9,5,122.1,1,0,1,1,1,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,1 +1,39,2,8014,1,1,100.0,1,35,37,90,90,100.0,0,0,1,1,1,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +2,39,2,9670,0,1,100.0,1,37,37,9,9,110.0,0,0,1,1,0,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,2,9853,0,1,126.0,1,1,19,2,10,126.0,1,0,1,1,1,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,2 +1,18,3,9070,0,1,131.0,1,1,37,5,5,122.3,1,0,1,0,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,150.0,1,19,37,9,8,138.5,0,0,1,1,1,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,2,171,0,1,146.0,1,3,3,3,3,155.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9147,0,1,120.0,1,19,19,9,7,118.6,1,0,1,1,1,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,145.0,1,38,38,9,9,125.5,1,0,1,1,1,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,4,9070,0,1,143.0,1,1,1,9,7,134.6,1,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,0 +1,51,1,8014,1,1,121.0,1,1,38,5,7,112.3,0,0,1,1,1,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,130.0,1,37,1,9,8,120.2,1,0,1,1,0,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,1 +2,7,1,9254,0,2,100.0,1,37,37,9,9,100.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9119,0,1,130.0,1,37,3,9,3,137.0,1,0,1,1,0,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,1,0,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,140.0,1,38,37,7,7,105.2,0,0,1,1,0,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,131.0,1,1,19,4,7,135.9,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,108.0,1,19,38,9,7,110.5,1,0,1,1,1,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,111.0,1,1,38,5,9,107.5,0,0,1,1,0,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,1,9147,0,1,147.0,1,37,37,9,6,142.8,1,0,0,0,1,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,170.0,1,38,19,4,8,134.7,0,0,1,1,1,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,138.0,1,4,19,2,3,124.7,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,125.0,1,37,38,9,9,125.0,1,0,0,0,1,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,118.0,1,38,38,5,5,114.2,1,0,1,1,1,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,3,3,1,5,118.8,0,0,1,1,1,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,1 +1,1,3,9085,0,1,131.0,1,37,19,9,8,136.3,1,0,0,0,1,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,0 +1,43,1,9991,1,1,141.0,1,37,37,9,9,131.9,0,0,1,1,1,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,0 +1,42,1,9070,0,1,120.0,1,3,2,3,1,116.9,0,0,1,1,0,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,130.0,1,1,1,9,7,152.1,0,0,1,1,0,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,12,133.1,1,34,34,0,0,135.0,0,0,1,1,1,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,0 +1,17,2,9500,0,1,130.0,1,38,38,7,7,122.5,1,0,1,1,1,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,160.0,1,1,1,194,131,128.4,0,0,1,1,1,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,132.0,1,1,38,7,7,129.6,0,1,1,1,0,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,1,1,3,9,118.4,0,0,1,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,1 +1,1,2,9556,0,1,133.1,1,19,19,9,9,104.5,1,0,1,1,1,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,0 +1,53,1,9003,0,42,150.0,1,1,38,8,8,150.0,0,0,1,1,1,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,144.0,1,3,1,2,3,126.9,0,0,1,1,1,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,150.0,1,3,3,2,2,120.0,0,0,0,0,1,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,3,3,2,10,160.0,1,0,1,1,0,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,129.0,1,1,1,9,9,120.0,0,0,1,1,0,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,1 +4,39,1,9003,0,12,133.1,1,37,37,9,6,160.0,0,0,1,1,1,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,1 +2,39,2,9991,1,1,100.0,1,37,37,9,9,100.0,1,0,1,1,0,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,115.0,1,19,1,3,8,123.4,0,0,1,1,1,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,124.0,1,19,37,3,8,117.5,1,0,1,1,0,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,2 +1,1,6,9254,0,1,129.0,1,38,19,9,5,117.8,1,0,1,1,1,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,127.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,19,133.1,1,38,38,7,8,120.0,0,0,1,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,0 +6,39,2,9147,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,4,9500,0,1,148.0,1,3,19,4,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,39,150.0,1,1,3,4,1,150.0,0,0,1,1,0,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,0 +1,17,1,171,0,1,145.0,1,37,37,9,1,150.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,123.0,1,1,1,9,9,115.7,1,0,1,1,1,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,16,1,171,0,1,122.0,1,19,37,9,7,133.9,1,0,1,1,0,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,124.0,1,37,38,9,8,114.6,1,0,1,1,0,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,120.0,1,38,37,9,8,113.4,1,0,1,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,7,1,9991,1,40,140.0,1,37,37,6,6,140.0,0,0,1,1,1,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,1 +1,1,5,9670,0,1,133.1,1,9,1,2,4,133.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,100.0,1,19,19,4,4,113.0,0,0,1,1,0,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,2 +4,39,1,9003,0,1,133.1,1,19,19,9,4,100.7,0,0,1,1,1,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,2 +1,17,2,9147,0,1,133.1,1,38,38,4,7,109.0,1,0,1,1,0,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,2 +1,15,1,9238,0,1,140.0,26,19,19,9,6,140.0,0,0,1,1,0,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,1,3,9500,0,1,114.0,1,1,1,5,5,114.5,1,0,1,1,1,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,134.0,1,1,38,4,4,120.7,0,0,0,0,1,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,1,133.1,1,37,11,9,7,96.0,0,0,0,0,0,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,131.0,1,3,3,3,3,135.9,0,0,1,1,1,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,1 +1,43,2,9500,0,1,130.0,1,38,37,4,4,126.8,1,0,1,1,0,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,19,37,7,7,124.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9670,0,1,120.0,1,1,19,4,5,100.0,0,0,1,1,1,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,145.0,1,38,38,9,10,139.8,1,0,1,1,1,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,141.0,1,19,38,5,7,125.5,0,0,1,1,1,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,1 +5,39,1,9147,0,1,133.1,1,1,19,4,7,114.0,0,0,1,0,0,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9991,1,1,110.0,1,37,37,1,4,120.0,1,0,1,0,0,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,172.0,41,37,37,5,5,153.8,1,0,1,1,1,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,1 +1,17,1,9556,0,1,140.0,1,3,3,1,7,131.6,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,148.0,1,1,1,4,3,137.5,0,0,1,1,0,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,137.0,1,19,38,3,9,124.9,0,0,1,1,1,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,139.0,1,18,18,1,1,130.8,1,0,1,0,1,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,0 +1,17,1,9003,0,1,120.0,1,38,37,5,9,131.4,1,0,1,1,0,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,1 +1,53,1,9085,0,42,160.0,1,19,37,4,9,160.0,1,0,1,1,1,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,1 +1,18,1,9670,0,1,140.0,1,1,37,9,9,130.2,1,0,1,1,0,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,1 +1,43,1,9853,0,1,140.0,1,37,37,6,6,125.2,0,0,0,1,1,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,1 +1,1,4,9556,0,1,122.0,1,37,1,5,4,123.9,0,0,1,1,1,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,1,19,3,3,123.0,0,0,1,1,1,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,140.0,1,19,38,4,0,140.0,1,0,1,1,0,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,129.0,1,1,1,4,2,126.2,0,0,0,0,1,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,0 +2,17,3,8014,1,1,123.0,1,19,37,3,3,113.2,0,0,0,0,1,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,133.1,1,38,19,9,10,114.5,0,0,1,1,1,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,2 +1,51,1,9991,1,1,141.0,1,19,38,5,7,100.0,0,0,1,1,1,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,1 +1,17,2,171,0,1,131.0,1,2,1,3,3,148.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,39,1,9085,0,19,133.1,1,37,37,9,9,100.0,1,0,0,0,1,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,117.0,1,1,38,5,1,113.5,1,0,1,1,1,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,116.0,1,19,38,9,9,119.5,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,1,19,3,4,116.7,0,0,1,1,1,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,129.0,1,2,3,2,2,128.3,1,0,1,1,1,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,2 +1,1,3,9085,0,1,138.0,1,1,1,4,8,128.7,1,0,1,1,1,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,1,5,9147,0,1,118.0,1,19,19,9,9,114.2,1,0,1,1,0,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,133.0,1,3,19,2,8,126.7,0,0,1,1,1,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,2 +1,16,1,171,0,1,158.0,1,38,37,9,9,164.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,43,3,9500,0,1,126.0,1,38,37,6,5,124.3,1,0,1,1,1,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,123.0,1,38,38,9,5,124.8,0,0,1,0,1,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,2 +1,1,1,9130,0,1,160.0,1,3,3,3,2,155.1,1,0,1,1,1,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,1 +4,43,1,9500,0,1,130.0,1,37,37,9,9,103.7,0,0,1,1,1,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,2 +1,16,2,9238,0,1,133.0,1,19,38,4,5,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,130.0,1,38,37,9,9,124.8,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,135.0,1,37,1,7,7,132.8,1,0,1,1,1,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9119,0,1,128.0,1,1,38,4,7,100.0,0,0,1,1,0,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,2 +1,17,2,9085,0,1,120.0,1,1,1,9,10,115.0,0,0,1,0,1,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,0 +1,17,2,9070,0,1,142.0,1,3,1,2,4,141.0,1,0,1,1,0,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,2,9853,0,1,124.0,1,38,37,5,3,118.1,1,0,1,0,1,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,145.0,1,37,37,9,9,132.0,1,0,1,1,1,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,1 +1,39,1,9130,0,1,114.0,1,38,38,9,10,120.0,0,0,1,1,1,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,140.0,1,3,3,2,2,146.4,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,1 +1,1,5,9773,0,1,130.0,1,34,38,0,8,128.3,1,0,1,0,1,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,3,9670,0,1,110.0,1,19,1,4,4,107.5,1,0,1,1,1,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,135.0,1,37,37,5,5,126.3,1,1,1,1,1,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,1 +2,1,1,9254,0,1,140.0,1,19,38,4,7,133.0,0,0,1,1,0,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9254,0,1,150.0,1,37,37,9,9,115.0,0,0,1,1,0,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,1 +1,39,1,9070,0,1,130.0,1,1,1,5,3,112.0,1,0,1,1,0,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,1 +1,1,1,9070,0,1,110.0,1,1,37,9,9,105.1,1,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,131.0,1,37,37,9,7,118.4,0,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,0 +1,17,1,171,0,1,136.0,1,38,38,7,7,127.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9773,0,1,127.0,1,19,19,5,8,120.0,0,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,3,171,0,1,139.0,1,37,19,9,8,142.2,1,0,1,1,0,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,128.0,1,37,19,9,4,127.3,1,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,16,4,9773,0,1,109.0,1,37,37,9,3,137.0,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,1 +1,53,1,9085,0,42,130.0,1,19,1,9,9,130.0,1,0,0,0,1,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,2 +1,7,1,171,0,3,130.0,1,1,2,9,2,130.0,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,120.0,1,37,37,9,9,120.0,1,0,0,1,1,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,0 +1,2,1,9853,0,1,120.0,1,19,38,9,9,122.5,0,0,1,0,1,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,19,133.1,1,2,1,8,8,120.0,1,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,0 +1,43,1,9773,0,1,121.0,1,1,1,4,5,121.0,1,0,1,1,0,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,4,9147,0,1,120.0,1,38,19,9,9,111.3,1,0,1,1,1,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,38,19,5,0,141.8,0,0,1,1,1,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,131.0,1,1,1,7,4,127.2,1,0,0,1,0,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,11,9,10,131.5,0,0,1,1,1,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,3,19,2,3,125.7,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,1,2,9556,0,1,136.0,1,19,19,9,9,129.5,1,0,1,1,1,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,1 +1,42,1,9119,0,1,120.0,1,5,5,2,2,115.0,0,0,1,1,0,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,0 +1,17,6,9119,0,1,124.0,1,19,19,4,0,126.1,1,0,1,1,0,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,1 +1,1,1,9254,0,1,160.0,1,19,38,9,9,140.8,1,0,1,1,0,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,123.0,1,37,37,9,9,115.0,1,0,1,1,1,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,1 +2,39,2,9670,0,1,133.1,41,37,19,9,9,130.0,0,0,1,1,1,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9670,0,6,170.0,1,34,34,0,0,111.6,0,0,1,1,0,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,138.0,1,1,3,9,1,123.0,1,0,1,1,1,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,1,37,6,6,130.0,1,0,1,1,0,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,1 +1,17,2,9119,0,1,133.1,1,1,2,3,3,117.0,1,0,1,1,0,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,2 +1,1,5,9254,0,1,131.0,1,19,37,9,9,123.7,0,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,130.0,1,1,1,9,4,140.0,0,0,1,0,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9773,0,1,135.0,1,1,19,4,10,129.4,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,132.0,1,1,19,3,3,122.9,1,0,1,1,1,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,115.0,1,37,37,9,8,129.0,1,0,0,0,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,51,1,9238,0,1,160.0,1,3,19,2,1,116.1,0,0,0,1,1,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9003,0,12,133.1,1,37,1,9,10,130.0,0,0,1,1,0,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,129.0,1,37,38,4,9,121.0,1,0,1,1,1,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9119,0,1,130.0,1,38,19,7,3,119.9,1,0,0,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,133.1,1,37,37,9,9,100.2,1,0,1,0,1,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,4,38,4,5,140.0,1,0,1,1,1,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,2 +2,7,1,9991,1,43,140.0,1,40,5,3,3,140.0,0,0,1,1,1,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,1 +1,43,2,9670,0,1,129.0,1,3,3,5,5,122.4,1,0,1,1,1,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,2 +1,1,1,9238,0,1,116.0,1,38,38,9,6,116.4,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,44,1,9130,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,130.0,1,1,3,9,2,130.0,1,0,0,1,1,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,139.0,1,38,38,9,5,130.5,1,0,1,1,1,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,1 +1,42,1,9500,0,1,100.0,1,19,19,9,9,100.0,0,0,0,1,0,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,0 +1,7,1,9773,0,43,140.0,1,19,1,4,8,140.0,0,0,1,1,0,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9003,0,1,125.0,1,1,38,4,7,125.0,1,0,1,1,1,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,1 +1,39,2,9147,0,19,133.1,1,38,19,4,10,116.3,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,3,9500,0,1,132.0,1,37,37,4,3,127.3,1,0,1,1,1,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,127.0,1,1,37,4,8,121.1,1,0,1,1,0,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,1 +1,39,1,9670,0,1,140.0,1,37,37,6,6,120.0,0,0,1,1,1,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,133.0,1,37,37,9,5,139.2,1,0,0,1,0,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,140.0,1,19,19,1,4,133.3,1,0,1,1,1,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,120.0,1,3,3,2,2,112.0,0,0,1,1,1,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,2 +2,1,1,9147,0,1,137.0,1,19,37,9,9,124.4,0,0,1,1,1,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,130.0,1,38,38,9,3,145.6,0,0,1,1,0,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,6,9670,0,1,120.0,1,1,14,4,5,113.7,1,0,1,1,1,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,120.0,1,38,19,9,3,112.7,0,0,1,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,122.0,1,37,37,9,9,114.3,1,0,1,0,1,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,1,8014,1,1,133.1,1,3,1,1,7,100.0,0,0,1,1,1,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,4,19,3,5,123.7,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,4,4,4,2,120.0,1,0,1,1,0,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,2 +1,1,3,9238,0,1,137.0,1,1,1,3,3,131.4,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,1 +1,43,1,9130,0,1,130.0,1,1,1,1,1,130.0,1,0,1,1,0,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,2 +1,1,2,9773,0,1,121.0,1,1,19,9,7,118.9,1,0,1,1,1,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,133.1,1,19,38,9,8,128.2,1,0,1,1,0,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,2 +1,43,1,9070,0,1,134.0,1,19,37,7,7,132.7,1,0,1,1,0,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9147,0,1,125.0,1,1,38,7,7,120.1,0,0,0,1,0,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,129.0,1,37,37,9,9,117.1,1,0,1,1,1,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,145.0,1,38,38,5,7,138.0,1,0,1,1,1,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,120.0,105,1,1,9,9,119.0,1,0,0,0,1,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,131.0,1,1,19,9,9,127.0,0,0,1,1,0,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,100.0,1,38,19,6,10,112.8,0,0,1,1,1,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,2,9070,0,1,145.0,1,38,19,7,7,130.0,1,0,1,1,0,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,126.0,1,37,38,7,7,119.0,0,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,1 +1,1,2,9773,0,1,137.0,1,1,19,7,7,133.2,1,0,1,1,1,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,128.0,1,38,38,9,7,128.4,1,0,1,1,1,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,2 +1,44,1,9085,0,39,150.0,1,19,38,194,193,150.0,1,0,1,1,1,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,2 +1,1,4,171,0,1,146.0,1,1,1,9,5,151.3,1,0,1,1,1,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,1 +1,1,6,9147,0,1,139.0,1,19,12,4,4,125.0,1,0,1,1,1,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,1 +1,1,2,9254,0,1,136.0,1,1,1,9,4,123.4,1,0,1,1,1,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,5,9670,0,1,127.0,1,3,4,2,2,122.8,0,0,1,1,0,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,127.0,1,38,37,5,7,121.8,1,0,0,1,1,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,2 +1,39,1,9003,0,1,130.0,1,38,37,7,7,120.0,0,0,1,1,0,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,1 +1,1,2,9238,0,1,100.0,1,38,1,7,7,99.3,1,0,1,1,1,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9119,0,1,160.0,1,37,37,9,6,153.7,0,0,1,1,0,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,2 +1,17,4,9500,0,1,138.0,1,3,1,2,5,134.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,1 +1,17,4,9254,0,1,124.0,1,3,3,3,3,126.1,1,0,1,1,1,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,0 +2,7,1,9147,0,3,110.0,1,19,1,9,9,110.0,0,0,1,1,1,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,2 +1,1,1,9500,0,1,143.0,1,3,19,3,10,126.8,0,0,1,1,0,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,1 +1,17,2,9670,0,1,110.0,1,1,1,4,10,115.3,1,0,1,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,1 +1,51,1,9119,0,1,129.0,1,2,37,2,9,121.6,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,2 +1,15,1,9254,0,1,140.0,26,19,1,9,7,140.0,1,0,1,0,1,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,118.0,1,19,38,7,9,113.5,1,0,1,1,1,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,5,9853,0,1,110.0,1,19,37,7,7,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,2 +1,39,1,171,0,1,145.0,1,3,1,2,10,114.5,1,0,1,1,0,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,43,2,9670,0,1,125.0,1,38,19,4,3,106.6,1,0,1,1,1,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,0 +4,39,1,9500,0,19,133.1,1,37,37,5,7,100.0,0,0,1,0,1,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,133.0,1,1,1,9,9,119.7,1,1,0,1,0,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,1 +1,1,2,9853,0,1,134.0,1,1,38,9,8,122.5,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,120.0,1,19,37,3,9,100.0,0,0,1,1,1,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,37,37,6,6,100.0,0,0,0,0,0,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,160.0,1,38,38,6,6,160.0,1,0,1,1,1,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,19,133.1,1,37,37,9,7,116.0,0,0,1,1,1,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,1 +1,18,3,9500,0,1,145.0,1,1,1,4,8,133.6,1,0,1,1,1,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,3,19,2,3,124.5,0,0,1,1,1,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,125.0,1,19,38,9,8,118.3,0,0,1,1,0,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,0 +1,5,1,9085,0,1,150.0,1,1,1,4,4,139.4,0,0,1,1,1,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,2 +1,17,1,9773,0,1,133.1,1,38,38,9,5,117.0,0,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,2 +1,1,3,9500,0,1,142.0,1,1,1,4,7,131.0,1,0,1,1,1,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,1,19,3,3,154.3,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9147,0,1,135.0,1,37,38,9,9,128.0,1,0,0,1,1,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,149.0,1,37,37,9,9,138.0,0,0,1,1,0,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,38,9,9,129.2,1,0,1,1,1,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9556,0,1,147.0,1,3,4,3,2,100.0,0,0,1,1,1,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,2 +1,39,1,9085,0,12,133.1,1,37,37,10,9,144.0,0,0,1,1,0,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9254,0,1,100.0,1,3,19,3,5,115.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9670,0,1,140.0,1,1,1,4,3,133.4,0,0,1,1,0,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,2 +1,1,2,171,0,1,127.0,1,3,39,1,3,133.5,1,0,1,1,0,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9147,0,1,112.0,1,1,19,3,5,107.8,1,0,1,1,1,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,2 +2,39,1,9147,0,1,110.0,1,37,37,9,10,140.0,0,0,1,1,1,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,120.0,1,1,3,175,121,105.9,0,0,1,1,1,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,2 +1,1,1,9238,0,1,168.0,1,37,37,9,9,149.5,0,0,1,1,1,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,1 +1,17,1,8014,1,1,141.0,1,34,34,0,0,136.1,0,0,1,1,1,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,140.0,1,1,1,4,3,130.7,1,0,1,1,0,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,0 +1,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,134.0,1,1,37,8,7,120.5,1,0,1,1,0,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,160.0,1,1,38,4,7,141.5,1,0,1,1,0,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,122.0,1,38,37,191,195,112.9,1,0,1,1,1,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,41,1,1,9,7,163.1,1,0,1,0,1,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,1 +1,39,1,9500,0,1,110.0,1,1,37,9,9,126.0,1,0,1,1,0,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,2 +1,17,1,9670,0,1,109.0,1,1,1,4,4,108.0,0,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,131.0,2,37,1,9,3,126.1,1,0,1,1,0,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,1,2,9556,0,1,125.0,1,38,1,9,3,116.3,1,0,1,1,1,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,1 +1,17,1,9085,0,1,138.0,1,2,19,2,9,126.8,1,0,1,1,1,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,2 +1,1,5,9853,0,1,128.0,1,38,37,9,9,120.3,1,0,0,0,1,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,130.0,1,1,38,4,9,122.7,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,0 +1,39,1,9991,1,9,133.1,1,37,34,90,90,118.1,1,0,1,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,1,1,9085,0,1,125.0,1,1,19,4,9,114.5,1,0,1,1,1,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,1 +1,1,5,9773,0,1,138.0,1,19,19,9,9,139.4,1,0,1,1,1,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,125.0,1,19,38,3,5,115.9,0,0,1,1,1,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,1 +1,43,1,9500,0,1,134.0,1,38,19,5,8,120.7,0,0,1,1,1,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,133.1,41,3,1,3,10,100.0,1,0,1,0,1,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,0 +5,39,1,9003,0,1,133.1,1,37,37,9,7,110.0,0,0,0,0,1,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,0 +1,17,1,9254,0,1,128.0,1,19,1,5,7,120.7,1,0,0,1,1,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,162.0,1,19,19,4,7,152.9,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,51,1,9238,0,1,121.0,1,3,19,3,10,111.9,1,0,1,1,1,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,1 +1,39,2,9991,1,1,172.0,1,19,37,9,8,150.0,1,0,1,1,1,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,116.0,1,19,19,9,8,119.9,1,0,1,1,1,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,125.0,1,19,19,3,10,131.0,1,0,1,1,0,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,39,1,9500,0,4,150.0,1,3,38,3,7,127.0,1,0,1,1,0,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,128.0,1,38,38,9,9,129.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,120.0,1,3,19,4,5,115.5,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,38,38,9,6,160.0,1,0,1,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,130.0,1,3,1,2,9,130.0,1,0,1,1,1,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,140.0,1,1,19,4,8,124.6,1,0,1,1,1,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,150.0,1,3,3,2,2,150.0,1,0,1,1,1,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,1 +2,39,1,9853,0,1,133.1,1,37,19,9,5,138.3,0,0,1,1,1,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,0 +1,43,1,9991,1,1,150.0,1,3,3,4,4,100.0,1,0,1,1,0,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,1 +1,44,1,9238,0,1,150.0,1,1,38,4,9,145.9,0,0,1,1,1,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,1 +1,18,3,9500,0,1,131.0,1,19,1,4,7,127.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,1 +1,7,1,9085,0,3,150.0,1,19,37,90,90,140.0,0,0,1,1,0,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,167.0,1,19,19,9,7,156.2,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,140.0,1,1,3,4,5,130.0,0,0,1,1,0,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9238,0,1,132.0,1,1,19,4,9,127.1,1,0,1,1,1,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9119,0,1,133.0,1,3,1,3,4,121.8,1,0,1,1,0,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,2 +1,17,1,9670,0,1,133.1,1,1,37,4,5,150.0,0,0,1,1,0,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,150.0,103,37,37,9,9,134.6,0,0,1,1,0,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,1 +1,17,6,9773,0,1,131.0,1,34,34,0,0,129.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,139.0,1,3,1,4,1,126.0,1,0,1,1,0,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,0 +1,17,1,9670,0,1,138.0,1,1,1,4,8,123.0,0,0,0,0,0,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,2 +5,39,1,9853,0,19,133.1,1,37,37,9,8,118.0,0,0,1,1,1,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,142.0,1,37,38,9,9,137.3,1,0,1,1,1,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,136.0,1,3,38,2,9,125.7,1,0,1,1,1,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,1,1,4,10,128.3,1,0,1,1,1,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,132.0,1,1,37,4,9,127.1,0,0,1,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,122.0,1,19,19,7,7,116.1,1,0,1,1,1,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,1 +1,44,1,9085,0,1,140.0,1,1,2,3,3,140.0,0,0,1,1,1,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,2 +1,42,1,9853,0,12,133.1,1,1,3,3,2,133.7,0,0,1,1,1,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,0 +2,7,1,9500,0,3,120.0,1,37,19,9,7,120.0,1,0,1,1,1,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,2 +1,1,4,9238,0,1,134.0,1,38,19,7,7,128.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,130.0,1,19,38,4,7,121.3,1,0,1,1,1,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,1 +1,39,2,9238,0,1,110.0,1,19,1,5,5,136.5,0,0,1,1,0,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9670,0,1,133.1,1,38,19,9,8,122.9,0,0,0,0,0,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,124.0,1,19,1,9,3,123.7,1,0,1,1,1,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,17,1,9991,1,1,120.0,1,38,3,9,3,116.9,1,0,0,0,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,43,2,9147,0,1,160.0,1,37,37,9,9,96.0,0,0,1,0,1,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,154.0,1,19,37,9,7,140.4,1,0,1,1,1,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,2 +1,17,5,9070,0,1,125.0,1,19,1,5,5,122.6,1,0,1,1,0,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,2,9119,0,1,137.0,1,1,1,4,4,130.4,1,0,0,1,0,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,0 +1,1,1,9085,0,1,134.0,1,37,19,9,9,136.8,1,0,1,1,0,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,1 +1,39,1,9773,0,19,100.0,1,37,37,0,0,128.0,1,0,1,1,0,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +4,39,1,9130,0,19,133.1,1,37,38,9,4,100.9,0,0,1,1,0,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,127.0,1,1,19,5,7,130.5,1,0,1,1,1,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,1 +2,1,1,9003,0,1,131.0,1,19,38,5,5,118.4,0,0,1,1,1,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,142.0,1,1,38,5,7,127.7,0,0,1,1,1,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,130.0,1,1,38,4,9,115.0,0,0,1,1,0,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,100.0,0,0,1,1,1,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,1 +1,17,5,9773,0,1,134.0,1,1,19,9,5,121.8,1,0,1,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,1 +1,1,3,9853,0,1,122.0,1,1,3,5,3,113.6,0,0,1,1,1,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,114.0,1,37,37,7,8,116.7,0,0,1,1,0,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,130.0,1,3,1,3,3,120.5,0,0,1,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,148.0,1,19,19,4,5,143.5,0,0,1,1,1,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,19,9,9,107.0,0,0,1,0,0,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,130.0,1,3,19,5,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,39,1,9500,0,19,133.1,1,37,37,9,6,120.0,0,0,1,0,1,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,0 +1,1,2,9853,0,1,123.0,1,19,1,194,103,115.3,1,0,1,1,1,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,2 +1,18,1,9130,0,1,135.0,1,38,19,9,5,121.7,1,0,1,1,1,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,116.0,1,38,38,5,8,110.8,1,0,1,1,1,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,7,1,9147,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9991,1,1,133.1,41,37,37,9,8,114.7,0,0,1,1,1,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,122.0,1,37,37,9,7,120.6,1,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,150.0,1,5,5,2,2,146.2,0,0,1,1,1,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,0 +2,7,1,9147,0,3,130.0,1,1,4,3,10,130.0,0,0,1,1,1,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9085,0,19,110.0,1,37,37,90,90,110.0,0,0,1,0,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,140.0,1,1,1,9,9,136.9,1,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,44,1,9085,0,39,150.0,1,19,19,9,9,150.0,1,0,1,1,1,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,1 +2,43,1,9003,0,1,149.0,1,1,1,4,5,156.1,1,0,1,0,0,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9119,0,1,133.1,1,1,1,9,3,136.0,0,0,1,1,0,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,0 +1,16,2,9238,0,1,122.0,1,19,37,9,7,127.3,1,0,1,1,1,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,133.0,1,1,1,6,7,134.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,141.0,1,19,38,9,9,130.5,0,0,1,1,0,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,121.0,1,1,3,9,3,123.8,0,0,1,0,0,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,0 +1,44,1,9238,0,39,140.0,1,1,1,4,3,138.6,0,0,1,1,0,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,0 +1,1,1,9991,1,1,145.0,1,2,37,4,9,127.5,1,0,1,1,0,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,100.0,1,37,19,9,2,121.9,0,0,1,0,1,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,120.0,1,38,38,9,9,148.5,0,0,1,1,1,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +5,39,1,9991,1,1,110.0,1,1,1,3,3,119.0,0,0,1,1,0,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9254,0,1,137.0,1,1,38,2,8,122.3,1,0,1,1,0,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,42,1,9238,0,1,133.1,1,1,19,4,9,134.0,0,0,1,1,1,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,38,37,9,7,130.0,1,0,1,1,0,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,1 +5,7,1,9147,0,40,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,120.0,1,37,37,9,9,111.1,0,0,1,1,1,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,124.0,1,38,19,6,10,126.8,1,0,1,1,1,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,1 +2,1,1,9500,0,1,151.0,1,37,38,9,7,134.5,0,0,0,1,1,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,133.0,1,19,37,9,8,121.8,1,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,148.0,1,1,19,4,5,135.1,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,120.0,1,19,38,4,8,122.5,0,0,1,0,0,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,9070,0,1,140.0,1,37,37,9,10,118.0,0,0,0,1,0,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,3,133.1,1,9,9,90,90,130.0,0,0,1,1,1,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,150.0,1,34,34,0,0,108.0,0,0,1,1,1,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,1,150.0,1,1,38,3,5,120.0,0,0,1,1,0,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,2 +1,44,1,9085,0,39,150.0,1,38,1,5,5,150.0,0,0,1,1,1,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,2 +1,1,2,9238,0,1,133.1,1,19,19,9,9,106.0,1,0,1,1,1,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,102.0,1,38,38,9,9,99.6,1,0,1,1,1,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,140.0,1,38,19,9,5,130.0,0,0,0,1,1,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,2 +1,1,3,9773,0,1,138.0,1,3,1,2,3,135.9,1,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,1,9,4,150.0,1,0,1,1,0,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,0 +1,1,6,9147,0,1,127.0,1,1,19,1,6,120.0,1,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,0,0,1,1,0,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,137.0,1,38,38,4,8,126.5,1,0,1,1,1,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,1,19,4,4,132.6,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,130.0,1,1,1,4,9,150.0,0,0,1,1,0,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,146.0,1,3,1,1,3,149.2,1,0,1,1,1,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,129.0,1,38,38,6,6,118.5,1,0,1,1,1,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,131.0,1,19,3,3,2,126.1,1,0,1,1,1,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,2 +1,39,1,9085,0,43,160.0,1,3,39,2,3,172.0,0,0,1,1,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,39,1,9670,0,1,133.1,1,1,1,4,4,112.9,0,0,1,1,1,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,0 +2,39,1,9003,0,1,150.0,1,37,37,9,6,140.0,0,0,1,1,0,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,127.0,1,37,38,9,7,115.8,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,133.1,1,1,37,5,9,143.0,1,0,0,1,1,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,124.0,1,19,19,9,9,138.4,1,0,0,1,1,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,0 +1,1,1,9070,0,1,125.0,1,1,1,4,4,132.0,0,0,1,0,1,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,1,5,9130,0,1,160.0,1,3,1,2,9,150.2,1,0,1,1,1,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,1,110.0,1,37,37,9,4,160.0,0,0,1,1,1,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,135.0,1,19,37,5,7,121.4,0,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,2,9670,0,1,135.0,1,19,19,7,10,121.4,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,125.0,1,1,38,4,9,118.4,1,0,1,1,1,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,2 +1,1,6,9500,0,1,145.0,1,38,37,5,6,127.5,1,0,1,1,1,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,1 +1,43,3,171,0,1,140.0,1,37,38,7,7,143.4,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,134.0,1,37,19,9,10,141.4,1,0,1,1,1,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,130.0,1,29,38,9,8,122.0,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,109.0,1,19,19,4,9,104.1,1,0,0,0,1,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,116.0,1,34,34,0,0,127.0,1,0,1,1,0,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,3,8014,1,19,100.0,1,37,37,9,9,120.0,1,0,1,1,0,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9238,0,1,122.0,1,37,38,4,7,118.2,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,8014,1,1,100.0,1,12,5,9,4,116.5,0,0,0,0,1,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,122.0,1,19,19,193,194,112.6,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,42,3,9500,0,1,136.0,1,1,1,4,4,148.8,1,0,1,1,1,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,137.0,1,19,1,9,9,132.8,0,0,1,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,130.0,1,37,37,6,6,111.9,0,0,0,1,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9254,0,1,116.0,1,19,38,5,5,116.0,1,0,1,1,1,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,18,2,9500,0,1,131.0,1,1,3,3,2,121.2,1,0,1,1,1,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,141.0,1,1,19,3,3,131.9,1,0,1,1,1,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,120.0,1,37,37,9,10,122.6,0,0,1,1,1,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,0 +1,18,5,9119,0,1,136.0,1,3,2,2,3,125.2,1,0,1,1,0,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,125.0,1,19,1,7,4,122.6,0,0,1,1,0,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,139.0,1,19,37,9,9,131.5,1,0,1,1,1,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,1 +1,5,1,9853,0,1,119.0,1,1,38,5,8,118.3,1,0,1,1,1,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,2 +1,17,2,9773,0,1,125.0,1,1,38,5,6,115.9,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,126.0,1,1,19,4,8,120.1,1,0,1,1,1,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,1 +1,17,1,9085,0,1,125.0,1,1,37,4,9,117.0,1,0,1,1,1,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,135.0,1,19,38,7,5,121.0,0,0,1,1,1,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,138.0,1,38,37,3,3,133.1,0,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,148.0,1,19,37,9,5,130.9,0,0,1,0,0,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,145.0,1,12,1,4,10,139.8,1,0,1,1,1,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,118.0,1,37,37,3,5,110.0,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,51,1,9147,0,1,99.0,1,3,1,3,3,99.7,1,0,0,0,1,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,2 +1,17,2,9556,0,1,137.0,41,1,1,7,7,124.4,1,0,1,1,1,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,1 +1,17,3,9853,0,1,133.1,1,34,34,0,0,115.0,0,0,1,1,1,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,123.0,1,37,38,9,9,113.9,1,0,0,0,1,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,0 +1,1,4,9238,0,1,125.0,1,19,38,9,6,114.9,1,0,0,1,1,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,2 +1,18,1,8014,1,1,137.0,1,1,1,4,3,123.0,0,0,0,1,1,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,1 +1,43,1,8014,1,1,131.0,1,19,37,8,5,125.0,0,0,1,1,0,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9147,0,3,150.0,1,6,27,1,7,150.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,9,4,117.0,0,0,1,1,1,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,133.1,1,37,1,9,10,100.0,0,0,1,1,1,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,0 +1,1,3,9670,0,1,121.0,1,1,19,5,5,111.9,1,0,1,1,0,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,133.1,1,1,19,3,3,112.0,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,43,1,9991,1,1,140.0,1,1,1,6,6,100.0,0,0,1,1,0,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,1 +2,42,1,9556,0,1,110.0,1,37,37,9,6,140.0,0,0,1,1,0,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,130.0,1,1,1,4,4,124.8,0,0,1,1,1,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,138.0,1,38,37,9,6,126.8,1,0,1,1,0,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,1 +1,17,4,9773,0,1,127.0,1,2,37,9,9,115.8,1,0,0,0,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9085,0,1,170.0,1,1,1,4,5,166.6,0,0,0,0,1,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,130.0,1,1,1,4,4,130.0,1,1,1,1,0,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,3,1,2,8,100.0,1,0,1,1,0,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9670,0,1,106.0,1,3,1,2,3,105.7,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,43,1,9556,0,1,140.0,1,37,37,9,9,128.0,1,0,1,0,1,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,0 +1,1,1,9147,0,1,127.0,1,1,4,9,10,121.8,0,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,134.0,1,1,1,9,6,130.9,0,0,0,1,1,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,133.1,1,37,37,7,4,132.0,0,0,1,1,0,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,110.0,1,12,3,5,2,100.0,1,0,1,1,0,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,6,9238,0,1,113.0,1,1,38,194,163,112.3,1,0,0,1,1,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,118.0,1,19,19,5,7,121.2,0,0,1,1,0,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,51,1,9773,0,1,158.0,1,1,19,8,8,117.1,1,0,1,1,0,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,0 +1,17,1,9070,0,1,119.0,1,37,38,9,8,124.6,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,111.0,1,19,19,3,10,117.7,0,0,1,1,1,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,140.0,1,3,1,5,9,130.0,0,0,1,1,0,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,122.0,1,3,1,9,10,114.7,0,0,1,1,1,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,1 +2,39,1,9238,0,19,133.1,1,1,2,4,6,130.0,0,0,1,1,1,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,2 +1,17,2,9500,0,1,131.0,1,38,1,5,7,118.4,1,0,1,1,1,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,0 +1,43,5,9853,0,1,150.0,1,34,34,0,0,150.2,1,0,1,0,1,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,140.0,1,37,19,9,9,166.0,1,0,0,1,0,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9085,0,1,133.1,1,19,37,9,6,130.0,1,0,1,1,1,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,1 +1,1,4,9147,0,1,120.0,1,38,38,5,10,111.3,0,0,1,1,0,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,2 +1,1,5,9500,0,1,125.0,1,3,19,4,8,120.3,1,0,1,1,1,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,2 +1,17,2,9556,0,1,136.0,1,1,1,9,9,128.3,0,0,1,1,1,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,133.1,1,38,19,5,5,128.0,0,0,1,1,1,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,9,133.1,1,37,37,5,3,110.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9254,0,1,118.0,1,19,1,4,4,115.9,1,0,1,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,134.0,1,19,37,7,7,136.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,130.0,1,37,37,9,7,119.9,0,0,1,1,1,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9773,0,1,153.0,1,34,34,99,99,133.1,1,0,0,1,1,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,10,133.1,1,12,36,90,90,128.2,0,0,1,0,0,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,1,9991,1,1,112.0,1,43,40,2,2,106.4,0,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,122.0,1,3,3,2,2,122.0,1,0,1,1,1,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,137.0,1,1,19,4,3,121.3,1,0,1,1,0,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,1 +1,39,1,9085,0,19,133.1,1,3,1,2,5,103.0,0,0,1,1,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,136.0,1,1,19,9,9,131.5,0,0,1,1,1,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,154.0,1,1,3,4,2,164.9,0,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,1 +1,17,6,9147,0,1,129.0,1,19,1,9,4,122.0,1,0,1,1,0,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,132.0,1,19,19,9,7,128.0,1,0,1,1,0,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,1 +2,39,1,9773,0,19,133.1,1,19,19,9,4,131.0,0,0,0,0,0,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,0 +4,39,1,8014,1,1,160.0,1,37,37,5,5,126.0,0,0,1,1,1,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,1 +1,16,2,9238,0,1,126.0,1,38,37,3,5,127.1,1,0,1,1,1,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,1 +1,1,2,9254,0,1,111.0,1,1,19,5,7,109.3,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,1 +1,17,2,9556,0,1,133.1,1,37,37,3,10,108.0,0,0,1,1,1,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,1 +1,1,4,9773,0,1,140.0,22,1,37,3,9,130.5,1,0,1,1,1,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,1 +1,7,1,9500,0,3,140.0,1,1,1,9,5,140.0,0,0,1,1,1,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,0 +1,17,3,9670,0,1,125.0,1,1,3,4,3,117.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,150.0,1,37,38,9,9,131.5,1,0,1,1,1,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,5,100.0,0,0,1,0,0,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9773,0,1,133.0,1,19,19,7,7,134.4,1,0,1,1,0,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,135.0,1,19,37,9,9,128.0,1,0,1,1,1,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,5,9670,0,1,115.0,1,1,19,5,5,117.1,0,0,1,1,1,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,2 +1,51,1,9003,0,39,130.0,1,1,19,4,4,120.0,1,0,0,0,0,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,0 +1,1,3,9773,0,1,117.0,1,38,19,7,7,110.4,1,0,0,0,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9773,0,1,127.0,1,19,38,8,3,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,38,37,1,1,115.0,1,0,1,1,1,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,2 +1,18,2,9853,0,1,123.0,1,1,3,9,2,123.7,1,0,0,0,1,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,0 +1,1,3,9853,0,1,122.0,1,3,3,2,2,112.6,1,0,1,1,1,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,17,3,9254,0,1,127.0,1,37,37,9,6,123.5,1,0,1,1,1,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,141.0,1,37,37,9,9,136.3,1,0,1,1,0,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,1 +1,1,1,9773,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,17,2,9254,0,1,140.0,1,3,3,2,2,124.3,0,0,1,0,0,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,125.0,1,1,3,4,1,121.9,1,0,1,1,0,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,0 +1,17,1,9070,0,1,134.0,1,1,1,5,0,133.3,1,0,1,1,0,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9670,0,1,127.0,22,37,37,9,9,127.0,1,0,1,1,0,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,1 +1,42,1,9853,0,1,120.0,1,37,38,3,3,113.7,0,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,0 +1,1,3,9670,0,1,121.0,1,3,19,2,8,122.4,1,0,1,1,0,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,2 +1,1,3,171,0,1,139.0,1,19,19,5,3,128.2,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,42,1,9085,0,1,100.0,1,1,38,4,9,100.0,1,0,1,1,1,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,10,1,9500,0,1,140.0,24,3,3,2,9,140.0,1,0,0,0,1,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,0 +1,1,1,9773,0,1,132.0,1,37,19,9,9,131.0,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,124.0,1,1,1,4,4,127.9,1,0,1,1,0,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,2 +5,39,1,9119,0,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,2 +1,17,1,9773,0,1,117.0,1,38,38,9,9,111.1,0,0,0,1,0,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,19,133.1,1,19,37,9,9,149.4,0,0,1,0,0,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,1,1,161.9,0,0,1,1,0,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9147,0,1,140.0,1,38,37,4,7,130.0,1,0,1,0,1,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,43,1,171,0,1,145.0,1,19,38,9,9,100.0,0,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9773,0,1,120.0,1,37,38,9,3,155.5,0,0,1,1,0,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,121.8,0,0,1,0,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,7,1,9130,0,3,140.0,1,5,4,2,0,140.0,0,0,0,0,1,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,0 +1,51,1,171,0,1,128.0,1,2,1,3,3,131.2,1,0,1,1,0,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,1 +2,39,1,8014,1,12,110.0,1,37,37,7,9,120.0,0,0,1,1,1,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,150.0,1,2,3,3,2,140.8,0,0,1,1,1,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,2 +1,43,1,9070,0,1,125.0,1,19,19,7,8,133.4,1,0,1,1,0,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,2 +1,1,5,171,0,1,160.0,1,1,1,4,4,139.7,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,1,120.0,1,1,38,9,9,150.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,154.0,1,19,19,3,3,142.0,0,0,1,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9254,0,1,110.0,1,4,19,4,3,114.8,1,0,1,0,0,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9119,0,1,140.0,1,34,34,9,9,140.0,0,0,1,0,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,125.0,1,1,1,4,2,134.1,1,0,1,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,7,1,9254,0,40,130.0,1,1,1,3,6,130.0,0,0,1,1,1,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9254,0,1,122.0,1,37,37,9,3,124.5,1,0,1,1,1,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,130.0,1,1,3,9,2,128.6,1,0,1,1,1,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,1 +1,17,4,9670,0,1,122.0,1,3,1,2,3,119.6,1,0,1,1,0,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,1 +1,44,3,9085,0,39,150.0,1,1,19,4,1,150.0,1,0,1,1,1,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,19,37,9,9,130.0,1,0,1,1,0,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,133.1,1,38,19,4,7,98.0,1,0,1,1,0,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,2 +1,17,2,9556,0,1,125.0,1,38,19,7,7,121.5,1,0,1,1,1,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,0 +2,1,4,9500,0,1,143.0,1,38,38,5,5,128.7,1,0,1,1,1,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,1,100.0,1,1,19,4,8,122.0,0,0,1,1,1,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,1 +1,51,1,9500,0,1,170.0,1,1,1,4,10,125.0,0,0,1,1,0,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,1 +1,18,4,9500,0,1,137.0,1,3,1,3,4,126.7,1,0,1,1,1,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,19,133.1,1,38,38,9,8,106.0,1,0,1,1,0,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,1 +1,39,1,9991,1,40,130.0,1,19,1,3,4,152.0,1,0,1,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9085,0,39,140.0,1,1,39,3,9,140.0,1,0,1,1,1,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,2 +1,17,2,9773,0,1,133.1,1,3,1,4,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +2,43,1,9853,0,1,110.0,1,37,37,7,7,100.0,0,0,1,1,0,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,1 +1,7,1,9119,0,3,120.0,1,19,19,1,1,120.0,0,0,1,0,0,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,1,130.0,1,34,34,99,99,114.8,0,0,1,1,1,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,1 +2,39,1,8014,1,1,140.0,1,37,3,9,10,172.0,0,0,1,1,0,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,2 +1,17,2,9670,0,1,123.0,1,34,37,0,0,114.6,1,0,0,0,1,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,0 +1,43,2,9500,0,1,136.0,1,19,1,9,10,124.1,0,0,1,1,0,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,116.0,1,1,1,1,1,110.8,1,0,1,1,1,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,1 +1,39,1,9003,0,1,133.1,1,37,37,4,7,130.0,0,0,0,0,0,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,0 +1,1,3,9085,0,1,158.0,1,1,19,9,9,153.6,1,0,1,1,1,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,1 +1,17,4,9773,0,1,121.0,1,1,19,9,8,120.3,1,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,5,3,9085,0,1,141.0,1,1,19,7,5,128.8,1,0,1,1,1,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,2 +1,18,4,9556,0,1,127.0,1,1,38,4,7,121.8,1,0,1,1,1,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,37,37,9,9,109.0,1,0,1,1,1,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,110.0,1,34,34,0,0,114.6,1,0,1,1,1,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9085,0,1,128.0,1,38,19,8,8,117.2,0,0,1,1,0,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,143.0,1,1,38,3,3,133.2,1,0,1,1,1,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,1 +1,1,4,9853,0,1,134.0,1,19,1,5,9,127.4,1,0,1,1,1,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,2 +1,1,1,9670,0,1,133.1,1,3,1,1,7,155.0,0,0,1,1,1,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,114.0,1,19,38,9,7,129.1,0,0,1,1,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,149.0,1,19,37,7,4,134.3,0,1,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,130.0,1,1,38,3,5,128.6,1,0,1,1,0,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,1 +1,42,1,9147,0,1,139.0,1,3,38,2,5,112.3,1,0,1,1,1,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,2 +1,1,3,9773,0,1,130.0,1,19,19,9,9,123.0,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,43,1,9500,0,1,130.0,1,38,38,9,5,100.0,0,0,1,1,1,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,2 +6,39,1,8014,1,1,133.1,1,37,1,9,7,114.8,0,0,1,1,1,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,121.0,1,1,38,4,9,114.4,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,18,1,9238,0,1,122.0,1,38,38,9,7,114.7,0,0,0,1,1,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,1 +1,17,2,9773,0,1,120.0,1,1,1,2,5,127.0,1,0,1,0,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,39,120.0,1,4,1,2,8,120.0,0,0,1,1,0,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,1 +1,17,3,9500,0,1,143.0,1,38,1,9,5,133.8,1,0,1,1,1,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,130.0,1,1,19,9,7,133.8,0,0,0,1,1,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,1 +2,39,1,9556,0,1,100.0,1,37,37,9,9,120.0,0,0,1,1,1,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,133.1,1,1,19,5,4,102.5,0,0,1,1,1,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9003,0,1,111.0,1,1,3,4,2,162.4,0,0,0,0,0,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,133.1,1,19,1,9,3,107.0,1,0,1,1,1,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,128.0,1,19,1,4,4,124.3,1,0,1,1,0,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,140.0,1,36,14,9,10,130.0,1,0,1,1,0,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,150.0,1,38,19,7,10,134.6,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9070,0,1,134.0,1,34,1,5,7,129.8,1,0,1,1,1,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,150.0,1,37,37,9,3,150.0,1,0,1,1,0,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,0 +2,39,1,9238,0,1,126.6,1,38,38,9,7,107.5,0,0,0,1,1,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,120.0,1,37,37,9,7,106.8,0,0,1,1,1,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,1,9254,0,1,117.0,1,1,1,5,5,116.3,1,0,1,1,0,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,130.0,1,19,19,5,5,157.0,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9556,0,1,133.1,1,44,40,2,2,115.5,0,0,1,1,1,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,133.1,1,3,1,2,4,125.0,0,0,1,1,0,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,2 +2,39,1,9003,0,1,133.1,1,37,37,9,9,100.0,0,0,1,0,0,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,0 +1,17,2,9500,0,1,141.0,1,37,1,9,4,127.3,1,0,1,1,1,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,117.0,1,38,38,175,183,113.2,1,0,0,1,1,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,133.1,1,37,37,7,7,124.5,0,0,1,0,0,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,0 +1,17,2,9070,0,1,133.1,1,37,38,9,10,178.0,1,0,1,1,0,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,120.0,1,19,19,9,9,115.0,1,0,1,1,0,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9853,0,1,146.0,1,1,1,3,4,128.2,0,0,0,1,1,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,2 +1,17,4,9070,0,1,128.0,1,1,1,9,10,136.1,1,0,0,0,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,0 +5,39,1,9500,0,3,140.0,1,37,38,9,9,160.0,0,0,1,1,1,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,1 +1,39,1,8014,1,1,133.1,1,37,37,9,8,121.0,0,0,0,0,1,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,0 +1,43,1,9130,0,1,140.0,1,2,1,2,3,140.0,1,0,1,1,1,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,1 +1,1,3,9670,0,1,126.0,1,37,37,0,0,136.5,1,0,1,1,1,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,1 +1,17,4,9238,0,1,140.0,1,19,37,9,9,130.2,1,0,1,1,1,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,142.0,1,1,3,1,2,133.0,0,0,1,1,1,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,136.0,1,19,38,9,9,121.7,1,0,1,1,0,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,17,4,9085,0,1,106.0,1,37,1,3,9,106.0,0,0,1,1,1,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,2 +1,1,3,9500,0,1,135.0,1,1,37,7,7,120.5,1,0,1,1,1,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,115.0,1,19,19,7,7,115.0,1,0,1,1,1,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9238,0,1,160.0,1,38,1,9,3,124.0,0,0,0,1,0,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,2 +1,1,1,9500,0,1,129.0,1,38,38,5,5,120.8,1,0,1,1,1,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,160.0,41,37,19,9,9,160.0,0,0,1,1,1,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,132.0,1,1,19,7,5,129.9,1,0,1,1,0,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,136.0,1,37,38,9,8,139.2,1,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,127.0,1,19,37,9,7,121.3,1,0,1,1,1,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,1 +1,1,1,9119,0,1,142.0,1,1,38,4,3,129.8,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,133.1,1,37,37,5,8,133.2,0,0,1,0,0,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,0 +1,1,1,9147,0,1,150.0,1,1,19,5,5,137.8,1,0,1,1,0,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,135.0,1,3,1,2,4,129.8,1,0,1,1,0,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,1 +1,43,2,9773,0,1,132.0,1,19,19,0,0,127.1,0,0,1,1,0,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,1 +1,17,3,9500,0,1,140.0,1,3,2,3,3,126.4,1,0,1,1,1,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,0 +2,39,2,9119,0,19,133.1,1,37,37,7,7,118.0,0,0,1,0,0,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,110.0,1,3,4,2,2,110.0,1,0,1,1,0,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,0 +2,39,1,9500,0,38,133.1,1,37,37,9,3,146.6,0,0,1,1,0,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,146.0,1,1,3,4,1,135.2,1,0,1,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,3,5,2,2,135.8,0,0,0,1,0,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,0 +2,39,1,9773,0,19,100.0,1,37,37,0,0,163.5,0,0,0,0,0,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,124.0,1,19,19,9,7,113.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,143.0,1,3,3,9,7,129.0,1,0,1,1,0,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,1 +1,1,2,9853,0,1,117.0,1,1,38,4,9,109.7,1,0,1,1,1,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,2 +1,7,1,9130,0,2,133.1,6,42,1,4,9,100.0,0,0,1,1,0,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,115.8,0,0,0,0,0,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,0 +1,18,1,9773,0,1,167.0,1,38,38,6,7,153.0,1,0,1,1,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,51,1,9238,0,1,141.0,1,1,1,5,9,125.0,0,0,1,1,0,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,17,4,9500,0,1,132.0,1,38,19,5,7,125.5,0,0,1,1,1,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,1 +1,1,1,9119,0,1,132.0,1,1,12,3,3,133.1,1,0,1,1,0,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,149.0,1,1,1,4,4,129.3,1,0,1,1,0,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,1 +2,39,1,9147,0,1,130.0,1,37,37,9,9,142.5,0,0,1,1,1,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,2 +1,1,6,9773,0,1,133.1,1,1,37,3,3,100.0,1,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,138.0,1,37,37,9,6,145.0,1,0,1,1,1,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,19,19,3,6,124.3,1,0,1,1,1,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,135.0,1,37,37,9,7,132.6,1,0,1,1,1,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,159.0,1,34,26,0,6,160.1,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,1 +2,39,1,8014,1,1,133.1,1,37,37,6,8,100.0,0,0,0,1,1,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9070,0,1,153.0,1,3,3,1,2,146.7,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,1 +1,43,1,171,0,2,140.0,1,37,37,9,9,140.0,1,0,1,1,1,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,141.0,1,19,19,9,8,142.8,0,0,1,1,1,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,1 +1,39,2,9556,0,1,130.0,1,19,19,4,5,100.0,0,0,1,1,0,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,120.0,1,38,19,3,5,120.0,0,0,1,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,2 +1,39,2,9147,0,1,120.0,1,37,37,9,9,104.0,0,0,1,0,0,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9085,0,1,150.0,1,38,38,9,9,132.0,1,0,1,1,1,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,142.0,1,38,38,9,9,132.9,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9085,0,1,160.0,1,4,19,2,5,162.1,1,0,1,1,1,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,141.0,1,37,37,9,8,130.2,1,0,1,1,1,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,118.0,1,1,1,9,9,111.0,0,0,1,0,0,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,119.0,1,37,37,10,6,119.7,1,0,1,1,1,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,2 +1,17,2,171,0,1,137.0,1,1,1,4,1,143.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,18,3,9085,0,1,149.0,103,1,1,9,9,132.2,1,0,1,1,1,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,130.0,1,37,37,90,90,125.1,0,0,1,1,1,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,1 +4,17,5,8014,1,1,100.0,1,19,19,90,90,107.0,0,0,1,1,1,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,19,133.1,1,38,19,9,10,142.7,0,0,0,1,0,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,139.0,1,19,37,5,5,125.5,0,0,1,1,1,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,133.0,1,4,1,5,5,131.6,0,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,148.0,1,19,19,9,3,125.0,1,0,1,1,1,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,110.0,1,37,37,9,9,110.3,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,53,1,9003,0,42,130.0,1,38,38,9,9,130.0,1,0,0,1,0,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,2 +1,1,4,9070,0,1,140.0,1,4,19,2,10,125.0,1,0,1,1,0,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,2 +1,42,1,9003,0,39,140.0,1,19,1,5,5,140.0,0,0,1,1,1,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,2 +1,1,4,9070,0,1,136.0,1,37,37,9,8,136.7,1,0,1,1,1,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,1,5,9773,0,1,125.0,1,37,3,5,2,126.1,1,0,1,1,0,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,8014,1,1,126.0,1,37,38,9,10,119.4,0,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,123.0,1,1,3,2,2,118.8,0,0,1,1,0,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,2 +1,1,6,9500,0,1,144.0,1,1,37,9,9,127.5,1,0,1,1,1,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,1 +1,43,1,9070,0,1,125.0,1,38,37,8,7,131.7,1,0,1,1,0,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,144.0,1,37,37,8,8,138.4,0,0,1,1,1,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,160.0,1,37,37,3,4,97.0,0,0,1,1,1,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9853,0,1,119.0,1,37,38,9,9,125.0,1,0,1,1,1,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,117.0,1,37,37,9,9,109.3,0,0,1,0,1,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,3,130.0,1,37,37,9,9,146.2,0,0,1,1,1,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,150.0,1,37,37,9,9,130.3,0,0,1,1,1,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,1 +2,39,2,8014,1,19,100.0,1,37,37,4,7,100.0,0,0,0,1,1,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,39,1,8014,1,38,133.1,1,38,37,4,8,95.5,0,0,1,1,0,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,120.7,0,0,1,1,1,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,1 +1,39,1,9119,0,19,120.0,1,37,37,9,4,98.6,0,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9130,0,1,120.0,1,19,37,1,9,116.1,1,0,1,1,0,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9500,0,1,136.0,1,1,1,4,9,128.5,1,0,1,1,1,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,132.0,1,38,37,7,7,131.3,1,0,1,1,1,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,2 +1,1,2,9500,0,1,115.0,1,38,38,9,8,108.4,1,0,1,1,1,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,120.0,1,37,37,9,9,98.7,0,0,1,1,0,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,120.0,1,37,37,9,9,155.8,0,0,1,1,0,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,151.0,1,19,1,5,0,144.4,1,0,1,1,1,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,1 +1,43,2,9147,0,1,131.0,1,19,37,5,9,123.7,1,0,1,1,1,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,2 +1,17,4,9085,0,1,128.0,1,38,37,4,9,117.9,1,0,1,1,1,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,1 +1,43,1,8014,1,12,133.1,1,37,1,9,10,112.5,0,0,1,1,0,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,0 +1,39,1,9085,0,19,133.1,1,37,37,4,8,140.0,0,0,1,1,1,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,7,1,9147,0,2,150.0,1,3,37,2,5,150.0,1,0,0,0,1,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,18,2,9147,0,1,102.0,1,37,38,191,143,101.7,1,0,1,1,1,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,128.0,1,19,1,4,1,118.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,0 +2,39,1,8014,1,1,133.1,1,19,1,4,8,144.3,0,0,1,1,0,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,1 +1,1,5,9254,0,1,128.0,1,19,1,7,10,116.5,1,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,140.0,1,19,19,7,5,135.1,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,1 +1,18,2,9500,0,1,129.0,1,38,37,5,5,119.0,1,0,1,1,1,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,140.0,1,3,1,3,3,131.5,1,0,1,1,1,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,143.0,1,3,3,2,5,144.8,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,127.0,1,37,37,9,8,123.2,1,0,1,1,1,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,2 +1,43,1,9500,0,1,125.0,1,37,37,9,7,123.6,1,0,1,1,1,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,138.0,1,1,38,3,9,123.0,1,0,1,1,1,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,139.0,1,38,38,9,9,145.0,1,0,1,1,1,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,121.0,1,37,19,6,7,116.8,1,0,1,1,1,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,2,9085,0,1,123.0,1,1,19,4,9,113.6,1,0,1,1,1,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,2 +1,17,6,9773,0,1,126.0,1,1,19,5,5,119.0,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,4,9119,0,1,139.0,1,37,19,9,4,133.1,1,0,1,1,0,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,2 +1,1,1,9147,0,1,158.0,1,1,38,3,6,155.2,0,0,1,1,0,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,1 +1,17,2,8014,1,1,133.1,1,19,1,1,1,118.0,0,0,1,1,1,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,136.0,1,22,30,0,8,135.7,1,0,1,1,1,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,120.0,1,37,37,9,9,110.0,0,0,1,0,0,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,124.0,1,19,19,7,9,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,2 +5,7,1,9991,1,2,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,1 +1,1,4,9238,0,1,123.0,1,38,1,4,10,129.0,1,0,1,1,1,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,17,4,9119,0,1,135.0,1,38,37,5,7,126.6,1,0,1,1,0,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,2 +1,1,3,9070,0,1,129.0,1,5,3,5,7,124.8,1,0,1,1,1,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,1 +1,17,5,9147,0,1,127.0,1,1,38,4,5,124.6,1,0,1,1,1,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,135.0,1,1,1,4,4,118.5,0,0,1,1,1,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,171,0,1,142.0,1,3,1,2,6,139.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +5,39,1,9147,0,1,133.1,1,19,19,9,9,119.8,0,0,1,1,0,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,123.0,1,1,37,9,9,132.1,0,0,1,1,1,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,1 +1,43,1,9853,0,1,115.0,1,3,37,2,5,108.7,1,0,1,1,1,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,12,133.1,1,37,34,90,90,110.7,1,0,1,1,1,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,155.0,1,4,3,1,1,144.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,4,9254,0,1,105.0,1,1,19,9,6,106.1,1,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,150.0,1,19,19,3,4,135.0,0,0,1,1,1,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,152.0,1,37,37,5,7,136.3,0,0,1,1,1,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,34,34,0,0,120.5,1,0,1,1,0,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,140.0,1,1,37,4,5,123.6,1,0,1,1,1,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,120.0,1,37,37,9,9,150.1,1,0,1,1,0,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,144.0,1,37,38,9,9,126.9,0,0,1,1,1,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,120.0,1,37,37,9,9,128.2,0,0,1,0,0,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,0 +1,18,2,9147,0,1,115.0,1,1,37,5,5,108.7,1,0,1,1,1,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,140.0,1,19,19,4,4,140.0,1,0,1,0,0,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,1,1,3,7,140.0,1,0,1,1,1,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9500,0,1,129.0,1,19,19,5,5,119.6,1,0,1,1,1,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,1 +1,17,6,9773,0,1,141.0,1,37,37,5,5,127.7,1,0,1,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,137.0,1,19,37,4,7,126.3,1,0,1,1,1,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,1 +2,39,1,9003,0,1,168.0,1,1,41,9,3,153.9,0,0,0,0,0,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,133.0,1,37,37,9,9,121.8,1,0,1,1,1,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,119.0,1,2,1,4,3,113.1,1,0,1,1,1,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,43,1,9147,0,1,142.0,1,38,19,141,171,115.0,0,0,1,1,1,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,2 +1,17,4,9773,0,1,138.0,1,37,19,5,7,133.5,1,0,1,0,1,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +2,7,1,8014,1,3,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,133.0,1,3,19,2,5,130.8,1,0,1,1,1,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,137.0,1,38,19,152,171,131.1,1,0,1,1,1,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,3,9119,0,1,130.0,1,1,38,3,3,129.3,0,0,1,1,0,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,1 +1,43,1,9773,0,1,126.0,1,1,37,3,0,110.0,0,0,0,1,1,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,116.0,1,1,12,5,8,110.4,1,0,1,1,0,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,1,1,4,10,110.0,0,0,0,1,1,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,17,5,9238,0,1,134.0,1,38,37,9,9,126.0,0,0,0,0,1,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,0 +2,39,1,9147,0,1,130.0,1,1,19,9,9,109.9,0,0,1,0,1,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9085,0,1,133.1,41,37,37,9,9,109.6,0,0,1,1,1,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,0 +1,44,1,9003,0,39,140.0,1,37,37,9,1,140.0,0,0,1,1,0,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,2 +2,39,1,9991,1,19,133.1,1,38,38,90,90,121.7,1,0,1,1,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,143.0,1,1,3,4,7,129.7,1,0,1,1,1,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,133.0,1,1,19,9,6,121.5,1,0,1,1,1,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,1 +1,17,1,9003,0,1,133.0,1,38,37,9,9,125.3,1,0,1,1,1,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,1 +1,42,1,9991,1,1,160.0,1,1,2,4,3,120.0,0,0,1,1,1,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,1 +2,39,2,9556,0,1,133.1,105,1,3,9,2,152.8,1,0,1,1,1,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,123.0,1,1,1,4,6,118.8,1,0,1,1,1,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9853,0,1,122.0,1,3,19,2,3,112.9,0,0,1,1,1,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,1 +1,1,5,9853,0,1,123.0,1,1,12,4,9,113.2,1,0,1,1,1,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,140.0,1,37,37,9,9,141.5,1,0,0,0,1,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,129.0,1,19,19,4,8,127.3,1,0,1,1,1,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,1 +1,39,1,9085,0,1,130.0,1,37,37,6,6,110.0,0,0,1,1,1,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,2 +4,39,1,8014,1,19,133.1,1,37,37,9,9,95.0,0,0,0,0,1,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9853,0,1,127.0,1,37,19,9,8,137.5,1,0,1,1,1,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,1 +1,1,5,9500,0,1,142.0,1,38,37,5,7,128.8,1,0,1,1,1,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,1 +1,17,2,9147,0,1,142.0,1,19,19,4,8,127.3,0,0,1,1,1,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +3,39,1,9991,1,1,120.0,1,37,1,9,2,170.0,0,0,1,1,0,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,138.0,1,19,37,4,9,141.0,0,0,1,1,0,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,132.0,1,1,38,9,9,120.1,1,0,1,1,0,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,140.0,1,1,1,2,7,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,121.0,1,37,19,9,10,113.7,0,0,1,1,1,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,2 +1,39,1,8014,1,38,133.1,1,1,1,4,4,107.5,0,0,0,0,0,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,150.0,1,1,1,5,1,155.6,0,0,1,1,1,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,150.0,1,37,37,9,6,131.1,0,0,1,1,1,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,100.0,1,3,19,1,1,117.9,0,0,1,0,0,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,39,2,9991,1,1,150.0,1,37,37,9,9,120.0,0,0,1,1,1,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,150.0,1,1,38,4,9,150.0,0,0,1,1,0,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,2 +2,43,1,9130,0,9,133.1,1,34,34,0,0,128.2,0,0,1,1,0,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,141.0,1,1,1,90,3,127.8,0,0,1,1,1,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,0 +1,1,1,9070,0,1,116.0,1,3,3,0,1,108.7,1,0,1,1,0,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,0 +2,39,1,9500,0,1,140.0,1,19,19,9,7,110.5,0,0,1,1,1,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9254,0,19,133.1,1,34,34,0,0,120.0,0,0,0,0,0,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,1,133.1,1,37,37,191,172,115.2,0,0,1,1,1,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,37,38,9,6,160.0,0,0,1,1,1,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,133.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9556,0,1,131.0,1,19,38,9,7,128.5,0,0,1,1,1,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,160.0,1,37,38,9,7,161.0,1,0,1,1,1,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,136.0,1,3,3,1,2,152.5,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9853,0,1,114.0,1,19,37,5,5,109.5,1,0,1,1,1,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,150.0,1,37,37,9,7,122.5,0,0,1,1,0,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,0 +1,44,1,9991,1,39,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,2 +1,51,1,8014,1,42,140.0,1,19,37,134,193,138.0,1,0,0,1,1,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,127.0,1,2,19,3,9,121.5,0,0,1,1,0,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,133.1,1,19,19,3,3,125.3,0,1,1,1,0,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,4,9670,0,1,125.0,1,4,19,2,5,118.0,1,0,1,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,1 +2,42,1,9070,0,1,170.0,1,37,25,0,4,148.5,0,0,1,1,0,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,0 +1,17,5,9254,0,1,121.0,1,1,19,4,7,116.5,1,0,1,0,0,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,120.0,1,19,38,5,9,130.2,0,0,1,1,1,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,140.0,1,19,37,9,9,140.7,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,140.0,1,19,19,5,9,131.3,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,42,1,9119,0,1,140.0,1,3,3,3,2,133.6,1,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,8014,1,1,150.0,1,19,2,4,6,148.0,0,0,1,1,1,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,127.0,1,37,2,9,4,123.2,1,0,1,1,1,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,119.0,1,19,37,9,9,119.4,1,0,1,1,1,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,132.0,1,2,1,4,1,127.8,0,0,1,1,0,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,0 +1,42,1,9119,0,1,136.0,1,1,37,5,5,117.5,0,0,1,1,0,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,2 +1,1,1,9991,1,1,122.0,1,37,37,9,3,113.6,0,0,1,1,0,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,19,19,5,6,137.4,0,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,2 +1,17,1,9238,0,1,128.0,1,19,19,5,4,116.5,0,0,1,1,1,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,139.0,1,1,38,6,6,143.6,1,0,0,1,0,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9130,0,1,154.0,1,3,3,2,2,137.2,1,0,0,1,0,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,0 +1,17,6,9500,0,1,142.0,1,19,37,4,9,131.9,1,0,1,1,1,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,0 +1,1,2,9773,0,1,131.0,1,19,37,9,10,121.9,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +2,7,1,9130,0,3,120.0,1,3,3,1,1,128.2,0,0,1,1,1,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,19,133.1,1,37,37,9,9,150.3,0,0,1,1,1,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,125.0,1,37,37,5,5,124.0,0,0,1,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,135.0,1,37,19,9,9,125.2,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,135.0,1,19,19,9,9,124.5,0,0,1,1,1,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,175.0,1,3,38,2,10,157.5,1,0,1,1,1,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,139.0,1,1,1,4,10,140.7,0,0,1,1,0,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,0 +1,1,4,9500,0,1,128.0,1,1,1,4,10,125.2,1,0,1,1,0,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,150.0,1,1,37,1,1,131.5,1,0,1,1,1,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,168.0,1,38,1,9,10,166.0,1,0,1,1,1,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,1 +1,51,1,9070,0,1,125.0,1,42,3,125,124,130.0,1,0,1,1,0,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,135.0,1,1,38,4,5,127.5,1,0,1,1,1,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,1 +1,18,1,9119,0,1,148.0,1,3,19,3,5,147.7,0,0,1,1,0,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9773,0,1,130.0,109,19,1,9,9,126.9,1,0,1,1,1,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,125.0,1,19,38,3,7,114.9,0,0,1,1,1,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,1 +1,7,1,9119,0,3,130.0,1,37,37,9,9,130.0,0,0,1,0,0,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9853,0,1,130.0,1,37,19,7,3,140.0,0,0,0,1,1,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,112.0,1,3,1,3,5,111.0,0,0,1,1,1,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,37,38,193,181,125.9,0,0,1,1,1,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,1 +1,42,1,9119,0,1,120.0,1,34,34,0,0,128.2,1,0,1,1,0,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,19,133.1,1,37,37,9,9,117.2,0,0,1,1,1,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9147,0,1,131.0,1,19,38,9,7,132.4,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,2 +5,39,1,9003,0,1,180.0,1,1,1,4,8,179.6,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,1,5,9119,0,1,135.0,1,37,37,90,90,122.1,1,0,1,1,0,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,133.0,1,1,38,5,10,131.3,1,0,1,1,1,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,2 +1,18,1,9500,0,1,126.0,1,37,19,5,5,119.3,0,0,1,1,1,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,110.0,1,19,37,9,6,120.0,0,0,0,0,0,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9556,0,1,130.0,1,37,37,9,9,159.0,1,0,1,1,1,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,2 +1,17,1,9070,0,1,141.0,1,19,38,4,5,133.7,1,0,1,1,0,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,150.0,1,1,37,4,6,120.0,0,0,1,1,0,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,17,2,9085,0,1,123.0,1,3,19,2,9,118.9,0,0,1,1,0,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,17,1,9991,1,1,140.0,1,38,37,6,7,127.3,0,0,1,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,151.0,1,3,1,2,1,129.8,1,0,1,1,0,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,1 +1,43,1,8014,1,1,113.0,1,37,37,0,6,128.2,0,0,1,0,1,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9070,0,1,117.0,1,1,37,4,7,127.9,1,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,145.0,1,19,19,9,7,136.6,0,0,1,1,1,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.0,1,34,37,4,9,134.4,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,9238,0,39,130.0,1,38,38,5,10,126.7,0,0,0,1,1,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,1 +1,17,1,9773,0,1,122.0,1,1,1,4,7,116.8,1,0,0,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,3,9147,0,1,124.0,1,1,1,5,3,116.7,1,0,1,1,0,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,38,1,9,4,123.2,0,0,1,1,1,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,2 +1,39,1,9556,0,40,130.0,1,1,1,4,5,145.0,0,0,1,1,1,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,2 +1,43,1,9147,0,1,127.0,25,1,5,9,10,124.2,1,0,1,1,0,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,2 +2,43,1,9670,0,1,120.0,1,34,34,0,0,128.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,0 +1,18,1,9238,0,1,122.0,1,1,3,9,2,112.6,1,0,1,1,0,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,122.0,1,1,1,4,4,119.6,1,0,1,1,1,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,2 +1,17,5,9670,0,1,125.0,1,1,19,9,7,119.4,1,0,1,1,1,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,146.0,1,19,37,9,7,153.0,1,0,1,1,1,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,108.0,1,38,38,7,7,115.0,1,0,0,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,133.1,1,1,1,3,9,138.0,1,0,1,1,1,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,140.0,1,37,37,9,5,140.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,19,133.1,1,2,1,2,4,100.0,0,0,1,1,0,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9147,0,1,129.0,1,38,37,3,5,132.9,1,0,1,1,1,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,149.0,1,3,2,2,5,151.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,135.0,1,19,4,9,2,143.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9147,0,1,158.0,1,19,37,9,7,130.0,1,0,1,1,1,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,1 +1,17,6,9556,0,1,122.0,1,1,1,4,5,117.1,1,0,1,1,1,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9556,0,12,133.1,1,34,34,99,99,100.5,0,0,1,1,1,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,9003,0,1,123.0,1,37,37,9,9,110.0,0,0,0,0,1,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,138.0,1,3,3,2,2,127.5,1,0,1,1,1,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,1 +1,43,1,9500,0,1,121.0,1,38,19,5,5,115.4,1,0,1,1,1,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,2 +1,17,4,9147,0,1,114.0,1,19,19,4,4,109.5,1,0,1,1,0,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,1 +1,17,1,9254,0,1,148.0,1,1,1,4,8,145.2,0,0,1,1,0,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,121.0,1,1,1,4,4,123.1,1,0,1,1,0,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,150.0,1,3,3,2,5,154.6,1,0,1,1,1,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,151.0,1,19,38,9,9,157.0,1,0,0,1,1,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,101.0,0,0,1,1,1,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,1 +1,1,2,9254,0,1,127.0,1,3,19,3,10,130.9,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,146.0,1,1,1,9,8,149.5,1,0,1,1,0,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9130,0,6,133.1,1,1,29,4,90,123.3,1,0,1,1,1,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,3,3,7,146.5,1,0,0,1,0,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,2 +1,7,1,8014,1,40,120.0,1,37,19,9,3,120.0,0,0,1,1,1,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9853,0,1,125.0,1,37,37,9,9,114.9,1,0,0,0,1,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,0 +1,1,2,9773,0,1,140.0,1,1,1,4,3,131.6,0,0,1,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,142.0,1,1,19,9,9,136.1,0,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,113.0,1,1,1,4,4,106.7,1,0,1,1,1,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,130.0,1,1,2,4,2,130.0,0,0,1,1,0,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,39,1,9119,0,1,130.0,1,19,37,9,9,134.0,0,0,1,1,0,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,2 +1,18,1,9500,0,1,123.0,1,37,37,3,3,118.0,1,0,1,1,1,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,1 +1,10,2,9085,0,1,163.3,22,19,1,4,9,163.3,0,0,1,1,1,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,135.0,1,19,19,9,5,135.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,136.0,1,4,5,2,2,126.2,0,0,1,1,0,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,44,1,9130,0,39,150.0,1,1,37,4,8,150.0,1,0,1,0,1,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9085,0,3,140.0,1,19,20,4,90,140.0,1,0,1,1,1,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,43,1,9070,0,1,135.0,1,1,38,3,9,126.4,1,0,1,1,1,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,140.0,1,19,38,7,8,129.9,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,133.1,1,1,1,9,9,155.0,0,0,1,1,1,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,17,5,9773,0,1,122.0,1,38,38,7,7,123.1,1,0,1,0,1,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9130,0,1,117.0,1,1,1,9,9,109.3,1,0,1,1,1,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9500,0,1,130.0,1,1,38,9,9,125.1,1,0,1,1,1,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,2 +1,1,2,9773,0,1,144.0,1,3,3,3,2,140.2,1,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,145.0,1,1,1,4,10,145.0,0,0,1,1,1,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,0 +1,51,1,9070,0,1,143.0,1,1,1,4,4,120.0,1,0,1,1,1,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,0 +1,17,1,9773,0,1,145.0,1,1,38,90,8,132.8,1,0,1,0,0,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9556,0,1,120.0,1,38,38,191,193,120.0,0,0,0,1,1,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,148.0,1,19,1,7,5,138.3,1,0,1,1,0,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,146.0,1,3,3,3,6,133.4,1,0,1,1,1,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,1 +1,17,1,9130,0,1,131.0,1,12,12,2,8,128.2,1,0,1,1,0,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,6,9556,0,1,115.0,1,19,2,5,3,112.2,1,0,1,1,1,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,1 +1,43,1,9556,0,1,126.0,1,2,3,3,2,100.0,0,0,1,1,1,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,2 +1,17,1,9238,0,1,120.0,1,19,37,9,9,113.0,1,0,1,1,1,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,132.0,1,19,38,5,5,118.0,1,0,1,1,1,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,1 +2,1,1,9238,0,1,145.0,1,37,34,9,7,139.4,0,0,1,0,1,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,131.0,1,38,38,191,174,125.4,1,0,1,1,1,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,1 +2,39,1,9119,0,1,120.0,1,37,38,9,10,145.4,0,0,0,1,0,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,0 +1,1,1,9130,0,1,138.0,1,4,5,2,2,123.0,1,0,1,1,1,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,127.0,1,5,3,4,4,122.8,1,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,136.0,1,1,1,4,4,127.0,1,0,1,1,1,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,2 +1,17,3,9119,0,1,115.0,1,3,1,3,3,116.1,1,0,1,0,0,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,143.0,1,38,37,4,9,116.5,1,0,1,1,1,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,3,19,3,8,134.9,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,1 +1,44,1,9119,0,39,140.0,1,5,41,3,2,140.0,0,0,1,1,0,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,124.0,1,19,19,9,3,115.6,1,0,1,0,0,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,0 +1,7,1,9500,0,3,130.0,1,19,38,5,3,130.0,0,0,1,1,1,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,137.0,1,1,1,4,10,124.8,1,0,1,1,0,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,138.0,1,1,3,1,4,127.5,1,0,1,1,0,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,112.0,1,1,1,5,1,111.7,0,0,0,0,0,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,0 +1,1,4,9500,0,1,147.0,1,1,1,4,9,124.5,1,0,1,1,1,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,1 +1,7,1,9500,0,3,140.0,1,3,19,2,6,140.0,0,0,1,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,121.0,1,19,19,7,7,113.0,1,0,1,1,1,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,0 +1,1,2,8014,1,1,96.0,1,3,1,3,9,100.0,0,0,1,1,1,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,3,120.0,1,37,37,9,9,120.0,0,0,1,1,1,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,152.0,1,1,38,4,5,144.7,0,0,1,1,1,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,1 +2,1,1,9070,0,1,127.0,1,12,19,9,9,123.2,0,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,1 +1,1,3,9070,0,1,147.0,1,34,37,5,7,135.8,1,0,1,1,1,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,7,1,9119,0,4,180.0,1,4,3,2,7,180.0,0,0,0,1,0,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,2 +1,1,6,9500,0,1,129.0,1,37,19,9,7,127.8,1,0,1,1,1,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,100.0,1,37,37,7,7,160.0,1,0,1,1,1,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,127.0,1,19,1,5,5,117.6,1,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,2 +1,39,1,9003,0,1,110.0,1,1,1,9,4,120.0,0,0,0,0,0,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9773,0,1,143.0,11,19,19,4,9,133.9,1,0,1,1,0,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,1 +1,44,1,8014,1,39,160.0,1,37,37,7,7,156.1,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,43,2,9670,0,1,135.0,1,3,19,1,7,123.5,1,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,1,130.0,1,38,3,132,122,100.0,0,0,1,1,0,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,2 +1,15,1,9238,0,1,150.0,26,19,1,9,9,146.5,1,0,0,0,0,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,1 +1,17,6,9119,0,1,129.0,1,37,13,4,90,117.1,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,3,130.0,1,3,3,3,10,147.6,0,0,1,1,0,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,171,0,1,145.0,1,1,1,3,3,140.1,1,0,1,1,1,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,43,3,9254,0,1,135.0,1,3,3,2,2,122.1,0,0,1,1,0,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,2 +1,17,1,171,0,1,140.0,41,1,1,5,7,146.3,1,0,1,1,1,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9070,0,1,126.0,1,38,38,9,8,129.9,1,0,1,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,1 +1,7,1,9070,0,3,120.0,1,4,4,2,2,120.0,0,0,1,1,0,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,0 +1,17,4,9070,0,1,144.0,1,38,1,9,9,137.4,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,125.0,1,3,3,2,3,118.0,1,0,1,1,0,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,0 +5,39,1,9238,0,1,130.0,1,19,38,9,10,146.0,0,0,1,1,0,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,100.0,1,37,37,6,5,107.5,0,0,1,1,1,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9773,0,1,130.0,1,1,19,1,3,161.5,0,0,1,1,0,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,140.0,1,19,19,9,4,127.8,1,0,1,1,0,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,113.0,1,1,37,1,10,116.5,1,0,1,1,1,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,1 +1,1,2,9238,0,1,145.0,1,1,19,4,8,121.4,0,0,1,1,1,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9003,0,19,133.1,1,19,37,9,10,120.0,0,0,0,1,1,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,2 +1,1,1,9085,0,1,150.0,1,12,2,4,2,144.6,0,0,0,0,1,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,40,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,0 +1,17,5,9500,0,1,137.0,1,1,1,5,5,132.6,1,0,1,1,1,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,3,19,4,7,119.0,0,0,1,1,0,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,128.0,1,1,1,4,5,124.7,0,0,1,1,0,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,2 +1,39,2,9670,0,19,133.1,1,34,34,0,0,100.0,1,0,1,0,0,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,0 +1,39,1,9556,0,1,120.0,1,19,19,4,5,122.8,0,0,1,1,1,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,0 +1,1,2,171,0,1,165.0,1,3,3,2,2,163.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,133.8,1,3,37,2,10,184.0,0,0,1,1,1,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,120.0,1,37,19,9,4,148.8,0,0,1,1,1,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,1 +1,1,5,9500,0,1,151.0,1,1,1,9,9,127.8,0,0,1,1,1,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,131.0,1,38,19,7,7,125.3,1,0,1,1,1,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,128.0,1,1,1,9,6,120.3,0,0,1,1,0,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,2 +1,1,5,9500,0,1,118.0,1,3,1,5,10,113.5,1,0,1,1,1,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,140.0,1,37,37,7,9,126.8,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,117.0,1,38,37,9,9,113.5,1,0,1,1,1,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,135.0,1,19,19,9,9,122.8,1,0,1,1,0,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,151.0,1,37,37,9,7,147.5,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,1,3,4,4,147.5,1,0,1,1,1,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,128.0,1,38,37,9,9,124.9,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9085,0,1,124.0,1,3,19,2,3,113.9,1,0,1,1,1,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,120.0,1,3,19,4,7,119.7,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,171,0,1,147.0,1,1,12,4,4,148.4,1,0,1,1,0,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,136.0,1,19,1,9,8,123.4,1,0,1,1,1,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,123.0,1,3,1,2,5,112.9,0,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,2,9556,0,1,133.1,1,3,1,2,4,136.1,0,0,1,1,0,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,141.0,1,3,1,4,4,142.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,1,1,9003,0,1,120.0,1,37,37,9,9,120.5,1,0,0,1,0,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,140.0,1,37,37,9,6,140.0,1,0,1,1,0,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,147.0,1,19,1,4,3,138.5,1,0,1,1,1,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,123.0,1,34,34,90,90,113.3,1,0,1,1,1,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,38,4,5,130.4,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,7,7,134.0,0,0,1,1,0,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,38,38,4,7,111.6,1,0,1,1,1,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,1 +1,1,1,9119,0,1,148.0,1,19,38,9,7,133.0,0,0,1,1,0,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,128.0,1,3,1,2,1,127.8,0,0,1,1,1,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,172.0,1,38,37,9,9,149.3,0,0,1,1,0,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,138.0,1,37,37,9,8,127.2,1,0,1,1,1,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,140.0,1,3,1,2,6,137.6,1,0,1,1,0,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,1 +2,43,1,8014,1,1,110.0,1,37,19,9,3,100.0,0,0,1,1,1,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,2,1,2,4,140.7,1,0,1,1,0,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,1 +1,1,1,9130,0,1,137.0,1,3,38,3,5,129.3,1,0,1,1,1,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,136.0,1,38,38,0,7,133.2,1,0,1,1,1,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,145.0,6,34,34,0,0,134.5,1,0,1,1,0,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,147.0,1,19,19,3,10,151.9,1,0,1,1,1,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,118.0,1,37,37,9,9,112.1,1,0,1,1,1,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,0 +1,43,1,9773,0,1,122.0,1,1,1,4,5,126.9,0,0,1,1,1,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,126.0,1,12,38,9,5,122.2,0,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,143.0,1,3,3,2,2,129.0,0,0,1,1,0,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,1 +1,39,1,9556,0,1,130.0,1,19,38,9,8,113.3,0,0,1,1,1,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,101.0,1,1,37,4,9,98.9,1,0,1,1,1,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,133.1,1,34,34,90,90,116.0,0,0,1,0,1,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,0 +2,39,1,9991,1,1,170.0,1,37,19,9,3,151.1,0,0,1,1,0,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,1 +2,17,5,9119,0,1,126.0,1,37,38,4,4,122.9,1,0,1,1,0,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,2 +1,1,2,9500,0,1,125.0,1,19,19,9,9,114.9,0,0,1,1,1,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,1 +1,18,3,9773,0,1,128.0,1,19,1,9,9,122.1,1,0,1,1,0,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,149.0,1,38,37,9,9,139.5,0,0,1,1,0,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,1,3,9,5,137.1,0,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,126.0,1,38,37,5,5,114.8,1,0,1,1,1,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,1 +2,39,1,9085,0,1,120.0,1,37,37,6,6,150.0,0,0,1,1,0,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,137.0,1,38,19,0,90,122.3,0,0,1,1,1,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,0 +2,39,1,9853,0,19,133.1,1,37,19,3,7,100.0,0,0,1,1,1,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,145.0,1,4,2,2,3,127.3,1,0,1,1,0,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,129.0,1,1,1,4,8,129.0,0,0,1,0,1,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,143.0,1,1,1,4,4,129.0,1,0,1,1,0,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,136.0,1,19,38,9,9,119.3,1,0,1,1,1,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,151.6,0,0,1,1,1,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,2 +1,1,1,9238,0,1,108.0,1,19,38,9,9,107.3,0,1,1,1,1,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,134.0,1,1,1,2,7,128.4,1,0,1,1,1,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,1 +1,42,1,9119,0,1,120.0,1,3,1,2,9,108.2,1,0,1,1,0,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,0 +1,16,2,9500,0,1,127.0,1,2,38,4,9,119.0,1,0,1,1,1,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,131.0,1,1,1,9,9,122.0,0,0,1,1,1,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,1 +1,7,1,9070,0,3,133.1,1,3,5,2,2,120.0,1,0,1,1,1,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,150.0,1,19,19,5,5,132.8,1,0,1,1,1,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,1 +1,18,2,9670,0,1,121.0,1,37,38,4,1,111.9,1,0,1,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,108.0,41,3,3,9,9,107.0,0,0,0,0,1,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,150.0,1,34,19,0,4,152.8,1,0,1,1,0,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,18,2,9238,0,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,130.0,6,19,1,6,4,130.0,1,0,1,1,1,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,2 +1,51,1,9119,0,1,136.0,1,1,19,3,5,133.6,1,0,1,1,0,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,0 +1,1,4,9773,0,1,155.0,1,3,19,1,4,149.8,1,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9070,0,1,124.0,1,19,38,4,0,117.6,1,0,1,1,0,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,9,100.0,0,0,1,1,0,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,2 +1,44,1,9238,0,1,140.0,1,1,1,5,5,143.4,0,0,1,1,1,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,120.0,1,1,19,7,7,111.3,0,0,1,1,0,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,2 +2,1,1,9556,0,1,144.0,1,19,19,193,144,139.8,0,0,0,1,0,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,110.0,1,1,1,5,5,160.0,1,0,0,1,1,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,0 +2,39,1,9853,0,19,133.1,1,37,37,9,9,131.0,0,0,1,1,1,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,139.0,1,4,1,2,10,136.4,1,0,1,1,1,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,1 +1,17,3,9085,0,1,134.0,1,37,38,9,9,120.4,1,0,1,1,1,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,148.0,1,3,2,4,2,131.6,1,0,1,1,1,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,0 +1,1,3,9500,0,1,145.0,1,19,37,7,7,141.5,1,0,1,1,1,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,1 +2,39,1,9130,0,19,133.1,1,37,38,9,9,120.0,0,0,1,1,0,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,3,9254,0,1,121.0,1,19,37,4,7,116.8,1,0,1,1,1,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,1 +1,1,3,9254,0,1,123.0,1,1,1,4,3,123.4,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,38,38,9,9,133.4,1,0,1,1,0,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,1 +1,42,1,9500,0,1,124.0,1,19,19,4,9,124.0,0,0,1,1,1,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,40,130.0,1,37,37,9,7,130.0,0,0,1,1,1,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,140.0,1,3,38,2,9,140.0,1,0,1,1,1,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,158.0,1,38,38,9,7,144.7,1,0,1,1,1,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,18,2,9238,0,1,121.0,1,19,1,4,3,121.4,1,0,1,1,1,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,12,133.1,1,37,19,9,10,120.0,0,0,1,1,0,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,122.0,1,3,1,4,3,114.8,1,0,1,1,1,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,2 +4,43,1,9991,1,1,164.0,1,37,37,6,6,131.8,0,0,1,1,1,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,1 +1,1,3,9773,0,1,145.0,1,38,38,9,5,133.1,0,0,1,1,1,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9853,0,19,133.1,1,38,19,9,9,108.0,0,0,0,0,1,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,2 +1,17,3,9070,0,1,131.0,1,38,37,5,5,120.2,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,2 +1,43,1,9238,0,1,130.0,1,38,37,9,7,133.2,0,0,1,1,1,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,112.0,1,1,1,3,3,106.4,1,0,1,1,0,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,125.0,1,1,38,144,181,123.3,0,0,1,1,1,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,125.0,1,3,2,2,1,119.1,1,0,1,1,1,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,0 +1,7,1,9853,0,3,140.0,1,34,34,0,0,140.0,1,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,135.0,1,1,19,3,9,137.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,7,1,9991,1,3,120.0,1,37,37,6,7,120.0,0,0,0,0,0,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,130.0,1,1,1,4,3,125.1,1,0,1,1,1,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,1 +2,39,1,33,0,1,120.0,1,38,1,9,5,153.8,0,0,0,1,0,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,1,150.0,1,37,37,9,9,140.0,0,0,1,0,0,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,127.0,1,1,38,9,7,120.4,1,0,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,7,1,8014,1,43,180.0,1,19,19,9,4,180.0,0,0,1,1,1,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,1 +1,1,3,9147,0,1,143.0,1,1,1,5,7,133.2,1,0,1,1,1,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,1 +1,15,1,9853,0,1,133.1,41,43,1,153,135,128.2,0,0,1,1,1,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,1 +1,39,1,9147,0,12,133.1,1,1,1,9,4,140.0,1,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,151.0,1,1,38,4,7,137.0,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,1 +1,17,4,171,0,1,172.0,1,3,1,2,10,155.6,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,129.0,1,19,1,9,5,112.0,0,0,1,1,0,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,150.0,1,38,3,9,1,140.0,0,0,1,1,0,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,1 +1,1,1,9773,0,1,124.0,17,1,1,3,5,118.1,1,0,0,0,1,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,0 +1,17,1,9670,0,1,124.0,1,37,19,5,8,114.2,1,0,0,1,1,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,122.0,1,1,19,3,5,116.8,1,0,1,1,1,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,144.0,1,38,1,9,10,137.4,0,0,1,1,1,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,19,19,9,9,120.0,0,0,1,1,1,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,138.0,1,38,38,7,6,124.7,1,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,2 +1,18,2,9147,0,1,132.0,1,3,3,5,7,119.1,1,0,0,0,1,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,17,6,9119,0,1,111.0,1,19,3,5,10,106.5,1,0,1,1,0,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,0 +1,7,1,9500,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,1,140.0,1,37,37,9,9,130.0,1,0,1,1,0,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,125.0,1,37,37,3,3,124.0,0,0,1,1,0,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,128.0,1,19,2,7,3,126.3,1,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +2,39,1,9500,0,1,110.0,1,37,37,9,6,114.3,0,0,1,1,1,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,9085,0,1,133.1,1,1,9,4,4,128.2,0,0,1,1,1,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,1 +1,1,3,9238,0,1,126.0,1,38,19,5,8,120.8,1,0,1,1,1,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,121.0,1,1,1,9,8,118.9,1,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,109.0,1,19,37,5,5,108.3,0,0,1,1,1,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,2 +1,1,4,9670,0,1,127.0,1,1,1,7,7,116.5,1,0,1,1,1,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,171,0,19,133.1,101,1,19,2,7,110.0,0,0,1,1,0,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,133.0,1,37,37,9,7,124.6,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,39,137.0,1,1,1,5,10,124.5,0,0,1,0,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,130.0,1,19,19,7,7,121.6,0,0,1,1,1,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,1 +2,39,1,8014,1,1,130.0,1,37,37,6,5,113.5,1,0,1,1,1,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9670,0,1,120.0,1,38,38,5,7,115.1,1,0,1,1,1,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,115.0,1,38,1,9,4,116.1,1,0,1,1,0,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,130.1,0,0,1,1,1,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,2 +1,1,3,9238,0,1,133.1,1,1,1,9,9,100.0,1,0,1,1,0,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,168.0,0,0,1,1,0,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,148.0,1,1,1,9,9,141.7,0,0,1,0,0,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,0 +1,15,1,33,0,1,133.1,41,2,3,2,4,100.0,0,0,1,1,0,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,2 +1,17,3,9147,0,1,135.0,1,37,37,6,5,121.0,1,0,1,1,0,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,151.0,1,3,3,1,90,161.9,0,0,1,1,1,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,8,108.5,0,0,1,1,0,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9670,0,1,130.0,1,26,30,0,5,128.6,1,0,0,1,1,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,1 +1,43,1,9500,0,1,140.0,100,1,1,6,6,128.2,0,0,1,1,1,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,140.0,1,19,37,5,7,140.0,1,0,1,1,0,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,0 +1,39,1,33,0,1,140.0,1,3,1,2,4,152.8,0,0,1,1,1,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,2 +1,43,1,9070,0,1,117.0,1,1,1,4,7,112.5,1,0,1,1,0,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,126.0,1,37,19,7,7,125.7,0,0,1,1,1,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,2 +1,1,2,9773,0,1,140.0,1,38,38,5,7,126.4,1,0,1,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,121.0,1,37,38,6,9,121.0,0,0,1,1,1,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,136.0,1,12,1,4,4,122.0,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,117.0,1,37,37,9,9,120.2,1,0,1,1,1,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,133.1,1,38,1,9,9,121.0,0,0,0,0,0,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,0 +1,44,1,9991,1,39,130.0,1,37,37,5,5,130.0,1,0,1,1,0,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,138.0,1,1,19,4,9,142.2,1,0,1,1,1,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,148.0,1,3,1,2,10,148.0,1,0,1,1,1,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,1 +1,17,6,9556,0,1,134.0,1,19,38,7,7,128.5,1,0,1,1,1,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,141.0,1,1,19,5,8,141.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,149.0,1,3,1,9,9,137.5,0,0,1,1,0,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,1 +1,1,3,9085,0,1,142.0,1,11,11,90,90,155.3,0,0,1,1,1,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +1,1,2,9070,0,1,135.0,1,19,37,9,9,134.0,1,0,1,1,1,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,132.0,1,19,38,9,7,120.1,0,0,1,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9147,0,1,133.0,1,37,37,9,5,119.7,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,139.0,1,3,4,2,2,130.6,0,0,1,1,1,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,130.0,1,1,3,9,2,130.0,1,0,0,0,0,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,0 +1,17,3,9500,0,1,138.0,1,3,3,4,5,130.0,1,0,1,1,1,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,121.0,1,19,19,3,3,116.1,1,0,1,1,1,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,160.0,1,3,38,1,9,152.0,1,0,1,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,130.0,41,37,19,9,8,125.5,1,0,1,1,1,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,133.1,1,38,38,191,193,146.0,0,0,0,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,1 +4,39,1,9003,0,1,140.0,1,37,37,9,8,150.0,0,0,1,1,0,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,2 +1,17,2,9670,0,1,132.0,1,1,19,5,3,124.0,1,0,1,1,0,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,117.0,1,19,19,5,7,118.4,0,0,1,1,0,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,140.0,6,1,19,4,7,131.6,1,0,1,1,1,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,142.0,1,38,1,8,10,138.5,1,0,1,1,0,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,2 +1,1,1,9130,0,1,132.0,1,3,1,4,9,121.9,1,0,1,1,1,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,122.0,1,1,1,9,9,116.1,1,0,1,1,0,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,0 +1,7,1,8014,1,3,130.0,1,37,38,0,5,130.0,0,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,138.0,1,19,19,9,5,124.8,1,0,1,1,1,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,140.0,1,19,38,3,9,140.0,1,0,1,1,0,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +4,39,1,8014,1,1,138.0,1,19,19,90,90,127.0,0,0,1,0,1,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9500,0,19,133.1,1,1,3,2,2,100.0,0,0,0,1,0,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,117.0,1,3,1,3,5,110.7,1,0,1,1,0,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,120.0,1,19,19,5,5,113.0,1,0,1,1,1,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,160.0,1,37,37,7,7,133.0,1,0,1,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,137.0,1,1,1,4,5,126.3,1,0,1,1,1,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,19,37,9,7,123.9,1,0,1,1,1,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,38,38,9,5,130.0,0,0,0,0,0,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,137.0,1,19,37,9,7,130.8,0,0,0,1,1,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,38,37,4,6,150.0,1,0,1,1,1,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,115.0,1,34,38,0,5,108.4,1,0,1,1,1,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,140.0,1,3,38,141,151,135.3,0,0,1,1,0,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,148.0,1,19,19,7,7,130.9,0,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,127.0,1,1,1,4,3,126.3,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,2,9670,0,1,100.0,1,37,37,9,9,100.0,0,0,1,1,1,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,2 +1,17,2,171,0,1,141.0,1,19,37,9,9,136.1,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,123.0,1,30,19,4,90,122.3,0,0,1,1,1,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,145.0,1,1,38,5,7,127.5,1,0,1,1,0,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9085,0,1,150.0,1,37,37,90,10,112.0,0,0,1,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,128.0,1,37,1,9,7,124.2,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,0 +1,43,1,9070,0,39,130.0,1,19,37,5,9,124.0,1,0,1,1,1,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,1 +1,17,1,9003,0,1,170.0,1,1,4,9,5,144.1,1,0,0,0,0,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9670,0,1,110.0,1,19,19,90,99,107.2,0,0,1,1,0,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9238,0,19,133.1,1,37,37,9,9,130.0,1,0,1,1,1,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,42,1,9119,0,1,144.0,1,34,34,0,0,119.5,0,0,1,1,0,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,19,133.1,1,37,37,6,6,162.0,0,0,0,1,0,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,16,1,9085,0,1,138.0,1,37,37,9,9,123.0,1,0,1,1,1,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,39,1,9500,0,1,133.1,1,19,19,5,6,121.4,0,0,0,1,1,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9085,0,1,138.0,1,1,1,4,7,132.1,1,0,1,1,1,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,1 +1,39,1,9119,0,1,133.1,1,37,37,9,9,101.6,0,0,1,1,0,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9500,0,1,126.0,1,1,19,131,181,120.1,1,0,1,1,1,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,38,9,9,142.0,1,0,1,1,1,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,1 +1,18,1,8014,1,1,138.0,1,19,1,9,5,134.5,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,19,9,9,150.0,0,0,1,1,0,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,126.0,1,38,37,9,9,123.6,1,0,1,1,1,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,39,1,9254,0,19,133.1,1,19,19,3,1,101.5,0,0,0,0,0,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,43,2,9119,0,1,115.0,1,38,19,9,6,112.2,1,0,0,1,0,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,2 +2,39,1,9003,0,1,120.0,1,37,37,9,9,125.7,0,0,0,0,1,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,0 +1,17,2,9773,0,1,115.0,1,1,1,5,5,119.6,1,0,1,1,1,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,19,9,4,140.0,0,0,1,1,1,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,125.0,1,37,19,90,90,137.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,120.0,1,3,38,3,7,124.2,1,0,1,1,0,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,2 +1,1,1,9147,0,1,146.0,1,5,1,1,5,144.6,0,0,1,1,0,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,116.0,1,1,1,3,4,113.6,1,0,1,1,1,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,1 +4,42,1,9147,0,1,133.1,1,37,38,7,3,123.0,1,0,1,1,0,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,118.9,1,38,37,5,9,118.9,1,0,1,1,1,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,123.0,1,12,1,9,9,119.2,1,0,1,1,1,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,1 +1,7,1,9500,0,2,140.0,1,38,37,7,8,140.0,0,0,1,1,1,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,110.0,1,37,37,90,90,108.4,1,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9119,0,1,146.0,1,1,37,7,7,132.4,1,0,1,1,0,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,19,133.1,1,19,3,9,2,140.0,1,0,0,1,0,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,0 +1,18,2,9853,0,1,111.0,1,38,38,191,171,105.8,1,0,1,1,1,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,6,130.2,0,0,1,1,1,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,130.0,1,1,3,9,10,118.1,1,0,1,1,0,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,118.0,1,1,19,5,4,118.0,0,0,1,1,1,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,153.0,1,38,38,7,7,159.7,1,0,1,1,1,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,171,0,12,110.0,1,37,37,7,7,106.0,1,0,1,1,0,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,134.0,1,19,1,9,4,124.9,1,0,1,1,1,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,0 +1,1,3,9254,0,1,121.0,1,19,19,9,9,125.9,1,0,1,1,1,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,160.0,1,19,19,4,9,154.4,0,0,1,1,1,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,3,140.0,1,19,19,9,7,152.4,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9130,0,1,130.0,1,19,1,191,144,110.0,0,0,1,1,0,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,142.0,1,38,37,9,5,127.3,1,0,1,1,1,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,37,37,9,9,130.0,0,0,0,1,1,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,124.0,1,37,19,9,4,121.2,0,0,1,1,0,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,1 +4,39,1,9991,1,1,120.0,1,19,19,9,3,113.9,1,0,1,1,1,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,114.0,1,19,38,5,3,112.6,1,0,1,1,1,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,1 +1,7,1,9991,1,40,120.0,1,1,19,4,9,120.0,0,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,128.0,1,19,38,9,9,118.2,0,0,1,1,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,4,9070,0,1,126.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,130.0,1,1,1,0,0,119.5,0,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,184.4,22,2,19,2,8,184.4,0,0,1,1,1,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,133.1,1,37,37,9,9,132.8,0,0,0,0,0,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9085,0,1,120.0,1,38,19,90,90,127.0,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,1 +1,17,4,9147,0,1,132.0,1,38,19,5,5,120.8,1,0,1,1,0,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,0 +1,10,1,9670,0,1,148.9,22,37,37,9,9,148.9,0,0,1,1,1,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,4,150.0,1,1,1,4,6,150.0,0,0,1,1,0,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,150.0,1,19,1,9,3,110.0,1,0,1,1,0,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,1 +1,15,1,9670,0,1,130.0,26,42,1,2,7,130.0,0,1,0,1,1,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,1 +2,7,1,8014,1,3,120.0,1,38,1,9,9,120.0,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,149.0,1,19,37,9,9,158.1,1,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,4,9147,0,1,124.0,1,37,37,9,9,117.4,0,0,1,1,1,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,142.0,1,34,1,5,10,136.1,1,0,1,0,0,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,1,1,8014,1,1,165.0,1,37,37,0,0,162.9,1,0,1,1,0,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,130.0,1,37,37,5,7,123.4,1,0,1,1,0,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,0 +4,39,1,8014,1,1,133.1,1,37,37,7,7,143.0,0,0,1,1,0,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,121.0,1,38,37,8,8,115.4,1,0,1,1,1,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,7,1,9556,0,3,140.0,1,3,3,2,2,140.0,0,0,0,0,0,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,116.0,1,38,19,0,2,116.7,1,0,1,1,0,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,132.0,1,38,1,5,5,124.3,0,1,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,133.1,1,38,12,7,0,111.5,0,0,1,0,1,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,0 +1,53,1,9147,0,42,140.0,1,1,1,6,6,142.2,0,0,1,1,0,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,1 +2,44,1,9991,1,39,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,9773,0,1,170.0,1,1,19,9,7,155.0,0,0,1,1,0,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,8014,1,19,133.1,1,37,37,4,8,112.5,0,0,1,1,1,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,120.0,1,1,1,5,8,112.0,1,0,1,1,1,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,123.0,1,1,1,3,3,113.6,1,0,1,1,1,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,1 +1,39,1,9085,0,1,133.1,1,1,19,9,9,162.3,1,0,1,1,1,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,116.0,1,37,1,9,8,115.7,1,0,0,0,1,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,160.0,1,9,19,4,3,151.3,0,0,1,1,1,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,1 +1,39,1,8014,1,19,149.0,1,34,34,0,0,126.3,0,0,1,1,1,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,44,1,9238,0,39,140.0,41,1,1,4,6,137.5,0,0,0,1,1,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,130.0,1,37,37,9,9,129.0,1,0,1,1,1,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,19,38,7,7,118.7,0,0,1,1,0,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,128.0,0,0,1,1,1,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,1 +1,17,1,9070,0,1,135.0,1,19,37,5,9,145.9,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,128.0,1,1,19,9,7,118.2,0,0,1,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,128.0,1,19,38,9,9,127.0,0,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,140.0,1,37,12,9,9,150.0,0,0,0,1,0,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,0 +2,43,1,8014,1,1,160.0,1,37,39,9,4,140.9,0,0,1,1,1,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,133.0,1,38,19,8,7,127.3,1,0,1,1,1,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,1 +1,15,1,9670,0,1,160.0,1,37,12,9,9,149.5,1,0,1,0,0,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,152.0,101,2,1,9,1,168.5,1,0,1,1,0,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,1 +1,1,3,9085,0,1,147.0,1,19,19,9,1,135.6,1,0,1,1,1,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,1 +1,17,2,8014,1,1,120.0,1,37,34,0,0,117.6,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,141.0,1,37,37,9,9,130.2,0,0,1,1,0,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,1 +1,16,2,9147,0,1,139.0,1,38,37,9,9,123.7,1,0,1,1,1,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,134.0,1,19,38,4,8,129.5,0,0,1,1,1,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,113.0,1,1,37,9,10,117.2,1,0,1,1,1,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,18,2,9556,0,1,126.0,1,3,3,2,2,115.5,0,0,1,1,0,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,1 +1,39,1,8014,1,1,134.0,1,37,38,4,7,110.0,1,0,1,1,1,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,42,1,171,0,1,132.0,1,1,1,1,4,132.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9003,0,1,130.0,1,19,19,9,1,140.0,0,0,1,1,1,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9773,0,1,132.0,1,38,19,9,9,125.0,1,0,1,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,140.0,1,37,37,9,6,132.8,0,0,1,1,0,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,130.0,1,37,19,9,5,140.2,1,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9070,0,1,118.0,1,43,3,123,123,110.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,1 +1,39,1,8014,1,19,100.0,1,37,37,5,5,111.0,1,0,1,1,1,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,2 +1,1,3,9085,0,1,138.0,1,1,3,4,4,126.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,132.0,1,2,19,4,4,125.0,1,0,1,1,1,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,38,100.0,1,37,37,9,7,154.0,1,0,1,1,0,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,138.0,1,1,19,4,4,131.7,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,1 +2,39,2,9147,0,1,140.0,1,37,37,9,8,108.0,0,0,1,1,1,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,2 +1,1,5,9147,0,1,134.0,1,3,2,2,2,134.7,0,0,1,1,0,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,2 +1,43,1,9130,0,1,120.0,1,2,3,3,2,120.0,1,0,1,0,0,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,0 +1,1,3,9085,0,1,140.0,1,10,19,90,90,135.8,1,0,1,1,1,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,142.0,1,37,38,5,1,129.4,0,0,1,1,1,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,1 +1,17,4,9670,0,1,120.0,1,1,19,5,5,117.2,1,0,1,1,1,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,136.0,1,1,19,5,7,136.4,0,0,1,1,1,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,120.0,1,37,37,5,5,124.6,0,0,1,1,1,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,2 +1,39,1,9500,0,1,133.1,1,1,37,9,9,100.0,0,0,1,1,0,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,123.0,1,19,1,9,3,117.8,1,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,1 +5,39,1,9254,0,1,133.1,1,2,2,2,2,103.0,0,0,1,1,1,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,171,0,1,133.0,1,1,37,4,7,126.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,6,9500,0,1,119.0,1,1,1,4,4,115.0,1,0,1,1,0,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,143.0,1,38,19,151,193,134.3,1,1,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,135.0,1,1,19,4,4,129.1,0,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,43,2,9670,0,1,130.0,1,19,1,4,4,127.6,1,0,1,1,0,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,1,9254,0,1,126.0,1,37,37,5,1,126.0,0,0,1,0,0,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,0 +1,42,1,9119,0,1,120.0,1,19,37,9,9,113.8,0,0,1,0,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9991,1,1,140.0,1,37,37,9,9,135.8,1,0,1,1,0,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,1 +1,17,5,9085,0,1,118.0,1,38,38,9,9,112.4,1,0,1,1,1,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,1 +1,17,3,9773,0,1,134.0,1,2,1,3,3,129.5,1,0,1,1,0,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,129.0,1,1,38,4,7,123.4,0,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,132.0,1,19,37,4,9,128.0,1,0,1,1,1,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,137.0,1,38,37,7,5,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,1 +1,17,5,9119,0,1,138.0,1,19,19,5,5,123.3,1,0,0,1,0,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,138.0,1,1,1,3,4,132.5,1,0,1,1,1,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,1 +1,16,2,9070,0,1,133.0,1,1,3,4,2,122.5,1,0,1,1,1,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,2 +1,17,1,9130,0,1,137.0,1,38,19,5,7,130.0,1,0,1,1,1,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,2 +1,17,1,9238,0,1,131.0,1,37,37,9,7,121.9,0,0,1,1,1,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,1 +2,1,1,9500,0,1,142.0,1,19,38,4,5,130.3,0,0,1,1,1,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,1 +2,39,1,9556,0,1,160.0,1,37,37,9,6,120.0,0,0,1,1,1,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,0 +1,51,1,9670,0,1,126.0,1,3,3,1,10,111.0,0,0,0,1,0,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,1 +1,1,5,9853,0,1,141.0,1,37,19,9,5,133.0,1,0,1,1,1,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,0 +1,1,2,9670,0,1,124.0,1,19,1,9,4,117.7,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,133.0,1,19,19,9,5,120.1,1,0,1,1,1,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,1 +1,43,1,9147,0,1,133.1,1,4,19,2,1,128.2,0,0,1,1,1,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,0 +4,27,1,9070,0,2,130.0,1,34,34,0,0,130.0,0,0,1,1,1,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,0 +1,43,1,9003,0,1,150.0,1,2,4,4,1,150.0,0,0,1,1,0,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,1 +1,39,1,9991,1,19,133.1,1,19,37,7,5,155.5,1,0,0,0,0,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,0 +1,1,1,9238,0,1,106.0,1,1,1,3,3,105.0,0,0,1,1,0,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,111.0,1,19,38,3,3,111.4,1,0,1,0,1,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,0 +1,43,1,9254,0,1,130.0,1,1,19,5,7,130.0,0,0,1,1,1,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,0 +1,17,1,8014,1,1,120.0,1,38,37,6,6,113.0,0,0,1,1,1,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,139.0,1,1,37,4,9,131.3,1,0,1,1,1,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,1 +1,43,3,9254,0,1,110.0,1,37,37,9,9,107.2,1,0,1,1,0,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,147.0,1,1,1,4,4,134.3,1,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,130.0,1,37,38,9,6,130.0,1,0,1,1,1,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,139.0,1,37,38,9,9,124.0,1,0,1,1,0,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,122.0,1,37,37,9,9,126.9,1,0,1,1,1,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,11,11,90,4,114.0,1,0,1,1,0,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9147,0,1,132.0,1,39,39,3,3,127.8,1,0,1,0,0,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,128.0,1,38,37,5,6,122.1,0,0,1,1,1,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,2 +1,17,1,9085,0,1,127.0,1,19,38,194,193,117.6,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9500,0,1,145.0,1,3,3,2,3,141.8,0,0,1,1,1,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,1 +1,53,1,9556,0,42,140.0,1,1,19,4,5,140.0,0,0,1,1,1,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,1 +1,18,1,9147,0,1,160.0,1,19,19,5,8,137.6,1,0,1,1,1,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,1 +1,51,1,9670,0,19,133.1,1,2,1,3,10,120.0,0,0,0,1,0,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,19,133.1,1,19,39,5,3,121.7,0,0,0,0,1,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,126.0,0,0,1,1,0,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,1 +1,1,3,171,0,1,140.0,1,37,37,9,9,124.3,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,136.0,1,38,37,9,9,126.9,1,0,1,1,1,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,136.0,1,19,1,9,9,129.0,1,0,1,1,1,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,144.0,1,38,38,7,7,136.0,1,0,1,1,1,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,154.0,1,38,38,9,9,156.5,1,1,1,1,1,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,131.0,1,19,19,9,9,134.9,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +4,43,1,8014,1,1,140.0,1,38,37,9,9,126.0,0,0,1,1,1,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,141.0,1,37,37,9,7,126.3,1,0,1,1,1,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,1 +1,44,1,8014,1,39,150.0,1,1,37,9,7,146.7,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +1,1,2,9119,0,1,140.0,1,19,19,9,9,125.7,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,12,100.0,1,1,1,4,4,100.0,0,0,1,1,1,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,1 +1,42,1,9500,0,1,111.0,1,1,3,9,10,128.2,1,0,1,1,0,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,1 +1,17,2,9773,0,1,132.0,1,19,19,9,6,120.1,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,131.0,1,4,4,2,1,120.5,0,0,1,1,1,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,44,1,9003,0,39,170.0,1,19,19,5,5,170.0,1,0,1,1,0,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,1 +1,17,1,9773,0,1,150.0,1,38,38,7,7,137.8,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,19,133.1,1,37,37,9,10,120.0,0,0,0,0,0,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9670,0,39,110.0,1,37,1,9,4,110.0,0,0,1,1,1,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,130.0,1,5,3,2,2,130.0,0,0,1,1,0,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9670,0,1,133.1,1,34,3,7,2,130.6,1,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,38,9,10,140.0,0,0,1,1,0,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,133.1,1,19,38,9,9,119.6,1,0,1,1,1,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,118.0,1,19,19,3,3,110.0,1,0,1,1,1,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,2 +1,1,1,9773,0,1,137.0,1,1,1,5,5,129.3,1,0,1,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,127.0,1,19,38,5,9,129.5,1,0,1,1,1,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,126.0,1,38,19,9,6,119.4,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,116.5,0,0,1,1,1,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,125.0,1,19,19,4,7,128.5,1,0,1,1,1,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,2 +1,43,1,9773,0,1,133.1,22,34,34,90,90,130.0,0,0,0,1,1,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,125.0,1,1,1,5,5,128.5,0,0,1,1,0,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9500,0,1,133.1,1,19,37,9,9,120.0,0,0,1,1,1,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,1 +2,39,2,9147,0,1,133.1,1,37,37,5,7,110.0,0,0,1,1,0,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,6,9500,0,1,141.0,1,1,19,1,1,126.7,1,0,1,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,146.0,1,40,43,4,4,150.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,148.0,1,1,1,4,9,129.8,0,0,1,1,1,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,2 +1,17,1,9853,0,1,133.0,1,38,38,9,9,127.4,0,0,0,1,1,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,43,1,9147,0,1,120.0,1,37,37,5,3,113.4,0,0,1,1,0,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,148.0,1,19,3,4,2,136.5,0,0,1,1,1,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,178.0,1,2,1,2,3,157.7,0,0,1,1,0,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +2,7,1,9254,0,3,130.0,1,1,3,4,3,130.0,0,0,1,1,1,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,7,1,33,0,40,120.0,1,38,37,5,6,120.0,1,0,0,0,0,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,0 +2,1,1,9147,0,1,151.0,1,38,37,9,8,132.1,1,0,1,1,1,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,0 +1,43,2,9556,0,1,120.0,1,1,19,4,3,110.2,0,0,1,1,1,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,1 +2,1,4,9500,0,1,140.0,1,1,37,4,9,128.0,0,0,1,1,1,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,1 +1,42,1,9119,0,6,120.0,1,35,35,6,6,128.2,1,0,1,1,0,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,120.0,1,37,37,9,6,120.0,1,0,1,1,1,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,2 +2,39,1,9003,0,1,133.1,1,37,37,8,7,150.0,0,0,1,1,0,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,145.0,1,19,37,4,7,148.9,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,34,34,0,0,104.0,1,0,1,1,1,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,43,1,9085,0,1,110.0,1,3,19,4,6,105.0,0,0,0,0,0,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,0 +1,17,2,9254,0,1,108.0,1,37,37,9,7,108.0,1,0,1,1,1,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,1 +4,43,1,9238,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,1,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,136.0,1,19,37,173,183,118.4,1,0,1,1,1,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,18,1,9556,0,1,140.0,1,38,37,9,9,122.8,0,0,1,1,1,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,1 +1,39,1,9119,0,1,150.0,1,3,3,4,4,150.0,1,0,1,1,0,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,141.0,1,1,1,4,10,138.9,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,1 +1,18,4,9773,0,1,130.0,1,19,19,4,4,121.3,1,0,1,1,1,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,1,130.0,1,37,37,9,6,160.0,0,0,1,1,0,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,149.0,1,37,37,9,9,136.0,0,0,1,1,1,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,151.0,1,37,1,4,10,138.4,0,0,1,1,1,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,2 +1,39,1,9254,0,1,130.0,1,37,37,9,9,126.5,0,0,1,1,0,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,143.0,1,19,37,7,7,127.0,1,0,1,1,1,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,1 +2,57,1,9991,1,1,133.1,41,38,37,4,6,100.0,0,0,1,1,1,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,138.0,1,37,37,9,9,135.9,1,0,1,1,1,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,2 +1,43,1,8014,1,1,145.7,22,37,37,9,9,145.7,1,0,1,1,1,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,1 +4,39,1,9773,0,19,133.1,1,37,37,9,1,117.5,0,0,1,1,1,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,17,3,9238,0,1,118.0,1,1,19,4,10,112.4,1,0,1,1,1,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,8014,1,1,133.1,1,37,37,9,7,162.5,0,0,1,1,0,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,1 +1,1,3,9254,0,1,115.0,1,1,1,3,3,117.5,1,0,1,1,1,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,133.0,1,37,38,9,9,130.2,1,0,1,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,152.0,1,2,22,4,3,146.1,1,0,1,1,1,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +2,39,1,9085,0,12,133.1,1,1,39,5,3,140.0,1,0,0,0,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9003,0,1,140.0,1,38,1,9,4,138.3,0,0,1,1,0,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,130.0,1,38,37,9,6,133.9,0,0,1,1,0,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,140.0,1,37,37,9,9,142.5,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,120.0,1,38,1,9,3,118.3,1,0,1,1,1,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,117.0,1,1,19,4,7,113.5,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,141.0,1,19,1,7,3,128.8,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9147,0,1,125.0,1,3,38,2,10,118.7,1,0,1,1,1,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,116.0,1,37,1,5,3,124.8,1,0,1,1,0,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,120.0,1,36,37,0,0,126.7,1,0,1,1,0,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,1 +1,17,4,9853,0,1,140.0,1,19,38,4,1,128.5,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,1,1,3,10,130.0,0,0,1,1,0,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,136.0,1,3,37,2,8,121.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,154.0,1,37,37,9,9,149.5,1,0,1,1,1,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,138.0,1,19,38,5,8,133.5,0,0,1,1,1,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,128.0,1,1,37,4,3,117.9,1,0,1,1,1,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,1 +1,43,1,9130,0,1,150.0,1,3,3,3,4,150.0,1,0,1,1,1,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,110.0,1,19,38,3,5,117.4,1,0,1,1,1,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,135.0,1,37,38,9,6,122.1,1,0,1,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9003,0,1,140.0,1,37,37,9,6,104.8,0,0,1,1,1,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,143.0,1,37,37,9,7,131.8,1,0,1,1,1,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,142.0,1,1,1,3,3,133.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,141.0,1,1,19,5,10,127.0,0,0,1,1,1,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,1 +3,1,2,9085,0,1,135.0,1,19,1,4,4,129.4,1,0,1,1,1,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,39,1,9254,0,1,133.1,1,19,19,4,7,123.0,0,0,0,0,1,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,0 +1,17,2,9500,0,1,131.0,1,19,37,9,7,129.8,1,0,1,1,1,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,1 +1,39,1,9670,0,9,133.1,1,6,22,3,3,120.0,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,131.0,1,37,37,3,3,131.7,1,0,1,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,137.0,1,19,19,5,5,134.6,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,131.0,1,1,1,4,10,129.3,0,0,1,1,1,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,140.0,1,1,37,141,192,129.7,0,0,1,1,1,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,140.0,1,37,37,9,9,124.6,0,0,1,1,1,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,138.0,1,37,37,5,9,125.1,1,1,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,0 +1,2,1,9147,0,1,150.0,1,37,37,9,9,122.0,1,0,1,1,1,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,135.0,1,3,1,4,4,136.1,1,0,1,1,0,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,2 +1,39,1,9991,1,1,150.0,1,1,19,4,8,123.0,0,0,1,1,0,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,141.0,1,19,37,5,8,130.2,0,0,1,1,0,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,106.0,1,37,37,9,9,108.0,1,0,0,1,1,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,19,133.1,1,37,38,9,7,100.5,1,0,1,1,0,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,2 +1,43,1,9254,0,1,142.0,1,38,38,9,9,125.9,0,0,1,1,1,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,150.0,1,1,37,9,7,130.2,0,0,1,1,1,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,1 +4,39,1,9670,0,1,140.0,1,2,1,3,9,170.0,0,0,0,0,0,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9773,0,1,119.0,1,38,19,9,9,118.3,0,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,117.0,1,34,34,0,0,109.3,0,0,1,1,1,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,120.0,1,34,34,99,99,111.6,0,0,0,1,0,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,2 +1,39,1,9119,0,1,139.0,1,19,19,9,7,110.3,0,0,0,1,0,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,2 +1,43,1,9147,0,1,123.0,1,3,19,9,9,113.2,0,0,1,1,1,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,2 +1,43,1,9991,1,1,120.0,1,38,38,9,7,141.0,0,0,1,1,0,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,1 +1,1,1,9130,0,1,151.0,1,3,1,2,4,151.0,1,0,1,1,1,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,130.0,1,37,37,9,6,110.0,1,0,1,1,1,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,1 +1,43,1,9853,0,1,130.0,1,2,39,2,5,124.6,0,0,1,1,0,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,138.0,1,1,1,4,3,141.5,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,120.0,1,37,37,9,5,100.0,0,0,1,1,1,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9991,1,39,150.0,1,37,37,6,6,150.0,0,0,1,1,1,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,2 +2,39,1,9085,0,19,133.1,1,38,38,4,7,128.2,0,0,1,1,1,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.0,41,19,19,9,9,119.7,1,0,0,1,1,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,17,3,9085,0,1,128.0,1,1,19,4,90,124.2,0,0,1,0,1,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,120.0,1,1,1,9,9,129.1,1,0,1,1,0,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9773,0,1,125.0,1,19,19,9,7,129.6,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,137.0,1,40,19,2,9,130.7,1,0,1,1,1,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,0 +1,51,1,9147,0,1,116.0,1,3,3,2,2,115.2,0,0,0,1,0,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,17,5,9853,0,1,132.0,1,12,12,4,4,123.3,1,0,1,1,1,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,0 +1,7,1,9991,1,3,130.0,1,37,37,9,9,130.0,0,0,1,1,0,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,135.0,1,19,38,9,5,136.8,1,0,1,1,1,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,137.0,1,1,1,4,7,134.6,1,0,1,1,0,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,4,171,0,1,133.1,1,38,38,9,9,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,133.1,1,19,37,7,8,120.0,0,0,0,0,1,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,140.0,1,1,19,9,7,127.0,1,0,1,1,1,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,1 +1,18,1,9500,0,1,124.0,1,38,37,9,7,119.3,1,0,1,1,1,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,3,19,2,4,150.0,1,0,1,1,1,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,8014,1,19,133.1,1,3,19,90,90,123.5,0,0,1,1,1,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9853,0,1,133.1,1,37,37,5,5,116.5,0,0,1,1,1,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,0 +1,18,6,9500,0,1,144.0,1,1,1,3,6,130.8,1,0,1,1,1,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9670,0,1,151.0,1,19,19,1,1,100.0,0,0,0,1,1,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,125.0,1,1,19,4,6,115.2,0,1,1,1,1,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,37,38,4,9,110.0,0,0,0,0,1,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,133.1,1,19,19,5,5,108.5,1,0,1,1,1,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,130.0,1,37,11,90,90,122.6,0,0,1,1,1,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,113.0,1,19,37,9,9,118.6,1,0,1,1,1,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,140.0,6,2,3,5,2,124.3,1,0,1,1,1,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,2 +1,1,4,9119,0,1,111.0,1,37,37,9,5,107.5,1,0,1,1,0,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,143.0,1,19,38,9,9,133.4,1,0,1,1,1,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,1 +1,17,1,9773,0,1,141.0,1,2,3,2,2,133.7,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,151.0,41,3,3,2,5,161.9,1,0,1,1,1,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,43,1,33,0,1,143.0,1,37,1,9,10,121.2,1,0,1,1,0,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,1,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,141.0,1,1,19,8,7,128.8,1,0,1,1,1,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,2 +1,1,1,9238,0,1,115.0,1,19,38,7,7,108.7,0,0,1,1,1,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,114.0,1,1,1,4,0,108.8,1,0,1,1,1,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,2 +1,1,2,9853,0,1,112.0,1,37,37,191,182,106.1,1,0,0,1,1,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,2,9085,0,1,157.0,1,3,38,4,6,142.3,0,0,1,1,1,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,1 +2,44,1,8014,1,39,160.0,1,37,19,9,10,155.9,0,0,1,1,1,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,1 +1,1,4,171,0,1,137.0,1,1,38,4,8,141.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,144.0,1,1,37,9,9,126.5,1,0,1,1,1,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,145.0,1,1,1,4,10,131.4,0,0,1,1,1,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,115.0,1,1,1,9,4,109.1,1,0,0,0,1,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,170.0,1,37,37,0,0,150.8,1,0,1,1,1,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,0 +1,5,3,9070,0,1,157.0,1,3,1,9,6,138.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,1 +1,43,2,9238,0,1,129.0,1,34,30,0,5,118.9,1,0,1,1,0,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,5,9853,0,1,141.0,1,3,19,2,7,130.9,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,1 +4,39,1,9991,1,1,133.1,1,37,37,9,9,130.4,0,0,1,1,1,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,130.0,1,19,38,9,9,126.9,0,0,0,1,1,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,136.0,1,19,1,4,3,125.2,1,0,1,1,1,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,37,9,9,140.2,0,0,1,1,0,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,132.0,1,37,38,9,5,120.8,0,0,1,1,1,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,150.0,1,19,37,6,6,150.0,0,0,0,1,1,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,1 +2,42,1,9991,1,1,130.0,1,3,2,2,2,130.0,0,0,1,1,0,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,2 +4,39,1,8014,1,1,133.1,1,38,37,5,7,144.5,0,0,1,1,1,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,2,9773,0,1,150.0,41,1,37,9,7,130.8,0,0,1,1,1,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,1 +2,1,1,8014,1,1,151.0,1,37,37,9,9,152.4,0,0,1,1,1,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,1 +6,39,1,9500,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,0 +2,43,1,9670,0,1,100.0,1,34,34,0,0,128.2,0,0,1,1,0,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,148.0,1,1,19,3,3,131.7,1,0,1,1,1,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,142.0,1,19,19,7,7,142.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,127.0,1,1,38,4,7,125.6,0,0,0,1,1,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,146.0,1,38,38,9,7,134.1,1,0,1,1,0,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,0 +1,17,1,9670,0,1,115.0,1,1,1,4,4,109.1,1,0,1,1,1,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,2 +1,1,2,9773,0,1,148.0,1,1,19,9,9,141.7,0,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,116.0,1,37,37,0,5,114.3,1,0,1,1,1,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,139.0,1,38,19,5,7,130.6,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,1 +1,1,6,9147,0,1,128.0,1,37,37,9,9,116.5,0,0,1,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,2 +1,39,1,9130,0,3,150.0,1,3,1,90,90,150.0,1,0,1,1,1,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9670,0,1,122.0,1,1,19,4,4,116.1,0,0,1,1,0,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,2 +1,39,1,9119,0,1,100.0,1,37,37,9,8,160.0,0,0,0,0,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9254,0,1,128.0,1,19,1,7,9,121.7,1,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,143.0,1,37,38,7,7,133.8,1,0,1,1,1,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,107.0,1,38,38,7,7,103.5,1,0,1,1,1,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,1 +1,39,2,9147,0,1,143.0,1,19,5,4,1,100.0,1,0,1,1,0,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,140.0,0,0,0,0,1,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,160.0,1,1,1,5,4,160.0,1,1,1,0,0,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,0 +2,39,1,9500,0,19,133.1,1,38,38,2,10,120.0,0,0,1,1,1,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,0 +1,5,2,9853,0,1,122.0,1,19,19,4,5,112.6,1,0,1,1,1,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,3,9500,0,1,137.0,1,19,37,7,7,126.7,1,0,1,1,1,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,1 +1,7,1,9070,0,40,120.0,1,1,19,3,9,120.0,1,0,1,1,1,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,157.0,1,38,3,5,2,141.4,0,0,1,1,1,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,1 +2,1,2,8014,1,1,110.0,1,37,1,9,10,108.7,1,0,1,1,1,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,129.0,1,19,37,7,6,120.0,1,0,1,1,1,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,108.0,1,19,1,4,3,111.9,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9070,0,12,110.0,1,37,38,5,10,130.0,0,0,0,0,0,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,122.0,1,1,1,193,101,126.2,0,0,1,1,1,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,4,4,3,3,143.6,0,0,0,1,0,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,2 +1,7,1,9119,0,3,130.0,1,34,34,90,90,130.0,0,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,8014,1,39,120.0,1,19,37,7,6,121.8,1,0,1,1,1,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,142.0,1,37,38,9,9,137.5,1,0,1,1,0,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,138.0,1,3,19,2,4,131.0,1,0,1,1,0,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,0 +1,17,2,9853,0,1,125.0,1,1,19,5,5,119.4,1,0,1,1,1,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,137.0,1,1,1,5,4,131.1,1,0,1,1,1,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,133.0,1,38,38,9,9,128.1,1,0,1,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,0 +4,39,1,9991,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,1,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,17,1,9130,0,1,138.0,1,2,19,2,6,126.3,1,0,1,1,1,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,2 +1,17,4,9500,0,1,135.0,1,1,1,4,4,127.0,1,0,1,1,1,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,140.0,1,4,3,3,3,127.8,0,0,1,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,1 +1,5,1,9147,0,1,126.0,1,19,38,5,6,117.3,1,0,1,1,1,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,2 +1,39,1,9670,0,1,133.1,1,1,19,4,9,140.0,0,0,1,1,0,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,126.0,1,38,38,9,8,118.8,1,0,1,1,1,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,1 +2,42,1,9147,0,1,133.1,1,37,37,9,9,115.8,0,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,126.0,1,1,37,7,9,132.7,0,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,133.0,1,19,19,5,7,123.6,0,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +1,17,4,9556,0,1,135.0,1,38,37,3,7,129.0,1,0,1,1,1,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,110.0,1,37,37,9,9,107.6,1,0,1,1,0,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,2 +1,17,4,9147,0,1,135.0,1,19,1,0,4,128.7,1,0,1,1,0,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +2,1,1,8014,1,1,150.0,1,1,37,4,7,139.9,1,0,1,1,1,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,116.0,1,1,38,4,3,114.6,1,0,1,1,1,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,121.0,1,19,37,1,3,131.5,0,0,1,1,1,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,100.0,1,19,1,1,90,114.0,1,0,0,0,1,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,146.0,1,19,37,5,8,135.8,1,0,1,1,1,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,1 +1,44,1,9119,0,39,140.0,1,1,19,4,5,140.0,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9670,0,1,136.0,1,19,19,5,5,122.0,0,0,0,0,1,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,0 +2,39,1,9003,0,1,133.1,1,19,19,4,4,107.5,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9070,0,1,164.0,1,38,38,9,7,165.8,1,0,1,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,154.0,1,38,38,9,9,133.4,1,0,1,1,1,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,127.0,1,19,37,7,7,121.5,1,0,1,1,0,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,2 +1,43,6,9238,0,1,129.0,1,34,34,0,0,125.2,0,0,1,1,1,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,125.0,1,19,1,4,5,122.6,1,1,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,2 +1,17,1,9070,0,1,136.0,1,38,19,7,7,121.7,1,0,1,1,1,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,131.0,1,38,1,7,4,128.3,1,0,1,1,1,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,1 +1,1,4,171,0,1,132.0,1,1,19,4,5,138.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9254,0,1,115.0,1,12,1,9,3,108.7,1,0,1,1,1,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,131.0,1,1,37,3,7,120.2,0,0,1,1,1,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,134.0,1,1,1,4,9,124.2,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,142.0,1,19,1,9,1,132.6,0,0,1,1,1,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,2,1,3,6,150.0,1,0,1,1,0,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,1 +1,39,1,9254,0,1,130.0,1,19,38,9,7,113.5,0,0,1,1,1,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,135.0,1,2,1,2,8,126.6,0,0,1,1,1,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,1 +1,39,1,9254,0,12,133.1,1,37,37,5,7,119.3,1,0,1,1,0,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,2 +1,1,1,9130,0,1,110.0,1,3,19,2,9,105.5,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9130,0,1,134.0,41,1,19,5,5,125.6,1,0,1,1,1,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,151.0,2,1,1,5,9,146.5,0,0,1,1,1,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,133.0,1,1,3,3,3,135.8,1,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,7,1,9070,0,3,140.0,1,37,2,9,3,140.0,0,0,1,0,1,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,147.0,1,37,19,9,5,133.7,1,0,1,1,1,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,2 +1,51,1,9500,0,1,127.0,1,19,1,5,9,150.0,0,0,1,1,1,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,143.0,1,1,37,5,9,126.6,0,0,0,0,1,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,160.0,1,37,38,9,9,160.0,0,0,0,1,1,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,1 +4,39,1,8014,1,19,133.1,1,34,34,0,0,100.0,0,0,1,1,1,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,0 +4,43,1,9853,0,1,133.1,100,19,22,90,90,100.0,0,0,1,1,1,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,2,120.0,1,37,37,9,8,120.0,0,0,1,1,1,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,2 +1,39,1,9130,0,40,129.0,1,3,3,2,2,155.3,1,0,1,1,1,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,150.0,1,38,37,9,9,150.0,1,0,1,1,0,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +1,44,1,9130,0,39,160.0,1,1,37,3,3,160.0,1,0,0,0,1,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,0 +2,39,1,9003,0,1,133.1,1,1,19,4,4,120.0,0,0,0,0,0,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,115.0,1,19,38,9,9,108.0,0,0,1,1,1,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,134.0,1,1,19,4,5,126.0,0,0,1,1,1,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,135.0,1,38,38,5,8,133.3,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,5,1,9670,0,1,135.0,1,1,12,4,4,140.3,1,0,1,1,1,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,122.0,1,19,1,4,8,135.8,0,0,1,1,1,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,19,19,3,9,112.6,1,0,1,1,1,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,4,9773,0,1,147.0,1,1,1,4,5,139.7,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,140.0,1,19,19,4,5,140.0,1,0,1,1,1,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,130.0,1,12,12,9,9,126.1,0,0,1,1,0,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,0 +1,43,2,9147,0,1,130.0,1,34,37,9,9,118.5,1,0,1,1,0,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,1 +1,17,4,9500,0,1,138.0,1,4,1,2,1,133.0,1,0,1,1,1,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,138.0,1,37,37,194,171,131.0,1,0,1,1,1,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,19,5,8,147.3,0,0,1,1,1,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,1 +1,1,6,9500,0,1,149.0,1,1,1,4,9,133.0,1,0,1,1,1,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,1 +1,16,6,9773,0,1,136.0,1,38,14,0,0,129.7,1,0,1,1,1,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,130.0,1,1,34,9,9,124.8,1,0,1,1,1,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,111.0,1,1,1,3,3,112.4,1,0,1,1,0,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,121.0,1,1,19,4,7,135.4,1,0,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,1 +1,1,1,9556,0,1,135.0,1,37,38,7,9,125.8,0,0,1,1,1,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,136.0,1,37,19,5,8,129.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,4,9670,0,1,110.0,1,1,37,7,7,111.1,1,0,1,0,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,128.0,1,38,38,5,5,118.6,1,0,1,1,1,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,1 +2,39,1,9500,0,19,133.1,1,37,38,9,10,120.9,1,0,1,1,1,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,0 +1,5,3,9085,0,1,143.0,1,37,37,0,90,159.1,0,0,0,1,1,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,0 +4,39,1,9238,0,1,120.0,1,37,37,9,9,125.5,1,0,1,1,1,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,126.0,1,3,1,2,5,116.9,1,1,1,1,1,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,2 +1,16,1,9556,0,1,137.0,1,37,37,9,7,122.7,1,0,1,1,1,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,136.0,1,1,1,9,9,123.8,1,0,1,1,1,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +4,39,1,9130,0,1,133.1,1,3,1,5,5,110.0,1,0,1,1,1,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,0 +1,17,4,9085,0,1,138.0,1,19,36,90,7,134.9,1,0,1,1,1,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,3,9070,0,1,130.0,1,1,4,4,2,131.4,0,0,1,1,0,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,1 +2,42,1,9853,0,1,133.1,1,37,37,4,7,100.0,0,0,1,1,1,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,115.0,1,1,1,9,9,134.3,1,0,1,1,0,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,108.0,1,1,38,5,8,105.9,0,0,1,1,1,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,2 +1,39,1,9991,1,1,120.0,1,19,37,5,5,128.2,0,0,1,0,0,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +5,7,1,9130,0,3,160.0,1,19,38,9,6,160.0,0,0,1,0,1,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,0 +1,1,1,9130,0,1,121.0,1,3,19,2,9,115.4,1,0,1,1,0,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/synthetic/tabsyn_m5/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/synthetic/tabsyn_m5/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..1536cf99ff8a3aaf05d2bd6b84a42986911aea5d --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/synthetic/tabsyn_m5/test.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,0,1,127.0,1,1,1,9,6,110.0,0,0,0,0,0,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,0 +1,17,2,9773,0,1,122.0,1,38,37,5,3,119.6,1,0,1,1,1,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,1 +1,1,6,9147,0,1,121.0,1,3,19,4,5,116.8,0,0,1,1,0,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,158.0,1,38,37,5,5,140.2,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,19,19,9,7,131.7,1,0,1,1,1,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,1 +1,1,3,9085,0,1,133.0,1,1,38,9,90,128.2,0,0,1,1,1,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,122.0,1,1,19,9,9,120.3,1,0,1,1,0,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,0 +1,43,1,9119,0,1,130.0,1,1,1,9,2,128.0,0,0,0,0,0,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,2 +1,17,3,9254,0,1,122.0,1,1,1,4,4,126.6,0,0,1,0,1,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,1,100.0,1,37,37,9,9,133.0,0,0,1,1,0,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,0 +1,44,1,9119,0,39,130.0,1,19,3,3,4,130.0,0,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9085,0,39,140.0,1,1,1,4,7,140.0,1,0,0,1,1,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,0 +1,17,2,9070,0,1,130.0,1,37,37,9,9,123.7,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +4,1,1,9991,1,1,130.0,1,37,37,9,9,118.1,0,0,0,0,1,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9500,0,1,190.0,108,3,2,122,4,190.0,1,0,1,1,1,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,102.0,1,1,19,9,5,100.6,1,0,1,1,1,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,1 +1,7,1,9500,0,3,120.0,1,19,3,4,2,120.0,1,0,1,1,1,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,130.0,1,38,19,9,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,111.0,1,3,4,4,3,108.2,1,0,1,1,1,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,39,1,9119,0,1,160.0,1,1,38,4,7,112.0,0,0,1,0,0,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,149.0,1,19,1,4,4,134.8,0,0,1,1,1,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,135.0,1,19,38,3,9,136.1,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,2,9500,0,1,120.0,1,37,34,90,0,121.5,0,0,0,1,1,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,1 +1,1,3,171,0,1,147.0,1,12,19,9,3,151.6,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,128.0,1,37,37,9,9,123.5,1,0,1,1,0,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,1,2,9070,0,1,129.0,1,1,1,4,9,132.9,1,0,1,1,0,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,2 +1,17,2,9500,0,1,138.0,1,1,38,5,8,132.8,1,0,1,1,1,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,134.0,1,19,37,9,9,131.6,1,1,1,1,1,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,130.0,1,37,37,9,9,122.0,1,0,1,1,1,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,37,37,9,10,130.0,0,0,0,0,1,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,2,9085,0,1,130.0,1,37,19,9,8,129.0,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,2 +1,17,5,9119,0,1,126.0,1,38,38,5,9,116.9,1,0,0,1,0,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,37,38,5,6,140.0,1,0,1,1,1,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,2 +1,18,4,9853,0,1,123.0,1,19,38,4,10,123.7,1,0,1,1,1,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,118.0,1,4,3,2,3,110.7,1,0,1,1,1,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,1 +1,39,1,8014,1,2,130.0,1,37,37,5,7,147.5,0,0,1,1,1,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,146.0,1,4,1,2,3,140.0,1,0,1,1,1,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,1 +1,44,1,9003,0,39,160.0,1,37,38,9,7,160.0,0,0,1,1,1,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,7,0,9003,0,3,130.0,1,1,37,4,9,130.0,1,0,1,1,1,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,19,133.1,1,34,34,99,99,96.0,0,0,1,1,0,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,136.0,1,37,37,7,7,140.9,1,0,1,1,0,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,1,9853,0,1,127.0,1,1,1,5,7,121.4,1,0,1,1,1,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,134.0,1,3,19,2,10,128.8,0,0,1,1,1,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,140.0,1,1,3,4,2,142.8,1,0,1,0,1,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,126.3,0,0,1,1,0,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.1,1,19,1,1,3,101.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9147,0,1,122.0,1,1,38,1,7,118.9,0,0,1,1,0,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,107.0,1,19,37,7,7,103.5,1,0,1,1,1,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,156.0,1,38,37,9,9,156.3,0,0,1,1,0,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,128.0,1,1,1,9,9,120.0,1,0,1,1,1,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,0 +1,17,2,9119,0,1,127.0,1,19,1,9,10,121.1,1,0,1,1,0,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,2 +1,39,1,9003,0,4,160.0,1,3,3,4,2,180.4,0,0,0,1,0,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,0 +1,43,1,9670,0,1,132.0,1,3,19,4,8,120.5,0,0,1,1,0,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,2 +1,17,1,9853,0,1,134.0,1,1,19,4,5,122.5,1,0,1,1,1,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,142.0,1,1,19,4,4,128.0,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,133.0,1,2,37,9,7,125.7,1,0,1,1,0,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,135.0,1,1,3,4,3,133.3,0,0,1,1,1,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,3,140.0,1,37,12,9,4,140.0,0,0,1,0,1,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9500,0,1,141.0,1,2,38,2,10,135.4,1,0,1,1,1,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,2 +2,43,1,9991,1,2,120.0,1,37,37,9,9,120.0,0,0,1,0,1,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,147.0,1,1,19,4,4,137.2,0,0,1,0,1,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9085,0,1,120.0,1,37,38,9,9,111.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,141.0,1,3,1,9,9,124.3,0,0,1,1,1,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,2 +1,18,1,9773,0,1,125.0,1,1,1,4,7,121.5,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,140.0,1,37,37,5,5,150.0,0,0,0,1,1,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,112.0,1,1,37,4,9,106.8,1,0,1,1,1,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,168.0,1,38,37,9,8,155.1,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,15,1,9119,0,1,133.1,41,2,2,2,2,100.0,0,0,0,1,0,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,2 +2,1,1,8014,1,1,121.0,1,37,37,9,9,114.4,1,0,1,1,1,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,136.0,1,1,38,4,5,132.2,0,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,1 +1,16,1,9070,0,1,145.0,1,1,1,3,3,146.1,1,0,1,1,1,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,2 +1,7,1,9085,0,40,140.0,1,5,3,2,2,140.0,0,0,0,1,0,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,0 +1,1,3,9085,0,1,126.0,1,38,1,9,9,132.0,1,0,1,1,1,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,146.0,1,1,37,9,9,129.3,0,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,131.0,1,37,37,9,6,127.2,0,0,1,1,1,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,139.0,1,37,37,9,9,124.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,133.1,1,37,1,5,4,151.2,0,0,1,1,0,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,170.0,1,38,19,9,2,160.6,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,131.0,1,37,37,9,6,130.7,0,0,0,1,1,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,2 +1,1,6,9500,0,1,122.0,1,19,37,3,5,116.6,1,0,0,1,0,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,1 +1,17,3,171,0,1,147.0,1,19,1,5,4,137.6,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,9,120.0,0,0,1,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,5,1,9130,0,1,157.0,1,5,43,2,2,149.7,1,0,1,1,1,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9003,0,39,160.0,1,3,1,2,6,160.0,1,0,1,0,1,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,140.0,1,9,19,4,4,131.2,0,0,1,1,0,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,1,130.0,1,1,3,2,6,110.0,0,0,1,1,0,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,1 +1,39,1,171,0,1,147.0,1,37,38,175,193,133.3,0,0,1,0,1,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,148.0,1,38,19,4,9,134.7,1,0,1,1,1,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,130.0,1,19,1,9,7,130.4,1,0,1,1,1,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,133.1,1,1,37,4,9,96.0,1,0,1,1,1,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,2 +1,39,1,9991,1,12,120.0,1,37,38,5,5,155.7,0,0,1,1,0,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,117.0,1,3,1,3,3,113.2,0,1,1,1,1,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,1 +1,17,2,9853,0,1,150.0,1,38,19,5,5,142.0,1,0,1,1,1,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,144.0,1,1,19,9,4,130.8,1,0,1,1,1,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,1 +1,17,4,9254,0,1,118.0,1,38,37,5,7,111.7,1,0,1,1,0,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,0 +1,1,6,9500,0,1,141.0,1,2,1,4,4,136.3,1,0,1,1,1,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,1 +2,39,1,9003,0,1,120.0,1,2,2,1,4,100.0,0,0,1,1,0,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,141.0,1,4,3,2,1,136.3,1,0,1,1,0,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,120.0,1,1,19,5,4,140.4,0,0,1,1,1,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,154.0,1,1,37,4,9,134.8,1,0,1,1,1,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,100.0,1,19,19,5,5,101.8,1,0,1,1,1,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,2 +1,17,3,9670,0,1,137.0,1,1,38,4,7,138.4,0,0,1,1,0,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,152.0,1,37,37,7,5,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,118.0,1,37,1,9,7,117.0,1,0,1,0,0,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,140.0,1,12,3,4,3,118.0,1,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9070,0,1,133.0,1,1,2,9,2,128.8,0,0,1,1,0,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,1 +1,39,1,171,0,1,140.0,1,37,37,9,9,100.8,0,1,1,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9070,0,42,130.0,1,40,19,3,5,130.0,1,0,1,0,1,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,143.0,1,1,19,3,3,133.9,0,0,1,1,1,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,1 +2,1,5,9500,0,1,130.0,1,1,19,4,4,122.3,0,0,1,1,1,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,9,9,125.0,1,0,1,1,1,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,120.0,1,37,37,7,8,120.0,0,0,1,1,1,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,1 +1,1,2,9147,0,1,125.0,1,1,19,4,9,124.0,1,0,1,1,1,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,131.0,1,38,19,9,9,130.0,1,0,1,1,0,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,132.0,1,1,1,4,1,119.4,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9500,0,1,135.0,1,19,19,7,7,128.0,1,0,1,1,1,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,1 +1,39,1,9500,0,19,133.1,1,38,38,9,9,114.8,0,0,1,1,1,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,130.0,1,2,2,6,6,130.0,0,0,1,0,0,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,112.0,1,19,38,9,10,112.0,1,0,1,1,1,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,2 +1,39,1,9254,0,1,170.0,1,37,37,4,6,138.3,0,0,1,1,1,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,1 +1,39,1,9147,0,19,100.0,1,38,19,7,9,132.0,0,0,0,0,0,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,133.1,1,19,19,9,9,119.0,1,0,1,0,1,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,0 +1,17,2,9085,0,1,138.0,1,37,37,9,7,123.3,1,0,1,1,1,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,2 +1,39,1,8014,1,1,133.1,1,37,37,9,9,112.5,0,0,1,1,1,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,1 +1,51,1,9670,0,1,140.0,1,12,5,3,3,126.6,0,0,1,1,0,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,1 +1,51,1,9085,0,1,125.0,1,1,1,9,4,120.0,0,0,1,1,1,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,151.0,1,1,1,4,3,132.3,0,0,1,1,0,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,1 +1,43,1,9556,0,1,130.0,1,1,37,5,5,128.0,1,0,1,1,0,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,1 +1,17,6,9670,0,1,113.0,1,4,1,3,10,112.3,0,0,1,1,1,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,17,1,9773,0,1,125.0,1,37,37,5,7,120.1,0,0,1,1,1,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,1 +1,53,1,171,0,42,130.0,1,1,19,9,9,130.0,1,0,1,0,0,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,1 +1,51,1,33,0,1,121.0,1,19,37,5,7,118.6,0,0,1,1,1,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,131.0,1,37,37,90,90,137.0,0,0,1,1,1,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,150.0,1,19,1,4,4,137.8,0,0,1,1,1,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,1,140.0,1,37,37,5,6,128.5,0,0,1,1,1,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,130.0,1,37,2,9,4,126.5,1,0,1,0,0,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,0 +1,1,2,9238,0,1,147.0,1,19,38,9,8,135.8,1,0,1,1,1,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,106.0,1,19,37,9,7,109.5,1,0,1,1,1,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,110.0,1,37,37,9,10,140.0,0,0,0,0,0,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,105.0,1,19,37,8,8,102.6,0,1,1,1,1,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,2 +1,17,6,9147,0,1,133.0,1,19,38,5,6,123.2,1,0,1,1,0,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,2 +1,43,1,9670,0,1,160.0,1,34,34,99,99,100.1,0,0,1,0,0,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,0 +4,7,1,9500,0,40,130.0,1,37,37,3,3,130.0,1,0,1,1,1,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,2 +1,43,2,9853,0,1,118.0,1,19,1,5,4,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,2 +1,43,1,8014,1,1,117.0,1,37,37,9,9,100.0,0,0,1,1,1,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,0 +1,53,1,9238,0,42,130.0,1,1,19,5,5,128.3,0,0,0,0,1,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,0 +1,43,1,9130,0,1,127.0,1,19,38,4,5,120.7,1,0,0,1,1,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,38,37,9,4,150.0,1,0,1,1,0,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,1 +1,39,1,9238,0,1,133.1,1,37,29,0,4,120.5,0,0,1,0,0,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,121.0,1,37,19,9,9,141.4,0,0,0,0,0,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,120.0,1,38,37,9,7,108.0,0,0,1,1,0,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,153.0,6,37,37,9,9,131.8,1,0,1,1,1,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,153.0,1,38,19,9,5,138.5,1,0,1,1,1,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,1 +1,17,2,9254,0,1,107.0,1,12,19,5,5,102.8,1,0,1,1,1,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,17,6,9238,0,1,135.0,1,1,19,7,7,126.6,1,0,1,1,1,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,124.0,1,1,19,123,103,113.9,1,1,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,144.0,1,37,37,7,9,126.8,1,0,0,0,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9556,0,1,120.0,1,37,37,9,4,150.0,0,0,1,0,1,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,0 +1,43,3,171,0,1,120.0,1,37,37,9,9,143.3,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,140.0,1,38,19,4,10,122.3,1,0,1,1,1,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,157.0,1,3,38,1,5,136.7,1,0,1,1,1,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,2 +2,39,1,9991,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,150.0,1,3,1,2,8,153.8,1,0,1,1,1,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,130.0,1,2,1,2,7,126.2,1,0,1,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,142.0,1,37,37,9,9,132.9,0,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,43,1,9238,0,1,124.0,1,1,1,3,1,118.8,1,0,0,0,1,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,1,19,4,5,100.0,0,0,1,1,0,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,2 +1,17,5,9238,0,1,122.0,1,37,37,7,5,112.9,1,0,1,1,1,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,97.5,1,0,1,1,0,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,171,0,1,140.0,1,1,3,3,3,138.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,132.0,1,1,1,3,3,119.4,1,0,1,1,1,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,1 +1,42,1,9500,0,1,100.0,1,3,19,2,8,153.0,0,0,1,1,0,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,2 +1,1,1,9254,0,1,123.0,1,38,37,5,5,125.1,0,0,1,1,1,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9130,0,1,133.0,1,38,38,5,8,120.4,1,0,1,1,1,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,1 +1,17,4,9773,0,1,129.0,1,3,1,2,7,132.5,1,0,1,1,0,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,2 +4,39,1,9003,0,19,133.1,1,37,37,9,9,110.0,0,0,1,1,0,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,133.0,1,3,1,9,3,123.2,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,137.0,1,38,19,9,5,129.3,1,0,1,1,1,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,123.0,1,3,1,2,9,127.6,1,0,1,1,0,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,2 +2,39,1,9085,0,19,133.1,1,19,19,9,5,101.0,1,0,1,1,1,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,116.0,1,19,19,7,7,111.1,1,0,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,1,1,9070,0,1,147.0,1,3,1,2,3,149.8,1,0,1,1,0,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,100.0,1,37,37,7,9,100.0,1,0,1,1,1,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,141.0,1,38,38,7,7,132.5,1,0,1,1,1,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,168.0,1,1,1,5,5,161.0,1,0,1,1,0,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,0 +5,39,1,9003,0,19,133.1,1,19,1,9,9,119.4,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,114.0,1,1,19,9,9,111.9,1,0,1,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,2 +1,39,1,9500,0,1,130.0,1,37,37,3,7,143.8,0,0,1,1,0,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,133.1,1,19,19,9,7,100.0,0,0,1,1,0,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,0 +1,17,3,9853,0,1,132.0,1,34,34,0,0,131.3,1,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,157.0,1,37,37,9,9,143.0,0,0,1,1,0,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,1 +5,42,1,9254,0,2,120.0,1,37,37,4,9,120.0,0,0,1,1,1,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,6,1,1,192,144,129.8,0,0,1,1,0,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,2 +1,1,2,9500,0,1,139.0,1,38,37,9,7,125.0,1,0,1,1,1,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,1 +1,17,4,9238,0,1,133.1,1,1,19,9,5,95.0,1,0,1,1,1,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,180.0,1,37,37,7,4,153.8,1,0,1,1,1,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,4,9773,0,1,133.0,1,1,19,9,9,119.7,1,0,1,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,1 +1,17,5,9500,0,1,124.0,1,3,38,2,1,119.8,0,0,1,1,0,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,133.1,1,37,37,9,9,148.2,1,0,0,1,1,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,2 +2,39,1,9991,1,19,133.1,1,37,37,9,7,114.8,0,0,0,1,0,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,133.1,1,1,19,4,8,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,180.0,41,37,37,9,9,152.7,1,0,0,0,0,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9085,0,1,130.0,1,19,19,90,7,115.8,0,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,161.0,1,38,37,5,5,154.4,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,148.0,1,1,38,4,5,148.7,0,0,1,1,0,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,19,38,9,7,131.3,1,0,0,1,1,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,122.0,1,1,1,4,9,112.9,1,0,1,1,1,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,1,4,9500,0,1,142.0,1,38,38,9,8,129.8,1,0,1,1,1,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,1 +3,39,1,9003,0,1,170.0,1,1,37,6,6,170.0,0,0,0,1,1,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,2 +1,1,2,9147,0,1,130.0,1,37,37,9,9,117.8,0,0,1,1,1,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9147,0,1,140.0,1,37,37,9,7,132.3,1,0,1,1,1,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,132.0,1,2,1,9,9,126.4,1,1,1,1,1,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,140.0,1,1,3,9,2,140.0,1,0,1,1,1,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,117.0,1,1,19,4,4,109.3,0,0,1,1,0,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,176.0,1,3,38,3,7,169.7,0,0,1,1,1,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,133.1,1,37,38,7,7,98.0,1,0,1,1,0,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,136.0,1,3,3,2,2,128.7,0,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,12,38,4,9,107.0,1,0,1,1,1,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,0 +1,17,1,9130,0,1,156.0,1,2,9,3,5,166.9,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,1 +1,17,1,9130,0,1,123.0,1,19,3,3,2,121.6,1,0,0,1,1,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,171,0,1,129.0,1,1,1,9,9,124.8,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9119,0,1,125.0,1,19,1,5,4,121.5,1,0,1,1,0,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,0 +1,17,1,9085,0,1,163.0,14,37,37,9,9,150.8,1,0,1,1,1,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,1 +1,7,2,9130,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,1,9085,0,1,135.0,1,1,2,9,1,134.3,1,0,1,1,1,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,19,37,6,6,120.0,0,0,1,1,1,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,1,130.0,1,37,37,9,7,133.0,1,0,1,1,1,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,143.0,1,1,19,4,6,135.0,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +4,43,2,9991,1,38,133.1,1,3,1,2,9,125.4,0,0,1,1,0,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,140.0,1,3,1,2,4,124.1,0,0,1,1,1,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,37,38,175,103,127.0,0,0,1,1,0,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,151.0,1,1,3,1,1,111.0,0,0,1,1,0,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,133.0,1,37,19,9,8,141.4,0,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,133.1,1,38,37,5,5,108.0,0,0,1,1,1,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,9147,0,1,118.0,1,3,19,2,4,113.8,1,0,1,1,1,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,1,1,3,5,141.7,0,0,1,1,1,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,42,1,9119,0,1,130.0,1,19,37,9,3,135.0,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,0 +4,39,2,9147,0,19,133.1,1,37,37,9,7,116.4,0,0,0,0,0,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,148.0,1,19,38,9,8,134.8,1,0,1,1,0,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,116.0,1,19,19,4,7,110.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,1 +1,1,5,9147,0,1,122.0,1,38,38,9,9,117.5,1,0,0,0,1,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,122.0,1,37,37,9,9,125.9,1,0,1,1,0,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,171,0,1,127.0,1,1,1,9,5,124.2,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9147,0,39,117.4,1,19,1,4,9,117.4,1,0,1,1,1,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,150.0,1,37,38,9,9,146.2,0,0,1,1,1,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,2 +1,17,1,9254,0,1,158.0,1,37,37,5,9,138.1,1,0,1,1,1,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,0 +1,7,1,9500,0,3,140.0,1,1,37,9,5,140.0,0,0,1,1,1,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,1 +1,44,1,9238,0,39,140.0,1,1,1,9,3,135.7,1,0,1,1,1,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +2,7,1,171,0,3,120.0,1,19,19,9,9,130.0,1,0,1,1,0,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,10,100.0,1,34,34,0,0,113.0,1,0,1,1,1,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,1 +1,1,1,8014,1,1,125.0,1,37,37,9,7,114.9,0,0,1,1,1,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,1 +1,18,6,9500,0,1,124.0,1,37,37,9,7,117.8,0,0,1,1,1,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,1 +1,1,1,9773,0,1,109.0,1,2,3,3,3,111.8,1,0,0,1,0,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,149.0,1,1,1,9,3,156.0,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +2,44,1,9119,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,2 +1,44,1,9130,0,39,120.0,6,4,4,3,6,120.0,0,0,0,0,1,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,0 +5,1,3,9085,0,1,133.0,1,19,19,4,7,119.7,1,0,1,1,1,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,2 +1,1,1,9085,0,1,127.0,1,37,37,9,9,122.8,1,0,1,1,1,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,171,0,39,140.0,1,1,1,9,9,140.0,0,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9773,0,1,132.0,1,1,1,4,9,124.3,1,0,0,1,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +4,39,2,9670,0,19,133.1,1,19,1,90,90,103.0,0,0,1,0,0,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,26,1,9147,0,2,133.1,1,34,34,0,0,121.5,1,0,1,1,1,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,143.0,1,19,38,9,6,131.5,1,0,1,1,0,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,1 +1,17,1,9147,0,1,123.0,1,1,19,3,4,122.0,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,171,0,1,133.1,1,3,1,2,3,141.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,19,37,9,4,120.0,0,0,1,1,1,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,1,1,3,3,125.7,1,0,1,1,1,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,121.0,1,37,37,5,5,118.9,1,0,1,1,1,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,1 +1,51,1,9500,0,1,129.0,1,37,38,3,3,137.8,1,0,1,1,1,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,144.0,1,3,1,2,4,134.9,1,0,0,1,1,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,0 +1,17,5,9254,0,1,113.0,1,1,1,2,3,110.2,1,0,1,1,0,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,1,133.1,1,1,19,4,5,120.0,1,0,1,1,0,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,0 +1,39,1,9254,0,19,133.1,1,19,1,9,5,97.0,0,0,0,0,0,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9500,0,1,126.0,1,1,19,6,7,115.5,1,0,1,1,1,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,1 +1,42,1,9853,0,1,141.0,1,37,19,9,3,133.0,0,0,1,1,1,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,0 +1,39,1,9085,0,19,133.1,1,19,19,4,9,139.9,1,0,1,1,1,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,43,2,9254,0,1,140.0,1,19,19,9,9,126.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,108.0,1,34,38,0,3,105.9,0,0,1,1,0,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,114.0,1,19,19,9,7,107.7,0,0,1,1,1,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,0 +1,17,1,171,0,1,130.0,1,3,1,9,9,126.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.1,1,19,37,0,0,137.0,1,0,1,1,1,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9119,0,1,117.0,1,1,2,3,2,119.8,1,0,1,1,0,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9147,0,1,115.0,1,1,37,4,9,117.1,1,0,0,1,1,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,130.0,1,12,19,4,5,118.5,0,1,1,1,1,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.0,1,34,37,5,5,120.4,0,0,1,0,1,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,0 +1,44,1,171,0,39,150.0,1,19,1,9,9,154.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,43,1,9147,0,1,140.0,1,37,37,6,6,122.9,0,0,1,1,1,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,0 +1,42,1,9070,0,1,100.0,1,3,2,2,2,115.9,0,0,1,1,1,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,2 +1,17,1,171,0,1,128.0,1,1,1,4,10,134.7,0,0,1,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,141.0,1,1,1,9,9,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,110.0,1,37,37,7,7,133.9,0,0,1,1,1,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,0 +1,43,1,9773,0,1,119.0,1,19,37,5,5,105.0,1,0,1,1,1,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,2 +2,43,1,9991,1,1,140.0,1,37,37,4,1,122.7,0,0,1,1,0,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,135.0,1,37,1,3,5,121.0,0,0,1,1,1,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,123.0,1,3,1,2,3,124.1,1,0,1,1,1,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,0 +1,17,1,9670,0,1,132.0,1,19,1,5,4,119.1,0,0,0,1,0,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,5,9254,0,1,130.0,1,37,38,9,9,122.7,1,0,0,1,0,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9147,0,1,117.0,1,1,38,8,9,117.0,1,0,1,1,0,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,140.0,1,19,19,9,6,135.4,1,0,1,1,1,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,162.0,1,37,37,9,6,132.0,0,0,0,1,0,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,139.0,1,19,38,4,9,128.5,1,0,1,1,1,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,0 +4,39,1,9991,1,1,130.0,1,38,19,9,7,148.0,0,0,1,1,1,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +5,43,1,9500,0,1,131.0,1,1,38,5,5,118.8,0,0,1,1,1,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,5,9238,0,1,126.0,1,38,1,9,5,125.7,1,0,1,1,1,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,1 +1,53,1,9085,0,42,140.0,1,1,1,4,3,140.0,1,0,0,1,1,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,128.0,1,1,1,4,5,120.8,1,0,1,1,1,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,139.0,1,37,37,9,6,133.5,1,0,1,1,1,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,150.0,1,38,38,4,1,150.0,1,0,1,1,0,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,9147,0,1,133.1,1,1,1,4,4,95.0,0,0,1,1,0,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9853,0,1,140.0,1,37,19,9,8,122.3,0,0,1,1,1,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,0 +1,43,1,8014,1,1,120.0,1,38,19,5,4,118.3,0,0,1,1,1,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,2 +1,7,1,9130,0,3,140.0,1,2,38,2,3,140.0,1,0,1,0,0,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,122.0,1,9,19,90,6,103.4,0,0,1,1,1,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,1 +2,39,1,9070,0,19,133.1,1,37,37,9,10,126.3,0,0,1,0,0,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,160.0,1,38,38,7,7,147.8,0,0,1,1,1,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,2 +1,39,1,9238,0,12,100.0,1,37,37,9,9,124.3,0,0,1,1,0,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,1 +1,18,2,8014,1,1,117.0,1,3,1,3,4,111.8,1,0,1,1,1,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,38,37,7,7,140.0,0,0,1,1,0,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,0 +1,43,1,9853,0,1,140.0,1,3,1,3,3,128.3,1,0,1,1,1,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,127.0,1,37,38,9,9,120.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,8014,1,1,161.0,1,19,37,4,10,100.0,0,0,1,1,0,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,1 +1,16,4,9500,0,1,145.0,1,1,1,4,4,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,1 +1,7,1,9853,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,0 +1,1,2,171,0,1,127.0,1,2,19,5,5,139.6,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,148.0,1,19,19,4,4,133.8,0,0,1,1,1,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,140.0,1,19,19,1,1,129.5,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,171,0,1,129.0,1,37,37,9,9,122.0,1,0,1,0,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,1,12,3,10,131.6,1,0,1,1,1,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,130.0,1,38,37,3,6,135.6,1,0,1,1,1,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,0 +1,51,1,9991,1,39,120.0,1,1,4,4,10,118.1,0,0,1,1,0,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,0 +1,39,1,9853,0,19,133.1,1,19,4,9,4,116.0,1,0,1,1,1,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9238,0,1,133.1,1,1,37,8,9,118.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,4,9500,0,1,125.0,1,19,1,1,1,117.8,1,0,1,1,1,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,141.0,1,1,38,4,5,125.0,1,0,1,1,1,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,121.0,1,38,38,7,5,120.0,1,0,1,1,1,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,2 +1,17,3,9500,0,1,142.0,1,3,3,3,3,132.9,1,0,1,1,0,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,0 +1,44,1,9238,0,39,140.0,1,37,19,191,102,136.1,1,0,0,1,1,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,2 +1,39,1,9991,1,2,140.0,1,3,3,2,2,155.7,1,0,1,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9119,0,1,135.0,1,12,19,5,5,121.0,0,0,1,1,0,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,135.0,1,3,3,2,2,123.0,1,0,1,0,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,117.0,1,1,1,4,4,117.7,1,0,1,1,0,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +1,43,1,171,0,1,120.0,1,3,3,2,2,120.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,1,38,1,7,120.0,0,0,1,1,1,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,1 +1,17,3,9238,0,1,122.0,1,19,19,7,7,117.5,1,0,1,1,1,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,1,37,37,9,9,144.2,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +4,39,1,9500,0,1,140.0,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,131.0,1,19,19,9,9,139.8,1,0,1,1,1,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,127.0,1,3,3,2,5,100.0,0,0,1,1,1,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,2 +1,39,1,9085,0,1,133.1,1,3,19,2,9,110.0,0,0,1,1,1,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,0 +4,39,1,9500,0,19,133.1,1,38,1,9,4,120.0,0,0,1,1,1,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,1 +1,16,1,9085,0,1,150.0,1,3,3,2,1,153.5,1,0,1,1,1,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,0 +1,1,1,9853,0,1,153.0,1,19,37,9,9,153.7,0,0,1,1,1,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,130.0,1,19,19,3,8,131.8,0,0,1,1,1,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,1,2,9853,0,1,131.0,1,1,1,2,9,121.9,1,0,1,1,1,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,136.0,1,3,3,3,3,130.8,0,0,1,1,1,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,126.0,1,1,19,4,0,120.1,0,1,1,1,1,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,1 +1,44,1,9003,0,1,120.0,1,3,2,2,6,120.0,1,0,1,1,0,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,2 +2,39,1,9130,0,19,133.1,1,2,1,2,9,157.0,1,0,1,1,0,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,1 +1,7,1,9853,0,3,150.0,1,19,19,4,5,150.0,0,0,0,0,1,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,51,1,9070,0,12,133.1,1,37,19,3,7,106.6,0,0,0,1,1,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,2 +1,1,2,9085,0,1,157.0,1,3,3,5,2,153.9,1,0,1,1,1,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,1 +1,1,2,171,0,1,117.0,1,1,19,3,3,121.6,1,0,1,1,1,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,1 +1,1,2,9147,0,1,113.0,1,38,38,9,5,107.4,1,0,1,1,0,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,2 +1,39,2,9147,0,12,133.1,1,19,38,9,9,120.0,1,0,0,0,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,152.0,1,37,37,9,9,139.0,1,0,1,1,1,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,138.0,1,1,19,9,9,124.0,0,0,1,1,1,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,1 +2,39,1,9853,0,1,110.0,1,37,37,9,9,95.5,0,0,0,0,1,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9130,0,1,150.0,1,19,19,4,4,130.0,0,0,1,0,0,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,3,9119,0,1,138.0,1,1,19,4,3,125.4,1,0,1,1,0,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,0 +1,17,6,9147,0,1,120.0,1,37,38,9,9,115.5,1,0,0,0,0,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,2 +1,1,3,9670,0,1,134.0,1,14,11,0,0,128.4,1,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,145.0,1,38,37,9,7,129.3,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,18,6,9500,0,1,126.0,1,37,37,5,5,122.8,1,0,1,1,1,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,133.0,1,1,1,4,4,129.2,1,0,1,1,1,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,0 +1,44,1,9070,0,39,120.0,1,1,19,4,7,120.0,0,0,0,0,0,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,136.0,1,19,38,9,9,121.7,0,1,1,1,1,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,126.0,1,1,1,9,10,126.7,1,0,1,1,1,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,1 +1,1,3,9085,0,1,134.0,1,38,19,9,5,129.1,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,133.1,1,1,37,9,9,117.0,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,5,9238,0,1,130.0,1,19,1,5,5,130.0,1,0,1,1,1,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,8014,1,40,140.0,1,19,37,5,9,148.0,0,0,1,1,1,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,137.0,1,3,38,1,9,131.4,0,0,1,0,0,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,0 +1,1,2,9670,0,1,123.0,1,1,38,7,7,120.6,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,1 +1,17,2,9773,0,1,139.0,1,3,1,2,7,124.0,1,0,1,1,1,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,0 +1,1,2,171,0,1,152.0,1,38,19,9,9,151.7,1,0,1,1,1,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,110.0,1,37,37,9,4,114.3,1,0,1,1,0,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,2 +1,51,1,9991,1,1,120.0,1,38,3,5,3,128.2,0,0,0,1,0,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,141.0,1,3,2,2,2,133.3,1,0,1,1,0,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,2 +1,5,1,171,0,1,137.0,1,3,19,1,10,144.7,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,2 +1,43,1,9003,0,1,130.0,1,37,1,5,4,130.0,0,0,1,1,0,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,0 +1,18,1,9773,0,1,135.0,1,1,1,3,3,129.8,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,150.0,1,38,38,9,8,150.0,1,0,1,1,0,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,1 +1,17,2,9773,0,1,150.0,1,1,1,4,5,130.8,0,0,1,1,0,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9773,0,1,123.0,1,1,1,4,7,125.1,1,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,1 +1,17,4,9119,0,1,129.0,1,34,36,0,5,118.9,1,0,1,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,0 +1,1,2,9500,0,1,144.0,1,38,37,9,9,128.8,1,0,1,1,0,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,130.0,1,38,38,9,9,150.0,0,0,0,0,0,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,128.0,1,1,1,7,7,120.5,1,0,1,1,1,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,2 +1,7,1,9500,0,3,140.0,1,3,1,4,4,140.0,0,0,1,1,1,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,134.0,1,19,19,1,1,120.4,1,0,1,1,0,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,147.0,1,1,38,4,8,141.1,1,0,1,1,1,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,126.0,1,3,1,5,5,125.7,0,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,1 +2,1,4,9853,0,1,134.0,1,37,37,5,7,122.5,0,1,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,148.0,1,38,38,4,9,131.6,0,0,1,1,0,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,0 +2,39,1,9085,0,9,133.1,1,1,1,4,4,120.0,1,0,1,0,0,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,0 +1,39,1,9254,0,1,150.0,1,3,1,3,4,122.3,0,0,1,1,0,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,125.0,1,19,37,3,7,126.8,0,0,1,1,1,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,2 +1,18,1,9670,0,1,128.0,1,19,3,9,7,120.0,1,0,1,1,1,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,160.0,1,2,1,4,4,137.3,1,0,1,1,1,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,1 +2,39,1,9238,0,42,170.0,1,19,38,8,8,159.5,0,0,1,1,0,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9773,0,1,143.0,1,1,1,4,9,144.1,1,0,1,1,0,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,9991,1,1,130.0,1,37,37,9,9,127.8,0,0,1,1,0,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,2 +1,51,1,9147,0,1,130.0,1,19,38,9,8,115.7,0,0,1,1,0,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,2 +1,17,3,9773,0,1,135.0,1,1,19,5,7,135.0,0,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,135.0,1,1,1,9,9,133.3,0,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,6,9500,0,1,136.0,1,1,1,4,5,123.3,0,0,1,0,1,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,0 +1,1,2,9500,0,1,143.0,1,5,5,2,2,137.8,0,0,1,1,0,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,133.1,1,1,19,141,114,140.0,1,0,1,1,1,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,17,6,9670,0,1,117.0,1,38,19,0,1,114.6,0,0,1,0,0,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,133.1,1,1,19,4,10,145.8,0,0,1,1,0,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,129.0,1,1,37,4,9,118.2,0,0,1,1,0,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,1 +1,7,1,9500,0,3,130.0,1,37,37,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,1 +1,17,4,9670,0,1,135.0,1,38,38,9,7,127.0,1,0,1,1,1,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,126.0,1,1,1,90,90,119.0,1,0,0,1,0,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9773,0,1,120.0,1,1,38,5,5,121.4,0,0,1,0,1,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,0 +1,1,1,9085,0,1,136.0,1,1,38,9,9,130.8,1,0,1,1,1,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,131.0,1,19,37,9,9,123.8,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,144.0,1,19,19,9,9,142.6,1,0,1,1,1,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,126.0,1,38,38,7,8,126.7,1,0,1,1,1,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,3,171,0,1,125.0,1,37,37,5,10,120.5,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,7,1,9130,0,2,110.0,1,19,19,4,8,110.0,1,0,1,1,0,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,3,1,2,8,150.0,0,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,5,171,0,1,139.0,1,19,3,9,2,136.9,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,1,9147,0,1,100.0,1,38,38,5,5,101.8,1,0,1,1,1,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,2 +1,44,2,9238,0,39,150.0,1,3,19,4,9,147.0,1,0,1,1,1,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,39,1,9254,0,19,133.1,1,37,37,9,4,100.0,0,0,1,1,0,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,0 +1,17,1,9130,0,1,130.0,1,19,38,4,7,122.5,0,0,1,1,0,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,19,37,1,1,140.0,0,0,0,1,0,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,2 +1,17,1,9070,0,1,157.0,1,3,3,3,3,146.2,0,0,1,1,0,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,9500,0,1,150.0,1,37,19,8,4,130.8,0,0,1,1,0,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,133.1,1,19,19,7,7,130.0,1,0,1,1,1,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,150.0,1,19,1,9,8,150.0,1,0,1,1,0,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,127.0,1,1,19,7,7,121.8,1,0,1,1,1,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,2 +1,1,1,9853,0,1,148.0,1,19,19,5,7,141.7,0,0,1,1,1,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,130.0,1,1,19,9,9,133.4,0,0,1,1,1,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,123.0,1,37,38,3,3,122.0,0,0,0,1,0,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,2 +1,17,1,9070,0,1,132.0,1,37,38,9,7,138.0,0,0,1,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,146.0,1,2,19,3,9,130.3,1,0,1,1,0,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,1 +1,44,1,171,0,39,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,116.0,1,3,1,3,4,115.7,0,0,1,0,0,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,2 +1,1,1,9670,0,1,130.0,1,19,37,4,5,118.8,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,124.0,1,37,37,7,9,121.2,0,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,127.0,1,19,37,9,3,120.7,1,0,1,1,1,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +2,43,1,9070,0,2,140.0,1,37,37,6,6,140.0,1,0,1,1,0,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,1 +1,39,1,9500,0,1,100.0,1,3,1,2,5,121.3,1,0,1,1,1,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,2 +1,39,1,9991,1,19,133.1,1,37,37,9,6,105.3,0,0,0,1,1,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9670,0,1,155.0,1,1,19,4,8,134.7,1,0,1,1,1,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,15,1,9119,0,1,160.0,32,1,3,143,152,160.0,0,0,0,1,1,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,2 +1,53,1,9670,0,42,140.0,1,19,37,3,6,140.0,1,0,0,1,1,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,2 +1,1,6,9853,0,1,140.0,1,38,38,9,7,137.6,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,140.0,1,19,19,7,7,129.5,1,0,1,1,1,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,1 +1,39,1,9773,0,19,133.1,1,19,19,3,4,104.0,0,0,0,0,1,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,130.0,1,37,37,9,9,118.8,0,0,0,1,0,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,2 +1,1,4,9500,0,1,136.0,1,1,1,9,1,133.0,1,0,1,1,1,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,143.0,1,38,38,9,9,138.8,1,0,1,1,1,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,1 +2,39,1,9147,0,1,140.0,1,37,37,6,10,131.8,0,0,1,1,1,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,2 +1,39,1,9085,0,1,130.0,1,4,1,2,9,120.0,0,0,1,0,1,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,2 +1,1,4,9500,0,1,148.0,1,19,19,4,5,137.0,1,0,1,1,1,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,120.0,1,37,19,5,3,156.0,1,0,1,1,0,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,9853,0,1,133.1,1,12,1,4,0,134.8,1,0,1,1,1,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,122.0,1,1,1,9,8,120.3,0,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,156.0,1,19,38,9,5,170.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,3,171,0,1,129.0,1,38,37,9,3,127.3,1,0,0,0,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,142.0,1,38,38,9,10,127.0,1,0,1,1,1,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,150.0,1,38,19,3,3,120.1,0,0,1,0,1,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,141.0,1,37,37,9,9,126.7,1,0,0,1,1,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,43,3,9147,0,1,127.0,21,3,37,3,3,117.9,1,0,1,1,1,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,1,120.0,1,1,19,4,7,110.0,0,0,1,1,0,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,0 +2,42,1,9254,0,1,136.0,1,2,2,134,112,130.0,1,0,1,1,0,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,0 +1,18,1,9119,0,1,122.0,1,19,1,90,3,116.1,1,0,0,0,0,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9500,0,1,120.0,1,2,4,4,5,136.6,0,0,1,1,0,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,0 +1,18,1,9070,0,1,143.0,1,38,38,7,5,141.6,0,0,1,1,1,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,1 +1,43,1,9119,0,1,140.0,1,37,38,5,7,146.5,0,0,1,1,0,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,125.0,1,19,19,9,9,121.5,1,0,1,1,1,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,1,0,1,1,1,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,159.0,1,3,3,2,2,165.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,127.0,1,3,1,2,9,119.3,1,0,1,1,1,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,1 +1,17,6,9238,0,1,117.0,1,1,38,4,7,114.6,0,0,1,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9119,0,1,148.0,1,19,19,9,8,129.8,0,0,1,0,0,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,2 +1,17,4,9119,0,1,127.0,1,19,19,5,5,120.4,1,0,0,0,0,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,5,9500,0,1,144.0,1,19,1,5,3,141.0,1,0,1,1,1,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,1 +1,17,3,9556,0,1,126.0,1,19,19,9,4,119.0,1,0,1,1,1,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,0 +1,1,4,9119,0,1,126.0,1,3,19,2,9,123.6,1,0,1,1,0,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,120.0,1,1,2,144,123,125.3,0,0,0,1,0,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,2 +1,39,1,9070,0,1,130.0,1,1,19,4,4,110.0,1,0,1,1,1,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,140.0,1,37,37,90,5,115.5,0,0,1,0,0,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,130.0,1,38,38,9,9,120.0,0,0,1,1,1,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,0 +1,17,2,9853,0,1,141.0,1,3,1,1,5,130.2,1,0,1,1,1,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,2 +2,1,1,9500,0,1,156.0,1,1,1,9,10,135.5,0,0,1,1,1,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,1 +2,7,1,8014,1,3,170.0,1,19,19,4,4,170.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,2,9147,0,1,134.0,1,37,19,9,8,126.3,1,0,1,1,1,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,122.0,1,12,12,5,7,126.6,1,0,1,1,1,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,38,38,9,7,138.8,1,0,1,1,1,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,132.0,1,37,37,5,7,127.5,1,0,1,1,1,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,1 +1,16,2,9238,0,1,130.0,1,37,37,5,6,126.9,1,0,1,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,110.0,1,3,2,3,3,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,127.0,1,2,19,4,5,121.8,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,1 +1,39,1,9085,0,12,133.1,1,38,19,9,8,138.3,1,0,0,0,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +1,39,1,9147,0,19,133.1,1,3,1,3,5,153.2,1,0,0,1,1,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,37,19,5,9,130.0,1,0,1,1,1,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +2,39,2,9147,0,1,130.0,1,19,37,4,7,140.0,0,0,1,1,0,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,128.0,1,19,19,7,7,124.4,0,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,19,3,8,150.3,1,0,1,1,0,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,143.0,1,38,19,7,9,129.5,1,0,1,1,1,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,1 +1,42,1,9500,0,6,141.0,1,37,1,9,4,145.0,0,0,1,1,1,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,1 +1,17,1,9238,0,1,160.0,1,19,37,6,6,144.3,0,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,2,9238,0,1,133.1,1,19,19,4,5,120.6,1,0,1,1,1,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,37,19,9,3,116.5,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,127.0,1,1,1,3,4,130.2,1,0,1,1,0,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,4,9254,0,1,131.0,1,38,36,9,9,124.0,1,0,1,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,1 +1,1,5,9254,0,1,120.0,1,37,37,9,7,127.0,1,0,1,1,1,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,135.0,1,34,34,0,0,134.1,1,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9254,0,1,133.1,1,37,37,9,6,121.5,0,0,1,1,0,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,144.0,1,38,38,5,7,128.0,1,0,1,1,1,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,132.0,1,1,19,6,6,124.7,1,0,1,1,0,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,1 +1,17,2,9991,1,1,116.0,1,37,19,9,4,118.5,0,0,1,1,0,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,133.1,1,1,1,9,1,103.0,1,0,1,1,1,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,16,5,9085,0,1,134.0,1,19,37,8,8,123.9,1,0,1,1,0,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,2 +1,43,1,9773,0,1,114.0,1,37,38,9,5,107.4,1,0,1,0,0,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,38,37,5,7,120.0,1,0,1,1,1,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,135.0,1,1,38,4,6,122.1,0,1,0,0,0,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,0 +2,39,1,8014,1,1,150.0,1,37,37,7,5,143.0,0,0,1,1,1,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,1 +1,44,1,9991,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,1 +4,39,1,9238,0,19,133.1,1,37,37,9,10,103.5,0,0,1,0,1,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,126.0,1,19,38,9,9,132.0,1,0,1,1,1,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,125.0,1,1,1,7,3,143.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,39,1,9147,0,1,120.0,1,37,1,9,1,122.7,0,0,1,0,1,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +2,7,1,8014,1,3,124.4,1,37,34,0,0,130.0,0,0,1,1,1,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,1 +1,18,1,9085,0,1,106.0,1,1,19,3,5,104.6,0,0,1,0,0,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,2 +1,44,1,9119,0,39,160.0,1,3,38,2,3,160.0,0,0,0,0,0,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,148.0,1,3,19,2,5,130.0,0,0,1,1,1,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,2 +1,1,1,9130,0,1,133.0,1,1,37,9,9,123.2,1,0,1,1,1,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,17,5,9500,0,1,130.0,1,19,1,9,4,128.8,1,0,1,1,1,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,149.0,1,19,1,9,9,137.8,1,0,1,1,0,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,1 +4,43,1,9670,0,1,150.0,1,37,37,9,6,110.0,0,0,1,1,1,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,1 +2,39,1,9119,0,1,110.0,1,19,19,0,5,137.0,0,0,0,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9556,0,1,122.0,1,19,19,3,10,113.3,1,0,1,1,1,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,140.0,1,1,19,4,5,127.5,0,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,3,9070,0,1,128.0,1,37,37,5,5,124.5,1,0,1,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,1 +1,44,1,9085,0,39,150.0,6,5,4,1,1,150.0,0,0,1,1,1,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,131.0,1,38,37,7,7,127.2,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,130.0,1,37,37,9,6,126.5,1,0,1,1,1,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,1 +1,17,1,9119,0,1,116.0,1,19,37,90,5,116.7,1,0,1,1,0,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,0 +1,17,3,9853,0,1,140.0,1,38,38,5,7,126.7,1,0,1,1,1,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,0 +1,17,4,9238,0,1,129.0,1,37,37,9,8,117.1,1,0,1,1,0,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,144.0,1,19,19,9,9,130.5,1,0,1,1,1,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,124.0,1,19,1,7,10,116.0,1,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,122.0,1,1,19,4,4,127.3,1,0,0,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,12,12,4,1,155.3,1,1,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +2,15,1,9773,0,1,133.1,41,37,37,9,6,100.0,0,0,1,1,1,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,138.0,41,1,1,9,9,126.5,1,0,1,1,1,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,1 +1,18,6,9500,0,1,142.0,1,38,37,9,5,128.0,1,0,1,0,1,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,44,1,9085,0,39,140.0,1,3,1,2,3,140.0,1,0,1,1,1,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,2 +1,42,1,9991,1,1,150.0,1,19,19,5,5,113.7,0,0,1,1,0,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,135.0,1,1,19,5,5,130.1,1,0,1,1,1,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,2,9254,0,1,120.0,1,19,1,9,8,117.2,0,0,1,1,0,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,130.0,1,19,19,9,7,119.5,1,0,1,1,0,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,2 +1,17,4,9147,0,1,133.0,1,1,1,4,5,136.2,1,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,15,1,9147,0,1,133.1,21,1,3,192,3,100.0,0,0,0,1,0,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,2 +1,1,1,9670,0,1,112.0,1,37,1,7,0,110.6,0,0,1,1,1,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9238,0,1,117.0,1,19,19,9,9,117.0,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9991,1,1,140.0,1,1,37,9,8,154.5,0,0,1,1,1,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,97.0,1,0,1,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,119.0,1,37,37,5,4,118.0,1,0,1,1,0,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,112.0,1,19,38,5,7,107.1,1,0,1,1,1,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,1 +2,18,2,8014,1,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,144.0,1,37,37,9,6,129.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,120.0,100,1,1,4,7,119.5,0,0,0,1,1,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,2 +1,17,5,9500,0,1,136.0,1,19,38,5,8,130.3,1,0,1,1,1,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,126.0,1,19,19,7,9,121.3,1,0,1,1,1,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,135.0,1,1,4,5,3,124.9,0,0,1,1,1,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,4,9670,0,1,128.0,1,38,38,3,7,121.0,1,0,1,1,1,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,15,1,9556,0,1,114.0,26,3,19,122,144,114.0,0,0,1,1,1,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,2 +1,17,2,9238,0,1,125.0,1,19,19,3,3,118.0,1,0,1,1,1,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,118.0,1,37,37,7,7,114.2,0,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,2 +1,17,1,9147,0,1,115.0,1,19,37,5,7,112.9,1,0,1,0,0,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,120.0,1,19,37,9,9,118.3,0,0,0,0,0,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9119,0,10,133.1,1,34,37,0,0,128.8,1,0,1,1,0,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9238,0,1,115.0,1,19,38,5,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,137.0,1,37,37,9,9,132.8,1,0,1,1,1,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9003,0,1,148.0,1,19,37,9,9,131.6,1,0,1,1,0,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9773,0,1,161.0,1,1,19,4,7,148.4,0,0,1,1,1,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,1 +2,43,1,9991,1,1,133.1,1,37,37,9,7,113.5,0,0,1,1,1,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,132.0,1,1,1,9,9,133.8,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,1,9254,0,1,125.0,1,37,37,9,9,122.9,0,0,1,1,0,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,123.0,1,3,1,9,3,121.3,1,0,1,1,1,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,2 +1,17,1,9991,1,1,154.0,1,38,38,4,5,134.1,0,0,1,1,1,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,2 +1,44,1,9130,0,39,140.0,1,19,19,5,5,140.0,1,0,0,0,1,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,2 +1,53,1,9085,0,42,170.0,1,1,19,4,7,170.0,0,0,1,1,1,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,1 +1,17,5,9147,0,1,131.0,1,19,38,3,10,119.8,1,0,1,1,1,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,141.0,1,19,19,9,9,126.0,1,0,1,1,1,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,1 +1,1,3,9500,0,1,137.0,1,19,19,5,4,131.5,1,0,1,1,1,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,118.0,1,19,1,9,3,113.5,1,0,0,1,1,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,100.0,1,37,37,99,99,100.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9130,0,1,120.0,6,1,3,9,2,120.0,0,0,0,1,1,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,2 +1,1,1,9147,0,1,127.0,1,19,19,5,5,129.8,1,0,1,1,1,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,134.0,1,37,37,9,9,129.8,1,0,1,1,1,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,121.0,1,37,37,5,9,116.5,1,0,1,1,1,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9070,0,1,117.0,1,19,37,5,5,131.0,1,0,0,0,0,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,0 +1,17,1,9238,0,1,125.0,1,1,38,9,7,119.8,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,5,9500,0,1,140.0,1,1,1,4,3,131.1,1,0,1,1,1,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,1 +1,1,5,9254,0,1,101.0,1,3,19,3,9,98.9,1,0,1,1,0,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,130.0,1,37,38,7,9,117.8,0,0,0,1,1,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,128.0,1,34,19,3,0,141.0,1,0,1,0,1,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,150.0,1,38,37,9,9,130.8,0,0,1,1,0,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,125.0,1,1,19,4,7,116.6,0,0,1,1,0,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,1 +1,43,1,9670,0,1,130.0,1,34,34,0,0,114.8,0,0,1,1,0,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,1 +2,42,1,9003,0,1,120.0,1,3,1,2,2,113.3,0,0,1,1,0,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +4,39,1,9991,1,1,133.1,1,37,37,5,5,138.7,0,0,1,1,1,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,0 +1,39,1,9238,0,1,140.0,1,34,34,0,0,114.0,1,0,1,0,1,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9991,1,1,133.1,1,37,19,3,10,136.1,0,0,1,1,0,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9070,0,1,110.0,1,37,37,7,7,110.2,0,0,1,1,0,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,150.0,1,4,5,4,2,150.0,0,0,1,1,0,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,2 +1,1,2,9119,0,1,149.0,1,38,38,5,5,141.0,0,0,1,1,0,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,2 +1,42,1,9085,0,39,150.0,1,1,1,4,7,150.0,1,0,1,1,1,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,1,38,4,9,131.7,1,0,1,1,1,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,42,1,9853,0,1,120.0,1,1,37,5,5,113.9,1,0,1,1,1,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9085,0,1,130.0,1,37,19,9,7,130.0,1,0,1,1,1,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,2 +1,17,4,9500,0,1,133.0,1,38,37,5,7,126.4,1,0,1,1,0,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,147.0,1,3,1,2,3,131.6,0,0,1,1,1,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,1 +1,39,1,9991,1,12,133.1,1,37,37,9,9,121.5,0,0,1,1,0,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,2 +2,1,1,9991,1,1,150.0,1,37,37,9,9,131.8,0,0,1,0,1,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,0 +1,43,4,8014,1,1,116.0,1,34,34,0,0,116.2,0,0,1,1,0,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,1 +1,44,1,9130,0,39,140.0,1,1,19,4,7,140.0,0,0,1,1,0,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,2 +1,17,1,9773,0,1,136.0,1,3,1,2,3,132.5,1,0,1,1,1,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,1 +4,39,1,9500,0,19,110.0,1,37,38,5,5,151.0,0,0,0,0,0,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,0 +1,17,2,9254,0,1,123.0,1,19,19,5,5,113.2,1,0,0,1,1,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,137.0,1,3,19,2,9,122.3,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +4,39,1,9254,0,1,120.0,1,37,19,9,9,131.0,1,0,1,1,0,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9556,0,1,123.0,1,19,19,4,9,113.8,1,0,1,1,1,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,150.0,1,3,37,4,7,139.5,0,0,1,1,0,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,145.0,1,38,37,3,9,138.4,1,0,1,0,1,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,2 +1,39,1,8014,1,1,140.0,1,37,37,9,7,122.0,1,0,0,0,0,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,0 +2,43,3,9991,1,1,120.0,1,37,37,9,9,128.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,6,9500,0,1,126.0,1,12,37,5,9,121.8,1,0,1,1,1,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,0 +2,39,1,9991,1,1,130.0,1,37,37,9,9,140.0,1,0,1,1,0,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,130.0,1,37,19,9,8,130.8,0,0,1,1,0,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,2 +1,1,3,9070,0,1,125.0,1,19,38,9,9,125.4,1,0,1,1,1,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,132.0,1,38,38,4,9,119.1,0,0,1,1,1,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,1 +4,7,1,9147,0,3,130.0,1,19,1,5,5,130.0,0,0,1,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,130.0,1,19,19,7,7,121.6,1,0,1,1,1,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9773,0,1,126.0,1,37,38,5,5,129.5,1,0,0,0,1,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,133.0,1,38,38,5,5,123.2,0,0,1,1,1,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,140.0,1,37,37,9,9,121.0,0,0,1,1,1,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,3,9500,0,1,131.0,1,37,37,9,9,118.0,1,0,1,1,1,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,2 +1,1,1,9670,0,1,120.0,1,38,19,4,8,115.1,0,0,1,1,1,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,2 +1,17,5,9773,0,1,111.0,1,19,12,7,3,115.9,1,0,1,1,1,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,135.0,1,1,19,9,7,123.5,1,0,1,1,1,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,37,4,9,130.0,1,0,1,1,1,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,2 +1,44,1,9119,0,39,130.0,1,3,19,3,4,130.0,0,0,1,1,0,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,2 +1,44,1,9147,0,39,130.0,22,2,37,2,8,130.0,0,0,0,0,0,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,119.0,1,37,37,9,6,119.0,0,0,0,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9500,0,1,142.0,1,38,37,9,8,130.8,1,0,1,1,1,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,136.0,1,38,1,9,4,129.7,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,1 +1,42,1,9003,0,1,140.0,1,19,19,4,4,140.0,1,0,1,1,0,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,19,133.1,1,1,19,4,10,114.0,0,0,1,1,0,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,0 +1,17,5,9670,0,1,125.0,1,19,30,7,7,118.4,1,0,1,1,1,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,2 +1,1,2,9500,0,1,135.0,1,19,19,9,10,122.9,1,0,1,1,1,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,100.0,1,37,37,9,9,108.0,1,0,1,1,0,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,127.0,1,37,37,9,9,119.3,1,1,1,1,0,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,133.0,1,38,19,9,10,125.0,1,0,1,1,1,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,116.0,1,3,3,3,3,110.1,1,0,1,1,0,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,133.1,1,1,1,5,8,123.0,1,0,1,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,144.0,1,37,37,9,3,150.5,0,0,1,1,1,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,133.0,1,3,1,2,4,130.2,0,0,1,1,0,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,116.0,1,38,37,9,6,109.7,1,0,1,1,1,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,1 +1,18,3,9853,0,1,128.0,1,38,37,5,9,116.8,1,0,1,0,0,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,150.0,1,37,37,4,9,132.1,1,0,0,1,1,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,0 +1,53,1,9085,0,42,160.0,1,1,19,4,6,155.7,1,0,1,1,1,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,130.0,1,19,1,9,9,131.9,0,0,1,1,1,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,126.0,1,3,3,2,2,121.1,0,0,0,1,1,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,133.0,1,38,38,7,7,147.0,0,0,1,1,1,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,137.0,1,37,37,9,9,126.2,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,149.0,1,38,37,5,5,137.1,1,0,1,1,1,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,143.0,1,2,37,1,1,133.2,1,0,1,1,1,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,2 +1,17,5,9070,0,1,122.0,1,19,38,5,7,119.6,0,0,0,0,1,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,137.0,1,19,38,9,9,127.2,1,0,1,1,1,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,110.0,1,1,1,4,4,125.9,0,0,1,1,0,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,130.0,1,1,38,5,9,118.1,0,0,0,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9853,0,1,130.0,1,37,19,9,5,102.5,0,0,1,1,1,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.0,1,19,1,9,1,122.2,0,0,1,1,1,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,39,140.0,1,3,3,2,2,140.0,1,0,1,1,1,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,134.0,1,37,38,9,9,120.3,1,0,1,1,1,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,133.1,1,1,37,4,7,110.0,0,0,1,1,0,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,0 +1,15,1,9085,0,1,133.1,41,3,3,4,2,101.3,0,0,1,1,1,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,113.0,1,1,1,5,4,106.7,1,0,0,1,1,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,0 +2,39,1,9991,1,19,133.1,1,37,37,5,5,111.9,1,0,1,1,0,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,5,9853,0,1,134.0,1,19,38,4,8,122.1,1,0,1,1,1,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,0 +1,1,2,9853,0,1,133.0,1,19,37,4,9,130.2,1,0,1,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,127.0,1,19,19,5,5,160.0,0,0,1,1,0,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,1 +1,7,1,9500,0,3,130.0,1,37,38,7,7,130.0,1,0,1,1,1,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,140.0,1,19,38,7,7,136.5,1,0,1,1,1,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,1 +2,39,1,9773,0,19,133.1,1,37,37,9,6,110.0,0,0,1,0,1,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,0 +2,39,1,8014,1,1,120.0,1,34,34,99,99,101.8,0,0,1,0,1,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9070,0,1,135.0,1,1,1,4,7,129.8,1,0,1,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,17,5,9147,0,1,131.0,1,37,38,5,5,128.9,0,0,1,1,1,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,1 +1,1,4,9070,0,1,139.0,1,3,19,1,5,138.3,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,6,9500,0,1,122.0,1,1,1,3,7,114.3,1,0,1,1,0,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,2 +1,1,1,9500,0,1,150.0,1,37,37,9,7,136.5,1,0,1,1,1,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,3,1,2,8,121.4,0,0,1,1,0,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,117.0,1,19,19,194,193,117.4,1,0,1,1,1,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,2 +2,39,1,9085,0,1,133.1,1,36,36,99,5,128.2,0,0,1,0,1,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,121.0,1,3,1,2,3,114.0,0,0,1,1,0,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,2 +1,51,1,9853,0,1,139.0,1,1,1,4,10,134.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9070,0,1,137.0,1,1,1,3,1,141.2,1,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,1,133.1,1,37,37,6,3,140.0,0,0,0,1,0,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,1,9147,0,1,126.0,1,37,37,4,7,116.9,0,0,1,1,0,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,2 +1,44,1,9130,0,39,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +2,43,1,9991,1,1,130.0,1,37,37,9,9,128.2,0,0,1,1,1,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,131.0,1,19,9,5,3,118.4,0,0,1,1,1,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,138.0,1,19,19,3,3,131.0,1,0,1,1,1,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,1,130.0,1,37,12,9,8,129.4,1,0,0,0,0,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,9991,1,1,134.0,1,37,37,9,9,113.7,0,0,1,1,1,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,5,9853,0,1,117.0,1,38,38,9,7,114.6,1,0,1,1,1,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,145.0,1,3,3,4,4,153.1,1,0,1,1,1,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,2 +1,43,1,9085,0,1,130.0,1,19,38,4,9,130.0,1,0,1,0,1,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9119,0,1,146.0,1,37,37,9,9,148.5,1,0,1,1,0,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,136.0,1,1,1,4,4,124.1,0,0,1,1,1,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,100.0,1,37,38,9,4,140.0,0,0,1,1,0,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,2 +1,44,1,9003,0,39,180.0,1,1,3,4,2,180.0,0,0,1,1,1,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,1 +1,15,1,9773,0,1,120.0,26,19,19,4,5,120.0,1,0,1,1,1,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,141.0,1,4,19,4,10,100.0,0,0,1,1,0,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,1 +1,44,1,9085,0,1,150.0,1,29,10,6,6,150.0,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,5,5,9254,0,1,122.0,1,1,37,9,7,119.6,1,0,1,1,1,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,128.0,1,19,38,9,7,124.2,1,0,1,1,0,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9130,0,1,172.0,1,19,19,9,9,163.3,1,0,1,1,1,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,129.0,1,38,37,5,5,142.0,1,0,1,1,1,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,100.0,1,1,3,9,10,120.0,0,0,0,0,0,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,1 +1,1,3,9238,0,1,135.0,1,1,12,9,10,121.0,1,0,1,1,1,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,136.0,1,2,2,3,3,120.0,1,0,1,1,0,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,2 +1,1,6,9147,0,1,143.0,1,38,37,9,9,128.7,1,0,1,1,0,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,2 +1,17,2,9500,0,1,126.0,1,37,37,7,7,126.2,1,0,1,1,1,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,2 +1,17,2,9254,0,1,135.0,1,19,19,4,3,135.0,1,0,1,1,0,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,2 +1,1,2,9254,0,1,132.0,1,1,19,9,9,129.9,1,0,1,1,1,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +2,39,1,8014,1,1,120.0,1,34,34,0,0,104.0,0,0,1,1,1,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,0 +2,39,1,8014,1,9,133.1,1,37,37,8,10,100.0,1,0,1,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,43,1,9147,0,1,130.0,1,19,37,7,10,138.0,0,0,1,1,1,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,1 +1,17,2,9119,0,1,120.0,1,1,19,9,8,117.2,0,0,1,1,0,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,133.1,1,1,12,4,5,116.5,0,0,1,1,0,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,2 +1,1,1,9238,0,1,105.0,1,19,19,6,6,106.1,1,0,1,1,1,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,1,9670,0,1,118.0,1,1,19,4,8,118.7,0,0,1,1,0,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,6,9500,0,1,140.0,1,3,19,3,8,129.0,1,0,1,1,1,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,168.0,1,19,19,4,4,171.2,0,0,1,1,0,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,133.0,1,19,9,0,0,121.5,1,0,1,1,1,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,177.0,1,1,38,3,9,162.3,0,0,1,1,1,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,130.0,1,38,38,2,9,124.8,0,0,1,1,1,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,136.0,1,38,1,5,6,133.9,1,0,1,1,1,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,154.0,1,1,1,5,3,144.9,0,0,1,1,0,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,1 +1,44,1,9119,0,39,150.0,1,19,37,9,9,150.0,1,0,0,1,0,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,0 +1,1,4,9254,0,1,132.0,1,12,19,9,9,124.7,1,0,1,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,33,0,1,100.0,41,38,37,9,8,100.0,0,0,0,0,0,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9085,0,1,120.0,1,4,1,2,9,113.4,0,0,1,1,1,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,134.0,1,1,19,9,9,136.1,1,0,1,1,1,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9500,0,1,150.0,1,1,19,5,3,140.0,0,1,1,1,1,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,129.0,1,37,37,9,9,128.8,1,0,1,1,1,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +2,39,1,9500,0,1,100.0,1,37,38,4,4,130.0,0,0,1,1,0,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,2 +1,1,1,9773,0,1,140.0,1,19,37,9,6,135.8,1,0,1,1,1,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,7,1,9085,0,40,150.0,1,19,19,9,5,150.0,0,0,0,0,1,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,4,9500,0,1,148.0,1,1,37,4,8,132.0,1,0,1,1,1,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,1 +1,7,1,9119,0,40,140.0,1,3,1,2,5,140.0,0,0,1,1,0,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,163.0,1,19,1,9,7,143.1,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,18,3,9070,0,1,164.0,1,1,1,5,3,161.2,1,0,1,1,1,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,1 +1,1,6,9773,0,1,141.0,1,30,37,7,7,128.4,1,0,0,0,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,0 +1,43,2,9147,0,1,126.0,1,1,19,3,3,100.0,1,0,1,1,0,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,171,0,1,141.0,1,19,19,5,10,135.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,4,9670,0,1,117.0,1,3,3,4,4,113.2,0,0,1,1,0,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +2,43,1,9991,1,3,140.0,1,37,19,9,4,140.0,0,0,0,1,1,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,134.3,0,0,1,1,0,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,137.0,1,38,19,9,7,125.1,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,8014,1,1,130.0,1,37,37,9,6,134.0,0,0,1,1,1,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,123.0,1,37,37,7,7,119.7,0,0,1,1,0,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9147,0,1,120.0,1,37,37,9,9,104.7,1,0,1,1,0,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9238,0,1,137.0,62,1,1,9,9,129.3,0,0,1,1,1,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,1 +1,17,2,8014,1,1,122.0,1,37,19,9,9,123.8,0,0,1,1,1,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,1 +2,39,2,8014,1,1,100.0,1,34,34,0,0,100.0,1,0,1,1,1,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,1 +2,1,1,9991,1,2,120.0,1,37,37,6,3,129.2,0,0,1,1,1,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,150.0,1,3,19,2,6,150.0,0,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9991,1,1,123.0,1,1,3,4,2,113.2,0,0,1,0,0,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,0 +1,1,3,9773,0,1,130.0,1,1,37,4,5,120.9,1,0,0,1,1,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,146.0,1,19,3,4,9,127.0,0,0,1,1,0,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,44,1,171,0,39,160.0,1,19,38,9,9,160.0,1,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9085,0,39,150.0,1,38,37,6,6,150.0,1,0,1,1,1,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,1 +1,17,2,9254,0,1,136.0,1,19,19,4,7,123.1,1,0,1,1,1,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +2,39,1,9670,0,1,150.0,1,37,19,9,4,135.6,0,0,1,1,1,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,1 +1,1,6,171,0,1,134.0,1,19,37,5,5,126.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +4,39,1,9773,0,38,133.1,1,19,19,7,9,133.0,0,0,1,1,1,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,2 +1,17,2,9119,0,1,120.0,1,10,12,9,9,120.4,1,0,1,1,0,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,17,4,9254,0,1,113.0,1,38,19,7,7,107.4,1,0,1,1,1,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,137.0,1,1,19,4,5,136.3,0,0,1,1,1,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,142.0,1,37,37,9,7,132.7,1,0,1,1,1,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,1 +1,18,5,9085,0,1,121.0,1,5,3,2,3,111.9,1,0,1,1,1,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,9,133.1,1,34,36,0,90,107.5,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,8014,1,19,133.1,1,19,37,6,8,149.5,0,0,1,1,0,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9147,0,1,120.0,1,1,37,4,9,113.4,1,0,1,1,0,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,130.0,1,37,38,9,5,130.5,1,0,1,1,1,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,153.0,1,1,19,9,10,147.8,0,0,1,1,1,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,1 +1,1,1,171,0,1,159.0,1,3,1,4,4,162.2,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,122.0,1,37,37,5,6,114.3,0,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,2,9556,0,19,133.1,1,37,37,3,7,117.8,0,0,1,1,1,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,132.0,1,38,1,9,9,124.3,1,0,1,1,1,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,141.0,1,19,19,9,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,1 +1,17,1,9500,0,1,152.0,1,19,19,4,9,132.5,0,0,1,1,0,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,1 +1,17,1,9991,1,40,127.0,1,37,37,6,6,124.9,0,0,1,1,1,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,133.1,1,1,19,4,6,106.0,1,0,1,1,1,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,150.0,1,19,37,4,7,150.0,1,0,1,1,1,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,1 +1,1,1,9254,0,1,125.0,1,1,1,191,193,114.5,0,0,1,1,0,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,134.0,1,19,19,4,7,131.0,1,0,1,1,0,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,1 +1,1,2,9500,0,1,134.0,1,19,19,9,9,125.8,1,0,1,1,1,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,1 +1,17,1,171,0,1,125.0,1,37,37,7,9,134.1,1,0,1,1,0,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,0 +1,51,1,9254,0,1,120.0,1,38,38,9,9,118.0,0,0,1,1,1,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,155.0,1,1,1,4,3,140.5,1,0,1,1,1,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,125.0,1,1,1,4,90,125.4,1,0,1,1,0,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,1,5,5,126.3,0,0,1,1,0,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,1 +1,39,1,9147,0,1,140.0,1,37,3,9,2,135.1,0,0,1,1,0,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,5,171,0,1,122.0,1,19,12,5,9,127.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,2,9670,0,1,150.0,1,34,34,0,0,107.0,1,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,3,130.0,1,19,19,3,9,130.0,0,0,1,0,0,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,0 +1,39,1,33,0,1,133.1,1,19,37,9,9,96.1,0,0,1,1,0,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,0 +2,42,1,9500,0,2,130.0,1,37,37,9,9,130.0,0,0,1,1,1,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,1 +1,18,1,9238,0,1,137.0,1,19,38,5,8,137.4,1,0,1,1,1,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,2 +1,1,1,9254,0,1,140.0,1,19,1,9,8,140.9,1,0,1,1,1,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,132.0,1,1,2,9,3,128.2,1,0,1,1,1,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,17,4,9085,0,1,126.0,1,1,3,5,5,123.9,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,19,133.1,1,37,37,9,7,106.5,0,0,1,1,1,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,132.0,1,37,19,7,7,132.4,1,0,1,1,1,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,139.0,1,37,38,9,9,126.1,0,0,1,1,1,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,136.0,1,19,38,9,9,123.0,1,0,1,1,1,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,140.0,1,1,38,9,1,140.0,1,0,1,1,0,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,1 +1,43,1,9773,0,1,123.0,1,19,19,9,8,134.0,0,0,1,1,1,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,130.0,1,38,19,9,4,118.4,0,0,0,1,1,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,1 +1,17,1,9119,0,1,126.0,1,1,1,9,9,116.2,0,0,0,0,0,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,19,1,7,10,105.0,0,0,1,1,0,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,0 +1,17,1,9119,0,1,130.0,1,19,19,7,9,121.3,1,0,1,1,0,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,0 +1,43,1,9500,0,19,133.1,1,34,34,0,0,110.0,1,0,1,1,0,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,0 +1,1,3,9070,0,1,139.0,1,1,38,4,7,142.2,1,0,1,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,142.0,1,38,1,5,4,136.6,0,0,1,1,1,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,1 +1,17,2,9670,0,1,128.0,1,37,38,5,8,121.7,0,0,1,1,0,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,140.0,1,1,3,9,4,140.0,0,0,0,0,1,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,125.0,1,19,19,9,10,122.0,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,8014,1,1,130.0,1,37,37,9,8,103.5,0,0,1,1,1,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,1 +1,17,3,9085,0,1,117.0,1,19,38,5,7,111.1,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,42,1,9085,0,39,140.0,1,19,3,9,1,159.9,1,0,1,1,1,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,1 +1,1,2,9254,0,1,112.0,1,37,37,6,6,106.1,1,0,1,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9070,0,1,117.0,1,5,1,2,10,120.0,1,0,1,1,1,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,2 +1,7,1,9556,0,2,130.0,1,37,37,9,9,130.0,1,0,1,1,1,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,40,140.0,1,1,19,9,9,139.0,0,0,1,1,1,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,10,130.0,0,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,51,1,9070,0,1,135.0,1,3,1,3,5,121.8,0,0,1,1,1,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,135.0,1,19,3,9,4,121.5,1,0,1,1,1,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,136.0,1,19,38,4,8,125.5,1,0,1,1,1,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,142.0,1,3,37,4,8,132.4,1,0,1,1,1,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,142.0,1,34,38,4,7,127.3,0,0,1,1,1,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,1 +1,15,1,9147,0,1,130.0,26,1,1,2,3,130.0,0,0,1,1,1,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,17,2,8014,1,1,133.0,1,19,1,5,5,119.7,1,0,1,1,1,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,6,133.1,1,1,1,90,3,107.0,1,0,1,1,0,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9130,0,1,130.0,1,1,1,4,5,123.8,0,0,1,1,1,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,1 +1,1,2,9670,0,1,130.0,1,38,37,5,5,123.4,1,0,1,1,1,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,130.0,1,37,36,4,90,127.6,0,0,1,1,0,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +2,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,2 +1,1,5,9070,0,1,122.0,1,37,37,9,9,124.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,3,120.0,1,37,37,9,9,141.0,0,0,1,1,1,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,0 +1,43,1,33,0,1,134.0,1,37,37,1,1,100.0,1,0,1,1,0,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,0 +1,18,1,9773,0,1,125.0,1,19,37,9,5,122.2,0,0,1,0,1,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,113.4,0,0,1,1,1,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,142.0,1,19,39,5,4,141.7,0,0,1,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,137.0,1,1,38,5,8,125.8,0,0,1,0,1,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,141.0,1,1,37,4,3,126.8,1,0,1,1,1,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,1 +1,17,4,9500,0,1,133.0,1,4,4,4,4,130.7,1,0,1,1,1,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,1 +1,1,2,9500,0,1,119.0,1,1,1,4,4,115.2,1,0,1,1,1,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,1 +1,1,3,9500,0,1,128.0,1,1,1,4,10,118.9,1,0,1,1,1,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,130.0,1,37,38,7,8,119.3,1,0,1,1,1,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,148.0,1,3,1,4,5,132.8,0,0,1,1,1,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,1 +1,1,5,9500,0,1,143.0,1,37,19,4,4,123.3,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9147,0,1,130.0,1,34,34,99,99,109.8,1,0,1,0,0,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9085,0,2,140.0,1,38,38,9,10,150.0,0,0,1,1,0,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,53,1,9670,0,42,110.0,1,1,19,9,9,114.2,0,0,1,1,0,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,1 +1,53,1,9147,0,42,140.0,1,3,4,2,1,140.2,0,0,1,1,1,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,145.0,1,19,38,9,7,136.3,1,0,1,1,1,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,133.1,1,38,37,9,9,154.4,0,0,1,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,127.0,1,38,38,9,6,122.8,0,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,120.2,1,0,1,1,0,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,124.0,1,3,1,2,5,121.6,0,0,1,1,1,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,2 +1,17,5,9853,0,1,132.0,1,37,38,5,6,119.1,1,0,1,1,1,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,1 +1,17,6,9670,0,1,110.0,1,1,19,4,10,111.3,0,0,1,1,0,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,120.0,1,38,37,9,9,114.8,1,1,1,1,1,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,140.0,1,19,19,9,3,130.0,0,0,1,1,0,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9254,0,1,120.0,1,37,37,9,9,115.1,1,0,1,0,0,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,142.0,1,1,37,5,7,128.0,0,0,1,1,1,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,168.0,1,37,1,9,4,133.4,1,0,1,1,1,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,1 +1,43,4,9085,0,1,133.1,1,34,34,99,99,125.2,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9147,0,1,123.0,1,1,1,9,7,117.4,1,0,1,1,1,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,1 +1,1,6,9119,0,1,135.0,1,2,1,3,5,123.5,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,2 +1,17,2,9254,0,1,118.0,22,19,37,9,9,110.3,1,0,1,0,1,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,126.0,1,1,19,4,4,116.9,0,0,1,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,117.0,1,1,38,3,9,109.3,0,0,0,0,1,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,0 +4,39,1,8014,1,1,133.1,1,37,37,9,8,113.0,0,0,1,1,1,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,1 +2,42,1,9991,1,6,123.0,1,37,37,9,9,123.0,0,0,1,1,0,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,2 +1,39,1,9003,0,1,100.0,1,37,37,9,5,110.0,0,0,1,1,1,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,127.0,1,37,38,9,5,131.2,1,0,1,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,110.0,1,37,37,9,7,112.5,1,0,1,1,1,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,126.0,1,19,37,7,5,119.4,0,0,1,1,1,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,121.0,1,1,1,4,3,120.5,1,0,1,1,1,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,134.0,1,1,1,3,3,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,1 +1,1,3,9500,0,1,150.0,1,19,38,1,1,130.8,1,0,1,1,1,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,1 +1,17,5,9119,0,1,124.0,11,4,12,2,9,119.5,1,0,1,1,0,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,117.0,1,19,1,4,7,112.1,0,0,1,1,1,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,2 +1,1,5,9500,0,1,132.0,1,37,37,7,7,120.3,1,0,1,1,1,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,1 +2,39,1,9119,0,1,110.0,1,37,37,90,5,150.0,1,0,1,1,0,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9773,0,1,130.0,1,38,37,5,3,122.3,1,0,0,0,1,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,0 +1,1,1,9556,0,1,118.0,1,19,38,9,9,116.3,1,0,1,1,1,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,120.0,1,3,3,3,3,111.6,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,131.0,1,37,19,9,9,134.5,1,0,1,1,0,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,2 +1,17,2,9556,0,1,133.1,1,37,38,9,8,106.0,1,0,1,1,1,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,2,110.0,1,37,37,9,9,112.9,0,0,1,1,1,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,0 +1,17,2,9773,0,1,126.0,1,19,38,9,8,118.7,1,0,1,1,1,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,4,9500,0,1,140.0,1,1,1,3,3,127.6,1,0,1,1,1,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,163.0,1,19,1,5,10,146.6,1,0,0,1,1,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,2 +1,44,1,9119,0,39,151.0,1,19,37,4,7,151.0,0,0,0,1,1,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,165.0,1,19,37,5,5,142.3,0,0,1,1,1,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9773,0,19,133.1,1,19,1,7,9,115.0,1,0,0,0,0,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,0 +1,1,2,9556,0,1,130.0,1,1,38,3,8,119.5,1,0,1,1,1,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,1 +1,17,3,171,0,1,125.0,1,3,39,2,5,117.0,1,1,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,2,9147,0,1,133.0,1,19,1,5,10,121.8,0,0,1,1,0,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,2 +1,17,1,9119,0,1,131.0,1,1,3,9,10,123.7,1,0,1,1,0,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,2 +1,1,1,9147,0,1,148.0,1,37,38,9,8,133.0,1,0,1,1,1,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9254,0,1,120.0,1,3,19,3,9,114.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9773,0,1,114.0,1,1,1,9,9,111.6,1,0,1,1,1,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,115.0,1,38,1,9,8,118.5,0,0,1,1,0,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,2,5,127.0,0,0,1,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,117.0,1,1,1,4,7,109.3,1,0,1,1,1,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,1 +1,53,1,9085,0,42,140.0,1,19,38,9,9,138.2,0,0,0,0,1,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,0 +1,17,1,9254,0,1,125.0,1,1,1,3,3,114.5,0,0,1,1,0,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,1 +1,44,1,9147,0,39,130.0,1,19,1,9,3,130.0,0,0,1,1,1,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,145.0,1,38,19,4,9,127.9,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9500,0,1,128.0,1,37,37,9,8,124.3,1,0,1,1,1,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,1 +1,18,3,9070,0,1,138.0,1,38,37,9,7,125.1,1,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,17,5,9119,0,1,131.0,1,19,37,9,7,123.3,1,0,1,1,0,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,0 +1,39,1,9500,0,1,130.0,1,37,19,9,8,106.2,1,0,1,1,1,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,171,0,1,131.0,1,19,38,4,5,132.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,43,1,9003,0,1,120.0,1,37,37,5,9,120.0,1,0,1,1,0,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,132.0,1,4,39,2,2,136.6,1,0,1,1,1,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,2 +1,7,1,9500,0,40,170.0,1,1,1,9,4,170.0,0,0,1,1,1,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,1 +1,16,1,9003,0,1,147.0,1,1,37,4,9,140.7,1,0,0,1,1,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,125.0,1,1,1,4,8,115.6,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,150.0,1,37,37,9,6,138.5,0,0,1,1,1,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,1 +1,1,2,9991,1,1,143.0,1,5,1,4,4,131.5,0,0,1,1,0,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,9556,0,1,133.1,6,3,3,4,4,169.2,0,0,0,0,1,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,39,2,9556,0,1,133.1,1,1,1,9,10,100.5,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,0 +1,17,1,9773,0,1,120.0,1,19,38,9,7,117.9,1,0,1,1,1,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,1 +1,17,1,171,0,1,146.0,1,1,38,9,9,135.5,1,0,0,1,1,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,2 +1,1,3,9254,0,1,122.0,1,19,38,3,10,114.3,1,0,1,1,1,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,9130,0,1,130.0,1,2,3,9,1,117.6,0,0,1,1,0,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,2 +4,43,4,9991,1,12,133.1,1,37,37,9,9,153.0,0,0,1,0,1,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,18,2,9500,0,1,135.0,1,38,37,9,5,125.3,1,0,1,1,1,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9500,0,19,133.1,1,38,37,9,9,133.0,0,0,1,1,1,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,1 +1,17,1,171,0,1,129.0,1,38,37,4,6,128.0,0,0,1,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,128.0,1,2,19,2,4,123.3,1,0,1,1,1,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,130.0,1,19,3,4,2,159.0,0,0,1,1,1,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,1 +2,7,1,8014,1,3,130.0,1,19,38,3,7,130.0,0,0,1,1,1,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,116.0,1,19,37,3,3,109.0,1,0,1,1,1,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,123.0,1,1,1,3,9,116.7,1,0,1,1,1,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,144.0,1,19,19,4,4,130.7,1,0,1,1,1,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,42,1,9500,0,1,100.0,1,19,37,5,7,134.3,1,0,1,1,1,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,1 +1,17,6,9500,0,1,143.0,1,1,19,4,4,129.9,0,0,1,1,1,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,1 +2,39,1,9991,1,19,133.1,1,19,37,7,9,137.2,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9853,0,1,123.0,1,19,19,9,7,117.4,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,144.0,1,19,19,5,5,130.3,1,0,1,1,1,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,137.0,1,1,19,4,7,126.7,1,0,1,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,4,9773,0,1,124.0,1,3,12,2,9,137.0,1,0,1,1,0,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,135.0,1,37,37,9,8,123.0,1,0,1,1,1,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,123.0,1,38,37,9,7,120.6,1,0,1,0,1,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,0 +2,2,1,9147,0,2,120.0,1,37,37,9,9,120.0,0,0,1,0,0,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,103.0,1,1,3,2,2,100.6,1,1,1,1,1,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,126.0,1,3,1,2,8,123.9,1,0,1,1,1,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,2 +1,17,4,9500,0,1,136.0,1,3,3,2,2,132.5,1,0,1,1,1,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,114.0,1,3,29,3,5,111.9,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,125.0,1,19,1,9,9,130.6,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,147.0,1,37,38,9,5,134.8,1,0,1,1,1,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,131.0,1,1,19,9,9,130.3,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,118.0,1,3,1,2,5,110.0,1,0,1,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,130.0,1,19,19,4,10,116.8,0,0,1,1,1,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,1 +1,43,1,8014,1,6,133.1,1,34,34,0,0,100.0,0,0,0,1,1,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9670,0,12,170.0,1,1,37,3,5,110.0,0,0,1,1,0,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,1 +2,1,1,9991,1,3,160.0,1,1,3,4,9,137.3,0,0,1,1,1,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,108.0,1,19,1,5,5,107.3,0,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,121.0,1,3,3,2,2,112.3,1,0,0,0,1,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,0 +1,1,2,9773,0,1,138.0,1,19,1,9,3,133.5,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9119,0,1,136.0,1,38,38,9,9,121.7,1,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,0 +1,1,1,9500,0,1,132.0,1,38,37,9,7,122.0,1,0,1,1,1,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,1 +1,17,1,9003,0,1,125.0,1,3,3,2,2,100.0,0,0,1,1,0,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,137.0,1,1,1,1,5,131.8,0,0,1,1,1,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,1,140.0,1,37,37,9,9,148.0,1,0,1,0,0,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,127.0,1,3,1,3,7,137.2,1,0,1,1,1,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,150.0,1,37,19,9,9,150.0,0,0,1,1,0,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,1 +1,43,4,171,0,1,136.0,1,37,37,9,9,123.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9003,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,1,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,1 +1,1,1,9853,0,1,162.0,1,37,19,9,8,142.8,0,0,0,1,1,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,0 +1,1,3,9147,0,1,127.0,1,1,38,5,7,123.5,1,0,1,1,1,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,133.1,1,19,37,9,9,130.0,0,0,1,0,1,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,1 +1,17,2,9070,0,1,121.0,1,1,19,144,144,111.9,1,0,1,1,0,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,115.0,1,19,37,9,9,114.3,0,0,1,1,0,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,0 +1,10,1,9254,0,1,115.0,24,3,1,9,9,116.1,1,0,1,1,1,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,143.0,1,19,3,4,4,147.2,0,0,1,1,1,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,160.0,1,1,38,4,4,160.0,1,0,1,1,0,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,1 +2,1,1,9238,0,1,134.0,1,37,37,5,5,120.4,0,0,1,1,1,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,39,1,9003,0,1,133.1,1,38,37,9,4,120.0,0,0,1,1,0,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,1 +1,18,1,9119,0,1,108.0,1,1,1,4,3,105.6,1,0,1,1,0,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,137.0,1,37,37,9,9,141.0,0,0,1,1,0,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9254,0,1,113.0,1,1,2,5,3,106.7,1,0,0,1,0,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,16,1,9085,0,1,140.0,1,1,1,9,9,127.1,1,0,1,1,1,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,1 +1,53,1,9238,0,42,140.0,1,37,37,9,10,136.9,1,0,1,1,1,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,1 +4,39,1,8014,1,19,133.1,1,37,37,9,7,134.5,0,0,1,1,1,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,1 +1,1,2,9773,0,1,125.0,1,19,1,4,5,122.2,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9070,0,1,134.0,1,1,19,3,3,127.7,1,0,1,0,1,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,17,1,9147,0,1,96.0,1,38,37,6,4,96.0,1,0,1,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,0 +1,10,1,9085,0,1,134.0,1,37,37,5,5,134.0,1,0,1,1,1,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,143.0,1,1,3,3,3,149.0,1,0,1,1,1,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,0 +1,18,3,9070,0,1,142.0,1,1,37,4,7,130.8,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,7,1,9003,0,3,140.0,1,3,19,2,10,140.0,0,0,1,0,0,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,0 +1,1,1,9773,0,1,151.0,1,38,37,9,5,138.4,1,0,1,1,1,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,143.0,1,19,19,4,4,135.3,1,0,1,1,1,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,133.0,1,1,19,9,9,132.0,0,0,1,1,0,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,1 +1,39,1,8014,1,19,133.1,1,37,37,9,5,135.5,0,0,1,1,1,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9254,0,1,134.0,1,37,37,9,9,133.3,1,0,0,1,1,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,0 +1,1,3,9085,0,1,135.0,1,3,2,4,3,121.0,1,0,1,1,1,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,140.0,1,1,1,4,4,123.5,1,0,1,1,1,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,188.0,1,3,3,2,2,178.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9238,0,1,126.0,1,30,19,0,2,121.5,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,131.0,1,3,19,5,5,127.2,1,0,1,1,1,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,1 +1,17,4,9853,0,1,143.0,1,37,37,9,5,127.3,1,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,0 +1,17,2,9238,0,1,111.0,1,19,38,9,9,110.7,1,0,1,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,1 +1,43,1,9500,0,1,140.0,1,19,38,9,7,125.7,1,0,1,1,0,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,2 +1,17,6,9500,0,1,126.0,1,19,37,3,9,119.4,1,0,1,1,1,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,131.0,1,1,1,4,9,122.3,0,0,1,1,0,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,128.0,1,1,19,9,8,100.0,1,0,1,1,1,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,138.0,1,19,19,5,1,130.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,1,140.0,1,3,3,1,1,140.0,1,0,1,1,1,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,3,130.0,1,1,19,5,9,130.0,0,0,1,1,0,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9773,0,1,131.0,1,38,1,5,7,131.0,1,0,1,1,0,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,19,133.1,1,19,19,9,7,140.0,0,0,0,0,1,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,133.1,1,37,37,9,9,126.5,0,0,1,1,1,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9500,0,1,132.0,1,37,37,9,7,128.3,1,0,1,1,1,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,1 +1,16,1,171,0,1,145.0,1,3,3,3,3,155.0,1,0,1,1,1,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,2 +4,1,1,9991,1,1,140.0,1,37,37,9,7,139.0,0,0,1,1,1,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,2 +1,17,2,9070,0,1,152.0,1,39,39,3,3,134.2,1,0,1,1,0,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,1,1,9500,0,1,141.0,1,19,19,7,9,139.8,0,0,1,1,1,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,1 +1,1,4,9670,0,1,133.0,1,1,2,4,7,121.1,1,0,1,1,1,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,1 +1,15,1,9147,0,1,135.0,26,1,1,9,7,135.0,0,0,0,1,0,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,2 +2,1,1,9991,1,1,144.0,1,19,19,9,9,151.4,0,0,1,1,1,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,1 +1,18,4,9853,0,1,118.0,1,19,37,9,6,111.4,1,0,0,0,1,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9500,0,1,134.0,1,38,1,9,6,133.5,1,0,1,1,0,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,37,37,9,6,107.0,0,0,1,1,0,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,141.0,1,38,38,9,9,128.4,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,133.0,1,1,1,9,9,128.5,1,0,1,1,1,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,1 +1,51,1,9085,0,40,120.0,1,3,3,4,2,125.0,0,0,1,1,1,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,150.0,1,37,38,3,7,134.5,0,0,1,1,1,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,127.0,1,3,19,4,4,116.9,0,0,1,1,0,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,136.0,1,2,38,143,163,129.7,1,0,1,1,0,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,2 +1,1,2,9773,0,1,159.0,1,1,1,3,3,151.0,1,0,1,1,1,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,165.0,1,37,38,9,8,152.4,1,0,1,1,1,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,1 +1,1,6,9500,0,1,139.0,1,1,1,4,4,124.5,1,0,1,1,1,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,1 +1,1,2,9500,0,1,134.0,1,1,1,5,3,128.4,1,0,1,1,1,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,1 +1,17,2,9238,0,1,133.0,1,2,1,3,4,136.2,1,0,1,1,1,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,120.0,1,19,1,8,7,115.1,1,0,1,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,1 +1,17,3,9238,0,1,131.0,1,1,39,5,3,122.6,1,0,1,1,1,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,8014,1,1,130.0,1,1,1,9,9,118.1,0,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,1 +1,39,9,9991,1,1,120.0,1,38,38,9,5,144.8,0,0,1,1,0,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9500,0,19,133.1,1,37,37,9,9,129.0,1,0,1,1,1,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,138.0,1,1,19,4,7,123.0,1,0,0,0,1,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,143.0,1,1,37,9,9,135.0,1,0,1,1,1,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,120.0,1,19,1,9,3,120.0,1,0,1,1,0,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,0 +1,1,2,9085,0,1,162.0,1,37,1,9,9,165.2,1,0,1,1,1,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,142.0,1,37,37,5,5,131.3,1,0,1,1,1,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,1 +1,1,3,171,0,1,125.0,1,38,37,4,9,115.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,120.0,1,38,37,5,3,110.5,0,0,1,1,1,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,1 +1,42,1,9773,0,6,120.0,1,34,34,0,0,122.0,1,0,1,1,1,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,162.0,1,1,38,4,5,138.6,1,0,1,1,1,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9500,0,1,152.0,1,1,1,4,4,141.0,1,0,1,1,1,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,139.0,1,3,19,3,5,120.8,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,135.0,1,1,1,3,5,130.1,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,1,9670,0,1,127.0,1,3,3,1,1,121.4,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9556,0,1,135.0,1,1,1,1,1,131.5,0,0,1,1,0,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,2 +1,17,3,9670,0,1,147.0,1,37,37,8,8,128.8,0,0,0,1,1,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9147,0,1,133.1,41,38,38,9,8,134.8,0,0,1,1,1,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,133.1,1,37,37,90,8,128.2,0,0,1,1,1,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,131.0,1,1,37,4,4,126.1,1,0,1,1,1,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,9,9,125.3,1,0,1,1,0,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,0 +2,39,1,8014,1,3,110.0,1,37,37,9,9,160.5,0,0,1,1,1,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,138.0,1,38,1,9,4,127.5,1,0,1,1,1,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,2 +1,39,1,9238,0,1,170.0,1,38,19,9,9,140.0,1,0,1,1,1,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,1,19,4,10,142.3,1,0,1,1,1,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,154.0,1,38,37,9,9,140.4,0,0,1,1,1,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,133.1,41,19,1,9,9,105.0,1,0,1,0,1,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,1 +2,44,1,9085,0,39,160.0,1,37,37,192,192,160.0,0,0,1,1,1,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,141.0,1,38,38,9,9,142.3,1,0,1,1,1,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,119.0,1,37,37,7,7,112.0,1,0,1,0,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,137.0,1,37,37,9,9,127.5,1,0,1,1,1,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,1 +4,39,1,9670,0,1,100.0,1,37,37,4,10,120.0,0,0,0,1,1,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,130.0,1,3,3,2,2,131.1,0,0,1,1,0,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,120.0,1,1,19,9,3,116.9,1,0,0,0,0,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,42,1,9500,0,1,100.0,1,1,19,4,8,136.0,1,0,1,1,1,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,1 +1,1,2,171,0,1,125.0,1,38,19,9,9,117.3,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,152.0,1,1,38,4,9,160.4,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9147,0,12,133.1,1,37,37,9,7,139.4,0,0,0,1,1,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,2 +1,1,3,9070,0,1,150.0,1,1,1,4,8,131.5,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,7,1,9556,0,4,190.0,1,5,5,2,2,190.0,1,0,1,1,0,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,0 +1,17,3,9238,0,1,121.0,1,1,1,4,5,117.2,0,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,130.0,1,37,37,9,7,113.0,1,0,1,0,0,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,123.0,1,19,19,4,10,124.4,1,0,1,1,1,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,1 +1,17,2,9238,0,1,133.0,1,37,37,3,9,119.7,0,1,1,1,1,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,138.0,1,38,19,9,10,133.1,0,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +1,43,1,9070,0,1,108.0,1,38,38,7,7,105.2,1,0,1,1,0,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,0 +1,1,3,171,0,1,115.0,1,9,1,6,6,108.7,1,0,1,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,4,4,119.8,1,0,1,1,1,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,1 +1,1,6,9119,0,1,126.0,1,19,19,7,3,116.6,1,0,1,1,0,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,1 +2,39,1,9500,0,1,133.1,1,37,37,9,9,130.1,0,0,1,0,0,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,0 +1,1,1,9238,0,1,124.0,1,37,38,9,3,114.2,0,0,1,1,1,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,1 +1,17,3,9147,0,1,137.0,1,1,1,4,7,124.4,1,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,2 +1,39,1,9130,0,19,133.1,1,37,37,9,10,156.4,1,0,0,1,0,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,0 +1,18,5,9853,0,1,121.0,1,38,19,7,7,117.5,1,0,0,0,1,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,0 +1,1,2,9238,0,1,117.0,1,19,1,9,8,110.0,1,0,0,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,51,1,9147,0,1,148.0,1,1,19,9,6,118.4,1,0,1,1,0,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,133.0,1,1,1,4,4,100.0,0,0,1,1,1,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,17,1,9238,0,1,158.0,1,1,1,5,6,140.5,0,0,1,1,1,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,157.0,1,19,38,9,7,146.2,1,0,1,1,1,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9119,0,1,131.0,1,3,1,4,1,135.9,0,0,1,1,0,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,2 +1,1,1,9500,0,1,130.0,1,38,37,5,10,117.8,1,0,1,1,0,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,1 +1,1,2,9119,0,1,126.0,1,1,38,141,192,122.5,1,0,1,1,0,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,117.0,1,37,37,0,4,120.5,1,0,1,1,0,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9254,0,1,110.0,1,12,19,9,9,125.0,0,0,1,0,0,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,0 +1,18,1,9147,0,1,121.0,1,19,3,5,5,115.8,1,0,1,1,1,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,1 +1,39,1,9238,0,19,133.1,1,37,37,9,9,139.0,0,0,0,0,0,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9003,0,3,130.0,1,3,3,6,2,130.0,1,0,1,1,0,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,132.0,1,19,37,3,5,125.4,1,0,1,0,1,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,2 +1,39,1,9003,0,1,133.1,1,38,38,4,7,115.6,1,0,1,0,1,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9085,0,1,129.0,1,1,2,3,1,125.9,1,0,1,1,1,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,37,37,9,9,143.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,126.0,1,3,19,3,3,115.2,0,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,123.0,1,19,38,9,10,116.7,1,0,1,1,1,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,1 +1,17,2,9254,0,1,125.0,1,37,37,9,8,122.6,1,0,0,0,1,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,0 +1,39,1,9119,0,1,160.0,1,38,37,7,7,129.0,0,0,1,1,0,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,0 +1,1,4,9500,0,1,140.0,1,3,19,2,3,133.8,1,0,1,1,1,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,120.0,1,19,19,4,7,115.5,1,0,0,1,0,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,120.0,1,38,38,3,3,140.0,0,0,1,1,1,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,2 +1,1,1,9238,0,1,127.0,1,1,19,4,3,141.7,1,0,1,1,0,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,0 +1,39,1,9003,0,1,111.0,1,37,37,9,10,95.8,1,0,1,0,0,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,130.0,1,38,1,9,4,140.0,1,0,1,1,1,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,1 +1,1,2,9147,0,1,131.0,1,1,1,9,9,118.8,0,0,1,1,0,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,161.0,1,1,19,4,4,152.3,0,0,1,1,1,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,124.0,1,38,38,9,9,115.6,0,0,1,1,0,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,160.0,1,3,3,1,2,149.2,0,0,1,1,0,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,16,3,9853,0,1,134.0,1,19,37,9,9,121.1,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,2 +1,43,2,9991,1,1,140.0,1,37,37,5,5,124.3,1,0,1,0,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,127.0,1,38,37,5,7,123.9,1,0,1,1,1,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,120.0,1,19,37,6,8,160.0,0,0,1,1,0,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,1 +1,39,1,9085,0,1,133.1,1,3,3,4,2,144.9,1,0,1,1,1,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,130.0,1,1,19,3,10,130.0,1,0,1,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,1 +1,42,1,9003,0,1,130.0,1,3,2,2,6,105.3,0,0,1,0,0,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9991,1,1,130.0,1,37,37,9,9,127.6,0,0,1,1,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,44,1,9070,0,39,100.0,1,1,38,4,6,104.8,0,0,0,0,1,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,0 +1,1,5,9070,0,1,125.0,1,3,3,2,2,140.8,1,0,1,1,0,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,133.1,1,34,38,0,4,147.0,0,0,1,1,1,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,126.0,1,34,34,0,0,142.4,0,0,1,1,1,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,121.0,1,19,38,4,10,114.4,0,0,1,1,1,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,133.1,1,37,37,5,0,111.5,0,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,130.0,1,1,19,5,5,129.1,1,0,1,1,1,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,3,1,4,6,130.0,0,0,1,1,0,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,2 +1,39,1,9500,0,1,123.0,1,19,1,1,1,140.8,0,0,1,1,1,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,1 +1,44,1,9070,0,39,130.0,1,1,1,4,10,130.0,1,0,1,1,1,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,1 +4,39,1,9085,0,1,133.1,1,34,34,0,0,128.2,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,128.0,1,37,37,9,9,135.7,1,0,1,1,0,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,2 +1,1,1,9238,0,1,135.0,1,38,38,4,7,121.7,1,0,1,1,1,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,2 +1,43,1,9085,0,1,110.0,25,38,38,9,6,117.2,1,0,1,1,0,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,1 +1,43,3,9500,0,1,140.0,1,1,19,9,7,127.5,1,0,0,1,1,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,1 +1,17,3,9238,0,1,133.1,1,41,1,2,3,117.0,1,0,1,1,1,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9254,0,1,112.0,1,37,37,9,9,108.5,0,0,1,1,0,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,51,1,9238,0,39,140.0,1,38,38,5,7,129.1,1,0,1,1,1,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,122.0,1,38,19,9,9,126.6,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,43,1,9147,0,1,123.0,1,1,1,4,4,114.4,0,0,1,1,0,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,0 +1,18,4,171,0,1,133.0,1,1,4,9,5,129.2,1,0,0,0,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9147,0,1,128.0,1,19,19,9,5,121.7,1,0,1,1,1,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,1 +1,39,1,9130,0,1,150.0,1,19,19,9,5,160.0,1,0,1,1,0,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,160.0,1,19,37,5,3,152.0,0,0,1,1,1,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,53,1,9085,0,42,140.0,1,19,37,9,8,142.5,1,0,1,1,1,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,1 +1,1,1,9085,0,1,130.0,1,9,19,4,1,134.2,1,0,1,1,1,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,3,9254,0,1,121.0,1,19,19,9,6,125.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,1,128.0,1,19,1,9,10,157.4,1,0,1,1,1,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,146.0,1,37,37,9,7,149.2,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9853,0,12,133.1,1,37,37,7,8,103.0,0,0,1,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,143.0,1,19,19,5,6,142.3,0,0,1,1,1,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,2 +1,1,2,9085,0,1,118.0,1,1,19,3,3,112.4,1,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,2 +2,43,1,9991,1,1,100.0,1,37,37,9,9,128.2,0,0,1,1,0,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,1 +1,43,2,9238,0,1,118.0,1,38,38,5,5,110.0,0,0,1,1,1,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9147,0,1,136.0,1,38,38,9,9,127.3,1,0,1,1,0,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,170.0,1,19,19,8,8,176.7,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,124.0,41,19,38,9,9,123.3,1,0,1,1,1,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,1 +1,1,4,9070,0,1,170.0,1,3,3,2,2,165.8,1,0,1,1,0,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,143.0,1,3,37,9,9,142.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9147,0,1,122.0,1,1,38,4,5,116.4,0,0,1,1,0,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,150.0,1,1,1,4,4,138.1,1,0,1,1,1,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,2 +1,17,6,9238,0,1,138.0,1,3,3,1,2,123.0,1,0,1,1,1,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,135.0,1,19,12,9,7,137.1,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9070,0,1,125.0,1,1,3,3,3,128.9,0,0,1,1,1,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,2 +1,17,1,9773,0,1,128.0,1,38,19,9,10,125.2,1,0,1,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,2 +1,42,1,9003,0,1,140.0,1,1,3,4,2,140.0,1,0,1,1,0,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,2 +1,39,1,9500,0,19,133.1,1,37,38,151,161,143.7,0,0,1,1,1,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,118.0,1,38,38,7,7,115.2,1,0,1,1,1,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,152.0,1,19,37,9,8,135.6,1,0,1,1,0,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,12,110.0,1,34,34,0,0,157.8,0,0,1,1,1,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,1 +1,1,6,9147,0,1,112.0,1,38,38,9,9,117.3,1,0,1,1,1,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,1 +1,17,3,9147,0,1,118.0,1,1,19,5,7,118.0,0,0,1,1,1,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,2 +1,44,1,9070,0,39,120.0,1,1,19,5,8,119.8,0,0,1,1,0,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,0 +1,39,1,9670,0,1,133.1,1,19,19,3,9,118.0,0,0,1,1,0,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,159.0,1,1,19,9,9,151.3,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,1 +1,17,4,9773,0,1,118.0,1,1,38,5,7,120.8,1,0,1,1,1,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,132.0,1,1,37,8,9,128.0,1,0,1,1,1,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,1 +1,42,1,9147,0,1,135.0,1,19,1,4,4,120.0,0,0,1,0,0,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9670,0,1,122.0,1,1,38,3,3,114.3,1,0,1,1,1,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,171,0,1,131.0,1,1,1,0,3,149.9,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +4,39,2,9556,0,1,133.1,1,38,37,7,7,101.5,1,0,1,1,1,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,5,9119,0,1,126.0,1,12,19,4,5,122.5,1,0,1,1,0,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,145.0,1,2,38,3,8,136.3,1,0,1,1,1,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,2 +1,15,1,9147,0,1,150.0,1,38,1,9,1,150.0,0,0,1,1,0,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,150.0,1,3,39,3,7,126.4,0,0,1,1,0,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,2 +1,17,2,9773,0,1,148.0,1,3,38,2,6,144.2,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,124.0,1,37,19,9,3,116.3,1,0,1,1,1,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +2,39,1,9003,0,1,130.0,1,1,37,9,1,122.0,0,0,0,0,0,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,160.0,1,19,38,5,7,139.0,1,0,1,1,1,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9130,0,1,157.0,1,3,2,3,6,150.9,1,0,1,1,1,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,0 +1,42,1,9119,0,1,120.0,1,1,1,5,7,108.6,0,0,1,0,0,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,0 +1,16,3,9773,0,1,138.0,1,37,38,4,9,134.2,1,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,110.0,1,0,1,1,1,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,0 +4,39,1,9853,0,1,143.0,1,37,1,9,10,140.0,0,0,0,0,1,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,130.0,1,3,19,4,8,133.0,1,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,19,38,6,7,140.0,1,0,1,1,0,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,132.0,1,2,2,6,6,128.5,0,0,1,1,1,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,0 +1,1,2,171,0,1,135.0,1,19,19,4,7,149.0,1,0,1,1,0,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,130.0,1,19,38,3,9,126.5,1,0,1,1,1,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,125.0,1,19,38,9,8,121.5,0,0,1,1,1,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,37,37,9,7,129.0,0,0,1,1,1,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,0 +1,7,3,9130,0,3,130.0,1,37,26,90,10,130.0,0,0,1,0,0,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,1,2,9500,0,1,123.0,1,19,19,7,7,120.8,1,0,1,1,1,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,1 +1,18,2,9853,0,1,168.0,1,1,19,3,9,126.8,1,0,1,1,0,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,2 +1,44,1,9085,0,39,140.0,1,3,1,4,3,140.0,1,0,1,1,1,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,148.0,1,19,19,9,9,138.7,0,0,1,1,1,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,1 +1,18,1,171,0,1,110.0,1,19,2,5,5,117.7,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9070,0,1,136.0,1,37,38,9,9,125.2,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +2,39,1,8014,1,1,133.1,1,37,37,5,4,134.5,0,0,1,1,1,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,2 +1,42,1,9119,0,1,150.0,1,38,37,5,8,133.5,1,0,1,1,0,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,1 +1,44,1,8014,1,39,140.0,1,1,3,4,6,139.2,0,0,0,1,1,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,1 +1,1,1,9853,0,1,125.0,1,19,19,5,5,117.0,0,0,1,1,1,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,1 +1,39,1,9147,0,12,133.1,1,19,37,7,9,118.2,0,0,1,1,1,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,0 +1,1,2,9147,0,1,121.0,1,1,19,9,9,113.7,1,0,1,0,1,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,0 +1,43,1,9130,0,1,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,131.0,1,3,19,2,3,132.8,1,0,1,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,1 +1,17,3,9500,0,1,136.0,1,37,38,4,5,126.0,1,0,1,1,1,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,1 +1,1,1,9853,0,1,145.0,1,37,37,9,5,146.8,0,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9085,0,1,123.0,1,1,1,4,9,116.7,1,0,1,1,0,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,0 +1,18,1,171,0,1,121.0,1,1,1,4,3,116.8,1,0,1,1,1,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,1 +1,17,3,9500,0,1,141.0,1,38,1,9,4,129.0,1,0,1,1,1,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,1 +2,39,1,8014,1,19,133.1,1,34,34,0,0,130.0,0,0,1,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,126.0,1,1,3,4,3,122.5,1,0,1,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,0 +2,1,1,9254,0,1,136.0,1,37,37,9,9,122.7,0,0,1,1,1,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,0 +1,39,1,9556,0,19,133.1,1,37,37,9,10,100.0,0,0,1,1,0,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9500,0,1,133.1,1,38,19,7,9,115.5,1,0,1,1,0,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,1 +1,1,1,9991,1,1,131.0,1,19,37,9,9,118.4,1,0,1,1,1,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,2 +1,1,1,9147,0,1,153.0,1,1,38,4,3,146.7,0,0,1,1,1,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,1 +1,43,1,8014,1,12,114.0,1,34,34,0,99,110.0,0,0,1,1,1,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,147.0,1,1,1,5,5,134.9,0,1,1,1,1,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,1 +1,1,2,9085,0,1,156.0,1,40,40,3,7,150.9,1,0,1,1,1,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,137.0,1,38,38,5,7,122.7,1,0,1,1,1,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9147,0,1,123.0,1,1,19,4,5,117.8,0,0,1,1,0,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,2 +1,17,1,9238,0,1,135.0,1,37,37,8,6,127.0,0,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,131.0,1,37,37,9,9,123.0,1,0,1,1,1,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,2 +1,17,2,9670,0,1,123.0,1,3,1,3,1,116.7,0,0,1,1,1,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,1 +1,7,1,9085,0,40,140.0,1,1,19,5,5,140.0,1,0,1,1,1,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,1 +4,39,1,9500,0,19,133.1,1,38,19,5,7,140.0,0,0,1,1,1,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,127.0,1,3,19,3,9,127.0,1,0,1,1,0,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,1 +1,17,2,8014,1,1,120.0,1,19,1,5,10,114.8,1,0,1,1,1,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9670,0,19,133.1,1,37,37,9,7,130.0,0,0,0,1,0,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,171,0,1,131.0,41,19,1,4,7,131.4,1,0,1,1,0,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,16,2,171,0,1,145.0,1,3,3,2,2,143.6,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,120.0,1,19,38,6,6,120.0,1,0,1,1,0,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,1 +1,17,6,9238,0,1,131.0,1,1,3,4,2,131.7,1,0,1,1,1,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,137.0,1,3,1,4,9,128.6,0,0,1,1,1,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,170.0,1,19,19,9,7,170.0,1,0,0,1,0,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,17,4,9853,0,1,122.0,1,38,37,9,9,118.9,1,0,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,1 +1,17,5,9500,0,1,148.0,1,1,19,4,8,130.2,1,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9003,0,19,133.1,1,1,19,9,8,120.0,0,0,0,0,0,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,2,9147,0,1,143.0,1,19,38,9,7,132.2,1,0,1,1,1,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9556,0,1,132.0,1,38,37,7,7,119.0,1,0,1,1,1,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,133.1,1,3,1,4,4,95.0,0,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9254,0,1,154.0,1,3,1,2,1,137.2,0,0,1,1,0,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,2 +1,1,1,9853,0,1,129.0,1,38,37,6,6,138.1,0,0,1,1,1,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,17,2,9670,0,1,129.0,1,1,19,5,5,119.2,1,0,1,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,43,1,9500,0,1,137.0,1,3,3,2,2,115.0,0,0,1,1,1,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,1 +1,17,2,9254,0,1,115.0,1,19,19,9,7,113.3,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,133.0,1,38,38,7,7,125.3,1,0,1,1,1,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,110.0,1,37,37,7,10,150.0,0,0,1,0,1,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,19,133.1,1,19,19,144,141,131.5,0,0,0,1,1,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,133.0,1,38,1,2,4,126.0,0,0,1,1,1,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,15,1,9147,0,1,133.1,41,41,1,3,4,100.0,0,0,0,0,0,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,0 +1,10,2,9773,0,1,154.4,22,19,38,3,5,154.4,1,0,1,0,1,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,9070,0,39,100.0,1,1,1,4,4,106.0,0,0,1,1,0,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,135.0,1,38,19,8,8,126.3,1,0,0,1,1,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,1 +1,1,6,9500,0,1,120.0,41,1,1,9,6,114.8,1,0,1,1,1,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,2 +1,17,1,9085,0,1,124.0,1,19,38,7,7,113.9,1,0,1,1,1,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,1 +1,1,6,9254,0,1,126.0,1,38,37,5,7,123.9,1,0,1,1,1,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,1 +1,17,1,9670,0,1,125.0,1,37,37,9,9,121.5,1,0,1,1,0,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,1 +1,1,6,9773,0,1,125.0,1,1,1,5,4,122.2,0,0,1,1,0,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,135.0,1,19,19,4,5,126.8,1,0,1,1,0,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,0 +1,17,2,9238,0,1,133.0,1,1,37,7,9,127.4,1,0,1,1,1,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,1 +1,1,3,9070,0,1,127.0,1,19,38,5,7,141.0,1,0,1,1,0,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +2,39,1,9119,0,3,120.0,1,37,37,4,7,122.5,0,0,1,0,1,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,2,9147,0,1,150.0,1,19,37,9,7,101.0,0,0,0,0,1,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,0 +1,7,1,9003,0,4,120.0,1,3,1,2,4,120.0,1,0,1,1,1,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,1 +1,17,5,9500,0,1,143.0,1,38,1,9,7,130.6,1,0,1,1,1,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,129.0,1,38,19,5,7,124.0,1,0,1,1,1,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,1 +1,17,2,9500,0,1,140.0,1,1,1,5,10,128.5,1,0,1,1,1,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,2 +4,39,1,8014,1,19,100.0,1,1,37,9,1,111.5,0,0,1,1,0,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,0 +2,39,2,9556,0,1,110.0,1,19,38,9,9,112.8,0,0,1,1,1,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,2 +1,1,1,9147,0,1,116.0,1,19,19,5,8,127.9,0,0,0,0,1,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,0 +1,43,4,171,0,1,117.0,1,19,12,9,10,109.3,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,130.0,1,1,38,5,5,122.3,1,0,1,1,1,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,1 +1,15,1,9119,0,1,130.0,26,38,3,9,2,137.0,1,0,1,1,0,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,2 +1,39,1,9556,0,1,133.1,1,38,19,9,6,100.0,1,0,1,1,1,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,1 +1,39,1,9991,1,1,150.0,1,3,1,3,9,154.0,0,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,43,1,9147,0,1,131.0,1,3,19,2,9,126.1,0,0,1,1,1,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,2 +1,1,6,9773,0,1,145.0,1,1,19,4,4,131.0,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,2 +1,17,2,9070,0,1,136.0,1,19,38,4,7,140.9,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,8014,1,1,155.0,1,19,37,4,5,117.5,0,0,1,1,1,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,2 +1,1,3,9147,0,1,128.0,1,3,3,5,10,116.5,0,0,1,1,0,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,1 +1,17,4,9254,0,1,133.0,1,37,37,5,8,128.5,1,0,1,1,1,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,0 +1,17,1,9119,0,1,141.0,1,37,1,9,2,133.0,1,0,1,1,0,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,2 +1,51,1,8014,1,1,120.0,1,1,1,4,4,128.5,0,0,0,0,0,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,0 +1,43,1,9003,0,1,120.0,1,3,3,1,2,115.0,0,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,136.0,1,19,19,4,7,136.0,0,0,1,1,1,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,1 +1,17,1,9070,0,1,116.0,1,38,38,9,9,123.7,0,0,1,1,1,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,125.0,1,19,19,4,8,117.0,1,0,1,1,1,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,135.0,1,1,38,5,7,137.5,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,140.0,1,19,19,7,7,124.6,1,0,1,1,1,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,2 +1,39,1,9670,0,19,133.1,1,1,1,4,7,100.0,0,0,0,0,1,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,0 +1,17,2,9500,0,1,122.0,1,37,37,9,9,131.0,1,0,1,1,1,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,0 +2,43,1,9773,0,1,160.0,1,37,37,5,0,160.0,0,0,0,0,0,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9670,0,1,113.0,1,37,19,9,9,110.2,1,0,1,1,1,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,125.0,1,37,37,9,9,126.0,1,0,0,1,1,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,1 +1,43,1,171,0,39,140.0,1,38,37,9,7,140.0,0,0,1,0,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,16,3,9853,0,1,134.0,1,37,19,9,5,121.4,1,0,1,1,1,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,2 +1,1,1,8014,1,1,120.0,1,1,37,7,3,122.8,0,0,1,1,1,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9991,1,1,133.1,1,1,1,4,2,127.7,0,0,1,1,1,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,2 +2,39,1,9991,1,1,120.0,1,19,37,3,9,132.9,0,0,1,1,0,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,0 +1,1,1,9500,0,1,138.0,1,1,38,4,9,132.5,1,0,1,1,1,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,133.1,1,19,37,7,7,126.0,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +5,39,1,9500,0,1,110.0,1,38,38,9,9,110.0,0,0,1,0,1,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,0 +5,7,1,9500,0,40,150.0,1,37,37,4,9,150.0,0,0,1,1,1,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,1 +1,17,1,9070,0,1,126.0,1,19,38,9,7,118.7,0,0,1,1,1,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,16,4,9254,0,1,126.0,1,38,37,9,7,118.7,1,0,1,1,1,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,1,3,9773,0,1,110.0,1,19,19,5,5,105.5,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,1 +1,39,1,9238,0,9,133.1,1,34,34,0,0,118.0,0,0,1,1,1,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,140.0,1,3,2,4,6,133.4,1,0,1,0,0,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,2 +1,1,1,171,0,1,134.0,1,3,2,2,2,141.7,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,1,6,9773,0,1,133.1,1,1,1,90,90,129.6,0,0,1,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,133.1,1,38,19,5,6,138.0,0,0,0,1,0,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,2 +1,17,3,9500,0,1,156.0,1,19,37,4,9,132.3,1,0,1,1,0,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,1 +1,44,1,9085,0,39,140.0,1,3,3,4,2,140.0,1,0,1,1,1,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,1 +1,43,1,171,0,1,116.0,1,3,1,2,3,117.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,141.0,1,38,19,9,6,126.3,1,0,1,1,1,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,44,1,9238,0,39,140.0,1,1,19,191,102,143.0,0,0,1,1,1,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,1 +1,43,5,8014,1,1,110.0,1,34,34,0,0,110.0,0,0,1,1,0,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9238,0,1,143.0,1,1,11,4,3,128.0,1,0,1,1,1,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +3,17,1,9238,0,1,138.0,1,37,37,9,9,133.5,1,0,1,1,1,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,2 +1,7,1,9119,0,3,150.0,1,3,2,2,2,150.0,0,0,1,1,1,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9003,0,39,150.0,1,19,1,1,1,150.0,0,0,1,1,0,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,2 +1,17,1,9085,0,1,134.0,1,19,37,2,7,131.2,0,0,1,1,1,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,2 +1,39,1,171,0,1,133.1,1,37,37,9,7,100.0,0,0,0,1,0,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,18,1,9556,0,1,133.1,1,3,19,2,8,106.0,1,0,1,1,0,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,1 +1,17,2,9500,0,1,135.0,1,19,19,9,4,129.8,1,0,1,1,1,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,1 +1,39,1,33,0,1,130.0,1,38,37,9,6,102.5,0,0,0,0,0,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,0 +1,18,1,9500,0,1,144.0,1,37,37,6,6,127.5,1,0,1,1,1,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,130.0,1,37,38,9,9,133.9,1,0,1,1,1,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,1 +2,44,1,9003,0,39,140.0,1,37,37,4,7,140.0,0,0,1,1,0,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,0 +1,1,4,9773,0,1,137.0,1,3,19,2,3,139.8,1,1,1,1,1,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,2 +1,1,1,9991,1,1,130.0,1,2,37,3,9,131.4,0,0,1,1,0,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,1 +1,18,1,9500,0,1,135.0,1,3,3,1,1,125.8,1,0,1,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,1 +1,18,1,9238,0,1,147.0,1,38,34,4,0,130.2,0,0,1,1,1,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +5,17,5,9500,0,1,143.0,1,37,38,5,8,133.5,1,0,1,1,1,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,99.0,1,1,3,5,10,100.0,1,0,1,1,0,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,1 +1,16,2,9147,0,1,131.0,1,37,37,9,9,135.9,1,0,1,1,0,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,146.0,1,38,37,6,6,143.9,0,0,1,1,1,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,1 +1,17,1,9085,0,1,139.0,1,38,38,5,3,136.2,0,0,1,1,1,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,153.0,1,3,1,2,8,137.6,1,0,1,1,1,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,1 +1,17,2,9085,0,1,133.1,1,19,38,9,1,100.0,1,0,0,0,0,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,0 +1,1,2,9773,0,1,121.0,1,19,19,9,9,122.8,0,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,141.0,1,37,38,9,10,138.9,0,0,1,1,1,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,1,6,9500,0,1,117.0,1,4,12,5,9,119.8,1,0,1,1,1,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,1 +1,17,4,9119,0,1,122.0,62,1,1,191,171,121.0,1,0,1,1,0,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,38,19,3,3,98.6,0,0,1,1,1,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9500,0,1,140.0,1,38,37,5,6,124.3,1,0,1,1,1,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,140.0,1,37,37,9,9,127.7,1,0,1,1,1,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,121.0,1,37,37,9,9,124.2,1,0,1,1,1,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,1 +1,18,1,9130,0,1,146.0,1,3,3,5,2,137.8,0,0,1,1,0,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,3,120.0,1,1,1,7,10,120.0,1,0,1,0,0,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,120.0,1,37,37,7,8,120.0,1,0,0,0,1,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,178.0,1,19,1,4,8,174.7,0,0,1,1,1,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,1 +1,17,5,9254,0,1,114.0,1,38,1,5,9,109.5,0,0,1,1,0,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,143.0,1,38,38,9,9,140.0,0,0,1,1,0,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,160.0,1,38,37,9,5,159.3,0,0,1,1,1,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,143.0,1,38,34,9,9,133.6,1,0,1,1,1,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,1 +4,43,1,9500,0,19,100.0,1,34,34,0,0,110.0,0,0,1,1,0,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,1 +1,1,2,9254,0,1,125.0,1,1,19,4,1,121.5,1,0,1,1,0,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,19,7,3,120.0,1,0,1,1,0,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,3,120.0,1,19,1,9,5,134.0,0,0,1,1,1,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,0 +1,39,1,9254,0,1,160.0,1,19,37,7,10,100.0,0,0,1,1,0,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,2 +1,15,1,171,0,1,130.0,26,1,1,2,9,130.0,0,0,1,1,0,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,2 +1,1,1,171,0,1,140.0,1,19,37,5,6,137.9,1,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,123.0,1,19,37,9,9,124.1,1,0,1,1,1,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,140.0,1,38,38,6,6,140.0,0,0,1,1,1,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,9991,1,9,133.1,1,34,34,0,0,118.4,0,0,1,0,1,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,6,9254,0,1,125.0,1,1,1,4,3,120.5,1,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,1 +1,1,6,171,0,1,126.0,1,10,10,4,4,130.2,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9003,0,39,120.0,1,1,19,4,7,120.0,0,0,1,1,0,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,2 +1,17,5,9773,0,1,143.0,1,1,1,7,7,136.7,1,0,1,1,1,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,42,1,9147,0,1,130.0,1,37,38,9,1,130.0,1,0,1,1,1,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,1,130.0,1,37,37,9,9,124.0,0,0,1,1,0,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,1 +1,17,2,9238,0,1,136.0,1,1,3,3,4,126.6,1,0,1,1,1,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,127.0,1,19,1,5,7,118.3,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,2 +4,39,1,9991,1,1,147.0,1,19,19,7,8,147.9,0,0,1,1,1,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,2 +1,1,4,9773,0,1,124.0,1,19,37,99,90,124.0,0,0,1,0,1,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,0 +2,43,1,9003,0,1,133.1,1,37,37,9,7,136.0,0,0,1,1,0,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,1 +1,1,1,9085,0,1,140.0,1,12,1,1,90,141.8,0,0,1,1,1,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,133.1,1,37,37,191,154,95.0,0,0,1,1,1,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,147.0,1,2,3,4,8,145.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +2,7,1,9238,0,3,130.0,1,37,19,4,5,130.0,0,0,1,1,1,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,1 +1,7,2,9085,0,3,130.0,1,3,3,1,1,130.0,0,0,1,0,1,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,0 +2,39,2,9147,0,3,130.0,1,3,37,9,9,103.4,0,0,1,1,1,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,0 +1,17,1,9085,0,1,135.0,1,1,19,4,10,125.6,1,0,1,1,1,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,1,1,5,5,96.0,1,0,1,0,0,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +5,39,1,9853,0,19,133.1,1,38,1,5,3,105.5,0,0,0,1,1,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,0 +1,17,1,9254,0,1,136.0,1,37,37,7,7,121.7,1,0,1,1,1,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9119,0,19,133.1,1,37,37,9,9,100.0,0,0,1,1,0,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,19,133.1,1,19,19,4,4,100.0,0,0,1,1,0,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,2 +1,1,1,171,0,1,124.0,1,2,2,3,2,118.4,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,2 +1,17,1,9085,0,1,120.0,1,2,3,2,2,116.1,0,0,1,1,1,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,162.0,1,37,37,9,9,142.8,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,131.0,1,37,1,9,9,135.9,1,0,1,1,1,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,19,133.1,1,37,37,9,7,100.0,0,0,1,1,0,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,1 +1,43,1,9500,0,1,127.0,1,19,19,4,7,121.1,0,0,1,1,1,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,2 +1,1,5,9500,0,1,143.0,1,37,37,9,5,131.6,1,0,1,1,1,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,1 +1,17,4,9085,0,1,140.0,1,19,37,4,7,123.7,0,0,1,1,1,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,156.0,1,19,1,5,10,136.8,1,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,0 +2,39,1,9853,0,10,133.1,1,37,34,0,0,115.5,0,0,1,1,1,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,0 +1,1,3,9119,0,1,113.0,1,4,38,2,7,107.4,1,0,1,1,0,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,1 +2,39,1,9670,0,1,130.0,1,37,37,9,0,158.0,0,0,0,0,1,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,0 +1,43,1,9853,0,1,110.0,1,37,37,9,9,107.7,0,0,0,0,1,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,124.0,1,2,2,3,3,124.7,1,0,1,1,0,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,127.0,1,37,37,5,10,125.3,0,0,1,1,0,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,1 +1,16,1,9500,0,1,133.1,1,37,37,9,9,95.0,1,0,1,1,1,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,1 +1,1,4,9238,0,1,127.0,1,19,19,4,0,127.4,1,0,1,1,1,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,113.0,1,38,38,3,7,112.3,0,0,1,1,1,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,1 +1,17,4,9670,0,1,110.0,1,19,37,9,99,106.1,1,1,0,0,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,141.0,1,1,38,4,8,136.8,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,133.1,1,37,37,9,7,140.0,0,0,1,1,1,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,124.0,1,1,1,4,4,118.8,0,0,1,1,0,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,1 +1,7,1,8014,1,4,120.0,1,2,3,2,2,120.0,0,0,1,1,1,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,0 +1,17,2,9670,0,1,110.0,1,3,3,4,10,115.6,1,0,1,1,0,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,118.0,1,1,19,4,10,110.7,1,1,1,1,1,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,2 +4,39,1,9238,0,1,130.0,1,19,3,9,2,140.0,0,0,1,1,0,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,1,140.0,1,1,19,3,9,140.0,1,0,0,0,1,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,0 +1,17,3,9773,0,1,123.0,1,1,19,5,5,117.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,115.0,1,38,38,8,7,112.9,1,0,1,1,1,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,1 +1,1,6,9147,0,1,142.0,1,38,37,7,7,134.3,0,1,1,1,0,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9085,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,1,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9254,0,1,129.0,1,19,1,3,7,121.0,0,0,1,1,1,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,156.0,1,3,3,123,122,155.0,0,0,1,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,136.0,1,37,37,9,9,126.3,1,0,1,1,1,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,1 +2,43,1,9991,1,1,110.0,1,37,37,9,9,132.5,0,0,1,1,0,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,1 +2,39,1,9991,1,19,133.1,1,37,1,5,5,138.3,0,0,1,1,0,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,0 +1,1,2,9130,0,1,140.0,1,19,37,9,9,129.5,1,0,1,1,1,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,2 +1,7,1,9500,0,3,140.0,1,37,37,4,4,140.0,0,0,1,1,1,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,1 +4,42,1,9147,0,1,110.0,1,37,37,9,9,128.2,0,0,1,1,1,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,1 +1,39,1,9119,0,19,133.1,1,1,1,4,3,134.4,0,0,0,0,0,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,136.0,1,37,1,5,4,120.8,1,0,1,1,1,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,1 +1,17,2,9500,0,1,140.0,1,37,37,9,9,132.5,1,0,1,1,1,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,1 +1,17,6,9147,0,1,130.0,1,37,37,9,9,110.4,1,0,1,1,0,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,0 +1,1,1,9773,0,1,133.1,1,3,19,4,5,105.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,136.0,1,19,19,4,3,126.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,116.0,1,38,2,9,2,112.2,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9238,0,1,122.0,1,19,3,5,2,112.6,0,0,0,1,1,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,2 +1,17,1,9147,0,1,118.0,1,1,38,9,9,118.4,1,0,1,1,0,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,2 +1,17,1,9130,0,1,117.0,1,19,19,4,4,113.5,1,0,1,1,1,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,117.0,1,19,19,9,9,111.8,1,0,1,1,0,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,0 +1,1,6,9500,0,1,118.0,1,38,19,3,3,113.5,1,0,1,1,0,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,1 +2,43,2,9853,0,1,130.0,1,38,31,4,1,124.2,0,0,1,1,1,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,128.0,1,38,38,9,7,124.5,1,0,1,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,2 +1,1,1,9238,0,1,116.0,1,38,38,9,8,108.7,1,0,1,1,0,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9254,0,19,133.1,1,37,19,9,10,156.5,0,0,1,1,0,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,1 +1,39,1,9003,0,1,160.0,1,1,37,191,193,140.0,0,0,1,1,0,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,110.0,1,37,37,9,10,150.0,0,0,1,1,0,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,1 +1,18,2,9070,0,1,122.0,1,38,19,5,5,119.9,0,0,1,1,0,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,125.0,1,19,38,9,7,116.3,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,37,37,6,6,147.8,0,0,1,1,1,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,2 +1,1,1,171,0,1,174.0,1,5,3,3,3,157.9,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,3,9773,0,1,131.0,1,1,1,4,4,127.2,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,0 +1,17,1,9670,0,3,110.0,1,12,3,5,8,106.5,1,0,0,0,1,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,2,9500,0,1,124.0,1,37,37,9,9,116.0,1,0,1,1,1,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,120.0,1,38,38,5,7,146.2,0,0,1,1,1,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,133.1,1,37,37,9,9,97.0,0,0,1,1,1,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,1 +1,17,2,9773,0,1,132.0,1,19,1,9,9,141.8,1,0,1,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,1 +2,43,1,9254,0,3,120.0,1,38,37,9,3,120.0,1,0,1,1,1,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,135.0,1,3,2,1,1,133.6,1,0,1,0,1,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,0 +1,1,1,8014,1,1,133.0,1,38,38,5,2,135.5,0,0,1,1,1,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9130,0,1,125.0,1,39,3,3,2,125.0,1,0,1,1,1,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,133.1,1,1,1,3,4,112.0,0,0,1,1,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,141.0,1,1,1,5,9,126.3,0,0,1,1,0,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,1 +1,39,1,9003,0,1,133.1,1,1,37,9,8,130.0,0,0,1,1,0,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,0 +2,43,1,9991,1,1,140.0,1,37,37,3,10,107.8,0,0,1,1,1,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,2 +1,43,1,9500,0,1,120.0,1,3,4,2,4,120.6,0,0,1,1,0,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,1,133.1,1,1,19,9,9,120.0,0,0,1,1,0,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,1 +1,39,1,9853,0,1,140.0,1,19,1,9,4,128.2,0,0,1,0,1,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,133.1,1,37,19,9,3,123.0,0,0,1,1,0,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,2 +1,39,1,9147,0,1,150.0,1,37,1,7,3,148.8,0,0,1,1,0,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,1 +1,17,1,9670,0,1,125.0,1,38,37,7,5,126.4,0,0,1,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,1 +1,44,1,9003,0,39,140.0,1,38,1,134,134,140.0,1,0,0,1,0,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,2 +1,44,1,9070,0,39,140.0,1,1,19,4,4,140.0,0,0,1,1,0,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,130.0,1,1,1,9,9,124.1,1,0,1,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,2 +1,51,1,9070,0,1,130.0,1,19,19,5,7,124.5,0,0,1,1,1,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,101.0,1,37,37,9,4,101.0,1,0,0,1,1,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,2 +1,1,1,8014,1,1,115.0,1,38,38,9,7,115.0,1,0,1,1,1,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,1 +1,17,1,9130,0,1,122.0,1,19,19,9,9,121.7,1,0,1,0,1,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,0 +1,39,1,9003,0,1,135.0,1,38,38,9,6,138.1,0,0,0,0,1,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9147,0,1,130.0,1,37,37,9,9,119.9,1,0,1,0,1,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,134.0,1,1,1,9,9,133.0,1,0,1,1,1,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,19,37,9,9,117.8,1,0,1,1,1,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,1 +1,1,1,9670,0,1,119.0,1,1,19,4,10,115.5,1,0,1,1,1,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,2 +1,17,3,9119,0,1,138.0,1,3,3,3,4,125.4,1,1,1,1,0,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,164.0,1,19,19,9,9,149.0,1,0,1,1,1,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,44,1,9085,0,1,140.0,1,4,4,2,6,140.0,0,0,1,1,1,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,1 +1,43,1,9070,0,1,160.0,1,1,2,4,2,100.0,0,0,1,1,0,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,2 +1,1,1,9238,0,1,132.0,1,37,37,9,5,135.9,0,0,1,1,1,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,142.0,1,37,19,7,7,133.0,1,0,1,1,1,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,1 +1,7,1,9556,0,3,130.0,1,1,37,4,8,130.0,0,0,1,0,0,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,0 +1,44,1,171,0,39,110.0,1,1,1,1,7,114.2,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,16,2,9147,0,1,129.0,1,19,19,4,9,127.6,1,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,164.0,1,34,1,0,0,163.0,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9556,0,1,122.0,1,19,38,4,8,118.3,1,0,1,1,1,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,1 +1,17,4,9500,0,1,141.0,1,38,37,3,3,126.3,1,0,1,1,1,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,1 +1,1,1,9003,0,1,148.0,1,1,19,194,194,143.5,0,0,0,1,0,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,150.0,1,37,19,6,4,137.0,0,0,1,1,0,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,38,38,1,4,138.7,0,0,1,1,0,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,1 +2,43,1,9991,1,1,130.0,1,37,37,9,9,103.8,0,0,1,1,1,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,0 +1,17,1,8014,1,1,127.0,1,19,37,4,7,115.8,0,0,1,1,1,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,143.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,130.0,1,38,19,5,6,125.1,1,0,1,1,1,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9254,0,1,133.0,1,19,1,9,9,137.2,0,0,1,1,0,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +2,1,4,8014,1,1,140.0,1,34,34,0,0,128.0,1,0,1,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,120.0,1,1,1,9,10,118.3,0,0,1,1,0,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,2 +2,39,1,8014,1,12,133.1,1,37,37,9,1,113.0,0,0,1,1,1,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,128.0,1,19,1,0,5,122.1,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,37,38,3,3,123.0,0,0,1,1,1,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,1 +1,39,1,8014,1,1,120.0,1,37,1,7,4,95.0,1,0,1,1,1,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,0 +1,17,4,9238,0,1,123.0,1,19,19,191,144,116.0,1,0,1,1,1,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,39,1,9085,0,1,140.0,1,37,37,90,90,106.3,0,0,0,0,0,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,159.0,1,3,3,2,2,162.5,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,6,9500,0,1,125.0,1,19,19,9,9,115.9,0,0,1,1,1,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,130.0,1,19,19,3,7,129.0,0,0,0,0,1,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,133.1,1,38,37,5,5,136.0,1,0,1,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9500,0,1,156.0,1,5,4,2,1,140.8,0,0,1,1,1,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,1 +1,43,1,9991,1,1,161.0,1,37,37,9,9,100.0,1,0,1,1,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,7,1,8014,1,3,130.0,1,35,35,90,90,140.0,0,0,1,0,1,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,0 +2,1,1,9991,1,1,120.0,1,37,19,9,9,135.0,1,0,1,1,0,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,1 +1,1,2,9500,0,1,133.1,1,37,37,9,9,99.0,1,0,1,1,0,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9500,0,1,148.0,1,3,3,2,2,137.3,1,0,1,1,1,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,120.0,1,19,37,5,7,115.1,0,0,1,1,1,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,2 +1,17,6,9773,0,1,138.0,1,1,1,4,2,140.5,1,0,1,1,1,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,1 +2,43,1,9085,0,1,160.0,1,37,37,9,7,120.0,0,0,1,1,0,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,2 +1,17,2,8014,1,1,134.0,1,1,19,4,99,126.0,1,0,1,1,0,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,8014,1,1,133.1,1,34,34,0,0,100.0,1,0,1,1,1,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,131.0,1,1,1,5,9,129.5,1,0,1,1,1,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,1 +1,1,4,171,0,1,139.0,1,37,38,9,9,127.8,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,2,9853,0,1,150.0,1,37,37,5,6,132.5,1,0,1,1,1,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,2 +1,1,1,9085,0,1,133.1,1,19,38,5,7,110.0,1,0,1,1,1,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,1 +1,43,1,9254,0,6,138.6,1,34,34,0,0,138.6,1,0,1,1,0,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,133.1,1,1,1,4,10,100.8,0,0,1,1,0,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,7,1,9500,0,5,140.0,1,19,1,4,1,140.0,1,0,1,0,1,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,118.0,1,1,19,9,10,113.1,1,0,1,1,1,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,115.0,1,3,3,2,2,111.5,1,0,0,0,1,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9254,0,39,170.0,1,19,2,9,3,170.0,0,0,1,0,0,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,37,9,9,120.0,0,0,1,1,1,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,3,9500,0,1,137.0,1,19,38,7,7,126.5,1,0,1,1,1,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,136.0,1,19,19,90,8,133.9,1,0,1,0,0,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,0 +1,18,2,9500,0,1,141.0,24,1,1,4,3,126.8,1,0,1,1,1,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,1 +1,17,4,9238,0,1,124.0,1,19,19,5,8,117.7,1,0,1,1,1,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,149.0,1,19,38,9,9,126.5,1,0,1,1,1,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,153.0,1,1,1,141,175,157.9,0,0,0,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,140.0,1,1,2,4,6,140.0,1,0,1,1,1,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,6,9500,0,1,137.0,1,1,3,3,2,121.3,1,0,1,1,1,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,143.0,1,1,1,4,6,138.8,0,0,1,0,0,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,160.0,1,1,3,1,2,130.0,0,0,1,0,0,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,130.0,1,19,19,9,8,105.8,0,0,1,1,1,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,0 +1,5,4,9119,0,1,115.0,1,19,37,4,6,113.3,1,0,1,1,0,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9500,0,1,131.0,1,1,19,4,3,125.4,1,0,1,1,1,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,1 +4,42,1,9500,0,19,133.1,1,1,1,5,5,126.0,1,0,1,1,0,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9254,0,3,133.1,1,19,19,4,6,130.5,0,0,1,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9147,0,1,108.0,1,1,19,4,4,105.9,1,0,1,1,0,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,126.0,1,19,19,9,9,115.2,0,0,0,1,1,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,2 +1,1,1,9853,0,1,140.0,1,37,37,9,9,145.3,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,1,6,9070,0,6,119.0,1,1,1,9,9,123.2,1,0,1,1,0,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,160.0,1,1,38,5,6,168.6,0,0,1,1,0,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9254,0,1,120.0,1,1,19,9,9,148.3,0,0,1,1,0,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,1 +1,7,1,9085,0,3,130.0,1,1,19,9,10,130.0,0,0,1,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,4,9085,0,1,137.0,1,38,38,151,151,141.6,0,0,1,1,0,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,1 +1,39,1,9003,0,19,133.1,1,37,37,9,4,140.0,0,0,1,1,0,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,2 +1,43,1,9085,0,1,162.0,1,2,1,4,4,162.0,0,0,1,1,1,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,1 +1,43,1,171,0,1,133.0,1,19,19,5,7,133.0,0,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,1,1,9773,0,1,154.0,1,37,37,9,7,150.2,0,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,19,100.0,1,38,19,0,10,111.3,0,0,0,0,1,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,38,4,9,126.2,0,0,1,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,132.0,1,3,1,2,7,125.5,1,0,1,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,2 +1,17,3,9147,0,1,127.0,1,37,37,5,7,116.2,0,0,1,1,0,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9773,0,1,121.0,1,19,38,9,7,113.0,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9238,0,1,130.0,1,19,19,9,9,127.6,1,0,1,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,160.0,1,34,34,99,99,114.3,0,0,1,1,0,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,2 +1,18,4,9254,0,1,119.0,1,37,37,9,9,113.1,1,0,1,0,0,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9003,0,3,130.0,1,38,37,5,6,130.0,0,0,1,1,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,163.0,1,19,37,5,8,150.8,1,0,1,1,0,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,2 +1,43,1,9238,0,1,122.0,1,19,19,5,5,114.3,1,0,1,1,1,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,2 +1,18,1,9147,0,1,131.0,1,34,34,90,90,131.0,0,0,1,1,0,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,17,4,9773,0,1,137.0,1,1,1,5,5,125.8,0,0,0,1,0,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,0 +1,39,1,9670,0,1,133.1,1,37,37,90,90,97.4,0,0,0,0,0,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,37,38,7,5,106.0,1,0,1,1,1,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,1 +1,17,6,9254,0,1,108.0,1,1,19,4,5,112.2,1,0,1,1,0,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,19,133.1,1,1,19,4,10,111.8,1,0,1,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9670,0,1,133.1,1,1,37,9,10,139.0,0,0,1,1,0,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,2 +1,17,1,9147,0,1,122.0,1,12,19,4,8,117.8,1,0,1,1,1,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,128.0,1,19,19,0,5,120.3,1,0,1,1,1,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,133.1,1,34,19,0,3,117.1,1,0,1,1,1,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9556,0,19,133.1,1,37,38,9,9,123.0,0,0,1,1,1,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,1 +1,17,2,9238,0,1,133.0,1,37,37,9,4,123.6,0,0,1,1,1,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,5,9670,0,1,132.0,1,19,19,5,5,134.1,1,0,1,1,0,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,129.0,1,38,1,4,10,129.4,1,0,1,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,136.0,1,19,19,4,8,150.4,1,0,1,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,154.0,1,3,3,1,3,129.0,1,0,1,1,1,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,2 +1,44,1,9130,0,39,150.0,1,1,1,4,4,150.0,1,0,1,1,1,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,2 +1,17,1,9773,0,1,115.0,1,37,37,9,8,116.1,1,0,1,1,1,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,1 +1,17,1,9500,0,1,157.0,1,19,3,4,9,138.8,0,0,1,1,0,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,1 +1,39,1,9670,0,19,133.1,1,19,1,5,8,97.2,1,0,1,1,0,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,141.0,1,37,38,6,6,125.6,1,0,1,1,1,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,143.0,1,19,1,9,9,144.4,1,0,1,1,1,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9119,0,1,127.0,1,19,1,4,5,115.8,0,0,1,1,0,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,150.0,1,1,1,9,10,142.7,0,0,0,1,1,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,132.0,11,12,12,90,4,129.9,1,0,1,1,1,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,115.0,1,19,19,191,171,109.1,0,0,0,0,0,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,2 +1,17,1,9773,0,1,121.0,1,38,38,9,8,120.4,1,0,1,1,1,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,1 +1,7,1,9085,0,40,130.0,1,1,1,4,4,130.0,1,0,1,1,1,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,140.0,1,19,38,4,4,138.3,0,0,1,1,0,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,6,9773,0,1,116.0,1,19,1,4,4,110.1,1,0,1,1,1,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,1 +1,1,1,9670,0,1,131.0,1,38,38,9,9,127.9,0,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,1 +1,51,1,9991,1,42,110.0,1,19,37,5,9,128.2,0,0,1,0,1,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,0 +1,1,3,9500,0,1,138.0,1,19,19,5,8,124.9,1,0,1,1,1,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,172.0,1,1,1,4,9,167.1,0,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,1 +5,39,1,9991,1,1,120.0,1,37,37,9,9,138.1,0,0,1,1,0,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,0 +1,39,1,9119,0,19,133.1,1,37,38,3,7,96.7,0,0,1,1,0,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,15,1,9130,0,1,133.1,41,1,1,4,4,100.0,0,0,1,1,1,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9119,0,1,122.0,1,19,19,9,9,114.7,0,0,1,1,0,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,133.1,1,19,38,192,192,96.0,1,0,1,1,1,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,160.0,1,1,37,9,10,118.0,0,0,1,1,1,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,2 +1,18,4,9119,0,1,134.0,1,19,38,194,175,124.9,1,0,0,1,0,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,2 +1,1,1,9254,0,1,133.1,1,4,19,4,5,98.0,0,0,1,1,0,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,0 +5,43,1,9991,1,3,130.0,1,3,3,1,1,130.0,0,0,1,1,1,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,120.0,1,19,19,4,5,114.8,1,0,0,0,1,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,0 +1,18,6,8014,1,1,134.0,1,3,19,2,4,120.7,1,0,1,1,1,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,133.1,1,37,37,9,9,109.7,0,0,1,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9070,0,1,128.0,1,19,19,3,3,123.5,1,1,1,0,0,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,133.1,1,1,19,5,9,130.0,0,0,1,1,0,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,1 +1,7,1,9991,1,40,120.0,1,43,3,3,3,120.0,0,0,1,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,2 +1,17,5,9556,0,1,139.0,1,19,19,9,8,121.3,1,0,1,1,1,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,156.0,1,3,19,3,3,151.1,0,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,1 +1,16,2,9147,0,1,132.0,1,37,37,9,9,122.6,1,0,1,1,1,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,2 +1,44,1,9003,0,39,130.0,1,2,3,9,6,130.0,0,0,1,1,0,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,2 +1,39,1,9003,0,1,133.1,1,1,1,1,6,120.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,0,1,0,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,0 +1,1,6,9500,0,1,133.0,1,3,3,1,1,126.2,1,0,1,1,1,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,1 +1,18,2,9147,0,1,140.0,1,37,37,5,9,124.3,1,0,1,1,0,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,44,1,9003,0,39,150.0,1,37,38,4,8,150.0,0,0,1,1,1,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,1 +1,39,1,9085,0,1,140.0,1,37,19,191,163,129.3,1,0,0,1,1,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,2 +4,7,1,9500,0,3,130.0,1,3,19,2,3,130.0,0,0,1,1,1,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9070,0,1,131.0,1,19,19,7,7,125.1,0,0,1,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,2 +1,10,1,9773,0,1,152.0,22,38,37,5,9,152.0,1,0,1,1,1,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,123.0,1,34,38,0,7,120.2,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,0 +1,1,1,9070,0,1,131.0,1,3,19,4,4,130.3,1,0,1,1,0,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,115.0,1,1,1,5,4,108.0,1,0,1,1,1,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,130.0,1,38,37,9,9,144.0,0,0,1,1,1,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,1 +1,17,1,9238,0,1,134.0,1,3,1,3,4,133.0,1,0,1,1,1,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,1 +1,51,1,9670,0,1,133.1,1,3,1,3,10,116.2,0,0,1,1,0,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,139.0,0,0,1,1,0,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,126.0,1,19,1,9,9,122.5,1,0,1,0,1,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,121.0,1,19,19,9,9,126.3,1,0,1,1,1,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9003,0,1,133.1,1,38,38,4,8,115.0,0,0,0,1,0,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,1 +2,39,1,8014,1,19,133.1,1,19,37,9,9,151.5,0,0,0,0,0,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9853,0,40,110.0,1,41,3,2,1,110.0,0,0,0,1,1,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,1 +1,17,5,9238,0,1,131.0,1,19,37,5,7,120.2,1,0,1,1,1,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,2 +5,7,1,9070,0,3,140.0,1,37,37,7,7,140.0,0,0,1,0,0,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +4,39,1,9254,0,1,140.0,1,38,37,9,9,112.0,0,0,0,1,1,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,0 +1,18,3,9853,0,1,122.0,1,38,37,9,5,120.3,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,9070,0,1,125.0,1,1,38,9,7,118.0,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,2 +1,1,3,9670,0,1,111.0,1,1,1,5,5,105.4,0,0,1,1,1,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +2,39,1,9254,0,1,130.0,1,37,37,4,7,120.0,1,0,1,1,1,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,160.0,1,37,37,9,9,160.0,1,0,1,1,1,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,1 +1,39,1,9147,0,12,133.1,1,37,37,9,9,140.0,0,0,1,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9147,0,1,118.0,1,1,2,10,10,117.3,1,0,1,1,1,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,2 +1,1,3,9085,0,1,130.0,1,1,19,9,9,121.3,1,0,1,1,1,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,19,133.1,1,37,37,9,9,130.0,0,0,1,1,1,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,17,3,9085,0,1,130.0,1,19,37,5,5,121.3,1,0,1,1,1,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,2 +1,1,2,9254,0,1,120.0,1,19,19,9,9,116.5,1,0,1,1,1,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,1 +2,39,1,9500,0,1,140.0,1,37,37,9,4,127.3,0,0,1,1,0,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,1 +1,17,1,9670,0,1,118.0,1,37,38,8,7,115.2,1,0,1,1,1,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,17,3,9238,0,1,125.0,1,19,19,7,8,121.5,0,0,1,1,1,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,1 +1,17,2,9500,0,1,125.0,1,19,19,5,5,114.5,1,0,1,1,1,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,136.0,1,39,1,3,4,134.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,115.0,1,3,2,4,5,112.6,0,0,1,1,0,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,53,1,9003,0,1,130.0,1,19,1,9,9,130.0,0,0,0,1,0,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,2 +1,1,3,9773,0,1,136.0,1,3,1,5,3,129.0,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,0 +1,39,1,9085,0,3,150.0,1,2,3,4,7,173.3,1,0,1,1,1,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,140.0,1,1,19,7,7,129.9,1,0,1,1,1,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,0 +1,7,1,9119,0,1,140.8,1,34,34,0,0,134.0,0,0,1,1,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9254,0,1,115.0,1,37,19,5,5,109.8,1,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,2 +1,17,5,9500,0,1,137.0,1,1,1,4,4,127.6,1,0,1,1,1,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,1 +4,7,1,9238,0,40,130.0,1,34,34,99,99,130.0,0,0,0,1,1,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,43,1,9147,0,1,123.0,1,37,37,9,9,106.2,0,0,1,1,1,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,121.0,1,1,3,3,7,113.0,1,0,1,1,0,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,1 +1,17,1,9254,0,1,140.0,1,3,1,2,3,129.9,0,0,1,1,1,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,7,1,9991,1,40,130.0,1,38,38,9,7,130.0,0,0,1,1,0,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,0 +1,51,1,9070,0,1,132.0,1,19,19,153,153,120.0,0,0,1,1,1,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,9119,0,1,110.0,1,37,37,9,9,106.8,0,0,1,1,0,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9070,0,1,124.0,1,19,37,4,4,126.8,0,0,1,1,1,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,2 +1,18,3,9147,0,1,133.1,1,1,38,4,7,101.0,1,0,1,0,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,3,9147,0,1,125.0,1,38,19,7,7,125.7,0,0,1,1,1,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,2 +1,17,4,9853,0,1,121.0,1,38,38,5,7,113.7,1,0,1,1,1,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,1,133.1,1,1,1,9,6,105.0,1,0,0,0,1,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,143.0,1,5,1,2,5,136.7,0,0,1,1,1,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,1 +1,1,2,9556,0,1,142.0,1,1,19,4,5,130.5,1,0,1,1,1,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,1 +1,1,2,9500,0,1,131.0,1,19,19,7,5,122.1,1,0,1,1,1,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,1 +1,1,4,9500,0,1,132.0,1,1,37,4,7,121.8,1,0,1,1,1,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,123.0,1,37,37,3,3,123.0,1,0,1,1,1,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,129.0,1,19,38,2,7,126.9,1,0,1,1,1,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,2 +1,1,4,9238,0,1,118.0,1,19,38,9,9,110.0,0,0,1,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,125.0,1,3,1,4,4,119.4,1,0,1,1,1,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,2 +1,17,1,9085,0,1,131.0,1,1,3,4,1,129.3,1,0,1,1,1,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9500,0,1,147.0,1,37,37,9,9,134.3,0,0,1,1,1,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,1 +2,39,2,9670,0,19,133.1,1,37,37,9,9,135.6,0,0,1,1,1,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,152.0,1,37,19,9,9,137.0,1,0,1,1,1,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,118.0,1,12,1,4,10,115.7,0,0,1,1,0,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,2 +1,15,1,9119,0,1,133.1,41,1,3,5,8,100.0,0,0,0,1,0,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,0 +1,1,5,9119,0,1,131.0,1,1,19,4,7,126.8,0,0,1,0,0,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,2 +1,1,1,9147,0,1,132.0,1,19,38,9,7,119.1,0,0,1,0,0,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,0 +2,43,1,8014,1,1,120.0,1,37,37,5,5,161.1,0,0,1,1,0,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,18,5,9500,0,1,137.0,1,19,1,1,10,129.3,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9147,0,1,118.0,1,37,19,5,5,119.1,1,0,1,1,1,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,1 +1,1,6,9500,0,1,134.0,1,38,38,9,9,122.0,1,0,1,1,0,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,163.0,1,1,1,4,3,149.7,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,140.0,1,38,38,9,7,140.0,0,0,1,1,1,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,2 +1,17,4,9147,0,1,122.0,1,19,19,5,7,116.4,1,0,0,1,1,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,140.0,1,3,37,3,7,116.9,0,0,1,1,0,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,5,2,9238,0,1,123.0,1,40,38,2,9,118.1,1,0,1,1,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,7,1,9991,1,3,130.0,1,3,19,2,3,133.9,0,0,1,1,1,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,1 +1,1,4,9670,0,1,125.0,1,1,38,4,7,114.9,1,0,1,1,1,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,130.0,1,1,1,4,10,115.2,0,0,1,1,0,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,124.0,1,38,19,9,7,129.6,1,0,1,1,0,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,139.0,1,38,38,7,5,133.4,0,0,1,1,1,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,4,9254,0,1,125.0,1,38,38,5,5,115.6,1,0,1,1,1,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,17,1,9853,0,1,147.0,1,37,37,9,9,142.8,1,0,1,1,1,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,0 +1,1,1,9003,0,1,144.0,1,19,19,9,9,132.8,0,0,1,1,0,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,2 +1,39,1,9003,0,12,133.1,1,19,1,9,1,130.0,0,0,1,1,0,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9500,0,1,140.0,1,37,37,9,6,135.5,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,6,9254,0,1,102.0,1,3,1,2,2,101.7,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,133.1,1,19,38,5,5,131.8,1,0,0,1,1,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,1 +1,44,1,171,0,39,150.0,1,4,4,2,2,150.0,0,0,1,1,0,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +1,53,1,9254,0,42,110.0,1,1,1,4,7,111.8,1,0,1,1,1,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,121.0,1,19,38,6,6,116.1,1,0,1,1,0,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,1 +1,17,4,9773,0,1,127.0,1,1,19,4,1,115.8,1,0,1,1,1,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,37,37,9,7,160.0,1,0,1,0,0,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,15,170.0,1,34,1,90,2,101.0,0,0,1,1,1,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,1 +1,17,1,9853,0,1,125.0,1,3,3,3,3,116.6,1,0,1,0,1,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,2 +1,17,4,9070,0,1,117.0,1,1,1,3,3,125.4,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,146.0,1,19,37,7,7,133.8,1,0,1,1,1,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,142.0,1,19,19,9,9,127.0,1,0,1,1,1,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,1 +1,1,1,171,0,3,116.0,1,3,3,2,2,128.2,0,0,1,1,1,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,1 +1,1,2,9500,0,1,124.0,1,37,37,7,7,116.5,1,0,1,1,1,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,118.0,1,19,19,5,7,117.8,0,0,1,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,1 +1,18,3,9670,0,1,119.0,1,38,38,9,9,115.2,1,0,1,1,1,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,131.0,1,3,19,3,10,123.3,0,0,1,1,0,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,2 +1,17,1,9254,0,1,136.0,1,39,3,3,3,128.7,1,0,1,1,1,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,0 +1,18,1,9500,0,1,140.0,1,37,38,5,7,126.0,1,0,1,1,1,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +1,44,1,9119,0,39,150.0,1,19,3,5,2,150.0,0,0,1,1,0,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,2 +1,43,1,9773,0,1,137.0,1,38,37,9,5,127.9,1,0,1,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,119.9,0,0,1,1,1,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,2 +1,18,2,9773,0,1,132.0,24,37,19,9,7,119.1,1,0,1,1,1,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,1 +2,43,1,8014,1,1,133.1,1,34,34,0,0,100.0,0,0,1,1,1,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,1,133.1,1,38,19,9,9,128.0,1,0,1,0,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,171,0,1,125.0,1,19,19,5,4,136.2,1,0,0,1,0,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,2 +1,17,1,9254,0,1,132.0,1,38,38,0,5,126.1,0,0,1,1,0,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,42,1,9670,0,1,130.0,1,1,1,9,10,116.3,1,0,1,1,1,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,1 +1,1,3,9773,0,1,150.0,1,19,38,4,4,146.5,1,0,1,1,1,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,1 +4,39,2,8014,1,1,160.0,1,37,38,7,5,115.0,0,0,1,1,1,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,135.0,1,19,1,9,9,122.1,1,0,1,1,1,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,136.0,1,3,3,9,9,136.0,1,0,0,0,1,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,3,3,7,1,130.0,1,0,1,1,0,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,2 +1,39,1,9119,0,19,133.1,1,19,19,5,3,100.9,1,0,1,1,0,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,2 +1,17,1,9254,0,1,137.0,1,34,38,0,7,137.7,1,0,0,0,1,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +4,39,1,8014,1,19,133.1,1,37,37,90,7,110.0,0,0,1,0,1,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,144.0,1,38,37,9,9,125.8,0,0,1,1,1,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,1 +1,1,4,9070,0,1,167.0,1,1,1,7,3,158.3,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,1 +1,1,1,9853,0,1,133.0,1,37,19,7,7,126.7,1,0,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,118.0,1,38,38,7,7,121.2,1,0,1,1,1,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,2 +2,39,1,9991,1,19,133.1,1,19,19,4,4,150.0,0,0,1,0,0,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,0 +1,17,2,9085,0,1,166.0,1,1,19,4,3,158.7,0,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,1 +1,44,1,9254,0,39,130.0,1,39,39,194,193,130.0,1,0,0,1,0,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,2 +1,17,1,9085,0,1,140.0,1,37,38,7,9,129.9,0,0,1,1,1,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,1 +1,7,1,9147,0,3,120.0,1,1,39,4,7,120.0,0,0,1,1,1,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,5,9254,0,1,118.0,1,19,37,5,5,120.5,1,0,1,1,0,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,0 +1,17,3,9070,0,1,120.0,1,3,1,4,4,116.9,1,0,1,1,1,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,1 +1,43,5,9238,0,1,101.0,24,37,19,9,7,119.9,1,0,0,0,1,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,1 +1,17,1,9500,0,1,128.0,1,19,1,4,3,117.2,1,0,1,1,1,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,1 +1,1,3,9254,0,1,118.0,1,1,19,9,9,111.7,1,0,1,1,1,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9773,0,1,137.0,1,37,37,0,90,134.2,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,0 +1,1,4,9500,0,1,144.0,1,3,39,2,3,129.0,1,0,1,1,1,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,0 +1,1,5,9147,0,1,125.0,1,37,38,7,7,122.2,1,0,1,1,1,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,2 +1,1,2,9500,0,1,147.0,1,3,1,4,3,136.7,0,0,1,1,1,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,1 +1,39,1,9085,0,39,120.0,1,37,37,1,9,137.7,1,0,1,0,0,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,160.0,1,1,37,9,9,146.0,1,0,1,1,1,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,2 +1,44,1,9238,0,39,130.0,1,1,19,4,5,127.4,0,0,0,0,0,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,3,1,2,4,154.9,0,0,0,0,0,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,0 +1,17,2,9670,0,1,129.0,1,19,19,5,4,129.4,0,0,1,1,1,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,0 +1,1,1,9130,0,1,137.0,1,3,19,3,5,136.3,1,0,1,1,1,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,1 +1,39,1,9991,1,1,100.0,1,37,37,9,6,153.5,0,0,0,0,0,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,134.0,1,38,38,7,9,132.8,1,0,1,1,1,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,137.0,1,37,37,7,9,130.8,1,0,1,1,1,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,133.1,1,37,37,1,1,97.0,0,0,1,1,0,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,143.0,1,3,38,2,10,129.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +2,39,1,9991,1,1,110.0,1,37,37,9,3,127.1,0,0,1,1,1,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,2 +2,7,1,9147,0,3,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,160.0,1,37,37,9,9,160.0,0,0,1,1,0,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,162.0,1,3,4,3,3,154.1,0,0,1,1,1,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,1 +1,1,2,9147,0,1,119.0,1,19,37,4,5,113.8,1,0,1,1,1,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,139.0,1,19,1,9,5,135.0,1,0,1,1,1,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,120.0,1,1,38,5,5,116.3,1,1,1,1,0,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,1 +1,17,2,9500,0,1,135.0,1,1,19,4,10,133.5,1,0,1,1,1,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,1 +1,1,3,9119,0,1,117.0,1,1,1,3,5,111.1,0,0,1,1,0,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,2 +1,1,3,9773,0,1,140.0,1,1,39,4,1,128.1,1,1,1,1,0,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9003,0,1,133.1,1,37,37,3,8,130.0,0,0,0,1,1,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,134.0,1,19,37,5,5,125.3,1,0,1,1,0,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,37,38,9,9,114.0,0,0,1,1,1,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,38,37,4,5,102.5,0,0,0,0,0,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,171,0,1,143.0,1,19,37,5,9,156.3,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,1,5,9500,0,1,130.0,1,19,1,9,5,122.1,1,0,1,1,1,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,1 +1,39,2,8014,1,1,100.0,1,35,37,90,90,100.0,0,0,1,1,1,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,1 +2,39,2,9670,0,1,100.0,1,37,37,9,9,110.0,0,0,1,1,0,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,2,9853,0,1,126.0,1,1,19,2,10,126.0,1,0,1,1,1,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,2 +1,18,3,9070,0,1,131.0,1,1,37,5,5,122.3,1,0,1,0,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,1,150.0,1,19,37,9,8,138.5,0,0,1,1,1,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,2,171,0,1,146.0,1,3,3,3,3,155.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9147,0,1,120.0,1,19,19,9,7,118.6,1,0,1,1,1,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,145.0,1,38,38,9,9,125.5,1,0,1,1,1,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,4,9070,0,1,143.0,1,1,1,9,7,134.6,1,0,1,1,1,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,0 +1,51,1,8014,1,1,121.0,1,1,38,5,7,112.3,0,0,1,1,1,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,130.0,1,37,1,9,8,120.2,1,0,1,1,0,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,1 +2,7,1,9254,0,2,100.0,1,37,37,9,9,100.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9119,0,1,130.0,1,37,3,9,3,137.0,1,0,1,1,0,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,37,37,9,9,120.0,1,0,1,0,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,140.0,1,38,37,7,7,105.2,0,0,1,1,0,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,131.0,1,1,19,4,7,135.9,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,108.0,1,19,38,9,7,110.5,1,0,1,1,1,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,111.0,1,1,38,5,9,107.5,0,0,1,1,0,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,1 +1,17,1,9147,0,1,147.0,1,37,37,9,6,142.8,1,0,0,0,1,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,2 +2,39,1,9991,1,1,170.0,1,38,19,4,8,134.7,0,0,1,1,1,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,138.0,1,4,19,2,3,124.7,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,125.0,1,37,38,9,9,125.0,1,0,0,0,1,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,118.0,1,38,38,5,5,114.2,1,0,1,1,1,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,130.0,1,3,3,1,5,118.8,0,0,1,1,1,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,1 +1,1,3,9085,0,1,131.0,1,37,19,9,8,136.3,1,0,0,0,1,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,0 +1,43,1,9991,1,1,141.0,1,37,37,9,9,131.9,0,0,1,1,1,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,0 +1,42,1,9070,0,1,120.0,1,3,2,3,1,116.9,0,0,1,1,0,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,0 +1,39,1,9991,1,1,130.0,1,1,1,9,7,152.1,0,0,1,1,0,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,12,133.1,1,34,34,0,0,135.0,0,0,1,1,1,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,0 +1,17,2,9500,0,1,130.0,1,38,38,7,7,122.5,1,0,1,1,1,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,160.0,1,1,1,194,131,128.4,0,0,1,1,1,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,1 +1,43,1,9500,0,1,132.0,1,1,38,7,7,129.6,0,1,1,1,0,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,1,1,3,9,118.4,0,0,1,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,1 +1,1,2,9556,0,1,133.1,1,19,19,9,9,104.5,1,0,1,1,1,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,0 +1,53,1,9003,0,42,150.0,1,1,38,8,8,150.0,0,0,1,1,1,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,144.0,1,3,1,2,3,126.9,0,0,1,1,1,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,150.0,1,3,3,2,2,120.0,0,0,0,0,1,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,3,3,2,10,160.0,1,0,1,1,0,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,129.0,1,1,1,9,9,120.0,0,0,1,1,0,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,1 +4,39,1,9003,0,12,133.1,1,37,37,9,6,160.0,0,0,1,1,1,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,1 +2,39,2,9991,1,1,100.0,1,37,37,9,9,100.0,1,0,1,1,0,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,115.0,1,19,1,3,8,123.4,0,0,1,1,1,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,1 +1,1,1,9500,0,1,124.0,1,19,37,3,8,117.5,1,0,1,1,0,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,2 +1,1,6,9254,0,1,129.0,1,38,19,9,5,117.8,1,0,1,1,1,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,127.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,19,133.1,1,38,38,7,8,120.0,0,0,1,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,0 +6,39,2,9147,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,4,9500,0,1,148.0,1,3,19,4,7,131.9,1,0,1,1,1,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,1 +1,39,1,9130,0,39,150.0,1,1,3,4,1,150.0,0,0,1,1,0,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,0 +1,17,1,171,0,1,145.0,1,37,37,9,1,150.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9238,0,1,123.0,1,1,1,9,9,115.7,1,0,1,1,1,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,1 +1,16,1,171,0,1,122.0,1,19,37,9,7,133.9,1,0,1,1,0,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,0 +1,1,1,9254,0,1,124.0,1,37,38,9,8,114.6,1,0,1,1,0,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,0 +1,17,1,9670,0,1,120.0,1,38,37,9,8,113.4,1,0,1,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,1 +1,7,1,9991,1,40,140.0,1,37,37,6,6,140.0,0,0,1,1,1,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,1 +1,1,5,9670,0,1,133.1,1,9,1,2,4,133.0,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +2,39,1,9991,1,1,100.0,1,19,19,4,4,113.0,0,0,1,1,0,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,2 +4,39,1,9003,0,1,133.1,1,19,19,9,4,100.7,0,0,1,1,1,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,2 +1,17,2,9147,0,1,133.1,1,38,38,4,7,109.0,1,0,1,1,0,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,2 +1,15,1,9238,0,1,140.0,26,19,19,9,6,140.0,0,0,1,1,0,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,1,3,9500,0,1,114.0,1,1,1,5,5,114.5,1,0,1,1,1,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,1 +1,43,1,9670,0,1,134.0,1,1,38,4,4,120.7,0,0,0,0,1,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,0 +1,39,1,8014,1,1,133.1,1,37,11,9,7,96.0,0,0,0,0,0,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9070,0,1,131.0,1,3,3,3,3,135.9,0,0,1,1,1,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,1 +1,43,2,9500,0,1,130.0,1,38,37,4,4,126.8,1,0,1,1,0,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,19,37,7,7,124.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9670,0,1,120.0,1,1,19,4,5,100.0,0,0,1,1,1,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,145.0,1,38,38,9,10,139.8,1,0,1,1,1,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,1 +1,1,1,9500,0,1,141.0,1,19,38,5,7,125.5,0,0,1,1,1,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,1 +5,39,1,9147,0,1,133.1,1,1,19,4,7,114.0,0,0,1,0,0,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9991,1,1,110.0,1,37,37,1,4,120.0,1,0,1,0,0,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,172.0,41,37,37,5,5,153.8,1,0,1,1,1,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,1 +1,17,1,9556,0,1,140.0,1,3,3,1,7,131.6,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,148.0,1,1,1,4,3,137.5,0,0,1,1,0,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,1 +1,17,1,9500,0,1,137.0,1,19,38,3,9,124.9,0,0,1,1,1,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,139.0,1,18,18,1,1,130.8,1,0,1,0,1,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,0 +1,17,1,9003,0,1,120.0,1,38,37,5,9,131.4,1,0,1,1,0,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,1 +1,53,1,9085,0,42,160.0,1,19,37,4,9,160.0,1,0,1,1,1,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,1 +1,18,1,9670,0,1,140.0,1,1,37,9,9,130.2,1,0,1,1,0,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,1 +1,43,1,9853,0,1,140.0,1,37,37,6,6,125.2,0,0,0,1,1,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,1 +1,1,4,9556,0,1,122.0,1,37,1,5,4,123.9,0,0,1,1,1,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,130.0,1,1,19,3,3,123.0,0,0,1,1,1,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,1 +1,44,1,9070,0,39,140.0,1,19,38,4,0,140.0,1,0,1,1,0,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,129.0,1,1,1,4,2,126.2,0,0,0,0,1,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,0 +2,17,3,8014,1,1,123.0,1,19,37,3,3,113.2,0,0,0,0,1,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,133.1,1,38,19,9,10,114.5,0,0,1,1,1,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,2 +1,51,1,9991,1,1,141.0,1,19,38,5,7,100.0,0,0,1,1,1,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,1 +1,17,2,171,0,1,131.0,1,2,1,3,3,148.9,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,39,1,9085,0,19,133.1,1,37,37,9,9,100.0,1,0,0,0,1,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,117.0,1,1,38,5,1,113.5,1,0,1,1,1,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,5,9670,0,1,116.0,1,19,38,9,9,119.5,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,1,19,3,4,116.7,0,0,1,1,1,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,129.0,1,2,3,2,2,128.3,1,0,1,1,1,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,2 +1,1,3,9085,0,1,138.0,1,1,1,4,8,128.7,1,0,1,1,1,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,1 +1,1,5,9147,0,1,118.0,1,19,19,9,9,114.2,1,0,1,1,0,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,133.0,1,3,19,2,8,126.7,0,0,1,1,1,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,2 +1,16,1,171,0,1,158.0,1,38,37,9,9,164.3,1,0,1,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,43,3,9500,0,1,126.0,1,38,37,6,5,124.3,1,0,1,1,1,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,2 +1,1,1,9070,0,1,123.0,1,38,38,9,5,124.8,0,0,1,0,1,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,2 +1,1,1,9130,0,1,160.0,1,3,3,3,2,155.1,1,0,1,1,1,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,1 +4,43,1,9500,0,1,130.0,1,37,37,9,9,103.7,0,0,1,1,1,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,2 +1,16,2,9238,0,1,133.0,1,19,38,4,5,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,130.0,1,38,37,9,9,124.8,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,135.0,1,37,1,7,7,132.8,1,0,1,1,1,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9119,0,1,128.0,1,1,38,4,7,100.0,0,0,1,1,0,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,2 +1,17,2,9085,0,1,120.0,1,1,1,9,10,115.0,0,0,1,0,1,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,0 +1,17,2,9070,0,1,142.0,1,3,1,2,4,141.0,1,0,1,1,0,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,2 +1,1,2,9853,0,1,124.0,1,38,37,5,3,118.1,1,0,1,0,1,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,0 +1,17,6,9147,0,1,145.0,1,37,37,9,9,132.0,1,0,1,1,1,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,1 +1,39,1,9130,0,1,114.0,1,38,38,9,10,120.0,0,0,1,1,1,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,140.0,1,3,3,2,2,146.4,0,0,1,1,1,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,1 +1,1,5,9773,0,1,130.0,1,34,38,0,8,128.3,1,0,1,0,1,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,0 +1,17,3,9670,0,1,110.0,1,19,1,4,4,107.5,1,0,1,1,1,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,135.0,1,37,37,5,5,126.3,1,1,1,1,1,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,1 +2,1,1,9254,0,1,140.0,1,19,38,4,7,133.0,0,0,1,1,0,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,1 +1,39,1,9254,0,1,150.0,1,37,37,9,9,115.0,0,0,1,1,0,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,1 +1,39,1,9070,0,1,130.0,1,1,1,5,3,112.0,1,0,1,1,0,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,1 +1,1,1,9070,0,1,110.0,1,1,37,9,9,105.1,1,0,1,1,1,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,1 +1,17,3,9119,0,1,131.0,1,37,37,9,7,118.4,0,0,1,1,0,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,0 +1,17,1,171,0,1,136.0,1,38,38,7,7,127.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,3,9773,0,1,127.0,1,19,19,5,8,120.0,0,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,3,171,0,1,139.0,1,37,19,9,8,142.2,1,0,1,1,0,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,128.0,1,37,19,9,4,127.3,1,0,1,1,1,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,16,4,9773,0,1,109.0,1,37,37,9,3,137.0,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,1 +1,53,1,9085,0,42,130.0,1,19,1,9,9,130.0,1,0,0,0,1,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,2 +1,7,1,171,0,3,130.0,1,1,2,9,2,130.0,0,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,120.0,1,37,37,9,9,120.0,1,0,0,1,1,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,0 +1,2,1,9853,0,1,120.0,1,19,38,9,9,122.5,0,0,1,0,1,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,19,133.1,1,2,1,8,8,120.0,1,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,0 +1,43,1,9773,0,1,121.0,1,1,1,4,5,121.0,1,0,1,1,0,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,2 +1,17,4,9147,0,1,120.0,1,38,19,9,9,111.3,1,0,1,1,1,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,1 +1,44,1,9238,0,39,140.0,1,38,19,5,0,141.8,0,0,1,1,1,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,131.0,1,1,1,7,4,127.2,1,0,0,1,0,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,2 +1,39,1,8014,1,1,130.0,1,37,11,9,10,131.5,0,0,1,1,1,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,3,19,2,3,125.7,1,0,1,1,1,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,1 +1,1,2,9556,0,1,136.0,1,19,19,9,9,129.5,1,0,1,1,1,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,1 +1,42,1,9119,0,1,120.0,1,5,5,2,2,115.0,0,0,1,1,0,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,0 +1,17,6,9119,0,1,124.0,1,19,19,4,0,126.1,1,0,1,1,0,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,1 +1,1,1,9254,0,1,160.0,1,19,38,9,9,140.8,1,0,1,1,0,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,2 +1,1,1,9238,0,1,123.0,1,37,37,9,9,115.0,1,0,1,1,1,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,1 +2,39,2,9670,0,1,133.1,41,37,19,9,9,130.0,0,0,1,1,1,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9670,0,6,170.0,1,34,34,0,0,111.6,0,0,1,1,0,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9085,0,1,138.0,1,1,3,9,1,123.0,1,0,1,1,1,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,1,37,6,6,130.0,1,0,1,1,0,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,1 +1,17,2,9119,0,1,133.1,1,1,2,3,3,117.0,1,0,1,1,0,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,2 +1,1,5,9254,0,1,131.0,1,19,37,9,9,123.7,0,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,1 +1,39,1,9003,0,1,130.0,1,1,1,9,4,140.0,0,0,1,0,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9773,0,1,135.0,1,1,19,4,10,129.4,1,0,1,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,1 +1,1,1,9853,0,1,132.0,1,1,19,3,3,122.9,1,0,1,1,1,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,115.0,1,37,37,9,8,129.0,1,0,0,0,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,51,1,9238,0,1,160.0,1,3,19,2,1,116.1,0,0,0,1,1,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9003,0,12,133.1,1,37,1,9,10,130.0,0,0,1,1,0,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,129.0,1,37,38,4,9,121.0,1,0,1,1,1,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,2 +1,17,1,9119,0,1,130.0,1,38,19,7,3,119.9,1,0,0,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,39,1,9670,0,1,133.1,1,37,37,9,9,100.2,1,0,1,0,1,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,4,38,4,5,140.0,1,0,1,1,1,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,2 +2,7,1,9991,1,43,140.0,1,40,5,3,3,140.0,0,0,1,1,1,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,1 +1,43,2,9670,0,1,129.0,1,3,3,5,5,122.4,1,0,1,1,1,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,2 +1,1,1,9238,0,1,116.0,1,38,38,9,6,116.4,1,0,1,1,1,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,44,1,9130,0,39,140.0,1,1,19,4,8,140.0,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9130,0,39,130.0,1,1,3,9,2,130.0,1,0,0,1,1,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,0 +1,1,5,9500,0,1,139.0,1,38,38,9,5,130.5,1,0,1,1,1,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,1 +1,42,1,9500,0,1,100.0,1,19,19,9,9,100.0,0,0,0,1,0,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,0 +1,7,1,9773,0,43,140.0,1,19,1,4,8,140.0,0,0,1,1,0,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,43,1,9003,0,1,125.0,1,1,38,4,7,125.0,1,0,1,1,1,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,1 +1,39,2,9147,0,19,133.1,1,38,19,4,10,116.3,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,3,9500,0,1,132.0,1,37,37,4,3,127.3,1,0,1,1,1,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,127.0,1,1,37,4,8,121.1,1,0,1,1,0,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,1 +1,39,1,9670,0,1,140.0,1,37,37,6,6,120.0,0,0,1,1,1,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,133.0,1,37,37,9,5,139.2,1,0,0,1,0,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,140.0,1,19,19,1,4,133.3,1,0,1,1,1,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,120.0,1,3,3,2,2,112.0,0,0,1,1,1,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,2 +2,1,1,9147,0,1,137.0,1,19,37,9,9,124.4,0,0,1,1,1,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,130.0,1,38,38,9,3,145.6,0,0,1,1,0,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,17,6,9670,0,1,120.0,1,1,14,4,5,113.7,1,0,1,1,1,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,120.0,1,38,19,9,3,112.7,0,0,1,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9254,0,1,122.0,1,37,37,9,9,114.3,1,0,1,0,1,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,1,1,8014,1,1,133.1,1,3,1,1,7,100.0,0,0,1,1,1,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,117.0,1,4,19,3,5,123.7,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,1 +1,44,1,9003,0,39,140.0,1,4,4,4,2,120.0,1,0,1,1,0,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,2 +1,1,3,9238,0,1,137.0,1,1,1,3,3,131.4,1,0,1,1,1,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,1 +1,43,1,9130,0,1,130.0,1,1,1,1,1,130.0,1,0,1,1,0,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,2 +1,1,2,9773,0,1,121.0,1,1,19,9,7,118.9,1,0,1,1,1,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,133.1,1,19,38,9,8,128.2,1,0,1,1,0,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,2 +1,43,1,9070,0,1,134.0,1,19,37,7,7,132.7,1,0,1,1,0,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9147,0,1,125.0,1,1,38,7,7,120.1,0,0,0,1,0,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,129.0,1,37,37,9,9,117.1,1,0,1,1,1,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,145.0,1,38,38,5,7,138.0,1,0,1,1,1,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,120.0,105,1,1,9,9,119.0,1,0,0,0,1,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,0 +1,1,1,9500,0,1,131.0,1,1,19,9,9,127.0,0,0,1,1,0,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,8014,1,1,100.0,1,38,19,6,10,112.8,0,0,1,1,1,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,1 +1,1,2,9070,0,1,145.0,1,38,19,7,7,130.0,1,0,1,1,0,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,126.0,1,37,38,7,7,119.0,0,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,1 +1,1,2,9773,0,1,137.0,1,1,19,7,7,133.2,1,0,1,1,1,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,128.0,1,38,38,9,7,128.4,1,0,1,1,1,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,2 +1,44,1,9085,0,39,150.0,1,19,38,194,193,150.0,1,0,1,1,1,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,2 +1,1,4,171,0,1,146.0,1,1,1,9,5,151.3,1,0,1,1,1,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,1 +1,1,6,9147,0,1,139.0,1,19,12,4,4,125.0,1,0,1,1,1,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,1 +1,1,2,9254,0,1,136.0,1,1,1,9,4,123.4,1,0,1,1,1,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,5,9670,0,1,127.0,1,3,4,2,2,122.8,0,0,1,1,0,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,127.0,1,38,37,5,7,121.8,1,0,0,1,1,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,2 +1,39,1,9003,0,1,130.0,1,38,37,7,7,120.0,0,0,1,1,0,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,1 +1,1,2,9238,0,1,100.0,1,38,1,7,7,99.3,1,0,1,1,1,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9119,0,1,160.0,1,37,37,9,6,153.7,0,0,1,1,0,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,2 +1,17,4,9500,0,1,138.0,1,3,1,2,5,134.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,1 +1,17,4,9254,0,1,124.0,1,3,3,3,3,126.1,1,0,1,1,1,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,0 +2,7,1,9147,0,3,110.0,1,19,1,9,9,110.0,0,0,1,1,1,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,2 +1,1,1,9500,0,1,143.0,1,3,19,3,10,126.8,0,0,1,1,0,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,1 +1,17,2,9670,0,1,110.0,1,1,1,4,10,115.3,1,0,1,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,1 +1,51,1,9119,0,1,129.0,1,2,37,2,9,121.6,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,2 +1,15,1,9254,0,1,140.0,26,19,1,9,7,140.0,1,0,1,0,1,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,118.0,1,19,38,7,9,113.5,1,0,1,1,1,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,18,5,9853,0,1,110.0,1,19,37,7,7,110.0,1,0,1,1,1,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,2 +1,39,1,171,0,1,145.0,1,3,1,2,10,114.5,1,0,1,1,0,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,43,2,9670,0,1,125.0,1,38,19,4,3,106.6,1,0,1,1,1,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,0 +4,39,1,9500,0,19,133.1,1,37,37,5,7,100.0,0,0,1,0,1,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,0 +1,1,6,9500,0,1,133.0,1,1,1,9,9,119.7,1,1,0,1,0,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,1 +1,1,2,9853,0,1,134.0,1,1,38,9,8,122.5,1,0,1,1,1,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,120.0,1,19,37,3,9,100.0,0,0,1,1,1,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,0 +1,39,1,9003,0,1,130.0,1,37,37,6,6,100.0,0,0,0,0,0,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,160.0,1,38,38,6,6,160.0,1,0,1,1,1,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,19,133.1,1,37,37,9,7,116.0,0,0,1,1,1,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,1 +1,18,3,9500,0,1,145.0,1,1,1,4,8,133.6,1,0,1,1,1,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,1 +1,39,1,9254,0,19,133.1,1,3,19,2,3,124.5,0,0,1,1,1,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,125.0,1,19,38,9,8,118.3,0,0,1,1,0,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,0 +1,5,1,9085,0,1,150.0,1,1,1,4,4,139.4,0,0,1,1,1,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,2 +1,17,1,9773,0,1,133.1,1,38,38,9,5,117.0,0,0,1,1,1,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,2 +1,1,3,9500,0,1,142.0,1,1,1,4,7,131.0,1,0,1,1,1,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,1,19,3,3,154.3,0,0,1,1,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9147,0,1,135.0,1,37,38,9,9,128.0,1,0,0,1,1,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,149.0,1,37,37,9,9,138.0,0,0,1,1,0,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,140.0,1,19,38,9,9,129.2,1,0,1,1,1,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9556,0,1,147.0,1,3,4,3,2,100.0,0,0,1,1,1,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,2 +1,39,1,9085,0,12,133.1,1,37,37,10,9,144.0,0,0,1,1,0,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,39,1,9254,0,1,100.0,1,3,19,3,5,115.0,0,0,1,0,0,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,17,1,9670,0,1,140.0,1,1,1,4,3,133.4,0,0,1,1,0,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,2 +1,1,2,171,0,1,127.0,1,3,39,1,3,133.5,1,0,1,1,0,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,2 +1,17,3,9147,0,1,112.0,1,1,19,3,5,107.8,1,0,1,1,1,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,2 +2,39,1,9147,0,1,110.0,1,37,37,9,10,140.0,0,0,1,1,1,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,120.0,1,1,3,175,121,105.9,0,0,1,1,1,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,2 +1,1,1,9238,0,1,168.0,1,37,37,9,9,149.5,0,0,1,1,1,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,1 +1,17,1,8014,1,1,141.0,1,34,34,0,0,136.1,0,0,1,1,1,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,140.0,1,1,1,4,3,130.7,1,0,1,1,0,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,0 +1,7,1,9500,0,3,130.0,1,37,37,9,5,130.0,0,0,1,1,1,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,0 +1,1,3,9500,0,1,134.0,1,1,37,8,7,120.5,1,0,1,1,0,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,160.0,1,1,38,4,7,141.5,1,0,1,1,0,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9853,0,1,122.0,1,38,37,191,195,112.9,1,0,1,1,1,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,161.0,41,1,1,9,7,163.1,1,0,1,0,1,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,1 +1,39,1,9500,0,1,110.0,1,1,37,9,9,126.0,1,0,1,1,0,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,2 +1,17,1,9670,0,1,109.0,1,1,1,4,4,108.0,0,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,131.0,2,37,1,9,3,126.1,1,0,1,1,0,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,1 +1,1,2,9556,0,1,125.0,1,38,1,9,3,116.3,1,0,1,1,1,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,1 +1,17,1,9085,0,1,138.0,1,2,19,2,9,126.8,1,0,1,1,1,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,2 +1,1,5,9853,0,1,128.0,1,38,37,9,9,120.3,1,0,0,0,1,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,0 +1,1,2,9254,0,1,130.0,1,1,38,4,9,122.7,1,0,1,1,1,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,0 +1,39,1,9991,1,9,133.1,1,37,34,90,90,118.1,1,0,1,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,0 +1,1,1,9085,0,1,125.0,1,1,19,4,9,114.5,1,0,1,1,1,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,1 +1,1,5,9773,0,1,138.0,1,19,19,9,9,139.4,1,0,1,1,1,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,125.0,1,19,38,3,5,115.9,0,0,1,1,1,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,1 +1,43,1,9500,0,1,134.0,1,38,19,5,8,120.7,0,0,1,1,1,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,133.1,41,3,1,3,10,100.0,1,0,1,0,1,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,0 +5,39,1,9003,0,1,133.1,1,37,37,9,7,110.0,0,0,0,0,1,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,0 +1,17,1,9254,0,1,128.0,1,19,1,5,7,120.7,1,0,0,1,1,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,162.0,1,19,19,4,7,152.9,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +1,51,1,9238,0,1,121.0,1,3,19,3,10,111.9,1,0,1,1,1,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,1 +1,39,2,9991,1,1,172.0,1,19,37,9,8,150.0,1,0,1,1,1,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,2 +1,17,1,9254,0,1,116.0,1,19,19,9,8,119.9,1,0,1,1,1,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,125.0,1,19,19,3,10,131.0,1,0,1,1,0,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +1,39,1,9500,0,4,150.0,1,3,38,3,7,127.0,1,0,1,1,0,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,0 +1,17,2,9254,0,1,128.0,1,38,38,9,9,129.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,1 +1,1,2,9670,0,1,120.0,1,3,19,4,5,115.5,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,1 +1,44,1,9003,0,39,160.0,1,38,38,9,6,160.0,1,0,1,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,1 +1,44,1,9085,0,39,130.0,1,3,1,2,9,130.0,1,0,1,1,1,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,140.0,1,1,19,4,8,124.6,1,0,1,1,1,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,44,1,9085,0,39,150.0,1,3,3,2,2,150.0,1,0,1,1,1,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,1 +2,39,1,9853,0,1,133.1,1,37,19,9,5,138.3,0,0,1,1,1,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,0 +1,43,1,9991,1,1,150.0,1,3,3,4,4,100.0,1,0,1,1,0,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,1 +1,44,1,9238,0,1,150.0,1,1,38,4,9,145.9,0,0,1,1,1,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,1 +1,18,3,9500,0,1,131.0,1,19,1,4,7,127.5,1,0,1,1,1,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,1 +1,7,1,9085,0,3,150.0,1,19,37,90,90,140.0,0,0,1,1,0,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,167.0,1,19,19,9,7,156.2,0,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,1,140.0,1,1,3,4,5,130.0,0,0,1,1,0,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9238,0,1,132.0,1,1,19,4,9,127.1,1,0,1,1,1,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,1 +1,1,3,9119,0,1,133.0,1,3,1,3,4,121.8,1,0,1,1,0,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,2 +1,17,1,9670,0,1,133.1,1,1,37,4,5,150.0,0,0,1,1,0,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,1 +1,1,1,9147,0,1,150.0,103,37,37,9,9,134.6,0,0,1,1,0,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,1 +1,17,6,9773,0,1,131.0,1,34,34,0,0,129.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,139.0,1,3,1,4,1,126.0,1,0,1,1,0,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,0 +1,17,1,9670,0,1,138.0,1,1,1,4,8,123.0,0,0,0,0,0,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,2 +5,39,1,9853,0,19,133.1,1,37,37,9,8,118.0,0,0,1,1,1,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,0 +1,1,3,9500,0,1,142.0,1,37,38,9,9,137.3,1,0,1,1,1,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,136.0,1,3,38,2,9,125.7,1,0,1,1,1,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,2 +1,1,2,9500,0,1,140.0,1,1,1,4,10,128.3,1,0,1,1,1,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,132.0,1,1,37,4,9,127.1,0,0,1,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,2,9147,0,1,122.0,1,19,19,7,7,116.1,1,0,1,1,1,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,1 +1,44,1,9085,0,1,140.0,1,1,2,3,3,140.0,0,0,1,1,1,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,2 +1,42,1,9853,0,12,133.1,1,1,3,3,2,133.7,0,0,1,1,1,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,0 +2,7,1,9500,0,3,120.0,1,37,19,9,7,120.0,1,0,1,1,1,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,2 +1,1,4,9238,0,1,134.0,1,38,19,7,7,128.4,1,0,1,1,1,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9085,0,1,130.0,1,19,38,4,7,121.3,1,0,1,1,1,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,1 +1,39,2,9238,0,1,110.0,1,19,1,5,5,136.5,0,0,1,1,0,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9670,0,1,133.1,1,38,19,9,8,122.9,0,0,0,0,0,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,124.0,1,19,1,9,3,123.7,1,0,1,1,1,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,17,1,9991,1,1,120.0,1,38,3,9,3,116.9,1,0,0,0,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,43,2,9147,0,1,160.0,1,37,37,9,9,96.0,0,0,1,0,1,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9238,0,1,154.0,1,19,37,9,7,140.4,1,0,1,1,1,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,2 +1,17,5,9070,0,1,125.0,1,19,1,5,5,122.6,1,0,1,1,0,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,2 +1,17,2,9119,0,1,137.0,1,1,1,4,4,130.4,1,0,0,1,0,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,0 +1,1,1,9085,0,1,134.0,1,37,19,9,9,136.8,1,0,1,1,0,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,1 +1,39,1,9773,0,19,100.0,1,37,37,0,0,128.0,1,0,1,1,0,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +4,39,1,9130,0,19,133.1,1,37,38,9,4,100.9,0,0,1,1,0,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,127.0,1,1,19,5,7,130.5,1,0,1,1,1,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,1 +2,1,1,9003,0,1,131.0,1,19,38,5,5,118.4,0,0,1,1,1,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,142.0,1,1,38,5,7,127.7,0,0,1,1,1,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,130.0,1,1,38,4,9,115.0,0,0,1,1,0,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9670,0,1,140.0,1,34,34,0,0,100.0,0,0,1,1,1,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,1 +1,17,5,9773,0,1,134.0,1,1,19,9,5,121.8,1,0,1,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,1 +1,1,3,9853,0,1,122.0,1,1,3,5,3,113.6,0,0,1,1,1,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,1 +2,43,1,9991,1,1,114.0,1,37,37,7,8,116.7,0,0,1,1,0,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,0 +1,39,1,9991,1,1,130.0,1,3,1,3,3,120.5,0,0,1,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9853,0,1,148.0,1,19,19,4,5,143.5,0,0,1,1,1,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,43,1,9991,1,1,120.0,1,37,19,9,9,107.0,0,0,1,0,0,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,130.0,1,3,19,5,5,121.6,0,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,39,1,9500,0,19,133.1,1,37,37,9,6,120.0,0,0,1,0,1,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,0 +1,1,2,9853,0,1,123.0,1,19,1,194,103,115.3,1,0,1,1,1,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,2 +1,18,1,9130,0,1,135.0,1,38,19,9,5,121.7,1,0,1,1,1,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,1 +1,1,1,9254,0,1,116.0,1,38,38,5,8,110.8,1,0,1,1,1,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,7,1,9147,0,3,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,43,1,9991,1,1,133.1,41,37,37,9,8,114.7,0,0,1,1,1,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,0 +1,1,1,9147,0,1,122.0,1,37,37,9,7,120.6,1,0,1,1,1,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9130,0,1,150.0,1,5,5,2,2,146.2,0,0,1,1,1,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,0 +2,7,1,9147,0,3,130.0,1,1,4,3,10,130.0,0,0,1,1,1,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,1 +2,39,1,9085,0,19,110.0,1,37,37,90,90,110.0,0,0,1,0,0,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9773,0,1,140.0,1,1,1,9,9,136.9,1,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,1 +1,44,1,9085,0,39,150.0,1,19,19,9,9,150.0,1,0,1,1,1,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,1 +2,43,1,9003,0,1,149.0,1,1,1,4,5,156.1,1,0,1,0,0,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9119,0,1,133.1,1,1,1,9,3,136.0,0,0,1,1,0,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,0 +1,16,2,9238,0,1,122.0,1,19,37,9,7,127.3,1,0,1,1,1,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,1 +1,17,1,171,0,1,133.0,1,1,1,6,7,134.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,141.0,1,19,38,9,9,130.5,0,0,1,1,0,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,1 +1,43,1,9773,0,1,121.0,1,1,3,9,3,123.8,0,0,1,0,0,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,0 +1,44,1,9238,0,39,140.0,1,1,1,4,3,138.6,0,0,1,1,0,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,0 +1,1,1,9991,1,1,145.0,1,2,37,4,9,127.5,1,0,1,1,0,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,100.0,1,37,19,9,2,121.9,0,0,1,0,1,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,120.0,1,38,38,9,9,148.5,0,0,1,1,1,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +5,39,1,9991,1,1,110.0,1,1,1,3,3,119.0,0,0,1,1,0,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,1 +1,1,2,9254,0,1,137.0,1,1,38,2,8,122.3,1,0,1,1,0,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,1 +1,42,1,9238,0,1,133.1,1,1,19,4,9,134.0,0,0,1,1,1,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,38,37,9,7,130.0,1,0,1,1,0,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,1 +5,7,1,9147,0,40,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,1 +1,39,1,9991,1,1,120.0,1,37,37,9,9,111.1,0,0,1,1,1,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,1 +1,17,1,9147,0,1,124.0,1,38,19,6,10,126.8,1,0,1,1,1,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,1 +2,1,1,9500,0,1,151.0,1,37,38,9,7,134.5,0,0,0,1,1,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,133.0,1,19,37,9,8,121.8,1,0,1,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,148.0,1,1,19,4,5,135.1,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,120.0,1,19,38,4,8,122.5,0,0,1,0,0,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,2 +1,39,1,9070,0,1,140.0,1,37,37,9,10,118.0,0,0,0,1,0,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,3,133.1,1,9,9,90,90,130.0,0,0,1,1,1,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,150.0,1,34,34,0,0,108.0,0,0,1,1,1,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,1,150.0,1,1,38,3,5,120.0,0,0,1,1,0,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,2 +1,44,1,9085,0,39,150.0,1,38,1,5,5,150.0,0,0,1,1,1,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,2 +1,1,2,9238,0,1,133.1,1,19,19,9,9,106.0,1,0,1,1,1,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,1,9147,0,1,102.0,1,38,38,9,9,99.6,1,0,1,1,1,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,1 +1,39,1,9991,1,1,140.0,1,38,19,9,5,130.0,0,0,0,1,1,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,2 +1,1,3,9773,0,1,138.0,1,3,1,2,3,135.9,1,0,1,1,1,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,1 +1,53,1,9085,0,42,150.0,1,1,1,9,4,150.0,1,0,1,1,0,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,0 +1,1,6,9147,0,1,127.0,1,1,19,1,6,120.0,1,0,1,1,0,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,1 +1,44,1,9085,0,39,160.0,1,1,1,4,4,160.0,0,0,1,1,0,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,1 +1,1,5,9500,0,1,137.0,1,38,38,4,8,126.5,1,0,1,1,1,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,1,19,4,4,132.6,0,0,1,1,1,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,130.0,1,1,1,4,9,150.0,0,0,1,1,0,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,1 +1,1,2,9773,0,1,146.0,1,3,1,1,3,149.2,1,0,1,1,1,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,129.0,1,38,38,6,6,118.5,1,0,1,1,1,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,131.0,1,19,3,3,2,126.1,1,0,1,1,1,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,2 +1,39,1,9085,0,43,160.0,1,3,39,2,3,172.0,0,0,1,1,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,39,1,9670,0,1,133.1,1,1,1,4,4,112.9,0,0,1,1,1,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,0 +2,39,1,9003,0,1,150.0,1,37,37,9,6,140.0,0,0,1,1,0,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,1 +1,17,1,9147,0,1,127.0,1,37,38,9,7,115.8,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,1 +1,1,1,9070,0,1,133.1,1,1,37,5,9,143.0,1,0,0,1,1,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,0 +1,1,1,9070,0,1,124.0,1,19,19,9,9,138.4,1,0,0,1,1,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,0 +1,1,1,9070,0,1,125.0,1,1,1,4,4,132.0,0,0,1,0,1,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,2 +1,1,5,9130,0,1,160.0,1,3,1,2,9,150.2,1,0,1,1,1,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,0 +2,39,1,9991,1,1,110.0,1,37,37,9,4,160.0,0,0,1,1,1,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,1 +1,1,1,9670,0,1,135.0,1,19,37,5,7,121.4,0,0,1,1,0,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,2,9670,0,1,135.0,1,19,19,7,10,121.4,0,0,1,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,125.0,1,1,38,4,9,118.4,1,0,1,1,1,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,2 +1,1,6,9500,0,1,145.0,1,38,37,5,6,127.5,1,0,1,1,1,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,1 +1,43,3,171,0,1,140.0,1,37,38,7,7,143.4,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9773,0,1,134.0,1,37,19,9,10,141.4,1,0,1,1,1,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,130.0,1,29,38,9,8,122.0,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,109.0,1,19,19,4,9,104.1,1,0,0,0,1,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,116.0,1,34,34,0,0,127.0,1,0,1,1,0,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,3,8014,1,19,100.0,1,37,37,9,9,120.0,1,0,1,1,0,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,1 +1,1,2,9238,0,1,122.0,1,37,38,4,7,118.2,1,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,8014,1,1,100.0,1,12,5,9,4,116.5,0,0,0,0,1,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,122.0,1,19,19,193,194,112.6,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,42,3,9500,0,1,136.0,1,1,1,4,4,148.8,1,0,1,1,1,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,137.0,1,19,1,9,9,132.8,0,0,1,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,130.0,1,37,37,6,6,111.9,0,0,0,1,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9254,0,1,116.0,1,19,38,5,5,116.0,1,0,1,1,1,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,1 +1,18,2,9500,0,1,131.0,1,1,3,3,2,121.2,1,0,1,1,1,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,141.0,1,1,19,3,3,131.9,1,0,1,1,1,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,120.0,1,37,37,9,10,122.6,0,0,1,1,1,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,0 +1,18,5,9119,0,1,136.0,1,3,2,2,3,125.2,1,0,1,1,0,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,2 +1,1,1,9670,0,1,125.0,1,19,1,7,4,122.6,0,0,1,1,0,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,139.0,1,19,37,9,9,131.5,1,0,1,1,1,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,1 +1,5,1,9853,0,1,119.0,1,1,38,5,8,118.3,1,0,1,1,1,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,2 +1,17,2,9773,0,1,125.0,1,1,38,5,6,115.9,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,4,9147,0,1,126.0,1,1,19,4,8,120.1,1,0,1,1,1,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,1 +1,17,1,9085,0,1,125.0,1,1,37,4,9,117.0,1,0,1,1,1,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,1 +1,1,1,9238,0,1,135.0,1,19,38,7,5,121.0,0,0,1,1,1,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,138.0,1,38,37,3,3,133.1,0,0,1,1,0,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,148.0,1,19,37,9,5,130.9,0,0,1,0,0,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,145.0,1,12,1,4,10,139.8,1,0,1,1,1,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,1 +1,1,1,171,0,1,118.0,1,37,37,3,5,110.0,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +1,51,1,9147,0,1,99.0,1,3,1,3,3,99.7,1,0,0,0,1,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,2 +1,17,2,9556,0,1,137.0,41,1,1,7,7,124.4,1,0,1,1,1,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,1 +1,17,3,9853,0,1,133.1,1,34,34,0,0,115.0,0,0,1,1,1,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,123.0,1,37,38,9,9,113.9,1,0,0,0,1,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,0 +1,1,4,9238,0,1,125.0,1,19,38,9,6,114.9,1,0,0,1,1,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,2 +1,18,1,8014,1,1,137.0,1,1,1,4,3,123.0,0,0,0,1,1,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,1 +1,43,1,8014,1,1,131.0,1,19,37,8,5,125.0,0,0,1,1,0,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,7,1,9147,0,3,150.0,1,6,27,1,7,150.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,125.0,1,1,1,9,4,117.0,0,0,1,1,1,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,133.1,1,37,1,9,10,100.0,0,0,1,1,1,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,0 +1,1,3,9670,0,1,121.0,1,1,19,5,5,111.9,1,0,1,1,0,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,2 +1,1,5,9070,0,1,133.1,1,1,19,3,3,112.0,1,0,1,1,0,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,1 +1,43,1,9991,1,1,140.0,1,1,1,6,6,100.0,0,0,1,1,0,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,1 +2,42,1,9556,0,1,110.0,1,37,37,9,6,140.0,0,0,1,1,0,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,0 +1,1,1,9238,0,1,130.0,1,1,1,4,4,124.8,0,0,1,1,1,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,138.0,1,38,37,9,6,126.8,1,0,1,1,0,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,1 +1,17,4,9773,0,1,127.0,1,2,37,9,9,115.8,1,0,0,0,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,18,4,9085,0,1,170.0,1,1,1,4,5,166.6,0,0,0,0,1,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,130.0,1,1,1,4,4,130.0,1,1,1,1,0,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,3,1,2,8,100.0,1,0,1,1,0,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9670,0,1,106.0,1,3,1,2,3,105.7,1,0,1,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,43,1,9556,0,1,140.0,1,37,37,9,9,128.0,1,0,1,0,1,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,0 +1,1,1,9147,0,1,127.0,1,1,4,9,10,121.8,0,0,1,1,0,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,134.0,1,1,1,9,6,130.9,0,0,0,1,1,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,1 +2,39,1,9773,0,1,133.1,1,37,37,7,4,132.0,0,0,1,1,0,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,171,0,1,110.0,1,12,3,5,2,100.0,1,0,1,1,0,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,6,9238,0,1,113.0,1,1,38,194,163,112.3,1,0,0,1,1,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,1 +1,17,2,9254,0,1,118.0,1,19,19,5,7,121.2,0,0,1,1,0,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,2 +1,51,1,9773,0,1,158.0,1,1,19,8,8,117.1,1,0,1,1,0,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,0 +1,17,1,9070,0,1,119.0,1,37,38,9,8,124.6,1,0,1,1,1,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,111.0,1,19,19,3,10,117.7,0,0,1,1,1,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,140.0,1,3,1,5,9,130.0,0,0,1,1,0,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,122.0,1,3,1,9,10,114.7,0,0,1,1,1,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,1 +2,39,1,9238,0,19,133.1,1,1,2,4,6,130.0,0,0,1,1,1,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,2 +1,17,2,9500,0,1,131.0,1,38,1,5,7,118.4,1,0,1,1,1,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,0 +1,43,5,9853,0,1,150.0,1,34,34,0,0,150.2,1,0,1,0,1,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9119,0,1,140.0,1,37,19,9,9,166.0,1,0,0,1,0,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +1,39,1,9085,0,1,133.1,1,19,37,9,6,130.0,1,0,1,1,1,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,1 +1,1,4,9147,0,1,120.0,1,38,38,5,10,111.3,0,0,1,1,0,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,2 +1,1,5,9500,0,1,125.0,1,3,19,4,8,120.3,1,0,1,1,1,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,2 +1,17,2,9556,0,1,136.0,1,1,1,9,9,128.3,0,0,1,1,1,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,1 +1,17,1,9070,0,1,133.1,1,38,19,5,5,128.0,0,0,1,1,1,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9670,0,9,133.1,1,37,37,5,3,110.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9254,0,1,118.0,1,19,1,4,4,115.9,1,0,1,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,171,0,1,134.0,1,19,37,7,7,136.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9147,0,1,130.0,1,37,37,9,7,119.9,0,0,1,1,1,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,17,3,9773,0,1,153.0,1,34,34,99,99,133.1,1,0,0,1,1,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,10,133.1,1,12,36,90,90,128.2,0,0,1,0,0,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,18,1,9991,1,1,112.0,1,43,40,2,2,106.4,0,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,42,1,9500,0,1,122.0,1,3,3,2,2,122.0,1,0,1,1,1,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,1 +1,17,4,9500,0,1,137.0,1,1,19,4,3,121.3,1,0,1,1,0,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,1 +1,39,1,9085,0,19,133.1,1,3,1,2,5,103.0,0,0,1,1,0,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,136.0,1,1,19,9,9,131.5,0,0,1,1,1,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,154.0,1,1,3,4,2,164.9,0,0,1,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,1 +1,17,6,9147,0,1,129.0,1,19,1,9,4,122.0,1,0,1,1,0,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,132.0,1,19,19,9,7,128.0,1,0,1,1,0,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,1 +2,39,1,9773,0,19,133.1,1,19,19,9,4,131.0,0,0,0,0,0,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,0 +4,39,1,8014,1,1,160.0,1,37,37,5,5,126.0,0,0,1,1,1,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,1 +1,16,2,9238,0,1,126.0,1,38,37,3,5,127.1,1,0,1,1,1,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,1 +1,1,2,9254,0,1,111.0,1,1,19,5,7,109.3,1,0,1,1,1,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,1 +1,17,2,9556,0,1,133.1,1,37,37,3,10,108.0,0,0,1,1,1,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,1 +1,1,4,9773,0,1,140.0,22,1,37,3,9,130.5,1,0,1,1,1,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,1 +1,7,1,9500,0,3,140.0,1,1,1,9,5,140.0,0,0,1,1,1,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,0 +1,17,3,9670,0,1,125.0,1,1,3,4,3,117.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,150.0,1,37,38,9,9,131.5,1,0,1,1,1,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,130.0,1,19,19,9,5,100.0,0,0,1,0,0,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,4,9773,0,1,133.0,1,19,19,7,7,134.4,1,0,1,1,0,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,1 +1,1,1,9070,0,1,135.0,1,19,37,9,9,128.0,1,0,1,1,1,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,5,9670,0,1,115.0,1,1,19,5,5,117.1,0,0,1,1,1,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,2 +1,51,1,9003,0,39,130.0,1,1,19,4,4,120.0,1,0,0,0,0,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,0 +1,1,3,9773,0,1,117.0,1,38,19,7,7,110.4,1,0,0,0,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,0 +1,1,3,9773,0,1,127.0,1,19,38,8,3,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,133.1,1,38,37,1,1,115.0,1,0,1,1,1,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,2 +1,18,2,9853,0,1,123.0,1,1,3,9,2,123.7,1,0,0,0,1,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,0 +1,1,3,9853,0,1,122.0,1,3,3,2,2,112.6,1,0,1,1,1,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,2 +1,17,3,9254,0,1,127.0,1,37,37,9,6,123.5,1,0,1,1,1,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,2 +1,1,1,9500,0,1,141.0,1,37,37,9,9,136.3,1,0,1,1,0,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,1 +1,1,1,9773,0,1,140.0,1,19,38,9,9,132.0,0,0,1,1,0,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,17,2,9254,0,1,140.0,1,3,3,2,2,124.3,0,0,1,0,0,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,9254,0,1,125.0,1,1,3,4,1,121.9,1,0,1,1,0,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,0 +1,17,1,9070,0,1,134.0,1,1,1,5,0,133.3,1,0,1,1,0,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,0 +1,43,1,9670,0,1,127.0,22,37,37,9,9,127.0,1,0,1,1,0,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,1 +1,42,1,9853,0,1,120.0,1,37,38,3,3,113.7,0,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,0 +1,1,3,9670,0,1,121.0,1,3,19,2,8,122.4,1,0,1,1,0,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,2 +1,1,3,171,0,1,139.0,1,19,19,5,3,128.2,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,42,1,9085,0,1,100.0,1,1,38,4,9,100.0,1,0,1,1,1,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,1 +1,10,1,9500,0,1,140.0,24,3,3,2,9,140.0,1,0,0,0,1,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,0 +1,1,1,9773,0,1,132.0,1,37,19,9,9,131.0,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,1 +1,17,2,9773,0,1,124.0,1,1,1,4,4,127.9,1,0,1,1,0,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,2 +5,39,1,9119,0,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,2 +1,17,1,9773,0,1,117.0,1,38,38,9,9,111.1,0,0,0,1,0,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,0 +1,39,1,9991,1,19,133.1,1,19,37,9,9,149.4,0,0,1,0,0,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,1,100.0,1,37,37,1,1,161.9,0,0,1,1,0,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9147,0,1,140.0,1,38,37,4,7,130.0,1,0,1,0,1,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,43,1,171,0,1,145.0,1,19,38,9,9,100.0,0,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,1,9773,0,1,120.0,1,37,38,9,3,155.5,0,0,1,1,0,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,0 +1,39,1,9991,1,1,110.0,1,37,37,9,9,121.8,0,0,1,0,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,7,1,9130,0,3,140.0,1,5,4,2,0,140.0,0,0,0,0,1,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,0 +1,51,1,171,0,1,128.0,1,2,1,3,3,131.2,1,0,1,1,0,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,1 +2,39,1,8014,1,12,110.0,1,37,37,7,9,120.0,0,0,1,1,1,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,150.0,1,2,3,3,2,140.8,0,0,1,1,1,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,2 +1,43,1,9070,0,1,125.0,1,19,19,7,8,133.4,1,0,1,1,0,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,2 +1,1,5,171,0,1,160.0,1,1,1,4,4,139.7,0,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9130,0,1,120.0,1,1,38,9,9,150.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,154.0,1,19,19,3,3,142.0,0,0,1,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9254,0,1,110.0,1,4,19,4,3,114.8,1,0,1,0,0,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9119,0,1,140.0,1,34,34,9,9,140.0,0,0,1,0,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9147,0,1,125.0,1,1,1,4,2,134.1,1,0,1,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,7,1,9254,0,40,130.0,1,1,1,3,6,130.0,0,0,1,1,1,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9254,0,1,122.0,1,37,37,9,3,124.5,1,0,1,1,1,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,130.0,1,1,3,9,2,128.6,1,0,1,1,1,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,1 +1,17,4,9670,0,1,122.0,1,3,1,2,3,119.6,1,0,1,1,0,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,1 +1,44,3,9085,0,39,150.0,1,1,19,4,1,150.0,1,0,1,1,1,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,130.0,1,19,37,9,9,130.0,1,0,1,1,0,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,1 +1,1,2,9773,0,1,133.1,1,38,19,4,7,98.0,1,0,1,1,0,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,2 +1,17,2,9556,0,1,125.0,1,38,19,7,7,121.5,1,0,1,1,1,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,0 +2,1,4,9500,0,1,143.0,1,38,38,5,5,128.7,1,0,1,1,1,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,1 +1,39,1,9500,0,1,100.0,1,1,19,4,8,122.0,0,0,1,1,1,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,1 +1,51,1,9500,0,1,170.0,1,1,1,4,10,125.0,0,0,1,1,0,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,1 +1,18,4,9500,0,1,137.0,1,3,1,3,4,126.7,1,0,1,1,1,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,0 +1,39,1,9500,0,19,133.1,1,38,38,9,8,106.0,1,0,1,1,0,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,1 +1,39,1,9991,1,40,130.0,1,19,1,3,4,152.0,1,0,1,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9085,0,39,140.0,1,1,39,3,9,140.0,1,0,1,1,1,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,2 +1,17,2,9773,0,1,133.1,1,3,1,4,5,115.0,1,0,1,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +2,43,1,9853,0,1,110.0,1,37,37,7,7,100.0,0,0,1,1,0,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,1 +1,7,1,9119,0,3,120.0,1,19,19,1,1,120.0,0,0,1,0,0,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,0 +2,39,1,8014,1,1,130.0,1,34,34,99,99,114.8,0,0,1,1,1,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,1 +2,39,1,8014,1,1,140.0,1,37,3,9,10,172.0,0,0,1,1,0,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,2 +1,17,2,9670,0,1,123.0,1,34,37,0,0,114.6,1,0,0,0,1,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,0 +1,43,2,9500,0,1,136.0,1,19,1,9,10,124.1,0,0,1,1,0,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,2 +1,1,1,9070,0,1,116.0,1,1,1,1,1,110.8,1,0,1,1,1,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,1 +1,39,1,9003,0,1,133.1,1,37,37,4,7,130.0,0,0,0,0,0,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,0 +1,1,3,9085,0,1,158.0,1,1,19,9,9,153.6,1,0,1,1,1,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,1 +1,17,4,9773,0,1,121.0,1,1,19,9,8,120.3,1,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,5,3,9085,0,1,141.0,1,1,19,7,5,128.8,1,0,1,1,1,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,2 +1,18,4,9556,0,1,127.0,1,1,38,4,7,121.8,1,0,1,1,1,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,2 +2,39,1,9500,0,1,133.1,1,37,37,9,9,109.0,1,0,1,1,1,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,2 +2,39,1,9991,1,1,110.0,1,34,34,0,0,114.6,1,0,1,1,1,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9085,0,1,128.0,1,38,19,8,8,117.2,0,0,1,1,0,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,1 +1,17,6,9500,0,1,143.0,1,1,38,3,3,133.2,1,0,1,1,1,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,1 +1,1,4,9853,0,1,134.0,1,19,1,5,9,127.4,1,0,1,1,1,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,2 +1,1,1,9670,0,1,133.1,1,3,1,1,7,155.0,0,0,1,1,1,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,171,0,1,114.0,1,19,38,9,7,129.1,0,0,1,1,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,17,1,9670,0,1,149.0,1,19,37,7,4,134.3,0,1,1,1,1,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,130.0,1,1,38,3,5,128.6,1,0,1,1,0,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,1 +1,42,1,9147,0,1,139.0,1,3,38,2,5,112.3,1,0,1,1,1,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,2 +1,1,3,9773,0,1,130.0,1,19,19,9,9,123.0,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,43,1,9500,0,1,130.0,1,38,38,9,5,100.0,0,0,1,1,1,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,2 +6,39,1,8014,1,1,133.1,1,37,1,9,7,114.8,0,0,1,1,1,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,121.0,1,1,38,4,9,114.4,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,18,1,9238,0,1,122.0,1,38,38,9,7,114.7,0,0,0,1,1,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,1 +1,17,2,9773,0,1,120.0,1,1,1,2,5,127.0,1,0,1,0,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,44,1,9003,0,39,120.0,1,4,1,2,8,120.0,0,0,1,1,0,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,1 +1,17,3,9500,0,1,143.0,1,38,1,9,5,133.8,1,0,1,1,1,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,130.0,1,1,19,9,7,133.8,0,0,0,1,1,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,1 +2,39,1,9556,0,1,100.0,1,37,37,9,9,120.0,0,0,1,1,1,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,0 +1,39,1,8014,1,1,133.1,1,1,19,5,4,102.5,0,0,1,1,1,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9003,0,1,111.0,1,1,3,4,2,162.4,0,0,0,0,0,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,0 +1,17,2,9853,0,1,133.1,1,19,1,9,3,107.0,1,0,1,1,1,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,128.0,1,19,1,4,4,124.3,1,0,1,1,0,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,1 +2,39,1,9991,1,1,140.0,1,36,14,9,10,130.0,1,0,1,1,0,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,150.0,1,38,19,7,10,134.6,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,5,9070,0,1,134.0,1,34,1,5,7,129.8,1,0,1,1,1,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,150.0,1,37,37,9,3,150.0,1,0,1,1,0,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,0 +2,39,1,9238,0,1,126.6,1,38,38,9,7,107.5,0,0,0,1,1,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,1 +1,39,1,8014,1,1,120.0,1,37,37,9,7,106.8,0,0,1,1,1,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,2 +1,1,1,9254,0,1,117.0,1,1,1,5,5,116.3,1,0,1,1,0,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,130.0,1,19,19,5,5,157.0,1,0,1,0,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,39,1,9556,0,1,133.1,1,44,40,2,2,115.5,0,0,1,1,1,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,0 +1,1,1,9254,0,1,133.1,1,3,1,2,4,125.0,0,0,1,1,0,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,2 +2,39,1,9003,0,1,133.1,1,37,37,9,9,100.0,0,0,1,0,0,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,0 +1,17,2,9500,0,1,141.0,1,37,1,9,4,127.3,1,0,1,1,1,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,117.0,1,38,38,175,183,113.2,1,0,0,1,1,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,1 +1,39,1,9500,0,1,133.1,1,37,37,7,7,124.5,0,0,1,0,0,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,0 +1,17,2,9070,0,1,133.1,1,37,38,9,10,178.0,1,0,1,1,0,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,120.0,1,19,19,9,9,115.0,1,0,1,1,0,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,1,9853,0,1,146.0,1,1,1,3,4,128.2,0,0,0,1,1,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,2 +1,17,4,9070,0,1,128.0,1,1,1,9,10,136.1,1,0,0,0,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,0 +5,39,1,9500,0,3,140.0,1,37,38,9,9,160.0,0,0,1,1,1,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,1 +1,39,1,8014,1,1,133.1,1,37,37,9,8,121.0,0,0,0,0,1,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,0 +1,43,1,9130,0,1,140.0,1,2,1,2,3,140.0,1,0,1,1,1,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,1 +1,1,3,9670,0,1,126.0,1,37,37,0,0,136.5,1,0,1,1,1,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,1 +1,17,4,9238,0,1,140.0,1,19,37,9,9,130.2,1,0,1,1,1,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,142.0,1,1,3,1,2,133.0,0,0,1,1,1,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,136.0,1,19,38,9,9,121.7,1,0,1,1,0,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,1 +1,17,4,9085,0,1,106.0,1,37,1,3,9,106.0,0,0,1,1,1,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,2 +1,1,3,9500,0,1,135.0,1,1,37,7,7,120.5,1,0,1,1,1,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,1 +1,17,1,9147,0,1,115.0,1,19,19,7,7,115.0,1,0,1,1,1,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,2 +1,39,1,9238,0,1,160.0,1,38,1,9,3,124.0,0,0,0,1,0,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,2 +1,1,1,9500,0,1,129.0,1,38,38,5,5,120.8,1,0,1,1,1,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,1 +1,39,1,9991,1,1,160.0,41,37,19,9,9,160.0,0,0,1,1,1,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,2 +1,1,1,9670,0,1,132.0,1,1,19,7,5,129.9,1,0,1,1,0,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,2 +1,1,2,9238,0,1,136.0,1,37,38,9,8,139.2,1,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,127.0,1,19,37,9,7,121.3,1,0,1,1,1,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,1 +1,1,1,9119,0,1,142.0,1,1,38,4,3,129.8,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,2 +2,39,1,9991,1,1,133.1,1,37,37,5,8,133.2,0,0,1,0,0,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,0 +1,1,1,9147,0,1,150.0,1,1,19,5,5,137.8,1,0,1,1,0,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,135.0,1,3,1,2,4,129.8,1,0,1,1,0,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,1 +1,43,2,9773,0,1,132.0,1,19,19,0,0,127.1,0,0,1,1,0,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,1 +1,17,3,9500,0,1,140.0,1,3,2,3,3,126.4,1,0,1,1,1,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,0 +2,39,2,9119,0,19,133.1,1,37,37,7,7,118.0,0,0,1,0,0,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9130,0,39,110.0,1,3,4,2,2,110.0,1,0,1,1,0,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,0 +2,39,1,9500,0,38,133.1,1,37,37,9,3,146.6,0,0,1,1,0,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,1 +1,1,1,9773,0,1,146.0,1,1,3,4,1,135.2,1,0,1,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,1 +1,39,1,9991,1,1,150.0,1,3,5,2,2,135.8,0,0,0,1,0,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,0 +2,39,1,9773,0,19,100.0,1,37,37,0,0,163.5,0,0,0,0,0,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,124.0,1,19,19,9,7,113.9,1,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,3,9500,0,1,143.0,1,3,3,9,7,129.0,1,0,1,1,0,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,1 +1,1,2,9853,0,1,117.0,1,1,38,4,9,109.7,1,0,1,1,1,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,2 +1,7,1,9130,0,2,133.1,6,42,1,4,9,100.0,0,0,1,1,0,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,0 +1,43,1,9991,1,1,120.0,1,37,37,9,9,115.8,0,0,0,0,0,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,0 +1,18,1,9773,0,1,167.0,1,38,38,6,7,153.0,1,0,1,1,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,51,1,9238,0,1,141.0,1,1,1,5,9,125.0,0,0,1,1,0,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,17,4,9500,0,1,132.0,1,38,19,5,7,125.5,0,0,1,1,1,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,1 +1,1,1,9119,0,1,132.0,1,1,12,3,3,133.1,1,0,1,1,0,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,149.0,1,1,1,4,4,129.3,1,0,1,1,0,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,1 +2,39,1,9147,0,1,130.0,1,37,37,9,9,142.5,0,0,1,1,1,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,2 +1,1,6,9773,0,1,133.1,1,1,37,3,3,100.0,1,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,138.0,1,37,37,9,6,145.0,1,0,1,1,1,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,140.0,1,19,19,3,6,124.3,1,0,1,1,1,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,135.0,1,37,37,9,7,132.6,1,0,1,1,1,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,159.0,1,34,26,0,6,160.1,1,0,1,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,1 +2,39,1,8014,1,1,133.1,1,37,37,6,8,100.0,0,0,0,1,1,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,2 +1,1,1,9070,0,1,153.0,1,3,3,1,2,146.7,1,0,1,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,1 +1,43,1,171,0,2,140.0,1,37,37,9,9,140.0,1,0,1,1,1,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,141.0,1,19,19,9,8,142.8,0,0,1,1,1,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,1 +1,39,2,9556,0,1,130.0,1,19,19,4,5,100.0,0,0,1,1,0,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,120.0,1,38,19,3,5,120.0,0,0,1,1,0,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,2 +1,39,2,9147,0,1,120.0,1,37,37,9,9,104.0,0,0,1,0,0,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9085,0,1,150.0,1,38,38,9,9,132.0,1,0,1,1,1,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,142.0,1,38,38,9,9,132.9,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,1 +1,1,2,9085,0,1,160.0,1,4,19,2,5,162.1,1,0,1,1,1,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,141.0,1,37,37,9,8,130.2,1,0,1,1,1,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,1 +1,1,1,9147,0,1,118.0,1,1,1,9,9,111.0,0,0,1,0,0,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,119.0,1,37,37,10,6,119.7,1,0,1,1,1,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,2 +1,17,2,171,0,1,137.0,1,1,1,4,1,143.3,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,18,3,9085,0,1,149.0,103,1,1,9,9,132.2,1,0,1,1,1,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,1 +1,43,1,9085,0,1,130.0,1,37,37,90,90,125.1,0,0,1,1,1,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,1 +4,17,5,8014,1,1,100.0,1,19,19,90,90,107.0,0,0,1,1,1,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,19,133.1,1,38,19,9,10,142.7,0,0,0,1,0,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,1 +1,1,1,9500,0,1,139.0,1,19,37,5,5,125.5,0,0,1,1,1,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,133.0,1,4,1,5,5,131.6,0,0,1,1,1,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,1 +1,1,4,9500,0,1,148.0,1,19,19,9,3,125.0,1,0,1,1,1,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,110.0,1,37,37,9,9,110.3,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,53,1,9003,0,42,130.0,1,38,38,9,9,130.0,1,0,0,1,0,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,2 +1,1,4,9070,0,1,140.0,1,4,19,2,10,125.0,1,0,1,1,0,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,2 +1,42,1,9003,0,39,140.0,1,19,1,5,5,140.0,0,0,1,1,1,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,2 +1,1,4,9070,0,1,136.0,1,37,37,9,8,136.7,1,0,1,1,1,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,1 +1,1,5,9773,0,1,125.0,1,37,3,5,2,126.1,1,0,1,1,0,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,2 +1,1,1,8014,1,1,126.0,1,37,38,9,10,119.4,0,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,123.0,1,1,3,2,2,118.8,0,0,1,1,0,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,2 +1,1,6,9500,0,1,144.0,1,1,37,9,9,127.5,1,0,1,1,1,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,1 +1,43,1,9070,0,1,125.0,1,38,37,8,7,131.7,1,0,1,1,0,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,144.0,1,37,37,8,8,138.4,0,0,1,1,1,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,1 +4,39,1,8014,1,1,160.0,1,37,37,3,4,97.0,0,0,1,1,1,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,1 +1,17,1,9853,0,1,119.0,1,37,38,9,9,125.0,1,0,1,1,1,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,0 +1,17,1,9147,0,1,117.0,1,37,37,9,9,109.3,0,0,1,0,1,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,3,130.0,1,37,37,9,9,146.2,0,0,1,1,1,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,150.0,1,37,37,9,9,130.3,0,0,1,1,1,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,1 +2,39,2,8014,1,19,100.0,1,37,37,4,7,100.0,0,0,0,1,1,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,1 +1,39,1,8014,1,38,133.1,1,38,37,4,8,95.5,0,0,1,1,0,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,120.7,0,0,1,1,1,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,1 +1,39,1,9119,0,19,120.0,1,37,37,9,4,98.6,0,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9130,0,1,120.0,1,19,37,1,9,116.1,1,0,1,1,0,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9500,0,1,136.0,1,1,1,4,9,128.5,1,0,1,1,1,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,132.0,1,38,37,7,7,131.3,1,0,1,1,1,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,2 +1,1,2,9500,0,1,115.0,1,38,38,9,8,108.4,1,0,1,1,1,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,1 +1,39,1,9119,0,1,120.0,1,37,37,9,9,98.7,0,0,1,1,0,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,1 +2,39,1,9003,0,1,120.0,1,37,37,9,9,155.8,0,0,1,1,0,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,1 +1,17,1,9238,0,1,151.0,1,19,1,5,0,144.4,1,0,1,1,1,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,1 +1,43,2,9147,0,1,131.0,1,19,37,5,9,123.7,1,0,1,1,1,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,2 +1,17,4,9085,0,1,128.0,1,38,37,4,9,117.9,1,0,1,1,1,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,1 +1,43,1,8014,1,12,133.1,1,37,1,9,10,112.5,0,0,1,1,0,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,0 +1,39,1,9085,0,19,133.1,1,37,37,4,8,140.0,0,0,1,1,1,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,7,1,9147,0,2,150.0,1,3,37,2,5,150.0,1,0,0,0,1,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,18,2,9147,0,1,102.0,1,37,38,191,143,101.7,1,0,1,1,1,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,1 +1,1,1,9670,0,1,128.0,1,19,1,4,1,118.2,0,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,0 +2,39,1,8014,1,1,133.1,1,19,1,4,8,144.3,0,0,1,1,0,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,1 +1,1,5,9254,0,1,128.0,1,19,1,7,10,116.5,1,0,1,1,1,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,140.0,1,19,19,7,5,135.1,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,1 +1,18,2,9500,0,1,129.0,1,38,37,5,5,119.0,1,0,1,1,1,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,1 +1,1,6,9500,0,1,140.0,1,3,1,3,3,131.5,1,0,1,1,1,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,143.0,1,3,3,2,5,144.8,0,0,1,1,1,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,2 +1,1,1,9773,0,1,127.0,1,37,37,9,8,123.2,1,0,1,1,1,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,2 +1,43,1,9500,0,1,125.0,1,37,37,9,7,123.6,1,0,1,1,1,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,2 +1,1,6,9500,0,1,138.0,1,1,38,3,9,123.0,1,0,1,1,1,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,139.0,1,38,38,9,9,145.0,1,0,1,1,1,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,121.0,1,37,19,6,7,116.8,1,0,1,1,1,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,0 +1,17,2,9085,0,1,123.0,1,1,19,4,9,113.6,1,0,1,1,1,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,2 +1,17,6,9773,0,1,126.0,1,1,19,5,5,119.0,1,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,4,9119,0,1,139.0,1,37,19,9,4,133.1,1,0,1,1,0,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,2 +1,1,1,9147,0,1,158.0,1,1,38,3,6,155.2,0,0,1,1,0,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,1 +1,17,2,8014,1,1,133.1,1,19,1,1,1,118.0,0,0,1,1,1,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,1 +1,1,2,9238,0,1,136.0,1,22,30,0,8,135.7,1,0,1,1,1,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,1 +1,39,1,9147,0,1,120.0,1,37,37,9,9,110.0,0,0,1,0,0,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,124.0,1,19,19,7,9,132.1,1,0,1,1,1,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,2 +5,7,1,9991,1,2,120.0,1,37,37,6,6,120.0,0,0,1,1,1,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,1 +1,1,4,9238,0,1,123.0,1,38,1,4,10,129.0,1,0,1,1,1,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,1 +1,17,4,9119,0,1,135.0,1,38,37,5,7,126.6,1,0,1,1,0,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,2 +1,1,3,9070,0,1,129.0,1,5,3,5,7,124.8,1,0,1,1,1,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,1 +1,17,5,9147,0,1,127.0,1,1,38,4,5,124.6,1,0,1,1,1,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,2 +1,51,1,9147,0,1,135.0,1,1,1,4,4,118.5,0,0,1,1,1,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,0 +1,17,2,171,0,1,142.0,1,3,1,2,6,139.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +5,39,1,9147,0,1,133.1,1,19,19,9,9,119.8,0,0,1,1,0,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,2 +1,1,1,9254,0,1,123.0,1,1,37,9,9,132.1,0,0,1,1,1,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,1 +1,43,1,9853,0,1,115.0,1,3,37,2,5,108.7,1,0,1,1,1,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,12,133.1,1,37,34,90,90,110.7,1,0,1,1,1,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,0 +1,1,3,171,0,1,155.0,1,4,3,1,1,144.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,1,4,9254,0,1,105.0,1,1,19,9,6,106.1,1,0,1,1,1,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,1 +1,17,1,9853,0,1,150.0,1,19,19,3,4,135.0,0,0,1,1,1,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,152.0,1,37,37,5,7,136.3,0,0,1,1,1,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,1 +1,39,1,9991,1,1,120.0,1,34,34,0,0,120.5,1,0,1,1,0,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,2,9254,0,1,140.0,1,1,37,4,5,123.6,1,0,1,1,1,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,1 +1,39,1,9003,0,1,120.0,1,37,37,9,9,150.1,1,0,1,1,0,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,144.0,1,37,38,9,9,126.9,0,0,1,1,1,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,1 +1,43,1,9991,1,1,120.0,1,37,37,9,9,128.2,0,0,1,0,0,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,0 +1,18,2,9147,0,1,115.0,1,1,37,5,5,108.7,1,0,1,1,1,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,140.0,1,19,19,4,4,140.0,1,0,1,0,0,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9085,0,39,140.0,1,1,1,3,7,140.0,1,0,1,1,1,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9500,0,1,129.0,1,19,19,5,5,119.6,1,0,1,1,1,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,1 +1,17,6,9773,0,1,141.0,1,37,37,5,5,127.7,1,0,1,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,1 +1,17,2,9500,0,1,137.0,1,19,37,4,7,126.3,1,0,1,1,1,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,1 +2,39,1,9003,0,1,168.0,1,1,41,9,3,153.9,0,0,0,0,0,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,133.0,1,37,37,9,9,121.8,1,0,1,1,1,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,119.0,1,2,1,4,3,113.1,1,0,1,1,1,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,1 +1,43,1,9147,0,1,142.0,1,38,19,141,171,115.0,0,0,1,1,1,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,2 +1,17,4,9773,0,1,138.0,1,37,19,5,7,133.5,1,0,1,0,1,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,1 +2,7,1,8014,1,3,110.0,1,37,37,9,9,110.0,0,0,1,1,1,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,1 +1,17,3,9500,0,1,133.0,1,3,19,2,5,130.8,1,0,1,1,1,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,1 +1,17,1,9238,0,1,137.0,1,38,19,152,171,131.1,1,0,1,1,1,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,1 +1,17,3,9119,0,1,130.0,1,1,38,3,3,129.3,0,0,1,1,0,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,1 +1,43,1,9773,0,1,126.0,1,1,37,3,0,110.0,0,0,0,1,1,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,1 +1,1,1,9070,0,1,116.0,1,1,12,5,8,110.4,1,0,1,1,0,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,133.1,1,1,1,4,10,110.0,0,0,0,1,1,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,17,5,9238,0,1,134.0,1,38,37,9,9,126.0,0,0,0,0,1,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,0 +2,39,1,9147,0,1,130.0,1,1,19,9,9,109.9,0,0,1,0,1,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +1,15,1,9085,0,1,133.1,41,37,37,9,9,109.6,0,0,1,1,1,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,0 +1,44,1,9003,0,39,140.0,1,37,37,9,1,140.0,0,0,1,1,0,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,2 +2,39,1,9991,1,19,133.1,1,38,38,90,90,121.7,1,0,1,1,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,4,9773,0,1,143.0,1,1,3,4,7,129.7,1,0,1,1,1,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,133.0,1,1,19,9,6,121.5,1,0,1,1,1,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,1 +1,17,1,9003,0,1,133.0,1,38,37,9,9,125.3,1,0,1,1,1,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,1 +1,42,1,9991,1,1,160.0,1,1,2,4,3,120.0,0,0,1,1,1,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,1 +2,39,2,9556,0,1,133.1,105,1,3,9,2,152.8,1,0,1,1,1,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,123.0,1,1,1,4,6,118.8,1,0,1,1,1,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9853,0,1,122.0,1,3,19,2,3,112.9,0,0,1,1,1,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,1 +1,1,5,9853,0,1,123.0,1,1,12,4,9,113.2,1,0,1,1,1,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,140.0,1,37,37,9,9,141.5,1,0,0,0,1,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,129.0,1,19,19,4,8,127.3,1,0,1,1,1,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,1 +1,39,1,9085,0,1,130.0,1,37,37,6,6,110.0,0,0,1,1,1,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,2 +4,39,1,8014,1,19,133.1,1,37,37,9,9,95.0,0,0,0,0,1,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,0 +1,1,2,9853,0,1,127.0,1,37,19,9,8,137.5,1,0,1,1,1,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,1 +1,1,5,9500,0,1,142.0,1,38,37,5,7,128.8,1,0,1,1,1,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,1 +1,17,2,9147,0,1,142.0,1,19,19,4,8,127.3,0,0,1,1,1,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,1 +3,39,1,9991,1,1,120.0,1,37,1,9,2,170.0,0,0,1,1,0,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,138.0,1,19,37,4,9,141.0,0,0,1,1,0,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,132.0,1,1,38,9,9,120.1,1,0,1,1,0,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,1 +1,1,2,9500,0,1,140.0,1,1,1,2,7,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,1 +1,17,1,9773,0,1,121.0,1,37,19,9,10,113.7,0,0,1,1,1,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,2 +1,39,1,8014,1,38,133.1,1,1,1,4,4,107.5,0,0,0,0,0,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9500,0,1,150.0,1,1,1,5,1,155.6,0,0,1,1,1,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,1 +1,1,1,9070,0,1,150.0,1,37,37,9,6,131.1,0,0,1,1,1,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9991,1,1,100.0,1,3,19,1,1,117.9,0,0,1,0,0,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +2,39,2,9991,1,1,150.0,1,37,37,9,9,120.0,0,0,1,1,1,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,150.0,1,1,38,4,9,150.0,0,0,1,1,0,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,2 +2,43,1,9130,0,9,133.1,1,34,34,0,0,128.2,0,0,1,1,0,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9500,0,1,141.0,1,1,1,90,3,127.8,0,0,1,1,1,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,0 +1,1,1,9070,0,1,116.0,1,3,3,0,1,108.7,1,0,1,1,0,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,0 +2,39,1,9500,0,1,140.0,1,19,19,9,7,110.5,0,0,1,1,1,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9254,0,19,133.1,1,34,34,0,0,120.0,0,0,0,0,0,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,1,133.1,1,37,37,191,172,115.2,0,0,1,1,1,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,2 +1,44,1,9003,0,39,160.0,1,37,38,9,6,160.0,0,0,1,1,1,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +2,39,1,9991,1,1,120.0,1,37,37,9,9,133.2,1,0,1,1,0,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,17,3,9556,0,1,131.0,1,19,38,9,7,128.5,0,0,1,1,1,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,1 +1,42,1,9500,0,1,160.0,1,37,38,9,7,161.0,1,0,1,1,1,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,1 +1,1,1,171,0,1,136.0,1,3,3,1,2,152.5,1,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,2 +1,1,1,9853,0,1,114.0,1,19,37,5,5,109.5,1,0,1,1,1,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,0 +2,39,1,9991,1,1,150.0,1,37,37,9,7,122.5,0,0,1,1,0,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,0 +1,44,1,9991,1,39,130.0,1,37,37,9,9,130.0,0,0,1,1,1,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,2 +1,51,1,8014,1,42,140.0,1,19,37,134,193,138.0,1,0,0,1,1,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,127.0,1,2,19,3,9,121.5,0,0,1,1,0,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,1 +1,39,1,9670,0,1,133.1,1,19,19,3,3,125.3,0,1,1,1,0,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,4,9670,0,1,125.0,1,4,19,2,5,118.0,1,0,1,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,1 +2,42,1,9070,0,1,170.0,1,37,25,0,4,148.5,0,0,1,1,0,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,0 +1,17,5,9254,0,1,121.0,1,1,19,4,7,116.5,1,0,1,0,0,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9238,0,1,120.0,1,19,38,5,9,130.2,0,0,1,1,1,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,140.0,1,19,37,9,9,140.7,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,1 +1,1,1,9670,0,1,140.0,1,19,19,5,9,131.3,1,0,1,1,1,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,1 +1,42,1,9119,0,1,140.0,1,3,3,3,2,133.6,1,0,1,1,0,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,8014,1,1,150.0,1,19,2,4,6,148.0,0,0,1,1,1,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9085,0,1,127.0,1,37,2,9,4,123.2,1,0,1,1,1,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,119.0,1,19,37,9,9,119.4,1,0,1,1,1,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,1 +1,17,1,9130,0,1,132.0,1,2,1,4,1,127.8,0,0,1,1,0,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,0 +1,42,1,9119,0,1,136.0,1,1,37,5,5,117.5,0,0,1,1,0,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,2 +1,1,1,9991,1,1,122.0,1,37,37,9,3,113.6,0,0,1,1,0,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,2 +1,1,2,9773,0,1,130.0,1,19,19,5,6,137.4,0,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,2 +1,17,1,9238,0,1,128.0,1,19,19,5,4,116.5,0,0,1,1,1,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,139.0,1,1,38,6,6,143.6,1,0,0,1,0,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,2 +1,1,1,9130,0,1,154.0,1,3,3,2,2,137.2,1,0,0,1,0,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,0 +1,17,6,9500,0,1,142.0,1,19,37,4,9,131.9,1,0,1,1,1,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,0 +1,1,2,9773,0,1,131.0,1,19,37,9,10,121.9,1,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +2,7,1,9130,0,3,120.0,1,3,3,1,1,128.2,0,0,1,1,1,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,0 +2,39,1,9991,1,19,133.1,1,37,37,9,9,150.3,0,0,1,1,1,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,125.0,1,37,37,5,5,124.0,0,0,1,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9070,0,1,135.0,1,37,19,9,9,125.2,1,0,1,1,1,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,135.0,1,19,19,9,9,124.5,0,0,1,1,1,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,1 +1,1,3,9773,0,1,175.0,1,3,38,2,10,157.5,1,0,1,1,1,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,139.0,1,1,1,4,10,140.7,0,0,1,1,0,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,0 +1,1,4,9500,0,1,128.0,1,1,1,4,10,125.2,1,0,1,1,0,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,1 +1,17,6,9500,0,1,150.0,1,1,37,1,1,131.5,1,0,1,1,1,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,1 +1,1,4,9500,0,1,168.0,1,38,1,9,10,166.0,1,0,1,1,1,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,1 +1,51,1,9070,0,1,125.0,1,42,3,125,124,130.0,1,0,1,1,0,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,1 +1,18,1,9500,0,1,135.0,1,1,38,4,5,127.5,1,0,1,1,1,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,1 +1,18,1,9119,0,1,148.0,1,3,19,3,5,147.7,0,0,1,1,0,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,2,9773,0,1,130.0,109,19,1,9,9,126.9,1,0,1,1,1,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,0 +1,17,1,9238,0,1,125.0,1,19,38,3,7,114.9,0,0,1,1,1,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,1 +1,7,1,9119,0,3,130.0,1,37,37,9,9,130.0,0,0,1,0,0,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9853,0,1,130.0,1,37,19,7,3,140.0,0,0,0,1,1,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,1 +1,1,2,9853,0,1,112.0,1,3,1,3,5,111.0,0,0,1,1,1,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,37,38,193,181,125.9,0,0,1,1,1,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,1 +1,42,1,9119,0,1,120.0,1,34,34,0,0,128.2,1,0,1,1,0,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,0 +1,39,1,9991,1,19,133.1,1,37,37,9,9,117.2,0,0,1,1,1,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,1 +1,1,3,9147,0,1,131.0,1,19,38,9,7,132.4,1,0,1,1,1,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,2 +5,39,1,9003,0,1,180.0,1,1,1,4,8,179.6,0,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,0 +1,1,5,9119,0,1,135.0,1,37,37,90,90,122.1,1,0,1,1,0,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,133.0,1,1,38,5,10,131.3,1,0,1,1,1,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,2 +1,18,1,9500,0,1,126.0,1,37,19,5,5,119.3,0,0,1,1,1,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,1 +1,39,1,9003,0,1,110.0,1,19,37,9,6,120.0,0,0,0,0,0,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,39,2,9556,0,1,130.0,1,37,37,9,9,159.0,1,0,1,1,1,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,2 +1,17,1,9070,0,1,141.0,1,19,38,4,5,133.7,1,0,1,1,0,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,1 +1,39,1,9991,1,1,150.0,1,1,37,4,6,120.0,0,0,1,1,0,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,1 +1,17,2,9085,0,1,123.0,1,3,19,2,9,118.9,0,0,1,1,0,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,2 +1,17,1,9991,1,1,140.0,1,38,37,6,7,127.3,0,0,1,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,6,9500,0,1,151.0,1,3,1,2,1,129.8,1,0,1,1,0,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,1 +1,43,1,8014,1,1,113.0,1,37,37,0,6,128.2,0,0,1,0,1,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,1,9070,0,1,117.0,1,1,37,4,7,127.9,1,0,1,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,145.0,1,19,19,9,7,136.6,0,0,1,1,1,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,1 +1,1,1,9238,0,1,133.0,1,34,37,4,9,134.4,1,0,1,1,1,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,1 +1,44,1,9238,0,39,130.0,1,38,38,5,10,126.7,0,0,0,1,1,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,1 +1,17,1,9773,0,1,122.0,1,1,1,4,7,116.8,1,0,0,1,1,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,1 +1,1,3,9147,0,1,124.0,1,1,1,5,3,116.7,1,0,1,1,0,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,2 +1,39,1,9991,1,1,120.0,1,38,1,9,4,123.2,0,0,1,1,1,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,2 +1,39,1,9556,0,40,130.0,1,1,1,4,5,145.0,0,0,1,1,1,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,2 +1,43,1,9147,0,1,127.0,25,1,5,9,10,124.2,1,0,1,1,0,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,2 +2,43,1,9670,0,1,120.0,1,34,34,0,0,128.2,0,0,1,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,0 +1,18,1,9238,0,1,122.0,1,1,3,9,2,112.6,1,0,1,1,0,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,122.0,1,1,1,4,4,119.6,1,0,1,1,1,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,2 +1,17,5,9670,0,1,125.0,1,1,19,9,7,119.4,1,0,1,1,1,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,146.0,1,19,37,9,7,153.0,1,0,1,1,1,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,1 +1,1,2,9773,0,1,108.0,1,38,38,7,7,115.0,1,0,0,0,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,133.1,1,1,1,3,9,138.0,1,0,1,1,1,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,2 +1,39,1,9991,1,1,140.0,1,37,37,9,5,140.0,0,0,1,0,1,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9991,1,19,133.1,1,2,1,2,4,100.0,0,0,1,1,0,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,1,9147,0,1,129.0,1,38,37,3,5,132.9,1,0,1,1,1,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,149.0,1,3,2,2,5,151.1,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,135.0,1,19,4,9,2,143.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9147,0,1,158.0,1,19,37,9,7,130.0,1,0,1,1,1,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,1 +1,17,6,9556,0,1,122.0,1,1,1,4,5,117.1,1,0,1,1,1,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,0 +2,39,2,9556,0,12,133.1,1,34,34,99,99,100.5,0,0,1,1,1,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,0 +1,39,1,9003,0,1,123.0,1,37,37,9,9,110.0,0,0,0,0,1,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,138.0,1,3,3,2,2,127.5,1,0,1,1,1,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,1 +1,43,1,9500,0,1,121.0,1,38,19,5,5,115.4,1,0,1,1,1,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,2 +1,17,4,9147,0,1,114.0,1,19,19,4,4,109.5,1,0,1,1,0,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,1 +1,17,1,9254,0,1,148.0,1,1,1,4,8,145.2,0,0,1,1,0,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,1 +1,17,1,9254,0,1,121.0,1,1,1,4,4,123.1,1,0,1,1,0,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,2 +1,1,1,171,0,1,150.0,1,3,3,2,5,154.6,1,0,1,1,1,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,0 +1,1,1,9238,0,1,151.0,1,19,38,9,9,157.0,1,0,0,1,1,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,101.0,0,0,1,1,1,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,1 +1,1,2,9254,0,1,127.0,1,3,19,3,10,130.9,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,146.0,1,1,1,9,8,149.5,1,0,1,1,0,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,43,1,9130,0,6,133.1,1,1,29,4,90,123.3,1,0,1,1,1,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,3,3,7,146.5,1,0,0,1,0,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,2 +1,7,1,8014,1,40,120.0,1,37,19,9,3,120.0,0,0,1,1,1,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,0 +1,1,1,9853,0,1,125.0,1,37,37,9,9,114.9,1,0,0,0,1,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,0 +1,1,2,9773,0,1,140.0,1,1,1,4,3,131.6,0,0,1,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,142.0,1,1,19,9,9,136.1,0,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,113.0,1,1,1,4,4,106.7,1,0,1,1,1,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,0 +1,43,1,9003,0,1,130.0,1,1,2,4,2,130.0,0,0,1,1,0,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,1 +1,39,1,9119,0,1,130.0,1,19,37,9,9,134.0,0,0,1,1,0,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,2 +1,18,1,9500,0,1,123.0,1,37,37,3,3,118.0,1,0,1,1,1,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,1 +1,10,2,9085,0,1,163.3,22,19,1,4,9,163.3,0,0,1,1,1,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,135.0,1,19,19,9,5,135.0,1,0,1,1,1,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,1,1,9238,0,1,136.0,1,4,5,2,2,126.2,0,0,1,1,0,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,1 +1,44,1,9130,0,39,150.0,1,1,37,4,8,150.0,1,0,1,0,1,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,0 +1,7,1,9085,0,3,140.0,1,19,20,4,90,140.0,1,0,1,1,1,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,43,1,9070,0,1,135.0,1,1,38,3,9,126.4,1,0,1,1,1,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,1 +1,1,1,9500,0,1,140.0,1,19,38,7,8,129.9,0,0,1,1,1,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,133.1,1,1,1,9,9,155.0,0,0,1,1,1,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,17,5,9773,0,1,122.0,1,38,38,7,7,123.1,1,0,1,0,1,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,0 +1,1,1,9130,0,1,117.0,1,1,1,9,9,109.3,1,0,1,1,1,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,2 +1,1,2,9500,0,1,130.0,1,1,38,9,9,125.1,1,0,1,1,1,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,2 +1,1,2,9773,0,1,144.0,1,3,3,3,2,140.2,1,0,1,1,1,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,145.0,1,1,1,4,10,145.0,0,0,1,1,1,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,0 +1,51,1,9070,0,1,143.0,1,1,1,4,4,120.0,1,0,1,1,1,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,0 +1,17,1,9773,0,1,145.0,1,1,38,90,8,132.8,1,0,1,0,0,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9556,0,1,120.0,1,38,38,191,193,120.0,0,0,0,1,1,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,1 +1,1,1,9147,0,1,148.0,1,19,1,7,5,138.3,1,0,1,1,0,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,0 +1,17,2,9500,0,1,146.0,1,3,3,3,6,133.4,1,0,1,1,1,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,1 +1,17,1,9130,0,1,131.0,1,12,12,2,8,128.2,1,0,1,1,0,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,1 +1,17,6,9556,0,1,115.0,1,19,2,5,3,112.2,1,0,1,1,1,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,1 +1,43,1,9556,0,1,126.0,1,2,3,3,2,100.0,0,0,1,1,1,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,2 +1,17,1,9238,0,1,120.0,1,19,37,9,9,113.0,1,0,1,1,1,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,1 +1,1,4,9500,0,1,132.0,1,19,38,5,5,118.0,1,0,1,1,1,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,1 +2,1,1,9238,0,1,145.0,1,37,34,9,7,139.4,0,0,1,0,1,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,131.0,1,38,38,191,174,125.4,1,0,1,1,1,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,1 +2,39,1,9119,0,1,120.0,1,37,38,9,10,145.4,0,0,0,1,0,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,0 +1,1,1,9130,0,1,138.0,1,4,5,2,2,123.0,1,0,1,1,1,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,0,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,0 +1,1,1,9773,0,1,127.0,1,5,3,4,4,122.8,1,0,1,1,0,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,2 +1,1,3,9500,0,1,136.0,1,1,1,4,4,127.0,1,0,1,1,1,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,2 +1,17,3,9119,0,1,115.0,1,3,1,3,3,116.1,1,0,1,0,0,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,0 +1,18,1,9500,0,1,143.0,1,38,37,4,9,116.5,1,0,1,1,1,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,145.0,1,3,19,3,8,134.9,1,0,1,1,1,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,1 +1,44,1,9119,0,39,140.0,1,5,41,3,2,140.0,0,0,1,1,0,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,2 +1,1,1,9147,0,1,124.0,1,19,19,9,3,115.6,1,0,1,0,0,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,0 +1,7,1,9500,0,3,130.0,1,19,38,5,3,130.0,0,0,1,1,1,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,137.0,1,1,1,4,10,124.8,1,0,1,1,0,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,1 +1,17,4,9119,0,1,138.0,1,1,3,1,4,127.5,1,0,1,1,0,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,112.0,1,1,1,5,1,111.7,0,0,0,0,0,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,0 +1,1,4,9500,0,1,147.0,1,1,1,4,9,124.5,1,0,1,1,1,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,1 +1,7,1,9500,0,3,140.0,1,3,19,2,6,140.0,0,0,1,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9853,0,1,121.0,1,19,19,7,7,113.0,1,0,1,1,1,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,0 +1,1,2,8014,1,1,96.0,1,3,1,3,9,100.0,0,0,1,1,1,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,2 +1,43,1,9991,1,3,120.0,1,37,37,9,9,120.0,0,0,1,1,1,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,152.0,1,1,38,4,5,144.7,0,0,1,1,1,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,1 +2,1,1,9070,0,1,127.0,1,12,19,9,9,123.2,0,0,1,1,1,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,1 +1,1,3,9070,0,1,147.0,1,34,37,5,7,135.8,1,0,1,1,1,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,1 +1,7,1,9119,0,4,180.0,1,4,3,2,7,180.0,0,0,0,1,0,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,2 +1,1,6,9500,0,1,129.0,1,37,19,9,7,127.8,1,0,1,1,1,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,0 +1,39,1,9500,0,1,100.0,1,37,37,7,7,160.0,1,0,1,1,1,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,127.0,1,19,1,5,5,117.6,1,0,1,1,1,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,2 +1,39,1,9003,0,1,110.0,1,1,1,9,4,120.0,0,0,0,0,0,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9773,0,1,143.0,11,19,19,4,9,133.9,1,0,1,1,0,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,1 +1,44,1,8014,1,39,160.0,1,37,37,7,7,156.1,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,1 +1,43,2,9670,0,1,135.0,1,3,19,1,7,123.5,1,0,1,1,0,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,43,1,8014,1,1,130.0,1,38,3,132,122,100.0,0,0,1,1,0,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,2 +1,15,1,9238,0,1,150.0,26,19,1,9,9,146.5,1,0,0,0,0,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,1 +1,17,6,9119,0,1,129.0,1,37,13,4,90,117.1,1,0,1,1,0,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,1,9119,0,3,130.0,1,3,3,3,10,147.6,0,0,1,1,0,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,3,171,0,1,145.0,1,1,1,3,3,140.1,1,0,1,1,1,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,1 +1,43,3,9254,0,1,135.0,1,3,3,2,2,122.1,0,0,1,1,0,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,2 +1,17,1,171,0,1,140.0,41,1,1,5,7,146.3,1,0,1,1,1,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,17,2,9070,0,1,126.0,1,38,38,9,8,129.9,1,0,1,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,1 +1,7,1,9070,0,3,120.0,1,4,4,2,2,120.0,0,0,1,1,0,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,0 +1,17,4,9070,0,1,144.0,1,38,1,9,9,137.4,1,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,1 +1,17,1,9773,0,1,125.0,1,3,3,2,3,118.0,1,0,1,1,0,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,0 +5,39,1,9238,0,1,130.0,1,19,38,9,10,146.0,0,0,1,1,0,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,1 +1,39,1,8014,1,1,100.0,1,37,37,6,5,107.5,0,0,1,1,1,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9773,0,1,130.0,1,1,19,1,3,161.5,0,0,1,1,0,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,140.0,1,19,19,9,4,127.8,1,0,1,1,0,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,0 +1,1,1,9670,0,1,113.0,1,1,37,1,10,116.5,1,0,1,1,1,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,1 +1,1,2,9238,0,1,145.0,1,1,19,4,8,121.4,0,0,1,1,1,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9003,0,19,133.1,1,19,37,9,10,120.0,0,0,0,1,1,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,2 +1,1,1,9085,0,1,150.0,1,12,2,4,2,144.6,0,0,0,0,1,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,7,1,9991,1,40,150.0,1,37,37,6,6,150.0,1,0,1,1,0,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,0 +1,17,5,9500,0,1,137.0,1,1,1,5,5,132.6,1,0,1,1,1,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,1 +1,39,1,8014,1,1,133.1,1,3,19,4,7,119.0,0,0,1,1,0,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9500,0,1,128.0,1,1,1,4,5,124.7,0,0,1,1,0,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,2 +1,39,2,9670,0,19,133.1,1,34,34,0,0,100.0,1,0,1,0,0,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,0 +1,39,1,9556,0,1,120.0,1,19,19,4,5,122.8,0,0,1,1,1,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,0 +1,1,2,171,0,1,165.0,1,3,3,2,2,163.6,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,133.8,1,3,37,2,10,184.0,0,0,1,1,1,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,1 +2,39,1,9003,0,1,120.0,1,37,19,9,4,148.8,0,0,1,1,1,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,1 +1,1,5,9500,0,1,151.0,1,1,1,9,9,127.8,0,0,1,1,1,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,131.0,1,38,19,7,7,125.3,1,0,1,1,1,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,1 +1,1,2,9147,0,1,128.0,1,1,1,9,6,120.3,0,0,1,1,0,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,2 +1,1,5,9500,0,1,118.0,1,3,1,5,10,113.5,1,0,1,1,1,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,140.0,1,37,37,7,9,126.8,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9085,0,1,117.0,1,38,37,9,9,113.5,1,0,1,1,1,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,135.0,1,19,19,9,9,122.8,1,0,1,1,0,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +1,1,1,171,0,1,151.0,1,37,37,9,7,147.5,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,171,0,1,138.0,1,1,3,4,4,147.5,1,0,1,1,1,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,128.0,1,38,37,9,9,124.9,0,0,1,1,1,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,1 +1,1,5,9085,0,1,124.0,1,3,19,2,3,113.9,1,0,1,1,1,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,1 +1,1,2,171,0,1,120.0,1,3,19,4,7,119.7,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,171,0,1,147.0,1,1,12,4,4,148.4,1,0,1,1,0,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,1 +1,1,1,9670,0,1,136.0,1,19,1,9,8,123.4,1,0,1,1,1,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9085,0,1,123.0,1,3,1,2,5,112.9,0,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,39,2,9556,0,1,133.1,1,3,1,2,4,136.1,0,0,1,1,0,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,171,0,1,141.0,1,3,1,4,4,142.8,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,1 +2,1,1,9003,0,1,120.0,1,37,37,9,9,120.5,1,0,0,1,0,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,0 +1,44,1,9003,0,39,140.0,1,37,37,9,6,140.0,1,0,1,1,0,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,147.0,1,19,1,4,3,138.5,1,0,1,1,1,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,1 +1,1,2,9500,0,1,123.0,1,34,34,90,90,113.3,1,0,1,1,1,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,0 +1,1,1,171,0,1,137.0,1,1,38,4,5,130.4,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,7,7,134.0,0,0,1,1,0,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,0 +1,1,1,9085,0,1,120.0,1,38,38,4,7,111.6,1,0,1,1,1,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,1 +1,1,1,9119,0,1,148.0,1,19,38,9,7,133.0,0,0,1,1,0,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,0 +1,1,1,9500,0,1,128.0,1,3,1,2,1,127.8,0,0,1,1,1,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,172.0,1,38,37,9,9,149.3,0,0,1,1,0,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,1 +1,1,6,9500,0,1,138.0,1,37,37,9,8,127.2,1,0,1,1,1,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,140.0,1,3,1,2,6,137.6,1,0,1,1,0,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,1 +2,43,1,8014,1,1,110.0,1,37,19,9,3,100.0,0,0,1,1,1,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,9670,0,1,141.0,1,2,1,2,4,140.7,1,0,1,1,0,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,1 +1,1,1,9130,0,1,137.0,1,3,38,3,5,129.3,1,0,1,1,1,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,136.0,1,38,38,0,7,133.2,1,0,1,1,1,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,145.0,6,34,34,0,0,134.5,1,0,1,1,0,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,1 +1,1,1,171,0,1,147.0,1,19,19,3,10,151.9,1,0,1,1,1,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,1 +1,17,2,9853,0,1,118.0,1,37,37,9,9,112.1,1,0,1,1,1,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,0 +1,43,1,9773,0,1,122.0,1,1,1,4,5,126.9,0,0,1,1,1,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,17,1,9670,0,1,126.0,1,12,38,9,5,122.2,0,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,143.0,1,3,3,2,2,129.0,0,0,1,1,0,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,1 +1,39,1,9556,0,1,130.0,1,19,38,9,8,113.3,0,0,1,1,1,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,101.0,1,1,37,4,9,98.9,1,0,1,1,1,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,2 +2,39,1,8014,1,1,133.1,1,34,34,90,90,116.0,0,0,1,0,1,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,0 +2,39,1,9991,1,1,170.0,1,37,19,9,3,151.1,0,0,1,1,0,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,1 +2,17,5,9119,0,1,126.0,1,37,38,4,4,122.9,1,0,1,1,0,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,2 +1,1,2,9500,0,1,125.0,1,19,19,9,9,114.9,0,0,1,1,1,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,1 +1,18,3,9773,0,1,128.0,1,19,1,9,9,122.1,1,0,1,1,0,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,0 +1,1,1,9500,0,1,149.0,1,38,37,9,9,139.5,0,0,1,1,0,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,136.0,1,1,3,9,5,137.1,0,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,18,1,9500,0,1,126.0,1,38,37,5,5,114.8,1,0,1,1,1,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,1 +2,39,1,9085,0,1,120.0,1,37,37,6,6,150.0,0,0,1,1,0,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,1 +1,17,1,9085,0,1,137.0,1,38,19,0,90,122.3,0,0,1,1,1,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,0 +2,39,1,9853,0,19,133.1,1,37,19,3,7,100.0,0,0,1,1,1,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,0 +1,1,2,9500,0,1,145.0,1,4,2,2,3,127.3,1,0,1,1,0,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,1 +1,43,1,9773,0,1,129.0,1,1,1,4,8,129.0,0,0,1,0,1,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,0 +1,1,3,9500,0,1,143.0,1,1,1,4,4,129.0,1,0,1,1,0,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,136.0,1,19,38,9,9,119.3,1,0,1,1,1,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,151.6,0,0,1,1,1,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,2 +1,1,1,9238,0,1,108.0,1,19,38,9,9,107.3,0,1,1,1,1,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,2 +1,1,1,9085,0,1,134.0,1,1,1,2,7,128.4,1,0,1,1,1,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,1 +1,42,1,9119,0,1,120.0,1,3,1,2,9,108.2,1,0,1,1,0,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,0 +1,16,2,9500,0,1,127.0,1,2,38,4,9,119.0,1,0,1,1,1,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,1 +1,1,1,9500,0,1,131.0,1,1,1,9,9,122.0,0,0,1,1,1,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,1 +1,7,1,9070,0,3,133.1,1,3,5,2,2,120.0,1,0,1,1,1,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,150.0,1,19,19,5,5,132.8,1,0,1,1,1,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,1 +1,18,2,9670,0,1,121.0,1,37,38,4,1,111.9,1,0,1,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,108.0,41,3,3,9,9,107.0,0,0,0,0,1,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9147,0,1,150.0,1,34,19,0,4,152.8,1,0,1,1,0,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +2,18,2,9238,0,1,140.0,1,37,37,9,10,120.4,0,0,0,0,1,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,44,1,9085,0,39,130.0,6,19,1,6,4,130.0,1,0,1,1,1,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,2 +1,51,1,9119,0,1,136.0,1,1,19,3,5,133.6,1,0,1,1,0,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,0 +1,1,4,9773,0,1,155.0,1,3,19,1,4,149.8,1,0,1,1,1,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9070,0,1,124.0,1,19,38,4,0,117.6,1,0,1,1,0,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,9,100.0,0,0,1,1,0,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,2 +1,44,1,9238,0,1,140.0,1,1,1,5,5,143.4,0,0,1,1,1,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,1 +1,1,1,9147,0,1,120.0,1,1,19,7,7,111.3,0,0,1,1,0,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,2 +2,1,1,9556,0,1,144.0,1,19,19,193,144,139.8,0,0,0,1,0,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,1 +1,39,1,9085,0,1,110.0,1,1,1,5,5,160.0,1,0,0,1,1,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,0 +2,39,1,9853,0,19,133.1,1,37,37,9,9,131.0,0,0,1,1,1,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,139.0,1,4,1,2,10,136.4,1,0,1,1,1,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,1 +1,17,3,9085,0,1,134.0,1,37,38,9,9,120.4,1,0,1,1,1,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,2 +1,1,1,171,0,1,148.0,1,3,2,4,2,131.6,1,0,1,1,1,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,0 +1,1,3,9500,0,1,145.0,1,19,37,7,7,141.5,1,0,1,1,1,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,1 +2,39,1,9130,0,19,133.1,1,37,38,9,9,120.0,0,0,1,1,0,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,1 +1,1,3,9254,0,1,121.0,1,19,37,4,7,116.8,1,0,1,1,1,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,1 +1,1,3,9254,0,1,123.0,1,1,1,4,3,123.4,1,0,1,1,0,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,125.0,1,38,38,9,9,133.4,1,0,1,1,0,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,1 +1,42,1,9500,0,1,124.0,1,19,19,4,9,124.0,0,0,1,1,1,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,1 +1,39,1,9500,0,40,130.0,1,37,37,9,7,130.0,0,0,1,1,1,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,2 +1,44,1,9085,0,39,140.0,1,3,38,2,9,140.0,1,0,1,1,1,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,2 +1,1,1,9773,0,1,158.0,1,38,38,9,7,144.7,1,0,1,1,1,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,18,2,9238,0,1,121.0,1,19,1,4,3,121.4,1,0,1,1,1,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,1 +1,39,1,9003,0,12,133.1,1,37,19,9,10,120.0,0,0,1,1,0,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,3,9500,0,1,122.0,1,3,1,4,3,114.8,1,0,1,1,1,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,2 +4,43,1,9991,1,1,164.0,1,37,37,6,6,131.8,0,0,1,1,1,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,1 +1,1,3,9773,0,1,145.0,1,38,38,9,5,133.1,0,0,1,1,1,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,1 +4,39,1,9853,0,19,133.1,1,38,19,9,9,108.0,0,0,0,0,1,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,2 +1,17,3,9070,0,1,131.0,1,38,37,5,5,120.2,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,2 +1,43,1,9238,0,1,130.0,1,38,37,9,7,133.2,0,0,1,1,1,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,112.0,1,1,1,3,3,106.4,1,0,1,1,0,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,125.0,1,1,38,144,181,123.3,0,0,1,1,1,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,125.0,1,3,2,2,1,119.1,1,0,1,1,1,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,0 +1,7,1,9853,0,3,140.0,1,34,34,0,0,140.0,1,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,1,171,0,1,135.0,1,1,19,3,9,137.1,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,1 +1,7,1,9991,1,3,120.0,1,37,37,6,7,120.0,0,0,0,0,0,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,0 +1,1,2,9500,0,1,130.0,1,1,1,4,3,125.1,1,0,1,1,1,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,1 +2,39,1,33,0,1,120.0,1,38,1,9,5,153.8,0,0,0,1,0,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,8014,1,1,150.0,1,37,37,9,9,140.0,0,0,1,0,0,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,127.0,1,1,38,9,7,120.4,1,0,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,1 +1,7,1,8014,1,43,180.0,1,19,19,9,4,180.0,0,0,1,1,1,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,1 +1,1,3,9147,0,1,143.0,1,1,1,5,7,133.2,1,0,1,1,1,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,1 +1,15,1,9853,0,1,133.1,41,43,1,153,135,128.2,0,0,1,1,1,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,1 +1,39,1,9147,0,12,133.1,1,1,1,9,4,140.0,1,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9147,0,1,151.0,1,1,38,4,7,137.0,1,0,1,1,0,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,1 +1,17,4,171,0,1,172.0,1,3,1,2,10,155.6,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,43,1,9147,0,1,129.0,1,19,1,9,5,112.0,0,0,1,1,0,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,0 +1,39,1,9500,0,1,150.0,1,38,3,9,1,140.0,0,0,1,1,0,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,1 +1,1,1,9773,0,1,124.0,17,1,1,3,5,118.1,1,0,0,0,1,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,0 +1,17,1,9670,0,1,124.0,1,37,19,5,8,114.2,1,0,0,1,1,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,0 +1,1,1,9670,0,1,122.0,1,1,19,3,5,116.8,1,0,1,1,1,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,144.0,1,38,1,9,10,137.4,0,0,1,1,1,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9238,0,1,128.0,1,19,19,9,9,120.0,0,0,1,1,1,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,138.0,1,38,38,7,6,124.7,1,0,1,1,1,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,2 +1,18,2,9147,0,1,132.0,1,3,3,5,7,119.1,1,0,0,0,1,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,0 +1,17,6,9119,0,1,111.0,1,19,3,5,10,106.5,1,0,1,1,0,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,0 +1,7,1,9500,0,3,140.0,1,34,34,0,0,140.0,0,0,1,1,1,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,1,140.0,1,37,37,9,9,130.0,1,0,1,1,0,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,1 +1,1,1,9254,0,1,125.0,1,37,37,3,3,124.0,0,0,1,1,0,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,128.0,1,19,2,7,3,126.3,1,0,1,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,1 +2,39,1,9500,0,1,110.0,1,37,37,9,6,114.3,0,0,1,1,1,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,0 +1,42,1,9085,0,1,133.1,1,1,9,4,4,128.2,0,0,1,1,1,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,1 +1,1,3,9238,0,1,126.0,1,38,19,5,8,120.8,1,0,1,1,1,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,121.0,1,1,1,9,8,118.9,1,0,1,1,1,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,1 +1,43,1,9238,0,1,109.0,1,19,37,5,5,108.3,0,0,1,1,1,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,2 +1,1,4,9670,0,1,127.0,1,1,1,7,7,116.5,1,0,1,1,1,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,171,0,19,133.1,101,1,19,2,7,110.0,0,0,1,1,0,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,133.0,1,37,37,9,7,124.6,1,0,1,1,1,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,1 +1,39,1,9254,0,39,137.0,1,1,1,5,10,124.5,0,0,1,0,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,0 +1,1,1,9670,0,1,130.0,1,19,19,7,7,121.6,0,0,1,1,1,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,1 +2,39,1,8014,1,1,130.0,1,37,37,6,5,113.5,1,0,1,1,1,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,1,9670,0,1,120.0,1,38,38,5,7,115.1,1,0,1,1,1,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,3,9773,0,1,115.0,1,38,1,9,4,116.1,1,0,1,1,0,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,1 +1,39,1,9991,1,1,130.0,1,37,37,9,9,130.1,0,0,1,1,1,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,2 +1,1,3,9238,0,1,133.1,1,1,1,9,9,100.0,1,0,1,1,0,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,2 +2,39,1,9991,1,1,133.1,1,37,37,9,9,168.0,0,0,1,1,0,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,148.0,1,1,1,9,9,141.7,0,0,1,0,0,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,0 +1,15,1,33,0,1,133.1,41,2,3,2,4,100.0,0,0,1,1,0,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,2 +1,17,3,9147,0,1,135.0,1,37,37,6,5,121.0,1,0,1,1,0,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,151.0,1,3,3,1,90,161.9,0,0,1,1,1,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,1 +1,39,1,9500,0,1,120.0,1,37,37,9,8,108.5,0,0,1,1,0,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,2,9670,0,1,130.0,1,26,30,0,5,128.6,1,0,0,1,1,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,1 +1,43,1,9500,0,1,140.0,100,1,1,6,6,128.2,0,0,1,1,1,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,0 +1,44,1,9085,0,39,140.0,1,19,37,5,7,140.0,1,0,1,1,0,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,0 +1,39,1,33,0,1,140.0,1,3,1,2,4,152.8,0,0,1,1,1,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,2 +1,43,1,9070,0,1,117.0,1,1,1,4,7,112.5,1,0,1,1,0,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,126.0,1,37,19,7,7,125.7,0,0,1,1,1,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,2 +1,1,2,9773,0,1,140.0,1,38,38,5,7,126.4,1,0,1,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,1 +1,1,1,9085,0,1,121.0,1,37,38,6,9,121.0,0,0,1,1,1,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,1 +1,1,1,9254,0,1,136.0,1,12,1,4,4,122.0,1,0,1,1,1,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,117.0,1,37,37,9,9,120.2,1,0,1,1,1,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,2 +1,1,1,9254,0,1,133.1,1,38,1,9,9,121.0,0,0,0,0,0,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,0 +1,44,1,9991,1,39,130.0,1,37,37,5,5,130.0,1,0,1,1,0,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,0 +1,17,1,9085,0,1,138.0,1,1,19,4,9,142.2,1,0,1,1,1,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,1 +1,1,1,9070,0,1,148.0,1,3,1,2,10,148.0,1,0,1,1,1,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,1 +1,17,6,9556,0,1,134.0,1,19,38,7,7,128.5,1,0,1,1,1,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,141.0,1,1,19,5,8,141.4,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,1,2,9500,0,1,149.0,1,3,1,9,9,137.5,0,0,1,1,0,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,1 +1,1,3,9085,0,1,142.0,1,11,11,90,90,155.3,0,0,1,1,1,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,1 +1,1,2,9070,0,1,135.0,1,19,37,9,9,134.0,1,0,1,1,1,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,132.0,1,19,38,9,7,120.1,0,0,1,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,3,9147,0,1,133.0,1,37,37,9,5,119.7,1,0,1,1,0,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,1 +1,1,1,9085,0,1,139.0,1,3,4,2,2,130.6,0,0,1,1,1,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,1 +1,44,1,9003,0,39,130.0,1,1,3,9,2,130.0,1,0,0,0,0,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,0 +1,17,3,9500,0,1,138.0,1,3,3,4,5,130.0,1,0,1,1,1,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,0 +1,1,2,9070,0,1,121.0,1,19,19,3,3,116.1,1,0,1,1,1,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,1 +1,1,1,9070,0,1,160.0,1,3,38,1,9,152.0,1,0,1,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9070,0,1,130.0,41,37,19,9,8,125.5,1,0,1,1,1,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,133.1,1,38,38,191,193,146.0,0,0,0,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,1 +4,39,1,9003,0,1,140.0,1,37,37,9,8,150.0,0,0,1,1,0,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,2 +1,17,2,9670,0,1,132.0,1,1,19,5,3,124.0,1,0,1,1,0,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,0 +1,1,1,9147,0,1,117.0,1,19,19,5,7,118.4,0,0,1,1,0,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,2 +1,1,1,9085,0,1,140.0,6,1,19,4,7,131.6,1,0,1,1,1,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,2 +1,43,1,9670,0,1,142.0,1,38,1,8,10,138.5,1,0,1,1,0,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,2 +1,1,1,9130,0,1,132.0,1,3,1,4,9,121.9,1,0,1,1,1,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,2,9670,0,1,122.0,1,1,1,9,9,116.1,1,0,1,1,0,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,0 +1,7,1,8014,1,3,130.0,1,37,38,0,5,130.0,0,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,6,9500,0,1,138.0,1,19,19,9,5,124.8,1,0,1,1,1,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,0 +1,44,1,9003,0,39,140.0,1,19,38,3,9,140.0,1,0,1,1,0,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,1 +4,39,1,8014,1,1,138.0,1,19,19,90,90,127.0,0,0,1,0,1,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,9500,0,19,133.1,1,1,3,2,2,100.0,0,0,0,1,0,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,117.0,1,3,1,3,5,110.7,1,0,1,1,0,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,2 +1,17,1,9670,0,1,120.0,1,19,19,5,5,113.0,1,0,1,1,1,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,1 +1,1,4,9500,0,1,160.0,1,37,37,7,7,133.0,1,0,1,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,6,9500,0,1,137.0,1,1,1,4,5,126.3,1,0,1,1,1,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,1 +1,1,1,9500,0,1,127.0,1,19,37,9,7,123.9,1,0,1,1,1,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,130.0,1,38,38,9,5,130.0,0,0,0,0,0,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,0 +1,1,4,9500,0,1,137.0,1,19,37,9,7,130.8,0,0,0,1,1,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,38,37,4,6,150.0,1,0,1,1,1,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,1 +1,1,2,9773,0,1,115.0,1,34,38,0,5,108.4,1,0,1,1,1,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,1 +1,53,1,9003,0,42,140.0,1,3,38,141,151,135.3,0,0,1,1,0,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,1 +1,39,1,9670,0,1,148.0,1,19,19,7,7,130.9,0,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,127.0,1,1,1,4,3,126.3,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +2,39,2,9670,0,1,100.0,1,37,37,9,9,100.0,0,0,1,1,1,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,2 +1,17,2,171,0,1,141.0,1,19,37,9,9,136.1,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,123.0,1,30,19,4,90,122.3,0,0,1,1,1,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,1 +1,1,1,9070,0,1,145.0,1,1,38,5,7,127.5,1,0,1,1,0,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,2 +2,39,1,9085,0,1,150.0,1,37,37,90,10,112.0,0,0,1,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9773,0,1,128.0,1,37,1,9,7,124.2,1,0,1,1,1,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,0 +1,43,1,9070,0,39,130.0,1,19,37,5,9,124.0,1,0,1,1,1,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,1 +1,17,1,9003,0,1,170.0,1,1,4,9,5,144.1,1,0,0,0,0,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +4,39,1,9670,0,1,110.0,1,19,19,90,99,107.2,0,0,1,1,0,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +2,39,1,9238,0,19,133.1,1,37,37,9,9,130.0,1,0,1,1,1,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,2 +1,42,1,9119,0,1,144.0,1,34,34,0,0,119.5,0,0,1,1,0,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,0 +2,39,1,9773,0,19,133.1,1,37,37,6,6,162.0,0,0,0,1,0,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,1 +1,16,1,9085,0,1,138.0,1,37,37,9,9,123.0,1,0,1,1,1,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,1 +1,39,1,9500,0,1,133.1,1,19,19,5,6,121.4,0,0,0,1,1,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,2 +1,1,1,9085,0,1,138.0,1,1,1,4,7,132.1,1,0,1,1,1,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,1 +1,39,1,9119,0,1,133.1,1,37,37,9,9,101.6,0,0,1,1,0,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9500,0,1,126.0,1,1,19,131,181,120.1,1,0,1,1,1,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,38,9,9,142.0,1,0,1,1,1,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,1 +1,18,1,8014,1,1,138.0,1,19,1,9,5,134.5,1,0,1,1,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,1 +1,44,1,9130,0,39,130.0,1,38,19,9,9,150.0,0,0,1,1,0,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,126.0,1,38,37,9,9,123.6,1,0,1,1,1,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,1 +1,39,1,9254,0,19,133.1,1,19,19,3,1,101.5,0,0,0,0,0,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,43,2,9119,0,1,115.0,1,38,19,9,6,112.2,1,0,0,1,0,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,2 +2,39,1,9003,0,1,120.0,1,37,37,9,9,125.7,0,0,0,0,1,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,0 +1,17,2,9773,0,1,115.0,1,1,1,5,5,119.6,1,0,1,1,1,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,19,9,4,140.0,0,0,1,1,1,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,125.0,1,37,19,90,90,137.3,0,0,1,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,0 +1,17,1,9147,0,1,120.0,1,3,38,3,7,124.2,1,0,1,1,0,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,2 +1,1,1,9147,0,1,146.0,1,5,1,1,5,144.6,0,0,1,1,0,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,1 +1,1,4,9147,0,1,116.0,1,1,1,3,4,113.6,1,0,1,1,1,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,1 +4,42,1,9147,0,1,133.1,1,37,38,7,3,123.0,1,0,1,1,0,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,43,4,9500,0,6,118.9,1,38,37,5,9,118.9,1,0,1,1,1,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,1 +1,1,1,9670,0,1,123.0,1,12,1,9,9,119.2,1,0,1,1,1,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,1 +1,7,1,9500,0,2,140.0,1,38,37,7,8,140.0,0,0,1,1,1,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,0 +1,39,1,9119,0,1,110.0,1,37,37,90,90,108.4,1,0,1,1,1,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,18,1,9119,0,1,146.0,1,1,37,7,7,132.4,1,0,1,1,0,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,39,1,9130,0,19,133.1,1,19,3,9,2,140.0,1,0,0,1,0,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,0 +1,18,2,9853,0,1,111.0,1,38,38,191,171,105.8,1,0,1,1,1,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,1 +2,39,1,9991,1,1,140.0,1,37,37,9,6,130.2,0,0,1,1,1,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,1 +1,1,5,9500,0,1,130.0,1,1,3,9,10,118.1,1,0,1,1,0,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,2 +1,17,1,9254,0,1,118.0,1,1,19,5,4,118.0,0,0,1,1,1,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,1 +1,17,1,9238,0,1,153.0,1,38,38,7,7,159.7,1,0,1,1,1,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,1 +2,39,1,171,0,12,110.0,1,37,37,7,7,106.0,1,0,1,1,0,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,17,1,9254,0,1,134.0,1,19,1,9,4,124.9,1,0,1,1,1,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,0 +1,1,3,9254,0,1,121.0,1,19,19,9,9,125.9,1,0,1,1,1,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,160.0,1,19,19,4,9,154.4,0,0,1,1,1,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,1 +2,39,1,9991,1,3,140.0,1,19,19,9,7,152.4,0,0,1,1,1,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,1 +1,39,1,9130,0,1,130.0,1,19,1,191,144,110.0,0,0,1,1,0,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,2 +1,1,4,9500,0,1,142.0,1,38,37,9,5,127.3,1,0,1,1,1,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,1 +4,39,1,9500,0,1,133.1,1,37,37,9,9,130.0,0,0,0,1,1,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,0 +1,1,1,9070,0,1,124.0,1,37,19,9,4,121.2,0,0,1,1,0,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,1 +4,39,1,9991,1,1,120.0,1,19,19,9,3,113.9,1,0,1,1,1,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,114.0,1,19,38,5,3,112.6,1,0,1,1,1,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,1 +1,7,1,9991,1,40,120.0,1,1,19,4,9,120.0,0,0,1,1,1,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9254,0,1,128.0,1,19,38,9,9,118.2,0,0,1,1,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +1,17,4,9070,0,1,126.0,1,1,19,4,5,120.4,1,0,1,1,1,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,1 +1,1,1,9670,0,1,130.0,1,1,1,0,0,119.5,0,0,1,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,184.4,22,2,19,2,8,184.4,0,0,1,1,1,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,1 +2,39,1,9991,1,1,133.1,1,37,37,9,9,132.8,0,0,0,0,0,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9085,0,1,120.0,1,38,19,90,90,127.0,0,0,1,1,1,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,1 +1,17,4,9147,0,1,132.0,1,38,19,5,5,120.8,1,0,1,1,0,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,0 +1,10,1,9670,0,1,148.9,22,37,37,9,9,148.9,0,0,1,1,1,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,1 +1,7,1,9003,0,4,150.0,1,1,1,4,6,150.0,0,0,1,1,0,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,1 +1,42,1,9500,0,1,150.0,1,19,1,9,3,110.0,1,0,1,1,0,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,1 +1,15,1,9670,0,1,130.0,26,42,1,2,7,130.0,0,1,0,1,1,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,1 +2,7,1,8014,1,3,120.0,1,38,1,9,9,120.0,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,171,0,1,149.0,1,19,37,9,9,158.1,1,0,1,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,4,9147,0,1,124.0,1,37,37,9,9,117.4,0,0,1,1,1,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,1 +1,1,3,9773,0,1,142.0,1,34,1,5,10,136.1,1,0,1,0,0,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,0 +2,1,1,8014,1,1,165.0,1,37,37,0,0,162.9,1,0,1,1,0,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,1 +1,17,2,9254,0,1,130.0,1,37,37,5,7,123.4,1,0,1,1,0,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,0 +4,39,1,8014,1,1,133.1,1,37,37,7,7,143.0,0,0,1,1,0,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,3,9238,0,1,121.0,1,38,37,8,8,115.4,1,0,1,1,1,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,1 +1,7,1,9556,0,3,140.0,1,3,3,2,2,140.0,0,0,0,0,0,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9670,0,1,116.0,1,38,19,0,2,116.7,1,0,1,1,0,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,3,9070,0,1,132.0,1,38,1,5,5,124.3,0,1,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9853,0,1,133.1,1,38,12,7,0,111.5,0,0,1,0,1,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,0 +1,53,1,9147,0,42,140.0,1,1,1,6,6,142.2,0,0,1,1,0,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,1 +2,44,1,9991,1,39,140.0,1,37,37,9,9,140.0,0,0,1,1,1,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,2 +1,1,1,9773,0,1,170.0,1,1,19,9,7,155.0,0,0,1,1,0,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,1 +2,39,1,8014,1,19,133.1,1,37,37,4,8,112.5,0,0,1,1,1,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,1 +1,43,1,9500,0,1,120.0,1,1,1,5,8,112.0,1,0,1,1,1,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,123.0,1,1,1,3,3,113.6,1,0,1,1,1,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,1 +1,39,1,9085,0,1,133.1,1,1,19,9,9,162.3,1,0,1,1,1,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,0 +1,17,1,9773,0,1,116.0,1,37,1,9,8,115.7,1,0,0,0,1,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9147,0,1,160.0,1,9,19,4,3,151.3,0,0,1,1,1,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,1 +1,39,1,8014,1,19,149.0,1,34,34,0,0,126.3,0,0,1,1,1,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,44,1,9238,0,39,140.0,41,1,1,4,6,137.5,0,0,0,1,1,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,1 +1,43,1,9070,0,1,130.0,1,37,37,9,9,129.0,1,0,1,1,1,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,125.0,1,19,38,7,7,118.7,0,0,1,1,0,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,2 +2,39,1,8014,1,1,140.0,1,37,37,9,9,128.0,0,0,1,1,1,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,1 +1,17,1,9070,0,1,135.0,1,19,37,5,9,145.9,0,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9773,0,1,128.0,1,1,19,9,7,118.2,0,0,1,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,1 +1,1,1,9254,0,1,128.0,1,19,38,9,9,127.0,0,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,2 +2,39,1,9991,1,1,140.0,1,37,12,9,9,150.0,0,0,0,1,0,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,0 +2,43,1,8014,1,1,160.0,1,37,39,9,4,140.9,0,0,1,1,1,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,1 +1,1,4,9500,0,1,133.0,1,38,19,8,7,127.3,1,0,1,1,1,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,1 +1,15,1,9670,0,1,160.0,1,37,12,9,9,149.5,1,0,1,0,0,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,1 +1,1,2,9070,0,1,152.0,101,2,1,9,1,168.5,1,0,1,1,0,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,1 +1,1,3,9085,0,1,147.0,1,19,19,9,1,135.6,1,0,1,1,1,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,1 +1,17,2,8014,1,1,120.0,1,37,34,0,0,117.6,1,0,1,1,1,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,1 +1,43,1,9147,0,1,141.0,1,37,37,9,9,130.2,0,0,1,1,0,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,1 +1,16,2,9147,0,1,139.0,1,38,37,9,9,123.7,1,0,1,1,1,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,1 +1,17,1,9147,0,1,134.0,1,19,38,4,8,129.5,0,0,1,1,1,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,1 +1,17,1,9254,0,1,113.0,1,1,37,9,10,117.2,1,0,1,1,1,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,0 +1,18,2,9556,0,1,126.0,1,3,3,2,2,115.5,0,0,1,1,0,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,1 +1,39,1,8014,1,1,134.0,1,37,38,4,7,110.0,1,0,1,1,1,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,0 +1,42,1,171,0,1,132.0,1,1,1,1,4,132.0,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,0 +1,39,1,9003,0,1,130.0,1,19,19,9,1,140.0,0,0,1,1,1,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,1 +1,43,1,9773,0,1,132.0,1,38,19,9,9,125.0,1,0,1,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,1 +1,39,1,9500,0,1,140.0,1,37,37,9,6,132.8,0,0,1,1,0,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,0 +1,1,1,9119,0,1,130.0,1,37,19,9,5,140.2,1,0,1,1,0,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,0 +1,1,3,9070,0,1,118.0,1,43,3,123,123,110.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,1 +1,39,1,8014,1,19,100.0,1,37,37,5,5,111.0,1,0,1,1,1,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,2 +1,1,3,9085,0,1,138.0,1,1,3,4,4,126.3,1,0,1,1,1,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,1,9853,0,1,132.0,1,2,19,4,4,125.0,1,0,1,1,1,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,38,100.0,1,37,37,9,7,154.0,1,0,1,1,0,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9773,0,1,138.0,1,1,19,4,4,131.7,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,1 +2,39,2,9147,0,1,140.0,1,37,37,9,8,108.0,0,0,1,1,1,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,2 +1,1,5,9147,0,1,134.0,1,3,2,2,2,134.7,0,0,1,1,0,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,2 +1,43,1,9130,0,1,120.0,1,2,3,3,2,120.0,1,0,1,0,0,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,0 +1,1,3,9085,0,1,140.0,1,10,19,90,90,135.8,1,0,1,1,1,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,1 +1,17,3,9147,0,1,142.0,1,37,38,5,1,129.4,0,0,1,1,1,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,1 +1,17,4,9670,0,1,120.0,1,1,19,5,5,117.2,1,0,1,1,1,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,1 +1,1,1,9500,0,1,136.0,1,1,19,5,7,136.4,0,0,1,1,1,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,1 +2,39,1,9147,0,1,120.0,1,37,37,5,5,124.6,0,0,1,1,1,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,2 +1,39,1,9500,0,1,133.1,1,1,37,9,9,100.0,0,0,1,1,0,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,0 +1,1,2,9670,0,1,123.0,1,19,1,9,3,117.8,1,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,1 +5,39,1,9254,0,1,133.1,1,2,2,2,2,103.0,0,0,1,1,1,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,1 +1,17,3,171,0,1,133.0,1,1,37,4,7,126.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,2 +1,1,6,9500,0,1,119.0,1,1,1,4,4,115.0,1,0,1,1,0,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9070,0,1,143.0,1,38,19,151,193,134.3,1,1,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,1 +1,17,1,9238,0,1,135.0,1,1,19,4,4,129.1,0,0,1,1,1,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,1 +1,43,2,9670,0,1,130.0,1,19,1,4,4,127.6,1,0,1,1,0,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,0 +1,17,1,9254,0,1,126.0,1,37,37,5,1,126.0,0,0,1,0,0,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,0 +1,42,1,9119,0,1,120.0,1,19,37,9,9,113.8,0,0,1,0,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9991,1,1,140.0,1,37,37,9,9,135.8,1,0,1,1,0,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,1 +1,17,5,9085,0,1,118.0,1,38,38,9,9,112.4,1,0,1,1,1,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,1 +1,17,3,9773,0,1,134.0,1,2,1,3,3,129.5,1,0,1,1,0,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,1 +1,1,1,9085,0,1,129.0,1,1,38,4,7,123.4,0,0,1,1,1,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,1 +1,1,1,9500,0,1,132.0,1,19,37,4,9,128.0,1,0,1,1,1,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,1 +1,17,1,9500,0,1,137.0,1,38,37,7,5,131.0,1,0,1,1,1,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,1 +1,17,5,9119,0,1,138.0,1,19,19,5,5,123.3,1,0,0,1,0,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,138.0,1,1,1,3,4,132.5,1,0,1,1,1,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,1 +1,16,2,9070,0,1,133.0,1,1,3,4,2,122.5,1,0,1,1,1,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,2 +1,17,1,9130,0,1,137.0,1,38,19,5,7,130.0,1,0,1,1,1,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,2 +1,17,1,9238,0,1,131.0,1,37,37,9,7,121.9,0,0,1,1,1,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,1 +2,1,1,9500,0,1,142.0,1,19,38,4,5,130.3,0,0,1,1,1,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,1 +2,39,1,9556,0,1,160.0,1,37,37,9,6,120.0,0,0,1,1,1,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,0 +1,51,1,9670,0,1,126.0,1,3,3,1,10,111.0,0,0,0,1,0,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,1 +1,1,5,9853,0,1,141.0,1,37,19,9,5,133.0,1,0,1,1,1,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,0 +1,1,2,9670,0,1,124.0,1,19,1,9,4,117.7,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,0 +1,1,4,9500,0,1,133.0,1,19,19,9,5,120.1,1,0,1,1,1,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,1 +1,43,1,9147,0,1,133.1,1,4,19,2,1,128.2,0,0,1,1,1,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,0 +4,27,1,9070,0,2,130.0,1,34,34,0,0,130.0,0,0,1,1,1,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,0 +1,43,1,9003,0,1,150.0,1,2,4,4,1,150.0,0,0,1,1,0,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,1 +1,39,1,9991,1,19,133.1,1,19,37,7,5,155.5,1,0,0,0,0,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,0 +1,1,1,9238,0,1,106.0,1,1,1,3,3,105.0,0,0,1,1,0,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,111.0,1,19,38,3,3,111.4,1,0,1,0,1,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,0 +1,43,1,9254,0,1,130.0,1,1,19,5,7,130.0,0,0,1,1,1,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,0 +1,17,1,8014,1,1,120.0,1,38,37,6,6,113.0,0,0,1,1,1,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,139.0,1,1,37,4,9,131.3,1,0,1,1,1,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,1 +1,43,3,9254,0,1,110.0,1,37,37,9,9,107.2,1,0,1,1,0,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,0 +1,1,3,9500,0,1,147.0,1,1,1,4,4,134.3,1,0,1,1,1,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,1 +1,44,1,9085,0,39,130.0,1,37,38,9,6,130.0,1,0,1,1,1,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,139.0,1,37,38,9,9,124.0,1,0,1,1,0,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,1 +1,1,2,9773,0,1,122.0,1,37,37,9,9,126.9,1,0,1,1,1,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,2 +1,39,1,9670,0,1,120.0,1,11,11,90,4,114.0,1,0,1,1,0,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,0 +1,1,5,9147,0,1,132.0,1,39,39,3,3,127.8,1,0,1,0,0,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9147,0,1,128.0,1,38,37,5,6,122.1,0,0,1,1,1,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,2 +1,17,1,9085,0,1,127.0,1,19,38,194,193,117.6,0,0,1,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,17,1,9500,0,1,145.0,1,3,3,2,3,141.8,0,0,1,1,1,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,1 +1,53,1,9556,0,42,140.0,1,1,19,4,5,140.0,0,0,1,1,1,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,1 +1,18,1,9147,0,1,160.0,1,19,19,5,8,137.6,1,0,1,1,1,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,1 +1,51,1,9670,0,19,133.1,1,2,1,3,10,120.0,0,0,0,1,0,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,0 +2,39,1,9991,1,19,133.1,1,19,39,5,3,121.7,0,0,0,0,1,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,126.0,0,0,1,1,0,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,1 +1,1,3,171,0,1,140.0,1,37,37,9,9,124.3,1,0,1,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,1,1,9853,0,1,136.0,1,38,37,9,9,126.9,1,0,1,1,1,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,136.0,1,19,1,9,9,129.0,1,0,1,1,1,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,1 +1,1,5,9500,0,1,144.0,1,38,38,7,7,136.0,1,0,1,1,1,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,1,1,9238,0,1,154.0,1,38,38,9,9,156.5,1,1,1,1,1,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,131.0,1,19,19,9,9,134.9,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,0 +4,43,1,8014,1,1,140.0,1,38,37,9,9,126.0,0,0,1,1,1,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,1 +1,1,2,9500,0,1,141.0,1,37,37,9,7,126.3,1,0,1,1,1,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,1 +1,44,1,8014,1,39,150.0,1,1,37,9,7,146.7,0,0,1,1,1,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,1 +1,1,2,9119,0,1,140.0,1,19,19,9,9,125.7,1,0,1,1,0,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,2 +2,39,1,9773,0,12,100.0,1,1,1,4,4,100.0,0,0,1,1,1,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,1 +1,42,1,9500,0,1,111.0,1,1,3,9,10,128.2,1,0,1,1,0,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,1 +1,17,2,9773,0,1,132.0,1,19,19,9,6,120.1,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,1 +1,1,1,9500,0,1,131.0,1,4,4,2,1,120.5,0,0,1,1,1,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,1 +1,44,1,9003,0,39,170.0,1,19,19,5,5,170.0,1,0,1,1,0,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,1 +1,17,1,9773,0,1,150.0,1,38,38,7,7,137.8,1,0,1,1,1,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,1 +1,39,1,9003,0,19,133.1,1,37,37,9,10,120.0,0,0,0,0,0,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9670,0,39,110.0,1,37,1,9,4,110.0,0,0,1,1,1,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,1 +1,44,1,9003,0,39,130.0,1,5,3,2,2,130.0,0,0,1,1,0,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,2 +1,17,1,9670,0,1,133.1,1,34,3,7,2,130.6,1,0,0,0,0,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,0 +1,44,1,9003,0,39,140.0,1,19,38,9,10,140.0,0,0,1,1,0,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,0 +1,1,4,9500,0,1,133.1,1,19,38,9,9,119.6,1,0,1,1,1,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,118.0,1,19,19,3,3,110.0,1,0,1,1,1,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,2 +1,1,1,9773,0,1,137.0,1,1,1,5,5,129.3,1,0,1,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,1 +1,17,1,9500,0,1,127.0,1,19,38,5,9,129.5,1,0,1,1,1,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,1 +1,17,4,9670,0,1,126.0,1,38,19,9,6,119.4,1,0,1,1,1,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,1 +1,1,1,9773,0,1,127.0,1,19,37,9,9,116.5,0,0,1,1,1,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,1 +1,17,1,9853,0,1,125.0,1,19,19,4,7,128.5,1,0,1,1,1,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,2 +1,43,1,9773,0,1,133.1,22,34,34,90,90,130.0,0,0,0,1,1,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,0 +1,1,1,9238,0,1,125.0,1,1,1,5,5,128.5,0,0,1,1,0,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,39,1,9500,0,1,133.1,1,19,37,9,9,120.0,0,0,1,1,1,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,1 +2,39,2,9147,0,1,133.1,1,37,37,5,7,110.0,0,0,1,1,0,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,0 +1,18,6,9500,0,1,141.0,1,1,19,1,1,126.7,1,0,1,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,146.0,1,40,43,4,4,150.2,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,1,9238,0,1,148.0,1,1,1,4,9,129.8,0,0,1,1,1,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,2 +1,17,1,9853,0,1,133.0,1,38,38,9,9,127.4,0,0,0,1,1,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,1 +1,43,1,9147,0,1,120.0,1,37,37,5,3,113.4,0,0,1,1,0,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,148.0,1,19,3,4,2,136.5,0,0,1,1,1,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,1 +1,1,1,9254,0,1,178.0,1,2,1,2,3,157.7,0,0,1,1,0,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +2,7,1,9254,0,3,130.0,1,1,3,4,3,130.0,0,0,1,1,1,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,7,1,33,0,40,120.0,1,38,37,5,6,120.0,1,0,0,0,0,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,0 +2,1,1,9147,0,1,151.0,1,38,37,9,8,132.1,1,0,1,1,1,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,0 +1,43,2,9556,0,1,120.0,1,1,19,4,3,110.2,0,0,1,1,1,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,1 +2,1,4,9500,0,1,140.0,1,1,37,4,9,128.0,0,0,1,1,1,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,1 +1,42,1,9119,0,6,120.0,1,35,35,6,6,128.2,1,0,1,1,0,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,0 +1,43,1,9500,0,1,120.0,1,37,37,9,6,120.0,1,0,1,1,1,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,2 +2,39,1,9003,0,1,133.1,1,37,37,8,7,150.0,0,0,1,1,0,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,1 +1,1,1,9238,0,1,145.0,1,19,37,4,7,148.9,1,0,1,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,1 +1,39,1,9670,0,1,120.0,1,34,34,0,0,104.0,1,0,1,1,1,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,0 +1,43,1,9085,0,1,110.0,1,3,19,4,6,105.0,0,0,0,0,0,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,0 +1,17,2,9254,0,1,108.0,1,37,37,9,7,108.0,1,0,1,1,1,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,1 +4,43,1,9238,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,1,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,136.0,1,19,37,173,183,118.4,1,0,1,1,1,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,2 +1,18,1,9556,0,1,140.0,1,38,37,9,9,122.8,0,0,1,1,1,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,1 +1,39,1,9119,0,1,150.0,1,3,3,4,4,150.0,1,0,1,1,0,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,0 +1,1,1,9130,0,1,141.0,1,1,1,4,10,138.9,1,0,1,1,0,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,1 +1,18,4,9773,0,1,130.0,1,19,19,4,4,121.3,1,0,1,1,1,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,0 +2,39,1,9130,0,1,130.0,1,37,37,9,6,160.0,0,0,1,1,0,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,0 +1,1,1,9500,0,1,149.0,1,37,37,9,9,136.0,0,0,1,1,1,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,1 +1,1,1,9147,0,1,151.0,1,37,1,4,10,138.4,0,0,1,1,1,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,2 +1,39,1,9254,0,1,130.0,1,37,37,9,9,126.5,0,0,1,1,0,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,1 +1,1,3,9500,0,1,143.0,1,19,37,7,7,127.0,1,0,1,1,1,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,1 +2,57,1,9991,1,1,133.1,41,38,37,4,6,100.0,0,0,1,1,1,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,1 +1,1,1,9238,0,1,138.0,1,37,37,9,9,135.9,1,0,1,1,1,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,2 +1,43,1,8014,1,1,145.7,22,37,37,9,9,145.7,1,0,1,1,1,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,1 +4,39,1,9773,0,19,133.1,1,37,37,9,1,117.5,0,0,1,1,1,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,1 +1,17,3,9238,0,1,118.0,1,1,19,4,10,112.4,1,0,1,1,1,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +2,39,1,8014,1,1,133.1,1,37,37,9,7,162.5,0,0,1,1,0,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,1 +1,1,3,9254,0,1,115.0,1,1,1,3,3,117.5,1,0,1,1,1,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,0 +1,1,1,9500,0,1,133.0,1,37,38,9,9,130.2,1,0,1,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,1 +1,1,1,9130,0,1,152.0,1,2,22,4,3,146.1,1,0,1,1,1,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,0 +2,39,1,9085,0,12,133.1,1,1,39,5,3,140.0,1,0,0,0,1,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,9003,0,1,140.0,1,38,1,9,4,138.3,0,0,1,1,0,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9773,0,1,130.0,1,38,37,9,6,133.9,0,0,1,1,0,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,140.0,1,37,37,9,9,142.5,1,0,1,1,1,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,1 +1,1,2,9085,0,1,120.0,1,38,1,9,3,118.3,1,0,1,1,1,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,1 +1,1,1,9238,0,1,117.0,1,1,19,4,7,113.5,1,0,1,1,1,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,141.0,1,19,1,7,3,128.8,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,1 +1,17,3,9147,0,1,125.0,1,3,38,2,10,118.7,1,0,1,1,1,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,116.0,1,37,1,5,3,124.8,1,0,1,1,0,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,2 +1,1,1,9773,0,1,120.0,1,36,37,0,0,126.7,1,0,1,1,0,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,1 +1,17,4,9853,0,1,140.0,1,19,38,4,1,128.5,1,0,1,1,1,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,1 +1,44,1,9003,0,39,130.0,1,1,1,3,10,130.0,0,0,1,1,0,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,0 +1,1,1,171,0,1,136.0,1,3,37,2,8,121.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,2 +1,1,1,9500,0,1,154.0,1,37,37,9,9,149.5,1,0,1,1,1,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,138.0,1,19,38,5,8,133.5,0,0,1,1,1,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,1 +1,1,4,9500,0,1,128.0,1,1,37,4,3,117.9,1,0,1,1,1,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,1 +1,43,1,9130,0,1,150.0,1,3,3,3,4,150.0,1,0,1,1,1,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,1 +1,1,5,9773,0,1,110.0,1,19,38,3,5,117.4,1,0,1,1,1,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,1 +1,1,1,9773,0,1,135.0,1,37,38,9,6,122.1,1,0,1,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,1 +2,39,1,9003,0,1,140.0,1,37,37,9,6,104.8,0,0,1,1,1,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,1 +1,1,2,9670,0,1,143.0,1,37,37,9,7,131.8,1,0,1,1,1,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,2 +1,1,1,171,0,1,142.0,1,1,1,3,3,133.3,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,43,1,9070,0,1,141.0,1,1,19,5,10,127.0,0,0,1,1,1,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,1 +3,1,2,9085,0,1,135.0,1,19,1,4,4,129.4,1,0,1,1,1,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,0 +1,39,1,9254,0,1,133.1,1,19,19,4,7,123.0,0,0,0,0,1,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,0 +1,17,2,9500,0,1,131.0,1,19,37,9,7,129.8,1,0,1,1,1,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,1 +1,39,1,9670,0,9,133.1,1,6,22,3,3,120.0,0,0,0,0,0,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,0 +1,1,1,9070,0,1,131.0,1,37,37,3,3,131.7,1,0,1,1,1,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,137.0,1,19,19,5,5,134.6,1,0,1,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,131.0,1,1,1,4,10,129.3,0,0,1,1,1,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,1 +4,39,1,9991,1,1,140.0,1,1,37,141,192,129.7,0,0,1,1,1,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,1 +1,1,1,9991,1,1,140.0,1,37,37,9,9,124.6,0,0,1,1,1,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,2 +1,17,3,9853,0,1,138.0,1,37,37,5,9,125.1,1,1,1,1,1,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,0 +1,2,1,9147,0,1,150.0,1,37,37,9,9,122.0,1,0,1,1,1,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,135.0,1,3,1,4,4,136.1,1,0,1,1,0,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,2 +1,39,1,9991,1,1,150.0,1,1,19,4,8,123.0,0,0,1,1,0,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,0 +1,17,1,9670,0,1,141.0,1,19,37,5,8,130.2,0,0,1,1,0,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9130,0,1,106.0,1,37,37,9,9,108.0,1,0,0,1,1,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,19,133.1,1,37,38,9,7,100.5,1,0,1,1,0,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,2 +1,43,1,9254,0,1,142.0,1,38,38,9,9,125.9,0,0,1,1,1,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,0 +1,39,1,9991,1,1,150.0,1,1,37,9,7,130.2,0,0,1,1,1,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,1 +4,39,1,9670,0,1,140.0,1,2,1,3,9,170.0,0,0,0,0,0,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,0 +1,17,4,9773,0,1,119.0,1,38,19,9,9,118.3,0,0,1,1,1,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,43,1,9238,0,1,117.0,1,34,34,0,0,109.3,0,0,1,1,1,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,1 +1,1,1,9147,0,1,120.0,1,34,34,99,99,111.6,0,0,0,1,0,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,2 +1,39,1,9119,0,1,139.0,1,19,19,9,7,110.3,0,0,0,1,0,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,2 +1,43,1,9147,0,1,123.0,1,3,19,9,9,113.2,0,0,1,1,1,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,2 +1,43,1,9991,1,1,120.0,1,38,38,9,7,141.0,0,0,1,1,0,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,1 +1,1,1,9130,0,1,151.0,1,3,1,2,4,151.0,1,0,1,1,1,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,1 +2,39,1,8014,1,1,130.0,1,37,37,9,6,110.0,1,0,1,1,1,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,1 +1,43,1,9853,0,1,130.0,1,2,39,2,5,124.6,0,0,1,1,0,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,1 +1,1,1,171,0,1,138.0,1,1,1,4,3,141.5,0,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,1 +1,43,1,8014,1,1,120.0,1,37,37,9,5,100.0,0,0,1,1,1,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,2 +1,44,1,9991,1,39,150.0,1,37,37,6,6,150.0,0,0,1,1,1,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,2 +2,39,1,9085,0,19,133.1,1,38,38,4,7,128.2,0,0,1,1,1,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,1,9238,0,1,133.0,41,19,19,9,9,119.7,1,0,0,1,1,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,1 +1,17,3,9085,0,1,128.0,1,1,19,4,90,124.2,0,0,1,0,1,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,120.0,1,1,1,9,9,129.1,1,0,1,1,0,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,0 +1,1,4,9773,0,1,125.0,1,19,19,9,7,129.6,1,0,1,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,1 +1,1,1,9130,0,1,137.0,1,40,19,2,9,130.7,1,0,1,1,1,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,0 +1,51,1,9147,0,1,116.0,1,3,3,2,2,115.2,0,0,0,1,0,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,2 +1,17,5,9853,0,1,132.0,1,12,12,4,4,123.3,1,0,1,1,1,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,0 +1,7,1,9991,1,3,130.0,1,37,37,9,9,130.0,0,0,1,1,0,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,0 +1,1,1,9085,0,1,135.0,1,19,38,9,5,136.8,1,0,1,1,1,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,2 +1,17,1,9085,0,1,137.0,1,1,1,4,7,134.6,1,0,1,1,0,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,0 +1,17,4,171,0,1,133.1,1,38,38,9,9,117.0,1,0,1,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,0 +1,39,1,8014,1,1,133.1,1,19,37,7,8,120.0,0,0,0,0,1,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,0 +1,1,4,9500,0,1,140.0,1,1,19,9,7,127.0,1,0,1,1,1,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,1 +1,18,1,9500,0,1,124.0,1,38,37,9,7,119.3,1,0,1,1,1,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,1 +1,44,1,9085,0,39,150.0,1,3,19,2,4,150.0,1,0,1,1,1,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +2,39,1,8014,1,19,133.1,1,3,19,90,90,123.5,0,0,1,1,1,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +2,39,1,9853,0,1,133.1,1,37,37,5,5,116.5,0,0,1,1,1,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,0 +1,18,6,9500,0,1,144.0,1,1,1,3,6,130.8,1,0,1,1,1,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,1 +1,43,1,9670,0,1,151.0,1,19,19,1,1,100.0,0,0,0,1,1,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,2 +1,1,2,9147,0,1,125.0,1,1,19,4,6,115.2,0,1,1,1,1,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,39,1,9003,0,19,133.1,1,37,38,4,9,110.0,0,0,0,0,1,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,0 +1,1,3,9500,0,1,133.1,1,19,19,5,5,108.5,1,0,1,1,1,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,1 +1,1,1,9085,0,1,130.0,1,37,11,90,90,122.6,0,0,1,1,1,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,1 +1,17,1,9085,0,1,113.0,1,19,37,9,9,118.6,1,0,1,1,1,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,140.0,6,2,3,5,2,124.3,1,0,1,1,1,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,2 +1,1,4,9119,0,1,111.0,1,37,37,9,5,107.5,1,0,1,1,0,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,0 +1,1,1,9085,0,1,143.0,1,19,38,9,9,133.4,1,0,1,1,1,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,1 +1,17,1,9773,0,1,141.0,1,2,3,2,2,133.7,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,1 +1,1,1,171,0,1,151.0,41,3,3,2,5,161.9,1,0,1,1,1,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,43,1,33,0,1,143.0,1,37,1,9,10,121.2,1,0,1,1,0,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,2 +1,44,1,9003,0,39,140.0,1,37,37,9,4,140.0,0,0,1,1,1,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,2 +1,17,1,9670,0,1,141.0,1,1,19,8,7,128.8,1,0,1,1,1,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,2 +1,1,1,9238,0,1,115.0,1,19,38,7,7,108.7,0,0,1,1,1,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,1 +1,17,2,9853,0,1,114.0,1,1,1,4,0,108.8,1,0,1,1,1,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,2 +1,1,2,9853,0,1,112.0,1,37,37,191,182,106.1,1,0,0,1,1,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,1 +1,1,2,9085,0,1,157.0,1,3,38,4,6,142.3,0,0,1,1,1,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,1 +2,44,1,8014,1,39,160.0,1,37,19,9,10,155.9,0,0,1,1,1,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,1 +1,1,4,171,0,1,137.0,1,1,38,4,8,141.2,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,1 +1,17,3,9500,0,1,144.0,1,1,37,9,9,126.5,1,0,1,1,1,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,1 +1,17,1,9500,0,1,145.0,1,1,1,4,10,131.4,0,0,1,1,1,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,0 +1,1,1,9238,0,1,115.0,1,1,1,9,4,109.1,1,0,0,0,1,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,0 +1,1,1,9238,0,1,170.0,1,37,37,0,0,150.8,1,0,1,1,1,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,0 +1,5,3,9070,0,1,157.0,1,3,1,9,6,138.1,1,0,1,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,1 +1,43,2,9238,0,1,129.0,1,34,30,0,5,118.9,1,0,1,1,0,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,0 +1,17,5,9853,0,1,141.0,1,3,19,2,7,130.9,1,0,1,1,1,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,1 +4,39,1,9991,1,1,133.1,1,37,37,9,9,130.4,0,0,1,1,1,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,2 +1,1,1,9085,0,1,130.0,1,19,38,9,9,126.9,0,0,0,1,1,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,1 +1,1,1,9238,0,1,136.0,1,19,1,4,3,125.2,1,0,1,1,1,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,1 +1,17,1,9773,0,1,130.0,1,19,37,9,9,140.2,0,0,1,1,0,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,1 +1,17,1,9238,0,1,132.0,1,37,38,9,5,120.8,0,0,1,1,1,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,1 +1,44,1,9003,0,39,150.0,1,19,37,6,6,150.0,0,0,0,1,1,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,1 +2,42,1,9991,1,1,130.0,1,3,2,2,2,130.0,0,0,1,1,0,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,2 +4,39,1,8014,1,1,133.1,1,38,37,5,7,144.5,0,0,1,1,1,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,0 +1,1,2,9773,0,1,150.0,41,1,37,9,7,130.8,0,0,1,1,1,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,1 +2,1,1,8014,1,1,151.0,1,37,37,9,9,152.4,0,0,1,1,1,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,1 +6,39,1,9500,0,1,133.1,1,37,37,9,9,110.0,0,0,1,1,1,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,0 +2,43,1,9670,0,1,100.0,1,34,34,0,0,128.2,0,0,1,1,0,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,1 +1,17,6,9500,0,1,148.0,1,1,19,3,3,131.7,1,0,1,1,1,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,0 +1,1,1,171,0,1,142.0,1,19,19,7,7,142.0,1,0,1,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,1,9670,0,1,127.0,1,1,38,4,7,125.6,0,0,0,1,1,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9773,0,1,146.0,1,38,38,9,7,134.1,1,0,1,1,0,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,0 +1,17,1,9670,0,1,115.0,1,1,1,4,4,109.1,1,0,1,1,1,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,2 +1,1,2,9773,0,1,148.0,1,1,19,9,9,141.7,0,0,1,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,1 +1,1,1,9773,0,1,116.0,1,37,37,0,5,114.3,1,0,1,1,1,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,0 +1,1,1,9670,0,1,139.0,1,38,19,5,7,130.6,1,0,1,1,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,1 +1,1,6,9147,0,1,128.0,1,37,37,9,9,116.5,0,0,1,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,2 +1,39,1,9130,0,3,150.0,1,3,1,90,90,150.0,1,0,1,1,1,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,0 +1,1,2,9670,0,1,122.0,1,1,19,4,4,116.1,0,0,1,1,0,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,2 +1,39,1,9119,0,1,100.0,1,37,37,9,8,160.0,0,0,0,0,0,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,0 +1,1,3,9254,0,1,128.0,1,19,1,7,9,121.7,1,0,1,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,1 +1,1,3,9500,0,1,143.0,1,37,38,7,7,133.8,1,0,1,1,1,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,2 +1,1,1,9238,0,1,107.0,1,38,38,7,7,103.5,1,0,1,1,1,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,1 +1,39,2,9147,0,1,143.0,1,19,5,4,1,100.0,1,0,1,1,0,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,0 +2,39,1,9500,0,3,130.0,1,1,1,4,6,140.0,0,0,0,0,1,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,0 +1,44,1,9085,0,39,160.0,1,1,1,5,4,160.0,1,1,1,0,0,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,0 +2,39,1,9500,0,19,133.1,1,38,38,2,10,120.0,0,0,1,1,1,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,0 +1,5,2,9853,0,1,122.0,1,19,19,4,5,112.6,1,0,1,1,1,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,2 +1,17,3,9500,0,1,137.0,1,19,37,7,7,126.7,1,0,1,1,1,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,1 +1,7,1,9070,0,40,120.0,1,1,19,3,9,120.0,1,0,1,1,1,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,1 +1,43,1,9500,0,1,157.0,1,38,3,5,2,141.4,0,0,1,1,1,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,1 +2,1,2,8014,1,1,110.0,1,37,1,9,10,108.7,1,0,1,1,1,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,1 +1,17,3,9500,0,1,129.0,1,19,37,7,6,120.0,1,0,1,1,1,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,1 +1,17,1,9070,0,1,108.0,1,19,1,4,3,111.9,0,0,1,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,0 +2,39,1,9070,0,12,110.0,1,37,38,5,10,130.0,0,0,0,0,0,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9085,0,1,122.0,1,1,1,193,101,126.2,0,0,1,1,1,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,1 +1,17,1,171,0,1,145.0,1,4,4,3,3,143.6,0,0,0,1,0,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,2 +1,7,1,9119,0,3,130.0,1,34,34,90,90,130.0,0,0,1,1,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,0 +1,44,1,8014,1,39,120.0,1,19,37,7,6,121.8,1,0,1,1,1,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9147,0,1,142.0,1,37,38,9,9,137.5,1,0,1,1,0,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,1 +1,1,1,9130,0,1,138.0,1,3,19,2,4,131.0,1,0,1,1,0,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,0 +1,17,2,9853,0,1,125.0,1,1,19,5,5,119.4,1,0,1,1,1,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,1 +1,17,5,9500,0,1,137.0,1,1,1,5,4,131.1,1,0,1,1,1,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,2 +1,1,1,9670,0,1,133.0,1,38,38,9,9,128.1,1,0,1,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,0 +4,39,1,9991,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,1,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,2 +1,17,1,9130,0,1,138.0,1,2,19,2,6,126.3,1,0,1,1,1,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,2 +1,17,4,9500,0,1,135.0,1,1,1,4,4,127.0,1,0,1,1,1,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,1 +1,1,1,9130,0,1,140.0,1,4,3,3,3,127.8,0,0,1,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,1 +1,5,1,9147,0,1,126.0,1,19,38,5,6,117.3,1,0,1,1,1,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,2 +1,39,1,9670,0,1,133.1,1,1,19,4,9,140.0,0,0,1,1,0,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,1 +1,1,3,9500,0,1,126.0,1,38,38,9,8,118.8,1,0,1,1,1,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,1 +2,42,1,9147,0,1,133.1,1,37,37,9,9,115.8,0,0,1,0,0,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,0 +1,17,1,9853,0,1,126.0,1,1,37,7,9,132.7,0,0,1,1,1,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,1 +1,17,1,9238,0,1,133.0,1,19,19,5,7,123.6,0,0,1,1,1,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,1 +2,39,1,9238,0,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,1 +1,17,4,9556,0,1,135.0,1,38,37,3,7,129.0,1,0,1,1,1,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,0 +1,1,3,9070,0,1,110.0,1,37,37,9,9,107.6,1,0,1,1,0,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,2 +1,17,4,9147,0,1,135.0,1,19,1,0,4,128.7,1,0,1,1,0,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,0 +2,1,1,8014,1,1,150.0,1,1,37,4,7,139.9,1,0,1,1,1,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,1 +1,17,2,9147,0,1,116.0,1,1,38,4,3,114.6,1,0,1,1,1,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,0 +1,17,1,9085,0,1,121.0,1,19,37,1,3,131.5,0,0,1,1,1,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,0 +1,39,1,9500,0,1,100.0,1,19,1,1,90,114.0,1,0,0,0,1,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,0 +1,17,4,9500,0,1,146.0,1,19,37,5,8,135.8,1,0,1,1,1,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,1 +1,44,1,9119,0,39,140.0,1,1,19,4,5,140.0,1,0,1,1,0,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,2 +1,51,1,9670,0,1,136.0,1,19,19,5,5,122.0,0,0,0,0,1,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,0 +2,39,1,9003,0,1,133.1,1,19,19,4,4,107.5,0,0,1,0,1,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,0 +1,1,2,9070,0,1,164.0,1,38,38,9,7,165.8,1,0,1,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,1 +1,1,2,9773,0,1,154.0,1,38,38,9,9,133.4,1,0,1,1,1,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,1 +1,1,4,9500,0,1,127.0,1,19,37,7,7,121.5,1,0,1,1,0,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,2 +1,43,6,9238,0,1,129.0,1,34,34,0,0,125.2,0,0,1,1,1,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,1 +1,1,4,9238,0,1,125.0,1,19,1,4,5,122.6,1,1,1,1,1,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,2 +1,17,1,9070,0,1,136.0,1,38,19,7,7,121.7,1,0,1,1,1,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,0 +1,1,2,9500,0,1,131.0,1,38,1,7,4,128.3,1,0,1,1,1,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,1 +1,1,4,171,0,1,132.0,1,1,19,4,5,138.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,0 +1,17,1,9254,0,1,115.0,1,12,1,9,3,108.7,1,0,1,1,1,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,1 +1,17,1,9147,0,1,131.0,1,1,37,3,7,120.2,0,0,1,1,1,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,1 +1,1,1,9238,0,1,134.0,1,1,1,4,9,124.2,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,1 +1,1,1,9853,0,1,142.0,1,19,1,9,1,132.6,0,0,1,1,1,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,2 +1,39,1,9500,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,0 +1,44,1,9130,0,39,150.0,1,2,1,3,6,150.0,1,0,1,1,0,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,1 +1,39,1,9254,0,1,130.0,1,19,38,9,7,113.5,0,0,1,1,1,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,1 +1,1,1,9500,0,1,135.0,1,2,1,2,8,126.6,0,0,1,1,1,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,1 +1,39,1,9254,0,12,133.1,1,37,37,5,7,119.3,1,0,1,1,0,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,2 +1,1,1,9130,0,1,110.0,1,3,19,2,9,105.5,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,0 +1,1,1,9130,0,1,134.0,41,1,19,5,5,125.6,1,0,1,1,1,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,151.0,2,1,1,5,9,146.5,0,0,1,1,1,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,1 +1,1,1,9773,0,1,133.0,1,1,3,3,3,135.8,1,0,1,1,1,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,1 +1,7,1,9070,0,3,140.0,1,37,2,9,3,140.0,0,0,1,0,1,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,0 +1,1,1,9085,0,1,147.0,1,37,19,9,5,133.7,1,0,1,1,1,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,2 +1,51,1,9500,0,1,127.0,1,19,1,5,9,150.0,0,0,1,1,1,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,1 +1,43,1,9238,0,1,143.0,1,1,37,5,9,126.6,0,0,0,0,1,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,2 +1,44,1,9003,0,39,160.0,1,37,38,9,9,160.0,0,0,0,1,1,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,1 +4,39,1,8014,1,19,133.1,1,34,34,0,0,100.0,0,0,1,1,1,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,0 +4,43,1,9853,0,1,133.1,100,19,22,90,90,100.0,0,0,1,1,1,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,0 +2,43,1,9991,1,2,120.0,1,37,37,9,8,120.0,0,0,1,1,1,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,2 +1,39,1,9130,0,40,129.0,1,3,3,2,2,155.3,1,0,1,1,1,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,0 +1,44,1,9003,0,39,150.0,1,38,37,9,9,150.0,1,0,1,1,0,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,1 +1,44,1,9130,0,39,160.0,1,1,37,3,3,160.0,1,0,0,0,1,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,0 +2,39,1,9003,0,1,133.1,1,1,19,4,4,120.0,0,0,0,0,0,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,0 +1,1,1,9853,0,1,115.0,1,19,38,9,9,108.0,0,0,1,1,1,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,1 +1,1,2,9238,0,1,134.0,1,1,19,4,5,126.0,0,0,1,1,1,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,1 +1,1,3,9773,0,1,135.0,1,38,38,5,8,133.3,1,0,1,1,1,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,1 +1,5,1,9670,0,1,135.0,1,1,12,4,4,140.3,1,0,1,1,1,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,2 +1,39,1,9500,0,3,122.0,1,19,1,4,8,135.8,0,0,1,1,1,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,1 +1,1,1,9147,0,1,121.0,1,19,19,3,9,112.6,1,0,1,1,1,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,1 +1,17,4,9773,0,1,147.0,1,1,1,4,5,139.7,1,0,1,1,0,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,0 +1,10,1,9085,0,1,140.0,1,19,19,4,5,140.0,1,0,1,1,1,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,1 +1,39,1,9003,0,1,130.0,1,12,12,9,9,126.1,0,0,1,1,0,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,0 +1,43,2,9147,0,1,130.0,1,34,37,9,9,118.5,1,0,1,1,0,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,1 +1,17,4,9500,0,1,138.0,1,4,1,2,1,133.0,1,0,1,1,1,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,2 +1,1,1,9147,0,1,138.0,1,37,37,194,171,131.0,1,0,1,1,1,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,2 +1,1,1,9500,0,1,147.0,1,38,19,5,8,147.3,0,0,1,1,1,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,1 +1,1,6,9500,0,1,149.0,1,1,1,4,9,133.0,1,0,1,1,1,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,1 +1,16,6,9773,0,1,136.0,1,38,14,0,0,129.7,1,0,1,1,1,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,1 +1,1,2,9773,0,1,130.0,1,1,34,9,9,124.8,1,0,1,1,1,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,1 +1,1,1,9254,0,1,111.0,1,1,1,3,3,112.4,1,0,1,1,0,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,1 +1,1,2,9670,0,1,121.0,1,1,19,4,7,135.4,1,0,1,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,1 +1,1,1,9556,0,1,135.0,1,37,38,7,9,125.8,0,0,1,1,1,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,1 +1,1,1,171,0,1,136.0,1,37,19,5,8,129.0,1,0,1,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,1 +1,17,4,9670,0,1,110.0,1,1,37,7,7,111.1,1,0,1,0,1,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,1 +1,1,3,9500,0,1,128.0,1,38,38,5,5,118.6,1,0,1,1,1,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,1 +2,39,1,9500,0,19,133.1,1,37,38,9,10,120.9,1,0,1,1,1,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,0 +1,5,3,9085,0,1,143.0,1,37,37,0,90,159.1,0,0,0,1,1,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,0 +4,39,1,9238,0,1,120.0,1,37,37,9,9,125.5,1,0,1,1,1,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,1 +1,1,1,9853,0,1,126.0,1,3,1,2,5,116.9,1,1,1,1,1,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,2 +1,16,1,9556,0,1,137.0,1,37,37,9,7,122.7,1,0,1,1,1,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,1 +1,1,4,9500,0,1,136.0,1,1,1,9,9,123.8,1,0,1,1,1,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,1 +4,39,1,9130,0,1,133.1,1,3,1,5,5,110.0,1,0,1,1,1,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,0 +1,17,4,9085,0,1,138.0,1,19,36,90,7,134.9,1,0,1,1,1,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,1 +1,17,3,9070,0,1,130.0,1,1,4,4,2,131.4,0,0,1,1,0,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,1 +2,42,1,9853,0,1,133.1,1,37,37,4,7,100.0,0,0,1,1,1,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,0 +1,1,1,171,0,1,115.0,1,1,1,9,9,134.3,1,0,1,1,0,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,1 +1,1,1,9238,0,1,108.0,1,1,38,5,8,105.9,0,0,1,1,1,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,2 +1,39,1,9991,1,1,120.0,1,19,37,5,5,128.2,0,0,1,0,0,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,0 +5,7,1,9130,0,3,160.0,1,19,38,9,6,160.0,0,0,1,0,1,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,0 +1,1,1,9130,0,1,121.0,1,3,19,2,9,115.4,1,0,1,1,0,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/train_20260426_220916.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/train_20260426_220916.log new file mode 100644 index 0000000000000000000000000000000000000000..dab018163980c665d06c71dcf73b8becdeec6522 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tabsyn/tabsyn-m5-20260426_220916/train_20260426_220916.log @@ -0,0 +1,13000 @@ +[TabSyn] Step 1/2: Training VAE in /workspace/tabsyn, dataname=tabsyn_m5 +/opt/conda/lib/python3.11/site-packages/torch/cuda/__init__.py:63: FutureWarning: The pynvml package is deprecated. Please install nvidia-ml-py instead. If you did not install pynvml directly, please report this to the maintainers of the package that installed pynvml for you. + import pynvml # type: ignore[import] +No NaNs in numerical features, skipping +self.category_embeddings.weight.shape=torch.Size([19, 4]) +[TabSyn][VAE] Resume from /workspace/tabsyn/tabsyn/vae/ckpt/tabsyn_m5/model.pt +self.category_embeddings.weight.shape=torch.Size([19, 4]) + + 0%| | 0/4 [00:00 50000 else total +parts = [] +left = total +while left > 0: + take = min(chunk, left) + parts.append(model.sample(take)) + left -= take +samples = pd.concat(parts, ignore_index=True) if len(parts) > 1 else parts[0] +samples.to_csv("/work/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/tvae-m5-3539-20260419_192224.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/tvae-m5-3539-20260419_192224.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/_tvae_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c247bd237098fddcb93cdc1171b8ca0b4b54a9bd --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/_tvae_train.py @@ -0,0 +1,16 @@ +import json, sys +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +csv_path = "/work/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/train.csv" +meta_path = "/work/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/tvae_metadata.json" +save_path = "/work/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/models_300epochs/tvae_300epochs.pt" +epochs = 300 + +data, discrete_columns = read_csv(csv_path, meta_path, header=True, discrete=None) +print(f"[TVAE] Training on {len(data)} rows, {len(data.columns)} cols, epochs={epochs}") +model = TVAE(epochs=epochs, batch_size=500) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/gen_20260419_192224.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/gen_20260419_192224.log new file mode 100644 index 0000000000000000000000000000000000000000..97c1320f7d37ecbba64eae4ed0d8c32f62b1dd27 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/gen_20260419_192224.log @@ -0,0 +1 @@ +[TVAE] Generated 3539 rows (chunks=1) -> /work/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/tvae-m5-3539-20260419_192224.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..ce74300f3898bb985cd61774228cfc0e97cc7e52 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m5", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "exists": true, + "size": 422717, + "sha256": "012f009ed84b309df0bf0da0669101c48652c390666cb59f9a07341a16b7056f" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "exists": true, + "size": 53889, + "sha256": "b9b623a7cea9350fc17384754b26aba373ab6c1914b7c0efb7a8a21ad5ac1557" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv", + "exists": true, + "size": 53943, + "sha256": "696cfc46d2e611ee56a5419f4496b758f643f49f3386d4181296783760117c8c" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_profile.json", + "exists": true, + "size": 14974, + "sha256": "6ca9a300883081c4197534dd44e5e37df852ef129b5c06666629d8dd8270af0d" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m5/m5-dataset_contract_v1.json", + "exists": true, + "size": 17696, + "sha256": "d5ce8aae5a21071b4e1af75dcdf7fa3118c7b487163ad0c8244ecc33d08d7c89" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/models_300epochs/train_20260419_191714.log b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/models_300epochs/train_20260419_191714.log new file mode 100644 index 0000000000000000000000000000000000000000..fef7391974501780c62aaed2ab3e5d62ebcad8f1 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/models_300epochs/train_20260419_191714.log @@ -0,0 +1,2 @@ +[TVAE] Training on 3539 rows, 37 cols, epochs=300 +[TVAE] Model saved -> /work/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/models_300epochs/tvae_300epochs.pt diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..76dce49947cb777ec46920f782a866e4be7080a8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,758 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "columns": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..23a3ab2cd1dc997ae6ecf7f86628ae5f2599fde9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m5", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "Target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m5/m5-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a0588c837775f4d62f9a423c66b3c5a0ba336339 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/staged_input_manifest.json @@ -0,0 +1,763 @@ +{ + "dataset_id": "m5", + "target_column": "Target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ed2ac2ed0e0cf04e2e7dbfd21c2309ada625f6df --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m5", + "model": "tvae", + "run_id": "tvae-m5-20260419_191713", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/tvae-m5-3539-20260419_192224.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/models_300epochs/tvae_300epochs.pt" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9c237b55f0a52bbb648a50676b635910fd783b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/staged_features.json @@ -0,0 +1,187 @@ +[ + { + "feature_name": "Marital status", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application mode", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Application order", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Course", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Daytime/evening attendance", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Previous qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Previous qualification (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Nacionality", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's qualification", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Mother's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Father's occupation", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Admission grade", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Displaced", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Educational special needs", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Debtor", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Tuition fees up to date", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Gender", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Scholarship holder", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Age at enrollment", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "International", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 1st sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (credited)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (enrolled)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (approved)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (grade)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Curricular units 2nd sem (without evaluations)", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Unemployment rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Inflation rate", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "GDP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Target", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a22a371258ab8267b23b3b79730d7e0f64866e52 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/test.csv @@ -0,0 +1,444 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,1,1,8014,0,1,126.0,1,38,37,5,5,118.7,0,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,19,37,9,7,111.4,0,0,0,1,1,0,27,0,0,5,7,1,11.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,140.0,1,1,1,4,3,140.0,1,0,0,1,0,0,20,0,0,6,10,5,11.666666666666666,0,0,6,7,5,12.6,0,12.4,0.5,1.79,Graduate +1,1,2,9085,1,1,141.0,1,1,38,9,8,128.9,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,10,6,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,128.0,1,19,19,7,8,120.0,1,0,0,1,0,1,20,0,0,6,6,6,14.5,0,0,6,7,5,15.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,123.0,1,4,37,2,9,113.9,0,0,0,1,0,0,18,0,0,6,8,6,12.5,0,0,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,1,140.0,41,1,1,9,9,100.0,0,0,1,0,0,0,29,1,3,9,9,3,14.333333333333334,0,1,7,8,1,14.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,133.1,1,1,3,9,9,116.0,0,0,0,1,1,0,20,0,0,6,8,6,11.5,0,0,6,8,6,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,143.0,1,3,3,2,10,141.3,0,0,1,0,0,0,23,0,0,6,10,6,14.0,0,0,6,11,4,13.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,106.0,1,37,38,191,163,102.2,1,0,1,1,1,0,20,0,0,7,7,7,12.401428571428571,0,0,8,10,6,11.808333333333332,0,11.1,0.6,2.02,Enrolled +1,16,2,9085,1,1,136.0,1,37,37,9,9,123.4,1,0,0,1,0,1,19,0,0,5,8,5,13.166666666666666,2,0,5,5,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,125.0,1,38,38,9,9,125.4,0,0,1,0,0,0,19,0,0,7,11,4,12.0,0,0,7,9,6,11.833333333333334,0,16.2,0.3,-0.92,Dropout +4,39,1,9773,1,12,120.0,1,37,37,4,9,130.0,0,0,0,0,1,0,55,0,0,6,8,5,11.4,0,0,6,9,5,12.4,0,10.8,1.4,1.74,Dropout +1,44,1,9853,1,39,150.0,1,3,37,2,7,150.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,145.0,1,1,19,9,9,129.3,0,0,1,1,0,1,19,0,0,6,11,3,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Graduate +1,44,1,9119,1,39,180.0,1,1,1,9,8,180.0,0,0,0,1,1,1,20,0,3,7,12,6,14.142857142857142,0,1,6,10,6,14.125,0,12.4,0.5,1.79,Enrolled +1,1,4,9085,1,1,135.0,1,38,37,9,9,132.6,1,0,0,1,0,1,19,0,0,5,5,5,13.6,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,130.0,1,3,1,3,6,130.0,1,0,1,1,1,0,20,0,2,6,9,4,11.0,0,1,6,13,3,10.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,182.0,1,19,1,5,7,156.8,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.25,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,142.0,1,19,38,7,10,128.4,1,0,0,1,0,1,18,0,0,7,9,7,13.3,0,0,8,8,8,14.345,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,19,133.1,1,37,37,9,4,103.5,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,1,1,3,3,119.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,44,1,9991,0,39,140.0,1,37,19,9,8,140.0,0,0,0,1,0,1,26,0,2,6,7,6,12.666666666666666,0,2,6,7,6,13.166666666666666,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,133.0,1,38,38,9,9,128.8,1,0,0,1,0,1,18,0,0,7,11,6,11.994444444444444,0,0,8,11,7,12.43142857142857,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,3,3,132,132,110.6,0,0,0,1,0,0,20,0,0,7,9,6,11.833333333333334,0,0,7,7,6,14.333333333333334,0,11.1,0.6,2.02,Enrolled +1,42,1,9773,1,1,133.1,1,19,6,4,3,120.0,0,0,0,1,1,0,27,0,0,4,8,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9147,1,1,160.0,1,37,37,9,7,110.0,0,0,0,1,1,0,30,0,0,5,8,2,11.0,0,0,5,6,4,11.5,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,100.0,1,19,37,5,5,120.7,0,0,0,1,0,0,28,0,0,5,9,4,11.25,0,0,5,7,4,13.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,136.0,1,19,19,9,9,140.0,1,0,0,1,0,0,20,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,135.0,1,3,3,2,2,132.9,1,0,0,0,0,0,29,0,0,6,9,6,16.333333333333332,0,0,6,8,5,15.6,0,12.7,3.7,-1.7,Dropout +1,53,1,9003,1,42,130.0,1,1,38,9,6,128.5,0,0,0,1,1,0,21,0,7,12,20,10,12.7,0,5,12,14,11,12.181818181818182,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,140.0,1,37,37,9,9,140.0,0,0,0,1,1,0,27,0,0,5,6,4,13.5,0,0,5,6,4,13.75,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,124.0,1,19,37,5,7,119.1,0,0,0,1,1,1,20,0,0,5,7,4,11.0,0,0,5,7,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9556,1,1,140.0,1,37,38,9,9,106.0,1,0,1,0,0,1,24,0,0,7,14,5,12.36,0,1,8,15,5,12.0,0,8.9,1.4,3.51,Dropout +1,42,4,9500,1,6,133.0,1,1,19,2,9,127.8,1,0,0,1,0,1,18,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,130.0,1,19,19,90,90,122.0,0,0,0,1,0,0,20,0,0,5,6,5,12.6,0,0,5,8,4,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,125.0,1,37,19,9,9,122.4,1,0,0,1,1,0,19,0,0,7,7,7,13.725714285714286,0,0,8,8,8,14.5,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,3,110.0,1,3,19,4,6,150.0,0,0,0,1,1,0,32,0,0,6,8,6,18.875,0,6,12,14,12,17.692307692307693,0,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,123.0,1,19,19,1,1,114.6,0,0,0,1,0,0,18,0,0,5,5,4,11.0,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,131.0,1,38,38,9,9,126.5,0,0,0,1,0,1,18,0,0,5,5,5,10.6,0,0,5,5,5,11.8,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,133.1,1,38,19,132,103,146.0,0,0,1,1,0,0,20,0,0,6,6,5,11.0,0,0,6,6,6,13.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,3,3,2,2,124.9,1,0,0,1,0,0,19,0,0,6,10,6,12.0,0,0,6,12,4,11.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,136.0,1,3,4,2,2,133.9,0,0,0,0,1,0,26,0,8,12,12,8,11.25,0,3,8,8,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,2,1,4,6,140.0,0,0,0,1,1,0,21,0,0,6,12,5,12.142857142857142,0,0,6,11,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,111.0,1,19,19,9,9,114.2,1,0,0,1,0,0,18,0,0,6,9,4,13.2,0,0,6,10,5,12.8,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,130.0,1,19,38,7,7,120.2,1,0,0,1,0,0,20,0,0,5,9,4,12.0,0,0,5,10,5,13.428571428571429,1,10.8,1.4,1.74,Graduate +1,7,1,9670,1,3,110.0,1,27,37,3,3,110.0,1,0,0,1,1,0,27,0,7,12,12,9,12.333333333333334,0,6,11,11,6,13.166666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,142.0,1,38,19,7,10,128.4,0,0,0,1,0,0,23,0,0,6,11,6,11.875,0,0,6,9,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9773,1,1,158.0,1,1,38,4,7,157.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.571428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,127.0,1,1,33,3,3,129.8,0,0,0,0,1,0,20,0,0,6,10,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9773,1,1,140.0,1,34,37,0,0,102.5,0,0,0,1,0,0,26,0,0,6,8,4,11.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,130.0,1,1,38,5,7,122.0,1,0,0,1,1,0,20,0,0,5,8,2,10.5,0,0,5,11,4,12.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,145.0,1,19,1,6,5,127.9,1,0,0,1,0,0,19,0,0,6,7,6,13.714285714285714,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,132.0,1,38,38,9,8,122.6,1,0,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,37,37,9,7,129.9,1,0,0,1,0,0,20,0,0,6,7,5,13.2,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,121.0,1,1,1,4,4,114.9,0,0,0,1,1,1,21,0,0,7,9,6,13.342857142857143,0,0,8,10,7,11.65,0,12.4,0.5,1.79,Graduate +1,7,1,8014,0,3,140.0,1,1,1,4,4,140.0,0,0,0,1,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,137.0,1,1,19,4,4,125.3,0,0,0,1,1,0,19,0,0,7,7,7,12.2,0,0,7,7,7,12.2,0,7.6,2.6,0.32,Enrolled +1,18,1,9670,1,1,133.0,1,1,1,9,9,121.5,1,0,0,1,0,1,19,0,0,6,7,6,13.0,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,42,1,9500,1,1,100.0,1,3,37,2,6,130.0,1,0,0,1,0,0,25,0,0,14,14,12,13.291666666666666,1,0,14,14,12,13.291666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,19,38,9,8,140.9,0,1,0,1,0,0,24,0,0,5,7,3,10.666666666666666,0,0,5,7,3,10.5,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,133.1,1,37,37,9,9,120.0,0,0,0,0,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,8014,0,1,128.0,1,38,38,0,0,122.1,0,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,10,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9119,1,1,130.0,1,1,3,4,2,123.0,0,0,0,1,1,0,18,0,0,5,10,1,10.0,0,0,5,7,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,121.0,1,19,38,7,9,123.8,0,0,0,1,0,1,19,0,0,5,5,5,12.4,0,0,5,8,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,9070,1,1,122.0,1,1,1,4,8,123.8,1,0,1,0,0,1,18,0,0,6,6,6,11.833333333333334,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,12,133.1,1,37,37,9,9,133.8,1,0,0,1,1,0,52,0,0,5,5,5,13.6,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,3,3,2,2,149.0,0,0,0,0,1,0,36,0,0,6,15,2,11.5,0,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,1,38,1,9,140.0,0,0,0,1,1,0,25,0,0,6,16,3,11.25,0,0,6,14,4,11.2,0,15.5,2.8,-4.06,Dropout +1,1,5,9773,1,1,135.0,1,37,1,5,5,124.9,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,9119,1,1,132.0,1,37,37,9,6,119.4,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,9670,1,3,110.0,1,37,37,7,7,110.0,0,0,0,1,0,0,32,0,4,11,15,8,13.6,0,2,8,10,8,15.11111111111111,0,13.9,-0.3,0.79,Graduate +1,17,5,9119,1,1,118.0,1,1,19,9,9,120.5,1,0,0,1,1,0,20,0,0,5,10,3,13.333333333333334,0,0,5,11,5,13.571428571428571,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,19,133.1,1,37,19,9,4,140.0,0,0,1,1,0,0,29,0,0,6,11,5,12.6,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,126.0,1,1,1,4,7,115.2,0,0,0,0,0,0,19,0,0,6,7,3,12.666666666666666,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9254,1,1,158.0,1,19,39,4,8,153.5,1,0,0,1,0,0,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,16.0,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,129.0,1,37,38,7,7,122.0,1,0,0,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,5,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,12,133.1,1,37,1,9,4,138.4,0,0,0,1,1,0,30,0,0,5,7,3,11.666666666666666,0,0,5,8,1,11.0,0,7.6,2.6,0.32,Dropout +1,7,1,9238,1,3,130.0,1,1,1,4,10,125.1,0,0,1,0,0,0,27,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,1,110.0,1,40,1,5,6,142.5,0,0,1,0,1,0,37,0,5,7,7,5,12.0,0,3,7,7,3,11.666666666666666,0,8.9,1.4,3.51,Dropout +1,16,1,9070,1,1,125.0,1,1,1,4,4,120.8,1,0,0,1,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,128.0,1,19,1,5,4,135.7,1,0,0,1,0,0,20,0,0,5,7,4,12.75,0,0,5,5,5,13.4,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,142.0,1,19,19,9,9,139.9,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,123.0,1,3,12,2,9,116.4,1,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,125.0,1,19,1,9,10,123.6,1,0,0,1,0,0,20,0,0,6,10,4,11.0,0,0,6,9,6,11.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,12,133.1,1,12,12,9,9,120.0,0,0,0,1,1,0,28,0,7,13,13,7,10.285714285714286,0,5,11,13,5,10.6,0,10.8,1.4,1.74,Dropout +1,17,5,9500,1,1,144.0,1,19,38,9,5,130.7,1,0,0,1,0,1,18,0,0,7,8,7,14.85,0,0,8,9,8,15.61111111111111,0,13.9,-0.3,0.79,Graduate +1,17,6,9500,1,1,136.0,1,19,38,9,3,132.5,1,0,0,1,0,0,19,0,0,8,9,7,12.3,0,0,8,9,7,12.3,0,12.7,3.7,-1.7,Graduate +2,43,1,9991,0,1,140.0,1,38,37,5,6,117.3,0,0,0,1,0,0,28,0,6,10,15,6,10.666666666666666,0,5,10,17,9,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,43,1,9500,1,1,140.0,1,37,37,9,10,105.7,1,0,0,1,0,0,27,0,0,8,8,8,13.81375,0,0,8,8,8,13.81375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,19,133.1,1,1,5,4,3,100.0,0,0,0,1,0,0,24,0,0,8,11,7,12.614285714285714,0,0,8,11,7,12.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,3,9238,1,1,143.0,1,37,38,0,7,126.9,1,0,0,1,0,0,18,0,0,6,14,5,11.0,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,138.0,1,37,1,9,9,123.7,1,0,1,1,0,1,19,0,0,5,5,4,11.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,34,34,0,0,112.5,0,0,0,1,0,0,33,0,0,6,10,5,11.4,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,141.0,1,3,2,2,3,130.2,1,0,0,1,0,0,20,0,0,6,14,6,15.75,0,0,6,8,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,139.0,1,1,19,3,9,134.9,1,0,0,1,1,0,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,12.166666666666666,1,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,3,102.0,1,0,0,1,0,1,20,0,0,6,7,6,13.666666666666666,0,0,6,7,6,14.571428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,153.0,1,38,37,7,8,147.9,0,0,0,1,0,1,18,0,0,7,7,7,14.652857142857142,0,0,8,9,8,14.755555555555556,0,12.4,0.5,1.79,Graduate +1,17,3,9085,1,1,121.0,1,38,1,9,9,111.9,1,0,0,1,1,0,21,0,0,5,11,0,0.0,0,0,5,10,5,12.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,149.0,1,37,37,9,6,130.5,1,0,0,1,0,0,28,0,8,11,11,9,11.666666666666666,0,8,11,13,9,12.555555555555555,0,10.8,1.4,1.74,Graduate +1,17,5,9773,1,1,139.0,1,38,1,4,4,123.6,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9119,1,1,120.0,1,3,1,123,152,116.9,0,0,0,1,1,0,18,0,0,5,9,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9238,1,1,130.0,1,1,19,4,5,124.8,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,13.4,0,8.9,1.4,3.51,Graduate +1,53,1,9085,1,42,150.0,1,1,19,4,8,145.2,1,0,0,1,0,0,20,0,7,11,13,11,14.615384615384617,0,4,9,11,9,13.7,0,8.9,1.4,3.51,Graduate +4,39,1,9130,1,1,140.0,1,37,37,6,7,150.0,1,0,0,1,1,0,34,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,4,171,1,1,133.1,1,1,1,9,10,110.0,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,124.0,1,19,1,9,9,121.2,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9119,1,39,130.0,1,38,19,9,5,130.0,1,0,0,1,1,0,19,0,0,5,9,2,12.5,0,0,5,10,3,11.6,0,12.4,0.5,1.79,Enrolled +4,7,1,9500,1,3,140.0,1,37,38,9,7,140.0,0,0,0,1,1,0,51,0,4,7,7,7,15.2,0,6,8,8,8,16.575,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,37,5,9,118.4,0,0,0,1,1,1,19,0,0,6,8,6,11.833333333333334,0,0,6,11,3,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,33,1,1,130.0,1,19,19,9,9,117.7,0,0,0,1,0,0,34,0,10,12,12,10,12.0,0,5,10,11,5,11.0,0,11.1,0.6,2.02,Dropout +4,7,1,9500,1,40,130.0,1,19,19,4,6,130.0,0,0,0,0,0,0,42,0,2,7,10,5,12.62,0,3,7,11,3,14.166666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,144.0,13,3,3,6,6,137.6,1,0,0,1,0,1,19,1,0,5,6,5,15.4,0,0,5,5,5,16.0,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,132.0,1,38,37,9,9,122.9,0,0,0,0,1,0,20,0,0,6,6,6,11.5,0,0,6,9,2,13.0,0,10.8,1.4,1.74,Dropout +1,1,2,9773,1,1,124.0,1,3,3,3,4,114.6,1,0,0,1,0,0,21,0,0,6,8,5,12.8,0,0,6,7,5,11.2,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,100.0,1,38,38,9,10,100.0,0,0,0,1,0,0,20,0,0,6,8,6,12.5,0,0,6,10,5,14.166666666666666,0,11.1,0.6,2.02,Graduate +1,18,2,9853,1,1,120.0,1,19,37,9,4,113.7,1,0,1,0,0,0,19,0,0,7,11,5,12.2,0,0,7,13,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9500,1,1,136.0,1,3,3,2,2,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.6125,0,0,8,8,8,14.575,0,13.9,-0.3,0.79,Graduate +1,39,1,9130,1,1,133.1,1,3,34,3,0,120.0,0,0,1,0,1,0,29,0,0,5,11,0,0.0,4,0,5,6,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,140.0,1,1,19,3,3,140.0,1,0,0,1,0,0,21,0,2,6,7,6,13.0,0,1,6,15,4,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9085,1,1,128.0,1,38,37,9,9,116.5,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,5,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,132.0,1,6,6,0,4,119.1,1,0,1,1,0,0,29,0,0,5,10,1,13.0,4,0,5,14,0,0.0,8,10.8,1.4,1.74,Dropout +1,43,1,9500,1,6,134.0,1,1,37,9,9,120.4,1,0,0,1,0,0,19,0,0,7,7,6,13.333333333333334,0,0,7,7,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,34,34,0,0,100.0,0,0,0,1,0,0,46,0,0,6,9,6,13.333333333333334,0,0,6,6,6,11.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,2,9085,1,1,122.0,1,3,1,4,7,116.1,1,0,0,1,0,0,18,0,0,6,13,6,13.153846153846152,0,0,6,12,3,11.0,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,120.0,1,37,37,9,9,117.0,1,0,0,1,0,0,33,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,5,9254,1,1,126.0,1,19,19,4,7,116.6,1,0,0,1,0,0,19,0,0,6,9,5,11.6,0,0,6,12,5,12.2,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,4,160.0,1,3,3,2,1,125.0,0,0,0,1,1,0,26,0,0,5,7,5,12.6,0,0,5,7,5,13.714285714285714,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,130.0,1,37,37,0,0,117.8,1,0,0,1,0,0,21,0,0,5,8,3,13.0,0,0,5,7,4,11.5,1,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,169.0,1,19,37,9,7,176.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9500,1,1,137.0,1,3,38,2,4,121.0,0,0,0,1,0,1,19,0,0,8,8,7,14.725714285714288,0,0,8,8,7,14.725714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,132.0,1,19,1,9,5,123.4,0,0,0,1,0,1,18,0,0,7,7,7,14.604285714285712,0,0,8,9,8,15.68333333333333,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,3,105.0,1,37,37,7,8,129.7,1,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,10.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9254,1,1,119.0,1,19,19,9,9,118.7,1,0,0,1,1,0,20,0,0,6,16,3,10.333333333333334,0,0,6,16,1,11.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,120.0,1,37,37,9,6,117.0,0,0,0,1,1,0,33,0,0,6,8,6,12.0,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,6,130.0,0,0,0,1,1,1,21,0,0,6,15,6,11.714285714285714,0,0,6,8,4,11.75,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,143.0,1,19,37,9,9,126.2,1,0,0,1,0,1,21,0,0,6,7,6,13.333333333333334,0,0,6,7,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,39,150.0,1,19,19,9,9,150.3,0,0,0,1,1,0,24,0,0,5,7,3,11.333333333333334,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9130,1,1,143.0,1,3,3,2,2,131.8,1,0,1,0,0,0,18,0,0,6,9,5,12.4,0,0,6,12,5,14.166666666666666,0,8.9,1.4,3.51,Enrolled +1,44,1,9238,1,39,140.0,1,19,19,8,8,144.3,1,0,0,1,0,1,19,0,3,6,7,6,13.142857142857142,0,2,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,131.0,1,19,19,4,4,122.0,1,0,0,1,0,0,20,0,0,8,8,7,14.014285714285714,0,0,8,8,7,14.014285714285714,0,12.7,3.7,-1.7,Enrolled +1,17,2,9500,1,1,127.0,1,3,3,1,10,118.8,1,0,0,1,1,0,19,0,0,7,9,6,12.933333333333332,0,0,7,7,6,13.716666666666669,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,146.0,1,37,38,9,7,128.5,0,0,1,1,0,0,19,0,0,6,13,3,12.666666666666666,0,0,6,12,2,10.0,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,3,140.0,1,39,39,9,4,140.0,0,0,0,1,1,0,50,0,2,6,8,2,13.5,0,1,6,9,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,123.0,1,38,19,4,90,127.2,0,0,1,0,1,0,20,0,0,5,7,3,11.333333333333334,0,0,5,8,2,11.5,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,5,128.2,0,0,1,0,1,0,18,1,0,6,6,4,11.25,0,0,6,7,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,126.0,1,1,1,9,9,127.4,1,0,0,1,0,0,19,0,0,6,13,6,15.23076923076923,0,0,6,10,6,12.375,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,37,37,9,9,150.0,0,0,0,1,0,0,20,0,2,6,8,6,13.0,0,1,6,18,2,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,130.0,1,38,19,9,6,120.0,1,0,0,1,1,0,28,0,7,13,19,8,11.625,0,5,10,17,6,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,103.0,1,19,37,7,9,104.1,0,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,145.0,1,3,19,1,5,130.0,1,0,0,1,0,0,18,0,0,8,8,8,13.76125,0,0,8,8,8,13.76125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,123.0,1,1,38,9,9,116.7,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,5,1,120.0,1,0,0,1,0,0,38,0,0,5,11,3,11.333333333333334,0,0,5,9,4,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,141.0,1,19,1,90,90,128.0,0,0,0,1,1,0,18,0,0,8,8,0,0.0,3,0,8,8,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,124.0,1,3,3,2,2,119.1,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,4,9853,1,1,116.0,1,3,38,3,8,110.4,1,0,0,1,0,0,21,0,0,6,9,5,12.6,0,0,6,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,119.0,1,38,19,9,9,115.2,0,0,0,1,1,1,21,0,0,6,8,4,11.5,0,0,6,7,5,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,37,37,7,7,113.9,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +2,43,1,9147,1,2,120.0,1,37,37,9,9,122.8,0,0,1,0,0,0,42,0,13,13,13,13,11.923076923076923,0,12,12,12,12,12.5,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,6,122.0,1,19,19,9,9,126.2,1,0,0,1,0,0,22,0,0,5,14,4,14.25,3,0,5,9,5,13.2,4,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,122.0,1,1,1,2,5,113.3,1,0,0,1,0,0,18,0,0,5,9,4,14.25,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,142.0,1,1,1,9,9,127.7,1,0,0,1,1,0,19,0,0,5,9,5,12.6,1,0,5,8,4,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,116.0,1,1,1,3,3,120.9,0,0,0,1,1,0,24,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,128.0,1,1,19,4,7,125.6,1,0,0,1,1,0,18,0,0,7,7,7,12.444285714285714,0,0,8,11,7,11.347142857142858,0,12.4,0.5,1.79,Graduate +1,7,1,9991,0,40,130.0,1,1,3,4,2,130.0,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,1,19,9,7,120.0,0,0,0,1,1,0,22,0,2,6,15,3,11.75,0,0,6,12,2,10.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,137.0,1,38,37,9,9,122.3,0,0,0,1,1,1,18,0,0,6,7,6,13.571428571428571,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,122.0,1,41,1,4,3,119.6,1,0,0,1,0,0,19,0,0,6,6,4,12.0,0,0,6,11,3,11.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,157.0,1,38,37,9,5,137.8,0,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9130,1,1,132.0,1,19,38,9,9,130.4,1,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Graduate +4,43,1,8014,0,12,133.1,1,34,34,0,0,106.0,1,0,0,1,0,0,48,0,0,6,9,5,13.0,0,0,6,10,4,12.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9130,1,1,127.0,1,3,1,2,1,116.5,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,8014,0,1,125.0,1,37,37,5,6,122.2,1,0,1,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9556,1,1,128.0,1,38,38,7,8,123.5,1,0,0,1,0,0,22,0,0,7,14,6,10.744444444444444,1,0,8,10,8,11.8375,0,12.7,3.7,-1.7,Enrolled +1,43,1,9130,1,1,156.0,1,19,1,9,4,156.0,0,0,1,0,1,0,24,0,0,6,11,5,11.833333333333334,0,0,6,11,4,11.5,0,15.5,2.8,-4.06,Dropout +1,7,1,9130,1,3,140.0,1,19,38,9,9,140.0,1,0,0,1,0,0,23,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,8014,0,1,123.0,1,34,37,9,90,121.3,1,0,0,1,0,0,25,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,19,133.1,1,19,37,7,90,104.0,0,0,0,1,0,0,26,0,0,5,11,1,12.0,1,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,18,4,9254,1,1,106.0,1,19,37,7,7,106.0,1,0,0,1,1,1,21,0,0,6,8,4,10.5,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,119.0,1,37,37,4,6,113.2,0,0,1,1,0,0,20,0,0,6,8,6,13.333333333333334,0,0,6,8,5,14.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,19,19,9,9,100.0,0,0,0,1,0,0,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,145.0,1,3,1,4,3,149.9,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,166.0,1,19,37,4,8,146.4,0,0,0,1,1,0,27,0,0,5,12,3,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,145.0,1,38,37,5,5,142.2,0,0,0,1,0,0,19,0,0,6,9,4,12.5,0,0,6,9,5,12.5,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,38,0,0,6,10,3,10.25,0,0,6,7,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,156.0,1,19,38,9,1,153.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9853,1,1,117.0,1,19,38,4,0,113.5,1,0,0,1,0,0,19,0,0,7,10,6,12.166666666666666,0,0,7,9,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,138.0,1,37,19,9,9,127.8,1,0,0,1,0,0,19,0,0,7,7,6,14.983333333333334,0,0,7,7,6,14.983333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,40,130.0,1,1,1,4,4,190.0,1,0,0,1,0,0,27,0,1,7,7,7,14.757142857142856,0,1,8,9,8,14.077777777777778,0,16.2,0.3,-0.92,Graduate +1,17,5,9070,1,1,131.0,1,37,37,9,9,126.1,1,0,0,0,0,0,18,0,0,6,9,4,11.5,1,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.1,1,19,37,9,9,95.0,1,0,1,0,0,0,22,0,0,7,10,6,11.5,0,0,7,8,6,13.166666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,143.0,1,1,38,8,8,136.7,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Dropout +1,42,1,8014,0,1,120.0,1,37,38,90,7,120.0,1,0,0,1,0,0,30,0,9,11,19,9,13.444444444444445,1,5,7,7,7,14.714285714285714,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,121.0,1,19,19,5,8,117.5,1,0,0,1,0,0,18,0,0,6,7,6,10.571428571428571,0,0,6,11,3,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,160.0,1,3,1,6,6,116.3,1,0,0,1,0,0,24,0,0,6,8,5,12.6,0,0,6,7,5,12.2,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,134.0,1,1,38,4,5,122.8,0,0,0,1,1,0,18,0,0,6,6,6,12.0,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,7,1,8014,0,3,120.0,1,19,37,5,3,121.3,0,0,0,1,0,0,32,0,7,11,13,11,13.454545454545457,0,5,11,13,7,12.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,134.0,1,38,19,9,4,128.4,1,0,0,1,0,1,19,0,0,5,7,5,12.5,0,0,5,8,5,12.714285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,130.0,1,19,1,7,4,117.8,1,0,0,1,1,0,20,0,0,5,8,3,11.0,0,0,5,11,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9130,1,1,132.0,1,1,1,3,3,143.9,1,0,0,1,1,0,20,0,0,5,14,2,11.0,3,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,130.0,1,19,1,9,4,101.3,1,0,0,1,1,0,20,0,0,6,12,4,12.8,0,0,6,17,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,135.0,1,37,19,5,10,121.0,0,0,1,1,0,0,18,0,0,6,10,5,10.6,0,0,6,14,2,10.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9991,0,39,120.0,1,37,37,7,7,120.0,1,0,0,1,0,1,23,0,2,6,8,5,11.8,0,2,6,8,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,133.1,1,3,3,2,3,135.0,0,0,0,1,0,0,27,0,7,10,10,9,11.444444444444445,0,4,11,11,5,10.8,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,110.0,1,19,19,9,7,105.8,1,0,0,1,1,0,22,0,0,7,8,6,14.333333333333334,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,160.0,1,1,38,4,10,144.3,1,0,0,1,0,0,18,0,0,6,10,4,13.0,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +4,39,1,9254,1,1,120.0,1,37,37,9,8,95.0,0,0,0,1,0,1,36,0,0,6,10,6,11.0,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,137.0,1,19,19,7,7,120.8,1,0,0,1,0,1,18,0,0,8,8,7,14.654285714285717,0,0,8,8,7,14.654285714285717,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,144.0,1,19,38,4,8,141.3,1,0,0,1,0,1,18,0,0,8,9,8,13.31,1,0,8,9,8,13.31,1,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,148.0,1,19,1,3,9,140.0,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,128.0,1,38,38,7,7,131.5,0,0,0,1,0,0,18,0,0,8,8,8,12.77125,0,0,8,8,8,12.77125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,128.0,1,38,19,191,175,118.6,1,0,0,1,0,1,21,0,0,6,8,5,13.2,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,122.0,1,3,38,123,171,116.1,1,0,1,1,1,0,19,0,0,5,10,4,11.0,0,0,5,13,2,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9773,1,1,128.0,1,38,38,6,3,116.5,0,0,0,1,1,1,18,0,0,6,12,4,11.5,0,0,6,10,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,97.0,1,1,19,2,7,98.1,1,0,0,1,0,0,21,0,0,7,7,7,12.835714285714284,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,53,1,9991,0,1,140.0,1,38,38,191,193,135.0,0,0,1,1,0,0,23,0,6,11,18,8,12.375,0,3,9,15,5,12.6,0,8.9,1.4,3.51,Enrolled +1,1,2,9773,1,1,122.0,1,37,37,9,9,130.8,1,0,0,1,0,0,18,0,0,6,14,4,11.25,0,0,6,9,5,13.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,117.9,0,0,0,1,0,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9991,0,1,100.0,1,37,19,9,4,130.0,0,0,0,1,1,0,40,0,1,5,6,4,10.25,0,3,8,18,5,11.2,5,15.5,2.8,-4.06,Dropout +1,17,6,9670,1,1,125.0,1,38,1,9,7,125.0,1,0,0,1,1,0,20,0,0,6,8,4,14.25,0,0,6,10,5,14.0,0,10.8,1.4,1.74,Graduate +2,7,1,9070,1,43,140.0,1,37,1,9,7,140.0,0,0,0,1,0,0,33,0,0,6,7,6,15.0,0,0,6,8,3,11.0,0,11.1,0.6,2.02,Graduate +1,7,1,9254,1,3,110.0,1,19,19,3,3,110.0,0,0,0,1,1,0,35,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9500,1,1,135.0,1,19,1,5,4,127.3,1,0,0,1,0,0,18,0,0,7,8,7,13.30625,0,0,8,8,8,14.545,0,15.5,2.8,-4.06,Graduate +1,17,4,9238,1,1,129.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,8,9,144.9,1,0,1,0,0,0,23,0,7,11,18,11,13.166666666666666,0,4,9,15,8,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9500,1,1,136.0,1,1,1,4,4,123.8,0,0,0,1,0,0,19,0,0,7,10,6,11.614285714285714,0,0,8,8,8,14.0375,0,13.9,-0.3,0.79,Graduate +4,43,1,9991,0,1,140.0,1,37,37,5,5,149.8,0,0,0,1,1,0,36,0,0,5,5,5,13.8,0,0,5,6,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,150.0,1,38,19,9,9,137.8,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +5,39,1,9147,1,1,180.0,1,1,1,4,8,140.5,0,0,1,0,0,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,131.0,1,19,19,3,7,127.9,1,0,0,1,0,1,18,0,0,7,7,7,14.857142857142858,0,0,7,7,7,15.142857142857142,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,110.0,1,1,1,4,4,99.0,0,0,0,1,1,0,21,0,0,5,5,5,11.0,0,0,5,11,3,11.428571428571429,0,10.8,1.4,1.74,Enrolled +1,39,1,9070,1,1,139.3,1,38,38,5,5,117.5,0,0,0,1,1,0,28,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9130,1,1,147.0,1,4,1,2,10,141.8,1,0,0,1,0,0,19,0,0,6,8,6,13.0,0,0,6,9,4,12.8,0,13.9,-0.3,0.79,Graduate +2,44,1,8014,0,39,150.0,1,1,1,5,5,154.0,0,0,0,1,1,0,37,0,12,16,17,16,14.125,0,6,11,14,10,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,133.1,1,1,1,4,5,131.0,1,0,0,1,0,0,21,0,0,6,12,3,11.0,0,0,6,12,2,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,132.0,1,1,38,9,7,127.1,1,0,0,1,0,1,20,0,0,6,9,6,12.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,4,9147,1,1,125.0,1,19,19,5,5,118.0,1,0,0,1,0,0,19,0,0,5,7,5,13.6,0,0,5,6,5,12.2,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,108.0,1,19,1,9,3,107.8,1,0,0,1,0,1,20,0,0,7,10,6,12.357142857142858,0,0,8,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,143.0,1,37,37,9,8,130.6,1,0,0,1,0,0,20,0,0,7,8,7,12.847142857142858,0,0,8,10,8,13.788888888888888,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,126.0,1,37,1,7,7,118.7,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9238,1,1,140.0,1,1,44,4,2,124.6,1,0,1,0,1,0,20,0,3,9,9,3,13.333333333333334,0,2,6,6,2,12.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,112.0,1,9,22,4,3,106.1,0,0,0,1,0,0,20,0,0,5,13,2,10.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,130.0,1,37,37,191,183,163.7,0,0,0,1,0,0,35,0,0,7,11,5,13.34,0,0,7,9,5,10.84,0,12.4,0.5,1.79,Enrolled +4,39,1,9500,1,19,133.1,1,37,37,6,6,117.8,0,0,1,0,0,0,46,0,0,7,14,3,12.333333333333334,0,0,7,12,3,11.083333333333334,0,11.1,0.6,2.02,Dropout +1,18,2,9853,1,1,120.0,1,1,1,9,0,115.8,0,0,0,1,0,0,18,0,0,7,12,6,12.0,0,0,7,11,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,118.0,1,38,19,9,3,111.0,1,0,0,1,0,0,21,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,16,1,171,1,1,150.0,1,37,37,9,9,134.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,133.1,6,37,37,9,6,100.0,0,0,0,1,0,0,37,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,137.0,1,1,37,5,9,131.4,1,0,0,1,1,0,22,0,0,5,8,2,10.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Dropout +2,44,1,9991,0,39,130.0,1,1,37,4,9,130.0,0,0,0,0,0,0,21,0,0,5,12,3,11.333333333333334,0,0,5,10,1,13.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9238,1,1,136.0,1,19,19,4,7,121.7,1,0,0,1,0,1,21,0,0,6,9,5,12.333333333333334,0,0,6,7,5,11.8,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,133.1,1,1,38,9,7,110.5,0,0,0,1,0,0,19,0,0,6,10,6,14.25,0,0,6,7,6,14.0,0,16.2,0.3,-0.92,Graduate +1,39,1,9556,1,19,100.0,1,37,38,9,9,120.0,0,0,0,1,0,0,29,0,0,7,9,1,10.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,142.0,1,1,38,3,5,146.9,1,0,0,1,0,1,18,0,0,6,6,6,13.0,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,127.0,1,19,19,7,8,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.694285714285714,0,0,8,8,7,12.694285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,130.0,1,1,38,7,8,135.6,1,0,0,1,1,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,137.0,1,19,38,9,3,125.0,1,0,0,1,0,0,19,0,0,7,7,6,14.616666666666667,0,0,7,7,6,14.616666666666667,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,135.0,1,37,37,7,7,124.0,1,0,0,1,0,1,19,0,0,8,8,7,12.771428571428572,1,0,8,8,7,12.771428571428572,1,9.4,-0.8,-3.12,Enrolled +2,39,1,9556,1,1,100.0,6,38,38,9,9,130.0,0,0,0,1,0,0,32,1,0,7,10,7,11.0,0,0,8,8,8,13.125,0,12.7,3.7,-1.7,Graduate +1,42,1,9003,1,39,120.0,1,3,1,2,6,128.2,1,0,0,1,1,0,24,0,4,9,13,8,13.333333333333334,0,5,10,12,9,13.11111111111111,0,16.2,0.3,-0.92,Enrolled +1,1,3,9773,1,1,121.0,1,19,19,3,3,116.1,0,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,136.0,1,1,19,4,9,131.1,1,0,0,1,0,0,19,0,0,7,9,6,13.411428571428573,0,0,8,12,7,13.294444444444444,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,141.0,1,3,19,2,10,126.8,1,0,0,1,1,0,18,0,0,8,8,8,13.24875,0,0,8,8,8,13.24875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9773,1,1,136.0,1,38,38,9,9,132.9,1,0,0,1,1,0,19,0,0,6,10,4,13.25,0,0,6,13,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,133.1,1,1,1,90,1,120.0,1,0,1,0,1,0,41,0,0,5,5,0,0.0,1,0,5,5,0,0.0,5,12.7,3.7,-1.7,Dropout +1,17,1,8014,0,1,132.0,1,37,19,5,5,121.2,0,0,0,1,0,0,18,0,0,6,8,5,12.2,0,0,6,10,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,2,9500,1,6,119.1,1,1,19,4,10,119.1,0,0,0,1,1,0,22,0,0,7,7,6,12.733333333333334,0,0,7,7,6,12.733333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,153.0,1,1,19,9,4,139.7,1,0,0,1,0,1,19,0,0,7,7,7,13.428571428571429,0,0,7,7,7,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,150.0,1,1,1,3,3,143.4,0,0,0,0,1,1,18,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Enrolled +1,1,4,9500,1,1,130.0,1,19,19,9,7,119.9,1,0,0,1,0,0,18,0,0,7,7,7,13.78,0,0,8,8,8,12.6125,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,6,140.0,0,0,0,1,1,0,21,0,0,6,13,4,11.75,0,0,6,15,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,115.0,1,38,37,5,5,115.0,0,0,0,1,0,0,20,0,0,7,13,6,11.7725,0,0,8,9,7,12.33,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,150.0,1,19,37,5,4,142.7,1,0,0,1,0,1,18,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,133.1,1,34,5,0,1,118.5,1,0,0,1,0,0,31,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9130,1,1,125.0,1,3,3,2,2,132.4,0,0,0,1,1,0,20,0,0,5,7,4,11.75,0,0,5,5,5,13.4,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,116.0,1,37,37,9,9,110.8,0,0,0,1,0,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.5,0,7.6,2.6,0.32,Enrolled +1,43,1,9070,1,1,115.0,1,12,12,1,10,115.0,0,0,1,1,1,0,21,0,5,11,12,9,11.77777777777778,0,3,8,11,3,13.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,125.0,1,37,37,9,9,118.8,0,0,0,1,1,0,24,0,0,7,7,6,13.3,0,0,7,7,6,13.3,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,130.0,1,3,1,2,5,133.8,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9500,1,1,141.0,1,12,1,5,5,133.0,1,0,0,1,0,0,18,0,0,7,8,7,12.5375,0,0,8,9,7,12.614285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,141.0,1,38,38,7,10,139.8,1,0,0,1,0,0,18,0,0,8,8,8,14.935,0,0,8,8,8,14.935,0,9.4,-0.8,-3.12,Graduate +1,51,1,9147,1,19,133.1,1,19,19,9,5,112.1,0,0,1,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,132.0,1,19,2,9,3,126.0,1,0,0,1,0,0,19,0,0,7,7,6,12.183333333333332,0,0,7,7,6,12.183333333333332,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,131.0,1,2,38,4,5,132.3,1,0,0,1,0,0,19,0,0,7,7,6,11.683333333333332,0,0,7,7,6,11.683333333333332,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,124.0,1,1,19,9,8,116.7,1,0,0,1,0,1,18,0,0,7,9,0,0.0,0,0,7,8,1,10.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,180.0,103,5,3,1,1,183.5,1,0,0,1,0,0,18,1,0,7,8,4,12.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,10,1,9773,1,1,151.0,22,38,37,0,5,151.0,1,0,0,1,0,0,18,1,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,135.0,1,19,19,9,10,133.4,1,0,0,1,0,0,19,0,0,7,7,7,14.125714285714285,0,0,8,8,8,14.36875,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,135.0,1,3,3,2,2,137.1,1,0,0,1,0,0,18,0,0,6,8,6,12.0,0,0,6,8,5,14.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.1,1,38,38,5,10,101.0,0,0,0,1,1,0,20,0,0,7,14,5,12.87857142857143,0,0,8,15,7,11.85625,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,40,130.0,1,3,2,3,2,160.0,1,0,0,1,0,0,27,0,0,6,7,6,16.142857142857142,0,0,6,7,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,18,1,9773,1,1,124.0,1,38,37,9,8,126.8,0,0,0,1,1,1,21,0,0,6,8,5,13.833333333333334,0,0,6,6,4,14.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,140.0,1,19,37,9,9,125.5,1,0,0,1,0,1,19,0,0,8,8,7,14.232857142857142,0,0,8,8,7,14.232857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,1,133.1,1,37,38,9,8,118.9,0,0,0,1,0,0,30,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9991,0,1,160.0,1,34,34,0,0,161.8,1,0,1,1,1,0,33,0,0,5,8,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,140.0,1,1,38,4,7,100.0,0,0,0,1,0,1,18,0,0,7,8,7,13.6375,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Graduate +1,44,1,9070,1,39,120.0,1,2,19,3,8,120.0,0,0,0,1,1,0,21,0,2,7,10,6,13.428571428571429,0,5,9,9,8,13.125,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,124.0,1,38,19,3,10,128.6,1,0,0,1,0,0,20,0,0,5,5,4,12.0,0,0,4,4,2,11.5,0,7.6,2.6,0.32,Enrolled +1,44,1,9085,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,0,0,21,0,2,6,9,6,13.142857142857142,0,0,6,9,6,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,145.0,1,1,19,4,3,133.5,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,11.333333333333334,0,12.7,3.7,-1.7,Graduate +4,39,1,9085,1,1,110.0,1,37,37,90,90,110.0,0,0,0,0,0,0,35,0,0,5,14,1,12.0,2,0,5,11,2,10.5,1,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,134.0,1,19,37,4,7,133.5,1,0,0,1,0,0,19,0,0,7,8,7,14.05,0,0,8,8,8,15.1,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,132.0,1,1,19,4,3,126.4,1,0,0,1,0,1,18,0,0,5,13,3,10.6,0,0,5,12,3,10.5,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,19,133.1,1,4,1,2,4,120.0,0,0,0,1,1,0,25,0,0,3,4,0,0.0,0,0,3,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,151.0,1,40,4,2,2,144.5,1,0,0,1,0,0,18,0,0,6,7,6,15.666666666666666,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +2,39,1,9147,1,19,133.1,1,37,19,9,3,128.0,0,0,0,1,1,0,49,0,0,5,9,3,14.0,0,0,5,8,3,13.666666666666666,0,8.9,1.4,3.51,Dropout +1,39,2,8014,0,1,141.0,1,37,37,9,9,150.5,0,0,0,1,0,0,29,0,0,6,7,6,13.166666666666666,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,122.0,1,19,19,4,6,119.9,0,0,0,1,0,1,21,0,0,5,6,5,11.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,9,133.1,1,34,34,0,0,110.0,1,0,0,0,0,0,28,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,1,9500,1,1,128.0,1,19,1,9,4,125.8,0,0,0,1,0,1,20,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,3,9773,1,1,133.1,1,38,38,5,5,131.3,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +1,16,6,9147,1,1,128.0,1,37,37,9,9,116.5,1,0,0,1,0,0,20,0,0,5,8,4,11.6,0,0,5,10,3,12.333333333333334,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,1,147.0,1,34,34,90,90,111.7,1,0,0,1,0,0,28,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,1,19,6,8,122.0,0,0,0,1,0,1,24,0,0,6,11,5,11.0,0,0,6,9,5,12.6,0,11.1,0.6,2.02,Graduate +2,39,2,9254,1,19,133.1,1,19,19,9,5,123.5,0,0,0,1,1,0,39,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,114.0,1,37,37,9,9,130.0,0,0,0,1,1,0,25,0,0,8,11,6,12.675,0,0,8,11,6,12.675,0,12.7,3.7,-1.7,Graduate +2,39,1,8014,0,1,100.0,1,37,38,9,9,141.5,0,0,0,1,0,0,45,0,0,6,9,5,12.333333333333334,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9556,1,1,118.0,1,38,38,5,5,117.8,1,0,0,1,0,1,19,0,0,7,11,6,12.4,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9773,1,19,133.1,1,19,19,171,163,104.0,0,0,1,0,0,1,24,0,0,6,6,6,13.5,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,39,110.0,1,19,37,9,8,127.5,0,0,1,0,0,0,26,0,0,6,13,4,12.0,0,0,6,7,5,13.2,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,1,120.0,1,37,38,9,8,100.0,0,0,1,1,1,0,24,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,133.0,1,19,3,9,9,123.2,1,0,0,1,1,0,18,0,0,5,14,4,11.0,0,0,5,9,5,10.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,133.1,1,34,34,0,0,142.8,0,0,0,1,1,0,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9119,1,1,120.0,1,34,34,0,0,140.0,1,0,0,1,1,0,33,0,0,5,14,1,18.0,0,0,5,9,2,13.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,120.0,1,3,37,4,7,115.1,1,0,0,1,0,1,19,0,0,7,8,6,13.075,0,0,8,10,7,12.05,0,12.4,0.5,1.79,Graduate +1,51,1,9119,1,1,140.0,1,1,19,4,4,150.0,0,0,0,1,1,0,23,0,0,5,7,2,13.0,0,0,5,11,1,10.0,0,8.9,1.4,3.51,Dropout +1,43,1,9556,1,1,149.0,1,1,1,4,8,140.2,1,1,0,1,0,0,20,0,1,7,9,7,12.333333333333334,0,0,8,8,8,12.625,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,160.0,1,37,19,9,10,160.0,1,0,0,1,0,0,22,0,1,6,13,6,15.0,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,115.0,1,19,38,7,8,116.4,1,0,0,1,0,0,21,0,0,6,9,6,11.375,0,0,6,9,6,13.285714285714286,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,140.0,1,4,4,2,10,140.0,1,0,0,1,1,0,20,0,1,5,8,2,11.5,0,1,5,13,2,11.5,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,19,133.1,1,1,1,4,4,130.0,0,0,0,1,1,0,24,0,0,6,14,1,10.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,5,9773,1,1,146.0,1,1,37,5,5,146.7,1,0,0,1,1,0,19,0,0,6,7,6,13.833333333333334,0,0,6,8,6,13.625,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,142.0,1,1,38,9,9,127.0,0,0,1,0,1,0,21,0,0,7,12,4,12.94,0,0,7,12,4,11.58,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,130.0,1,37,37,9,7,138.0,0,0,0,1,0,0,42,0,0,6,8,5,11.2,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9773,1,9,133.1,1,38,1,5,4,102.0,1,0,0,1,1,0,28,0,0,6,11,3,13.0,0,0,6,15,1,12.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,125.0,1,19,19,7,5,118.0,1,0,0,1,0,1,19,0,0,6,10,4,12.25,0,0,6,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,145.0,1,19,38,4,10,131.7,1,0,0,1,0,0,18,0,0,6,7,6,12.666666666666666,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,133.1,1,37,19,9,9,114.0,0,0,0,1,0,0,44,0,2,8,11,8,11.875,0,0,6,7,6,12.333333333333334,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,140.0,1,38,37,4,10,140.0,0,0,1,0,0,0,20,0,1,6,13,4,13.0,0,1,6,11,5,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,128.0,1,1,19,4,4,124.5,0,0,0,1,1,1,19,0,0,6,10,4,14.0,0,0,6,9,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,126.0,1,37,19,9,8,116.9,1,0,0,1,0,0,21,0,0,6,11,6,10.375,0,0,6,12,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,1,9773,1,1,177.0,1,2,1,123,135,155.7,0,0,1,1,0,1,18,0,0,6,6,6,15.666666666666666,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,135.0,1,37,1,5,5,126.8,1,0,0,1,0,1,18,0,0,8,8,7,12.61,0,0,8,8,7,12.61,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,125.0,1,4,3,1,1,119.8,0,0,0,1,0,0,18,0,0,6,9,5,11.571428571428571,0,0,6,8,6,12.142857142857142,0,16.2,0.3,-0.92,Graduate +1,53,1,9147,1,42,130.0,1,1,19,143,172,133.8,1,0,0,1,0,0,21,0,6,11,17,11,11.545454545454543,0,3,9,13,8,12.88888888888889,0,8.9,1.4,3.51,Graduate +1,17,3,9670,1,1,123.0,1,38,38,7,8,118.8,1,1,0,1,0,1,18,0,0,6,10,5,12.0,0,0,6,11,5,12.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,112.0,1,38,19,9,5,113.8,1,0,0,1,0,0,21,0,0,6,10,6,10.833333333333334,0,0,6,10,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,124.0,1,34,34,0,0,129.3,0,0,0,1,0,0,19,0,0,6,8,6,11.5,0,0,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9773,1,12,120.0,1,1,1,9,9,129.8,1,0,0,1,1,0,52,0,0,6,7,5,13.0,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,111.0,1,19,19,9,9,110.0,1,0,0,1,0,0,18,0,0,6,6,5,12.6,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,163.0,1,37,37,5,6,155.0,0,0,0,1,0,1,21,0,0,6,6,6,13.333333333333334,0,0,6,8,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,145.0,1,19,1,9,5,145.0,0,0,0,1,0,1,18,0,0,7,7,7,14.071428571428571,0,0,8,8,8,15.1625,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,160.0,1,38,37,9,7,155.5,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,137.0,1,1,3,7,3,131.1,1,0,1,1,0,1,19,0,0,5,7,5,13.6,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,133.1,1,38,38,9,9,113.5,0,0,0,1,0,1,50,0,3,9,11,8,13.25,0,2,7,8,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,130.0,1,1,1,9,9,131.8,0,0,0,1,1,1,22,0,2,7,7,7,12.285714285714286,0,5,9,10,8,12.375,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,137.0,1,38,37,7,7,126.0,1,0,0,1,0,0,19,0,0,7,9,7,14.283333333333337,0,0,8,9,8,13.125555555555556,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,160.0,1,19,1,9,5,107.8,1,0,0,0,1,0,27,0,0,6,10,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9070,1,39,120.0,1,3,38,3,9,120.0,0,0,0,1,1,0,20,0,2,7,7,6,12.5,0,5,9,10,7,13.142857142857142,1,16.2,0.3,-0.92,Graduate +1,17,1,9670,1,1,145.0,1,3,3,2,1,129.3,1,0,0,1,0,0,20,0,0,6,7,6,15.571428571428571,0,0,6,6,6,17.166666666666668,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,117.0,1,38,19,5,7,118.1,0,0,0,1,1,0,19,0,0,5,6,5,11.2,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,130.0,1,1,1,4,3,130.0,1,0,0,1,0,0,20,0,0,6,13,5,11.8,0,0,6,19,4,12.0,0,12.4,0.5,1.79,Enrolled +2,43,1,9238,1,12,100.0,1,37,37,9,9,134.4,0,0,0,1,0,0,34,0,9,16,20,14,12.071428571428571,1,11,13,13,11,12.272727272727272,0,7.6,2.6,0.32,Graduate +2,43,1,8014,0,14,133.1,1,34,34,0,0,100.0,0,0,0,0,0,0,34,0,3,7,13,3,12.0,0,2,7,15,1,13.0,1,9.4,-0.8,-3.12,Dropout +1,17,4,9254,1,1,122.0,1,1,1,4,2,116.1,1,0,0,1,1,0,19,0,0,6,7,5,12.2,0,0,6,12,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,4,9254,1,1,110.0,1,37,37,9,7,113.2,1,0,0,1,0,0,24,0,0,6,14,2,10.5,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,131.0,1,38,37,4,9,131.7,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,1,19,4,10,150.0,0,0,0,1,1,1,21,0,0,6,8,6,13.0,0,0,6,10,6,12.625,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,142.0,1,19,38,9,7,127.3,0,0,0,1,1,0,18,0,0,5,10,3,11.0,0,0,5,6,3,11.0,1,16.2,0.3,-0.92,Enrolled +1,7,1,9556,1,43,160.0,1,38,19,9,9,160.0,0,0,0,1,1,0,36,0,0,7,16,1,12.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,1,1,9853,1,1,130.0,1,19,12,9,4,133.2,1,0,0,1,0,0,19,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,43,1,9119,1,1,130.0,1,37,38,9,9,120.0,0,0,1,0,0,0,30,0,8,12,17,8,11.75,0,6,12,19,6,12.166666666666666,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,42,1,3,7,110.5,0,0,0,1,1,0,37,0,0,7,15,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +2,39,1,9003,1,1,130.0,1,1,19,4,9,152.4,1,0,0,1,0,0,36,0,4,12,14,12,13.846153846153848,0,5,12,18,11,14.090909090909092,0,8.9,1.4,3.51,Graduate +1,16,1,171,1,1,155.0,1,1,3,5,10,167.3,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,3,9254,1,1,114.0,26,38,3,9,3,127.3,1,0,1,0,0,0,20,1,0,6,14,3,12.333333333333334,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,37,37,9,9,125.4,1,0,0,1,1,0,19,0,0,6,6,6,13.5,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,5,9773,1,1,127.0,1,38,1,4,5,121.1,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Enrolled +1,17,2,171,1,1,130.0,41,1,1,2,3,148.6,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9130,1,1,120.0,1,1,19,9,9,120.0,1,0,0,1,0,0,21,0,0,6,14,5,11.5,1,0,6,13,5,11.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,133.0,1,1,37,4,10,143.2,0,0,0,1,0,0,19,0,0,5,7,5,14.4,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,38,38,9,7,125.2,1,0,0,1,0,1,18,0,0,6,8,6,12.285714285714286,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,102.0,1,37,37,7,7,102.0,0,0,0,1,0,0,19,0,0,6,8,5,11.8,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,19,38,5,7,128.5,1,0,0,1,0,1,18,0,0,8,8,8,13.40375,0,0,8,8,8,13.40375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,140.0,1,38,38,7,7,133.2,1,0,0,1,0,1,20,0,0,7,10,7,14.175,0,0,8,14,6,13.03125,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,123.0,1,1,1,3,3,120.9,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,2,9500,1,1,135.0,1,19,1,5,5,128.9,1,0,0,1,0,1,19,0,0,7,8,6,12.648333333333332,0,0,8,9,8,12.205555555555556,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,1,3,137.7,0,0,0,0,0,0,23,0,0,5,9,0,0.0,3,1,5,10,1,12.0,3,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,158.0,1,3,3,3,3,151.4,1,0,0,0,0,0,19,0,6,12,12,12,13.0,0,4,11,14,11,13.25,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,37,1,9,3,120.0,0,0,1,0,1,0,40,0,0,6,13,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,51,1,9773,1,1,135.0,1,1,42,5,3,110.0,1,0,0,1,1,0,23,0,0,6,7,6,13.333333333333334,0,0,6,6,4,12.75,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,143.0,1,3,38,2,9,144.1,1,0,0,1,0,0,19,0,0,6,7,5,12.6,0,0,6,10,5,12.375,0,10.8,1.4,1.74,Enrolled +1,1,3,9070,1,1,132.0,1,1,3,9,7,126.1,1,0,0,1,0,1,18,0,0,6,6,6,15.833333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,141.0,1,19,1,9,10,126.8,1,0,0,1,0,0,18,0,0,8,8,7,12.944285714285714,0,0,8,8,7,12.944285714285714,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,130.0,1,38,38,6,9,126.3,1,0,0,1,0,1,19,0,3,6,7,5,12.2,0,2,6,6,6,11.5,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,1,140.0,1,1,1,4,5,140.0,0,0,0,1,1,0,20,0,0,6,11,6,11.285714285714286,0,0,6,12,5,11.77777777777778,0,16.2,0.3,-0.92,Enrolled +1,39,2,9147,1,1,130.0,1,19,19,5,9,121.5,0,0,0,0,1,0,26,0,0,5,5,2,10.5,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,51,1,8014,0,19,133.1,1,37,37,9,9,104.0,0,0,1,1,0,0,42,0,5,11,14,10,11.9,0,5,11,14,10,12.8,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,120.0,1,3,4,2,2,120.0,0,0,0,1,1,0,27,0,0,6,10,5,13.0,0,0,6,13,5,11.5,0,16.2,0.3,-0.92,Graduate +1,1,4,171,1,1,131.0,1,19,19,4,4,119.8,1,1,0,1,0,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +1,18,3,9070,1,1,134.0,1,1,1,3,4,121.4,0,0,0,1,0,0,18,0,0,6,6,2,12.0,0,0,6,6,1,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,140.0,1,37,37,9,9,118.2,0,0,0,1,1,0,52,0,0,5,7,5,11.2,0,0,5,6,5,12.8,1,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,130.0,1,19,37,9,9,131.8,1,0,0,1,0,1,19,0,0,5,8,2,10.5,0,0,5,11,3,13.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,134.0,1,38,19,3,10,121.2,0,0,0,1,0,0,19,0,0,7,10,7,13.47,0,0,8,8,8,13.32625,0,15.5,2.8,-4.06,Graduate +1,43,2,9500,1,1,120.0,1,41,3,2,2,112.7,0,0,0,1,0,0,21,0,0,8,12,6,11.68,0,0,8,12,6,11.68,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,134.0,1,1,19,4,9,129.8,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,8,6,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,133.0,1,19,1,4,5,127.1,1,0,0,1,0,0,18,0,0,6,7,6,15.0,0,0,6,7,6,16.428571428571427,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,148.0,1,38,37,5,9,137.8,1,0,0,1,0,1,18,0,0,8,8,7,14.962857142857144,0,0,8,8,7,14.962857142857144,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,129.0,1,37,37,9,7,117.8,0,0,0,1,0,1,19,0,0,5,6,4,11.0,0,0,5,9,4,13.857142857142858,0,10.8,1.4,1.74,Enrolled +4,39,1,8014,0,3,100.0,1,37,37,9,9,130.0,0,0,0,1,0,1,43,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,145.0,1,1,40,9,2,129.6,0,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,4,9254,1,1,124.0,1,1,1,4,4,122.3,1,0,0,1,0,0,19,0,0,6,7,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Dropout +2,43,2,9147,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,46,0,4,9,18,8,11.375,2,0,5,11,5,11.8,0,9.4,-0.8,-3.12,Graduate +1,51,1,9556,1,1,131.0,1,1,37,152,193,126.6,1,0,0,1,1,0,23,0,0,7,11,5,12.414285714285713,0,0,7,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,44,1,9085,1,39,110.0,1,3,5,2,2,110.0,0,0,0,1,1,0,23,0,0,6,19,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,15,1,9147,1,1,140.0,26,37,2,6,4,140.0,0,0,1,1,1,0,19,1,0,5,12,3,10.5,0,0,5,8,4,11.25,0,12.4,0.5,1.79,Graduate +2,51,1,9853,1,1,130.0,1,37,37,7,8,120.3,0,0,0,1,0,0,35,0,0,7,7,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,19,133.1,1,37,37,6,6,139.0,0,0,0,1,1,0,49,0,0,6,8,6,12.166666666666666,0,0,6,8,6,14.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9670,1,1,120.0,1,37,37,7,7,111.3,1,0,0,1,1,0,19,0,0,5,7,3,11.333333333333334,0,0,5,7,4,11.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,3,120.0,1,37,37,7,7,120.0,0,0,0,1,0,0,32,0,4,10,20,4,11.5,2,3,9,13,3,11.666666666666666,2,15.5,2.8,-4.06,Dropout +1,17,3,9147,1,1,147.0,1,19,38,5,7,132.3,1,0,0,1,0,1,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,3,9130,1,1,167.0,1,37,37,90,90,159.3,0,0,0,1,0,0,19,0,0,5,7,5,14.714285714285714,0,0,5,5,5,15.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,132.0,1,1,1,4,9,136.6,1,0,0,1,1,0,19,0,0,6,7,5,11.4,0,0,6,10,3,11.0,3,7.6,2.6,0.32,Enrolled +1,5,2,9853,1,1,124.0,1,19,19,3,3,113.9,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,3,130.0,1,3,1,2,9,130.0,0,0,0,1,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,160.0,1,1,38,4,7,146.5,0,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,10,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9670,1,1,141.0,1,19,3,4,0,137.9,1,0,0,0,1,0,20,0,0,5,6,3,12.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,1,120.0,1,19,37,8,7,100.0,1,0,0,1,0,0,24,0,0,6,11,1,10.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,134.0,1,38,19,7,7,124.2,0,0,0,1,0,1,21,0,0,6,11,4,11.25,0,0,6,12,4,11.4,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,150.0,1,1,37,4,8,145.6,1,0,0,1,0,1,20,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,146.0,1,3,1,3,10,138.7,0,0,0,1,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9991,0,40,133.1,1,1,37,4,1,100.0,0,0,0,1,0,0,26,0,8,9,11,9,12.333333333333334,0,4,7,7,7,12.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,127.0,1,38,19,9,10,117.9,0,0,0,1,0,1,20,0,5,10,13,9,12.9,0,4,10,12,10,12.363636363636363,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,131.0,1,37,38,9,7,137.0,0,0,0,1,0,1,20,0,0,6,8,6,11.166666666666666,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Graduate +1,7,1,9238,1,3,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,36,0,10,14,21,13,13.071428571428571,0,4,11,16,11,13.0,0,16.2,0.3,-0.92,Graduate +2,39,1,9085,1,1,133.1,1,37,37,90,90,110.3,0,0,0,1,1,0,33,0,0,5,7,4,13.5,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,125.0,1,38,1,3,10,114.5,1,0,0,1,1,0,19,0,0,5,5,5,13.8,0,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,152.0,1,19,19,9,5,154.1,0,0,1,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.571428571428571,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,120.0,1,37,37,4,5,120.0,0,0,1,0,0,0,28,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,13.9,-0.3,0.79,Dropout +2,39,1,8014,0,1,146.0,1,37,37,9,8,120.5,0,0,0,1,0,0,44,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,39,1,9119,1,12,133.1,1,34,34,0,0,95.1,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,128.0,1,19,37,9,8,116.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,11,4,11.25,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,0,5,6,5,10.6,0,0,5,9,2,11.0,0,12.7,3.7,-1.7,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9307cf4b524ffa38ff4a36db610667ac23d91634 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/train.csv @@ -0,0 +1,3540 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,43,1,9773,1,1,127.0,1,1,1,9,6,110.0,0,0,1,0,1,0,19,0,0,6,10,3,11.666666666666666,0,0,6,11,2,10.0,0,16.2,0.3,-0.92,Dropout +1,17,2,9773,1,1,122.0,1,38,37,5,3,119.6,1,0,0,1,0,0,20,0,0,6,8,6,13.428571428571429,0,0,6,10,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,1,6,9147,1,1,121.0,1,3,19,4,5,116.8,0,0,0,1,1,0,20,0,0,5,14,3,12.4,0,0,5,8,5,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,158.0,1,38,37,5,5,140.2,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,19,19,9,7,131.7,1,0,0,1,0,1,19,0,0,7,10,7,13.605,0,0,8,11,8,12.33125,0,15.5,2.8,-4.06,Graduate +1,1,3,9085,1,1,133.0,1,1,38,9,90,128.2,0,0,0,1,0,0,21,0,0,5,7,5,12.0,0,0,5,7,4,12.5,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,122.0,1,1,19,9,9,120.3,1,0,0,1,1,1,19,0,0,5,8,5,12.6,0,0,5,9,5,13.6,0,8.9,1.4,3.51,Dropout +1,43,1,9119,1,1,130.0,1,1,1,9,2,128.0,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,3,9254,1,1,122.0,1,1,1,4,4,126.6,0,0,0,0,0,0,18,0,0,5,5,5,10.4,0,0,6,13,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,1,100.0,1,37,37,9,9,133.0,0,0,0,1,1,0,47,0,0,6,8,5,11.4,0,0,6,10,6,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,44,1,9119,1,39,130.0,1,19,3,3,4,130.0,0,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9085,1,39,140.0,1,1,1,4,7,140.0,1,0,1,1,0,0,22,0,2,6,9,6,12.0,0,1,6,12,3,12.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9070,1,1,130.0,1,37,37,9,9,123.7,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +4,1,1,9991,0,1,130.0,1,37,37,9,9,118.1,0,0,1,0,0,0,37,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9500,1,1,190.0,108,3,2,122,4,190.0,1,0,0,1,0,0,18,1,0,7,15,4,11.575,0,0,7,10,5,12.419999999999998,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,102.0,1,1,19,9,5,100.6,1,0,0,1,0,1,20,0,0,7,9,6,12.766666666666666,0,0,8,10,7,12.128571428571428,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,3,120.0,1,19,3,4,2,120.0,1,0,0,1,0,0,29,0,0,8,8,6,12.25,1,0,8,8,6,12.25,1,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,130.0,1,38,19,9,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,111.0,1,3,4,4,3,108.2,1,0,0,1,0,0,20,0,2,7,9,6,13.266666666666666,0,0,7,10,5,12.3,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,1,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9119,1,1,160.0,1,1,38,4,7,112.0,0,0,0,0,1,0,25,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,149.0,1,19,1,4,4,134.8,0,0,0,1,0,0,18,0,0,8,8,8,14.445,0,0,8,8,8,14.445,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,135.0,1,19,38,3,9,136.1,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,2,9500,1,1,120.0,1,37,34,90,0,121.5,0,0,1,1,0,0,22,0,11,14,14,12,12.333333333333334,2,11,14,14,12,12.333333333333334,2,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,147.0,1,12,19,9,3,151.6,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,128.0,1,37,37,9,9,123.5,1,0,0,1,1,1,21,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,2,9070,1,1,129.0,1,1,1,4,9,132.9,1,0,0,1,1,1,20,0,0,6,9,6,11.375,0,0,6,6,5,13.8,0,7.6,2.6,0.32,Enrolled +1,17,2,9500,1,1,138.0,1,1,38,5,8,132.8,1,0,0,1,0,0,18,0,0,7,9,6,12.385714285714286,0,0,8,9,8,13.755555555555556,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,134.0,1,19,37,9,9,131.6,1,1,0,1,0,0,19,0,0,6,10,5,11.8,0,0,6,10,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,130.0,1,37,37,9,9,122.0,1,0,0,1,0,1,21,0,0,6,8,1,10.0,0,0,6,13,5,11.4,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,1,0,0,0,29,0,0,6,13,3,12.75,0,0,6,8,3,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,2,9085,1,1,130.0,1,37,19,9,8,129.0,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,9,2,10.5,0,7.6,2.6,0.32,Enrolled +1,17,5,9119,1,1,126.0,1,38,38,5,9,116.9,1,0,1,1,1,0,20,0,0,5,5,4,14.5,0,0,6,8,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,37,38,5,6,140.0,1,0,0,1,0,0,21,0,2,6,16,5,12.666666666666666,0,1,6,15,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,18,4,9853,1,1,123.0,1,19,38,4,10,123.7,1,0,0,1,0,0,19,0,0,6,8,5,12.666666666666666,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,118.0,1,4,3,2,3,110.7,1,0,0,1,0,0,18,0,0,7,7,7,11.714285714285714,0,0,8,8,8,12.75,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,2,130.0,1,37,37,5,7,147.5,0,0,0,1,0,0,39,0,7,11,13,11,14.454545454545457,0,6,8,8,8,13.5,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,146.0,1,4,1,2,3,140.0,1,0,0,1,0,0,18,0,0,8,8,7,14.828571428571427,0,0,8,8,7,14.828571428571427,0,12.7,3.7,-1.7,Graduate +1,44,1,9003,1,39,160.0,1,37,38,9,7,160.0,0,0,0,1,0,1,19,0,0,6,7,6,15.333333333333334,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,7,0,9003,1,3,130.0,1,1,37,4,9,130.0,1,0,0,1,0,0,23,0,10,17,28,17,13.15,2,8,12,22,12,13.214285714285714,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,19,133.1,1,34,34,99,99,96.0,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,136.0,1,37,37,7,7,140.9,1,0,0,1,1,0,18,0,0,6,10,4,12.0,0,0,6,7,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,1,9853,1,1,127.0,1,1,1,5,7,121.4,1,0,0,1,0,0,18,0,0,7,8,7,11.571428571428571,0,0,7,9,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,134.0,1,3,19,2,10,128.8,0,0,0,1,0,0,18,0,0,5,10,5,13.375,0,0,5,9,5,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,140.0,1,1,3,4,2,142.8,1,0,0,0,0,1,20,0,7,12,15,11,13.384615384615383,0,4,9,13,7,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,126.3,0,0,0,1,1,0,19,0,0,6,8,6,12.833333333333334,0,0,6,8,6,13.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.1,1,19,1,1,3,101.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9147,1,1,122.0,1,1,38,1,7,118.9,0,0,0,1,1,0,21,0,0,5,11,2,10.5,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,107.0,1,19,37,7,7,103.5,1,0,0,1,0,0,20,0,0,6,13,3,11.2,0,0,6,9,4,12.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,156.0,1,38,37,9,9,156.3,0,0,0,1,1,1,18,0,0,8,8,8,15.63375,0,0,8,8,8,15.63375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,128.0,1,1,1,9,9,120.0,1,0,0,1,0,0,18,0,0,6,11,3,12.0,0,0,6,13,2,12.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9119,1,1,127.0,1,19,1,9,10,121.1,1,0,0,1,1,1,18,0,0,5,6,5,13.2,0,0,5,8,5,12.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,4,160.0,1,3,3,4,2,180.4,0,0,1,1,1,0,24,0,6,12,17,6,12.166666666666666,0,7,12,14,10,13.3,0,12.4,0.5,1.79,Dropout +1,43,1,9670,1,1,132.0,1,3,19,4,8,120.5,0,0,0,1,1,0,19,0,0,6,17,4,12.5,0,0,6,8,4,13.25,0,13.9,-0.3,0.79,Enrolled +1,17,1,9853,1,1,134.0,1,1,19,4,5,122.5,1,0,0,1,0,0,22,0,0,6,10,5,13.166666666666666,0,0,6,8,5,12.4,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,142.0,1,1,19,4,4,128.0,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,133.0,1,2,37,9,7,125.7,1,0,0,1,1,1,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,135.0,1,1,3,4,3,133.3,0,0,0,1,0,0,19,0,0,5,5,5,13.0,0,0,5,5,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,3,140.0,1,37,12,9,4,140.0,0,0,0,0,0,0,26,0,0,5,9,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9500,1,1,141.0,1,2,38,2,10,135.4,1,0,0,1,0,0,18,0,0,7,9,7,12.50625,0,0,8,15,5,13.2,0,13.9,-0.3,0.79,Enrolled +2,43,1,9991,0,2,120.0,1,37,37,9,9,120.0,0,0,0,0,0,0,38,0,9,12,12,9,12.22222222222222,2,9,12,12,9,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,35,0,0,6,16,4,12.0,0,0,6,11,3,10.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,147.0,1,1,19,4,4,137.2,0,0,0,0,0,0,18,0,0,6,6,6,14.5,0,0,6,6,6,15.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9085,1,1,120.0,1,37,38,9,9,111.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,141.0,1,3,1,9,9,124.3,0,0,0,1,0,0,19,0,0,8,8,7,14.514285714285714,0,0,8,8,7,14.514285714285714,0,12.7,3.7,-1.7,Enrolled +1,18,1,9773,1,1,125.0,1,1,1,4,7,121.5,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,140.0,1,37,37,5,5,150.0,0,0,1,1,0,0,34,0,0,6,10,5,13.833333333333334,0,0,6,13,5,12.5,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,112.0,1,1,37,4,9,106.8,1,0,0,1,0,1,19,0,0,7,8,6,13.533333333333331,0,0,8,9,7,13.614285714285714,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,168.0,1,38,37,9,8,155.1,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,15,1,9119,1,1,133.1,41,2,2,2,2,100.0,0,0,1,1,1,0,24,1,2,8,8,7,13.142857142857142,0,1,6,8,6,11.833333333333334,0,8.9,1.4,3.51,Enrolled +2,1,1,8014,0,1,121.0,1,37,37,9,9,114.4,1,0,0,1,0,0,45,0,8,12,14,12,14.0,0,2,7,12,7,13.857142857142858,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,136.0,1,1,38,4,5,132.2,0,0,1,1,0,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.875,0,10.8,1.4,1.74,Graduate +1,16,1,9070,1,1,145.0,1,1,1,3,3,146.1,1,0,0,1,0,0,18,0,0,6,6,1,15.0,0,0,6,7,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9085,1,40,140.0,1,5,3,2,2,140.0,0,0,1,1,1,0,27,0,8,13,13,8,13.5,2,5,11,12,5,14.4,0,11.1,0.6,2.02,Dropout +1,1,3,9085,1,1,126.0,1,38,1,9,9,132.0,1,0,0,1,0,1,18,0,0,5,8,3,15.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,146.0,1,1,37,9,9,129.3,0,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,131.0,1,37,37,9,6,127.2,0,0,0,1,0,1,18,0,0,5,7,3,12.666666666666666,0,0,5,5,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,139.0,1,37,37,9,9,124.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,133.1,1,37,1,5,4,151.2,0,0,0,1,1,0,25,0,0,5,11,4,11.5,0,0,5,11,3,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,170.0,1,38,19,9,2,160.6,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,131.0,1,37,37,9,6,130.7,0,0,1,1,0,0,21,0,0,5,9,2,11.5,0,0,5,13,4,11.0,1,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,122.0,1,19,37,3,5,116.6,1,0,1,1,1,1,20,0,0,7,7,7,13.314285714285717,0,0,8,8,8,12.575,0,12.4,0.5,1.79,Graduate +1,17,3,171,1,1,147.0,1,19,1,5,4,137.6,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,9,120.0,0,0,0,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,5,1,9130,1,1,157.0,1,5,43,2,2,149.7,1,0,0,1,0,0,18,0,0,6,6,6,15.0,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9003,1,39,160.0,1,3,1,2,6,160.0,1,0,0,0,0,0,20,0,0,6,10,6,13.375,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,140.0,1,9,19,4,4,131.2,0,0,0,1,1,1,26,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,1,130.0,1,1,3,2,6,110.0,0,0,0,1,1,0,32,0,8,18,27,13,13.714285714285714,1,7,12,18,12,12.083333333333334,0,15.5,2.8,-4.06,Graduate +1,39,1,171,1,1,147.0,1,37,38,175,193,133.3,0,0,0,0,0,0,32,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,148.0,1,38,19,4,9,134.7,1,0,0,1,0,0,18,0,0,6,6,6,17.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,130.0,1,19,1,9,7,130.4,1,0,0,1,0,1,19,0,0,7,7,7,13.894285714285711,0,0,8,8,8,14.3625,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,133.1,1,1,37,4,9,96.0,1,0,0,1,0,1,25,0,0,6,8,6,11.285714285714286,0,0,6,10,5,12.2,0,15.5,2.8,-4.06,Enrolled +1,39,1,9991,0,12,120.0,1,37,38,5,5,155.7,0,0,0,1,1,0,33,0,0,5,5,5,13.2,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,117.0,1,3,1,3,3,113.2,0,1,0,1,0,0,18,0,0,7,10,6,11.98,0,0,8,11,7,13.225,0,16.2,0.3,-0.92,Graduate +1,17,2,9853,1,1,150.0,1,38,19,5,5,142.0,1,0,0,1,0,1,19,0,0,6,8,6,12.333333333333334,0,0,6,7,5,12.4,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,144.0,1,1,19,9,4,130.8,1,0,0,1,0,1,19,0,0,8,8,7,14.214285714285714,0,0,8,8,7,14.214285714285714,0,12.7,3.7,-1.7,Graduate +1,17,4,9254,1,1,118.0,1,38,37,5,7,111.7,1,0,0,1,1,0,18,0,0,6,12,3,11.666666666666666,0,0,6,12,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,6,9500,1,1,141.0,1,2,1,4,4,136.3,1,0,0,1,0,0,19,0,0,8,8,7,14.1,0,0,8,8,7,14.1,0,10.8,1.4,1.74,Graduate +2,39,1,9003,1,1,120.0,1,2,2,1,4,100.0,0,0,0,1,1,0,30,0,3,12,12,3,12.0,0,5,12,16,5,11.8,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,141.0,1,4,3,2,1,136.3,1,0,0,1,1,0,18,0,0,8,9,8,12.8875,1,0,8,9,8,12.8875,1,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,120.0,1,1,19,5,4,140.4,0,0,0,1,0,0,31,0,2,6,13,5,11.4,0,0,6,14,4,11.75,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,154.0,1,1,37,4,9,134.8,1,0,0,1,0,0,19,0,0,7,7,6,13.533333333333331,0,0,7,7,6,13.533333333333331,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,100.0,1,19,19,5,5,101.8,1,0,0,1,0,0,21,0,0,6,8,5,11.6,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,3,9670,1,1,137.0,1,1,38,4,7,138.4,0,0,0,1,1,0,19,0,0,6,8,6,15.125,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,152.0,1,37,37,7,5,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,11,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,118.0,1,37,1,9,7,117.0,1,0,0,0,1,0,23,0,0,5,9,3,10.0,1,0,5,9,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,140.0,1,12,3,4,3,118.0,1,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,133.0,1,1,2,9,2,128.8,0,0,0,1,1,0,19,0,6,12,12,12,13.166666666666666,0,6,12,12,12,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,171,1,1,140.0,1,37,37,9,9,100.8,0,1,0,1,0,0,26,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9070,1,42,130.0,1,40,19,3,5,130.0,1,0,0,0,0,1,22,0,0,6,8,6,11.0,0,0,6,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,143.0,1,1,19,3,3,133.9,0,0,0,1,0,1,18,0,0,5,5,5,15.0,0,0,5,5,5,15.2,0,12.7,3.7,-1.7,Graduate +2,1,5,9500,1,1,130.0,1,1,19,4,4,122.3,0,0,0,1,0,0,19,0,0,7,7,6,14.35,0,0,7,7,6,14.35,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,9,9,125.0,1,0,0,1,0,0,19,0,0,7,8,6,11.658333333333331,0,0,8,11,6,12.416666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,120.0,1,37,37,7,8,120.0,0,0,0,1,0,1,27,0,0,6,8,6,11.833333333333334,0,0,6,10,5,12.8,0,15.5,2.8,-4.06,Graduate +1,1,2,9147,1,1,125.0,1,1,19,4,9,124.0,1,0,0,1,0,0,19,0,0,5,5,5,11.2,0,0,5,11,4,11.75,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,131.0,1,38,19,9,9,130.0,1,0,0,1,1,0,19,0,0,5,5,5,12.8,0,0,5,10,5,11.444444444444445,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,132.0,1,1,1,4,1,119.4,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9500,1,1,135.0,1,19,19,7,7,128.0,1,0,0,1,0,1,18,0,0,7,7,7,14.44142857142857,0,0,8,8,8,13.65625,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,19,133.1,1,38,38,9,9,114.8,0,0,0,1,0,0,28,0,0,7,15,1,10.75,0,0,7,10,1,10.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,130.0,1,2,2,6,6,130.0,0,0,0,0,1,0,20,0,2,6,10,5,13.2,0,1,6,21,3,12.0,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,112.0,1,19,38,9,10,112.0,1,0,0,1,0,0,20,0,0,5,10,3,10.333333333333334,0,0,5,9,4,11.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9254,1,1,170.0,1,37,37,4,6,138.3,0,0,0,1,0,0,33,0,5,10,14,9,12.416666666666666,0,5,9,14,7,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9147,1,19,100.0,1,38,19,7,9,132.0,0,0,1,0,1,0,28,0,0,5,7,1,11.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,133.1,1,19,19,9,9,119.0,1,0,0,0,0,1,19,0,0,5,7,3,10.666666666666666,0,0,5,10,3,12.285714285714286,0,10.8,1.4,1.74,Dropout +1,17,2,9085,1,1,138.0,1,37,37,9,7,123.3,1,0,0,1,0,0,19,0,0,5,15,3,14.0,3,0,5,10,4,11.75,1,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,1,133.1,1,37,37,9,9,112.5,0,0,0,1,0,1,30,0,0,7,7,6,14.666666666666666,1,0,6,7,6,14.333333333333334,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,1,140.0,1,12,5,3,3,126.6,0,0,0,1,1,0,19,0,2,6,7,6,14.428571428571429,0,1,7,8,7,14.375,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,1,125.0,1,1,1,9,4,120.0,0,0,0,1,0,0,22,0,0,6,8,6,14.833333333333334,0,0,6,10,5,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,151.0,1,1,1,4,3,132.3,0,0,0,1,1,0,19,0,0,8,9,7,12.828571428571427,0,0,8,9,7,12.828571428571427,0,12.7,3.7,-1.7,Graduate +1,43,1,9556,1,1,130.0,1,1,37,5,5,128.0,1,0,0,1,1,0,20,0,0,7,8,7,13.585714285714284,0,0,8,8,8,14.6875,0,15.5,2.8,-4.06,Graduate +1,17,6,9670,1,1,113.0,1,4,1,3,10,112.3,0,0,0,1,0,0,20,0,0,6,9,6,12.375,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9773,1,1,125.0,1,37,37,5,7,120.1,0,0,0,1,0,1,18,0,0,6,7,6,12.5,0,0,6,8,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,53,1,171,1,42,130.0,1,1,19,9,9,130.0,1,0,0,0,1,1,22,0,5,12,15,11,12.545454545454543,0,4,11,16,11,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,51,1,33,1,1,121.0,1,19,37,5,7,118.6,0,0,0,1,0,0,26,0,14,21,23,20,13.181818181818182,0,10,14,18,14,11.642857142857142,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,131.0,1,37,37,90,90,137.0,0,0,0,1,0,0,18,0,0,5,5,5,14.0,0,0,5,6,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,150.0,1,19,1,4,4,137.8,0,0,0,1,0,0,18,0,0,7,10,7,15.145,0,0,8,8,8,15.7425,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,1,140.0,1,37,37,5,6,128.5,0,0,0,1,0,1,38,0,0,6,6,5,12.4,0,0,6,7,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,130.0,1,37,2,9,4,126.5,1,0,0,0,1,0,23,0,10,15,24,12,11.0,0,10,14,21,11,11.363636363636363,1,7.6,2.6,0.32,Dropout +1,1,2,9238,1,1,147.0,1,19,38,9,8,135.8,1,0,0,1,0,1,19,0,0,6,8,6,12.714285714285714,0,0,6,12,5,11.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,106.0,1,19,37,9,7,109.5,1,0,0,1,0,0,19,0,0,7,8,7,13.025,0,0,8,9,8,13.811111111111112,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,110.0,1,37,37,9,10,140.0,0,0,1,0,1,0,43,0,0,6,16,2,10.0,0,0,6,12,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,105.0,1,19,37,8,8,102.6,0,1,0,1,0,0,21,0,0,6,13,4,12.0,0,0,6,17,2,11.5,0,11.1,0.6,2.02,Enrolled +1,17,6,9147,1,1,133.0,1,19,38,5,6,123.2,1,0,0,1,1,0,20,0,0,5,7,3,12.666666666666666,1,0,5,12,2,12.5,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9670,1,1,160.0,1,34,34,99,99,100.1,0,0,0,0,1,0,35,0,6,10,10,7,12.142857142857142,0,4,9,9,4,12.25,0,7.6,2.6,0.32,Dropout +4,7,1,9500,1,40,130.0,1,37,37,3,3,130.0,1,0,0,1,0,0,32,0,0,7,16,4,13.625,0,0,7,8,7,12.6375,0,12.4,0.5,1.79,Enrolled +1,43,2,9853,1,1,118.0,1,19,1,5,4,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.25,0,0,6,8,4,11.5,0,10.8,1.4,1.74,Enrolled +1,43,1,8014,0,1,117.0,1,37,37,9,9,100.0,0,0,0,1,0,0,27,0,0,6,6,4,12.5,0,0,6,6,6,14.333333333333334,0,13.9,-0.3,0.79,Dropout +1,53,1,9238,1,42,130.0,1,1,19,5,5,128.3,0,0,1,0,0,0,23,0,5,9,12,7,13.571428571428571,0,4,9,14,4,13.25,0,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,127.0,1,19,38,4,5,120.7,1,0,1,1,0,0,18,0,0,5,11,1,12.0,0,0,5,9,3,12.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,38,37,9,4,150.0,1,0,0,1,1,1,22,0,0,6,9,6,13.428571428571429,0,1,6,12,6,13.625,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,1,133.1,1,37,29,0,4,120.5,0,0,0,0,1,0,32,0,0,6,10,2,11.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,121.0,1,37,19,9,9,141.4,0,0,1,0,1,0,29,0,0,5,7,4,11.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,120.0,1,38,37,9,7,108.0,0,0,0,1,1,1,37,0,1,7,9,6,11.857142857142858,0,1,6,7,5,12.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,153.0,6,37,37,9,9,131.8,1,0,0,1,0,0,18,1,0,7,7,6,14.716666666666669,0,0,7,7,6,14.716666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,153.0,1,38,19,9,5,138.5,1,0,0,1,0,1,20,0,0,8,8,7,15.798571428571426,0,0,8,8,7,15.798571428571426,0,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,107.0,1,12,19,5,5,102.8,1,0,0,1,0,0,20,0,0,6,16,1,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,6,9238,1,1,135.0,1,1,19,7,7,126.6,1,0,0,1,0,1,19,0,0,6,8,6,13.625,0,0,6,7,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,124.0,1,1,19,123,103,113.9,1,1,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,144.0,1,37,37,7,9,126.8,1,0,1,0,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9556,1,1,120.0,1,37,37,9,4,150.0,0,0,0,0,0,0,50,0,0,7,18,6,10.25,0,0,7,14,4,11.25,0,12.7,3.7,-1.7,Dropout +1,43,3,171,1,1,120.0,1,37,37,9,9,143.3,1,0,0,1,0,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,140.0,1,38,19,4,10,122.3,1,0,0,1,0,0,19,0,0,6,9,4,13.0,0,0,6,9,4,12.25,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,157.0,1,3,38,1,5,136.7,1,0,0,1,0,0,22,0,0,6,11,4,12.5,1,0,6,13,3,13.666666666666666,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,9,130.0,0,0,0,0,1,0,42,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,150.0,1,3,1,2,8,153.8,1,0,0,1,0,0,21,0,7,11,15,10,14.5,0,4,9,15,8,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,130.0,1,2,1,2,7,126.2,1,0,0,1,0,0,20,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.5,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,142.0,1,37,37,9,9,132.9,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,43,1,9238,1,1,124.0,1,1,1,3,1,118.8,1,0,1,0,0,0,22,0,6,10,16,6,11.833333333333334,0,2,7,8,2,13.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,1,19,4,5,100.0,0,0,0,1,1,0,25,0,0,5,13,1,11.0,0,0,5,11,1,10.0,0,13.9,-0.3,0.79,Enrolled +1,17,5,9238,1,1,122.0,1,37,37,7,5,112.9,1,0,0,1,0,1,19,0,0,6,8,6,12.125,0,0,6,7,6,12.714285714285714,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,97.5,1,0,0,1,1,0,29,0,0,6,10,0,0.0,1,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,171,1,1,140.0,1,1,3,3,3,138.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,132.0,1,1,1,3,3,119.4,1,0,0,1,0,1,18,0,0,6,7,6,13.833333333333334,0,0,6,11,6,13.5,0,8.9,1.4,3.51,Graduate +1,42,1,9500,1,1,100.0,1,3,19,2,8,153.0,0,0,0,1,1,0,22,0,3,6,7,3,14.5,0,4,7,8,4,14.375,0,15.5,2.8,-4.06,Enrolled +1,1,1,9254,1,1,123.0,1,38,37,5,5,125.1,0,0,0,1,0,0,19,0,0,6,12,4,11.0,0,0,6,6,4,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9130,1,1,133.0,1,38,38,5,8,120.4,1,0,0,1,0,0,20,0,0,5,9,4,12.0,1,0,5,6,5,13.4,0,9.4,-0.8,-3.12,Graduate +1,17,4,9773,1,1,129.0,1,3,1,2,7,132.5,1,0,0,1,1,0,21,0,0,6,7,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Enrolled +4,39,1,9003,1,19,133.1,1,37,37,9,9,110.0,0,0,0,1,1,0,49,0,6,12,17,7,12.0,0,3,12,19,9,11.22222222222222,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,133.0,1,3,1,9,3,123.2,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,5,14.6,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,137.0,1,38,19,9,5,129.3,1,0,0,1,0,0,19,0,0,8,12,7,12.071428571428571,0,0,8,12,7,12.071428571428571,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,123.0,1,3,1,2,9,127.6,1,0,0,1,1,0,26,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,19,133.1,1,19,19,9,5,101.0,1,0,0,1,0,0,26,0,0,6,21,3,12.666666666666666,0,0,6,15,2,11.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,116.0,1,19,19,7,7,111.1,1,0,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9070,1,1,147.0,1,3,1,2,3,149.8,1,0,0,1,1,0,20,0,5,12,12,11,14.272727272727272,0,5,12,12,11,14.818181818181818,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,100.0,1,37,37,7,9,100.0,1,0,0,1,0,1,19,0,0,8,8,7,13.058571428571428,0,0,8,8,7,13.058571428571428,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,141.0,1,38,38,7,7,132.5,1,0,0,1,0,1,18,0,0,8,8,8,13.39125,0,0,8,8,8,13.39125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,168.0,1,1,1,5,5,161.0,1,0,0,1,1,0,18,0,0,7,7,7,16.142857142857142,0,0,8,9,0,0.0,0,16.2,0.3,-0.92,Dropout +5,39,1,9003,1,19,133.1,1,19,1,9,9,119.4,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,114.0,1,1,19,9,9,111.9,1,0,0,1,1,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.5,0,7.6,2.6,0.32,Enrolled +1,39,1,9500,1,1,130.0,1,37,37,3,7,143.8,0,0,0,1,1,0,27,0,0,8,8,7,15.57,0,0,8,8,7,15.57,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,133.1,1,19,19,9,7,100.0,0,0,0,1,1,0,21,0,0,5,7,4,10.75,0,0,5,10,2,11.0,3,16.2,0.3,-0.92,Dropout +1,17,3,9853,1,1,132.0,1,34,34,0,0,131.3,1,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,4,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,157.0,1,37,37,9,9,143.0,0,0,0,1,1,0,18,0,0,8,8,7,13.4,0,0,8,8,7,13.4,0,12.7,3.7,-1.7,Graduate +5,42,1,9254,1,2,120.0,1,37,37,4,9,120.0,0,0,0,1,0,0,32,0,9,15,21,13,12.692307692307692,0,12,15,22,13,12.384615384615383,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,6,1,1,192,144,129.8,0,0,0,1,1,0,24,1,0,7,7,7,13.571428571428571,0,0,6,9,5,13.4,0,8.9,1.4,3.51,Enrolled +1,1,2,9500,1,1,139.0,1,38,37,9,7,125.0,1,0,0,1,0,1,19,0,0,7,7,6,12.9,0,0,7,7,6,12.9,0,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,133.1,1,1,19,9,5,95.0,1,0,0,1,0,1,19,0,0,6,12,6,11.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,180.0,1,37,37,7,4,153.8,1,0,0,1,0,1,20,0,0,5,5,5,13.8,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,4,9773,1,1,133.0,1,1,19,9,9,119.7,1,0,0,1,1,0,19,0,0,6,7,6,12.333333333333334,0,0,6,10,5,13.2,0,16.2,0.3,-0.92,Graduate +1,17,5,9500,1,1,124.0,1,3,38,2,1,119.8,0,0,0,1,1,0,19,0,0,8,11,7,13.867142857142856,0,0,8,11,7,13.867142857142856,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,133.1,1,37,37,9,9,148.2,1,0,1,1,0,0,27,0,0,6,11,6,12.125,0,0,6,16,5,12.0,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,19,133.1,1,37,37,9,7,114.8,0,0,1,1,1,0,50,0,0,5,10,5,11.857142857142858,0,0,5,17,5,11.5,5,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,133.1,1,1,19,4,8,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,180.0,41,37,37,9,9,152.7,1,0,1,0,1,0,27,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9085,1,1,130.0,1,19,19,90,7,115.8,0,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,161.0,1,38,37,5,5,154.4,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,148.0,1,1,38,4,5,148.7,0,0,0,1,1,0,18,0,0,5,6,5,16.2,0,0,5,8,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,19,38,9,7,131.3,1,0,1,1,0,0,18,0,0,6,7,5,13.6,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,122.0,1,1,1,4,9,112.9,1,0,0,1,0,0,22,0,0,6,14,4,12.25,0,0,6,11,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,4,9500,1,1,142.0,1,38,38,9,8,129.8,1,0,0,1,0,0,18,0,0,8,8,7,12.242857142857144,0,0,8,8,7,12.242857142857144,0,12.7,3.7,-1.7,Graduate +3,39,1,9003,1,1,170.0,1,1,37,6,6,170.0,0,0,1,1,0,0,47,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Enrolled +1,1,2,9147,1,1,130.0,1,37,37,9,9,117.8,0,0,0,1,0,0,18,0,0,5,8,2,10.0,0,0,5,9,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9147,1,1,140.0,1,37,37,9,7,132.3,1,0,0,1,0,0,20,0,0,5,9,1,10.0,0,0,5,10,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,132.0,1,2,1,9,9,126.4,1,1,0,1,0,1,18,0,0,6,9,6,11.166666666666666,0,0,6,11,5,12.4,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,140.0,1,1,3,9,2,140.0,1,0,0,1,0,1,20,0,0,6,8,6,15.625,0,0,6,8,6,15.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,117.0,1,1,19,4,4,109.3,0,0,0,1,1,0,19,0,0,6,11,4,12.25,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,176.0,1,3,38,3,7,169.7,0,0,0,1,0,1,18,0,0,7,7,7,16.9,0,0,8,9,8,16.37777777777778,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,133.1,1,37,38,7,7,98.0,1,0,0,1,1,0,23,0,0,5,8,4,11.4,0,0,5,7,4,11.0,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,136.0,1,3,3,2,2,128.7,0,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,12,38,4,9,107.0,1,0,0,1,0,0,19,0,0,6,11,5,10.6,0,0,6,10,6,11.714285714285714,0,11.1,0.6,2.02,Dropout +1,17,1,9130,1,1,156.0,1,2,9,3,5,166.9,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,12.5,0,7.6,2.6,0.32,Graduate +1,17,1,9130,1,1,123.0,1,19,3,3,2,121.6,1,0,1,1,0,1,19,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,129.0,1,1,1,9,9,124.8,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9119,1,1,125.0,1,19,1,5,4,121.5,1,0,0,1,1,0,20,0,0,5,7,5,15.8,0,0,5,7,5,14.571428571428571,0,11.1,0.6,2.02,Dropout +1,17,1,9085,1,1,163.0,14,37,37,9,9,150.8,1,0,0,1,0,0,19,1,0,6,13,6,16.0,0,0,6,8,6,14.5,0,15.5,2.8,-4.06,Graduate +1,7,2,9130,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,25,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,135.0,1,1,2,9,1,134.3,1,0,0,1,0,0,19,0,0,5,7,5,14.2,2,0,5,7,5,13.8,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,19,37,6,6,120.0,0,0,0,1,0,1,32,0,0,8,9,7,12.757142857142856,0,0,8,9,7,12.757142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,1,130.0,1,37,37,9,7,133.0,1,0,0,1,0,1,26,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,143.0,1,1,19,4,6,135.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +4,43,2,9991,0,38,133.1,1,3,1,2,9,125.4,0,0,0,1,1,0,39,0,0,2,5,0,0.0,0,0,4,4,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,140.0,1,3,1,2,4,124.1,0,0,0,1,0,0,18,0,0,5,12,5,14.5,2,0,5,5,5,13.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,37,38,175,103,127.0,0,0,0,1,1,0,34,0,0,5,5,5,15.8,0,0,5,5,5,16.8,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,151.0,1,1,3,1,1,111.0,0,0,0,1,1,0,28,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,133.0,1,37,19,9,8,141.4,0,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,133.1,1,38,37,5,5,108.0,0,0,0,1,0,1,20,0,0,6,8,6,12.125,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,9147,1,1,118.0,1,3,19,2,4,113.8,1,0,0,1,0,0,21,0,0,5,9,3,11.666666666666666,0,0,5,9,4,11.75,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,1,1,3,5,141.7,0,0,0,1,0,1,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,42,1,9119,1,1,130.0,1,19,37,9,3,135.0,0,0,1,1,1,0,25,0,0,5,5,0,0.0,0,2,6,7,2,14.0,0,13.9,-0.3,0.79,Dropout +4,39,2,9147,1,19,133.1,1,37,37,9,7,116.4,0,0,1,0,1,0,70,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,148.0,1,19,38,9,8,134.8,1,0,0,1,1,0,18,0,0,7,7,6,13.35,0,0,7,7,6,13.35,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,116.0,1,19,19,4,7,110.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,12.0,0,11.1,0.6,2.02,Graduate +1,1,5,9147,1,1,122.0,1,38,38,9,9,117.5,1,0,1,0,0,0,22,0,0,5,12,2,11.5,0,0,5,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,122.0,1,37,37,9,9,125.9,1,0,0,1,1,1,20,0,0,6,6,6,15.5,0,0,6,7,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,171,1,1,127.0,1,1,1,9,5,124.2,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9147,1,39,117.4,1,19,1,4,9,117.4,1,0,0,1,0,0,21,0,4,7,10,6,11.333333333333334,0,1,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,150.0,1,37,38,9,9,146.2,0,0,0,1,0,0,30,0,0,5,11,3,10.333333333333334,0,0,5,10,4,12.8,0,12.4,0.5,1.79,Enrolled +1,17,1,9254,1,1,158.0,1,37,37,5,9,138.1,1,0,0,1,0,0,19,0,0,6,8,4,12.5,0,0,6,11,1,14.0,0,7.6,2.6,0.32,Dropout +1,7,1,9500,1,3,140.0,1,1,37,9,5,140.0,0,0,0,1,0,0,30,0,0,8,8,7,15.675714285714283,0,0,8,8,7,15.675714285714283,0,10.8,1.4,1.74,Graduate +1,44,1,9238,1,39,140.0,1,1,1,9,3,135.7,1,0,0,1,0,0,20,0,3,6,6,6,12.833333333333334,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +2,7,1,171,1,3,120.0,1,19,19,9,9,130.0,1,0,0,1,1,0,37,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,10,100.0,1,34,34,0,0,113.0,1,0,0,1,0,0,30,0,3,9,11,9,12.666666666666666,0,2,7,7,7,12.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,1,8014,0,1,125.0,1,37,37,9,7,114.9,0,0,0,1,0,0,29,0,8,11,14,11,12.75,0,3,7,7,7,13.428571428571429,0,9.4,-0.8,-3.12,Graduate +1,18,6,9500,1,1,124.0,1,37,37,9,7,117.8,0,0,0,1,0,1,20,0,0,8,8,7,12.791428571428572,1,0,8,8,7,12.791428571428572,1,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,109.0,1,2,3,3,3,111.8,1,0,1,1,1,0,25,0,0,6,8,6,11.571428571428571,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,149.0,1,1,1,9,3,156.0,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +2,44,1,9119,1,39,160.0,1,37,37,9,9,160.0,0,0,1,1,1,0,41,0,3,7,15,5,14.333333333333334,0,1,6,16,6,14.636363636363637,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,120.0,6,4,4,3,6,120.0,0,0,1,0,0,0,20,1,2,6,13,3,11.666666666666666,0,1,6,11,3,12.0,0,12.4,0.5,1.79,Dropout +5,1,3,9085,1,1,133.0,1,19,19,4,7,119.7,1,0,0,1,0,0,21,0,0,5,13,5,12.2,2,0,5,10,3,11.333333333333334,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9085,1,1,127.0,1,37,37,9,9,122.8,1,0,0,1,0,0,19,0,0,5,10,2,14.5,1,0,5,9,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,171,1,39,140.0,1,1,1,9,9,140.0,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9773,1,1,132.0,1,1,1,4,9,124.3,1,0,1,1,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +4,39,2,9670,1,19,133.1,1,19,1,90,90,103.0,0,0,0,0,1,0,34,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,26,1,9147,1,2,133.1,1,34,34,0,0,121.5,1,0,0,1,0,0,31,0,13,15,17,13,11.615384615384617,0,11,14,14,11,12.545454545454543,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,143.0,1,19,38,9,6,131.5,1,0,0,1,1,1,18,0,0,7,8,7,12.5125,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,17,1,9147,1,1,123.0,1,1,19,3,4,122.0,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,171,1,1,133.1,1,3,1,2,3,141.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,19,37,9,4,120.0,0,0,0,1,0,1,25,0,0,8,8,8,13.3675,0,0,8,8,8,13.3675,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,1,1,3,3,125.7,1,0,0,1,0,0,18,0,0,6,10,6,11.571428571428571,0,0,6,8,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,121.0,1,37,37,5,5,118.9,1,0,0,1,0,0,21,0,0,7,7,7,14.428571428571429,0,0,8,9,8,14.511111111111113,0,16.2,0.3,-0.92,Graduate +1,51,1,9500,1,1,129.0,1,37,38,3,3,137.8,1,0,0,1,0,1,20,0,2,7,7,7,16.13142857142857,0,0,8,9,8,15.52222222222222,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,144.0,1,3,1,2,4,134.9,1,0,1,1,0,0,18,0,0,6,13,6,10.857142857142858,0,0,6,10,4,11.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9254,1,1,113.0,1,1,1,2,3,110.2,1,0,0,1,1,0,21,0,0,6,10,4,11.5,0,0,6,10,2,10.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,1,133.1,1,1,19,4,5,120.0,1,0,0,1,1,0,29,0,0,5,11,1,18.0,2,0,5,10,3,13.333333333333334,2,10.8,1.4,1.74,Dropout +1,39,1,9254,1,19,133.1,1,19,1,9,5,97.0,0,0,1,0,1,0,36,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9500,1,1,126.0,1,1,19,6,7,115.5,1,0,0,1,0,1,19,0,0,7,8,7,12.135714285714286,0,0,8,10,7,13.328571428571427,0,12.4,0.5,1.79,Graduate +1,42,1,9853,1,1,141.0,1,37,19,9,3,133.0,0,0,0,1,0,0,20,0,6,14,22,12,12.153846153846152,0,5,12,18,10,12.9,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,19,133.1,1,19,19,4,9,139.9,1,0,0,1,0,1,24,0,1,6,7,6,12.5,0,0,6,11,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,2,9254,1,1,140.0,1,19,19,9,9,126.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,108.0,1,34,38,0,3,105.9,0,0,0,1,1,0,20,0,0,6,11,4,10.75,0,0,6,13,2,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,114.0,1,19,19,9,7,107.7,0,0,0,1,0,0,19,0,0,5,7,2,10.0,0,0,5,11,2,14.0,0,10.8,1.4,1.74,Dropout +1,17,1,171,1,1,130.0,1,3,1,9,9,126.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.1,1,19,37,0,0,137.0,1,0,0,1,0,0,19,0,0,6,10,0,0.0,4,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9119,1,1,117.0,1,1,2,3,2,119.8,1,0,0,1,1,0,19,0,0,5,10,2,11.0,0,0,6,10,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9147,1,1,115.0,1,1,37,4,9,117.1,1,0,1,1,0,0,22,0,0,5,5,5,13.8,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,130.0,1,12,19,4,5,118.5,0,1,0,1,0,1,18,0,0,6,6,6,12.0,0,0,6,8,6,11.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.0,1,34,37,5,5,120.4,0,0,0,0,0,0,21,0,0,6,12,2,11.5,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,171,1,39,150.0,1,19,1,9,9,154.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,43,1,9147,1,1,140.0,1,37,37,6,6,122.9,0,0,0,1,0,0,55,0,0,5,10,1,10.0,0,0,5,8,2,12.0,2,16.2,0.3,-0.92,Dropout +1,42,1,9070,1,1,100.0,1,3,2,2,2,115.9,0,0,0,1,0,0,29,0,9,10,15,9,11.555555555555555,0,7,11,17,10,11.9,0,9.4,-0.8,-3.12,Enrolled +1,17,1,171,1,1,128.0,1,1,1,4,10,134.7,0,0,0,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,141.0,1,1,1,9,9,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.328571428571427,0,0,8,8,7,13.328571428571427,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,7,133.9,0,0,0,1,0,0,30,0,0,5,7,5,11.4,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Dropout +1,43,1,9773,1,1,119.0,1,19,37,5,5,105.0,1,0,0,1,0,0,23,0,0,6,11,3,11.333333333333334,0,0,6,7,2,11.0,0,16.2,0.3,-0.92,Enrolled +2,43,1,9991,0,1,140.0,1,37,37,4,1,122.7,0,0,0,1,1,0,38,0,0,5,5,5,14.6,0,0,5,6,5,14.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,135.0,1,37,1,3,5,121.0,0,0,0,1,0,0,21,0,0,6,11,5,11.2,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,35,0,0,5,5,5,11.6,0,0,5,6,5,11.166666666666666,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,123.0,1,3,1,2,3,124.1,1,0,0,1,0,0,18,0,0,6,7,2,14.5,0,0,6,6,1,10.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9670,1,1,132.0,1,19,1,5,4,119.1,0,0,1,1,1,0,18,0,0,6,6,3,12.666666666666666,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,5,9254,1,1,130.0,1,37,38,9,9,122.7,1,0,1,1,1,1,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9147,1,1,117.0,1,1,38,8,9,117.0,1,0,0,1,1,0,19,0,0,5,5,4,10.75,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,140.0,1,19,19,9,6,135.4,1,0,0,1,0,0,24,0,0,6,10,5,11.8,0,0,6,13,4,11.25,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,162.0,1,37,37,9,6,132.0,0,0,1,1,1,0,25,0,0,5,8,4,11.0,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,139.0,1,19,38,4,9,128.5,1,0,0,1,0,0,19,0,0,8,10,6,13.066666666666668,0,0,8,10,6,13.066666666666668,0,12.7,3.7,-1.7,Dropout +4,39,1,9991,0,1,130.0,1,38,19,9,7,148.0,0,0,0,1,0,1,31,0,0,5,11,4,11.25,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,43,1,9500,1,1,131.0,1,1,38,5,5,118.8,0,0,0,1,0,1,18,0,0,8,8,7,11.857142857142858,0,0,8,8,7,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,5,9238,1,1,126.0,1,38,1,9,5,125.7,1,0,0,1,0,1,19,0,0,6,8,6,11.0,0,0,6,13,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,53,1,9085,1,42,140.0,1,1,1,4,3,140.0,1,0,1,1,0,0,21,0,7,9,10,8,13.25,0,4,9,14,5,12.2,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,128.0,1,1,1,4,5,120.8,1,0,0,1,0,1,19,0,0,7,9,7,13.507142857142856,0,0,8,12,8,13.05,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,139.0,1,37,37,9,6,133.5,1,0,0,1,0,1,18,0,0,8,8,7,15.228571428571428,0,0,8,8,7,15.228571428571428,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,150.0,1,38,38,4,1,150.0,1,0,0,1,1,0,20,0,1,6,11,6,13.8,0,1,6,7,6,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,133.1,1,1,1,4,4,95.0,0,0,0,1,1,0,20,0,0,5,14,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9853,1,1,140.0,1,37,19,9,8,122.3,0,0,0,1,0,0,22,0,0,6,9,5,13.6,0,0,6,8,5,12.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,120.0,1,38,19,5,4,118.3,0,0,0,1,0,0,20,0,2,6,6,6,12.166666666666666,0,0,6,7,5,14.0,0,12.7,3.7,-1.7,Enrolled +1,7,1,9130,1,3,140.0,1,2,38,2,3,140.0,1,0,0,0,1,0,18,0,2,5,7,2,13.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,122.0,1,9,19,90,6,103.4,0,0,0,1,0,0,19,0,0,5,6,5,14.4,0,0,5,6,5,13.0,0,7.6,2.6,0.32,Graduate +2,39,1,9070,1,19,133.1,1,37,37,9,10,126.3,0,0,0,0,1,0,38,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,160.0,1,38,38,7,7,147.8,0,0,0,1,0,0,20,0,0,7,11,6,11.757142857142856,0,0,8,12,6,13.083333333333334,0,15.5,2.8,-4.06,Enrolled +1,39,1,9238,1,12,100.0,1,37,37,9,9,124.3,0,0,0,1,1,0,47,0,3,9,9,9,13.11111111111111,0,3,7,7,7,14.857142857142858,0,10.8,1.4,1.74,Graduate +1,18,2,8014,0,1,117.0,1,3,1,3,4,111.8,1,0,0,1,0,1,19,0,0,6,8,6,10.833333333333334,0,0,6,9,6,11.5,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,38,37,7,7,140.0,0,0,0,1,1,0,24,0,0,6,15,4,10.5,0,0,6,16,4,12.5,0,15.5,2.8,-4.06,Dropout +1,43,1,9853,1,1,140.0,1,3,1,3,3,128.3,1,0,0,1,0,0,35,0,19,21,21,21,12.61904761904762,0,13,19,19,19,12.789473684210526,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,127.0,1,37,38,9,9,120.7,1,0,1,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,8014,0,1,161.0,1,19,37,4,10,100.0,0,0,0,1,1,0,44,0,9,13,18,13,11.846153846153848,0,9,11,11,11,12.0,0,12.7,3.7,-1.7,Graduate +1,16,4,9500,1,1,145.0,1,1,1,4,4,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.11,0,0,8,8,8,13.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9853,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,28,0,14,15,25,14,12.428571428571429,1,8,14,22,11,11.909090909090908,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,0,19,0,0,6,10,5,11.571428571428571,0,0,6,10,3,13.0,0,16.2,0.3,-0.92,Dropout +1,1,2,171,1,1,127.0,1,2,19,5,5,139.6,1,0,1,0,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,148.0,1,19,19,4,4,133.8,0,0,0,1,0,0,18,0,0,8,8,7,13.485714285714284,0,0,8,8,7,13.485714285714284,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,140.0,1,19,19,1,1,129.5,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,171,1,1,129.0,1,37,37,9,9,122.0,1,0,0,0,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,1,12,3,10,131.6,1,0,0,1,0,0,18,0,0,7,8,7,13.135,0,0,8,9,8,13.244444444444444,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,130.0,1,38,37,3,6,135.6,1,0,0,1,0,1,19,0,0,6,9,5,12.0,0,0,6,10,2,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,51,1,9991,0,39,120.0,1,1,4,4,10,118.1,0,0,0,1,1,0,28,0,13,15,17,13,12.0,0,9,13,13,9,11.333333333333334,0,8.9,1.4,3.51,Dropout +1,39,1,9853,1,19,133.1,1,19,4,9,4,116.0,1,0,0,1,0,0,29,0,0,7,14,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9238,1,1,133.1,1,1,37,8,9,118.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,4,9500,1,1,125.0,1,19,1,1,1,117.8,1,0,0,1,0,0,18,0,0,7,10,7,13.03,0,0,8,8,8,13.21875,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,141.0,1,1,38,4,5,125.0,1,0,0,1,0,1,18,0,0,8,8,8,12.32,0,0,8,8,8,12.32,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,121.0,1,38,38,7,5,120.0,1,0,0,1,0,0,18,0,0,6,10,3,12.0,0,0,6,8,4,10.25,0,10.8,1.4,1.74,Enrolled +1,17,3,9500,1,1,142.0,1,3,3,3,3,132.9,1,0,0,1,1,0,18,0,0,7,8,5,14.2,0,0,7,9,6,12.4,0,12.4,0.5,1.79,Dropout +1,44,1,9238,1,39,140.0,1,37,19,191,102,136.1,1,0,1,1,0,0,21,0,3,6,8,3,12.0,0,2,6,6,2,12.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9991,0,2,140.0,1,3,3,2,2,155.7,1,0,0,1,1,0,35,0,0,1,1,0,0.0,1,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9119,1,1,135.0,1,12,19,5,5,121.0,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,135.0,1,3,3,2,2,123.0,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,117.0,1,1,1,4,4,117.7,1,0,0,1,1,0,20,0,0,6,9,6,14.666666666666666,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,43,1,171,1,1,120.0,1,3,3,2,2,120.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,1,38,1,7,120.0,0,0,0,1,0,0,19,0,0,7,7,6,14.566666666666668,0,0,7,7,6,14.566666666666668,0,7.6,2.6,0.32,Graduate +1,17,3,9238,1,1,122.0,1,19,19,7,7,117.5,1,0,0,1,0,0,19,0,0,6,7,5,10.8,0,0,6,9,6,10.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,1,37,37,9,9,144.2,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +4,39,1,9500,1,1,140.0,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,8,11,7,12.16,0,0,8,11,7,12.16,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,131.0,1,19,19,9,9,139.8,1,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,5,5,12.8,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,127.0,1,3,3,2,5,100.0,0,0,0,1,0,0,21,0,0,6,11,4,11.75,0,0,6,12,3,13.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,39,1,9085,1,1,133.1,1,3,19,2,9,110.0,0,0,0,1,0,0,28,0,0,6,15,4,12.0,0,0,6,14,4,12.0,0,11.1,0.6,2.02,Dropout +4,39,1,9500,1,19,133.1,1,38,1,9,4,120.0,0,0,0,1,0,1,35,0,0,8,9,8,13.63,1,0,8,9,8,13.63,1,9.4,-0.8,-3.12,Graduate +1,16,1,9085,1,1,150.0,1,3,3,2,1,153.5,1,0,0,1,0,0,19,0,0,6,7,6,15.714285714285714,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Dropout +1,1,1,9853,1,1,153.0,1,19,37,9,9,153.7,0,0,0,1,0,1,18,0,0,6,8,6,13.142857142857142,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,130.0,1,19,19,3,8,131.8,0,0,0,1,0,0,18,0,0,7,9,7,12.571428571428571,0,0,7,8,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,2,9853,1,1,131.0,1,1,1,2,9,121.9,1,0,0,1,0,0,20,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,136.0,1,3,3,3,3,130.8,0,0,0,1,0,0,18,0,0,7,7,7,14.05714285714286,0,0,8,9,8,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,126.0,1,1,19,4,0,120.1,0,1,0,1,0,1,20,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,1,120.0,1,3,2,2,6,120.0,1,0,0,1,1,0,21,0,4,9,14,7,11.285714285714286,2,2,8,15,4,12.25,0,12.7,3.7,-1.7,Enrolled +2,39,1,9130,1,19,133.1,1,2,1,2,9,157.0,1,0,0,1,1,0,44,0,1,5,13,4,14.0,3,1,5,9,4,15.5,2,10.8,1.4,1.74,Graduate +1,7,1,9853,1,3,150.0,1,19,19,4,5,150.0,0,0,1,0,0,0,25,0,1,6,7,6,14.428571428571429,0,0,6,7,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,51,1,9070,1,12,133.1,1,37,19,3,7,106.6,0,0,1,1,0,0,31,0,2,6,8,5,11.0,0,4,6,12,6,10.166666666666666,0,8.9,1.4,3.51,Enrolled +1,1,2,9085,1,1,157.0,1,3,3,5,2,153.9,1,0,0,1,0,0,18,0,0,6,7,6,16.571428571428573,0,0,6,6,6,15.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,2,171,1,1,117.0,1,1,19,3,3,121.6,1,0,0,1,0,0,22,0,6,12,12,12,12.916666666666666,0,4,11,16,11,14.5,0,8.9,1.4,3.51,Graduate +1,1,2,9147,1,1,113.0,1,38,38,9,5,107.4,1,0,0,1,1,0,20,0,0,5,12,3,10.5,0,0,5,10,4,11.25,0,12.4,0.5,1.79,Enrolled +1,39,2,9147,1,12,133.1,1,19,38,9,9,120.0,1,0,1,0,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,152.0,1,37,37,9,9,139.0,1,0,0,1,0,0,18,0,0,7,7,6,14.333333333333334,0,0,7,7,6,14.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,138.0,1,1,19,9,9,124.0,0,0,0,1,0,1,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9853,1,1,110.0,1,37,37,9,9,95.5,0,0,1,0,0,0,32,0,0,6,6,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9130,1,1,150.0,1,19,19,4,4,130.0,0,0,0,0,1,0,31,0,0,4,12,2,11.0,2,0,5,9,3,11.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,3,9119,1,1,138.0,1,1,19,4,3,125.4,1,0,0,1,1,1,18,0,0,5,9,4,12.25,0,0,5,9,3,12.333333333333334,0,8.9,1.4,3.51,Dropout +1,17,6,9147,1,1,120.0,1,37,38,9,9,115.5,1,0,1,0,1,0,19,0,0,5,8,4,12.5,0,0,5,9,5,10.5,0,8.9,1.4,3.51,Enrolled +1,1,3,9670,1,1,134.0,1,14,11,0,0,128.4,1,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,145.0,1,38,37,9,7,129.3,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,18,6,9500,1,1,126.0,1,37,37,5,5,122.8,1,0,0,1,0,0,18,0,0,8,8,8,12.93375,0,0,8,8,8,12.93375,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,133.0,1,1,1,4,4,129.2,1,0,0,1,0,0,19,0,0,5,9,2,11.0,0,0,5,12,2,10.0,0,7.6,2.6,0.32,Dropout +1,44,1,9070,1,39,120.0,1,1,19,4,7,120.0,0,0,1,0,1,0,20,0,0,6,11,0,0.0,6,0,6,12,0,0.0,12,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,136.0,1,19,38,9,9,121.7,0,1,0,1,0,1,20,0,0,6,9,6,11.875,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,126.0,1,1,1,9,10,126.7,1,0,0,1,0,1,20,0,0,6,6,6,14.166666666666666,0,0,6,9,6,13.0,0,8.9,1.4,3.51,Graduate +1,1,3,9085,1,1,134.0,1,38,19,9,5,129.1,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,4,13.5,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,133.1,1,1,37,9,9,117.0,0,0,1,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,5,9238,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,0,0,20,0,0,6,8,4,11.25,0,0,6,15,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,8014,0,40,140.0,1,19,37,5,9,148.0,0,0,0,1,0,0,37,0,7,11,11,11,13.727272727272728,0,4,8,8,8,14.75,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,137.0,1,3,38,1,9,131.4,0,0,0,0,1,0,19,0,0,5,13,4,10.0,0,0,5,7,3,11.333333333333334,0,15.5,2.8,-4.06,Dropout +1,1,2,9670,1,1,123.0,1,1,38,7,7,120.6,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,14.0,0,8.9,1.4,3.51,Graduate +1,17,2,9773,1,1,139.0,1,3,1,2,7,124.0,1,0,0,1,0,1,20,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,15.5,2.8,-4.06,Dropout +1,1,2,171,1,1,152.0,1,38,19,9,9,151.7,1,0,0,1,0,1,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,110.0,1,37,37,9,4,114.3,1,0,0,1,1,0,42,0,0,6,9,5,12.4,0,0,6,10,5,11.8,0,7.6,2.6,0.32,Enrolled +1,51,1,9991,0,1,120.0,1,38,3,5,3,128.2,0,0,1,1,1,0,24,0,3,10,15,7,10.714285714285714,0,3,10,11,9,12.555555555555555,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,141.0,1,3,2,2,2,133.3,1,0,0,1,1,0,18,0,0,6,13,4,13.75,0,0,6,8,5,11.2,0,13.9,-0.3,0.79,Enrolled +1,5,1,171,1,1,137.0,1,3,19,1,10,144.7,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,43,1,9003,1,1,130.0,1,37,1,5,4,130.0,0,0,0,1,1,0,25,0,8,14,24,8,12.5,2,6,13,23,10,11.6,0,15.5,2.8,-4.06,Dropout +1,18,1,9773,1,1,135.0,1,1,1,3,3,129.8,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,150.0,1,38,38,9,8,150.0,1,0,0,1,1,0,20,0,0,6,8,5,12.857142857142858,0,0,6,11,6,12.3,0,16.2,0.3,-0.92,Graduate +1,17,2,9773,1,1,150.0,1,1,1,4,5,130.8,0,0,0,1,1,0,20,0,0,6,15,2,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9773,1,1,123.0,1,1,1,4,7,125.1,1,0,1,1,1,1,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,15.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,4,9119,1,1,129.0,1,34,36,0,5,118.9,1,0,0,1,1,0,18,0,0,5,9,3,11.666666666666666,0,0,5,10,3,11.333333333333334,4,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,144.0,1,38,37,9,9,128.8,1,0,0,1,1,0,19,0,0,7,7,6,13.2,0,0,7,7,6,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,130.0,1,38,38,9,9,150.0,0,0,1,0,1,0,28,0,5,11,14,11,15.090909090909092,0,5,10,11,10,15.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,128.0,1,1,1,7,7,120.5,1,0,0,1,0,1,19,0,0,7,10,5,13.04,0,0,7,7,7,12.5,0,12.4,0.5,1.79,Enrolled +1,7,1,9500,1,3,140.0,1,3,1,4,4,140.0,0,0,0,1,0,0,26,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,134.0,1,19,19,1,1,120.4,1,0,0,1,1,0,18,0,0,6,10,6,14.7,0,0,6,10,6,12.0,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,147.0,1,1,38,4,8,141.1,1,0,0,1,0,0,20,0,0,7,9,6,13.0,0,0,8,8,8,14.2125,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,126.0,1,3,1,5,5,125.7,0,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,8,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +2,1,4,9853,1,1,134.0,1,37,37,5,7,122.5,0,1,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,148.0,1,38,38,4,9,131.6,0,0,0,1,1,1,18,0,0,6,8,6,15.5,0,0,6,9,4,15.5,0,11.1,0.6,2.02,Dropout +2,39,1,9085,1,9,133.1,1,1,1,4,4,120.0,1,0,0,0,1,0,29,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,39,1,9254,1,1,150.0,1,3,1,3,4,122.3,0,0,0,1,1,0,28,0,0,6,10,6,13.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,125.0,1,19,37,3,7,126.8,0,0,0,1,0,0,18,0,0,6,13,6,12.0,0,0,6,16,4,12.75,0,11.1,0.6,2.02,Enrolled +1,18,1,9670,1,1,128.0,1,19,3,9,7,120.0,1,0,0,1,0,0,19,0,0,6,8,6,14.125,0,0,6,10,5,14.5,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,160.0,1,2,1,4,4,137.3,1,0,0,1,0,0,19,0,0,6,7,5,13.4,0,0,6,6,5,12.8,0,12.7,3.7,-1.7,Graduate +2,39,1,9238,1,42,170.0,1,19,38,8,8,159.5,0,0,0,1,1,0,33,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9773,1,1,143.0,1,1,1,4,9,144.1,1,0,0,1,1,1,19,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,9991,0,1,130.0,1,37,37,9,9,127.8,0,0,0,1,1,0,37,0,0,5,7,4,10.75,0,0,5,7,3,11.333333333333334,0,7.6,2.6,0.32,Enrolled +1,51,1,9147,1,1,130.0,1,19,38,9,8,115.7,0,0,0,1,1,0,20,0,0,5,7,5,11.0,0,0,5,7,3,10.0,0,8.9,1.4,3.51,Enrolled +1,17,3,9773,1,1,135.0,1,1,19,5,7,135.0,0,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,135.0,1,1,1,9,9,133.3,0,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,6,9500,1,1,136.0,1,1,1,4,5,123.3,0,0,0,0,0,0,18,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,143.0,1,5,5,2,2,137.8,0,0,0,1,1,0,19,0,0,7,10,6,13.492857142857144,0,0,8,9,8,12.68888888888889,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,133.1,1,1,19,141,114,140.0,1,0,0,1,0,0,22,0,0,6,6,6,15.166666666666666,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,17,6,9670,1,1,117.0,1,38,19,0,1,114.6,0,0,0,0,1,0,19,0,0,6,9,4,11.25,0,0,6,11,3,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,133.1,1,1,19,4,10,145.8,0,0,0,1,1,0,34,0,0,6,15,5,13.333333333333334,0,0,6,15,5,12.4,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,129.0,1,1,37,4,9,118.2,0,0,0,1,1,0,19,0,0,5,5,5,10.8,0,0,5,5,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,7,1,9500,1,3,130.0,1,37,37,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,7,14.414285714285716,0,0,8,8,7,14.414285714285716,0,12.7,3.7,-1.7,Graduate +1,17,4,9670,1,1,135.0,1,38,38,9,7,127.0,1,0,0,1,0,0,18,0,0,6,10,6,12.25,0,0,6,9,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,126.0,1,1,1,90,90,119.0,1,0,1,1,1,0,20,0,0,6,10,1,12.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9773,1,1,120.0,1,1,38,5,5,121.4,0,0,0,0,0,0,20,0,0,6,7,4,13.0,0,0,6,7,5,13.8,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,136.0,1,1,38,9,9,130.8,1,0,0,1,0,0,18,0,0,5,7,5,14.4,1,0,5,5,5,13.6,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,131.0,1,19,37,9,9,123.8,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,144.0,1,19,19,9,9,142.6,1,0,0,1,0,1,18,0,0,6,7,6,14.166666666666666,0,0,6,10,4,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,126.0,1,38,38,7,8,126.7,1,0,0,1,0,0,19,0,0,6,11,4,12.75,0,0,6,7,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,3,171,1,1,125.0,1,37,37,5,10,120.5,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,7,1,9130,1,2,110.0,1,19,19,4,8,110.0,1,0,0,1,1,0,37,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,3,1,2,8,150.0,0,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,5,171,1,1,139.0,1,19,3,9,2,136.9,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,1,9147,1,1,100.0,1,38,38,5,5,101.8,1,0,0,1,0,0,24,0,0,5,5,5,10.8,0,0,5,11,2,11.0,0,10.8,1.4,1.74,Enrolled +1,44,2,9238,1,39,150.0,1,3,19,4,9,147.0,1,0,0,1,0,0,19,0,3,6,6,6,14.166666666666666,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,9,4,100.0,0,0,0,1,1,0,27,0,0,6,11,3,11.333333333333334,0,0,6,10,3,14.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9130,1,1,130.0,1,19,38,4,7,122.5,0,0,0,1,1,0,19,0,0,5,11,4,12.0,1,0,5,9,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,19,37,1,1,140.0,0,0,1,1,1,0,24,0,0,6,10,6,14.88888888888889,0,0,6,11,6,13.727272727272728,0,16.2,0.3,-0.92,Enrolled +1,17,1,9070,1,1,157.0,1,3,3,3,3,146.2,0,0,0,1,1,0,18,0,0,6,6,6,16.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,150.0,1,37,19,8,4,130.8,0,0,0,1,1,0,24,0,0,7,8,7,11.975,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,133.1,1,19,19,7,7,130.0,1,0,0,1,0,0,24,0,0,6,7,6,14.857142857142858,0,0,6,10,5,13.6,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,150.0,1,19,1,9,8,150.0,1,0,0,1,1,0,21,0,0,6,12,5,13.625,0,0,6,6,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,127.0,1,1,19,7,7,121.8,1,0,0,1,0,1,20,0,0,6,11,4,14.0,0,0,6,12,3,11.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9853,1,1,148.0,1,19,19,5,7,141.7,0,0,0,1,0,1,18,0,0,6,8,5,13.4,0,0,6,7,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,130.0,1,1,19,9,9,133.4,0,0,0,1,0,1,21,0,3,6,6,6,11.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,123.0,1,37,38,3,3,122.0,0,0,1,1,1,0,19,0,0,6,7,6,13.166666666666666,0,0,6,9,5,13.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9070,1,1,132.0,1,37,38,9,7,138.0,0,0,0,1,1,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,146.0,1,2,19,3,9,130.3,1,0,0,1,1,0,18,0,0,8,8,8,13.74625,0,0,8,8,8,13.74625,0,9.4,-0.8,-3.12,Graduate +1,44,1,171,1,39,140.0,1,3,3,2,2,140.0,0,0,1,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,116.0,1,3,1,3,4,115.7,0,0,0,0,1,0,22,0,0,5,10,4,11.5,0,0,5,11,4,14.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9670,1,1,130.0,1,19,37,4,5,118.8,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,8,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,124.0,1,37,37,7,9,121.2,0,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,9,6,10.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,127.0,1,19,37,9,3,120.7,1,0,0,1,0,0,20,0,0,6,6,5,13.2,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +2,43,1,9070,1,2,140.0,1,37,37,6,6,140.0,1,0,0,1,1,0,38,0,14,18,18,18,14.5,0,13,18,18,18,14.5,0,16.2,0.3,-0.92,Graduate +1,39,1,9500,1,1,100.0,1,3,1,2,5,121.3,1,0,0,1,0,0,34,0,0,8,11,7,11.705714285714285,0,0,8,11,7,11.705714285714285,0,10.8,1.4,1.74,Enrolled +1,39,1,9991,0,19,133.1,1,37,37,9,6,105.3,0,0,1,1,0,0,28,0,0,5,14,2,10.5,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,1,155.0,1,1,19,4,8,134.7,1,0,0,1,0,0,20,0,0,6,8,5,13.4,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,15,1,9119,1,1,160.0,32,1,3,143,152,160.0,0,0,1,1,0,0,19,1,0,6,11,2,13.5,1,0,5,11,2,11.0,0,8.9,1.4,3.51,Enrolled +1,53,1,9670,1,42,140.0,1,19,37,3,6,140.0,1,0,1,1,0,0,21,0,0,6,12,1,12.0,0,0,6,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9853,1,1,140.0,1,38,38,9,7,137.6,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,7,6,12.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,140.0,1,19,19,7,7,129.5,1,0,0,1,0,0,18,0,0,8,8,7,12.324285714285711,0,0,8,8,7,12.324285714285711,0,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,133.1,1,19,19,3,4,104.0,0,0,1,0,0,0,27,0,0,6,6,5,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,130.0,1,37,37,9,9,118.8,0,0,1,1,1,1,22,0,0,5,8,5,10.666666666666666,0,0,5,11,2,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,4,9500,1,1,136.0,1,1,1,9,1,133.0,1,0,0,1,0,0,19,0,0,7,8,5,13.98,0,0,7,8,5,13.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,143.0,1,38,38,9,9,138.8,1,0,0,1,0,0,31,0,0,7,9,7,15.46875,0,0,8,8,8,16.3875,0,11.1,0.6,2.02,Graduate +2,39,1,9147,1,1,140.0,1,37,37,6,10,131.8,0,0,0,1,0,0,35,0,0,5,6,4,14.2,0,0,5,10,4,11.857142857142858,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,1,130.0,1,4,1,2,9,120.0,0,0,0,0,0,0,26,0,0,6,8,6,15.428571428571429,0,0,6,7,5,14.5,0,11.1,0.6,2.02,Enrolled +1,1,4,9500,1,1,148.0,1,19,19,4,5,137.0,1,0,0,1,0,0,18,0,0,8,8,8,14.25,0,0,8,8,8,14.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,120.0,1,37,19,5,3,156.0,1,0,0,1,1,0,33,0,0,5,5,5,14.2,0,0,5,6,5,13.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9853,1,1,133.1,1,12,1,4,0,134.8,1,0,0,1,0,0,18,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,122.0,1,1,1,9,8,120.3,0,0,0,1,0,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,156.0,1,19,38,9,5,170.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,3,171,1,1,129.0,1,38,37,9,3,127.3,1,0,1,0,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,142.0,1,38,38,9,10,127.0,1,0,0,1,0,0,18,0,0,5,7,3,12.333333333333334,0,0,5,9,5,12.6,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,150.0,1,38,19,3,3,120.1,0,0,0,0,0,0,39,0,11,15,15,12,11.916666666666666,0,8,13,14,8,11.25,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,141.0,1,37,37,9,9,126.7,1,0,1,1,0,1,20,0,0,6,9,6,13.333333333333334,0,0,6,10,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,43,3,9147,1,1,127.0,21,3,37,3,3,117.9,1,0,0,1,0,0,22,1,0,5,8,1,10.0,0,0,5,8,2,13.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,1,120.0,1,1,19,4,7,110.0,0,0,0,1,1,0,27,0,0,5,13,3,10.75,0,0,5,9,3,10.333333333333334,0,15.5,2.8,-4.06,Dropout +2,42,1,9254,1,1,136.0,1,2,2,134,112,130.0,1,0,0,1,1,0,22,0,2,6,13,4,11.5,0,2,6,12,2,12.5,0,7.6,2.6,0.32,Dropout +1,18,1,9119,1,1,122.0,1,19,1,90,3,116.1,1,0,1,0,1,0,24,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9500,1,1,120.0,1,2,4,4,5,136.6,0,0,0,1,1,0,23,0,0,7,14,5,11.94,0,0,7,14,6,12.2,0,13.9,-0.3,0.79,Dropout +1,18,1,9070,1,1,143.0,1,38,38,7,5,141.6,0,0,0,1,0,1,19,0,6,12,12,11,13.090909090909092,0,5,11,12,11,12.083333333333334,0,10.8,1.4,1.74,Graduate +1,43,1,9119,1,1,140.0,1,37,38,5,7,146.5,0,0,0,1,1,0,39,0,0,5,10,3,17.333333333333332,0,0,5,11,1,17.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,125.0,1,19,19,9,9,121.5,1,0,0,1,0,1,19,0,0,6,9,6,10.857142857142858,0,0,6,7,6,11.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,1,0,0,1,0,0,23,0,1,6,12,4,13.4,0,1,6,17,2,13.5,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,159.0,1,3,3,2,2,165.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,127.0,1,3,1,2,9,119.3,1,0,0,1,0,0,20,0,0,7,7,7,14.105714285714289,0,0,8,8,8,13.6625,0,11.1,0.6,2.02,Graduate +1,17,6,9238,1,1,117.0,1,1,38,4,7,114.6,0,0,0,1,0,1,18,0,0,6,7,6,12.142857142857142,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9119,1,1,148.0,1,19,19,9,8,129.8,0,0,0,0,1,1,18,0,0,5,6,5,15.0,0,0,5,6,5,14.2,0,8.9,1.4,3.51,Enrolled +1,17,4,9119,1,1,127.0,1,19,19,5,5,120.4,1,0,1,0,1,0,18,0,0,5,12,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9500,1,1,144.0,1,19,1,5,3,141.0,1,0,0,1,0,1,19,0,0,8,8,7,12.485714285714286,0,0,8,8,7,12.485714285714286,0,12.7,3.7,-1.7,Graduate +1,17,3,9556,1,1,126.0,1,19,19,9,4,119.0,1,0,0,1,0,1,19,0,0,7,8,7,12.142857142857142,0,0,8,8,8,13.375,0,16.2,0.3,-0.92,Dropout +1,1,4,9119,1,1,126.0,1,3,19,2,9,123.6,1,0,0,1,1,0,18,0,0,5,6,5,12.4,0,0,5,9,3,13.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,120.0,1,1,2,144,123,125.3,0,0,1,1,1,0,30,0,0,7,12,4,14.4,0,0,7,9,6,13.5,0,12.4,0.5,1.79,Enrolled +1,39,1,9070,1,1,130.0,1,1,19,4,4,110.0,1,0,0,1,0,0,24,0,0,6,6,6,15.166666666666666,0,0,6,6,2,15.5,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,37,37,90,5,115.5,0,0,0,0,1,0,33,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,130.0,1,38,38,9,9,120.0,0,0,0,1,0,0,27,0,0,5,12,5,10.6,0,0,5,10,5,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9853,1,1,141.0,1,3,1,1,5,130.2,1,0,0,1,0,0,19,0,0,6,8,5,11.4,1,0,6,7,4,10.75,0,12.7,3.7,-1.7,Enrolled +2,1,1,9500,1,1,156.0,1,1,1,9,10,135.5,0,0,0,1,0,0,18,0,0,8,8,7,13.9,0,0,8,8,7,13.9,0,12.7,3.7,-1.7,Graduate +2,7,1,8014,0,3,170.0,1,19,19,4,4,170.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,2,9147,1,1,134.0,1,37,19,9,8,126.3,1,0,0,1,0,1,18,0,0,5,8,5,11.8,0,0,5,10,5,11.6,3,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,122.0,1,12,12,5,7,126.6,1,0,0,1,0,0,18,0,0,6,8,6,14.625,0,0,6,9,6,14.142857142857142,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,38,38,9,7,138.8,1,0,0,1,0,0,19,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,132.0,1,37,37,5,7,127.5,1,0,0,1,0,0,20,0,0,8,8,8,12.48375,0,0,8,8,8,12.48375,0,9.4,-0.8,-3.12,Graduate +1,16,2,9238,1,1,130.0,1,37,37,5,6,126.9,1,0,0,1,0,0,18,0,0,6,8,6,13.571428571428571,0,0,6,11,5,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,110.0,1,3,2,3,3,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,127.0,1,2,19,4,5,121.8,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,5,14.0,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,12,133.1,1,38,19,9,8,138.3,1,0,1,0,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9147,1,19,133.1,1,3,1,3,5,153.2,1,0,1,1,0,0,24,0,0,5,8,5,10.2,0,0,5,6,5,12.2,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,37,19,5,9,130.0,1,0,0,1,0,0,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,2,9147,1,1,130.0,1,19,37,4,7,140.0,0,0,0,1,1,0,34,0,0,5,10,3,11.666666666666666,1,0,5,7,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,128.0,1,19,19,7,7,124.4,0,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,19,3,8,150.3,1,0,0,1,1,1,21,0,7,11,15,9,14.22222222222222,0,4,9,15,7,13.75,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,143.0,1,38,19,7,9,129.5,1,0,0,1,0,1,18,0,0,8,8,7,13.79857142857143,0,0,8,8,7,13.79857142857143,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,6,141.0,1,37,1,9,4,145.0,0,0,0,1,0,0,21,0,12,21,33,18,14.933333333333334,12,12,21,33,18,14.933333333333334,12,7.6,2.6,0.32,Graduate +1,17,1,9238,1,1,160.0,1,19,37,6,6,144.3,0,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,2,9238,1,1,133.1,1,19,19,4,5,120.6,1,0,0,1,0,0,24,0,6,10,16,10,12.5,0,2,7,9,4,12.6,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,3,116.5,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,127.0,1,1,1,3,4,130.2,1,0,0,1,1,0,19,0,0,6,6,5,11.4,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9254,1,1,131.0,1,38,36,9,9,124.0,1,0,0,1,0,1,18,0,0,6,7,6,11.333333333333334,0,0,6,9,6,10.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,5,9254,1,1,120.0,1,37,37,9,7,127.0,1,0,0,1,0,1,18,0,0,6,10,6,11.666666666666666,0,0,6,10,4,12.25,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,135.0,1,34,34,0,0,134.1,1,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9254,1,1,133.1,1,37,37,9,6,121.5,0,0,0,1,1,0,54,0,0,6,9,6,13.714285714285714,0,0,6,13,5,14.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,144.0,1,38,38,5,7,128.0,1,0,0,1,0,1,18,0,0,8,11,7,12.90857142857143,0,0,8,11,7,12.90857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,132.0,1,1,19,6,6,124.7,1,0,0,1,1,0,21,0,0,6,9,6,12.0,0,0,6,8,5,11.6,0,13.9,-0.3,0.79,Graduate +1,17,2,9991,0,1,116.0,1,37,19,9,4,118.5,0,0,0,1,1,0,23,0,0,5,6,4,13.0,0,0,5,5,5,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,133.1,1,1,1,9,1,103.0,1,0,0,1,0,1,20,0,0,6,8,4,11.75,0,0,6,10,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,16,5,9085,1,1,134.0,1,19,37,8,8,123.9,1,0,0,1,1,0,18,0,0,5,11,5,13.0,2,0,5,7,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9773,1,1,114.0,1,37,38,9,5,107.4,1,0,0,0,1,0,26,0,0,6,12,3,12.0,0,0,6,15,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,38,37,5,7,120.0,1,0,0,1,0,1,25,0,0,8,11,7,13.29,3,0,8,11,7,13.29,3,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,135.0,1,1,38,4,6,122.1,0,1,1,0,1,0,19,0,0,6,6,4,11.5,0,0,6,6,5,11.0,0,8.9,1.4,3.51,Dropout +2,39,1,8014,0,1,150.0,1,37,37,7,5,143.0,0,0,0,1,0,0,40,0,5,9,9,9,15.88888888888889,0,3,7,7,7,14.142857142857142,0,12.7,3.7,-1.7,Graduate +1,44,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,7,5,11.4,0,12.7,3.7,-1.7,Graduate +4,39,1,9238,1,19,133.1,1,37,37,9,10,103.5,0,0,0,0,0,0,44,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,126.0,1,19,38,9,9,132.0,1,0,0,1,0,1,19,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.375,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,125.0,1,1,1,7,3,143.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9147,1,1,120.0,1,37,1,9,1,122.7,0,0,0,0,0,0,25,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +2,7,1,8014,0,3,124.4,1,37,34,0,0,130.0,0,0,0,1,0,0,30,0,8,10,11,9,12.666666666666666,0,3,7,7,7,12.428571428571429,1,7.6,2.6,0.32,Graduate +1,18,1,9085,1,1,106.0,1,1,19,3,5,104.6,0,0,0,0,1,0,21,0,0,6,10,5,14.0,0,0,6,11,4,14.8,0,11.1,0.6,2.02,Enrolled +1,44,1,9119,1,39,160.0,1,3,38,2,3,160.0,0,0,1,0,1,0,24,0,2,6,6,2,16.0,0,2,7,7,2,16.0,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,148.0,1,3,19,2,5,130.0,0,0,0,1,0,0,24,0,0,8,12,7,12.714285714285714,0,0,8,12,7,12.714285714285714,0,12.7,3.7,-1.7,Enrolled +1,1,1,9130,1,1,133.0,1,1,37,9,9,123.2,1,0,0,1,0,1,19,0,0,6,8,6,13.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9500,1,1,130.0,1,19,1,9,4,128.8,1,0,0,1,0,0,18,0,0,7,8,6,13.39,0,0,8,10,7,12.757142857142856,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,149.0,1,19,1,9,9,137.8,1,0,0,1,1,0,18,0,0,8,8,7,13.0,0,0,8,8,7,13.0,0,12.7,3.7,-1.7,Graduate +4,43,1,9670,1,1,150.0,1,37,37,9,6,110.0,0,0,0,1,0,0,40,0,4,8,8,8,11.625,0,3,7,12,5,11.2,0,9.4,-0.8,-3.12,Graduate +2,39,1,9119,1,1,110.0,1,19,19,0,5,137.0,0,0,1,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9556,1,1,122.0,1,19,19,3,10,113.3,1,0,0,1,0,1,20,0,0,7,7,7,13.0,0,0,8,8,8,15.0625,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,140.0,1,1,19,4,5,127.5,0,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,3,9070,1,1,128.0,1,37,37,5,5,124.5,1,0,0,1,1,0,18,0,0,6,6,6,14.166666666666666,0,0,6,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,39,150.0,6,5,4,1,1,150.0,0,0,0,1,0,0,20,1,2,6,7,6,13.333333333333334,0,1,6,16,5,13.375,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,131.0,1,38,37,7,7,127.2,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,12.833333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,130.0,1,37,37,9,6,126.5,1,0,0,1,0,1,18,0,0,6,13,6,16.46153846153846,0,0,6,8,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,1,9119,1,1,116.0,1,19,37,90,5,116.7,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,8,3,13.666666666666666,3,7.6,2.6,0.32,Dropout +1,17,3,9853,1,1,140.0,1,38,38,5,7,126.7,1,0,0,1,0,0,19,0,0,6,9,5,12.4,0,0,6,10,3,10.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,4,9238,1,1,129.0,1,37,37,9,8,117.1,1,0,0,1,1,0,21,0,0,6,6,6,12.333333333333334,0,0,6,7,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,144.0,1,19,19,9,9,130.5,1,0,0,1,0,0,18,0,0,8,12,7,11.971428571428572,0,0,8,12,7,11.971428571428572,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,124.0,1,19,1,7,10,116.0,1,0,1,1,0,0,19,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,122.0,1,1,19,4,4,127.3,1,0,1,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,12,12,4,1,155.3,1,1,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +2,15,1,9773,1,1,133.1,41,37,37,9,6,100.0,0,0,0,1,0,0,59,1,0,6,8,6,12.166666666666666,0,0,6,7,4,11.75,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,138.0,41,1,1,9,9,126.5,1,0,0,1,0,1,20,1,0,6,7,6,12.857142857142858,0,0,6,8,5,11.8,0,8.9,1.4,3.51,Graduate +1,18,6,9500,1,1,142.0,1,38,37,9,5,128.0,1,0,0,0,0,0,19,0,0,7,14,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,44,1,9085,1,39,140.0,1,3,1,2,3,140.0,1,0,0,1,0,0,19,0,0,6,10,5,12.666666666666666,0,0,6,19,4,11.75,0,12.4,0.5,1.79,Enrolled +1,42,1,9991,0,1,150.0,1,19,19,5,5,113.7,0,0,0,1,1,0,30,0,11,15,15,13,11.461538461538462,0,6,11,15,10,11.583333333333334,1,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,135.0,1,1,19,5,5,130.1,1,0,0,1,0,0,18,0,0,5,10,4,10.75,1,0,5,13,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9254,1,1,120.0,1,19,1,9,8,117.2,0,0,0,1,1,0,21,0,0,6,8,3,12.0,0,0,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,130.0,1,19,19,9,7,119.5,1,0,0,1,1,1,18,0,0,5,7,4,11.25,0,0,5,6,4,12.25,0,12.4,0.5,1.79,Enrolled +1,17,4,9147,1,1,133.0,1,1,1,4,5,136.2,1,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,15,1,9147,1,1,133.1,21,1,3,192,3,100.0,0,0,1,1,1,0,40,1,0,5,10,1,11.0,0,0,5,10,1,10.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9670,1,1,112.0,1,37,1,7,0,110.6,0,0,0,1,0,0,20,0,0,5,7,4,11.75,0,0,5,7,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9238,1,1,117.0,1,19,19,9,9,117.0,1,0,1,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9991,0,1,140.0,1,1,37,9,8,154.5,0,0,0,1,0,0,26,0,0,1,2,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,97.0,1,0,0,1,0,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,119.0,1,37,37,5,4,118.0,1,0,0,1,1,0,19,0,0,6,13,2,10.5,0,0,6,11,1,12.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,112.0,1,19,38,5,7,107.1,1,0,0,1,0,1,18,0,0,7,8,7,12.142857142857142,0,0,7,9,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +2,18,2,8014,0,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,5,5,0,0.0,0,0,4,4,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,144.0,1,37,37,9,6,129.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,120.0,100,1,1,4,7,119.5,0,0,1,1,0,0,25,1,2,6,6,6,11.333333333333334,0,0,6,6,4,11.75,0,8.9,1.4,3.51,Enrolled +1,17,5,9500,1,1,136.0,1,19,38,5,8,130.3,1,0,0,1,0,1,18,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,126.0,1,19,19,7,9,121.3,1,0,0,1,0,1,18,0,0,7,9,6,13.533333333333331,0,0,7,7,7,12.228571428571428,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,135.0,1,1,4,5,3,124.9,0,0,0,1,0,1,20,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,4,9670,1,1,128.0,1,38,38,3,7,121.0,1,0,0,1,0,0,19,0,0,6,8,6,13.5,0,0,6,9,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,15,1,9556,1,1,114.0,26,3,19,122,144,114.0,0,0,0,1,0,0,20,1,0,7,14,0,0.0,6,0,7,12,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9238,1,1,125.0,1,19,19,3,3,118.0,1,0,0,1,0,0,18,0,0,6,9,5,11.0,0,0,6,9,4,11.25,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,118.0,1,37,37,7,7,114.2,0,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,10,5,11.6,0,16.2,0.3,-0.92,Enrolled +1,17,1,9147,1,1,115.0,1,19,37,5,7,112.9,1,0,0,0,1,0,19,0,0,5,7,2,12.5,0,0,5,13,1,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,120.0,1,19,37,9,9,118.3,0,0,1,0,1,1,18,0,0,6,11,5,12.166666666666666,0,0,6,15,3,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9119,1,10,133.1,1,34,37,0,0,128.8,1,0,0,1,1,0,43,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,115.0,1,19,38,5,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,6,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,137.0,1,37,37,9,9,132.8,1,0,0,1,0,0,18,0,0,6,7,6,13.333333333333334,0,0,6,8,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9003,1,1,148.0,1,19,37,9,9,131.6,1,0,0,1,1,0,19,0,8,12,17,11,12.0,2,4,12,21,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9773,1,1,161.0,1,1,19,4,7,148.4,0,0,0,1,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,43,1,9991,0,1,133.1,1,37,37,9,7,113.5,0,0,0,1,0,1,32,0,3,10,12,7,11.142857142857142,0,4,10,10,8,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,132.0,1,1,1,9,9,133.8,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9254,1,1,125.0,1,37,37,9,9,122.9,0,0,0,1,1,1,19,0,0,6,7,6,11.166666666666666,0,0,6,12,3,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,123.0,1,3,1,9,3,121.3,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,9,6,11.5,0,12.4,0.5,1.79,Enrolled +1,17,1,9991,0,1,154.0,1,38,38,4,5,134.1,0,0,0,1,0,0,24,0,0,5,9,2,11.5,0,0,5,11,3,14.333333333333334,1,7.6,2.6,0.32,Enrolled +1,44,1,9130,1,39,140.0,1,19,19,5,5,140.0,1,0,1,0,0,0,20,0,1,6,11,3,12.0,0,0,6,11,2,11.0,0,12.4,0.5,1.79,Enrolled +1,53,1,9085,1,42,170.0,1,1,19,4,7,170.0,0,0,0,1,0,0,20,0,7,11,13,11,15.692307692307692,0,4,9,9,9,15.555555555555555,0,8.9,1.4,3.51,Graduate +1,17,5,9147,1,1,131.0,1,19,38,3,10,119.8,1,0,0,1,0,0,19,0,0,5,8,5,12.6,0,0,5,9,4,11.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,141.0,1,19,19,9,9,126.0,1,0,0,1,0,0,18,0,0,8,8,7,15.657142857142857,0,0,8,8,7,15.657142857142857,0,12.7,3.7,-1.7,Graduate +1,1,3,9500,1,1,137.0,1,19,19,5,4,131.5,1,0,0,1,0,1,20,0,0,8,8,8,13.38125,0,0,8,8,8,13.38125,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,118.0,1,19,1,9,3,113.5,1,0,1,1,0,0,20,0,0,5,10,2,11.5,0,0,5,8,3,10.0,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,100.0,1,37,37,99,99,100.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9130,1,1,120.0,6,1,3,9,2,120.0,0,0,1,1,0,0,21,1,2,5,9,5,13.2,2,0,5,7,2,12.5,2,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,127.0,1,19,19,5,5,129.8,1,0,0,1,0,0,22,0,0,5,8,3,10.333333333333334,0,0,5,11,2,10.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,134.0,1,37,37,9,9,129.8,1,0,0,1,0,0,20,0,0,7,7,6,14.85,0,0,7,7,6,14.85,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,121.0,1,37,37,5,9,116.5,1,0,0,1,0,0,23,0,0,5,7,3,11.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9070,1,1,117.0,1,19,37,5,5,131.0,1,0,1,0,1,0,21,0,0,6,6,1,14.0,0,0,6,7,0,0.0,7,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,125.0,1,1,38,9,7,119.8,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,5,9500,1,1,140.0,1,1,1,4,3,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.19,0,0,8,8,8,14.23125,0,11.1,0.6,2.02,Graduate +1,1,5,9254,1,1,101.0,1,3,19,3,9,98.9,1,0,0,1,1,0,20,0,0,6,10,4,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,130.0,1,37,38,7,9,117.8,0,0,1,1,0,1,19,0,0,5,11,2,11.5,0,0,5,10,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,128.0,1,34,19,3,0,141.0,1,0,0,0,0,0,20,0,0,6,10,4,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,150.0,1,38,37,9,9,130.8,0,0,0,1,1,1,22,0,0,7,7,7,14.842857142857142,0,0,8,9,8,15.055555555555555,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,125.0,1,1,19,4,7,116.6,0,0,0,1,1,1,19,0,0,6,8,5,12.666666666666666,0,0,6,10,6,12.857142857142858,0,16.2,0.3,-0.92,Graduate +1,43,1,9670,1,1,130.0,1,34,34,0,0,114.8,0,0,0,1,1,0,25,0,0,5,5,4,13.75,0,0,5,5,4,14.75,0,7.6,2.6,0.32,Graduate +2,42,1,9003,1,1,120.0,1,3,1,2,2,113.3,0,0,0,1,1,0,26,0,0,6,9,1,10.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +4,39,1,9991,0,1,133.1,1,37,37,5,5,138.7,0,0,0,1,0,0,31,0,0,5,7,3,10.333333333333334,0,0,5,6,3,12.0,0,10.8,1.4,1.74,Dropout +1,39,1,9238,1,1,140.0,1,34,34,0,0,114.0,1,0,0,0,0,0,28,0,0,6,11,1,13.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9991,0,1,133.1,1,37,19,3,10,136.1,0,0,0,1,1,1,42,0,0,5,14,1,10.0,0,0,5,14,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9070,1,1,110.0,1,37,37,7,7,110.2,0,0,0,1,1,0,55,0,0,6,6,6,14.5,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,150.0,1,4,5,4,2,150.0,0,0,0,1,1,0,21,0,0,6,15,5,11.857142857142858,0,0,6,17,5,10.571428571428571,0,16.2,0.3,-0.92,Enrolled +1,1,2,9119,1,1,149.0,1,38,38,5,5,141.0,0,0,0,1,1,0,18,0,0,5,9,2,11.666666666666666,0,0,5,9,2,12.5,2,7.6,2.6,0.32,Enrolled +1,42,1,9085,1,39,150.0,1,1,1,4,7,150.0,1,0,0,1,0,0,26,0,11,18,45,18,11.833333333333334,10,9,13,27,13,12.461538461538462,5,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,1,38,4,9,131.7,1,0,0,1,0,1,21,0,0,6,8,6,12.166666666666666,0,0,6,11,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,42,1,9853,1,1,120.0,1,1,37,5,5,113.9,1,0,0,1,0,0,21,0,0,6,8,4,12.25,0,0,6,13,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9085,1,1,130.0,1,37,19,9,7,130.0,1,0,0,1,0,0,28,0,0,5,13,4,11.25,1,0,5,11,4,10.5,0,12.7,3.7,-1.7,Enrolled +1,17,4,9500,1,1,133.0,1,38,37,5,7,126.4,1,0,0,1,1,1,18,0,0,7,7,7,13.462857142857144,0,0,8,8,8,13.90625,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,147.0,1,3,1,2,3,131.6,0,0,0,1,0,0,18,0,0,7,8,6,13.958333333333334,0,0,8,8,8,14.71875,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,12,133.1,1,37,37,9,9,121.5,0,0,0,1,1,0,38,0,0,5,11,2,10.5,0,0,5,9,3,11.333333333333334,1,7.6,2.6,0.32,Enrolled +2,1,1,9991,0,1,150.0,1,37,37,9,9,131.8,0,0,0,0,0,0,29,0,0,5,6,4,12.25,0,0,5,6,5,10.166666666666666,0,10.8,1.4,1.74,Dropout +1,43,4,8014,0,1,116.0,1,34,34,0,0,116.2,0,0,0,1,1,0,21,0,9,11,11,11,12.454545454545457,0,3,11,17,8,12.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,7,140.0,0,0,0,1,1,0,20,0,2,6,12,5,12.4,0,1,6,11,2,15.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9773,1,1,136.0,1,3,1,2,3,132.5,1,0,0,1,0,0,19,0,0,6,7,6,12.5,0,0,6,7,6,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,19,110.0,1,37,38,5,5,151.0,0,0,1,0,1,0,47,0,0,7,7,0,0.0,7,0,8,8,0,0.0,8,15.5,2.8,-4.06,Dropout +1,17,2,9254,1,1,123.0,1,19,19,5,5,113.2,1,0,1,1,0,0,19,0,0,6,10,6,12.166666666666666,0,0,6,8,5,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,137.0,1,3,19,2,9,122.3,0,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +4,39,1,9254,1,1,120.0,1,37,19,9,9,131.0,1,0,0,1,1,0,44,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9556,1,1,123.0,1,19,19,4,9,113.8,1,0,0,1,0,0,18,0,0,7,9,7,11.155555555555557,0,0,8,10,8,11.425,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,150.0,1,3,37,4,7,139.5,0,0,0,1,1,1,20,0,0,6,7,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,145.0,1,38,37,3,9,138.4,1,0,0,0,0,0,18,0,0,6,7,6,14.833333333333334,0,0,6,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,39,1,8014,0,1,140.0,1,37,37,9,7,122.0,1,0,1,0,1,0,29,0,0,6,11,4,12.5,0,0,6,7,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,3,9991,0,1,120.0,1,37,37,9,9,128.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,6,9500,1,1,126.0,1,12,37,5,9,121.8,1,0,0,1,0,0,19,0,0,7,8,6,13.731666666666667,0,0,8,10,7,13.771428571428572,0,12.4,0.5,1.79,Dropout +2,39,1,9991,0,1,130.0,1,37,37,9,9,140.0,1,0,0,1,1,0,31,0,0,5,8,1,11.0,0,0,5,5,1,13.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,130.0,1,37,19,9,8,130.8,0,0,0,1,1,0,22,0,0,5,5,0,0.0,0,0,5,9,3,13.333333333333334,2,16.2,0.3,-0.92,Enrolled +1,1,3,9070,1,1,125.0,1,19,38,9,9,125.4,1,0,0,1,0,0,19,0,0,6,7,5,12.4,0,0,6,6,5,12.4,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,132.0,1,38,38,4,9,119.1,0,0,0,1,0,0,20,0,0,6,8,6,13.285714285714286,0,0,6,16,6,11.8,0,12.4,0.5,1.79,Graduate +4,7,1,9147,1,3,130.0,1,19,1,5,5,130.0,0,0,0,1,0,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,130.0,1,19,19,7,7,121.6,1,0,0,1,0,1,18,0,0,6,9,1,10.0,1,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9773,1,1,126.0,1,37,38,5,5,129.5,1,0,1,0,0,0,18,0,0,6,9,5,12.2,0,0,6,9,4,11.75,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,133.0,1,38,38,5,5,123.2,0,0,0,1,0,0,18,0,0,7,7,7,13.285714285714286,0,0,8,9,8,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,140.0,1,37,37,9,9,121.0,0,0,0,1,0,0,50,0,0,6,8,6,12.666666666666666,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,3,9500,1,1,131.0,1,37,37,9,9,118.0,1,0,0,1,0,1,18,0,0,8,8,7,13.242857142857144,0,0,8,8,7,13.242857142857144,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,120.0,1,38,19,4,8,115.1,0,0,0,1,0,0,19,0,0,6,8,3,11.666666666666666,0,0,6,11,5,13.625,0,10.8,1.4,1.74,Enrolled +1,17,5,9773,1,1,111.0,1,19,12,7,3,115.9,1,0,0,1,0,0,22,0,0,6,7,6,13.571428571428571,0,0,6,7,6,15.285714285714286,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,135.0,1,1,19,9,7,123.5,1,0,0,1,0,1,19,0,0,7,8,7,12.285714285714286,0,0,8,10,8,11.7375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,37,4,9,130.0,1,0,0,1,0,1,20,0,0,6,11,4,12.0,0,0,6,9,4,10.75,0,16.2,0.3,-0.92,Enrolled +1,44,1,9119,1,39,130.0,1,3,19,3,4,130.0,0,0,0,1,1,0,20,0,0,5,12,1,13.0,0,0,5,8,3,12.6,0,12.4,0.5,1.79,Enrolled +1,44,1,9147,1,39,130.0,22,2,37,2,8,130.0,0,0,1,0,1,0,25,1,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,119.0,1,37,37,9,6,119.0,0,0,1,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9500,1,1,142.0,1,38,37,9,8,130.8,1,0,0,1,0,1,19,0,0,7,10,6,12.583333333333334,0,0,8,8,7,12.671428571428573,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,136.0,1,38,1,9,4,129.7,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,7,6,13.714285714285714,0,15.5,2.8,-4.06,Graduate +1,42,1,9003,1,1,140.0,1,19,19,4,4,140.0,1,0,0,1,1,0,25,0,0,6,14,5,11.666666666666666,0,0,6,11,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,19,133.1,1,1,19,4,10,114.0,0,0,0,1,1,0,29,0,3,9,13,6,11.666666666666666,0,2,7,10,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +1,17,5,9670,1,1,125.0,1,19,30,7,7,118.4,1,0,0,1,0,1,19,0,0,5,8,3,10.5,0,0,5,6,4,11.75,1,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,135.0,1,19,19,9,10,122.9,1,0,0,1,0,0,18,0,0,7,10,7,13.128,0,0,8,13,6,13.193333333333332,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,100.0,1,37,37,9,9,108.0,1,0,0,1,1,0,34,0,7,12,12,7,11.428571428571429,0,4,12,12,7,11.857142857142858,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,127.0,1,37,37,9,9,119.3,1,1,0,1,1,1,25,0,0,6,8,4,10.25,0,0,6,6,4,11.25,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,133.0,1,38,19,9,10,125.0,1,0,0,1,0,0,18,0,0,5,6,5,12.8,1,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,116.0,1,3,3,3,3,110.1,1,0,0,1,1,0,19,0,0,6,9,5,13.333333333333334,0,0,6,6,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,133.1,1,1,1,5,8,123.0,1,0,0,1,0,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,144.0,1,37,37,9,3,150.5,0,0,0,1,0,0,20,0,0,7,7,6,13.916666666666666,0,0,7,7,6,13.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,3,1,2,4,130.2,0,0,0,1,1,0,19,0,0,6,9,5,12.6,0,6,10,16,8,11.0,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,116.0,1,38,37,9,6,109.7,1,0,0,1,0,0,22,0,0,6,7,5,14.0,0,0,6,6,6,15.666666666666666,0,11.1,0.6,2.02,Graduate +1,18,3,9853,1,1,128.0,1,38,37,5,9,116.8,1,0,0,0,1,0,19,0,0,6,10,4,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,150.0,1,37,37,4,9,132.1,1,0,1,1,0,0,29,0,4,5,11,4,12.5,2,1,5,11,2,12.5,0,12.7,3.7,-1.7,Dropout +1,53,1,9085,1,42,160.0,1,1,19,4,6,155.7,1,0,0,1,0,0,27,0,7,12,17,11,14.727272727272728,0,4,9,10,7,14.142857142857142,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,130.0,1,19,1,9,9,131.9,0,0,0,1,0,1,21,0,3,6,7,6,12.0,0,2,6,7,6,12.0,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,126.0,1,3,3,2,2,121.1,0,0,1,1,0,0,18,0,0,6,6,4,12.75,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,38,38,7,7,147.0,0,0,0,1,0,1,18,0,0,5,7,4,13.0,0,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,137.0,1,37,37,9,9,126.2,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,8,6,12.5,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,38,37,5,5,137.1,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,143.0,1,2,37,1,1,133.2,1,0,0,1,0,0,19,0,0,6,9,5,13.4,0,0,6,16,2,13.5,0,10.8,1.4,1.74,Enrolled +1,17,5,9070,1,1,122.0,1,19,38,5,7,119.6,0,0,1,0,0,0,21,0,0,6,6,4,13.0,0,0,6,8,4,11.6,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,137.0,1,19,38,9,9,127.2,1,0,0,1,0,1,20,0,1,6,9,5,13.4,1,0,6,9,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,110.0,1,1,1,4,4,125.9,0,0,0,1,1,0,34,0,0,5,7,0,0.0,0,0,5,8,1,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,130.0,1,1,38,5,9,118.1,0,0,1,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9853,1,1,130.0,1,37,19,9,5,102.5,0,0,0,1,0,0,27,0,0,6,9,5,13.2,0,0,6,10,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.0,1,19,1,9,1,122.2,0,0,0,1,0,0,20,0,0,7,9,6,12.783333333333331,0,0,8,9,7,12.842857142857143,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,39,140.0,1,3,3,2,2,140.0,1,0,0,1,0,0,19,0,0,6,10,6,13.0,0,0,6,19,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,134.0,1,37,38,9,9,120.3,1,0,0,1,0,1,18,0,0,8,8,7,12.082857142857142,0,0,8,8,7,12.082857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,133.1,1,1,37,4,7,110.0,0,0,0,1,1,0,31,0,0,6,15,3,14.4,0,0,6,20,0,0.0,0,16.2,0.3,-0.92,Dropout +1,15,1,9085,1,1,133.1,41,3,3,4,2,101.3,0,0,0,1,0,0,18,1,0,6,13,6,13.0,0,0,6,15,6,12.25,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,113.0,1,1,1,5,4,106.7,1,0,1,1,0,0,20,0,0,6,10,2,11.666666666666666,0,0,6,10,4,10.5,0,15.5,2.8,-4.06,Dropout +2,39,1,9991,0,19,133.1,1,37,37,5,5,111.9,1,0,0,1,1,0,41,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,5,9853,1,1,134.0,1,19,38,4,8,122.1,1,0,0,1,0,1,18,0,0,6,8,6,11.666666666666666,0,0,6,9,4,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9853,1,1,133.0,1,19,37,4,9,130.2,1,0,0,1,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,127.0,1,19,19,5,5,160.0,0,0,0,1,1,0,28,0,0,7,7,7,14.528571428571428,0,0,8,11,8,15.018181818181818,0,16.2,0.3,-0.92,Graduate +1,7,1,9500,1,3,130.0,1,37,38,7,7,130.0,1,0,0,1,0,0,27,0,0,8,8,8,12.8875,0,0,8,8,8,12.8875,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,140.0,1,19,38,7,7,136.5,1,0,0,1,0,1,18,0,0,7,7,7,14.838571428571427,0,0,8,9,8,14.8,0,12.4,0.5,1.79,Graduate +2,39,1,9773,1,19,133.1,1,37,37,9,6,110.0,0,0,0,0,0,0,53,0,0,5,5,0,0.0,0,0,4,5,0,0.0,0,15.5,2.8,-4.06,Dropout +2,39,1,8014,0,1,120.0,1,34,34,99,99,101.8,0,0,0,0,0,0,32,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9070,1,1,135.0,1,1,1,4,7,129.8,1,0,0,1,0,0,19,0,0,6,6,6,11.833333333333334,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,5,9147,1,1,131.0,1,37,38,5,5,128.9,0,0,0,1,0,1,18,0,0,5,7,5,11.6,0,0,5,11,5,11.4,4,16.2,0.3,-0.92,Graduate +1,1,4,9070,1,1,139.0,1,3,19,1,5,138.3,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,6,9500,1,1,122.0,1,1,1,3,7,114.3,1,0,0,1,1,0,18,0,0,7,8,6,13.976666666666668,0,0,8,12,6,12.041666666666666,1,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,150.0,1,37,37,9,7,136.5,1,0,0,1,0,1,18,0,0,8,8,8,14.50125,0,0,8,8,8,14.50125,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,3,1,2,8,121.4,0,0,0,1,1,0,20,0,0,7,10,5,13.976666666666668,0,0,8,9,8,13.22222222222222,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,117.0,1,19,19,194,193,117.4,1,0,0,1,0,0,19,0,0,7,12,5,11.8,0,0,7,9,6,11.708333333333334,0,11.1,0.6,2.02,Enrolled +2,39,1,9085,1,1,133.1,1,36,36,99,5,128.2,0,0,0,0,0,1,28,0,0,5,14,1,12.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,121.0,1,3,1,2,3,114.0,0,0,0,1,1,0,20,0,0,5,9,4,11.6,0,0,5,7,4,12.25,2,7.6,2.6,0.32,Enrolled +1,51,1,9853,1,1,139.0,1,1,1,4,10,134.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9070,1,1,137.0,1,1,1,3,1,141.2,1,0,1,1,1,0,19,0,0,6,11,5,11.2,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,1,133.1,1,37,37,6,3,140.0,0,0,1,1,1,0,37,0,0,5,10,4,10.75,0,0,5,12,3,13.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,1,9147,1,1,126.0,1,37,37,4,7,116.9,0,0,0,1,1,1,19,0,0,5,12,3,11.666666666666666,0,0,5,10,3,11.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,44,1,9130,1,39,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +2,43,1,9991,0,1,130.0,1,37,37,9,9,128.2,0,0,0,1,0,0,34,0,3,8,9,3,11.0,0,2,7,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,131.0,1,19,9,5,3,118.4,0,0,0,1,0,0,19,0,0,5,8,3,12.0,0,0,5,7,5,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,138.0,1,19,19,3,3,131.0,1,0,0,1,0,0,18,0,0,5,9,5,12.666666666666666,2,0,5,7,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,1,130.0,1,37,12,9,8,129.4,1,0,1,0,1,0,23,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,9991,0,1,134.0,1,37,37,9,9,113.7,0,0,0,1,0,0,32,0,1,5,5,5,10.2,0,0,5,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,5,9853,1,1,117.0,1,38,38,9,7,114.6,1,0,0,1,0,0,19,0,0,6,11,4,13.25,0,0,6,10,4,10.25,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,145.0,1,3,3,4,4,153.1,1,0,0,1,0,1,20,0,0,6,6,6,12.5,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9085,1,1,130.0,1,19,38,4,9,130.0,1,0,0,0,0,0,19,0,0,6,12,5,13.0,0,0,6,12,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9119,1,1,146.0,1,37,37,9,9,148.5,1,0,0,1,1,0,18,0,0,5,7,4,10.0,0,0,5,8,1,16.0,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,136.0,1,1,1,4,4,124.1,0,0,0,1,0,0,18,0,0,5,8,5,12.4,0,0,5,6,5,10.8,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,100.0,1,37,38,9,4,140.0,0,0,0,1,1,0,39,0,0,5,7,4,12.25,0,0,5,7,4,12.75,0,15.5,2.8,-4.06,Enrolled +1,44,1,9003,1,39,180.0,1,1,3,4,2,180.0,0,0,0,1,0,0,21,0,0,6,6,6,15.833333333333334,0,0,6,8,6,15.5,0,15.5,2.8,-4.06,Graduate +1,15,1,9773,1,1,120.0,26,19,19,4,5,120.0,1,0,0,1,0,0,22,1,0,6,6,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,141.0,1,4,19,4,10,100.0,0,0,0,1,1,0,18,0,0,7,7,7,11.828571428571427,0,0,8,10,7,12.9125,0,13.9,-0.3,0.79,Graduate +1,44,1,9085,1,1,150.0,1,29,10,6,6,150.0,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,5,9254,1,1,122.0,1,1,37,9,7,119.6,1,0,0,1,0,1,19,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,128.0,1,19,38,9,7,124.2,1,0,0,1,1,0,22,0,0,6,17,3,11.333333333333334,3,0,6,14,3,12.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9130,1,1,172.0,1,19,19,9,9,163.3,1,0,0,1,0,1,18,0,0,6,8,6,14.5,0,0,6,11,4,13.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,129.0,1,38,37,5,5,142.0,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.714285714285714,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,100.0,1,1,3,9,10,120.0,0,0,1,0,1,0,44,0,2,7,14,4,12.0,2,0,6,16,0,0.0,1,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,54,0,9,13,13,13,14.307692307692308,0,5,12,15,12,15.23076923076923,0,15.5,2.8,-4.06,Graduate +1,1,3,9238,1,1,135.0,1,1,12,9,10,121.0,1,0,0,1,0,1,19,0,0,6,7,6,11.333333333333334,0,0,6,6,6,11.5,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,136.0,1,2,2,3,3,120.0,1,0,0,1,1,0,18,0,0,7,8,6,11.833333333333334,0,0,7,8,6,11.833333333333334,0,7.6,2.6,0.32,Enrolled +1,1,6,9147,1,1,143.0,1,38,37,9,9,128.7,1,0,0,1,1,0,23,0,0,5,6,4,14.0,0,0,5,5,5,13.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9500,1,1,126.0,1,37,37,7,7,126.2,1,0,0,1,0,1,18,0,0,7,10,5,11.94,0,0,7,8,6,12.8,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,135.0,1,19,19,4,3,135.0,1,0,0,1,1,0,20,0,0,6,8,6,11.833333333333334,0,0,6,9,5,10.4,0,7.6,2.6,0.32,Enrolled +1,1,2,9254,1,1,132.0,1,1,19,9,9,129.9,1,0,0,1,0,1,19,0,0,6,8,6,13.0,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,1,120.0,1,34,34,0,0,104.0,0,0,0,1,0,0,54,0,0,6,8,4,12.75,0,0,6,12,5,12.6,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,9,133.1,1,37,37,8,10,100.0,1,0,0,1,0,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,43,1,9147,1,1,130.0,1,19,37,7,10,138.0,0,0,0,1,0,0,34,0,12,15,17,12,11.916666666666666,0,11,13,13,11,13.181818181818182,0,7.6,2.6,0.32,Graduate +1,17,2,9119,1,1,120.0,1,1,19,9,8,117.2,0,0,0,1,1,1,18,0,0,5,8,4,13.5,0,0,6,10,6,13.625,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,133.1,1,1,12,4,5,116.5,0,0,0,1,1,1,24,0,0,6,6,4,12.25,0,0,6,10,4,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9238,1,1,105.0,1,19,19,6,6,106.1,1,0,0,1,0,0,20,0,0,6,6,6,11.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,1,9670,1,1,118.0,1,1,19,4,8,118.7,0,0,0,1,1,1,19,0,0,6,7,6,12.0,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,6,9500,1,1,140.0,1,3,19,3,8,129.0,1,0,0,1,0,0,21,0,0,8,8,7,12.414285714285716,0,0,8,8,7,12.414285714285716,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,168.0,1,19,19,4,4,171.2,0,0,0,1,1,1,18,0,0,5,6,5,17.333333333333332,0,0,5,8,5,18.571428571428573,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,133.0,1,19,9,0,0,121.5,1,0,0,1,0,1,20,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,177.0,1,1,38,3,9,162.3,0,0,0,1,0,1,18,0,0,5,6,5,16.333333333333332,0,0,5,5,5,15.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,130.0,1,38,38,2,9,124.8,0,0,0,1,0,0,19,0,0,5,14,1,11.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,136.0,1,38,1,5,6,133.9,1,0,0,1,0,0,18,0,0,7,9,7,14.711111111111112,0,0,8,9,8,14.627777777777778,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,154.0,1,1,1,5,3,144.9,0,0,0,1,1,1,18,0,0,7,7,7,15.957142857142856,0,0,8,9,8,15.188888888888888,0,16.2,0.3,-0.92,Graduate +1,44,1,9119,1,39,150.0,1,19,37,9,9,150.0,1,0,1,1,1,0,20,0,0,5,6,5,16.5,0,0,5,7,5,17.714285714285715,0,12.4,0.5,1.79,Dropout +1,1,4,9254,1,1,132.0,1,12,19,9,9,124.7,1,0,0,1,0,0,19,0,0,5,10,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,33,1,1,100.0,41,38,37,9,8,100.0,0,0,1,0,1,0,35,1,0,7,18,3,11.25,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,120.0,1,4,1,2,9,113.4,0,0,0,1,0,0,18,0,0,6,14,4,11.5,0,0,6,17,3,13.75,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,134.0,1,1,19,9,9,136.1,1,0,0,1,0,1,20,0,0,6,6,6,13.0,0,0,6,7,6,13.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9500,1,1,150.0,1,1,19,5,3,140.0,0,1,0,1,0,0,26,0,0,7,11,5,11.2,0,0,8,13,5,12.14,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,129.0,1,37,37,9,9,128.8,1,0,0,1,0,0,19,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +2,39,1,9500,1,1,100.0,1,37,38,4,4,130.0,0,0,0,1,1,1,33,0,0,8,16,1,10.0,1,0,8,16,1,10.0,1,12.7,3.7,-1.7,Enrolled +1,1,1,9773,1,1,140.0,1,19,37,9,6,135.8,1,0,0,1,0,1,19,0,0,6,6,6,13.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,40,150.0,1,19,19,9,5,150.0,0,0,1,0,0,0,26,0,0,3,3,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,4,9500,1,1,148.0,1,1,37,4,8,132.0,1,0,0,1,0,0,18,0,0,7,7,6,13.45,0,0,7,7,6,13.45,0,7.6,2.6,0.32,Graduate +1,7,1,9119,1,40,140.0,1,3,1,2,5,140.0,0,0,0,1,1,0,23,0,0,5,5,5,13.8,0,0,5,7,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,163.0,1,19,1,9,7,143.1,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,18,3,9070,1,1,164.0,1,1,1,5,3,161.2,1,0,0,1,0,0,18,0,1,6,8,6,13.714285714285714,1,0,6,8,6,14.375,0,13.9,-0.3,0.79,Graduate +1,1,6,9773,1,1,141.0,1,30,37,7,7,128.4,1,0,1,0,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,11.4,0,7.6,2.6,0.32,Dropout +1,43,2,9147,1,1,126.0,1,1,19,3,3,100.0,1,0,0,1,1,0,22,0,0,5,11,0,0.0,0,0,5,7,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,141.0,1,19,19,5,10,135.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,4,9670,1,1,117.0,1,3,3,4,4,113.2,0,0,0,1,1,0,21,0,0,5,11,2,10.0,0,0,5,10,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +2,43,1,9991,0,3,140.0,1,37,19,9,4,140.0,0,0,1,1,0,0,34,0,4,10,25,5,12.2,0,3,9,18,8,12.22222222222222,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,134.3,0,0,0,1,1,0,24,0,0,5,10,0,0.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,137.0,1,38,19,9,7,125.1,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,9,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,6,134.0,0,0,0,1,0,1,35,0,2,8,8,8,13.625,0,1,7,7,7,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,123.0,1,37,37,7,7,119.7,0,0,0,1,1,0,20,0,0,7,8,0,0.0,1,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9147,1,1,120.0,1,37,37,9,9,104.7,1,0,0,1,1,0,36,0,0,4,4,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9238,1,1,137.0,62,1,1,9,9,129.3,0,0,0,1,0,1,21,1,0,6,8,6,13.875,0,0,6,7,6,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,17,2,8014,0,1,122.0,1,37,19,9,9,123.8,0,0,0,1,0,0,20,0,0,6,8,5,12.0,0,0,6,8,6,11.0,0,10.8,1.4,1.74,Graduate +2,39,2,8014,0,1,100.0,1,34,34,0,0,100.0,1,0,0,1,0,0,41,0,0,6,9,5,11.8,0,1,6,10,3,10.666666666666666,1,7.6,2.6,0.32,Graduate +2,1,1,9991,0,2,120.0,1,37,37,6,3,129.2,0,0,0,1,0,0,31,0,4,10,16,5,11.4,0,4,10,10,6,12.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,150.0,1,3,19,2,6,150.0,0,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9991,0,1,123.0,1,1,3,4,2,113.2,0,0,0,0,1,0,22,0,0,5,7,3,11.666666666666666,0,0,5,8,2,10.5,2,7.6,2.6,0.32,Dropout +1,1,3,9773,1,1,130.0,1,1,37,4,5,120.9,1,0,1,1,0,0,18,0,0,6,6,6,14.333333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,146.0,1,19,3,4,9,127.0,0,0,0,1,1,0,19,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,160.0,1,19,38,9,9,160.0,1,0,1,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9085,1,39,150.0,1,38,37,6,6,150.0,1,0,0,1,0,1,21,0,2,7,15,3,13.0,2,1,5,12,5,13.285714285714286,1,10.8,1.4,1.74,Graduate +1,17,2,9254,1,1,136.0,1,19,19,4,7,123.1,1,0,0,1,0,0,19,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,150.0,1,37,19,9,4,135.6,0,0,0,1,0,1,43,0,0,6,8,5,11.0,0,0,6,9,5,13.0,0,12.4,0.5,1.79,Graduate +1,1,6,171,1,1,134.0,1,19,37,5,5,126.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +4,39,1,9773,1,38,133.1,1,19,19,7,9,133.0,0,0,0,1,0,0,40,0,0,6,8,5,13.0,0,0,6,7,5,12.6,0,16.2,0.3,-0.92,Enrolled +1,17,2,9119,1,1,120.0,1,10,12,9,9,120.4,1,0,0,1,1,0,20,0,0,5,6,3,11.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,4,9254,1,1,113.0,1,38,19,7,7,107.4,1,0,0,1,0,1,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,137.0,1,1,19,4,5,136.3,0,0,0,1,0,0,18,0,0,5,9,4,11.25,0,0,5,6,4,11.0,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,142.0,1,37,37,9,7,132.7,1,0,0,1,0,1,19,0,0,7,8,7,14.7875,0,0,8,8,8,15.8625,0,13.9,-0.3,0.79,Graduate +1,18,5,9085,1,1,121.0,1,5,3,2,3,111.9,1,0,0,1,0,0,21,0,0,5,12,0,0.0,3,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,9,133.1,1,34,36,0,90,107.5,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,8014,0,19,133.1,1,19,37,6,8,149.5,0,0,0,1,1,0,48,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9147,1,1,120.0,1,1,37,4,9,113.4,1,0,0,1,1,1,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,130.0,1,37,38,9,5,130.5,1,0,0,1,0,0,19,0,0,7,7,6,12.45,0,0,7,7,6,12.45,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,153.0,1,1,19,9,10,147.8,0,0,0,1,0,1,18,0,0,5,9,5,13.2,0,0,5,13,5,14.4,5,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,159.0,1,3,1,4,4,162.2,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,122.0,1,37,37,5,6,114.3,0,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,2,9556,1,19,133.1,1,37,37,3,7,117.8,0,0,0,1,0,0,24,0,0,7,10,6,11.416666666666666,0,0,8,9,8,11.9625,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,132.0,1,38,1,9,9,124.3,1,0,0,1,0,0,19,0,0,6,6,5,12.2,0,0,6,7,5,10.8,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,141.0,1,19,19,9,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,13.56875,0,0,8,8,8,14.02625,0,15.5,2.8,-4.06,Graduate +1,17,1,9500,1,1,152.0,1,19,19,4,9,132.5,0,0,0,1,1,0,21,0,0,8,8,7,14.54,0,0,8,8,7,14.54,0,10.8,1.4,1.74,Graduate +1,17,1,9991,0,40,127.0,1,37,37,6,6,124.9,0,0,0,1,0,0,29,0,0,5,10,5,13.571428571428571,0,0,5,14,5,12.333333333333334,3,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,133.1,1,1,19,4,6,106.0,1,0,0,1,0,0,24,0,0,5,11,2,10.5,0,0,5,14,1,11.0,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,150.0,1,19,37,4,7,150.0,1,0,0,1,0,0,19,0,2,6,8,6,14.142857142857142,0,1,6,7,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9254,1,1,125.0,1,1,1,191,193,114.5,0,0,0,1,1,0,20,0,0,6,8,6,13.142857142857142,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,134.0,1,19,19,4,7,131.0,1,0,0,1,1,0,18,0,0,7,9,7,14.594444444444443,0,0,8,10,8,13.472,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,134.0,1,19,19,9,9,125.8,1,0,0,1,0,0,18,0,0,7,8,7,14.91875,0,0,8,8,8,15.355,0,15.5,2.8,-4.06,Graduate +1,17,1,171,1,1,125.0,1,37,37,7,9,134.1,1,0,0,1,1,0,24,0,12,17,19,13,11.642857142857142,0,12,17,25,12,11.25,0,11.1,0.6,2.02,Dropout +1,51,1,9254,1,1,120.0,1,38,38,9,9,118.0,0,0,0,1,0,0,28,0,0,6,8,6,12.857142857142858,0,0,6,8,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,155.0,1,1,1,4,3,140.5,1,0,0,1,0,0,18,0,0,7,7,6,15.25,0,0,7,7,6,15.25,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,125.0,1,1,1,4,90,125.4,1,0,0,1,1,0,19,0,0,5,6,3,13.333333333333334,0,0,5,5,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,1,5,5,126.3,0,0,0,1,1,0,19,0,0,7,9,7,12.492857142857144,0,0,8,10,8,11.7125,0,16.2,0.3,-0.92,Graduate +1,39,1,9147,1,1,140.0,1,37,3,9,2,135.1,0,0,0,1,1,0,61,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,171,1,1,122.0,1,19,12,5,9,127.3,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,2,9670,1,1,150.0,1,34,34,0,0,107.0,1,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,3,130.0,1,19,19,3,9,130.0,0,0,0,0,1,0,32,0,0,5,12,4,14.75,0,0,5,9,2,15.0,0,16.2,0.3,-0.92,Dropout +1,39,1,33,1,1,133.1,1,19,37,9,9,96.1,0,0,0,1,1,0,25,0,0,7,13,2,15.0,0,0,7,12,2,11.5,0,12.4,0.5,1.79,Dropout +2,42,1,9500,1,2,130.0,1,37,37,9,9,130.0,0,0,0,1,0,1,32,0,0,8,8,8,14.6625,0,0,8,8,8,14.6625,0,9.4,-0.8,-3.12,Graduate +1,18,1,9238,1,1,137.0,1,19,38,5,8,137.4,1,0,0,1,0,0,18,0,0,6,10,1,12.0,0,0,6,14,2,11.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9254,1,1,140.0,1,19,1,9,8,140.9,1,0,0,1,0,1,18,0,0,6,7,6,12.857142857142858,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,132.0,1,1,2,9,3,128.2,1,0,0,1,0,1,19,0,0,6,7,6,12.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9085,1,1,126.0,1,1,3,5,5,123.9,1,0,0,1,1,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,19,133.1,1,37,37,9,7,106.5,0,0,0,1,0,1,32,0,0,6,7,6,12.666666666666666,0,0,6,7,6,13.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,132.0,1,37,19,7,7,132.4,1,0,0,1,0,1,22,0,0,7,8,6,13.516666666666666,0,0,8,9,7,13.771428571428572,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,139.0,1,37,38,9,9,126.1,0,0,0,1,0,1,19,0,0,6,7,5,12.333333333333334,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,136.0,1,19,38,9,9,123.0,1,0,0,1,0,0,19,0,0,8,8,7,14.328571428571427,0,0,8,8,7,14.328571428571427,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,140.0,1,1,38,9,1,140.0,1,0,0,1,1,0,22,0,0,6,12,5,12.6,0,0,6,11,6,11.714285714285714,0,12.4,0.5,1.79,Graduate +1,43,1,9773,1,1,123.0,1,19,19,9,8,134.0,0,0,0,1,0,1,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,130.0,1,38,19,9,4,118.4,0,0,1,1,0,0,28,0,15,16,16,13,12.076923076923077,0,13,13,13,11,12.090909090909092,0,16.2,0.3,-0.92,Graduate +1,17,1,9119,1,1,126.0,1,1,1,9,9,116.2,0,0,1,0,1,0,21,0,0,5,9,2,11.0,0,0,5,8,2,11.5,2,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,19,1,7,10,105.0,0,0,0,1,1,0,25,0,0,7,14,4,12.95,1,0,7,11,4,13.125,1,15.5,2.8,-4.06,Dropout +1,17,1,9119,1,1,130.0,1,19,19,7,9,121.3,1,0,0,1,1,0,18,0,0,5,9,1,12.0,0,0,5,10,2,12.0,3,7.6,2.6,0.32,Dropout +1,43,1,9500,1,19,133.1,1,34,34,0,0,110.0,1,0,0,1,1,0,27,0,0,7,7,0,0.0,6,0,7,7,0,0.0,6,7.6,2.6,0.32,Dropout +1,1,3,9070,1,1,139.0,1,1,38,4,7,142.2,1,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,142.0,1,38,1,5,4,136.6,0,0,0,1,0,1,18,0,0,7,7,7,13.464285714285714,0,0,8,9,8,14.788888888888888,0,12.4,0.5,1.79,Graduate +1,17,2,9670,1,1,128.0,1,37,38,5,8,121.7,0,0,0,1,1,1,20,0,0,5,5,5,12.4,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,140.0,1,1,3,9,4,140.0,0,0,1,0,0,0,24,0,2,6,11,4,12.5,0,1,6,18,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,125.0,1,19,19,9,10,122.0,1,0,1,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,8014,0,1,130.0,1,37,37,9,8,103.5,0,0,0,1,0,1,33,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.333333333333334,0,12.7,3.7,-1.7,Graduate +1,17,3,9085,1,1,117.0,1,19,38,5,7,111.1,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,42,1,9085,1,39,140.0,1,19,3,9,1,159.9,1,0,0,1,0,0,21,0,2,6,14,5,13.666666666666666,0,2,6,10,5,13.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9254,1,1,112.0,1,37,37,6,6,106.1,1,0,0,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9070,1,1,117.0,1,5,1,2,10,120.0,1,0,0,1,0,0,21,0,0,6,7,5,12.2,0,0,6,7,4,12.6,0,8.9,1.4,3.51,Enrolled +1,7,1,9556,1,2,130.0,1,37,37,9,9,130.0,1,0,0,1,0,1,36,0,0,7,9,1,9.8,0,0,7,7,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,40,140.0,1,1,19,9,9,139.0,0,0,0,1,0,0,27,0,0,5,5,5,15.8,0,0,5,5,5,14.8,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,10,130.0,0,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,9070,1,1,135.0,1,3,1,3,5,121.8,0,0,0,1,0,1,19,0,5,11,11,11,13.181818181818182,0,5,11,11,11,12.909090909090908,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,135.0,1,19,3,9,4,121.5,1,0,0,1,0,0,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,136.0,1,19,38,4,8,125.5,1,0,0,1,0,1,21,0,0,7,7,6,14.033333333333331,0,0,7,7,6,14.033333333333331,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,37,4,8,132.4,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,15,6,13.1,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,142.0,1,34,38,4,7,127.3,0,0,0,1,0,1,18,0,0,6,12,4,11.0,0,0,6,9,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,15,1,9147,1,1,130.0,26,1,1,2,3,130.0,0,0,0,1,0,0,19,1,0,5,10,4,12.0,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,17,2,8014,0,1,133.0,1,19,1,5,5,119.7,1,0,0,1,0,1,19,0,0,6,10,4,11.5,0,0,6,11,6,11.5,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,6,133.1,1,1,1,90,3,107.0,1,0,0,1,1,0,30,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9130,1,1,130.0,1,1,1,4,5,123.8,0,0,0,1,0,0,18,0,0,5,7,4,12.0,0,0,5,6,5,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9670,1,1,130.0,1,38,37,5,5,123.4,1,0,0,1,0,0,21,0,0,5,5,4,11.75,0,0,5,5,3,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,130.0,1,37,36,4,90,127.6,0,0,0,1,1,0,23,0,0,5,6,4,14.25,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +2,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,32,0,0,7,9,7,13.761111111111113,0,1,8,11,7,12.06375,0,15.5,2.8,-4.06,Enrolled +1,1,5,9070,1,1,122.0,1,37,37,9,9,124.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,3,120.0,1,37,37,9,9,141.0,0,0,0,1,0,0,29,0,10,15,15,11,11.454545454545457,0,9,13,16,11,11.545454545454543,0,10.8,1.4,1.74,Dropout +1,43,1,33,1,1,134.0,1,37,37,1,1,100.0,1,0,0,1,1,0,32,0,0,7,7,0,0.0,0,0,7,8,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9773,1,1,125.0,1,19,37,9,5,122.2,0,0,0,0,0,0,18,0,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,113.4,0,0,0,1,0,0,33,0,0,5,14,1,10.0,0,0,5,13,2,12.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,142.0,1,19,39,5,4,141.7,0,0,0,1,0,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,137.0,1,1,38,5,8,125.8,0,0,0,0,0,1,18,0,0,6,10,6,12.666666666666666,0,0,6,6,2,11.5,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,141.0,1,1,37,4,3,126.8,1,0,0,1,0,0,18,0,0,7,7,7,13.44285714285714,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Graduate +1,17,4,9500,1,1,133.0,1,4,4,4,4,130.7,1,0,0,1,0,0,19,0,0,7,7,7,14.757142857142856,0,0,8,9,8,15.366666666666667,0,12.4,0.5,1.79,Graduate +1,1,2,9500,1,1,119.0,1,1,1,4,4,115.2,1,0,0,1,0,1,20,0,0,7,8,7,12.725,0,0,8,8,8,13.7125,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,128.0,1,1,1,4,10,118.9,1,0,0,1,0,0,20,0,0,7,8,7,11.5875,0,0,8,9,7,14.071428571428571,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,130.0,1,37,38,7,8,119.3,1,0,0,1,0,1,19,0,0,8,8,7,11.4,0,0,8,8,7,11.4,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,148.0,1,3,1,4,5,132.8,0,0,0,1,0,0,18,0,0,8,8,7,14.537142857142856,0,0,8,8,7,14.537142857142856,0,10.8,1.4,1.74,Graduate +1,1,5,9500,1,1,143.0,1,37,19,4,4,123.3,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9147,1,1,130.0,1,34,34,99,99,109.8,1,0,0,0,1,0,23,0,0,3,3,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9085,1,2,140.0,1,38,38,9,10,150.0,0,0,0,1,1,0,47,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,53,1,9670,1,42,110.0,1,1,19,9,9,114.2,0,0,0,1,1,1,23,0,0,6,7,5,13.0,0,0,6,7,6,12.857142857142858,0,8.9,1.4,3.51,Graduate +1,53,1,9147,1,42,140.0,1,3,4,2,1,140.2,0,0,0,1,0,0,20,0,6,11,19,9,12.555555555555555,0,3,9,14,8,11.11111111111111,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,145.0,1,19,38,9,7,136.3,1,0,0,1,0,1,18,0,0,8,8,7,13.971428571428572,0,0,8,8,7,13.971428571428572,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,38,37,9,9,154.4,0,0,0,1,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,127.0,1,38,38,9,6,122.8,0,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,7,6,14.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,120.2,1,0,0,1,1,0,30,0,0,5,7,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,124.0,1,3,1,2,5,121.6,0,0,0,1,0,0,18,0,0,6,9,5,12.333333333333334,0,0,6,10,5,10.6,0,15.5,2.8,-4.06,Enrolled +1,17,5,9853,1,1,132.0,1,37,38,5,6,119.1,1,0,0,1,0,1,19,0,0,6,10,5,12.0,0,0,6,9,5,10.8,0,9.4,-0.8,-3.12,Graduate +1,17,6,9670,1,1,110.0,1,1,19,4,10,111.3,0,0,0,1,1,0,21,0,0,6,10,6,12.285714285714286,0,0,6,11,4,14.25,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,120.0,1,38,37,9,9,114.8,1,1,0,1,0,0,19,0,0,6,11,4,12.25,0,0,6,11,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,140.0,1,19,19,9,3,130.0,0,0,0,1,1,0,21,0,0,6,8,6,12.571428571428571,0,0,6,10,4,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9254,1,1,120.0,1,37,37,9,9,115.1,1,0,0,0,1,0,21,0,0,6,11,3,11.0,0,0,6,14,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,142.0,1,1,37,5,7,128.0,0,0,0,1,0,1,19,0,0,6,8,6,12.25,0,0,6,8,6,12.0,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,168.0,1,37,1,9,4,133.4,1,0,0,1,0,0,23,0,20,26,27,26,15.07777777777778,0,14,17,17,17,15.023529411764704,0,15.5,2.8,-4.06,Graduate +1,43,4,9085,1,1,133.1,1,34,34,99,99,125.2,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9147,1,1,123.0,1,1,1,9,7,117.4,1,0,0,1,0,1,18,0,0,5,7,5,12.0,0,0,5,10,5,11.4,0,8.9,1.4,3.51,Graduate +1,1,6,9119,1,1,135.0,1,2,1,3,5,123.5,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,1,10.0,3,7.6,2.6,0.32,Enrolled +1,17,2,9254,1,1,118.0,22,19,37,9,9,110.3,1,0,0,0,0,0,18,1,0,6,7,5,12.6,0,0,6,6,5,11.8,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,126.0,1,1,19,4,4,116.9,0,0,0,1,1,0,18,0,0,6,8,6,13.571428571428571,0,0,6,7,5,11.8,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,117.0,1,1,38,3,9,109.3,0,0,1,0,0,1,19,0,0,6,7,5,12.0,0,0,6,9,4,12.5,0,12.4,0.5,1.79,Dropout +4,39,1,8014,0,1,133.1,1,37,37,9,8,113.0,0,0,0,1,0,1,32,0,0,6,18,2,10.333333333333334,0,0,6,7,6,11.5,0,16.2,0.3,-0.92,Graduate +2,42,1,9991,0,6,123.0,1,37,37,9,9,123.0,0,0,0,1,1,0,37,0,0,5,10,5,15.8,0,0,5,5,5,17.6,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9003,1,1,100.0,1,37,37,9,5,110.0,0,0,0,1,0,0,41,0,8,12,17,12,11.833333333333334,0,3,12,22,9,12.7,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,127.0,1,37,38,9,5,131.2,1,0,0,1,1,0,18,0,0,6,6,6,11.833333333333334,0,0,6,6,6,13.166666666666666,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,110.0,1,37,37,9,7,112.5,1,0,0,1,0,1,53,0,4,7,16,6,11.0,0,2,7,9,7,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,126.0,1,19,37,7,5,119.4,0,0,0,1,0,1,21,0,0,6,7,5,13.8,0,0,6,6,6,12.833333333333334,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,121.0,1,1,1,4,3,120.5,1,0,0,1,0,0,21,0,0,8,8,7,12.91,0,0,8,8,7,12.91,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,134.0,1,1,1,3,3,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,1,3,9500,1,1,150.0,1,19,38,1,1,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.614285714285714,0,0,8,8,7,13.614285714285714,0,12.7,3.7,-1.7,Graduate +1,17,5,9119,1,1,124.0,11,4,12,2,9,119.5,1,0,0,1,1,0,20,1,0,5,5,5,14.8,0,0,5,5,5,17.6,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,117.0,1,19,1,4,7,112.1,0,0,0,1,0,1,20,0,0,7,9,5,13.188,0,0,8,9,7,12.892857142857142,0,11.1,0.6,2.02,Enrolled +1,1,5,9500,1,1,132.0,1,37,37,7,7,120.3,1,0,0,1,0,1,18,0,0,7,7,7,13.75,0,0,8,9,8,14.47777777777778,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,1,110.0,1,37,37,90,5,150.0,1,0,0,1,1,0,46,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9773,1,1,130.0,1,38,37,5,3,122.3,1,0,1,0,0,0,18,0,0,6,8,6,14.142857142857142,0,0,6,6,5,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9556,1,1,118.0,1,19,38,9,9,116.3,1,0,0,1,0,1,20,0,0,7,10,7,11.88888888888889,0,0,8,10,8,11.95625,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,120.0,1,3,3,3,3,111.6,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,6,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,131.0,1,37,19,9,9,134.5,1,0,0,1,1,0,25,0,0,6,8,6,13.166666666666666,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Enrolled +1,17,2,9556,1,1,133.1,1,37,38,9,8,106.0,1,0,0,1,0,0,19,0,0,7,16,2,12.75,0,0,7,12,2,11.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,2,110.0,1,37,37,9,9,112.9,0,0,0,1,0,0,38,0,14,15,16,14,10.928571428571429,0,12,14,16,12,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,2,9773,1,1,126.0,1,19,38,9,8,118.7,1,0,0,1,0,1,18,0,0,6,6,6,14.166666666666666,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9500,1,1,140.0,1,1,1,3,3,127.6,1,0,0,1,0,0,23,0,0,7,7,6,13.796666666666669,0,0,8,11,7,13.775,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,163.0,1,19,1,5,10,146.6,1,0,1,1,0,0,18,0,0,6,9,5,13.6,0,0,6,10,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9119,1,39,151.0,1,19,37,4,7,151.0,0,0,1,1,0,0,26,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,165.0,1,19,37,5,5,142.3,0,0,0,1,0,1,18,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9773,1,19,133.1,1,19,1,7,9,115.0,1,0,1,0,1,0,25,0,0,6,10,4,13.0,0,0,6,9,4,13.75,0,12.7,3.7,-1.7,Dropout +1,1,2,9556,1,1,130.0,1,1,38,3,8,119.5,1,0,0,1,0,1,21,0,0,7,7,7,12.242857142857144,0,0,8,8,8,14.125,0,15.5,2.8,-4.06,Graduate +1,17,3,171,1,1,125.0,1,3,39,2,5,117.0,1,1,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9147,1,1,133.0,1,19,1,5,10,121.8,0,0,0,1,1,0,20,0,0,5,9,4,10.2,0,0,5,6,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9119,1,1,131.0,1,1,3,9,10,123.7,1,0,0,1,1,0,20,0,0,5,7,4,12.0,0,0,5,8,2,12.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,148.0,1,37,38,9,8,133.0,1,0,0,1,0,0,18,0,0,5,10,4,12.0,0,0,5,9,4,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9254,1,1,120.0,1,3,19,3,9,114.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9773,1,1,114.0,1,1,1,9,9,111.6,1,0,0,1,0,1,21,0,0,6,6,6,12.5,0,0,6,6,6,11.5,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,115.0,1,38,1,9,8,118.5,0,0,0,1,1,0,21,0,0,5,9,1,10.0,0,0,5,10,1,10.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,2,5,127.0,0,0,0,1,1,0,20,0,0,6,6,6,14.333333333333334,0,0,6,7,6,15.0,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,117.0,1,1,1,4,7,109.3,1,0,0,1,0,1,18,0,0,7,7,7,13.117142857142856,0,0,8,9,7,12.6,0,11.1,0.6,2.02,Graduate +1,53,1,9085,1,42,140.0,1,19,38,9,9,138.2,0,0,1,0,0,0,21,0,7,10,15,8,13.75,0,4,9,17,5,13.2,0,8.9,1.4,3.51,Dropout +1,17,1,9254,1,1,125.0,1,1,1,3,3,114.5,0,0,0,1,1,1,22,0,0,6,8,6,13.625,0,0,6,8,6,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,44,1,9147,1,39,130.0,1,19,1,9,3,130.0,0,0,0,1,0,1,20,0,4,7,8,7,13.0,0,2,5,5,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,145.0,1,38,19,4,9,127.9,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9500,1,1,128.0,1,37,37,9,8,124.3,1,0,0,1,0,1,19,0,0,7,8,7,13.46875,0,0,8,8,8,13.31375,0,15.5,2.8,-4.06,Graduate +1,18,3,9070,1,1,138.0,1,38,37,9,7,125.1,1,0,0,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,5,9119,1,1,131.0,1,19,37,9,7,123.3,1,0,0,1,1,1,19,0,0,5,9,5,12.6,0,0,5,8,2,12.5,0,8.9,1.4,3.51,Dropout +1,39,1,9500,1,1,130.0,1,37,19,9,8,106.2,1,0,0,1,0,0,27,0,0,7,14,0,0.0,0,0,7,14,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,171,1,1,131.0,1,19,38,4,5,132.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9003,1,1,120.0,1,37,37,5,9,120.0,1,0,0,1,1,0,39,0,0,6,8,0,0.0,0,1,6,8,2,11.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,132.0,1,4,39,2,2,136.6,1,0,0,1,0,0,18,0,1,6,10,6,11.714285714285714,1,0,6,15,6,10.375,0,13.9,-0.3,0.79,Enrolled +1,7,1,9500,1,40,170.0,1,1,1,9,4,170.0,0,0,0,1,0,0,24,0,4,7,7,7,16.885714285714283,0,3,8,9,8,15.744444444444444,0,16.2,0.3,-0.92,Graduate +1,16,1,9003,1,1,147.0,1,1,37,4,9,140.7,1,0,1,1,0,1,20,0,13,18,19,18,15.052631578947368,0,11,13,13,13,14.538461538461538,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,125.0,1,1,1,4,8,115.6,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,6,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,150.0,1,37,37,9,6,138.5,0,0,0,1,0,1,18,0,0,5,5,5,14.0,0,0,5,6,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,2,9991,0,1,143.0,1,5,1,4,4,131.5,0,0,0,1,1,0,19,0,0,5,11,4,11.0,0,0,5,8,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,9556,1,1,133.1,6,3,3,4,4,169.2,0,0,1,0,0,0,54,1,0,7,7,0,0.0,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,2,9556,1,1,133.1,1,1,1,9,10,100.5,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,13,0,0.0,1,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,120.0,1,19,38,9,7,117.9,1,0,0,1,0,1,21,0,0,6,6,5,13.0,0,0,6,7,6,12.833333333333334,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,146.0,1,1,38,9,9,135.5,1,0,1,1,0,0,22,0,12,17,19,12,11.833333333333334,0,10,17,22,11,11.25,0,11.1,0.6,2.02,Enrolled +1,1,3,9254,1,1,122.0,1,19,38,3,10,114.3,1,0,0,1,0,1,20,0,0,6,8,5,12.8,0,0,6,9,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,9130,1,1,130.0,1,2,3,9,1,117.6,0,0,0,1,1,0,19,0,0,5,14,2,11.5,2,0,5,8,5,11.4,3,9.4,-0.8,-3.12,Enrolled +4,43,4,9991,0,12,133.1,1,37,37,9,9,153.0,0,0,0,0,0,0,40,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,18,2,9500,1,1,135.0,1,38,37,9,5,125.3,1,0,0,1,0,1,18,0,0,8,8,7,11.785714285714286,0,0,8,8,7,11.785714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9500,1,19,133.1,1,38,37,9,9,133.0,0,0,0,1,0,0,24,0,0,7,9,6,12.585714285714284,0,0,8,9,7,13.44285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,171,1,1,129.0,1,38,37,4,6,128.0,0,0,0,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,128.0,1,2,19,2,4,123.3,1,0,0,1,0,1,20,0,0,6,6,6,14.833333333333334,0,0,6,8,6,12.142857142857142,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,130.0,1,19,3,4,2,159.0,0,0,0,1,0,1,51,0,0,6,8,5,11.6,0,0,6,9,5,14.2,0,12.4,0.5,1.79,Graduate +2,7,1,8014,0,3,130.0,1,19,38,3,7,130.0,0,0,0,1,0,0,32,0,8,14,18,13,12.846153846153848,0,7,11,19,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,116.0,1,19,37,3,3,109.0,1,0,0,1,0,1,23,0,0,7,8,6,12.993333333333334,0,0,8,9,8,12.66875,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,123.0,1,1,1,3,9,116.7,1,0,0,1,0,0,19,0,0,6,8,5,13.0,0,0,6,8,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,144.0,1,19,19,4,4,130.7,1,0,0,1,0,0,20,0,0,6,9,6,11.666666666666666,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,42,1,9500,1,1,100.0,1,19,37,5,7,134.3,1,0,0,1,0,0,28,0,12,17,21,17,13.394736842105264,0,11,17,19,17,13.554736842105264,0,16.2,0.3,-0.92,Graduate +1,17,6,9500,1,1,143.0,1,1,19,4,4,129.9,0,0,0,1,0,1,20,0,3,7,7,7,13.914285714285713,0,5,8,8,8,14.10625,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,19,133.1,1,19,37,7,9,137.2,0,0,1,0,0,0,32,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9853,1,1,123.0,1,19,19,9,7,117.4,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,144.0,1,19,19,5,5,130.3,1,0,0,1,0,1,18,0,0,8,8,7,13.814285714285717,0,0,8,8,7,13.814285714285717,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,137.0,1,1,19,4,7,126.7,1,0,0,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,4,9773,1,1,124.0,1,3,12,2,9,137.0,1,0,0,1,1,0,20,0,0,6,6,6,16.833333333333332,0,0,6,6,6,16.666666666666668,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,135.0,1,37,37,9,8,123.0,1,0,0,1,0,1,18,0,0,8,8,7,13.381428571428572,0,0,8,8,7,13.381428571428572,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,123.0,1,38,37,9,7,120.6,1,0,0,0,0,0,19,0,0,6,9,3,11.666666666666666,0,0,6,15,1,10.0,0,10.8,1.4,1.74,Dropout +2,2,1,9147,1,2,120.0,1,37,37,9,9,120.0,0,0,0,0,1,0,57,0,12,15,17,12,11.75,0,9,14,16,9,12.22222222222222,0,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,103.0,1,1,3,2,2,100.6,1,1,0,1,0,0,22,0,0,7,9,5,13.928,0,0,8,9,7,14.342857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,126.0,1,3,1,2,8,123.9,1,0,0,1,0,0,19,0,0,6,13,4,11.8,0,0,6,18,4,12.2,0,12.4,0.5,1.79,Enrolled +1,17,4,9500,1,1,136.0,1,3,3,2,2,132.5,1,0,0,1,0,0,19,0,0,7,8,7,13.198571428571428,0,0,8,8,8,13.0625,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,114.0,1,3,29,3,5,111.9,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,125.0,1,19,1,9,9,130.6,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,147.0,1,37,38,9,5,134.8,1,0,0,1,0,0,18,0,0,7,7,6,14.016666666666666,0,0,7,7,6,14.016666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,131.0,1,1,19,9,9,130.3,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,118.0,1,3,1,2,5,110.0,1,0,0,1,0,0,18,0,0,6,6,6,12.0,0,0,6,6,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,130.0,1,19,19,4,10,116.8,0,0,0,1,0,0,20,0,0,8,8,7,12.685714285714283,0,0,8,8,7,12.685714285714283,0,12.7,3.7,-1.7,Graduate +1,43,1,8014,0,6,133.1,1,34,34,0,0,100.0,0,0,1,1,0,0,29,0,1,6,9,4,12.0,0,1,6,13,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9670,1,12,170.0,1,1,37,3,5,110.0,0,0,0,1,1,1,25,0,0,6,8,6,14.142857142857142,0,0,6,6,6,13.5,0,15.5,2.8,-4.06,Graduate +2,1,1,9991,0,3,160.0,1,1,3,4,9,137.3,0,0,0,1,0,0,23,0,0,5,5,5,10.8,0,0,5,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,108.0,1,19,1,5,5,107.3,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,121.0,1,3,3,2,2,112.3,1,0,1,0,0,0,18,0,0,6,7,5,12.2,0,0,6,11,4,11.5,0,11.1,0.6,2.02,Dropout +1,1,2,9773,1,1,138.0,1,19,1,9,3,133.5,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9119,1,1,136.0,1,38,38,9,9,121.7,1,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,11,1,12.0,3,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,132.0,1,38,37,9,7,122.0,1,0,0,1,0,1,20,0,0,8,8,7,13.817142857142857,0,0,8,8,7,13.817142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9003,1,1,125.0,1,3,3,2,2,100.0,0,0,0,1,1,0,27,0,16,18,19,18,12.22222222222222,0,9,12,15,12,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,137.0,1,1,1,1,5,131.8,0,0,0,1,0,1,22,0,0,6,7,6,12.166666666666666,0,0,6,9,4,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,1,140.0,1,37,37,9,9,148.0,1,0,0,0,1,0,31,0,0,6,14,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,127.0,1,3,1,3,7,137.2,1,0,0,1,0,0,18,0,0,6,7,6,12.166666666666666,0,0,6,10,4,12.75,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,150.0,1,37,19,9,9,150.0,0,0,0,1,1,1,24,0,0,6,9,6,13.555555555555555,0,0,6,7,6,12.666666666666666,0,13.9,-0.3,0.79,Graduate +1,43,4,171,1,1,136.0,1,37,37,9,9,123.8,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9003,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,0,0,60,0,0,6,10,6,12.75,0,0,6,6,4,14.75,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,162.0,1,37,19,9,8,142.8,0,0,1,1,0,0,18,0,0,6,10,5,13.0,0,0,6,10,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,3,9147,1,1,127.0,1,1,38,5,7,123.5,1,0,0,1,0,1,19,0,0,5,5,5,11.6,0,0,5,11,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,133.1,1,19,37,9,9,130.0,0,0,0,0,0,1,20,0,0,6,10,5,13.4,0,0,6,9,5,11.4,0,10.8,1.4,1.74,Graduate +1,17,2,9070,1,1,121.0,1,1,19,144,144,111.9,1,0,0,1,1,0,19,0,0,6,9,5,12.0,0,0,6,10,4,11.2,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,115.0,1,19,37,9,9,114.3,0,0,0,1,1,0,18,0,0,6,7,4,12.6,0,0,6,6,4,13.0,0,12.4,0.5,1.79,Dropout +1,10,1,9254,1,1,115.0,24,3,1,9,9,116.1,1,0,0,1,0,0,19,1,0,6,6,6,13.5,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,143.0,1,19,3,4,4,147.2,0,0,0,1,0,0,18,0,0,7,7,7,15.714285714285714,0,0,7,7,7,15.0,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,160.0,1,1,38,4,4,160.0,1,0,0,1,1,1,20,0,0,6,9,6,13.444444444444445,0,0,6,9,5,12.6,0,13.9,-0.3,0.79,Graduate +2,1,1,9238,1,1,134.0,1,37,37,5,5,120.4,0,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,38,37,9,4,120.0,0,0,0,1,1,0,30,0,0,6,10,6,11.375,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Graduate +1,18,1,9119,1,1,108.0,1,1,1,4,3,105.6,1,0,0,1,1,0,20,0,0,5,7,5,12.166666666666666,0,0,5,7,5,15.285714285714286,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,137.0,1,37,37,9,9,141.0,0,0,0,1,1,0,36,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9254,1,1,113.0,1,1,2,5,3,106.7,1,0,1,1,1,1,19,0,0,6,14,2,10.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,16,1,9085,1,1,140.0,1,1,1,9,9,127.1,1,0,0,1,0,0,18,0,0,5,8,4,13.25,1,0,5,10,4,10.5,0,12.7,3.7,-1.7,Graduate +1,53,1,9238,1,42,140.0,1,37,37,9,10,136.9,1,0,0,1,0,0,21,0,5,9,10,9,12.77777777777778,0,4,9,9,9,13.22222222222222,0,8.9,1.4,3.51,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,7,134.5,0,0,0,1,0,1,47,0,0,6,8,5,12.2,0,0,6,10,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,2,9773,1,1,125.0,1,19,1,4,5,122.2,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9070,1,1,134.0,1,1,19,3,3,127.7,1,0,0,0,0,0,18,0,1,6,8,6,11.714285714285714,1,0,6,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,17,1,9147,1,1,96.0,1,38,37,6,4,96.0,1,0,0,1,0,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,0,0.0,3,16.2,0.3,-0.92,Dropout +1,10,1,9085,1,1,134.0,1,37,37,5,5,134.0,1,0,0,1,0,0,22,0,2,5,7,5,14.2,0,0,5,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,143.0,1,1,3,3,3,149.0,1,0,0,1,0,0,18,0,0,6,8,6,11.428571428571429,0,0,6,7,6,11.0,0,11.1,0.6,2.02,Dropout +1,18,3,9070,1,1,142.0,1,1,37,4,7,130.8,1,0,0,0,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,7,1,9003,1,3,140.0,1,3,19,2,10,140.0,0,0,0,0,1,0,35,0,0,6,10,5,15.2,0,1,6,9,1,11.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9773,1,1,151.0,1,38,37,9,5,138.4,1,0,0,1,0,1,24,0,0,6,7,6,13.666666666666666,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,143.0,1,19,19,4,4,135.3,1,0,0,1,0,0,18,0,0,8,8,8,13.27625,0,0,8,8,8,13.27625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,133.0,1,1,19,9,9,132.0,0,0,0,1,1,1,20,0,0,6,11,5,11.142857142857142,0,0,6,9,6,11.571428571428571,0,16.2,0.3,-0.92,Graduate +1,39,1,8014,0,19,133.1,1,37,37,9,5,135.5,0,0,0,1,0,0,58,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9254,1,1,134.0,1,37,37,9,9,133.3,1,0,1,1,0,0,19,0,0,6,13,2,11.5,0,0,6,13,1,11.0,0,7.6,2.6,0.32,Dropout +1,1,3,9085,1,1,135.0,1,3,2,4,3,121.0,1,0,0,1,0,0,18,0,0,5,14,3,12.333333333333334,2,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,140.0,1,1,1,4,4,123.5,1,0,0,1,0,1,19,0,0,8,8,8,14.75,0,0,8,8,8,14.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,188.0,1,3,3,2,2,178.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9238,1,1,126.0,1,30,19,0,2,121.5,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,131.0,1,3,19,5,5,127.2,1,0,0,1,0,1,19,0,0,7,7,7,13.801428571428572,0,0,8,8,8,14.575,0,11.1,0.6,2.02,Graduate +1,17,4,9853,1,1,143.0,1,37,37,9,5,127.3,1,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,7,5,11.4,0,10.8,1.4,1.74,Dropout +1,17,2,9238,1,1,111.0,1,19,38,9,9,110.7,1,0,0,1,0,0,19,0,0,6,9,6,12.166666666666666,0,0,6,9,6,11.0,0,8.9,1.4,3.51,Graduate +1,43,1,9500,1,1,140.0,1,19,38,9,7,125.7,1,0,0,1,1,1,19,0,0,7,8,5,11.2,0,0,7,8,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,6,9500,1,1,126.0,1,19,37,3,9,119.4,1,0,0,1,0,1,19,0,0,7,7,7,13.371428571428572,0,0,8,9,8,13.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,131.0,1,1,1,4,9,122.3,0,0,0,1,1,0,19,0,0,5,6,5,11.5,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,128.0,1,1,19,9,8,100.0,1,0,0,1,0,0,20,0,0,7,8,7,13.1,0,0,8,8,8,14.8125,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,138.0,1,19,19,5,1,130.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,1,140.0,1,3,3,1,1,140.0,1,0,0,1,0,0,24,0,0,8,8,8,13.385,0,0,8,8,8,13.385,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,3,130.0,1,1,19,5,9,130.0,0,0,0,1,1,0,27,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9773,1,1,131.0,1,38,1,5,7,131.0,1,0,0,1,1,1,18,0,0,6,7,6,12.714285714285714,0,0,6,8,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,19,133.1,1,19,19,9,7,140.0,0,0,1,0,0,0,24,0,2,6,11,3,11.75,0,1,6,14,3,10.333333333333334,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,133.1,1,37,37,9,9,126.5,0,0,0,1,0,0,27,0,0,5,5,2,10.5,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9500,1,1,132.0,1,37,37,9,7,128.3,1,0,0,1,0,1,19,0,0,7,8,7,14.70625,0,0,8,8,8,14.4775,0,15.5,2.8,-4.06,Graduate +1,16,1,171,1,1,145.0,1,3,3,3,3,155.0,1,0,0,1,0,0,24,0,11,17,19,11,12.909090909090908,0,9,13,15,9,13.555555555555555,0,12.4,0.5,1.79,Enrolled +4,1,1,9991,0,1,140.0,1,37,37,9,7,139.0,0,0,0,1,0,1,38,0,0,5,8,5,11.0,0,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9070,1,1,152.0,1,39,39,3,3,134.2,1,0,0,1,1,0,20,0,0,6,7,5,11.8,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,141.0,1,19,19,7,9,139.8,0,0,0,1,0,1,19,0,0,8,8,7,14.4,0,0,8,8,7,14.4,0,12.7,3.7,-1.7,Graduate +1,1,4,9670,1,1,133.0,1,1,2,4,7,121.1,1,0,0,1,0,0,18,0,0,6,7,6,13.666666666666666,0,0,6,9,5,15.4,0,13.9,-0.3,0.79,Graduate +1,15,1,9147,1,1,135.0,26,1,1,9,7,135.0,0,0,1,1,1,0,21,1,0,5,9,3,12.333333333333334,0,0,5,8,4,11.25,0,8.9,1.4,3.51,Enrolled +2,1,1,9991,0,1,144.0,1,19,19,9,9,151.4,0,0,0,1,0,0,28,0,0,5,5,5,12.0,0,0,5,6,5,11.6,0,7.6,2.6,0.32,Graduate +1,18,4,9853,1,1,118.0,1,19,37,9,6,111.4,1,0,1,0,0,0,20,0,0,7,9,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9500,1,1,134.0,1,38,1,9,6,133.5,1,0,0,1,1,1,20,0,0,7,8,7,11.9725,0,0,8,8,8,12.65125,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,37,37,9,6,107.0,0,0,0,1,1,0,41,0,1,7,7,7,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,141.0,1,38,38,9,9,128.4,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,133.0,1,1,1,9,9,128.5,1,0,0,1,0,1,18,0,0,7,7,7,14.868571428571428,0,0,8,9,8,15.11111111111111,0,11.1,0.6,2.02,Graduate +1,51,1,9085,1,40,120.0,1,3,3,4,2,125.0,0,0,0,1,0,0,28,0,0,6,8,6,14.428571428571429,0,0,6,12,4,15.6,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,150.0,1,37,38,3,7,134.5,0,0,0,1,0,0,28,0,0,6,8,5,11.833333333333334,0,0,6,6,6,13.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,127.0,1,3,19,4,4,116.9,0,0,0,1,1,0,21,0,0,6,7,5,11.0,0,0,6,7,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,136.0,1,2,38,143,163,129.7,1,0,0,1,1,0,19,0,0,6,10,4,12.5,0,0,6,12,1,10.0,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,159.0,1,1,1,3,3,151.0,1,0,0,1,0,0,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,15.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,165.0,1,37,38,9,8,152.4,1,0,0,1,0,1,18,0,0,6,8,6,15.5,0,0,6,7,6,14.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,6,9500,1,1,139.0,1,1,1,4,4,124.5,1,0,0,1,0,0,19,0,0,8,9,7,12.04142857142857,0,0,8,9,7,12.04142857142857,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,134.0,1,1,1,5,3,128.4,1,0,0,1,0,0,18,0,0,7,7,7,13.471428571428572,0,0,8,9,8,13.944444444444445,0,16.2,0.3,-0.92,Graduate +1,17,2,9238,1,1,133.0,1,2,1,3,4,136.2,1,0,0,1,0,0,19,0,0,6,14,1,11.5,0,0,6,12,2,10.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,120.0,1,19,1,8,7,115.1,1,0,0,1,0,0,19,0,0,6,8,6,13.857142857142858,0,0,6,9,5,13.4,0,13.9,-0.3,0.79,Graduate +1,17,3,9238,1,1,131.0,1,1,39,5,3,122.6,1,0,0,1,0,0,18,0,0,6,7,6,13.0,0,0,6,6,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,8014,0,1,130.0,1,1,1,9,9,118.1,0,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,6,12.0,0,7.6,2.6,0.32,Graduate +1,39,9,9991,0,1,120.0,1,38,38,9,5,144.8,0,0,0,1,1,0,28,0,0,5,7,4,12.75,0,0,5,7,5,14.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9500,1,19,133.1,1,37,37,9,9,129.0,1,0,0,1,0,0,36,0,0,7,7,6,11.3,0,0,7,7,6,11.3,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,138.0,1,1,19,4,7,123.0,1,0,1,0,0,0,18,0,0,6,9,5,11.4,0,0,6,14,2,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,143.0,1,1,37,9,9,135.0,1,0,0,1,0,0,21,0,0,5,8,4,11.0,0,0,5,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,120.0,1,19,1,9,3,120.0,1,0,0,1,1,0,23,0,2,7,8,5,12.2,0,5,9,10,7,12.142857142857142,1,16.2,0.3,-0.92,Dropout +1,1,2,9085,1,1,162.0,1,37,1,9,9,165.2,1,0,0,1,0,1,18,0,0,5,6,4,15.75,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,142.0,1,37,37,5,5,131.3,1,0,0,1,0,0,19,0,0,8,8,7,14.731428571428571,0,0,8,8,7,14.731428571428571,0,10.8,1.4,1.74,Graduate +1,1,3,171,1,1,125.0,1,38,37,4,9,115.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,120.0,1,38,37,5,3,110.5,0,0,0,1,0,1,36,0,0,6,6,6,11.833333333333334,0,0,6,6,6,11.5,0,10.8,1.4,1.74,Graduate +1,42,1,9773,1,6,120.0,1,34,34,0,0,122.0,1,0,0,1,0,0,34,0,8,10,11,10,12.2,0,5,10,12,9,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,162.0,1,1,38,4,5,138.6,1,0,0,1,0,0,19,0,0,5,10,1,11.0,0,0,5,13,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9500,1,1,152.0,1,1,1,4,4,141.0,1,0,0,1,0,1,18,0,0,7,7,7,15.135714285714286,0,0,8,8,8,15.287499999999998,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,139.0,1,3,19,3,5,120.8,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,135.0,1,1,1,3,5,130.1,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9670,1,1,127.0,1,3,3,1,1,121.4,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9556,1,1,135.0,1,1,1,1,1,131.5,0,0,0,1,1,1,21,0,0,7,14,5,11.2,0,0,8,11,6,11.583333333333334,0,16.2,0.3,-0.92,Enrolled +1,17,3,9670,1,1,147.0,1,37,37,8,8,128.8,0,0,1,1,0,0,19,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9147,1,1,133.1,41,38,38,9,8,134.8,0,0,0,1,0,0,24,1,0,5,12,2,10.5,0,0,5,9,4,10.0,2,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,90,8,128.2,0,0,0,1,0,0,33,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,131.0,1,1,37,4,4,126.1,1,0,0,1,0,1,19,0,0,7,7,7,12.495714285714286,0,0,8,9,7,12.242857142857144,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,9,9,125.3,1,0,0,1,1,0,41,0,0,5,8,4,11.25,0,0,5,8,3,11.0,1,7.6,2.6,0.32,Dropout +2,39,1,8014,0,3,110.0,1,37,37,9,9,160.5,0,0,0,1,0,0,38,0,8,11,11,11,12.636363636363637,0,5,8,8,8,11.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,138.0,1,38,1,9,4,127.5,1,0,0,1,0,0,19,0,0,7,10,5,12.94,0,0,7,7,5,13.76,0,16.2,0.3,-0.92,Enrolled +1,39,1,9238,1,1,170.0,1,38,19,9,9,140.0,1,0,0,1,0,0,24,0,0,6,9,4,15.75,0,0,6,10,5,16.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,1,19,4,10,142.3,1,0,0,1,0,1,26,0,0,6,6,6,13.333333333333334,0,0,6,10,5,14.5,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,154.0,1,38,37,9,9,140.4,0,0,0,1,0,1,22,0,0,6,6,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,133.1,41,19,1,9,9,105.0,1,0,0,0,0,0,21,1,0,6,6,6,14.0,0,0,6,6,6,13.5,0,8.9,1.4,3.51,Graduate +2,44,1,9085,1,39,160.0,1,37,37,192,192,160.0,0,0,0,1,0,0,27,0,0,5,12,3,14.0,2,0,5,8,5,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,141.0,1,38,38,9,9,142.3,1,0,0,1,0,0,18,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,119.0,1,37,37,7,7,112.0,1,0,0,0,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,137.0,1,37,37,9,9,127.5,1,0,0,1,0,0,18,0,0,8,8,8,13.045,0,0,8,8,8,13.045,0,9.4,-0.8,-3.12,Graduate +4,39,1,9670,1,1,100.0,1,37,37,4,10,120.0,0,0,1,1,0,1,39,0,0,5,6,5,10.6,0,0,5,7,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,130.0,1,3,3,2,2,131.1,0,0,0,1,1,0,19,0,0,7,8,7,12.12142857142857,0,0,9,12,8,11.50625,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,120.0,1,1,19,9,3,116.9,1,0,1,0,1,0,18,0,0,5,10,3,12.0,0,0,5,8,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,42,1,9500,1,1,100.0,1,1,19,4,8,136.0,1,0,0,1,0,0,21,0,4,7,9,7,14.355555555555554,0,5,8,8,8,13.49375,0,15.5,2.8,-4.06,Graduate +1,1,2,171,1,1,125.0,1,38,19,9,9,117.3,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,152.0,1,1,38,4,9,160.4,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9147,1,12,133.1,1,37,37,9,7,139.4,0,0,1,1,0,0,41,0,0,5,6,5,11.6,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,150.0,1,1,1,4,8,131.5,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,7,1,9556,1,4,190.0,1,5,5,2,2,190.0,1,0,0,1,1,0,43,0,4,4,4,4,13.875,0,1,1,1,1,12.5,0,11.1,0.6,2.02,Dropout +1,17,3,9238,1,1,121.0,1,1,1,4,5,117.2,0,0,0,1,0,0,19,0,0,6,11,5,11.2,0,0,6,13,5,11.6,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,130.0,1,37,37,9,7,113.0,1,0,0,0,1,0,35,0,0,6,17,1,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,123.0,1,19,19,4,10,124.4,1,0,0,1,0,0,19,0,0,6,14,6,15.666666666666666,0,0,6,9,6,14.5,0,15.5,2.8,-4.06,Graduate +1,17,2,9238,1,1,133.0,1,37,37,3,9,119.7,0,1,0,1,0,1,18,0,0,6,9,6,11.333333333333334,0,0,6,9,6,11.571428571428571,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,138.0,1,38,19,9,10,133.1,0,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,43,1,9070,1,1,108.0,1,38,38,7,7,105.2,1,0,0,1,1,0,25,0,11,17,18,13,11.538461538461538,0,10,15,15,10,12.4,0,12.7,3.7,-1.7,Dropout +1,1,3,171,1,1,115.0,1,9,1,6,6,108.7,1,0,0,0,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,4,4,119.8,1,0,0,1,0,1,19,0,0,8,8,8,12.82875,0,0,8,8,8,12.82875,0,9.4,-0.8,-3.12,Graduate +1,1,6,9119,1,1,126.0,1,19,19,7,3,116.6,1,0,0,1,1,1,20,0,0,5,6,5,14.0,0,0,5,7,5,13.8,0,8.9,1.4,3.51,Graduate +2,39,1,9500,1,1,133.1,1,37,37,9,9,130.1,0,0,0,0,1,0,37,0,0,7,10,5,13.0,0,0,7,9,5,12.88,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,124.0,1,37,38,9,3,114.2,0,0,0,1,0,0,18,0,0,6,13,4,11.0,0,0,6,12,5,10.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,3,9147,1,1,137.0,1,1,1,4,7,124.4,1,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,5,4,11.0,0,11.1,0.6,2.02,Enrolled +1,39,1,9130,1,19,133.1,1,37,37,9,10,156.4,1,0,1,1,1,0,44,0,0,6,9,5,11.571428571428571,0,0,6,11,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,5,9853,1,1,121.0,1,38,19,7,7,117.5,1,0,1,0,0,0,20,0,0,6,14,2,12.0,0,0,6,14,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,2,9238,1,1,117.0,1,19,1,9,8,110.0,1,0,1,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,51,1,9147,1,1,148.0,1,1,19,9,6,118.4,1,0,0,1,1,0,30,0,0,5,7,5,13.4,0,0,5,7,4,13.25,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,133.0,1,1,1,4,4,100.0,0,0,0,1,0,0,20,0,1,8,8,7,11.571428571428571,0,1,8,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,17,1,9238,1,1,158.0,1,1,1,5,6,140.5,0,0,0,1,0,1,20,0,0,6,9,6,11.333333333333334,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,157.0,1,19,38,9,7,146.2,1,0,0,1,0,1,20,0,0,6,8,6,15.25,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9119,1,1,131.0,1,3,1,4,1,135.9,0,0,0,1,1,0,18,0,0,5,10,2,14.0,0,0,5,7,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,130.0,1,38,37,5,10,117.8,1,0,0,1,1,0,19,0,0,8,8,7,15.885714285714286,0,0,8,8,7,15.885714285714286,0,10.8,1.4,1.74,Graduate +1,1,2,9119,1,1,126.0,1,1,38,141,192,122.5,1,0,0,1,1,0,20,0,0,5,7,5,10.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,117.0,1,37,37,0,4,120.5,1,0,0,1,1,0,19,0,0,6,12,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9254,1,1,110.0,1,12,19,9,9,125.0,0,0,0,0,1,0,31,0,3,8,19,5,12.166666666666666,0,3,7,12,5,12.0,0,7.6,2.6,0.32,Dropout +1,18,1,9147,1,1,121.0,1,19,3,5,5,115.8,1,0,0,1,0,1,19,0,0,5,7,5,11.6,0,0,5,5,5,11.6,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,139.0,0,0,1,0,1,0,33,0,0,6,8,0,0.0,0,0,5,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9003,1,3,130.0,1,3,3,6,2,130.0,1,0,0,1,1,0,29,0,1,6,10,6,17.11111111111111,0,2,6,9,6,15.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,132.0,1,19,37,3,5,125.4,1,0,0,0,0,1,20,0,0,7,7,7,13.462857142857144,0,0,8,10,7,13.164285714285716,0,11.1,0.6,2.02,Enrolled +1,39,1,9003,1,1,133.1,1,38,38,4,7,115.6,1,0,0,0,0,0,27,0,0,6,8,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9085,1,1,129.0,1,1,2,3,1,125.9,1,0,0,1,0,0,19,0,0,5,13,4,12.0,2,0,5,8,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,37,37,9,9,143.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,126.0,1,3,19,3,3,115.2,0,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,13,5,11.8,5,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,123.0,1,19,38,9,10,116.7,1,0,0,1,0,0,20,0,0,7,7,7,12.485714285714286,0,0,8,12,8,12.9375,0,16.2,0.3,-0.92,Graduate +1,17,2,9254,1,1,125.0,1,37,37,9,8,122.6,1,0,1,0,0,0,20,0,0,6,8,4,11.75,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9119,1,1,160.0,1,38,37,7,7,129.0,0,0,0,1,1,0,24,0,0,5,9,0,0.0,0,0,5,8,2,14.5,2,7.6,2.6,0.32,Dropout +1,1,4,9500,1,1,140.0,1,3,19,2,3,133.8,1,0,0,1,0,0,17,0,0,8,14,5,12.46,0,0,8,14,5,12.46,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,120.0,1,19,19,4,7,115.5,1,0,1,1,1,0,18,0,0,5,8,3,10.333333333333334,0,0,5,11,3,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,120.0,1,38,38,3,3,140.0,0,0,0,1,0,0,25,0,0,5,11,3,10.666666666666666,0,0,5,11,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,1,9238,1,1,127.0,1,1,19,4,3,141.7,1,0,0,1,1,0,22,0,0,6,6,6,12.666666666666666,0,0,6,6,6,13.833333333333334,0,10.8,1.4,1.74,Dropout +1,39,1,9003,1,1,111.0,1,37,37,9,10,95.8,1,0,0,0,1,0,43,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,130.0,1,38,1,9,4,140.0,1,0,0,1,0,0,24,0,0,8,8,7,14.985714285714286,0,0,8,8,7,14.985714285714286,0,12.7,3.7,-1.7,Graduate +1,1,2,9147,1,1,131.0,1,1,1,9,9,118.8,0,0,0,1,1,1,18,0,0,5,9,4,11.5,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,161.0,1,1,19,4,4,152.3,0,0,0,1,0,0,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,14.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,124.0,1,38,38,9,9,115.6,0,0,0,1,1,1,20,0,0,5,8,5,12.375,0,0,5,7,5,11.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,160.0,1,3,3,1,2,149.2,0,0,0,1,1,0,18,0,0,5,7,4,14.0,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,16,3,9853,1,1,134.0,1,19,37,9,9,121.1,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,8,5,11.8,0,10.8,1.4,1.74,Enrolled +1,43,2,9991,0,1,140.0,1,37,37,5,5,124.3,1,0,0,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,127.0,1,38,37,5,7,123.9,1,0,0,1,0,0,18,0,0,5,9,4,13.0,0,0,5,8,5,13.142857142857142,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,120.0,1,19,37,6,8,160.0,0,0,0,1,1,0,40,0,0,5,5,5,11.0,0,0,5,5,5,13.4,0,15.5,2.8,-4.06,Graduate +1,39,1,9085,1,1,133.1,1,3,3,4,2,144.9,1,0,0,1,0,0,26,0,0,6,11,3,11.75,0,0,6,19,4,12.8,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,130.0,1,1,19,3,10,130.0,1,0,0,1,1,0,19,0,0,6,9,6,12.166666666666666,0,0,6,14,4,13.0,0,12.4,0.5,1.79,Graduate +1,42,1,9003,1,1,130.0,1,3,2,2,6,105.3,0,0,0,0,1,0,36,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9991,0,1,130.0,1,37,37,9,9,127.6,0,0,0,1,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,44,1,9070,1,39,100.0,1,1,38,4,6,104.8,0,0,1,0,0,0,22,0,2,7,9,5,11.6,0,5,9,9,5,10.0,0,12.4,0.5,1.79,Dropout +1,1,5,9070,1,1,125.0,1,3,3,2,2,140.8,1,0,0,1,1,0,22,0,0,6,6,6,14.666666666666666,0,0,6,6,6,15.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,133.1,1,34,38,0,4,147.0,0,0,0,1,0,0,22,0,0,5,6,2,12.5,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,126.0,1,34,34,0,0,142.4,0,0,0,1,0,0,32,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,121.0,1,19,38,4,10,114.4,0,0,0,1,0,0,19,0,0,6,10,5,11.5,0,0,6,9,4,14.6,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,133.1,1,37,37,5,0,111.5,0,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,11,4,13.5,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,130.0,1,1,19,5,5,129.1,1,0,0,1,0,0,18,0,0,7,9,7,13.044444444444444,0,0,8,10,8,13.595,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,3,1,4,6,130.0,0,0,0,1,1,0,19,0,0,6,8,5,11.5,0,0,6,11,6,11.333333333333334,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,1,123.0,1,19,1,1,1,140.8,0,0,0,1,0,0,25,0,0,8,8,7,12.084285714285716,0,0,8,8,7,12.084285714285716,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,130.0,1,1,1,4,10,130.0,1,0,0,1,0,0,19,0,2,7,11,6,12.0,0,5,9,9,8,12.75,0,16.2,0.3,-0.92,Graduate +4,39,1,9085,1,1,133.1,1,34,34,0,0,128.2,0,0,0,1,0,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,128.0,1,37,37,9,9,135.7,1,0,0,1,1,0,19,0,0,6,7,5,13.2,0,0,6,10,5,13.25,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,135.0,1,38,38,4,7,121.7,1,0,0,1,0,1,18,0,0,6,14,0,0.0,0,0,6,9,4,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9085,1,1,110.0,25,38,38,9,6,117.2,1,0,0,1,1,0,28,1,13,18,45,18,12.5,12,10,13,26,12,11.428571428571429,6,15.5,2.8,-4.06,Graduate +1,43,3,9500,1,1,140.0,1,1,19,9,7,127.5,1,0,1,1,0,1,20,0,0,7,9,7,12.327777777777778,0,0,8,10,8,11.736,0,15.5,2.8,-4.06,Graduate +1,17,3,9238,1,1,133.1,1,41,1,2,3,117.0,1,0,0,1,0,0,21,0,0,6,8,6,12.666666666666666,0,0,6,7,6,12.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,1,112.0,1,37,37,9,9,108.5,0,0,0,1,1,0,21,0,0,6,6,6,12.666666666666666,0,0,6,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,51,1,9238,1,39,140.0,1,38,38,5,7,129.1,1,0,0,1,0,1,20,0,6,11,11,11,12.818181818181818,0,6,11,11,11,13.545454545454543,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,122.0,1,38,19,9,9,126.6,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,43,1,9147,1,1,123.0,1,1,1,4,4,114.4,0,0,0,1,1,0,22,0,0,5,6,0,0.0,0,0,5,8,2,11.5,0,15.5,2.8,-4.06,Dropout +1,18,4,171,1,1,133.0,1,1,4,9,5,129.2,1,0,1,0,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9147,1,1,128.0,1,19,19,9,5,121.7,1,0,0,1,0,0,19,0,0,5,8,5,11.0,0,0,5,6,5,15.4,0,12.4,0.5,1.79,Graduate +1,39,1,9130,1,1,150.0,1,19,19,9,5,160.0,1,0,0,1,1,0,24,0,0,5,13,4,13.75,1,0,5,9,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,160.0,1,19,37,5,3,152.0,0,0,0,1,0,0,18,0,0,6,7,6,14.714285714285714,0,0,6,7,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,53,1,9085,1,42,140.0,1,19,37,9,8,142.5,1,0,0,1,0,1,22,0,7,11,18,8,13.5,0,4,9,16,7,13.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,1,9085,1,1,130.0,1,9,19,4,1,134.2,1,0,0,1,0,0,20,0,0,5,13,0,0.0,5,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,3,9254,1,1,121.0,1,19,19,9,6,125.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,128.0,1,19,1,9,10,157.4,1,0,0,1,0,0,26,0,0,6,7,6,16.5,0,0,6,8,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,146.0,1,37,37,9,7,149.2,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9853,1,12,133.1,1,37,37,7,8,103.0,0,0,0,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,143.0,1,19,19,5,6,142.3,0,0,0,1,0,1,18,0,0,7,7,7,13.79714285714286,0,0,8,8,8,13.775,0,12.4,0.5,1.79,Enrolled +1,1,2,9085,1,1,118.0,1,1,19,3,3,112.4,1,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,15,3,10.6,4,10.8,1.4,1.74,Enrolled +2,43,1,9991,0,1,100.0,1,37,37,9,9,128.2,0,0,0,1,1,0,46,0,6,10,13,9,12.2,0,4,10,12,10,12.8,0,7.6,2.6,0.32,Graduate +1,43,2,9238,1,1,118.0,1,38,38,5,5,110.0,0,0,0,1,0,1,19,0,0,6,8,6,11.428571428571429,0,0,6,11,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9147,1,1,136.0,1,38,38,9,9,127.3,1,0,0,1,1,0,19,0,0,5,8,3,11.0,0,0,5,7,2,10.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,170.0,1,19,19,8,8,176.7,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,124.0,41,19,38,9,9,123.3,1,0,0,1,0,0,22,1,0,6,7,6,10.833333333333334,0,0,6,6,6,10.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,4,9070,1,1,170.0,1,3,3,2,2,165.8,1,0,0,1,1,0,18,0,0,6,7,6,14.5,0,0,6,6,6,15.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,143.0,1,3,37,9,9,142.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9147,1,1,122.0,1,1,38,4,5,116.4,0,0,0,1,1,0,21,0,0,5,10,3,11.25,0,0,5,9,3,11.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,150.0,1,1,1,4,4,138.1,1,0,0,1,0,0,19,0,0,6,7,6,14.0,0,0,6,7,5,15.0,0,11.1,0.6,2.02,Enrolled +1,17,6,9238,1,1,138.0,1,3,3,1,2,123.0,1,0,0,1,0,0,19,0,0,6,11,5,10.8,0,0,6,12,5,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,135.0,1,19,12,9,7,137.1,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9070,1,1,125.0,1,1,3,3,3,128.9,0,0,0,1,0,1,18,0,0,6,9,5,11.6,0,0,6,8,4,11.2,0,8.9,1.4,3.51,Enrolled +1,17,1,9773,1,1,128.0,1,38,19,9,10,125.2,1,0,0,1,1,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Enrolled +1,42,1,9003,1,1,140.0,1,1,3,4,2,140.0,1,0,0,1,1,0,23,0,0,6,14,5,12.0,0,0,6,12,5,12.142857142857142,0,15.5,2.8,-4.06,Enrolled +1,39,1,9500,1,19,133.1,1,37,38,151,161,143.7,0,0,0,1,0,0,27,0,0,7,12,4,14.0,0,0,7,14,3,12.525,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,118.0,1,38,38,7,7,115.2,1,0,0,1,0,0,19,0,0,7,9,6,12.97166666666667,0,0,8,9,7,12.321428571428571,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,152.0,1,19,37,9,8,135.6,1,0,0,1,1,0,18,0,0,5,5,5,15.4,0,0,5,5,5,15.6,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,12,110.0,1,34,34,0,0,157.8,0,0,0,1,0,0,44,0,5,8,13,8,13.75,0,2,6,9,6,12.5,0,7.6,2.6,0.32,Graduate +1,1,6,9147,1,1,112.0,1,38,38,9,9,117.3,1,0,0,1,0,0,20,0,0,5,8,4,12.0,0,0,5,8,5,11.2,0,11.1,0.6,2.02,Graduate +1,17,3,9147,1,1,118.0,1,1,19,5,7,118.0,0,0,0,1,0,0,20,0,0,5,11,4,11.0,0,0,5,7,5,13.2,0,12.4,0.5,1.79,Enrolled +1,44,1,9070,1,39,120.0,1,1,19,5,8,119.8,0,0,0,1,1,0,21,0,2,7,7,2,12.0,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Dropout +1,39,1,9670,1,1,133.1,1,19,19,3,9,118.0,0,0,0,1,1,0,27,0,0,6,7,6,14.0,0,0,6,7,6,14.714285714285714,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,159.0,1,1,19,9,9,151.3,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,118.0,1,1,38,5,7,120.8,1,0,0,1,0,0,20,0,0,6,9,4,13.25,0,0,6,11,5,11.8,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,132.0,1,1,37,8,9,128.0,1,0,0,1,0,0,19,0,0,7,7,7,13.467142857142855,0,0,8,9,8,15.011111111111113,0,12.4,0.5,1.79,Graduate +1,42,1,9147,1,1,135.0,1,19,1,4,4,120.0,0,0,0,0,1,0,25,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9670,1,1,122.0,1,1,38,3,3,114.3,1,0,0,1,0,0,18,0,0,6,8,6,13.875,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,171,1,1,131.0,1,1,1,0,3,149.9,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +4,39,2,9556,1,1,133.1,1,38,37,7,7,101.5,1,0,0,1,0,0,24,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,5,9119,1,1,126.0,1,12,19,4,5,122.5,1,0,0,1,1,0,19,0,0,5,12,3,12.0,0,0,5,10,3,12.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,145.0,1,2,38,3,8,136.3,1,0,0,1,0,0,18,0,0,8,12,7,12.285714285714286,0,0,8,12,7,12.285714285714286,0,12.7,3.7,-1.7,Enrolled +1,15,1,9147,1,1,150.0,1,38,1,9,1,150.0,0,0,0,1,1,0,19,0,0,5,5,5,10.6,0,0,5,8,5,11.6,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,150.0,1,3,39,3,7,126.4,0,0,0,1,1,0,26,0,5,7,8,7,13.285714285714286,0,3,8,11,7,12.142857142857142,0,12.4,0.5,1.79,Enrolled +1,17,2,9773,1,1,148.0,1,3,38,2,6,144.2,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,124.0,1,37,19,9,3,116.3,1,0,0,1,0,0,20,0,0,6,8,5,12.2,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +2,39,1,9003,1,1,130.0,1,1,37,9,1,122.0,0,0,1,0,1,0,25,0,3,10,23,6,11.428571428571429,0,2,7,15,4,12.0,1,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,160.0,1,19,38,5,7,139.0,1,0,0,1,0,1,18,0,0,6,8,5,12.2,0,0,6,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9130,1,1,157.0,1,3,2,3,6,150.9,1,0,0,1,0,0,18,0,0,6,8,6,15.0,0,0,6,8,5,15.166666666666666,0,13.9,-0.3,0.79,Dropout +1,42,1,9119,1,1,120.0,1,1,1,5,7,108.6,0,0,0,0,1,0,34,0,2,7,13,5,12.0,0,2,7,7,3,11.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9773,1,1,138.0,1,37,38,4,9,134.2,1,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,110.0,1,0,0,1,0,0,38,0,4,10,14,4,10.75,0,2,10,10,2,10.0,0,7.6,2.6,0.32,Dropout +4,39,1,9853,1,1,143.0,1,37,1,9,10,140.0,0,0,1,0,0,0,31,0,0,7,8,6,12.666666666666666,0,0,7,9,5,12.6,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,130.0,1,3,19,4,8,133.0,1,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,19,38,6,7,140.0,1,0,0,1,1,0,19,0,0,6,8,6,12.714285714285714,0,0,6,9,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,132.0,1,2,2,6,6,128.5,0,0,0,1,0,0,18,0,0,6,11,5,12.285714285714286,0,0,6,19,3,14.0,1,12.4,0.5,1.79,Dropout +1,1,2,171,1,1,135.0,1,19,19,4,7,149.0,1,0,0,1,1,0,22,0,14,17,21,17,12.578947368421051,0,15,17,20,17,12.117647058823527,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,130.0,1,19,38,3,9,126.5,1,0,0,1,0,0,18,0,0,6,8,4,12.5,0,0,6,6,5,12.6,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,125.0,1,19,38,9,8,121.5,0,0,0,1,0,1,21,0,0,6,7,6,12.0,0,0,6,6,6,12.5,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,7,129.0,0,0,0,1,0,0,37,0,0,6,13,4,12.0,0,0,6,10,3,12.0,0,16.2,0.3,-0.92,Dropout +1,7,3,9130,1,3,130.0,1,37,26,90,10,130.0,0,0,0,0,1,0,41,0,0,5,9,0,0.0,4,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,123.0,1,19,19,7,7,120.8,1,0,0,1,0,0,19,0,0,8,11,7,12.545714285714286,0,0,8,11,7,12.545714285714286,0,10.8,1.4,1.74,Graduate +1,18,2,9853,1,1,168.0,1,1,19,3,9,126.8,1,0,0,1,1,0,18,0,0,6,7,5,12.6,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Enrolled +1,44,1,9085,1,39,140.0,1,3,1,4,3,140.0,1,0,0,1,0,1,20,0,2,6,11,6,11.833333333333334,0,1,6,17,5,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,148.0,1,19,19,9,9,138.7,0,0,0,1,0,1,19,0,0,7,10,7,15.114999999999998,0,0,8,10,8,15.092,0,15.5,2.8,-4.06,Graduate +1,18,1,171,1,1,110.0,1,19,2,5,5,117.7,1,0,1,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9070,1,1,136.0,1,37,38,9,9,125.2,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +2,39,1,8014,0,1,133.1,1,37,37,5,4,134.5,0,0,0,1,0,0,45,0,0,6,8,5,13.6,0,0,6,7,5,13.0,0,15.5,2.8,-4.06,Enrolled +1,42,1,9119,1,1,150.0,1,38,37,5,8,133.5,1,0,0,1,1,0,21,0,0,5,10,5,13.0,0,0,5,10,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,44,1,8014,0,39,140.0,1,1,3,4,6,139.2,0,0,1,1,0,0,20,0,3,6,6,6,13.833333333333334,0,2,6,7,6,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9853,1,1,125.0,1,19,19,5,5,117.0,0,0,0,1,0,1,19,0,0,6,7,6,13.428571428571429,0,0,6,6,6,13.166666666666666,0,15.5,2.8,-4.06,Graduate +1,39,1,9147,1,12,133.1,1,19,37,7,9,118.2,0,0,0,1,0,0,31,0,0,5,8,1,13.0,2,0,5,9,4,12.25,0,10.8,1.4,1.74,Dropout +1,1,2,9147,1,1,121.0,1,1,19,9,9,113.7,1,0,0,0,0,0,20,0,0,5,10,2,10.0,0,0,5,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9130,1,1,140.0,1,3,3,2,2,140.0,0,0,0,1,0,0,20,0,10,17,29,14,12.5625,4,7,12,24,12,12.857142857142858,1,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,131.0,1,3,19,2,3,132.8,1,0,0,1,1,0,19,0,0,6,7,6,14.428571428571429,0,0,6,7,6,14.571428571428571,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,136.0,1,37,38,4,5,126.0,1,0,0,1,0,0,19,0,0,8,8,7,15.11,0,0,8,8,7,15.11,0,10.8,1.4,1.74,Graduate +1,1,1,9853,1,1,145.0,1,37,37,9,5,146.8,0,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,123.0,1,1,1,4,9,116.7,1,0,0,1,1,1,20,0,0,6,10,4,13.2,0,0,6,8,0,0.0,0,12.4,0.5,1.79,Dropout +1,18,1,171,1,1,121.0,1,1,1,4,3,116.8,1,0,0,1,0,0,23,0,15,17,18,17,11.5,0,16,17,17,17,12.176470588235292,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,141.0,1,38,1,9,4,129.0,1,0,0,1,0,1,18,0,0,7,7,6,13.05,0,0,7,7,6,13.05,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,133.1,1,34,34,0,0,130.0,0,0,0,1,1,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,126.0,1,1,3,4,3,122.5,1,0,0,1,0,0,19,0,0,6,6,6,13.333333333333334,0,0,6,8,5,12.8,0,8.9,1.4,3.51,Dropout +2,1,1,9254,1,1,136.0,1,37,37,9,9,122.7,0,0,0,1,0,1,45,0,0,6,10,4,11.5,0,0,6,16,2,10.5,0,7.6,2.6,0.32,Dropout +1,39,1,9556,1,19,133.1,1,37,37,9,10,100.0,0,0,0,1,1,0,31,0,0,7,7,0,0.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9500,1,1,133.1,1,38,19,7,9,115.5,1,0,0,1,1,1,20,0,0,8,8,7,13.024285714285714,0,0,8,8,7,13.024285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9991,0,1,131.0,1,19,37,9,9,118.4,1,0,0,1,0,0,20,0,0,5,10,0,0.0,0,0,5,10,0,0.0,3,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,153.0,1,1,38,4,3,146.7,0,0,0,1,0,0,18,0,0,5,5,5,16.2,0,0,5,5,5,16.4,0,11.1,0.6,2.02,Graduate +1,43,1,8014,0,12,114.0,1,34,34,0,99,110.0,0,0,0,1,0,0,29,0,0,6,10,6,11.666666666666666,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,147.0,1,1,1,5,5,134.9,0,1,0,1,0,0,18,0,0,7,7,7,13.642857142857142,0,0,8,11,8,14.772727272727272,0,16.2,0.3,-0.92,Graduate +1,1,2,9085,1,1,156.0,1,40,40,3,7,150.9,1,0,0,1,0,0,18,0,0,6,8,6,16.0,0,0,6,10,6,14.625,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,137.0,1,38,38,5,7,122.7,1,0,0,1,0,1,18,0,0,7,8,7,13.778571428571428,0,0,8,10,8,13.122222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9147,1,1,123.0,1,1,19,4,5,117.8,0,0,0,1,1,0,20,0,0,5,9,5,12.0,0,0,5,9,4,13.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9238,1,1,135.0,1,37,37,8,6,127.0,0,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,131.0,1,37,37,9,9,123.0,1,0,0,1,0,1,18,0,0,5,6,3,11.666666666666666,0,0,5,6,4,13.5,0,7.6,2.6,0.32,Enrolled +1,17,2,9670,1,1,123.0,1,3,1,3,1,116.7,0,0,0,1,0,0,19,0,0,5,5,5,13.4,0,0,5,5,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,9085,1,40,140.0,1,1,19,5,5,140.0,1,0,0,1,0,0,23,0,0,6,7,6,15.571428571428571,0,0,6,8,6,16.375,0,12.4,0.5,1.79,Graduate +4,39,1,9500,1,19,133.1,1,38,19,5,7,140.0,0,0,0,1,0,1,26,0,0,7,13,5,12.74,0,0,8,12,6,10.978571428571428,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,127.0,1,3,19,3,9,127.0,1,0,0,1,1,0,18,0,0,6,9,6,13.571428571428571,0,0,6,11,4,14.0,0,12.4,0.5,1.79,Graduate +1,17,2,8014,0,1,120.0,1,19,1,5,10,114.8,1,0,0,1,0,0,19,0,0,6,8,4,10.5,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9670,1,19,133.1,1,37,37,9,7,130.0,0,0,1,1,1,1,29,0,0,6,16,1,14.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,171,1,1,131.0,41,19,1,4,7,131.4,1,0,0,1,1,0,20,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,16,2,171,1,1,145.0,1,3,3,2,2,143.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,120.0,1,19,38,6,6,120.0,1,0,0,1,1,0,19,0,0,6,8,6,12.142857142857142,0,0,6,11,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,6,9238,1,1,131.0,1,1,3,4,2,131.7,1,0,0,1,0,0,18,0,0,6,8,4,11.75,0,0,6,8,4,12.25,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,137.0,1,3,1,4,9,128.6,0,0,0,1,0,1,18,0,0,6,7,6,13.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,170.0,1,19,19,9,7,170.0,1,0,1,1,1,0,21,0,0,6,7,6,15.285714285714286,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,17,4,9853,1,1,122.0,1,38,37,9,9,118.9,1,0,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,5,9500,1,1,148.0,1,1,19,4,8,130.2,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9003,1,19,133.1,1,1,19,9,8,120.0,0,0,1,0,1,0,27,0,0,6,11,2,11.5,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,2,9147,1,1,143.0,1,19,38,9,7,132.2,1,0,0,1,0,1,18,0,0,5,8,5,13.75,0,0,5,6,5,12.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9556,1,1,132.0,1,38,37,7,7,119.0,1,0,0,1,0,0,19,0,0,7,9,7,11.677777777777775,0,0,8,8,8,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,133.1,1,3,1,4,4,95.0,0,0,0,1,1,0,19,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9254,1,1,154.0,1,3,1,2,1,137.2,0,0,0,1,1,0,20,0,0,6,12,3,10.0,0,0,6,9,5,10.8,0,15.5,2.8,-4.06,Enrolled +1,1,1,9853,1,1,129.0,1,38,37,6,6,138.1,0,0,0,1,0,0,19,0,0,6,8,6,12.0,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,17,2,9670,1,1,129.0,1,1,19,5,5,119.2,1,0,0,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,43,1,9500,1,1,137.0,1,3,3,2,2,115.0,0,0,0,1,0,0,28,0,0,7,8,7,14.95,0,0,8,8,8,14.7375,0,13.9,-0.3,0.79,Graduate +1,17,2,9254,1,1,115.0,1,19,19,9,7,113.3,1,0,1,1,0,0,21,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,133.0,1,38,38,7,7,125.3,1,0,0,1,0,1,18,0,0,6,6,6,11.333333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,110.0,1,37,37,7,10,150.0,0,0,0,0,0,0,48,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,19,133.1,1,19,19,144,141,131.5,0,0,1,1,0,1,39,0,0,6,9,6,11.833333333333334,0,0,6,9,4,13.75,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,133.0,1,38,1,2,4,126.0,0,0,0,1,0,0,20,0,0,6,11,1,12.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,15,1,9147,1,1,133.1,41,41,1,3,4,100.0,0,0,1,0,1,0,26,1,6,7,7,6,13.0,0,2,6,6,2,14.0,0,11.1,0.6,2.02,Dropout +1,10,2,9773,1,1,154.4,22,19,38,3,5,154.4,1,0,0,0,0,0,18,1,0,6,8,5,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9070,1,39,100.0,1,1,1,4,4,106.0,0,0,0,1,1,0,21,0,2,7,7,5,11.8,0,5,9,9,5,11.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,135.0,1,38,19,8,8,126.3,1,0,1,1,0,1,18,0,0,7,8,7,12.65,0,0,8,9,8,12.445555555555554,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,120.0,41,1,1,9,6,114.8,1,0,0,1,0,0,21,1,0,7,11,4,13.25,0,0,7,9,5,13.82,0,11.1,0.6,2.02,Enrolled +1,17,1,9085,1,1,124.0,1,19,38,7,7,113.9,1,0,0,1,0,1,20,0,0,5,8,5,12.0,1,0,5,8,4,15.0,1,12.7,3.7,-1.7,Graduate +1,1,6,9254,1,1,126.0,1,38,37,5,7,123.9,1,0,0,1,0,1,18,0,0,6,7,6,13.0,0,0,6,6,6,13.0,0,12.4,0.5,1.79,Graduate +1,17,1,9670,1,1,125.0,1,37,37,9,9,121.5,1,0,0,1,1,1,21,0,0,6,8,4,14.75,0,0,6,6,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,6,9773,1,1,125.0,1,1,1,5,4,122.2,0,0,0,1,1,0,19,0,0,6,7,5,13.6,0,0,6,8,5,12.666666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,135.0,1,19,19,4,5,126.8,1,0,0,1,1,0,19,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9238,1,1,133.0,1,1,37,7,9,127.4,1,0,0,1,0,1,18,0,0,6,8,6,12.25,0,0,6,7,6,11.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,3,9070,1,1,127.0,1,19,38,5,7,141.0,1,0,0,1,1,1,19,0,0,6,6,6,15.166666666666666,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,9119,1,3,120.0,1,37,37,4,7,122.5,0,0,0,0,0,0,32,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,2,9147,1,1,150.0,1,19,37,9,7,101.0,0,0,1,0,0,0,29,0,0,5,8,3,10.666666666666666,0,0,5,14,2,14.8,0,10.8,1.4,1.74,Dropout +1,7,1,9003,1,4,120.0,1,3,1,2,4,120.0,1,0,0,1,0,0,31,0,8,12,12,11,13.818181818181818,0,4,12,16,12,13.461538461538462,0,15.5,2.8,-4.06,Graduate +1,17,5,9500,1,1,143.0,1,38,1,9,7,130.6,1,0,0,1,0,1,18,0,0,7,8,7,13.15,0,0,8,9,8,15.06875,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,129.0,1,38,19,5,7,124.0,1,0,0,1,0,1,18,0,0,8,8,7,14.312857142857142,0,0,8,8,7,14.312857142857142,0,10.8,1.4,1.74,Graduate +1,17,2,9500,1,1,140.0,1,1,1,5,10,128.5,1,0,0,1,0,0,18,0,0,7,9,5,14.06,0,0,7,9,6,12.571428571428571,0,12.4,0.5,1.79,Enrolled +4,39,1,8014,0,19,100.0,1,1,37,9,1,111.5,0,0,0,1,1,0,45,0,2,8,10,4,11.5,0,2,8,13,4,11.0,0,10.8,1.4,1.74,Dropout +2,39,2,9556,1,1,110.0,1,19,38,9,9,112.8,0,0,0,1,0,1,26,0,0,7,7,0,0.0,0,0,8,8,0,0.0,6,10.8,1.4,1.74,Enrolled +1,1,1,9147,1,1,116.0,1,19,19,5,8,127.9,0,0,1,0,0,1,20,0,0,5,12,2,13.0,1,0,5,13,2,11.5,0,9.4,-0.8,-3.12,Dropout +1,43,4,171,1,1,117.0,1,19,12,9,10,109.3,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,130.0,1,1,38,5,5,122.3,1,0,0,1,0,0,18,0,0,5,10,5,14.333333333333334,2,0,5,8,5,13.0,1,9.4,-0.8,-3.12,Graduate +1,15,1,9119,1,1,130.0,26,38,3,9,2,137.0,1,0,0,1,1,0,19,1,0,5,9,5,14.0,0,0,5,11,3,13.25,0,13.9,-0.3,0.79,Enrolled +1,39,1,9556,1,1,133.1,1,38,19,9,6,100.0,1,0,0,1,0,1,25,0,0,7,11,5,12.58,0,0,7,9,6,12.157142857142857,0,8.9,1.4,3.51,Graduate +1,39,1,9991,0,1,150.0,1,3,1,3,9,154.0,0,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,1,9147,1,1,131.0,1,3,19,2,9,126.1,0,0,0,1,0,0,18,0,0,5,5,0,0.0,0,0,5,9,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,1,6,9773,1,1,145.0,1,1,19,4,4,131.0,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,10,5,11.2,0,7.6,2.6,0.32,Enrolled +1,17,2,9070,1,1,136.0,1,19,38,4,7,140.9,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,155.0,1,19,37,4,5,117.5,0,0,0,1,0,0,34,0,0,6,6,4,13.25,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9147,1,1,128.0,1,3,3,5,10,116.5,0,0,0,1,1,0,20,0,0,5,7,5,11.6,0,0,5,5,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,4,9254,1,1,133.0,1,37,37,5,8,128.5,1,0,0,1,0,1,18,0,0,6,14,2,11.0,0,0,6,14,3,10.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9119,1,1,141.0,1,37,1,9,2,133.0,1,0,0,1,1,0,18,0,0,5,10,4,13.0,0,0,5,10,3,12.333333333333334,3,7.6,2.6,0.32,Enrolled +1,51,1,8014,0,1,120.0,1,1,1,4,4,128.5,0,0,1,0,1,0,26,0,2,8,13,4,10.5,0,5,10,16,7,10.428571428571429,0,12.4,0.5,1.79,Dropout +1,43,1,9003,1,1,120.0,1,3,3,1,2,115.0,0,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,136.0,1,19,19,4,7,136.0,0,0,0,1,0,1,19,0,0,7,7,7,14.014285714285714,0,0,8,8,8,15.35,0,13.9,-0.3,0.79,Graduate +1,17,1,9070,1,1,116.0,1,38,38,9,9,123.7,0,0,0,1,0,0,20,0,0,6,6,6,14.5,0,0,6,7,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,125.0,1,19,19,4,8,117.0,1,0,0,1,0,0,21,0,0,6,13,3,12.0,0,0,6,12,2,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,135.0,1,1,38,5,7,137.5,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,140.0,1,19,19,7,7,124.6,1,0,0,1,0,0,18,0,0,7,7,6,11.666666666666666,0,0,7,8,6,13.5,0,16.2,0.3,-0.92,Enrolled +1,39,1,9670,1,19,133.1,1,1,1,4,7,100.0,0,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Dropout +1,17,2,9500,1,1,122.0,1,37,37,9,9,131.0,1,0,0,1,0,0,18,0,0,7,7,6,12.516666666666666,1,0,7,7,6,12.516666666666666,1,7.6,2.6,0.32,Dropout +2,43,1,9773,1,1,160.0,1,37,37,5,0,160.0,0,0,1,0,1,0,51,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9670,1,1,113.0,1,37,19,9,9,110.2,1,0,0,1,0,0,22,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,125.0,1,37,37,9,9,126.0,1,0,1,1,0,0,20,0,0,7,7,6,15.4,0,0,7,7,6,15.4,0,7.6,2.6,0.32,Graduate +1,43,1,171,1,39,140.0,1,38,37,9,7,140.0,0,0,0,0,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,16,3,9853,1,1,134.0,1,37,19,9,5,121.4,1,0,0,1,0,1,23,0,0,6,10,4,14.25,1,0,6,8,5,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,8014,0,1,120.0,1,1,37,7,3,122.8,0,0,0,1,0,0,23,0,0,6,13,2,10.0,0,0,5,12,1,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,133.1,1,1,1,4,2,127.7,0,0,0,1,0,0,25,0,0,5,12,4,12.5,0,0,5,10,4,11.0,0,13.9,-0.3,0.79,Enrolled +2,39,1,9991,0,1,120.0,1,19,37,3,9,132.9,0,0,0,1,1,0,32,0,0,5,11,4,10.75,0,0,5,11,4,11.333333333333334,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,138.0,1,1,38,4,9,132.5,1,0,0,1,0,1,19,0,0,8,8,7,14.36,0,0,8,8,7,14.36,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,133.1,1,19,37,7,7,126.0,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9500,1,1,110.0,1,38,38,9,9,110.0,0,0,0,0,0,0,37,0,0,8,8,0,0.0,1,0,8,8,0,0.0,1,12.7,3.7,-1.7,Dropout +5,7,1,9500,1,40,150.0,1,37,37,4,9,150.0,0,0,0,1,0,0,29,0,1,8,11,7,13.742857142857144,0,1,8,11,7,13.742857142857144,0,12.7,3.7,-1.7,Graduate +1,17,1,9070,1,1,126.0,1,19,38,9,7,118.7,0,0,0,1,0,0,18,0,0,6,7,5,11.8,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,16,4,9254,1,1,126.0,1,38,37,9,7,118.7,1,0,0,1,0,1,21,0,0,6,7,6,13.571428571428571,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9773,1,1,110.0,1,19,19,5,5,105.5,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,8,5,12.4,0,12.4,0.5,1.79,Graduate +1,39,1,9238,1,9,133.1,1,34,34,0,0,118.0,0,0,0,1,0,0,47,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,140.0,1,3,2,4,6,133.4,1,0,0,0,1,0,29,0,0,6,8,6,16.5,0,0,6,6,5,13.8,0,11.1,0.6,2.02,Enrolled +1,1,1,171,1,1,134.0,1,3,2,2,2,141.7,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,6,9773,1,1,133.1,1,1,1,90,90,129.6,0,0,0,1,0,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,133.1,1,38,19,5,6,138.0,0,0,1,1,1,0,22,0,0,6,8,6,12.625,0,0,6,11,2,14.5,0,11.1,0.6,2.02,Enrolled +1,17,3,9500,1,1,156.0,1,19,37,4,9,132.3,1,0,0,1,1,1,18,0,0,7,7,6,13.266666666666666,0,0,7,7,6,13.266666666666666,0,7.6,2.6,0.32,Graduate +1,44,1,9085,1,39,140.0,1,3,3,4,2,140.0,1,0,0,1,0,0,19,0,0,6,8,4,14.4,0,0,6,6,5,13.0,0,13.9,-0.3,0.79,Graduate +1,43,1,171,1,1,116.0,1,3,1,2,3,117.3,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,141.0,1,38,19,9,6,126.3,1,0,0,1,0,0,20,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,44,1,9238,1,39,140.0,1,1,19,191,102,143.0,0,0,0,1,0,0,20,0,3,6,6,6,13.5,0,2,6,9,5,12.5,0,13.9,-0.3,0.79,Graduate +1,43,5,8014,0,1,110.0,1,34,34,0,0,110.0,0,0,0,1,1,0,37,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9238,1,1,143.0,1,1,11,4,3,128.0,1,0,0,1,0,0,19,0,0,6,11,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +3,17,1,9238,1,1,138.0,1,37,37,9,9,133.5,1,0,0,1,0,1,21,0,0,6,8,3,10.2,0,0,6,13,4,12.25,0,12.7,3.7,-1.7,Enrolled +1,7,1,9119,1,3,150.0,1,3,2,2,2,150.0,0,0,0,1,0,0,35,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9003,1,39,150.0,1,19,1,1,1,150.0,0,0,0,1,1,0,22,0,0,6,12,3,13.333333333333334,0,0,6,12,3,12.75,0,15.5,2.8,-4.06,Enrolled +1,17,1,9085,1,1,134.0,1,19,37,2,7,131.2,0,0,0,1,0,0,19,0,0,5,8,1,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Enrolled +1,39,1,171,1,1,133.1,1,37,37,9,7,100.0,0,0,1,1,1,1,33,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,1,9556,1,1,133.1,1,3,19,2,8,106.0,1,0,0,1,1,0,21,0,0,7,8,7,12.375,0,0,7,11,5,12.583333333333334,0,8.9,1.4,3.51,Graduate +1,17,2,9500,1,1,135.0,1,19,19,9,4,129.8,1,0,0,1,0,0,18,0,0,7,8,7,13.175,0,0,8,8,8,14.875,0,13.9,-0.3,0.79,Graduate +1,39,1,33,1,1,130.0,1,38,37,9,6,102.5,0,0,1,0,1,0,37,0,0,7,7,0,0.0,0,0,7,7,1,10.0,0,8.9,1.4,3.51,Dropout +1,18,1,9500,1,1,144.0,1,37,37,6,6,127.5,1,0,0,1,0,1,19,0,0,8,8,7,13.542857142857144,0,0,8,8,7,13.542857142857144,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,130.0,1,37,38,9,9,133.9,1,0,0,1,0,0,18,0,0,6,10,5,12.2,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,44,1,9003,1,39,140.0,1,37,37,4,7,140.0,0,0,0,1,1,0,37,0,0,6,17,1,12.0,0,0,6,23,2,10.5,1,16.2,0.3,-0.92,Dropout +1,1,4,9773,1,1,137.0,1,3,19,2,3,139.8,1,1,0,1,0,0,18,0,0,6,10,6,12.571428571428571,0,0,6,11,6,12.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,1,9991,0,1,130.0,1,2,37,3,9,131.4,0,0,0,1,1,0,34,0,0,5,6,5,12.4,0,0,5,9,5,13.428571428571429,0,13.9,-0.3,0.79,Graduate +1,18,1,9500,1,1,135.0,1,3,3,1,1,125.8,1,0,0,1,0,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Graduate +1,18,1,9238,1,1,147.0,1,38,34,4,0,130.2,0,0,0,1,0,0,18,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +5,17,5,9500,1,1,143.0,1,37,38,5,8,133.5,1,0,0,1,0,1,18,0,0,8,8,7,12.114285714285714,0,0,8,8,7,12.114285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,99.0,1,1,3,5,10,100.0,1,0,0,1,1,0,19,0,0,7,9,7,11.975,0,0,8,9,7,13.12857142857143,0,13.9,-0.3,0.79,Graduate +1,16,2,9147,1,1,131.0,1,37,37,9,9,135.9,1,0,0,1,1,0,20,0,0,5,8,1,10.0,0,0,5,7,1,11.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,146.0,1,38,37,6,6,143.9,0,0,0,1,0,0,18,0,0,5,11,5,11.333333333333334,0,0,5,8,5,12.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9085,1,1,139.0,1,38,38,5,3,136.2,0,0,0,1,0,0,19,0,0,5,7,5,13.0,1,0,5,7,5,13.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,153.0,1,3,1,2,8,137.6,1,0,0,1,0,0,18,0,0,6,6,6,16.0,0,0,6,7,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,2,9085,1,1,133.1,1,19,38,9,1,100.0,1,0,1,0,1,0,19,0,0,6,10,5,12.5,0,0,6,19,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,2,9773,1,1,121.0,1,19,19,9,9,122.8,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,141.0,1,37,38,9,10,138.9,0,0,0,1,0,0,18,0,0,6,9,6,13.714285714285714,0,0,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,1,6,9500,1,1,117.0,1,4,12,5,9,119.8,1,0,0,1,0,0,18,0,0,7,7,7,13.877142857142855,0,0,8,8,8,15.6625,0,12.4,0.5,1.79,Graduate +1,17,4,9119,1,1,122.0,62,1,1,191,171,121.0,1,0,0,1,1,0,20,1,0,5,10,4,14.25,0,0,5,14,1,10.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,38,19,3,3,98.6,0,0,0,1,0,0,21,0,0,6,16,2,11.0,0,0,6,12,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9500,1,1,140.0,1,38,37,5,6,124.3,1,0,0,1,0,1,19,0,0,7,9,7,13.3125,0,0,8,8,8,15.6375,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,140.0,1,37,37,9,9,127.7,1,0,0,1,0,0,31,0,0,5,8,3,11.0,0,0,5,9,2,11.5,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,121.0,1,37,37,9,9,124.2,1,0,0,1,0,1,18,0,0,6,8,6,10.571428571428571,0,0,6,9,5,11.4,0,16.2,0.3,-0.92,Graduate +1,18,1,9130,1,1,146.0,1,3,3,5,2,137.8,0,0,0,1,1,0,18,0,0,6,11,5,13.6,0,0,6,13,3,12.666666666666666,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,3,120.0,1,1,1,7,10,120.0,1,0,0,0,1,0,23,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,120.0,1,37,37,7,8,120.0,1,0,1,0,0,0,19,0,2,6,7,5,11.6,0,1,6,12,2,11.0,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,178.0,1,19,1,4,8,174.7,0,0,0,1,0,0,18,0,0,7,8,7,17.125,0,0,8,8,8,17.5875,0,13.9,-0.3,0.79,Graduate +1,17,5,9254,1,1,114.0,1,38,1,5,9,109.5,0,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,143.0,1,38,38,9,9,140.0,0,0,0,1,1,0,19,0,0,8,8,7,14.285714285714286,0,0,8,8,7,14.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,160.0,1,38,37,9,5,159.3,0,0,0,1,0,0,18,0,0,5,5,5,14.4,0,0,5,5,5,15.4,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,143.0,1,38,34,9,9,133.6,1,0,0,1,0,0,18,0,0,6,9,5,11.4,0,0,6,8,5,10.8,0,9.4,-0.8,-3.12,Graduate +4,43,1,9500,1,19,100.0,1,34,34,0,0,110.0,0,0,0,1,1,0,30,0,11,14,26,12,12.52608695652174,1,11,14,26,12,12.52608695652174,1,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,125.0,1,1,19,4,1,121.5,1,0,0,1,1,0,18,0,0,6,12,5,11.0,0,0,6,11,3,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,19,7,3,120.0,1,0,0,1,1,0,21,0,0,5,8,3,10.0,0,0,5,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,3,120.0,1,19,1,9,5,134.0,0,0,0,1,0,0,25,0,0,5,14,1,11.0,0,0,5,11,2,12.666666666666666,4,16.2,0.3,-0.92,Dropout +1,39,1,9254,1,1,160.0,1,19,37,7,10,100.0,0,0,0,1,1,0,26,0,0,6,7,6,12.0,0,0,6,8,5,10.8,0,12.7,3.7,-1.7,Enrolled +1,15,1,171,1,1,130.0,26,1,1,2,9,130.0,0,0,0,1,1,0,21,1,6,12,12,12,15.083333333333334,0,4,11,15,11,13.083333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,140.0,1,19,37,5,6,137.9,1,0,1,0,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,123.0,1,19,37,9,9,124.1,1,0,0,1,0,1,20,0,0,5,13,5,14.0,2,0,5,10,3,12.0,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,140.0,1,38,38,6,6,140.0,0,0,0,1,0,0,19,0,0,6,7,6,12.0,0,0,6,7,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,9991,0,9,133.1,1,34,34,0,0,118.4,0,0,0,0,0,0,39,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,6,9254,1,1,125.0,1,1,1,4,3,120.5,1,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,6,6,14.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,6,171,1,1,126.0,1,10,10,4,4,130.2,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9003,1,39,120.0,1,1,19,4,7,120.0,0,0,0,1,1,0,23,0,1,6,6,1,11.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,10,16,24,13,10.692307692307692,1,9,13,19,9,12.307692307692308,0,15.5,2.8,-4.06,Enrolled +1,17,5,9773,1,1,143.0,1,1,1,7,7,136.7,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,42,1,9147,1,1,130.0,1,37,38,9,1,130.0,1,0,0,1,0,0,26,0,3,5,5,4,13.0,0,1,5,7,2,12.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,1,130.0,1,37,37,9,9,124.0,0,0,0,1,1,0,31,0,1,5,6,5,13.833333333333334,0,0,5,7,5,15.4,0,9.4,-0.8,-3.12,Graduate +1,17,2,9238,1,1,136.0,1,1,3,3,4,126.6,1,0,0,1,0,0,18,0,0,6,6,6,16.5,0,0,6,7,6,17.428571428571427,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,127.0,1,19,1,5,7,118.3,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,3,12.0,0,13.9,-0.3,0.79,Enrolled +4,39,1,9991,0,1,147.0,1,19,19,7,8,147.9,0,0,0,1,0,0,28,0,0,5,8,4,11.5,0,0,5,7,4,12.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,124.0,1,19,37,99,90,124.0,0,0,0,0,0,0,18,0,0,4,4,0,0.0,0,0,4,4,0,0.0,0,12.7,3.7,-1.7,Dropout +2,43,1,9003,1,1,133.1,1,37,37,9,7,136.0,0,0,0,1,1,0,41,0,18,19,19,19,12.68421052631579,0,12,13,13,13,12.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,1,9085,1,1,140.0,1,12,1,1,90,141.8,0,0,0,1,0,0,21,0,0,5,7,5,14.4,0,0,5,5,5,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,133.1,1,37,37,191,154,95.0,0,0,0,1,0,0,20,0,0,5,10,4,11.75,0,0,5,8,5,11.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,147.0,1,2,3,4,8,145.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9238,1,3,130.0,1,37,19,4,5,130.0,0,0,0,1,0,0,38,0,0,6,17,4,13.75,0,0,6,15,6,14.5,0,16.2,0.3,-0.92,Graduate +1,7,2,9085,1,3,130.0,1,3,3,1,1,130.0,0,0,0,0,0,0,28,0,0,5,9,1,12.0,1,0,4,10,0,0.0,4,10.8,1.4,1.74,Dropout +2,39,2,9147,1,3,130.0,1,3,37,9,9,103.4,0,0,0,1,0,0,30,0,4,7,9,7,11.75,0,3,8,12,7,11.142857142857142,0,12.7,3.7,-1.7,Dropout +1,17,1,9085,1,1,135.0,1,1,19,4,10,125.6,1,0,0,1,0,0,18,0,0,5,8,4,11.0,1,0,5,8,3,14.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,1,1,5,5,96.0,1,0,0,0,1,0,38,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +5,39,1,9853,1,19,133.1,1,38,1,5,3,105.5,0,0,1,1,0,0,33,0,0,6,7,5,13.2,0,0,6,7,5,10.6,0,7.6,2.6,0.32,Dropout +1,17,1,9254,1,1,136.0,1,37,37,7,7,121.7,1,0,0,1,0,0,20,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9119,1,19,133.1,1,37,37,9,9,100.0,0,0,0,1,1,0,36,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,19,133.1,1,19,19,4,4,100.0,0,0,0,1,1,0,33,0,0,7,7,5,13.06,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,124.0,1,2,2,3,2,118.4,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9085,1,1,120.0,1,2,3,2,2,116.1,0,0,0,1,0,0,20,0,0,5,12,3,11.666666666666666,2,0,5,11,4,11.5,1,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,162.0,1,37,37,9,9,142.8,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,131.0,1,37,1,9,9,135.9,1,0,0,1,0,0,18,0,0,6,8,5,13.2,0,0,6,6,6,11.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,7,100.0,0,0,0,1,1,0,35,0,17,18,20,18,11.555555555555555,0,11,13,13,13,11.615384615384617,0,15.5,2.8,-4.06,Graduate +1,43,1,9500,1,1,127.0,1,19,19,4,7,121.1,0,0,0,1,0,1,18,0,0,7,11,5,12.16,0,0,7,7,2,13.4,0,16.2,0.3,-0.92,Enrolled +1,1,5,9500,1,1,143.0,1,37,37,9,5,131.6,1,0,0,1,0,1,19,0,0,7,10,7,14.368,0,0,8,8,8,14.44875,0,15.5,2.8,-4.06,Graduate +1,17,4,9085,1,1,140.0,1,19,37,4,7,123.7,0,0,0,1,0,0,19,0,0,5,11,5,11.714285714285714,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,156.0,1,19,1,5,10,136.8,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Dropout +2,39,1,9853,1,10,133.1,1,37,34,0,0,115.5,0,0,0,1,0,0,39,0,0,6,12,3,12.666666666666666,0,0,6,14,0,0.0,1,7.6,2.6,0.32,Dropout +1,1,3,9119,1,1,113.0,1,4,38,2,7,107.4,1,0,0,1,1,0,18,0,0,5,8,5,14.0,0,0,5,6,5,13.2,0,8.9,1.4,3.51,Graduate +2,39,1,9670,1,1,130.0,1,37,37,9,0,158.0,0,0,1,0,0,0,34,0,0,6,7,4,13.5,0,0,6,6,0,0.0,6,12.7,3.7,-1.7,Dropout +1,43,1,9853,1,1,110.0,1,37,37,9,9,107.7,0,0,1,0,0,0,28,0,0,6,0,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,124.0,1,2,2,3,3,124.7,1,0,0,1,1,0,21,0,0,5,7,3,11.0,0,0,5,5,4,12.75,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,127.0,1,37,37,5,10,125.3,0,0,0,1,1,0,19,0,0,6,9,5,10.8,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Graduate +1,16,1,9500,1,1,133.1,1,37,37,9,9,95.0,1,0,0,1,0,0,20,0,0,7,7,6,13.755,0,0,8,9,7,13.571428571428571,0,12.4,0.5,1.79,Graduate +1,1,4,9238,1,1,127.0,1,19,19,4,0,127.4,1,0,0,1,0,0,20,0,0,6,8,6,11.166666666666666,0,0,6,6,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,113.0,1,38,38,3,7,112.3,0,0,0,1,0,1,20,0,0,7,7,7,12.142857142857142,0,0,7,7,7,12.857142857142858,0,11.1,0.6,2.02,Graduate +1,17,4,9670,1,1,110.0,1,19,37,9,99,106.1,1,1,1,0,0,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,141.0,1,1,38,4,8,136.8,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,133.1,1,37,37,9,7,140.0,0,0,0,1,0,1,43,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,124.0,1,1,1,4,4,118.8,0,0,0,1,1,0,19,0,0,6,12,4,12.25,0,0,6,9,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,7,1,8014,0,4,120.0,1,2,3,2,2,120.0,0,0,0,1,0,0,18,0,10,16,24,13,13.846153846153848,0,7,11,15,9,12.555555555555555,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,110.0,1,3,3,4,10,115.6,1,0,0,1,1,0,21,0,0,6,10,6,11.875,0,0,6,8,5,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,118.0,1,1,19,4,10,110.7,1,1,0,1,0,0,18,0,0,6,15,2,10.333333333333334,3,0,6,13,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +4,39,1,9238,1,1,130.0,1,19,3,9,2,140.0,0,0,0,1,1,0,50,0,0,6,7,4,12.25,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,1,140.0,1,1,19,3,9,140.0,1,0,1,0,0,0,23,0,0,6,13,5,11.6,0,0,6,11,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,3,9773,1,1,123.0,1,1,19,5,5,117.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,13.833333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,115.0,1,38,38,8,7,112.9,1,0,0,1,0,1,19,0,0,6,7,6,11.857142857142858,0,0,6,8,6,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,1,6,9147,1,1,142.0,1,38,37,7,7,134.3,0,1,0,1,1,0,21,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9085,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,0,1,23,0,0,6,6,6,14.666666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9254,1,1,129.0,1,19,1,3,7,121.0,0,0,0,1,0,1,22,0,0,6,9,6,12.833333333333334,0,0,6,6,4,13.25,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,156.0,1,3,3,123,122,155.0,0,0,0,1,0,0,18,0,0,6,7,6,14.285714285714286,0,0,6,8,6,13.25,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,136.0,1,37,37,9,9,126.3,1,0,0,1,0,1,18,0,0,7,7,6,11.6,0,0,7,7,6,11.6,0,7.6,2.6,0.32,Graduate +2,43,1,9991,0,1,110.0,1,37,37,9,9,132.5,0,0,0,1,1,0,37,0,7,12,13,12,12.25,0,8,13,13,13,12.846153846153848,0,9.4,-0.8,-3.12,Graduate +2,39,1,9991,0,19,133.1,1,37,1,5,5,138.3,0,0,0,1,1,0,44,0,0,5,9,3,11.333333333333334,0,0,5,8,5,11.142857142857142,0,13.9,-0.3,0.79,Dropout +1,1,2,9130,1,1,140.0,1,19,37,9,9,129.5,1,0,0,1,0,0,18,0,0,5,10,4,13.5,1,0,5,5,5,13.4,0,12.7,3.7,-1.7,Enrolled +1,7,1,9500,1,3,140.0,1,37,37,4,4,140.0,0,0,0,1,0,0,25,0,0,8,8,7,14.805714285714286,0,0,8,8,7,14.805714285714286,0,10.8,1.4,1.74,Graduate +4,42,1,9147,1,1,110.0,1,37,37,9,9,128.2,0,0,0,1,0,0,41,0,8,14,24,11,12.25,3,5,10,12,10,13.4,0,9.4,-0.8,-3.12,Graduate +1,39,1,9119,1,19,133.1,1,1,1,4,3,134.4,0,0,1,0,1,0,31,0,0,5,9,2,13.333333333333334,0,0,5,9,2,16.0,4,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,136.0,1,37,1,5,4,120.8,1,0,0,1,0,0,19,0,6,14,22,7,12.192307692307692,5,6,14,22,7,12.192307692307692,5,7.6,2.6,0.32,Graduate +1,17,2,9500,1,1,140.0,1,37,37,9,9,132.5,1,0,0,1,0,0,18,0,0,7,7,6,14.316666666666668,0,0,7,7,6,14.316666666666668,0,7.6,2.6,0.32,Graduate +1,17,6,9147,1,1,130.0,1,37,37,9,9,110.4,1,0,0,1,1,0,25,0,13,15,15,13,10.76923076923077,0,11,14,15,12,11.833333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,9773,1,1,133.1,1,3,19,4,5,105.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,136.0,1,19,19,4,3,126.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,15.0,0,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,116.0,1,38,2,9,2,112.2,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,12,2,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9238,1,1,122.0,1,19,3,5,2,112.6,0,0,1,1,0,0,20,0,5,11,18,8,12.625,0,4,10,10,3,11.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9147,1,1,118.0,1,1,38,9,9,118.4,1,0,0,1,1,0,19,0,0,5,10,2,10.5,0,0,5,5,4,11.75,0,12.4,0.5,1.79,Enrolled +1,17,1,9130,1,1,117.0,1,19,19,4,4,113.5,1,0,0,1,0,0,19,0,0,6,8,6,11.333333333333334,0,0,6,12,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,117.0,1,19,19,9,9,111.8,1,0,0,1,1,0,19,0,0,6,9,4,11.5,0,0,6,12,3,11.0,0,8.9,1.4,3.51,Dropout +1,1,6,9500,1,1,118.0,1,38,19,3,3,113.5,1,0,0,1,1,0,18,0,0,7,7,7,13.175714285714289,0,0,8,8,8,14.925,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,22,0,0,5,7,4,14.5,0,0,5,5,5,14.6,0,10.8,1.4,1.74,Graduate +2,43,2,9853,1,1,130.0,1,38,31,4,1,124.2,0,0,0,1,0,0,31,0,3,7,8,6,13.666666666666666,0,1,6,8,5,13.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,128.0,1,38,38,9,7,124.5,1,0,0,1,1,0,19,0,0,5,10,3,10.666666666666666,0,0,5,9,2,14.0,2,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,8,108.7,1,0,0,1,1,0,18,0,0,6,9,5,11.0,0,0,6,12,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9254,1,19,133.1,1,37,19,9,10,156.5,0,0,0,1,1,0,53,0,7,11,12,2,15.0,7,4,9,10,3,10.0,4,16.2,0.3,-0.92,Graduate +1,39,1,9003,1,1,160.0,1,1,37,191,193,140.0,0,0,0,1,1,0,27,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,110.0,1,37,37,9,10,150.0,0,0,0,1,1,0,49,0,0,5,6,5,12.2,0,0,5,9,5,11.8,0,15.5,2.8,-4.06,Graduate +1,18,2,9070,1,1,122.0,1,38,19,5,5,119.9,0,0,0,1,1,0,18,0,0,6,8,5,11.0,0,0,6,6,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,125.0,1,19,38,9,7,116.3,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,8,5,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,37,37,6,6,147.8,0,0,0,1,0,0,40,0,0,5,9,4,11.25,0,0,5,6,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,171,1,1,174.0,1,5,3,3,3,157.9,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,131.0,1,1,1,4,4,127.2,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Dropout +1,17,1,9670,1,3,110.0,1,12,3,5,8,106.5,1,0,1,0,0,0,20,0,0,6,6,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,2,9500,1,1,124.0,1,37,37,9,9,116.0,1,0,0,1,0,1,21,0,0,8,8,7,13.957142857142856,0,0,8,8,7,13.957142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,120.0,1,38,38,5,7,146.2,0,0,0,1,0,0,27,0,0,5,10,3,12.333333333333334,0,0,5,10,3,10.666666666666666,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,9,97.0,0,0,0,1,0,1,35,0,0,6,8,6,10.833333333333334,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,2,9773,1,1,132.0,1,19,1,9,9,141.8,1,0,0,1,1,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +2,43,1,9254,1,3,120.0,1,38,37,9,3,120.0,1,0,0,1,0,0,33,0,9,12,22,10,13.3,0,9,11,11,11,13.727272727272728,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,135.0,1,3,2,1,1,133.6,1,0,0,0,0,0,22,0,0,5,12,4,14.6,3,0,5,5,4,12.75,1,9.4,-0.8,-3.12,Dropout +1,1,1,8014,0,1,133.0,1,38,38,5,2,135.5,0,0,0,1,0,0,34,0,0,6,7,6,12.333333333333334,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9130,1,1,125.0,1,39,3,3,2,125.0,1,0,0,1,0,0,21,0,0,5,6,0,0.0,5,0,5,6,4,13.75,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,133.1,1,1,1,3,4,112.0,0,0,0,1,1,0,19,0,0,6,7,6,12.166666666666666,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,141.0,1,1,1,5,9,126.3,0,0,0,1,1,1,18,0,0,6,8,6,12.166666666666666,0,0,6,7,5,13.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9003,1,1,133.1,1,1,37,9,8,130.0,0,0,0,1,1,0,29,0,0,3,4,0,0.0,0,0,4,8,0,0.0,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,3,10,107.8,0,0,0,1,0,0,33,0,8,10,15,8,10.375,0,7,10,13,9,10.444444444444445,0,7.6,2.6,0.32,Enrolled +1,43,1,9500,1,1,120.0,1,3,4,2,4,120.6,0,0,0,1,1,0,18,0,0,7,12,4,12.65,0,0,7,10,3,10.666666666666666,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,1,133.1,1,1,19,9,9,120.0,0,0,0,1,1,1,34,0,0,8,8,7,13.842857142857143,0,0,8,8,7,13.842857142857143,0,12.7,3.7,-1.7,Graduate +1,39,1,9853,1,1,140.0,1,19,1,9,4,128.2,0,0,0,0,0,0,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,133.1,1,37,19,9,3,123.0,0,0,0,1,1,1,28,0,0,5,16,3,14.333333333333334,0,0,5,9,5,12.428571428571429,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9147,1,1,150.0,1,37,1,7,3,148.8,0,0,0,1,1,1,25,0,0,5,7,4,14.25,0,0,5,7,4,14.75,0,12.7,3.7,-1.7,Graduate +1,17,1,9670,1,1,125.0,1,38,37,7,5,126.4,0,0,0,1,1,1,18,0,0,6,7,6,12.285714285714286,0,0,6,7,6,13.333333333333334,1,16.2,0.3,-0.92,Graduate +1,44,1,9003,1,39,140.0,1,38,1,134,134,140.0,1,0,1,1,1,0,26,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,44,1,9070,1,39,140.0,1,1,19,4,4,140.0,0,0,0,1,1,0,25,0,2,7,9,6,12.571428571428571,0,5,9,9,9,12.555555555555555,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,130.0,1,1,1,9,9,124.1,1,0,0,1,0,0,18,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Enrolled +1,51,1,9070,1,1,130.0,1,19,19,5,7,124.5,0,0,0,1,0,1,20,0,5,11,11,11,13.818181818181818,0,5,11,11,11,13.454545454545457,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,101.0,1,37,37,9,4,101.0,1,0,1,1,0,0,22,0,0,6,9,5,13.333333333333334,0,0,6,17,4,11.4,0,12.4,0.5,1.79,Enrolled +1,1,1,8014,0,1,115.0,1,38,38,9,7,115.0,1,0,0,1,0,0,28,0,0,6,8,5,12.8,0,0,6,8,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9130,1,1,122.0,1,19,19,9,9,121.7,1,0,0,0,0,0,22,0,0,6,0,0,0.0,0,0,2,2,0,0.0,2,9.4,-0.8,-3.12,Dropout +1,39,1,9003,1,1,135.0,1,38,38,9,6,138.1,0,0,1,0,0,0,28,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9147,1,1,130.0,1,37,37,9,9,119.9,1,0,0,0,0,0,34,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,134.0,1,1,1,9,9,133.0,1,0,0,1,0,1,20,0,0,6,8,6,15.142857142857142,0,0,6,8,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,19,37,9,9,117.8,1,0,0,1,0,1,19,0,0,8,8,7,12.357142857142858,0,0,8,8,7,12.357142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,119.0,1,1,19,4,10,115.5,1,0,0,1,0,0,19,0,0,6,8,4,11.0,0,0,6,9,4,11.0,0,10.8,1.4,1.74,Enrolled +1,17,3,9119,1,1,138.0,1,3,3,3,4,125.4,1,1,0,1,1,0,19,0,0,5,10,3,13.333333333333334,0,0,5,9,4,10.75,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,164.0,1,19,19,9,9,149.0,1,0,0,1,0,1,23,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9085,1,1,140.0,1,4,4,2,6,140.0,0,0,0,1,0,0,22,0,2,6,9,6,13.333333333333334,0,1,6,9,4,11.5,0,13.9,-0.3,0.79,Graduate +1,43,1,9070,1,1,160.0,1,1,2,4,2,100.0,0,0,0,1,1,0,38,0,1,6,9,5,16.0,1,0,6,11,4,16.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9238,1,1,132.0,1,37,37,9,5,135.9,0,0,0,1,0,0,18,0,0,6,11,5,12.4,0,0,6,7,6,13.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,142.0,1,37,19,7,7,133.0,1,0,0,1,0,1,19,0,0,8,8,8,14.11,0,0,8,8,8,14.11,0,9.4,-0.8,-3.12,Graduate +1,7,1,9556,1,3,130.0,1,1,37,4,8,130.0,0,0,0,0,1,0,23,0,3,7,7,3,13.666666666666666,0,3,8,8,3,11.333333333333334,4,10.8,1.4,1.74,Dropout +1,44,1,171,1,39,110.0,1,1,1,1,7,114.2,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,16,2,9147,1,1,129.0,1,19,19,4,9,127.6,1,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,164.0,1,34,1,0,0,163.0,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9556,1,1,122.0,1,19,38,4,8,118.3,1,0,0,1,0,1,19,0,0,7,7,7,11.971428571428572,0,0,8,8,8,14.4375,0,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,141.0,1,38,37,3,3,126.3,1,0,0,1,0,0,18,0,0,8,8,7,13.297142857142855,0,0,8,8,7,13.297142857142855,0,10.8,1.4,1.74,Graduate +1,1,1,9003,1,1,148.0,1,1,19,194,194,143.5,0,0,1,1,1,0,18,0,0,6,6,5,15.0,0,0,6,8,4,14.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,150.0,1,37,19,6,4,137.0,0,0,0,1,1,0,35,0,1,6,7,5,12.8,0,1,6,11,5,13.833333333333334,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,38,38,1,4,138.7,0,0,0,1,1,0,43,0,0,5,5,5,13.8,0,0,5,6,5,13.666666666666666,0,10.8,1.4,1.74,Graduate +2,43,1,9991,0,1,130.0,1,37,37,9,9,103.8,0,0,0,1,0,0,28,0,14,15,15,14,11.071428571428571,0,12,14,16,12,11.333333333333334,1,9.4,-0.8,-3.12,Dropout +1,17,1,8014,0,1,127.0,1,19,37,4,7,115.8,0,0,0,1,0,0,24,0,0,6,12,1,12.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,143.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,8,8,7,13.585714285714284,0,0,8,8,7,13.585714285714284,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,130.0,1,38,19,5,6,125.1,1,0,0,1,0,0,18,0,0,7,11,7,13.37,0,0,8,13,7,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9254,1,1,133.0,1,19,1,9,9,137.2,0,0,0,1,1,1,20,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +2,1,4,8014,0,1,140.0,1,34,34,0,0,128.0,1,0,0,1,1,0,37,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,120.0,1,1,1,9,10,118.3,0,0,0,1,1,0,20,0,0,6,8,6,12.857142857142858,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Enrolled +2,39,1,8014,0,12,133.1,1,37,37,9,1,113.0,0,0,0,1,0,0,46,0,0,6,13,3,12.333333333333334,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,128.0,1,19,1,0,5,122.1,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,7,5,13.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,37,38,3,3,123.0,0,0,0,1,0,0,18,0,0,5,8,5,12.333333333333334,2,0,5,7,5,11.4,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,120.0,1,37,1,7,4,95.0,1,0,0,1,0,0,24,0,0,6,8,5,11.4,0,0,6,8,5,11.8,0,15.5,2.8,-4.06,Dropout +1,17,4,9238,1,1,123.0,1,19,19,191,144,116.0,1,0,0,1,0,1,18,0,0,6,9,6,11.666666666666666,0,0,6,8,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,140.0,1,37,37,90,90,106.3,0,0,1,0,1,0,35,0,0,5,7,2,11.5,0,0,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,159.0,1,3,3,2,2,162.5,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,6,9500,1,1,125.0,1,19,19,9,9,115.9,0,0,0,1,0,0,18,0,0,7,7,7,13.557142857142855,0,0,8,9,8,13.2,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,130.0,1,19,19,3,7,129.0,0,0,1,0,0,0,26,0,0,7,11,4,12.86,0,0,7,10,5,11.566666666666668,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,133.1,1,38,37,5,5,136.0,1,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,156.0,1,5,4,2,1,140.8,0,0,0,1,0,0,18,0,0,8,8,7,15.7,0,0,8,8,7,15.7,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,1,161.0,1,37,37,9,9,100.0,1,0,0,1,0,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,7,1,8014,0,3,130.0,1,35,35,90,90,140.0,0,0,0,0,0,0,59,0,10,15,22,12,13.333333333333334,0,8,8,8,8,12.875,0,10.8,1.4,1.74,Dropout +2,1,1,9991,0,1,120.0,1,37,19,9,9,135.0,1,0,0,1,1,0,32,0,0,5,5,5,14.8,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,133.1,1,37,37,9,9,99.0,1,0,0,1,1,0,22,0,0,7,9,6,12.833333333333334,0,0,8,12,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9500,1,1,148.0,1,3,3,2,2,137.3,1,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,120.0,1,19,37,5,7,115.1,0,0,0,1,0,1,18,0,0,6,11,4,12.0,0,0,6,8,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,6,9773,1,1,138.0,1,1,1,4,2,140.5,1,0,0,1,0,0,19,0,0,6,7,6,13.0,0,0,6,9,6,13.714285714285714,0,7.6,2.6,0.32,Graduate +2,43,1,9085,1,1,160.0,1,37,37,9,7,120.0,0,0,0,1,1,0,21,0,0,5,11,0,0.0,2,0,5,11,3,11.666666666666666,1,9.4,-0.8,-3.12,Enrolled +1,17,2,8014,0,1,134.0,1,1,19,4,99,126.0,1,0,0,1,1,0,22,0,0,6,7,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,34,34,0,0,100.0,1,0,0,1,0,0,27,0,0,6,11,4,12.25,0,0,6,16,3,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,131.0,1,1,1,5,9,129.5,1,0,0,1,0,1,19,0,0,8,8,8,13.9475,0,0,8,8,8,13.9475,0,9.4,-0.8,-3.12,Graduate +1,1,4,171,1,1,139.0,1,37,38,9,9,127.8,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9853,1,1,150.0,1,37,37,5,6,132.5,1,0,0,1,0,0,22,0,0,6,9,4,12.25,0,0,6,8,5,11.6,0,10.8,1.4,1.74,Enrolled +1,1,1,9085,1,1,133.1,1,19,38,5,7,110.0,1,0,0,1,0,1,21,0,0,6,8,6,13.285714285714286,0,0,6,11,6,13.0,0,11.1,0.6,2.02,Graduate +1,43,1,9254,1,6,138.6,1,34,34,0,0,138.6,1,0,0,1,1,0,20,0,0,6,10,4,11.5,0,0,6,11,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,133.1,1,1,1,4,10,100.8,0,0,0,1,1,0,24,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,7,1,9500,1,5,140.0,1,19,1,4,1,140.0,1,0,0,0,0,0,39,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,118.0,1,1,19,9,10,113.1,1,0,0,1,0,0,19,0,0,7,7,7,13.79857142857143,0,0,8,8,8,14.75625,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,115.0,1,3,3,2,2,111.5,1,0,1,0,0,0,19,0,0,7,10,4,11.96,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9254,1,39,170.0,1,19,2,9,3,170.0,0,0,0,0,1,0,26,0,2,8,14,8,15.125,0,1,6,12,6,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,37,9,9,120.0,0,0,0,1,0,0,58,0,0,6,14,5,12.4,0,0,6,10,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,137.0,1,19,38,7,7,126.5,1,0,0,1,0,1,19,0,0,8,8,8,13.57625,0,0,8,8,8,13.57625,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,136.0,1,19,19,90,8,133.9,1,0,0,0,1,0,20,0,0,5,7,4,13.0,0,0,5,11,3,12.0,2,10.8,1.4,1.74,Dropout +1,18,2,9500,1,1,141.0,24,1,1,4,3,126.8,1,0,0,1,0,1,20,1,0,8,8,8,14.2,0,0,8,8,8,14.2,0,9.4,-0.8,-3.12,Graduate +1,17,4,9238,1,1,124.0,1,19,19,5,8,117.7,1,0,0,1,0,0,18,0,0,6,10,5,12.0,0,0,6,11,4,12.0,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,149.0,1,19,38,9,9,126.5,1,0,0,1,0,0,18,0,0,8,8,7,12.914285714285713,0,0,8,8,7,12.914285714285713,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,153.0,1,1,1,141,175,157.9,0,0,1,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.833333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,140.0,1,1,2,4,6,140.0,1,0,0,1,0,0,29,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,6,9500,1,1,137.0,1,1,3,3,2,121.3,1,0,0,1,0,0,20,0,0,7,7,6,12.6,0,0,7,7,6,12.6,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,143.0,1,1,1,4,6,138.8,0,0,0,0,1,0,18,0,0,5,9,3,11.333333333333334,0,0,5,8,2,13.5,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,160.0,1,1,3,1,2,130.0,0,0,0,0,1,1,26,0,0,5,12,3,10.666666666666666,0,0,5,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,130.0,1,19,19,9,8,105.8,0,0,0,1,0,0,26,0,0,7,12,3,13.766666666666666,0,0,7,11,3,12.066666666666668,0,13.9,-0.3,0.79,Dropout +1,5,4,9119,1,1,115.0,1,19,37,4,6,113.3,1,0,0,1,1,0,23,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,131.0,1,1,19,4,3,125.4,1,0,0,1,0,0,19,0,0,7,13,5,12.5,0,0,8,14,7,12.166666666666666,0,15.5,2.8,-4.06,Graduate +4,42,1,9500,1,19,133.1,1,1,1,5,5,126.0,1,0,0,1,1,0,29,0,2,7,10,5,11.9,0,1,8,10,5,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9254,1,3,133.1,1,19,19,4,6,130.5,0,0,0,1,0,0,38,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,108.0,1,1,19,4,4,105.9,1,0,0,1,1,0,21,0,0,5,9,4,10.75,0,0,5,6,5,11.4,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,126.0,1,19,19,9,9,115.2,0,0,1,1,0,0,19,0,0,5,13,1,10.0,0,0,5,8,2,10.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9853,1,1,140.0,1,37,37,9,9,145.3,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,9,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,1,6,9070,1,6,119.0,1,1,1,9,9,123.2,1,0,0,1,1,0,22,0,0,6,6,6,14.166666666666666,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,160.0,1,1,38,5,6,168.6,0,0,0,1,1,0,26,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9254,1,1,120.0,1,1,19,9,9,148.3,0,0,0,1,1,0,47,0,6,11,11,11,14.727272727272728,0,6,9,9,9,15.77777777777778,0,10.8,1.4,1.74,Graduate +1,7,1,9085,1,3,130.0,1,1,19,9,10,130.0,0,0,0,1,0,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,4,9085,1,1,137.0,1,38,38,151,151,141.6,0,0,0,1,1,0,21,0,0,5,7,4,12.25,0,0,5,7,5,12.0,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,4,140.0,0,0,0,1,1,0,43,0,0,6,8,6,12.875,0,0,6,14,5,12.142857142857142,0,16.2,0.3,-0.92,Enrolled +1,43,1,9085,1,1,162.0,1,2,1,4,4,162.0,0,0,0,1,0,0,19,0,0,6,7,6,15.0,0,0,6,8,6,15.625,0,12.4,0.5,1.79,Graduate +1,43,1,171,1,1,133.0,1,19,19,5,7,133.0,0,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,1,1,9773,1,1,154.0,1,37,37,9,7,150.2,0,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,14.666666666666666,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,19,100.0,1,38,19,0,10,111.3,0,0,1,0,0,0,25,0,0,6,7,6,13.333333333333334,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,38,4,9,126.2,0,0,0,1,1,1,18,0,0,6,7,6,11.333333333333334,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,132.0,1,3,1,2,7,125.5,1,0,0,1,1,0,18,0,0,8,8,7,13.154285714285717,0,0,8,8,7,13.154285714285717,0,10.8,1.4,1.74,Enrolled +1,17,3,9147,1,1,127.0,1,37,37,5,7,116.2,0,0,0,1,1,0,18,0,0,5,10,0,0.0,1,0,5,13,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9773,1,1,121.0,1,19,38,9,7,113.0,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9238,1,1,130.0,1,19,19,9,9,127.6,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,8,5,13.2,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,160.0,1,34,34,99,99,114.3,0,0,0,1,1,0,40,0,0,5,9,3,11.0,0,0,5,8,4,12.5,1,7.6,2.6,0.32,Enrolled +1,18,4,9254,1,1,119.0,1,37,37,9,9,113.1,1,0,0,0,1,0,22,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9003,1,3,130.0,1,38,37,5,6,130.0,0,0,0,1,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,163.0,1,19,37,5,8,150.8,1,0,0,1,1,0,18,0,0,5,9,4,10.5,0,0,5,11,2,10.5,3,7.6,2.6,0.32,Enrolled +1,43,1,9238,1,1,122.0,1,19,19,5,5,114.3,1,0,0,1,0,0,22,0,5,10,15,8,11.0,0,2,7,16,5,11.2,0,9.4,-0.8,-3.12,Enrolled +1,18,1,9147,1,1,131.0,1,34,34,90,90,131.0,0,0,0,1,1,0,22,0,0,5,11,3,13.666666666666666,0,0,5,10,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,17,4,9773,1,1,137.0,1,1,1,5,5,125.8,0,0,1,1,1,0,20,0,0,6,7,5,12.2,0,0,6,6,6,12.333333333333334,0,12.7,3.7,-1.7,Dropout +1,39,1,9670,1,1,133.1,1,37,37,90,90,97.4,0,0,1,0,1,0,44,0,0,6,9,1,14.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,37,38,7,5,106.0,1,0,0,1,0,1,21,0,0,6,13,6,16.153846153846153,0,0,6,10,6,15.75,0,15.5,2.8,-4.06,Graduate +1,17,6,9254,1,1,108.0,1,1,19,4,5,112.2,1,0,0,1,1,0,19,0,0,6,13,5,10.8,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,19,133.1,1,1,19,4,10,111.8,1,0,0,1,0,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9670,1,1,133.1,1,1,37,9,10,139.0,0,0,0,1,1,0,21,0,0,6,6,5,12.8,0,0,6,9,5,12.25,0,10.8,1.4,1.74,Enrolled +1,17,1,9147,1,1,122.0,1,12,19,4,8,117.8,1,0,0,1,0,0,20,0,0,5,10,5,13.5,0,0,5,8,5,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,128.0,1,19,19,0,5,120.3,1,0,0,1,0,0,19,0,0,6,12,2,13.0,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,133.1,1,34,19,0,3,117.1,1,0,0,1,0,1,21,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9556,1,19,133.1,1,37,38,9,9,123.0,0,0,0,1,0,0,31,0,0,7,13,6,11.833333333333334,0,0,7,8,7,12.228571428571428,0,12.4,0.5,1.79,Graduate +1,17,2,9238,1,1,133.0,1,37,37,9,4,123.6,0,0,0,1,0,1,19,0,0,6,7,6,14.142857142857142,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,5,9670,1,1,132.0,1,19,19,5,5,134.1,1,0,0,1,1,0,21,0,0,6,6,6,15.166666666666666,0,0,6,9,6,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,129.0,1,38,1,4,10,129.4,1,0,0,1,0,0,18,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,136.0,1,19,19,4,8,150.4,1,0,0,1,1,1,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,154.0,1,3,3,1,3,129.0,1,0,0,1,0,0,18,0,0,8,9,6,13.345,2,0,8,9,6,13.345,2,9.4,-0.8,-3.12,Enrolled +1,44,1,9130,1,39,150.0,1,1,1,4,4,150.0,1,0,0,1,0,0,20,0,0,5,7,4,12.0,1,0,5,6,4,12.4,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,115.0,1,37,37,9,8,116.1,1,0,0,1,0,1,18,0,0,6,7,6,13.857142857142858,0,0,6,7,6,14.285714285714286,0,13.9,-0.3,0.79,Graduate +1,17,1,9500,1,1,157.0,1,19,3,4,9,138.8,0,0,0,1,1,0,18,0,0,8,8,7,13.55714285714286,0,0,8,8,7,13.55714285714286,0,12.7,3.7,-1.7,Graduate +1,39,1,9670,1,19,133.1,1,19,1,5,8,97.2,1,0,0,1,1,1,24,0,0,6,10,4,11.6,0,0,6,8,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,141.0,1,37,38,6,6,125.6,1,0,0,1,0,1,22,0,0,7,9,6,13.081666666666669,0,0,8,12,6,13.15,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,143.0,1,19,1,9,9,144.4,1,0,0,1,0,0,20,0,0,6,7,6,13.5,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9119,1,1,127.0,1,19,1,4,5,115.8,0,0,0,1,1,0,20,0,0,5,10,4,11.5,0,0,5,11,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,150.0,1,1,1,9,10,142.7,0,0,1,1,0,0,18,0,0,6,9,4,11.0,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,132.0,11,12,12,90,4,129.9,1,0,0,1,0,0,18,1,0,6,6,6,12.666666666666666,0,0,6,8,5,14.4,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,115.0,1,19,19,191,171,109.1,0,0,1,0,1,0,21,0,0,6,11,4,12.25,0,0,6,9,4,13.4,0,11.1,0.6,2.02,Enrolled +1,17,1,9773,1,1,121.0,1,38,38,9,8,120.4,1,0,0,1,0,1,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.285714285714286,0,15.5,2.8,-4.06,Graduate +1,7,1,9085,1,40,130.0,1,1,1,4,4,130.0,1,0,0,1,0,0,22,0,0,6,7,6,17.0,0,0,6,7,6,16.285714285714285,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,140.0,1,19,38,4,4,138.3,0,0,0,1,1,0,20,0,1,6,8,6,13.428571428571429,1,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,6,9773,1,1,116.0,1,19,1,4,4,110.1,1,0,0,1,0,1,19,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,131.0,1,38,38,9,9,127.9,0,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,5,5,14.2,0,9.4,-0.8,-3.12,Graduate +1,51,1,9991,0,42,110.0,1,19,37,5,9,128.2,0,0,0,0,0,0,22,0,7,12,12,7,11.0,0,5,5,5,5,10.6,0,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,138.0,1,19,19,5,8,124.9,1,0,0,1,0,1,18,0,0,7,9,7,13.2375,0,0,8,9,7,13.742857142857144,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,172.0,1,1,1,4,9,167.1,0,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Graduate +5,39,1,9991,0,1,120.0,1,37,37,9,9,138.1,0,0,0,1,1,1,37,0,0,5,8,5,13.0,0,0,5,11,4,13.333333333333334,2,16.2,0.3,-0.92,Dropout +1,39,1,9119,1,19,133.1,1,37,38,3,7,96.7,0,0,0,1,1,1,29,0,0,5,6,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,15,1,9130,1,1,133.1,41,1,1,4,4,100.0,0,0,0,1,0,0,26,1,0,6,7,2,12.0,1,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9119,1,1,122.0,1,19,19,9,9,114.7,0,0,0,1,1,0,20,0,0,5,6,5,15.8,0,0,5,8,5,13.714285714285714,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,192,192,96.0,1,0,0,1,0,0,19,0,0,7,10,6,13.598333333333334,0,0,8,11,6,11.933333333333332,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,160.0,1,1,37,9,10,118.0,0,0,0,1,0,0,53,0,14,15,15,15,11.8,0,12,13,13,12,11.666666666666666,1,8.9,1.4,3.51,Enrolled +1,18,4,9119,1,1,134.0,1,19,38,194,175,124.9,1,0,1,1,1,0,18,0,0,5,11,3,10.666666666666666,0,0,5,9,3,11.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,9254,1,1,133.1,1,4,19,4,5,98.0,0,0,0,1,1,0,26,0,0,6,6,0,0.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +5,43,1,9991,0,3,130.0,1,3,3,1,1,130.0,0,0,0,1,0,0,41,0,5,10,14,10,14.636363636363637,0,5,10,13,10,14.6,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,120.0,1,19,19,4,5,114.8,1,0,1,0,0,0,19,0,0,6,10,5,11.714285714285714,0,0,6,13,2,10.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,6,8014,0,1,134.0,1,3,19,2,4,120.7,1,0,0,1,0,0,23,0,0,6,8,4,11.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,133.1,1,37,37,9,9,109.7,0,0,0,1,0,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9070,1,1,128.0,1,19,19,3,3,123.5,1,1,0,0,1,0,19,0,0,6,9,4,12.5,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,133.1,1,1,19,5,9,130.0,0,0,0,1,1,0,22,0,0,5,8,3,13.0,0,0,5,8,3,10.666666666666666,0,7.6,2.6,0.32,Graduate +1,7,1,9991,0,40,120.0,1,43,3,3,3,120.0,0,0,0,1,0,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.0,0,11.1,0.6,2.02,Enrolled +1,17,5,9556,1,1,139.0,1,19,19,9,8,121.3,1,0,0,1,0,1,19,0,0,7,8,7,13.385714285714286,0,0,8,8,8,13.3875,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,156.0,1,3,19,3,3,151.1,0,0,1,1,1,0,19,0,0,5,7,5,13.6,0,0,5,11,5,12.833333333333334,5,16.2,0.3,-0.92,Graduate +1,16,2,9147,1,1,132.0,1,37,37,9,9,122.6,1,0,0,1,0,1,20,0,0,5,8,3,12.0,0,0,5,9,4,12.625,0,10.8,1.4,1.74,Enrolled +1,44,1,9003,1,39,130.0,1,2,3,9,6,130.0,0,0,0,1,1,0,20,0,0,6,12,4,10.8,0,0,6,13,4,12.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9003,1,1,133.1,1,1,1,1,6,120.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,1,1,1,0,34,0,6,10,10,7,11.714285714285714,0,4,10,10,6,11.5,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,133.0,1,3,3,1,1,126.2,1,0,0,1,0,0,19,0,0,7,9,7,13.761111111111113,0,0,8,11,7,12.82375,0,15.5,2.8,-4.06,Graduate +1,18,2,9147,1,1,140.0,1,37,37,5,9,124.3,1,0,0,1,1,0,20,0,0,5,7,4,10.75,0,0,5,12,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,44,1,9003,1,39,150.0,1,37,38,4,8,150.0,0,0,0,1,0,1,21,0,0,6,9,6,12.666666666666666,0,0,6,8,5,12.8,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,140.0,1,37,19,191,163,129.3,1,0,1,1,0,0,28,0,0,6,17,0,0.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Enrolled +4,7,1,9500,1,3,130.0,1,3,19,2,3,130.0,0,0,0,1,0,0,43,0,0,7,7,3,13.833333333333334,1,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9070,1,1,131.0,1,19,19,7,7,125.1,0,0,0,1,1,0,18,0,0,6,7,6,12.333333333333334,0,0,6,10,5,10.8,4,16.2,0.3,-0.92,Enrolled +1,10,1,9773,1,1,152.0,22,38,37,5,9,152.0,1,0,0,1,0,0,22,1,0,6,8,6,11.666666666666666,0,0,6,6,6,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,123.0,1,34,38,0,7,120.2,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,131.0,1,3,19,4,4,130.3,1,0,0,1,1,1,20,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.666666666666666,2,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,115.0,1,1,1,5,4,108.0,1,0,0,1,0,1,20,0,0,6,9,5,13.0,0,0,6,6,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,130.0,1,38,37,9,9,144.0,0,0,0,1,0,0,29,0,13,18,20,18,15.444444444444445,0,11,13,13,13,15.307692307692308,0,15.5,2.8,-4.06,Graduate +1,17,1,9238,1,1,134.0,1,3,1,3,4,133.0,1,0,0,1,0,0,18,0,0,6,8,6,11.75,0,0,6,10,5,12.0,0,12.7,3.7,-1.7,Graduate +1,51,1,9670,1,1,133.1,1,3,1,3,10,116.2,0,0,0,1,1,0,24,0,0,6,11,5,12.857142857142858,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,139.0,0,0,0,1,1,0,40,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,126.0,1,19,1,9,9,122.5,1,0,0,0,0,0,25,0,0,5,14,4,13.5,2,0,5,10,4,14.25,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,121.0,1,19,19,9,9,126.3,1,0,0,1,0,0,20,0,0,5,12,1,10.0,2,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9003,1,1,133.1,1,38,38,4,8,115.0,0,0,1,1,1,0,21,0,8,12,13,12,14.538461538461538,0,4,12,14,12,14.461538461538462,0,15.5,2.8,-4.06,Graduate +2,39,1,8014,0,19,133.1,1,19,37,9,9,151.5,0,0,1,0,1,0,45,0,0,6,7,0,0.0,0,0,5,5,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9853,1,40,110.0,1,41,3,2,1,110.0,0,0,1,1,0,0,40,0,0,7,8,7,15.0,0,0,7,7,7,14.571428571428571,0,12.4,0.5,1.79,Graduate +1,17,5,9238,1,1,131.0,1,19,37,5,7,120.2,1,0,0,1,0,1,19,0,0,6,9,5,11.333333333333334,0,0,6,6,6,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +5,7,1,9070,1,3,140.0,1,37,37,7,7,140.0,0,0,0,0,1,0,30,0,0,6,6,1,10.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +4,39,1,9254,1,1,140.0,1,38,37,9,9,112.0,0,0,1,1,0,0,45,0,4,10,12,5,12.166666666666666,4,2,8,8,0,0.0,2,12.7,3.7,-1.7,Dropout +1,18,3,9853,1,1,122.0,1,38,37,9,5,120.3,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,9070,1,1,125.0,1,1,38,9,7,118.0,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Enrolled +1,1,3,9670,1,1,111.0,1,1,1,5,5,105.4,0,0,0,1,0,0,20,0,0,5,6,5,13.333333333333334,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +2,39,1,9254,1,1,130.0,1,37,37,4,7,120.0,1,0,0,1,0,0,34,0,0,6,7,5,12.4,0,0,6,8,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,160.0,1,37,37,9,9,160.0,1,0,0,1,0,0,20,0,1,6,7,6,14.166666666666666,0,1,6,17,5,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,39,1,9147,1,12,133.1,1,37,37,9,9,140.0,0,0,0,1,1,0,29,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9147,1,1,118.0,1,1,2,10,10,117.3,1,0,0,1,0,0,19,0,0,5,9,4,12.25,0,0,5,10,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,3,9085,1,1,130.0,1,1,19,9,9,121.3,1,0,0,1,0,1,19,0,0,5,6,5,14.6,0,0,5,5,5,13.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,9,130.0,0,0,0,1,0,0,44,0,0,6,10,1,12.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,3,9085,1,1,130.0,1,19,37,5,5,121.3,1,0,0,1,0,0,21,0,0,5,14,2,13.0,2,0,5,8,4,12.0,1,9.4,-0.8,-3.12,Enrolled +1,1,2,9254,1,1,120.0,1,19,19,9,9,116.5,1,0,0,1,0,1,19,0,0,6,9,5,13.2,0,0,6,8,5,11.0,0,12.4,0.5,1.79,Graduate +2,39,1,9500,1,1,140.0,1,37,37,9,4,127.3,0,0,0,1,1,0,26,0,0,8,8,7,13.075714285714286,0,0,8,8,7,13.075714285714286,0,10.8,1.4,1.74,Graduate +1,17,1,9670,1,1,118.0,1,37,38,8,7,115.2,1,0,0,1,0,1,21,0,0,5,7,3,12.333333333333334,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,17,3,9238,1,1,125.0,1,19,19,7,8,121.5,0,0,0,1,0,0,19,0,0,6,10,5,11.666666666666666,0,0,6,12,4,11.0,0,13.9,-0.3,0.79,Graduate +1,17,2,9500,1,1,125.0,1,19,19,5,5,114.5,1,0,0,1,0,0,18,0,0,7,11,6,11.983333333333334,0,0,8,12,8,12.28125,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,136.0,1,39,1,3,4,134.3,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,115.0,1,3,2,4,5,112.6,0,0,0,1,1,1,20,0,0,6,9,6,12.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,53,1,9003,1,1,130.0,1,19,1,9,9,130.0,0,0,1,1,1,0,21,0,7,12,20,10,11.8,0,5,12,15,9,11.444444444444445,0,8.9,1.4,3.51,Enrolled +1,1,3,9773,1,1,136.0,1,3,1,5,3,129.0,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,8,5,12.2,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,3,150.0,1,2,3,4,7,173.3,1,0,0,1,0,0,25,0,1,6,7,6,16.857142857142858,0,1,6,6,6,16.5,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,140.0,1,1,19,7,7,129.9,1,0,0,1,0,0,18,0,0,7,8,7,12.92875,0,0,8,8,8,14.0625,0,15.5,2.8,-4.06,Dropout +1,7,1,9119,1,1,140.8,1,34,34,0,0,134.0,0,0,0,1,1,0,24,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9254,1,1,115.0,1,37,19,5,5,109.8,1,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,8,4,12.0,0,10.8,1.4,1.74,Enrolled +1,17,5,9500,1,1,137.0,1,1,1,4,4,127.6,1,0,0,1,0,0,18,0,0,7,7,7,13.528571428571428,0,0,8,9,8,14.655555555555557,0,12.4,0.5,1.79,Graduate +4,7,1,9238,1,40,130.0,1,34,34,99,99,130.0,0,0,1,1,0,0,41,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,43,1,9147,1,1,123.0,1,37,37,9,9,106.2,0,0,0,1,0,0,49,0,9,13,22,10,10.4,0,4,9,18,6,10.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,121.0,1,1,3,3,7,113.0,1,0,0,1,1,1,18,0,0,6,7,6,11.666666666666666,0,0,6,12,5,10.2,0,12.4,0.5,1.79,Graduate +1,17,1,9254,1,1,140.0,1,3,1,2,3,129.9,0,0,0,1,0,1,19,0,0,6,15,6,11.333333333333334,0,0,6,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,130.0,1,38,38,9,7,130.0,0,0,0,1,1,0,38,0,10,10,10,10,13.6,0,5,10,10,5,13.6,0,8.9,1.4,3.51,Dropout +1,51,1,9070,1,1,132.0,1,19,19,153,153,120.0,0,0,0,1,0,1,23,0,0,6,6,6,15.333333333333334,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,9119,1,1,110.0,1,37,37,9,9,106.8,0,0,0,1,1,0,34,0,0,5,8,1,10.0,0,0,5,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,124.0,1,19,37,4,4,126.8,0,0,0,1,0,1,18,0,1,6,8,6,12.0,1,0,6,12,5,11.142857142857142,0,13.9,-0.3,0.79,Enrolled +1,18,3,9147,1,1,133.1,1,1,38,4,7,101.0,1,0,0,0,1,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9147,1,1,125.0,1,38,19,7,7,125.7,0,0,0,1,0,0,20,0,0,5,7,5,11.166666666666666,0,0,5,9,4,10.75,0,15.5,2.8,-4.06,Enrolled +1,17,4,9853,1,1,121.0,1,38,38,5,7,113.7,1,0,0,1,0,1,20,0,0,6,8,5,13.4,0,0,6,9,5,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,1,1,9,6,105.0,1,0,1,0,0,0,24,0,0,6,14,6,11.285714285714286,0,0,6,16,3,10.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,143.0,1,5,1,2,5,136.7,0,0,0,1,0,0,19,0,2,7,8,7,12.67,0,1,8,8,8,13.55,0,11.1,0.6,2.02,Graduate +1,1,2,9556,1,1,142.0,1,1,19,4,5,130.5,1,0,0,1,0,1,18,0,0,7,8,7,12.214285714285714,0,0,8,8,8,14.0625,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,131.0,1,19,19,7,5,122.1,1,0,0,1,0,0,18,0,0,7,8,7,14.13125,0,0,8,8,8,13.98375,0,15.5,2.8,-4.06,Graduate +1,1,4,9500,1,1,132.0,1,1,37,4,7,121.8,1,0,0,1,0,1,19,0,0,8,8,7,13.6,0,0,8,8,7,13.6,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,123.0,1,37,37,3,3,123.0,1,0,0,1,0,1,21,0,0,8,8,8,13.105,0,0,8,8,8,13.105,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,129.0,1,19,38,2,7,126.9,1,0,0,1,0,1,19,0,0,6,9,5,12.2,0,0,6,10,4,11.5,0,7.6,2.6,0.32,Enrolled +1,1,4,9238,1,1,118.0,1,19,38,9,9,110.0,0,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,8,6,11.428571428571429,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,125.0,1,3,1,4,4,119.4,1,0,0,1,0,0,19,0,0,7,10,6,12.471428571428572,0,0,7,8,7,11.4625,0,12.4,0.5,1.79,Enrolled +1,17,1,9085,1,1,131.0,1,1,3,4,1,129.3,1,0,0,1,0,0,19,0,0,5,10,4,11.25,1,0,5,10,3,10.333333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,147.0,1,37,37,9,9,134.3,0,0,0,1,0,1,18,0,0,8,12,7,12.62857142857143,0,0,8,12,7,12.62857142857143,0,12.7,3.7,-1.7,Graduate +2,39,2,9670,1,19,133.1,1,37,37,9,9,135.6,0,0,0,1,0,0,46,0,0,6,10,5,11.4,0,0,6,9,4,13.75,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,152.0,1,37,19,9,9,137.0,1,0,0,1,0,1,22,0,0,6,9,6,13.875,0,0,6,6,6,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,118.0,1,12,1,4,10,115.7,0,0,0,1,1,0,20,0,0,7,9,5,12.7,0,0,8,9,7,13.475,0,13.9,-0.3,0.79,Enrolled +1,15,1,9119,1,1,133.1,41,1,3,5,8,100.0,0,0,1,1,1,0,21,1,0,5,5,0,0.0,0,0,6,8,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,5,9119,1,1,131.0,1,1,19,4,7,126.8,0,0,0,0,1,1,18,0,0,5,6,5,12.2,0,0,5,8,4,12.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9147,1,1,132.0,1,19,38,9,7,119.1,0,0,0,0,1,0,19,0,0,5,16,1,12.0,0,0,5,6,0,0.0,0,13.9,-0.3,0.79,Dropout +2,43,1,8014,0,1,120.0,1,37,37,5,5,161.1,0,0,0,1,1,0,47,0,0,6,9,6,12.142857142857142,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,18,5,9500,1,1,137.0,1,19,1,1,10,129.3,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9147,1,1,118.0,1,37,19,5,5,119.1,1,0,0,1,0,1,20,0,0,5,5,5,11.6,0,0,5,5,5,13.6,0,12.4,0.5,1.79,Graduate +1,1,6,9500,1,1,134.0,1,38,38,9,9,122.0,1,0,0,1,1,0,19,0,0,8,8,7,12.2,0,0,8,8,7,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,163.0,1,1,1,4,3,149.7,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,140.0,1,38,38,9,7,140.0,0,0,0,1,0,0,20,0,2,6,9,6,12.666666666666666,0,1,6,12,2,13.0,0,13.9,-0.3,0.79,Enrolled +1,17,4,9147,1,1,122.0,1,19,19,5,7,116.4,1,0,1,1,0,1,18,0,0,5,5,5,11.6,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,140.0,1,3,37,3,7,116.9,0,0,0,1,1,0,32,0,6,11,15,7,11.285714285714286,0,5,7,10,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,5,2,9238,1,1,123.0,1,40,38,2,9,118.1,1,0,0,1,0,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,3,130.0,1,3,19,2,3,133.9,0,0,0,1,0,0,28,0,0,5,7,5,13.714285714285714,0,0,5,7,5,13.142857142857142,0,16.2,0.3,-0.92,Graduate +1,1,4,9670,1,1,125.0,1,1,38,4,7,114.9,1,0,0,1,0,1,19,0,0,6,8,6,13.375,0,0,6,7,6,12.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,130.0,1,1,1,4,10,115.2,0,0,0,1,1,0,24,0,0,5,5,4,12.0,0,0,5,6,5,12.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,124.0,1,38,19,9,7,129.6,1,0,0,1,1,0,19,0,0,6,10,6,11.125,0,0,6,7,6,11.857142857142858,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,139.0,1,38,38,7,5,133.4,0,0,0,1,0,0,18,0,0,5,9,1,11.0,1,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9254,1,1,125.0,1,38,38,5,5,115.6,1,0,0,1,0,0,20,0,0,6,6,6,11.0,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,17,1,9853,1,1,147.0,1,37,37,9,9,142.8,1,0,0,1,0,0,23,0,0,6,11,2,10.0,0,0,6,15,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,1,9003,1,1,144.0,1,19,19,9,9,132.8,0,0,0,1,1,1,19,0,0,6,9,4,12.0,2,0,6,10,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9003,1,12,133.1,1,19,1,9,1,130.0,0,0,0,1,1,0,29,0,0,6,17,0,0.0,2,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,140.0,1,37,37,9,6,135.5,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,6,9254,1,1,102.0,1,3,1,2,2,101.7,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,133.1,1,19,38,5,5,131.8,1,0,1,1,0,0,20,0,6,12,12,12,13.25,0,4,11,16,10,13.090909090909092,0,8.9,1.4,3.51,Graduate +1,44,1,171,1,39,150.0,1,4,4,2,2,150.0,0,0,0,1,1,0,25,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +1,53,1,9254,1,42,110.0,1,1,1,4,7,111.8,1,0,0,1,0,1,21,0,0,6,7,6,10.571428571428571,0,0,6,8,5,11.0,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,121.0,1,19,38,6,6,116.1,1,0,0,1,1,0,19,0,0,6,8,5,11.2,0,0,6,11,4,12.5,0,15.5,2.8,-4.06,Graduate +1,17,4,9773,1,1,127.0,1,1,19,4,1,115.8,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,37,37,9,7,160.0,1,0,0,0,1,0,30,0,4,9,18,6,11.833333333333334,0,1,8,21,4,11.0,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,15,170.0,1,34,1,90,2,101.0,0,0,0,1,0,0,32,0,0,6,9,4,12.0,0,0,6,12,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,1,9853,1,1,125.0,1,3,3,3,3,116.6,1,0,0,0,0,1,18,0,0,7,7,7,12.285714285714286,0,0,7,8,6,13.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,4,9070,1,1,117.0,1,1,1,3,3,125.4,1,0,0,1,1,1,19,0,0,6,6,6,12.833333333333334,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,146.0,1,19,37,7,7,133.8,1,0,0,1,0,0,19,0,0,8,9,8,13.2325,1,0,8,9,8,13.2325,1,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,142.0,1,19,19,9,9,127.0,1,0,0,1,0,1,18,0,0,5,10,5,12.0,0,0,5,8,4,11.6,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,3,116.0,1,3,3,2,2,128.2,0,0,0,1,0,0,22,0,12,17,22,17,10.36842105263158,0,14,17,18,17,11.5,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,37,37,7,7,116.5,1,0,0,1,0,1,20,0,0,7,9,7,14.093333333333332,0,0,8,8,8,15.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,118.0,1,19,19,5,7,117.8,0,0,0,1,0,1,19,0,0,7,7,7,13.7,0,0,8,9,7,14.671428571428574,0,12.4,0.5,1.79,Graduate +1,18,3,9670,1,1,119.0,1,38,38,9,9,115.2,1,0,0,1,0,1,19,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,131.0,1,3,19,3,10,123.3,0,0,0,1,1,0,19,0,0,5,7,5,11.8,0,0,5,8,4,12.4,2,16.2,0.3,-0.92,Enrolled +1,17,1,9254,1,1,136.0,1,39,3,3,3,128.7,1,0,0,1,0,0,20,0,0,6,8,6,11.666666666666666,0,0,6,10,6,11.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9500,1,1,140.0,1,37,38,5,7,126.0,1,0,0,1,0,0,18,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +1,44,1,9119,1,39,150.0,1,19,3,5,2,150.0,0,0,0,1,1,0,20,0,0,5,16,0,0.0,0,0,5,12,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,43,1,9773,1,1,137.0,1,38,37,9,5,127.9,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,7,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,119.9,0,0,0,1,0,0,50,0,0,5,9,2,10.5,0,0,5,7,3,11.0,0,12.7,3.7,-1.7,Enrolled +1,18,2,9773,1,1,132.0,24,37,19,9,7,119.1,1,0,0,1,0,1,22,1,0,6,8,5,11.6,0,0,6,7,6,12.0,0,9.4,-0.8,-3.12,Graduate +2,43,1,8014,0,1,133.1,1,34,34,0,0,100.0,0,0,0,1,0,1,35,0,11,16,16,16,12.6875,0,11,13,13,13,12.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,1,133.1,1,38,19,9,9,128.0,1,0,0,0,1,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,125.0,1,19,19,5,4,136.2,1,0,1,1,1,0,21,0,6,12,12,11,11.545454545454543,0,4,11,18,9,11.7,1,8.9,1.4,3.51,Enrolled +1,17,1,9254,1,1,132.0,1,38,38,0,5,126.1,0,0,0,1,1,0,20,0,0,6,9,4,10.75,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,42,1,9670,1,1,130.0,1,1,1,9,10,116.3,1,0,0,1,0,1,20,0,3,7,10,6,12.833333333333334,0,2,8,8,5,11.8,0,12.7,3.7,-1.7,Graduate +1,1,3,9773,1,1,150.0,1,19,38,4,4,146.5,1,0,0,1,0,1,20,0,0,6,6,6,13.5,0,0,6,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +4,39,2,8014,0,1,160.0,1,37,38,7,5,115.0,0,0,0,1,0,1,41,0,0,6,8,6,11.333333333333334,0,0,6,9,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,135.0,1,19,1,9,9,122.1,1,0,0,1,0,0,20,0,0,5,6,5,12.0,0,0,5,6,5,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,136.0,1,3,3,9,9,136.0,1,0,1,0,0,1,19,0,0,6,6,6,11.833333333333334,0,0,6,8,6,12.875,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,3,3,7,1,130.0,1,0,0,1,1,0,20,0,0,6,12,4,11.6,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,39,1,9119,1,19,133.1,1,19,19,5,3,100.9,1,0,0,1,1,0,24,0,0,5,9,1,12.0,0,0,5,6,3,10.5,0,10.8,1.4,1.74,Enrolled +1,17,1,9254,1,1,137.0,1,34,38,0,7,137.7,1,0,1,0,0,0,19,0,0,6,14,1,10.0,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,19,133.1,1,37,37,90,7,110.0,0,0,0,0,0,0,31,0,0,6,8,5,11.4,0,0,6,9,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,144.0,1,38,37,9,9,125.8,0,0,0,1,0,1,19,0,0,8,12,7,12.471428571428572,0,0,8,12,7,12.471428571428572,0,12.7,3.7,-1.7,Graduate +1,1,4,9070,1,1,167.0,1,1,1,7,3,158.3,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9853,1,1,133.0,1,37,19,7,7,126.7,1,0,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,6,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,118.0,1,38,38,7,7,121.2,1,0,0,1,0,0,18,0,0,6,8,5,13.4,0,0,6,7,5,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,19,133.1,1,19,19,4,4,150.0,0,0,0,0,1,0,49,0,0,5,8,2,11.0,0,0,5,5,1,11.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9085,1,1,166.0,1,1,19,4,3,158.7,0,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,7,6,14.0,0,11.1,0.6,2.02,Graduate +1,44,1,9254,1,39,130.0,1,39,39,194,193,130.0,1,0,1,1,1,0,23,0,0,6,12,3,11.5,0,0,6,12,3,10.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,1,9085,1,1,140.0,1,37,38,7,9,129.9,0,0,0,1,0,0,19,0,0,5,11,4,13.6,2,0,5,9,4,12.2,0,9.4,-0.8,-3.12,Graduate +1,7,1,9147,1,3,120.0,1,1,39,4,7,120.0,0,0,0,1,0,0,33,0,2,5,9,2,14.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,5,9254,1,1,118.0,1,19,37,5,5,120.5,1,0,0,1,1,0,19,0,0,6,12,4,12.5,0,0,6,12,4,10.25,0,7.6,2.6,0.32,Dropout +1,17,3,9070,1,1,120.0,1,3,1,4,4,116.9,1,0,0,1,0,0,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,8.9,1.4,3.51,Graduate +1,43,5,9238,1,1,101.0,24,37,19,9,7,119.9,1,0,1,0,0,0,22,1,5,11,16,9,10.88888888888889,0,2,10,20,4,11.25,1,9.4,-0.8,-3.12,Graduate +1,17,1,9500,1,1,128.0,1,19,1,4,3,117.2,1,0,0,1,0,0,20,0,0,7,9,6,11.605,0,0,8,10,7,12.4125,0,16.2,0.3,-0.92,Graduate +1,1,3,9254,1,1,118.0,1,1,19,9,9,111.7,1,0,0,1,0,0,19,0,0,6,6,6,12.5,0,0,6,6,6,12.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9773,1,1,137.0,1,37,37,0,90,134.2,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,8,5,14.2,0,10.8,1.4,1.74,Dropout +1,1,4,9500,1,1,144.0,1,3,39,2,3,129.0,1,0,0,1,0,0,18,0,0,7,8,7,12.65,0,0,8,9,8,13.411111111111111,0,16.2,0.3,-0.92,Dropout +1,1,5,9147,1,1,125.0,1,37,38,7,7,122.2,1,0,0,1,0,0,18,0,0,5,9,1,11.0,0,0,5,9,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,147.0,1,3,1,4,3,136.7,0,0,0,1,0,0,18,0,0,7,7,7,13.995714285714287,0,0,8,9,8,14.955555555555556,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,39,120.0,1,37,37,1,9,137.7,1,0,0,0,1,0,41,0,3,3,3,3,12.333333333333334,0,2,2,2,2,11.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,160.0,1,1,37,9,9,146.0,1,0,0,1,0,0,19,0,0,6,11,3,10.333333333333334,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9238,1,39,130.0,1,1,19,4,5,127.4,0,0,1,0,1,0,27,0,3,6,8,5,11.6,0,2,6,9,5,12.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,3,1,2,4,154.9,0,0,1,0,1,0,35,0,0,6,8,5,16.166666666666668,0,0,6,10,4,16.0,0,8.9,1.4,3.51,Dropout +1,17,2,9670,1,1,129.0,1,19,19,5,4,129.4,0,0,0,1,0,1,19,0,0,6,7,5,11.2,0,0,6,10,5,13.125,0,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,137.0,1,3,19,3,5,136.3,1,0,0,1,0,0,20,0,0,5,8,4,12.5,1,0,5,8,4,12.25,2,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,100.0,1,37,37,9,6,153.5,0,0,1,0,1,0,31,0,0,5,9,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,134.0,1,38,38,7,9,132.8,1,0,0,1,0,1,19,0,0,8,8,7,13.512857142857142,0,0,8,8,7,13.512857142857142,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,137.0,1,37,37,7,9,130.8,1,0,0,1,0,1,18,0,0,7,7,6,12.666666666666666,0,0,7,7,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,133.1,1,37,37,1,1,97.0,0,0,0,1,1,0,27,0,0,6,6,6,10.666666666666666,0,0,6,8,4,11.25,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,143.0,1,3,38,2,10,129.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9991,0,1,110.0,1,37,37,9,3,127.1,0,0,0,1,0,0,34,0,0,5,9,4,11.0,0,0,5,10,4,10.75,1,7.6,2.6,0.32,Enrolled +2,7,1,9147,1,3,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,23,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,160.0,1,37,37,9,9,160.0,0,0,0,1,1,1,22,0,0,6,8,6,13.125,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,162.0,1,3,4,3,3,154.1,0,0,0,1,0,0,18,0,0,7,7,7,14.45,0,0,8,9,8,14.144444444444444,0,11.1,0.6,2.02,Graduate +1,1,2,9147,1,1,119.0,1,19,37,4,5,113.8,1,0,0,1,0,0,20,0,0,5,8,3,11.333333333333334,0,0,5,8,5,12.2,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,139.0,1,19,1,9,5,135.0,1,0,0,1,0,1,18,0,0,8,8,7,12.214285714285714,0,0,8,8,7,12.214285714285714,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,120.0,1,1,38,5,5,116.3,1,1,0,1,1,1,21,0,2,7,7,4,11.5,0,5,9,10,7,12.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,2,9500,1,1,135.0,1,1,19,4,10,133.5,1,0,0,1,0,0,19,0,0,8,8,8,13.3425,0,0,8,8,8,13.3425,0,9.4,-0.8,-3.12,Graduate +1,1,3,9119,1,1,117.0,1,1,1,3,5,111.1,0,0,0,1,1,1,19,0,0,5,10,5,11.8,0,0,5,12,3,11.5,0,11.1,0.6,2.02,Enrolled +1,1,3,9773,1,1,140.0,1,1,39,4,1,128.1,1,1,0,1,1,0,21,0,0,6,6,5,11.8,0,0,6,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9003,1,1,133.1,1,37,37,3,8,130.0,0,0,1,1,0,1,30,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,134.0,1,19,37,5,5,125.3,1,0,0,1,1,1,19,0,0,6,7,4,13.75,0,0,6,10,6,11.555555555555555,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,37,38,9,9,114.0,0,0,0,1,0,1,19,0,0,5,7,5,12.2,0,0,5,6,5,11.2,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,38,37,4,5,102.5,0,0,1,0,1,0,24,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,143.0,1,19,37,5,9,156.3,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,1,5,9500,1,1,130.0,1,19,1,9,5,122.1,1,0,0,1,0,1,19,0,0,7,8,7,11.678571428571429,0,0,8,10,7,13.0375,0,12.4,0.5,1.79,Graduate +1,39,2,8014,0,1,100.0,1,35,37,90,90,100.0,0,0,0,1,0,0,41,0,0,6,10,4,13.5,0,1,6,7,6,11.166666666666666,0,7.6,2.6,0.32,Graduate +2,39,2,9670,1,1,100.0,1,37,37,9,9,110.0,0,0,0,1,1,1,36,0,0,5,5,5,11.4,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,2,9853,1,1,126.0,1,1,19,2,10,126.0,1,0,0,1,0,0,19,0,0,6,9,5,13.0,0,0,6,8,5,10.4,0,7.6,2.6,0.32,Enrolled +1,18,3,9070,1,1,131.0,1,1,37,5,5,122.3,1,0,0,0,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,150.0,1,19,37,9,8,138.5,0,0,0,1,0,0,26,0,0,5,10,4,12.0,0,0,5,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,2,171,1,1,146.0,1,3,3,3,3,155.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9147,1,1,120.0,1,19,19,9,7,118.6,1,0,0,1,0,0,19,0,0,5,8,5,10.8,0,0,5,9,4,11.25,2,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,145.0,1,38,38,9,9,125.5,1,0,0,1,0,1,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,4,9070,1,1,143.0,1,1,1,9,7,134.6,1,0,0,1,0,1,18,0,0,6,6,6,14.5,0,0,6,6,6,12.833333333333334,0,12.4,0.5,1.79,Dropout +1,51,1,8014,0,1,121.0,1,1,38,5,7,112.3,0,0,0,1,0,0,22,0,14,16,16,13,10.923076923076923,0,13,13,13,11,11.454545454545457,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,130.0,1,37,1,9,8,120.2,1,0,0,1,1,0,22,0,0,6,9,6,14.666666666666666,0,0,6,12,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +2,7,1,9254,1,2,100.0,1,37,37,9,9,100.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,1,130.0,1,37,3,9,3,137.0,1,0,0,1,1,0,28,0,0,5,11,4,10.5,0,0,5,12,4,11.0,4,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,37,37,9,9,120.0,1,0,0,0,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,140.0,1,38,37,7,7,105.2,0,0,0,1,1,0,29,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,131.0,1,1,19,4,7,135.9,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,108.0,1,19,38,9,7,110.5,1,0,0,1,0,1,22,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,111.0,1,1,38,5,9,107.5,0,0,0,1,1,1,19,0,0,6,9,6,13.833333333333334,0,0,6,12,5,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9147,1,1,147.0,1,37,37,9,6,142.8,1,0,1,0,0,1,19,0,0,5,5,5,12.8,0,0,5,5,4,12.0,0,11.1,0.6,2.02,Enrolled +2,39,1,9991,0,1,170.0,1,38,19,4,8,134.7,0,0,0,1,0,0,33,0,0,5,5,5,12.8,0,0,5,6,5,15.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,138.0,1,4,19,2,3,124.7,1,0,0,1,1,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,125.0,1,37,38,9,9,125.0,1,0,1,0,0,1,19,0,0,6,8,5,10.6,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,118.0,1,38,38,5,5,114.2,1,0,0,1,0,0,20,0,0,7,9,6,13.683333333333332,0,0,8,11,6,13.116666666666667,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,130.0,1,3,3,1,5,118.8,0,0,0,1,0,0,18,0,0,7,7,7,13.677142857142858,0,0,8,9,8,14.533333333333331,0,11.1,0.6,2.02,Graduate +1,1,3,9085,1,1,131.0,1,37,19,9,8,136.3,1,0,1,0,0,0,18,0,0,5,7,3,13.0,0,0,5,8,3,12.0,0,7.6,2.6,0.32,Dropout +1,43,1,9991,0,1,141.0,1,37,37,9,9,131.9,0,0,0,1,0,0,21,0,6,10,20,6,11.5,0,5,10,17,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,42,1,9070,1,1,120.0,1,3,2,3,1,116.9,0,0,0,1,1,0,20,0,6,7,13,7,12.375,0,4,7,8,4,11.25,0,13.9,-0.3,0.79,Dropout +1,39,1,9991,0,1,130.0,1,1,1,9,7,152.1,0,0,0,1,1,0,28,0,0,5,13,2,11.0,0,0,5,12,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,12,133.1,1,34,34,0,0,135.0,0,0,0,1,0,0,51,0,0,6,12,0,0.0,0,1,6,11,0,0.0,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,130.0,1,38,38,7,7,122.5,1,0,0,1,0,0,19,0,0,8,8,7,13.937142857142858,0,0,8,8,7,13.937142857142858,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,160.0,1,1,1,194,131,128.4,0,0,0,1,0,0,34,0,0,5,12,5,10.4,0,0,5,11,5,12.0,0,12.4,0.5,1.79,Graduate +1,43,1,9500,1,1,132.0,1,1,38,7,7,129.6,0,1,0,1,1,0,23,0,0,7,10,6,12.733333333333334,0,0,8,10,7,11.95,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,1,1,3,9,118.4,0,0,0,1,1,0,19,0,0,6,6,6,11.833333333333334,0,0,6,8,4,10.75,2,16.2,0.3,-0.92,Graduate +1,1,2,9556,1,1,133.1,1,19,19,9,9,104.5,1,0,0,1,0,0,21,0,0,2,2,2,12.5,0,0,7,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,53,1,9003,1,42,150.0,1,1,38,8,8,150.0,0,0,0,1,0,1,23,0,7,12,14,12,14.384615384615383,0,5,10,12,10,13.3,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,144.0,1,3,1,2,3,126.9,0,0,0,1,0,0,19,0,0,6,8,5,10.6,0,0,6,11,4,10.5,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,150.0,1,3,3,2,2,120.0,0,0,1,0,0,0,34,0,1,6,10,6,14.333333333333334,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,3,3,2,10,160.0,1,0,0,1,1,0,20,0,0,6,7,6,14.0,0,0,6,7,6,14.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,129.0,1,1,1,9,9,120.0,0,0,0,1,1,0,20,0,0,8,8,7,15.028571428571428,0,0,8,8,7,15.028571428571428,0,12.7,3.7,-1.7,Graduate +4,39,1,9003,1,12,133.1,1,37,37,9,6,160.0,0,0,0,1,0,0,43,0,13,18,19,18,14.63157894736842,0,10,13,14,13,14.23076923076923,1,15.5,2.8,-4.06,Graduate +2,39,2,9991,0,1,100.0,1,37,37,9,9,100.0,1,0,0,1,1,0,51,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,115.0,1,19,1,3,8,123.4,0,0,0,1,0,0,23,0,1,6,8,6,13.0,1,0,6,8,6,11.875,0,13.9,-0.3,0.79,Graduate +1,1,1,9500,1,1,124.0,1,19,37,3,8,117.5,1,0,0,1,1,0,19,0,0,8,10,5,12.858,3,0,8,10,5,12.858,3,9.4,-0.8,-3.12,Enrolled +1,1,6,9254,1,1,129.0,1,38,19,9,5,117.8,1,0,0,1,0,0,18,0,0,6,11,6,12.0,0,0,6,11,4,12.5,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,127.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,5,7,2,10.0,0,0,1,1,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,19,133.1,1,38,38,7,8,120.0,0,0,0,1,1,0,39,0,0,5,9,0,0.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +6,39,2,9147,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,47,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,4,9500,1,1,148.0,1,3,19,4,7,131.9,1,0,0,1,0,1,18,0,0,7,8,7,14.15,0,0,8,8,8,14.51125,0,15.5,2.8,-4.06,Graduate +1,39,1,9130,1,39,150.0,1,1,3,4,1,150.0,0,0,0,1,1,0,28,0,0,6,9,0,0.0,0,0,6,8,1,10.0,1,16.2,0.3,-0.92,Dropout +1,17,1,171,1,1,145.0,1,37,37,9,1,150.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,115.7,1,0,0,1,0,0,21,0,0,6,8,6,12.166666666666666,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,16,1,171,1,1,122.0,1,19,37,9,7,133.9,1,0,0,1,1,0,25,0,9,13,16,10,11.454545454545457,0,5,11,13,7,12.25,0,12.4,0.5,1.79,Dropout +1,1,1,9254,1,1,124.0,1,37,38,9,8,114.6,1,0,0,1,1,0,19,0,0,6,13,2,12.0,0,0,6,12,1,13.0,0,7.6,2.6,0.32,Dropout +1,17,1,9670,1,1,120.0,1,38,37,9,8,113.4,1,0,0,1,1,1,19,0,0,6,6,6,13.333333333333334,0,0,6,7,6,13.285714285714286,0,8.9,1.4,3.51,Graduate +1,7,1,9991,0,40,140.0,1,37,37,6,6,140.0,0,0,0,1,0,0,26,0,3,5,5,5,14.0,0,1,5,5,5,15.6,0,12.4,0.5,1.79,Graduate +1,1,5,9670,1,1,133.1,1,9,1,2,4,133.0,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,39,1,9991,0,1,100.0,1,19,19,4,4,113.0,0,0,0,1,1,1,41,0,0,5,9,4,11.0,0,0,5,6,5,11.4,0,8.9,1.4,3.51,Enrolled +4,39,1,9003,1,1,133.1,1,19,19,9,4,100.7,0,0,0,1,0,0,39,0,0,6,15,2,13.0,2,0,6,13,3,13.0,1,15.5,2.8,-4.06,Enrolled +1,17,2,9147,1,1,133.1,1,38,38,4,7,109.0,1,0,0,1,1,1,22,0,0,5,7,3,12.333333333333334,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,15,1,9238,1,1,140.0,26,19,19,9,6,140.0,0,0,0,1,1,0,21,1,0,6,7,6,12.333333333333334,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,1,3,9500,1,1,114.0,1,1,1,5,5,114.5,1,0,0,1,0,1,19,0,0,7,7,7,13.094285714285714,0,0,8,8,8,12.55,0,12.4,0.5,1.79,Graduate +1,43,1,9670,1,1,134.0,1,1,38,4,4,120.7,0,0,1,0,0,0,19,0,0,6,13,3,10.666666666666666,0,0,6,6,4,12.25,0,15.5,2.8,-4.06,Dropout +1,39,1,8014,0,1,133.1,1,37,11,9,7,96.0,0,0,1,0,1,0,50,0,0,6,6,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,131.0,1,3,3,3,3,135.9,0,0,0,1,0,1,21,0,1,6,8,6,12.571428571428571,1,0,6,8,6,11.625,0,13.9,-0.3,0.79,Graduate +1,43,2,9500,1,1,130.0,1,38,37,4,4,126.8,1,0,0,1,1,1,28,0,18,23,23,20,13.5,3,18,23,23,20,13.5,3,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,19,37,7,7,124.0,1,0,0,0,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9670,1,1,120.0,1,1,19,4,5,100.0,0,0,0,1,0,1,25,0,0,5,7,4,10.5,0,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,145.0,1,38,38,9,10,139.8,1,0,0,1,0,0,20,0,0,5,6,5,14.8,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,141.0,1,19,38,5,7,125.5,0,0,0,1,0,0,18,0,0,8,10,8,12.86,2,0,8,10,8,12.86,2,9.4,-0.8,-3.12,Graduate +5,39,1,9147,1,1,133.1,1,1,19,4,7,114.0,0,0,0,0,1,0,29,0,0,5,5,1,13.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9991,0,1,110.0,1,37,37,1,4,120.0,1,0,0,0,1,0,40,0,0,5,10,2,10.5,0,0,5,5,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,172.0,41,37,37,5,5,153.8,1,0,0,1,0,1,20,1,0,6,6,6,14.0,0,0,6,6,6,13.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,1,9556,1,1,140.0,1,3,3,1,7,131.6,1,0,0,1,1,0,19,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,4,3,137.5,0,0,0,1,1,0,18,0,0,7,7,7,14.842857142857143,0,0,8,9,8,14.38888888888889,0,16.2,0.3,-0.92,Graduate +1,17,1,9500,1,1,137.0,1,19,38,3,9,124.9,0,0,0,1,0,1,19,0,0,7,11,6,13.8875,0,0,8,9,8,14.864444444444445,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,139.0,1,18,18,1,1,130.8,1,0,0,0,0,0,18,0,0,8,9,6,12.758333333333333,1,0,8,9,6,12.758333333333333,1,9.4,-0.8,-3.12,Dropout +1,17,1,9003,1,1,120.0,1,38,37,5,9,131.4,1,0,0,1,1,1,23,0,17,18,19,18,11.894736842105264,0,12,13,13,13,12.923076923076923,0,15.5,2.8,-4.06,Graduate +1,53,1,9085,1,42,160.0,1,19,37,4,9,160.0,1,0,0,1,0,0,20,0,7,11,15,11,13.785714285714286,0,4,9,9,9,13.88888888888889,0,8.9,1.4,3.51,Graduate +1,18,1,9670,1,1,140.0,1,1,37,9,9,130.2,1,0,0,1,1,0,22,0,0,6,11,4,13.0,0,0,6,11,4,12.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9853,1,1,140.0,1,37,37,6,6,125.2,0,0,1,1,0,0,41,0,20,21,23,21,12.333333333333334,0,19,19,19,19,12.105263157894736,0,12.4,0.5,1.79,Graduate +1,1,4,9556,1,1,122.0,1,37,1,5,4,123.9,0,0,0,1,0,0,19,0,0,7,9,7,12.1625,0,0,8,8,8,13.825,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,130.0,1,1,19,3,3,123.0,0,0,0,1,0,1,18,0,0,5,7,5,13.333333333333334,0,0,5,6,5,13.6,0,12.7,3.7,-1.7,Graduate +1,44,1,9070,1,39,140.0,1,19,38,4,0,140.0,1,0,0,1,1,0,21,0,0,6,6,6,14.5,0,0,6,8,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,129.0,1,1,1,4,2,126.2,0,0,1,0,0,1,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Dropout +2,17,3,8014,0,1,123.0,1,19,37,3,3,113.2,0,0,1,0,0,0,18,0,0,6,9,3,10.666666666666666,0,0,6,12,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,133.1,1,38,19,9,10,114.5,0,0,0,1,0,0,23,0,0,7,11,6,12.1,0,0,7,7,6,12.616666666666667,0,16.2,0.3,-0.92,Enrolled +1,51,1,9991,0,1,141.0,1,19,38,5,7,100.0,0,0,0,1,0,0,21,0,1,5,9,4,11.5,0,1,5,5,5,11.4,0,8.9,1.4,3.51,Graduate +1,17,2,171,1,1,131.0,1,2,1,3,3,148.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,19,133.1,1,37,37,9,9,100.0,1,0,1,0,0,1,26,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,117.0,1,1,38,5,1,113.5,1,0,0,1,0,0,20,0,0,5,6,4,11.5,0,0,5,5,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,116.0,1,19,38,9,9,119.5,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,1,19,3,4,116.7,0,0,0,1,0,0,20,0,0,5,12,3,12.333333333333334,2,0,5,8,3,13.0,1,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,129.0,1,2,3,2,2,128.3,1,0,0,1,0,0,19,0,0,5,10,3,11.0,0,0,5,9,4,11.75,0,12.7,3.7,-1.7,Enrolled +1,1,3,9085,1,1,138.0,1,1,1,4,8,128.7,1,0,0,1,0,0,18,0,0,6,7,6,14.666666666666666,0,0,6,12,6,13.833333333333334,0,8.9,1.4,3.51,Graduate +1,1,5,9147,1,1,118.0,1,19,19,9,9,114.2,1,0,0,1,1,0,20,0,0,5,9,3,10.333333333333334,0,0,5,6,5,12.8,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,133.0,1,3,19,2,8,126.7,0,0,0,1,0,0,19,0,0,7,12,4,12.45,0,0,7,11,5,11.7,0,16.2,0.3,-0.92,Enrolled +1,16,1,171,1,1,158.0,1,38,37,9,9,164.3,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,43,3,9500,1,1,126.0,1,38,37,6,5,124.3,1,0,0,1,0,1,18,0,0,7,8,5,11.98,0,0,7,8,5,11.98,0,7.6,2.6,0.32,Enrolled +1,1,1,9070,1,1,123.0,1,38,38,9,5,124.8,0,0,0,0,0,1,18,0,0,6,7,5,11.8,0,0,6,7,5,13.0,0,8.9,1.4,3.51,Enrolled +1,1,1,9130,1,1,160.0,1,3,3,3,2,155.1,1,0,0,1,0,0,20,0,0,5,5,5,16.4,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Graduate +4,43,1,9500,1,1,130.0,1,37,37,9,9,103.7,0,0,0,1,0,0,38,0,1,8,12,5,13.126,1,1,8,12,5,13.126,1,10.8,1.4,1.74,Enrolled +1,16,2,9238,1,1,133.0,1,19,38,4,5,133.7,1,0,0,1,0,0,18,0,0,6,6,6,13.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,130.0,1,38,37,9,9,124.8,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,5,1,12.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,135.0,1,37,1,7,7,132.8,1,0,0,1,0,1,18,0,0,8,12,7,11.721428571428572,0,0,8,12,7,11.721428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9119,1,1,128.0,1,1,38,4,7,100.0,0,0,0,1,1,0,19,0,0,5,8,5,12.0,0,0,5,12,2,10.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9085,1,1,120.0,1,1,1,9,10,115.0,0,0,0,0,0,0,20,0,0,5,8,2,10.5,0,0,5,8,2,12.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,2,9070,1,1,142.0,1,3,1,2,4,141.0,1,0,0,1,1,0,18,0,0,6,6,6,13.0,0,0,6,8,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,2,9853,1,1,124.0,1,38,37,5,3,118.1,1,0,0,0,0,0,18,0,0,6,11,3,13.0,0,0,6,10,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,17,6,9147,1,1,145.0,1,37,37,9,9,132.0,1,0,0,1,0,0,19,0,0,5,7,4,12.5,0,0,5,8,4,10.0,1,7.6,2.6,0.32,Graduate +1,39,1,9130,1,1,114.0,1,38,38,9,10,120.0,0,0,0,1,0,0,24,0,0,6,9,6,12.571428571428571,0,0,6,10,5,12.833333333333334,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,140.0,1,3,3,2,2,146.4,0,0,0,1,0,0,18,0,0,5,5,5,12.6,0,0,5,7,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,5,9773,1,1,130.0,1,34,38,0,8,128.3,1,0,0,0,0,1,18,0,0,6,12,3,12.0,0,0,6,15,3,10.666666666666666,0,7.6,2.6,0.32,Dropout +1,17,3,9670,1,1,110.0,1,19,1,4,4,107.5,1,0,0,1,0,1,18,0,0,6,11,4,12.25,0,0,6,10,4,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,135.0,1,37,37,5,5,126.3,1,1,0,1,0,1,20,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,8.9,1.4,3.51,Graduate +2,1,1,9254,1,1,140.0,1,19,38,4,7,133.0,0,0,0,1,1,0,33,0,3,9,11,9,12.8,0,2,7,9,7,11.428571428571429,0,12.7,3.7,-1.7,Graduate +1,39,1,9254,1,1,150.0,1,37,37,9,9,115.0,0,0,0,1,1,0,36,0,0,6,8,6,13.571428571428571,0,0,6,9,5,13.2,0,12.7,3.7,-1.7,Graduate +1,39,1,9070,1,1,130.0,1,1,1,5,3,112.0,1,0,0,1,1,1,24,0,0,6,6,6,15.0,0,0,6,6,2,16.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9070,1,1,110.0,1,1,37,9,9,105.1,1,0,0,1,0,1,20,0,0,6,6,6,12.0,0,0,6,6,6,11.833333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9119,1,1,131.0,1,37,37,9,7,118.4,0,0,0,1,1,0,18,0,0,5,10,0,0.0,0,0,5,10,2,11.5,4,7.6,2.6,0.32,Dropout +1,17,1,171,1,1,136.0,1,38,38,7,7,127.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,3,9773,1,1,127.0,1,19,19,5,8,120.0,0,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,139.0,1,37,19,9,8,142.2,1,0,0,1,1,1,20,0,6,12,12,12,14.583333333333334,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,128.0,1,37,19,9,4,127.3,1,0,0,1,0,1,19,0,0,6,8,6,14.0,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,16,4,9773,1,1,109.0,1,37,37,9,3,137.0,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,8,5,12.8,0,10.8,1.4,1.74,Graduate +1,53,1,9085,1,42,130.0,1,19,1,9,9,130.0,1,0,1,0,0,0,24,0,7,9,9,8,13.125,0,4,9,13,6,13.0,0,8.9,1.4,3.51,Enrolled +1,7,1,171,1,3,130.0,1,1,2,9,2,130.0,0,0,0,0,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,120.0,1,37,37,9,9,120.0,1,0,1,1,0,0,32,0,0,6,14,4,11.5,0,0,6,14,3,11.0,0,16.2,0.3,-0.92,Dropout +1,2,1,9853,1,1,120.0,1,19,38,9,9,122.5,0,0,0,0,0,0,28,0,11,11,11,11,11.727272727272728,0,8,8,8,8,12.0,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,19,133.1,1,2,1,8,8,120.0,1,0,1,0,1,0,28,0,0,6,12,1,11.0,0,0,6,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,43,1,9773,1,1,121.0,1,1,1,4,5,121.0,1,0,0,1,1,0,23,0,0,6,15,1,13.0,0,0,6,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9147,1,1,120.0,1,38,19,9,9,111.3,1,0,0,1,0,0,21,0,0,5,5,5,12.6,0,0,5,5,5,13.2,0,8.9,1.4,3.51,Graduate +1,44,1,9238,1,39,140.0,1,38,19,5,0,141.8,0,0,0,1,0,0,21,0,3,6,7,6,12.571428571428571,0,2,6,6,6,13.5,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,131.0,1,1,1,7,4,127.2,1,0,1,1,1,0,23,0,13,17,19,13,12.153846153846152,0,10,17,28,11,11.909090909090908,1,11.1,0.6,2.02,Enrolled +1,39,1,8014,0,1,130.0,1,37,11,9,10,131.5,0,0,0,1,0,0,27,0,0,6,8,5,11.0,0,0,6,7,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,3,19,2,3,125.7,1,0,0,1,0,0,19,0,0,6,6,6,13.0,0,0,6,7,6,11.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9556,1,1,136.0,1,19,19,9,9,129.5,1,0,0,1,0,0,18,0,0,7,9,7,15.155555555555557,0,0,8,8,8,16.8,0,12.7,3.7,-1.7,Graduate +1,42,1,9119,1,1,120.0,1,5,5,2,2,115.0,0,0,0,1,1,0,30,0,1,6,9,2,15.0,0,1,6,7,2,13.5,0,15.5,2.8,-4.06,Dropout +1,17,6,9119,1,1,124.0,1,19,19,4,0,126.1,1,0,0,1,1,0,20,0,0,5,7,4,13.0,0,0,5,9,5,14.833333333333334,3,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,160.0,1,19,38,9,9,140.8,1,0,0,1,1,0,23,0,0,6,8,6,12.666666666666666,0,0,6,10,5,12.2,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,123.0,1,37,37,9,9,115.0,1,0,0,1,0,0,19,0,0,6,10,4,10.25,0,0,6,8,6,10.714285714285714,0,11.1,0.6,2.02,Graduate +2,39,2,9670,1,1,133.1,41,37,19,9,9,130.0,0,0,0,1,0,0,30,1,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9670,1,6,170.0,1,34,34,0,0,111.6,0,0,0,1,1,0,35,0,1,5,5,1,14.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9085,1,1,138.0,1,1,3,9,1,123.0,1,0,0,1,0,0,19,0,1,6,14,6,15.538461538461538,0,0,6,9,6,12.625,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,1,37,6,6,130.0,1,0,0,1,1,0,20,0,0,6,14,5,11.714285714285714,0,0,6,15,5,12.0,0,16.2,0.3,-0.92,Graduate +1,17,2,9119,1,1,133.1,1,1,2,3,3,117.0,1,0,0,1,1,0,21,0,0,5,10,5,11.166666666666666,0,0,5,10,3,10.8,0,12.4,0.5,1.79,Enrolled +1,1,5,9254,1,1,131.0,1,19,37,9,9,123.7,0,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,7,5,12.2,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,1,130.0,1,1,1,9,4,140.0,0,0,0,0,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9773,1,1,135.0,1,1,19,4,10,129.4,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9853,1,1,132.0,1,1,19,3,3,122.9,1,0,0,1,0,0,20,0,0,7,7,7,13.857142857142858,0,0,7,7,7,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,115.0,1,37,37,9,8,129.0,1,0,1,0,0,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9238,1,1,160.0,1,3,19,2,1,116.1,0,0,1,1,0,0,26,0,0,6,6,6,14.833333333333334,0,0,6,7,6,15.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,12,133.1,1,37,1,9,10,130.0,0,0,0,1,1,0,28,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,129.0,1,37,38,4,9,121.0,1,0,0,1,0,0,18,0,0,5,8,2,10.5,0,0,5,7,3,12.333333333333334,0,7.6,2.6,0.32,Enrolled +1,17,1,9119,1,1,130.0,1,38,19,7,3,119.9,1,0,1,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,39,1,9670,1,1,133.1,1,37,37,9,9,100.2,1,0,0,0,0,0,26,0,0,6,9,3,11.75,0,0,6,11,4,11.5,3,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,4,38,4,5,140.0,1,0,0,1,0,0,21,0,0,6,11,4,12.75,0,0,6,19,1,11.0,0,12.4,0.5,1.79,Enrolled +2,7,1,9991,0,43,140.0,1,40,5,3,3,140.0,0,0,0,1,0,0,33,0,2,6,7,6,15.333333333333334,0,0,5,5,5,15.8,0,11.1,0.6,2.02,Graduate +1,43,2,9670,1,1,129.0,1,3,3,5,5,122.4,1,0,0,1,0,0,19,0,0,5,5,4,13.75,0,0,6,9,5,12.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9238,1,1,116.0,1,38,38,9,6,116.4,1,0,0,1,0,0,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9130,1,39,140.0,1,1,19,4,8,140.0,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9130,1,39,130.0,1,1,3,9,2,130.0,1,0,1,1,0,1,21,0,1,6,13,3,12.333333333333334,0,1,6,12,1,13.0,0,13.9,-0.3,0.79,Dropout +1,1,5,9500,1,1,139.0,1,38,38,9,5,130.5,1,0,0,1,0,0,19,0,0,8,8,7,14.992857142857142,0,0,8,8,7,14.992857142857142,0,10.8,1.4,1.74,Graduate +1,42,1,9500,1,1,100.0,1,19,19,9,9,100.0,0,0,1,1,1,0,24,0,0,8,16,2,10.25,1,0,8,16,2,10.25,1,12.7,3.7,-1.7,Dropout +1,7,1,9773,1,43,140.0,1,19,1,4,8,140.0,0,0,0,1,1,0,25,0,0,6,6,6,14.666666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,43,1,9003,1,1,125.0,1,1,38,4,7,125.0,1,0,0,1,0,0,21,0,9,14,23,9,12.0,2,6,12,21,8,11.25,0,15.5,2.8,-4.06,Graduate +1,39,2,9147,1,19,133.1,1,38,19,4,10,116.3,0,0,0,0,1,0,32,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,3,9500,1,1,132.0,1,37,37,4,3,127.3,1,0,0,1,0,0,20,0,0,7,7,6,13.383333333333333,0,0,7,7,6,13.383333333333333,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,127.0,1,1,37,4,8,121.1,1,0,0,1,1,1,20,0,0,5,11,4,12.0,0,0,5,5,5,12.8,0,11.1,0.6,2.02,Graduate +1,39,1,9670,1,1,140.0,1,37,37,6,6,120.0,0,0,0,1,0,0,28,0,0,6,8,1,10.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,133.0,1,37,37,9,5,139.2,1,0,1,1,1,0,33,0,0,5,11,2,12.5,0,0,5,9,2,11.5,1,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,140.0,1,19,19,1,4,133.3,1,0,0,1,0,1,17,0,0,8,8,8,13.41625,0,0,8,8,8,13.41625,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,120.0,1,3,3,2,2,112.0,0,0,0,1,0,0,20,0,0,5,10,4,11.0,0,0,5,7,4,11.5,0,15.5,2.8,-4.06,Enrolled +2,1,1,9147,1,1,137.0,1,19,37,9,9,124.4,0,0,0,1,0,0,19,0,0,5,6,4,11.25,0,0,5,10,3,11.714285714285714,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,130.0,1,38,38,9,3,145.6,0,0,0,1,1,0,34,0,0,5,10,4,11.75,0,0,5,10,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,17,6,9670,1,1,120.0,1,1,14,4,5,113.7,1,0,0,1,0,0,18,0,0,5,7,4,11.4,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,120.0,1,38,19,9,3,112.7,0,0,0,1,1,0,19,0,0,6,7,6,14.857142857142858,0,0,6,8,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9254,1,1,122.0,1,37,37,9,9,114.3,1,0,0,0,0,1,20,0,0,6,12,4,11.25,0,0,6,12,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,1,1,8014,0,1,133.1,1,3,1,1,7,100.0,0,0,0,1,0,0,26,0,2,8,11,7,12.75,0,2,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,117.0,1,4,19,3,5,123.7,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.4,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,140.0,1,4,4,4,2,120.0,1,0,0,1,1,0,22,0,0,6,13,5,13.0,0,0,6,13,2,11.5,0,12.4,0.5,1.79,Enrolled +1,1,3,9238,1,1,137.0,1,1,1,3,3,131.4,1,0,0,1,0,0,20,0,0,6,9,5,11.8,0,0,6,7,6,11.5,0,7.6,2.6,0.32,Graduate +1,43,1,9130,1,1,130.0,1,1,1,1,1,130.0,1,0,0,1,1,0,33,0,0,5,12,1,13.0,2,0,5,7,3,14.0,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9773,1,1,121.0,1,1,19,9,7,118.9,1,0,0,1,0,0,20,0,0,6,6,6,13.333333333333334,0,0,6,10,5,12.8,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,133.1,1,19,38,9,8,128.2,1,0,0,1,1,1,19,0,6,12,12,12,13.333333333333334,0,4,11,15,10,12.818181818181818,0,8.9,1.4,3.51,Enrolled +1,43,1,9070,1,1,134.0,1,19,37,7,7,132.7,1,0,0,1,1,0,22,0,9,13,13,13,14.0,0,7,12,13,12,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9147,1,1,125.0,1,1,38,7,7,120.1,0,0,1,1,1,0,19,0,0,5,8,5,11.2,0,0,5,10,4,10.75,3,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,129.0,1,37,37,9,9,117.1,1,0,0,1,0,0,30,0,0,7,7,7,14.692857142857145,0,0,8,8,8,14.9625,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,145.0,1,38,38,5,7,138.0,1,0,0,1,0,0,20,0,0,6,11,5,11.2,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,120.0,105,1,1,9,9,119.0,1,0,1,0,0,0,18,1,0,6,6,6,12.0,0,0,6,6,2,11.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,131.0,1,1,19,9,9,127.0,0,0,0,1,1,1,19,0,0,8,8,7,12.514285714285714,0,0,8,8,7,12.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,8014,0,1,100.0,1,38,19,6,10,112.8,0,0,0,1,0,1,23,0,0,6,6,6,14.166666666666666,0,0,6,6,6,12.5,0,12.7,3.7,-1.7,Graduate +1,1,2,9070,1,1,145.0,1,38,19,7,7,130.0,1,0,0,1,1,0,18,0,0,6,7,6,12.833333333333334,0,0,6,7,6,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,126.0,1,37,38,7,7,119.0,0,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,15.5,2.8,-4.06,Graduate +1,1,2,9773,1,1,137.0,1,1,19,7,7,133.2,1,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,128.0,1,38,38,9,7,128.4,1,0,0,1,0,1,20,0,0,6,10,5,13.2,0,0,6,12,5,12.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9085,1,39,150.0,1,19,38,194,193,150.0,1,0,0,1,0,0,23,0,0,6,11,4,11.5,0,0,6,12,4,12.2,0,8.9,1.4,3.51,Enrolled +1,1,4,171,1,1,146.0,1,1,1,9,5,151.3,1,0,0,1,0,1,19,0,6,12,12,12,12.75,0,4,11,16,11,13.25,0,8.9,1.4,3.51,Graduate +1,1,6,9147,1,1,139.0,1,19,12,4,4,125.0,1,0,0,1,0,0,18,0,0,5,8,3,12.333333333333334,0,0,5,7,4,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9254,1,1,136.0,1,1,1,9,4,123.4,1,0,0,1,0,1,18,0,0,6,9,6,13.571428571428571,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,5,9670,1,1,127.0,1,3,4,2,2,122.8,0,0,0,1,1,0,20,0,0,6,6,3,12.333333333333334,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,127.0,1,38,37,5,7,121.8,1,0,1,1,0,0,18,0,0,6,12,4,13.5,0,0,6,14,3,10.666666666666666,0,10.8,1.4,1.74,Enrolled +1,39,1,9003,1,1,130.0,1,38,37,7,7,120.0,0,0,0,1,1,0,32,0,12,18,25,18,13.736842105263158,0,10,13,15,12,13.75,1,15.5,2.8,-4.06,Graduate +1,1,2,9238,1,1,100.0,1,38,1,7,7,99.3,1,0,0,1,0,0,21,0,0,6,8,5,12.4,0,0,6,6,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9119,1,1,160.0,1,37,37,9,6,153.7,0,0,0,1,1,0,19,0,0,5,7,1,13.0,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Enrolled +1,17,4,9500,1,1,138.0,1,3,1,2,5,134.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,15.125,0,13.9,-0.3,0.79,Graduate +1,17,4,9254,1,1,124.0,1,3,3,3,3,126.1,1,0,0,1,0,0,20,0,0,5,5,5,11.4,0,0,6,11,1,11.0,0,10.8,1.4,1.74,Dropout +2,7,1,9147,1,3,110.0,1,19,1,9,9,110.0,0,0,0,1,0,0,33,0,5,8,10,6,12.833333333333334,0,2,5,8,4,12.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9500,1,1,143.0,1,3,19,3,10,126.8,0,0,0,1,1,0,19,0,0,8,8,7,14.535714285714286,0,0,8,8,7,14.535714285714286,0,10.8,1.4,1.74,Graduate +1,17,2,9670,1,1,110.0,1,1,1,4,10,115.3,1,0,0,1,1,0,19,0,0,6,8,6,13.857142857142858,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,51,1,9119,1,1,129.0,1,2,37,2,9,121.6,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,7,1,10.0,0,7.6,2.6,0.32,Enrolled +1,15,1,9254,1,1,140.0,26,19,1,9,7,140.0,1,0,0,0,0,0,21,1,0,6,6,6,11.5,0,0,6,10,4,13.25,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,118.0,1,19,38,7,9,113.5,1,0,0,1,0,1,19,0,0,6,9,5,13.5,0,0,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,18,5,9853,1,1,110.0,1,19,37,7,7,110.0,1,0,0,1,0,0,20,0,0,6,10,4,12.75,0,0,6,14,3,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,171,1,1,145.0,1,3,1,2,10,114.5,1,0,0,1,1,0,24,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,43,2,9670,1,1,125.0,1,38,19,4,3,106.6,1,0,0,1,0,0,20,0,4,6,7,6,11.5,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Dropout +4,39,1,9500,1,19,133.1,1,37,37,5,7,100.0,0,0,0,0,0,0,40,0,0,8,11,5,11.832,4,0,8,11,5,11.832,4,9.4,-0.8,-3.12,Dropout +1,1,6,9500,1,1,133.0,1,1,1,9,9,119.7,1,1,1,1,1,0,19,0,2,7,8,7,13.075,0,1,8,11,8,12.36111111111111,0,12.4,0.5,1.79,Graduate +1,1,2,9853,1,1,134.0,1,1,38,9,8,122.5,1,0,0,1,0,1,19,0,0,6,7,6,14.0,0,0,6,6,6,15.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,120.0,1,19,37,3,9,100.0,0,0,0,1,0,0,34,0,0,5,9,0,0.0,0,0,5,10,1,11.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9003,1,1,130.0,1,37,37,6,6,100.0,0,0,1,0,1,0,28,0,4,10,19,8,11.88888888888889,0,2,8,17,5,11.6,1,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,160.0,1,38,38,6,6,160.0,1,0,0,1,0,0,21,0,0,6,11,6,13.428571428571429,0,0,6,12,6,12.857142857142858,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,7,116.0,0,0,0,1,0,1,26,0,0,7,8,6,10.983333333333334,0,0,7,8,6,10.983333333333334,0,7.6,2.6,0.32,Graduate +1,18,3,9500,1,1,145.0,1,1,1,4,8,133.6,1,0,0,1,0,0,18,0,0,7,8,7,13.087142857142856,0,0,8,8,8,12.95,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,19,133.1,1,3,19,2,3,124.5,0,0,0,1,0,1,36,0,0,6,7,6,13.714285714285714,0,0,6,6,5,12.8,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,125.0,1,19,38,9,8,118.3,0,0,0,1,1,0,20,0,0,8,12,5,12.002,1,0,8,12,5,12.002,1,10.8,1.4,1.74,Dropout +1,5,1,9085,1,1,150.0,1,1,1,4,4,139.4,0,0,0,1,0,0,18,0,0,5,9,3,12.0,1,0,5,6,4,13.0,0,7.6,2.6,0.32,Enrolled +1,17,1,9773,1,1,133.1,1,38,38,9,5,117.0,0,0,0,1,0,0,21,0,0,6,8,5,11.8,0,0,6,8,5,11.833333333333334,0,15.5,2.8,-4.06,Enrolled +1,1,3,9500,1,1,142.0,1,1,1,4,7,131.0,1,0,0,1,0,0,18,0,0,8,8,7,14.7,0,0,8,8,7,14.7,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,1,19,3,3,154.3,0,0,0,1,0,0,32,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9147,1,1,135.0,1,37,38,9,9,128.0,1,0,1,1,0,1,18,0,0,5,5,5,12.8,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,149.0,1,37,37,9,9,138.0,0,0,0,1,1,0,18,0,0,8,11,6,13.496666666666668,1,0,8,11,6,13.496666666666668,1,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,140.0,1,19,38,9,9,129.2,1,0,0,1,0,0,26,0,0,5,6,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9556,1,1,147.0,1,3,4,3,2,100.0,0,0,0,1,0,0,18,0,0,2,2,0,0.0,0,0,4,4,1,16.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9085,1,12,133.1,1,37,37,10,9,144.0,0,0,0,1,1,0,51,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,39,1,9254,1,1,100.0,1,3,19,3,5,115.0,0,0,0,0,1,0,24,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9670,1,1,140.0,1,1,1,4,3,133.4,0,0,0,1,1,0,24,0,0,6,6,4,11.25,0,0,6,9,4,10.428571428571429,0,10.8,1.4,1.74,Enrolled +1,1,2,171,1,1,127.0,1,3,39,1,3,133.5,1,0,0,1,1,0,17,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,17,3,9147,1,1,112.0,1,1,19,3,5,107.8,1,0,0,1,0,0,19,0,0,5,7,3,10.333333333333334,0,0,5,11,3,14.428571428571429,0,10.8,1.4,1.74,Enrolled +2,39,1,9147,1,1,110.0,1,37,37,9,10,140.0,0,0,0,1,0,0,41,0,0,5,14,4,14.5,1,0,5,12,5,13.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,120.0,1,1,3,175,121,105.9,0,0,0,1,0,0,35,0,0,3,4,3,11.816666666666668,0,0,3,3,3,11.333333333333334,0,11.1,0.6,2.02,Enrolled +1,1,1,9238,1,1,168.0,1,37,37,9,9,149.5,0,0,0,1,0,0,18,0,0,6,10,6,17.0,0,0,6,11,6,16.0,0,12.4,0.5,1.79,Graduate +1,17,1,8014,0,1,141.0,1,34,34,0,0,136.1,0,0,0,1,0,0,24,0,0,6,7,6,12.833333333333334,0,0,6,8,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,140.0,1,1,1,4,3,130.7,1,0,0,1,1,1,18,0,0,7,7,7,12.718571428571428,0,0,8,11,8,12.805555555555555,0,11.1,0.6,2.02,Dropout +1,7,1,9500,1,3,130.0,1,37,37,9,5,130.0,0,0,0,1,0,0,36,0,0,7,7,0,0.0,7,0,7,7,0,0.0,7,16.2,0.3,-0.92,Dropout +1,1,3,9500,1,1,134.0,1,1,37,8,7,120.5,1,0,0,1,1,1,18,0,0,7,12,7,11.716666666666663,0,0,8,13,4,10.868,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,160.0,1,1,38,4,7,141.5,1,0,0,1,1,0,18,0,0,5,10,3,10.666666666666666,1,0,5,11,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,122.0,1,38,37,191,195,112.9,1,0,0,1,0,1,19,0,0,7,8,7,13.857142857142858,0,0,7,8,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,161.0,41,1,1,9,7,163.1,1,0,0,0,0,0,19,1,6,12,12,12,15.25,0,4,11,12,11,15.0,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,1,110.0,1,1,37,9,9,126.0,1,0,0,1,1,0,27,0,0,7,7,7,14.085714285714284,0,0,7,7,7,14.085714285714284,0,7.6,2.6,0.32,Enrolled +1,17,1,9670,1,1,109.0,1,1,1,4,4,108.0,0,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,131.0,2,37,1,9,3,126.1,1,0,0,1,1,0,18,1,0,6,6,6,13.666666666666666,0,0,6,6,6,13.5,0,7.6,2.6,0.32,Graduate +1,1,2,9556,1,1,125.0,1,38,1,9,3,116.3,1,0,0,1,0,0,18,0,0,7,8,7,13.428571428571429,0,0,8,8,8,15.3125,0,16.2,0.3,-0.92,Graduate +1,17,1,9085,1,1,138.0,1,2,19,2,9,126.8,1,0,0,1,0,0,18,0,0,5,12,2,11.5,0,0,5,12,3,11.8,2,10.8,1.4,1.74,Enrolled +1,1,5,9853,1,1,128.0,1,38,37,9,9,120.3,1,0,1,0,0,0,20,0,0,6,9,3,11.666666666666666,0,0,6,10,2,11.0,0,10.8,1.4,1.74,Dropout +1,1,2,9254,1,1,130.0,1,1,38,4,9,122.7,1,0,0,1,0,0,18,0,0,6,10,4,11.75,0,0,6,13,4,10.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,9,133.1,1,37,34,90,90,118.1,1,0,0,1,0,0,39,0,0,5,9,0,0.0,0,0,5,5,2,12.5,0,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,125.0,1,1,19,4,9,114.5,1,0,0,1,0,0,24,0,0,5,6,5,13.0,1,0,5,9,4,13.25,0,12.7,3.7,-1.7,Graduate +1,1,5,9773,1,1,138.0,1,19,19,9,9,139.4,1,0,0,1,0,0,18,0,0,6,7,5,12.8,0,0,6,10,4,12.2,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,125.0,1,19,38,3,5,115.9,0,0,0,1,0,0,19,0,0,6,13,4,11.75,0,0,6,10,4,11.0,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,134.0,1,38,19,5,8,120.7,0,0,0,1,0,1,19,0,0,7,9,6,13.0,0,0,8,11,8,13.927272727272726,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,133.1,41,3,1,3,10,100.0,1,0,0,0,0,0,33,1,1,7,10,5,12.16,0,0,6,7,5,11.34,0,12.4,0.5,1.79,Dropout +5,39,1,9003,1,1,133.1,1,37,37,9,7,110.0,0,0,1,0,0,0,28,0,0,6,17,5,13.0,0,0,6,11,4,11.75,0,13.9,-0.3,0.79,Dropout +1,17,1,9254,1,1,128.0,1,19,1,5,7,120.7,1,0,1,1,0,0,18,0,0,6,8,6,11.666666666666666,0,0,6,10,4,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,162.0,1,19,19,4,7,152.9,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +1,51,1,9238,1,1,121.0,1,3,19,3,10,111.9,1,0,0,1,0,0,20,0,5,11,12,11,11.727272727272728,0,5,11,14,11,12.0,0,12.4,0.5,1.79,Graduate +1,39,2,9991,0,1,172.0,1,19,37,9,8,150.0,1,0,0,1,0,1,28,0,0,5,7,5,10.6,0,0,5,6,5,10.2,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9254,1,1,116.0,1,19,19,9,8,119.9,1,0,0,1,0,0,20,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,125.0,1,19,19,3,10,131.0,1,0,0,1,1,0,19,0,0,5,11,2,10.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +1,39,1,9500,1,4,150.0,1,3,38,3,7,127.0,1,0,0,1,1,0,26,0,2,7,8,6,13.046666666666669,0,2,8,10,7,13.30625,0,11.1,0.6,2.02,Dropout +1,17,2,9254,1,1,128.0,1,38,38,9,9,129.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,5,14.6,0,11.1,0.6,2.02,Graduate +1,1,2,9670,1,1,120.0,1,3,19,4,5,115.5,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,8,5,14.0,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,160.0,1,38,38,9,6,160.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,9,6,12.714285714285714,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,39,130.0,1,3,1,2,9,130.0,1,0,0,1,0,0,21,0,1,6,13,3,11.75,0,1,6,13,5,12.333333333333334,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,140.0,1,1,19,4,8,124.6,1,0,0,1,0,0,19,0,0,6,7,5,14.2,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,150.0,1,3,3,2,2,150.0,1,0,0,1,0,0,22,0,2,6,7,6,14.428571428571429,0,1,6,9,5,13.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9853,1,1,133.1,1,37,19,9,5,138.3,0,0,0,1,0,0,45,0,0,7,12,4,10.25,0,0,7,10,3,13.0,0,11.1,0.6,2.02,Dropout +1,43,1,9991,0,1,150.0,1,3,3,4,4,100.0,1,0,0,1,1,0,24,0,0,5,10,4,11.5,0,0,5,11,5,11.285714285714286,0,13.9,-0.3,0.79,Graduate +1,44,1,9238,1,1,150.0,1,1,38,4,9,145.9,0,0,0,1,0,1,19,0,3,6,6,6,15.5,0,2,6,7,6,13.571428571428571,0,13.9,-0.3,0.79,Graduate +1,18,3,9500,1,1,131.0,1,19,1,4,7,127.5,1,0,0,1,0,0,18,0,0,7,7,7,13.457142857142856,0,0,8,8,8,14.5125,0,13.9,-0.3,0.79,Graduate +1,7,1,9085,1,3,150.0,1,19,37,90,90,140.0,0,0,0,1,1,0,24,0,3,5,10,3,14.666666666666666,1,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,167.0,1,19,19,9,7,156.2,0,0,0,1,0,1,18,0,0,6,6,6,14.333333333333334,0,0,6,7,6,14.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,1,140.0,1,1,3,4,5,130.0,0,0,0,1,1,0,25,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9238,1,1,132.0,1,1,19,4,9,127.1,1,0,0,1,0,0,19,0,0,6,7,6,12.857142857142858,0,0,6,7,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,1,3,9119,1,1,133.0,1,3,1,3,4,121.8,1,0,0,1,1,0,18,0,0,5,9,4,12.0,0,0,5,10,2,11.0,0,8.9,1.4,3.51,Enrolled +1,17,1,9670,1,1,133.1,1,1,37,4,5,150.0,0,0,0,1,1,0,21,0,0,6,8,6,14.75,0,0,6,9,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9147,1,1,150.0,103,37,37,9,9,134.6,0,0,0,1,1,0,20,1,0,5,5,5,13.6,0,0,5,7,5,13.0,0,9.4,-0.8,-3.12,Graduate +1,17,6,9773,1,1,131.0,1,34,34,0,0,129.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,139.0,1,3,1,4,1,126.0,1,0,0,1,1,0,18,0,0,8,15,5,12.288,1,0,8,15,5,12.288,1,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,138.0,1,1,1,4,8,123.0,0,0,1,0,1,0,20,0,0,6,7,5,12.4,0,0,6,8,4,13.0,0,13.9,-0.3,0.79,Enrolled +5,39,1,9853,1,19,133.1,1,37,37,9,8,118.0,0,0,0,1,0,0,27,0,0,7,14,6,11.666666666666666,0,0,7,10,1,10.0,0,12.4,0.5,1.79,Dropout +1,1,3,9500,1,1,142.0,1,37,38,9,9,137.3,1,0,0,1,0,1,22,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,136.0,1,3,38,2,9,125.7,1,0,0,1,0,0,20,0,0,7,8,6,13.548333333333334,0,0,8,11,6,14.775,0,11.1,0.6,2.02,Enrolled +1,1,2,9500,1,1,140.0,1,1,1,4,10,128.3,1,0,0,1,0,0,19,0,0,8,8,7,12.764285714285714,0,0,8,8,7,12.764285714285714,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,132.0,1,1,37,4,9,127.1,0,0,0,0,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,2,9147,1,1,122.0,1,19,19,7,7,116.1,1,0,0,1,0,1,19,0,0,5,8,5,11.2,0,0,5,5,3,11.0,0,12.4,0.5,1.79,Graduate +1,44,1,9085,1,1,140.0,1,1,2,3,3,140.0,0,0,0,1,0,0,20,0,0,6,7,6,14.285714285714286,0,0,6,9,3,13.0,0,13.9,-0.3,0.79,Enrolled +1,42,1,9853,1,12,133.1,1,1,3,3,2,133.7,0,0,0,1,0,0,28,0,14,18,23,14,12.785714285714286,2,16,17,18,16,13.875,0,16.2,0.3,-0.92,Dropout +2,7,1,9500,1,3,120.0,1,37,19,9,7,120.0,1,0,0,1,0,0,45,0,7,11,11,11,12.7,0,6,10,12,10,12.96818181818182,0,13.9,-0.3,0.79,Enrolled +1,1,4,9238,1,1,134.0,1,38,19,7,7,128.4,1,0,0,1,0,1,18,0,0,6,6,6,12.5,0,0,6,6,6,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,130.0,1,19,38,4,7,121.3,1,0,0,1,0,0,19,0,0,6,15,6,14.166666666666666,0,0,6,13,6,12.2,0,15.5,2.8,-4.06,Graduate +1,39,2,9238,1,1,110.0,1,19,1,5,5,136.5,0,0,0,1,1,0,28,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9670,1,1,133.1,1,38,19,9,8,122.9,0,0,1,0,1,0,25,0,0,6,7,3,14.0,0,0,6,9,2,14.5,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,124.0,1,19,1,9,3,123.7,1,0,0,1,0,1,18,0,1,6,8,6,12.714285714285714,1,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,17,1,9991,0,1,120.0,1,38,3,9,3,116.9,1,0,1,0,0,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,43,2,9147,1,1,160.0,1,37,37,9,9,96.0,0,0,0,0,0,0,29,0,3,5,7,3,12.333333333333334,0,0,5,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9238,1,1,154.0,1,19,37,9,7,140.4,1,0,0,1,0,1,20,0,0,6,13,2,10.0,0,0,6,12,4,10.75,0,7.6,2.6,0.32,Enrolled +1,17,5,9070,1,1,125.0,1,19,1,5,5,122.6,1,0,0,1,1,0,22,0,0,6,6,1,11.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9119,1,1,137.0,1,1,1,4,4,130.4,1,0,1,1,1,0,18,0,0,5,10,1,12.0,0,0,5,7,3,10.666666666666666,2,7.6,2.6,0.32,Dropout +1,1,1,9085,1,1,134.0,1,37,19,9,9,136.8,1,0,0,1,1,0,20,0,0,5,8,5,12.8,0,0,5,9,4,13.666666666666666,1,10.8,1.4,1.74,Graduate +1,39,1,9773,1,19,100.0,1,37,37,0,0,128.0,1,0,0,1,1,0,28,0,0,6,7,6,13.166666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +4,39,1,9130,1,19,133.1,1,37,38,9,4,100.9,0,0,0,1,1,0,48,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,127.0,1,1,19,5,7,130.5,1,0,0,1,0,1,21,0,0,5,6,5,12.8,1,0,5,7,4,11.25,0,9.4,-0.8,-3.12,Graduate +2,1,1,9003,1,1,131.0,1,19,38,5,5,118.4,0,0,0,1,0,0,20,0,0,6,11,6,14.125,0,0,6,10,5,12.6,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,142.0,1,1,38,5,7,127.7,0,0,0,1,0,1,20,0,0,6,7,6,15.0,0,0,6,6,6,16.333333333333332,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,130.0,1,1,38,4,9,115.0,0,0,0,1,1,0,25,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9670,1,1,140.0,1,34,34,0,0,100.0,0,0,0,1,0,0,28,0,0,5,6,4,12.5,0,0,5,7,4,11.75,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,134.0,1,1,19,9,5,121.8,1,0,0,1,1,0,19,0,0,6,6,6,13.166666666666666,0,0,6,8,6,12.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,3,9853,1,1,122.0,1,1,3,5,3,113.6,0,0,0,1,0,0,19,0,0,7,7,7,13.857142857142858,0,0,7,7,7,14.285714285714286,0,11.1,0.6,2.02,Graduate +2,43,1,9991,0,1,114.0,1,37,37,7,8,116.7,0,0,0,1,1,0,49,0,0,5,7,4,13.333333333333334,0,0,5,9,4,11.6,1,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,1,130.0,1,3,1,3,3,120.5,0,0,0,1,1,0,28,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9853,1,1,148.0,1,19,19,4,5,143.5,0,0,0,1,0,1,19,0,0,7,8,6,12.833333333333334,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,43,1,9991,0,1,120.0,1,37,19,9,9,107.0,0,0,0,0,1,0,47,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,130.0,1,3,19,5,5,121.6,0,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,19,133.1,1,37,37,9,6,120.0,0,0,0,0,0,1,39,0,0,7,14,3,11.5,0,0,7,9,2,10.5,0,16.2,0.3,-0.92,Dropout +1,1,2,9853,1,1,123.0,1,19,1,194,103,115.3,1,0,0,1,0,0,20,0,0,7,8,6,13.5,0,0,7,8,6,14.0,0,11.1,0.6,2.02,Enrolled +1,18,1,9130,1,1,135.0,1,38,19,9,5,121.7,1,0,0,1,0,1,18,0,0,5,7,4,11.5,0,0,5,5,5,12.4,0,10.8,1.4,1.74,Graduate +1,1,1,9254,1,1,116.0,1,38,38,5,8,110.8,1,0,0,1,0,0,18,0,0,6,8,6,12.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,7,1,9147,1,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,43,1,9991,0,1,133.1,41,37,37,9,8,114.7,0,0,0,1,0,0,34,1,2,2,2,2,10.5,0,1,1,1,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,122.0,1,37,37,9,7,120.6,1,0,0,1,0,1,19,0,0,5,5,5,12.8,0,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9130,1,1,150.0,1,5,5,2,2,146.2,0,0,0,1,0,0,18,0,0,5,12,4,13.0,2,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,130.0,1,1,4,3,10,130.0,0,0,0,1,0,0,45,0,0,5,6,5,11.0,0,0,5,5,5,13.8,0,12.4,0.5,1.79,Graduate +2,39,1,9085,1,19,110.0,1,37,37,90,90,110.0,0,0,0,0,1,0,29,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9773,1,1,140.0,1,1,1,9,9,136.9,1,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.428571428571429,0,16.2,0.3,-0.92,Graduate +1,44,1,9085,1,39,150.0,1,19,19,9,9,150.0,1,0,0,1,0,0,23,0,1,6,14,5,14.428571428571429,0,1,6,7,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +2,43,1,9003,1,1,149.0,1,1,1,4,5,156.1,1,0,0,0,1,0,29,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9119,1,1,133.1,1,1,1,9,3,136.0,0,0,0,1,1,0,31,0,0,5,12,1,12.0,0,0,5,9,1,11.0,4,16.2,0.3,-0.92,Dropout +1,16,2,9238,1,1,122.0,1,19,37,9,7,127.3,1,0,0,1,0,1,19,0,0,6,8,4,11.25,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,171,1,1,133.0,1,1,1,6,7,134.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,141.0,1,19,38,9,9,130.5,0,0,0,1,1,0,19,0,0,6,8,6,14.25,0,0,6,7,6,13.857142857142858,0,11.1,0.6,2.02,Graduate +1,43,1,9773,1,1,121.0,1,1,3,9,3,123.8,0,0,0,0,1,0,22,0,0,4,4,0,0.0,4,0,5,8,3,12.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,39,140.0,1,1,1,4,3,138.6,0,0,0,1,1,0,22,0,3,6,7,6,12.333333333333334,0,2,6,6,2,14.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9991,0,1,145.0,1,2,37,4,9,127.5,1,0,0,1,1,0,22,0,0,5,9,5,12.428571428571429,1,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,100.0,1,37,19,9,2,121.9,0,0,0,0,0,0,40,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,120.0,1,38,38,9,9,148.5,0,0,0,1,0,1,31,0,0,6,6,6,14.0,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +5,39,1,9991,0,1,110.0,1,1,1,3,3,119.0,0,0,0,1,1,1,35,0,0,5,10,4,10.5,0,0,5,6,5,12.6,0,8.9,1.4,3.51,Graduate +1,1,2,9254,1,1,137.0,1,1,38,2,8,122.3,1,0,0,1,1,1,20,0,0,6,7,6,14.714285714285714,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,42,1,9238,1,1,133.1,1,1,19,4,9,134.0,0,0,0,1,0,0,21,0,10,13,21,11,13.272727272727272,0,6,11,13,9,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,38,37,9,7,130.0,1,0,0,1,1,1,18,0,0,7,7,6,13.183333333333332,0,0,7,7,6,13.183333333333332,0,7.6,2.6,0.32,Graduate +5,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,23,0,10,15,15,13,10.923076923076923,0,5,10,10,7,11.142857142857142,0,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,1,120.0,1,37,37,9,9,111.1,0,0,0,1,0,0,31,0,0,5,8,4,11.0,0,0,5,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,17,1,9147,1,1,124.0,1,38,19,6,10,126.8,1,0,0,1,0,0,20,0,0,5,8,5,12.333333333333334,0,0,5,7,5,12.2,0,15.5,2.8,-4.06,Graduate +2,1,1,9500,1,1,151.0,1,37,38,9,7,134.5,0,0,1,1,0,1,18,0,0,7,7,6,14.2,0,0,7,7,6,14.2,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,133.0,1,19,37,9,8,121.8,1,0,0,1,1,0,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,148.0,1,1,19,4,5,135.1,1,0,1,1,0,0,18,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,120.0,1,19,38,4,8,122.5,0,0,0,0,1,0,19,0,0,6,11,5,13.6,0,0,6,11,5,13.666666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9070,1,1,140.0,1,37,37,9,10,118.0,0,0,1,1,1,1,45,0,0,6,6,6,13.5,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,3,133.1,1,9,9,90,90,130.0,0,0,0,1,0,0,26,0,8,11,16,10,11.8,0,3,7,7,7,13.285714285714286,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,150.0,1,34,34,0,0,108.0,0,0,0,1,0,0,25,0,0,5,6,1,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,1,150.0,1,1,38,3,5,120.0,0,0,0,1,1,0,24,0,0,5,6,3,10.666666666666666,0,0,5,9,2,10.5,0,15.5,2.8,-4.06,Enrolled +1,44,1,9085,1,39,150.0,1,38,1,5,5,150.0,0,0,0,1,0,0,20,0,0,5,10,2,14.5,1,0,5,7,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,1,2,9238,1,1,133.1,1,19,19,9,9,106.0,1,0,0,1,0,1,20,0,0,6,7,6,12.571428571428571,0,0,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,1,9147,1,1,102.0,1,38,38,9,9,99.6,1,0,0,1,0,1,21,0,0,5,10,5,13.714285714285714,0,0,5,7,5,14.4,0,11.1,0.6,2.02,Graduate +1,39,1,9991,0,1,140.0,1,38,19,9,5,130.0,0,0,1,1,0,0,25,0,0,5,10,4,11.25,0,0,5,9,4,12.0,0,12.7,3.7,-1.7,Enrolled +1,1,3,9773,1,1,138.0,1,3,1,2,3,135.9,1,0,0,1,0,0,18,0,0,6,7,6,14.857142857142858,0,0,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,53,1,9085,1,42,150.0,1,1,1,9,4,150.0,1,0,0,1,1,1,22,0,1,7,11,5,12.166666666666666,0,4,8,14,5,14.8,0,8.9,1.4,3.51,Dropout +1,1,6,9147,1,1,127.0,1,1,19,1,6,120.0,1,0,0,1,1,0,19,0,0,5,6,5,12.6,0,0,5,8,3,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,44,1,9085,1,39,160.0,1,1,1,4,4,160.0,0,0,0,1,1,0,21,0,1,5,15,3,12.333333333333334,2,0,5,7,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9500,1,1,137.0,1,38,38,4,8,126.5,1,0,0,1,0,0,18,0,0,8,8,8,13.76375,0,0,8,8,8,13.76375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,1,19,4,4,132.6,0,0,0,1,0,1,18,0,0,6,8,6,14.0,0,0,6,7,6,13.142857142857142,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,130.0,1,1,1,4,9,150.0,0,0,0,1,1,0,24,0,0,8,8,7,12.742857142857144,0,0,8,8,7,12.742857142857144,0,12.7,3.7,-1.7,Graduate +1,1,2,9773,1,1,146.0,1,3,1,1,3,149.2,1,0,0,1,0,0,18,0,0,6,11,4,12.25,0,0,6,10,3,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,129.0,1,38,38,6,6,118.5,1,0,0,1,0,0,18,0,0,6,6,6,10.666666666666666,0,0,6,6,6,11.5,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,131.0,1,19,3,3,2,126.1,1,0,0,1,0,0,18,0,0,7,8,7,12.59125,0,0,8,11,7,12.820000000000002,0,15.5,2.8,-4.06,Enrolled +1,39,1,9085,1,43,160.0,1,3,39,2,3,172.0,0,0,0,1,0,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,39,1,9670,1,1,133.1,1,1,1,4,4,112.9,0,0,0,1,0,0,24,0,0,6,12,2,11.666666666666666,0,0,6,20,2,10.5,6,16.2,0.3,-0.92,Dropout +2,39,1,9003,1,1,150.0,1,37,37,9,6,140.0,0,0,0,1,1,0,60,0,17,18,18,18,14.11111111111111,0,11,13,13,13,14.23076923076923,0,15.5,2.8,-4.06,Graduate +1,17,1,9147,1,1,127.0,1,37,38,9,7,115.8,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,6,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,1,9070,1,1,133.1,1,1,37,5,9,143.0,1,0,1,1,0,0,21,0,0,6,9,5,11.4,0,0,6,8,5,12.2,0,12.7,3.7,-1.7,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,9,138.4,1,0,1,1,0,1,19,0,1,6,8,6,13.285714285714286,1,0,6,8,6,12.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9070,1,1,125.0,1,1,1,4,4,132.0,0,0,0,0,0,0,18,0,1,6,10,5,12.2,1,0,6,11,4,10.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,5,9130,1,1,160.0,1,3,1,2,9,150.2,1,0,0,1,0,0,19,0,0,5,13,1,13.0,0,0,5,7,2,12.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9991,0,1,110.0,1,37,37,9,4,160.0,0,0,0,1,0,0,44,0,0,5,5,5,11.8,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,135.0,1,19,37,5,7,121.4,0,0,0,1,1,0,21,0,0,5,7,4,11.5,0,0,5,6,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9670,1,1,135.0,1,19,19,7,10,121.4,0,0,0,1,1,0,19,0,0,5,7,3,12.333333333333334,0,0,5,5,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,125.0,1,1,38,4,9,118.4,1,0,0,1,0,0,21,0,0,5,13,3,11.333333333333334,2,0,5,12,2,10.5,1,9.4,-0.8,-3.12,Enrolled +1,1,6,9500,1,1,145.0,1,38,37,5,6,127.5,1,0,0,1,0,1,19,0,0,7,7,6,13.416666666666666,0,0,7,7,6,13.416666666666666,0,7.6,2.6,0.32,Graduate +1,43,3,171,1,1,140.0,1,37,38,7,7,143.4,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9773,1,1,134.0,1,37,19,9,10,141.4,1,0,0,1,0,0,19,0,0,6,12,3,13.0,0,0,6,13,2,14.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,130.0,1,29,38,9,8,122.0,1,0,0,1,1,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,109.0,1,19,19,4,9,104.1,1,0,1,0,0,1,21,0,0,6,16,2,13.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,116.0,1,34,34,0,0,127.0,1,0,0,1,1,0,38,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,3,8014,0,19,100.0,1,37,37,9,9,120.0,1,0,0,1,1,0,41,0,5,9,11,9,12.0,0,3,7,8,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9238,1,1,122.0,1,37,38,4,7,118.2,1,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,8014,0,1,100.0,1,12,5,9,4,116.5,0,0,1,0,0,0,37,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,122.0,1,19,19,193,194,112.6,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,42,3,9500,1,1,136.0,1,1,1,4,4,148.8,1,0,0,1,0,1,19,0,0,8,8,8,14.2525,0,0,8,8,8,14.2525,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,137.0,1,19,1,9,9,132.8,0,0,0,1,1,0,19,0,0,6,6,6,12.833333333333334,0,0,6,8,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,130.0,1,37,37,6,6,111.9,0,0,1,1,0,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9254,1,1,116.0,1,19,38,5,5,116.0,1,0,0,1,0,0,19,0,0,6,7,6,12.714285714285714,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9500,1,1,131.0,1,1,3,3,2,121.2,1,0,0,1,0,0,18,0,0,7,8,7,12.4,0,0,8,9,8,12.8,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,141.0,1,1,19,3,3,131.9,1,0,0,1,0,1,18,0,0,7,7,7,15.101428571428572,0,0,8,8,8,16.09375,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,120.0,1,37,37,9,10,122.6,0,0,0,1,0,0,20,0,0,6,8,3,12.333333333333334,0,0,6,11,2,10.5,0,12.7,3.7,-1.7,Dropout +1,18,5,9119,1,1,136.0,1,3,2,2,3,125.2,1,0,0,1,1,0,19,0,0,5,9,5,11.833333333333334,0,0,5,9,5,14.714285714285714,0,12.4,0.5,1.79,Enrolled +1,1,1,9670,1,1,125.0,1,19,1,7,4,122.6,0,0,0,1,1,0,21,0,0,5,7,5,11.166666666666666,0,0,5,5,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,139.0,1,19,37,9,9,131.5,1,0,0,1,0,0,18,0,0,8,8,7,14.13714285714286,0,0,8,8,7,14.13714285714286,0,10.8,1.4,1.74,Graduate +1,5,1,9853,1,1,119.0,1,1,38,5,8,118.3,1,0,0,1,0,0,22,0,0,6,11,3,15.0,0,0,6,11,4,10.25,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9773,1,1,125.0,1,1,38,5,6,115.9,1,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,4,9147,1,1,126.0,1,1,19,4,8,120.1,1,0,0,1,0,0,19,0,0,5,7,5,12.4,0,0,5,5,5,14.6,0,8.9,1.4,3.51,Graduate +1,17,1,9085,1,1,125.0,1,1,37,4,9,117.0,1,0,0,1,0,1,19,0,0,5,6,4,12.0,0,0,5,8,5,13.333333333333334,1,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,135.0,1,19,38,7,5,121.0,0,0,0,1,0,0,20,0,0,6,13,1,10.0,0,0,6,13,1,13.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,138.0,1,38,37,3,3,133.1,0,0,0,1,1,0,18,0,0,6,6,6,14.0,0,0,6,7,6,13.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,148.0,1,19,37,9,5,130.9,0,0,0,0,1,0,28,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,145.0,1,12,1,4,10,139.8,1,0,0,1,0,0,18,0,0,7,7,7,13.685714285714283,0,0,8,8,8,15.3875,0,13.9,-0.3,0.79,Graduate +1,1,1,171,1,1,118.0,1,37,37,3,5,110.0,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9147,1,1,99.0,1,3,1,3,3,99.7,1,0,1,0,0,0,22,0,0,5,8,0,0.0,0,0,5,7,0,0.0,0,8.9,1.4,3.51,Enrolled +1,17,2,9556,1,1,137.0,41,1,1,7,7,124.4,1,0,0,1,0,0,20,1,0,7,8,7,12.728571428571428,0,0,8,8,8,14.625,0,15.5,2.8,-4.06,Graduate +1,17,3,9853,1,1,133.1,1,34,34,0,0,115.0,0,0,0,1,0,0,18,0,0,6,10,2,10.5,0,0,6,13,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,123.0,1,37,38,9,9,113.9,1,0,1,0,0,0,18,0,0,6,7,4,11.25,0,0,6,9,4,10.857142857142858,0,10.8,1.4,1.74,Dropout +1,1,4,9238,1,1,125.0,1,19,38,9,6,114.9,1,0,1,1,0,1,19,0,0,6,9,5,11.4,0,0,6,9,3,10.0,0,8.9,1.4,3.51,Enrolled +1,18,1,8014,0,1,137.0,1,1,1,4,3,123.0,0,0,1,1,0,0,20,0,0,6,13,4,10.8,0,0,6,15,4,12.0,0,16.2,0.3,-0.92,Graduate +1,43,1,8014,0,1,131.0,1,19,37,8,5,125.0,0,0,0,1,1,0,24,0,0,6,13,0,0.0,3,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,7,1,9147,1,3,150.0,1,6,27,1,7,150.0,0,0,0,1,0,0,26,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,125.0,1,1,1,9,4,117.0,0,0,0,1,0,1,21,0,0,8,8,8,13.2575,0,0,8,8,8,13.2575,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,133.1,1,37,1,9,10,100.0,0,0,0,1,0,0,21,0,0,5,12,3,12.0,0,0,5,12,1,15.0,3,16.2,0.3,-0.92,Dropout +1,1,3,9670,1,1,121.0,1,1,19,5,5,111.9,1,0,0,1,1,1,20,0,0,6,7,6,11.333333333333334,0,0,6,10,4,10.571428571428571,0,10.8,1.4,1.74,Enrolled +1,1,5,9070,1,1,133.1,1,1,19,3,3,112.0,1,0,0,1,1,1,21,0,0,6,6,6,13.5,0,0,6,6,6,11.166666666666666,0,11.1,0.6,2.02,Graduate +1,43,1,9991,0,1,140.0,1,1,1,6,6,100.0,0,0,0,1,1,0,34,0,0,5,5,5,13.8,0,0,5,6,5,13.833333333333334,0,9.4,-0.8,-3.12,Graduate +2,42,1,9556,1,1,110.0,1,37,37,9,6,140.0,0,0,0,1,1,0,43,0,0,7,7,0,0.0,0,0,8,13,2,13.15,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,130.0,1,1,1,4,4,124.8,0,0,0,1,0,1,18,0,0,6,9,6,11.5,0,0,6,11,5,14.0,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,138.0,1,38,37,9,6,126.8,1,0,0,1,1,0,18,0,0,5,6,4,11.75,0,0,5,10,5,12.571428571428571,1,10.8,1.4,1.74,Graduate +1,17,4,9773,1,1,127.0,1,2,37,9,9,115.8,1,0,1,0,0,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,18,4,9085,1,1,170.0,1,1,1,4,5,166.6,0,0,1,0,0,1,20,0,2,5,8,5,14.4,1,0,5,6,5,14.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,130.0,1,1,1,4,4,130.0,1,1,0,1,1,0,26,0,2,6,20,4,12.5,0,1,6,16,3,10.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,3,1,2,8,100.0,1,0,0,1,1,0,35,0,0,6,13,3,11.75,0,0,6,10,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9670,1,1,106.0,1,3,1,2,3,105.7,1,0,0,1,1,0,19,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,43,1,9556,1,1,140.0,1,37,37,9,9,128.0,1,0,0,0,0,0,32,0,0,7,7,0,0.0,7,0,8,8,0,0.0,7,10.8,1.4,1.74,Dropout +1,1,1,9147,1,1,127.0,1,1,4,9,10,121.8,0,0,0,1,1,0,19,0,0,5,8,5,11.6,0,0,5,10,4,13.5,3,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,134.0,1,1,1,9,6,130.9,0,0,1,1,0,0,18,0,0,6,10,6,11.857142857142858,0,0,6,9,5,11.0,0,13.9,-0.3,0.79,Graduate +2,39,1,9773,1,1,133.1,1,37,37,7,4,132.0,0,0,0,1,1,0,43,0,0,6,10,4,11.75,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,171,1,1,110.0,1,12,3,5,2,100.0,1,0,0,1,1,0,27,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,6,9238,1,1,113.0,1,1,38,194,163,112.3,1,0,1,1,0,1,20,0,0,6,8,5,11.6,0,0,6,8,4,11.75,0,8.9,1.4,3.51,Graduate +1,17,2,9254,1,1,118.0,1,19,19,5,7,121.2,0,0,0,1,1,1,18,0,0,6,12,3,10.666666666666666,0,0,6,9,4,12.0,0,15.5,2.8,-4.06,Enrolled +1,51,1,9773,1,1,158.0,1,1,19,8,8,117.1,1,0,0,1,1,0,20,0,1,7,7,6,13.833333333333334,0,1,6,7,5,13.0,0,8.9,1.4,3.51,Dropout +1,17,1,9070,1,1,119.0,1,37,38,9,8,124.6,1,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,6,6,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,111.0,1,19,19,3,10,117.7,0,0,0,1,0,0,20,0,0,6,8,5,10.8,0,0,6,9,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,140.0,1,3,1,5,9,130.0,0,0,0,1,1,0,27,0,0,6,6,6,14.166666666666666,0,0,6,7,6,13.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,122.0,1,3,1,9,10,114.7,0,0,0,1,0,0,19,0,0,6,9,5,12.166666666666666,0,0,6,8,6,12.428571428571429,0,13.9,-0.3,0.79,Graduate +2,39,1,9238,1,19,133.1,1,1,2,4,6,130.0,0,0,0,1,0,0,31,0,0,6,6,6,13.166666666666666,0,0,6,8,6,13.0,0,9.4,-0.8,-3.12,Enrolled +1,17,2,9500,1,1,131.0,1,38,1,5,7,118.4,1,0,0,1,0,1,20,0,0,7,9,6,13.766666666666666,0,0,8,9,8,13.744444444444444,0,16.2,0.3,-0.92,Dropout +1,43,5,9853,1,1,150.0,1,34,34,0,0,150.2,1,0,0,0,0,0,28,0,0,6,9,4,12.75,1,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9119,1,1,140.0,1,37,19,9,9,166.0,1,0,1,1,1,0,20,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9085,1,1,133.1,1,19,37,9,6,130.0,1,0,0,1,0,0,26,0,0,6,17,6,12.666666666666666,0,0,6,21,4,12.25,0,15.5,2.8,-4.06,Graduate +1,1,4,9147,1,1,120.0,1,38,38,5,10,111.3,0,0,0,1,1,0,20,0,0,5,8,5,10.2,0,0,5,7,5,11.2,0,12.4,0.5,1.79,Enrolled +1,1,5,9500,1,1,125.0,1,3,19,4,8,120.3,1,0,0,1,0,0,19,0,0,7,11,5,11.716666666666669,0,0,7,8,5,13.7,0,13.9,-0.3,0.79,Enrolled +1,17,2,9556,1,1,136.0,1,1,1,9,9,128.3,0,0,0,1,0,1,18,0,0,7,7,7,13.428571428571429,0,0,8,8,8,14.75,0,15.5,2.8,-4.06,Graduate +1,17,1,9070,1,1,133.1,1,38,19,5,5,128.0,0,0,0,1,0,1,21,0,0,6,6,6,11.5,0,0,6,6,6,12.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9670,1,9,133.1,1,37,37,5,3,110.0,0,0,1,1,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9254,1,1,118.0,1,19,1,4,4,115.9,1,0,0,1,1,1,18,0,0,6,7,6,12.142857142857142,0,0,6,8,6,11.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,134.0,1,19,37,7,7,136.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,130.0,1,37,37,9,7,119.9,0,0,0,1,0,1,19,0,0,5,8,5,12.875,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,17,3,9773,1,1,153.0,1,34,34,99,99,133.1,1,0,1,1,0,1,19,0,0,6,8,6,12.166666666666666,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,10,133.1,1,12,36,90,90,128.2,0,0,0,0,1,1,30,0,0,5,13,0,0.0,3,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,18,1,9991,0,1,112.0,1,43,40,2,2,106.4,0,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,42,1,9500,1,1,122.0,1,3,3,2,2,122.0,1,0,0,1,0,0,20,0,0,8,11,6,12.491666666666667,0,0,8,11,6,12.491666666666667,0,12.7,3.7,-1.7,Graduate +1,17,4,9500,1,1,137.0,1,1,19,4,3,121.3,1,0,0,1,1,1,18,0,0,8,8,7,15.07,0,0,8,8,7,15.07,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,19,133.1,1,3,1,2,5,103.0,0,0,0,1,1,0,25,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,136.0,1,1,19,9,9,131.5,0,0,0,1,0,1,20,0,0,7,8,6,13.863333333333337,0,0,8,9,7,14.178571428571429,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,154.0,1,1,3,4,2,164.9,0,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,13.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,6,9147,1,1,129.0,1,19,1,9,4,122.0,1,0,0,1,1,0,19,0,0,5,8,5,11.6,1,0,5,10,4,10.75,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,132.0,1,19,19,9,7,128.0,1,0,0,1,1,1,19,0,0,8,8,7,14.935714285714283,0,0,8,8,7,14.935714285714283,0,10.8,1.4,1.74,Graduate +2,39,1,9773,1,19,133.1,1,19,19,9,4,131.0,0,0,1,0,1,0,42,0,0,4,5,0,0.0,0,0,4,4,0,0.0,0,13.9,-0.3,0.79,Dropout +4,39,1,8014,0,1,160.0,1,37,37,5,5,126.0,0,0,0,1,0,1,38,0,4,9,13,8,12.88888888888889,0,2,7,9,7,13.0,0,13.9,-0.3,0.79,Graduate +1,16,2,9238,1,1,126.0,1,38,37,3,5,127.1,1,0,0,1,0,1,19,0,0,6,14,3,12.666666666666666,0,0,6,7,6,11.0,0,9.4,-0.8,-3.12,Graduate +1,1,2,9254,1,1,111.0,1,1,19,5,7,109.3,1,0,0,1,0,1,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,133.1,1,37,37,3,10,108.0,0,0,0,1,0,0,20,0,0,7,8,7,12.457142857142856,0,0,8,8,8,13.5625,0,15.5,2.8,-4.06,Graduate +1,1,4,9773,1,1,140.0,22,1,37,3,9,130.5,1,0,0,1,0,0,20,1,0,6,6,6,12.333333333333334,0,0,6,6,6,12.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9500,1,3,140.0,1,1,1,9,5,140.0,0,0,0,1,0,0,33,0,2,7,8,6,14.35,0,3,8,10,6,14.583333333333334,0,16.2,0.3,-0.92,Dropout +1,17,3,9670,1,1,125.0,1,1,3,4,3,117.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,150.0,1,37,38,9,9,131.5,1,0,0,1,0,1,19,0,0,8,8,7,12.657142857142857,0,0,8,8,7,12.657142857142857,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,19,9,5,100.0,0,0,0,0,1,0,29,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9773,1,1,133.0,1,19,19,7,7,134.4,1,0,0,1,1,1,20,0,0,6,6,6,12.166666666666666,0,0,6,8,4,12.75,0,9.4,-0.8,-3.12,Graduate +1,1,1,9070,1,1,135.0,1,19,37,9,9,128.0,1,0,0,1,0,1,19,0,0,6,6,6,14.0,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,5,9670,1,1,115.0,1,1,19,5,5,117.1,0,0,0,1,0,0,21,0,0,5,7,3,12.666666666666666,0,0,5,6,4,12.75,1,7.6,2.6,0.32,Enrolled +1,51,1,9003,1,39,130.0,1,1,19,4,4,120.0,1,0,1,0,1,0,22,0,0,6,12,3,11.333333333333334,0,0,6,13,2,11.0,0,8.9,1.4,3.51,Dropout +1,1,3,9773,1,1,117.0,1,38,19,7,7,110.4,1,0,1,0,0,0,19,0,0,6,7,6,12.166666666666666,0,0,6,10,2,10.333333333333334,0,16.2,0.3,-0.92,Dropout +1,1,3,9773,1,1,127.0,1,19,38,8,3,133.7,1,0,1,1,1,0,18,0,0,6,6,6,13.0,0,0,6,7,5,11.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,133.1,1,38,37,1,1,115.0,1,0,0,1,0,0,21,0,0,5,8,3,11.333333333333334,1,0,5,8,3,13.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,18,2,9853,1,1,123.0,1,1,3,9,2,123.7,1,0,1,0,0,0,20,0,0,6,11,5,13.2,0,0,6,8,4,10.75,0,10.8,1.4,1.74,Dropout +1,1,3,9853,1,1,122.0,1,3,3,2,2,112.6,1,0,0,1,0,0,23,0,0,6,8,5,13.6,0,0,6,8,5,11.6,0,7.6,2.6,0.32,Enrolled +1,17,3,9254,1,1,127.0,1,37,37,9,6,123.5,1,0,0,1,0,1,20,0,0,6,11,4,11.5,0,0,6,12,3,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9500,1,1,141.0,1,37,37,9,9,136.3,1,0,0,1,1,1,18,0,0,7,7,6,13.516666666666666,0,0,7,7,6,13.516666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,19,38,9,9,132.0,0,0,0,1,1,1,18,0,0,6,6,5,12.0,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,2,9254,1,1,140.0,1,3,3,2,2,124.3,0,0,0,0,1,0,18,0,0,6,9,5,11.2,0,0,6,14,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9254,1,1,125.0,1,1,3,4,1,121.9,1,0,0,1,1,0,18,0,0,6,15,3,11.666666666666666,0,0,6,14,2,12.5,0,10.8,1.4,1.74,Dropout +1,17,1,9070,1,1,134.0,1,1,1,5,0,133.3,1,0,0,1,1,0,18,0,0,6,7,5,10.8,1,0,6,6,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,1,9670,1,1,127.0,22,37,37,9,9,127.0,1,0,0,1,1,0,23,1,3,9,11,6,10.5,0,4,10,10,10,11.7,0,9.4,-0.8,-3.12,Graduate +1,42,1,9853,1,1,120.0,1,37,38,3,3,113.7,0,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,3,9670,1,1,121.0,1,3,19,2,8,122.4,1,0,0,1,1,0,19,0,0,5,7,3,11.666666666666666,0,0,5,5,4,12.0,0,9.4,-0.8,-3.12,Enrolled +1,1,3,171,1,1,139.0,1,19,19,5,3,128.2,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,42,1,9085,1,1,100.0,1,1,38,4,9,100.0,1,0,0,1,0,1,20,0,1,2,2,2,12.0,0,1,6,11,6,12.833333333333334,0,13.9,-0.3,0.79,Graduate +1,10,1,9500,1,1,140.0,24,3,3,2,9,140.0,1,0,1,0,0,0,23,1,0,8,11,7,11.328571428571427,0,0,8,11,7,11.328571428571427,0,12.7,3.7,-1.7,Dropout +1,1,1,9773,1,1,132.0,1,37,19,9,9,131.0,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,7,6,13.0,0,15.5,2.8,-4.06,Graduate +1,17,2,9773,1,1,124.0,1,1,1,4,4,127.9,1,0,0,1,1,0,20,0,0,6,11,3,13.666666666666666,0,0,6,13,4,10.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9119,1,1,120.0,1,37,37,9,9,116.0,0,0,1,1,1,1,34,0,0,5,14,1,17.0,0,0,5,10,2,11.0,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9773,1,1,117.0,1,38,38,9,9,111.1,0,0,1,1,1,0,19,0,0,6,6,4,11.25,0,0,6,6,3,11.333333333333334,0,16.2,0.3,-0.92,Dropout +1,39,1,9991,0,19,133.1,1,19,37,9,9,149.4,0,0,0,0,1,0,29,0,0,5,11,2,11.333333333333334,0,0,5,9,1,12.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,1,100.0,1,37,37,1,1,161.9,0,0,0,1,1,0,59,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,140.0,1,38,37,4,7,130.0,1,0,0,0,0,0,39,0,0,5,12,3,10.666666666666666,2,0,5,15,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,43,1,171,1,1,145.0,1,19,38,9,9,100.0,0,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,1,9773,1,1,120.0,1,37,38,9,3,155.5,0,0,0,1,1,0,47,0,0,6,12,5,13.8,0,0,6,13,4,14.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9991,0,1,110.0,1,37,37,9,9,121.8,0,0,0,0,1,0,36,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9130,1,3,140.0,1,5,4,2,0,140.0,0,0,1,0,0,0,29,0,7,9,16,7,11.555555555555555,4,5,7,12,5,13.2,2,7.6,2.6,0.32,Dropout +1,51,1,171,1,1,128.0,1,2,1,3,3,131.2,1,0,0,1,1,0,21,0,6,12,12,12,13.666666666666666,0,4,11,16,11,13.0,0,8.9,1.4,3.51,Graduate +2,39,1,8014,0,12,110.0,1,37,37,7,9,120.0,0,0,0,1,0,0,42,0,0,6,6,6,11.666666666666666,0,0,6,6,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,150.0,1,2,3,3,2,140.8,0,0,0,1,0,0,19,0,1,6,6,5,12.4,0,0,6,8,6,12.75,0,10.8,1.4,1.74,Enrolled +1,43,1,9070,1,1,125.0,1,19,19,7,8,133.4,1,0,0,1,1,1,19,0,4,6,6,4,13.0,0,2,6,7,5,12.2,0,13.9,-0.3,0.79,Enrolled +1,1,5,171,1,1,160.0,1,1,1,4,4,139.7,0,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9130,1,1,120.0,1,1,38,9,9,150.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,154.0,1,19,19,3,3,142.0,0,0,0,1,1,0,19,0,0,8,8,7,13.714285714285714,0,0,8,8,7,13.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9254,1,1,110.0,1,4,19,4,3,114.8,1,0,0,0,1,0,18,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9119,1,1,140.0,1,34,34,9,9,140.0,0,0,0,0,1,0,34,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,125.0,1,1,1,4,2,134.1,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,7,1,9254,1,40,130.0,1,1,1,3,6,130.0,0,0,0,1,0,0,39,0,12,13,14,13,13.76923076923077,0,9,12,16,12,14.583333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9254,1,1,122.0,1,37,37,9,3,124.5,1,0,0,1,0,0,19,0,0,6,12,6,11.666666666666666,0,0,6,14,3,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,130.0,1,1,3,9,2,128.6,1,0,0,1,0,0,18,0,0,7,7,7,14.728571428571428,0,0,8,11,8,16.327272727272728,0,16.2,0.3,-0.92,Graduate +1,17,4,9670,1,1,122.0,1,3,1,2,3,119.6,1,0,0,1,1,0,18,0,0,6,8,6,13.625,0,0,6,7,6,14.285714285714286,0,11.1,0.6,2.02,Graduate +1,44,3,9085,1,39,150.0,1,1,19,4,1,150.0,1,0,0,1,0,0,19,0,0,5,10,1,13.0,1,0,5,8,3,15.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,130.0,1,19,37,9,9,130.0,1,0,0,1,1,0,23,0,0,6,8,6,12.571428571428571,0,0,6,7,6,12.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,2,9773,1,1,133.1,1,38,19,4,7,98.0,1,0,0,1,1,1,19,0,0,6,8,4,12.0,0,0,6,8,6,12.285714285714286,0,15.5,2.8,-4.06,Enrolled +1,17,2,9556,1,1,125.0,1,38,19,7,7,121.5,1,0,0,1,0,0,20,0,0,7,13,4,13.5,0,0,7,11,4,11.225,0,11.1,0.6,2.02,Dropout +2,1,4,9500,1,1,143.0,1,38,38,5,5,128.7,1,0,0,1,0,0,18,0,0,7,10,7,14.455000000000002,0,0,8,8,8,13.91,0,15.5,2.8,-4.06,Graduate +1,39,1,9500,1,1,100.0,1,1,19,4,8,122.0,0,0,0,1,0,0,24,0,0,8,8,7,12.412857142857144,0,0,8,8,7,12.412857142857144,0,10.8,1.4,1.74,Graduate +1,51,1,9500,1,1,170.0,1,1,1,4,10,125.0,0,0,0,1,1,0,20,0,0,7,7,7,15.66,0,7,10,11,9,15.011111111111113,0,11.1,0.6,2.02,Graduate +1,18,4,9500,1,1,137.0,1,3,1,3,4,126.7,1,0,0,1,0,0,18,0,0,7,8,7,13.6875,0,0,8,9,8,15.622222222222222,0,13.9,-0.3,0.79,Dropout +1,39,1,9500,1,19,133.1,1,38,38,9,8,106.0,1,0,0,1,1,0,24,0,0,7,7,6,12.666666666666666,1,0,7,7,6,12.666666666666666,1,7.6,2.6,0.32,Graduate +1,39,1,9991,0,40,130.0,1,19,1,3,4,152.0,1,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9085,1,39,140.0,1,1,39,3,9,140.0,1,0,0,1,0,0,20,0,1,6,9,6,12.666666666666666,0,1,6,10,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,2,9773,1,1,133.1,1,3,1,4,5,115.0,1,0,0,1,0,0,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +2,43,1,9853,1,1,110.0,1,37,37,7,7,100.0,0,0,0,1,1,0,40,0,0,2,4,1,16.0,0,0,4,5,4,15.5,0,13.9,-0.3,0.79,Graduate +1,7,1,9119,1,3,120.0,1,19,19,1,1,120.0,0,0,0,0,1,0,40,0,1,5,7,1,13.0,0,2,5,5,2,14.0,0,12.7,3.7,-1.7,Dropout +2,39,1,8014,0,1,130.0,1,34,34,99,99,114.8,0,0,0,1,0,0,44,0,0,6,9,6,11.166666666666666,0,1,6,15,2,11.0,1,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,140.0,1,37,3,9,10,172.0,0,0,0,1,1,0,44,0,5,11,21,9,12.333333333333334,0,8,11,16,9,11.0,0,12.4,0.5,1.79,Enrolled +1,17,2,9670,1,1,123.0,1,34,37,0,0,114.6,1,0,1,0,0,0,18,0,0,5,8,3,12.0,0,0,5,6,4,10.75,0,7.6,2.6,0.32,Dropout +1,43,2,9500,1,1,136.0,1,19,1,9,10,124.1,0,0,0,1,1,1,21,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Enrolled +1,1,1,9070,1,1,116.0,1,1,1,1,1,110.8,1,0,0,1,0,0,20,0,0,6,6,6,12.833333333333334,0,0,6,10,6,11.166666666666666,0,12.4,0.5,1.79,Graduate +1,39,1,9003,1,1,133.1,1,37,37,4,7,130.0,0,0,1,0,1,0,32,0,0,6,8,3,13.0,0,4,10,14,6,11.428571428571429,0,16.2,0.3,-0.92,Dropout +1,1,3,9085,1,1,158.0,1,1,19,9,9,153.6,1,0,0,1,0,1,18,0,0,6,7,6,15.666666666666666,0,0,6,8,6,15.285714285714286,0,8.9,1.4,3.51,Graduate +1,17,4,9773,1,1,121.0,1,1,19,9,8,120.3,1,0,1,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,5,3,9085,1,1,141.0,1,1,19,7,5,128.8,1,0,0,1,0,0,19,0,0,5,9,3,10.333333333333334,1,0,5,8,3,13.0,0,7.6,2.6,0.32,Enrolled +1,18,4,9556,1,1,127.0,1,1,38,4,7,121.8,1,0,0,1,0,0,20,0,0,7,14,7,11.4375,0,0,8,9,8,11.425,0,12.7,3.7,-1.7,Enrolled +2,39,1,9500,1,1,133.1,1,37,37,9,9,109.0,1,0,0,1,0,0,39,0,0,7,8,5,12.16,0,0,7,8,5,12.16,0,7.6,2.6,0.32,Enrolled +2,39,1,9991,0,1,110.0,1,34,34,0,0,114.6,1,0,0,1,0,0,46,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9085,1,1,128.0,1,38,19,8,8,117.2,0,0,0,1,1,0,20,0,0,5,7,5,14.6,1,0,5,5,5,14.2,0,12.7,3.7,-1.7,Graduate +1,17,6,9500,1,1,143.0,1,1,38,3,3,133.2,1,0,0,1,0,0,18,0,0,7,7,7,13.918571428571427,0,0,8,9,8,13.8875,0,11.1,0.6,2.02,Graduate +1,1,4,9853,1,1,134.0,1,19,1,5,9,127.4,1,0,0,1,0,0,18,0,0,6,7,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Enrolled +1,1,1,9670,1,1,133.1,1,3,1,1,7,155.0,0,0,0,1,0,0,22,0,0,5,6,3,11.333333333333334,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,171,1,1,114.0,1,19,38,9,7,129.1,0,0,0,1,1,1,23,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,17,1,9670,1,1,149.0,1,19,37,7,4,134.3,0,1,0,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,9,6,13.77777777777778,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,130.0,1,1,38,3,5,128.6,1,0,0,1,1,0,19,0,0,6,8,5,12.0,0,0,6,8,5,12.4,0,9.4,-0.8,-3.12,Graduate +1,42,1,9147,1,1,139.0,1,3,38,2,5,112.3,1,0,0,1,0,0,19,0,0,5,8,2,11.5,0,0,5,10,3,10.857142857142858,0,10.8,1.4,1.74,Enrolled +1,1,3,9773,1,1,130.0,1,19,19,9,9,123.0,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,7,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,38,38,9,5,100.0,0,0,0,1,0,0,20,0,0,7,11,6,11.616666666666667,0,0,7,7,7,13.0,0,13.9,-0.3,0.79,Enrolled +6,39,1,8014,0,1,133.1,1,37,1,9,7,114.8,0,0,0,1,0,1,41,0,0,6,10,5,12.833333333333334,0,0,6,6,6,12.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,121.0,1,1,38,4,9,114.4,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,18,1,9238,1,1,122.0,1,38,38,9,7,114.7,0,0,1,1,0,1,18,0,0,6,9,6,10.833333333333334,0,0,6,8,6,12.0,0,11.1,0.6,2.02,Graduate +1,17,2,9773,1,1,120.0,1,1,1,2,5,127.0,1,0,0,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,44,1,9003,1,39,120.0,1,4,1,2,8,120.0,0,0,0,1,1,0,21,0,0,6,9,5,13.4,0,0,6,9,5,12.4,0,8.9,1.4,3.51,Graduate +1,17,3,9500,1,1,143.0,1,38,1,9,5,133.8,1,0,0,1,0,0,18,0,0,7,7,6,13.033333333333331,0,0,7,7,6,13.033333333333331,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,130.0,1,1,19,9,7,133.8,0,0,1,1,0,1,24,0,7,12,13,12,12.846153846153848,0,5,11,13,11,12.636363636363637,0,8.9,1.4,3.51,Graduate +2,39,1,9556,1,1,100.0,1,37,37,9,9,120.0,0,0,0,1,0,0,47,0,1,7,16,6,12.514285714285716,0,0,7,15,4,11.75,0,12.7,3.7,-1.7,Dropout +1,39,1,8014,0,1,133.1,1,1,19,5,4,102.5,0,0,0,1,0,1,27,0,0,6,16,1,10.0,0,0,6,13,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9003,1,1,111.0,1,1,3,4,2,162.4,0,0,1,0,1,0,49,0,4,12,16,5,11.6,0,2,7,7,5,11.2,0,8.9,1.4,3.51,Dropout +1,17,2,9853,1,1,133.1,1,19,1,9,3,107.0,1,0,0,1,0,0,20,0,0,7,12,6,11.666666666666666,0,0,7,10,3,13.0,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,128.0,1,19,1,4,4,124.3,1,0,0,1,1,0,19,0,0,8,8,7,12.665714285714284,0,0,8,8,7,12.665714285714284,0,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,140.0,1,36,14,9,10,130.0,1,0,0,1,1,0,41,0,0,5,9,4,10.75,0,0,5,7,2,10.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,150.0,1,38,19,7,10,134.6,0,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,5,9070,1,1,134.0,1,34,1,5,7,129.8,1,0,0,1,0,0,18,0,0,6,7,2,11.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,150.0,1,37,37,9,3,150.0,1,0,0,1,1,0,21,0,1,6,8,6,12.5,0,0,6,11,3,13.333333333333334,0,13.9,-0.3,0.79,Dropout +2,39,1,9238,1,1,126.6,1,38,38,9,7,107.5,0,0,1,1,0,1,42,0,0,6,8,6,13.333333333333334,0,0,6,7,6,15.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,8014,0,1,120.0,1,37,37,9,7,106.8,0,0,0,1,0,0,49,0,0,6,9,5,12.333333333333334,0,0,6,12,4,11.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9254,1,1,117.0,1,1,1,5,5,116.3,1,0,0,1,1,1,21,0,0,6,6,6,11.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,130.0,1,19,19,5,5,157.0,1,0,0,0,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,39,1,9556,1,1,133.1,1,44,40,2,2,115.5,0,0,0,1,0,0,36,0,0,7,13,5,12.2,0,0,7,14,3,11.4,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,133.1,1,3,1,2,4,125.0,0,0,0,1,1,0,21,0,0,6,10,5,11.333333333333334,0,0,6,14,2,11.5,0,12.7,3.7,-1.7,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,9,9,100.0,0,0,0,0,1,0,44,0,4,10,10,4,11.5,0,1,7,8,1,12.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9500,1,1,141.0,1,37,1,9,4,127.3,1,0,0,1,0,1,19,0,0,7,7,6,13.8,0,0,7,7,6,13.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,117.0,1,38,38,175,183,113.2,1,0,1,1,0,0,20,0,0,6,8,6,10.666666666666666,0,0,6,7,6,11.857142857142858,0,11.1,0.6,2.02,Graduate +1,39,1,9500,1,1,133.1,1,37,37,7,7,124.5,0,0,0,0,1,0,38,0,0,7,11,5,12.18,0,0,7,11,4,11.8125,0,11.1,0.6,2.02,Dropout +1,17,2,9070,1,1,133.1,1,37,38,9,10,178.0,1,0,0,1,1,1,23,0,0,6,8,6,13.333333333333334,0,0,6,7,5,12.8,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,19,9,9,115.0,1,0,0,1,1,0,27,0,0,5,9,1,10.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,146.0,1,1,1,3,4,128.2,0,0,1,1,0,0,18,0,0,6,8,4,13.25,0,0,6,10,3,10.666666666666666,0,12.7,3.7,-1.7,Enrolled +1,17,4,9070,1,1,128.0,1,1,1,9,10,136.1,1,0,1,0,1,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,5,11.8,0,11.1,0.6,2.02,Dropout +5,39,1,9500,1,3,140.0,1,37,38,9,9,160.0,0,0,0,1,0,0,27,0,0,8,8,7,15.94285714285714,0,0,8,8,7,15.94285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,8014,0,1,133.1,1,37,37,9,8,121.0,0,0,1,0,0,0,44,0,2,8,12,4,12.0,2,2,7,9,4,12.0,2,8.9,1.4,3.51,Dropout +1,43,1,9130,1,1,140.0,1,2,1,2,3,140.0,1,0,0,1,0,0,22,0,0,5,11,4,12.25,0,0,5,9,5,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,1,3,9670,1,1,126.0,1,37,37,0,0,136.5,1,0,0,1,0,0,18,0,0,5,7,3,12.0,0,0,5,7,4,13.25,1,7.6,2.6,0.32,Graduate +1,17,4,9238,1,1,140.0,1,19,37,9,9,130.2,1,0,0,1,0,1,18,0,0,6,8,6,12.75,0,0,6,10,6,12.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,1,3,1,2,133.0,0,0,0,1,0,1,20,0,0,8,8,7,14.565714285714288,0,0,8,8,7,14.565714285714288,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,136.0,1,19,38,9,9,121.7,1,0,0,1,1,1,19,0,0,6,9,5,12.4,0,0,6,6,6,13.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,4,9085,1,1,106.0,1,37,1,3,9,106.0,0,0,0,1,0,0,20,0,0,6,9,6,13.166666666666666,0,0,6,8,4,14.0,0,13.9,-0.3,0.79,Enrolled +1,1,3,9500,1,1,135.0,1,1,37,7,7,120.5,1,0,0,1,0,0,19,0,0,8,11,7,13.258571428571427,0,0,8,11,7,13.258571428571427,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,115.0,1,19,19,7,7,115.0,1,0,0,1,0,0,23,0,0,5,7,2,10.0,1,0,5,9,1,12.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9238,1,1,160.0,1,38,1,9,3,124.0,0,0,1,1,1,0,28,0,2,8,15,7,11.0,0,0,6,17,1,10.0,0,10.8,1.4,1.74,Enrolled +1,1,1,9500,1,1,129.0,1,38,38,5,5,120.8,1,0,0,1,0,1,20,0,0,8,8,7,12.744285714285716,0,0,8,8,7,12.744285714285716,0,10.8,1.4,1.74,Graduate +1,39,1,9991,0,1,160.0,41,37,19,9,9,160.0,0,0,0,1,0,1,31,1,0,5,13,4,10.5,0,0,5,10,4,10.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9670,1,1,132.0,1,1,19,7,5,129.9,1,0,0,1,1,0,20,0,0,6,10,6,12.714285714285714,0,0,6,8,4,13.0,0,12.4,0.5,1.79,Enrolled +1,1,2,9238,1,1,136.0,1,37,38,9,8,139.2,1,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,6,6,14.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,127.0,1,19,37,9,7,121.3,1,0,0,1,0,1,20,0,0,8,8,7,12.464285714285714,0,0,8,8,7,12.464285714285714,0,10.8,1.4,1.74,Graduate +1,1,1,9119,1,1,142.0,1,1,38,4,3,129.8,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,6,1,15.0,0,10.8,1.4,1.74,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,5,8,133.2,0,0,0,0,1,0,43,0,0,5,13,2,11.5,0,0,5,12,3,10.8,0,13.9,-0.3,0.79,Dropout +1,1,1,9147,1,1,150.0,1,1,19,5,5,137.8,1,0,0,1,1,1,19,0,0,5,6,5,13.2,0,0,5,6,5,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,135.0,1,3,1,2,4,129.8,1,0,0,1,1,0,20,0,0,6,6,5,12.8,0,0,6,11,3,12.75,0,15.5,2.8,-4.06,Graduate +1,43,2,9773,1,1,132.0,1,19,19,0,0,127.1,0,0,0,1,1,0,23,0,0,6,9,6,12.333333333333334,0,0,6,11,5,13.0,0,7.6,2.6,0.32,Graduate +1,17,3,9500,1,1,140.0,1,3,2,3,3,126.4,1,0,0,1,0,0,18,0,0,7,7,7,13.884285714285712,0,0,8,9,8,14.75,0,11.1,0.6,2.02,Dropout +2,39,2,9119,1,19,133.1,1,37,37,7,7,118.0,0,0,0,0,1,0,33,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9130,1,39,110.0,1,3,4,2,2,110.0,1,0,0,1,1,0,20,0,0,6,15,4,10.75,0,0,6,12,2,10.5,0,13.9,-0.3,0.79,Dropout +2,39,1,9500,1,38,133.1,1,37,37,9,3,146.6,0,0,0,1,1,0,37,0,0,7,8,7,12.828571428571427,0,0,8,8,8,12.6875,0,13.9,-0.3,0.79,Graduate +1,1,1,9773,1,1,146.0,1,1,3,4,1,135.2,1,0,0,1,1,0,18,0,0,6,7,6,14.166666666666666,0,0,6,6,6,12.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,150.0,1,3,5,2,2,135.8,0,0,1,1,1,0,29,0,1,5,9,3,11.0,0,0,5,11,2,13.5,0,12.7,3.7,-1.7,Dropout +2,39,1,9773,1,19,100.0,1,37,37,0,0,163.5,0,0,1,0,1,0,50,0,0,6,7,1,15.0,0,0,5,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,124.0,1,19,19,9,7,113.9,1,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,3,9500,1,1,143.0,1,3,3,9,7,129.0,1,0,0,1,1,0,19,0,0,7,8,7,13.3625,0,0,8,9,8,14.444444444444445,0,13.9,-0.3,0.79,Graduate +1,1,2,9853,1,1,117.0,1,1,38,4,9,109.7,1,0,0,1,0,0,19,0,0,6,9,5,12.2,0,0,6,10,4,13.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9130,1,2,133.1,6,42,1,4,9,100.0,0,0,0,1,1,0,35,1,0,7,8,0,0.0,1,0,6,9,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9991,0,1,120.0,1,37,37,9,9,115.8,0,0,1,0,1,0,28,0,4,9,14,4,10.0,0,1,6,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9773,1,1,167.0,1,38,38,6,7,153.0,1,0,0,1,1,1,18,0,0,6,6,1,11.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,51,1,9238,1,1,141.0,1,1,1,5,9,125.0,0,0,0,1,1,0,22,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,4,9500,1,1,132.0,1,38,19,5,7,125.5,0,0,0,1,0,1,19,0,0,7,8,6,13.579999999999998,0,0,8,8,8,12.93625,0,15.5,2.8,-4.06,Graduate +1,1,1,9119,1,1,132.0,1,1,12,3,3,133.1,1,0,0,1,1,0,19,0,0,5,7,3,12.0,0,0,6,10,2,10.5,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,149.0,1,1,1,4,4,129.3,1,0,0,1,1,0,18,0,0,8,8,7,13.1,0,0,8,8,7,13.1,0,12.7,3.7,-1.7,Graduate +2,39,1,9147,1,1,130.0,1,37,37,9,9,142.5,0,0,0,1,0,0,39,0,0,5,8,4,11.25,0,0,5,8,4,11.5,0,11.1,0.6,2.02,Enrolled +1,1,6,9773,1,1,133.1,1,1,37,3,3,100.0,1,0,1,0,0,0,20,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,138.0,1,37,37,9,6,145.0,1,0,0,1,0,0,18,0,0,5,6,5,13.0,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,140.0,1,19,19,3,6,124.3,1,0,0,1,0,1,18,0,0,7,7,7,14.542857142857144,0,0,8,11,8,14.88181818181818,0,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,135.0,1,37,37,9,7,132.6,1,0,0,1,0,1,18,0,0,6,7,6,13.5,0,0,6,9,5,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,159.0,1,34,26,0,6,160.1,1,0,0,1,0,0,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.857142857142858,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,1,133.1,1,37,37,6,8,100.0,0,0,1,1,0,0,37,0,3,8,12,7,11.375,0,2,7,10,6,12.166666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9070,1,1,153.0,1,3,3,1,2,146.7,1,0,0,1,0,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,5,14.0,0,12.7,3.7,-1.7,Graduate +1,43,1,171,1,2,140.0,1,37,37,9,9,140.0,1,0,0,1,0,0,34,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,141.0,1,19,19,9,8,142.8,0,0,0,1,0,1,19,0,0,7,7,7,14.428571428571429,0,0,7,7,7,14.142857142857142,0,16.2,0.3,-0.92,Graduate +1,39,2,9556,1,1,130.0,1,19,19,4,5,100.0,0,0,0,1,1,1,25,0,0,7,7,2,10.0,0,0,7,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,120.0,1,38,19,3,5,120.0,0,0,0,1,1,0,23,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Enrolled +1,39,2,9147,1,1,120.0,1,37,37,9,9,104.0,0,0,0,0,1,0,26,0,0,5,8,1,10.0,0,0,5,9,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9085,1,1,150.0,1,38,38,9,9,132.0,1,0,0,1,0,0,24,0,0,5,6,5,12.0,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,142.0,1,38,38,9,9,132.9,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,11,3,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9085,1,1,160.0,1,4,19,2,5,162.1,1,0,0,1,0,0,18,0,0,5,8,5,16.166666666666668,2,0,5,9,5,14.285714285714286,1,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,8,130.2,1,0,0,1,0,0,21,0,0,7,11,7,14.072222222222225,0,0,8,8,8,14.0475,0,15.5,2.8,-4.06,Graduate +1,1,1,9147,1,1,118.0,1,1,1,9,9,111.0,0,0,0,0,1,0,21,0,0,5,7,2,11.0,0,0,5,9,3,11.428571428571429,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,119.0,1,37,37,10,6,119.7,1,0,0,1,0,0,20,0,0,5,6,3,13.0,0,0,5,7,3,13.0,1,7.6,2.6,0.32,Enrolled +1,17,2,171,1,1,137.0,1,1,1,4,1,143.3,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,18,3,9085,1,1,149.0,103,1,1,9,9,132.2,1,0,0,1,0,1,18,1,0,5,9,4,12.0,0,0,5,8,5,13.0,0,10.8,1.4,1.74,Graduate +1,43,1,9085,1,1,130.0,1,37,37,90,90,125.1,0,0,0,1,0,0,21,0,2,9,14,8,13.555555555555555,0,2,7,10,7,13.571428571428571,0,7.6,2.6,0.32,Graduate +4,17,5,8014,0,1,100.0,1,19,19,90,90,107.0,0,0,0,1,0,0,38,0,0,5,12,1,10.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,19,133.1,1,38,19,9,10,142.7,0,0,1,1,1,1,34,0,0,5,11,5,14.714285714285714,0,0,5,14,5,14.375,5,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,139.0,1,19,37,5,5,125.5,0,0,0,1,0,1,21,0,0,8,8,7,13.514285714285714,0,0,8,8,7,13.514285714285714,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,133.0,1,4,1,5,5,131.6,0,0,0,1,0,0,18,0,0,6,7,6,13.833333333333334,0,0,6,7,6,13.714285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9500,1,1,148.0,1,19,19,9,3,125.0,1,0,0,1,0,0,18,0,0,7,7,6,13.9,0,0,7,7,6,13.9,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,110.0,1,37,37,9,9,110.3,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,53,1,9003,1,42,130.0,1,38,38,9,9,130.0,1,0,1,1,1,0,20,0,7,12,16,11,12.545454545454543,0,5,10,12,8,11.625,0,8.9,1.4,3.51,Enrolled +1,1,4,9070,1,1,140.0,1,4,19,2,10,125.0,1,0,0,1,1,0,19,0,0,6,7,6,12.666666666666666,0,0,6,8,6,12.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9003,1,39,140.0,1,19,1,5,5,140.0,0,0,0,1,0,0,22,0,0,6,10,6,12.571428571428571,0,0,6,12,4,13.666666666666666,0,15.5,2.8,-4.06,Enrolled +1,1,4,9070,1,1,136.0,1,37,37,9,8,136.7,1,0,0,1,0,0,20,0,0,6,6,4,13.5,0,0,6,8,6,13.625,0,10.8,1.4,1.74,Graduate +1,1,5,9773,1,1,125.0,1,37,3,5,2,126.1,1,0,0,1,1,0,22,0,0,6,10,5,13.4,0,0,6,12,3,10.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,1,1,8014,0,1,126.0,1,37,38,9,10,119.4,0,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,123.0,1,1,3,2,2,118.8,0,0,0,1,1,0,19,0,4,10,10,5,11.0,0,2,7,8,2,10.0,0,8.9,1.4,3.51,Enrolled +1,1,6,9500,1,1,144.0,1,1,37,9,9,127.5,1,0,0,1,0,1,18,0,0,8,8,7,13.857142857142858,0,0,8,8,7,13.857142857142858,0,12.7,3.7,-1.7,Graduate +1,43,1,9070,1,1,125.0,1,38,37,8,7,131.7,1,0,0,1,1,0,20,0,3,6,6,4,12.75,0,3,9,12,3,12.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,144.0,1,37,37,8,8,138.4,0,0,0,1,0,0,18,0,0,6,7,6,13.428571428571429,0,0,6,7,6,14.142857142857142,0,13.9,-0.3,0.79,Graduate +4,39,1,8014,0,1,160.0,1,37,37,3,4,97.0,0,0,0,1,0,1,35,0,0,6,9,6,11.333333333333334,0,0,6,6,6,11.333333333333334,0,15.5,2.8,-4.06,Graduate +1,17,1,9853,1,1,119.0,1,37,38,9,9,125.0,1,0,0,1,0,1,21,0,0,6,9,5,12.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Dropout +1,17,1,9147,1,1,117.0,1,37,37,9,9,109.3,0,0,0,0,0,0,22,0,0,5,9,2,10.0,1,0,5,11,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,3,130.0,1,37,37,9,9,146.2,0,0,0,1,0,0,28,0,10,14,16,11,11.272727272727272,0,6,11,16,10,12.0,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,150.0,1,37,37,9,9,130.3,0,0,0,1,0,1,19,0,0,8,8,7,15.114285714285714,0,0,8,8,7,15.114285714285714,0,12.7,3.7,-1.7,Graduate +2,39,2,8014,0,19,100.0,1,37,37,4,7,100.0,0,0,1,1,0,0,37,0,0,6,9,6,11.833333333333334,0,0,6,7,6,11.0,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,38,133.1,1,38,37,4,8,95.5,0,0,0,1,1,0,29,0,0,6,11,6,12.0,0,0,6,6,6,14.0,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,120.7,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9119,1,19,120.0,1,37,37,9,4,98.6,0,0,1,0,1,0,28,0,0,5,10,0,0.0,0,0,5,7,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9130,1,1,120.0,1,19,37,1,9,116.1,1,0,0,1,1,0,22,0,0,5,9,2,10.5,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9500,1,1,136.0,1,1,1,4,9,128.5,1,0,0,1,0,0,18,0,0,7,7,6,12.766666666666666,0,0,7,7,6,12.766666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,132.0,1,38,37,7,7,131.3,1,0,0,1,0,0,18,0,0,5,8,4,12.0,0,0,5,8,4,12.25,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,115.0,1,38,38,9,8,108.4,1,0,0,1,0,1,20,0,0,7,8,7,11.9625,0,0,8,9,8,13.044444444444444,0,13.9,-0.3,0.79,Graduate +1,39,1,9119,1,1,120.0,1,37,37,9,9,98.7,0,0,0,1,1,1,28,0,0,5,12,3,10.0,0,0,5,10,3,12.4,0,12.4,0.5,1.79,Graduate +2,39,1,9003,1,1,120.0,1,37,37,9,9,155.8,0,0,0,1,1,0,29,0,0,6,9,6,16.11111111111111,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,151.0,1,19,1,5,0,144.4,1,0,0,1,0,0,18,0,0,6,8,6,15.375,0,0,6,7,6,16.428571428571427,0,16.2,0.3,-0.92,Graduate +1,43,2,9147,1,1,131.0,1,19,37,5,9,123.7,1,0,0,1,0,0,18,0,0,5,10,1,14.0,0,0,5,10,1,14.0,0,7.6,2.6,0.32,Enrolled +1,17,4,9085,1,1,128.0,1,38,37,4,9,117.9,1,0,0,1,0,0,20,0,0,5,12,2,13.5,0,0,5,12,5,11.285714285714286,1,10.8,1.4,1.74,Graduate +1,43,1,8014,0,12,133.1,1,37,1,9,10,112.5,0,0,0,1,1,0,50,0,6,13,13,6,11.333333333333334,0,2,11,11,2,13.5,0,16.2,0.3,-0.92,Dropout +1,39,1,9085,1,19,133.1,1,37,37,4,8,140.0,0,0,0,1,0,0,35,0,0,6,11,3,12.666666666666666,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,7,1,9147,1,2,150.0,1,3,37,2,5,150.0,1,0,1,0,0,0,38,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,18,2,9147,1,1,102.0,1,37,38,191,143,101.7,1,0,0,1,0,1,20,0,0,5,6,5,11.8,0,0,5,6,5,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9670,1,1,128.0,1,19,1,4,1,118.2,0,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,9,6,13.0,0,10.8,1.4,1.74,Dropout +2,39,1,8014,0,1,133.1,1,19,1,4,8,144.3,0,0,0,1,1,0,41,0,6,10,10,10,12.5,0,3,7,7,7,12.142857142857142,0,10.8,1.4,1.74,Graduate +1,1,5,9254,1,1,128.0,1,19,1,7,10,116.5,1,0,0,1,0,1,18,0,0,6,7,6,13.428571428571429,0,0,6,6,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,140.0,1,19,19,7,5,135.1,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,18,2,9500,1,1,129.0,1,38,37,5,5,119.0,1,0,0,1,0,1,19,0,0,8,8,7,12.342857142857143,0,0,8,8,7,12.342857142857143,0,10.8,1.4,1.74,Graduate +1,1,6,9500,1,1,140.0,1,3,1,3,3,131.5,1,0,0,1,0,0,19,0,0,8,8,8,13.25375,0,0,8,8,8,13.25375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,143.0,1,3,3,2,5,144.8,0,0,0,1,0,0,19,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,127.0,1,37,37,9,8,123.2,1,0,0,1,0,0,18,0,0,6,12,1,11.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9500,1,1,125.0,1,37,37,9,7,123.6,1,0,0,1,0,1,18,0,0,7,8,5,12.86,0,0,7,8,5,12.86,0,7.6,2.6,0.32,Enrolled +1,1,6,9500,1,1,138.0,1,1,38,3,9,123.0,1,0,0,1,0,0,19,0,0,7,10,5,13.44,0,0,7,8,6,13.066666666666668,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,139.0,1,38,38,9,9,145.0,1,0,0,1,0,1,18,0,0,6,6,6,13.333333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,121.0,1,37,19,6,7,116.8,1,0,0,1,0,0,18,0,0,6,11,3,11.666666666666666,0,0,6,11,3,10.666666666666666,0,9.4,-0.8,-3.12,Dropout +1,17,2,9085,1,1,123.0,1,1,19,4,9,113.6,1,0,0,1,0,0,19,0,0,5,13,3,12.0,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Enrolled +1,17,6,9773,1,1,126.0,1,1,19,5,5,119.0,1,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,4,9119,1,1,139.0,1,37,19,9,4,133.1,1,0,0,1,1,0,18,0,0,5,8,4,12.5,0,0,5,7,3,14.666666666666666,1,7.6,2.6,0.32,Enrolled +1,1,1,9147,1,1,158.0,1,1,38,3,6,155.2,0,0,0,1,1,1,18,0,0,5,5,5,11.8,0,0,5,8,3,11.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,8014,0,1,133.1,1,19,1,1,1,118.0,0,0,0,1,0,1,20,0,0,6,6,6,11.666666666666666,0,0,6,12,5,14.0,0,10.8,1.4,1.74,Graduate +1,1,2,9238,1,1,136.0,1,22,30,0,8,135.7,1,0,0,1,0,0,19,0,0,6,8,6,14.375,0,0,6,8,6,14.75,0,7.6,2.6,0.32,Graduate +1,39,1,9147,1,1,120.0,1,37,37,9,9,110.0,0,0,0,0,1,0,32,0,0,5,9,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,124.0,1,19,19,7,9,132.1,1,0,0,1,0,0,19,0,0,6,10,2,10.5,0,0,6,6,3,11.0,0,7.6,2.6,0.32,Enrolled +5,7,1,9991,0,2,120.0,1,37,37,6,6,120.0,0,0,0,1,0,0,46,0,6,8,12,8,12.375,0,4,9,11,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,4,9238,1,1,123.0,1,38,1,4,10,129.0,1,0,0,1,0,0,19,0,0,6,8,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,4,9119,1,1,135.0,1,38,37,5,7,126.6,1,0,0,1,1,0,18,0,0,5,7,4,12.0,0,0,5,10,3,13.0,3,7.6,2.6,0.32,Enrolled +1,1,3,9070,1,1,129.0,1,5,3,5,7,124.8,1,0,0,1,0,0,21,0,0,6,6,6,14.5,0,0,6,7,5,12.0,0,12.4,0.5,1.79,Graduate +1,17,5,9147,1,1,127.0,1,1,38,4,5,124.6,1,0,0,1,0,1,19,0,0,5,12,2,10.0,0,0,5,11,4,11.75,0,11.1,0.6,2.02,Enrolled +1,51,1,9147,1,1,135.0,1,1,1,4,4,118.5,0,0,0,1,0,0,25,0,0,5,12,2,10.5,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,2,171,1,1,142.0,1,3,1,2,6,139.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +5,39,1,9147,1,1,133.1,1,19,19,9,9,119.8,0,0,0,1,1,0,26,0,0,5,9,5,12.0,0,0,5,5,5,10.2,0,11.1,0.6,2.02,Enrolled +1,1,1,9254,1,1,123.0,1,1,37,9,9,132.1,0,0,0,1,0,1,21,0,0,6,9,5,11.0,0,0,6,8,5,12.0,0,15.5,2.8,-4.06,Graduate +1,43,1,9853,1,1,115.0,1,3,37,2,5,108.7,1,0,0,1,0,0,21,0,0,6,10,3,12.666666666666666,0,0,6,12,3,10.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,12,133.1,1,37,34,90,90,110.7,1,0,0,1,0,0,50,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,3,171,1,1,155.0,1,4,3,1,1,144.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9254,1,1,105.0,1,1,19,9,6,106.1,1,0,0,1,0,0,20,0,0,6,8,5,11.0,0,0,6,9,5,11.4,0,13.9,-0.3,0.79,Graduate +1,17,1,9853,1,1,150.0,1,19,19,3,4,135.0,0,0,0,1,0,0,29,0,2,8,10,7,11.142857142857142,0,2,8,11,8,11.375,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,152.0,1,37,37,5,7,136.3,0,0,0,1,0,1,18,0,1,6,8,6,13.571428571428571,1,0,6,11,6,12.375,0,13.9,-0.3,0.79,Graduate +1,39,1,9991,0,1,120.0,1,34,34,0,0,120.5,1,0,0,1,1,0,30,0,0,5,5,2,11.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9254,1,1,140.0,1,1,37,4,5,123.6,1,0,0,1,0,0,18,0,0,6,10,6,12.857142857142858,0,0,6,6,3,12.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,120.0,1,37,37,9,9,150.1,1,0,0,1,1,0,43,0,0,6,9,6,14.77777777777778,0,0,6,11,5,12.2,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,144.0,1,37,38,9,9,126.9,0,0,0,1,0,1,21,0,0,5,5,5,13.2,0,0,5,5,4,13.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9991,0,1,120.0,1,37,37,9,9,128.2,0,0,0,0,1,0,32,0,5,9,9,5,11.4,0,4,4,4,4,11.0,0,10.8,1.4,1.74,Dropout +1,18,2,9147,1,1,115.0,1,1,37,5,5,108.7,1,0,0,1,0,0,21,0,0,5,8,3,12.0,1,0,5,9,3,12.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,140.0,1,19,19,4,4,140.0,1,0,0,0,1,0,21,0,0,6,17,2,12.5,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9085,1,39,140.0,1,1,1,3,7,140.0,1,0,0,1,0,0,20,0,2,6,11,5,14.2,0,0,6,12,2,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9500,1,1,129.0,1,19,19,5,5,119.6,1,0,0,1,0,1,20,0,0,7,8,7,14.00375,0,0,8,11,7,13.812857142857142,0,15.5,2.8,-4.06,Graduate +1,17,6,9773,1,1,141.0,1,37,37,5,5,127.7,1,0,0,1,1,0,18,0,0,6,6,6,15.166666666666666,0,0,6,6,6,14.833333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,2,9500,1,1,137.0,1,19,37,4,7,126.3,1,0,0,1,0,1,19,0,0,7,9,6,12.339999999999998,0,0,8,9,8,13.01875,0,11.1,0.6,2.02,Graduate +2,39,1,9003,1,1,168.0,1,1,41,9,3,153.9,0,0,1,0,1,0,34,0,0,6,7,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,133.0,1,37,37,9,9,121.8,1,0,0,1,0,1,18,0,0,6,7,5,10.2,0,0,6,9,4,11.25,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,119.0,1,2,1,4,3,113.1,1,0,0,1,0,0,21,0,0,5,6,5,12.2,0,0,5,5,5,13.2,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,142.0,1,38,19,141,171,115.0,0,0,0,1,0,0,19,0,0,5,11,5,11.5,0,0,5,9,2,10.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,4,9773,1,1,138.0,1,37,19,5,7,133.5,1,0,0,0,0,0,18,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,10.8,1.4,1.74,Graduate +2,7,1,8014,0,3,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,39,0,9,13,19,12,13.416666666666666,0,4,10,10,10,14.5,0,16.2,0.3,-0.92,Graduate +1,17,3,9500,1,1,133.0,1,3,19,2,5,130.8,1,0,0,1,0,0,19,0,0,8,8,8,13.427499999999998,0,0,8,8,8,13.427499999999998,0,9.4,-0.8,-3.12,Graduate +1,17,1,9238,1,1,137.0,1,38,19,152,171,131.1,1,0,0,1,0,1,18,0,0,6,8,6,12.833333333333334,0,0,6,6,6,12.166666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9119,1,1,130.0,1,1,38,3,3,129.3,0,0,0,1,1,1,18,0,0,5,5,5,13.0,0,0,5,5,5,14.2,0,8.9,1.4,3.51,Graduate +1,43,1,9773,1,1,126.0,1,1,37,3,0,110.0,0,0,1,1,0,0,20,0,0,6,7,6,13.333333333333334,0,0,6,8,6,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9070,1,1,116.0,1,1,12,5,8,110.4,1,0,0,1,1,0,19,0,0,6,6,6,11.5,0,0,6,8,6,12.285714285714286,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,133.1,1,1,1,4,10,110.0,0,0,1,1,0,0,23,0,0,6,8,6,12.625,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,17,5,9238,1,1,134.0,1,38,37,9,9,126.0,0,0,1,0,0,0,21,0,0,6,10,5,11.833333333333334,0,0,6,10,5,13.2,0,13.9,-0.3,0.79,Dropout +2,39,1,9147,1,1,130.0,1,1,19,9,9,109.9,0,0,0,0,0,0,29,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9085,1,1,133.1,41,37,37,9,9,109.6,0,0,0,1,0,0,18,1,0,6,13,4,12.25,0,0,6,15,5,11.0,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,1,140.0,0,0,0,1,1,1,20,0,0,6,11,5,13.833333333333334,0,0,6,13,6,12.3,0,15.5,2.8,-4.06,Enrolled +2,39,1,9991,0,19,133.1,1,38,38,90,90,121.7,1,0,0,1,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,4,9773,1,1,143.0,1,1,3,4,7,129.7,1,0,0,1,0,0,20,0,0,4,4,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,133.0,1,1,19,9,6,121.5,1,0,0,1,0,1,20,0,0,7,8,6,12.396666666666668,0,0,8,9,7,12.94285714285714,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,133.0,1,38,37,9,9,125.3,1,0,0,1,0,0,21,0,12,18,22,18,11.88888888888889,1,11,13,13,13,11.461538461538462,0,15.5,2.8,-4.06,Graduate +1,42,1,9991,0,1,160.0,1,1,2,4,3,120.0,0,0,0,1,0,0,30,0,4,7,9,7,14.142857142857142,0,1,5,5,5,14.8,0,7.6,2.6,0.32,Graduate +2,39,2,9556,1,1,133.1,105,1,3,9,2,152.8,1,0,0,1,0,0,28,1,0,7,9,7,12.428571428571429,0,0,8,8,8,12.3,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,123.0,1,1,1,4,6,118.8,1,0,0,1,0,0,21,0,0,5,9,3,10.666666666666666,0,0,5,13,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9853,1,1,122.0,1,3,19,2,3,112.9,0,0,0,1,0,0,18,0,0,7,9,7,11.857142857142858,0,0,7,7,7,11.857142857142858,0,16.2,0.3,-0.92,Graduate +1,1,5,9853,1,1,123.0,1,1,12,4,9,113.2,1,0,0,1,0,0,20,0,0,6,12,4,12.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,140.0,1,37,37,9,9,141.5,1,0,1,0,0,0,19,0,0,8,8,7,13.327142857142857,0,0,8,8,7,13.327142857142857,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,129.0,1,19,19,4,8,127.3,1,0,0,1,0,1,20,0,0,7,7,6,12.633333333333333,0,0,7,7,6,12.633333333333333,0,7.6,2.6,0.32,Graduate +1,39,1,9085,1,1,130.0,1,37,37,6,6,110.0,0,0,0,1,0,1,25,0,0,6,13,3,11.666666666666666,0,0,6,14,2,11.333333333333334,0,11.1,0.6,2.02,Enrolled +4,39,1,8014,0,19,133.1,1,37,37,9,9,95.0,0,0,1,0,0,0,50,0,0,6,11,0,0.0,0,0,5,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,2,9853,1,1,127.0,1,37,19,9,8,137.5,1,0,0,1,0,0,21,0,0,6,7,6,13.428571428571429,0,0,6,8,6,13.142857142857142,0,7.6,2.6,0.32,Graduate +1,1,5,9500,1,1,142.0,1,38,37,5,7,128.8,1,0,0,1,0,0,18,0,0,7,7,6,14.233333333333334,0,0,7,7,6,14.233333333333334,0,7.6,2.6,0.32,Graduate +1,17,2,9147,1,1,142.0,1,19,19,4,8,127.3,0,0,0,1,0,1,18,0,0,5,5,5,11.2,0,0,5,5,5,11.8,0,11.1,0.6,2.02,Graduate +3,39,1,9991,0,1,120.0,1,37,1,9,2,170.0,0,0,0,1,1,0,43,0,0,5,5,5,11.8,0,0,5,6,5,14.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,138.0,1,19,37,4,9,141.0,0,0,0,1,1,0,19,0,0,7,7,6,13.7,0,0,7,7,6,13.7,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,132.0,1,1,38,9,9,120.1,1,0,0,1,1,1,20,0,0,6,7,6,13.571428571428571,0,0,6,8,6,13.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,2,9500,1,1,140.0,1,1,1,2,7,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.88125,0,0,8,8,8,13.88125,0,9.4,-0.8,-3.12,Graduate +1,17,1,9773,1,1,121.0,1,37,19,9,10,113.7,0,0,0,1,0,0,18,0,0,6,8,5,12.6,0,0,6,10,6,12.428571428571429,0,15.5,2.8,-4.06,Enrolled +1,39,1,8014,0,38,133.1,1,1,1,4,4,107.5,0,0,1,0,1,0,29,0,0,6,6,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,150.0,1,1,1,5,1,155.6,0,0,0,1,0,0,19,0,0,7,7,7,14.3,0,0,8,9,8,14.055555555555555,0,16.2,0.3,-0.92,Graduate +1,1,1,9070,1,1,150.0,1,37,37,9,6,131.1,0,0,0,1,0,1,19,0,0,6,7,5,13.4,0,0,6,6,6,12.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9991,0,1,100.0,1,3,19,1,1,117.9,0,0,0,0,1,0,40,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,2,9991,0,1,150.0,1,37,37,9,9,120.0,0,0,0,1,0,0,43,0,0,5,11,3,10.666666666666666,0,1,5,10,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,150.0,1,1,38,4,9,150.0,0,0,0,1,1,1,20,0,0,6,18,3,12.0,0,0,6,17,3,11.666666666666666,0,15.5,2.8,-4.06,Enrolled +2,43,1,9130,1,9,133.1,1,34,34,0,0,128.2,0,0,0,1,1,0,28,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9500,1,1,141.0,1,1,1,90,3,127.8,0,0,0,1,0,1,19,0,0,7,7,0,0.0,2,0,7,7,0,0.0,2,7.6,2.6,0.32,Dropout +1,1,1,9070,1,1,116.0,1,3,3,0,1,108.7,1,0,0,1,1,0,23,0,0,6,9,4,11.25,1,0,6,10,0,0.0,4,7.6,2.6,0.32,Dropout +2,39,1,9500,1,1,140.0,1,19,19,9,7,110.5,0,0,0,1,0,0,31,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9254,1,19,133.1,1,34,34,0,0,120.0,0,0,1,0,1,0,45,0,0,6,12,0,0.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,1,133.1,1,37,37,191,172,115.2,0,0,0,1,0,0,48,0,0,7,11,4,11.75,0,0,7,14,3,11.725,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,6,160.0,0,0,0,1,0,1,20,0,0,6,8,6,12.625,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,9,133.2,1,0,0,1,1,0,32,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,3,9556,1,1,131.0,1,19,38,9,7,128.5,0,0,0,1,0,1,18,0,0,7,9,7,12.855555555555556,0,0,8,8,8,13.9125,0,12.7,3.7,-1.7,Graduate +1,42,1,9500,1,1,160.0,1,37,38,9,7,161.0,1,0,0,1,0,1,22,0,0,8,8,7,13.08,0,0,8,8,7,13.08,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,136.0,1,3,3,1,2,152.5,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,1,9853,1,1,114.0,1,19,37,5,5,109.5,1,0,0,1,0,0,19,0,0,7,10,4,10.5,0,0,7,7,2,10.5,0,16.2,0.3,-0.92,Dropout +2,39,1,9991,0,1,150.0,1,37,37,9,7,122.5,0,0,0,1,1,0,47,0,0,5,9,4,11.5,0,0,5,6,5,11.6,1,7.6,2.6,0.32,Dropout +1,44,1,9991,0,39,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,31,0,2,6,12,4,12.25,0,3,7,9,7,12.0,0,9.4,-0.8,-3.12,Enrolled +1,51,1,8014,0,42,140.0,1,19,37,134,193,138.0,1,0,1,1,0,1,21,0,13,13,13,11,12.727272727272728,0,9,11,11,10,12.6,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,127.0,1,2,19,3,9,121.5,0,0,0,1,1,0,23,0,0,7,7,6,13.483333333333334,0,0,7,7,6,13.483333333333334,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,133.1,1,19,19,3,3,125.3,0,1,0,1,1,1,30,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,4,9670,1,1,125.0,1,4,19,2,5,118.0,1,0,0,1,0,0,19,0,0,6,7,6,14.428571428571429,0,0,6,8,6,15.0,2,16.2,0.3,-0.92,Graduate +2,42,1,9070,1,1,170.0,1,37,25,0,4,148.5,0,0,0,1,1,0,47,0,8,10,14,8,14.625,0,5,7,7,5,13.4,0,9.4,-0.8,-3.12,Dropout +1,17,5,9254,1,1,121.0,1,1,19,4,7,116.5,1,0,0,0,1,0,18,0,0,6,12,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,120.0,1,19,38,5,9,130.2,0,0,0,1,0,1,18,0,0,6,8,6,11.285714285714286,0,0,6,10,6,11.857142857142858,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,140.0,1,19,37,9,9,140.7,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,6,6,16.0,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,140.0,1,19,19,5,9,131.3,1,0,0,1,0,1,18,0,0,6,6,6,13.5,0,0,6,9,6,13.666666666666666,0,10.8,1.4,1.74,Graduate +1,42,1,9119,1,1,140.0,1,3,3,3,2,133.6,1,0,0,1,1,0,22,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,8014,0,1,150.0,1,19,2,4,6,148.0,0,0,0,1,0,0,26,0,0,6,10,3,11.666666666666666,0,0,6,8,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9085,1,1,127.0,1,37,2,9,4,123.2,1,0,0,1,0,1,18,0,0,6,7,6,15.714285714285714,0,0,6,17,5,12.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,119.0,1,19,37,9,9,119.4,1,0,0,1,0,0,20,0,0,7,7,7,13.775714285714288,0,0,8,8,8,15.599999999999998,0,12.4,0.5,1.79,Graduate +1,17,1,9130,1,1,132.0,1,2,1,4,1,127.8,0,0,0,1,1,0,18,0,0,6,9,6,12.0,0,0,6,10,5,12.166666666666666,0,11.1,0.6,2.02,Dropout +1,42,1,9119,1,1,136.0,1,1,37,5,5,117.5,0,0,0,1,1,0,19,0,2,5,6,4,11.8,0,0,5,7,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,1,1,9991,0,1,122.0,1,37,37,9,3,113.6,0,0,0,1,1,0,26,0,0,5,11,2,11.5,0,0,5,10,3,12.0,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,5,6,137.4,0,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Enrolled +1,17,1,9238,1,1,128.0,1,19,19,5,4,116.5,0,0,0,1,0,1,18,0,0,6,8,5,10.8,0,0,6,9,6,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,139.0,1,1,38,6,6,143.6,1,0,1,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9130,1,1,154.0,1,3,3,2,2,137.2,1,0,1,1,1,0,18,0,0,6,11,5,13.625,0,0,6,9,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,6,9500,1,1,142.0,1,19,37,4,9,131.9,1,0,0,1,0,0,19,0,0,7,7,7,13.642857142857142,0,0,8,8,8,14.3875,0,13.9,-0.3,0.79,Dropout +1,1,2,9773,1,1,131.0,1,19,37,9,10,121.9,1,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +2,7,1,9130,1,3,120.0,1,3,3,1,1,128.2,0,0,0,1,0,0,33,0,1,5,11,2,11.5,1,1,5,8,2,12.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,19,133.1,1,37,37,9,9,150.3,0,0,0,1,0,0,47,0,0,5,5,5,14.8,0,0,5,5,5,14.4,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,125.0,1,37,37,5,5,124.0,0,0,0,1,0,0,19,0,0,6,7,6,14.857142857142858,0,0,6,6,6,13.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9070,1,1,135.0,1,37,19,9,9,125.2,1,0,0,1,0,0,19,0,0,6,6,6,14.333333333333334,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,9,124.5,0,0,0,1,0,1,18,0,0,6,11,5,11.142857142857142,0,0,6,8,6,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,175.0,1,3,38,2,10,157.5,1,0,0,1,0,0,19,0,0,6,8,6,13.166666666666666,0,0,6,7,6,13.166666666666666,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,139.0,1,1,1,4,10,140.7,0,0,0,1,1,0,25,0,0,5,13,1,10.0,0,0,5,8,2,11.333333333333334,0,12.4,0.5,1.79,Dropout +1,1,4,9500,1,1,128.0,1,1,1,4,10,125.2,1,0,0,1,1,1,18,0,0,7,7,7,14.682857142857143,0,0,8,9,8,15.055555555555555,0,12.4,0.5,1.79,Graduate +1,17,6,9500,1,1,150.0,1,1,37,1,1,131.5,1,0,0,1,0,0,19,0,0,8,8,7,13.925714285714283,0,0,8,8,7,13.925714285714283,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,168.0,1,38,1,9,10,166.0,1,0,0,1,0,0,18,0,0,8,8,8,14.88875,0,0,8,8,8,14.88875,0,9.4,-0.8,-3.12,Graduate +1,51,1,9070,1,1,125.0,1,42,3,125,124,130.0,1,0,0,1,1,0,20,0,2,6,7,6,12.833333333333334,0,0,6,9,4,13.4,0,8.9,1.4,3.51,Graduate +1,18,1,9500,1,1,135.0,1,1,38,4,5,127.5,1,0,0,1,0,1,19,0,0,7,8,6,13.741666666666667,0,0,8,9,7,14.9125,0,16.2,0.3,-0.92,Graduate +1,18,1,9119,1,1,148.0,1,3,19,3,5,147.7,0,0,0,1,1,1,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9773,1,1,130.0,109,19,1,9,9,126.9,1,0,0,1,0,1,19,1,0,6,8,6,13.166666666666666,0,0,6,6,6,13.0,0,11.1,0.6,2.02,Dropout +1,17,1,9238,1,1,125.0,1,19,38,3,7,114.9,0,0,0,1,0,1,19,0,0,6,13,6,11.5,0,0,6,9,5,12.2,0,11.1,0.6,2.02,Graduate +1,7,1,9119,1,3,130.0,1,37,37,9,9,130.0,0,0,0,0,1,0,33,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9853,1,1,130.0,1,37,19,7,3,140.0,0,0,1,1,0,1,34,0,0,6,7,6,16.142857142857142,0,0,6,10,6,16.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9853,1,1,112.0,1,3,1,3,5,111.0,0,0,0,1,0,0,21,0,0,6,8,5,13.2,0,0,6,9,5,14.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,37,38,193,181,125.9,0,0,0,1,0,0,21,0,0,5,7,5,12.2,0,0,5,7,5,11.8,0,11.1,0.6,2.02,Graduate +1,42,1,9119,1,1,120.0,1,34,34,0,0,128.2,1,0,0,1,1,0,35,0,6,10,12,7,11.285714285714286,0,2,8,8,5,13.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9991,0,19,133.1,1,37,37,9,9,117.2,0,0,0,1,0,0,41,0,0,5,8,5,11.0,0,0,5,6,5,11.8,1,7.6,2.6,0.32,Graduate +1,1,3,9147,1,1,131.0,1,19,38,9,7,132.4,1,0,0,1,0,0,19,0,0,5,5,5,11.8,0,0,5,8,4,11.25,0,9.4,-0.8,-3.12,Enrolled +5,39,1,9003,1,1,180.0,1,1,1,4,8,179.6,0,0,1,0,0,0,27,0,0,6,6,0,0.0,0,0,6,7,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,5,9119,1,1,135.0,1,37,37,90,90,122.1,1,0,0,1,1,0,20,0,0,5,10,3,10.666666666666666,0,0,5,5,4,12.25,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,133.0,1,1,38,5,10,131.3,1,0,0,1,0,0,20,0,0,6,9,5,14.333333333333334,0,4,8,8,8,12.625,0,15.5,2.8,-4.06,Enrolled +1,18,1,9500,1,1,126.0,1,37,19,5,5,119.3,0,0,0,1,0,1,19,0,0,8,9,8,13.78125,1,0,8,9,8,13.78125,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,1,110.0,1,19,37,9,6,120.0,0,0,1,0,1,0,31,0,0,6,15,1,11.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,2,9556,1,1,130.0,1,37,37,9,9,159.0,1,0,0,1,0,0,25,0,0,7,11,7,11.857142857142858,0,0,8,21,5,11.7,0,12.4,0.5,1.79,Enrolled +1,17,1,9070,1,1,141.0,1,19,38,4,5,133.7,1,0,0,1,1,0,22,0,0,6,7,5,11.4,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,39,1,9991,0,1,150.0,1,1,37,4,6,120.0,0,0,0,1,1,0,25,0,0,5,6,4,10.5,0,0,5,6,5,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,2,9085,1,1,123.0,1,3,19,2,9,118.9,0,0,0,1,1,0,18,0,0,5,5,3,14.0,0,0,5,7,3,12.666666666666666,0,7.6,2.6,0.32,Enrolled +1,17,1,9991,0,1,140.0,1,38,37,6,7,127.3,0,0,0,1,0,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,6,9500,1,1,151.0,1,3,1,2,1,129.8,1,0,0,1,1,0,18,0,0,8,10,8,13.05375,2,0,8,10,8,13.05375,2,9.4,-0.8,-3.12,Graduate +1,43,1,8014,0,1,113.0,1,37,37,0,6,128.2,0,0,0,0,0,0,41,0,0,6,6,0,0.0,6,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9070,1,1,117.0,1,1,37,4,7,127.9,1,0,0,1,1,0,20,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,145.0,1,19,19,9,7,136.6,0,0,0,1,0,1,19,0,0,7,12,6,13.766666666666666,0,0,8,10,7,14.051428571428572,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,133.0,1,34,37,4,9,134.4,1,0,0,1,0,1,18,0,0,6,6,6,12.166666666666666,0,0,6,9,6,13.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,44,1,9238,1,39,130.0,1,38,38,5,10,126.7,0,0,1,1,0,0,21,0,3,6,6,6,12.166666666666666,0,2,6,7,6,11.714285714285714,0,13.9,-0.3,0.79,Graduate +1,17,1,9773,1,1,122.0,1,1,1,4,7,116.8,1,0,1,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,3,9147,1,1,124.0,1,1,1,5,3,116.7,1,0,0,1,1,0,19,0,0,5,6,0,0.0,0,0,5,6,0,0.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9991,0,1,120.0,1,38,1,9,4,123.2,0,0,0,1,0,0,27,0,0,5,9,3,10.666666666666666,0,0,5,7,4,11.4,0,10.8,1.4,1.74,Enrolled +1,39,1,9556,1,40,130.0,1,1,1,4,5,145.0,0,0,0,1,0,0,25,0,0,7,10,6,12.125,0,0,8,9,8,13.3125,0,15.5,2.8,-4.06,Enrolled +1,43,1,9147,1,1,127.0,25,1,5,9,10,124.2,1,0,0,1,1,0,23,1,0,5,6,1,10.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,43,1,9670,1,1,120.0,1,34,34,0,0,128.2,0,0,0,1,1,0,35,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,18,1,9238,1,1,122.0,1,1,3,9,2,112.6,1,0,0,1,1,0,21,0,0,6,9,6,10.166666666666666,0,0,6,10,6,10.5,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,122.0,1,1,1,4,4,119.6,1,0,0,1,0,0,21,0,0,7,8,6,13.25,0,0,8,8,8,13.8375,0,13.9,-0.3,0.79,Enrolled +1,17,5,9670,1,1,125.0,1,1,19,9,7,119.4,1,0,0,1,0,0,18,0,0,6,10,4,13.6,0,0,6,7,5,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,146.0,1,19,37,9,7,153.0,1,0,0,1,0,1,21,0,15,17,18,17,13.38888888888889,0,15,17,18,17,14.88888888888889,0,11.1,0.6,2.02,Graduate +1,1,2,9773,1,1,108.0,1,38,38,7,7,115.0,1,0,1,0,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,133.1,1,1,1,3,9,138.0,1,0,0,1,0,0,20,0,0,6,11,6,13.333333333333334,0,0,6,10,6,13.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9991,0,1,140.0,1,37,37,9,5,140.0,0,0,0,0,0,0,37,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,19,133.1,1,2,1,2,4,100.0,0,0,0,1,1,0,24,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,1,9147,1,1,129.0,1,38,37,3,5,132.9,1,0,0,1,0,0,19,0,0,5,5,3,11.666666666666666,0,0,5,10,4,10.8,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,149.0,1,3,2,2,5,151.1,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,135.0,1,19,4,9,2,143.8,1,0,1,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9147,1,1,158.0,1,19,37,9,7,130.0,1,0,0,1,0,0,20,0,0,5,8,4,11.25,0,0,5,7,5,10.4,0,7.6,2.6,0.32,Graduate +1,17,6,9556,1,1,122.0,1,1,1,4,5,117.1,1,0,0,1,0,0,19,0,0,7,12,5,12.1,0,0,7,0,0,0.0,0,13.9,-0.3,0.79,Dropout +2,39,2,9556,1,12,133.1,1,34,34,99,99,100.5,0,0,0,1,0,0,39,0,0,3,7,1,14.0,0,0,2,4,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9003,1,1,123.0,1,37,37,9,9,110.0,0,0,1,0,0,0,48,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,138.0,1,3,3,2,2,127.5,1,0,0,1,0,1,18,0,0,7,7,7,14.485714285714286,0,0,8,9,8,14.58888888888889,0,16.2,0.3,-0.92,Graduate +1,43,1,9500,1,1,121.0,1,38,19,5,5,115.4,1,0,0,1,0,1,24,0,0,8,8,7,11.971428571428572,0,0,8,8,7,11.971428571428572,0,12.7,3.7,-1.7,Enrolled +1,17,4,9147,1,1,114.0,1,19,19,4,4,109.5,1,0,0,1,1,1,20,0,0,5,6,5,11.8,0,0,5,8,4,11.6,0,8.9,1.4,3.51,Graduate +1,17,1,9254,1,1,148.0,1,1,1,4,8,145.2,0,0,0,1,1,0,20,0,0,6,7,6,13.714285714285714,0,0,6,8,6,14.714285714285714,0,16.2,0.3,-0.92,Graduate +1,17,1,9254,1,1,121.0,1,1,1,4,4,123.1,1,0,0,1,1,0,21,0,0,6,11,6,11.166666666666666,0,0,6,14,3,14.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,1,171,1,1,150.0,1,3,3,2,5,154.6,1,0,0,1,0,0,19,0,6,12,13,12,12.333333333333334,0,4,11,12,10,12.727272727272728,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,151.0,1,19,38,9,9,157.0,1,0,1,1,0,1,18,0,0,6,8,5,11.6,0,0,6,12,4,11.0,0,7.6,2.6,0.32,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,101.0,0,0,0,1,0,0,35,0,0,6,7,6,12.5,0,0,6,6,6,12.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,2,9254,1,1,127.0,1,3,19,3,10,130.9,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,8,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,146.0,1,1,1,9,8,149.5,1,0,0,1,1,1,17,0,0,6,8,6,14.875,0,0,6,8,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,43,1,9130,1,6,133.1,1,1,29,4,90,123.3,1,0,0,1,0,1,21,0,0,5,7,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,3,3,7,146.5,1,0,1,1,1,0,19,0,6,12,13,11,12.0,0,4,11,15,10,11.181818181818182,0,8.9,1.4,3.51,Enrolled +1,7,1,8014,0,40,120.0,1,37,19,9,3,120.0,0,0,0,1,0,0,36,0,6,10,15,4,13.0,0,5,9,10,4,13.75,0,8.9,1.4,3.51,Dropout +1,1,1,9853,1,1,125.0,1,37,37,9,9,114.9,1,0,1,0,0,0,21,0,0,6,8,3,13.666666666666666,0,0,6,7,3,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,2,9773,1,1,140.0,1,1,1,4,3,131.6,0,0,0,1,1,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,11.5,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,142.0,1,1,19,9,9,136.1,0,0,1,1,1,1,19,0,0,6,6,6,12.666666666666666,0,0,6,6,6,14.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,113.0,1,1,1,4,4,106.7,1,0,0,1,0,0,20,0,0,6,15,4,14.2,0,0,6,17,4,13.25,0,15.5,2.8,-4.06,Dropout +1,43,1,9003,1,1,130.0,1,1,2,4,2,130.0,0,0,0,1,1,0,28,0,9,18,36,17,13.058823529411764,1,6,12,15,12,12.307692307692308,0,15.5,2.8,-4.06,Graduate +1,39,1,9119,1,1,130.0,1,19,37,9,9,134.0,0,0,0,1,1,1,24,0,0,5,8,5,11.833333333333334,0,0,5,8,4,14.0,0,12.7,3.7,-1.7,Enrolled +1,18,1,9500,1,1,123.0,1,37,37,3,3,118.0,1,0,0,1,0,1,19,0,0,8,8,7,11.82,0,0,8,8,7,11.82,0,10.8,1.4,1.74,Graduate +1,10,2,9085,1,1,163.3,22,19,1,4,9,163.3,0,0,0,1,0,0,18,1,0,6,10,6,13.5,0,0,6,12,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,135.0,1,19,19,9,5,135.0,1,0,0,1,0,0,20,0,0,6,6,6,13.833333333333334,0,0,6,6,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,136.0,1,4,5,2,2,126.2,0,0,0,1,1,0,22,0,0,6,10,5,11.4,0,0,6,8,5,11.0,0,10.8,1.4,1.74,Graduate +1,44,1,9130,1,39,150.0,1,1,37,4,8,150.0,1,0,0,0,0,0,22,0,1,6,10,3,12.666666666666666,0,0,6,7,0,0.0,0,15.5,2.8,-4.06,Dropout +1,7,1,9085,1,3,140.0,1,19,20,4,90,140.0,1,0,0,1,0,0,32,0,0,5,8,1,14.0,2,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,43,1,9070,1,1,135.0,1,1,38,3,9,126.4,1,0,0,1,0,1,20,0,5,12,12,12,13.25,0,5,12,12,11,12.727272727272728,0,15.5,2.8,-4.06,Graduate +1,1,1,9500,1,1,140.0,1,19,38,7,8,129.9,0,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,133.1,1,1,1,9,9,155.0,0,0,0,1,0,1,21,0,0,6,7,5,13.0,0,0,6,6,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,5,9773,1,1,122.0,1,38,38,7,7,123.1,1,0,0,0,0,0,19,0,0,6,12,3,11.0,0,0,6,12,3,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,117.0,1,1,1,9,9,109.3,1,0,0,1,0,0,20,0,0,5,10,4,12.5,0,0,5,12,2,13.0,0,12.7,3.7,-1.7,Enrolled +1,1,2,9500,1,1,130.0,1,1,38,9,9,125.1,1,0,0,1,0,1,18,0,0,7,9,6,12.816666666666668,0,0,8,11,6,12.875,0,11.1,0.6,2.02,Enrolled +1,1,2,9773,1,1,144.0,1,3,3,3,2,140.2,1,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,145.0,1,1,1,4,10,145.0,0,0,0,1,0,0,18,0,0,7,7,6,13.861666666666666,0,0,8,16,0,0.0,1,12.4,0.5,1.79,Dropout +1,51,1,9070,1,1,143.0,1,1,1,4,4,120.0,1,0,0,1,0,0,21,0,3,10,10,10,13.0,0,5,11,11,10,11.4,0,11.1,0.6,2.02,Dropout +1,17,1,9773,1,1,145.0,1,1,38,90,8,132.8,1,0,0,0,1,0,21,0,0,6,10,2,12.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9556,1,1,120.0,1,38,38,191,193,120.0,0,0,1,1,0,1,24,0,0,7,13,7,11.0,0,0,8,13,7,11.7,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,148.0,1,19,1,7,5,138.3,1,0,0,1,1,0,19,0,0,5,6,4,13.75,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9500,1,1,146.0,1,3,3,3,6,133.4,1,0,0,1,0,0,18,0,0,7,8,7,12.5,0,0,8,9,7,13.042857142857144,0,13.9,-0.3,0.79,Graduate +1,17,1,9130,1,1,131.0,1,12,12,2,8,128.2,1,0,0,1,1,0,18,0,0,6,7,6,14.0,0,0,6,8,6,13.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,6,9556,1,1,115.0,1,19,2,5,3,112.2,1,0,0,1,0,0,20,0,0,7,7,7,13.785714285714286,0,0,8,8,8,14.1,0,12.4,0.5,1.79,Graduate +1,43,1,9556,1,1,126.0,1,2,3,3,2,100.0,0,0,0,1,0,0,25,0,2,7,10,3,13.0,0,1,8,10,3,11.666666666666666,4,10.8,1.4,1.74,Enrolled +1,17,1,9238,1,1,120.0,1,19,37,9,9,113.0,1,0,0,1,0,1,20,0,0,6,7,6,11.714285714285714,0,0,6,8,6,12.625,0,13.9,-0.3,0.79,Graduate +1,1,4,9500,1,1,132.0,1,19,38,5,5,118.0,1,0,0,1,0,0,18,0,0,8,8,7,12.328571428571427,0,0,8,8,7,12.328571428571427,0,12.7,3.7,-1.7,Graduate +2,1,1,9238,1,1,145.0,1,37,34,9,7,139.4,0,0,0,0,0,0,27,0,0,6,12,2,11.0,0,0,6,14,4,10.5,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,131.0,1,38,38,191,174,125.4,1,0,0,1,0,0,20,0,0,6,13,6,15.692307692307692,0,0,6,13,5,14.428571428571429,0,15.5,2.8,-4.06,Graduate +2,39,1,9119,1,1,120.0,1,37,38,9,10,145.4,0,0,1,1,1,0,40,0,0,5,11,3,10.666666666666666,0,0,5,5,2,12.5,0,16.2,0.3,-0.92,Dropout +1,1,1,9130,1,1,138.0,1,4,5,2,2,123.0,1,0,0,1,0,0,21,0,0,5,12,1,11.0,0,0,5,9,2,10.5,0,12.7,3.7,-1.7,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,1,0,20,0,0,6,12,3,11.5,0,0,6,12,3,13.666666666666666,0,12.4,0.5,1.79,Dropout +1,1,1,9773,1,1,127.0,1,5,3,4,4,122.8,1,0,0,1,1,0,20,0,0,6,7,6,12.166666666666666,0,0,6,9,3,12.0,0,12.4,0.5,1.79,Enrolled +1,1,3,9500,1,1,136.0,1,1,1,4,4,127.0,1,0,0,1,0,0,19,0,0,8,10,1,13.67,7,0,8,10,1,13.67,7,9.4,-0.8,-3.12,Enrolled +1,17,3,9119,1,1,115.0,1,3,1,3,3,116.1,1,0,0,0,1,0,18,0,0,5,8,5,12.5,0,0,5,7,5,13.571428571428571,0,12.4,0.5,1.79,Dropout +1,18,1,9500,1,1,143.0,1,38,37,4,9,116.5,1,0,0,1,0,1,20,0,0,7,10,7,12.625,0,0,8,8,8,13.0625,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,145.0,1,3,19,3,8,134.9,1,0,0,1,0,0,18,0,0,6,6,6,15.5,0,0,6,6,6,16.0,0,12.4,0.5,1.79,Graduate +1,44,1,9119,1,39,140.0,1,5,41,3,2,140.0,0,0,0,1,1,0,23,0,3,7,12,3,14.0,0,1,6,12,1,14.0,0,12.4,0.5,1.79,Enrolled +1,1,1,9147,1,1,124.0,1,19,19,9,3,115.6,1,0,0,0,1,0,20,0,0,5,9,3,12.0,1,0,5,7,3,11.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9500,1,3,130.0,1,19,38,5,3,130.0,0,0,0,1,0,0,23,0,0,8,8,8,13.22,0,0,8,8,8,13.22,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,137.0,1,1,1,4,10,124.8,1,0,0,1,1,1,19,0,0,7,11,6,12.4125,0,0,8,12,7,11.2625,0,15.5,2.8,-4.06,Graduate +1,17,4,9119,1,1,138.0,1,1,3,1,4,127.5,1,0,0,1,1,0,19,0,0,5,6,5,14.6,0,0,5,5,5,15.2,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,112.0,1,1,1,5,1,111.7,0,0,1,0,1,0,19,0,0,6,6,6,12.5,0,0,6,10,4,12.6,0,15.5,2.8,-4.06,Dropout +1,1,4,9500,1,1,147.0,1,1,1,4,9,124.5,1,0,0,1,0,1,19,0,0,8,11,7,12.86,0,0,8,11,7,12.86,0,10.8,1.4,1.74,Graduate +1,7,1,9500,1,3,140.0,1,3,19,2,6,140.0,0,0,0,1,1,0,27,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9853,1,1,121.0,1,19,19,7,7,113.0,1,0,0,1,0,0,21,0,0,6,9,5,12.4,0,0,6,11,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,2,8014,0,1,96.0,1,3,1,3,9,100.0,0,0,0,1,0,0,20,0,0,6,10,5,12.0,0,0,6,9,4,11.25,0,9.4,-0.8,-3.12,Enrolled +1,43,1,9991,0,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,37,0,7,14,21,12,11.833333333333334,0,11,12,15,11,11.363636363636363,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,152.0,1,1,38,4,5,144.7,0,0,0,1,0,0,20,0,0,6,8,6,14.5,0,0,6,7,6,15.428571428571429,0,16.2,0.3,-0.92,Graduate +2,1,1,9070,1,1,127.0,1,12,19,9,9,123.2,0,0,0,1,0,1,20,0,0,6,6,6,15.0,0,0,6,6,6,14.5,0,11.1,0.6,2.02,Graduate +1,1,3,9070,1,1,147.0,1,34,37,5,7,135.8,1,0,0,1,0,0,20,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,7,1,9119,1,4,180.0,1,4,3,2,7,180.0,0,0,1,1,1,0,30,0,0,5,6,4,14.5,0,0,5,10,3,16.2,0,13.9,-0.3,0.79,Enrolled +1,1,6,9500,1,1,129.0,1,37,19,9,7,127.8,1,0,0,1,0,0,19,0,0,8,10,6,13.78,1,0,8,10,6,13.78,1,9.4,-0.8,-3.12,Dropout +1,39,1,9500,1,1,100.0,1,37,37,7,7,160.0,1,0,0,1,0,1,24,0,0,8,15,6,12.415,0,0,8,15,6,12.415,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,127.0,1,19,1,5,5,117.6,1,0,0,1,0,0,18,0,0,6,6,0,0.0,0,0,6,10,3,11.0,0,16.2,0.3,-0.92,Enrolled +1,39,1,9003,1,1,110.0,1,1,1,9,4,120.0,0,0,1,0,1,0,27,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9773,1,1,143.0,11,19,19,4,9,133.9,1,0,0,1,1,1,18,1,0,6,7,6,13.5,0,0,6,7,6,13.0,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,160.0,1,37,37,7,7,156.1,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,14.166666666666666,0,13.9,-0.3,0.79,Graduate +1,43,2,9670,1,1,135.0,1,3,19,1,7,123.5,1,0,0,1,1,0,22,0,0,6,12,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,43,1,8014,0,1,130.0,1,38,3,132,122,100.0,0,0,0,1,1,0,54,0,9,13,14,13,13.307692307692308,0,7,11,12,11,12.818181818181818,0,12.7,3.7,-1.7,Enrolled +1,15,1,9238,1,1,150.0,26,19,1,9,9,146.5,1,0,1,0,1,0,22,1,0,6,10,5,11.5,0,0,6,8,5,12.4,0,13.9,-0.3,0.79,Graduate +1,17,6,9119,1,1,129.0,1,37,13,4,90,117.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9119,1,3,130.0,1,3,3,3,10,147.6,0,0,0,1,1,0,31,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,3,171,1,1,145.0,1,1,1,3,3,140.1,1,0,0,1,0,0,20,0,6,12,12,12,13.25,0,4,11,14,11,14.333333333333334,0,8.9,1.4,3.51,Graduate +1,43,3,9254,1,1,135.0,1,3,3,2,2,122.1,0,0,0,1,1,0,19,0,0,6,14,3,12.5,0,0,6,9,4,11.0,0,12.7,3.7,-1.7,Enrolled +1,17,1,171,1,1,140.0,41,1,1,5,7,146.3,1,0,0,1,0,1,18,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,2,9070,1,1,126.0,1,38,38,9,8,129.9,1,0,0,1,1,1,19,0,0,6,6,6,13.666666666666666,0,0,6,7,5,13.2,0,12.4,0.5,1.79,Graduate +1,7,1,9070,1,3,120.0,1,4,4,2,2,120.0,0,0,0,1,1,0,28,0,0,6,9,2,12.0,0,0,6,10,3,12.666666666666666,0,12.7,3.7,-1.7,Dropout +1,17,4,9070,1,1,144.0,1,38,1,9,9,137.4,1,0,0,1,1,0,19,0,0,6,6,6,13.833333333333334,0,0,6,8,6,13.125,0,10.8,1.4,1.74,Graduate +1,17,1,9773,1,1,125.0,1,3,3,2,3,118.0,1,0,0,1,1,0,19,0,0,6,12,4,10.8,0,0,6,14,3,11.0,0,13.9,-0.3,0.79,Dropout +5,39,1,9238,1,1,130.0,1,19,38,9,10,146.0,0,0,0,1,1,0,34,0,0,6,8,5,12.6,0,0,6,11,4,11.25,0,12.4,0.5,1.79,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,5,107.5,0,0,0,1,0,0,41,0,0,2,2,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9773,1,1,130.0,1,1,19,1,3,161.5,0,0,0,1,1,0,36,0,0,6,7,6,15.285714285714286,0,0,6,6,6,16.5,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,140.0,1,19,19,9,4,127.8,1,0,0,1,1,0,23,0,0,5,7,3,10.666666666666666,1,0,5,7,3,11.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,1,9670,1,1,113.0,1,1,37,1,10,116.5,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,10,6,11.77777777777778,0,8.9,1.4,3.51,Graduate +1,1,2,9238,1,1,145.0,1,1,19,4,8,121.4,0,0,0,1,0,0,20,0,0,6,13,0,0.0,0,0,5,11,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9003,1,19,133.1,1,19,37,9,10,120.0,0,0,1,1,0,0,37,0,0,6,10,6,12.875,0,0,6,12,6,12.9,0,16.2,0.3,-0.92,Enrolled +1,1,1,9085,1,1,150.0,1,12,2,4,2,144.6,0,0,1,0,0,0,24,0,0,5,6,1,13.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,7,1,9991,0,40,150.0,1,37,37,6,6,150.0,1,0,0,1,1,0,44,0,3,7,9,7,13.5,0,0,5,6,5,16.2,0,8.9,1.4,3.51,Dropout +1,17,5,9500,1,1,137.0,1,1,1,5,5,132.6,1,0,0,1,0,1,18,0,0,7,7,7,13.857142857142858,0,0,8,8,8,14.9,0,13.9,-0.3,0.79,Graduate +1,39,1,8014,0,1,133.1,1,3,19,4,7,119.0,0,0,0,1,1,0,39,0,3,9,10,9,13.22222222222222,0,2,7,8,7,13.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9500,1,1,128.0,1,1,1,4,5,124.7,0,0,0,1,1,1,19,0,0,7,11,6,12.528571428571428,0,0,7,10,6,12.416666666666666,0,15.5,2.8,-4.06,Enrolled +1,39,2,9670,1,19,133.1,1,34,34,0,0,100.0,1,0,0,0,1,0,27,0,0,5,8,1,11.0,0,0,5,6,3,10.666666666666666,1,7.6,2.6,0.32,Dropout +1,39,1,9556,1,1,120.0,1,19,19,4,5,122.8,0,0,0,1,0,0,26,0,0,7,12,6,12.166666666666666,0,0,8,8,8,11.675,0,13.9,-0.3,0.79,Dropout +1,1,2,171,1,1,165.0,1,3,3,2,2,163.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,133.8,1,3,37,2,10,184.0,0,0,0,1,0,0,28,0,0,7,9,7,17.005555555555556,0,1,8,9,8,16.582222222222224,0,15.5,2.8,-4.06,Graduate +2,39,1,9003,1,1,120.0,1,37,19,9,4,148.8,0,0,0,1,0,0,50,0,0,6,7,6,12.5,0,0,6,15,5,12.4,0,8.9,1.4,3.51,Graduate +1,1,5,9500,1,1,151.0,1,1,1,9,9,127.8,0,0,0,1,0,1,18,0,0,8,8,7,13.671428571428573,0,0,8,8,7,13.671428571428573,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,131.0,1,38,19,7,7,125.3,1,0,0,1,0,1,19,0,0,8,8,7,12.355714285714283,0,0,8,8,7,12.355714285714283,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,128.0,1,1,1,9,6,120.3,0,0,0,1,1,0,19,0,0,5,9,5,10.8,0,0,5,13,2,13.5,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,118.0,1,3,1,5,10,113.5,1,0,0,1,0,0,20,0,0,7,7,7,14.30714285714286,0,0,8,8,8,15.0125,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,140.0,1,37,37,7,9,126.8,1,0,0,0,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9085,1,1,117.0,1,38,37,9,9,113.5,1,0,0,1,0,1,21,0,0,5,7,4,12.0,0,0,5,5,5,12.2,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,135.0,1,19,19,9,9,122.8,1,0,0,1,1,1,20,0,0,6,8,3,11.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,151.0,1,37,37,9,7,147.5,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,171,1,1,138.0,1,1,3,4,4,147.5,1,0,0,1,0,1,19,0,6,12,12,12,13.666666666666666,0,4,11,12,11,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,128.0,1,38,37,9,9,124.9,0,0,0,1,0,1,19,0,0,6,6,6,12.5,0,0,6,6,6,12.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,5,9085,1,1,124.0,1,3,19,2,3,113.9,1,0,0,1,0,0,19,0,0,6,12,5,15.0,0,0,6,9,6,13.428571428571429,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,120.0,1,3,19,4,7,119.7,1,0,0,1,0,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,171,1,1,147.0,1,1,12,4,4,148.4,1,0,0,1,1,1,20,0,8,14,15,12,10.923076923076923,0,7,13,14,11,12.181818181818182,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,136.0,1,19,1,9,8,123.4,1,0,0,1,0,1,18,0,0,6,10,6,13.25,0,0,6,13,5,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9085,1,1,123.0,1,3,1,2,5,112.9,0,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,2,9556,1,1,133.1,1,3,1,2,4,136.1,0,0,0,1,1,0,26,0,0,7,7,2,11.75,0,0,5,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,171,1,1,141.0,1,3,1,4,4,142.8,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.4,0.5,1.79,Graduate +2,1,1,9003,1,1,120.0,1,37,37,9,9,120.5,1,0,1,1,1,0,35,0,14,17,17,14,10.642857142857142,1,12,12,12,12,10.666666666666666,0,15.5,2.8,-4.06,Dropout +1,44,1,9003,1,39,140.0,1,37,37,9,6,140.0,1,0,0,1,1,1,20,0,0,6,10,5,12.6,0,0,6,6,5,13.2,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,147.0,1,19,1,4,3,138.5,1,0,0,1,0,0,19,0,0,8,8,8,14.34125,0,0,8,8,8,14.34125,0,9.4,-0.8,-3.12,Graduate +1,1,2,9500,1,1,123.0,1,34,34,90,90,113.3,1,0,0,1,0,0,20,0,0,7,8,4,11.95,0,0,7,8,4,11.95,0,7.6,2.6,0.32,Dropout +1,1,1,171,1,1,137.0,1,1,38,4,5,130.4,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,7,7,134.0,0,0,0,1,1,1,40,0,0,6,7,6,12.333333333333334,0,0,6,10,4,12.75,0,8.9,1.4,3.51,Dropout +1,1,1,9085,1,1,120.0,1,38,38,4,7,111.6,1,0,0,1,0,0,19,0,0,6,12,5,14.0,0,0,6,14,5,11.0,0,16.2,0.3,-0.92,Graduate +1,1,1,9119,1,1,148.0,1,19,38,9,7,133.0,0,0,0,1,1,0,18,0,0,5,12,5,13.285714285714286,0,0,5,16,5,14.8,0,12.4,0.5,1.79,Dropout +1,1,1,9500,1,1,128.0,1,3,1,2,1,127.8,0,0,0,1,0,1,19,0,0,7,8,7,14.4125,0,0,8,8,8,16.05,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,172.0,1,38,37,9,9,149.3,0,0,0,1,1,1,24,0,0,5,5,5,16.0,0,0,5,5,5,16.0,0,8.9,1.4,3.51,Graduate +1,1,6,9500,1,1,138.0,1,37,37,9,8,127.2,1,0,0,1,0,1,18,0,0,7,8,7,13.26,0,0,8,8,8,14.28625,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,140.0,1,3,1,2,6,137.6,1,0,0,1,1,1,21,0,0,6,8,6,15.166666666666666,0,0,6,7,6,14.428571428571429,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,110.0,1,37,19,9,3,100.0,0,0,0,1,0,0,34,0,9,11,17,9,12.333333333333334,0,3,7,12,7,12.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,9670,1,1,141.0,1,2,1,2,4,140.7,1,0,0,1,1,0,20,0,0,5,5,5,12.6,0,0,5,6,4,14.5,1,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,137.0,1,3,38,3,5,129.3,1,0,0,1,0,0,18,0,0,5,6,5,11.8,1,0,5,8,5,11.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,136.0,1,38,38,0,7,133.2,1,0,0,1,0,0,19,0,0,6,8,5,11.0,0,0,6,13,5,11.4,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,145.0,6,34,34,0,0,134.5,1,0,0,1,1,0,25,1,8,14,23,11,11.6875,0,6,10,20,8,11.142857142857142,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,147.0,1,19,19,3,10,151.9,1,0,0,1,0,0,21,0,13,17,20,17,12.0,0,14,17,18,17,12.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,118.0,1,37,37,9,9,112.1,1,0,0,1,0,0,23,0,0,6,11,4,11.25,0,0,6,10,5,10.2,0,7.6,2.6,0.32,Dropout +1,43,1,9773,1,1,122.0,1,1,1,4,5,126.9,0,0,0,1,0,0,21,0,0,6,8,6,11.714285714285714,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,17,1,9670,1,1,126.0,1,12,38,9,5,122.2,0,0,0,1,0,1,19,0,0,6,6,6,13.666666666666666,0,0,6,9,6,13.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,143.0,1,3,3,2,2,129.0,0,0,0,1,1,0,18,0,0,8,8,7,13.105714285714283,0,0,8,8,7,13.105714285714283,0,10.8,1.4,1.74,Graduate +1,39,1,9556,1,1,130.0,1,19,38,9,8,113.3,0,0,0,1,0,0,24,0,0,7,15,5,12.4,0,0,8,14,7,12.15,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,101.0,1,1,37,4,9,98.9,1,0,0,1,0,0,21,0,0,6,12,4,12.5,0,0,6,13,2,12.666666666666666,0,11.1,0.6,2.02,Enrolled +2,39,1,8014,0,1,133.1,1,34,34,90,90,116.0,0,0,0,0,0,0,51,0,0,6,13,4,11.25,0,0,6,12,0,0.0,1,10.8,1.4,1.74,Dropout +2,39,1,9991,0,1,170.0,1,37,19,9,3,151.1,0,0,0,1,1,0,48,0,0,5,9,5,12.285714285714286,0,0,5,8,5,11.125,0,16.2,0.3,-0.92,Graduate +2,17,5,9119,1,1,126.0,1,37,38,4,4,122.9,1,0,0,1,1,0,21,0,0,5,10,4,13.2,0,0,5,7,4,14.25,2,7.6,2.6,0.32,Enrolled +1,1,2,9500,1,1,125.0,1,19,19,9,9,114.9,0,0,0,1,0,0,18,0,0,7,8,6,13.133333333333333,0,0,8,12,7,12.221428571428572,0,16.2,0.3,-0.92,Graduate +1,18,3,9773,1,1,128.0,1,19,1,9,9,122.1,1,0,0,1,1,0,19,0,0,6,9,4,12.5,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,1,9500,1,1,149.0,1,38,37,9,9,139.5,0,0,0,1,1,1,18,0,0,8,8,8,15.3,0,0,8,8,8,15.3,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,136.0,1,1,3,9,5,137.1,0,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9500,1,1,126.0,1,38,37,5,5,114.8,1,0,0,1,0,0,20,0,0,8,8,7,14.402857142857142,0,0,8,8,7,14.402857142857142,0,10.8,1.4,1.74,Graduate +2,39,1,9085,1,1,120.0,1,37,37,6,6,150.0,0,0,0,1,1,0,43,0,0,5,8,5,13.5,2,0,5,5,5,14.4,0,9.4,-0.8,-3.12,Graduate +1,17,1,9085,1,1,137.0,1,38,19,0,90,122.3,0,0,0,1,0,1,19,0,0,5,5,5,12.6,0,0,5,9,3,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9853,1,19,133.1,1,37,19,3,7,100.0,0,0,0,1,0,0,45,0,0,6,11,3,12.333333333333334,0,0,6,13,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,2,9500,1,1,145.0,1,4,2,2,3,127.3,1,0,0,1,1,0,18,0,0,8,8,7,11.69,0,0,8,8,7,11.69,0,10.8,1.4,1.74,Graduate +1,43,1,9773,1,1,129.0,1,1,1,4,8,129.0,0,0,0,0,0,0,21,0,0,6,7,6,12.0,0,0,6,6,6,12.0,0,10.8,1.4,1.74,Dropout +1,1,3,9500,1,1,143.0,1,1,1,4,4,129.0,1,0,0,1,1,0,18,0,0,8,8,7,12.365714285714288,0,0,8,8,7,12.365714285714288,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,136.0,1,19,38,9,9,119.3,1,0,0,1,0,1,18,0,0,8,8,7,13.214285714285714,0,0,8,8,7,13.214285714285714,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,151.6,0,0,0,1,0,0,24,0,0,5,9,5,12.285714285714286,0,0,5,8,5,12.125,0,16.2,0.3,-0.92,Enrolled +1,1,1,9238,1,1,108.0,1,19,38,9,9,107.3,0,1,0,1,0,1,19,0,0,6,12,4,10.4,0,0,6,11,4,10.75,0,12.4,0.5,1.79,Enrolled +1,1,1,9085,1,1,134.0,1,1,1,2,7,128.4,1,0,0,1,0,1,18,0,0,5,12,5,12.857142857142858,2,0,5,8,4,13.25,0,9.4,-0.8,-3.12,Graduate +1,42,1,9119,1,1,120.0,1,3,1,2,9,108.2,1,0,0,1,1,0,26,0,4,10,14,4,11.25,0,4,11,11,4,12.0,0,7.6,2.6,0.32,Dropout +1,16,2,9500,1,1,127.0,1,2,38,4,9,119.0,1,0,0,1,0,1,19,0,0,8,12,7,12.599999999999998,0,0,8,12,7,12.599999999999998,0,10.8,1.4,1.74,Graduate +1,1,1,9500,1,1,131.0,1,1,1,9,9,122.0,0,0,0,1,0,0,19,0,0,8,8,7,15.0,0,0,8,8,7,15.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9070,1,3,133.1,1,3,5,2,2,120.0,1,0,0,1,0,0,32,0,0,3,3,2,16.0,0,0,3,3,1,16.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,150.0,1,19,19,5,5,132.8,1,0,0,1,0,1,18,0,0,8,8,8,13.01125,0,0,8,8,8,13.01125,0,9.4,-0.8,-3.12,Graduate +1,18,2,9670,1,1,121.0,1,37,38,4,1,111.9,1,0,0,1,1,0,19,0,0,6,6,6,14.166666666666666,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,108.0,41,3,3,9,9,107.0,0,0,1,0,0,0,19,1,0,5,14,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9147,1,1,150.0,1,34,19,0,4,152.8,1,0,0,1,1,1,18,0,0,5,7,4,12.75,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +2,18,2,9238,1,1,140.0,1,37,37,9,10,120.4,0,0,1,0,0,0,39,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,44,1,9085,1,39,130.0,6,19,1,6,4,130.0,1,0,0,1,0,0,22,1,0,6,12,5,12.8,0,0,6,19,2,11.5,0,12.4,0.5,1.79,Enrolled +1,51,1,9119,1,1,136.0,1,1,19,3,5,133.6,1,0,0,1,1,0,20,0,4,9,12,9,13.454545454545457,0,2,7,9,6,13.875,0,11.1,0.6,2.02,Dropout +1,1,4,9773,1,1,155.0,1,3,19,1,4,149.8,1,0,0,1,0,1,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9070,1,1,124.0,1,19,38,4,0,117.6,1,0,0,1,1,0,20,0,0,6,9,6,10.666666666666666,1,0,6,6,5,11.2,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,9,100.0,0,0,0,1,1,0,34,0,0,7,15,6,11.333333333333334,0,0,7,16,4,12.6,0,16.2,0.3,-0.92,Enrolled +1,44,1,9238,1,1,140.0,1,1,1,5,5,143.4,0,0,0,1,0,1,21,0,3,6,6,6,14.833333333333334,0,2,6,7,6,12.571428571428571,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,120.0,1,1,19,7,7,111.3,0,0,0,1,1,1,18,0,0,5,10,4,10.8,0,0,5,10,4,11.75,0,15.5,2.8,-4.06,Enrolled +2,1,1,9556,1,1,144.0,1,19,19,193,144,139.8,0,0,1,1,1,0,24,0,0,7,7,7,12.271428571428572,0,0,8,10,7,13.657142857142857,0,10.8,1.4,1.74,Graduate +1,39,1,9085,1,1,110.0,1,1,1,5,5,160.0,1,0,1,1,0,0,30,0,0,6,7,6,16.428571428571427,0,0,6,7,6,16.666666666666668,0,13.9,-0.3,0.79,Dropout +2,39,1,9853,1,19,133.1,1,37,37,9,9,131.0,0,0,0,1,0,1,32,0,0,7,10,7,13.428571428571429,0,2,8,8,8,13.25,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,139.0,1,4,1,2,10,136.4,1,0,0,1,0,0,19,0,0,7,9,7,13.422222222222224,0,0,8,11,7,12.18888888888889,0,15.5,2.8,-4.06,Graduate +1,17,3,9085,1,1,134.0,1,37,38,9,9,120.4,1,0,0,1,0,0,20,0,0,5,13,3,11.333333333333334,2,0,5,8,5,12.6,0,9.4,-0.8,-3.12,Enrolled +1,1,1,171,1,1,148.0,1,3,2,4,2,131.6,1,0,0,1,0,0,21,0,6,12,12,8,13.875,0,4,11,13,9,12.7,1,8.9,1.4,3.51,Dropout +1,1,3,9500,1,1,145.0,1,19,37,7,7,141.5,1,0,0,1,0,1,18,0,0,8,8,8,13.05875,0,0,8,8,8,13.05875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9130,1,19,133.1,1,37,38,9,9,120.0,0,0,0,1,1,0,53,0,0,5,9,4,12.25,2,0,5,8,4,11.75,0,9.4,-0.8,-3.12,Graduate +1,1,3,9254,1,1,121.0,1,19,37,4,7,116.8,1,0,0,1,0,0,21,0,0,6,8,6,11.333333333333334,0,0,6,8,4,12.25,0,11.1,0.6,2.02,Graduate +1,1,3,9254,1,1,123.0,1,1,1,4,3,123.4,1,0,0,1,1,0,18,0,0,6,8,6,12.333333333333334,0,0,6,6,6,13.666666666666666,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,125.0,1,38,38,9,9,133.4,1,0,0,1,1,1,20,0,0,6,8,6,12.0,0,0,6,8,6,11.5,0,13.9,-0.3,0.79,Graduate +1,42,1,9500,1,1,124.0,1,19,19,4,9,124.0,0,0,0,1,0,0,23,0,0,8,8,8,12.88625,0,0,8,8,8,12.88625,0,9.4,-0.8,-3.12,Graduate +1,39,1,9500,1,40,130.0,1,37,37,9,7,130.0,0,0,0,1,0,0,27,0,3,8,12,7,12.457142857142856,0,3,8,12,7,12.457142857142856,0,12.7,3.7,-1.7,Enrolled +1,44,1,9085,1,39,140.0,1,3,38,2,9,140.0,1,0,0,1,0,0,21,0,7,12,18,8,12.25,0,4,12,27,8,12.2,0,12.4,0.5,1.79,Enrolled +1,1,1,9773,1,1,158.0,1,38,38,9,7,144.7,1,0,0,1,0,1,19,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,18,2,9238,1,1,121.0,1,19,1,4,3,121.4,1,0,0,1,0,1,19,0,0,6,8,4,10.75,0,0,6,11,5,11.5,0,15.5,2.8,-4.06,Graduate +1,39,1,9003,1,12,133.1,1,37,19,9,10,120.0,0,0,0,1,1,0,58,0,0,6,9,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,3,9500,1,1,122.0,1,3,1,4,3,114.8,1,0,0,1,0,1,19,0,0,7,11,4,12.65,0,0,7,9,5,11.1,0,12.4,0.5,1.79,Enrolled +4,43,1,9991,0,1,164.0,1,37,37,6,6,131.8,0,0,0,1,0,0,31,0,7,14,19,13,11.357142857142858,0,9,14,14,13,12.0,1,9.4,-0.8,-3.12,Graduate +1,1,3,9773,1,1,145.0,1,38,38,9,5,133.1,0,0,0,1,0,1,20,0,0,6,9,4,13.0,0,0,6,13,4,11.25,0,10.8,1.4,1.74,Graduate +4,39,1,9853,1,19,133.1,1,38,19,9,9,108.0,0,0,1,0,0,0,33,0,0,7,7,7,12.857142857142858,0,0,7,8,6,12.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,3,9070,1,1,131.0,1,38,37,5,5,120.2,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,5,11.4,0,15.5,2.8,-4.06,Enrolled +1,43,1,9238,1,1,130.0,1,38,37,9,7,133.2,0,0,0,1,0,0,20,0,5,9,15,9,11.666666666666666,0,2,7,8,7,11.714285714285714,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,112.0,1,1,1,3,3,106.4,1,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,6,4,10.5,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,125.0,1,1,38,144,181,123.3,0,0,0,1,0,1,19,0,0,6,8,6,11.5,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,125.0,1,3,2,2,1,119.1,1,0,0,1,0,0,22,0,0,6,13,2,12.0,0,0,6,14,1,10.0,0,9.4,-0.8,-3.12,Dropout +1,7,1,9853,1,3,140.0,1,34,34,0,0,140.0,1,0,0,0,0,0,24,0,0,6,12,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,171,1,1,135.0,1,1,19,3,9,137.1,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9991,0,3,120.0,1,37,37,6,7,120.0,0,0,1,0,1,0,46,0,0,5,5,0,0.0,0,0,5,5,1,10.0,0,11.1,0.6,2.02,Dropout +1,1,2,9500,1,1,130.0,1,1,1,4,3,125.1,1,0,0,1,0,0,18,0,0,7,10,7,13.78,0,0,8,10,8,13.661,0,15.5,2.8,-4.06,Graduate +2,39,1,33,1,1,120.0,1,38,1,9,5,153.8,0,0,1,1,1,0,35,0,0,7,9,0,0.0,0,0,7,8,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,8014,0,1,150.0,1,37,37,9,9,140.0,0,0,0,0,1,0,35,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,127.0,1,1,38,9,7,120.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.428571428571429,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,43,180.0,1,19,19,9,4,180.0,0,0,0,1,0,0,37,0,12,14,14,14,16.5,0,8,11,11,11,16.90909090909091,0,8.9,1.4,3.51,Graduate +1,1,3,9147,1,1,143.0,1,1,1,5,7,133.2,1,0,0,1,0,1,18,0,0,5,11,4,14.25,0,0,5,7,4,12.5,0,12.7,3.7,-1.7,Graduate +1,15,1,9853,1,1,133.1,41,43,1,153,135,128.2,0,0,0,1,0,0,23,1,11,16,17,16,14.625,0,6,10,12,9,14.88888888888889,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,12,133.1,1,1,1,9,4,140.0,1,0,1,0,1,0,24,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,151.0,1,1,38,4,7,137.0,1,0,0,1,1,0,18,0,0,5,5,5,13.4,0,0,5,5,5,15.0,0,8.9,1.4,3.51,Graduate +1,17,4,171,1,1,172.0,1,3,1,2,10,155.6,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,43,1,9147,1,1,129.0,1,19,1,9,5,112.0,0,0,0,1,1,0,22,0,5,9,9,5,11.2,0,5,9,14,7,11.25,2,12.7,3.7,-1.7,Dropout +1,39,1,9500,1,1,150.0,1,38,3,9,1,140.0,0,0,0,1,1,0,24,0,0,7,11,7,11.294444444444444,0,0,8,22,2,12.6,0,15.5,2.8,-4.06,Graduate +1,1,1,9773,1,1,124.0,17,1,1,3,5,118.1,1,0,1,0,0,0,19,1,0,6,8,5,12.2,0,0,6,6,4,11.75,0,16.2,0.3,-0.92,Dropout +1,17,1,9670,1,1,124.0,1,37,19,5,8,114.2,1,0,1,1,0,0,18,0,0,6,6,5,11.8,0,0,6,9,4,13.714285714285714,0,10.8,1.4,1.74,Dropout +1,1,1,9670,1,1,122.0,1,1,19,3,5,116.8,1,0,0,1,0,0,21,0,0,5,8,4,11.5,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,144.0,1,38,1,9,10,137.4,0,0,0,1,0,0,19,0,0,7,7,7,13.542857142857144,0,0,8,9,8,14.22222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9238,1,1,128.0,1,19,19,9,9,120.0,0,0,0,1,0,1,18,0,0,6,8,6,13.5,0,0,6,9,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,138.0,1,38,38,7,6,124.7,1,0,0,1,0,0,18,0,0,6,11,3,12.333333333333334,0,0,6,10,5,10.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,18,2,9147,1,1,132.0,1,3,3,5,7,119.1,1,0,1,0,0,0,20,0,0,5,9,3,10.0,0,0,5,9,3,10.571428571428571,0,10.8,1.4,1.74,Dropout +1,17,6,9119,1,1,111.0,1,19,3,5,10,106.5,1,0,0,1,1,0,19,0,0,5,10,3,10.5,0,0,5,11,3,10.8,0,12.4,0.5,1.79,Dropout +1,7,1,9500,1,3,140.0,1,34,34,0,0,140.0,0,0,0,1,0,0,28,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,1,140.0,1,37,37,9,9,130.0,1,0,0,1,1,0,30,0,6,10,14,9,12.333333333333334,0,7,10,12,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9254,1,1,125.0,1,37,37,3,3,124.0,0,0,0,1,1,1,19,0,0,6,7,6,11.0,0,0,6,6,5,12.2,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,128.0,1,19,2,7,3,126.3,1,0,0,1,0,0,19,0,0,6,6,6,13.166666666666666,0,0,6,6,6,12.666666666666666,0,15.5,2.8,-4.06,Graduate +2,39,1,9500,1,1,110.0,1,37,37,9,6,114.3,0,0,0,1,0,0,41,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,42,1,9085,1,1,133.1,1,1,9,4,4,128.2,0,0,0,1,0,0,24,0,5,11,29,9,12.0,6,4,10,21,9,12.555555555555555,0,9.4,-0.8,-3.12,Graduate +1,1,3,9238,1,1,126.0,1,38,19,5,8,120.8,1,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,121.0,1,1,1,9,8,118.9,1,0,0,1,0,1,19,0,0,6,8,5,11.666666666666666,0,0,6,9,5,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,43,1,9238,1,1,109.0,1,19,37,5,5,108.3,0,0,0,1,0,1,21,0,0,6,15,2,10.5,0,0,6,8,5,12.4,0,10.8,1.4,1.74,Enrolled +1,1,4,9670,1,1,127.0,1,1,1,7,7,116.5,1,0,0,1,0,0,20,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,171,1,19,133.1,101,1,19,2,7,110.0,0,0,0,1,1,1,25,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,133.0,1,37,37,9,7,124.6,1,0,0,1,0,1,18,0,0,6,8,5,13.0,0,0,6,9,5,13.5,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,39,137.0,1,1,1,5,10,124.5,0,0,0,0,1,0,26,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9670,1,1,130.0,1,19,19,7,7,121.6,0,0,0,1,0,0,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.833333333333334,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,130.0,1,37,37,6,5,113.5,1,0,0,1,0,0,36,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9670,1,1,120.0,1,38,38,5,7,115.1,1,0,0,1,0,0,19,0,0,6,7,6,14.571428571428571,0,0,6,7,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,3,9773,1,1,115.0,1,38,1,9,4,116.1,1,0,0,1,1,0,19,0,0,6,6,6,12.5,0,0,6,7,5,13.0,0,12.4,0.5,1.79,Graduate +1,39,1,9991,0,1,130.0,1,37,37,9,9,130.1,0,0,0,1,0,0,25,0,0,5,8,3,11.0,0,0,5,8,3,11.25,0,10.8,1.4,1.74,Enrolled +1,1,3,9238,1,1,133.1,1,1,1,9,9,100.0,1,0,0,1,1,0,22,0,0,6,6,4,11.25,0,0,6,7,3,11.0,0,8.9,1.4,3.51,Enrolled +2,39,1,9991,0,1,133.1,1,37,37,9,9,168.0,0,0,0,1,1,0,29,0,0,5,5,5,15.2,0,0,5,5,5,15.2,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,148.0,1,1,1,9,9,141.7,0,0,0,0,1,0,18,0,0,6,8,5,11.6,0,0,6,11,4,13.0,0,8.9,1.4,3.51,Dropout +1,15,1,33,1,1,133.1,41,2,3,2,4,100.0,0,0,0,1,1,0,20,1,0,7,10,7,12.857142857142858,0,0,7,7,4,12.75,0,8.9,1.4,3.51,Enrolled +1,17,3,9147,1,1,135.0,1,37,37,6,5,121.0,1,0,0,1,1,1,18,0,0,5,8,5,12.75,0,0,5,7,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,151.0,1,3,3,1,90,161.9,0,0,0,1,0,0,18,0,0,5,6,4,13.75,0,0,5,8,5,14.857142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9500,1,1,120.0,1,37,37,9,8,108.5,0,0,0,1,1,0,36,0,0,7,18,0,0.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9670,1,1,130.0,1,26,30,0,5,128.6,1,0,1,1,0,0,19,0,0,5,8,4,12.25,0,0,5,7,4,12.75,2,7.6,2.6,0.32,Graduate +1,43,1,9500,1,1,140.0,100,1,1,6,6,128.2,0,0,0,1,0,0,39,1,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,44,1,9085,1,39,140.0,1,19,37,5,7,140.0,1,0,0,1,1,0,19,0,2,6,10,4,12.5,0,1,6,16,2,12.0,0,12.4,0.5,1.79,Dropout +1,39,1,33,1,1,140.0,1,3,1,2,4,152.8,0,0,0,1,0,0,26,0,0,7,9,7,14.75,0,0,7,12,5,13.8,3,16.2,0.3,-0.92,Enrolled +1,43,1,9070,1,1,117.0,1,1,1,4,7,112.5,1,0,0,1,1,0,19,0,3,6,7,3,11.666666666666666,0,1,6,13,4,10.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,126.0,1,37,19,7,7,125.7,0,0,0,1,0,0,20,0,0,6,9,6,13.571428571428571,0,0,6,10,5,13.6,0,15.5,2.8,-4.06,Enrolled +1,1,2,9773,1,1,140.0,1,38,38,5,7,126.4,1,0,0,1,1,1,18,0,0,6,8,6,12.666666666666666,0,0,6,6,6,13.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,121.0,1,37,38,6,9,121.0,0,0,0,1,0,0,19,0,0,5,9,4,13.75,1,0,5,8,4,14.5,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,136.0,1,12,1,4,4,122.0,1,0,0,1,0,0,18,0,0,6,8,6,11.333333333333334,0,0,6,11,6,10.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,117.0,1,37,37,9,9,120.2,1,0,0,1,0,0,20,0,0,5,9,2,10.0,0,0,5,10,2,11.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9254,1,1,133.1,1,38,1,9,9,121.0,0,0,1,0,1,0,21,0,0,6,9,5,11.833333333333334,0,0,6,8,5,10.0,0,8.9,1.4,3.51,Dropout +1,44,1,9991,0,39,130.0,1,37,37,5,5,130.0,1,0,0,1,1,0,32,0,2,6,9,4,12.5,0,3,7,7,4,11.0,0,9.4,-0.8,-3.12,Dropout +1,17,1,9085,1,1,138.0,1,1,19,4,9,142.2,1,0,0,1,0,0,18,0,0,5,7,5,13.8,0,0,5,5,5,12.6,0,10.8,1.4,1.74,Graduate +1,1,1,9070,1,1,148.0,1,3,1,2,10,148.0,1,0,0,1,0,0,20,0,7,12,12,10,14.7,0,8,12,12,12,14.583333333333334,0,15.5,2.8,-4.06,Graduate +1,17,6,9556,1,1,134.0,1,19,38,7,7,128.5,1,0,0,1,0,1,18,0,0,7,9,7,14.1,0,0,8,8,8,13.3125,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,141.0,1,1,19,5,8,141.4,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,149.0,1,3,1,9,9,137.5,0,0,0,1,1,0,19,0,0,8,8,7,13.828571428571427,0,0,8,8,7,13.828571428571427,0,12.7,3.7,-1.7,Graduate +1,1,3,9085,1,1,142.0,1,11,11,90,90,155.3,0,0,0,1,0,0,19,0,0,5,5,5,15.2,0,0,5,6,5,13.2,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,135.0,1,19,37,9,9,134.0,1,0,0,1,0,1,22,0,0,6,10,5,10.8,0,0,6,7,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,132.0,1,19,38,9,7,120.1,0,0,0,1,0,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,3,9147,1,1,133.0,1,37,37,9,5,119.7,1,0,0,1,1,0,19,0,0,5,8,5,13.25,0,0,5,6,5,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,139.0,1,3,4,2,2,130.6,0,0,0,1,0,0,18,0,0,5,12,5,12.8,2,0,5,10,5,11.857142857142858,1,9.4,-0.8,-3.12,Graduate +1,44,1,9003,1,39,130.0,1,1,3,9,2,130.0,1,0,1,0,1,0,23,0,0,6,12,2,11.333333333333334,0,0,6,8,2,13.0,0,13.9,-0.3,0.79,Dropout +1,17,3,9500,1,1,138.0,1,3,3,4,5,130.0,1,0,0,1,0,0,18,0,0,7,8,7,14.85,0,0,8,8,8,15.2,0,13.9,-0.3,0.79,Dropout +1,1,2,9070,1,1,121.0,1,19,19,3,3,116.1,1,0,0,1,0,0,22,0,0,6,7,6,11.666666666666666,0,0,6,7,5,13.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9070,1,1,160.0,1,3,38,1,9,152.0,1,0,0,0,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9070,1,1,130.0,41,37,19,9,8,125.5,1,0,0,1,0,1,19,1,0,6,6,6,14.166666666666666,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,133.1,1,38,38,191,193,146.0,0,0,1,1,0,1,19,0,0,6,6,6,12.666666666666666,0,0,6,7,6,13.0,0,8.9,1.4,3.51,Graduate +4,39,1,9003,1,1,140.0,1,37,37,9,8,150.0,0,0,0,1,1,0,28,0,0,6,12,5,12.0,0,0,6,10,6,12.333333333333334,0,11.1,0.6,2.02,Enrolled +1,17,2,9670,1,1,132.0,1,1,19,5,3,124.0,1,0,0,1,1,0,21,0,0,5,7,3,12.333333333333334,0,0,5,5,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,1,9147,1,1,117.0,1,19,19,5,7,118.4,0,0,0,1,1,0,20,0,0,5,8,5,10.0,0,0,5,10,2,12.0,0,7.6,2.6,0.32,Enrolled +1,1,1,9085,1,1,140.0,6,1,19,4,7,131.6,1,0,0,1,0,0,20,1,0,7,9,6,14.714285714285714,0,1,7,16,6,13.2,0,12.4,0.5,1.79,Enrolled +1,43,1,9670,1,1,142.0,1,38,1,8,10,138.5,1,0,0,1,1,0,18,0,0,6,16,5,13.8,0,0,6,7,5,12.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9130,1,1,132.0,1,3,1,4,9,121.9,1,0,0,1,0,0,18,0,0,6,8,6,14.5,0,0,6,9,6,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,2,9670,1,1,122.0,1,1,1,9,9,116.1,1,0,0,1,1,1,18,0,0,5,6,4,12.25,0,0,5,5,5,12.2,0,9.4,-0.8,-3.12,Dropout +1,7,1,8014,0,3,130.0,1,37,38,0,5,130.0,0,0,0,0,0,0,28,0,0,6,12,1,11.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,6,9500,1,1,138.0,1,19,19,9,5,124.8,1,0,0,1,0,0,18,0,0,8,8,7,13.414285714285716,0,0,8,8,7,13.414285714285716,0,12.7,3.7,-1.7,Dropout +1,44,1,9003,1,39,140.0,1,19,38,3,9,140.0,1,0,0,1,1,0,21,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +4,39,1,8014,0,1,138.0,1,19,19,90,90,127.0,0,0,0,0,0,0,37,0,0,4,4,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9500,1,19,133.1,1,1,3,2,2,100.0,0,0,1,1,1,0,24,0,0,7,21,0,0.0,3,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,117.0,1,3,1,3,5,110.7,1,0,0,1,1,0,20,0,0,6,10,5,14.0,0,0,6,10,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,1,9670,1,1,120.0,1,19,19,5,5,113.0,1,0,0,1,0,0,20,0,0,5,7,4,12.2,0,0,5,5,4,11.5,0,7.6,2.6,0.32,Graduate +1,1,4,9500,1,1,160.0,1,37,37,7,7,133.0,1,0,0,1,1,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,6,9500,1,1,137.0,1,1,1,4,5,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.42375,0,0,8,8,8,13.42375,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,127.0,1,19,37,9,7,123.9,1,0,0,1,0,1,18,0,0,7,9,7,12.855555555555554,0,0,8,12,7,12.761111111111113,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,130.0,1,38,38,9,5,130.0,0,0,1,0,1,0,20,0,0,6,16,4,11.8,0,0,6,15,2,12.0,0,16.2,0.3,-0.92,Dropout +1,1,4,9500,1,1,137.0,1,19,37,9,7,130.8,0,0,1,1,0,0,18,0,0,8,9,8,14.4025,1,0,8,9,8,14.4025,1,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,38,37,4,6,150.0,1,0,0,1,0,1,22,0,3,6,11,6,13.142857142857142,0,2,6,10,3,12.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9773,1,1,115.0,1,34,38,0,5,108.4,1,0,0,1,0,0,20,0,0,6,10,4,10.5,0,0,6,8,4,11.75,0,7.6,2.6,0.32,Graduate +1,53,1,9003,1,42,140.0,1,3,38,141,151,135.3,0,0,0,1,1,0,21,0,7,12,18,11,12.090909090909092,0,5,12,14,11,12.0,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,1,148.0,1,19,19,7,7,130.9,0,0,1,0,1,0,24,0,0,6,12,0,0.0,0,0,6,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,127.0,1,1,1,4,3,126.3,1,0,1,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,2,9670,1,1,100.0,1,37,37,9,9,100.0,0,0,0,1,0,0,35,0,0,5,8,5,11.4,0,0,5,7,3,12.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,2,171,1,1,141.0,1,19,37,9,9,136.1,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,123.0,1,30,19,4,90,122.3,0,0,0,1,0,0,18,0,0,5,6,5,14.2,0,0,5,7,5,11.8,0,7.6,2.6,0.32,Graduate +1,1,1,9070,1,1,145.0,1,1,38,5,7,127.5,1,0,0,1,1,0,20,0,0,6,6,4,12.0,0,0,6,8,2,11.333333333333334,0,10.8,1.4,1.74,Enrolled +2,39,1,9085,1,1,150.0,1,37,37,90,10,112.0,0,0,0,1,1,0,34,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9773,1,1,128.0,1,37,1,9,7,124.2,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,13.142857142857142,0,15.5,2.8,-4.06,Dropout +1,43,1,9070,1,39,130.0,1,19,37,5,9,124.0,1,0,0,1,0,1,21,0,4,12,12,12,13.333333333333334,0,5,12,12,11,12.545454545454543,0,15.5,2.8,-4.06,Graduate +1,17,1,9003,1,1,170.0,1,1,4,9,5,144.1,1,0,1,0,1,0,26,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9670,1,1,110.0,1,19,19,90,99,107.2,0,0,0,1,1,0,42,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +2,39,1,9238,1,19,133.1,1,37,37,9,9,130.0,1,0,0,1,0,0,31,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,42,1,9119,1,1,144.0,1,34,34,0,0,119.5,0,0,0,1,1,0,18,0,0,5,6,1,10.0,0,0,5,7,1,12.0,0,10.8,1.4,1.74,Dropout +2,39,1,9773,1,19,133.1,1,37,37,6,6,162.0,0,0,1,1,1,1,49,0,0,6,8,6,12.285714285714286,0,0,6,7,6,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,16,1,9085,1,1,138.0,1,37,37,9,9,123.0,1,0,0,1,0,1,20,0,0,6,7,6,15.857142857142858,0,0,6,6,6,16.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9500,1,1,133.1,1,19,19,5,6,121.4,0,0,1,1,0,0,28,0,0,7,12,4,13.375,0,0,7,7,5,13.5,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,138.0,1,1,1,4,7,132.1,1,0,0,1,0,0,19,0,0,5,9,4,13.75,0,0,5,13,4,14.333333333333334,2,10.8,1.4,1.74,Graduate +1,39,1,9119,1,1,133.1,1,37,37,9,9,101.6,0,0,0,1,1,1,30,0,0,5,11,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9500,1,1,126.0,1,1,19,131,181,120.1,1,0,0,1,0,0,19,0,0,7,12,4,13.375,0,0,7,8,6,12.116666666666667,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,38,9,9,142.0,1,0,0,1,0,0,18,0,0,7,7,6,14.65,0,0,7,7,6,14.65,0,7.6,2.6,0.32,Graduate +1,18,1,8014,0,1,138.0,1,19,1,9,5,134.5,1,0,0,1,0,0,19,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.375,0,12.4,0.5,1.79,Graduate +1,44,1,9130,1,39,130.0,1,38,19,9,9,150.0,0,0,0,1,1,0,24,0,2,6,8,4,11.75,0,1,6,8,2,13.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,126.0,1,38,37,9,9,123.6,1,0,0,1,0,0,21,0,0,5,10,3,11.666666666666666,0,0,5,5,5,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9254,1,19,133.1,1,19,19,3,1,101.5,0,0,1,0,1,0,34,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,2,9119,1,1,115.0,1,38,19,9,6,112.2,1,0,1,1,1,0,18,0,0,5,9,2,10.0,0,0,5,9,0,0.0,0,15.5,2.8,-4.06,Enrolled +2,39,1,9003,1,1,120.0,1,37,37,9,9,125.7,0,0,1,0,0,0,43,0,0,6,10,4,12.25,0,0,6,13,4,10.5,0,8.9,1.4,3.51,Dropout +1,17,2,9773,1,1,115.0,1,1,1,5,5,119.6,1,0,0,1,0,1,22,0,0,6,11,5,12.0,0,0,6,11,5,11.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,19,9,4,140.0,0,0,0,1,0,0,21,0,0,6,12,3,10.666666666666666,2,0,6,12,4,12.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,125.0,1,37,19,90,90,137.3,0,0,0,1,1,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9147,1,1,120.0,1,3,38,3,7,124.2,1,0,0,1,1,0,18,0,0,5,13,5,12.0,0,0,5,9,4,11.4,0,13.9,-0.3,0.79,Enrolled +1,1,1,9147,1,1,146.0,1,5,1,1,5,144.6,0,0,0,1,1,0,18,0,0,5,5,5,13.0,0,0,5,6,5,13.333333333333334,0,16.2,0.3,-0.92,Graduate +1,1,4,9147,1,1,116.0,1,1,1,3,4,113.6,1,0,0,1,0,1,22,0,0,5,6,3,14.0,0,0,5,8,5,12.4,0,11.1,0.6,2.02,Graduate +4,42,1,9147,1,1,133.1,1,37,38,7,3,123.0,1,0,0,1,1,0,33,0,0,5,5,1,10.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,43,4,9500,1,6,118.9,1,38,37,5,9,118.9,1,0,0,1,0,1,19,0,0,7,7,6,13.55,0,0,7,7,6,13.55,0,7.6,2.6,0.32,Graduate +1,1,1,9670,1,1,123.0,1,12,1,9,9,119.2,1,0,0,1,0,1,18,0,0,6,8,5,13.5,0,0,6,6,6,14.5,0,12.4,0.5,1.79,Graduate +1,7,1,9500,1,2,140.0,1,38,37,7,8,140.0,0,0,0,1,0,0,29,0,0,8,14,4,11.325,1,0,8,14,4,11.325,1,12.7,3.7,-1.7,Dropout +1,39,1,9119,1,1,110.0,1,37,37,90,90,108.4,1,0,0,1,0,0,34,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,18,1,9119,1,1,146.0,1,1,37,7,7,132.4,1,0,0,1,1,0,18,0,0,5,5,1,16.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,39,1,9130,1,19,133.1,1,19,3,9,2,140.0,1,0,1,1,1,0,24,0,0,6,13,5,13.142857142857142,0,0,6,15,3,12.666666666666666,0,16.2,0.3,-0.92,Dropout +1,18,2,9853,1,1,111.0,1,38,38,191,171,105.8,1,0,0,1,0,0,19,0,0,7,7,7,13.142857142857142,0,0,7,8,7,12.857142857142858,0,8.9,1.4,3.51,Graduate +2,39,1,9991,0,1,140.0,1,37,37,9,6,130.2,0,0,0,1,0,1,39,0,0,5,13,4,12.333333333333334,0,0,5,14,2,10.0,4,16.2,0.3,-0.92,Graduate +1,1,5,9500,1,1,130.0,1,1,3,9,10,118.1,1,0,0,1,1,0,18,0,0,7,10,6,12.035714285714286,0,0,8,9,7,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9254,1,1,118.0,1,1,19,5,4,118.0,0,0,0,1,0,1,19,0,0,6,7,5,11.0,0,0,6,7,5,12.8,0,12.4,0.5,1.79,Graduate +1,17,1,9238,1,1,153.0,1,38,38,7,7,159.7,1,0,0,1,0,1,18,0,0,6,7,6,15.142857142857142,0,0,6,6,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +2,39,1,171,1,12,110.0,1,37,37,7,7,106.0,1,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,134.0,1,19,1,9,4,124.9,1,0,0,1,0,0,19,0,0,6,11,3,12.0,0,0,6,11,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,3,9254,1,1,121.0,1,19,19,9,9,125.9,1,0,0,1,0,0,22,0,0,6,10,4,10.0,0,0,6,12,2,13.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,160.0,1,19,19,4,9,154.4,0,0,0,1,0,1,18,0,0,7,9,7,15.116666666666667,0,0,8,9,8,16.168888888888887,0,15.5,2.8,-4.06,Graduate +2,39,1,9991,0,3,140.0,1,19,19,9,7,152.4,0,0,0,1,0,0,26,0,0,5,5,5,12.0,0,0,5,6,5,14.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,1,9130,1,1,130.0,1,19,1,191,144,110.0,0,0,0,1,1,0,24,0,0,6,11,6,11.333333333333334,0,0,6,12,3,11.333333333333334,0,16.2,0.3,-0.92,Enrolled +1,1,4,9500,1,1,142.0,1,38,37,9,5,127.3,1,0,0,1,0,0,18,0,0,8,8,7,15.075714285714286,0,0,8,8,7,15.075714285714286,0,10.8,1.4,1.74,Graduate +4,39,1,9500,1,1,133.1,1,37,37,9,9,130.0,0,0,1,1,0,0,38,0,0,7,13,3,11.833333333333334,0,0,7,14,2,10.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9070,1,1,124.0,1,37,19,9,4,121.2,0,0,0,1,1,1,20,0,1,6,7,6,13.5,0,1,6,9,5,12.5,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,120.0,1,19,19,9,3,113.9,1,0,0,1,0,0,39,0,0,5,8,5,11.0,0,0,5,5,5,11.6,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,114.0,1,19,38,5,3,112.6,1,0,0,1,0,0,19,0,0,7,10,6,11.85,0,0,8,10,7,13.65,0,16.2,0.3,-0.92,Graduate +1,7,1,9991,0,40,120.0,1,1,19,4,9,120.0,0,0,0,1,0,0,24,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9254,1,1,128.0,1,19,38,9,9,118.2,0,0,0,1,0,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,4,9070,1,1,126.0,1,1,19,4,5,120.4,1,0,0,1,0,0,18,0,0,6,8,5,11.8,0,0,6,7,5,10.4,1,16.2,0.3,-0.92,Graduate +1,1,1,9670,1,1,130.0,1,1,1,0,0,119.5,0,0,0,0,1,0,19,0,0,5,5,0,0.0,0,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,184.4,22,2,19,2,8,184.4,0,0,0,1,0,0,18,1,0,6,8,6,15.0,0,0,6,10,5,14.333333333333334,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,37,9,9,132.8,0,0,1,0,1,0,45,0,0,5,9,0,0.0,0,0,5,11,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9085,1,1,120.0,1,38,19,90,90,127.0,0,0,0,1,0,0,19,0,0,5,7,3,12.0,0,0,5,7,5,13.2,0,7.6,2.6,0.32,Graduate +1,17,4,9147,1,1,132.0,1,38,19,5,5,120.8,1,0,0,1,1,1,18,0,0,5,8,4,10.8,0,0,5,10,2,12.5,0,11.1,0.6,2.02,Dropout +1,10,1,9670,1,1,148.9,22,37,37,9,9,148.9,0,0,0,1,0,0,20,1,0,5,6,5,11.6,0,0,5,6,4,11.5,0,9.4,-0.8,-3.12,Graduate +1,7,1,9003,1,4,150.0,1,1,1,4,6,150.0,0,0,0,1,1,0,28,0,0,6,14,6,14.875,0,0,6,12,6,15.8,0,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,150.0,1,19,1,9,3,110.0,1,0,0,1,1,1,33,0,6,14,20,14,13.072857142857144,6,6,14,20,14,13.072857142857144,6,9.4,-0.8,-3.12,Graduate +1,15,1,9670,1,1,130.0,26,42,1,2,7,130.0,0,1,1,1,0,0,20,1,0,6,6,6,13.5,0,0,6,9,5,13.0,0,8.9,1.4,3.51,Graduate +2,7,1,8014,0,3,120.0,1,38,1,9,9,120.0,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,171,1,1,149.0,1,19,37,9,9,158.1,1,0,0,1,1,1,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,4,9147,1,1,124.0,1,37,37,9,9,117.4,0,0,0,1,0,0,19,0,3,10,15,5,11.8,0,4,10,14,8,12.0,0,7.6,2.6,0.32,Graduate +1,1,3,9773,1,1,142.0,1,34,1,5,10,136.1,1,0,0,0,1,0,19,0,0,4,8,0,0.0,1,0,6,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +2,1,1,8014,0,1,165.0,1,37,37,0,0,162.9,1,0,0,1,1,0,45,0,0,6,7,6,13.666666666666666,0,0,6,6,6,13.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,2,9254,1,1,130.0,1,37,37,5,7,123.4,1,0,0,1,1,0,30,0,0,6,17,2,10.0,0,0,6,15,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +4,39,1,8014,0,1,133.1,1,37,37,7,7,143.0,0,0,0,1,1,0,37,0,3,9,13,8,12.0,0,2,7,8,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,3,9238,1,1,121.0,1,38,37,8,8,115.4,1,0,0,1,0,1,19,0,0,6,7,6,11.714285714285714,0,0,6,6,6,11.833333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9556,1,3,140.0,1,3,3,2,2,140.0,0,0,1,0,1,0,38,0,0,7,8,3,12.666666666666666,0,0,5,5,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,116.0,1,38,19,0,2,116.7,1,0,0,1,1,0,21,0,0,5,8,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,3,9070,1,1,132.0,1,38,1,5,5,124.3,0,1,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9853,1,1,133.1,1,38,12,7,0,111.5,0,0,0,0,0,1,20,0,0,6,10,4,12.0,0,0,6,14,3,10.0,0,7.6,2.6,0.32,Dropout +1,53,1,9147,1,42,140.0,1,1,1,6,6,142.2,0,0,0,1,1,1,21,0,6,11,11,11,12.636363636363637,0,3,9,11,9,12.6,0,8.9,1.4,3.51,Graduate +2,44,1,9991,0,39,140.0,1,37,37,9,9,140.0,0,0,0,1,0,0,41,0,2,6,10,4,12.25,0,3,7,9,6,12.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9773,1,1,170.0,1,1,19,9,7,155.0,0,0,0,1,1,1,18,0,0,6,6,6,15.5,0,0,6,6,6,14.166666666666666,0,11.1,0.6,2.02,Graduate +2,39,1,8014,0,19,133.1,1,37,37,4,8,112.5,0,0,0,1,0,0,32,0,0,6,8,5,13.8,0,0,6,7,6,12.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,43,1,9500,1,1,120.0,1,1,1,5,8,112.0,1,0,0,1,0,1,19,0,0,8,15,7,11.571428571428571,0,0,8,15,7,11.571428571428571,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,123.0,1,1,1,3,3,113.6,1,0,0,1,0,0,21,0,0,7,8,7,14.69625,0,0,8,9,8,14.622222222222224,0,12.4,0.5,1.79,Graduate +1,39,1,9085,1,1,133.1,1,1,19,9,9,162.3,1,0,0,1,0,0,24,0,0,6,10,2,11.0,0,0,6,6,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,1,9773,1,1,116.0,1,37,1,9,8,115.7,1,0,1,0,0,0,19,0,0,6,6,3,11.333333333333334,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9147,1,1,160.0,1,9,19,4,3,151.3,0,0,0,1,0,0,23,0,0,5,8,3,10.666666666666666,0,0,5,8,5,11.6,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,19,149.0,1,34,34,0,0,126.3,0,0,0,1,0,0,55,0,0,6,6,6,13.833333333333334,0,1,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9238,1,39,140.0,41,1,1,4,6,137.5,0,0,1,1,0,1,23,1,3,6,7,6,13.142857142857142,0,2,6,6,6,14.0,0,12.4,0.5,1.79,Graduate +1,43,1,9070,1,1,130.0,1,37,37,9,9,129.0,1,0,0,1,0,0,25,0,0,6,6,6,13.5,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,125.0,1,19,38,7,7,118.7,0,0,0,1,1,0,20,0,0,6,12,4,11.75,0,0,6,13,3,11.333333333333334,0,15.5,2.8,-4.06,Enrolled +2,39,1,8014,0,1,140.0,1,37,37,9,9,128.0,0,0,0,1,0,1,43,0,0,6,7,6,12.333333333333334,0,0,6,8,6,11.5,0,8.9,1.4,3.51,Graduate +1,17,1,9070,1,1,135.0,1,19,37,5,9,145.9,0,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,128.0,1,1,19,9,7,118.2,0,0,0,1,0,0,19,0,0,6,6,6,11.666666666666666,0,0,6,6,6,11.5,0,12.7,3.7,-1.7,Graduate +1,1,1,9254,1,1,128.0,1,19,38,9,9,127.0,0,0,0,1,0,0,19,0,0,6,6,6,12.0,0,0,6,7,4,12.75,0,12.4,0.5,1.79,Enrolled +2,39,1,9991,0,1,140.0,1,37,12,9,9,150.0,0,0,1,1,1,0,35,0,0,5,6,5,10.8,0,0,5,7,5,12.0,2,9.4,-0.8,-3.12,Dropout +2,43,1,8014,0,1,160.0,1,37,39,9,4,140.9,0,0,0,1,0,0,50,0,7,11,11,11,13.545454545454543,0,3,7,7,7,13.571428571428571,0,16.2,0.3,-0.92,Graduate +1,1,4,9500,1,1,133.0,1,38,19,8,7,127.3,1,0,0,1,0,0,18,0,0,8,8,7,12.628571428571428,0,0,8,8,7,12.628571428571428,0,12.7,3.7,-1.7,Graduate +1,15,1,9670,1,1,160.0,1,37,12,9,9,149.5,1,0,0,0,1,0,19,0,0,6,6,6,13.0,0,0,6,8,6,13.0,0,13.9,-0.3,0.79,Graduate +1,1,2,9070,1,1,152.0,101,2,1,9,1,168.5,1,0,0,1,1,0,21,1,0,6,7,5,14.6,0,0,6,6,5,14.2,0,16.2,0.3,-0.92,Graduate +1,1,3,9085,1,1,147.0,1,19,19,9,1,135.6,1,0,0,1,0,0,20,0,0,6,7,6,16.714285714285715,0,0,6,6,6,15.333333333333334,0,13.9,-0.3,0.79,Graduate +1,17,2,8014,0,1,120.0,1,37,34,0,0,117.6,1,0,0,1,0,0,19,0,0,6,8,5,12.2,0,0,6,7,6,12.0,0,7.6,2.6,0.32,Graduate +1,43,1,9147,1,1,141.0,1,37,37,9,9,130.2,0,0,0,1,1,0,24,0,10,15,16,15,13.466666666666669,1,10,14,14,14,13.642857142857142,0,9.4,-0.8,-3.12,Graduate +1,16,2,9147,1,1,139.0,1,38,37,9,9,123.7,1,0,0,1,0,1,22,0,0,5,8,4,12.0,0,0,5,8,4,11.4,2,16.2,0.3,-0.92,Graduate +1,17,1,9147,1,1,134.0,1,19,38,4,8,129.5,0,0,0,1,0,1,18,0,0,5,5,5,11.6,0,0,5,12,4,12.625,0,10.8,1.4,1.74,Graduate +1,17,1,9254,1,1,113.0,1,1,37,9,10,117.2,1,0,0,1,0,0,20,0,0,6,8,5,11.2,0,0,6,12,3,11.666666666666666,0,7.6,2.6,0.32,Dropout +1,18,2,9556,1,1,126.0,1,3,3,2,2,115.5,0,0,0,1,1,0,18,0,0,7,11,6,13.433333333333332,0,0,7,10,4,13.6,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,1,134.0,1,37,38,4,7,110.0,1,0,0,1,0,0,24,0,0,6,10,1,10.0,0,0,6,12,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,171,1,1,132.0,1,1,1,1,4,132.0,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,39,1,9003,1,1,130.0,1,19,19,9,1,140.0,0,0,0,1,0,0,26,0,6,12,13,6,13.0,0,4,12,14,11,13.833333333333334,0,15.5,2.8,-4.06,Graduate +1,43,1,9773,1,1,132.0,1,38,19,9,9,125.0,1,0,0,1,1,1,20,0,0,6,6,6,12.333333333333334,0,0,6,7,6,14.0,0,12.4,0.5,1.79,Graduate +1,39,1,9500,1,1,140.0,1,37,37,9,6,132.8,0,0,0,1,1,0,35,0,0,7,10,4,12.6,0,0,7,9,5,12.38,0,12.4,0.5,1.79,Dropout +1,1,1,9119,1,1,130.0,1,37,19,9,5,140.2,1,0,0,1,1,0,20,0,0,5,5,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,3,9070,1,1,118.0,1,43,3,123,123,110.0,1,0,1,1,1,0,19,0,0,6,6,6,12.0,0,0,6,7,6,13.571428571428571,0,8.9,1.4,3.51,Graduate +1,39,1,8014,0,19,100.0,1,37,37,5,5,111.0,1,0,0,1,0,1,26,0,0,6,10,3,12.333333333333334,0,0,6,14,3,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,1,3,9085,1,1,138.0,1,1,3,4,4,126.3,1,0,0,1,0,0,18,0,0,6,8,6,14.0,0,0,6,9,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,1,9853,1,1,132.0,1,2,19,4,4,125.0,1,0,0,1,0,0,18,0,0,6,9,5,12.6,0,0,6,8,5,11.4,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,38,100.0,1,37,37,9,7,154.0,1,0,0,1,1,0,57,0,0,6,7,5,14.2,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9773,1,1,138.0,1,1,19,4,4,131.7,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,7,6,13.285714285714286,0,15.5,2.8,-4.06,Graduate +2,39,2,9147,1,1,140.0,1,37,37,9,8,108.0,0,0,0,1,0,0,50,0,0,5,12,3,13.333333333333334,1,0,5,8,5,12.2,0,9.4,-0.8,-3.12,Enrolled +1,1,5,9147,1,1,134.0,1,3,2,2,2,134.7,0,0,0,1,1,0,22,0,1,5,10,4,11.75,0,0,5,10,3,11.0,0,7.6,2.6,0.32,Enrolled +1,43,1,9130,1,1,120.0,1,2,3,3,2,120.0,1,0,0,0,1,0,22,0,0,6,0,0,0.0,0,0,4,6,0,0.0,2,10.8,1.4,1.74,Dropout +1,1,3,9085,1,1,140.0,1,10,19,90,90,135.8,1,0,0,1,0,0,18,0,0,5,6,5,13.333333333333334,0,0,5,7,4,14.8,0,7.6,2.6,0.32,Graduate +1,17,3,9147,1,1,142.0,1,37,38,5,1,129.4,0,0,0,1,0,0,18,0,0,5,5,5,13.2,0,0,5,6,4,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,4,9670,1,1,120.0,1,1,19,5,5,117.2,1,0,0,1,0,0,18,0,0,6,8,6,11.875,0,0,6,11,4,14.6,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,136.0,1,1,19,5,7,136.4,0,0,0,1,0,1,19,0,0,7,8,7,12.8375,0,0,8,8,8,15.5,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,1,120.0,1,37,37,5,5,124.6,0,0,0,1,0,0,36,0,0,5,8,3,11.0,0,0,5,12,4,13.375,0,10.8,1.4,1.74,Enrolled +1,39,1,9500,1,1,133.1,1,1,37,9,9,100.0,0,0,0,1,1,0,28,0,0,7,11,3,11.916666666666666,1,0,7,17,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9670,1,1,123.0,1,19,1,9,3,117.8,1,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,11,6,14.555555555555555,0,10.8,1.4,1.74,Graduate +5,39,1,9254,1,1,133.1,1,2,2,2,2,103.0,0,0,0,1,0,0,62,0,0,6,7,6,15.0,0,0,6,10,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,171,1,1,133.0,1,1,37,4,7,126.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Enrolled +1,1,6,9500,1,1,119.0,1,1,1,4,4,115.0,1,0,0,1,1,1,20,0,0,7,14,1,13.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9070,1,1,143.0,1,38,19,151,193,134.3,1,1,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,15.142857142857142,0,8.9,1.4,3.51,Graduate +1,17,1,9238,1,1,135.0,1,1,19,4,4,129.1,0,0,0,1,0,0,19,0,0,6,6,6,14.666666666666666,0,0,6,7,6,14.571428571428571,0,15.5,2.8,-4.06,Graduate +1,43,2,9670,1,1,130.0,1,19,1,4,4,127.6,1,0,0,1,1,0,22,0,4,6,6,6,11.833333333333334,0,0,6,11,4,11.142857142857142,0,10.8,1.4,1.74,Dropout +1,17,1,9254,1,1,126.0,1,37,37,5,1,126.0,0,0,0,0,1,0,29,0,0,6,12,0,0.0,0,0,6,6,0,0.0,6,9.4,-0.8,-3.12,Dropout +1,42,1,9119,1,1,120.0,1,19,37,9,9,113.8,0,0,0,0,1,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9991,0,1,140.0,1,37,37,9,9,135.8,1,0,0,1,1,0,25,0,14,15,16,15,10.8,0,13,14,14,14,11.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,17,5,9085,1,1,118.0,1,38,38,9,9,112.4,1,0,0,1,0,0,19,0,0,12,22,6,15.307692307692308,0,0,10,13,6,13.875,0,15.5,2.8,-4.06,Graduate +1,17,3,9773,1,1,134.0,1,2,1,3,3,129.5,1,0,0,1,1,0,18,0,0,6,7,6,13.166666666666666,0,0,6,7,6,12.666666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9085,1,1,129.0,1,1,38,4,7,123.4,0,0,0,1,0,0,19,0,0,5,6,5,12.4,0,0,5,6,5,13.4,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,132.0,1,19,37,4,9,128.0,1,0,0,1,0,1,19,0,0,7,7,6,12.966666666666669,0,0,7,7,6,12.966666666666669,0,7.6,2.6,0.32,Graduate +1,17,1,9500,1,1,137.0,1,38,37,7,5,131.0,1,0,0,1,0,1,18,0,0,8,8,8,13.73125,0,0,8,8,8,13.73125,0,9.4,-0.8,-3.12,Graduate +1,17,5,9119,1,1,138.0,1,19,19,5,5,123.3,1,0,1,1,1,0,18,0,0,5,9,4,12.5,0,0,5,11,5,11.285714285714286,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,138.0,1,1,1,3,4,132.5,1,0,0,1,0,0,18,0,0,8,8,7,14.115714285714288,0,0,8,8,7,14.115714285714288,0,10.8,1.4,1.74,Graduate +1,16,2,9070,1,1,133.0,1,1,3,4,2,122.5,1,0,0,1,0,0,18,0,0,6,11,1,11.0,1,0,6,11,4,11.0,4,7.6,2.6,0.32,Enrolled +1,17,1,9130,1,1,137.0,1,38,19,5,7,130.0,1,0,0,1,0,0,21,0,0,6,12,5,13.6,0,0,6,10,4,14.25,0,12.4,0.5,1.79,Enrolled +1,17,1,9238,1,1,131.0,1,37,37,9,7,121.9,0,0,0,1,0,1,19,0,0,6,8,6,13.75,0,0,6,7,6,11.857142857142858,0,16.2,0.3,-0.92,Graduate +2,1,1,9500,1,1,142.0,1,19,38,4,5,130.3,0,0,0,1,0,0,18,0,0,7,7,6,13.683333333333332,0,0,7,7,6,13.683333333333332,0,7.6,2.6,0.32,Graduate +2,39,1,9556,1,1,160.0,1,37,37,9,6,120.0,0,0,0,1,0,0,31,0,0,7,21,5,10.9,3,0,8,21,3,11.7,1,12.7,3.7,-1.7,Dropout +1,51,1,9670,1,1,126.0,1,3,3,1,10,111.0,0,0,1,1,1,0,21,0,5,11,12,10,12.1,0,2,8,9,8,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,1,5,9853,1,1,141.0,1,37,19,9,5,133.0,1,0,0,1,0,0,18,0,0,6,8,5,12.4,0,0,6,12,5,10.4,0,9.4,-0.8,-3.12,Dropout +1,1,2,9670,1,1,124.0,1,19,1,9,4,117.7,1,0,1,1,1,0,20,0,0,5,5,4,12.0,0,0,5,6,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,4,9500,1,1,133.0,1,19,19,9,5,120.1,1,0,0,1,0,1,19,0,0,7,9,6,12.428571428571429,0,0,8,8,8,14.0,0,13.9,-0.3,0.79,Graduate +1,43,1,9147,1,1,133.1,1,4,19,2,1,128.2,0,0,0,1,0,0,23,0,7,11,18,11,15.090909090909092,1,2,6,7,6,14.5,0,9.4,-0.8,-3.12,Dropout +4,27,1,9070,1,2,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,53,0,15,18,18,17,13.176470588235292,0,13,18,18,16,13.0,0,7.6,2.6,0.32,Dropout +1,43,1,9003,1,1,150.0,1,2,4,4,1,150.0,0,0,0,1,1,0,35,0,16,18,22,18,11.666666666666666,0,12,13,13,12,11.5,1,15.5,2.8,-4.06,Graduate +1,39,1,9991,0,19,133.1,1,19,37,7,5,155.5,1,0,1,0,1,0,39,0,0,5,6,5,10.6,0,0,5,7,5,14.666666666666666,0,10.8,1.4,1.74,Dropout +1,1,1,9238,1,1,106.0,1,1,1,3,3,105.0,0,0,0,1,1,0,20,0,0,6,9,5,11.0,0,0,6,9,5,12.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,111.0,1,19,38,3,3,111.4,1,0,0,0,0,0,19,0,0,6,13,4,11.0,0,0,6,13,2,11.5,0,12.7,3.7,-1.7,Dropout +1,43,1,9254,1,1,130.0,1,1,19,5,7,130.0,0,0,0,1,0,1,19,0,0,6,11,4,12.0,0,0,6,14,3,11.0,0,10.8,1.4,1.74,Dropout +1,17,1,8014,0,1,120.0,1,38,37,6,6,113.0,0,0,0,1,0,1,24,0,0,6,11,4,12.0,0,0,6,7,6,13.0,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,139.0,1,1,37,4,9,131.3,1,0,0,1,0,0,19,0,0,6,10,4,12.0,1,0,6,6,6,12.5,0,7.6,2.6,0.32,Graduate +1,43,3,9254,1,1,110.0,1,37,37,9,9,107.2,1,0,0,1,1,0,19,0,1,6,16,2,10.5,0,0,6,15,4,10.0,0,7.6,2.6,0.32,Dropout +1,1,3,9500,1,1,147.0,1,1,1,4,4,134.3,1,0,0,1,0,0,18,0,0,8,8,7,14.2,0,0,8,8,7,14.2,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,130.0,1,37,38,9,6,130.0,1,0,0,1,0,0,23,0,0,6,7,0,0.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,139.0,1,37,38,9,9,124.0,1,0,0,1,1,1,18,0,0,8,8,7,13.331428571428573,0,0,8,8,7,13.331428571428573,0,10.8,1.4,1.74,Graduate +1,1,2,9773,1,1,122.0,1,37,37,9,9,126.9,1,0,0,1,0,1,19,0,0,6,11,4,11.0,0,0,6,11,3,11.666666666666666,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9670,1,1,120.0,1,11,11,90,4,114.0,1,0,0,1,1,0,29,0,0,5,10,3,11.666666666666666,0,0,5,8,4,11.25,0,7.6,2.6,0.32,Dropout +1,1,5,9147,1,1,132.0,1,39,39,3,3,127.8,1,0,0,0,1,0,18,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9147,1,1,128.0,1,38,37,5,6,122.1,0,0,0,1,0,1,18,0,0,5,11,4,11.571428571428571,0,0,5,9,5,12.0,0,13.9,-0.3,0.79,Enrolled +1,17,1,9085,1,1,127.0,1,19,38,194,193,117.6,0,0,0,1,0,0,18,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,1,9500,1,1,145.0,1,3,3,2,3,141.8,0,0,0,1,0,0,19,0,0,8,8,8,13.3475,0,0,8,8,8,13.3475,0,9.4,-0.8,-3.12,Graduate +1,53,1,9556,1,42,140.0,1,1,19,4,5,140.0,0,0,0,1,0,1,22,0,1,7,10,6,13.314285714285717,0,2,8,10,7,12.875,0,8.9,1.4,3.51,Graduate +1,18,1,9147,1,1,160.0,1,19,19,5,8,137.6,1,0,0,1,0,1,19,0,0,5,6,5,12.6,0,0,5,8,5,11.25,0,10.8,1.4,1.74,Graduate +1,51,1,9670,1,19,133.1,1,2,1,3,10,120.0,0,0,1,1,1,0,32,0,1,6,15,2,12.0,0,0,6,7,0,0.0,0,11.1,0.6,2.02,Dropout +2,39,1,9991,0,19,133.1,1,19,39,5,3,121.7,0,0,1,0,0,0,31,0,0,5,7,0,0.0,0,0,5,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,126.0,0,0,0,1,1,0,32,0,0,7,7,7,13.62857142857143,0,0,8,8,8,13.9125,0,13.9,-0.3,0.79,Graduate +1,1,3,171,1,1,140.0,1,37,37,9,9,124.3,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,1,1,9853,1,1,136.0,1,38,37,9,9,126.9,1,0,0,1,0,1,19,0,0,7,7,7,13.285714285714286,0,0,7,7,7,14.428571428571429,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,136.0,1,19,1,9,9,129.0,1,0,0,1,0,1,19,0,0,7,7,7,13.308571428571428,0,0,8,10,8,12.55,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,144.0,1,38,38,7,7,136.0,1,0,0,1,0,1,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,154.0,1,38,38,9,9,156.5,1,1,0,1,0,1,18,0,0,6,8,6,11.714285714285714,0,0,6,6,6,14.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,131.0,1,19,19,9,9,134.9,1,0,1,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,16.2,0.3,-0.92,Dropout +4,43,1,8014,0,1,140.0,1,38,37,9,9,126.0,0,0,0,1,0,1,39,0,3,9,9,9,13.11111111111111,0,2,7,10,7,11.714285714285714,0,12.7,3.7,-1.7,Graduate +1,1,2,9500,1,1,141.0,1,37,37,9,7,126.3,1,0,0,1,0,0,19,0,0,7,10,7,13.805,0,0,8,8,8,14.2725,0,15.5,2.8,-4.06,Graduate +1,44,1,8014,0,39,150.0,1,1,37,9,7,146.7,0,0,0,1,0,1,21,0,3,6,6,6,14.666666666666666,0,2,6,6,6,13.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,2,9119,1,1,140.0,1,19,19,9,9,125.7,1,0,0,1,1,0,18,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9773,1,12,100.0,1,1,1,4,4,100.0,0,0,0,1,0,0,24,0,0,6,6,6,12.166666666666666,0,0,6,6,6,13.833333333333334,0,7.6,2.6,0.32,Graduate +1,42,1,9500,1,1,111.0,1,1,3,9,10,128.2,1,0,0,1,1,0,23,0,0,8,8,8,12.5075,0,0,8,8,8,12.5075,0,9.4,-0.8,-3.12,Graduate +1,17,2,9773,1,1,132.0,1,19,19,9,6,120.1,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.0,0,8.9,1.4,3.51,Graduate +1,1,1,9500,1,1,131.0,1,4,4,2,1,120.5,0,0,0,1,0,0,19,0,0,7,7,6,14.15,0,0,7,7,6,14.15,0,7.6,2.6,0.32,Graduate +1,44,1,9003,1,39,170.0,1,19,19,5,5,170.0,1,0,0,1,1,0,20,0,0,6,8,6,14.5,0,0,6,10,6,15.3,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,150.0,1,38,38,7,7,137.8,1,0,0,1,0,1,18,0,0,6,6,6,15.0,0,0,6,6,6,15.5,0,8.9,1.4,3.51,Graduate +1,39,1,9003,1,19,133.1,1,37,37,9,10,120.0,0,0,1,0,1,0,38,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9670,1,39,110.0,1,37,1,9,4,110.0,0,0,0,1,0,1,20,0,2,6,9,6,12.125,0,2,6,7,6,13.571428571428571,0,11.1,0.6,2.02,Graduate +1,44,1,9003,1,39,130.0,1,5,3,2,2,130.0,0,0,0,1,1,0,20,0,1,7,13,3,10.666666666666666,0,0,6,14,2,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9670,1,1,133.1,1,34,3,7,2,130.6,1,0,1,0,1,0,23,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9003,1,39,140.0,1,19,38,9,10,140.0,0,0,0,1,1,0,19,0,0,6,15,3,13.25,0,0,6,9,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,4,9500,1,1,133.1,1,19,38,9,9,119.6,1,0,0,1,0,1,19,0,0,7,7,6,12.808333333333332,0,0,8,11,7,12.825714285714286,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,118.0,1,19,19,3,3,110.0,1,0,0,1,0,0,19,0,0,7,12,4,12.85,0,0,7,7,7,12.62142857142857,0,11.1,0.6,2.02,Enrolled +1,1,1,9773,1,1,137.0,1,1,1,5,5,129.3,1,0,0,1,1,0,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.5,0,12.7,3.7,-1.7,Graduate +1,17,1,9500,1,1,127.0,1,19,38,5,9,129.5,1,0,0,1,0,1,20,0,0,7,7,6,12.333333333333334,0,0,7,7,6,12.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,4,9670,1,1,126.0,1,38,19,9,6,119.4,1,0,0,1,0,1,18,0,0,6,6,6,14.0,0,0,6,9,5,13.8,0,8.9,1.4,3.51,Graduate +1,1,1,9773,1,1,127.0,1,19,37,9,9,116.5,0,0,0,1,0,1,19,0,0,6,7,6,14.285714285714286,0,0,6,6,6,13.166666666666666,0,11.1,0.6,2.02,Graduate +1,17,1,9853,1,1,125.0,1,19,19,4,7,128.5,1,0,0,1,0,0,18,0,0,7,9,6,11.5,0,0,7,8,7,12.714285714285714,0,13.9,-0.3,0.79,Enrolled +1,43,1,9773,1,1,133.1,22,34,34,90,90,130.0,0,0,1,1,0,0,23,1,0,6,11,1,16.0,0,0,6,8,4,12.25,0,7.6,2.6,0.32,Dropout +1,1,1,9238,1,1,125.0,1,1,1,5,5,128.5,0,0,0,1,1,0,20,0,0,6,13,1,14.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,39,1,9500,1,1,133.1,1,19,37,9,9,120.0,0,0,0,1,0,1,25,0,0,8,8,7,12.042857142857144,0,0,8,8,7,12.042857142857144,0,12.7,3.7,-1.7,Graduate +2,39,2,9147,1,1,133.1,1,37,37,5,7,110.0,0,0,0,1,1,0,43,0,0,5,14,0,0.0,1,0,5,5,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,18,6,9500,1,1,141.0,1,1,19,1,1,126.7,1,0,0,1,0,1,18,0,0,8,8,7,14.314285714285717,0,0,8,8,7,14.314285714285717,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,146.0,1,40,43,4,4,150.2,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,1,9238,1,1,148.0,1,1,1,4,9,129.8,0,0,0,1,0,0,20,0,0,6,11,5,10.6,0,0,6,11,4,10.4,0,15.5,2.8,-4.06,Enrolled +1,17,1,9853,1,1,133.0,1,38,38,9,9,127.4,0,0,1,1,0,1,18,0,0,7,7,7,12.714285714285714,0,0,7,7,7,12.285714285714286,0,16.2,0.3,-0.92,Graduate +1,43,1,9147,1,1,120.0,1,37,37,5,3,113.4,0,0,0,1,1,0,22,0,0,5,9,3,13.0,0,0,5,9,3,11.666666666666666,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,148.0,1,19,3,4,2,136.5,0,0,0,1,0,0,19,0,0,6,13,6,15.307692307692308,0,0,6,9,6,14.0,0,15.5,2.8,-4.06,Graduate +1,1,1,9254,1,1,178.0,1,2,1,2,3,157.7,0,0,0,1,1,0,34,0,0,6,13,2,13.5,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +2,7,1,9254,1,3,130.0,1,1,3,4,3,130.0,0,0,0,1,0,0,39,0,0,6,10,0,0.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,33,1,40,120.0,1,38,37,5,6,120.0,1,0,1,0,1,0,25,0,18,21,26,21,12.363636363636363,0,12,16,21,12,12.25,1,11.1,0.6,2.02,Dropout +2,1,1,9147,1,1,151.0,1,38,37,9,8,132.1,1,0,0,1,0,0,34,0,0,5,7,2,10.0,0,0,5,6,4,12.0,0,7.6,2.6,0.32,Dropout +1,43,2,9556,1,1,120.0,1,1,19,4,3,110.2,0,0,0,1,0,0,27,0,0,7,9,7,12.228571428571428,0,1,8,10,8,13.2125,0,10.8,1.4,1.74,Graduate +2,1,4,9500,1,1,140.0,1,1,37,4,9,128.0,0,0,0,1,0,1,18,0,0,7,7,6,14.066666666666668,0,0,7,7,6,14.066666666666668,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,6,120.0,1,35,35,6,6,128.2,1,0,0,1,1,0,34,0,4,6,8,4,11.25,0,1,5,8,2,10.5,0,7.6,2.6,0.32,Dropout +1,43,1,9500,1,1,120.0,1,37,37,9,6,120.0,1,0,0,1,0,0,26,0,0,7,8,6,12.0,0,0,7,8,6,12.0,0,7.6,2.6,0.32,Enrolled +2,39,1,9003,1,1,133.1,1,37,37,8,7,150.0,0,0,0,1,1,0,31,0,0,6,10,6,15.0,0,0,6,11,5,12.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,145.0,1,19,37,4,7,148.9,1,0,0,1,0,1,18,0,0,6,6,6,13.666666666666666,0,0,6,6,6,13.0,0,10.8,1.4,1.74,Graduate +1,39,1,9670,1,1,120.0,1,34,34,0,0,104.0,1,0,0,1,0,0,24,0,0,5,10,3,13.0,0,0,5,11,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9085,1,1,110.0,1,3,19,4,6,105.0,0,0,1,0,1,0,34,0,2,6,13,3,11.333333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Dropout +1,17,2,9254,1,1,108.0,1,37,37,9,7,108.0,1,0,0,1,0,1,20,0,0,6,10,4,11.6,0,0,6,10,4,11.75,0,12.7,3.7,-1.7,Graduate +4,43,1,9238,1,1,120.0,1,37,37,9,9,110.0,0,0,1,1,0,0,34,0,0,6,13,4,11.25,0,0,6,8,4,13.75,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,136.0,1,19,37,173,183,118.4,1,0,0,1,0,0,21,0,0,7,12,4,13.125,0,0,7,8,6,12.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,18,1,9556,1,1,140.0,1,38,37,9,9,122.8,0,0,0,1,0,1,19,0,0,7,11,7,12.625,0,0,8,11,8,12.5125,0,12.7,3.7,-1.7,Graduate +1,39,1,9119,1,1,150.0,1,3,3,4,4,150.0,1,0,0,1,1,0,27,0,0,5,10,1,14.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9130,1,1,141.0,1,1,1,4,10,138.9,1,0,0,1,1,0,18,0,0,5,5,5,13.6,0,0,5,6,4,13.25,1,10.8,1.4,1.74,Graduate +1,18,4,9773,1,1,130.0,1,19,19,4,4,121.3,1,0,0,1,0,0,20,0,0,6,12,5,12.0,0,0,6,8,6,11.571428571428571,0,15.5,2.8,-4.06,Dropout +2,39,1,9130,1,1,130.0,1,37,37,9,6,160.0,0,0,0,1,1,0,31,0,1,6,11,2,12.0,1,1,6,12,1,10.0,1,16.2,0.3,-0.92,Dropout +1,1,1,9500,1,1,149.0,1,37,37,9,9,136.0,0,0,0,1,0,1,18,0,0,7,7,6,12.916666666666666,0,0,7,7,6,12.916666666666666,0,7.6,2.6,0.32,Graduate +1,1,1,9147,1,1,151.0,1,37,1,4,10,138.4,0,0,0,1,0,0,18,0,0,5,6,4,11.25,0,0,5,8,5,11.0,0,10.8,1.4,1.74,Enrolled +1,39,1,9254,1,1,130.0,1,37,37,9,9,126.5,0,0,0,1,1,0,26,0,0,6,7,6,12.428571428571429,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Graduate +1,1,3,9500,1,1,143.0,1,19,37,7,7,127.0,1,0,0,1,0,0,18,0,0,8,8,8,13.07375,0,0,8,8,8,13.07375,0,9.4,-0.8,-3.12,Graduate +2,57,1,9991,0,1,133.1,41,38,37,4,6,100.0,0,0,0,1,0,0,37,1,5,10,11,7,13.428571428571429,0,5,10,11,10,11.6,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,138.0,1,37,37,9,9,135.9,1,0,0,1,0,0,19,0,0,6,11,5,11.6,0,0,6,11,6,11.666666666666666,0,7.6,2.6,0.32,Enrolled +1,43,1,8014,0,1,145.7,22,37,37,9,9,145.7,1,0,0,1,0,0,25,1,8,16,16,15,13.333333333333334,0,11,13,13,11,12.272727272727272,0,13.9,-0.3,0.79,Graduate +4,39,1,9773,1,19,133.1,1,37,37,9,1,117.5,0,0,0,1,0,0,39,0,0,6,10,4,11.25,0,0,6,6,6,11.333333333333334,0,10.8,1.4,1.74,Graduate +1,17,3,9238,1,1,118.0,1,1,19,4,10,112.4,1,0,0,1,0,0,19,0,0,6,10,5,11.285714285714286,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,8014,0,1,133.1,1,37,37,9,7,162.5,0,0,0,1,1,0,54,0,4,9,9,9,14.333333333333334,0,2,7,7,7,13.857142857142858,0,8.9,1.4,3.51,Graduate +1,1,3,9254,1,1,115.0,1,1,1,3,3,117.5,1,0,0,1,0,0,18,0,0,6,9,4,11.25,0,0,6,13,2,12.5,0,9.4,-0.8,-3.12,Dropout +1,1,1,9500,1,1,133.0,1,37,38,9,9,130.2,1,0,0,1,1,1,19,0,0,7,7,7,13.7,0,0,8,9,8,14.022222222222222,0,16.2,0.3,-0.92,Graduate +1,1,1,9130,1,1,152.0,1,2,22,4,3,146.1,1,0,0,1,0,0,18,0,0,5,8,4,13.5,2,0,5,9,0,0.0,3,10.8,1.4,1.74,Dropout +2,39,1,9085,1,12,133.1,1,1,39,5,3,140.0,1,0,1,0,0,0,32,0,0,6,7,0,0.0,0,0,6,6,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9003,1,1,140.0,1,38,1,9,4,138.3,0,0,0,1,1,0,18,0,0,6,7,6,16.0,0,0,6,6,6,15.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,130.0,1,38,37,9,6,133.9,0,0,0,1,1,1,19,0,0,6,8,5,14.0,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,140.0,1,37,37,9,9,142.5,1,0,0,1,0,0,18,0,0,6,6,6,13.333333333333334,0,0,6,9,5,13.2,0,9.4,-0.8,-3.12,Graduate +1,1,2,9085,1,1,120.0,1,38,1,9,3,118.3,1,0,0,1,0,0,20,0,0,5,11,5,12.333333333333334,2,0,5,7,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,117.0,1,1,19,4,7,113.5,1,0,0,1,0,1,18,0,0,6,6,6,13.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,141.0,1,19,1,7,3,128.8,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,17,3,9147,1,1,125.0,1,3,38,2,10,118.7,1,0,0,1,0,0,18,0,0,5,16,4,10.666666666666666,0,0,5,11,2,12.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,116.0,1,37,1,5,3,124.8,1,0,0,1,1,0,20,0,0,5,9,2,14.333333333333334,0,0,5,10,2,12.5,0,7.6,2.6,0.32,Enrolled +1,1,1,9773,1,1,120.0,1,36,37,0,0,126.7,1,0,0,1,1,0,20,0,0,6,9,5,12.6,0,0,6,11,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,4,9853,1,1,140.0,1,19,38,4,1,128.5,1,0,0,1,0,0,18,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,39,130.0,1,1,1,3,10,130.0,0,0,0,1,1,0,22,0,4,10,21,5,11.4,1,2,7,13,6,11.666666666666666,0,15.5,2.8,-4.06,Dropout +1,1,1,171,1,1,136.0,1,3,37,2,8,121.7,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,154.0,1,37,37,9,9,149.5,1,0,0,1,0,1,30,0,0,7,8,7,14.9125,0,0,8,9,1,13.5,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,138.0,1,19,38,5,8,133.5,0,0,0,1,0,1,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,128.0,1,1,37,4,3,117.9,1,0,0,1,0,1,19,0,0,7,9,7,12.1375,0,0,8,9,8,12.91111111111111,0,12.4,0.5,1.79,Graduate +1,43,1,9130,1,1,150.0,1,3,3,3,4,150.0,1,0,0,1,0,0,21,0,0,6,10,6,12.0,0,0,6,12,5,12.8,0,13.9,-0.3,0.79,Graduate +1,1,5,9773,1,1,110.0,1,19,38,3,5,117.4,1,0,0,1,0,0,20,0,0,6,7,6,13.833333333333334,0,0,6,6,6,12.833333333333334,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,135.0,1,37,38,9,6,122.1,1,0,0,1,1,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +2,39,1,9003,1,1,140.0,1,37,37,9,6,104.8,0,0,0,1,0,0,46,0,14,19,24,19,12.210526315789474,0,11,13,13,13,11.384615384615383,0,15.5,2.8,-4.06,Graduate +1,1,2,9670,1,1,143.0,1,37,37,9,7,131.8,1,0,0,1,0,1,18,0,0,6,8,6,13.571428571428571,0,0,6,6,5,12.8,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,142.0,1,1,1,3,3,133.3,1,0,0,1,0,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,43,1,9070,1,1,141.0,1,1,19,5,10,127.0,0,0,0,1,0,0,20,0,0,6,6,5,12.4,0,0,6,9,5,12.4,0,12.7,3.7,-1.7,Graduate +3,1,2,9085,1,1,135.0,1,19,1,4,4,129.4,1,0,0,1,0,0,21,0,0,5,8,0,0.0,4,0,5,12,0,0.0,4,10.8,1.4,1.74,Dropout +1,39,1,9254,1,1,133.1,1,19,19,4,7,123.0,0,0,1,0,0,1,28,0,0,6,6,6,10.833333333333334,0,0,6,7,5,11.0,0,13.9,-0.3,0.79,Dropout +1,17,2,9500,1,1,131.0,1,19,37,9,7,129.8,1,0,0,1,0,0,20,0,0,7,8,6,14.37,0,0,8,10,7,14.65,0,12.4,0.5,1.79,Graduate +1,39,1,9670,1,9,133.1,1,6,22,3,3,120.0,0,0,1,0,1,0,26,0,0,5,5,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9070,1,1,131.0,1,37,37,3,3,131.7,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,5,13.8,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,137.0,1,19,19,5,5,134.6,1,0,0,1,0,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,131.0,1,1,1,4,10,129.3,0,0,0,1,0,0,19,0,4,8,8,8,13.875,0,1,6,8,5,14.0,0,11.1,0.6,2.02,Graduate +4,39,1,9991,0,1,140.0,1,1,37,141,192,129.7,0,0,0,1,0,0,35,0,0,5,8,5,12.0,0,0,5,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,1,1,9991,0,1,140.0,1,37,37,9,9,124.6,0,0,0,1,0,0,29,0,0,5,11,5,11.4,0,0,5,10,4,10.25,0,15.5,2.8,-4.06,Enrolled +1,17,3,9853,1,1,138.0,1,37,37,5,9,125.1,1,1,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Dropout +1,2,1,9147,1,1,150.0,1,37,37,9,9,122.0,1,0,0,1,0,0,29,0,13,15,19,13,11.76923076923077,0,12,14,17,14,11.928571428571429,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,135.0,1,3,1,4,4,136.1,1,0,0,1,1,0,19,0,0,6,9,5,11.4,0,0,6,13,5,12.4,0,8.9,1.4,3.51,Enrolled +1,39,1,9991,0,1,150.0,1,1,19,4,8,123.0,0,0,0,1,1,0,27,0,0,5,8,4,11.5,0,0,5,9,3,10.333333333333334,0,12.7,3.7,-1.7,Dropout +1,17,1,9670,1,1,141.0,1,19,37,5,8,130.2,0,0,0,1,1,0,18,0,0,6,6,6,13.5,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9130,1,1,106.0,1,37,37,9,9,108.0,1,0,1,1,0,0,20,0,0,5,10,2,12.0,2,0,5,9,4,11.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,19,133.1,1,37,38,9,7,100.5,1,0,0,1,1,0,43,0,0,8,8,7,11.635714285714286,0,0,8,8,7,11.635714285714286,0,10.8,1.4,1.74,Enrolled +1,43,1,9254,1,1,142.0,1,38,38,9,9,125.9,0,0,0,1,0,1,19,0,0,6,0,0,0.0,0,0,6,11,1,10.0,0,10.8,1.4,1.74,Dropout +1,39,1,9991,0,1,150.0,1,1,37,9,7,130.2,0,0,0,1,0,1,24,0,0,5,7,5,12.285714285714286,0,0,5,9,5,12.75,1,16.2,0.3,-0.92,Graduate +4,39,1,9670,1,1,140.0,1,2,1,3,9,170.0,0,0,1,0,1,0,53,0,0,6,11,3,14.333333333333334,0,0,6,6,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,4,9773,1,1,119.0,1,38,19,9,9,118.3,0,0,0,1,0,0,19,0,0,6,8,4,11.25,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,43,1,9238,1,1,117.0,1,34,34,0,0,109.3,0,0,0,1,0,0,30,0,9,16,19,15,12.266666666666667,0,11,13,14,13,12.071428571428571,0,9.4,-0.8,-3.12,Graduate +1,1,1,9147,1,1,120.0,1,34,34,99,99,111.6,0,0,1,1,1,1,21,0,0,5,5,5,12.6,0,0,5,9,3,12.833333333333334,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,139.0,1,19,19,9,7,110.3,0,0,1,1,1,0,24,0,0,5,12,1,10.0,0,0,5,11,1,11.0,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,3,19,9,9,113.2,0,0,0,1,0,0,21,0,3,10,18,6,11.166666666666666,2,4,10,16,7,10.571428571428571,0,7.6,2.6,0.32,Enrolled +1,43,1,9991,0,1,120.0,1,38,38,9,7,141.0,0,0,0,1,1,1,32,0,5,10,12,10,13.8,0,5,10,10,10,12.8,0,10.8,1.4,1.74,Graduate +1,1,1,9130,1,1,151.0,1,3,1,2,4,151.0,1,0,0,1,0,0,18,0,0,6,11,6,14.444444444444445,0,0,6,6,6,13.333333333333334,0,16.2,0.3,-0.92,Graduate +2,39,1,8014,0,1,130.0,1,37,37,9,6,110.0,1,0,0,1,0,0,33,0,0,6,7,6,11.0,0,0,6,11,5,11.0,0,9.4,-0.8,-3.12,Graduate +1,43,1,9853,1,1,130.0,1,2,39,2,5,124.6,0,0,0,1,1,0,37,0,19,21,21,21,12.476190476190476,0,13,19,19,19,12.210526315789474,0,12.4,0.5,1.79,Graduate +1,1,1,171,1,1,138.0,1,1,1,4,3,141.5,0,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +1,43,1,8014,0,1,120.0,1,37,37,9,5,100.0,0,0,0,1,0,0,45,0,5,9,13,8,11.0,0,3,7,10,6,10.833333333333334,0,12.7,3.7,-1.7,Enrolled +1,44,1,9991,0,39,150.0,1,37,37,6,6,150.0,0,0,0,1,0,0,31,0,2,6,8,6,12.0,0,2,7,8,7,13.428571428571429,0,9.4,-0.8,-3.12,Enrolled +2,39,1,9085,1,19,133.1,1,38,38,4,7,128.2,0,0,0,1,0,0,31,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9238,1,1,133.0,41,19,19,9,9,119.7,1,0,1,1,0,1,19,1,0,6,8,6,12.666666666666666,0,0,6,7,6,12.666666666666666,0,8.9,1.4,3.51,Graduate +1,17,3,9085,1,1,128.0,1,1,19,4,90,124.2,0,0,0,0,0,0,21,0,0,5,8,2,11.5,0,0,5,7,2,10.5,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,120.0,1,1,1,9,9,129.1,1,0,0,1,1,0,18,0,0,6,6,4,11.25,0,0,6,10,3,10.333333333333334,0,10.8,1.4,1.74,Dropout +1,1,4,9773,1,1,125.0,1,19,19,9,7,129.6,1,0,0,1,1,0,18,0,0,6,6,6,12.833333333333334,0,0,6,8,6,12.833333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9130,1,1,137.0,1,40,19,2,9,130.7,1,0,0,1,0,0,18,0,0,6,8,5,14.4,0,0,6,11,4,14.6,0,8.9,1.4,3.51,Dropout +1,51,1,9147,1,1,116.0,1,3,3,2,2,115.2,0,0,1,1,1,0,32,0,2,7,16,3,12.0,0,3,8,10,3,10.333333333333334,0,8.9,1.4,3.51,Enrolled +1,17,5,9853,1,1,132.0,1,12,12,4,4,123.3,1,0,0,1,0,0,21,0,0,6,13,4,11.5,0,0,6,10,3,11.0,0,10.8,1.4,1.74,Dropout +1,7,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,1,0,31,0,9,9,9,9,14.22222222222222,0,5,5,5,5,12.8,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,135.0,1,19,38,9,5,136.8,1,0,0,1,0,0,18,0,0,5,11,5,14.0,3,0,5,7,5,11.6,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9085,1,1,137.0,1,1,1,4,7,134.6,1,0,0,1,1,0,22,0,0,6,16,0,0.0,0,0,6,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,17,4,171,1,1,133.1,1,38,38,9,9,117.0,1,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,8014,0,1,133.1,1,19,37,7,8,120.0,0,0,1,0,0,0,31,0,0,6,14,2,10.5,0,0,6,6,3,12.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,4,9500,1,1,140.0,1,1,19,9,7,127.0,1,0,0,1,0,0,19,0,0,8,8,7,13.44285714285714,0,0,8,8,7,13.44285714285714,0,12.7,3.7,-1.7,Graduate +1,18,1,9500,1,1,124.0,1,38,37,9,7,119.3,1,0,0,1,0,0,19,0,0,8,8,8,13.11625,0,0,8,8,8,13.11625,0,9.4,-0.8,-3.12,Graduate +1,44,1,9085,1,39,150.0,1,3,19,2,4,150.0,1,0,0,1,0,0,22,0,1,6,9,6,13.0,0,1,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,19,133.1,1,3,19,90,90,123.5,0,0,0,1,0,0,50,0,0,1,1,0,0.0,1,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +2,39,1,9853,1,1,133.1,1,37,37,5,5,116.5,0,0,0,1,0,0,34,0,0,7,11,1,10.0,0,0,7,7,1,13.0,0,16.2,0.3,-0.92,Dropout +1,18,6,9500,1,1,144.0,1,1,1,3,6,130.8,1,0,0,1,0,0,18,0,0,8,11,7,12.771428571428572,0,0,8,11,7,12.771428571428572,0,12.7,3.7,-1.7,Graduate +1,43,1,9670,1,1,151.0,1,19,19,1,1,100.0,0,0,1,1,0,0,20,0,0,6,12,5,12.2,0,0,6,8,5,14.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9147,1,1,125.0,1,1,19,4,6,115.2,0,1,0,1,0,0,21,0,0,5,6,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9003,1,19,133.1,1,37,38,4,9,110.0,0,0,1,0,0,0,40,0,0,6,12,5,12.8,0,0,6,16,3,13.333333333333334,0,11.1,0.6,2.02,Dropout +1,1,3,9500,1,1,133.1,1,19,19,5,5,108.5,1,0,0,1,0,0,19,0,0,7,9,7,12.60625,0,0,8,12,6,11.9,0,12.4,0.5,1.79,Graduate +1,1,1,9085,1,1,130.0,1,37,11,90,90,122.6,0,0,0,1,0,0,18,0,0,5,5,5,13.0,0,0,5,5,5,12.4,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,113.0,1,19,37,9,9,118.6,1,0,0,1,0,1,21,0,0,6,6,6,14.5,0,0,6,8,6,14.666666666666666,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,140.0,6,2,3,5,2,124.3,1,0,0,1,0,0,19,1,0,7,9,5,12.32,0,0,7,9,5,11.9,0,12.4,0.5,1.79,Enrolled +1,1,4,9119,1,1,111.0,1,37,37,9,5,107.5,1,0,0,1,1,1,22,0,0,5,9,3,12.333333333333334,0,0,6,14,3,12.5,0,11.1,0.6,2.02,Dropout +1,1,1,9085,1,1,143.0,1,19,38,9,9,133.4,1,0,0,1,0,0,19,0,0,6,7,6,16.0,0,0,6,8,6,15.875,0,12.4,0.5,1.79,Graduate +1,17,1,9773,1,1,141.0,1,2,3,2,2,133.7,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,13.5,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,151.0,41,3,3,2,5,161.9,1,0,0,1,0,1,19,1,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,43,1,33,1,1,143.0,1,37,1,9,10,121.2,1,0,0,1,1,0,25,0,5,10,13,5,11.6,0,2,8,10,2,13.0,0,12.4,0.5,1.79,Enrolled +1,44,1,9003,1,39,140.0,1,37,37,9,4,140.0,0,0,0,1,0,0,24,0,0,6,10,6,11.428571428571429,0,0,6,12,5,13.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9670,1,1,141.0,1,1,19,8,7,128.8,1,0,0,1,0,0,19,0,0,6,6,6,14.833333333333334,0,0,6,8,6,13.285714285714286,0,8.9,1.4,3.51,Enrolled +1,1,1,9238,1,1,115.0,1,19,38,7,7,108.7,0,0,0,1,0,1,19,0,0,6,9,5,10.8,0,0,6,8,6,10.714285714285714,0,15.5,2.8,-4.06,Graduate +1,17,2,9853,1,1,114.0,1,1,1,4,0,108.8,1,0,0,1,0,0,18,0,0,7,11,5,11.4,0,0,7,9,6,13.333333333333334,0,13.9,-0.3,0.79,Enrolled +1,1,2,9853,1,1,112.0,1,37,37,191,182,106.1,1,0,1,1,0,1,20,0,0,7,7,7,13.857142857142858,0,0,7,8,7,12.571428571428571,0,8.9,1.4,3.51,Graduate +1,1,2,9085,1,1,157.0,1,3,38,4,6,142.3,0,0,0,1,0,0,18,0,0,5,7,4,12.75,0,0,5,6,4,12.75,0,7.6,2.6,0.32,Graduate +2,44,1,8014,0,39,160.0,1,37,19,9,10,155.9,0,0,0,1,0,0,33,0,3,6,7,6,15.714285714285714,0,2,6,7,6,15.5,0,13.9,-0.3,0.79,Graduate +1,1,4,171,1,1,137.0,1,1,38,4,8,141.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,3,9500,1,1,144.0,1,1,37,9,9,126.5,1,0,0,1,0,1,20,0,0,8,8,7,13.487142857142857,0,0,8,8,7,13.487142857142857,0,10.8,1.4,1.74,Graduate +1,17,1,9500,1,1,145.0,1,1,1,4,10,131.4,0,0,0,1,0,0,19,0,0,7,7,7,13.44285714285714,0,0,8,8,7,13.771428571428572,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,115.0,1,1,1,9,4,109.1,1,0,1,0,0,1,22,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,170.0,1,37,37,0,0,150.8,1,0,0,1,0,0,27,0,0,6,13,2,11.0,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,5,3,9070,1,1,157.0,1,3,1,9,6,138.1,1,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,8,6,14.125,0,10.8,1.4,1.74,Graduate +1,43,2,9238,1,1,129.0,1,34,30,0,5,118.9,1,0,0,1,1,0,22,0,0,6,11,0,0.0,0,0,5,10,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,17,5,9853,1,1,141.0,1,3,19,2,7,130.9,1,0,0,1,0,0,18,0,0,6,7,6,13.5,0,0,6,8,5,12.6,0,7.6,2.6,0.32,Graduate +4,39,1,9991,0,1,133.1,1,37,37,9,9,130.4,0,0,0,1,0,0,30,0,0,5,10,3,10.666666666666666,0,0,5,8,5,10.4,0,12.7,3.7,-1.7,Enrolled +1,1,1,9085,1,1,130.0,1,19,38,9,9,126.9,0,0,1,1,0,0,24,0,0,6,8,6,13.285714285714286,0,0,6,13,6,12.875,0,11.1,0.6,2.02,Graduate +1,1,1,9238,1,1,136.0,1,19,1,4,3,125.2,1,0,0,1,0,0,20,0,0,6,7,6,11.666666666666666,0,0,6,10,6,11.333333333333334,0,7.6,2.6,0.32,Graduate +1,17,1,9773,1,1,130.0,1,19,37,9,9,140.2,0,0,0,1,1,1,19,0,0,6,6,6,12.0,0,0,6,7,6,11.666666666666666,0,16.2,0.3,-0.92,Graduate +1,17,1,9238,1,1,132.0,1,37,38,9,5,120.8,0,0,0,1,0,1,19,0,0,6,11,5,11.6,0,0,6,10,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,44,1,9003,1,39,150.0,1,19,37,6,6,150.0,0,0,1,1,0,1,19,0,0,6,9,6,14.333333333333334,0,0,6,7,6,13.833333333333334,0,13.9,-0.3,0.79,Graduate +2,42,1,9991,0,1,130.0,1,3,2,2,2,130.0,0,0,0,1,1,0,27,0,2,2,2,2,12.5,0,0,5,6,2,12.5,0,12.7,3.7,-1.7,Enrolled +4,39,1,8014,0,1,133.1,1,38,37,5,7,144.5,0,0,0,1,0,0,45,0,0,6,13,4,12.5,0,0,6,8,3,11.666666666666666,0,16.2,0.3,-0.92,Dropout +1,1,2,9773,1,1,150.0,41,1,37,9,7,130.8,0,0,0,1,0,1,20,1,0,6,9,5,11.8,0,0,6,9,5,11.833333333333334,0,15.5,2.8,-4.06,Graduate +2,1,1,8014,0,1,151.0,1,37,37,9,9,152.4,0,0,0,1,0,0,40,0,0,6,7,6,11.333333333333334,0,0,6,7,6,10.5,0,10.8,1.4,1.74,Graduate +6,39,1,9500,1,1,133.1,1,37,37,9,9,110.0,0,0,0,1,0,0,36,0,0,7,12,4,11.5,0,0,7,14,3,12.333333333333334,0,16.2,0.3,-0.92,Dropout +2,43,1,9670,1,1,100.0,1,34,34,0,0,128.2,0,0,0,1,1,0,32,0,6,10,12,10,11.4,0,4,9,9,4,11.5,0,7.6,2.6,0.32,Graduate +1,17,6,9500,1,1,148.0,1,1,19,3,3,131.7,1,0,0,1,0,0,19,0,0,7,8,5,14.0,0,0,7,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,1,171,1,1,142.0,1,19,19,7,7,142.0,1,0,0,1,0,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9670,1,1,127.0,1,1,38,4,7,125.6,0,0,1,1,0,1,18,0,0,6,7,1,14.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9773,1,1,146.0,1,38,38,9,7,134.1,1,0,0,1,1,1,18,0,0,6,6,6,12.5,0,0,6,7,6,12.666666666666666,0,10.8,1.4,1.74,Dropout +1,17,1,9670,1,1,115.0,1,1,1,4,4,109.1,1,0,0,1,0,1,19,0,0,6,7,6,13.285714285714286,0,0,6,9,5,14.6,0,12.4,0.5,1.79,Enrolled +1,1,2,9773,1,1,148.0,1,1,19,9,9,141.7,0,0,0,1,0,0,18,0,0,6,6,6,13.833333333333334,0,0,6,6,6,12.666666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9773,1,1,116.0,1,37,37,0,5,114.3,1,0,0,1,0,0,20,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,1,9670,1,1,139.0,1,38,19,5,7,130.6,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,7,5,14.2,0,13.9,-0.3,0.79,Graduate +1,1,6,9147,1,1,128.0,1,37,37,9,9,116.5,0,0,0,1,0,0,18,0,0,5,9,3,11.666666666666666,0,0,5,15,2,11.0,0,7.6,2.6,0.32,Enrolled +1,39,1,9130,1,3,150.0,1,3,1,90,90,150.0,1,0,0,1,0,0,34,0,1,5,6,1,11.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,2,9670,1,1,122.0,1,1,19,4,4,116.1,0,0,0,1,1,1,19,0,0,6,10,6,13.125,0,0,6,9,6,12.714285714285714,0,11.1,0.6,2.02,Enrolled +1,39,1,9119,1,1,100.0,1,37,37,9,8,160.0,0,0,1,0,1,0,45,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9254,1,1,128.0,1,19,1,7,9,121.7,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.5,0,12.4,0.5,1.79,Graduate +1,1,3,9500,1,1,143.0,1,37,38,7,7,133.8,1,0,0,1,0,0,18,0,0,8,8,8,14.26875,0,0,8,8,8,14.26875,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9238,1,1,107.0,1,38,38,7,7,103.5,1,0,0,1,0,0,20,0,0,6,7,6,12.0,0,0,6,7,6,13.0,0,12.4,0.5,1.79,Graduate +1,39,2,9147,1,1,143.0,1,19,5,4,1,100.0,1,0,0,1,1,0,24,0,0,5,8,3,10.666666666666666,1,0,5,5,1,14.0,0,9.4,-0.8,-3.12,Dropout +2,39,1,9500,1,3,130.0,1,1,1,4,6,140.0,0,0,1,0,0,0,30,0,3,7,11,3,12.333333333333334,0,3,7,9,3,11.666666666666666,0,13.9,-0.3,0.79,Dropout +1,44,1,9085,1,39,160.0,1,1,1,5,4,160.0,1,1,0,0,1,0,19,0,2,6,6,6,14.0,0,1,6,11,6,13.5,0,12.4,0.5,1.79,Dropout +2,39,1,9500,1,19,133.1,1,38,38,2,10,120.0,0,0,0,1,0,0,37,0,0,7,9,2,10.75,0,0,7,9,0,0.0,0,16.2,0.3,-0.92,Dropout +1,5,2,9853,1,1,122.0,1,19,19,4,5,112.6,1,0,0,1,0,0,22,0,0,6,10,5,12.6,0,0,6,9,4,11.25,0,12.7,3.7,-1.7,Enrolled +1,17,3,9500,1,1,137.0,1,19,37,7,7,126.7,1,0,0,1,0,1,19,0,0,7,7,7,13.714285714285714,0,0,8,11,8,14.863636363636363,0,16.2,0.3,-0.92,Graduate +1,7,1,9070,1,40,120.0,1,1,19,3,9,120.0,1,0,0,1,0,0,21,0,9,13,14,13,13.615384615384617,1,6,12,12,12,14.25,0,13.9,-0.3,0.79,Graduate +1,43,1,9500,1,1,157.0,1,38,3,5,2,141.4,0,0,0,1,0,0,21,0,3,7,8,7,13.3875,0,2,8,8,8,15.9,0,13.9,-0.3,0.79,Graduate +2,1,2,8014,0,1,110.0,1,37,1,9,10,108.7,1,0,0,1,0,0,43,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,17,3,9500,1,1,129.0,1,19,37,7,6,120.0,1,0,0,1,0,1,19,0,0,8,8,7,13.151428571428571,0,0,8,8,7,13.151428571428571,0,10.8,1.4,1.74,Graduate +1,17,1,9070,1,1,108.0,1,19,1,4,3,111.9,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +2,39,1,9070,1,12,110.0,1,37,38,5,10,130.0,0,0,1,0,1,1,46,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9085,1,1,122.0,1,1,1,193,101,126.2,0,0,0,1,0,0,19,0,0,6,8,6,14.0,0,0,6,18,3,12.666666666666666,0,12.4,0.5,1.79,Graduate +1,17,1,171,1,1,145.0,1,4,4,3,3,143.6,0,0,1,1,1,0,19,0,5,12,12,10,12.7,0,4,11,16,10,12.272727272727272,0,8.9,1.4,3.51,Enrolled +1,7,1,9119,1,3,130.0,1,34,34,90,90,130.0,0,0,0,1,1,0,26,0,0,5,5,0,0.0,0,0,5,6,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,8014,0,39,120.0,1,19,37,7,6,121.8,1,0,0,1,0,0,22,0,3,6,6,6,12.5,0,2,6,7,6,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,142.0,1,37,38,9,9,137.5,1,0,0,1,1,0,19,0,0,5,10,5,12.0,0,0,5,9,5,11.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9130,1,1,138.0,1,3,19,2,4,131.0,1,0,0,1,1,0,19,0,0,6,8,4,11.6,0,0,6,14,2,13.0,0,11.1,0.6,2.02,Dropout +1,17,2,9853,1,1,125.0,1,1,19,5,5,119.4,1,0,0,1,0,0,18,0,0,7,10,7,12.142857142857142,0,0,7,7,7,13.142857142857142,0,12.4,0.5,1.79,Graduate +1,17,5,9500,1,1,137.0,1,1,1,5,4,131.1,1,0,0,1,0,0,18,0,0,7,9,7,12.385714285714286,0,0,8,9,7,12.728571428571428,0,13.9,-0.3,0.79,Enrolled +1,1,1,9670,1,1,133.0,1,38,38,9,9,128.1,1,0,0,1,1,1,18,0,0,6,6,6,13.0,0,0,6,6,6,13.0,0,13.9,-0.3,0.79,Dropout +4,39,1,9991,0,1,120.0,1,37,37,9,9,110.0,0,0,0,1,0,0,37,0,0,5,14,2,10.0,0,0,5,7,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,17,1,9130,1,1,138.0,1,2,19,2,6,126.3,1,0,0,1,0,1,18,0,0,6,7,6,12.833333333333334,1,0,6,8,6,13.0,0,8.9,1.4,3.51,Enrolled +1,17,4,9500,1,1,135.0,1,1,1,4,4,127.0,1,0,0,1,0,0,18,0,0,7,7,7,14.424285714285714,0,0,8,8,8,13.9375,0,11.1,0.6,2.02,Graduate +1,1,1,9130,1,1,140.0,1,4,3,3,3,127.8,0,0,0,1,1,0,18,0,0,6,7,6,14.285714285714286,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,5,1,9147,1,1,126.0,1,19,38,5,6,117.3,1,0,0,1,0,0,19,0,0,5,15,3,10.8,0,0,5,6,3,10.5,0,13.9,-0.3,0.79,Enrolled +1,39,1,9670,1,1,133.1,1,1,19,4,9,140.0,0,0,0,1,1,1,25,0,0,6,8,6,12.285714285714286,0,0,6,6,6,13.0,0,15.5,2.8,-4.06,Graduate +1,1,3,9500,1,1,126.0,1,38,38,9,8,118.8,1,0,0,1,0,1,19,0,0,8,8,7,12.785714285714286,0,0,8,8,7,12.785714285714286,0,12.7,3.7,-1.7,Graduate +2,42,1,9147,1,1,133.1,1,37,37,9,9,115.8,0,0,0,0,1,0,49,0,0,5,5,0,0.0,0,0,5,9,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,1,9853,1,1,126.0,1,1,37,7,9,132.7,0,0,0,1,0,1,18,0,0,6,7,6,12.666666666666666,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Graduate +1,17,1,9238,1,1,133.0,1,19,19,5,7,123.6,0,0,0,1,0,1,19,0,0,6,7,6,13.5,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +2,39,1,9238,1,1,120.0,1,37,37,9,9,116.0,0,0,0,1,0,0,44,0,0,6,8,6,13.0,0,0,6,6,6,13.833333333333334,0,12.7,3.7,-1.7,Graduate +1,17,4,9556,1,1,135.0,1,38,37,3,7,129.0,1,0,0,1,0,0,21,0,0,7,0,0,0.0,0,0,7,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,3,9070,1,1,110.0,1,37,37,9,9,107.6,1,0,0,1,1,1,22,0,0,6,6,6,11.666666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Enrolled +1,17,4,9147,1,1,135.0,1,19,1,0,4,128.7,1,0,0,1,1,0,22,0,0,5,8,2,10.5,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +2,1,1,8014,0,1,150.0,1,1,37,4,7,139.9,1,0,0,1,0,0,24,0,0,6,9,5,13.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,17,2,9147,1,1,116.0,1,1,38,4,3,114.6,1,0,0,1,0,0,19,0,0,5,15,2,10.75,0,0,5,11,2,10.0,0,13.9,-0.3,0.79,Dropout +1,17,1,9085,1,1,121.0,1,19,37,1,3,131.5,0,0,0,1,0,0,21,0,0,5,10,0,0.0,1,0,5,9,2,13.5,0,7.6,2.6,0.32,Dropout +1,39,1,9500,1,1,100.0,1,19,1,1,90,114.0,1,0,1,0,0,0,31,0,0,7,8,5,12.56,0,0,7,8,5,12.56,0,7.6,2.6,0.32,Dropout +1,17,4,9500,1,1,146.0,1,19,37,5,8,135.8,1,0,0,1,0,0,18,0,0,7,7,6,13.983333333333334,0,0,7,7,6,13.983333333333334,0,7.6,2.6,0.32,Graduate +1,44,1,9119,1,39,140.0,1,1,19,4,5,140.0,1,0,0,1,1,0,22,0,0,5,9,0,0.0,0,0,5,6,2,11.666666666666666,0,10.8,1.4,1.74,Enrolled +1,51,1,9670,1,1,136.0,1,19,19,5,5,122.0,0,0,1,0,0,0,18,0,0,5,6,2,12.5,0,0,5,6,4,10.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9003,1,1,133.1,1,19,19,4,4,107.5,0,0,0,0,0,0,35,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9070,1,1,164.0,1,38,38,9,7,165.8,1,0,0,1,0,0,18,0,0,6,7,6,14.166666666666666,0,0,6,7,6,14.857142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,2,9773,1,1,154.0,1,38,38,9,9,133.4,1,0,0,1,0,1,19,0,0,6,7,5,11.4,0,0,6,8,5,12.8,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,127.0,1,19,37,7,7,121.5,1,0,0,1,1,0,20,0,0,7,7,6,13.016666666666666,0,0,7,7,6,13.016666666666666,0,7.6,2.6,0.32,Enrolled +1,43,6,9238,1,1,129.0,1,34,34,0,0,125.2,0,0,0,1,0,1,23,0,15,16,18,16,13.0,0,11,13,15,13,13.266666666666667,0,9.4,-0.8,-3.12,Graduate +1,1,4,9238,1,1,125.0,1,19,1,4,5,122.6,1,1,0,1,0,0,18,0,0,6,9,5,11.833333333333334,0,0,6,8,2,11.5,0,13.9,-0.3,0.79,Enrolled +1,17,1,9070,1,1,136.0,1,38,19,7,7,121.7,1,0,0,1,0,0,18,0,0,6,6,2,13.0,0,0,6,6,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,2,9500,1,1,131.0,1,38,1,7,4,128.3,1,0,0,1,0,1,18,0,0,8,8,7,12.642857142857142,0,0,8,8,7,12.642857142857142,0,12.7,3.7,-1.7,Graduate +1,1,4,171,1,1,132.0,1,1,19,4,5,138.0,1,0,1,0,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9254,1,1,115.0,1,12,1,9,3,108.7,1,0,0,1,0,1,18,0,0,6,9,5,11.4,0,0,6,6,6,11.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,1,9147,1,1,131.0,1,1,37,3,7,120.2,0,0,0,1,0,0,19,0,0,5,10,5,13.285714285714286,0,0,5,8,5,13.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,134.0,1,1,1,4,9,124.2,1,0,1,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,12.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,1,1,9853,1,1,142.0,1,19,1,9,1,132.6,0,0,0,1,0,0,18,0,0,6,8,5,12.8,0,0,6,14,3,10.0,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9500,1,1,110.0,1,37,37,9,9,130.0,0,0,1,0,0,0,32,0,0,7,12,4,13.7,0,0,7,7,0,0.0,0,16.2,0.3,-0.92,Dropout +1,44,1,9130,1,39,150.0,1,2,1,3,6,150.0,1,0,0,1,1,0,22,0,11,18,32,12,12.857142857142858,1,8,12,15,10,14.3,0,16.2,0.3,-0.92,Graduate +1,39,1,9254,1,1,130.0,1,19,38,9,7,113.5,0,0,0,1,0,1,24,0,0,6,6,6,13.666666666666666,0,0,6,6,6,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,135.0,1,2,1,2,8,126.6,0,0,0,1,0,1,19,0,0,7,7,7,12.901428571428571,0,0,8,9,8,13.094444444444443,0,11.1,0.6,2.02,Graduate +1,39,1,9254,1,12,133.1,1,37,37,5,7,119.3,1,0,0,1,1,0,25,0,0,6,7,6,11.166666666666666,0,0,6,11,4,11.8,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9130,1,1,110.0,1,3,19,2,9,105.5,1,0,1,0,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9130,1,1,134.0,41,1,19,5,5,125.6,1,0,0,1,0,0,20,1,0,5,6,5,16.166666666666668,0,0,5,6,5,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,151.0,2,1,1,5,9,146.5,0,0,0,1,0,1,18,1,0,6,6,6,13.333333333333334,0,0,6,6,6,14.166666666666666,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,133.0,1,1,3,3,3,135.8,1,0,0,1,0,0,19,0,0,6,6,6,15.0,0,0,6,6,6,13.333333333333334,0,11.1,0.6,2.02,Graduate +1,7,1,9070,1,3,140.0,1,37,2,9,3,140.0,0,0,0,0,0,0,23,0,0,3,3,2,10.0,0,0,6,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,147.0,1,37,19,9,5,133.7,1,0,0,1,0,1,19,0,0,5,10,2,13.5,0,0,5,11,5,11.4,1,10.8,1.4,1.74,Enrolled +1,51,1,9500,1,1,127.0,1,19,1,5,9,150.0,0,0,0,1,0,1,19,0,0,7,9,5,13.85,0,0,8,9,7,12.19285714285714,0,11.1,0.6,2.02,Graduate +1,43,1,9238,1,1,143.0,1,1,37,5,9,126.6,0,0,1,0,0,0,21,0,5,10,18,8,11.5,0,0,6,12,4,10.0,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9003,1,39,160.0,1,37,38,9,9,160.0,0,0,1,1,0,1,19,0,0,6,8,6,13.0,0,0,6,11,5,13.0,0,15.5,2.8,-4.06,Graduate +4,39,1,8014,0,19,133.1,1,34,34,0,0,100.0,0,0,0,1,0,0,48,0,0,6,11,1,10.0,0,0,6,11,1,11.0,0,9.4,-0.8,-3.12,Dropout +4,43,1,9853,1,1,133.1,100,19,22,90,90,100.0,0,0,0,1,0,0,33,1,0,6,6,6,12.166666666666666,0,0,6,9,3,11.0,0,7.6,2.6,0.32,Dropout +2,43,1,9991,0,2,120.0,1,37,37,9,8,120.0,0,0,0,1,0,0,36,0,8,12,21,11,11.5,0,7,12,22,12,11.4375,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9130,1,40,129.0,1,3,3,2,2,155.3,1,0,0,1,0,0,27,0,0,6,9,5,13.0,0,5,11,13,10,12.9,0,12.4,0.5,1.79,Dropout +1,44,1,9003,1,39,150.0,1,38,37,9,9,150.0,1,0,0,1,1,0,20,0,0,6,8,6,13.125,0,0,6,10,6,13.2,0,16.2,0.3,-0.92,Graduate +1,44,1,9130,1,39,160.0,1,1,37,3,3,160.0,1,0,1,0,0,0,36,0,2,6,9,6,12.0,0,1,6,8,3,14.666666666666666,0,12.4,0.5,1.79,Dropout +2,39,1,9003,1,1,133.1,1,1,19,4,4,120.0,0,0,1,0,1,0,25,0,0,6,17,2,14.5,2,0,6,13,0,0.0,1,15.5,2.8,-4.06,Dropout +1,1,1,9853,1,1,115.0,1,19,38,9,9,108.0,0,0,0,1,0,1,19,0,0,7,10,6,13.0,0,0,7,7,7,13.285714285714286,0,12.4,0.5,1.79,Graduate +1,1,2,9238,1,1,134.0,1,1,19,4,5,126.0,0,0,0,1,0,0,18,0,0,6,10,4,11.0,0,0,6,8,5,11.2,0,10.8,1.4,1.74,Graduate +1,1,3,9773,1,1,135.0,1,38,38,5,8,133.3,1,0,0,1,0,1,18,0,0,6,6,6,14.833333333333334,0,0,6,6,6,14.166666666666666,0,8.9,1.4,3.51,Graduate +1,5,1,9670,1,1,135.0,1,1,12,4,4,140.3,1,0,0,1,0,0,19,0,0,6,7,6,13.428571428571429,0,0,6,6,4,14.0,0,12.4,0.5,1.79,Enrolled +1,39,1,9500,1,3,122.0,1,19,1,4,8,135.8,0,0,0,1,0,0,24,0,0,8,8,7,12.401428571428571,0,0,8,8,7,12.401428571428571,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,121.0,1,19,19,3,9,112.6,1,0,0,1,0,1,20,0,0,5,7,5,14.2,0,0,5,7,5,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,17,4,9773,1,1,147.0,1,1,1,4,5,139.7,1,0,0,1,1,0,18,0,0,6,10,5,11.6,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,10,1,9085,1,1,140.0,1,19,19,4,5,140.0,1,0,0,1,0,0,21,0,0,5,6,5,14.2,0,0,5,5,5,14.8,0,10.8,1.4,1.74,Graduate +1,39,1,9003,1,1,130.0,1,12,12,9,9,126.1,0,0,0,1,1,0,24,0,0,6,7,0,0.0,0,0,6,10,0,0.0,0,12.4,0.5,1.79,Dropout +1,43,2,9147,1,1,130.0,1,34,37,9,9,118.5,1,0,0,1,1,0,23,0,5,10,19,8,11.625,1,4,10,16,10,11.181818181818182,3,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,138.0,1,4,1,2,1,133.0,1,0,0,1,0,0,18,0,0,8,8,0,0.0,5,0,8,8,0,0.0,5,9.4,-0.8,-3.12,Enrolled +1,1,1,9147,1,1,138.0,1,37,37,194,171,131.0,1,0,0,1,0,0,19,0,0,5,9,4,11.0,0,0,5,8,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,147.0,1,38,19,5,8,147.3,0,0,0,1,0,0,18,0,0,7,7,6,13.966666666666669,0,0,7,7,6,13.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,6,9500,1,1,149.0,1,1,1,4,9,133.0,1,0,0,1,0,1,18,0,0,8,8,7,14.0,0,0,8,8,7,14.0,0,12.7,3.7,-1.7,Graduate +1,16,6,9773,1,1,136.0,1,38,14,0,0,129.7,1,0,0,1,0,0,21,0,0,6,6,6,13.166666666666666,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,130.0,1,1,34,9,9,124.8,1,0,0,1,0,1,20,0,0,6,7,5,12.8,0,0,6,6,6,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,111.0,1,1,1,3,3,112.4,1,0,0,1,1,0,20,0,0,6,10,6,12.333333333333334,0,0,6,9,4,13.0,0,12.4,0.5,1.79,Graduate +1,1,2,9670,1,1,121.0,1,1,19,4,7,135.4,1,0,0,1,0,1,19,0,0,6,6,6,13.333333333333334,0,0,6,10,5,13.4,0,8.9,1.4,3.51,Graduate +1,1,1,9556,1,1,135.0,1,37,38,7,9,125.8,0,0,0,1,0,1,20,0,0,7,14,7,10.642857142857142,0,0,8,8,8,11.55,0,12.7,3.7,-1.7,Graduate +1,1,1,171,1,1,136.0,1,37,19,5,8,129.0,1,0,0,1,1,1,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Graduate +1,17,4,9670,1,1,110.0,1,1,37,7,7,111.1,1,0,0,0,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,8,5,13.6,0,8.9,1.4,3.51,Graduate +1,1,3,9500,1,1,128.0,1,38,38,5,5,118.6,1,0,0,1,0,1,19,0,0,7,9,6,11.814285714285717,0,0,8,8,7,13.542857142857144,0,13.9,-0.3,0.79,Graduate +2,39,1,9500,1,19,133.1,1,37,38,9,10,120.9,1,0,0,1,0,0,39,0,0,7,12,4,12.0,0,0,7,13,4,12.5625,0,11.1,0.6,2.02,Dropout +1,5,3,9085,1,1,143.0,1,37,37,0,90,159.1,0,0,1,1,0,1,18,0,0,5,5,5,14.4,0,0,5,5,5,14.0,0,7.6,2.6,0.32,Dropout +4,39,1,9238,1,1,120.0,1,37,37,9,9,125.5,1,0,0,1,0,1,39,0,0,6,7,6,14.0,0,0,6,7,5,14.8,0,12.7,3.7,-1.7,Graduate +1,1,1,9853,1,1,126.0,1,3,1,2,5,116.9,1,1,0,1,0,0,18,0,0,7,10,6,10.666666666666666,0,0,7,12,6,12.833333333333334,0,13.9,-0.3,0.79,Enrolled +1,16,1,9556,1,1,137.0,1,37,37,9,7,122.7,1,0,0,1,0,1,18,0,0,7,7,7,15.285714285714286,0,0,8,8,8,16.075,0,12.4,0.5,1.79,Graduate +1,1,4,9500,1,1,136.0,1,1,1,9,9,123.8,1,0,0,1,0,1,19,0,0,8,8,7,13.314285714285717,0,0,8,8,7,13.314285714285717,0,12.7,3.7,-1.7,Graduate +4,39,1,9130,1,1,133.1,1,3,1,5,5,110.0,1,0,0,1,0,1,30,0,0,6,7,0,0.0,0,0,6,16,1,10.0,0,11.1,0.6,2.02,Dropout +1,17,4,9085,1,1,138.0,1,19,36,90,7,134.9,1,0,0,1,0,0,20,0,0,5,7,4,12.4,0,0,5,9,5,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,3,9070,1,1,130.0,1,1,4,4,2,131.4,0,0,0,1,1,0,20,0,0,6,6,6,14.166666666666666,0,0,6,8,6,12.333333333333334,0,11.1,0.6,2.02,Graduate +2,42,1,9853,1,1,133.1,1,37,37,4,7,100.0,0,0,0,1,0,0,34,0,6,12,18,11,13.0,0,4,13,22,8,11.875,0,12.7,3.7,-1.7,Dropout +1,1,1,171,1,1,115.0,1,1,1,9,9,134.3,1,0,0,1,1,0,25,0,16,17,19,17,11.61111111111111,0,14,17,22,17,12.055555555555555,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,108.0,1,1,38,5,8,105.9,0,0,0,1,0,1,20,0,0,6,11,5,10.6,0,0,6,9,5,11.166666666666666,0,11.1,0.6,2.02,Enrolled +1,39,1,9991,0,1,120.0,1,19,37,5,5,128.2,0,0,0,0,1,0,31,0,0,5,5,2,11.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +5,7,1,9130,1,3,160.0,1,19,38,9,6,160.0,0,0,0,0,0,0,27,0,1,5,8,3,14.666666666666666,2,0,5,7,2,13.0,2,10.8,1.4,1.74,Dropout +1,1,1,9130,1,1,121.0,1,3,19,2,9,115.4,1,0,0,1,1,0,18,0,0,6,8,6,13.714285714285714,0,0,6,7,5,13.333333333333334,0,15.5,2.8,-4.06,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..92db5db9a6143e84d4ca37f25e2fb4c176360620 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/val.csv @@ -0,0 +1,443 @@ +Marital status,Application mode,Application order,Course,Daytime/evening attendance,Previous qualification,Previous qualification (grade),Nacionality,Mother's qualification,Father's qualification,Mother's occupation,Father's occupation,Admission grade,Displaced,Educational special needs,Debtor,Tuition fees up to date,Gender,Scholarship holder,Age at enrollment,International,Curricular units 1st sem (credited),Curricular units 1st sem (enrolled),Curricular units 1st sem (evaluations),Curricular units 1st sem (approved),Curricular units 1st sem (grade),Curricular units 1st sem (without evaluations),Curricular units 2nd sem (credited),Curricular units 2nd sem (enrolled),Curricular units 2nd sem (evaluations),Curricular units 2nd sem (approved),Curricular units 2nd sem (grade),Curricular units 2nd sem (without evaluations),Unemployment rate,Inflation rate,GDP,Target +1,17,1,9254,1,1,118.0,1,11,34,5,0,122.2,1,0,0,1,0,0,22,0,0,6,10,4,10.5,0,0,6,14,1,11.0,0,7.6,2.6,0.32,Dropout +1,43,1,9238,1,1,120.0,1,1,38,4,3,118.3,0,0,0,1,0,1,20,0,8,11,12,11,12.0,0,6,11,14,11,12.75,0,13.9,-0.3,0.79,Graduate +1,1,4,9147,1,1,108.0,1,3,1,3,4,109.1,1,0,0,1,1,0,19,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,12.4,0.5,1.79,Dropout +1,7,1,9991,0,40,130.0,1,19,19,7,3,130.0,0,0,0,1,0,0,26,0,5,10,13,8,12.666666666666666,0,5,10,12,10,13.4,0,11.1,0.6,2.02,Graduate +2,39,1,9991,0,1,133.1,1,37,19,9,10,150.0,0,0,0,1,1,0,47,0,0,5,8,4,10.0,0,0,5,8,4,12.5,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9119,1,40,130.0,1,1,1,4,4,130.0,0,0,0,1,1,0,27,0,4,6,6,6,13.166666666666666,0,2,5,7,5,15.142857142857142,0,11.1,0.6,2.02,Dropout +1,1,1,9238,1,1,128.0,1,19,19,5,5,124.5,1,0,0,1,0,1,18,0,0,6,10,4,12.4,0,0,6,8,6,12.5,0,12.4,0.5,1.79,Graduate +1,43,1,9085,1,1,170.0,1,19,19,5,1,170.0,1,0,0,1,0,0,19,0,0,5,5,0,0.0,5,0,5,7,4,14.75,1,12.7,3.7,-1.7,Enrolled +1,1,3,9500,1,1,113.0,1,3,1,134,135,107.8,1,0,0,1,0,1,20,0,0,7,10,5,14.46,0,0,7,8,6,13.55,0,12.4,0.5,1.79,Enrolled +1,1,2,9670,1,1,117.0,1,37,37,9,9,111.8,0,0,0,1,0,0,22,0,0,5,8,3,12.0,0,0,5,9,2,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,1,1,9,4,126.2,1,0,0,1,0,0,18,0,0,6,6,6,11.666666666666666,0,0,6,6,5,12.2,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,145.0,1,19,38,7,6,128.6,1,0,0,1,0,1,19,0,0,6,12,5,11.714285714285714,0,0,6,11,6,11.0,0,12.7,3.7,-1.7,Graduate +1,7,1,9147,1,3,130.0,1,38,38,1,9,130.0,0,0,0,1,0,0,27,0,0,5,9,3,12.0,0,0,5,11,4,13.625,0,10.8,1.4,1.74,Graduate +1,43,1,9500,1,1,170.0,1,19,37,8,8,100.0,0,0,0,1,0,0,20,0,0,7,8,6,13.25,0,0,8,8,8,13.75,0,13.9,-0.3,0.79,Enrolled +1,17,1,9147,1,1,148.0,1,38,37,5,5,134.0,0,0,0,1,1,0,18,0,0,5,9,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Enrolled +1,17,5,9085,1,1,118.0,1,1,38,4,7,122.2,1,0,0,1,0,1,20,0,0,6,7,6,15.428571428571429,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,133.1,1,38,38,191,192,118.0,0,0,1,1,0,1,20,0,0,6,7,5,11.4,0,0,6,9,6,11.5,0,8.9,1.4,3.51,Graduate +1,18,1,9853,1,1,132.0,1,37,37,9,5,126.1,0,0,0,1,0,1,18,0,0,7,9,6,12.333333333333334,0,0,7,7,6,12.666666666666666,0,11.1,0.6,2.02,Graduate +6,39,1,8014,0,1,133.1,1,37,37,9,9,119.0,0,0,0,1,0,1,48,0,0,6,7,6,10.666666666666666,0,0,6,9,5,11.8,0,10.8,1.4,1.74,Enrolled +1,1,1,171,1,1,133.1,1,1,37,7,7,118.0,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,123.0,1,38,38,4,7,114.3,0,0,0,1,0,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9991,0,1,143.0,1,19,37,5,8,135.0,0,0,0,1,0,1,20,0,0,5,5,5,12.4,0,0,5,6,5,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9147,1,1,128.0,1,1,1,2,10,116.5,0,0,0,1,1,0,19,0,0,5,8,2,10.0,0,0,5,8,1,16.0,0,7.6,2.6,0.32,Dropout +2,39,1,9085,1,1,120.0,1,19,19,1,4,130.0,0,0,0,1,0,0,29,0,0,5,8,5,15.333333333333334,2,0,5,6,5,15.4,0,9.4,-0.8,-3.12,Dropout +2,39,1,171,1,19,100.0,1,37,37,9,9,139.0,0,0,0,1,1,0,36,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,3,9500,1,1,139.0,1,38,37,9,8,146.5,0,0,0,1,0,0,21,0,11,14,26,12,13.417391304347827,1,11,14,26,12,13.417391304347827,1,7.6,2.6,0.32,Graduate +1,1,1,9085,1,1,120.0,1,37,37,9,1,123.2,0,0,0,1,0,0,20,0,0,5,8,5,14.166666666666666,2,0,5,6,4,11.75,2,9.4,-0.8,-3.12,Graduate +1,39,1,9085,1,1,140.0,1,3,3,4,2,141.7,1,0,0,1,0,0,27,0,0,6,13,3,10.5,0,0,6,19,1,12.0,0,12.4,0.5,1.79,Dropout +1,1,1,9238,1,1,127.0,1,2,2,3,4,115.8,1,0,0,1,1,0,19,0,0,6,11,3,12.0,0,0,6,12,2,10.0,0,11.1,0.6,2.02,Dropout +1,1,1,9254,1,1,117.0,1,19,19,9,9,116.3,1,0,0,1,0,0,24,0,0,6,9,4,12.6,0,0,6,6,4,11.5,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,152.0,1,19,37,3,8,156.9,0,0,0,1,0,1,18,0,0,7,10,7,14.668,0,0,8,8,8,14.63375,0,15.5,2.8,-4.06,Graduate +1,1,1,9238,1,1,140.0,1,1,19,4,4,140.7,0,0,0,1,0,0,19,0,0,6,7,6,12.285714285714286,0,0,6,7,6,12.0,0,12.4,0.5,1.79,Graduate +1,1,2,9147,1,1,133.0,1,3,19,2,7,120.4,1,0,0,1,0,0,22,0,0,5,5,5,14.8,0,0,5,5,5,15.8,0,8.9,1.4,3.51,Graduate +1,39,1,9147,1,1,160.0,1,38,38,7,9,121.4,0,1,0,1,0,1,26,0,0,5,8,4,13.0,0,0,5,10,4,12.25,2,16.2,0.3,-0.92,Graduate +1,42,1,9500,1,1,120.0,1,1,2,9,3,130.0,1,0,0,1,0,0,22,0,4,8,8,7,13.285714285714286,0,4,8,8,7,13.285714285714286,0,12.7,3.7,-1.7,Graduate +1,17,2,9238,1,1,139.0,1,2,3,3,3,132.7,1,0,0,1,0,0,19,0,0,6,7,6,11.166666666666666,0,0,6,9,6,11.666666666666666,0,9.4,-0.8,-3.12,Graduate +1,39,1,8014,0,1,100.0,1,37,37,6,6,108.3,0,0,0,1,1,0,39,0,0,6,8,5,11.4,0,1,6,12,3,11.0,1,7.6,2.6,0.32,Enrolled +1,1,2,8014,0,1,107.0,1,19,11,0,0,103.5,1,0,0,1,0,0,22,0,0,6,7,5,13.4,0,0,6,9,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,5,9773,1,1,113.0,1,38,38,191,175,110.2,1,0,1,1,0,0,19,0,0,6,6,5,11.6,0,0,6,6,6,12.5,0,8.9,1.4,3.51,Graduate +1,39,1,9670,1,12,133.1,1,1,19,1,5,100.0,1,0,1,0,0,0,25,0,0,5,5,5,11.2,0,0,5,5,4,11.25,0,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,39,140.0,1,38,19,9,5,110.0,0,0,0,1,0,1,35,0,0,5,9,3,11.666666666666666,0,0,5,7,5,11.8,0,12.7,3.7,-1.7,Enrolled +1,18,2,9238,1,1,126.0,1,19,37,5,7,129.9,1,0,0,1,1,1,20,0,1,7,9,6,12.0,0,2,6,6,6,11.166666666666666,0,10.8,1.4,1.74,Graduate +1,18,1,9254,1,1,137.0,1,19,19,4,5,126.9,0,0,0,1,1,0,20,0,0,6,7,6,13.857142857142858,0,0,6,7,5,12.8,0,16.2,0.3,-0.92,Graduate +1,17,1,9773,1,1,121.0,1,37,37,9,9,122.4,0,0,0,1,0,0,18,0,0,6,7,6,12.857142857142858,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,51,1,9070,1,1,122.0,1,38,38,9,9,128.8,1,0,0,1,1,0,21,0,4,12,13,5,13.2,0,4,12,12,4,13.5,0,8.9,1.4,3.51,Dropout +1,1,1,9500,1,1,141.0,1,1,1,3,10,142.8,0,0,0,1,0,0,18,0,0,7,7,7,13.7,0,0,8,9,8,13.994444444444444,0,11.1,0.6,2.02,Graduate +2,39,1,9670,1,1,130.0,1,19,38,9,9,162.3,0,0,0,1,1,0,36,0,0,6,13,3,11.333333333333334,0,0,6,12,5,11.4,0,13.9,-0.3,0.79,Dropout +1,18,1,9853,1,1,133.1,1,1,19,141,182,106.0,1,0,1,1,0,0,21,0,0,7,7,7,13.0,0,0,7,8,6,12.5,0,8.9,1.4,3.51,Enrolled +1,17,1,9147,1,1,120.0,1,19,19,3,3,113.4,0,0,0,1,0,0,20,0,0,5,11,3,10.333333333333334,0,0,5,10,3,10.666666666666666,0,12.4,0.5,1.79,Enrolled +1,1,1,171,1,1,147.0,1,37,19,7,7,134.4,1,0,0,1,1,1,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,44,1,9003,1,1,120.0,1,1,3,144,123,120.0,0,0,0,1,1,0,19,0,0,6,17,1,11.0,0,0,6,19,0,0.0,0,16.2,0.3,-0.92,Enrolled +1,17,4,9500,1,1,137.0,1,1,37,9,9,128.4,1,0,0,1,0,1,19,0,0,7,7,7,13.385714285714286,0,0,8,8,8,15.925,0,13.9,-0.3,0.79,Graduate +1,39,1,9238,1,19,133.1,1,37,37,9,9,120.0,0,1,1,1,0,0,40,0,0,6,13,2,10.0,0,0,6,10,1,15.0,0,16.2,0.3,-0.92,Dropout +4,39,1,9085,1,1,140.0,1,37,37,9,9,154.6,0,0,0,0,0,1,44,0,0,6,12,4,12.75,0,0,6,15,2,10.0,0,8.9,1.4,3.51,Enrolled +1,39,1,9003,1,19,133.1,1,37,19,9,7,134.3,0,0,0,1,1,0,25,0,0,6,15,1,11.0,0,0,6,13,4,11.75,0,12.4,0.5,1.79,Dropout +1,39,1,9119,1,1,130.0,1,19,37,9,4,149.0,1,0,0,1,1,0,33,0,0,5,10,4,12.0,0,0,5,8,3,13.666666666666666,1,7.6,2.6,0.32,Enrolled +1,17,1,9254,1,1,115.0,1,1,19,3,3,109.4,1,0,0,1,0,0,19,0,0,6,8,6,12.666666666666666,0,0,6,8,5,13.4,0,11.1,0.6,2.02,Graduate +1,17,1,9003,1,1,126.0,1,37,3,5,2,116.9,0,0,0,1,1,0,19,0,0,6,10,6,13.666666666666666,0,0,6,10,4,12.25,0,13.9,-0.3,0.79,Dropout +1,1,1,9670,1,1,128.0,1,1,1,2,2,130.8,1,0,0,1,0,0,20,0,0,5,5,4,15.0,0,0,5,5,4,13.75,0,7.6,2.6,0.32,Dropout +1,1,1,9254,1,1,127.0,1,19,19,4,6,120.7,0,0,1,0,0,0,22,0,0,6,10,5,11.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,43,1,9238,1,1,110.0,1,14,14,90,90,112.5,1,0,0,1,0,0,20,0,8,10,14,9,12.333333333333334,0,3,7,10,7,11.77777777777778,0,7.6,2.6,0.32,Graduate +1,17,1,9085,1,1,142.0,1,3,19,5,5,130.8,1,0,0,1,0,0,18,0,0,5,9,3,13.666666666666666,1,0,5,5,5,12.0,0,12.7,3.7,-1.7,Graduate +1,39,1,9130,1,1,150.0,1,1,1,4,10,110.0,0,0,1,1,1,0,24,0,0,5,13,2,12.5,2,0,5,8,3,12.333333333333334,0,9.4,-0.8,-3.12,Dropout +1,1,5,9238,1,3,135.0,1,1,38,9,3,129.4,0,0,1,1,0,0,18,0,0,6,6,6,12.166666666666666,0,0,6,6,6,12.333333333333334,0,10.8,1.4,1.74,Graduate +1,1,2,9500,1,1,133.0,1,19,37,1,9,128.5,1,0,0,1,0,1,19,0,0,8,8,8,14.07125,0,0,8,8,8,14.07125,0,9.4,-0.8,-3.12,Graduate +1,39,2,9991,0,1,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,27,0,0,5,10,0,0.0,0,0,5,5,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,1,9773,1,1,136.0,1,1,38,9,8,131.5,1,0,0,1,0,0,18,0,0,6,7,6,12.571428571428571,0,0,6,8,6,11.857142857142858,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,138.0,1,37,38,9,8,134.2,1,0,0,1,0,1,18,0,0,6,6,6,15.166666666666666,0,0,6,7,6,14.142857142857142,0,11.1,0.6,2.02,Graduate +1,7,2,9500,1,3,140.0,1,37,38,9,9,138.0,0,0,0,1,1,0,28,0,0,7,7,7,14.114285714285714,0,0,8,9,8,15.91111111111111,0,16.2,0.3,-0.92,Dropout +1,43,1,9003,1,1,120.0,1,1,1,4,10,134.4,0,0,0,1,1,0,24,0,0,6,7,6,15.714285714285714,0,0,6,10,6,15.9,0,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,140.0,1,19,19,9,9,124.3,1,0,0,1,0,1,18,0,0,5,8,4,10.75,0,0,5,5,5,13.0,0,12.4,0.5,1.79,Graduate +1,17,3,9254,1,1,127.0,1,12,38,5,7,116.9,1,0,1,1,0,0,18,0,0,6,7,5,12.2,0,0,6,10,4,12.25,0,12.4,0.5,1.79,Dropout +1,17,1,9238,1,1,145.0,1,38,38,9,7,145.0,0,0,0,1,0,1,19,0,0,6,7,6,12.833333333333334,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +2,39,1,8014,0,1,140.0,1,19,19,9,7,102.5,0,0,0,1,0,1,32,0,0,6,6,6,11.333333333333334,0,0,6,8,5,13.0,0,15.5,2.8,-4.06,Graduate +1,17,6,9500,1,1,131.0,1,1,19,7,7,126.5,1,0,0,1,0,1,19,0,0,7,8,7,13.875714285714285,0,0,8,9,7,13.085714285714284,0,11.1,0.6,2.02,Graduate +1,1,2,9500,1,1,124.0,1,34,34,0,0,123.3,1,0,0,1,0,1,20,0,0,8,8,7,14.901428571428571,1,0,8,8,7,14.901428571428571,1,9.4,-0.8,-3.12,Dropout +2,39,1,9991,0,1,120.0,1,37,3,9,3,168.2,0,0,0,1,1,0,45,0,0,5,6,5,14.0,0,0,5,6,5,14.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,5,9773,1,1,118.0,1,38,19,9,9,113.8,1,0,0,1,0,0,19,0,0,6,7,6,12.333333333333334,0,0,6,7,6,12.5,0,8.9,1.4,3.51,Graduate +1,1,4,9500,1,1,122.0,1,19,38,7,7,117.1,1,0,0,1,0,1,18,0,0,7,7,7,14.572857142857142,0,0,8,9,8,14.955555555555556,0,12.4,0.5,1.79,Graduate +1,1,1,9254,1,1,115.0,1,19,1,3,7,113.6,0,0,0,1,1,0,23,0,0,6,10,6,13.0,0,0,6,9,6,12.0,0,11.1,0.6,2.02,Enrolled +1,17,2,9254,1,1,141.0,1,1,4,4,4,127.7,0,0,0,1,0,1,18,0,0,6,7,6,11.285714285714286,0,0,6,9,4,13.5,0,16.2,0.3,-0.92,Graduate +1,44,1,8014,0,39,130.0,1,37,38,6,6,130.0,1,0,0,1,0,0,23,0,5,9,10,9,10.88888888888889,0,3,8,10,6,11.333333333333334,0,11.1,0.6,2.02,Graduate +1,17,2,9556,1,1,120.0,1,37,37,5,5,111.3,1,0,0,1,0,0,32,0,0,7,7,0,0.0,0,0,8,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,171,1,1,145.0,1,1,19,10,5,150.6,1,0,0,1,1,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,10.8,1.4,1.74,Graduate +1,1,2,9147,1,1,129.0,1,38,19,3,7,118.9,1,0,0,1,0,0,19,0,0,5,8,4,12.8,0,0,5,10,3,14.5,0,10.8,1.4,1.74,Enrolled +1,1,5,9085,1,1,121.0,1,38,37,9,8,114.0,1,0,0,0,0,0,19,0,0,5,12,0,0.0,4,0,5,8,0,0.0,1,9.4,-0.8,-3.12,Dropout +1,17,1,9254,1,1,126.0,1,1,1,9,9,124.3,0,0,0,1,0,1,19,0,0,6,8,6,11.166666666666666,0,0,6,7,4,13.4,0,16.2,0.3,-0.92,Graduate +1,1,3,9773,1,1,149.0,1,1,3,0,0,148.7,0,0,0,0,1,0,20,0,0,4,4,0,0.0,0,0,4,8,0,0.0,0,10.8,1.4,1.74,Dropout +1,17,2,9147,1,1,125.0,1,38,38,6,8,114.5,1,0,0,1,0,1,19,0,0,5,6,5,13.4,0,0,5,5,5,12.4,0,12.4,0.5,1.79,Graduate +1,16,3,9085,1,1,130.0,1,37,37,9,2,119.5,1,0,0,1,0,1,18,0,0,6,14,6,14.333333333333334,0,0,6,9,6,12.0,0,15.5,2.8,-4.06,Graduate +1,1,6,9500,1,1,145.0,1,19,37,9,9,132.3,1,0,0,1,0,1,19,0,0,8,8,7,14.06,0,0,8,8,7,14.06,0,10.8,1.4,1.74,Enrolled +1,17,1,9773,1,1,128.0,1,19,38,5,7,125.6,1,0,0,1,1,0,19,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9254,1,1,135.0,1,38,37,9,7,139.2,0,0,0,1,1,1,19,0,0,6,6,6,13.0,0,0,6,6,6,13.166666666666666,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,139.0,1,37,38,6,6,121.3,1,0,0,1,0,1,19,0,0,8,10,6,11.833333333333334,0,0,8,10,6,11.833333333333334,0,9.4,-0.8,-3.12,Enrolled +1,44,1,9070,1,39,150.0,1,12,37,3,9,147.7,0,0,1,1,0,1,22,0,2,7,7,7,13.571428571428571,0,5,9,9,9,13.77777777777778,0,12.4,0.5,1.79,Graduate +1,1,1,9670,1,1,110.0,1,3,19,4,5,109.0,0,0,0,1,1,1,19,0,0,6,7,6,13.142857142857142,0,0,6,8,6,14.166666666666666,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,133.1,1,38,38,5,9,105.0,1,0,0,1,0,0,20,0,0,6,9,6,13.285714285714286,0,0,6,8,5,13.8,0,15.5,2.8,-4.06,Graduate +2,51,1,9991,0,1,127.0,1,37,37,8,4,100.1,0,0,0,1,0,0,31,0,1,5,5,5,14.0,0,0,5,5,5,13.8,0,8.9,1.4,3.51,Graduate +1,17,1,171,1,1,135.0,1,19,1,4,1,131.9,1,0,0,1,1,0,19,0,6,12,12,12,13.583333333333334,0,4,11,12,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +4,39,1,9556,1,1,160.0,1,19,3,9,2,130.0,0,0,0,1,0,0,25,0,0,7,14,7,11.95,0,0,8,15,7,12.042857142857144,0,12.7,3.7,-1.7,Enrolled +1,17,5,9119,1,1,123.0,1,3,1,2,9,116.0,1,0,1,0,1,0,20,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,8.9,1.4,3.51,Dropout +1,43,1,9500,1,1,140.0,1,19,19,7,7,138.6,0,0,0,1,0,1,19,0,0,7,9,6,14.25,0,0,8,11,8,13.063636363636364,0,16.2,0.3,-0.92,Graduate +1,17,3,9238,1,1,141.0,1,19,38,9,7,125.6,1,0,0,1,0,1,19,0,0,6,8,6,11.333333333333334,0,0,6,6,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,39,1,9500,1,3,130.0,1,2,2,1,1,130.0,0,0,0,1,0,0,29,0,1,8,8,7,14.257142857142856,0,1,8,8,7,14.257142857142856,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,7,9,111.0,0,0,0,0,1,0,28,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9070,1,1,148.0,1,1,1,4,8,141.4,0,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,3,9147,1,1,115.0,1,1,38,3,8,109.8,1,0,0,1,0,1,19,0,0,5,5,5,13.4,0,0,5,5,5,12.6,0,8.9,1.4,3.51,Graduate +1,7,3,9130,1,3,130.0,1,19,37,90,5,130.0,0,0,1,0,0,0,27,0,1,5,6,2,11.5,0,0,5,5,1,11.0,0,12.7,3.7,-1.7,Dropout +1,1,5,9500,1,1,141.0,1,38,19,7,7,132.5,1,0,0,0,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9147,1,1,133.0,1,19,37,9,9,129.9,0,0,0,1,1,0,18,0,0,5,5,5,11.6,0,0,5,5,5,13.2,0,12.4,0.5,1.79,Graduate +1,1,1,9773,1,1,142.0,1,19,37,4,7,141.3,0,0,0,1,0,1,19,0,0,6,7,6,14.714285714285714,0,0,6,6,6,15.166666666666666,0,13.9,-0.3,0.79,Graduate +1,44,1,9003,1,39,130.0,1,37,37,9,10,130.0,0,0,0,1,1,0,25,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,19,38,7,4,125.7,0,0,0,1,0,0,26,0,0,5,9,2,12.0,0,0,5,9,3,11.0,0,10.8,1.4,1.74,Dropout +1,1,1,9085,1,1,129.0,1,19,37,9,9,117.5,1,0,0,1,0,0,19,0,0,5,9,5,13.6,1,0,5,5,5,12.4,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,103.0,1,1,19,9,9,108.3,0,0,0,1,0,1,20,0,0,7,14,0,0.0,0,0,7,15,0,0.0,0,11.1,0.6,2.02,Enrolled +1,1,1,9853,1,1,133.1,1,19,19,9,9,97.0,1,0,0,1,0,0,23,0,0,6,9,5,11.6,0,0,6,9,3,11.0,0,12.7,3.7,-1.7,Dropout +2,7,1,9238,1,3,150.0,1,37,37,191,192,150.0,0,0,0,1,0,0,31,0,1,6,12,5,12.5,0,0,6,10,5,14.6,0,12.7,3.7,-1.7,Graduate +1,43,1,9991,0,39,160.0,1,37,37,9,9,160.0,0,0,0,1,0,0,24,0,3,10,16,3,11.666666666666666,0,3,10,24,6,11.833333333333334,0,9.4,-0.8,-3.12,Dropout +1,39,1,9085,1,12,133.1,1,34,34,99,99,128.2,0,0,1,0,1,0,27,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,1,2,9070,1,1,129.0,1,3,4,2,2,136.4,1,0,0,1,0,0,18,0,0,6,6,6,12.333333333333334,0,0,6,6,6,12.833333333333334,0,7.6,2.6,0.32,Enrolled +1,39,2,9147,1,38,133.1,1,19,38,9,9,102.5,0,0,0,0,1,0,26,0,0,4,4,0,0.0,0,0,5,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,17,1,9853,1,1,133.1,1,34,34,0,0,118.9,1,0,0,1,0,0,21,0,0,6,12,3,11.333333333333334,0,0,6,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,135.0,1,19,38,9,9,129.2,0,0,0,1,0,1,18,0,0,7,7,7,14.145714285714286,0,0,8,9,8,13.627777777777778,0,11.1,0.6,2.02,Graduate +1,1,1,171,1,1,122.0,1,37,37,9,3,115.7,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,42,1,9853,1,1,120.0,1,1,19,4,7,111.3,0,0,0,1,0,0,24,0,9,13,17,10,11.5,0,7,13,18,9,10.444444444444445,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,141.0,1,38,19,9,10,125.6,1,0,0,1,0,1,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,9.4,-0.8,-3.12,Graduate +1,17,4,9500,1,1,133.0,1,19,19,3,10,131.1,1,0,0,1,0,0,18,0,0,7,7,7,13.971428571428572,0,0,8,8,8,15.75,0,13.9,-0.3,0.79,Graduate +1,1,2,9500,1,1,106.0,1,1,19,4,4,106.4,1,0,0,1,0,1,19,0,0,7,9,5,13.34,0,0,7,9,6,12.385714285714286,0,12.4,0.5,1.79,Enrolled +2,39,1,9147,1,1,133.1,1,37,37,9,9,140.0,0,0,0,0,0,0,35,0,0,5,8,4,12.5,1,0,5,8,5,11.8,0,9.4,-0.8,-3.12,Dropout +1,51,1,9070,1,1,130.0,1,3,1,2,8,122.2,0,0,1,1,0,0,20,0,4,10,12,10,13.0,0,5,11,11,11,12.272727272727272,0,11.1,0.6,2.02,Graduate +1,17,6,9500,1,1,143.0,1,38,1,9,10,127.3,1,0,0,1,0,0,18,0,0,7,8,7,12.217142857142855,0,0,8,11,7,12.11875,0,11.1,0.6,2.02,Graduate +1,1,1,9670,1,1,154.0,1,1,1,5,7,154.7,0,0,0,1,0,1,18,0,0,5,6,5,11.8,0,0,5,5,5,12.6,0,9.4,-0.8,-3.12,Graduate +1,7,1,9991,0,40,120.0,1,37,37,9,7,120.0,0,0,0,1,0,0,32,0,0,5,7,5,11.6,0,0,5,8,5,12.333333333333334,0,12.4,0.5,1.79,Graduate +1,1,1,9238,1,1,151.0,1,37,1,9,9,138.4,1,0,0,1,0,1,20,0,0,6,8,6,14.25,0,0,6,8,6,11.0,0,12.7,3.7,-1.7,Graduate +2,39,2,9003,1,19,133.1,1,38,19,4,1,110.0,0,0,0,0,1,0,32,0,2,8,12,2,11.5,2,0,7,9,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,1,9119,1,1,129.0,1,12,1,4,10,124.1,1,0,0,1,1,0,19,0,0,5,10,0,0.0,0,0,5,10,1,14.0,3,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,120.0,1,37,37,4,9,117.1,1,0,0,1,0,1,18,0,0,6,10,5,10.571428571428571,1,0,6,9,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9085,1,1,133.1,1,3,1,4,9,105.0,1,0,0,1,1,0,21,0,0,6,15,3,11.25,0,0,6,9,0,0.0,0,12.4,0.5,1.79,Enrolled +1,17,1,9147,1,1,120.0,1,38,38,9,8,118.3,0,0,0,1,1,0,18,0,0,5,13,1,10.0,0,0,5,5,1,10.0,0,12.7,3.7,-1.7,Dropout +1,18,1,9147,1,1,147.0,1,19,1,9,7,139.3,1,0,0,1,1,0,20,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,140.0,1,19,19,5,5,131.3,0,0,0,1,1,1,22,0,1,6,6,6,12.666666666666666,0,1,6,6,5,12.4,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,133.0,1,38,19,9,8,128.8,1,0,0,1,1,0,18,0,0,7,8,7,11.8375,0,0,8,9,8,12.48125,0,13.9,-0.3,0.79,Graduate +1,17,1,9254,1,1,127.0,1,1,1,4,8,126.7,1,0,0,0,1,0,22,0,0,1,1,0,0.0,0,0,6,0,0,0.0,0,12.4,0.5,1.79,Dropout +1,17,2,9147,1,1,131.0,1,1,19,4,5,120.2,1,0,0,1,0,0,21,0,0,5,10,4,11.75,0,0,5,6,5,11.6,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,143.0,1,38,38,5,5,133.9,0,0,0,1,0,0,18,0,0,7,7,7,15.014285714285714,0,0,8,8,8,16.0875,0,12.4,0.5,1.79,Graduate +4,39,1,9147,1,1,140.0,1,37,37,9,9,142.8,0,0,0,1,0,0,43,0,0,5,5,5,16.4,0,0,5,5,5,16.6,0,7.6,2.6,0.32,Graduate +1,1,2,9500,1,1,138.0,1,19,1,5,5,128.0,1,0,0,1,0,0,19,0,0,7,7,7,14.20857142857143,0,0,8,9,8,15.127777777777778,0,11.1,0.6,2.02,Graduate +1,43,1,9500,1,1,150.0,1,37,37,9,9,130.8,1,0,0,1,0,1,21,0,0,8,8,7,14.428571428571429,0,0,8,8,7,14.428571428571429,0,12.7,3.7,-1.7,Graduate +1,1,1,9238,1,1,160.0,1,19,38,9,9,152.0,0,0,0,1,1,1,19,0,0,6,7,6,13.857142857142858,0,0,6,6,6,14.0,0,13.9,-0.3,0.79,Graduate +1,42,1,9254,1,1,154.0,1,38,37,1,1,154.0,1,0,0,1,0,0,28,0,8,14,22,12,12.333333333333334,0,3,12,20,8,12.0,0,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,141.0,1,37,37,4,4,138.9,0,0,0,1,0,0,21,0,0,6,7,6,13.333333333333334,0,0,6,6,6,14.5,0,10.8,1.4,1.74,Graduate +1,1,4,9500,1,1,135.0,1,38,37,9,8,126.3,1,0,0,1,0,1,19,0,0,7,7,6,15.433333333333332,0,0,7,7,6,15.433333333333332,0,7.6,2.6,0.32,Graduate +1,17,2,9853,1,1,138.0,1,1,1,9,4,123.0,1,0,0,1,0,0,23,0,0,6,10,5,12.8,0,0,6,9,3,11.666666666666666,0,10.8,1.4,1.74,Dropout +2,1,1,9085,1,1,139.0,1,19,19,192,144,127.1,0,0,0,1,1,1,23,0,0,5,6,5,11.8,0,0,5,7,4,13.25,1,10.8,1.4,1.74,Graduate +1,17,4,9070,1,1,116.0,1,38,37,9,9,109.0,0,0,0,1,0,1,23,0,0,6,6,6,13.333333333333334,0,0,6,8,3,12.666666666666666,0,11.1,0.6,2.02,Dropout +1,44,1,9003,1,39,140.0,1,38,38,6,3,140.0,0,0,0,1,0,0,19,0,0,6,18,3,11.666666666666666,0,0,6,14,4,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9254,1,1,120.0,1,19,19,4,4,125.5,0,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,8,3,11.333333333333334,0,12.7,3.7,-1.7,Enrolled +1,43,1,9991,0,1,120.0,1,37,37,9,8,122.5,1,0,0,1,0,0,29,0,8,13,16,8,10.5,0,8,12,19,9,10.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,17,1,9070,1,1,136.0,1,1,37,4,5,130.8,0,0,0,1,0,0,20,0,0,6,6,6,12.5,0,0,6,8,6,11.5,0,10.8,1.4,1.74,Enrolled +1,1,1,9238,1,1,116.0,1,38,19,8,10,110.8,1,0,0,1,1,0,19,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9853,1,1,146.0,1,19,38,9,3,145.3,1,0,0,1,0,1,18,0,0,6,8,5,12.8,0,0,6,7,5,13.4,0,9.4,-0.8,-3.12,Enrolled +1,39,1,9991,0,1,150.0,1,37,37,9,7,150.0,0,0,0,1,0,0,27,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9670,1,1,124.0,1,1,19,5,4,124.4,0,0,0,1,0,0,19,0,0,5,5,5,14.2,0,0,5,5,5,14.2,0,7.6,2.6,0.32,Graduate +1,39,1,8014,0,1,133.1,1,37,38,9,9,148.5,0,0,0,1,1,0,34,0,0,6,6,4,12.25,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,1,1,9500,1,1,148.0,1,1,1,9,9,127.0,1,0,0,1,1,0,20,0,0,8,8,7,12.84142857142857,0,0,8,8,7,12.84142857142857,0,10.8,1.4,1.74,Graduate +4,1,1,8014,0,1,133.1,1,39,19,4,10,143.0,1,0,0,1,0,1,47,0,0,6,9,5,14.166666666666666,0,0,6,7,6,14.166666666666666,0,16.2,0.3,-0.92,Graduate +1,1,1,9500,1,1,133.1,1,1,19,3,5,115.0,0,0,0,0,1,0,20,0,0,7,11,4,12.6,0,0,7,7,4,11.575,0,16.2,0.3,-0.92,Dropout +2,44,1,9003,1,39,160.0,1,37,38,9,4,160.0,0,0,0,1,0,0,43,0,0,6,8,6,14.166666666666666,0,0,6,9,6,15.0,0,15.5,2.8,-4.06,Graduate +1,16,3,9070,1,1,152.0,1,1,38,4,8,156.9,1,0,0,1,0,0,19,0,0,6,6,6,15.333333333333334,0,0,6,9,6,15.833333333333334,0,12.7,3.7,-1.7,Graduate +1,39,1,9991,0,1,133.1,1,37,37,9,9,126.3,0,0,0,1,0,1,26,0,0,5,7,0,0.0,0,0,5,8,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,5,9773,1,1,131.0,1,1,38,9,5,132.4,1,0,1,0,1,0,18,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,11.1,0.6,2.02,Dropout +1,39,1,9556,1,1,140.0,1,37,37,9,8,105.0,1,0,0,1,0,1,36,0,0,7,11,6,12.35,0,0,7,12,5,12.5,0,8.9,1.4,3.51,Graduate +1,1,3,9070,1,1,128.0,1,19,19,3,3,129.8,1,0,0,1,0,0,20,0,0,6,6,6,11.833333333333334,0,0,6,6,3,13.333333333333334,0,9.4,-0.8,-3.12,Enrolled +1,1,2,9500,1,1,133.1,1,19,38,7,9,125.5,1,0,0,1,0,1,21,0,0,7,9,7,13.2,0,0,8,9,7,13.2575,0,15.5,2.8,-4.06,Graduate +1,44,1,9238,1,39,140.0,1,38,37,7,7,143.0,0,0,0,1,0,0,19,0,3,6,6,6,13.333333333333334,0,2,6,6,6,14.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,139.0,1,19,38,4,9,146.7,1,0,0,1,0,1,20,0,0,6,6,6,13.333333333333334,0,0,6,7,6,14.0,0,15.5,2.8,-4.06,Graduate +1,17,1,9085,1,1,129.0,1,1,37,9,9,118.2,1,0,0,1,0,1,18,0,0,5,7,4,13.25,0,0,5,8,5,15.571428571428571,0,10.8,1.4,1.74,Graduate +1,43,1,9238,1,1,142.0,1,34,34,99,99,131.9,0,0,0,1,0,1,29,0,9,16,17,16,12.588235294117649,0,10,13,14,13,13.357142857142858,0,9.4,-0.8,-3.12,Graduate +1,1,3,9500,1,1,139.0,1,1,19,9,3,130.3,1,0,0,1,0,1,18,0,0,8,8,8,14.15375,0,0,8,8,8,14.15375,0,9.4,-0.8,-3.12,Graduate +1,39,1,9991,0,1,120.0,1,19,38,5,5,152.4,0,0,0,1,1,0,27,0,0,5,5,5,15.2,0,0,5,6,5,14.166666666666666,0,10.8,1.4,1.74,Graduate +1,1,1,9085,1,1,149.0,1,19,19,4,6,147.6,1,0,0,1,0,0,20,0,0,6,14,6,13.923076923076923,0,0,6,9,6,14.25,0,15.5,2.8,-4.06,Graduate +1,51,1,8014,0,2,110.0,1,19,38,9,10,110.0,0,0,0,1,1,0,42,0,8,12,12,11,14.454545454545457,0,7,11,11,10,14.2,0,11.1,0.6,2.02,Graduate +1,17,3,9119,1,1,135.0,1,1,19,141,193,121.7,1,0,0,1,1,0,18,0,0,5,7,5,11.8,0,0,5,9,3,12.0,0,8.9,1.4,3.51,Enrolled +1,1,4,9773,1,1,122.0,1,19,19,9,7,121.0,1,0,0,1,0,0,20,0,0,6,7,6,13.571428571428571,0,0,6,6,6,13.333333333333334,0,13.9,-0.3,0.79,Graduate +1,7,1,9003,1,3,120.0,1,1,19,4,1,120.0,1,0,0,1,1,0,27,0,14,18,21,18,11.421052631578949,0,10,13,16,13,11.076923076923077,1,15.5,2.8,-4.06,Graduate +1,17,4,9500,1,1,140.0,1,19,37,4,8,133.3,1,0,0,1,0,0,19,0,0,7,7,6,11.966666666666669,0,0,7,7,6,11.966666666666669,0,7.6,2.6,0.32,Graduate +1,1,1,9254,1,1,121.0,1,1,1,5,4,111.9,1,0,0,0,1,0,20,0,0,6,14,2,10.5,0,0,6,16,0,0.0,0,10.8,1.4,1.74,Dropout +1,39,1,9119,1,3,130.0,1,1,38,90,90,143.4,0,0,0,1,1,0,29,0,0,3,3,0,0.0,3,0,5,0,0,0.0,0,10.8,1.4,1.74,Dropout +1,44,1,9238,1,1,120.0,1,37,37,6,9,121.0,0,0,0,1,0,1,21,0,3,6,6,6,12.333333333333334,0,2,6,8,6,11.333333333333334,0,13.9,-0.3,0.79,Graduate +1,1,1,9085,1,1,154.0,1,38,37,4,4,141.4,0,0,0,1,0,1,19,0,0,6,8,6,15.0,0,0,6,9,6,14.857142857142858,0,11.1,0.6,2.02,Graduate +1,7,1,8014,0,40,130.0,1,19,1,5,10,130.0,1,0,1,0,0,0,23,0,7,12,12,11,14.0,0,4,10,11,8,14.625,0,13.9,-0.3,0.79,Dropout +1,39,1,9085,1,1,133.1,1,1,1,4,4,120.0,0,0,1,0,1,0,31,0,0,5,13,4,13.5,1,0,5,12,3,11.666666666666666,1,9.4,-0.8,-3.12,Dropout +1,17,1,9238,1,1,120.0,1,37,1,9,5,113.4,1,0,0,1,0,1,20,0,0,6,10,5,11.857142857142858,0,0,6,8,6,11.666666666666666,0,12.7,3.7,-1.7,Graduate +1,1,5,9500,1,1,139.0,1,38,37,7,7,126.3,1,0,0,1,0,1,18,0,0,8,8,8,13.435,0,0,8,8,8,13.435,0,9.4,-0.8,-3.12,Graduate +1,1,1,9500,1,1,135.0,1,38,19,194,193,135.4,1,0,0,1,1,0,21,0,0,7,9,6,12.565,0,0,8,12,5,12.16,0,11.1,0.6,2.02,Enrolled +1,44,1,9003,1,39,150.0,1,3,2,2,2,150.0,0,0,0,1,1,0,25,0,9,14,16,14,12.428571428571429,0,3,9,13,6,10.857142857142858,0,15.5,2.8,-4.06,Dropout +2,43,1,9991,0,3,130.0,1,37,37,9,9,130.0,0,0,0,1,0,0,41,0,5,10,11,10,14.3,0,5,10,10,10,14.2,0,12.7,3.7,-1.7,Graduate +1,43,1,9500,1,1,130.0,1,1,1,7,4,136.0,1,0,0,1,1,0,22,0,0,8,9,8,12.55375,1,0,8,9,8,12.55375,1,9.4,-0.8,-3.12,Graduate +1,39,1,9003,1,3,130.0,1,3,3,1,2,150.0,0,0,0,1,0,0,35,0,0,6,10,6,14.0,0,0,6,11,6,13.1,0,16.2,0.3,-0.92,Graduate +1,17,2,9147,1,1,123.0,1,1,38,4,7,115.3,1,0,0,1,0,1,18,0,0,5,9,3,13.0,0,0,5,11,3,11.0,0,8.9,1.4,3.51,Enrolled +1,1,5,9500,1,1,101.0,1,38,38,9,9,104.5,1,0,0,1,0,1,21,0,0,7,9,5,13.336000000000002,0,0,8,9,7,13.207142857142856,0,11.1,0.6,2.02,Graduate +1,1,1,9500,1,1,140.0,1,1,19,9,9,128.8,0,0,0,1,1,0,18,0,0,7,7,6,13.391666666666666,0,0,8,8,8,12.4875,0,12.4,0.5,1.79,Graduate +1,39,2,9119,1,1,120.0,1,37,37,5,5,128.0,0,0,0,1,1,0,30,0,0,2,2,0,0.0,0,0,2,2,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,8014,0,15,133.1,1,34,34,0,0,100.0,1,0,0,0,0,0,37,0,0,5,9,0,0.0,0,0,5,5,0,0.0,5,9.4,-0.8,-3.12,Dropout +1,1,1,9130,1,1,133.1,1,6,11,4,5,138.4,0,0,0,1,1,0,21,0,0,5,8,3,14.0,0,0,5,5,5,12.8,0,7.6,2.6,0.32,Graduate +1,1,1,9238,1,1,142.0,1,37,37,6,7,136.1,1,0,0,1,0,0,18,0,0,6,8,6,13.857142857142858,0,0,6,6,6,15.0,0,13.9,-0.3,0.79,Graduate +1,17,1,9238,1,1,132.0,1,37,37,9,9,123.6,1,0,0,1,0,0,18,0,0,6,9,4,11.5,0,0,6,10,4,10.75,0,7.6,2.6,0.32,Enrolled +1,1,2,9773,1,1,130.0,1,19,19,9,9,126.9,1,0,0,1,1,1,18,0,0,6,6,6,14.0,0,0,6,6,6,14.166666666666666,0,9.4,-0.8,-3.12,Graduate +1,15,1,9238,1,1,150.0,26,3,37,2,8,132.5,1,0,0,0,0,0,20,1,0,6,9,5,13.0,0,0,6,7,6,13.5,0,13.9,-0.3,0.79,Graduate +1,1,1,9853,1,1,142.0,1,12,12,9,4,132.6,1,0,0,1,0,0,18,0,0,6,8,5,15.4,0,0,6,7,5,12.2,0,7.6,2.6,0.32,Graduate +1,17,4,9254,1,1,106.0,1,37,19,9,7,116.9,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,8,5,12.4,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,160.0,1,1,19,5,7,155.5,1,0,0,1,0,0,18,0,0,6,6,6,14.0,0,0,6,6,6,15.0,0,11.1,0.6,2.02,Graduate +1,42,1,9500,1,1,157.0,1,3,3,3,3,100.0,0,0,0,1,0,0,18,0,0,7,8,7,13.55,0,0,8,8,8,14.1875,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,131.0,1,3,19,1,4,118.8,0,0,0,1,0,0,19,0,0,5,6,5,13.4,0,0,5,6,5,13.0,0,16.2,0.3,-0.92,Graduate +1,43,2,9773,1,1,120.0,1,34,34,0,0,103.6,1,0,0,1,0,0,27,0,4,8,11,7,13.285714285714286,0,4,7,13,5,11.6,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,125.0,1,34,37,9,9,129.2,1,0,1,0,0,0,20,0,0,6,12,3,10.333333333333334,0,0,6,14,1,11.0,0,10.8,1.4,1.74,Dropout +1,1,4,9085,1,1,145.0,1,37,1,9,9,145.0,1,0,0,1,0,1,19,0,0,5,7,4,14.5,0,0,5,5,5,13.6,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,136.0,1,1,1,9,3,122.7,1,0,0,1,1,0,18,0,0,5,6,5,12.0,0,0,5,7,4,12.5,0,15.5,2.8,-4.06,Enrolled +1,1,4,9147,1,1,120.0,1,19,38,5,5,122.8,1,0,0,1,1,0,18,0,0,5,6,4,11.5,0,0,5,12,2,10.333333333333334,0,10.8,1.4,1.74,Enrolled +1,1,2,9085,1,1,140.0,1,37,38,9,7,137.0,0,0,0,1,0,0,18,0,0,5,12,5,13.142857142857142,2,0,5,6,5,11.4,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,120.0,1,4,1,4,10,112.0,1,0,0,1,0,0,18,0,0,6,10,4,11.25,0,0,6,11,5,12.2,0,8.9,1.4,3.51,Enrolled +1,43,1,9147,1,1,123.0,1,37,38,7,7,110.0,0,0,0,1,1,0,25,0,0,5,12,3,11.0,1,0,5,12,4,11.5,0,9.4,-0.8,-3.12,Enrolled +1,1,1,9500,1,1,138.0,1,38,19,9,5,144.3,0,0,0,1,0,0,20,0,0,7,9,6,12.7,0,0,8,8,7,13.571428571428571,0,13.9,-0.3,0.79,Graduate +2,39,1,9147,1,12,133.1,1,37,37,9,9,120.0,0,0,0,1,0,0,25,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,51,1,9147,1,1,140.0,1,19,19,9,7,120.4,0,0,1,0,0,0,32,0,14,15,17,14,10.214285714285714,0,13,13,13,13,11.384615384615383,0,16.2,0.3,-0.92,Graduate +1,1,2,9500,1,1,145.0,1,37,1,9,4,138.8,1,0,0,1,0,1,18,0,0,7,7,6,12.95,0,0,7,7,6,12.95,0,7.6,2.6,0.32,Graduate +1,1,2,9773,1,1,133.0,1,19,38,5,0,133.7,1,0,0,1,0,0,19,0,0,6,11,1,13.0,0,0,5,10,0,0.0,0,7.6,2.6,0.32,Dropout +1,44,1,9130,1,39,150.0,1,5,1,2,5,150.0,1,0,0,1,1,0,19,0,1,6,13,5,11.6,0,1,6,12,2,11.0,0,13.9,-0.3,0.79,Enrolled +1,43,1,9991,0,1,140.0,1,37,38,9,8,135.5,0,0,1,0,0,0,29,0,0,5,15,2,13.25,0,0,5,12,3,12.6,3,16.2,0.3,-0.92,Dropout +1,1,1,9254,1,1,123.0,1,38,19,9,4,117.8,0,0,0,1,1,0,19,0,0,6,10,4,12.75,0,0,6,12,2,13.0,0,10.8,1.4,1.74,Enrolled +1,1,4,9500,1,1,125.0,1,1,12,3,6,115.2,1,0,0,1,0,0,20,0,0,7,7,7,12.982857142857142,0,0,8,8,8,14.4625,0,12.4,0.5,1.79,Graduate +1,17,2,9254,1,1,129.0,1,12,37,9,9,122.0,1,0,0,1,0,0,18,0,0,6,15,2,10.0,0,0,6,12,0,0.0,0,10.8,1.4,1.74,Dropout +1,5,2,9070,1,1,143.0,1,1,1,4,10,146.2,1,0,0,1,1,0,18,0,0,6,7,5,13.2,0,0,6,6,5,11.8,0,16.2,0.3,-0.92,Graduate +1,1,2,171,1,1,117.0,1,38,38,4,9,120.2,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,7.6,2.6,0.32,Graduate +2,39,1,9991,0,3,130.0,1,3,1,1,10,160.0,0,0,0,1,0,0,30,0,0,5,5,5,14.6,0,0,5,5,5,15.4,0,12.7,3.7,-1.7,Dropout +1,17,1,9556,1,1,133.0,1,38,37,9,9,124.4,1,0,0,1,0,1,18,0,0,7,7,7,13.3,0,0,8,8,8,15.125,0,15.5,2.8,-4.06,Graduate +1,1,1,9003,1,1,124.0,1,38,19,9,7,116.0,0,0,0,1,1,0,19,0,0,6,8,6,15.5,0,0,6,10,6,14.1,0,16.2,0.3,-0.92,Graduate +1,1,1,9773,1,1,164.0,1,19,1,9,9,161.2,0,0,0,1,1,1,18,0,0,6,7,6,15.571428571428571,0,0,6,7,6,16.142857142857142,0,13.9,-0.3,0.79,Graduate +1,43,1,9991,0,1,130.0,1,37,37,9,9,119.5,1,0,0,1,0,0,22,0,9,15,17,15,11.2,0,9,14,15,14,12.428571428571429,0,7.6,2.6,0.32,Graduate +2,39,1,8014,0,19,100.0,1,1,19,1,5,130.0,0,0,1,1,0,1,33,0,0,6,9,5,13.833333333333334,0,0,6,7,6,12.5,0,9.4,-0.8,-3.12,Graduate +1,1,5,9670,1,1,142.0,1,19,19,7,3,132.9,0,0,0,1,1,0,19,0,0,5,5,4,12.5,0,0,5,5,4,14.25,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,126.0,1,19,19,3,7,123.9,0,0,0,1,0,0,19,0,0,7,8,6,13.296666666666669,0,0,8,9,7,14.114285714285714,0,11.1,0.6,2.02,Graduate +1,1,4,9254,1,1,132.0,1,1,38,5,6,122.6,1,0,0,1,0,1,18,0,0,6,7,6,12.285714285714286,0,0,6,6,6,12.0,0,8.9,1.4,3.51,Graduate +1,1,6,9238,1,1,125.0,1,38,1,7,4,118.4,1,0,0,1,0,1,19,0,0,6,6,6,13.5,0,0,6,7,6,13.285714285714286,0,11.1,0.6,2.02,Graduate +1,39,1,9003,1,1,140.0,1,3,3,2,2,110.0,0,0,0,1,1,0,31,0,0,6,8,6,15.125,0,0,6,10,6,14.6,0,16.2,0.3,-0.92,Graduate +1,1,1,171,1,1,138.0,1,1,40,4,3,149.9,1,0,0,1,0,0,20,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,43,1,171,1,1,144.0,1,19,19,9,4,121.6,0,0,0,1,1,0,22,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Enrolled +1,1,2,9773,1,1,129.0,1,37,37,9,7,117.1,1,0,0,1,0,0,20,0,0,6,12,1,17.0,0,0,6,12,1,17.0,0,9.4,-0.8,-3.12,Enrolled +1,1,6,9853,1,1,114.0,1,19,19,9,9,110.2,1,0,0,1,1,0,20,0,0,6,8,5,12.2,0,0,6,7,5,12.2,0,10.8,1.4,1.74,Dropout +2,42,1,9147,1,1,100.0,1,37,37,9,9,100.0,1,0,0,1,0,0,54,0,13,15,20,13,12.461538461538462,1,10,13,13,10,11.1,1,15.5,2.8,-4.06,Dropout +1,1,1,9147,1,1,135.0,1,38,19,9,5,126.3,0,0,0,1,1,0,18,0,0,5,11,2,13.5,0,0,5,11,3,12.333333333333334,0,8.9,1.4,3.51,Enrolled +1,1,1,171,1,1,156.0,1,3,3,2,2,147.7,1,0,0,1,0,0,21,0,6,12,12,12,15.333333333333334,0,4,11,15,11,15.0,0,8.9,1.4,3.51,Graduate +1,1,1,9147,1,1,139.0,1,38,1,5,5,127.1,1,0,0,1,1,1,22,0,0,5,8,5,11.2,0,0,5,13,4,11.25,0,12.7,3.7,-1.7,Graduate +1,1,1,9670,1,1,127.0,1,1,37,4,9,128.1,0,0,0,1,1,0,19,0,0,5,8,4,12.5,0,0,5,6,4,11.0,0,7.6,2.6,0.32,Enrolled +1,1,5,9070,1,1,124.0,1,37,37,9,9,113.9,1,0,0,1,0,0,20,0,0,6,6,6,11.166666666666666,0,0,6,6,6,12.166666666666666,0,7.6,2.6,0.32,Graduate +1,17,4,9500,1,1,129.0,1,38,37,9,5,120.0,1,0,0,1,0,0,19,0,0,8,8,7,12.454285714285716,0,0,8,8,7,12.454285714285716,0,10.8,1.4,1.74,Graduate +1,17,1,9147,1,1,118.0,1,19,19,9,9,122.2,0,0,0,1,0,0,19,0,0,5,11,3,10.666666666666666,0,0,5,9,4,10.25,0,11.1,0.6,2.02,Graduate +2,39,1,9556,1,19,133.1,1,38,37,7,7,99.5,1,0,1,0,0,1,37,0,0,7,13,1,16.0,0,0,7,12,0,0.0,0,8.9,1.4,3.51,Dropout +1,1,1,9238,1,1,130.0,1,38,38,7,7,136.3,1,0,0,1,1,0,18,0,0,6,8,6,12.5,0,0,6,7,6,11.5,0,10.8,1.4,1.74,Graduate +1,17,1,9853,1,1,112.0,1,2,19,3,9,106.1,1,0,0,1,0,0,19,0,0,6,8,5,12.333333333333334,0,0,6,8,5,11.0,0,15.5,2.8,-4.06,Enrolled +1,43,1,9119,1,1,146.0,1,3,1,2,3,100.0,0,0,0,1,1,0,18,0,0,5,9,4,12.25,0,0,5,11,3,11.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,1,1,9085,1,1,132.0,1,1,12,4,5,124.3,0,0,0,1,0,0,20,0,0,6,10,6,13.428571428571429,0,0,6,11,5,12.666666666666666,0,13.9,-0.3,0.79,Enrolled +1,17,1,8014,0,1,136.0,1,37,37,5,8,132.5,0,0,1,1,0,1,22,0,1,6,7,4,12.75,0,1,6,8,5,13.0,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,37,37,90,90,130.0,1,0,0,1,1,0,30,0,0,8,8,0,0.0,8,0,8,8,0,0.0,8,9.4,-0.8,-3.12,Dropout +1,1,1,9238,1,1,135.0,1,1,1,4,4,122.8,0,0,0,1,0,0,18,0,0,6,7,6,14.0,0,0,6,7,6,14.0,0,10.8,1.4,1.74,Graduate +2,39,1,9254,1,1,130.0,1,37,37,9,9,125.0,0,0,0,1,0,0,41,0,0,6,8,6,12.285714285714286,0,0,6,10,5,13.0,0,8.9,1.4,3.51,Graduate +2,43,1,8014,0,1,130.0,1,34,34,0,0,130.0,0,0,0,1,0,0,45,0,10,12,12,9,12.444444444444445,3,4,7,8,6,12.0,0,9.4,-0.8,-3.12,Dropout +1,1,1,9853,1,1,133.1,1,19,19,9,8,132.0,1,0,0,1,0,0,21,0,0,6,8,5,12.0,0,0,6,9,5,10.8,0,12.7,3.7,-1.7,Dropout +2,39,1,9070,1,1,160.0,1,3,1,2,5,126.5,0,0,0,1,0,1,30,0,1,6,8,6,13.0,1,0,6,9,5,12.857142857142858,0,13.9,-0.3,0.79,Graduate +1,15,1,9556,1,1,137.0,26,19,1,9,4,137.0,0,0,1,1,0,0,19,1,0,7,11,0,0.0,4,0,7,11,2,11.666666666666666,0,8.9,1.4,3.51,Enrolled +1,17,2,9773,1,1,133.1,1,3,5,0,2,125.8,1,0,0,0,1,1,22,0,0,4,8,0,0.0,0,0,4,8,0,0.0,0,7.6,2.6,0.32,Dropout +1,16,4,9238,1,1,135.0,1,37,37,9,9,121.0,1,0,0,1,0,0,18,0,0,6,8,5,13.0,0,0,6,7,6,11.833333333333334,0,10.8,1.4,1.74,Graduate +1,39,2,9556,1,1,130.0,1,37,19,9,8,110.0,0,0,0,1,1,1,24,0,0,7,13,6,10.857142857142858,0,0,7,7,7,11.857142857142858,0,12.7,3.7,-1.7,Enrolled +1,1,1,9853,1,1,123.0,1,1,38,9,6,121.6,1,0,0,1,0,0,18,0,0,7,12,5,12.0,0,0,7,9,6,12.666666666666666,0,11.1,0.6,2.02,Enrolled +1,1,1,9119,1,1,126.0,1,38,19,5,5,130.2,0,0,0,1,1,0,19,0,0,5,7,5,10.2,0,0,5,8,3,12.0,0,10.8,1.4,1.74,Enrolled +1,1,5,9500,1,1,122.0,1,37,3,9,2,116.8,1,0,0,1,0,0,20,0,0,7,8,6,13.271428571428572,0,0,8,8,7,14.471428571428572,0,13.9,-0.3,0.79,Graduate +1,1,3,9500,1,1,132.0,1,38,38,9,9,119.3,1,0,0,1,0,0,19,0,0,8,8,7,11.98857142857143,0,0,8,8,7,11.98857142857143,0,10.8,1.4,1.74,Graduate +1,1,1,171,1,1,116.0,1,38,1,5,1,111.1,0,0,0,1,1,0,21,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,13.9,-0.3,0.79,Dropout +1,1,2,9500,1,1,113.0,1,38,19,9,7,106.7,1,0,0,1,0,1,20,0,0,7,10,5,12.62,0,0,7,8,6,12.5,0,11.1,0.6,2.02,Enrolled +1,39,1,9670,1,1,120.0,1,34,34,0,0,106.0,1,0,0,0,1,0,28,0,0,5,7,3,11.666666666666666,0,0,5,8,2,11.5,1,7.6,2.6,0.32,Dropout +1,17,2,9500,1,1,145.0,1,19,37,5,9,130.5,1,0,0,1,0,0,18,0,0,8,8,7,14.24,0,0,8,8,7,14.24,0,10.8,1.4,1.74,Graduate +2,39,1,9238,1,19,133.1,1,37,37,4,4,98.5,0,0,0,1,0,0,48,0,0,6,14,6,11.333333333333334,0,0,6,11,5,12.4,0,15.5,2.8,-4.06,Dropout +1,1,1,9500,1,1,152.0,1,41,19,3,5,137.8,0,0,0,1,0,0,19,0,0,7,7,7,13.694285714285714,0,0,8,9,8,14.355555555555554,0,11.1,0.6,2.02,Graduate +1,43,2,8014,0,3,130.0,1,34,34,0,0,130.0,0,0,0,1,1,0,31,0,8,12,21,12,12.333333333333334,0,6,10,13,7,13.285714285714286,2,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,152.0,1,38,37,9,9,139.1,0,0,0,1,0,1,19,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.5,0,16.2,0.3,-0.92,Graduate +1,18,1,9003,1,1,133.1,1,1,38,9,6,101.0,0,0,0,1,1,0,21,0,5,11,16,9,11.9,0,3,9,14,8,12.25,0,15.5,2.8,-4.06,Graduate +1,39,1,8014,0,1,140.0,1,19,1,9,8,105.0,0,0,0,1,0,0,26,0,0,6,14,3,10.666666666666666,1,0,6,9,5,11.2,0,15.5,2.8,-4.06,Enrolled +1,1,1,9500,1,1,162.0,1,19,1,5,5,147.5,1,0,0,1,0,1,18,0,0,8,8,8,14.14125,0,0,8,8,8,14.14125,0,9.4,-0.8,-3.12,Graduate +1,39,1,9254,1,1,133.1,1,19,1,4,1,101.0,0,0,1,1,0,0,25,0,0,6,6,0,0.0,0,0,6,6,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,2,9119,1,1,116.0,1,19,1,9,7,112.2,0,0,0,1,1,0,19,0,0,5,0,0,0.0,0,0,5,0,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9085,1,1,133.0,1,38,37,9,7,120.1,1,0,0,1,0,0,18,0,0,5,8,4,12.75,1,0,5,10,4,11.75,0,12.7,3.7,-1.7,Graduate +1,44,1,171,1,39,110.0,1,37,37,5,6,108.3,0,0,0,0,0,0,26,0,4,9,9,4,11.25,0,3,10,12,3,11.0,0,12.4,0.5,1.79,Dropout +1,17,2,9773,1,1,121.0,1,1,1,5,5,123.1,1,0,0,1,1,0,20,0,0,6,12,4,14.75,0,0,6,7,4,12.25,0,9.4,-0.8,-3.12,Graduate +1,17,1,9556,1,1,133.0,1,1,38,4,9,119.0,0,0,0,1,0,0,19,0,0,7,10,6,11.15,0,0,7,7,7,12.814285714285717,0,12.7,3.7,-1.7,Enrolled +1,17,1,9147,1,1,139.0,1,1,38,4,5,152.0,0,0,0,1,0,1,18,0,0,5,5,5,14.6,0,0,5,8,5,12.0,0,12.7,3.7,-1.7,Graduate +1,44,1,9085,1,39,160.0,1,12,38,4,8,160.0,1,0,0,1,1,0,23,0,1,6,10,5,12.5,0,1,6,8,2,13.5,0,12.4,0.5,1.79,Dropout +1,1,1,9070,1,1,133.1,1,19,19,7,7,117.0,0,0,0,1,0,0,20,0,0,6,0,0,0.0,0,0,6,0,0,0.0,0,15.5,2.8,-4.06,Dropout +1,1,2,9147,1,1,128.0,1,3,1,3,3,121.0,1,1,1,1,1,0,20,0,0,5,6,5,13.2,0,0,5,10,5,11.4,3,16.2,0.3,-0.92,Enrolled +1,1,2,9773,1,1,116.0,1,1,19,4,7,127.6,1,0,0,1,0,1,19,0,0,6,7,6,13.857142857142858,0,0,6,7,6,13.142857142857142,0,13.9,-0.3,0.79,Dropout +1,18,3,9119,1,1,111.0,1,1,19,9,8,111.0,1,0,0,1,1,0,18,0,0,5,10,4,11.6,0,0,5,9,3,14.2,0,12.4,0.5,1.79,Dropout +1,1,1,9085,1,1,146.0,1,1,1,9,7,126.0,0,0,0,1,0,0,19,0,0,5,7,3,12.333333333333334,0,0,5,7,4,10.25,0,7.6,2.6,0.32,Enrolled +1,53,1,9085,1,42,140.0,1,1,1,5,5,143.3,1,0,0,0,0,0,23,0,7,12,19,9,13.666666666666666,0,4,9,15,6,13.5,0,8.9,1.4,3.51,Enrolled +1,1,1,9070,1,1,144.0,1,1,1,3,5,127.2,1,0,0,1,0,1,20,0,0,6,6,6,12.666666666666666,0,0,6,8,6,13.0,0,10.8,1.4,1.74,Graduate +1,1,1,9238,1,1,141.0,1,38,1,5,7,132.6,0,0,0,1,0,1,18,0,0,6,7,6,13.285714285714286,0,0,6,6,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,18,1,9085,1,1,153.0,1,37,37,9,9,138.0,1,0,0,1,0,1,21,0,0,6,7,6,13.5,0,0,6,6,3,15.333333333333334,0,8.9,1.4,3.51,Dropout +1,1,3,171,1,1,137.0,1,1,3,5,2,133.9,1,0,0,1,1,0,19,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,12.7,3.7,-1.7,Graduate +1,1,1,9773,1,1,150.0,1,19,38,9,5,143.0,0,0,0,1,0,0,18,0,0,6,6,5,13.0,0,0,6,6,6,13.666666666666666,0,12.7,3.7,-1.7,Graduate +1,39,1,9003,1,1,130.0,1,19,1,9,6,126.1,1,0,0,0,1,0,27,0,0,6,6,0,0.0,0,0,6,8,0,0.0,0,15.5,2.8,-4.06,Dropout +1,17,5,9070,1,1,133.0,1,4,1,4,4,132.0,1,1,0,1,0,1,17,0,0,6,6,6,13.0,0,0,6,6,6,12.5,0,15.5,2.8,-4.06,Graduate +1,44,1,9085,1,39,140.0,1,1,19,9,9,140.0,1,0,0,1,0,0,20,0,1,6,13,6,12.555555555555555,0,1,6,11,5,11.8,0,16.2,0.3,-0.92,Enrolled +1,1,1,171,1,1,133.1,1,3,1,2,4,128.2,1,0,0,1,0,0,20,0,5,12,13,12,11.23076923076923,0,3,11,18,9,12.77777777777778,0,11.1,0.6,2.02,Graduate +1,39,1,9085,1,1,133.1,1,37,36,90,7,128.2,0,0,0,1,1,0,28,0,0,5,8,3,12.0,0,0,5,10,3,11.333333333333334,0,7.6,2.6,0.32,Dropout +1,43,1,9070,1,1,114.0,1,19,38,9,7,135.9,0,0,0,1,1,0,26,0,9,14,14,14,14.0,0,7,13,13,13,13.615384615384617,0,15.5,2.8,-4.06,Graduate +2,51,1,9500,1,1,130.0,1,37,37,5,5,120.0,0,0,0,1,1,0,44,0,0,7,11,5,12.1,0,0,7,10,5,12.6,0,11.1,0.6,2.02,Dropout +1,43,1,9670,1,39,110.0,1,19,3,7,10,110.0,0,0,0,1,0,0,21,0,0,6,8,5,11.833333333333334,0,0,6,8,4,13.25,2,16.2,0.3,-0.92,Enrolled +1,43,1,9500,1,1,148.0,1,29,38,90,3,131.0,1,0,0,1,0,1,22,0,18,23,23,20,14.575,3,18,23,23,20,14.575,3,7.6,2.6,0.32,Graduate +1,18,1,9254,1,1,118.0,1,38,38,5,5,123.3,1,0,0,1,1,0,26,0,0,6,10,4,10.0,0,0,6,11,3,12.0,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9003,1,3,130.0,1,1,38,9,7,130.0,1,0,0,0,1,0,32,0,11,17,31,11,12.727272727272728,4,10,12,24,10,12.7,1,15.5,2.8,-4.06,Dropout +1,39,1,9991,0,1,133.1,1,3,38,2,7,121.7,0,0,0,1,1,0,31,0,0,5,5,0,0.0,0,0,5,7,0,0.0,0,13.9,-0.3,0.79,Dropout +1,18,1,9991,0,1,133.1,1,38,38,5,5,145.0,0,0,0,1,0,1,21,0,0,5,6,4,12.25,0,0,5,8,4,11.8,0,10.8,1.4,1.74,Enrolled +1,1,4,9773,1,1,136.0,1,1,12,9,10,121.7,1,0,0,1,0,1,22,0,0,6,7,5,13.2,0,0,6,7,5,13.6,0,12.4,0.5,1.79,Graduate +1,17,1,9500,1,1,160.0,1,19,1,4,10,153.0,1,0,0,1,0,0,18,0,0,7,7,6,13.116666666666667,0,0,7,7,6,13.116666666666667,0,7.6,2.6,0.32,Graduate +2,53,1,9147,1,42,130.0,1,19,19,175,152,132.4,0,0,0,1,0,0,30,0,6,11,20,9,12.22222222222222,0,3,9,16,9,11.6,0,8.9,1.4,3.51,Enrolled +1,39,1,9119,1,40,120.0,1,1,1,5,10,146.8,0,0,0,1,1,0,25,0,2,5,6,5,14.2,0,1,5,5,2,13.5,0,16.2,0.3,-0.92,Enrolled +1,1,1,9773,1,1,150.0,1,19,11,0,0,131.1,1,0,0,1,1,0,19,0,0,6,6,6,11.666666666666666,0,0,6,10,3,12.666666666666666,0,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,122.0,1,1,19,4,3,130.4,1,0,0,1,0,0,18,0,0,6,10,5,11.8,0,0,6,10,5,12.2,0,11.1,0.6,2.02,Graduate +1,1,5,9119,1,1,132.0,1,38,19,5,3,119.1,0,0,0,1,0,0,18,0,0,5,11,0,0.0,0,0,5,8,0,0.0,0,9.4,-0.8,-3.12,Dropout +1,1,2,9500,1,1,137.0,1,1,3,4,3,124.6,0,0,0,1,0,0,18,0,0,7,10,7,13.398,0,0,8,8,8,13.5425,0,15.5,2.8,-4.06,Graduate +1,1,2,9500,1,1,126.0,1,1,38,4,7,124.3,1,0,0,1,0,1,20,0,0,8,8,8,12.98125,0,0,8,8,8,12.98125,0,9.4,-0.8,-3.12,Graduate +1,43,1,9238,1,39,120.0,1,2,1,1,2,118.6,0,0,0,1,1,0,21,0,9,11,14,10,12.4,0,6,10,13,10,11.8,0,13.9,-0.3,0.79,Graduate +1,1,1,9238,1,1,132.0,1,34,34,0,0,119.1,1,0,0,1,0,0,18,0,0,6,9,4,11.0,0,0,6,9,4,10.75,0,7.6,2.6,0.32,Graduate +1,1,1,9130,1,1,127.0,1,1,1,4,4,120.4,1,0,0,1,0,0,18,0,0,6,9,6,15.125,0,0,6,9,6,14.0,0,13.9,-0.3,0.79,Graduate +1,1,1,9147,1,1,135.0,1,1,38,5,5,122.4,0,0,1,1,0,0,19,0,0,5,10,5,10.875,0,0,5,8,4,12.4,0,13.9,-0.3,0.79,Graduate +1,18,2,9773,1,1,109.0,1,1,1,4,4,109.0,1,0,0,0,0,0,20,0,0,6,6,0,0.0,0,0,6,0,0,0.0,0,8.9,1.4,3.51,Dropout +1,17,3,9500,1,1,132.0,1,19,3,9,5,130.8,1,0,0,1,0,0,18,0,0,8,8,7,13.68142857142857,0,0,8,8,7,13.68142857142857,0,10.8,1.4,1.74,Enrolled +1,43,1,33,1,19,133.1,1,38,38,4,4,140.0,0,0,1,1,1,0,35,0,3,10,18,6,12.666666666666666,0,1,9,11,3,12.0,2,16.2,0.3,-0.92,Dropout +1,17,1,9773,1,1,120.0,1,37,37,5,5,125.3,0,0,0,1,0,0,18,0,0,6,9,6,12.5,0,0,6,9,6,13.0,0,7.6,2.6,0.32,Graduate +1,1,1,9773,1,1,140.0,1,1,19,5,10,141.1,1,0,0,1,0,0,18,0,0,6,6,6,12.833333333333334,0,0,6,6,6,13.333333333333334,0,9.4,-0.8,-3.12,Graduate +1,17,1,9147,1,1,145.0,1,19,38,4,4,132.1,1,0,0,1,1,0,21,0,0,5,10,1,10.0,0,0,5,5,0,0.0,0,11.1,0.6,2.02,Dropout +1,17,1,9254,1,1,122.0,1,19,19,5,5,118.2,0,0,0,1,0,1,20,0,0,6,10,4,11.25,0,0,6,6,6,10.5,0,12.4,0.5,1.79,Enrolled +1,17,1,8014,0,1,119.0,1,34,34,0,0,112.4,1,0,0,1,0,0,26,0,4,7,15,7,11.571428571428571,0,2,6,14,2,11.0,0,7.6,2.6,0.32,Dropout +1,1,5,9500,1,1,125.0,1,1,1,3,8,115.6,1,0,0,1,0,0,18,0,0,7,9,6,12.183333333333332,0,0,7,9,6,11.783333333333331,0,16.2,0.3,-0.92,Enrolled +2,39,1,9991,0,1,150.0,1,1,4,4,2,146.0,0,0,0,1,1,0,34,0,0,5,5,5,14.2,0,0,5,5,5,14.6,0,12.7,3.7,-1.7,Enrolled +1,1,1,9670,1,1,132.0,1,4,2,123,112,143.6,1,0,0,1,1,0,20,0,0,6,8,5,12.8,0,0,6,10,5,11.6,0,13.9,-0.3,0.79,Enrolled +1,1,2,9085,1,1,144.0,1,1,19,4,10,132.1,1,0,0,1,0,1,19,0,0,5,10,3,12.666666666666666,1,0,5,7,3,13.0,0,12.7,3.7,-1.7,Graduate +1,1,4,9500,1,1,142.0,1,19,19,1,1,125.5,1,0,0,1,0,0,18,0,0,8,12,7,12.857142857142858,0,0,8,12,7,12.857142857142858,0,12.7,3.7,-1.7,Graduate +1,1,1,9500,1,1,130.0,1,19,19,9,6,135.0,0,0,0,1,0,0,19,0,0,7,7,6,14.266666666666666,0,0,7,7,6,14.266666666666666,0,7.6,2.6,0.32,Graduate +1,42,1,9119,1,1,140.0,1,19,19,90,90,120.0,0,0,1,0,1,0,31,0,0,4,4,0,0.0,0,0,5,5,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9500,1,1,143.0,1,1,37,3,8,128.0,0,0,0,1,0,1,18,0,0,7,9,7,13.055555555555555,0,0,8,8,8,15.8125,0,13.9,-0.3,0.79,Graduate +1,1,3,9070,1,1,146.0,1,34,34,0,0,143.6,1,0,0,1,0,0,18,0,0,6,6,6,12.5,0,0,6,6,6,13.0,0,7.6,2.6,0.32,Dropout +2,39,1,9130,1,1,130.0,1,1,19,6,6,154.0,1,0,0,1,1,0,37,0,1,5,12,3,12.0,2,1,5,8,4,13.0,1,10.8,1.4,1.74,Graduate +2,39,1,9991,0,1,120.0,1,37,37,9,10,170.0,0,0,0,1,0,0,34,0,0,5,12,2,11.5,0,0,5,9,4,11.75,0,9.4,-0.8,-3.12,Enrolled +6,39,1,9991,0,12,130.0,1,37,37,90,90,119.0,1,0,0,0,1,0,55,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,53,1,9003,1,42,130.0,1,1,1,144,144,125.8,0,0,1,1,0,0,21,0,7,13,21,11,11.909090909090908,0,5,11,14,11,10.727272727272728,0,8.9,1.4,3.51,Graduate +1,1,1,171,1,1,145.0,1,40,1,2,4,160.1,0,0,0,1,0,1,19,0,6,12,12,12,14.5,0,4,11,15,11,13.583333333333334,0,8.9,1.4,3.51,Graduate +1,44,1,9070,1,1,140.0,1,1,1,9,8,144.3,1,0,0,1,0,0,19,0,2,7,7,7,13.0,0,5,9,9,9,13.22222222222222,0,12.4,0.5,1.79,Graduate +1,44,1,9003,1,39,150.0,1,1,38,6,6,150.0,1,0,0,1,1,0,21,0,0,6,12,4,11.8,0,0,6,11,4,11.875,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,148.0,1,37,37,9,9,143.5,0,0,0,1,0,0,18,0,0,6,6,6,13.0,0,0,6,6,6,12.833333333333334,0,10.8,1.4,1.74,Graduate +1,1,1,9670,1,1,123.0,1,19,19,9,8,125.5,0,0,0,0,0,1,19,0,0,6,6,6,13.833333333333334,0,0,6,7,6,14.285714285714286,0,8.9,1.4,3.51,Graduate +1,39,1,9085,1,1,130.0,1,34,1,0,2,128.2,0,0,0,1,1,0,25,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,39,1,9991,0,1,130.0,1,1,1,3,7,140.0,0,0,0,1,1,0,26,0,0,5,5,5,12.4,0,0,5,5,5,12.4,0,15.5,2.8,-4.06,Graduate +1,17,4,9556,1,1,112.0,1,1,1,4,10,107.1,1,0,0,1,0,0,20,0,0,7,7,7,12.5,0,0,8,8,8,13.1375,0,12.4,0.5,1.79,Graduate +1,1,5,9500,1,1,101.0,1,1,1,3,4,102.4,0,0,0,1,0,0,20,0,0,7,9,5,12.04,0,0,7,9,6,11.77142857142857,0,12.4,0.5,1.79,Enrolled +1,1,1,9500,1,1,133.0,1,37,37,9,7,121.8,0,0,0,1,1,1,18,0,0,8,8,8,12.93875,0,0,8,8,8,12.93875,0,9.4,-0.8,-3.12,Graduate +2,39,1,9500,1,1,133.1,1,3,1,5,5,148.8,0,0,0,1,0,1,34,0,0,7,7,6,12.513333333333334,0,0,8,9,7,13.071428571428571,0,12.4,0.5,1.79,Graduate +1,1,1,9500,1,1,157.0,1,19,38,5,3,149.3,0,0,0,1,0,0,18,0,0,8,8,8,14.035,0,0,8,8,8,14.035,0,9.4,-0.8,-3.12,Graduate +1,1,1,171,1,1,163.0,1,3,4,2,5,175.6,1,0,0,1,0,0,18,0,0,0,0,0,0.0,0,0,0,0,0,0.0,0,11.1,0.6,2.02,Graduate +1,17,4,9070,1,1,148.0,1,1,3,4,1,163.4,1,0,0,1,0,0,20,0,0,6,7,6,11.5,0,0,6,6,6,12.0,0,16.2,0.3,-0.92,Graduate +1,53,1,9085,1,42,130.0,1,38,38,9,9,128.8,0,0,0,1,0,0,21,0,7,10,12,8,12.875,0,4,9,14,5,13.4,0,8.9,1.4,3.51,Dropout +1,39,1,8014,0,1,120.0,1,1,1,4,4,150.5,0,0,0,1,0,0,27,0,0,6,6,6,12.5,0,1,6,6,6,12.333333333333334,0,15.5,2.8,-4.06,Graduate +1,51,1,9147,1,1,130.0,1,1,1,4,4,120.0,0,0,0,1,0,0,21,0,0,5,9,5,12.8,0,0,5,11,3,12.666666666666666,0,11.1,0.6,2.02,Enrolled +4,39,2,9556,1,19,133.1,1,19,19,4,6,123.0,0,0,0,1,0,1,37,0,0,7,10,7,10.985714285714286,0,0,8,11,8,12.3,0,10.8,1.4,1.74,Graduate +4,39,1,8014,0,19,140.0,1,37,37,9,3,131.0,0,0,0,1,0,1,29,0,0,6,11,4,11.75,0,0,6,9,5,10.4,0,10.8,1.4,1.74,Graduate +1,43,1,9147,1,1,131.0,1,19,38,9,9,129.7,1,0,0,1,0,0,19,0,0,5,5,5,12.6,0,0,5,6,4,12.4,0,16.2,0.3,-0.92,Graduate +1,7,1,9238,1,40,130.0,1,37,37,5,5,130.0,0,0,0,1,1,0,37,0,11,16,23,15,11.733333333333333,0,6,11,17,9,11.88888888888889,0,15.5,2.8,-4.06,Graduate +1,1,1,9130,1,1,133.0,1,3,1,2,4,126.0,0,0,0,1,1,0,18,0,0,5,7,3,13.666666666666666,0,0,5,5,5,13.2,0,7.6,2.6,0.32,Graduate +1,39,1,9670,1,1,100.0,1,1,1,4,4,120.0,0,0,0,1,1,0,26,0,0,5,7,3,11.333333333333334,0,0,5,7,3,13.666666666666666,0,9.4,-0.8,-3.12,Dropout +2,7,1,9147,1,3,120.0,1,37,37,9,9,120.0,0,0,0,1,0,0,33,0,3,8,9,5,12.6,2,2,7,13,5,11.25,0,10.8,1.4,1.74,Enrolled +1,39,1,9119,1,1,138.7,1,1,12,4,3,111.3,0,0,0,1,1,0,27,0,1,6,7,3,12.0,0,2,6,7,2,11.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9238,1,1,135.0,1,38,38,5,7,121.0,0,0,0,1,0,0,19,0,0,6,13,3,10.333333333333334,0,0,6,12,3,10.333333333333334,0,7.6,2.6,0.32,Enrolled +1,1,1,9238,1,1,116.0,1,1,19,5,9,111.1,0,0,0,1,1,0,18,0,0,6,8,6,12.0,0,0,6,7,6,11.714285714285714,0,15.5,2.8,-4.06,Graduate +1,43,1,9130,1,1,100.0,41,3,4,3,2,100.0,0,0,0,1,0,0,19,1,0,5,10,5,14.857142857142858,2,0,5,7,5,15.142857142857142,0,9.4,-0.8,-3.12,Enrolled +1,7,1,9147,1,3,130.0,1,37,19,9,8,130.0,0,0,0,1,0,0,21,0,4,9,9,9,10.88888888888889,0,3,10,18,10,11.615384615384617,0,10.8,1.4,1.74,Graduate +1,1,4,9085,1,1,138.0,1,3,1,1,4,123.3,1,0,0,1,0,1,19,0,0,6,7,6,14.857142857142858,0,0,6,10,6,13.11111111111111,0,12.4,0.5,1.79,Graduate +1,17,1,9003,1,1,131.0,1,19,1,9,2,134.5,1,0,0,1,0,1,19,0,0,6,7,6,15.0,0,0,6,8,6,14.333333333333334,0,12.4,0.5,1.79,Graduate +1,17,3,9500,1,1,139.0,1,38,1,9,5,131.8,1,0,0,1,0,0,18,0,0,8,8,7,14.652857142857142,0,0,8,8,7,14.652857142857142,0,10.8,1.4,1.74,Graduate +4,39,1,9991,0,1,133.1,1,37,37,6,6,136.2,0,0,0,1,0,0,39,0,0,5,6,5,11.0,0,0,5,9,5,11.666666666666666,0,10.8,1.4,1.74,Graduate +1,44,1,9070,1,39,123.9,1,37,1,9,7,123.9,0,0,0,1,1,0,20,0,2,7,9,5,12.6,0,5,9,10,8,12.75,1,16.2,0.3,-0.92,Dropout +1,1,1,9147,1,1,143.0,1,3,1,5,5,152.1,1,0,1,1,1,0,18,0,0,5,15,4,13.333333333333334,0,0,5,6,2,13.5,0,13.9,-0.3,0.79,Dropout +1,1,6,9500,1,1,142.0,1,1,37,7,7,123.5,1,0,0,1,0,0,19,0,0,7,0,0,0.0,0,0,8,0,0,0.0,0,12.7,3.7,-1.7,Dropout +1,1,1,9085,1,1,124.0,1,2,1,4,10,117.4,1,0,0,1,0,0,19,0,0,5,7,4,12.75,0,0,5,5,5,12.0,0,10.8,1.4,1.74,Graduate +1,17,5,9119,1,1,130.0,1,19,1,4,5,118.1,1,0,1,0,1,0,26,0,0,5,11,1,10.0,0,0,5,14,1,11.0,0,8.9,1.4,3.51,Dropout +1,17,4,9147,1,1,121.0,1,38,37,6,7,113.0,1,0,0,1,0,1,18,0,0,5,12,4,10.714285714285714,0,0,5,9,4,11.0,0,13.9,-0.3,0.79,Graduate +1,39,1,9085,1,1,150.0,1,19,19,4,10,100.0,0,0,0,1,0,0,24,0,1,6,11,5,13.0,0,1,6,12,1,12.0,0,13.9,-0.3,0.79,Dropout +1,1,1,9500,1,1,151.0,1,37,37,9,9,138.0,1,0,0,1,0,0,18,0,0,7,7,6,15.2,0,0,7,7,6,15.2,0,7.6,2.6,0.32,Graduate +1,1,1,9500,1,1,138.0,1,38,38,9,9,126.8,0,0,0,1,1,1,19,0,0,7,9,7,14.244444444444444,0,0,8,12,8,12.233333333333333,0,15.5,2.8,-4.06,Graduate +6,17,3,8014,0,1,115.0,1,19,1,5,90,115.0,0,0,0,0,0,0,24,0,0,5,5,0,0.0,0,0,5,10,0,0.0,0,10.8,1.4,1.74,Dropout +1,1,6,9500,1,1,127.0,1,1,19,3,3,120.2,1,0,0,1,0,1,19,0,0,7,7,7,12.765714285714289,0,0,8,9,8,13.544444444444444,0,12.4,0.5,1.79,Graduate +1,51,1,9991,0,1,134.0,1,1,1,5,3,120.6,1,0,0,1,1,0,27,0,2,6,6,6,12.333333333333334,0,0,5,5,5,13.0,0,11.1,0.6,2.02,Graduate +1,1,1,9773,1,1,121.0,1,19,1,7,9,117.9,1,0,0,1,0,0,19,0,0,6,7,6,12.833333333333334,0,0,6,7,6,11.666666666666666,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,131.0,1,1,38,4,8,121.9,1,0,0,1,0,0,19,0,0,6,10,5,12.6,0,0,6,7,5,11.2,0,10.8,1.4,1.74,Graduate +2,39,1,9500,1,19,133.1,1,38,38,7,8,170.0,0,0,0,1,1,0,36,0,0,7,9,6,12.783333333333331,0,0,8,11,0,0.0,0,16.2,0.3,-0.92,Dropout +2,39,1,9147,1,1,100.0,1,37,37,9,5,170.0,0,0,0,1,1,0,45,0,0,5,6,5,14.833333333333334,0,0,5,5,5,14.8,0,15.5,2.8,-4.06,Graduate +1,1,1,9670,1,1,95.0,1,37,37,5,8,95.0,0,0,0,0,1,0,21,0,0,6,9,4,13.25,0,0,6,6,5,11.0,0,12.7,3.7,-1.7,Dropout +1,43,1,8014,0,1,148.0,1,37,37,9,9,134.7,0,0,0,1,0,0,23,0,9,13,15,9,11.0,0,4,11,12,7,11.571428571428571,0,15.5,2.8,-4.06,Enrolled +1,1,2,9238,1,1,121.0,1,19,19,191,171,119.3,1,0,1,1,0,0,20,0,0,6,7,6,12.666666666666666,0,0,6,7,6,11.833333333333334,0,8.9,1.4,3.51,Graduate +1,18,2,9119,1,1,136.0,1,1,2,5,4,122.7,1,0,0,1,1,0,18,0,0,5,7,5,12.6,0,0,5,9,3,13.25,0,13.9,-0.3,0.79,Dropout +1,17,4,9254,1,1,130.0,1,19,1,5,5,130.0,1,0,0,1,1,0,18,0,0,6,7,4,11.0,0,0,6,7,3,11.25,0,16.2,0.3,-0.92,Dropout +2,43,1,9991,0,1,140.0,1,37,37,4,9,100.0,0,0,0,0,0,0,31,0,2,6,10,4,11.75,0,0,5,6,1,10.0,0,12.7,3.7,-1.7,Dropout +1,15,1,9254,1,1,160.0,1,1,3,3,3,142.5,1,0,0,0,1,0,19,0,0,6,6,6,14.0,0,0,6,6,6,13.666666666666666,0,13.9,-0.3,0.79,Graduate +1,17,3,9500,1,1,138.0,1,1,19,7,8,129.3,1,0,0,1,0,1,18,0,0,7,8,6,13.271666666666668,0,0,8,11,7,12.94375,0,12.4,0.5,1.79,Graduate +1,39,1,9254,1,19,133.1,1,37,37,90,90,100.0,0,0,0,1,1,0,48,0,0,6,13,3,10.0,0,0,6,15,1,10.0,0,7.6,2.6,0.32,Dropout +1,17,1,9500,1,1,148.0,1,1,37,9,7,143.3,0,0,0,1,0,1,18,0,0,7,7,7,13.44285714285714,0,0,8,8,8,15.075,0,13.9,-0.3,0.79,Graduate +1,7,1,9500,1,3,130.0,1,19,38,4,10,130.0,1,0,0,1,0,0,23,0,1,7,8,6,14.357142857142858,0,1,7,8,6,14.357142857142858,0,7.6,2.6,0.32,Graduate +1,39,1,9003,1,1,133.1,1,19,37,9,7,110.0,1,0,0,1,1,0,31,0,0,6,8,0,0.0,0,0,6,10,0,0.0,0,16.2,0.3,-0.92,Dropout +1,1,2,9254,1,1,131.0,1,4,3,7,4,126.1,1,0,0,1,0,0,18,0,0,6,8,6,12.142857142857142,0,0,6,6,6,11.166666666666666,0,8.9,1.4,3.51,Graduate +1,43,2,9500,1,1,136.0,1,38,38,9,5,131.3,0,0,0,1,0,0,23,0,11,14,15,12,12.625,1,11,14,15,12,12.625,1,7.6,2.6,0.32,Graduate +1,17,1,9254,1,1,119.0,1,1,1,4,10,125.0,0,0,0,1,1,0,19,0,0,6,7,5,10.8,0,0,6,10,2,10.5,0,10.8,1.4,1.74,Enrolled +1,17,2,9238,1,1,132.0,1,38,1,7,7,133.1,1,0,0,1,0,1,19,0,0,6,8,5,12.2,0,0,6,7,6,11.5,0,9.4,-0.8,-3.12,Graduate +1,1,4,9500,1,1,126.0,1,12,1,5,10,120.2,0,0,0,1,0,1,19,0,0,7,9,5,14.06,0,0,7,9,7,11.242857142857142,0,12.4,0.5,1.79,Enrolled +1,7,1,9147,1,40,110.0,1,37,37,9,9,110.0,0,0,0,1,0,0,52,0,11,15,26,14,10.466666666666669,0,9,12,16,12,10.923076923076923,0,13.9,-0.3,0.79,Graduate +1,1,3,9773,1,1,161.0,22,37,37,9,9,137.9,0,0,1,0,0,1,20,1,0,6,6,6,12.5,0,0,6,7,5,11.8,0,10.8,1.4,1.74,Graduate +1,17,2,9147,1,1,133.0,1,19,1,9,3,120.1,1,0,0,1,0,1,18,0,0,5,15,2,10.0,0,0,5,14,2,12.0,0,13.9,-0.3,0.79,Dropout +1,51,1,9085,1,1,127.0,1,3,3,2,8,138.8,1,0,0,1,0,0,22,0,4,12,19,11,14.153846153846152,0,5,12,20,12,15.428571428571429,0,8.9,1.4,3.51,Graduate +1,1,1,9238,1,1,121.0,1,1,1,1,1,115.1,1,0,0,1,0,0,19,0,0,6,10,6,10.833333333333334,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +1,17,1,9130,1,1,130.0,1,3,19,2,9,115.9,0,0,0,1,0,0,18,0,0,5,14,2,12.0,2,0,5,6,5,12.6,0,9.4,-0.8,-3.12,Graduate +2,7,1,9991,0,3,140.0,1,34,34,99,99,140.0,1,0,0,0,1,0,33,0,0,5,5,0,0.0,0,0,5,5,0,0.0,0,7.6,2.6,0.32,Dropout +1,17,1,9238,1,1,123.0,1,1,1,9,9,113.2,0,0,0,1,0,1,20,0,0,6,11,4,10.75,0,0,6,13,5,11.5,0,15.5,2.8,-4.06,Enrolled +1,17,1,9500,1,1,137.0,1,1,1,9,9,127.9,1,0,0,1,0,1,18,0,0,7,10,5,13.46,0,0,7,8,7,12.2375,0,11.1,0.6,2.02,Dropout +1,1,5,9500,1,1,130.0,1,19,37,9,7,127.6,1,0,0,1,0,0,18,0,0,7,10,7,12.9,0,0,8,15,7,12.142857142857142,0,15.5,2.8,-4.06,Dropout +1,39,1,9500,1,1,133.1,1,1,38,3,7,121.7,0,0,0,1,0,1,27,0,0,7,8,6,12.6,0,0,7,9,6,11.685714285714283,0,12.4,0.5,1.79,Enrolled +1,44,1,9130,1,39,130.0,1,3,1,4,1,130.0,1,0,0,0,0,0,21,0,1,6,12,5,13.285714285714286,0,0,6,10,4,12.0,0,16.2,0.3,-0.92,Dropout +1,1,1,9238,1,1,107.0,1,2,12,3,10,104.2,1,0,0,1,0,0,20,0,0,6,6,6,12.166666666666666,0,0,6,7,6,12.142857142857142,0,11.1,0.6,2.02,Graduate +4,39,1,8014,0,19,133.1,1,37,37,9,9,113.5,0,0,0,1,0,1,39,0,0,6,6,6,13.833333333333334,0,0,6,6,6,15.5,0,11.1,0.6,2.02,Graduate +1,17,1,9500,1,1,145.0,1,19,37,4,8,136.8,1,0,0,1,0,0,18,0,0,8,9,8,14.3775,1,0,8,9,8,14.3775,1,9.4,-0.8,-3.12,Graduate +1,1,1,9238,1,1,120.0,1,19,38,5,6,112.3,0,0,0,1,0,1,22,0,0,6,10,5,10.714285714285714,0,0,6,10,5,12.2,0,12.7,3.7,-1.7,Graduate +1,1,1,9147,1,1,133.1,1,34,34,0,0,125.3,0,0,0,1,1,0,26,0,11,15,15,11,10.818181818181818,0,12,14,15,11,11.636363636363637,1,7.6,2.6,0.32,Dropout +1,1,6,9853,1,1,136.0,1,1,19,5,5,122.0,0,0,0,1,0,0,18,0,0,6,6,6,12.666666666666666,0,0,6,6,6,12.0,0,7.6,2.6,0.32,Graduate +1,1,2,9070,1,1,121.0,1,4,1,2,3,120.7,1,0,0,1,0,0,18,0,0,6,8,4,10.75,0,0,6,9,0,0.0,0,9.4,-0.8,-3.12,Enrolled +2,1,1,9147,1,1,133.1,1,34,34,0,0,131.8,0,0,0,1,0,0,24,0,14,15,17,14,11.357142857142858,0,13,14,15,13,12.846153846153848,0,7.6,2.6,0.32,Dropout +1,15,1,9670,1,1,133.1,41,1,1,9,4,100.0,0,0,0,1,0,0,21,1,2,7,9,7,14.666666666666666,0,1,6,8,6,14.0,0,11.1,0.6,2.02,Graduate +1,17,2,9853,1,1,127.0,1,19,38,3,3,121.1,1,0,0,1,1,0,19,0,0,7,10,6,13.666666666666666,0,0,7,9,6,12.5,0,12.4,0.5,1.79,Dropout diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/tvae/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..cf34418dd433b1822b72d631ac8772a96533eaef --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/tvae/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/tvae/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/tvae/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ff06828c9d8fdb234fdd3de0b714b2100ba62b9f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/tvae/model_input_manifest.json @@ -0,0 +1,765 @@ +{ + "dataset_id": "m5", + "model": "tvae", + "target_column": "Target", + "task_type": "classification", + "column_schema": [ + { + "name": "Marital status", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.001695, + "example_values": [ + "1", + "2", + "4", + "5", + "3" + ] + } + }, + { + "name": "Application mode", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 18, + "unique_ratio": 0.005086, + "example_values": [ + "43", + "17", + "1", + "39", + "44" + ] + } + }, + { + "name": "Application order", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.002261, + "example_values": [ + "1", + "2", + "6", + "3", + "5" + ] + } + }, + { + "name": "Course", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.004804, + "example_values": [ + "9773", + "9147", + "9853", + "9500", + "9085" + ] + } + }, + { + "name": "Daytime/evening attendance", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Previous qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 16, + "unique_ratio": 0.004521, + "example_values": [ + "1", + "39", + "3", + "2", + "19" + ] + } + }, + { + "name": "Previous qualification (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 93, + "unique_ratio": 0.026279, + "example_values": [ + "127.0", + "122.0", + "121.0", + "158.0", + "141.0" + ] + } + }, + { + "name": "Nacionality", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "1", + "108", + "41", + "6", + "14" + ] + } + }, + { + "name": "Mother's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 28, + "unique_ratio": 0.007912, + "example_values": [ + "1", + "38", + "3", + "19", + "37" + ] + } + }, + { + "name": "Father's qualification", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "1", + "37", + "19", + "38", + "3" + ] + } + }, + { + "name": "Mother's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.00876, + "example_values": [ + "9", + "5", + "4", + "3", + "122" + ] + } + }, + { + "name": "Father's occupation", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "6", + "3", + "5", + "7", + "90" + ] + } + }, + { + "name": "Admission grade", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 593, + "unique_ratio": 0.167561, + "example_values": [ + "110.0", + "119.6", + "116.8", + "140.2", + "131.7" + ] + } + }, + { + "name": "Displaced", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Educational special needs", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Debtor", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Tuition fees up to date", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Gender", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "1", + "0" + ] + } + }, + { + "name": "Scholarship holder", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Age at enrollment", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 45, + "unique_ratio": 0.012715, + "example_values": [ + "19", + "20", + "18", + "21", + "27" + ] + } + }, + { + "name": "International", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000565, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "Curricular units 1st sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 21, + "unique_ratio": 0.005934, + "example_values": [ + "0", + "2", + "11", + "7", + "10" + ] + } + }, + { + "name": "Curricular units 1st sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "6", + "5", + "7", + "8", + "14" + ] + } + }, + { + "name": "Curricular units 1st sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 34, + "unique_ratio": 0.009607, + "example_values": [ + "10", + "8", + "14", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 1st sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 23, + "unique_ratio": 0.006499, + "example_values": [ + "3", + "6", + "5", + "7", + "0" + ] + } + }, + { + "name": "Curricular units 1st sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 680, + "unique_ratio": 0.192145, + "example_values": [ + "11.666666666666666", + "13.428571428571429", + "12.4", + "11.0", + "13.605" + ] + } + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11, + "unique_ratio": 0.003108, + "example_values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + }, + { + "name": "Curricular units 2nd sem (credited)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 19, + "unique_ratio": 0.005369, + "example_values": [ + "0", + "1", + "11", + "6", + "8" + ] + } + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 22, + "unique_ratio": 0.006216, + "example_values": [ + "6", + "5", + "8", + "7", + "14" + ] + } + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 30, + "unique_ratio": 0.008477, + "example_values": [ + "11", + "10", + "8", + "9", + "7" + ] + } + }, + { + "name": "Curricular units 2nd sem (approved)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.005651, + "example_values": [ + "2", + "5", + "4", + "8", + "0" + ] + } + }, + { + "name": "Curricular units 2nd sem (grade)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 661, + "unique_ratio": 0.186776, + "example_values": [ + "10.0", + "12.4", + "10.833333333333334", + "11.25", + "12.33125" + ] + } + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "0", + "1", + "2", + "3", + "5" + ] + } + }, + { + "name": "Unemployment rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "16.2", + "9.4", + "13.9", + "10.8", + "15.5" + ] + } + }, + { + "name": "Inflation rate", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.002543, + "example_values": [ + "0.3", + "-0.8", + "-0.3", + "1.4", + "2.8" + ] + } + }, + { + "name": "GDP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.002826, + "example_values": [ + "-0.92", + "-3.12", + "0.79", + "1.74", + "-4.06" + ] + } + }, + { + "name": "Target", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000848, + "example_values": [ + "Dropout", + "Graduate", + "Enrolled" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/tvae_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..78428a5013d9449b0de0dcdca59aeab32ecc52d3 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/m5/tvae/tvae-m5-20260419_191713/tvae_metadata.json @@ -0,0 +1,152 @@ +{ + "columns": [ + { + "name": "Marital status", + "type": "continuous" + }, + { + "name": "Application mode", + "type": "continuous" + }, + { + "name": "Application order", + "type": "continuous" + }, + { + "name": "Course", + "type": "continuous" + }, + { + "name": "Daytime/evening attendance", + "type": "categorical" + }, + { + "name": "Previous qualification", + "type": "continuous" + }, + { + "name": "Previous qualification (grade)", + "type": "continuous" + }, + { + "name": "Nacionality", + "type": "continuous" + }, + { + "name": "Mother's qualification", + "type": "continuous" + }, + { + "name": "Father's qualification", + "type": "continuous" + }, + { + "name": "Mother's occupation", + "type": "continuous" + }, + { + "name": "Father's occupation", + "type": "continuous" + }, + { + "name": "Admission grade", + "type": "continuous" + }, + { + "name": "Displaced", + "type": "categorical" + }, + { + "name": "Educational special needs", + "type": "categorical" + }, + { + "name": "Debtor", + "type": "categorical" + }, + { + "name": "Tuition fees up to date", + "type": "categorical" + }, + { + "name": "Gender", + "type": "categorical" + }, + { + "name": "Scholarship holder", + "type": "categorical" + }, + { + "name": "Age at enrollment", + "type": "continuous" + }, + { + "name": "International", + "type": "categorical" + }, + { + "name": "Curricular units 1st sem (credited)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (enrolled)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (approved)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (grade)", + "type": "continuous" + }, + { + "name": "Curricular units 1st sem (without evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (credited)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (enrolled)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (evaluations)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (approved)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (grade)", + "type": "continuous" + }, + { + "name": "Curricular units 2nd sem (without evaluations)", + "type": "continuous" + }, + { + "name": "Unemployment rate", + "type": "continuous" + }, + { + "name": "Inflation rate", + "type": "continuous" + }, + { + "name": "GDP", + "type": "continuous" + }, + { + "name": "Target", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/_bayesnet_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..1f34bab64ec018fbfce3a5e4229941544cc4bb4a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/_bayesnet_generate.py @@ -0,0 +1,43 @@ +import subprocess, sys, os + +pip_libs = "/pip_libs" +sys.path.insert(0, pip_libs) +os.environ["PYTHONPATH"] = pip_libs + os.pathsep + os.environ.get("PYTHONPATH", "") + +def _ensure_deps(): + try: + import synthcity + except ModuleNotFoundError: + print("[BayesNet] synthcity not found - installing to cache...") + subprocess.run( + [sys.executable, "-m", "pip", "install", + "--target", pip_libs, "synthcity==0.2.12", "numpy<2", "-q"], + check=True + ) + import shutil, glob + for pat in ["torch", "torch-*", "torchvision", "torchvision-*", + "torchvision.libs", "torchgen", "nvidia*", "triton*"]: + for p in glob.glob(os.path.join(pip_libs, pat)): + if os.path.isdir(p): shutil.rmtree(p) + else: os.remove(p) + if pip_libs not in sys.path: + sys.path.insert(0, pip_libs) + +_ensure_deps() + +import pickle, json as _json +with open("/work/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/bayesnet_model.pkl", "rb") as f: + plugin = pickle.load(f) +syn = plugin.generate(count=7654).dataframe() + +# Restore zero-variance columns that were dropped during training +const_path = "/work/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +if os.path.exists(const_path): + with open(const_path) as _f: + const_cols = _json.load(_f) + for col, val in const_cols.items(): + syn[col] = val + print(f"[BayesNet] Restored constant column '{col}' = {val}") + +syn.to_csv("/work/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/bayesnet-n20-7654-20260330_071037.csv", index=False) +print(f"[BayesNet] Generated 7654 rows -> /work/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/bayesnet-n20-7654-20260330_071037.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/_bayesnet_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..7156e75a3f42f3bfe1dfc844b260bba2cdad54c1 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/_bayesnet_train.py @@ -0,0 +1,62 @@ +import subprocess, sys, os + +pip_libs = "/pip_libs" +sys.path.insert(0, pip_libs) +os.environ["PYTHONPATH"] = pip_libs + os.pathsep + os.environ.get("PYTHONPATH", "") + +def _ensure_deps(): + try: + import synthcity + except ModuleNotFoundError: + print("[BayesNet] synthcity not found - installing to cache (first run, may take minutes)...") + # Install synthcity with numpy<2 to avoid conflicts + subprocess.run( + [sys.executable, "-m", "pip", "install", + "--target", pip_libs, "synthcity==0.2.12", "numpy<2", "-q"], + check=True + ) + # Remove torch/torchvision from pip_libs to avoid shadowing system versions + import shutil, glob + for pat in ["torch", "torch-*", "torchvision", "torchvision-*", + "torchvision.libs", "torchgen", "nvidia*", "triton*"]: + for p in glob.glob(os.path.join(pip_libs, pat)): + if os.path.isdir(p): shutil.rmtree(p) + else: os.remove(p) + if pip_libs not in sys.path: + sys.path.insert(0, pip_libs) + +_ensure_deps() + +from synthcity.plugins import Plugins +import pickle +import pandas as pd +from synthcity.plugins.core.dataloader import GenericDataLoader + +df = pd.read_csv("/work/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/train.csv") +df = df.dropna(axis=1, how="all") + +# Drop zero-variance columns (only 1 unique value) to avoid +# synthcity encoder KeyError during generation +import json as _json +const_cols = {} +for col in list(df.columns): + nuniq = df[col].nunique() + if nuniq <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}' (value={const_cols[col]})") + +# Save constant columns info so generate can restore them +const_path = "/work/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w") as _f: + _json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +print(f"[BayesNet] Training on {len(df)} rows, {len(df.columns)} cols") + +loader = GenericDataLoader(df) +plugin = Plugins().get("bayesian_network") +plugin.fit(loader) + +with open("/work/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/bayesnet_model.pkl", "wb") as f: + pickle.dump(plugin, f) +print(f"[BayesNet] Model saved -> /work/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/bayesnet_model.pkl") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/gen_20260321_091312.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/gen_20260321_091312.log new file mode 100644 index 0000000000000000000000000000000000000000..b771fdcbb9c53d3aef468f2a87c02a979f7d6002 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/gen_20260321_091312.log @@ -0,0 +1,8 @@ +03/21/2026 01:13:41:WARNING:Probability values don't exactly sum to 1. Differ by: 1.1102230246251565e-16. Adjusting values. +03/21/2026 01:13:44:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +03/21/2026 01:13:45:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +03/21/2026 01:13:45:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +03/21/2026 01:13:45:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +03/21/2026 01:13:45:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +[KeOps] Warning : CUDA libraries not found or could not be loaded; Switching to CPU only. +[BayesNet] Generated 1000 rows -> /work/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/bayesnet-n20-1000-20260321_091312.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/gen_20260330_071037.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/gen_20260330_071037.log new file mode 100644 index 0000000000000000000000000000000000000000..d1112ccaa9263055622b043657f8cdf2c272c612 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/gen_20260330_071037.log @@ -0,0 +1,11 @@ +03/29/2026 23:11:09:WARNING:Probability values don't exactly sum to 1. Differ by: 1.1102230246251565e-16. Adjusting values. +03/29/2026 23:11:21:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +03/29/2026 23:11:27:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +03/29/2026 23:11:27:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +03/29/2026 23:11:32:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +03/29/2026 23:11:33:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +03/29/2026 23:11:33:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +03/29/2026 23:11:34:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +03/29/2026 23:11:34:WARNING:Probability values don't exactly sum to 1. Differ by: -2.220446049250313e-16. Adjusting values. +[KeOps] Warning : CUDA libraries not found or could not be loaded; Switching to CPU only. +[BayesNet] Generated 7654 rows -> /work/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/bayesnet-n20-7654-20260330_071037.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..b325217f12fc008fa7ddbb4d3302f56548147a73 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n20", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "exists": true, + "size": 291758, + "sha256": "8768b9641a081ce32375b2739c6d0a6cdf66c1b03268c7db5f71ffd0019c97e2" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "exists": true, + "size": 36657, + "sha256": "c2dae02f854856ba824310ecaca5c73a72a3302753396aa681c82b69d65b174c" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv", + "exists": true, + "size": 36232, + "sha256": "82c48522e82ea4c5e4c407ec9239e82558dcff1df413f3d0c382e77fa041bc88" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_profile.json", + "exists": true, + "size": 2675, + "sha256": "7e7d747ab11beae1e58278dc8d6ae08d7ae6f14fe93f77a4fc1e6e589df21df4" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_contract_v1.json", + "exists": true, + "size": 3047, + "sha256": "20f513ccbc9f09d5286bc8998a5772f42b78b40aa1ed60b079fa73edf9c78eec" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8618a420d9d101a283cfb38feb336ac37687988f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,112 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "columns": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91364f3480d02e634daea210e8cae28ad5402b46 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n20", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "PE", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8070f85d32ba412fc3bb929f37c57bbe801c4fc6 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/public_gate/staged_input_manifest.json @@ -0,0 +1,117 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1021c2b32d6c3f73df8ae2769a62721ddf590e41 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "n20", + "model": "bayesnet", + "run_id": "bayesnet-n20-20260321_091217", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/bayesnet-n20-7654-20260330_071037.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/bayesnet/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ae53d938ce1a8562bf147cc5dbc29d4ef2b3292f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/bayesnet/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/bayesnet/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..db2b6e7091a0aaf95904e0ea1026c523fc59db3e --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,119 @@ +{ + "dataset_id": "n20", + "model": "bayesnet", + "target_column": "PE", + "task_type": "regression", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/staged_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb807ac5b23b2e7dfb39b3a5378cd452e84d56ed --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/test.csv @@ -0,0 +1,959 @@ +AT,V,AP,RH,PE +14.72,41.23,997.91,82.69,467.11 +11.94,40.66,1016.61,96.11,467.99 +27.56,66.93,1016.81,55.59,444.1 +9.59,34.69,1027.65,75.31999999999998,478.88 +7.46,41.82,1032.67,74.59,483.11 +15.52,36.99,1006.86,89.7,467.9 +15.47,43.13,1015.11,50.5,466.63 +21.84,45.09,1013.94,46.11,450.88 +19.83,51.43,1007.36,91.64,449.45 +29.3,67.69,1007.17,55.5,430.72 +6.63,39.42,1024.81,72.58,482.02 +22.88,69.45,1014.02,65.13,441.76 +11.97,42.32,1016.95,88.32,467.98 +29.25,67.32,1013.88,38.57,437.94 +14.89,39.58,1012.26,77.58,465.95 +10.39,44.85,1014.22,78.42,478.05 +25.66,77.54,1008.22,78.42,432.82 +16.5,49.39,1018.35,93.42,462.48 +28.55,74.33,1011.77,73.34,426.48 +7.84,40.07,1016.68,47.63,488.7 +27.14,71.32,1007.8,87.99,431.96 +25.18,71.98,1006.71,89.86,432.88 +6.01,35.79,1011.26,90.72,482.79 +14.54,41.17,1015.15,67.78,470.19 +11.8,43.22,1008.57,78.01,469.55 +23.82,44.89,1009.39,74.69,445.45 +32.81,71.32,1007.69,47.29,434.38 +30.63,74.22,1007.47,46.52,430.38 +25.43,70.17,1000.46,87.84,436.43 +30.17,76.86,998.23,73.61,430.3 +26.27,58.33,1013.81,60.43,438.82 +26.02,63.07,1010.94,53.96,446.82 +14.64,39.31,1008.84,79.3,462.72 +19.99,65.94,1012.28,75.42,447.22 +32.9,68.51,1012.95,50.09,430.23 +20.3,44.9,1008.25,64.08,457.6 +22.86,47.43,1009.75,61.54,452.53 +10.82,44.63,1020.64,90.26,473.23 +13.15,42.44,1014.51,99.53,469.34 +27.4,66.48,1004.71,51.5,439.66 +4.96,40.07,1011.8,67.38,494.75 +8.67,36.66,1026.8,84.36,480.38 +25.97,43.21,1011.9,88.73,434.83 +10.23,42.32,1017.53,89.93,473.59 +27.66,59.21,1013.12,51.58,438.57 +27.21,68.12,1012.96,54.69,435.2 +19.72,65.94,1010.53,82.12,446.84 +8.87,41.82,1033.3,74.28,477.97 +15.29,25.88,1009.21,66.0,464.25 +19.48,39.72,1001.75,55.41,457.16 +10.93,39.16,1016.54,90.56,479.83 +20.84,51.19,1008.63,84.11,448.98 +9.01,40.77,1022.37,90.3,470.84 +21.08,63.13,1013.53,98.0,443.51 +14.94,40.0,1017.69,65.43,456.41 +28.37,63.31,1013.18,49.02,437.64 +23.45,45.61,1012.84,73.42,454.92 +12.76,42.32,1015.35,78.18,466.15 +13.86,44.21,1022.6,83.56,468.3 +24.51,51.95,1005.57,63.53,449.73 +5.04,40.64,1021.35,93.63,484.42 +14.24,45.01,1013.54,88.68,461.64 +11.17,39.72,1002.4,81.4,474.64 +11.94,44.2,1017.97,82.93,474.02 +9.28,41.54,1018.33,79.89,482.8 +28.91,58.33,1013.84,39.72,437.53 +16.89,49.21,1015.19,70.39,458.25 +16.34,36.99,1006.99,90.06,466.24 +16.41,47.24,1015.75,88.78,457.94 +19.44,39.53,1006.99,63.18,457.09 +9.37,40.11,1024.94,75.03,471.13 +13.64,44.88,1019.85,56.86,466.66 +16.19,36.99,1007.37,92.4,462.94 +18.75,63.09,1018.19,87.84,450.98 +15.97,45.01,1016.58,83.24,456.91 +19.5,52.72,1025.21,50.21,457.26 +10.49,42.49,1009.81,78.92,478.75 +20.78,62.52,1017.58,73.3,452.3 +7.41,40.81,1026.15,88.96,488.48 +25.38,72.23999999999998,1010.76,89.64,432.3 +4.0,39.9,1009.64,97.16,490.79 +30.61,68.84,1011.18,52.5,439.9 +28.57,75.33,1003.16,76.14,431.58 +15.37,41.96,1011.58,96.76,466.02 +31.56,66.44,1008.91,64.16,430.11 +16.69,46.18,1010.8,96.8,466.03 +22.0,51.3,1012.87,85.79,450.18 +28.31,74.34,998.42,79.23,431.95 +15.7,44.21,1021.26,86.83,462.19 +21.79,58.2,1017.21,66.74,446.94 +25.67,58.59,1013.0,62.34,451.03 +20.59,59.8,1015.27,77.94,453.83 +16.14,44.21,1020.36,80.59,461.03 +25.61,47.43,1008.62,54.51,442.96 +7.61,44.71,1019.41,70.48,485.36 +30.32,64.69,1006.35,51.36,436.72 +29.45,68.27,1007.96,61.63,432.96 +29.28,77.17,1009.4,76.3,433.14 +5.62,41.31,1001.37,89.16,485.6 +24.86,44.05,1005.69,66.65,447.2 +6.17,40.07,1013.7,58.99,495.21 +13.65,41.58,1020.56,72.17,460.8 +3.96,35.47,1016.79,83.81,489.68 +6.49,39.33,1010.85,91.85,489.22 +31.32,71.29,1008.37,50.07,430.46 +8.07,43.69,1017.05,87.34,485.18 +13.35,39.64,1010.1,93.3,471.69 +26.21,56.85,1011.45,41.37,439.55 +5.71,40.77,1022.51,89.58,485.75 +18.98,60.1,1010.09,85.34,453.37 +6.07,38.91,1019.25,83.39,483.56 +26.92,78.92,1011.65,96.22,434.64 +24.44,47.93,1003.13,67.04,440.53 +14.45,52.75,1023.97,63.59,459.85 +26.44,71.64,1004.55,85.53,435.61 +30.7,74.22,1008.12,50.39,432.51 +6.48,36.24,1013.62,92.03,484.65 +30.47,70.83,1010.91,46.94,444.39 +13.78,38.28,1014.8,81.19,467.43 +19.65,62.1,1019.46,77.81999999999998,449.13 +9.51,43.79,1016.02,79.81,481.12 +16.31,52.75,1024.4,55.69,456.58 +13.08,39.82,1012.27,85.21,476.96 +20.72,44.57,1008.96,72.56999999999998,449.76 +9.77,41.44,1017.69,78.26,481.74 +26.12,66.75,1017.86,79.02,433.67 +10.95,43.8,1022.61,63.46,473.2 +11.01,43.69,1016.7,81.48,477.3 +17.36,52.9,1015.42,69.97,458.66 +16.7,46.18,1011.4,95.51,458.05 +11.95,42.07,1018.52,84.73,467.91 +18.3,44.06,1017.95,63.24,456.32 +14.69,35.71,1015.78,57.34,467.39 +30.82,76.2,1007.47,59.3,432.22 +22.36,58.79,1016.69,73.59999999999998,445.76 +23.89,64.27,1013.37,75.22,450.82 +5.75,42.07,1004.24,78.23,485.23 +26.64,69.13,1010.6,79.23,430.41 +23.08,48.41,1008.44,82.35,443.5 +29.76,57.19,1008.59,51.1,436.21 +32.8,68.67,1005.27,44.53,432.28 +24.63,65.38,1010.43,40.68,446.23 +11.02,43.02,1012.32,66.54,478.81 +32.13,69.98,1013.3,55.85,431.84 +23.81,60.08,1017.29,62.66,450.33 +8.09,38.5,1012.99,67.31,484.81 +32.63,69.89,1013.85,41.66,425.72 +13.27,52.75,1025.86,65.12,464.82 +29.3,68.08,1011.23,56.23,434.11 +26.3,77.95,1009.45,78.72,437.95 +28.52,70.02,1010.34,54.21,441.98 +17.86,50.88,1015.59,88.28,457.33 +7.92,41.66,1014.84,76.12,483.38 +3.74,35.19,1018.58,98.84,490.5 +21.33,63.86,1020.33,72.13,445.02 +30.36,74.87,1008.96,61.87,435.31 +14.23,46.18,1017.39,87.29,463.86 +9.55,41.44,1015.07,85.94,481.75 +9.78,41.93,1023.18,75.05,484.03 +30.8,73.17,1010.51,51.93,432.24 +15.48,47.83,1004.88,81.68,463.67 +16.58,46.18,1010.4,96.29,463.51 +20.32,39.72,1001.38,57.21,456.18 +11.83,43.14,1010.06,88.14,471.98 +26.75,56.57,1013.76,57.93,443.92 +14.13,48.92,1011.72,78.06,464.17 +19.91,51.19,1008.0,90.23,449.23 +14.37,40.56,1021.67,68.18,470.19 +17.27,44.9,1007.85,78.8,454.19 +9.59,38.56,1017.52,61.89,481.05 +28.04,70.32,1011.28,78.16,435.42 +18.18,44.63,1020.41,48.64,455.57 +32.27,71.85,1008.06,59.28,429.72 +19.02,44.85,1014.57,43.37,465.42 +13.47,43.34,1012.75,87.04,468.8 +12.25,40.75,1016.02,82.4,475.07 +27.45,64.34,1007.12,65.87,440.0 +29.96,67.83,1008.0,44.05,433.13 +12.55,38.91,1012.58,75.44,474.35 +31.92,75.33,1002.13,65.73,431.32 +21.55,60.27,1017.42,92.59,443.93 +20.14,46.33,1013.24,83.39,453.35 +18.33,44.34,1019.55,51.69,468.8 +8.65,40.56,1023.23,78.84999999999998,485.87 +26.99,62.26,1011.13,71.27,436.89 +14.4,41.26,1021.41,73.11,462.78 +18.35,62.1,1019.97,78.36,455.29 +16.76,43.77,1012.25,77.95,457.0 +11.82,42.86,1014.12,88.28,476.7 +20.78,68.28,1008.75,60.87,450.57 +29.35,54.2,1013.07,42.45,439.47 +22.63,45.61,1014.14,73.06,457.88 +22.83,65.18,1012.24,79.73999999999998,442.43 +6.74,36.08,1020.36,86.98,484.18 +31.54,71.06,1008.4,71.77,431.87 +23.24,45.01,1012.21,45.23,457.01 +32.74,68.31,1010.23,41.29,441.66 +14.18,39.3,1020.1,67.48,464.32 +25.86,59.92,1009.92,73.95,436.06 +14.05,40.69,1015.66,74.39,470.9 +23.78,69.71,1008.79,83.17,443.06 +14.14,39.59,1010.84,96.02,465.23 +11.77,40.71,1024.55,72.48999999999998,477.94 +23.77,64.15,1021.02,55.87,448.43 +9.61,44.03,1008.3,91.36,473.54 +22.42,62.52,1016.83,63.27,451.64 +24.85,68.37,1006.5,68.37,442.66 +17.69,44.34,1019.31,61.12,464.13 +3.21,38.44,1017.11,84.86,492.93 +18.45,42.44,1013.45,63.52,459.79 +11.48,44.6,1018.29,90.76,470.39 +17.37,48.92,1011.91,58.4,455.53 +6.22,39.33,1012.31,93.23,491.77 +12.74,49.83,1007.44,91.47,466.09 +22.56,70.79,1005.85,93.09,435.14 +24.35,58.49,1011.03,70.64,445.6 +16.58,44.68,1021.5,83.38,458.87 +25.47,70.36,1005.79,77.73,437.02 +30.88,69.51,1011.48,46.58,433.14 +6.64,39.04,1018.84,74.94,481.53 +12.65,41.93,1023.07,65.05,479.53 +8.91,40.11,1022.87,78.39,475.43 +5.57,42.85,1013.55,92.14,488.85 +16.09,44.2,1019.39,67.24,460.56 +20.98,60.07,1016.26,67.18,446.26 +14.93,39.16,1007.25,72.34999999999998,463.2 +24.19,58.95,1017.78,58.78,441.91 +23.86,52.84,1006.56,48.94,444.66 +15.59,52.05,1013.67,78.55,456.07 +26.04,74.67,1016.68,81.2,433.55 +22.35,54.42,1012.46,75.01,454.72 +10.57,36.71,1022.11,82.39,472.62 +6.16,38.5,1012.83,93.68,490.92 +24.12,62.44,1013.83,88.02,443.3 +28.24,71.58,1010.1,67.92,434.01 +21.11,69.94,1004.37,84.26,439.91 +11.49,44.63,1020.44,86.04,471.08 +24.92,60.95,1014.88,60.58,445.44 +23.56,67.79,1010.14,89.72,441.29 +7.54,40.72,1023.82,85.15,485.92 +26.85,75.59999999999998,1017.43,74.55,433.48 +12.14,44.85,1014.36,60.04,476.68 +17.03,43.99,1021.5,82.32,460.25 +31.41,64.44,1013.84,49.49,439.3 +14.73,40.35,1011.15,65.2,470.03 +24.04,59.43,1007.6,76.98,437.51 +21.03,44.78,1007.99,36.82,459.72 +22.61,42.8,1014.24,69.71,460.26 +17.36,44.63,1020.49,54.21,456.98 +26.82,64.96,999.72,63.55,427.51 +18.19,44.06,1017.24,78.73,456.13 +24.38,47.01,1015.17,68.96,454.85 +12.98,39.64,1013.95,74.39,473.54 +14.17,43.13,1014.94,48.62,471.08 +18.71,54.9,1017.12,74.79,456.88 +12.8,44.34,1016.52,86.73,473.42 +16.71,46.18,1012.06,96.6,458.4 +22.99,60.77,1017.97,78.47,447.62 +28.34,63.77,1013.7,61.13,439.75 +34.53,73.03,1013.53,36.74,437.03 +10.16,40.8,1028.13,86.39,477.49 +27.28,44.89,1009.02,49.9,441.94 +22.75,58.86,1016.0,67.34,448.32 +25.01,59.54,1007.91,80.93,441.3 +23.64,63.31,1014.5,61.83,440.7 +8.85,41.06,1020.99,86.05,486.4 +19.65,63.91,1009.26,99.08,444.9 +18.22,44.34,1019.35,56.78,469.27 +9.68,40.77,1022.04,85.23,473.73 +17.49,40.55,1001.73,73.15,462.37 +21.79,61.45,1011.11,91.78,446.99 +21.06,62.91,1011.92,75.52,455.22 +23.72,58.62,1016.32,71.17,447.13 +30.93,73.42,1010.98,56.42,432.44 +5.98,38.91,1016.5,91.83,488.85 +13.45,41.16,1022.04,82.96,460.57 +12.23,43.69,1016.46,84.4,471.62 +8.13,39.96,1026.07,95.84,477.12 +29.0,77.54,1011.33,75.13,431.37 +11.61,52.75,1020.94,77.56,464.68 +19.4,49.69,1012.89,75.53,455.6 +5.0,40.64,1021.05,94.84,485.27 +23.46,57.85,1012.7,65.54,444.66 +18.51,48.06,1015.14,79.83,455.44 +29.29,70.36,1006.64,60.82,431.26 +27.55,64.96,999.73,57.34,431.33 +21.82,63.9,1014.48,92.53,447.29 +17.03,47.83,1004.94,79.68,460.43 +17.18,46.0,1002.74,100.1,454.02 +18.14,49.78,1002.95,100.09,451.44 +12.39,49.83,1007.6,92.43,468.43 +20.39,64.15,1021.31,62.35,457.37 +22.72,64.15,1021.14,60.34,453.13 +20.3,58.41,1014.05,86.38,451.74 +21.46,58.18,1007.45,95.33,444.12 +28.99,68.24,1008.75,66.57,428.28 +12.07,40.81,1025.63,68.02,475.96 +15.4,40.69,1015.1,70.25,471.66 +9.59,37.14,1013.8,72.84999999999998,474.74 +7.64,40.02,1031.58,71.19,479.43 +15.42,37.85,1009.89,85.8,467.33 +11.75,42.32,1015.28,77.25,470.44 +19.51,48.78,1021.03,86.33,453.27 +31.86,73.88,1005.6,57.68,435.91 +12.4,40.35,1011.46,79.48999999999998,476.44 +28.11,69.84,1004.68,67.08,427.33 +8.74,40.03,1016.81,93.37,481.07 +24.32,58.79,1016.8,65.61,442.78 +13.72,44.47,1027.2,68.89,470.66 +6.11,38.68,1017.53,79.23,482.97 +16.74,39.16,1005.68,71.17,460.47 +8.52,41.55,1002.09,86.81,483.63 +20.55,68.63,1012.5,67.07,453.47 +22.63,58.49,1010.94,72.7,448.38 +18.13,60.1,1009.67,84.75,455.82 +12.51,43.67,1013.24,91.55,471.96 +21.02,61.5,1008.52,77.73999999999998,448.08 +6.99,40.07,1014.83,54.36,490.11 +16.37,36.99,1006.37,90.11,463.76 +15.68,39.16,1006.09,75.62,461.98 +22.17,60.27,1018.21,89.55,443.31 +26.7,49.02,1007.68,67.97,438.92 +19.55,39.39,1013.55,57.82,464.36 +27.74,74.78,1010.05,60.82,436.87 +18.09,43.72,1008.64,74.15,453.02 +11.49,35.76,1019.08,60.04,472.45 +23.67,63.86,1019.67,57.95,441.73 +32.02,67.83,1007.77,53.31,426.55 +20.38,62.52,1017.85,75.56,456.56 +5.02,45.87,1007.8,99.22,481.03 +26.24,51.43,1011.32,59.52,447.91 +14.47,41.76,1021.98,78.41,464.0 +24.16,60.29,1018.09,63.49,446.17 +10.07,40.92,1021.84,84.18,471.71 +10.73,44.92,1025.1,85.4,476.81 +16.81,42.86,1013.83,77.11,464.36 +27.52,74.67,1015.77,72.01,433.56 +13.96,40.83,1009.89,84.86,469.86 +22.78,49.16,1002.29,64.28,444.99 +22.77,70.32,1012.04,82.43,440.67 +8.64,41.66,1014.14,80.44,481.89 +27.33,66.17,1011.06,64.55,443.89 +19.07,49.69,1007.22,76.79,453.09 +24.1,68.61,1010.97,74.87,443.75 +14.6,42.32,1015.71,77.03,464.67 +14.77,44.47,1028.38,71.18,464.25 +9.14,38.91,1018.62,89.88,476.57 +14.85,45.87,1009.37,84.65,462.67 +8.47,41.03,1021.72,70.16,485.1 +23.79,59.44,1012.53,79.48,448.67 +26.63,64.44,1012.66,61.19,442.0 +12.88,44.34,1016.03,88.51,474.94 +12.73,44.34,1015.11,93.55,472.94 +17.2,40.55,1000.68,72.67,462.55 +10.05,41.17,1018.98,83.71,481.38 +28.37,75.59999999999998,1017.48,55.19,439.25 +25.61,60.32,1015.77,56.48,443.96 +20.34,46.63,1013.16,79.08,453.62 +20.21,58.12,1015.36,79.18,453.19 +21.19,58.86,1014.19,68.96,452.43 +29.71,73.18,1012.35,63.06,427.04 +15.24,37.87,1020.52,84.49,463.09 +17.35,42.86,1014.62,74.16,465.16 +13.5,45.51,1015.33,86.95,469.08 +25.94,77.23999999999998,1007.97,84.82,432.88 +5.51,35.57,1026.3,78.97,489.36 +26.16,52.36,1013.62,58.52,453.08 +15.17,49.15,1021.91,91.73,461.89 +14.57,42.18,1015.13,74.89,465.75 +12.16,45.0,1021.51,50.52,482.99 +25.1,60.37,1005.83,72.53,438.44 +13.57,39.39,1014.01,82.12,471.44 +20.25,55.5,1020.03,69.33,455.13 +11.23,39.72,1018.46,60.62,475.04 +12.52,42.34,1018.67,95.29,464.71 +8.68,39.61,1021.54,77.98,486.31 +8.18,40.02,1031.45,73.66,478.81 +21.93,60.84,1017.8,82.61,443.89 +30.69,71.98,1004.53,65.86,430.33 +12.08,41.39,1019.45,78.3,477.8 +9.08,42.49,1010.67,85.35,481.46 +20.33,57.76,1016.47,75.34999999999998,450.25 +31.03,69.98,1011.33,52.16,436.13 +6.03,41.14,1028.04,87.46,479.61 +14.02,42.86,1030.86,68.36,467.29 +20.51,45.38,1014.29,69.14,461.87 +28.17,63.13,1012.44,66.61,439.94 +18.83,63.91,1010.8,96.18,448.15 +25.52,63.94,1017.81,41.54,440.32 +22.61,49.3,1003.51,83.02,441.76 +28.61,68.12,1011.71,47.57,432.94 +18.43,56.03,1020.41,60.55,465.17 +13.41,54.3,1016.48,79.28,467.88 +11.11,40.55,1023.91,87.12,476.37 +33.97,72.29,1008.98,44.32,432.33 +18.41,62.1,1020.4,78.09999999999998,457.14 +22.4,58.12,1015.24,78.03,449.13 +25.1,61.47,1007.84,75.75,447.27 +28.73,68.3,1016.53,55.73,434.15 +11.47,43.67,1012.68,72.51,475.72 +11.19,40.64,1020.57,84.49,472.86 +10.38,43.02,1013.37,78.53,474.44 +30.09,69.48,1009.51,53.24,435.2 +26.72,65.61,1014.41,52.01,442.48 +19.14,56.65,1020.84,82.97,458.06 +21.25,44.05,1005.69,81.87,448.43 +15.55,45.09,1014.33,62.19,457.36 +12.28,42.34,1019.19,95.8,467.03 +31.93,72.58,1006.9,56.27,425.14 +24.9,71.77,1006.24,85.25,427.77 +23.71,67.17,1007.27,90.2,440.65 +31.05,62.7,1009.35,55.27,441.67 +10.08,40.72,1022.7,67.3,480.8 +22.31,61.45,1009.25,98.56,437.05 +24.01,42.48,1011.39,55.1,453.12 +21.75,49.82,1015.01,78.33,455.28 +29.3,73.67,1005.64,65.31,431.07 +12.27,41.17,1019.39,52.18,473.84 +16.51,41.79,1007.1,74.03,457.74 +26.26,63.73,1010.45,70.61,442.18 +31.33,73.03,1014.18,49.28,438.49 +21.81,65.06,1014.6,66.41,447.13 +14.93,39.39,1014.31,80.68,468.88 +33.87,71.32,1007.91,39.48,435.89 +28.09,63.31,1013.01,52.6,438.6 +18.06,56.65,1020.2,81.59,459.14 +20.36,56.53,1020.25,72.95999999999998,455.34 +29.58,76.2,1008.37,60.73,433.91 +9.62,41.01,1019.43,97.99,467.34 +25.08,58.49,1011.1,64.47,446.9 +24.33,60.32,1015.49,59.95,445.36 +30.93,70.83,1010.61,46.13,440.59 +22.04,58.05,1013.11,85.22,447.28 +5.74,45.87,1011.44,95.94,482.0 +24.17,71.25,1003.9,90.36,435.66 +5.95,39.48,1005.16,63.6,486.07 +27.51,63.73,1009.97,66.14,440.81 +28.62,70.32,1008.87,46.67,431.03 +20.48,60.29,1017.16,72.09999999999998,455.51 +27.03,71.14,1010.33,66.25,430.41 +28.31,70.32,1007.88,47.0,432.5 +16.6,41.93,1022.01,48.98,467.51 +14.67,71.14,1019.84,77.72,458.8 +5.68,40.35,1012.11,92.86,486.79 +29.66,59.22,1013.25,61.2,441.58 +6.99,39.37,1020.19,75.06,487.18 +25.61,74.22,1010.26,75.15,438.45 +11.31,39.61,1018.74,68.9,471.92 +29.04,76.09,1007.52,75.44,430.32 +16.5,53.29,1017.7,95.66,458.37 +22.26,60.77,1018.26,85.94,442.58 +25.95,59.92,1010.05,76.05,443.93 +28.09,70.02,1010.84,51.29,437.83 +8.36,40.67,1014.99,73.65,489.1 +24.88,49.16,1006.04,64.54,445.18 +14.34,42.86,1031.75,66.81,466.17 +18.16,39.99,1008.13,68.5,461.16 +20.57,44.9,1008.39,62.69,456.18 +16.85,39.64,1008.82,80.81,464.2 +24.56,63.21,1013.79,82.38,444.34 +9.54,41.17,1019.79,65.61,481.18 +21.43,60.95,1015.27,75.48999999999998,449.12 +24.15,71.73,1009.76,85.16,436.55 +21.87,74.87,1009.28,85.4,442.37 +15.3,41.76,1022.57,71.56,466.59 +19.45,41.1,1001.88,52.16,458.26 +27.99,71.64,1007.79,72.67,437.81 +21.03,69.05,1002.17,75.34999999999998,444.35 +31.84,77.95,1014.9,55.35,433.28 +29.83,71.43,1011.93,55.8,439.34 +10.08,37.92,1010.47,66.37,474.63 +18.36,51.43,1010.57,90.17,459.8 +16.4,38.01,1022.2,73.05,463.79 +13.03,42.86,1014.39,86.25,475.03 +18.88,62.96,1020.62,82.01,456.18 +11.87,41.78,1012.97,64.79,470.84 +23.16,57.76,1017.74,63.79,451.79 +15.39,42.28,1007.35,81.34999999999998,467.3 +16.84,56.03,1020.25,70.37,437.14 +14.65,44.84,1023.39,87.76,467.18 +18.97,44.85,1014.86,46.31,466.17 +26.22,69.89,1015.46,76.63,433.61 +7.07,37.49,1010.35,87.19,481.58 +17.4,44.9,1020.5,77.11,457.75 +30.05,73.68,1014.95,70.6,434.92 +14.01,45.08,1023.28,82.49,464.79 +23.24,63.78,1017.1,63.8,446.95 +23.03,65.12,1016.29,69.8,447.84 +8.58,40.72,1022.04,87.55,480.96 +24.92,48.92,1010.11,36.53,445.56 +25.8,65.38,1009.3,52.28,450.5 +26.31,48.6,1002.64,60.04,440.06 +29.13,62.26,1010.51,52.94,436.37 +11.02,41.17,1018.18,86.86,477.62 +13.61,39.85,1012.78,58.12,475.62 +23.32,69.13,1010.75,91.84,435.27 +30.45,43.21,1011.35,63.59,438.68 +31.7,70.36,1006.26,58.18,438.38 +23.62,73.67,1007.0,90.8,438.33 +12.45,43.67,1013.61,91.34,474.27 +28.85,68.12,1012.05,46.31,436.15 +18.4,43.69,1016.59,52.44,462.05 +28.97,78.92,1011.71,88.5,430.98 +4.93,35.19,1018.04,92.94,486.39 +13.75,44.47,1029.63,70.74,467.14 +16.64,44.9,1021.02,70.34,460.93 +19.04,68.28,1004.52,86.16,444.54 +15.89,43.96,1014.02,75.23999999999998,467.35 +29.03,67.79,1010.67,55.42,444.09 +14.97,58.2,1019.52,81.13,458.68 +16.23,43.52,1020.13,76.3,464.74 +14.74,44.47,1028.29,67.87,462.92 +9.75,52.72,1026.03,78.53,473.41 +27.18,59.27,1012.57,64.18,439.69 +16.22,50.88,1014.33,100.09,454.94 +6.62,42.49,1008.74,94.57,482.74 +9.33,44.03,1011.73,86.04,474.15 +23.14,62.26,1011.87,66.44,444.38 +14.52,40.35,1011.11,69.84,470.8 +33.71,69.98,1013.09,42.62,431.99 +14.84,42.03,1017.47,79.27,466.2 +13.48,41.92,1030.2,65.96,463.9 +31.4,71.06,1008.44,74.77,433.34 +27.44,66.56,1005.51,69.28,428.0 +22.68,70.47,1010.86,82.8,441.47 +9.03,40.71,1025.98,81.94,484.97 +14.36,41.26,1021.16,73.43,462.25 +10.06,43.22,1014.1,85.7,473.0 +22.76,49.02,1007.5,88.56,442.84 +24.79,75.59999999999998,1017.07,68.23,440.05 +34.97,73.56,1006.57,44.69,435.15 +27.64,75.59999999999998,1017.35,54.78,441.04 +18.37,51.86,1018.8,74.3,461.14 +7.91,39.96,1023.57,88.44,475.52 +21.8,65.94,1012.02,63.52,448.66 +29.42,71.32,1002.26,67.13,437.47 +19.01,58.46,1017.14,90.99,446.18 +24.01,67.17,1007.44,86.87,443.09 +11.69,39.22,1017.05,55.51,472.76 +22.01,58.46,1016.26,75.98999999999998,443.75 +13.74,42.74,1029.54,70.0,465.92 +12.27,43.8,1023.21,57.0,468.55 +12.88,43.8,1023.19,59.18,468.19 +32.06,71.85,1007.9,56.44,426.07 +23.46,59.27,1010.6,79.79,445.57 +24.41,52.3,1006.28,70.33,442.62 +13.22,44.92,1023.84,87.99,471.43 +13.69,40.83,1008.53,84.81,471.26 +10.31,45.01,1018.42,93.67,473.74 +21.41,54.2,1011.37,82.28,448.11 +24.49,65.46,1015.77,44.95,445.27 +25.72,49.82,1016.19,60.1,452.33 +18.73,46.48,1007.19,79.23,450.74 +22.88,59.21,1011.51,86.93,440.25 +26.59,60.96,1011.9,52.41,439.77 +30.38,71.58,1010.17,50.45,433.75 +18.94,47.83,1005.18,78.59,455.19 +25.17,64.79,1017.87,63.26,442.15 +20.55,48.98,1016.1,63.89,452.52 +10.03,42.18,1017.3,85.99,475.74 +25.03,60.27,1017.9,72.04,438.24 +7.82,41.16,1023.3,87.7,475.66 +33.43,69.88,1006.86,44.84,435.59 +11.33,41.5,1013.58,88.7,475.01 +12.34,40.62,1016.28,53.6,466.47 +4.78,42.85,1013.07,94.72,479.09 +14.03,49.15,1020.5,83.65,467.16 +26.11,47.43,1009.01,56.09,445.36 +24.67,70.94,1007.99,75.64,443.51 +14.28,44.84,1024.84,79.09,474.57 +26.74,59.87,1012.5,62.88,447.88 +29.83,62.66,1007.98,47.07,438.71 +17.51,44.9,1009.05,74.91,455.01 +30.05,69.34,1008.26,61.5,436.82 +15.85,49.69,1015.48,88.65,464.72 +32.5,71.37,1003.75,43.8,433.7 +30.56,69.04,1009.29,55.73,442.24 +23.32,69.23,1011.75,75.59,436.18 +18.0,52.08,1003.07,100.09,450.85 +25.45,70.04,1011.2,82.48,430.2 +17.37,40.55,1001.19,71.42,460.97 +16.43,41.79,1005.47,76.89,455.85 +19.15,44.89,1009.6,74.52,451.09 +16.0,39.16,1016.37,77.63,468.49 +10.87,44.71,1021.38,58.22,484.63 +21.98,55.97,1009.12,89.51,442.65 +21.92,61.87,1009.68,58.83,445.52 +14.62,42.86,1015.56,84.5,470.79 +20.9,67.07,1005.43,82.85,443.46 +23.45,69.04,1010.5,80.77,442.48 +7.31,43.02,1014.19,86.43,484.82 +22.21,61.87,1010.9,54.22,446.62 +20.83,49.02,1009.45,91.92,445.31 +14.71,44.0,1024.98,85.08,462.87 +19.92,63.31,1015.02,82.71,443.54 +31.85,73.20999999999998,1000.98,72.2,435.94 +24.1,71.97,1009.92,91.27,443.09 +12.42,38.25,1012.76,82.23,472.3 +28.79,70.79,1003.83,65.9,425.64 +17.05,44.88,1017.69,88.19,459.63 +31.59,62.7,1009.3,50.16,442.58 +14.93,41.79,1008.88,81.48,456.75 +24.44,69.13,1011.1,87.62,434.34 +26.05,65.59,1012.78,67.03,437.04 +26.48,51.43,1006.76,74.3,438.1 +17.19,37.2,1011.84,67.59,468.4 +6.25,39.04,1019.65,71.27,484.14 +31.12,67.69,1005.3,50.46,425.21 +11.16,40.05,1014.95,88.38,479.11 +31.16,69.88,1007.01,68.28,433.24 +19.27,43.14,1013.17,39.85,463.14 +17.79,43.52,1020.65,68.29,458.57 +22.76,58.96,1013.85,55.95,454.05 +5.66,39.42,1024.7,78.52,482.11 +21.75,67.45,1014.89,67.09,445.1 +24.66,58.86,1013.86,56.39,444.42 +18.16,39.99,1007.73,70.54,463.69 +25.26,61.08,1013.68,71.72,447.46 +23.6,48.98,1015.41,48.28,448.43 +22.89,65.34,1015.53,61.0,450.53 +28.82,71.43,1011.51,58.58,443.68 +21.57,69.23,1011.94,81.73,437.55 +11.03,42.32,1017.26,90.56,470.92 +15.75,39.16,1016.31,77.98999999999998,468.87 +13.67,44.92,1023.6,85.35,467.71 +11.58,39.69,1005.17,86.55,469.6 +32.31,62.04,1010.41,39.39,450.13 +23.67,72.23999999999998,1011.22,90.45,435.94 +11.29,35.76,1019.32,58.91,473.74 +13.58,49.83,1008.9,86.8,465.82 +10.54,41.93,1016.64,93.52,479.65 +24.96,74.98999999999998,1008.25,80.52,440.91 +24.53,74.78,1009.9,78.34,446.3 +12.12,41.17,1017.68,78.72,470.67 +22.99,56.57,1013.93,78.77,445.44 +31.15,67.45,1014.85,42.11,431.97 +20.2,64.45,1009.03,61.77,452.33 +10.9,41.46,1016.66,86.2,479.45 +27.04,48.41,1008.57,60.73,441.21 +29.72,74.78,1009.32,55.25,438.19 +29.86,69.34,1007.76,54.12,433.57 +28.18,73.88,1005.89,75.41,434.48 +27.0,69.4,1004.86,82.2,433.83 +33.63,70.4,1004.02,53.6,430.05 +10.44,37.83,1006.31,97.2,474.42 +13.39,49.83,1007.14,90.88,466.04 +9.0,43.13,1020.25,81.31999999999998,481.09 +18.94,48.7,1008.5,94.83,451.38 +26.14,71.98,1005.98,82.45,428.91 +5.11,42.07,1004.28,81.8,486.41 +26.62,65.12,1016.0,43.24,441.22 +25.69,62.26,1011.38,74.08,436.36 +8.13,39.99,1011.71,87.89,486.19 +9.97,41.62,1013.99,96.02,464.86 +6.58,43.02,1014.03,84.95,488.22 +13.9,42.86,1030.82,71.89,473.76 +12.33,39.28,1011.84,80.01,476.49 +7.26,36.08,1021.47,83.15,483.58 +12.29,40.03,1017.62,89.64,472.65 +33.82,77.17,1008.96,58.91,435.58 +9.27,40.22,1008.1,89.24,481.23 +23.44,62.52,1016.46,67.21,447.19 +31.63,69.59,1008.66,61.81,436.89 +27.28,51.43,1011.46,51.38,450.53 +21.45,45.09,1013.83,52.26,453.15 +25.14,69.13,1011.15,85.67,433.95 +20.12,45.09,1013.73,57.78,448.35 +16.36,53.82,1015.05,71.95,461.62 +19.77,65.06,1016.22,74.95,448.26 +31.92,75.33,1001.81,61.97,436.38 +26.52,43.77,1011.49,46.98,440.31 +11.52,40.03,1017.56,87.87,472.31 +29.91,74.33,1013.22,39.76,430.26 +15.01,39.52,1017.53,72.0,468.02 +28.39,65.51,1014.52,66.48,438.78 +25.3,71.29,1007.86,62.98,437.17 +16.63,53.82,1015.18,66.09,458.29 +10.41,44.68,1023.53,91.38,474.7 +26.86,68.08,1012.99,50.04,436.25 +10.48,36.71,1023.18,81.37,473.3 +10.58,42.34,1022.32,94.01,474.91 +6.94,38.91,1018.94,90.64,485.12 +20.64,49.21,1014.86,58.47,454.2 +25.69,73.18,1012.64,86.35,432.82 +22.48,71.29,1008.15,75.41,444.71 +6.63,39.37,1020.33,76.18,489.16 +33.4,69.98,1013.29,47.78,432.44 +15.11,42.99,1007.53,85.75,466.25 +8.99,36.66,1028.11,71.98,481.03 +9.6,41.82,1032.93,72.63,475.01 +9.42,41.4,1029.21,86.4,474.75 +23.62,68.63,1013.18,50.57,447.3 +28.19,71.97,1008.85,84.67,438.8 +26.39,49.16,1005.68,56.18,442.87 +24.93,47.01,1014.28,66.04,455.06 +21.28,70.72,1010.29,86.22,445.54 +8.73,41.92,1029.41,89.72,480.99 +6.99,35.19,1019.32,68.95,480.05 +30.7,71.58,1010.0,48.96,429.27 +15.82,44.2,1018.96,66.73,460.2 +23.19,49.82,1014.59,70.52,451.08 +10.27,42.34,1022.69,92.78,474.55 +14.04,39.64,1011.09,87.22,472.31 +20.42,62.96,1020.34,84.0,452.08 +17.31,58.49,1011.8,92.77,456.84 +13.51,43.41,1015.94,75.22,463.86 +7.39,39.81,1019.45,85.02,482.99 +26.71,76.86,1002.86,74.5,437.31 +31.74,79.73999999999998,1007.07,61.47,431.72 +21.46,50.59,1016.75,67.14,453.67 +12.75,44.03,1007.29,89.46,465.86 +14.43,44.84,1024.34,84.0,467.45 +23.93,68.28,1005.16,69.91,444.95 +10.62,42.02,999.83,96.66,472.41 +14.74,43.71,1024.35,81.53,465.49 +7.87,41.17,1020.33,77.77,486.2 +22.16,65.48,1017.22,70.51,446.0 +7.94,43.65,1018.75,59.45,479.8 +26.56,65.59,1012.6,64.25,443.66 +31.03,69.59,1007.77,63.96,432.56 +29.09,70.98,1007.86,80.34999999999998,439.34 +7.31,42.18,1014.75,86.75,477.38 +10.03,41.62,1014.55,95.61,462.73 +10.28,39.64,1010.45,74.15,477.65 +29.86,64.79,1017.37,44.8,439.89 +29.24,60.23,1009.62,59.71,438.24 +17.34,47.03,1013.36,98.13,463.89 +13.56,42.34,1017.95,93.83,462.6 +10.62,39.96,1025.37,96.64,470.8 +27.37,69.23,1013.25,48.02,433.18 +13.61,42.34,1017.57,91.35,465.65 +12.81,44.58,1016.49,80.76,475.5 +21.83,62.91,1011.07,91.34,443.76 +22.97,62.4,1010.25,75.18,445.3 +24.33,46.93,1013.72,48.27,447.43 +23.49,64.63,1020.75,65.16,450.28 +17.13,42.86,1014.15,73.59999999999998,463.09 +14.86,44.71,1018.3,49.46,466.38 +24.15,64.63,1020.72,58.06,448.87 +7.71,36.25,1027.92,89.84,481.74 +24.82,71.94,1010.5,64.67,438.69 +11.65,41.54,1020.09,67.96,476.4 +10.25,41.46,1020.65,87.07,481.94 +5.78,40.62,1016.55,84.98,484.13 +9.35,44.03,1011.02,88.11,476.25 +10.76,40.43,1025.98,79.65,490.78 +25.76,57.32,1011.93,43.61,440.26 +14.57,37.86,1022.44,68.82,463.58 +13.6,39.82,1013.34,86.1,470.69 +29.36,78.05,1011.12,64.17,434.29 +23.12,69.71,1008.98,84.41,442.21 +23.39,63.94,1010.54,89.94,441.44 +25.45,67.83,1009.47,57.97,429.95 +27.65,48.41,1008.54,58.25,440.94 +30.24,73.9,1006.74,56.39,441.31 +13.78,40.0,1018.38,68.67,458.74 +24.66,69.94,1006.56,60.91,432.68 +17.1,48.98,1016.48,85.63,454.43 +27.37,65.06,1013.09,50.92,440.5 +20.11,51.19,1007.82,92.06,449.03 +12.24,41.62,1013.38,90.26,461.23 +28.5,79.73999999999998,1006.75,87.09,433.08 +14.64,42.77,1017.59,79.59999999999998,464.27 +18.06,65.48,1018.79,77.95,454.34 +14.79,38.73,999.83,86.45,470.28 +35.2,73.56,1006.56,45.72,434.37 +22.93,51.19,1009.3,82.8,443.57 +25.73,66.54,1010.07,55.97,437.07 +18.77,50.66,1014.89,87.34,457.07 +11.52,40.8,1024.31,73.48999999999998,479.56 +8.84,42.49,1010.28,89.09,481.58 +21.24,60.84,1017.99,82.22,445.71 +15.67,45.17,1018.73,94.74,462.09 +22.99,46.21,1010.71,60.11,444.36 +23.93,64.05,1013.09,86.02,440.66 +34.33,69.05,1000.89,37.9,430.56 +29.85,68.24,1007.01,30.99,433.43 +30.1,67.45,1014.23,39.04,434.01 +6.85,37.49,1011.01,84.53,483.12 +26.53,54.2,1012.9,66.73,439.96 +24.2,59.07,1009.25,88.25,441.93 +24.6,75.23,1012.04,76.77,434.07 +30.1,66.25,1009.38,65.41,434.99 +21.6,59.8,1016.9,76.59,450.14 +24.9,58.49,1011.06,65.14,444.19 +26.9,60.93,1007.1,67.32,435.87 +23.07,57.17,1009.84,76.8,444.08 +24.85,70.47,1006.64,85.37,434.47 +30.3,73.9,1006.72,55.13,440.79 +32.18,69.75,1009.94,52.91,438.26 +29.11,74.78,1009.6,56.93,438.75 +21.37,65.94,1010.73,75.09,444.74 +26.53,69.71,1009.88,76.26,446.17 +8.9,40.77,1011.67,90.26,479.18 +22.45,63.77,1014.57,87.44,444.26 +28.9,71.25,1000.73,77.23999999999998,431.52 +18.55,46.48,1007.34,80.67,452.37 +20.92,63.86,1020.49,72.98,449.09 +14.38,45.09,1012.95,86.1,464.27 +8.9,41.4,1030.83,85.63,472.95 +11.1,44.85,1014.27,65.08,477.03 +20.85,59.21,1012.9,75.97,444.44 +26.27,71.98,1005.72,86.15,427.65 +15.61,40.89,1010.48,80.26,467.3 +3.26,41.31,996.32,100.0,489.38 +27.05,77.95,1009.57,76.56,434.09 +19.54,50.66,1014.7,84.53,456.61 +6.42,35.57,1025.58,79.63,485.86 +26.19,65.61,1014.51,54.52,443.73 +9.84,40.22,1009.5,85.38,479.65 +10.86,44.85,1014.15,88.36,476.87 +33.33,73.03,1014.2,42.28,436.05 +9.25,41.82,1033.25,74.73,478.48 +14.7,44.9,1021.87,83.9,468.69 +30.17,75.08,1005.17,55.89,438.89 +11.74,43.56,1015.14,70.72,477.5 +23.27,60.84,1019.13,67.24,440.22 +25.21,59.21,1013.19,62.85,438.7 +15.18,44.2,1019.6,72.45,462.09 +29.03,43.21,1011.83,65.23,434.11 +24.18,58.49,1011.3,77.81999999999998,445.49 +7.62,44.71,1020.56,69.96,486.07 +29.53,71.97,1008.6,79.25,434.96 +24.27,74.93,1012.73,73.81,443.06 +28.4,74.93,1013.65,48.6,442.23 +22.2,57.17,1009.82,78.43,447.75 +17.58,44.9,1020.52,71.48,459.78 +6.71,40.72,1022.78,80.69,483.11 +28.32,72.58,1007.77,78.34999999999998,428.06 +8.11,42.18,1014.82,93.09,473.62 +34.76,68.94,1006.75,41.31,427.42 +28.82,64.79,1016.74,56.34,445.1 +25.43,60.95,1014.62,51.39,444.65 +24.78,57.19,1008.08,65.4,443.62 +6.94,39.61,1017.74,81.43,480.07 +27.5,68.24,1010.38,73.44,430.9 +21.43,63.94,1012.68,99.68,445.29 +26.84,70.36,1007.41,71.47,442.17 +25.69,64.45,1013.05,42.0,450.94 +27.92,74.98999999999998,1005.47,75.13,431.76 +23.69,58.05,1012.08,74.26,444.46 +22.89,62.39,1007.84,88.16,448.13 +15.43,38.58,1016.58,81.17,463.44 +21.84,58.86,1014.13,69.67,445.16 +16.8,56.03,1020.65,85.26,461.96 +18.34,50.59,1018.42,83.95,457.17 +21.1,49.16,1006.76,86.08,442.78 +8.49,39.61,1021.05,87.74,483.94 +11.95,42.03,1017.58,90.89,465.2 +5.05,35.57,1027.03,80.02,491.4 +4.71,42.07,1005.35,82.26,486.79 +13.65,42.74,1026.58,71.48,468.87 +25.14,67.32,1013.96,41.78,435.39 +8.88,39.66,1015.21,88.29,481.45 +11.3,43.14,1019.56,99.83,469.73 +30.61,67.69,1004.97,47.46,429.8 +15.69,39.3,1019.03,60.57,464.17 +20.58,50.78,1008.87,91.18,445.03 +24.66,66.49,1010.83,70.06,438.01 +21.93,62.91,1013.45,74.62,449.17 +25.2,61.08,1013.04,74.28,447.09 +11.75,35.76,1018.99,57.92,473.01 +28.16,70.72,1009.81,65.32,441.37 +34.96,68.94,1006.17,59.26,431.48 +16.63,43.77,1012.25,75.09,458.66 +12.1,44.77,1019.1,75.84999999999998,463.11 +14.48,39.0,1016.75,75.97,464.56 +30.96,71.77,1006.26,52.76,425.66 +26.89,49.16,1003.84,41.22,442.39 +32.09,69.4,1003.1,56.91,430.62 +9.95,41.82,1033.09,69.44,477.52 +16.71,40.55,1004.45,81.64,464.13 +17.34,46.48,1007.18,83.15,452.06 +26.2,71.14,1007.92,72.95,431.7 +14.51,42.77,1017.47,81.95,463.37 +19.81,43.56,1013.39,38.13,460.59 +13.85,41.39,1018.62,75.55,471.45 +11.06,41.5,1013.09,89.8,476.24 +14.45,43.34,1015.47,83.33,462.16 +3.99,39.64,1011.53,83.58,492.06 +24.74,59.39,1015.23,74.64,437.49 +11.48,41.2,1012.88,90.04,478.34 +19.09,43.14,1012.34,45.75,463.3 +22.26,60.37,1008.14,92.37,441.33 +14.17,39.59,1010.99,94.08,464.17 +24.67,58.05,1011.31,69.95,444.57 +26.87,74.98999999999998,1002.48,71.91,437.78 +22.32,48.41,1008.68,79.11,445.36 +14.94,42.77,1018.06,75.34999999999998,460.51 +19.32,44.71,1015.3,28.81,464.38 +17.58,39.63,1004.84,80.43,467.33 +24.19,47.45,1008.26,64.25,446.3 +32.0,73.17,1009.92,42.47,433.72 +12.64,41.79,1016.38,92.65,461.46 +21.86,63.09,1016.64,87.94,442.79 +23.07,69.23,1011.78,76.06,437.08 +15.98,41.48,1017.0,55.73,456.31 +11.48,41.14,1027.67,90.5,464.07 +26.07,69.23,1013.32,54.03,436.94 +13.74,44.21,1023.26,84.2,466.67 +29.23,75.59999999999998,1017.72,52.26,438.92 +9.44,43.99,1020.31,98.06,475.01 +29.51,75.59999999999998,1017.92,50.61,431.18 +13.12,44.21,1019.57,89.29,469.09 +26.23,59.14,1016.98,75.54,437.85 +14.55,42.74,1027.29,66.64,457.77 +20.3,58.46,1015.93,82.13,448.79 +12.57,39.18,1023.09,77.28,471.87 +9.34,41.49,1020.58,97.59,471.04 +7.93,42.28,1008.43,85.57,484.75 +19.6,48.14,1013.18,68.71,456.57 +21.35,57.76,1017.36,73.09999999999998,452.57 +10.59,38.38,1021.58,68.23,474.94 +27.54,75.59999999999998,1018.26,57.89,440.87 +11.12,44.92,1025.58,93.52,470.82 +18.82,61.27,1019.5,72.23,455.29 +25.11,62.26,1011.12,78.01,434.97 +21.89,58.05,1011.31,85.71,441.76 +12.87,48.04,1012.47,100.13,465.56 +25.54,60.37,1006.49,71.54,436.14 +7.05,40.69,1020.53,89.67,476.75 +9.11,36.66,1026.47,74.79,480.74 +24.77,71.94,1006.77,88.86,432.27 +8.51,40.81,1015.54,83.16,481.02 +17.1,62.1,1020.39,93.63,453.4 +7.11,39.9,1008.82,87.76,484.21 +20.01,56.65,1020.77,74.45999999999998,457.01 +25.27,63.91,1009.82,75.48,440.39 +29.72,54.2,1012.86,38.48,438.84 +27.42,65.74,1013.43,69.42,440.52 +28.44,77.54,1011.73,77.3,433.21 +25.89,48.41,1008.49,68.58,440.92 +31.39,69.59,1008.28,62.86,435.76 +17.1,49.69,1005.53,81.81999999999998,457.32 +15.24,44.45,1020.56,66.13,460.94 +13.9,39.59,1011.84,94.74,465.0 +30.52,70.4,1003.9,64.33,438.29 +21.78,68.28,1001.0,79.3,443.24 +28.07,68.08,1013.13,44.67,437.65 +26.07,71.37,1008.6,79.48,439.25 +18.0,43.7,1015.4,61.28,464.26 +9.93,40.67,1018.08,69.74,485.23 +23.48,65.12,1015.82,60.83,445.66 +12.66,41.2,1015.88,89.12,466.49 +25.95,59.27,1010.9,70.42,444.19 +10.34,41.46,1017.75,89.73,478.03 +18.2,39.63,1005.35,79.05,468.49 +23.64,70.04,1011.09,83.35,435.21 +17.38,43.14,1011.09,61.9,459.02 +27.67,69.59,1009.13,82.15,437.29 +22.18,59.39,1014.82,85.31,440.94 +14.86,37.85,1010.58,86.8,467.71 +25.9,47.45,1007.8,55.96,443.13 +25.88,66.48,1004.24,63.16,434.4 +21.12,47.24,1003.79,70.55,462.41 +20.03,62.26,1012.15,82.54,447.4 +21.86,49.21,1014.61,53.31,452.77 +11.71,40.05,1014.49,86.09,471.49 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/train.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8e4f06f47506230c9250aba198646e237e7e5c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/staged/public/val.csv @@ -0,0 +1,957 @@ +AT,V,AP,RH,PE +25.69,57.32,1012.34,44.18,441.43 +17.98,59.15,1012.09,83.03,451.97 +11.52,40.75,1016.23,85.18,477.19 +26.43,66.48,1004.36,55.9,435.59 +24.26,69.51,1013.43,53.23,442.56 +19.68,62.96,1020.41,82.26,453.58 +10.28,41.46,1018.44,85.23,479.66 +25.15,62.91,1012.23,48.22,444.19 +23.28,72.23999999999998,1011.3,90.5,434.21 +11.6,40.27,1008.55,72.12,473.89 +22.75,58.79,1011.44,84.47,445.67 +6.77,39.81,1017.01,87.68,488.27 +19.48,58.66,1013.32,73.16,454.4 +23.93,65.59,1011.09,87.26,444.9 +17.77,44.6,1016.97,54.25,460.13 +33.58,77.54,1010.19,53.49,433.75 +7.49,39.81,1019.03,87.29,483.59 +6.33,42.07,1004.25,77.09999999999998,484.57 +12.43,41.62,1011.87,80.56999999999998,460.61 +25.34,64.27,1013.38,66.02,443.94 +17.17,63.09,1020.54,95.98,446.75 +27.75,69.89,1015.41,73.01,430.33 +29.62,73.18,1012.21,61.6,427.22 +24.35,70.04,1010.92,73.88,438.4 +27.39,69.14,1008.82,78.34999999999998,435.22 +31.18,70.36,1006.38,56.74,438.46 +26.56,49.02,1007.65,70.78,438.82 +24.24,71.58,1010.15,91.14,437.75 +11.82,41.26,1020.74,91.14,466.95 +14.38,40.1,1015.51,81.23,467.28 +26.65,74.16,1008.27,94.54,431.47 +26.16,67.9,1005.81,61.02,444.06 +5.52,39.33,1009.74,95.25,492.39 +31.24,68.3,1015.89,42.84,435.2 +26.22,67.45,1013.7,44.04,440.17 +21.67,69.71,1010.46,96.83,440.16 +13.4,40.89,1010.67,91.66,472.36 +13.78,43.22,1011.31,69.7,463.71 +9.88,39.66,1017.81,76.05,480.05 +10.34,41.74,1020.07,79.17,480.84 +26.86,71.32,1007.38,81.14,430.44 +12.95,41.38,1021.97,53.83,474.46 +26.94,65.61,1014.31,49.73,443.9 +21.81,43.77,1011.97,64.72,453.13 +18.9,56.03,1020.77,71.83,457.66 +14.87,41.23,997.39,82.06,465.01 +20.46,59.21,1018.42,85.89,445.22 +24.3,69.94,1007.02,62.14,438.92 +24.58,71.94,1006.85,89.02,433.99 +9.88,40.0,1021.4,92.06,481.58 +29.85,71.58,1010.04,58.66,432.26 +27.5,65.59,1011.23,65.37,441.27 +6.14,40.62,1015.71,86.51,481.66 +20.76,51.19,1009.0,87.23,445.0 +25.55,58.95,1017.12,51.84,442.3 +10.24,41.17,1019.73,82.04,479.78 +14.45,43.71,1025.26,84.23,463.6 +30.76,59.57,1010.66,61.76,439.32 +5.72,40.81,1025.78,92.46,487.8 +30.24,68.24,1009.68,64.67,426.25 +34.61,73.03,1013.61,36.91,438.56 +24.14,62.66,1007.33,73.27,439.93 +26.76,70.98,1007.64,90.51,437.83 +18.47,62.1,1019.86,82.57,452.51 +29.51,75.59999999999998,1017.92,50.61,431.18 +29.05,71.85,1008.6,78.69,428.39 +21.89,45.38,1014.42,68.95,459.45 +24.67,63.56,1013.75,67.56,446.3 +30.67,71.29,1008.36,52.08,430.28 +25.21,49.82,1016.44,63.14,450.75 +9.76,41.01,1019.66,97.59,467.6 +18.31,62.1,1020.38,79.02,455.24 +33.11,77.54,1010.36,50.99,431.77 +26.18,69.14,1006.54,85.95,436.0 +8.72,40.02,1031.32,78.09,477.86 +17.06,58.96,1013.83,73.95,461.15 +8.01,40.62,1015.62,86.43,476.22 +14.35,35.71,1016.1,60.86,468.9 +29.74,70.32,1008.1,52.72,432.69 +23.0,49.5,1014.15,66.68,454.44 +17.09,42.42,1009.03,72.01,464.11 +14.0,40.8,1026.17,54.82,474.87 +25.02,60.29,1017.49,54.75,445.61 +13.86,41.58,1020.69,70.74,461.56 +27.58,78.05,1010.83,94.98,431.95 +26.41,60.93,1007.16,66.02,436.71 +11.02,41.44,1015.28,83.53,476.68 +25.48,58.95,1017.02,51.16,440.42 +15.47,48.98,1016.42,89.85,457.55 +21.48,47.43,1006.88,63.54,449.2 +18.86,51.43,1010.27,86.0,446.91 +20.94,44.58,1016.98,59.65,463.69 +15.02,41.48,1015.19,58.69,456.04 +28.71,70.32,1011.78,76.53,435.95 +14.28,42.77,1020.06,81.77,466.75 +26.24,77.95,1014.19,85.21,438.01 +24.31,63.86,1019.47,58.54,442.69 +8.51,40.78,1023.51,89.84,471.11 +16.07,65.46,1013.88,87.11,450.54 +8.14,39.96,1023.41,88.86,477.05 +18.43,44.63,1019.76,39.99,458.75 +34.2,68.14,1002.7,56.09,427.05 +17.66,62.1,1019.49,86.3,452.03 +23.77,51.43,1006.67,84.09,441.54 +16.59,39.54,1007.97,70.58,464.19 +15.01,43.56,1014.65,61.82,465.84 +29.09,70.02,1010.13,48.06,443.27 +20.1,59.87,1018.97,87.23,444.71 +9.0,39.18,1024.38,84.91,483.26 +16.85,50.9,1013.26,83.94,460.68 +28.44,69.4,1003.98,73.51,433.44 +9.51,40.81,1015.69,82.52,475.29 +25.99,49.82,1015.95,58.56,452.09 +6.86,41.17,1020.12,79.14,490.23 +8.57,39.69,1000.91,99.9,474.29 +23.3,48.78,1018.17,75.36,441.08 +32.95,67.9,1005.88,45.15,425.89 +24.41,73.67,1007.39,86.92,435.56 +17.51,39.54,1010.22,71.53,462.12 +31.68,73.68,1014.85,64.0,431.11 +9.0,41.54,1018.83,79.61,484.08 +18.4,43.96,1012.4,77.81,464.63 +13.72,49.83,1006.88,89.49,463.65 +7.16,38.56,1019.17,70.1,486.12 +14.33,43.41,1015.43,55.4,462.94 +13.53,42.86,1014.0,90.63,471.73 +13.11,41.58,1020.43,74.31999999999998,460.44 +23.98,50.32,1008.41,67.75,443.45 +31.08,59.57,1010.76,60.49,442.88 +33.62,77.17,1009.38,63.71,431.03 +11.93,38.78,1013.15,96.08,474.57 +21.97,68.12,1012.53,75.12,443.39 +23.83,49.21,1012.93,46.79,446.23 +4.96,45.87,1007.32,98.78,481.88 +31.3,70.79,1004.3,54.37,428.75 +17.75,49.25,1020.86,63.67,454.41 +29.89,71.29,1009.0,55.72,431.45 +12.11,41.17,1019.46,62.59,475.53 +23.85,74.22,1009.99,82.72,441.66 +12.16,40.81,1025.79,70.97,476.63 +23.71,60.23,1009.76,90.67,439.66 +22.49,58.71,1009.75,76.43,443.33 +18.9,57.5,1016.21,93.9,451.42 +27.86,63.07,1011.11,56.81,440.48 +26.04,71.14,1011.66,68.95,433.78 +19.51,44.05,1008.52,78.38,451.7 +10.92,40.92,1021.84,83.03,467.05 +8.51,42.32,1015.08,84.89,476.6 +19.68,68.28,1002.62,71.57,452.47 +27.75,70.4,1006.65,90.21,436.53 +21.59,66.54,1004.88,90.54,441.71 +13.93,42.86,1032.37,71.11,468.88 +16.55,41.66,1011.45,55.53,465.14 +25.53,71.85,1009.19,74.7,431.26 +20.67,57.5,1014.42,81.89,453.29 +25.21,69.48,1010.99,75.27,436.02 +9.29,39.04,1022.72,74.29,482.55 +33.92,77.95,1010.15,58.89,433.01 +25.63,71.58,1010.14,87.57,433.76 +27.21,66.49,1013.57,40.11,439.04 +10.42,41.26,1008.48,96.76,472.54 +25.02,59.44,1012.49,73.65,444.08 +24.2,59.43,1009.69,62.3,440.66 +15.82,44.88,1018.59,78.88,461.9 +11.46,38.91,1012.34,77.37,477.5 +13.17,36.71,1012.82,72.76,474.93 +23.47,65.61,1014.57,69.83,447.16 +10.77,41.46,1021.42,87.18,479.22 +28.47,69.23,1013.18,40.73,434.12 +30.03,70.02,1010.07,64.2,436.88 +13.89,35.71,1016.4,65.49,468.54 +13.26,41.78,1009.77,61.69,467.78 +12.31,37.73,1023.3,63.01,472.08 +19.61,45.01,1014.84,64.42,461.97 +18.58,44.6,1016.61,48.15,459.06 +23.18,51.43,1011.56,81.83,449.94 +28.33,68.14,1004.63,71.21,431.27 +14.82,40.0,1016.32,66.3,458.46 +21.42,56.89,1014.39,84.05,444.86 +26.62,76.2,1006.06,69.13,437.81 +28.17,72.43,1007.37,68.92,428.88 +20.86,63.73,1008.54,96.83,440.42 +25.45,63.76,1009.96,67.78,439.56 +29.15,73.42,1011.43,66.49,432.26 +32.33,67.83,1008.11,57.48,427.84 +13.45,45.87,1008.73,87.06,464.88 +29.91,76.86,998.59,72.41,432.6 +24.93,73.5,1011.28,83.09,437.35 +9.71,42.44,1014.29,94.03,481.03 +16.69,53.82,1015.39,63.62,458.96 +22.36,51.43,1007.47,87.33,442.53 +25.57,44.05,1005.79,65.14,443.84 +7.36,41.01,1025.49,96.48,477.37 +14.22,42.32,1015.54,77.23,465.0 +18.33,49.64,1025.36,62.57,468.14 +31.1,68.51,1012.99,54.3,428.68 +27.62,71.14,1011.6,52.8,434.72 +17.04,56.03,1020.38,68.69,462.48 +17.31,44.71,1017.43,35.4,463.05 +31.61,69.04,1008.11,47.96,439.19 +28.14,51.43,1012.16,52.67,445.33 +8.77,40.46,1019.68,77.84,475.0 +6.15,40.77,1022.42,88.57,482.49 +21.39,52.3,1009.2,79.77,446.87 +12.29,40.71,1019.71,83.09,469.75 +11.6,39.96,1011.65,80.79,473.22 +26.68,68.08,1011.41,67.33,433.04 +7.71,38.06,1021.0,83.47,482.78 +10.07,44.68,1023.44,90.95,477.52 +22.08,45.61,1014.02,75.70999999999998,456.71 +30.74,69.59,1008.69,68.04,437.81 +26.49,67.69,1004.61,78.13,430.62 +14.55,44.84,1023.83,87.6,465.14 +16.55,39.64,1009.07,77.8,465.29 +11.68,40.55,1006.48,96.16,474.8 +10.95,40.22,1010.04,78.95999999999998,477.23 +11.83,38.25,1013.36,85.33,473.31 +23.38,48.78,1019.03,78.69,446.18 +29.77,69.48,1009.8,52.6,432.69 +24.12,58.66,1011.55,58.96,450.69 +6.1,39.33,1010.4,95.34,491.37 +6.93,41.14,1027.18,84.67,479.06 +27.6,69.05,1003.87,42.01,436.08 +11.23,41.17,1019.36,56.85,475.85 +18.84,40.79,1005.18,92.46,459.96 +29.47,71.32,1008.07,67.0,437.14 +23.3,72.98999999999998,1008.54,92.11,437.62 +29.15,69.48,1008.68,55.78,430.54 +21.99,42.48,1011.77,74.04,456.65 +21.77,42.23,1013.03,67.44,462.51 +27.61,49.16,1005.01,35.63,441.18 +26.05,65.38,1009.43,52.1,449.82 +14.8,44.71,1014.67,41.71,470.77 +15.71,39.3,1019.2,62.28,462.84 +16.44,53.16,1014.82,75.29,458.49 +17.03,58.49,1011.91,92.16,460.48 +10.12,41.55,1005.78,62.34,475.46 +10.17,41.17,1018.58,87.72,478.04 +23.37,65.46,1016.25,48.64,447.07 +11.98,44.6,1018.59,86.71,470.02 +24.66,48.78,1018.39,71.79,449.11 +16.61,43.77,1012.25,77.23,457.66 +14.79,47.83,1007.27,92.04,463.22 +29.2,64.84,1009.94,55.37,441.9 +23.26,58.2,1016.72,57.98,446.87 +7.19,39.37,1019.67,70.77,480.4 +20.94,49.02,1008.91,87.32,448.18 +27.89,73.20999999999998,1001.32,85.88,431.59 +23.63,71.29,1008.01,70.07,442.65 +20.91,58.2,1018.1,62.8,446.19 +14.91,46.9,1019.59,98.1,461.73 +23.82,73.67,1007.26,88.16,438.42 +32.09,79.73999999999998,1006.92,61.5,432.85 +16.69,46.18,1011.0,97.85,458.57 +17.16,58.86,1016.4,86.39,453.76 +28.05,70.36,1006.73,64.42,434.06 +30.54,70.17,999.42,64.32,434.62 +21.95,50.66,1013.92,70.94,455.23 +24.49,59.87,1018.4,59.95,444.54 +10.62,39.58,1011.9,87.85,479.91 +11.47,25.36,1008.27,95.4,469.51 +24.84,71.73,1009.84,82.41,436.36 +20.66,51.19,1008.81,88.93,447.14 +26.85,63.56,1013.25,52.84,444.39 +25.56,69.13,1002.46,68.26,434.48 +20.0,39.53,1007.59,62.09,456.28 +8.22,41.82,1032.77,71.63,477.86 +21.84,59.39,1015.77,88.12,442.11 +14.26,44.47,1028.81,72.19,465.77 +14.35,39.39,1012.92,82.41,470.53 +22.89,80.25,1006.38,80.25,446.15 +24.34,73.5,1011.31,84.15,440.29 +23.86,59.21,1013.02,73.59999999999998,441.22 +27.71,69.13,1001.63,51.45,432.54 +22.63,70.47,1008.0,82.27,441.92 +31.23,75.08,1004.93,46.19,439.14 +10.31,40.67,1017.61,69.61,485.25 +7.64,39.85,1012.78,88.09,481.53 +31.44,79.73999999999998,1006.95,56.99,431.69 +4.89,45.87,1007.58,99.35,482.69 +27.91,63.76,1010.27,65.67,435.21 +19.05,53.16,1013.22,82.8,455.76 +28.36,69.88,1007.75,84.17,434.03 +27.69,73.91,1005.23,75.70999999999998,435.08 +22.85,59.15,1014.74,63.92,448.61 +23.0,57.76,1017.64,56.86,451.39 +30.04,68.08,1011.04,51.01,429.52 +17.08,38.58,1015.41,73.42,461.49 +27.13,69.45,1013.9,51.16,434.47 +30.65,65.18,1012.51,42.32,436.79 +23.91,50.23,1017.25,68.57,455.41 +7.64,42.28,1008.49,83.42,483.74 +6.77,40.78,1024.86,96.58,478.24 +18.41,44.9,1008.97,73.81,453.12 +14.29,39.59,1010.93,94.53,463.04 +29.29,71.14,1011.49,49.97,432.58 +29.17,67.45,1014.1,46.85,435.08 +23.55,65.94,1011.76,58.44,443.98 +19.05,59.21,1017.99,89.53,451.0 +18.22,49.25,1020.33,61.87,454.66 +14.8,38.73,1003.18,80.73,467.54 +5.28,45.87,1008.25,97.88,479.91 +13.07,43.13,1016.93,70.02,471.47 +21.37,81.56,1006.57,81.56,434.38 +9.96,41.55,1002.59,65.86,475.91 +13.86,41.78,1010.75,57.9,467.39 +11.33,41.16,1019.05,87.13,468.87 +16.81,42.42,1008.95,74.25,462.19 +29.79,67.69,1006.86,55.93,428.71 +14.44,41.2,1015.96,81.97,469.85 +9.08,40.46,1019.48,77.37,476.81 +17.3,57.76,1016.26,87.74,455.75 +27.06,64.45,1008.72,54.21,443.1 +14.64,39.58,1011.46,71.9,467.8 +23.69,77.54,1009.32,89.7,440.21 +9.05,36.3,1027.44,74.84999999999998,479.43 +24.73,74.22,1010.15,79.83,436.55 +19.94,44.9,1008.52,74.69,459.47 +8.73,39.42,1025.63,69.87,474.44 +26.66,73.56,1006.9,99.27,433.62 +31.81,69.88,1007.94,55.91,432.6 +17.47,58.59,1014.03,97.13,449.41 +22.18,62.39,1007.84,85.74,452.31 +18.25,43.14,1011.51,55.16,462.78 +20.34,69.45,1012.76,91.05,442.73 +27.44,58.9,1003.86,66.74,442.19 +27.75,77.23999999999998,1007.48,78.37,433.57 +19.13,59.21,1018.32,89.66,450.81 +19.84,65.48,1019.54,76.59999999999998,449.85 +21.1,62.66,1011.19,83.49,448.8 +20.15,58.59,1014.13,91.96,443.85 +28.85,58.33,1013.78,41.39,444.0 +19.39,60.1,1010.28,83.31,452.57 +21.88,69.71,1010.28,97.64,444.39 +16.34,47.45,1009.41,92.96,448.59 +13.34,40.8,1026.56,64.85,474.47 +3.92,41.31,999.22,95.26,487.35 +21.97,58.12,1015.29,77.47,449.6 +13.89,44.84,1023.66,92.97,466.74 +13.98,40.71,1022.72,71.83,474.46 +16.55,41.93,1022.71,42.73,466.77 +21.17,52.3,1009.36,81.51,447.5 +24.37,65.61,1014.5,65.67,443.13 +24.42,64.79,1016.12,69.32,449.1 +16.54,42.86,1014.85,78.0,465.26 +8.199999999999998,41.14,1025.24,96.26,474.04 +26.17,58.86,1014.52,51.28,443.69 +14.24,39.58,1011.17,70.45,469.94 +14.1,42.18,1015.05,78.25,463.3 +24.91,52.3,1008.72,68.26,441.15 +32.55,69.89,1013.87,40.09,428.84 +20.7,58.16,1016.73,68.19,453.22 +29.7,57.19,1008.41,55.07,436.29 +17.66,60.08,1017.22,86.96,456.62 +30.03,68.84,1011.41,53.82,439.31 +26.45,54.5,1014.96,65.55,450.76 +12.57,41.79,1014.99,87.8,461.88 +30.82,78.87,1012.06,70.69,432.01 +16.97,44.92,1025.21,74.27,460.21 +14.84,38.91,1013.78,69.27,467.83 +20.99,50.78,1008.55,75.14,449.07 +12.35,44.2,1017.81,82.49,471.65 +19.64,46.33,1013.33,98.99,451.45 +29.14,61.5,1009.64,39.95,437.76 +11.82,41.17,1019.5,55.74,475.61 +23.94,51.95,1008.61,73.42,448.67 +17.4,63.09,1020.84,92.58,453.0 +8.949999999999998,43.13,1017.56,94.85,479.14 +29.12,51.43,1005.93,60.66,437.71 +29.13,47.93,1002.5,49.1,435.61 +30.56,71.25,1000.3,70.55,431.92 +19.07,44.63,1020.23,44.93,456.37 +32.96,69.75,1008.86,40.23,435.56 +19.35,39.72,1002.5,51.24,455.29 +31.92,68.3,1015.58,41.55,430.07 +13.85,48.92,1011.68,79.23999999999998,462.38 +26.69,70.36,1006.82,68.29,435.04 +17.66,44.9,1020.5,71.33,457.11 +16.05,38.28,1014.38,73.89,466.75 +6.24,35.77,1019.24,70.7,483.36 +6.43,39.61,1017.51,83.8,480.58 +15.12,39.16,1006.55,76.98999999999998,463.78 +15.84,49.69,1015.14,90.41,462.6 +18.41,42.44,1012.66,65.93,463.2 +15.54,41.96,1011.78,97.46,467.1 +28.26,69.23,1013.01,42.1,436.31 +12.24,40.96,1023.22,78.73999999999998,475.32 +25.45,75.23,1011.41,73.33,441.65 +5.25,42.85,1013.75,89.67,477.78 +9.82,41.04,1026.72,77.28,473.98 +11.44,41.39,1019.59,79.95,478.52 +12.07,38.25,1012.67,81.66,470.36 +28.51,70.02,1010.58,54.68,441.66 +23.47,60.77,1017.19,75.36,444.46 +20.42,45.01,1012.23,66.5,451.28 +21.13,47.43,1006.97,64.26,448.83 +18.62,65.48,1018.45,73.39,451.94 +15.68,43.7,1015.09,58.96,470.29 +7.46,39.81,1018.62,86.73,484.13 +11.38,52.75,1026.19,72.70999999999998,469.9 +21.11,43.43,1010.1,62.62,447.83 +32.38,77.23999999999998,1007.7,61.15,430.96 +19.74,45.38,1015.11,80.67,459.39 +19.18,50.12,1005.99,100.09,444.56 +10.19,37.14,1012.74,73.48,475.01 +20.98,43.77,1010.67,62.73,449.88 +13.47,44.88,1017.56,93.23,476.67 +27.23,44.05,1005.69,58.91,440.2 +7.3,43.65,1019.33,67.62,482.96 +18.26,60.95,1016.94,78.91,457.03 +9.55,40.67,1018.56,70.72,486.34 +26.1,63.56,1013.12,61.0,442.75 +25.88,63.73,1009.48,77.17,438.42 +20.29,63.09,1019.03,76.06999999999998,448.22 +22.58,59.14,1017.2,80.91,439.78 +27.57,60.07,1016.52,54.75,440.12 +30.48,70.04,1010.73,53.7,429.85 +9.27,38.56,1017.69,62.49,475.42 +15.01,42.77,1018.21,73.22,462.6 +31.01,73.5,1010.92,48.61,432.41 +19.62,68.63,1012.26,68.05,453.84 +24.26,47.93,1003.87,70.44,439.16 +14.87,41.76,1022.26,78.20999999999998,464.84 +31.0,71.77,1006.29,48.56,431.07 +28.84,74.67,1016.52,67.43,428.98 +18.48,50.16,1011.45,99.92,452.06 +30.49,64.44,1013.43,51.73,438.09 +27.49,71.94,1008.25,68.29,428.27 +21.76,47.93,1005.34,86.28,444.77 +13.78,44.47,1027.94,71.09,467.22 +25.28,66.25,1009.77,84.55,439.77 +27.17,61.02,1011.38,65.32,437.06 +20.51,42.23,1013.25,71.83,461.78 +15.43,39.16,1016.44,79.8,470.74 +12.7,39.72,1017.89,62.97,467.77 +26.86,72.58,1009.22,88.39,428.69 +26.06,58.59,1012.41,55.22,451.47 +10.56,40.22,1005.08,89.71,478.02 +25.33,73.20999999999998,1002.19,97.24,433.43 +3.0,39.64,1011.0,80.14,485.2 +30.91,69.75,1010.23,59.36,435.7 +27.34,71.64,1008.12,72.22,438.76 +15.34,43.5,1021.18,79.44,459.77 +18.99,59.27,1012.15,89.39,453.4 +12.14,40.27,1007.57,73.22,472.84 +30.75,71.22,1006.47,48.06,437.96 +16.05,41.96,1011.82,96.05,463.72 +14.83,53.82,1016.57,63.47,464.0 +25.12,66.56,1009.22,65.62,436.56 +13.72,41.62,1011.14,75.79,455.52 +20.94,58.16,1016.88,65.43,455.16 +24.81,67.17,1007.71,84.37,442.75 +10.2,41.46,1019.12,83.26,480.11 +26.19,49.3,1003.69,65.88,440.13 +24.7,58.82,1009.4,75.91,442.98 +31.82,73.68,1014.8,40.58,433.32 +10.29,40.56,1017.28,69.13,481.7 +15.94,44.85,1014.29,67.57,462.54 +21.28,70.32,1011.06,90.12,439.0 +12.45,40.1,1015.4,82.61,473.63 +25.15,57.32,1012.41,41.84,440.1 +28.52,57.82,1004.81,57.82,435.4 +22.47,48.6,1002.33,63.23,445.98 +15.21,43.5,1021.6,82.06,464.08 +27.88,63.87,1017.79,40.0,443.24 +32.14,68.31,1010.48,42.15,436.15 +28.28,69.48,1008.56,61.3,428.75 +12.12,38.28,1013.65,90.19,471.19 +13.44,41.14,1026.41,77.26,461.44 +15.12,41.04,1025.95,69.67,460.58 +9.73,40.22,1011.48,87.88,481.42 +14.05,39.59,1011.2,94.54,464.63 +28.43,63.31,1013.44,49.99,432.62 +12.38,41.62,1012.37,84.15,461.07 +7.09,39.37,1020.07,73.26,487.0 +11.69,35.76,1019.02,55.6,471.72 +25.76,63.94,1018.49,42.14,445.78 +14.91,43.34,1015.15,81.56,461.27 +21.91,70.32,1009.17,90.57,439.29 +23.56,73.18,1012.18,87.98,437.92 +19.98,49.15,1021.56,63.89,457.54 +24.33,49.16,1003.46,61.04,441.2 +9.22,40.92,1021.83,85.43,474.51 +32.16,71.32,1005.5,60.23,434.01 +27.29,64.45,1013.46,45.35,446.94 +28.14,61.47,1009.69,64.66,435.35 +26.71,70.4,1007.59,82.63,432.64 +19.83,46.33,1013.27,96.4,451.22 +13.49,43.41,1015.75,57.86,461.06 +14.13,53.82,1016.72,64.85,467.08 +20.6,66.86,1013.08,62.48,451.44 +22.01,60.84,1017.55,83.82,441.9 +5.89,35.77,1019.78,79.58,479.86 +26.02,70.79,1004.21,79.12,428.72 +14.08,41.93,1023.02,59.41,475.15 +24.96,77.54,1008.25,80.59999999999998,433.4 +32.21,71.85,1008.25,58.09,429.15 +26.59,69.13,1009.27,73.95999999999998,430.11 +8.529999999999998,43.14,1012.25,78.88,480.08 +25.94,66.49,1012.83,61.81,433.38 +7.76,39.61,1021.63,80.67,488.32 +27.21,67.45,1013.83,43.26,436.47 +19.08,59.15,1013.1,81.81999999999998,451.33 +30.97,67.9,1005.98,55.6,428.26 +7.53,41.74,1022.45,90.85,487.25 +32.19,69.13,1000.45,48.22,425.21 +27.32,66.54,1004.95,72.58,431.33 +14.92,46.18,1014.21,98.82,465.63 +24.62,72.43,1007.97,84.36,436.89 +14.47,44.66,1016.33,93.52,464.41 +26.35,59.44,1012.16,63.73,443.73 +26.38,65.12,1016.1,47.57,441.07 +24.44,52.84,1006.39,49.05,440.2 +32.63,74.98999999999998,1002.42,40.07,432.79 +29.49,69.71,1009.34,56.35,440.99 +30.58,70.04,1010.4,48.16,431.59 +13.24,39.16,1016.52,86.66,474.48 +12.91,41.66,1013.37,71.52,469.71 +25.1,43.77,1010.9,49.68,444.99 +16.0,43.02,1012.37,39.2,466.01 +23.62,61.87,1010.07,48.77,447.93 +25.54,70.47,1009.28,73.5,436.16 +15.89,41.7,1018.93,82.68,463.33 +23.79,50.16,1005.32,75.81999999999998,435.49 +17.77,56.53,1019.57,79.89,457.94 +21.54,58.41,1013.99,86.34,450.69 +24.49,70.79,1005.51,88.65,430.54 +13.52,39.39,1012.91,84.03,474.82 +13.51,44.9,1019.29,77.23999999999998,464.86 +28.9,68.84,1011.64,64.44,437.06 +26.28,75.23,1011.44,68.35,435.28 +28.81,64.96,1000.46,68.05,427.91 +17.49,63.94,1020.02,82.6,452.71 +20.61,48.78,1020.8,85.05,449.38 +27.84,71.32,1007.72,79.25,431.37 +22.7,60.84,1019.15,71.48,438.59 +7.21,42.03,1017.81,90.12,482.26 +14.68,41.23,998.43,83.71,469.25 +21.93,60.84,1018.96,76.8,440.76 +9.23,37.36,1015.01,67.38,481.08 +27.51,49.3,1003.74,61.27,437.09 +20.76,70.72,1009.73,89.04,448.85 +30.65,71.06,1008.61,76.76,432.08 +10.31,42.49,1009.43,78.36,479.64 +27.27,72.58,1009.25,89.31,428.93 +28.61,68.12,1012.23,46.45,435.28 +19.65,44.89,1009.76,75.36,451.35 +30.24,69.88,1007.9,61.46,436.37 +31.26,68.94,1005.94,39.49,438.03 +25.16,74.33,1014.55,76.7,436.15 +16.73,58.59,1015.02,89.61,455.3 +30.57,58.9,1004.54,54.37,438.49 +17.18,63.09,1020.67,93.58,451.37 +27.35,61.47,1008.43,70.65,443.67 +19.11,50.16,1010.88,100.09,450.38 +26.48,68.14,1004.83,55.96,432.19 +13.84,42.18,1015.74,79.76,468.66 +29.1,76.2,1006.28,60.22,435.97 +13.91,40.24,1017.03,85.93,466.24 +13.73,41.78,1011.75,49.65,464.94 +25.4,65.34,1013.11,53.93,445.82 +14.73,39.52,1017.01,74.20999999999998,470.45 +27.58,66.48,1004.82,51.23,435.34 +24.03,62.44,1010.96,79.88,430.66 +19.78,63.09,1019.01,78.39,448.34 +12.57,41.66,1009.11,70.74,475.61 +13.95,41.49,1019.95,86.46,465.24 +13.77,47.83,1007.41,90.66,466.07 +21.52,50.66,1013.56,74.33,455.71 +27.98,67.9,1006.3,73.53,436.08 +14.57,44.45,1021.42,66.23,462.48 +25.46,70.32,1010.65,64.7,433.08 +8.58,38.38,1021.03,84.37,482.26 +28.18,66.56,1005.69,65.67,426.79 +32.07,70.94,1006.91,49.9,432.33 +17.94,37.2,1012.64,68.11,467.65 +7.34,40.72,1023.01,80.08,483.92 +10.8,39.28,1010.7,82.62,478.8 +24.34,70.79,1006.82,85.66,433.83 +26.45,64.27,1013.23,60.92,444.9 +18.38,62.1,1020.12,77.27,452.91 +32.53,77.95,1014.76,58.1,434.44 +7.99,36.08,1020.08,83.2,481.35 +21.16,50.66,1014.13,72.77,455.86 +15.71,40.12,1012.81,97.46,462.6 +20.58,39.53,1005.68,62.09,460.1 +32.0,58.9,1003.48,51.38,437.81 +30.29,74.16,1008.77,75.23,431.39 +31.38,68.27,1006.79,52.79,426.67 +29.67,66.51,1015.6,34.1,434.8 +19.9,56.53,1020.52,78.05,456.48 +23.6,57.17,1009.84,74.27,446.05 +4.59,39.33,1010.85,71.78,494.9 +12.76,43.7,1015.13,65.34,475.73 +6.53,42.85,1012.65,91.6,480.98 +14.46,53.82,1016.55,68.11,462.6 +23.75,61.5,1008.16,69.14,442.35 +22.28,59.92,1009.36,95.38,437.85 +24.4,60.37,1006.77,82.43,440.64 +29.82,69.75,1010.09,65.02,442.6 +20.29,65.27,1013.17,74.94,445.52 +27.2,72.43,1006.75,80.67,430.32 +5.7,40.62,1016.07,84.94,482.82 +24.54,65.46,1014.27,40.77,446.26 +16.57,63.31,1016.19,81.02,454.78 +29.89,65.74,1012.95,51.36,438.24 +24.37,70.02,1010.97,71.97,443.53 +24.16,65.06,1013.88,58.96,442.32 +14.9,52.05,1015.11,77.33,464.82 +26.88,74.78,1010.42,64.81,440.84 +27.02,72.58,1009.21,89.13,437.8 +10.13,38.16,1013.57,79.04,474.92 +15.27,38.73,1002.83,77.77,465.99 +14.03,44.88,1019.6,57.63,465.51 +8.51,41.26,1023.17,87.79,477.51 +8.68,41.82,1032.83,73.62,478.61 +12.85,41.14,1027.04,86.29,464.86 +25.27,67.07,1006.34,66.35,445.81 +28.62,69.71,1009.67,62.12,437.52 +23.87,60.27,1018.94,77.16,439.86 +26.54,69.48,1010.7,66.09,432.56 +12.83,44.88,1017.86,87.88,474.26 +15.62,41.76,1023.82,66.17,459.72 +28.28,61.86,1012.07,64.49,439.65 +20.06,62.1,1020.21,72.20999999999998,451.81 +13.86,35.71,1015.21,63.16,471.63 +28.19,68.08,1013.41,43.93,436.43 +18.02,53.16,1013.41,82.84,458.01 +14.8,43.99,1022.89,85.25,461.97 +9.26,41.66,1016.87,73.31999999999998,483.51 +20.65,66.51,1014.94,71.83,456.49 +13.03,39.52,1016.68,83.09,473.99 +13.41,49.83,1008.83,87.14,466.38 +3.73,39.42,1024.4,82.42,488.58 +26.95,70.79,1004.09,75.34999999999998,430.07 +11.7,43.41,1016.08,62.27,467.51 +13.09,54.3,1017.61,82.38,471.0 +5.21,41.31,1003.51,91.23,486.46 +12.65,44.0,1023.03,88.73,471.46 +16.01,49.64,1026.35,77.75,457.8 +15.34,41.23,996.87,86.56,465.16 +17.94,62.1,1019.81,82.65,453.55 +33.01,68.67,1005.2,51.41,433.94 +22.91,66.44,1011.23,63.43,444.48 +31.35,67.32,1013.74,38.56,439.81 +10.63,40.67,1017.13,66.12,483.27 +4.27,39.64,1010.99,84.85,487.19 +21.14,58.05,1012.98,87.27,449.74 +25.36,60.07,1015.06,66.11,439.73 +11.44,44.2,1018.14,84.9,476.12 +13.35,39.58,1012.41,83.45,465.85 +23.88,54.2,1012.81,64.52,444.97 +15.65,43.5,1021.39,78.58,463.5 +6.72,38.91,1016.89,90.47,485.89 +15.74,43.71,1024.7,78.38,462.66 +19.84,56.89,1013.23,78.31999999999998,447.92 +11.44,43.13,1014.88,63.88,477.57 +26.55,69.45,1013.88,55.39,435.64 +19.96,39.53,1006.16,62.77,460.49 +10.8,40.69,1014.3,87.44,478.19 +8.36,38.91,1016.27,88.82,482.09 +8.55,35.77,1016.15,73.31999999999998,481.44 +31.84,71.37,1003.51,46.22,432.04 +5.94,39.9,1007.84,86.33,485.86 +14.35,40.71,1023.09,69.5,473.56 +31.91,67.83,1008.76,53.22,425.28 +25.35,74.33,1015.29,77.84,435.66 +9.32,36.3,1027.67,73.25,479.52 +16.34,42.28,1008.08,52.8,463.29 +29.95,73.42,1011.44,66.32,432.81 +7.09,43.65,1019.6,72.09999999999998,483.42 +25.63,72.98999999999998,1008.2,86.8,436.64 +28.54,71.94,1007.4,65.99,430.91 +25.57,65.46,1014.81,38.58,444.46 +12.99,44.0,1025.22,90.27,470.93 +14.77,48.06,1010.92,69.81,461.52 +31.09,59.57,1010.67,60.5,440.08 +14.04,48.79,1017.62,75.25,464.09 +29.12,66.56,1006.9,49.79,429.94 +32.13,74.34,1003.34,56.39,436.3 +31.75,74.98999999999998,1003.25,53.33,430.82 +24.82,66.54,1010.0,60.36,440.88 +19.76,48.92,1010.48,46.57,456.69 +31.26,76.09,1006.66,63.91,430.36 +9.43,41.4,1028.81,85.83,475.8 +27.78,60.07,1014.66,53.74,439.43 +23.99,45.87,1007.63,52.62,443.66 +18.32,66.51,1015.18,81.5,459.89 +28.86,49.3,1003.93,52.85,435.75 +27.35,69.48,1008.51,65.81,432.31 +23.32,66.48,1003.92,72.25,436.26 +18.99,62.1,1020.0,76.76,453.09 +10.82,42.02,996.03,99.34,475.46 +14.81,43.69,1017.19,71.9,470.71 +22.77,59.92,1009.67,94.09,437.9 +18.61,47.83,1006.43,78.89,454.21 +26.5,66.05,1017.03,61.34,440.15 +16.11,44.92,1025.37,79.84999999999998,460.99 +30.51,70.94,1007.64,59.42,430.91 +13.48,41.44,1015.64,71.46,471.39 +16.37,43.5,1021.26,72.4,459.18 +21.19,50.16,1005.81,84.27,450.33 +26.38,59.92,1009.99,71.91,444.85 +24.45,65.12,1015.92,57.19,445.01 +28.6,71.22,1003.15,58.33,443.01 +29.39,69.89,1013.92,47.36,434.27 +25.91,68.08,1010.92,74.25,432.07 +19.94,65.46,1017.7,68.94,448.67 +13.95,71.14,1019.76,75.51,461.18 +33.7,68.27,1007.16,50.41,427.4 +6.58,40.07,1014.22,55.44,493.72 +9.79,39.69,1002.36,93.86,471.61 +18.41,65.94,1010.23,84.71,452.66 +22.89,48.98,1014.55,48.21,448.56 +25.68,46.21,1011.01,57.53,442.98 +32.77,72.86,1003.6,52.87,433.84 +13.18,43.8,1023.18,61.21,467.0 +28.99,54.2,1012.79,41.9,442.6 +26.34,59.21,1013.37,58.98,439.22 +21.11,58.66,1011.7,68.71,457.89 +24.28,71.98,1006.34,90.45,432.47 +28.46,73.67,1005.67,71.21,429.15 +27.16,59.87,1011.78,58.84,446.38 +18.36,53.16,1013.31,83.18,458.47 +20.35,50.9,1012.6,72.43,453.5 +8.57,40.69,1020.87,84.15,485.18 +8.97,44.03,1013.16,80.39,474.61 +20.95,70.72,1009.96,87.73,445.66 +23.49,47.45,1008.46,66.18,446.72 +7.26,41.22,1014.86,97.82,488.75 +27.36,58.33,1013.86,56.7,439.14 +27.98,67.17,1007.32,75.29,440.68 +25.15,68.51,1013.25,72.31,440.96 +26.82,60.96,1012.25,57.41,449.81 +4.24,39.9,1009.28,96.74,491.25 +24.49,65.06,1014.07,63.32,441.4 +19.65,42.23,1013.04,75.9,461.16 +9.57,39.82,1013.12,89.15,468.02 +31.46,66.54,1002.86,53.75,427.76 +7.2,40.35,1011.83,95.59,484.9 +18.19,66.54,1012.9,86.05,449.22 +23.21,73.42,1010.34,88.29,439.66 +29.31,68.67,1006.18,63.38,435.57 +23.54,41.1,1002.05,38.05,448.56 +24.22,62.08,1022.53,60.79,449.11 +21.85,59.8,1016.89,75.28,454.26 +29.79,62.66,1008.5,48.51,440.27 +7.06,41.74,1021.95,90.38,448.97 +15.55,39.63,1004.98,89.82,466.83 +11.09,40.43,1025.47,74.97,490.96 +23.85,72.43,1008.01,88.34,439.02 +24.87,68.61,1011.19,55.69,450.54 +20.67,63.56,1013.27,79.39,450.7 +15.33,42.28,1008.19,66.15,465.2 +20.73,41.1,1001.86,47.51,456.44 +12.53,44.03,1007.21,84.2,470.04 +13.43,50.59,1020.38,86.3,469.33 +23.61,63.94,1012.9,87.06,441.57 +24.07,71.97,1008.83,94.87,441.84 +28.28,61.47,1009.44,60.89,443.12 +9.75,43.69,1016.81,82.42,481.34 +11.96,43.41,1017.42,79.44,469.34 +14.02,40.75,1016.05,70.65,470.48 +8.25,37.49,1009.02,81.09,480.38 +22.8,49.16,1006.4,77.05,439.65 +24.13,45.61,1012.63,71.36,453.19 +15.96,41.66,1011.93,55.47,466.39 +17.48,49.39,1021.51,84.53,460.01 +4.95,42.07,1004.87,80.88,485.67 +12.02,43.69,1016.12,74.06999999999998,477.74 +14.16,39.28,1015.63,77.29,471.27 +21.17,58.16,1017.16,68.11,452.02 +4.97,40.64,1020.91,94.28,485.43 +27.28,78.92,1011.05,75.48,434.78 +10.42,44.85,1014.18,88.36,479.03 +12.75,44.2,1017.59,81.22,471.03 +13.1,40.03,1017.79,84.48,470.75 +29.09,72.43,1006.86,65.47,427.3 +27.64,75.59999999999998,1017.35,54.78,441.04 +7.79,41.01,1024.0,97.2,477.0 +16.52,43.7,1015.08,58.36,466.73 +17.79,40.12,1012.74,79.03,459.13 +15.04,38.01,1022.46,78.29,468.12 +15.92,39.16,1006.59,71.32,460.45 +20.4,57.85,1011.14,92.47,450.07 +20.25,63.91,1009.27,97.97,448.37 +14.24,39.52,1018.22,77.19,468.51 +28.11,70.98,1007.76,85.6,431.83 +21.3,66.86,1013.04,55.43,450.56 +16.56,42.99,1007.48,74.45,464.62 +8.93,40.46,1019.03,71.0,472.77 +17.48,44.2,1018.89,61.51,457.15 +10.38,41.01,1020.8,94.26,465.9 +21.83,57.85,1012.49,75.16,448.21 +20.58,54.5,1015.04,89.83,467.76 +14.95,39.31,1009.15,75.3,462.72 +14.01,38.91,1015.86,69.24,470.1 +7.0,38.08,1020.27,77.67,482.38 +23.82,48.92,1010.48,44.45,446.85 +12.65,44.34,1019.4,71.45,468.8 +16.37,53.16,1014.89,74.84,459.52 +18.62,59.15,1012.85,82.54,450.81 +22.96,68.61,1011.15,76.62,447.18 +25.72,74.67,1016.64,75.93,434.83 +16.0,37.87,1020.24,78.41,461.33 +19.09,65.94,1012.53,81.06,446.34 +24.49,65.61,1014.71,63.47,447.26 +12.79,44.03,1007.46,95.93,464.35 +8.699999999999998,36.24,1013.34,89.5,478.69 +19.79,51.19,1008.77,94.72,447.96 +30.55,68.24,1009.43,63.84,426.8 +10.1,44.03,1008.11,90.29,471.59 +26.73,49.02,1007.75,67.73,438.17 +8.99,41.26,1020.52,91.96,476.09 +15.24,39.39,1013.01,74.23999999999998,469.79 +30.36,71.8,1010.9,63.27,437.4 +10.98,41.54,1019.94,69.83,479.08 +29.08,70.83,1007.98,51.95,430.91 +25.23,61.86,1013.0,76.18,441.48 +27.76,72.58,1009.04,84.96,429.25 +24.37,68.14,1005.22,59.27,440.22 +11.22,40.22,1011.01,81.67,476.7 +23.43,51.43,1011.31,73.55,444.09 +22.81,58.96,1013.5,55.66,452.89 +15.71,44.06,1018.34,71.69,465.05 +10.34,37.5,1010.35,95.56,474.08 +11.01,40.05,1015.46,89.22,474.2 +28.59,69.84,1003.79,67.31,427.53 +29.86,59.57,1011.24,64.02,439.44 +3.95,38.44,1016.75,79.65,492.46 +16.98,63.09,1020.44,95.18,450.55 +28.03,60.23,1010.23,66.04,438.88 +24.43,58.05,1011.88,71.39,445.68 +13.97,45.01,1017.44,89.15,461.96 +9.11,40.02,1031.1,83.02,479.03 +22.08,55.5,1018.42,58.46,455.79 +31.61,75.08,1004.83,42.29,436.67 +8.68,43.14,1011.94,79.06,480.73 +29.11,74.9,1003.31,74.01,432.43 +12.71,43.8,1023.15,71.16,466.2 +31.24,74.22,1007.74,48.77,430.44 +9.18,42.18,1017.4,87.3,475.57 +4.15,39.9,1007.62,95.69,489.8 +14.93,43.02,1012.11,45.56,468.19 +12.24,40.66,1017.4,96.22,464.7 +20.87,63.31,1012.27,79.51,446.7 +21.12,62.52,1015.62,78.98,450.93 +19.23,41.67,1012.53,48.86,465.66 +30.74,71.77,1006.24,53.38,434.89 +25.42,73.20999999999998,1001.91,93.78,432.04 +18.97,50.59,1016.01,74.9,459.68 +23.65,66.05,1019.6,78.20999999999998,442.9 +15.26,46.18,1013.68,98.58,463.6 +24.41,58.59,1012.62,64.52,442.64 +20.79,50.59,1017.75,73.34999999999998,456.01 +8.34,40.72,1023.62,83.75,483.14 +31.12,68.14,1003.67,67.36,427.06 +24.92,63.94,1017.7,44.92,441.07 +29.3,70.04,1010.95,61.23,426.25 +16.46,61.27,1020.02,74.54,456.64 +24.44,69.84,1005.34,80.37,430.3 +6.17,39.33,1012.57,93.32,491.54 +18.15,41.67,1012.75,52.69,464.44 +26.38,71.58,1011.02,80.9,434.26 +23.99,67.69,1007.9,78.56999999999998,437.1 +26.51,67.25,1017.85,64.17,435.52 +24.31,66.49,1011.38,54.35,440.79 +29.04,70.72,1009.55,66.58,437.95 +13.26,41.74,1021.89,63.32,473.44 +18.32,65.94,1012.74,86.77,450.5 +4.87,42.85,1012.69,94.72,482.05 +24.98,60.32,1016.39,63.12,446.46 +14.77,44.9,1020.5,84.31,465.23 +28.77,75.23,1010.01,59.0,437.93 +28.5,76.86,999.49,77.47,430.62 +11.62,41.54,1019.94,66.43,477.75 +23.21,74.22,1009.68,88.46,440.46 +30.12,73.18,1012.29,61.32,429.31 +11.63,41.5,1013.6,87.11,477.3 +19.8,58.79,1017.04,87.71,449.66 +30.22,70.32,1011.63,65.97,435.98 +17.55,43.14,1018.86,76.0,461.58 +8.27,37.7,1015.09,73.64,479.16 +31.01,69.13,1000.93,62.96,425.69 +28.64,73.4,1011.48,52.84,441.32 +10.81,45.0,1023.45,85.89,482.63 +25.62,73.17,1011.65,86.45,430.56 +30.28,58.9,1005.03,54.59,439.06 +3.63,38.44,1016.16,87.38,487.87 +9.73,41.01,1021.76,97.71,469.11 +6.72,39.85,1011.84,84.66,489.09 +20.58,49.15,1021.42,56.15,453.87 +27.99,71.58,1010.68,68.99,435.99 +18.36,53.16,1013.14,79.89,457.94 +30.08,73.42,1011.17,63.86,434.95 +25.6,63.9,1013.16,53.19,451.44 +27.41,59.21,1013.3,50.93,438.39 +7.51,43.02,1014.35,86.46,485.38 +13.42,41.74,1020.96,61.8,473.45 +28.18,60.07,1016.34,49.13,441.61 +17.3,43.72,1009.64,77.86,456.55 +24.96,70.47,1007.73,76.48,438.23 +21.04,45.09,1014.19,40.62,450.92 +22.17,65.61,1014.71,70.91,449.91 +26.98,72.58,1008.55,78.5,431.12 +30.13,78.05,1010.99,61.5,434.14 +9.68,41.48,1018.24,71.04,473.31 +21.95,68.08,1012.91,69.36,443.93 +15.09,44.34,1019.46,60.49,468.8 +23.83,58.79,1009.77,78.13,444.34 +13.86,40.66,1017.15,83.82,463.49 +22.79,69.13,1010.87,91.47,438.08 +26.71,77.95,1012.13,77.5,433.47 +28.69,67.25,1017.71,53.83,432.21 +18.27,51.43,1010.38,88.39,460.41 +24.24,68.3,1018.03,81.51,437.12 +11.8,45.09,1013.21,89.68,470.57 +17.19,58.86,1016.74,85.97,451.87 +18.55,61.87,1008.45,65.3,450.73 +15.5,44.92,1024.16,86.44,462.12 +24.22,56.89,1013.81,70.02,440.79 +11.91,43.22,1008.75,76.56999999999998,472.88 +14.48,46.18,1015.83,92.15,462.3 +14.73,58.2,1019.45,82.48,458.56 +11.91,40.69,1014.41,83.71,476.71 +22.48,50.05,1005.55,82.36,442.56 +27.72,69.88,1007.58,72.25,434.02 +15.03,44.45,1020.94,65.57,460.06 +24.18,59.92,1009.88,79.54,438.85 +21.97,58.79,1010.93,86.7,448.8 +15.51,41.76,1022.81,69.55,463.82 +25.89,58.86,1014.16,52.95,445.17 +19.13,42.18,1001.45,98.77,456.04 +26.82,69.05,1004.62,40.0,437.42 +23.04,48.06,1014.16,54.99,459.36 +6.05,42.85,1013.09,91.88,485.02 +30.94,64.44,1014.36,53.76,439.84 +25.32,48.41,1008.47,72.14,443.04 +26.92,68.27,1008.11,61.73,435.17 +23.48,51.43,1007.13,84.83,441.78 +25.66,71.77,1006.76,84.76,429.25 +17.46,53.29,1018.07,91.01,458.06 +26.18,69.84,1005.13,72.89,431.69 +10.07,39.66,1015.37,83.78,479.64 +30.99,69.82,1009.41,50.84,437.46 +31.85,73.91,1003.6,60.22,431.26 +32.2,72.29,1008.61,69.94,432.52 +22.08,41.1,1002.19,46.69,455.04 +16.32,43.56,1014.4,59.77,463.57 +24.94,59.07,1008.89,84.79,440.12 +8.3,36.3,1015.97,60.62,480.58 +18.81,45.01,1015.28,65.91,457.85 +17.61,56.53,1019.5,82.3,457.01 +27.01,43.77,1011.18,46.58,440.64 +28.69,67.25,1017.71,44.6,436.21 +13.66,40.55,1005.46,96.02,467.7 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/train_20260321_091217.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/train_20260321_091217.log new file mode 100644 index 0000000000000000000000000000000000000000..1b5b72d07bf4d72518c91cdab0394e4b33d96645 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/train_20260321_091217.log @@ -0,0 +1,25 @@ +[2026-03-21T01:12:43.847479+0000][1][CRITICAL] Error importing TabularGoggle: No module named 'dgl' +[2026-03-21T01:12:43.858530+0000][1][CRITICAL] module disabled: /pip_libs/synthcity/plugins/generic/plugin_goggle.py +[KeOps] Warning : CUDA libraries not found or could not be loaded; Switching to CPU only. +[BayesNet] Training on 7654 rows, 5 cols +/pip_libs/sklearn/metrics/cluster/_supervised.py:58: UserWarning: Clustering metrics expects discrete values but received continuous values for label, and continuous values for target + warnings.warn(msg, UserWarning) +/pip_libs/sklearn/metrics/cluster/_supervised.py:58: UserWarning: Clustering metrics expects discrete values but received continuous values for label, and continuous values for target + warnings.warn(msg, UserWarning) +/pip_libs/sklearn/metrics/cluster/_supervised.py:58: UserWarning: Clustering metrics expects discrete values but received continuous values for label, and continuous values for target + warnings.warn(msg, UserWarning) +/pip_libs/sklearn/metrics/cluster/_supervised.py:58: UserWarning: Clustering metrics expects discrete values but received continuous values for label, and continuous values for target + warnings.warn(msg, UserWarning) +/pip_libs/sklearn/metrics/cluster/_supervised.py:58: UserWarning: Clustering metrics expects discrete values but received continuous values for label, and continuous values for target + warnings.warn(msg, UserWarning) +/pip_libs/sklearn/metrics/cluster/_supervised.py:58: UserWarning: Clustering metrics expects discrete values but received continuous values for label, and continuous values for target + warnings.warn(msg, UserWarning) +/pip_libs/sklearn/metrics/cluster/_supervised.py:58: UserWarning: Clustering metrics expects discrete values but received continuous values for label, and continuous values for target + warnings.warn(msg, UserWarning) +/pip_libs/sklearn/metrics/cluster/_supervised.py:58: UserWarning: Clustering metrics expects discrete values but received continuous values for label, and continuous values for target + warnings.warn(msg, UserWarning) +/pip_libs/sklearn/metrics/cluster/_supervised.py:58: UserWarning: Clustering metrics expects discrete values but received continuous values for label, and continuous values for target + warnings.warn(msg, UserWarning) +/pip_libs/sklearn/metrics/cluster/_supervised.py:58: UserWarning: Clustering metrics expects discrete values but received continuous values for label, and continuous values for target + warnings.warn(msg, UserWarning) +[BayesNet] Model saved -> /work/output-SpecializedModels/n20/bayesnet/bayesnet-n20-20260321_091217/bayesnet_model.pkl diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/ctgan_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..9718f799216c76afaec80445613f5b1a930e899a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/ctgan_metadata.json @@ -0,0 +1,24 @@ +{ + "columns": [ + { + "name": "AT", + "type": "continuous" + }, + { + "name": "V", + "type": "continuous" + }, + { + "name": "AP", + "type": "continuous" + }, + { + "name": "RH", + "type": "continuous" + }, + { + "name": "PE", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/gen_20260328_055830.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/gen_20260328_055830.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/gen_20260330_070958.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/gen_20260330_070958.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..47d479abd39e67eb4c4241ec67585582fe63d632 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n20", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "exists": true, + "size": 291758, + "sha256": "8768b9641a081ce32375b2739c6d0a6cdf66c1b03268c7db5f71ffd0019c97e2" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "exists": true, + "size": 36657, + "sha256": "c2dae02f854856ba824310ecaca5c73a72a3302753396aa681c82b69d65b174c" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv", + "exists": true, + "size": 36232, + "sha256": "82c48522e82ea4c5e4c407ec9239e82558dcff1df413f3d0c382e77fa041bc88" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_profile.json", + "exists": true, + "size": 2675, + "sha256": "7e7d747ab11beae1e58278dc8d6ae08d7ae6f14fe93f77a4fc1e6e589df21df4" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_contract_v1.json", + "exists": true, + "size": 3047, + "sha256": "20f513ccbc9f09d5286bc8998a5772f42b78b40aa1ed60b079fa73edf9c78eec" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/models_300epochs/train_20260328_055256.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/models_300epochs/train_20260328_055256.log new file mode 100644 index 0000000000000000000000000000000000000000..19673a95552befef13608269dff934aa13d5cf14 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/models_300epochs/train_20260328_055256.log @@ -0,0 +1,2 @@ +/opt/conda/lib/python3.10/site-packages/torch/autograd/graph.py:841: UserWarning: Attempting to run cuBLAS, but there was no current CUDA context! Attempting to set the primary context... (Triggered internally at /pytorch/aten/src/ATen/cuda/CublasHandlePool.cpp:270.) + return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8618a420d9d101a283cfb38feb336ac37687988f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,112 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "columns": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91364f3480d02e634daea210e8cae28ad5402b46 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n20", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "PE", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6728194497736f879310cd3105e11e3f7be330b6 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/public_gate/staged_input_manifest.json @@ -0,0 +1,117 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9c93a533bd65578cb1fac237ba3d753c22a6d408 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "n20", + "model": "ctgan", + "run_id": "ctgan-n20-20260328_055255", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/ctgan-n20-7654-20260330_070958.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/ctgan/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3bed87c2e8d511d07af970d747ae44261caf47b9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/ctgan/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/ctgan/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/ctgan/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f1df9fda3099c8b8507f2470700c88e41ee0bbb9 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/ctgan/model_input_manifest.json @@ -0,0 +1,119 @@ +{ + "dataset_id": "n20", + "model": "ctgan", + "target_column": "PE", + "task_type": "regression", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/staged_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb807ac5b23b2e7dfb39b3a5378cd452e84d56ed --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/test.csv @@ -0,0 +1,959 @@ +AT,V,AP,RH,PE +14.72,41.23,997.91,82.69,467.11 +11.94,40.66,1016.61,96.11,467.99 +27.56,66.93,1016.81,55.59,444.1 +9.59,34.69,1027.65,75.31999999999998,478.88 +7.46,41.82,1032.67,74.59,483.11 +15.52,36.99,1006.86,89.7,467.9 +15.47,43.13,1015.11,50.5,466.63 +21.84,45.09,1013.94,46.11,450.88 +19.83,51.43,1007.36,91.64,449.45 +29.3,67.69,1007.17,55.5,430.72 +6.63,39.42,1024.81,72.58,482.02 +22.88,69.45,1014.02,65.13,441.76 +11.97,42.32,1016.95,88.32,467.98 +29.25,67.32,1013.88,38.57,437.94 +14.89,39.58,1012.26,77.58,465.95 +10.39,44.85,1014.22,78.42,478.05 +25.66,77.54,1008.22,78.42,432.82 +16.5,49.39,1018.35,93.42,462.48 +28.55,74.33,1011.77,73.34,426.48 +7.84,40.07,1016.68,47.63,488.7 +27.14,71.32,1007.8,87.99,431.96 +25.18,71.98,1006.71,89.86,432.88 +6.01,35.79,1011.26,90.72,482.79 +14.54,41.17,1015.15,67.78,470.19 +11.8,43.22,1008.57,78.01,469.55 +23.82,44.89,1009.39,74.69,445.45 +32.81,71.32,1007.69,47.29,434.38 +30.63,74.22,1007.47,46.52,430.38 +25.43,70.17,1000.46,87.84,436.43 +30.17,76.86,998.23,73.61,430.3 +26.27,58.33,1013.81,60.43,438.82 +26.02,63.07,1010.94,53.96,446.82 +14.64,39.31,1008.84,79.3,462.72 +19.99,65.94,1012.28,75.42,447.22 +32.9,68.51,1012.95,50.09,430.23 +20.3,44.9,1008.25,64.08,457.6 +22.86,47.43,1009.75,61.54,452.53 +10.82,44.63,1020.64,90.26,473.23 +13.15,42.44,1014.51,99.53,469.34 +27.4,66.48,1004.71,51.5,439.66 +4.96,40.07,1011.8,67.38,494.75 +8.67,36.66,1026.8,84.36,480.38 +25.97,43.21,1011.9,88.73,434.83 +10.23,42.32,1017.53,89.93,473.59 +27.66,59.21,1013.12,51.58,438.57 +27.21,68.12,1012.96,54.69,435.2 +19.72,65.94,1010.53,82.12,446.84 +8.87,41.82,1033.3,74.28,477.97 +15.29,25.88,1009.21,66.0,464.25 +19.48,39.72,1001.75,55.41,457.16 +10.93,39.16,1016.54,90.56,479.83 +20.84,51.19,1008.63,84.11,448.98 +9.01,40.77,1022.37,90.3,470.84 +21.08,63.13,1013.53,98.0,443.51 +14.94,40.0,1017.69,65.43,456.41 +28.37,63.31,1013.18,49.02,437.64 +23.45,45.61,1012.84,73.42,454.92 +12.76,42.32,1015.35,78.18,466.15 +13.86,44.21,1022.6,83.56,468.3 +24.51,51.95,1005.57,63.53,449.73 +5.04,40.64,1021.35,93.63,484.42 +14.24,45.01,1013.54,88.68,461.64 +11.17,39.72,1002.4,81.4,474.64 +11.94,44.2,1017.97,82.93,474.02 +9.28,41.54,1018.33,79.89,482.8 +28.91,58.33,1013.84,39.72,437.53 +16.89,49.21,1015.19,70.39,458.25 +16.34,36.99,1006.99,90.06,466.24 +16.41,47.24,1015.75,88.78,457.94 +19.44,39.53,1006.99,63.18,457.09 +9.37,40.11,1024.94,75.03,471.13 +13.64,44.88,1019.85,56.86,466.66 +16.19,36.99,1007.37,92.4,462.94 +18.75,63.09,1018.19,87.84,450.98 +15.97,45.01,1016.58,83.24,456.91 +19.5,52.72,1025.21,50.21,457.26 +10.49,42.49,1009.81,78.92,478.75 +20.78,62.52,1017.58,73.3,452.3 +7.41,40.81,1026.15,88.96,488.48 +25.38,72.23999999999998,1010.76,89.64,432.3 +4.0,39.9,1009.64,97.16,490.79 +30.61,68.84,1011.18,52.5,439.9 +28.57,75.33,1003.16,76.14,431.58 +15.37,41.96,1011.58,96.76,466.02 +31.56,66.44,1008.91,64.16,430.11 +16.69,46.18,1010.8,96.8,466.03 +22.0,51.3,1012.87,85.79,450.18 +28.31,74.34,998.42,79.23,431.95 +15.7,44.21,1021.26,86.83,462.19 +21.79,58.2,1017.21,66.74,446.94 +25.67,58.59,1013.0,62.34,451.03 +20.59,59.8,1015.27,77.94,453.83 +16.14,44.21,1020.36,80.59,461.03 +25.61,47.43,1008.62,54.51,442.96 +7.61,44.71,1019.41,70.48,485.36 +30.32,64.69,1006.35,51.36,436.72 +29.45,68.27,1007.96,61.63,432.96 +29.28,77.17,1009.4,76.3,433.14 +5.62,41.31,1001.37,89.16,485.6 +24.86,44.05,1005.69,66.65,447.2 +6.17,40.07,1013.7,58.99,495.21 +13.65,41.58,1020.56,72.17,460.8 +3.96,35.47,1016.79,83.81,489.68 +6.49,39.33,1010.85,91.85,489.22 +31.32,71.29,1008.37,50.07,430.46 +8.07,43.69,1017.05,87.34,485.18 +13.35,39.64,1010.1,93.3,471.69 +26.21,56.85,1011.45,41.37,439.55 +5.71,40.77,1022.51,89.58,485.75 +18.98,60.1,1010.09,85.34,453.37 +6.07,38.91,1019.25,83.39,483.56 +26.92,78.92,1011.65,96.22,434.64 +24.44,47.93,1003.13,67.04,440.53 +14.45,52.75,1023.97,63.59,459.85 +26.44,71.64,1004.55,85.53,435.61 +30.7,74.22,1008.12,50.39,432.51 +6.48,36.24,1013.62,92.03,484.65 +30.47,70.83,1010.91,46.94,444.39 +13.78,38.28,1014.8,81.19,467.43 +19.65,62.1,1019.46,77.81999999999998,449.13 +9.51,43.79,1016.02,79.81,481.12 +16.31,52.75,1024.4,55.69,456.58 +13.08,39.82,1012.27,85.21,476.96 +20.72,44.57,1008.96,72.56999999999998,449.76 +9.77,41.44,1017.69,78.26,481.74 +26.12,66.75,1017.86,79.02,433.67 +10.95,43.8,1022.61,63.46,473.2 +11.01,43.69,1016.7,81.48,477.3 +17.36,52.9,1015.42,69.97,458.66 +16.7,46.18,1011.4,95.51,458.05 +11.95,42.07,1018.52,84.73,467.91 +18.3,44.06,1017.95,63.24,456.32 +14.69,35.71,1015.78,57.34,467.39 +30.82,76.2,1007.47,59.3,432.22 +22.36,58.79,1016.69,73.59999999999998,445.76 +23.89,64.27,1013.37,75.22,450.82 +5.75,42.07,1004.24,78.23,485.23 +26.64,69.13,1010.6,79.23,430.41 +23.08,48.41,1008.44,82.35,443.5 +29.76,57.19,1008.59,51.1,436.21 +32.8,68.67,1005.27,44.53,432.28 +24.63,65.38,1010.43,40.68,446.23 +11.02,43.02,1012.32,66.54,478.81 +32.13,69.98,1013.3,55.85,431.84 +23.81,60.08,1017.29,62.66,450.33 +8.09,38.5,1012.99,67.31,484.81 +32.63,69.89,1013.85,41.66,425.72 +13.27,52.75,1025.86,65.12,464.82 +29.3,68.08,1011.23,56.23,434.11 +26.3,77.95,1009.45,78.72,437.95 +28.52,70.02,1010.34,54.21,441.98 +17.86,50.88,1015.59,88.28,457.33 +7.92,41.66,1014.84,76.12,483.38 +3.74,35.19,1018.58,98.84,490.5 +21.33,63.86,1020.33,72.13,445.02 +30.36,74.87,1008.96,61.87,435.31 +14.23,46.18,1017.39,87.29,463.86 +9.55,41.44,1015.07,85.94,481.75 +9.78,41.93,1023.18,75.05,484.03 +30.8,73.17,1010.51,51.93,432.24 +15.48,47.83,1004.88,81.68,463.67 +16.58,46.18,1010.4,96.29,463.51 +20.32,39.72,1001.38,57.21,456.18 +11.83,43.14,1010.06,88.14,471.98 +26.75,56.57,1013.76,57.93,443.92 +14.13,48.92,1011.72,78.06,464.17 +19.91,51.19,1008.0,90.23,449.23 +14.37,40.56,1021.67,68.18,470.19 +17.27,44.9,1007.85,78.8,454.19 +9.59,38.56,1017.52,61.89,481.05 +28.04,70.32,1011.28,78.16,435.42 +18.18,44.63,1020.41,48.64,455.57 +32.27,71.85,1008.06,59.28,429.72 +19.02,44.85,1014.57,43.37,465.42 +13.47,43.34,1012.75,87.04,468.8 +12.25,40.75,1016.02,82.4,475.07 +27.45,64.34,1007.12,65.87,440.0 +29.96,67.83,1008.0,44.05,433.13 +12.55,38.91,1012.58,75.44,474.35 +31.92,75.33,1002.13,65.73,431.32 +21.55,60.27,1017.42,92.59,443.93 +20.14,46.33,1013.24,83.39,453.35 +18.33,44.34,1019.55,51.69,468.8 +8.65,40.56,1023.23,78.84999999999998,485.87 +26.99,62.26,1011.13,71.27,436.89 +14.4,41.26,1021.41,73.11,462.78 +18.35,62.1,1019.97,78.36,455.29 +16.76,43.77,1012.25,77.95,457.0 +11.82,42.86,1014.12,88.28,476.7 +20.78,68.28,1008.75,60.87,450.57 +29.35,54.2,1013.07,42.45,439.47 +22.63,45.61,1014.14,73.06,457.88 +22.83,65.18,1012.24,79.73999999999998,442.43 +6.74,36.08,1020.36,86.98,484.18 +31.54,71.06,1008.4,71.77,431.87 +23.24,45.01,1012.21,45.23,457.01 +32.74,68.31,1010.23,41.29,441.66 +14.18,39.3,1020.1,67.48,464.32 +25.86,59.92,1009.92,73.95,436.06 +14.05,40.69,1015.66,74.39,470.9 +23.78,69.71,1008.79,83.17,443.06 +14.14,39.59,1010.84,96.02,465.23 +11.77,40.71,1024.55,72.48999999999998,477.94 +23.77,64.15,1021.02,55.87,448.43 +9.61,44.03,1008.3,91.36,473.54 +22.42,62.52,1016.83,63.27,451.64 +24.85,68.37,1006.5,68.37,442.66 +17.69,44.34,1019.31,61.12,464.13 +3.21,38.44,1017.11,84.86,492.93 +18.45,42.44,1013.45,63.52,459.79 +11.48,44.6,1018.29,90.76,470.39 +17.37,48.92,1011.91,58.4,455.53 +6.22,39.33,1012.31,93.23,491.77 +12.74,49.83,1007.44,91.47,466.09 +22.56,70.79,1005.85,93.09,435.14 +24.35,58.49,1011.03,70.64,445.6 +16.58,44.68,1021.5,83.38,458.87 +25.47,70.36,1005.79,77.73,437.02 +30.88,69.51,1011.48,46.58,433.14 +6.64,39.04,1018.84,74.94,481.53 +12.65,41.93,1023.07,65.05,479.53 +8.91,40.11,1022.87,78.39,475.43 +5.57,42.85,1013.55,92.14,488.85 +16.09,44.2,1019.39,67.24,460.56 +20.98,60.07,1016.26,67.18,446.26 +14.93,39.16,1007.25,72.34999999999998,463.2 +24.19,58.95,1017.78,58.78,441.91 +23.86,52.84,1006.56,48.94,444.66 +15.59,52.05,1013.67,78.55,456.07 +26.04,74.67,1016.68,81.2,433.55 +22.35,54.42,1012.46,75.01,454.72 +10.57,36.71,1022.11,82.39,472.62 +6.16,38.5,1012.83,93.68,490.92 +24.12,62.44,1013.83,88.02,443.3 +28.24,71.58,1010.1,67.92,434.01 +21.11,69.94,1004.37,84.26,439.91 +11.49,44.63,1020.44,86.04,471.08 +24.92,60.95,1014.88,60.58,445.44 +23.56,67.79,1010.14,89.72,441.29 +7.54,40.72,1023.82,85.15,485.92 +26.85,75.59999999999998,1017.43,74.55,433.48 +12.14,44.85,1014.36,60.04,476.68 +17.03,43.99,1021.5,82.32,460.25 +31.41,64.44,1013.84,49.49,439.3 +14.73,40.35,1011.15,65.2,470.03 +24.04,59.43,1007.6,76.98,437.51 +21.03,44.78,1007.99,36.82,459.72 +22.61,42.8,1014.24,69.71,460.26 +17.36,44.63,1020.49,54.21,456.98 +26.82,64.96,999.72,63.55,427.51 +18.19,44.06,1017.24,78.73,456.13 +24.38,47.01,1015.17,68.96,454.85 +12.98,39.64,1013.95,74.39,473.54 +14.17,43.13,1014.94,48.62,471.08 +18.71,54.9,1017.12,74.79,456.88 +12.8,44.34,1016.52,86.73,473.42 +16.71,46.18,1012.06,96.6,458.4 +22.99,60.77,1017.97,78.47,447.62 +28.34,63.77,1013.7,61.13,439.75 +34.53,73.03,1013.53,36.74,437.03 +10.16,40.8,1028.13,86.39,477.49 +27.28,44.89,1009.02,49.9,441.94 +22.75,58.86,1016.0,67.34,448.32 +25.01,59.54,1007.91,80.93,441.3 +23.64,63.31,1014.5,61.83,440.7 +8.85,41.06,1020.99,86.05,486.4 +19.65,63.91,1009.26,99.08,444.9 +18.22,44.34,1019.35,56.78,469.27 +9.68,40.77,1022.04,85.23,473.73 +17.49,40.55,1001.73,73.15,462.37 +21.79,61.45,1011.11,91.78,446.99 +21.06,62.91,1011.92,75.52,455.22 +23.72,58.62,1016.32,71.17,447.13 +30.93,73.42,1010.98,56.42,432.44 +5.98,38.91,1016.5,91.83,488.85 +13.45,41.16,1022.04,82.96,460.57 +12.23,43.69,1016.46,84.4,471.62 +8.13,39.96,1026.07,95.84,477.12 +29.0,77.54,1011.33,75.13,431.37 +11.61,52.75,1020.94,77.56,464.68 +19.4,49.69,1012.89,75.53,455.6 +5.0,40.64,1021.05,94.84,485.27 +23.46,57.85,1012.7,65.54,444.66 +18.51,48.06,1015.14,79.83,455.44 +29.29,70.36,1006.64,60.82,431.26 +27.55,64.96,999.73,57.34,431.33 +21.82,63.9,1014.48,92.53,447.29 +17.03,47.83,1004.94,79.68,460.43 +17.18,46.0,1002.74,100.1,454.02 +18.14,49.78,1002.95,100.09,451.44 +12.39,49.83,1007.6,92.43,468.43 +20.39,64.15,1021.31,62.35,457.37 +22.72,64.15,1021.14,60.34,453.13 +20.3,58.41,1014.05,86.38,451.74 +21.46,58.18,1007.45,95.33,444.12 +28.99,68.24,1008.75,66.57,428.28 +12.07,40.81,1025.63,68.02,475.96 +15.4,40.69,1015.1,70.25,471.66 +9.59,37.14,1013.8,72.84999999999998,474.74 +7.64,40.02,1031.58,71.19,479.43 +15.42,37.85,1009.89,85.8,467.33 +11.75,42.32,1015.28,77.25,470.44 +19.51,48.78,1021.03,86.33,453.27 +31.86,73.88,1005.6,57.68,435.91 +12.4,40.35,1011.46,79.48999999999998,476.44 +28.11,69.84,1004.68,67.08,427.33 +8.74,40.03,1016.81,93.37,481.07 +24.32,58.79,1016.8,65.61,442.78 +13.72,44.47,1027.2,68.89,470.66 +6.11,38.68,1017.53,79.23,482.97 +16.74,39.16,1005.68,71.17,460.47 +8.52,41.55,1002.09,86.81,483.63 +20.55,68.63,1012.5,67.07,453.47 +22.63,58.49,1010.94,72.7,448.38 +18.13,60.1,1009.67,84.75,455.82 +12.51,43.67,1013.24,91.55,471.96 +21.02,61.5,1008.52,77.73999999999998,448.08 +6.99,40.07,1014.83,54.36,490.11 +16.37,36.99,1006.37,90.11,463.76 +15.68,39.16,1006.09,75.62,461.98 +22.17,60.27,1018.21,89.55,443.31 +26.7,49.02,1007.68,67.97,438.92 +19.55,39.39,1013.55,57.82,464.36 +27.74,74.78,1010.05,60.82,436.87 +18.09,43.72,1008.64,74.15,453.02 +11.49,35.76,1019.08,60.04,472.45 +23.67,63.86,1019.67,57.95,441.73 +32.02,67.83,1007.77,53.31,426.55 +20.38,62.52,1017.85,75.56,456.56 +5.02,45.87,1007.8,99.22,481.03 +26.24,51.43,1011.32,59.52,447.91 +14.47,41.76,1021.98,78.41,464.0 +24.16,60.29,1018.09,63.49,446.17 +10.07,40.92,1021.84,84.18,471.71 +10.73,44.92,1025.1,85.4,476.81 +16.81,42.86,1013.83,77.11,464.36 +27.52,74.67,1015.77,72.01,433.56 +13.96,40.83,1009.89,84.86,469.86 +22.78,49.16,1002.29,64.28,444.99 +22.77,70.32,1012.04,82.43,440.67 +8.64,41.66,1014.14,80.44,481.89 +27.33,66.17,1011.06,64.55,443.89 +19.07,49.69,1007.22,76.79,453.09 +24.1,68.61,1010.97,74.87,443.75 +14.6,42.32,1015.71,77.03,464.67 +14.77,44.47,1028.38,71.18,464.25 +9.14,38.91,1018.62,89.88,476.57 +14.85,45.87,1009.37,84.65,462.67 +8.47,41.03,1021.72,70.16,485.1 +23.79,59.44,1012.53,79.48,448.67 +26.63,64.44,1012.66,61.19,442.0 +12.88,44.34,1016.03,88.51,474.94 +12.73,44.34,1015.11,93.55,472.94 +17.2,40.55,1000.68,72.67,462.55 +10.05,41.17,1018.98,83.71,481.38 +28.37,75.59999999999998,1017.48,55.19,439.25 +25.61,60.32,1015.77,56.48,443.96 +20.34,46.63,1013.16,79.08,453.62 +20.21,58.12,1015.36,79.18,453.19 +21.19,58.86,1014.19,68.96,452.43 +29.71,73.18,1012.35,63.06,427.04 +15.24,37.87,1020.52,84.49,463.09 +17.35,42.86,1014.62,74.16,465.16 +13.5,45.51,1015.33,86.95,469.08 +25.94,77.23999999999998,1007.97,84.82,432.88 +5.51,35.57,1026.3,78.97,489.36 +26.16,52.36,1013.62,58.52,453.08 +15.17,49.15,1021.91,91.73,461.89 +14.57,42.18,1015.13,74.89,465.75 +12.16,45.0,1021.51,50.52,482.99 +25.1,60.37,1005.83,72.53,438.44 +13.57,39.39,1014.01,82.12,471.44 +20.25,55.5,1020.03,69.33,455.13 +11.23,39.72,1018.46,60.62,475.04 +12.52,42.34,1018.67,95.29,464.71 +8.68,39.61,1021.54,77.98,486.31 +8.18,40.02,1031.45,73.66,478.81 +21.93,60.84,1017.8,82.61,443.89 +30.69,71.98,1004.53,65.86,430.33 +12.08,41.39,1019.45,78.3,477.8 +9.08,42.49,1010.67,85.35,481.46 +20.33,57.76,1016.47,75.34999999999998,450.25 +31.03,69.98,1011.33,52.16,436.13 +6.03,41.14,1028.04,87.46,479.61 +14.02,42.86,1030.86,68.36,467.29 +20.51,45.38,1014.29,69.14,461.87 +28.17,63.13,1012.44,66.61,439.94 +18.83,63.91,1010.8,96.18,448.15 +25.52,63.94,1017.81,41.54,440.32 +22.61,49.3,1003.51,83.02,441.76 +28.61,68.12,1011.71,47.57,432.94 +18.43,56.03,1020.41,60.55,465.17 +13.41,54.3,1016.48,79.28,467.88 +11.11,40.55,1023.91,87.12,476.37 +33.97,72.29,1008.98,44.32,432.33 +18.41,62.1,1020.4,78.09999999999998,457.14 +22.4,58.12,1015.24,78.03,449.13 +25.1,61.47,1007.84,75.75,447.27 +28.73,68.3,1016.53,55.73,434.15 +11.47,43.67,1012.68,72.51,475.72 +11.19,40.64,1020.57,84.49,472.86 +10.38,43.02,1013.37,78.53,474.44 +30.09,69.48,1009.51,53.24,435.2 +26.72,65.61,1014.41,52.01,442.48 +19.14,56.65,1020.84,82.97,458.06 +21.25,44.05,1005.69,81.87,448.43 +15.55,45.09,1014.33,62.19,457.36 +12.28,42.34,1019.19,95.8,467.03 +31.93,72.58,1006.9,56.27,425.14 +24.9,71.77,1006.24,85.25,427.77 +23.71,67.17,1007.27,90.2,440.65 +31.05,62.7,1009.35,55.27,441.67 +10.08,40.72,1022.7,67.3,480.8 +22.31,61.45,1009.25,98.56,437.05 +24.01,42.48,1011.39,55.1,453.12 +21.75,49.82,1015.01,78.33,455.28 +29.3,73.67,1005.64,65.31,431.07 +12.27,41.17,1019.39,52.18,473.84 +16.51,41.79,1007.1,74.03,457.74 +26.26,63.73,1010.45,70.61,442.18 +31.33,73.03,1014.18,49.28,438.49 +21.81,65.06,1014.6,66.41,447.13 +14.93,39.39,1014.31,80.68,468.88 +33.87,71.32,1007.91,39.48,435.89 +28.09,63.31,1013.01,52.6,438.6 +18.06,56.65,1020.2,81.59,459.14 +20.36,56.53,1020.25,72.95999999999998,455.34 +29.58,76.2,1008.37,60.73,433.91 +9.62,41.01,1019.43,97.99,467.34 +25.08,58.49,1011.1,64.47,446.9 +24.33,60.32,1015.49,59.95,445.36 +30.93,70.83,1010.61,46.13,440.59 +22.04,58.05,1013.11,85.22,447.28 +5.74,45.87,1011.44,95.94,482.0 +24.17,71.25,1003.9,90.36,435.66 +5.95,39.48,1005.16,63.6,486.07 +27.51,63.73,1009.97,66.14,440.81 +28.62,70.32,1008.87,46.67,431.03 +20.48,60.29,1017.16,72.09999999999998,455.51 +27.03,71.14,1010.33,66.25,430.41 +28.31,70.32,1007.88,47.0,432.5 +16.6,41.93,1022.01,48.98,467.51 +14.67,71.14,1019.84,77.72,458.8 +5.68,40.35,1012.11,92.86,486.79 +29.66,59.22,1013.25,61.2,441.58 +6.99,39.37,1020.19,75.06,487.18 +25.61,74.22,1010.26,75.15,438.45 +11.31,39.61,1018.74,68.9,471.92 +29.04,76.09,1007.52,75.44,430.32 +16.5,53.29,1017.7,95.66,458.37 +22.26,60.77,1018.26,85.94,442.58 +25.95,59.92,1010.05,76.05,443.93 +28.09,70.02,1010.84,51.29,437.83 +8.36,40.67,1014.99,73.65,489.1 +24.88,49.16,1006.04,64.54,445.18 +14.34,42.86,1031.75,66.81,466.17 +18.16,39.99,1008.13,68.5,461.16 +20.57,44.9,1008.39,62.69,456.18 +16.85,39.64,1008.82,80.81,464.2 +24.56,63.21,1013.79,82.38,444.34 +9.54,41.17,1019.79,65.61,481.18 +21.43,60.95,1015.27,75.48999999999998,449.12 +24.15,71.73,1009.76,85.16,436.55 +21.87,74.87,1009.28,85.4,442.37 +15.3,41.76,1022.57,71.56,466.59 +19.45,41.1,1001.88,52.16,458.26 +27.99,71.64,1007.79,72.67,437.81 +21.03,69.05,1002.17,75.34999999999998,444.35 +31.84,77.95,1014.9,55.35,433.28 +29.83,71.43,1011.93,55.8,439.34 +10.08,37.92,1010.47,66.37,474.63 +18.36,51.43,1010.57,90.17,459.8 +16.4,38.01,1022.2,73.05,463.79 +13.03,42.86,1014.39,86.25,475.03 +18.88,62.96,1020.62,82.01,456.18 +11.87,41.78,1012.97,64.79,470.84 +23.16,57.76,1017.74,63.79,451.79 +15.39,42.28,1007.35,81.34999999999998,467.3 +16.84,56.03,1020.25,70.37,437.14 +14.65,44.84,1023.39,87.76,467.18 +18.97,44.85,1014.86,46.31,466.17 +26.22,69.89,1015.46,76.63,433.61 +7.07,37.49,1010.35,87.19,481.58 +17.4,44.9,1020.5,77.11,457.75 +30.05,73.68,1014.95,70.6,434.92 +14.01,45.08,1023.28,82.49,464.79 +23.24,63.78,1017.1,63.8,446.95 +23.03,65.12,1016.29,69.8,447.84 +8.58,40.72,1022.04,87.55,480.96 +24.92,48.92,1010.11,36.53,445.56 +25.8,65.38,1009.3,52.28,450.5 +26.31,48.6,1002.64,60.04,440.06 +29.13,62.26,1010.51,52.94,436.37 +11.02,41.17,1018.18,86.86,477.62 +13.61,39.85,1012.78,58.12,475.62 +23.32,69.13,1010.75,91.84,435.27 +30.45,43.21,1011.35,63.59,438.68 +31.7,70.36,1006.26,58.18,438.38 +23.62,73.67,1007.0,90.8,438.33 +12.45,43.67,1013.61,91.34,474.27 +28.85,68.12,1012.05,46.31,436.15 +18.4,43.69,1016.59,52.44,462.05 +28.97,78.92,1011.71,88.5,430.98 +4.93,35.19,1018.04,92.94,486.39 +13.75,44.47,1029.63,70.74,467.14 +16.64,44.9,1021.02,70.34,460.93 +19.04,68.28,1004.52,86.16,444.54 +15.89,43.96,1014.02,75.23999999999998,467.35 +29.03,67.79,1010.67,55.42,444.09 +14.97,58.2,1019.52,81.13,458.68 +16.23,43.52,1020.13,76.3,464.74 +14.74,44.47,1028.29,67.87,462.92 +9.75,52.72,1026.03,78.53,473.41 +27.18,59.27,1012.57,64.18,439.69 +16.22,50.88,1014.33,100.09,454.94 +6.62,42.49,1008.74,94.57,482.74 +9.33,44.03,1011.73,86.04,474.15 +23.14,62.26,1011.87,66.44,444.38 +14.52,40.35,1011.11,69.84,470.8 +33.71,69.98,1013.09,42.62,431.99 +14.84,42.03,1017.47,79.27,466.2 +13.48,41.92,1030.2,65.96,463.9 +31.4,71.06,1008.44,74.77,433.34 +27.44,66.56,1005.51,69.28,428.0 +22.68,70.47,1010.86,82.8,441.47 +9.03,40.71,1025.98,81.94,484.97 +14.36,41.26,1021.16,73.43,462.25 +10.06,43.22,1014.1,85.7,473.0 +22.76,49.02,1007.5,88.56,442.84 +24.79,75.59999999999998,1017.07,68.23,440.05 +34.97,73.56,1006.57,44.69,435.15 +27.64,75.59999999999998,1017.35,54.78,441.04 +18.37,51.86,1018.8,74.3,461.14 +7.91,39.96,1023.57,88.44,475.52 +21.8,65.94,1012.02,63.52,448.66 +29.42,71.32,1002.26,67.13,437.47 +19.01,58.46,1017.14,90.99,446.18 +24.01,67.17,1007.44,86.87,443.09 +11.69,39.22,1017.05,55.51,472.76 +22.01,58.46,1016.26,75.98999999999998,443.75 +13.74,42.74,1029.54,70.0,465.92 +12.27,43.8,1023.21,57.0,468.55 +12.88,43.8,1023.19,59.18,468.19 +32.06,71.85,1007.9,56.44,426.07 +23.46,59.27,1010.6,79.79,445.57 +24.41,52.3,1006.28,70.33,442.62 +13.22,44.92,1023.84,87.99,471.43 +13.69,40.83,1008.53,84.81,471.26 +10.31,45.01,1018.42,93.67,473.74 +21.41,54.2,1011.37,82.28,448.11 +24.49,65.46,1015.77,44.95,445.27 +25.72,49.82,1016.19,60.1,452.33 +18.73,46.48,1007.19,79.23,450.74 +22.88,59.21,1011.51,86.93,440.25 +26.59,60.96,1011.9,52.41,439.77 +30.38,71.58,1010.17,50.45,433.75 +18.94,47.83,1005.18,78.59,455.19 +25.17,64.79,1017.87,63.26,442.15 +20.55,48.98,1016.1,63.89,452.52 +10.03,42.18,1017.3,85.99,475.74 +25.03,60.27,1017.9,72.04,438.24 +7.82,41.16,1023.3,87.7,475.66 +33.43,69.88,1006.86,44.84,435.59 +11.33,41.5,1013.58,88.7,475.01 +12.34,40.62,1016.28,53.6,466.47 +4.78,42.85,1013.07,94.72,479.09 +14.03,49.15,1020.5,83.65,467.16 +26.11,47.43,1009.01,56.09,445.36 +24.67,70.94,1007.99,75.64,443.51 +14.28,44.84,1024.84,79.09,474.57 +26.74,59.87,1012.5,62.88,447.88 +29.83,62.66,1007.98,47.07,438.71 +17.51,44.9,1009.05,74.91,455.01 +30.05,69.34,1008.26,61.5,436.82 +15.85,49.69,1015.48,88.65,464.72 +32.5,71.37,1003.75,43.8,433.7 +30.56,69.04,1009.29,55.73,442.24 +23.32,69.23,1011.75,75.59,436.18 +18.0,52.08,1003.07,100.09,450.85 +25.45,70.04,1011.2,82.48,430.2 +17.37,40.55,1001.19,71.42,460.97 +16.43,41.79,1005.47,76.89,455.85 +19.15,44.89,1009.6,74.52,451.09 +16.0,39.16,1016.37,77.63,468.49 +10.87,44.71,1021.38,58.22,484.63 +21.98,55.97,1009.12,89.51,442.65 +21.92,61.87,1009.68,58.83,445.52 +14.62,42.86,1015.56,84.5,470.79 +20.9,67.07,1005.43,82.85,443.46 +23.45,69.04,1010.5,80.77,442.48 +7.31,43.02,1014.19,86.43,484.82 +22.21,61.87,1010.9,54.22,446.62 +20.83,49.02,1009.45,91.92,445.31 +14.71,44.0,1024.98,85.08,462.87 +19.92,63.31,1015.02,82.71,443.54 +31.85,73.20999999999998,1000.98,72.2,435.94 +24.1,71.97,1009.92,91.27,443.09 +12.42,38.25,1012.76,82.23,472.3 +28.79,70.79,1003.83,65.9,425.64 +17.05,44.88,1017.69,88.19,459.63 +31.59,62.7,1009.3,50.16,442.58 +14.93,41.79,1008.88,81.48,456.75 +24.44,69.13,1011.1,87.62,434.34 +26.05,65.59,1012.78,67.03,437.04 +26.48,51.43,1006.76,74.3,438.1 +17.19,37.2,1011.84,67.59,468.4 +6.25,39.04,1019.65,71.27,484.14 +31.12,67.69,1005.3,50.46,425.21 +11.16,40.05,1014.95,88.38,479.11 +31.16,69.88,1007.01,68.28,433.24 +19.27,43.14,1013.17,39.85,463.14 +17.79,43.52,1020.65,68.29,458.57 +22.76,58.96,1013.85,55.95,454.05 +5.66,39.42,1024.7,78.52,482.11 +21.75,67.45,1014.89,67.09,445.1 +24.66,58.86,1013.86,56.39,444.42 +18.16,39.99,1007.73,70.54,463.69 +25.26,61.08,1013.68,71.72,447.46 +23.6,48.98,1015.41,48.28,448.43 +22.89,65.34,1015.53,61.0,450.53 +28.82,71.43,1011.51,58.58,443.68 +21.57,69.23,1011.94,81.73,437.55 +11.03,42.32,1017.26,90.56,470.92 +15.75,39.16,1016.31,77.98999999999998,468.87 +13.67,44.92,1023.6,85.35,467.71 +11.58,39.69,1005.17,86.55,469.6 +32.31,62.04,1010.41,39.39,450.13 +23.67,72.23999999999998,1011.22,90.45,435.94 +11.29,35.76,1019.32,58.91,473.74 +13.58,49.83,1008.9,86.8,465.82 +10.54,41.93,1016.64,93.52,479.65 +24.96,74.98999999999998,1008.25,80.52,440.91 +24.53,74.78,1009.9,78.34,446.3 +12.12,41.17,1017.68,78.72,470.67 +22.99,56.57,1013.93,78.77,445.44 +31.15,67.45,1014.85,42.11,431.97 +20.2,64.45,1009.03,61.77,452.33 +10.9,41.46,1016.66,86.2,479.45 +27.04,48.41,1008.57,60.73,441.21 +29.72,74.78,1009.32,55.25,438.19 +29.86,69.34,1007.76,54.12,433.57 +28.18,73.88,1005.89,75.41,434.48 +27.0,69.4,1004.86,82.2,433.83 +33.63,70.4,1004.02,53.6,430.05 +10.44,37.83,1006.31,97.2,474.42 +13.39,49.83,1007.14,90.88,466.04 +9.0,43.13,1020.25,81.31999999999998,481.09 +18.94,48.7,1008.5,94.83,451.38 +26.14,71.98,1005.98,82.45,428.91 +5.11,42.07,1004.28,81.8,486.41 +26.62,65.12,1016.0,43.24,441.22 +25.69,62.26,1011.38,74.08,436.36 +8.13,39.99,1011.71,87.89,486.19 +9.97,41.62,1013.99,96.02,464.86 +6.58,43.02,1014.03,84.95,488.22 +13.9,42.86,1030.82,71.89,473.76 +12.33,39.28,1011.84,80.01,476.49 +7.26,36.08,1021.47,83.15,483.58 +12.29,40.03,1017.62,89.64,472.65 +33.82,77.17,1008.96,58.91,435.58 +9.27,40.22,1008.1,89.24,481.23 +23.44,62.52,1016.46,67.21,447.19 +31.63,69.59,1008.66,61.81,436.89 +27.28,51.43,1011.46,51.38,450.53 +21.45,45.09,1013.83,52.26,453.15 +25.14,69.13,1011.15,85.67,433.95 +20.12,45.09,1013.73,57.78,448.35 +16.36,53.82,1015.05,71.95,461.62 +19.77,65.06,1016.22,74.95,448.26 +31.92,75.33,1001.81,61.97,436.38 +26.52,43.77,1011.49,46.98,440.31 +11.52,40.03,1017.56,87.87,472.31 +29.91,74.33,1013.22,39.76,430.26 +15.01,39.52,1017.53,72.0,468.02 +28.39,65.51,1014.52,66.48,438.78 +25.3,71.29,1007.86,62.98,437.17 +16.63,53.82,1015.18,66.09,458.29 +10.41,44.68,1023.53,91.38,474.7 +26.86,68.08,1012.99,50.04,436.25 +10.48,36.71,1023.18,81.37,473.3 +10.58,42.34,1022.32,94.01,474.91 +6.94,38.91,1018.94,90.64,485.12 +20.64,49.21,1014.86,58.47,454.2 +25.69,73.18,1012.64,86.35,432.82 +22.48,71.29,1008.15,75.41,444.71 +6.63,39.37,1020.33,76.18,489.16 +33.4,69.98,1013.29,47.78,432.44 +15.11,42.99,1007.53,85.75,466.25 +8.99,36.66,1028.11,71.98,481.03 +9.6,41.82,1032.93,72.63,475.01 +9.42,41.4,1029.21,86.4,474.75 +23.62,68.63,1013.18,50.57,447.3 +28.19,71.97,1008.85,84.67,438.8 +26.39,49.16,1005.68,56.18,442.87 +24.93,47.01,1014.28,66.04,455.06 +21.28,70.72,1010.29,86.22,445.54 +8.73,41.92,1029.41,89.72,480.99 +6.99,35.19,1019.32,68.95,480.05 +30.7,71.58,1010.0,48.96,429.27 +15.82,44.2,1018.96,66.73,460.2 +23.19,49.82,1014.59,70.52,451.08 +10.27,42.34,1022.69,92.78,474.55 +14.04,39.64,1011.09,87.22,472.31 +20.42,62.96,1020.34,84.0,452.08 +17.31,58.49,1011.8,92.77,456.84 +13.51,43.41,1015.94,75.22,463.86 +7.39,39.81,1019.45,85.02,482.99 +26.71,76.86,1002.86,74.5,437.31 +31.74,79.73999999999998,1007.07,61.47,431.72 +21.46,50.59,1016.75,67.14,453.67 +12.75,44.03,1007.29,89.46,465.86 +14.43,44.84,1024.34,84.0,467.45 +23.93,68.28,1005.16,69.91,444.95 +10.62,42.02,999.83,96.66,472.41 +14.74,43.71,1024.35,81.53,465.49 +7.87,41.17,1020.33,77.77,486.2 +22.16,65.48,1017.22,70.51,446.0 +7.94,43.65,1018.75,59.45,479.8 +26.56,65.59,1012.6,64.25,443.66 +31.03,69.59,1007.77,63.96,432.56 +29.09,70.98,1007.86,80.34999999999998,439.34 +7.31,42.18,1014.75,86.75,477.38 +10.03,41.62,1014.55,95.61,462.73 +10.28,39.64,1010.45,74.15,477.65 +29.86,64.79,1017.37,44.8,439.89 +29.24,60.23,1009.62,59.71,438.24 +17.34,47.03,1013.36,98.13,463.89 +13.56,42.34,1017.95,93.83,462.6 +10.62,39.96,1025.37,96.64,470.8 +27.37,69.23,1013.25,48.02,433.18 +13.61,42.34,1017.57,91.35,465.65 +12.81,44.58,1016.49,80.76,475.5 +21.83,62.91,1011.07,91.34,443.76 +22.97,62.4,1010.25,75.18,445.3 +24.33,46.93,1013.72,48.27,447.43 +23.49,64.63,1020.75,65.16,450.28 +17.13,42.86,1014.15,73.59999999999998,463.09 +14.86,44.71,1018.3,49.46,466.38 +24.15,64.63,1020.72,58.06,448.87 +7.71,36.25,1027.92,89.84,481.74 +24.82,71.94,1010.5,64.67,438.69 +11.65,41.54,1020.09,67.96,476.4 +10.25,41.46,1020.65,87.07,481.94 +5.78,40.62,1016.55,84.98,484.13 +9.35,44.03,1011.02,88.11,476.25 +10.76,40.43,1025.98,79.65,490.78 +25.76,57.32,1011.93,43.61,440.26 +14.57,37.86,1022.44,68.82,463.58 +13.6,39.82,1013.34,86.1,470.69 +29.36,78.05,1011.12,64.17,434.29 +23.12,69.71,1008.98,84.41,442.21 +23.39,63.94,1010.54,89.94,441.44 +25.45,67.83,1009.47,57.97,429.95 +27.65,48.41,1008.54,58.25,440.94 +30.24,73.9,1006.74,56.39,441.31 +13.78,40.0,1018.38,68.67,458.74 +24.66,69.94,1006.56,60.91,432.68 +17.1,48.98,1016.48,85.63,454.43 +27.37,65.06,1013.09,50.92,440.5 +20.11,51.19,1007.82,92.06,449.03 +12.24,41.62,1013.38,90.26,461.23 +28.5,79.73999999999998,1006.75,87.09,433.08 +14.64,42.77,1017.59,79.59999999999998,464.27 +18.06,65.48,1018.79,77.95,454.34 +14.79,38.73,999.83,86.45,470.28 +35.2,73.56,1006.56,45.72,434.37 +22.93,51.19,1009.3,82.8,443.57 +25.73,66.54,1010.07,55.97,437.07 +18.77,50.66,1014.89,87.34,457.07 +11.52,40.8,1024.31,73.48999999999998,479.56 +8.84,42.49,1010.28,89.09,481.58 +21.24,60.84,1017.99,82.22,445.71 +15.67,45.17,1018.73,94.74,462.09 +22.99,46.21,1010.71,60.11,444.36 +23.93,64.05,1013.09,86.02,440.66 +34.33,69.05,1000.89,37.9,430.56 +29.85,68.24,1007.01,30.99,433.43 +30.1,67.45,1014.23,39.04,434.01 +6.85,37.49,1011.01,84.53,483.12 +26.53,54.2,1012.9,66.73,439.96 +24.2,59.07,1009.25,88.25,441.93 +24.6,75.23,1012.04,76.77,434.07 +30.1,66.25,1009.38,65.41,434.99 +21.6,59.8,1016.9,76.59,450.14 +24.9,58.49,1011.06,65.14,444.19 +26.9,60.93,1007.1,67.32,435.87 +23.07,57.17,1009.84,76.8,444.08 +24.85,70.47,1006.64,85.37,434.47 +30.3,73.9,1006.72,55.13,440.79 +32.18,69.75,1009.94,52.91,438.26 +29.11,74.78,1009.6,56.93,438.75 +21.37,65.94,1010.73,75.09,444.74 +26.53,69.71,1009.88,76.26,446.17 +8.9,40.77,1011.67,90.26,479.18 +22.45,63.77,1014.57,87.44,444.26 +28.9,71.25,1000.73,77.23999999999998,431.52 +18.55,46.48,1007.34,80.67,452.37 +20.92,63.86,1020.49,72.98,449.09 +14.38,45.09,1012.95,86.1,464.27 +8.9,41.4,1030.83,85.63,472.95 +11.1,44.85,1014.27,65.08,477.03 +20.85,59.21,1012.9,75.97,444.44 +26.27,71.98,1005.72,86.15,427.65 +15.61,40.89,1010.48,80.26,467.3 +3.26,41.31,996.32,100.0,489.38 +27.05,77.95,1009.57,76.56,434.09 +19.54,50.66,1014.7,84.53,456.61 +6.42,35.57,1025.58,79.63,485.86 +26.19,65.61,1014.51,54.52,443.73 +9.84,40.22,1009.5,85.38,479.65 +10.86,44.85,1014.15,88.36,476.87 +33.33,73.03,1014.2,42.28,436.05 +9.25,41.82,1033.25,74.73,478.48 +14.7,44.9,1021.87,83.9,468.69 +30.17,75.08,1005.17,55.89,438.89 +11.74,43.56,1015.14,70.72,477.5 +23.27,60.84,1019.13,67.24,440.22 +25.21,59.21,1013.19,62.85,438.7 +15.18,44.2,1019.6,72.45,462.09 +29.03,43.21,1011.83,65.23,434.11 +24.18,58.49,1011.3,77.81999999999998,445.49 +7.62,44.71,1020.56,69.96,486.07 +29.53,71.97,1008.6,79.25,434.96 +24.27,74.93,1012.73,73.81,443.06 +28.4,74.93,1013.65,48.6,442.23 +22.2,57.17,1009.82,78.43,447.75 +17.58,44.9,1020.52,71.48,459.78 +6.71,40.72,1022.78,80.69,483.11 +28.32,72.58,1007.77,78.34999999999998,428.06 +8.11,42.18,1014.82,93.09,473.62 +34.76,68.94,1006.75,41.31,427.42 +28.82,64.79,1016.74,56.34,445.1 +25.43,60.95,1014.62,51.39,444.65 +24.78,57.19,1008.08,65.4,443.62 +6.94,39.61,1017.74,81.43,480.07 +27.5,68.24,1010.38,73.44,430.9 +21.43,63.94,1012.68,99.68,445.29 +26.84,70.36,1007.41,71.47,442.17 +25.69,64.45,1013.05,42.0,450.94 +27.92,74.98999999999998,1005.47,75.13,431.76 +23.69,58.05,1012.08,74.26,444.46 +22.89,62.39,1007.84,88.16,448.13 +15.43,38.58,1016.58,81.17,463.44 +21.84,58.86,1014.13,69.67,445.16 +16.8,56.03,1020.65,85.26,461.96 +18.34,50.59,1018.42,83.95,457.17 +21.1,49.16,1006.76,86.08,442.78 +8.49,39.61,1021.05,87.74,483.94 +11.95,42.03,1017.58,90.89,465.2 +5.05,35.57,1027.03,80.02,491.4 +4.71,42.07,1005.35,82.26,486.79 +13.65,42.74,1026.58,71.48,468.87 +25.14,67.32,1013.96,41.78,435.39 +8.88,39.66,1015.21,88.29,481.45 +11.3,43.14,1019.56,99.83,469.73 +30.61,67.69,1004.97,47.46,429.8 +15.69,39.3,1019.03,60.57,464.17 +20.58,50.78,1008.87,91.18,445.03 +24.66,66.49,1010.83,70.06,438.01 +21.93,62.91,1013.45,74.62,449.17 +25.2,61.08,1013.04,74.28,447.09 +11.75,35.76,1018.99,57.92,473.01 +28.16,70.72,1009.81,65.32,441.37 +34.96,68.94,1006.17,59.26,431.48 +16.63,43.77,1012.25,75.09,458.66 +12.1,44.77,1019.1,75.84999999999998,463.11 +14.48,39.0,1016.75,75.97,464.56 +30.96,71.77,1006.26,52.76,425.66 +26.89,49.16,1003.84,41.22,442.39 +32.09,69.4,1003.1,56.91,430.62 +9.95,41.82,1033.09,69.44,477.52 +16.71,40.55,1004.45,81.64,464.13 +17.34,46.48,1007.18,83.15,452.06 +26.2,71.14,1007.92,72.95,431.7 +14.51,42.77,1017.47,81.95,463.37 +19.81,43.56,1013.39,38.13,460.59 +13.85,41.39,1018.62,75.55,471.45 +11.06,41.5,1013.09,89.8,476.24 +14.45,43.34,1015.47,83.33,462.16 +3.99,39.64,1011.53,83.58,492.06 +24.74,59.39,1015.23,74.64,437.49 +11.48,41.2,1012.88,90.04,478.34 +19.09,43.14,1012.34,45.75,463.3 +22.26,60.37,1008.14,92.37,441.33 +14.17,39.59,1010.99,94.08,464.17 +24.67,58.05,1011.31,69.95,444.57 +26.87,74.98999999999998,1002.48,71.91,437.78 +22.32,48.41,1008.68,79.11,445.36 +14.94,42.77,1018.06,75.34999999999998,460.51 +19.32,44.71,1015.3,28.81,464.38 +17.58,39.63,1004.84,80.43,467.33 +24.19,47.45,1008.26,64.25,446.3 +32.0,73.17,1009.92,42.47,433.72 +12.64,41.79,1016.38,92.65,461.46 +21.86,63.09,1016.64,87.94,442.79 +23.07,69.23,1011.78,76.06,437.08 +15.98,41.48,1017.0,55.73,456.31 +11.48,41.14,1027.67,90.5,464.07 +26.07,69.23,1013.32,54.03,436.94 +13.74,44.21,1023.26,84.2,466.67 +29.23,75.59999999999998,1017.72,52.26,438.92 +9.44,43.99,1020.31,98.06,475.01 +29.51,75.59999999999998,1017.92,50.61,431.18 +13.12,44.21,1019.57,89.29,469.09 +26.23,59.14,1016.98,75.54,437.85 +14.55,42.74,1027.29,66.64,457.77 +20.3,58.46,1015.93,82.13,448.79 +12.57,39.18,1023.09,77.28,471.87 +9.34,41.49,1020.58,97.59,471.04 +7.93,42.28,1008.43,85.57,484.75 +19.6,48.14,1013.18,68.71,456.57 +21.35,57.76,1017.36,73.09999999999998,452.57 +10.59,38.38,1021.58,68.23,474.94 +27.54,75.59999999999998,1018.26,57.89,440.87 +11.12,44.92,1025.58,93.52,470.82 +18.82,61.27,1019.5,72.23,455.29 +25.11,62.26,1011.12,78.01,434.97 +21.89,58.05,1011.31,85.71,441.76 +12.87,48.04,1012.47,100.13,465.56 +25.54,60.37,1006.49,71.54,436.14 +7.05,40.69,1020.53,89.67,476.75 +9.11,36.66,1026.47,74.79,480.74 +24.77,71.94,1006.77,88.86,432.27 +8.51,40.81,1015.54,83.16,481.02 +17.1,62.1,1020.39,93.63,453.4 +7.11,39.9,1008.82,87.76,484.21 +20.01,56.65,1020.77,74.45999999999998,457.01 +25.27,63.91,1009.82,75.48,440.39 +29.72,54.2,1012.86,38.48,438.84 +27.42,65.74,1013.43,69.42,440.52 +28.44,77.54,1011.73,77.3,433.21 +25.89,48.41,1008.49,68.58,440.92 +31.39,69.59,1008.28,62.86,435.76 +17.1,49.69,1005.53,81.81999999999998,457.32 +15.24,44.45,1020.56,66.13,460.94 +13.9,39.59,1011.84,94.74,465.0 +30.52,70.4,1003.9,64.33,438.29 +21.78,68.28,1001.0,79.3,443.24 +28.07,68.08,1013.13,44.67,437.65 +26.07,71.37,1008.6,79.48,439.25 +18.0,43.7,1015.4,61.28,464.26 +9.93,40.67,1018.08,69.74,485.23 +23.48,65.12,1015.82,60.83,445.66 +12.66,41.2,1015.88,89.12,466.49 +25.95,59.27,1010.9,70.42,444.19 +10.34,41.46,1017.75,89.73,478.03 +18.2,39.63,1005.35,79.05,468.49 +23.64,70.04,1011.09,83.35,435.21 +17.38,43.14,1011.09,61.9,459.02 +27.67,69.59,1009.13,82.15,437.29 +22.18,59.39,1014.82,85.31,440.94 +14.86,37.85,1010.58,86.8,467.71 +25.9,47.45,1007.8,55.96,443.13 +25.88,66.48,1004.24,63.16,434.4 +21.12,47.24,1003.79,70.55,462.41 +20.03,62.26,1012.15,82.54,447.4 +21.86,49.21,1014.61,53.31,452.77 +11.71,40.05,1014.49,86.09,471.49 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/train.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8e4f06f47506230c9250aba198646e237e7e5c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260328_055255/staged/public/val.csv @@ -0,0 +1,957 @@ +AT,V,AP,RH,PE +25.69,57.32,1012.34,44.18,441.43 +17.98,59.15,1012.09,83.03,451.97 +11.52,40.75,1016.23,85.18,477.19 +26.43,66.48,1004.36,55.9,435.59 +24.26,69.51,1013.43,53.23,442.56 +19.68,62.96,1020.41,82.26,453.58 +10.28,41.46,1018.44,85.23,479.66 +25.15,62.91,1012.23,48.22,444.19 +23.28,72.23999999999998,1011.3,90.5,434.21 +11.6,40.27,1008.55,72.12,473.89 +22.75,58.79,1011.44,84.47,445.67 +6.77,39.81,1017.01,87.68,488.27 +19.48,58.66,1013.32,73.16,454.4 +23.93,65.59,1011.09,87.26,444.9 +17.77,44.6,1016.97,54.25,460.13 +33.58,77.54,1010.19,53.49,433.75 +7.49,39.81,1019.03,87.29,483.59 +6.33,42.07,1004.25,77.09999999999998,484.57 +12.43,41.62,1011.87,80.56999999999998,460.61 +25.34,64.27,1013.38,66.02,443.94 +17.17,63.09,1020.54,95.98,446.75 +27.75,69.89,1015.41,73.01,430.33 +29.62,73.18,1012.21,61.6,427.22 +24.35,70.04,1010.92,73.88,438.4 +27.39,69.14,1008.82,78.34999999999998,435.22 +31.18,70.36,1006.38,56.74,438.46 +26.56,49.02,1007.65,70.78,438.82 +24.24,71.58,1010.15,91.14,437.75 +11.82,41.26,1020.74,91.14,466.95 +14.38,40.1,1015.51,81.23,467.28 +26.65,74.16,1008.27,94.54,431.47 +26.16,67.9,1005.81,61.02,444.06 +5.52,39.33,1009.74,95.25,492.39 +31.24,68.3,1015.89,42.84,435.2 +26.22,67.45,1013.7,44.04,440.17 +21.67,69.71,1010.46,96.83,440.16 +13.4,40.89,1010.67,91.66,472.36 +13.78,43.22,1011.31,69.7,463.71 +9.88,39.66,1017.81,76.05,480.05 +10.34,41.74,1020.07,79.17,480.84 +26.86,71.32,1007.38,81.14,430.44 +12.95,41.38,1021.97,53.83,474.46 +26.94,65.61,1014.31,49.73,443.9 +21.81,43.77,1011.97,64.72,453.13 +18.9,56.03,1020.77,71.83,457.66 +14.87,41.23,997.39,82.06,465.01 +20.46,59.21,1018.42,85.89,445.22 +24.3,69.94,1007.02,62.14,438.92 +24.58,71.94,1006.85,89.02,433.99 +9.88,40.0,1021.4,92.06,481.58 +29.85,71.58,1010.04,58.66,432.26 +27.5,65.59,1011.23,65.37,441.27 +6.14,40.62,1015.71,86.51,481.66 +20.76,51.19,1009.0,87.23,445.0 +25.55,58.95,1017.12,51.84,442.3 +10.24,41.17,1019.73,82.04,479.78 +14.45,43.71,1025.26,84.23,463.6 +30.76,59.57,1010.66,61.76,439.32 +5.72,40.81,1025.78,92.46,487.8 +30.24,68.24,1009.68,64.67,426.25 +34.61,73.03,1013.61,36.91,438.56 +24.14,62.66,1007.33,73.27,439.93 +26.76,70.98,1007.64,90.51,437.83 +18.47,62.1,1019.86,82.57,452.51 +29.51,75.59999999999998,1017.92,50.61,431.18 +29.05,71.85,1008.6,78.69,428.39 +21.89,45.38,1014.42,68.95,459.45 +24.67,63.56,1013.75,67.56,446.3 +30.67,71.29,1008.36,52.08,430.28 +25.21,49.82,1016.44,63.14,450.75 +9.76,41.01,1019.66,97.59,467.6 +18.31,62.1,1020.38,79.02,455.24 +33.11,77.54,1010.36,50.99,431.77 +26.18,69.14,1006.54,85.95,436.0 +8.72,40.02,1031.32,78.09,477.86 +17.06,58.96,1013.83,73.95,461.15 +8.01,40.62,1015.62,86.43,476.22 +14.35,35.71,1016.1,60.86,468.9 +29.74,70.32,1008.1,52.72,432.69 +23.0,49.5,1014.15,66.68,454.44 +17.09,42.42,1009.03,72.01,464.11 +14.0,40.8,1026.17,54.82,474.87 +25.02,60.29,1017.49,54.75,445.61 +13.86,41.58,1020.69,70.74,461.56 +27.58,78.05,1010.83,94.98,431.95 +26.41,60.93,1007.16,66.02,436.71 +11.02,41.44,1015.28,83.53,476.68 +25.48,58.95,1017.02,51.16,440.42 +15.47,48.98,1016.42,89.85,457.55 +21.48,47.43,1006.88,63.54,449.2 +18.86,51.43,1010.27,86.0,446.91 +20.94,44.58,1016.98,59.65,463.69 +15.02,41.48,1015.19,58.69,456.04 +28.71,70.32,1011.78,76.53,435.95 +14.28,42.77,1020.06,81.77,466.75 +26.24,77.95,1014.19,85.21,438.01 +24.31,63.86,1019.47,58.54,442.69 +8.51,40.78,1023.51,89.84,471.11 +16.07,65.46,1013.88,87.11,450.54 +8.14,39.96,1023.41,88.86,477.05 +18.43,44.63,1019.76,39.99,458.75 +34.2,68.14,1002.7,56.09,427.05 +17.66,62.1,1019.49,86.3,452.03 +23.77,51.43,1006.67,84.09,441.54 +16.59,39.54,1007.97,70.58,464.19 +15.01,43.56,1014.65,61.82,465.84 +29.09,70.02,1010.13,48.06,443.27 +20.1,59.87,1018.97,87.23,444.71 +9.0,39.18,1024.38,84.91,483.26 +16.85,50.9,1013.26,83.94,460.68 +28.44,69.4,1003.98,73.51,433.44 +9.51,40.81,1015.69,82.52,475.29 +25.99,49.82,1015.95,58.56,452.09 +6.86,41.17,1020.12,79.14,490.23 +8.57,39.69,1000.91,99.9,474.29 +23.3,48.78,1018.17,75.36,441.08 +32.95,67.9,1005.88,45.15,425.89 +24.41,73.67,1007.39,86.92,435.56 +17.51,39.54,1010.22,71.53,462.12 +31.68,73.68,1014.85,64.0,431.11 +9.0,41.54,1018.83,79.61,484.08 +18.4,43.96,1012.4,77.81,464.63 +13.72,49.83,1006.88,89.49,463.65 +7.16,38.56,1019.17,70.1,486.12 +14.33,43.41,1015.43,55.4,462.94 +13.53,42.86,1014.0,90.63,471.73 +13.11,41.58,1020.43,74.31999999999998,460.44 +23.98,50.32,1008.41,67.75,443.45 +31.08,59.57,1010.76,60.49,442.88 +33.62,77.17,1009.38,63.71,431.03 +11.93,38.78,1013.15,96.08,474.57 +21.97,68.12,1012.53,75.12,443.39 +23.83,49.21,1012.93,46.79,446.23 +4.96,45.87,1007.32,98.78,481.88 +31.3,70.79,1004.3,54.37,428.75 +17.75,49.25,1020.86,63.67,454.41 +29.89,71.29,1009.0,55.72,431.45 +12.11,41.17,1019.46,62.59,475.53 +23.85,74.22,1009.99,82.72,441.66 +12.16,40.81,1025.79,70.97,476.63 +23.71,60.23,1009.76,90.67,439.66 +22.49,58.71,1009.75,76.43,443.33 +18.9,57.5,1016.21,93.9,451.42 +27.86,63.07,1011.11,56.81,440.48 +26.04,71.14,1011.66,68.95,433.78 +19.51,44.05,1008.52,78.38,451.7 +10.92,40.92,1021.84,83.03,467.05 +8.51,42.32,1015.08,84.89,476.6 +19.68,68.28,1002.62,71.57,452.47 +27.75,70.4,1006.65,90.21,436.53 +21.59,66.54,1004.88,90.54,441.71 +13.93,42.86,1032.37,71.11,468.88 +16.55,41.66,1011.45,55.53,465.14 +25.53,71.85,1009.19,74.7,431.26 +20.67,57.5,1014.42,81.89,453.29 +25.21,69.48,1010.99,75.27,436.02 +9.29,39.04,1022.72,74.29,482.55 +33.92,77.95,1010.15,58.89,433.01 +25.63,71.58,1010.14,87.57,433.76 +27.21,66.49,1013.57,40.11,439.04 +10.42,41.26,1008.48,96.76,472.54 +25.02,59.44,1012.49,73.65,444.08 +24.2,59.43,1009.69,62.3,440.66 +15.82,44.88,1018.59,78.88,461.9 +11.46,38.91,1012.34,77.37,477.5 +13.17,36.71,1012.82,72.76,474.93 +23.47,65.61,1014.57,69.83,447.16 +10.77,41.46,1021.42,87.18,479.22 +28.47,69.23,1013.18,40.73,434.12 +30.03,70.02,1010.07,64.2,436.88 +13.89,35.71,1016.4,65.49,468.54 +13.26,41.78,1009.77,61.69,467.78 +12.31,37.73,1023.3,63.01,472.08 +19.61,45.01,1014.84,64.42,461.97 +18.58,44.6,1016.61,48.15,459.06 +23.18,51.43,1011.56,81.83,449.94 +28.33,68.14,1004.63,71.21,431.27 +14.82,40.0,1016.32,66.3,458.46 +21.42,56.89,1014.39,84.05,444.86 +26.62,76.2,1006.06,69.13,437.81 +28.17,72.43,1007.37,68.92,428.88 +20.86,63.73,1008.54,96.83,440.42 +25.45,63.76,1009.96,67.78,439.56 +29.15,73.42,1011.43,66.49,432.26 +32.33,67.83,1008.11,57.48,427.84 +13.45,45.87,1008.73,87.06,464.88 +29.91,76.86,998.59,72.41,432.6 +24.93,73.5,1011.28,83.09,437.35 +9.71,42.44,1014.29,94.03,481.03 +16.69,53.82,1015.39,63.62,458.96 +22.36,51.43,1007.47,87.33,442.53 +25.57,44.05,1005.79,65.14,443.84 +7.36,41.01,1025.49,96.48,477.37 +14.22,42.32,1015.54,77.23,465.0 +18.33,49.64,1025.36,62.57,468.14 +31.1,68.51,1012.99,54.3,428.68 +27.62,71.14,1011.6,52.8,434.72 +17.04,56.03,1020.38,68.69,462.48 +17.31,44.71,1017.43,35.4,463.05 +31.61,69.04,1008.11,47.96,439.19 +28.14,51.43,1012.16,52.67,445.33 +8.77,40.46,1019.68,77.84,475.0 +6.15,40.77,1022.42,88.57,482.49 +21.39,52.3,1009.2,79.77,446.87 +12.29,40.71,1019.71,83.09,469.75 +11.6,39.96,1011.65,80.79,473.22 +26.68,68.08,1011.41,67.33,433.04 +7.71,38.06,1021.0,83.47,482.78 +10.07,44.68,1023.44,90.95,477.52 +22.08,45.61,1014.02,75.70999999999998,456.71 +30.74,69.59,1008.69,68.04,437.81 +26.49,67.69,1004.61,78.13,430.62 +14.55,44.84,1023.83,87.6,465.14 +16.55,39.64,1009.07,77.8,465.29 +11.68,40.55,1006.48,96.16,474.8 +10.95,40.22,1010.04,78.95999999999998,477.23 +11.83,38.25,1013.36,85.33,473.31 +23.38,48.78,1019.03,78.69,446.18 +29.77,69.48,1009.8,52.6,432.69 +24.12,58.66,1011.55,58.96,450.69 +6.1,39.33,1010.4,95.34,491.37 +6.93,41.14,1027.18,84.67,479.06 +27.6,69.05,1003.87,42.01,436.08 +11.23,41.17,1019.36,56.85,475.85 +18.84,40.79,1005.18,92.46,459.96 +29.47,71.32,1008.07,67.0,437.14 +23.3,72.98999999999998,1008.54,92.11,437.62 +29.15,69.48,1008.68,55.78,430.54 +21.99,42.48,1011.77,74.04,456.65 +21.77,42.23,1013.03,67.44,462.51 +27.61,49.16,1005.01,35.63,441.18 +26.05,65.38,1009.43,52.1,449.82 +14.8,44.71,1014.67,41.71,470.77 +15.71,39.3,1019.2,62.28,462.84 +16.44,53.16,1014.82,75.29,458.49 +17.03,58.49,1011.91,92.16,460.48 +10.12,41.55,1005.78,62.34,475.46 +10.17,41.17,1018.58,87.72,478.04 +23.37,65.46,1016.25,48.64,447.07 +11.98,44.6,1018.59,86.71,470.02 +24.66,48.78,1018.39,71.79,449.11 +16.61,43.77,1012.25,77.23,457.66 +14.79,47.83,1007.27,92.04,463.22 +29.2,64.84,1009.94,55.37,441.9 +23.26,58.2,1016.72,57.98,446.87 +7.19,39.37,1019.67,70.77,480.4 +20.94,49.02,1008.91,87.32,448.18 +27.89,73.20999999999998,1001.32,85.88,431.59 +23.63,71.29,1008.01,70.07,442.65 +20.91,58.2,1018.1,62.8,446.19 +14.91,46.9,1019.59,98.1,461.73 +23.82,73.67,1007.26,88.16,438.42 +32.09,79.73999999999998,1006.92,61.5,432.85 +16.69,46.18,1011.0,97.85,458.57 +17.16,58.86,1016.4,86.39,453.76 +28.05,70.36,1006.73,64.42,434.06 +30.54,70.17,999.42,64.32,434.62 +21.95,50.66,1013.92,70.94,455.23 +24.49,59.87,1018.4,59.95,444.54 +10.62,39.58,1011.9,87.85,479.91 +11.47,25.36,1008.27,95.4,469.51 +24.84,71.73,1009.84,82.41,436.36 +20.66,51.19,1008.81,88.93,447.14 +26.85,63.56,1013.25,52.84,444.39 +25.56,69.13,1002.46,68.26,434.48 +20.0,39.53,1007.59,62.09,456.28 +8.22,41.82,1032.77,71.63,477.86 +21.84,59.39,1015.77,88.12,442.11 +14.26,44.47,1028.81,72.19,465.77 +14.35,39.39,1012.92,82.41,470.53 +22.89,80.25,1006.38,80.25,446.15 +24.34,73.5,1011.31,84.15,440.29 +23.86,59.21,1013.02,73.59999999999998,441.22 +27.71,69.13,1001.63,51.45,432.54 +22.63,70.47,1008.0,82.27,441.92 +31.23,75.08,1004.93,46.19,439.14 +10.31,40.67,1017.61,69.61,485.25 +7.64,39.85,1012.78,88.09,481.53 +31.44,79.73999999999998,1006.95,56.99,431.69 +4.89,45.87,1007.58,99.35,482.69 +27.91,63.76,1010.27,65.67,435.21 +19.05,53.16,1013.22,82.8,455.76 +28.36,69.88,1007.75,84.17,434.03 +27.69,73.91,1005.23,75.70999999999998,435.08 +22.85,59.15,1014.74,63.92,448.61 +23.0,57.76,1017.64,56.86,451.39 +30.04,68.08,1011.04,51.01,429.52 +17.08,38.58,1015.41,73.42,461.49 +27.13,69.45,1013.9,51.16,434.47 +30.65,65.18,1012.51,42.32,436.79 +23.91,50.23,1017.25,68.57,455.41 +7.64,42.28,1008.49,83.42,483.74 +6.77,40.78,1024.86,96.58,478.24 +18.41,44.9,1008.97,73.81,453.12 +14.29,39.59,1010.93,94.53,463.04 +29.29,71.14,1011.49,49.97,432.58 +29.17,67.45,1014.1,46.85,435.08 +23.55,65.94,1011.76,58.44,443.98 +19.05,59.21,1017.99,89.53,451.0 +18.22,49.25,1020.33,61.87,454.66 +14.8,38.73,1003.18,80.73,467.54 +5.28,45.87,1008.25,97.88,479.91 +13.07,43.13,1016.93,70.02,471.47 +21.37,81.56,1006.57,81.56,434.38 +9.96,41.55,1002.59,65.86,475.91 +13.86,41.78,1010.75,57.9,467.39 +11.33,41.16,1019.05,87.13,468.87 +16.81,42.42,1008.95,74.25,462.19 +29.79,67.69,1006.86,55.93,428.71 +14.44,41.2,1015.96,81.97,469.85 +9.08,40.46,1019.48,77.37,476.81 +17.3,57.76,1016.26,87.74,455.75 +27.06,64.45,1008.72,54.21,443.1 +14.64,39.58,1011.46,71.9,467.8 +23.69,77.54,1009.32,89.7,440.21 +9.05,36.3,1027.44,74.84999999999998,479.43 +24.73,74.22,1010.15,79.83,436.55 +19.94,44.9,1008.52,74.69,459.47 +8.73,39.42,1025.63,69.87,474.44 +26.66,73.56,1006.9,99.27,433.62 +31.81,69.88,1007.94,55.91,432.6 +17.47,58.59,1014.03,97.13,449.41 +22.18,62.39,1007.84,85.74,452.31 +18.25,43.14,1011.51,55.16,462.78 +20.34,69.45,1012.76,91.05,442.73 +27.44,58.9,1003.86,66.74,442.19 +27.75,77.23999999999998,1007.48,78.37,433.57 +19.13,59.21,1018.32,89.66,450.81 +19.84,65.48,1019.54,76.59999999999998,449.85 +21.1,62.66,1011.19,83.49,448.8 +20.15,58.59,1014.13,91.96,443.85 +28.85,58.33,1013.78,41.39,444.0 +19.39,60.1,1010.28,83.31,452.57 +21.88,69.71,1010.28,97.64,444.39 +16.34,47.45,1009.41,92.96,448.59 +13.34,40.8,1026.56,64.85,474.47 +3.92,41.31,999.22,95.26,487.35 +21.97,58.12,1015.29,77.47,449.6 +13.89,44.84,1023.66,92.97,466.74 +13.98,40.71,1022.72,71.83,474.46 +16.55,41.93,1022.71,42.73,466.77 +21.17,52.3,1009.36,81.51,447.5 +24.37,65.61,1014.5,65.67,443.13 +24.42,64.79,1016.12,69.32,449.1 +16.54,42.86,1014.85,78.0,465.26 +8.199999999999998,41.14,1025.24,96.26,474.04 +26.17,58.86,1014.52,51.28,443.69 +14.24,39.58,1011.17,70.45,469.94 +14.1,42.18,1015.05,78.25,463.3 +24.91,52.3,1008.72,68.26,441.15 +32.55,69.89,1013.87,40.09,428.84 +20.7,58.16,1016.73,68.19,453.22 +29.7,57.19,1008.41,55.07,436.29 +17.66,60.08,1017.22,86.96,456.62 +30.03,68.84,1011.41,53.82,439.31 +26.45,54.5,1014.96,65.55,450.76 +12.57,41.79,1014.99,87.8,461.88 +30.82,78.87,1012.06,70.69,432.01 +16.97,44.92,1025.21,74.27,460.21 +14.84,38.91,1013.78,69.27,467.83 +20.99,50.78,1008.55,75.14,449.07 +12.35,44.2,1017.81,82.49,471.65 +19.64,46.33,1013.33,98.99,451.45 +29.14,61.5,1009.64,39.95,437.76 +11.82,41.17,1019.5,55.74,475.61 +23.94,51.95,1008.61,73.42,448.67 +17.4,63.09,1020.84,92.58,453.0 +8.949999999999998,43.13,1017.56,94.85,479.14 +29.12,51.43,1005.93,60.66,437.71 +29.13,47.93,1002.5,49.1,435.61 +30.56,71.25,1000.3,70.55,431.92 +19.07,44.63,1020.23,44.93,456.37 +32.96,69.75,1008.86,40.23,435.56 +19.35,39.72,1002.5,51.24,455.29 +31.92,68.3,1015.58,41.55,430.07 +13.85,48.92,1011.68,79.23999999999998,462.38 +26.69,70.36,1006.82,68.29,435.04 +17.66,44.9,1020.5,71.33,457.11 +16.05,38.28,1014.38,73.89,466.75 +6.24,35.77,1019.24,70.7,483.36 +6.43,39.61,1017.51,83.8,480.58 +15.12,39.16,1006.55,76.98999999999998,463.78 +15.84,49.69,1015.14,90.41,462.6 +18.41,42.44,1012.66,65.93,463.2 +15.54,41.96,1011.78,97.46,467.1 +28.26,69.23,1013.01,42.1,436.31 +12.24,40.96,1023.22,78.73999999999998,475.32 +25.45,75.23,1011.41,73.33,441.65 +5.25,42.85,1013.75,89.67,477.78 +9.82,41.04,1026.72,77.28,473.98 +11.44,41.39,1019.59,79.95,478.52 +12.07,38.25,1012.67,81.66,470.36 +28.51,70.02,1010.58,54.68,441.66 +23.47,60.77,1017.19,75.36,444.46 +20.42,45.01,1012.23,66.5,451.28 +21.13,47.43,1006.97,64.26,448.83 +18.62,65.48,1018.45,73.39,451.94 +15.68,43.7,1015.09,58.96,470.29 +7.46,39.81,1018.62,86.73,484.13 +11.38,52.75,1026.19,72.70999999999998,469.9 +21.11,43.43,1010.1,62.62,447.83 +32.38,77.23999999999998,1007.7,61.15,430.96 +19.74,45.38,1015.11,80.67,459.39 +19.18,50.12,1005.99,100.09,444.56 +10.19,37.14,1012.74,73.48,475.01 +20.98,43.77,1010.67,62.73,449.88 +13.47,44.88,1017.56,93.23,476.67 +27.23,44.05,1005.69,58.91,440.2 +7.3,43.65,1019.33,67.62,482.96 +18.26,60.95,1016.94,78.91,457.03 +9.55,40.67,1018.56,70.72,486.34 +26.1,63.56,1013.12,61.0,442.75 +25.88,63.73,1009.48,77.17,438.42 +20.29,63.09,1019.03,76.06999999999998,448.22 +22.58,59.14,1017.2,80.91,439.78 +27.57,60.07,1016.52,54.75,440.12 +30.48,70.04,1010.73,53.7,429.85 +9.27,38.56,1017.69,62.49,475.42 +15.01,42.77,1018.21,73.22,462.6 +31.01,73.5,1010.92,48.61,432.41 +19.62,68.63,1012.26,68.05,453.84 +24.26,47.93,1003.87,70.44,439.16 +14.87,41.76,1022.26,78.20999999999998,464.84 +31.0,71.77,1006.29,48.56,431.07 +28.84,74.67,1016.52,67.43,428.98 +18.48,50.16,1011.45,99.92,452.06 +30.49,64.44,1013.43,51.73,438.09 +27.49,71.94,1008.25,68.29,428.27 +21.76,47.93,1005.34,86.28,444.77 +13.78,44.47,1027.94,71.09,467.22 +25.28,66.25,1009.77,84.55,439.77 +27.17,61.02,1011.38,65.32,437.06 +20.51,42.23,1013.25,71.83,461.78 +15.43,39.16,1016.44,79.8,470.74 +12.7,39.72,1017.89,62.97,467.77 +26.86,72.58,1009.22,88.39,428.69 +26.06,58.59,1012.41,55.22,451.47 +10.56,40.22,1005.08,89.71,478.02 +25.33,73.20999999999998,1002.19,97.24,433.43 +3.0,39.64,1011.0,80.14,485.2 +30.91,69.75,1010.23,59.36,435.7 +27.34,71.64,1008.12,72.22,438.76 +15.34,43.5,1021.18,79.44,459.77 +18.99,59.27,1012.15,89.39,453.4 +12.14,40.27,1007.57,73.22,472.84 +30.75,71.22,1006.47,48.06,437.96 +16.05,41.96,1011.82,96.05,463.72 +14.83,53.82,1016.57,63.47,464.0 +25.12,66.56,1009.22,65.62,436.56 +13.72,41.62,1011.14,75.79,455.52 +20.94,58.16,1016.88,65.43,455.16 +24.81,67.17,1007.71,84.37,442.75 +10.2,41.46,1019.12,83.26,480.11 +26.19,49.3,1003.69,65.88,440.13 +24.7,58.82,1009.4,75.91,442.98 +31.82,73.68,1014.8,40.58,433.32 +10.29,40.56,1017.28,69.13,481.7 +15.94,44.85,1014.29,67.57,462.54 +21.28,70.32,1011.06,90.12,439.0 +12.45,40.1,1015.4,82.61,473.63 +25.15,57.32,1012.41,41.84,440.1 +28.52,57.82,1004.81,57.82,435.4 +22.47,48.6,1002.33,63.23,445.98 +15.21,43.5,1021.6,82.06,464.08 +27.88,63.87,1017.79,40.0,443.24 +32.14,68.31,1010.48,42.15,436.15 +28.28,69.48,1008.56,61.3,428.75 +12.12,38.28,1013.65,90.19,471.19 +13.44,41.14,1026.41,77.26,461.44 +15.12,41.04,1025.95,69.67,460.58 +9.73,40.22,1011.48,87.88,481.42 +14.05,39.59,1011.2,94.54,464.63 +28.43,63.31,1013.44,49.99,432.62 +12.38,41.62,1012.37,84.15,461.07 +7.09,39.37,1020.07,73.26,487.0 +11.69,35.76,1019.02,55.6,471.72 +25.76,63.94,1018.49,42.14,445.78 +14.91,43.34,1015.15,81.56,461.27 +21.91,70.32,1009.17,90.57,439.29 +23.56,73.18,1012.18,87.98,437.92 +19.98,49.15,1021.56,63.89,457.54 +24.33,49.16,1003.46,61.04,441.2 +9.22,40.92,1021.83,85.43,474.51 +32.16,71.32,1005.5,60.23,434.01 +27.29,64.45,1013.46,45.35,446.94 +28.14,61.47,1009.69,64.66,435.35 +26.71,70.4,1007.59,82.63,432.64 +19.83,46.33,1013.27,96.4,451.22 +13.49,43.41,1015.75,57.86,461.06 +14.13,53.82,1016.72,64.85,467.08 +20.6,66.86,1013.08,62.48,451.44 +22.01,60.84,1017.55,83.82,441.9 +5.89,35.77,1019.78,79.58,479.86 +26.02,70.79,1004.21,79.12,428.72 +14.08,41.93,1023.02,59.41,475.15 +24.96,77.54,1008.25,80.59999999999998,433.4 +32.21,71.85,1008.25,58.09,429.15 +26.59,69.13,1009.27,73.95999999999998,430.11 +8.529999999999998,43.14,1012.25,78.88,480.08 +25.94,66.49,1012.83,61.81,433.38 +7.76,39.61,1021.63,80.67,488.32 +27.21,67.45,1013.83,43.26,436.47 +19.08,59.15,1013.1,81.81999999999998,451.33 +30.97,67.9,1005.98,55.6,428.26 +7.53,41.74,1022.45,90.85,487.25 +32.19,69.13,1000.45,48.22,425.21 +27.32,66.54,1004.95,72.58,431.33 +14.92,46.18,1014.21,98.82,465.63 +24.62,72.43,1007.97,84.36,436.89 +14.47,44.66,1016.33,93.52,464.41 +26.35,59.44,1012.16,63.73,443.73 +26.38,65.12,1016.1,47.57,441.07 +24.44,52.84,1006.39,49.05,440.2 +32.63,74.98999999999998,1002.42,40.07,432.79 +29.49,69.71,1009.34,56.35,440.99 +30.58,70.04,1010.4,48.16,431.59 +13.24,39.16,1016.52,86.66,474.48 +12.91,41.66,1013.37,71.52,469.71 +25.1,43.77,1010.9,49.68,444.99 +16.0,43.02,1012.37,39.2,466.01 +23.62,61.87,1010.07,48.77,447.93 +25.54,70.47,1009.28,73.5,436.16 +15.89,41.7,1018.93,82.68,463.33 +23.79,50.16,1005.32,75.81999999999998,435.49 +17.77,56.53,1019.57,79.89,457.94 +21.54,58.41,1013.99,86.34,450.69 +24.49,70.79,1005.51,88.65,430.54 +13.52,39.39,1012.91,84.03,474.82 +13.51,44.9,1019.29,77.23999999999998,464.86 +28.9,68.84,1011.64,64.44,437.06 +26.28,75.23,1011.44,68.35,435.28 +28.81,64.96,1000.46,68.05,427.91 +17.49,63.94,1020.02,82.6,452.71 +20.61,48.78,1020.8,85.05,449.38 +27.84,71.32,1007.72,79.25,431.37 +22.7,60.84,1019.15,71.48,438.59 +7.21,42.03,1017.81,90.12,482.26 +14.68,41.23,998.43,83.71,469.25 +21.93,60.84,1018.96,76.8,440.76 +9.23,37.36,1015.01,67.38,481.08 +27.51,49.3,1003.74,61.27,437.09 +20.76,70.72,1009.73,89.04,448.85 +30.65,71.06,1008.61,76.76,432.08 +10.31,42.49,1009.43,78.36,479.64 +27.27,72.58,1009.25,89.31,428.93 +28.61,68.12,1012.23,46.45,435.28 +19.65,44.89,1009.76,75.36,451.35 +30.24,69.88,1007.9,61.46,436.37 +31.26,68.94,1005.94,39.49,438.03 +25.16,74.33,1014.55,76.7,436.15 +16.73,58.59,1015.02,89.61,455.3 +30.57,58.9,1004.54,54.37,438.49 +17.18,63.09,1020.67,93.58,451.37 +27.35,61.47,1008.43,70.65,443.67 +19.11,50.16,1010.88,100.09,450.38 +26.48,68.14,1004.83,55.96,432.19 +13.84,42.18,1015.74,79.76,468.66 +29.1,76.2,1006.28,60.22,435.97 +13.91,40.24,1017.03,85.93,466.24 +13.73,41.78,1011.75,49.65,464.94 +25.4,65.34,1013.11,53.93,445.82 +14.73,39.52,1017.01,74.20999999999998,470.45 +27.58,66.48,1004.82,51.23,435.34 +24.03,62.44,1010.96,79.88,430.66 +19.78,63.09,1019.01,78.39,448.34 +12.57,41.66,1009.11,70.74,475.61 +13.95,41.49,1019.95,86.46,465.24 +13.77,47.83,1007.41,90.66,466.07 +21.52,50.66,1013.56,74.33,455.71 +27.98,67.9,1006.3,73.53,436.08 +14.57,44.45,1021.42,66.23,462.48 +25.46,70.32,1010.65,64.7,433.08 +8.58,38.38,1021.03,84.37,482.26 +28.18,66.56,1005.69,65.67,426.79 +32.07,70.94,1006.91,49.9,432.33 +17.94,37.2,1012.64,68.11,467.65 +7.34,40.72,1023.01,80.08,483.92 +10.8,39.28,1010.7,82.62,478.8 +24.34,70.79,1006.82,85.66,433.83 +26.45,64.27,1013.23,60.92,444.9 +18.38,62.1,1020.12,77.27,452.91 +32.53,77.95,1014.76,58.1,434.44 +7.99,36.08,1020.08,83.2,481.35 +21.16,50.66,1014.13,72.77,455.86 +15.71,40.12,1012.81,97.46,462.6 +20.58,39.53,1005.68,62.09,460.1 +32.0,58.9,1003.48,51.38,437.81 +30.29,74.16,1008.77,75.23,431.39 +31.38,68.27,1006.79,52.79,426.67 +29.67,66.51,1015.6,34.1,434.8 +19.9,56.53,1020.52,78.05,456.48 +23.6,57.17,1009.84,74.27,446.05 +4.59,39.33,1010.85,71.78,494.9 +12.76,43.7,1015.13,65.34,475.73 +6.53,42.85,1012.65,91.6,480.98 +14.46,53.82,1016.55,68.11,462.6 +23.75,61.5,1008.16,69.14,442.35 +22.28,59.92,1009.36,95.38,437.85 +24.4,60.37,1006.77,82.43,440.64 +29.82,69.75,1010.09,65.02,442.6 +20.29,65.27,1013.17,74.94,445.52 +27.2,72.43,1006.75,80.67,430.32 +5.7,40.62,1016.07,84.94,482.82 +24.54,65.46,1014.27,40.77,446.26 +16.57,63.31,1016.19,81.02,454.78 +29.89,65.74,1012.95,51.36,438.24 +24.37,70.02,1010.97,71.97,443.53 +24.16,65.06,1013.88,58.96,442.32 +14.9,52.05,1015.11,77.33,464.82 +26.88,74.78,1010.42,64.81,440.84 +27.02,72.58,1009.21,89.13,437.8 +10.13,38.16,1013.57,79.04,474.92 +15.27,38.73,1002.83,77.77,465.99 +14.03,44.88,1019.6,57.63,465.51 +8.51,41.26,1023.17,87.79,477.51 +8.68,41.82,1032.83,73.62,478.61 +12.85,41.14,1027.04,86.29,464.86 +25.27,67.07,1006.34,66.35,445.81 +28.62,69.71,1009.67,62.12,437.52 +23.87,60.27,1018.94,77.16,439.86 +26.54,69.48,1010.7,66.09,432.56 +12.83,44.88,1017.86,87.88,474.26 +15.62,41.76,1023.82,66.17,459.72 +28.28,61.86,1012.07,64.49,439.65 +20.06,62.1,1020.21,72.20999999999998,451.81 +13.86,35.71,1015.21,63.16,471.63 +28.19,68.08,1013.41,43.93,436.43 +18.02,53.16,1013.41,82.84,458.01 +14.8,43.99,1022.89,85.25,461.97 +9.26,41.66,1016.87,73.31999999999998,483.51 +20.65,66.51,1014.94,71.83,456.49 +13.03,39.52,1016.68,83.09,473.99 +13.41,49.83,1008.83,87.14,466.38 +3.73,39.42,1024.4,82.42,488.58 +26.95,70.79,1004.09,75.34999999999998,430.07 +11.7,43.41,1016.08,62.27,467.51 +13.09,54.3,1017.61,82.38,471.0 +5.21,41.31,1003.51,91.23,486.46 +12.65,44.0,1023.03,88.73,471.46 +16.01,49.64,1026.35,77.75,457.8 +15.34,41.23,996.87,86.56,465.16 +17.94,62.1,1019.81,82.65,453.55 +33.01,68.67,1005.2,51.41,433.94 +22.91,66.44,1011.23,63.43,444.48 +31.35,67.32,1013.74,38.56,439.81 +10.63,40.67,1017.13,66.12,483.27 +4.27,39.64,1010.99,84.85,487.19 +21.14,58.05,1012.98,87.27,449.74 +25.36,60.07,1015.06,66.11,439.73 +11.44,44.2,1018.14,84.9,476.12 +13.35,39.58,1012.41,83.45,465.85 +23.88,54.2,1012.81,64.52,444.97 +15.65,43.5,1021.39,78.58,463.5 +6.72,38.91,1016.89,90.47,485.89 +15.74,43.71,1024.7,78.38,462.66 +19.84,56.89,1013.23,78.31999999999998,447.92 +11.44,43.13,1014.88,63.88,477.57 +26.55,69.45,1013.88,55.39,435.64 +19.96,39.53,1006.16,62.77,460.49 +10.8,40.69,1014.3,87.44,478.19 +8.36,38.91,1016.27,88.82,482.09 +8.55,35.77,1016.15,73.31999999999998,481.44 +31.84,71.37,1003.51,46.22,432.04 +5.94,39.9,1007.84,86.33,485.86 +14.35,40.71,1023.09,69.5,473.56 +31.91,67.83,1008.76,53.22,425.28 +25.35,74.33,1015.29,77.84,435.66 +9.32,36.3,1027.67,73.25,479.52 +16.34,42.28,1008.08,52.8,463.29 +29.95,73.42,1011.44,66.32,432.81 +7.09,43.65,1019.6,72.09999999999998,483.42 +25.63,72.98999999999998,1008.2,86.8,436.64 +28.54,71.94,1007.4,65.99,430.91 +25.57,65.46,1014.81,38.58,444.46 +12.99,44.0,1025.22,90.27,470.93 +14.77,48.06,1010.92,69.81,461.52 +31.09,59.57,1010.67,60.5,440.08 +14.04,48.79,1017.62,75.25,464.09 +29.12,66.56,1006.9,49.79,429.94 +32.13,74.34,1003.34,56.39,436.3 +31.75,74.98999999999998,1003.25,53.33,430.82 +24.82,66.54,1010.0,60.36,440.88 +19.76,48.92,1010.48,46.57,456.69 +31.26,76.09,1006.66,63.91,430.36 +9.43,41.4,1028.81,85.83,475.8 +27.78,60.07,1014.66,53.74,439.43 +23.99,45.87,1007.63,52.62,443.66 +18.32,66.51,1015.18,81.5,459.89 +28.86,49.3,1003.93,52.85,435.75 +27.35,69.48,1008.51,65.81,432.31 +23.32,66.48,1003.92,72.25,436.26 +18.99,62.1,1020.0,76.76,453.09 +10.82,42.02,996.03,99.34,475.46 +14.81,43.69,1017.19,71.9,470.71 +22.77,59.92,1009.67,94.09,437.9 +18.61,47.83,1006.43,78.89,454.21 +26.5,66.05,1017.03,61.34,440.15 +16.11,44.92,1025.37,79.84999999999998,460.99 +30.51,70.94,1007.64,59.42,430.91 +13.48,41.44,1015.64,71.46,471.39 +16.37,43.5,1021.26,72.4,459.18 +21.19,50.16,1005.81,84.27,450.33 +26.38,59.92,1009.99,71.91,444.85 +24.45,65.12,1015.92,57.19,445.01 +28.6,71.22,1003.15,58.33,443.01 +29.39,69.89,1013.92,47.36,434.27 +25.91,68.08,1010.92,74.25,432.07 +19.94,65.46,1017.7,68.94,448.67 +13.95,71.14,1019.76,75.51,461.18 +33.7,68.27,1007.16,50.41,427.4 +6.58,40.07,1014.22,55.44,493.72 +9.79,39.69,1002.36,93.86,471.61 +18.41,65.94,1010.23,84.71,452.66 +22.89,48.98,1014.55,48.21,448.56 +25.68,46.21,1011.01,57.53,442.98 +32.77,72.86,1003.6,52.87,433.84 +13.18,43.8,1023.18,61.21,467.0 +28.99,54.2,1012.79,41.9,442.6 +26.34,59.21,1013.37,58.98,439.22 +21.11,58.66,1011.7,68.71,457.89 +24.28,71.98,1006.34,90.45,432.47 +28.46,73.67,1005.67,71.21,429.15 +27.16,59.87,1011.78,58.84,446.38 +18.36,53.16,1013.31,83.18,458.47 +20.35,50.9,1012.6,72.43,453.5 +8.57,40.69,1020.87,84.15,485.18 +8.97,44.03,1013.16,80.39,474.61 +20.95,70.72,1009.96,87.73,445.66 +23.49,47.45,1008.46,66.18,446.72 +7.26,41.22,1014.86,97.82,488.75 +27.36,58.33,1013.86,56.7,439.14 +27.98,67.17,1007.32,75.29,440.68 +25.15,68.51,1013.25,72.31,440.96 +26.82,60.96,1012.25,57.41,449.81 +4.24,39.9,1009.28,96.74,491.25 +24.49,65.06,1014.07,63.32,441.4 +19.65,42.23,1013.04,75.9,461.16 +9.57,39.82,1013.12,89.15,468.02 +31.46,66.54,1002.86,53.75,427.76 +7.2,40.35,1011.83,95.59,484.9 +18.19,66.54,1012.9,86.05,449.22 +23.21,73.42,1010.34,88.29,439.66 +29.31,68.67,1006.18,63.38,435.57 +23.54,41.1,1002.05,38.05,448.56 +24.22,62.08,1022.53,60.79,449.11 +21.85,59.8,1016.89,75.28,454.26 +29.79,62.66,1008.5,48.51,440.27 +7.06,41.74,1021.95,90.38,448.97 +15.55,39.63,1004.98,89.82,466.83 +11.09,40.43,1025.47,74.97,490.96 +23.85,72.43,1008.01,88.34,439.02 +24.87,68.61,1011.19,55.69,450.54 +20.67,63.56,1013.27,79.39,450.7 +15.33,42.28,1008.19,66.15,465.2 +20.73,41.1,1001.86,47.51,456.44 +12.53,44.03,1007.21,84.2,470.04 +13.43,50.59,1020.38,86.3,469.33 +23.61,63.94,1012.9,87.06,441.57 +24.07,71.97,1008.83,94.87,441.84 +28.28,61.47,1009.44,60.89,443.12 +9.75,43.69,1016.81,82.42,481.34 +11.96,43.41,1017.42,79.44,469.34 +14.02,40.75,1016.05,70.65,470.48 +8.25,37.49,1009.02,81.09,480.38 +22.8,49.16,1006.4,77.05,439.65 +24.13,45.61,1012.63,71.36,453.19 +15.96,41.66,1011.93,55.47,466.39 +17.48,49.39,1021.51,84.53,460.01 +4.95,42.07,1004.87,80.88,485.67 +12.02,43.69,1016.12,74.06999999999998,477.74 +14.16,39.28,1015.63,77.29,471.27 +21.17,58.16,1017.16,68.11,452.02 +4.97,40.64,1020.91,94.28,485.43 +27.28,78.92,1011.05,75.48,434.78 +10.42,44.85,1014.18,88.36,479.03 +12.75,44.2,1017.59,81.22,471.03 +13.1,40.03,1017.79,84.48,470.75 +29.09,72.43,1006.86,65.47,427.3 +27.64,75.59999999999998,1017.35,54.78,441.04 +7.79,41.01,1024.0,97.2,477.0 +16.52,43.7,1015.08,58.36,466.73 +17.79,40.12,1012.74,79.03,459.13 +15.04,38.01,1022.46,78.29,468.12 +15.92,39.16,1006.59,71.32,460.45 +20.4,57.85,1011.14,92.47,450.07 +20.25,63.91,1009.27,97.97,448.37 +14.24,39.52,1018.22,77.19,468.51 +28.11,70.98,1007.76,85.6,431.83 +21.3,66.86,1013.04,55.43,450.56 +16.56,42.99,1007.48,74.45,464.62 +8.93,40.46,1019.03,71.0,472.77 +17.48,44.2,1018.89,61.51,457.15 +10.38,41.01,1020.8,94.26,465.9 +21.83,57.85,1012.49,75.16,448.21 +20.58,54.5,1015.04,89.83,467.76 +14.95,39.31,1009.15,75.3,462.72 +14.01,38.91,1015.86,69.24,470.1 +7.0,38.08,1020.27,77.67,482.38 +23.82,48.92,1010.48,44.45,446.85 +12.65,44.34,1019.4,71.45,468.8 +16.37,53.16,1014.89,74.84,459.52 +18.62,59.15,1012.85,82.54,450.81 +22.96,68.61,1011.15,76.62,447.18 +25.72,74.67,1016.64,75.93,434.83 +16.0,37.87,1020.24,78.41,461.33 +19.09,65.94,1012.53,81.06,446.34 +24.49,65.61,1014.71,63.47,447.26 +12.79,44.03,1007.46,95.93,464.35 +8.699999999999998,36.24,1013.34,89.5,478.69 +19.79,51.19,1008.77,94.72,447.96 +30.55,68.24,1009.43,63.84,426.8 +10.1,44.03,1008.11,90.29,471.59 +26.73,49.02,1007.75,67.73,438.17 +8.99,41.26,1020.52,91.96,476.09 +15.24,39.39,1013.01,74.23999999999998,469.79 +30.36,71.8,1010.9,63.27,437.4 +10.98,41.54,1019.94,69.83,479.08 +29.08,70.83,1007.98,51.95,430.91 +25.23,61.86,1013.0,76.18,441.48 +27.76,72.58,1009.04,84.96,429.25 +24.37,68.14,1005.22,59.27,440.22 +11.22,40.22,1011.01,81.67,476.7 +23.43,51.43,1011.31,73.55,444.09 +22.81,58.96,1013.5,55.66,452.89 +15.71,44.06,1018.34,71.69,465.05 +10.34,37.5,1010.35,95.56,474.08 +11.01,40.05,1015.46,89.22,474.2 +28.59,69.84,1003.79,67.31,427.53 +29.86,59.57,1011.24,64.02,439.44 +3.95,38.44,1016.75,79.65,492.46 +16.98,63.09,1020.44,95.18,450.55 +28.03,60.23,1010.23,66.04,438.88 +24.43,58.05,1011.88,71.39,445.68 +13.97,45.01,1017.44,89.15,461.96 +9.11,40.02,1031.1,83.02,479.03 +22.08,55.5,1018.42,58.46,455.79 +31.61,75.08,1004.83,42.29,436.67 +8.68,43.14,1011.94,79.06,480.73 +29.11,74.9,1003.31,74.01,432.43 +12.71,43.8,1023.15,71.16,466.2 +31.24,74.22,1007.74,48.77,430.44 +9.18,42.18,1017.4,87.3,475.57 +4.15,39.9,1007.62,95.69,489.8 +14.93,43.02,1012.11,45.56,468.19 +12.24,40.66,1017.4,96.22,464.7 +20.87,63.31,1012.27,79.51,446.7 +21.12,62.52,1015.62,78.98,450.93 +19.23,41.67,1012.53,48.86,465.66 +30.74,71.77,1006.24,53.38,434.89 +25.42,73.20999999999998,1001.91,93.78,432.04 +18.97,50.59,1016.01,74.9,459.68 +23.65,66.05,1019.6,78.20999999999998,442.9 +15.26,46.18,1013.68,98.58,463.6 +24.41,58.59,1012.62,64.52,442.64 +20.79,50.59,1017.75,73.34999999999998,456.01 +8.34,40.72,1023.62,83.75,483.14 +31.12,68.14,1003.67,67.36,427.06 +24.92,63.94,1017.7,44.92,441.07 +29.3,70.04,1010.95,61.23,426.25 +16.46,61.27,1020.02,74.54,456.64 +24.44,69.84,1005.34,80.37,430.3 +6.17,39.33,1012.57,93.32,491.54 +18.15,41.67,1012.75,52.69,464.44 +26.38,71.58,1011.02,80.9,434.26 +23.99,67.69,1007.9,78.56999999999998,437.1 +26.51,67.25,1017.85,64.17,435.52 +24.31,66.49,1011.38,54.35,440.79 +29.04,70.72,1009.55,66.58,437.95 +13.26,41.74,1021.89,63.32,473.44 +18.32,65.94,1012.74,86.77,450.5 +4.87,42.85,1012.69,94.72,482.05 +24.98,60.32,1016.39,63.12,446.46 +14.77,44.9,1020.5,84.31,465.23 +28.77,75.23,1010.01,59.0,437.93 +28.5,76.86,999.49,77.47,430.62 +11.62,41.54,1019.94,66.43,477.75 +23.21,74.22,1009.68,88.46,440.46 +30.12,73.18,1012.29,61.32,429.31 +11.63,41.5,1013.6,87.11,477.3 +19.8,58.79,1017.04,87.71,449.66 +30.22,70.32,1011.63,65.97,435.98 +17.55,43.14,1018.86,76.0,461.58 +8.27,37.7,1015.09,73.64,479.16 +31.01,69.13,1000.93,62.96,425.69 +28.64,73.4,1011.48,52.84,441.32 +10.81,45.0,1023.45,85.89,482.63 +25.62,73.17,1011.65,86.45,430.56 +30.28,58.9,1005.03,54.59,439.06 +3.63,38.44,1016.16,87.38,487.87 +9.73,41.01,1021.76,97.71,469.11 +6.72,39.85,1011.84,84.66,489.09 +20.58,49.15,1021.42,56.15,453.87 +27.99,71.58,1010.68,68.99,435.99 +18.36,53.16,1013.14,79.89,457.94 +30.08,73.42,1011.17,63.86,434.95 +25.6,63.9,1013.16,53.19,451.44 +27.41,59.21,1013.3,50.93,438.39 +7.51,43.02,1014.35,86.46,485.38 +13.42,41.74,1020.96,61.8,473.45 +28.18,60.07,1016.34,49.13,441.61 +17.3,43.72,1009.64,77.86,456.55 +24.96,70.47,1007.73,76.48,438.23 +21.04,45.09,1014.19,40.62,450.92 +22.17,65.61,1014.71,70.91,449.91 +26.98,72.58,1008.55,78.5,431.12 +30.13,78.05,1010.99,61.5,434.14 +9.68,41.48,1018.24,71.04,473.31 +21.95,68.08,1012.91,69.36,443.93 +15.09,44.34,1019.46,60.49,468.8 +23.83,58.79,1009.77,78.13,444.34 +13.86,40.66,1017.15,83.82,463.49 +22.79,69.13,1010.87,91.47,438.08 +26.71,77.95,1012.13,77.5,433.47 +28.69,67.25,1017.71,53.83,432.21 +18.27,51.43,1010.38,88.39,460.41 +24.24,68.3,1018.03,81.51,437.12 +11.8,45.09,1013.21,89.68,470.57 +17.19,58.86,1016.74,85.97,451.87 +18.55,61.87,1008.45,65.3,450.73 +15.5,44.92,1024.16,86.44,462.12 +24.22,56.89,1013.81,70.02,440.79 +11.91,43.22,1008.75,76.56999999999998,472.88 +14.48,46.18,1015.83,92.15,462.3 +14.73,58.2,1019.45,82.48,458.56 +11.91,40.69,1014.41,83.71,476.71 +22.48,50.05,1005.55,82.36,442.56 +27.72,69.88,1007.58,72.25,434.02 +15.03,44.45,1020.94,65.57,460.06 +24.18,59.92,1009.88,79.54,438.85 +21.97,58.79,1010.93,86.7,448.8 +15.51,41.76,1022.81,69.55,463.82 +25.89,58.86,1014.16,52.95,445.17 +19.13,42.18,1001.45,98.77,456.04 +26.82,69.05,1004.62,40.0,437.42 +23.04,48.06,1014.16,54.99,459.36 +6.05,42.85,1013.09,91.88,485.02 +30.94,64.44,1014.36,53.76,439.84 +25.32,48.41,1008.47,72.14,443.04 +26.92,68.27,1008.11,61.73,435.17 +23.48,51.43,1007.13,84.83,441.78 +25.66,71.77,1006.76,84.76,429.25 +17.46,53.29,1018.07,91.01,458.06 +26.18,69.84,1005.13,72.89,431.69 +10.07,39.66,1015.37,83.78,479.64 +30.99,69.82,1009.41,50.84,437.46 +31.85,73.91,1003.6,60.22,431.26 +32.2,72.29,1008.61,69.94,432.52 +22.08,41.1,1002.19,46.69,455.04 +16.32,43.56,1014.4,59.77,463.57 +24.94,59.07,1008.89,84.79,440.12 +8.3,36.3,1015.97,60.62,480.58 +18.81,45.01,1015.28,65.91,457.85 +17.61,56.53,1019.5,82.3,457.01 +27.01,43.77,1011.18,46.58,440.64 +28.69,67.25,1017.71,44.6,436.21 +13.66,40.55,1005.46,96.02,467.7 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/_ctgan_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..0fa781622a182d1519a5acf50f5fec2f0faee30e --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/_ctgan_generate.py @@ -0,0 +1,18 @@ +import sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_rdt_inverse_fix import apply_ctgan_inverse_fix +apply_ctgan_inverse_fix() +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN +model = CTGAN.load("/work/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/models_300epochs/ctgan_300epochs.pt") +total = 7654 +chunk = min(50000, total) if total > 50000 else total +parts = [] +left = total +while left > 0: + take = min(chunk, left) + parts.append(model.sample(take)) + left -= take +sampled = pd.concat(parts, ignore_index=True) if len(parts) > 1 else parts[0] +sampled.to_csv("/work/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/ctgan-n20-7654-20260422_031707.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/ctgan-n20-7654-20260422_031707.csv") \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/ctgan_metadata.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..9718f799216c76afaec80445613f5b1a930e899a --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/ctgan_metadata.json @@ -0,0 +1,24 @@ +{ + "columns": [ + { + "name": "AT", + "type": "continuous" + }, + { + "name": "V", + "type": "continuous" + }, + { + "name": "AP", + "type": "continuous" + }, + { + "name": "RH", + "type": "continuous" + }, + { + "name": "PE", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/gen_20260422_031707.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/gen_20260422_031707.log new file mode 100644 index 0000000000000000000000000000000000000000..f656ed571e7bf2f3c9fb93d0b2386db10aca7e83 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/gen_20260422_031707.log @@ -0,0 +1,2 @@ +[CTGAN] Generated 7654 rows in 1 chunks -> /work/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/ctgan-n20-7654-20260422_031707.csv +[W421 19:17:25.722086465 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..47d479abd39e67eb4c4241ec67585582fe63d632 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n20", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "exists": true, + "size": 291758, + "sha256": "8768b9641a081ce32375b2739c6d0a6cdf66c1b03268c7db5f71ffd0019c97e2" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "exists": true, + "size": 36657, + "sha256": "c2dae02f854856ba824310ecaca5c73a72a3302753396aa681c82b69d65b174c" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv", + "exists": true, + "size": 36232, + "sha256": "82c48522e82ea4c5e4c407ec9239e82558dcff1df413f3d0c382e77fa041bc88" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_profile.json", + "exists": true, + "size": 2675, + "sha256": "7e7d747ab11beae1e58278dc8d6ae08d7ae6f14fe93f77a4fc1e6e589df21df4" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_contract_v1.json", + "exists": true, + "size": 3047, + "sha256": "20f513ccbc9f09d5286bc8998a5772f42b78b40aa1ed60b079fa73edf9c78eec" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/models_300epochs/train_20260422_031300.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/models_300epochs/train_20260422_031300.log new file mode 100644 index 0000000000000000000000000000000000000000..f87ea457cc68ae40040050c54e2a0aa1a5a6c6bf --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/models_300epochs/train_20260422_031300.log @@ -0,0 +1,8 @@ +/opt/conda/lib/python3.11/site-packages/torch/autograd/graph.py:841: UserWarning: Attempting to run cuBLAS, but there was no current CUDA context! Attempting to set the primary context... (Triggered internally at /pytorch/aten/src/ATen/cuda/CublasHandlePool.cpp:270.) + return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass +[W421 19:17:03.185589867 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:17:03.207813168 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:17:03.243398115 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:17:03.336742236 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:17:03.395842065 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[W421 19:17:05.000727930 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8618a420d9d101a283cfb38feb336ac37687988f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,112 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "columns": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91364f3480d02e634daea210e8cae28ad5402b46 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n20", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "PE", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..edd6d0ac50f3262e84e009091ed66abaa4e8e1ab --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/public_gate/staged_input_manifest.json @@ -0,0 +1,117 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8910f847caf51115110a29f4607ccdf752ed7e07 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n20", + "model": "ctgan", + "run_id": "ctgan-n20-20260422_031259", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/ctgan-n20-7654-20260422_031707.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/models_300epochs/ctgan_300epochs.pt" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/ctgan/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3f9a43a90570e41dce51c11929925da15a870406 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/ctgan/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/ctgan/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/ctgan/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bc1d3b45c68ce7bfcbe394f7ed96ce14632a5996 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/ctgan/model_input_manifest.json @@ -0,0 +1,119 @@ +{ + "dataset_id": "n20", + "model": "ctgan", + "target_column": "PE", + "task_type": "regression", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/staged_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb807ac5b23b2e7dfb39b3a5378cd452e84d56ed --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/test.csv @@ -0,0 +1,959 @@ +AT,V,AP,RH,PE +14.72,41.23,997.91,82.69,467.11 +11.94,40.66,1016.61,96.11,467.99 +27.56,66.93,1016.81,55.59,444.1 +9.59,34.69,1027.65,75.31999999999998,478.88 +7.46,41.82,1032.67,74.59,483.11 +15.52,36.99,1006.86,89.7,467.9 +15.47,43.13,1015.11,50.5,466.63 +21.84,45.09,1013.94,46.11,450.88 +19.83,51.43,1007.36,91.64,449.45 +29.3,67.69,1007.17,55.5,430.72 +6.63,39.42,1024.81,72.58,482.02 +22.88,69.45,1014.02,65.13,441.76 +11.97,42.32,1016.95,88.32,467.98 +29.25,67.32,1013.88,38.57,437.94 +14.89,39.58,1012.26,77.58,465.95 +10.39,44.85,1014.22,78.42,478.05 +25.66,77.54,1008.22,78.42,432.82 +16.5,49.39,1018.35,93.42,462.48 +28.55,74.33,1011.77,73.34,426.48 +7.84,40.07,1016.68,47.63,488.7 +27.14,71.32,1007.8,87.99,431.96 +25.18,71.98,1006.71,89.86,432.88 +6.01,35.79,1011.26,90.72,482.79 +14.54,41.17,1015.15,67.78,470.19 +11.8,43.22,1008.57,78.01,469.55 +23.82,44.89,1009.39,74.69,445.45 +32.81,71.32,1007.69,47.29,434.38 +30.63,74.22,1007.47,46.52,430.38 +25.43,70.17,1000.46,87.84,436.43 +30.17,76.86,998.23,73.61,430.3 +26.27,58.33,1013.81,60.43,438.82 +26.02,63.07,1010.94,53.96,446.82 +14.64,39.31,1008.84,79.3,462.72 +19.99,65.94,1012.28,75.42,447.22 +32.9,68.51,1012.95,50.09,430.23 +20.3,44.9,1008.25,64.08,457.6 +22.86,47.43,1009.75,61.54,452.53 +10.82,44.63,1020.64,90.26,473.23 +13.15,42.44,1014.51,99.53,469.34 +27.4,66.48,1004.71,51.5,439.66 +4.96,40.07,1011.8,67.38,494.75 +8.67,36.66,1026.8,84.36,480.38 +25.97,43.21,1011.9,88.73,434.83 +10.23,42.32,1017.53,89.93,473.59 +27.66,59.21,1013.12,51.58,438.57 +27.21,68.12,1012.96,54.69,435.2 +19.72,65.94,1010.53,82.12,446.84 +8.87,41.82,1033.3,74.28,477.97 +15.29,25.88,1009.21,66.0,464.25 +19.48,39.72,1001.75,55.41,457.16 +10.93,39.16,1016.54,90.56,479.83 +20.84,51.19,1008.63,84.11,448.98 +9.01,40.77,1022.37,90.3,470.84 +21.08,63.13,1013.53,98.0,443.51 +14.94,40.0,1017.69,65.43,456.41 +28.37,63.31,1013.18,49.02,437.64 +23.45,45.61,1012.84,73.42,454.92 +12.76,42.32,1015.35,78.18,466.15 +13.86,44.21,1022.6,83.56,468.3 +24.51,51.95,1005.57,63.53,449.73 +5.04,40.64,1021.35,93.63,484.42 +14.24,45.01,1013.54,88.68,461.64 +11.17,39.72,1002.4,81.4,474.64 +11.94,44.2,1017.97,82.93,474.02 +9.28,41.54,1018.33,79.89,482.8 +28.91,58.33,1013.84,39.72,437.53 +16.89,49.21,1015.19,70.39,458.25 +16.34,36.99,1006.99,90.06,466.24 +16.41,47.24,1015.75,88.78,457.94 +19.44,39.53,1006.99,63.18,457.09 +9.37,40.11,1024.94,75.03,471.13 +13.64,44.88,1019.85,56.86,466.66 +16.19,36.99,1007.37,92.4,462.94 +18.75,63.09,1018.19,87.84,450.98 +15.97,45.01,1016.58,83.24,456.91 +19.5,52.72,1025.21,50.21,457.26 +10.49,42.49,1009.81,78.92,478.75 +20.78,62.52,1017.58,73.3,452.3 +7.41,40.81,1026.15,88.96,488.48 +25.38,72.23999999999998,1010.76,89.64,432.3 +4.0,39.9,1009.64,97.16,490.79 +30.61,68.84,1011.18,52.5,439.9 +28.57,75.33,1003.16,76.14,431.58 +15.37,41.96,1011.58,96.76,466.02 +31.56,66.44,1008.91,64.16,430.11 +16.69,46.18,1010.8,96.8,466.03 +22.0,51.3,1012.87,85.79,450.18 +28.31,74.34,998.42,79.23,431.95 +15.7,44.21,1021.26,86.83,462.19 +21.79,58.2,1017.21,66.74,446.94 +25.67,58.59,1013.0,62.34,451.03 +20.59,59.8,1015.27,77.94,453.83 +16.14,44.21,1020.36,80.59,461.03 +25.61,47.43,1008.62,54.51,442.96 +7.61,44.71,1019.41,70.48,485.36 +30.32,64.69,1006.35,51.36,436.72 +29.45,68.27,1007.96,61.63,432.96 +29.28,77.17,1009.4,76.3,433.14 +5.62,41.31,1001.37,89.16,485.6 +24.86,44.05,1005.69,66.65,447.2 +6.17,40.07,1013.7,58.99,495.21 +13.65,41.58,1020.56,72.17,460.8 +3.96,35.47,1016.79,83.81,489.68 +6.49,39.33,1010.85,91.85,489.22 +31.32,71.29,1008.37,50.07,430.46 +8.07,43.69,1017.05,87.34,485.18 +13.35,39.64,1010.1,93.3,471.69 +26.21,56.85,1011.45,41.37,439.55 +5.71,40.77,1022.51,89.58,485.75 +18.98,60.1,1010.09,85.34,453.37 +6.07,38.91,1019.25,83.39,483.56 +26.92,78.92,1011.65,96.22,434.64 +24.44,47.93,1003.13,67.04,440.53 +14.45,52.75,1023.97,63.59,459.85 +26.44,71.64,1004.55,85.53,435.61 +30.7,74.22,1008.12,50.39,432.51 +6.48,36.24,1013.62,92.03,484.65 +30.47,70.83,1010.91,46.94,444.39 +13.78,38.28,1014.8,81.19,467.43 +19.65,62.1,1019.46,77.81999999999998,449.13 +9.51,43.79,1016.02,79.81,481.12 +16.31,52.75,1024.4,55.69,456.58 +13.08,39.82,1012.27,85.21,476.96 +20.72,44.57,1008.96,72.56999999999998,449.76 +9.77,41.44,1017.69,78.26,481.74 +26.12,66.75,1017.86,79.02,433.67 +10.95,43.8,1022.61,63.46,473.2 +11.01,43.69,1016.7,81.48,477.3 +17.36,52.9,1015.42,69.97,458.66 +16.7,46.18,1011.4,95.51,458.05 +11.95,42.07,1018.52,84.73,467.91 +18.3,44.06,1017.95,63.24,456.32 +14.69,35.71,1015.78,57.34,467.39 +30.82,76.2,1007.47,59.3,432.22 +22.36,58.79,1016.69,73.59999999999998,445.76 +23.89,64.27,1013.37,75.22,450.82 +5.75,42.07,1004.24,78.23,485.23 +26.64,69.13,1010.6,79.23,430.41 +23.08,48.41,1008.44,82.35,443.5 +29.76,57.19,1008.59,51.1,436.21 +32.8,68.67,1005.27,44.53,432.28 +24.63,65.38,1010.43,40.68,446.23 +11.02,43.02,1012.32,66.54,478.81 +32.13,69.98,1013.3,55.85,431.84 +23.81,60.08,1017.29,62.66,450.33 +8.09,38.5,1012.99,67.31,484.81 +32.63,69.89,1013.85,41.66,425.72 +13.27,52.75,1025.86,65.12,464.82 +29.3,68.08,1011.23,56.23,434.11 +26.3,77.95,1009.45,78.72,437.95 +28.52,70.02,1010.34,54.21,441.98 +17.86,50.88,1015.59,88.28,457.33 +7.92,41.66,1014.84,76.12,483.38 +3.74,35.19,1018.58,98.84,490.5 +21.33,63.86,1020.33,72.13,445.02 +30.36,74.87,1008.96,61.87,435.31 +14.23,46.18,1017.39,87.29,463.86 +9.55,41.44,1015.07,85.94,481.75 +9.78,41.93,1023.18,75.05,484.03 +30.8,73.17,1010.51,51.93,432.24 +15.48,47.83,1004.88,81.68,463.67 +16.58,46.18,1010.4,96.29,463.51 +20.32,39.72,1001.38,57.21,456.18 +11.83,43.14,1010.06,88.14,471.98 +26.75,56.57,1013.76,57.93,443.92 +14.13,48.92,1011.72,78.06,464.17 +19.91,51.19,1008.0,90.23,449.23 +14.37,40.56,1021.67,68.18,470.19 +17.27,44.9,1007.85,78.8,454.19 +9.59,38.56,1017.52,61.89,481.05 +28.04,70.32,1011.28,78.16,435.42 +18.18,44.63,1020.41,48.64,455.57 +32.27,71.85,1008.06,59.28,429.72 +19.02,44.85,1014.57,43.37,465.42 +13.47,43.34,1012.75,87.04,468.8 +12.25,40.75,1016.02,82.4,475.07 +27.45,64.34,1007.12,65.87,440.0 +29.96,67.83,1008.0,44.05,433.13 +12.55,38.91,1012.58,75.44,474.35 +31.92,75.33,1002.13,65.73,431.32 +21.55,60.27,1017.42,92.59,443.93 +20.14,46.33,1013.24,83.39,453.35 +18.33,44.34,1019.55,51.69,468.8 +8.65,40.56,1023.23,78.84999999999998,485.87 +26.99,62.26,1011.13,71.27,436.89 +14.4,41.26,1021.41,73.11,462.78 +18.35,62.1,1019.97,78.36,455.29 +16.76,43.77,1012.25,77.95,457.0 +11.82,42.86,1014.12,88.28,476.7 +20.78,68.28,1008.75,60.87,450.57 +29.35,54.2,1013.07,42.45,439.47 +22.63,45.61,1014.14,73.06,457.88 +22.83,65.18,1012.24,79.73999999999998,442.43 +6.74,36.08,1020.36,86.98,484.18 +31.54,71.06,1008.4,71.77,431.87 +23.24,45.01,1012.21,45.23,457.01 +32.74,68.31,1010.23,41.29,441.66 +14.18,39.3,1020.1,67.48,464.32 +25.86,59.92,1009.92,73.95,436.06 +14.05,40.69,1015.66,74.39,470.9 +23.78,69.71,1008.79,83.17,443.06 +14.14,39.59,1010.84,96.02,465.23 +11.77,40.71,1024.55,72.48999999999998,477.94 +23.77,64.15,1021.02,55.87,448.43 +9.61,44.03,1008.3,91.36,473.54 +22.42,62.52,1016.83,63.27,451.64 +24.85,68.37,1006.5,68.37,442.66 +17.69,44.34,1019.31,61.12,464.13 +3.21,38.44,1017.11,84.86,492.93 +18.45,42.44,1013.45,63.52,459.79 +11.48,44.6,1018.29,90.76,470.39 +17.37,48.92,1011.91,58.4,455.53 +6.22,39.33,1012.31,93.23,491.77 +12.74,49.83,1007.44,91.47,466.09 +22.56,70.79,1005.85,93.09,435.14 +24.35,58.49,1011.03,70.64,445.6 +16.58,44.68,1021.5,83.38,458.87 +25.47,70.36,1005.79,77.73,437.02 +30.88,69.51,1011.48,46.58,433.14 +6.64,39.04,1018.84,74.94,481.53 +12.65,41.93,1023.07,65.05,479.53 +8.91,40.11,1022.87,78.39,475.43 +5.57,42.85,1013.55,92.14,488.85 +16.09,44.2,1019.39,67.24,460.56 +20.98,60.07,1016.26,67.18,446.26 +14.93,39.16,1007.25,72.34999999999998,463.2 +24.19,58.95,1017.78,58.78,441.91 +23.86,52.84,1006.56,48.94,444.66 +15.59,52.05,1013.67,78.55,456.07 +26.04,74.67,1016.68,81.2,433.55 +22.35,54.42,1012.46,75.01,454.72 +10.57,36.71,1022.11,82.39,472.62 +6.16,38.5,1012.83,93.68,490.92 +24.12,62.44,1013.83,88.02,443.3 +28.24,71.58,1010.1,67.92,434.01 +21.11,69.94,1004.37,84.26,439.91 +11.49,44.63,1020.44,86.04,471.08 +24.92,60.95,1014.88,60.58,445.44 +23.56,67.79,1010.14,89.72,441.29 +7.54,40.72,1023.82,85.15,485.92 +26.85,75.59999999999998,1017.43,74.55,433.48 +12.14,44.85,1014.36,60.04,476.68 +17.03,43.99,1021.5,82.32,460.25 +31.41,64.44,1013.84,49.49,439.3 +14.73,40.35,1011.15,65.2,470.03 +24.04,59.43,1007.6,76.98,437.51 +21.03,44.78,1007.99,36.82,459.72 +22.61,42.8,1014.24,69.71,460.26 +17.36,44.63,1020.49,54.21,456.98 +26.82,64.96,999.72,63.55,427.51 +18.19,44.06,1017.24,78.73,456.13 +24.38,47.01,1015.17,68.96,454.85 +12.98,39.64,1013.95,74.39,473.54 +14.17,43.13,1014.94,48.62,471.08 +18.71,54.9,1017.12,74.79,456.88 +12.8,44.34,1016.52,86.73,473.42 +16.71,46.18,1012.06,96.6,458.4 +22.99,60.77,1017.97,78.47,447.62 +28.34,63.77,1013.7,61.13,439.75 +34.53,73.03,1013.53,36.74,437.03 +10.16,40.8,1028.13,86.39,477.49 +27.28,44.89,1009.02,49.9,441.94 +22.75,58.86,1016.0,67.34,448.32 +25.01,59.54,1007.91,80.93,441.3 +23.64,63.31,1014.5,61.83,440.7 +8.85,41.06,1020.99,86.05,486.4 +19.65,63.91,1009.26,99.08,444.9 +18.22,44.34,1019.35,56.78,469.27 +9.68,40.77,1022.04,85.23,473.73 +17.49,40.55,1001.73,73.15,462.37 +21.79,61.45,1011.11,91.78,446.99 +21.06,62.91,1011.92,75.52,455.22 +23.72,58.62,1016.32,71.17,447.13 +30.93,73.42,1010.98,56.42,432.44 +5.98,38.91,1016.5,91.83,488.85 +13.45,41.16,1022.04,82.96,460.57 +12.23,43.69,1016.46,84.4,471.62 +8.13,39.96,1026.07,95.84,477.12 +29.0,77.54,1011.33,75.13,431.37 +11.61,52.75,1020.94,77.56,464.68 +19.4,49.69,1012.89,75.53,455.6 +5.0,40.64,1021.05,94.84,485.27 +23.46,57.85,1012.7,65.54,444.66 +18.51,48.06,1015.14,79.83,455.44 +29.29,70.36,1006.64,60.82,431.26 +27.55,64.96,999.73,57.34,431.33 +21.82,63.9,1014.48,92.53,447.29 +17.03,47.83,1004.94,79.68,460.43 +17.18,46.0,1002.74,100.1,454.02 +18.14,49.78,1002.95,100.09,451.44 +12.39,49.83,1007.6,92.43,468.43 +20.39,64.15,1021.31,62.35,457.37 +22.72,64.15,1021.14,60.34,453.13 +20.3,58.41,1014.05,86.38,451.74 +21.46,58.18,1007.45,95.33,444.12 +28.99,68.24,1008.75,66.57,428.28 +12.07,40.81,1025.63,68.02,475.96 +15.4,40.69,1015.1,70.25,471.66 +9.59,37.14,1013.8,72.84999999999998,474.74 +7.64,40.02,1031.58,71.19,479.43 +15.42,37.85,1009.89,85.8,467.33 +11.75,42.32,1015.28,77.25,470.44 +19.51,48.78,1021.03,86.33,453.27 +31.86,73.88,1005.6,57.68,435.91 +12.4,40.35,1011.46,79.48999999999998,476.44 +28.11,69.84,1004.68,67.08,427.33 +8.74,40.03,1016.81,93.37,481.07 +24.32,58.79,1016.8,65.61,442.78 +13.72,44.47,1027.2,68.89,470.66 +6.11,38.68,1017.53,79.23,482.97 +16.74,39.16,1005.68,71.17,460.47 +8.52,41.55,1002.09,86.81,483.63 +20.55,68.63,1012.5,67.07,453.47 +22.63,58.49,1010.94,72.7,448.38 +18.13,60.1,1009.67,84.75,455.82 +12.51,43.67,1013.24,91.55,471.96 +21.02,61.5,1008.52,77.73999999999998,448.08 +6.99,40.07,1014.83,54.36,490.11 +16.37,36.99,1006.37,90.11,463.76 +15.68,39.16,1006.09,75.62,461.98 +22.17,60.27,1018.21,89.55,443.31 +26.7,49.02,1007.68,67.97,438.92 +19.55,39.39,1013.55,57.82,464.36 +27.74,74.78,1010.05,60.82,436.87 +18.09,43.72,1008.64,74.15,453.02 +11.49,35.76,1019.08,60.04,472.45 +23.67,63.86,1019.67,57.95,441.73 +32.02,67.83,1007.77,53.31,426.55 +20.38,62.52,1017.85,75.56,456.56 +5.02,45.87,1007.8,99.22,481.03 +26.24,51.43,1011.32,59.52,447.91 +14.47,41.76,1021.98,78.41,464.0 +24.16,60.29,1018.09,63.49,446.17 +10.07,40.92,1021.84,84.18,471.71 +10.73,44.92,1025.1,85.4,476.81 +16.81,42.86,1013.83,77.11,464.36 +27.52,74.67,1015.77,72.01,433.56 +13.96,40.83,1009.89,84.86,469.86 +22.78,49.16,1002.29,64.28,444.99 +22.77,70.32,1012.04,82.43,440.67 +8.64,41.66,1014.14,80.44,481.89 +27.33,66.17,1011.06,64.55,443.89 +19.07,49.69,1007.22,76.79,453.09 +24.1,68.61,1010.97,74.87,443.75 +14.6,42.32,1015.71,77.03,464.67 +14.77,44.47,1028.38,71.18,464.25 +9.14,38.91,1018.62,89.88,476.57 +14.85,45.87,1009.37,84.65,462.67 +8.47,41.03,1021.72,70.16,485.1 +23.79,59.44,1012.53,79.48,448.67 +26.63,64.44,1012.66,61.19,442.0 +12.88,44.34,1016.03,88.51,474.94 +12.73,44.34,1015.11,93.55,472.94 +17.2,40.55,1000.68,72.67,462.55 +10.05,41.17,1018.98,83.71,481.38 +28.37,75.59999999999998,1017.48,55.19,439.25 +25.61,60.32,1015.77,56.48,443.96 +20.34,46.63,1013.16,79.08,453.62 +20.21,58.12,1015.36,79.18,453.19 +21.19,58.86,1014.19,68.96,452.43 +29.71,73.18,1012.35,63.06,427.04 +15.24,37.87,1020.52,84.49,463.09 +17.35,42.86,1014.62,74.16,465.16 +13.5,45.51,1015.33,86.95,469.08 +25.94,77.23999999999998,1007.97,84.82,432.88 +5.51,35.57,1026.3,78.97,489.36 +26.16,52.36,1013.62,58.52,453.08 +15.17,49.15,1021.91,91.73,461.89 +14.57,42.18,1015.13,74.89,465.75 +12.16,45.0,1021.51,50.52,482.99 +25.1,60.37,1005.83,72.53,438.44 +13.57,39.39,1014.01,82.12,471.44 +20.25,55.5,1020.03,69.33,455.13 +11.23,39.72,1018.46,60.62,475.04 +12.52,42.34,1018.67,95.29,464.71 +8.68,39.61,1021.54,77.98,486.31 +8.18,40.02,1031.45,73.66,478.81 +21.93,60.84,1017.8,82.61,443.89 +30.69,71.98,1004.53,65.86,430.33 +12.08,41.39,1019.45,78.3,477.8 +9.08,42.49,1010.67,85.35,481.46 +20.33,57.76,1016.47,75.34999999999998,450.25 +31.03,69.98,1011.33,52.16,436.13 +6.03,41.14,1028.04,87.46,479.61 +14.02,42.86,1030.86,68.36,467.29 +20.51,45.38,1014.29,69.14,461.87 +28.17,63.13,1012.44,66.61,439.94 +18.83,63.91,1010.8,96.18,448.15 +25.52,63.94,1017.81,41.54,440.32 +22.61,49.3,1003.51,83.02,441.76 +28.61,68.12,1011.71,47.57,432.94 +18.43,56.03,1020.41,60.55,465.17 +13.41,54.3,1016.48,79.28,467.88 +11.11,40.55,1023.91,87.12,476.37 +33.97,72.29,1008.98,44.32,432.33 +18.41,62.1,1020.4,78.09999999999998,457.14 +22.4,58.12,1015.24,78.03,449.13 +25.1,61.47,1007.84,75.75,447.27 +28.73,68.3,1016.53,55.73,434.15 +11.47,43.67,1012.68,72.51,475.72 +11.19,40.64,1020.57,84.49,472.86 +10.38,43.02,1013.37,78.53,474.44 +30.09,69.48,1009.51,53.24,435.2 +26.72,65.61,1014.41,52.01,442.48 +19.14,56.65,1020.84,82.97,458.06 +21.25,44.05,1005.69,81.87,448.43 +15.55,45.09,1014.33,62.19,457.36 +12.28,42.34,1019.19,95.8,467.03 +31.93,72.58,1006.9,56.27,425.14 +24.9,71.77,1006.24,85.25,427.77 +23.71,67.17,1007.27,90.2,440.65 +31.05,62.7,1009.35,55.27,441.67 +10.08,40.72,1022.7,67.3,480.8 +22.31,61.45,1009.25,98.56,437.05 +24.01,42.48,1011.39,55.1,453.12 +21.75,49.82,1015.01,78.33,455.28 +29.3,73.67,1005.64,65.31,431.07 +12.27,41.17,1019.39,52.18,473.84 +16.51,41.79,1007.1,74.03,457.74 +26.26,63.73,1010.45,70.61,442.18 +31.33,73.03,1014.18,49.28,438.49 +21.81,65.06,1014.6,66.41,447.13 +14.93,39.39,1014.31,80.68,468.88 +33.87,71.32,1007.91,39.48,435.89 +28.09,63.31,1013.01,52.6,438.6 +18.06,56.65,1020.2,81.59,459.14 +20.36,56.53,1020.25,72.95999999999998,455.34 +29.58,76.2,1008.37,60.73,433.91 +9.62,41.01,1019.43,97.99,467.34 +25.08,58.49,1011.1,64.47,446.9 +24.33,60.32,1015.49,59.95,445.36 +30.93,70.83,1010.61,46.13,440.59 +22.04,58.05,1013.11,85.22,447.28 +5.74,45.87,1011.44,95.94,482.0 +24.17,71.25,1003.9,90.36,435.66 +5.95,39.48,1005.16,63.6,486.07 +27.51,63.73,1009.97,66.14,440.81 +28.62,70.32,1008.87,46.67,431.03 +20.48,60.29,1017.16,72.09999999999998,455.51 +27.03,71.14,1010.33,66.25,430.41 +28.31,70.32,1007.88,47.0,432.5 +16.6,41.93,1022.01,48.98,467.51 +14.67,71.14,1019.84,77.72,458.8 +5.68,40.35,1012.11,92.86,486.79 +29.66,59.22,1013.25,61.2,441.58 +6.99,39.37,1020.19,75.06,487.18 +25.61,74.22,1010.26,75.15,438.45 +11.31,39.61,1018.74,68.9,471.92 +29.04,76.09,1007.52,75.44,430.32 +16.5,53.29,1017.7,95.66,458.37 +22.26,60.77,1018.26,85.94,442.58 +25.95,59.92,1010.05,76.05,443.93 +28.09,70.02,1010.84,51.29,437.83 +8.36,40.67,1014.99,73.65,489.1 +24.88,49.16,1006.04,64.54,445.18 +14.34,42.86,1031.75,66.81,466.17 +18.16,39.99,1008.13,68.5,461.16 +20.57,44.9,1008.39,62.69,456.18 +16.85,39.64,1008.82,80.81,464.2 +24.56,63.21,1013.79,82.38,444.34 +9.54,41.17,1019.79,65.61,481.18 +21.43,60.95,1015.27,75.48999999999998,449.12 +24.15,71.73,1009.76,85.16,436.55 +21.87,74.87,1009.28,85.4,442.37 +15.3,41.76,1022.57,71.56,466.59 +19.45,41.1,1001.88,52.16,458.26 +27.99,71.64,1007.79,72.67,437.81 +21.03,69.05,1002.17,75.34999999999998,444.35 +31.84,77.95,1014.9,55.35,433.28 +29.83,71.43,1011.93,55.8,439.34 +10.08,37.92,1010.47,66.37,474.63 +18.36,51.43,1010.57,90.17,459.8 +16.4,38.01,1022.2,73.05,463.79 +13.03,42.86,1014.39,86.25,475.03 +18.88,62.96,1020.62,82.01,456.18 +11.87,41.78,1012.97,64.79,470.84 +23.16,57.76,1017.74,63.79,451.79 +15.39,42.28,1007.35,81.34999999999998,467.3 +16.84,56.03,1020.25,70.37,437.14 +14.65,44.84,1023.39,87.76,467.18 +18.97,44.85,1014.86,46.31,466.17 +26.22,69.89,1015.46,76.63,433.61 +7.07,37.49,1010.35,87.19,481.58 +17.4,44.9,1020.5,77.11,457.75 +30.05,73.68,1014.95,70.6,434.92 +14.01,45.08,1023.28,82.49,464.79 +23.24,63.78,1017.1,63.8,446.95 +23.03,65.12,1016.29,69.8,447.84 +8.58,40.72,1022.04,87.55,480.96 +24.92,48.92,1010.11,36.53,445.56 +25.8,65.38,1009.3,52.28,450.5 +26.31,48.6,1002.64,60.04,440.06 +29.13,62.26,1010.51,52.94,436.37 +11.02,41.17,1018.18,86.86,477.62 +13.61,39.85,1012.78,58.12,475.62 +23.32,69.13,1010.75,91.84,435.27 +30.45,43.21,1011.35,63.59,438.68 +31.7,70.36,1006.26,58.18,438.38 +23.62,73.67,1007.0,90.8,438.33 +12.45,43.67,1013.61,91.34,474.27 +28.85,68.12,1012.05,46.31,436.15 +18.4,43.69,1016.59,52.44,462.05 +28.97,78.92,1011.71,88.5,430.98 +4.93,35.19,1018.04,92.94,486.39 +13.75,44.47,1029.63,70.74,467.14 +16.64,44.9,1021.02,70.34,460.93 +19.04,68.28,1004.52,86.16,444.54 +15.89,43.96,1014.02,75.23999999999998,467.35 +29.03,67.79,1010.67,55.42,444.09 +14.97,58.2,1019.52,81.13,458.68 +16.23,43.52,1020.13,76.3,464.74 +14.74,44.47,1028.29,67.87,462.92 +9.75,52.72,1026.03,78.53,473.41 +27.18,59.27,1012.57,64.18,439.69 +16.22,50.88,1014.33,100.09,454.94 +6.62,42.49,1008.74,94.57,482.74 +9.33,44.03,1011.73,86.04,474.15 +23.14,62.26,1011.87,66.44,444.38 +14.52,40.35,1011.11,69.84,470.8 +33.71,69.98,1013.09,42.62,431.99 +14.84,42.03,1017.47,79.27,466.2 +13.48,41.92,1030.2,65.96,463.9 +31.4,71.06,1008.44,74.77,433.34 +27.44,66.56,1005.51,69.28,428.0 +22.68,70.47,1010.86,82.8,441.47 +9.03,40.71,1025.98,81.94,484.97 +14.36,41.26,1021.16,73.43,462.25 +10.06,43.22,1014.1,85.7,473.0 +22.76,49.02,1007.5,88.56,442.84 +24.79,75.59999999999998,1017.07,68.23,440.05 +34.97,73.56,1006.57,44.69,435.15 +27.64,75.59999999999998,1017.35,54.78,441.04 +18.37,51.86,1018.8,74.3,461.14 +7.91,39.96,1023.57,88.44,475.52 +21.8,65.94,1012.02,63.52,448.66 +29.42,71.32,1002.26,67.13,437.47 +19.01,58.46,1017.14,90.99,446.18 +24.01,67.17,1007.44,86.87,443.09 +11.69,39.22,1017.05,55.51,472.76 +22.01,58.46,1016.26,75.98999999999998,443.75 +13.74,42.74,1029.54,70.0,465.92 +12.27,43.8,1023.21,57.0,468.55 +12.88,43.8,1023.19,59.18,468.19 +32.06,71.85,1007.9,56.44,426.07 +23.46,59.27,1010.6,79.79,445.57 +24.41,52.3,1006.28,70.33,442.62 +13.22,44.92,1023.84,87.99,471.43 +13.69,40.83,1008.53,84.81,471.26 +10.31,45.01,1018.42,93.67,473.74 +21.41,54.2,1011.37,82.28,448.11 +24.49,65.46,1015.77,44.95,445.27 +25.72,49.82,1016.19,60.1,452.33 +18.73,46.48,1007.19,79.23,450.74 +22.88,59.21,1011.51,86.93,440.25 +26.59,60.96,1011.9,52.41,439.77 +30.38,71.58,1010.17,50.45,433.75 +18.94,47.83,1005.18,78.59,455.19 +25.17,64.79,1017.87,63.26,442.15 +20.55,48.98,1016.1,63.89,452.52 +10.03,42.18,1017.3,85.99,475.74 +25.03,60.27,1017.9,72.04,438.24 +7.82,41.16,1023.3,87.7,475.66 +33.43,69.88,1006.86,44.84,435.59 +11.33,41.5,1013.58,88.7,475.01 +12.34,40.62,1016.28,53.6,466.47 +4.78,42.85,1013.07,94.72,479.09 +14.03,49.15,1020.5,83.65,467.16 +26.11,47.43,1009.01,56.09,445.36 +24.67,70.94,1007.99,75.64,443.51 +14.28,44.84,1024.84,79.09,474.57 +26.74,59.87,1012.5,62.88,447.88 +29.83,62.66,1007.98,47.07,438.71 +17.51,44.9,1009.05,74.91,455.01 +30.05,69.34,1008.26,61.5,436.82 +15.85,49.69,1015.48,88.65,464.72 +32.5,71.37,1003.75,43.8,433.7 +30.56,69.04,1009.29,55.73,442.24 +23.32,69.23,1011.75,75.59,436.18 +18.0,52.08,1003.07,100.09,450.85 +25.45,70.04,1011.2,82.48,430.2 +17.37,40.55,1001.19,71.42,460.97 +16.43,41.79,1005.47,76.89,455.85 +19.15,44.89,1009.6,74.52,451.09 +16.0,39.16,1016.37,77.63,468.49 +10.87,44.71,1021.38,58.22,484.63 +21.98,55.97,1009.12,89.51,442.65 +21.92,61.87,1009.68,58.83,445.52 +14.62,42.86,1015.56,84.5,470.79 +20.9,67.07,1005.43,82.85,443.46 +23.45,69.04,1010.5,80.77,442.48 +7.31,43.02,1014.19,86.43,484.82 +22.21,61.87,1010.9,54.22,446.62 +20.83,49.02,1009.45,91.92,445.31 +14.71,44.0,1024.98,85.08,462.87 +19.92,63.31,1015.02,82.71,443.54 +31.85,73.20999999999998,1000.98,72.2,435.94 +24.1,71.97,1009.92,91.27,443.09 +12.42,38.25,1012.76,82.23,472.3 +28.79,70.79,1003.83,65.9,425.64 +17.05,44.88,1017.69,88.19,459.63 +31.59,62.7,1009.3,50.16,442.58 +14.93,41.79,1008.88,81.48,456.75 +24.44,69.13,1011.1,87.62,434.34 +26.05,65.59,1012.78,67.03,437.04 +26.48,51.43,1006.76,74.3,438.1 +17.19,37.2,1011.84,67.59,468.4 +6.25,39.04,1019.65,71.27,484.14 +31.12,67.69,1005.3,50.46,425.21 +11.16,40.05,1014.95,88.38,479.11 +31.16,69.88,1007.01,68.28,433.24 +19.27,43.14,1013.17,39.85,463.14 +17.79,43.52,1020.65,68.29,458.57 +22.76,58.96,1013.85,55.95,454.05 +5.66,39.42,1024.7,78.52,482.11 +21.75,67.45,1014.89,67.09,445.1 +24.66,58.86,1013.86,56.39,444.42 +18.16,39.99,1007.73,70.54,463.69 +25.26,61.08,1013.68,71.72,447.46 +23.6,48.98,1015.41,48.28,448.43 +22.89,65.34,1015.53,61.0,450.53 +28.82,71.43,1011.51,58.58,443.68 +21.57,69.23,1011.94,81.73,437.55 +11.03,42.32,1017.26,90.56,470.92 +15.75,39.16,1016.31,77.98999999999998,468.87 +13.67,44.92,1023.6,85.35,467.71 +11.58,39.69,1005.17,86.55,469.6 +32.31,62.04,1010.41,39.39,450.13 +23.67,72.23999999999998,1011.22,90.45,435.94 +11.29,35.76,1019.32,58.91,473.74 +13.58,49.83,1008.9,86.8,465.82 +10.54,41.93,1016.64,93.52,479.65 +24.96,74.98999999999998,1008.25,80.52,440.91 +24.53,74.78,1009.9,78.34,446.3 +12.12,41.17,1017.68,78.72,470.67 +22.99,56.57,1013.93,78.77,445.44 +31.15,67.45,1014.85,42.11,431.97 +20.2,64.45,1009.03,61.77,452.33 +10.9,41.46,1016.66,86.2,479.45 +27.04,48.41,1008.57,60.73,441.21 +29.72,74.78,1009.32,55.25,438.19 +29.86,69.34,1007.76,54.12,433.57 +28.18,73.88,1005.89,75.41,434.48 +27.0,69.4,1004.86,82.2,433.83 +33.63,70.4,1004.02,53.6,430.05 +10.44,37.83,1006.31,97.2,474.42 +13.39,49.83,1007.14,90.88,466.04 +9.0,43.13,1020.25,81.31999999999998,481.09 +18.94,48.7,1008.5,94.83,451.38 +26.14,71.98,1005.98,82.45,428.91 +5.11,42.07,1004.28,81.8,486.41 +26.62,65.12,1016.0,43.24,441.22 +25.69,62.26,1011.38,74.08,436.36 +8.13,39.99,1011.71,87.89,486.19 +9.97,41.62,1013.99,96.02,464.86 +6.58,43.02,1014.03,84.95,488.22 +13.9,42.86,1030.82,71.89,473.76 +12.33,39.28,1011.84,80.01,476.49 +7.26,36.08,1021.47,83.15,483.58 +12.29,40.03,1017.62,89.64,472.65 +33.82,77.17,1008.96,58.91,435.58 +9.27,40.22,1008.1,89.24,481.23 +23.44,62.52,1016.46,67.21,447.19 +31.63,69.59,1008.66,61.81,436.89 +27.28,51.43,1011.46,51.38,450.53 +21.45,45.09,1013.83,52.26,453.15 +25.14,69.13,1011.15,85.67,433.95 +20.12,45.09,1013.73,57.78,448.35 +16.36,53.82,1015.05,71.95,461.62 +19.77,65.06,1016.22,74.95,448.26 +31.92,75.33,1001.81,61.97,436.38 +26.52,43.77,1011.49,46.98,440.31 +11.52,40.03,1017.56,87.87,472.31 +29.91,74.33,1013.22,39.76,430.26 +15.01,39.52,1017.53,72.0,468.02 +28.39,65.51,1014.52,66.48,438.78 +25.3,71.29,1007.86,62.98,437.17 +16.63,53.82,1015.18,66.09,458.29 +10.41,44.68,1023.53,91.38,474.7 +26.86,68.08,1012.99,50.04,436.25 +10.48,36.71,1023.18,81.37,473.3 +10.58,42.34,1022.32,94.01,474.91 +6.94,38.91,1018.94,90.64,485.12 +20.64,49.21,1014.86,58.47,454.2 +25.69,73.18,1012.64,86.35,432.82 +22.48,71.29,1008.15,75.41,444.71 +6.63,39.37,1020.33,76.18,489.16 +33.4,69.98,1013.29,47.78,432.44 +15.11,42.99,1007.53,85.75,466.25 +8.99,36.66,1028.11,71.98,481.03 +9.6,41.82,1032.93,72.63,475.01 +9.42,41.4,1029.21,86.4,474.75 +23.62,68.63,1013.18,50.57,447.3 +28.19,71.97,1008.85,84.67,438.8 +26.39,49.16,1005.68,56.18,442.87 +24.93,47.01,1014.28,66.04,455.06 +21.28,70.72,1010.29,86.22,445.54 +8.73,41.92,1029.41,89.72,480.99 +6.99,35.19,1019.32,68.95,480.05 +30.7,71.58,1010.0,48.96,429.27 +15.82,44.2,1018.96,66.73,460.2 +23.19,49.82,1014.59,70.52,451.08 +10.27,42.34,1022.69,92.78,474.55 +14.04,39.64,1011.09,87.22,472.31 +20.42,62.96,1020.34,84.0,452.08 +17.31,58.49,1011.8,92.77,456.84 +13.51,43.41,1015.94,75.22,463.86 +7.39,39.81,1019.45,85.02,482.99 +26.71,76.86,1002.86,74.5,437.31 +31.74,79.73999999999998,1007.07,61.47,431.72 +21.46,50.59,1016.75,67.14,453.67 +12.75,44.03,1007.29,89.46,465.86 +14.43,44.84,1024.34,84.0,467.45 +23.93,68.28,1005.16,69.91,444.95 +10.62,42.02,999.83,96.66,472.41 +14.74,43.71,1024.35,81.53,465.49 +7.87,41.17,1020.33,77.77,486.2 +22.16,65.48,1017.22,70.51,446.0 +7.94,43.65,1018.75,59.45,479.8 +26.56,65.59,1012.6,64.25,443.66 +31.03,69.59,1007.77,63.96,432.56 +29.09,70.98,1007.86,80.34999999999998,439.34 +7.31,42.18,1014.75,86.75,477.38 +10.03,41.62,1014.55,95.61,462.73 +10.28,39.64,1010.45,74.15,477.65 +29.86,64.79,1017.37,44.8,439.89 +29.24,60.23,1009.62,59.71,438.24 +17.34,47.03,1013.36,98.13,463.89 +13.56,42.34,1017.95,93.83,462.6 +10.62,39.96,1025.37,96.64,470.8 +27.37,69.23,1013.25,48.02,433.18 +13.61,42.34,1017.57,91.35,465.65 +12.81,44.58,1016.49,80.76,475.5 +21.83,62.91,1011.07,91.34,443.76 +22.97,62.4,1010.25,75.18,445.3 +24.33,46.93,1013.72,48.27,447.43 +23.49,64.63,1020.75,65.16,450.28 +17.13,42.86,1014.15,73.59999999999998,463.09 +14.86,44.71,1018.3,49.46,466.38 +24.15,64.63,1020.72,58.06,448.87 +7.71,36.25,1027.92,89.84,481.74 +24.82,71.94,1010.5,64.67,438.69 +11.65,41.54,1020.09,67.96,476.4 +10.25,41.46,1020.65,87.07,481.94 +5.78,40.62,1016.55,84.98,484.13 +9.35,44.03,1011.02,88.11,476.25 +10.76,40.43,1025.98,79.65,490.78 +25.76,57.32,1011.93,43.61,440.26 +14.57,37.86,1022.44,68.82,463.58 +13.6,39.82,1013.34,86.1,470.69 +29.36,78.05,1011.12,64.17,434.29 +23.12,69.71,1008.98,84.41,442.21 +23.39,63.94,1010.54,89.94,441.44 +25.45,67.83,1009.47,57.97,429.95 +27.65,48.41,1008.54,58.25,440.94 +30.24,73.9,1006.74,56.39,441.31 +13.78,40.0,1018.38,68.67,458.74 +24.66,69.94,1006.56,60.91,432.68 +17.1,48.98,1016.48,85.63,454.43 +27.37,65.06,1013.09,50.92,440.5 +20.11,51.19,1007.82,92.06,449.03 +12.24,41.62,1013.38,90.26,461.23 +28.5,79.73999999999998,1006.75,87.09,433.08 +14.64,42.77,1017.59,79.59999999999998,464.27 +18.06,65.48,1018.79,77.95,454.34 +14.79,38.73,999.83,86.45,470.28 +35.2,73.56,1006.56,45.72,434.37 +22.93,51.19,1009.3,82.8,443.57 +25.73,66.54,1010.07,55.97,437.07 +18.77,50.66,1014.89,87.34,457.07 +11.52,40.8,1024.31,73.48999999999998,479.56 +8.84,42.49,1010.28,89.09,481.58 +21.24,60.84,1017.99,82.22,445.71 +15.67,45.17,1018.73,94.74,462.09 +22.99,46.21,1010.71,60.11,444.36 +23.93,64.05,1013.09,86.02,440.66 +34.33,69.05,1000.89,37.9,430.56 +29.85,68.24,1007.01,30.99,433.43 +30.1,67.45,1014.23,39.04,434.01 +6.85,37.49,1011.01,84.53,483.12 +26.53,54.2,1012.9,66.73,439.96 +24.2,59.07,1009.25,88.25,441.93 +24.6,75.23,1012.04,76.77,434.07 +30.1,66.25,1009.38,65.41,434.99 +21.6,59.8,1016.9,76.59,450.14 +24.9,58.49,1011.06,65.14,444.19 +26.9,60.93,1007.1,67.32,435.87 +23.07,57.17,1009.84,76.8,444.08 +24.85,70.47,1006.64,85.37,434.47 +30.3,73.9,1006.72,55.13,440.79 +32.18,69.75,1009.94,52.91,438.26 +29.11,74.78,1009.6,56.93,438.75 +21.37,65.94,1010.73,75.09,444.74 +26.53,69.71,1009.88,76.26,446.17 +8.9,40.77,1011.67,90.26,479.18 +22.45,63.77,1014.57,87.44,444.26 +28.9,71.25,1000.73,77.23999999999998,431.52 +18.55,46.48,1007.34,80.67,452.37 +20.92,63.86,1020.49,72.98,449.09 +14.38,45.09,1012.95,86.1,464.27 +8.9,41.4,1030.83,85.63,472.95 +11.1,44.85,1014.27,65.08,477.03 +20.85,59.21,1012.9,75.97,444.44 +26.27,71.98,1005.72,86.15,427.65 +15.61,40.89,1010.48,80.26,467.3 +3.26,41.31,996.32,100.0,489.38 +27.05,77.95,1009.57,76.56,434.09 +19.54,50.66,1014.7,84.53,456.61 +6.42,35.57,1025.58,79.63,485.86 +26.19,65.61,1014.51,54.52,443.73 +9.84,40.22,1009.5,85.38,479.65 +10.86,44.85,1014.15,88.36,476.87 +33.33,73.03,1014.2,42.28,436.05 +9.25,41.82,1033.25,74.73,478.48 +14.7,44.9,1021.87,83.9,468.69 +30.17,75.08,1005.17,55.89,438.89 +11.74,43.56,1015.14,70.72,477.5 +23.27,60.84,1019.13,67.24,440.22 +25.21,59.21,1013.19,62.85,438.7 +15.18,44.2,1019.6,72.45,462.09 +29.03,43.21,1011.83,65.23,434.11 +24.18,58.49,1011.3,77.81999999999998,445.49 +7.62,44.71,1020.56,69.96,486.07 +29.53,71.97,1008.6,79.25,434.96 +24.27,74.93,1012.73,73.81,443.06 +28.4,74.93,1013.65,48.6,442.23 +22.2,57.17,1009.82,78.43,447.75 +17.58,44.9,1020.52,71.48,459.78 +6.71,40.72,1022.78,80.69,483.11 +28.32,72.58,1007.77,78.34999999999998,428.06 +8.11,42.18,1014.82,93.09,473.62 +34.76,68.94,1006.75,41.31,427.42 +28.82,64.79,1016.74,56.34,445.1 +25.43,60.95,1014.62,51.39,444.65 +24.78,57.19,1008.08,65.4,443.62 +6.94,39.61,1017.74,81.43,480.07 +27.5,68.24,1010.38,73.44,430.9 +21.43,63.94,1012.68,99.68,445.29 +26.84,70.36,1007.41,71.47,442.17 +25.69,64.45,1013.05,42.0,450.94 +27.92,74.98999999999998,1005.47,75.13,431.76 +23.69,58.05,1012.08,74.26,444.46 +22.89,62.39,1007.84,88.16,448.13 +15.43,38.58,1016.58,81.17,463.44 +21.84,58.86,1014.13,69.67,445.16 +16.8,56.03,1020.65,85.26,461.96 +18.34,50.59,1018.42,83.95,457.17 +21.1,49.16,1006.76,86.08,442.78 +8.49,39.61,1021.05,87.74,483.94 +11.95,42.03,1017.58,90.89,465.2 +5.05,35.57,1027.03,80.02,491.4 +4.71,42.07,1005.35,82.26,486.79 +13.65,42.74,1026.58,71.48,468.87 +25.14,67.32,1013.96,41.78,435.39 +8.88,39.66,1015.21,88.29,481.45 +11.3,43.14,1019.56,99.83,469.73 +30.61,67.69,1004.97,47.46,429.8 +15.69,39.3,1019.03,60.57,464.17 +20.58,50.78,1008.87,91.18,445.03 +24.66,66.49,1010.83,70.06,438.01 +21.93,62.91,1013.45,74.62,449.17 +25.2,61.08,1013.04,74.28,447.09 +11.75,35.76,1018.99,57.92,473.01 +28.16,70.72,1009.81,65.32,441.37 +34.96,68.94,1006.17,59.26,431.48 +16.63,43.77,1012.25,75.09,458.66 +12.1,44.77,1019.1,75.84999999999998,463.11 +14.48,39.0,1016.75,75.97,464.56 +30.96,71.77,1006.26,52.76,425.66 +26.89,49.16,1003.84,41.22,442.39 +32.09,69.4,1003.1,56.91,430.62 +9.95,41.82,1033.09,69.44,477.52 +16.71,40.55,1004.45,81.64,464.13 +17.34,46.48,1007.18,83.15,452.06 +26.2,71.14,1007.92,72.95,431.7 +14.51,42.77,1017.47,81.95,463.37 +19.81,43.56,1013.39,38.13,460.59 +13.85,41.39,1018.62,75.55,471.45 +11.06,41.5,1013.09,89.8,476.24 +14.45,43.34,1015.47,83.33,462.16 +3.99,39.64,1011.53,83.58,492.06 +24.74,59.39,1015.23,74.64,437.49 +11.48,41.2,1012.88,90.04,478.34 +19.09,43.14,1012.34,45.75,463.3 +22.26,60.37,1008.14,92.37,441.33 +14.17,39.59,1010.99,94.08,464.17 +24.67,58.05,1011.31,69.95,444.57 +26.87,74.98999999999998,1002.48,71.91,437.78 +22.32,48.41,1008.68,79.11,445.36 +14.94,42.77,1018.06,75.34999999999998,460.51 +19.32,44.71,1015.3,28.81,464.38 +17.58,39.63,1004.84,80.43,467.33 +24.19,47.45,1008.26,64.25,446.3 +32.0,73.17,1009.92,42.47,433.72 +12.64,41.79,1016.38,92.65,461.46 +21.86,63.09,1016.64,87.94,442.79 +23.07,69.23,1011.78,76.06,437.08 +15.98,41.48,1017.0,55.73,456.31 +11.48,41.14,1027.67,90.5,464.07 +26.07,69.23,1013.32,54.03,436.94 +13.74,44.21,1023.26,84.2,466.67 +29.23,75.59999999999998,1017.72,52.26,438.92 +9.44,43.99,1020.31,98.06,475.01 +29.51,75.59999999999998,1017.92,50.61,431.18 +13.12,44.21,1019.57,89.29,469.09 +26.23,59.14,1016.98,75.54,437.85 +14.55,42.74,1027.29,66.64,457.77 +20.3,58.46,1015.93,82.13,448.79 +12.57,39.18,1023.09,77.28,471.87 +9.34,41.49,1020.58,97.59,471.04 +7.93,42.28,1008.43,85.57,484.75 +19.6,48.14,1013.18,68.71,456.57 +21.35,57.76,1017.36,73.09999999999998,452.57 +10.59,38.38,1021.58,68.23,474.94 +27.54,75.59999999999998,1018.26,57.89,440.87 +11.12,44.92,1025.58,93.52,470.82 +18.82,61.27,1019.5,72.23,455.29 +25.11,62.26,1011.12,78.01,434.97 +21.89,58.05,1011.31,85.71,441.76 +12.87,48.04,1012.47,100.13,465.56 +25.54,60.37,1006.49,71.54,436.14 +7.05,40.69,1020.53,89.67,476.75 +9.11,36.66,1026.47,74.79,480.74 +24.77,71.94,1006.77,88.86,432.27 +8.51,40.81,1015.54,83.16,481.02 +17.1,62.1,1020.39,93.63,453.4 +7.11,39.9,1008.82,87.76,484.21 +20.01,56.65,1020.77,74.45999999999998,457.01 +25.27,63.91,1009.82,75.48,440.39 +29.72,54.2,1012.86,38.48,438.84 +27.42,65.74,1013.43,69.42,440.52 +28.44,77.54,1011.73,77.3,433.21 +25.89,48.41,1008.49,68.58,440.92 +31.39,69.59,1008.28,62.86,435.76 +17.1,49.69,1005.53,81.81999999999998,457.32 +15.24,44.45,1020.56,66.13,460.94 +13.9,39.59,1011.84,94.74,465.0 +30.52,70.4,1003.9,64.33,438.29 +21.78,68.28,1001.0,79.3,443.24 +28.07,68.08,1013.13,44.67,437.65 +26.07,71.37,1008.6,79.48,439.25 +18.0,43.7,1015.4,61.28,464.26 +9.93,40.67,1018.08,69.74,485.23 +23.48,65.12,1015.82,60.83,445.66 +12.66,41.2,1015.88,89.12,466.49 +25.95,59.27,1010.9,70.42,444.19 +10.34,41.46,1017.75,89.73,478.03 +18.2,39.63,1005.35,79.05,468.49 +23.64,70.04,1011.09,83.35,435.21 +17.38,43.14,1011.09,61.9,459.02 +27.67,69.59,1009.13,82.15,437.29 +22.18,59.39,1014.82,85.31,440.94 +14.86,37.85,1010.58,86.8,467.71 +25.9,47.45,1007.8,55.96,443.13 +25.88,66.48,1004.24,63.16,434.4 +21.12,47.24,1003.79,70.55,462.41 +20.03,62.26,1012.15,82.54,447.4 +21.86,49.21,1014.61,53.31,452.77 +11.71,40.05,1014.49,86.09,471.49 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/train.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8e4f06f47506230c9250aba198646e237e7e5c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/ctgan/ctgan-n20-20260422_031259/staged/public/val.csv @@ -0,0 +1,957 @@ +AT,V,AP,RH,PE +25.69,57.32,1012.34,44.18,441.43 +17.98,59.15,1012.09,83.03,451.97 +11.52,40.75,1016.23,85.18,477.19 +26.43,66.48,1004.36,55.9,435.59 +24.26,69.51,1013.43,53.23,442.56 +19.68,62.96,1020.41,82.26,453.58 +10.28,41.46,1018.44,85.23,479.66 +25.15,62.91,1012.23,48.22,444.19 +23.28,72.23999999999998,1011.3,90.5,434.21 +11.6,40.27,1008.55,72.12,473.89 +22.75,58.79,1011.44,84.47,445.67 +6.77,39.81,1017.01,87.68,488.27 +19.48,58.66,1013.32,73.16,454.4 +23.93,65.59,1011.09,87.26,444.9 +17.77,44.6,1016.97,54.25,460.13 +33.58,77.54,1010.19,53.49,433.75 +7.49,39.81,1019.03,87.29,483.59 +6.33,42.07,1004.25,77.09999999999998,484.57 +12.43,41.62,1011.87,80.56999999999998,460.61 +25.34,64.27,1013.38,66.02,443.94 +17.17,63.09,1020.54,95.98,446.75 +27.75,69.89,1015.41,73.01,430.33 +29.62,73.18,1012.21,61.6,427.22 +24.35,70.04,1010.92,73.88,438.4 +27.39,69.14,1008.82,78.34999999999998,435.22 +31.18,70.36,1006.38,56.74,438.46 +26.56,49.02,1007.65,70.78,438.82 +24.24,71.58,1010.15,91.14,437.75 +11.82,41.26,1020.74,91.14,466.95 +14.38,40.1,1015.51,81.23,467.28 +26.65,74.16,1008.27,94.54,431.47 +26.16,67.9,1005.81,61.02,444.06 +5.52,39.33,1009.74,95.25,492.39 +31.24,68.3,1015.89,42.84,435.2 +26.22,67.45,1013.7,44.04,440.17 +21.67,69.71,1010.46,96.83,440.16 +13.4,40.89,1010.67,91.66,472.36 +13.78,43.22,1011.31,69.7,463.71 +9.88,39.66,1017.81,76.05,480.05 +10.34,41.74,1020.07,79.17,480.84 +26.86,71.32,1007.38,81.14,430.44 +12.95,41.38,1021.97,53.83,474.46 +26.94,65.61,1014.31,49.73,443.9 +21.81,43.77,1011.97,64.72,453.13 +18.9,56.03,1020.77,71.83,457.66 +14.87,41.23,997.39,82.06,465.01 +20.46,59.21,1018.42,85.89,445.22 +24.3,69.94,1007.02,62.14,438.92 +24.58,71.94,1006.85,89.02,433.99 +9.88,40.0,1021.4,92.06,481.58 +29.85,71.58,1010.04,58.66,432.26 +27.5,65.59,1011.23,65.37,441.27 +6.14,40.62,1015.71,86.51,481.66 +20.76,51.19,1009.0,87.23,445.0 +25.55,58.95,1017.12,51.84,442.3 +10.24,41.17,1019.73,82.04,479.78 +14.45,43.71,1025.26,84.23,463.6 +30.76,59.57,1010.66,61.76,439.32 +5.72,40.81,1025.78,92.46,487.8 +30.24,68.24,1009.68,64.67,426.25 +34.61,73.03,1013.61,36.91,438.56 +24.14,62.66,1007.33,73.27,439.93 +26.76,70.98,1007.64,90.51,437.83 +18.47,62.1,1019.86,82.57,452.51 +29.51,75.59999999999998,1017.92,50.61,431.18 +29.05,71.85,1008.6,78.69,428.39 +21.89,45.38,1014.42,68.95,459.45 +24.67,63.56,1013.75,67.56,446.3 +30.67,71.29,1008.36,52.08,430.28 +25.21,49.82,1016.44,63.14,450.75 +9.76,41.01,1019.66,97.59,467.6 +18.31,62.1,1020.38,79.02,455.24 +33.11,77.54,1010.36,50.99,431.77 +26.18,69.14,1006.54,85.95,436.0 +8.72,40.02,1031.32,78.09,477.86 +17.06,58.96,1013.83,73.95,461.15 +8.01,40.62,1015.62,86.43,476.22 +14.35,35.71,1016.1,60.86,468.9 +29.74,70.32,1008.1,52.72,432.69 +23.0,49.5,1014.15,66.68,454.44 +17.09,42.42,1009.03,72.01,464.11 +14.0,40.8,1026.17,54.82,474.87 +25.02,60.29,1017.49,54.75,445.61 +13.86,41.58,1020.69,70.74,461.56 +27.58,78.05,1010.83,94.98,431.95 +26.41,60.93,1007.16,66.02,436.71 +11.02,41.44,1015.28,83.53,476.68 +25.48,58.95,1017.02,51.16,440.42 +15.47,48.98,1016.42,89.85,457.55 +21.48,47.43,1006.88,63.54,449.2 +18.86,51.43,1010.27,86.0,446.91 +20.94,44.58,1016.98,59.65,463.69 +15.02,41.48,1015.19,58.69,456.04 +28.71,70.32,1011.78,76.53,435.95 +14.28,42.77,1020.06,81.77,466.75 +26.24,77.95,1014.19,85.21,438.01 +24.31,63.86,1019.47,58.54,442.69 +8.51,40.78,1023.51,89.84,471.11 +16.07,65.46,1013.88,87.11,450.54 +8.14,39.96,1023.41,88.86,477.05 +18.43,44.63,1019.76,39.99,458.75 +34.2,68.14,1002.7,56.09,427.05 +17.66,62.1,1019.49,86.3,452.03 +23.77,51.43,1006.67,84.09,441.54 +16.59,39.54,1007.97,70.58,464.19 +15.01,43.56,1014.65,61.82,465.84 +29.09,70.02,1010.13,48.06,443.27 +20.1,59.87,1018.97,87.23,444.71 +9.0,39.18,1024.38,84.91,483.26 +16.85,50.9,1013.26,83.94,460.68 +28.44,69.4,1003.98,73.51,433.44 +9.51,40.81,1015.69,82.52,475.29 +25.99,49.82,1015.95,58.56,452.09 +6.86,41.17,1020.12,79.14,490.23 +8.57,39.69,1000.91,99.9,474.29 +23.3,48.78,1018.17,75.36,441.08 +32.95,67.9,1005.88,45.15,425.89 +24.41,73.67,1007.39,86.92,435.56 +17.51,39.54,1010.22,71.53,462.12 +31.68,73.68,1014.85,64.0,431.11 +9.0,41.54,1018.83,79.61,484.08 +18.4,43.96,1012.4,77.81,464.63 +13.72,49.83,1006.88,89.49,463.65 +7.16,38.56,1019.17,70.1,486.12 +14.33,43.41,1015.43,55.4,462.94 +13.53,42.86,1014.0,90.63,471.73 +13.11,41.58,1020.43,74.31999999999998,460.44 +23.98,50.32,1008.41,67.75,443.45 +31.08,59.57,1010.76,60.49,442.88 +33.62,77.17,1009.38,63.71,431.03 +11.93,38.78,1013.15,96.08,474.57 +21.97,68.12,1012.53,75.12,443.39 +23.83,49.21,1012.93,46.79,446.23 +4.96,45.87,1007.32,98.78,481.88 +31.3,70.79,1004.3,54.37,428.75 +17.75,49.25,1020.86,63.67,454.41 +29.89,71.29,1009.0,55.72,431.45 +12.11,41.17,1019.46,62.59,475.53 +23.85,74.22,1009.99,82.72,441.66 +12.16,40.81,1025.79,70.97,476.63 +23.71,60.23,1009.76,90.67,439.66 +22.49,58.71,1009.75,76.43,443.33 +18.9,57.5,1016.21,93.9,451.42 +27.86,63.07,1011.11,56.81,440.48 +26.04,71.14,1011.66,68.95,433.78 +19.51,44.05,1008.52,78.38,451.7 +10.92,40.92,1021.84,83.03,467.05 +8.51,42.32,1015.08,84.89,476.6 +19.68,68.28,1002.62,71.57,452.47 +27.75,70.4,1006.65,90.21,436.53 +21.59,66.54,1004.88,90.54,441.71 +13.93,42.86,1032.37,71.11,468.88 +16.55,41.66,1011.45,55.53,465.14 +25.53,71.85,1009.19,74.7,431.26 +20.67,57.5,1014.42,81.89,453.29 +25.21,69.48,1010.99,75.27,436.02 +9.29,39.04,1022.72,74.29,482.55 +33.92,77.95,1010.15,58.89,433.01 +25.63,71.58,1010.14,87.57,433.76 +27.21,66.49,1013.57,40.11,439.04 +10.42,41.26,1008.48,96.76,472.54 +25.02,59.44,1012.49,73.65,444.08 +24.2,59.43,1009.69,62.3,440.66 +15.82,44.88,1018.59,78.88,461.9 +11.46,38.91,1012.34,77.37,477.5 +13.17,36.71,1012.82,72.76,474.93 +23.47,65.61,1014.57,69.83,447.16 +10.77,41.46,1021.42,87.18,479.22 +28.47,69.23,1013.18,40.73,434.12 +30.03,70.02,1010.07,64.2,436.88 +13.89,35.71,1016.4,65.49,468.54 +13.26,41.78,1009.77,61.69,467.78 +12.31,37.73,1023.3,63.01,472.08 +19.61,45.01,1014.84,64.42,461.97 +18.58,44.6,1016.61,48.15,459.06 +23.18,51.43,1011.56,81.83,449.94 +28.33,68.14,1004.63,71.21,431.27 +14.82,40.0,1016.32,66.3,458.46 +21.42,56.89,1014.39,84.05,444.86 +26.62,76.2,1006.06,69.13,437.81 +28.17,72.43,1007.37,68.92,428.88 +20.86,63.73,1008.54,96.83,440.42 +25.45,63.76,1009.96,67.78,439.56 +29.15,73.42,1011.43,66.49,432.26 +32.33,67.83,1008.11,57.48,427.84 +13.45,45.87,1008.73,87.06,464.88 +29.91,76.86,998.59,72.41,432.6 +24.93,73.5,1011.28,83.09,437.35 +9.71,42.44,1014.29,94.03,481.03 +16.69,53.82,1015.39,63.62,458.96 +22.36,51.43,1007.47,87.33,442.53 +25.57,44.05,1005.79,65.14,443.84 +7.36,41.01,1025.49,96.48,477.37 +14.22,42.32,1015.54,77.23,465.0 +18.33,49.64,1025.36,62.57,468.14 +31.1,68.51,1012.99,54.3,428.68 +27.62,71.14,1011.6,52.8,434.72 +17.04,56.03,1020.38,68.69,462.48 +17.31,44.71,1017.43,35.4,463.05 +31.61,69.04,1008.11,47.96,439.19 +28.14,51.43,1012.16,52.67,445.33 +8.77,40.46,1019.68,77.84,475.0 +6.15,40.77,1022.42,88.57,482.49 +21.39,52.3,1009.2,79.77,446.87 +12.29,40.71,1019.71,83.09,469.75 +11.6,39.96,1011.65,80.79,473.22 +26.68,68.08,1011.41,67.33,433.04 +7.71,38.06,1021.0,83.47,482.78 +10.07,44.68,1023.44,90.95,477.52 +22.08,45.61,1014.02,75.70999999999998,456.71 +30.74,69.59,1008.69,68.04,437.81 +26.49,67.69,1004.61,78.13,430.62 +14.55,44.84,1023.83,87.6,465.14 +16.55,39.64,1009.07,77.8,465.29 +11.68,40.55,1006.48,96.16,474.8 +10.95,40.22,1010.04,78.95999999999998,477.23 +11.83,38.25,1013.36,85.33,473.31 +23.38,48.78,1019.03,78.69,446.18 +29.77,69.48,1009.8,52.6,432.69 +24.12,58.66,1011.55,58.96,450.69 +6.1,39.33,1010.4,95.34,491.37 +6.93,41.14,1027.18,84.67,479.06 +27.6,69.05,1003.87,42.01,436.08 +11.23,41.17,1019.36,56.85,475.85 +18.84,40.79,1005.18,92.46,459.96 +29.47,71.32,1008.07,67.0,437.14 +23.3,72.98999999999998,1008.54,92.11,437.62 +29.15,69.48,1008.68,55.78,430.54 +21.99,42.48,1011.77,74.04,456.65 +21.77,42.23,1013.03,67.44,462.51 +27.61,49.16,1005.01,35.63,441.18 +26.05,65.38,1009.43,52.1,449.82 +14.8,44.71,1014.67,41.71,470.77 +15.71,39.3,1019.2,62.28,462.84 +16.44,53.16,1014.82,75.29,458.49 +17.03,58.49,1011.91,92.16,460.48 +10.12,41.55,1005.78,62.34,475.46 +10.17,41.17,1018.58,87.72,478.04 +23.37,65.46,1016.25,48.64,447.07 +11.98,44.6,1018.59,86.71,470.02 +24.66,48.78,1018.39,71.79,449.11 +16.61,43.77,1012.25,77.23,457.66 +14.79,47.83,1007.27,92.04,463.22 +29.2,64.84,1009.94,55.37,441.9 +23.26,58.2,1016.72,57.98,446.87 +7.19,39.37,1019.67,70.77,480.4 +20.94,49.02,1008.91,87.32,448.18 +27.89,73.20999999999998,1001.32,85.88,431.59 +23.63,71.29,1008.01,70.07,442.65 +20.91,58.2,1018.1,62.8,446.19 +14.91,46.9,1019.59,98.1,461.73 +23.82,73.67,1007.26,88.16,438.42 +32.09,79.73999999999998,1006.92,61.5,432.85 +16.69,46.18,1011.0,97.85,458.57 +17.16,58.86,1016.4,86.39,453.76 +28.05,70.36,1006.73,64.42,434.06 +30.54,70.17,999.42,64.32,434.62 +21.95,50.66,1013.92,70.94,455.23 +24.49,59.87,1018.4,59.95,444.54 +10.62,39.58,1011.9,87.85,479.91 +11.47,25.36,1008.27,95.4,469.51 +24.84,71.73,1009.84,82.41,436.36 +20.66,51.19,1008.81,88.93,447.14 +26.85,63.56,1013.25,52.84,444.39 +25.56,69.13,1002.46,68.26,434.48 +20.0,39.53,1007.59,62.09,456.28 +8.22,41.82,1032.77,71.63,477.86 +21.84,59.39,1015.77,88.12,442.11 +14.26,44.47,1028.81,72.19,465.77 +14.35,39.39,1012.92,82.41,470.53 +22.89,80.25,1006.38,80.25,446.15 +24.34,73.5,1011.31,84.15,440.29 +23.86,59.21,1013.02,73.59999999999998,441.22 +27.71,69.13,1001.63,51.45,432.54 +22.63,70.47,1008.0,82.27,441.92 +31.23,75.08,1004.93,46.19,439.14 +10.31,40.67,1017.61,69.61,485.25 +7.64,39.85,1012.78,88.09,481.53 +31.44,79.73999999999998,1006.95,56.99,431.69 +4.89,45.87,1007.58,99.35,482.69 +27.91,63.76,1010.27,65.67,435.21 +19.05,53.16,1013.22,82.8,455.76 +28.36,69.88,1007.75,84.17,434.03 +27.69,73.91,1005.23,75.70999999999998,435.08 +22.85,59.15,1014.74,63.92,448.61 +23.0,57.76,1017.64,56.86,451.39 +30.04,68.08,1011.04,51.01,429.52 +17.08,38.58,1015.41,73.42,461.49 +27.13,69.45,1013.9,51.16,434.47 +30.65,65.18,1012.51,42.32,436.79 +23.91,50.23,1017.25,68.57,455.41 +7.64,42.28,1008.49,83.42,483.74 +6.77,40.78,1024.86,96.58,478.24 +18.41,44.9,1008.97,73.81,453.12 +14.29,39.59,1010.93,94.53,463.04 +29.29,71.14,1011.49,49.97,432.58 +29.17,67.45,1014.1,46.85,435.08 +23.55,65.94,1011.76,58.44,443.98 +19.05,59.21,1017.99,89.53,451.0 +18.22,49.25,1020.33,61.87,454.66 +14.8,38.73,1003.18,80.73,467.54 +5.28,45.87,1008.25,97.88,479.91 +13.07,43.13,1016.93,70.02,471.47 +21.37,81.56,1006.57,81.56,434.38 +9.96,41.55,1002.59,65.86,475.91 +13.86,41.78,1010.75,57.9,467.39 +11.33,41.16,1019.05,87.13,468.87 +16.81,42.42,1008.95,74.25,462.19 +29.79,67.69,1006.86,55.93,428.71 +14.44,41.2,1015.96,81.97,469.85 +9.08,40.46,1019.48,77.37,476.81 +17.3,57.76,1016.26,87.74,455.75 +27.06,64.45,1008.72,54.21,443.1 +14.64,39.58,1011.46,71.9,467.8 +23.69,77.54,1009.32,89.7,440.21 +9.05,36.3,1027.44,74.84999999999998,479.43 +24.73,74.22,1010.15,79.83,436.55 +19.94,44.9,1008.52,74.69,459.47 +8.73,39.42,1025.63,69.87,474.44 +26.66,73.56,1006.9,99.27,433.62 +31.81,69.88,1007.94,55.91,432.6 +17.47,58.59,1014.03,97.13,449.41 +22.18,62.39,1007.84,85.74,452.31 +18.25,43.14,1011.51,55.16,462.78 +20.34,69.45,1012.76,91.05,442.73 +27.44,58.9,1003.86,66.74,442.19 +27.75,77.23999999999998,1007.48,78.37,433.57 +19.13,59.21,1018.32,89.66,450.81 +19.84,65.48,1019.54,76.59999999999998,449.85 +21.1,62.66,1011.19,83.49,448.8 +20.15,58.59,1014.13,91.96,443.85 +28.85,58.33,1013.78,41.39,444.0 +19.39,60.1,1010.28,83.31,452.57 +21.88,69.71,1010.28,97.64,444.39 +16.34,47.45,1009.41,92.96,448.59 +13.34,40.8,1026.56,64.85,474.47 +3.92,41.31,999.22,95.26,487.35 +21.97,58.12,1015.29,77.47,449.6 +13.89,44.84,1023.66,92.97,466.74 +13.98,40.71,1022.72,71.83,474.46 +16.55,41.93,1022.71,42.73,466.77 +21.17,52.3,1009.36,81.51,447.5 +24.37,65.61,1014.5,65.67,443.13 +24.42,64.79,1016.12,69.32,449.1 +16.54,42.86,1014.85,78.0,465.26 +8.199999999999998,41.14,1025.24,96.26,474.04 +26.17,58.86,1014.52,51.28,443.69 +14.24,39.58,1011.17,70.45,469.94 +14.1,42.18,1015.05,78.25,463.3 +24.91,52.3,1008.72,68.26,441.15 +32.55,69.89,1013.87,40.09,428.84 +20.7,58.16,1016.73,68.19,453.22 +29.7,57.19,1008.41,55.07,436.29 +17.66,60.08,1017.22,86.96,456.62 +30.03,68.84,1011.41,53.82,439.31 +26.45,54.5,1014.96,65.55,450.76 +12.57,41.79,1014.99,87.8,461.88 +30.82,78.87,1012.06,70.69,432.01 +16.97,44.92,1025.21,74.27,460.21 +14.84,38.91,1013.78,69.27,467.83 +20.99,50.78,1008.55,75.14,449.07 +12.35,44.2,1017.81,82.49,471.65 +19.64,46.33,1013.33,98.99,451.45 +29.14,61.5,1009.64,39.95,437.76 +11.82,41.17,1019.5,55.74,475.61 +23.94,51.95,1008.61,73.42,448.67 +17.4,63.09,1020.84,92.58,453.0 +8.949999999999998,43.13,1017.56,94.85,479.14 +29.12,51.43,1005.93,60.66,437.71 +29.13,47.93,1002.5,49.1,435.61 +30.56,71.25,1000.3,70.55,431.92 +19.07,44.63,1020.23,44.93,456.37 +32.96,69.75,1008.86,40.23,435.56 +19.35,39.72,1002.5,51.24,455.29 +31.92,68.3,1015.58,41.55,430.07 +13.85,48.92,1011.68,79.23999999999998,462.38 +26.69,70.36,1006.82,68.29,435.04 +17.66,44.9,1020.5,71.33,457.11 +16.05,38.28,1014.38,73.89,466.75 +6.24,35.77,1019.24,70.7,483.36 +6.43,39.61,1017.51,83.8,480.58 +15.12,39.16,1006.55,76.98999999999998,463.78 +15.84,49.69,1015.14,90.41,462.6 +18.41,42.44,1012.66,65.93,463.2 +15.54,41.96,1011.78,97.46,467.1 +28.26,69.23,1013.01,42.1,436.31 +12.24,40.96,1023.22,78.73999999999998,475.32 +25.45,75.23,1011.41,73.33,441.65 +5.25,42.85,1013.75,89.67,477.78 +9.82,41.04,1026.72,77.28,473.98 +11.44,41.39,1019.59,79.95,478.52 +12.07,38.25,1012.67,81.66,470.36 +28.51,70.02,1010.58,54.68,441.66 +23.47,60.77,1017.19,75.36,444.46 +20.42,45.01,1012.23,66.5,451.28 +21.13,47.43,1006.97,64.26,448.83 +18.62,65.48,1018.45,73.39,451.94 +15.68,43.7,1015.09,58.96,470.29 +7.46,39.81,1018.62,86.73,484.13 +11.38,52.75,1026.19,72.70999999999998,469.9 +21.11,43.43,1010.1,62.62,447.83 +32.38,77.23999999999998,1007.7,61.15,430.96 +19.74,45.38,1015.11,80.67,459.39 +19.18,50.12,1005.99,100.09,444.56 +10.19,37.14,1012.74,73.48,475.01 +20.98,43.77,1010.67,62.73,449.88 +13.47,44.88,1017.56,93.23,476.67 +27.23,44.05,1005.69,58.91,440.2 +7.3,43.65,1019.33,67.62,482.96 +18.26,60.95,1016.94,78.91,457.03 +9.55,40.67,1018.56,70.72,486.34 +26.1,63.56,1013.12,61.0,442.75 +25.88,63.73,1009.48,77.17,438.42 +20.29,63.09,1019.03,76.06999999999998,448.22 +22.58,59.14,1017.2,80.91,439.78 +27.57,60.07,1016.52,54.75,440.12 +30.48,70.04,1010.73,53.7,429.85 +9.27,38.56,1017.69,62.49,475.42 +15.01,42.77,1018.21,73.22,462.6 +31.01,73.5,1010.92,48.61,432.41 +19.62,68.63,1012.26,68.05,453.84 +24.26,47.93,1003.87,70.44,439.16 +14.87,41.76,1022.26,78.20999999999998,464.84 +31.0,71.77,1006.29,48.56,431.07 +28.84,74.67,1016.52,67.43,428.98 +18.48,50.16,1011.45,99.92,452.06 +30.49,64.44,1013.43,51.73,438.09 +27.49,71.94,1008.25,68.29,428.27 +21.76,47.93,1005.34,86.28,444.77 +13.78,44.47,1027.94,71.09,467.22 +25.28,66.25,1009.77,84.55,439.77 +27.17,61.02,1011.38,65.32,437.06 +20.51,42.23,1013.25,71.83,461.78 +15.43,39.16,1016.44,79.8,470.74 +12.7,39.72,1017.89,62.97,467.77 +26.86,72.58,1009.22,88.39,428.69 +26.06,58.59,1012.41,55.22,451.47 +10.56,40.22,1005.08,89.71,478.02 +25.33,73.20999999999998,1002.19,97.24,433.43 +3.0,39.64,1011.0,80.14,485.2 +30.91,69.75,1010.23,59.36,435.7 +27.34,71.64,1008.12,72.22,438.76 +15.34,43.5,1021.18,79.44,459.77 +18.99,59.27,1012.15,89.39,453.4 +12.14,40.27,1007.57,73.22,472.84 +30.75,71.22,1006.47,48.06,437.96 +16.05,41.96,1011.82,96.05,463.72 +14.83,53.82,1016.57,63.47,464.0 +25.12,66.56,1009.22,65.62,436.56 +13.72,41.62,1011.14,75.79,455.52 +20.94,58.16,1016.88,65.43,455.16 +24.81,67.17,1007.71,84.37,442.75 +10.2,41.46,1019.12,83.26,480.11 +26.19,49.3,1003.69,65.88,440.13 +24.7,58.82,1009.4,75.91,442.98 +31.82,73.68,1014.8,40.58,433.32 +10.29,40.56,1017.28,69.13,481.7 +15.94,44.85,1014.29,67.57,462.54 +21.28,70.32,1011.06,90.12,439.0 +12.45,40.1,1015.4,82.61,473.63 +25.15,57.32,1012.41,41.84,440.1 +28.52,57.82,1004.81,57.82,435.4 +22.47,48.6,1002.33,63.23,445.98 +15.21,43.5,1021.6,82.06,464.08 +27.88,63.87,1017.79,40.0,443.24 +32.14,68.31,1010.48,42.15,436.15 +28.28,69.48,1008.56,61.3,428.75 +12.12,38.28,1013.65,90.19,471.19 +13.44,41.14,1026.41,77.26,461.44 +15.12,41.04,1025.95,69.67,460.58 +9.73,40.22,1011.48,87.88,481.42 +14.05,39.59,1011.2,94.54,464.63 +28.43,63.31,1013.44,49.99,432.62 +12.38,41.62,1012.37,84.15,461.07 +7.09,39.37,1020.07,73.26,487.0 +11.69,35.76,1019.02,55.6,471.72 +25.76,63.94,1018.49,42.14,445.78 +14.91,43.34,1015.15,81.56,461.27 +21.91,70.32,1009.17,90.57,439.29 +23.56,73.18,1012.18,87.98,437.92 +19.98,49.15,1021.56,63.89,457.54 +24.33,49.16,1003.46,61.04,441.2 +9.22,40.92,1021.83,85.43,474.51 +32.16,71.32,1005.5,60.23,434.01 +27.29,64.45,1013.46,45.35,446.94 +28.14,61.47,1009.69,64.66,435.35 +26.71,70.4,1007.59,82.63,432.64 +19.83,46.33,1013.27,96.4,451.22 +13.49,43.41,1015.75,57.86,461.06 +14.13,53.82,1016.72,64.85,467.08 +20.6,66.86,1013.08,62.48,451.44 +22.01,60.84,1017.55,83.82,441.9 +5.89,35.77,1019.78,79.58,479.86 +26.02,70.79,1004.21,79.12,428.72 +14.08,41.93,1023.02,59.41,475.15 +24.96,77.54,1008.25,80.59999999999998,433.4 +32.21,71.85,1008.25,58.09,429.15 +26.59,69.13,1009.27,73.95999999999998,430.11 +8.529999999999998,43.14,1012.25,78.88,480.08 +25.94,66.49,1012.83,61.81,433.38 +7.76,39.61,1021.63,80.67,488.32 +27.21,67.45,1013.83,43.26,436.47 +19.08,59.15,1013.1,81.81999999999998,451.33 +30.97,67.9,1005.98,55.6,428.26 +7.53,41.74,1022.45,90.85,487.25 +32.19,69.13,1000.45,48.22,425.21 +27.32,66.54,1004.95,72.58,431.33 +14.92,46.18,1014.21,98.82,465.63 +24.62,72.43,1007.97,84.36,436.89 +14.47,44.66,1016.33,93.52,464.41 +26.35,59.44,1012.16,63.73,443.73 +26.38,65.12,1016.1,47.57,441.07 +24.44,52.84,1006.39,49.05,440.2 +32.63,74.98999999999998,1002.42,40.07,432.79 +29.49,69.71,1009.34,56.35,440.99 +30.58,70.04,1010.4,48.16,431.59 +13.24,39.16,1016.52,86.66,474.48 +12.91,41.66,1013.37,71.52,469.71 +25.1,43.77,1010.9,49.68,444.99 +16.0,43.02,1012.37,39.2,466.01 +23.62,61.87,1010.07,48.77,447.93 +25.54,70.47,1009.28,73.5,436.16 +15.89,41.7,1018.93,82.68,463.33 +23.79,50.16,1005.32,75.81999999999998,435.49 +17.77,56.53,1019.57,79.89,457.94 +21.54,58.41,1013.99,86.34,450.69 +24.49,70.79,1005.51,88.65,430.54 +13.52,39.39,1012.91,84.03,474.82 +13.51,44.9,1019.29,77.23999999999998,464.86 +28.9,68.84,1011.64,64.44,437.06 +26.28,75.23,1011.44,68.35,435.28 +28.81,64.96,1000.46,68.05,427.91 +17.49,63.94,1020.02,82.6,452.71 +20.61,48.78,1020.8,85.05,449.38 +27.84,71.32,1007.72,79.25,431.37 +22.7,60.84,1019.15,71.48,438.59 +7.21,42.03,1017.81,90.12,482.26 +14.68,41.23,998.43,83.71,469.25 +21.93,60.84,1018.96,76.8,440.76 +9.23,37.36,1015.01,67.38,481.08 +27.51,49.3,1003.74,61.27,437.09 +20.76,70.72,1009.73,89.04,448.85 +30.65,71.06,1008.61,76.76,432.08 +10.31,42.49,1009.43,78.36,479.64 +27.27,72.58,1009.25,89.31,428.93 +28.61,68.12,1012.23,46.45,435.28 +19.65,44.89,1009.76,75.36,451.35 +30.24,69.88,1007.9,61.46,436.37 +31.26,68.94,1005.94,39.49,438.03 +25.16,74.33,1014.55,76.7,436.15 +16.73,58.59,1015.02,89.61,455.3 +30.57,58.9,1004.54,54.37,438.49 +17.18,63.09,1020.67,93.58,451.37 +27.35,61.47,1008.43,70.65,443.67 +19.11,50.16,1010.88,100.09,450.38 +26.48,68.14,1004.83,55.96,432.19 +13.84,42.18,1015.74,79.76,468.66 +29.1,76.2,1006.28,60.22,435.97 +13.91,40.24,1017.03,85.93,466.24 +13.73,41.78,1011.75,49.65,464.94 +25.4,65.34,1013.11,53.93,445.82 +14.73,39.52,1017.01,74.20999999999998,470.45 +27.58,66.48,1004.82,51.23,435.34 +24.03,62.44,1010.96,79.88,430.66 +19.78,63.09,1019.01,78.39,448.34 +12.57,41.66,1009.11,70.74,475.61 +13.95,41.49,1019.95,86.46,465.24 +13.77,47.83,1007.41,90.66,466.07 +21.52,50.66,1013.56,74.33,455.71 +27.98,67.9,1006.3,73.53,436.08 +14.57,44.45,1021.42,66.23,462.48 +25.46,70.32,1010.65,64.7,433.08 +8.58,38.38,1021.03,84.37,482.26 +28.18,66.56,1005.69,65.67,426.79 +32.07,70.94,1006.91,49.9,432.33 +17.94,37.2,1012.64,68.11,467.65 +7.34,40.72,1023.01,80.08,483.92 +10.8,39.28,1010.7,82.62,478.8 +24.34,70.79,1006.82,85.66,433.83 +26.45,64.27,1013.23,60.92,444.9 +18.38,62.1,1020.12,77.27,452.91 +32.53,77.95,1014.76,58.1,434.44 +7.99,36.08,1020.08,83.2,481.35 +21.16,50.66,1014.13,72.77,455.86 +15.71,40.12,1012.81,97.46,462.6 +20.58,39.53,1005.68,62.09,460.1 +32.0,58.9,1003.48,51.38,437.81 +30.29,74.16,1008.77,75.23,431.39 +31.38,68.27,1006.79,52.79,426.67 +29.67,66.51,1015.6,34.1,434.8 +19.9,56.53,1020.52,78.05,456.48 +23.6,57.17,1009.84,74.27,446.05 +4.59,39.33,1010.85,71.78,494.9 +12.76,43.7,1015.13,65.34,475.73 +6.53,42.85,1012.65,91.6,480.98 +14.46,53.82,1016.55,68.11,462.6 +23.75,61.5,1008.16,69.14,442.35 +22.28,59.92,1009.36,95.38,437.85 +24.4,60.37,1006.77,82.43,440.64 +29.82,69.75,1010.09,65.02,442.6 +20.29,65.27,1013.17,74.94,445.52 +27.2,72.43,1006.75,80.67,430.32 +5.7,40.62,1016.07,84.94,482.82 +24.54,65.46,1014.27,40.77,446.26 +16.57,63.31,1016.19,81.02,454.78 +29.89,65.74,1012.95,51.36,438.24 +24.37,70.02,1010.97,71.97,443.53 +24.16,65.06,1013.88,58.96,442.32 +14.9,52.05,1015.11,77.33,464.82 +26.88,74.78,1010.42,64.81,440.84 +27.02,72.58,1009.21,89.13,437.8 +10.13,38.16,1013.57,79.04,474.92 +15.27,38.73,1002.83,77.77,465.99 +14.03,44.88,1019.6,57.63,465.51 +8.51,41.26,1023.17,87.79,477.51 +8.68,41.82,1032.83,73.62,478.61 +12.85,41.14,1027.04,86.29,464.86 +25.27,67.07,1006.34,66.35,445.81 +28.62,69.71,1009.67,62.12,437.52 +23.87,60.27,1018.94,77.16,439.86 +26.54,69.48,1010.7,66.09,432.56 +12.83,44.88,1017.86,87.88,474.26 +15.62,41.76,1023.82,66.17,459.72 +28.28,61.86,1012.07,64.49,439.65 +20.06,62.1,1020.21,72.20999999999998,451.81 +13.86,35.71,1015.21,63.16,471.63 +28.19,68.08,1013.41,43.93,436.43 +18.02,53.16,1013.41,82.84,458.01 +14.8,43.99,1022.89,85.25,461.97 +9.26,41.66,1016.87,73.31999999999998,483.51 +20.65,66.51,1014.94,71.83,456.49 +13.03,39.52,1016.68,83.09,473.99 +13.41,49.83,1008.83,87.14,466.38 +3.73,39.42,1024.4,82.42,488.58 +26.95,70.79,1004.09,75.34999999999998,430.07 +11.7,43.41,1016.08,62.27,467.51 +13.09,54.3,1017.61,82.38,471.0 +5.21,41.31,1003.51,91.23,486.46 +12.65,44.0,1023.03,88.73,471.46 +16.01,49.64,1026.35,77.75,457.8 +15.34,41.23,996.87,86.56,465.16 +17.94,62.1,1019.81,82.65,453.55 +33.01,68.67,1005.2,51.41,433.94 +22.91,66.44,1011.23,63.43,444.48 +31.35,67.32,1013.74,38.56,439.81 +10.63,40.67,1017.13,66.12,483.27 +4.27,39.64,1010.99,84.85,487.19 +21.14,58.05,1012.98,87.27,449.74 +25.36,60.07,1015.06,66.11,439.73 +11.44,44.2,1018.14,84.9,476.12 +13.35,39.58,1012.41,83.45,465.85 +23.88,54.2,1012.81,64.52,444.97 +15.65,43.5,1021.39,78.58,463.5 +6.72,38.91,1016.89,90.47,485.89 +15.74,43.71,1024.7,78.38,462.66 +19.84,56.89,1013.23,78.31999999999998,447.92 +11.44,43.13,1014.88,63.88,477.57 +26.55,69.45,1013.88,55.39,435.64 +19.96,39.53,1006.16,62.77,460.49 +10.8,40.69,1014.3,87.44,478.19 +8.36,38.91,1016.27,88.82,482.09 +8.55,35.77,1016.15,73.31999999999998,481.44 +31.84,71.37,1003.51,46.22,432.04 +5.94,39.9,1007.84,86.33,485.86 +14.35,40.71,1023.09,69.5,473.56 +31.91,67.83,1008.76,53.22,425.28 +25.35,74.33,1015.29,77.84,435.66 +9.32,36.3,1027.67,73.25,479.52 +16.34,42.28,1008.08,52.8,463.29 +29.95,73.42,1011.44,66.32,432.81 +7.09,43.65,1019.6,72.09999999999998,483.42 +25.63,72.98999999999998,1008.2,86.8,436.64 +28.54,71.94,1007.4,65.99,430.91 +25.57,65.46,1014.81,38.58,444.46 +12.99,44.0,1025.22,90.27,470.93 +14.77,48.06,1010.92,69.81,461.52 +31.09,59.57,1010.67,60.5,440.08 +14.04,48.79,1017.62,75.25,464.09 +29.12,66.56,1006.9,49.79,429.94 +32.13,74.34,1003.34,56.39,436.3 +31.75,74.98999999999998,1003.25,53.33,430.82 +24.82,66.54,1010.0,60.36,440.88 +19.76,48.92,1010.48,46.57,456.69 +31.26,76.09,1006.66,63.91,430.36 +9.43,41.4,1028.81,85.83,475.8 +27.78,60.07,1014.66,53.74,439.43 +23.99,45.87,1007.63,52.62,443.66 +18.32,66.51,1015.18,81.5,459.89 +28.86,49.3,1003.93,52.85,435.75 +27.35,69.48,1008.51,65.81,432.31 +23.32,66.48,1003.92,72.25,436.26 +18.99,62.1,1020.0,76.76,453.09 +10.82,42.02,996.03,99.34,475.46 +14.81,43.69,1017.19,71.9,470.71 +22.77,59.92,1009.67,94.09,437.9 +18.61,47.83,1006.43,78.89,454.21 +26.5,66.05,1017.03,61.34,440.15 +16.11,44.92,1025.37,79.84999999999998,460.99 +30.51,70.94,1007.64,59.42,430.91 +13.48,41.44,1015.64,71.46,471.39 +16.37,43.5,1021.26,72.4,459.18 +21.19,50.16,1005.81,84.27,450.33 +26.38,59.92,1009.99,71.91,444.85 +24.45,65.12,1015.92,57.19,445.01 +28.6,71.22,1003.15,58.33,443.01 +29.39,69.89,1013.92,47.36,434.27 +25.91,68.08,1010.92,74.25,432.07 +19.94,65.46,1017.7,68.94,448.67 +13.95,71.14,1019.76,75.51,461.18 +33.7,68.27,1007.16,50.41,427.4 +6.58,40.07,1014.22,55.44,493.72 +9.79,39.69,1002.36,93.86,471.61 +18.41,65.94,1010.23,84.71,452.66 +22.89,48.98,1014.55,48.21,448.56 +25.68,46.21,1011.01,57.53,442.98 +32.77,72.86,1003.6,52.87,433.84 +13.18,43.8,1023.18,61.21,467.0 +28.99,54.2,1012.79,41.9,442.6 +26.34,59.21,1013.37,58.98,439.22 +21.11,58.66,1011.7,68.71,457.89 +24.28,71.98,1006.34,90.45,432.47 +28.46,73.67,1005.67,71.21,429.15 +27.16,59.87,1011.78,58.84,446.38 +18.36,53.16,1013.31,83.18,458.47 +20.35,50.9,1012.6,72.43,453.5 +8.57,40.69,1020.87,84.15,485.18 +8.97,44.03,1013.16,80.39,474.61 +20.95,70.72,1009.96,87.73,445.66 +23.49,47.45,1008.46,66.18,446.72 +7.26,41.22,1014.86,97.82,488.75 +27.36,58.33,1013.86,56.7,439.14 +27.98,67.17,1007.32,75.29,440.68 +25.15,68.51,1013.25,72.31,440.96 +26.82,60.96,1012.25,57.41,449.81 +4.24,39.9,1009.28,96.74,491.25 +24.49,65.06,1014.07,63.32,441.4 +19.65,42.23,1013.04,75.9,461.16 +9.57,39.82,1013.12,89.15,468.02 +31.46,66.54,1002.86,53.75,427.76 +7.2,40.35,1011.83,95.59,484.9 +18.19,66.54,1012.9,86.05,449.22 +23.21,73.42,1010.34,88.29,439.66 +29.31,68.67,1006.18,63.38,435.57 +23.54,41.1,1002.05,38.05,448.56 +24.22,62.08,1022.53,60.79,449.11 +21.85,59.8,1016.89,75.28,454.26 +29.79,62.66,1008.5,48.51,440.27 +7.06,41.74,1021.95,90.38,448.97 +15.55,39.63,1004.98,89.82,466.83 +11.09,40.43,1025.47,74.97,490.96 +23.85,72.43,1008.01,88.34,439.02 +24.87,68.61,1011.19,55.69,450.54 +20.67,63.56,1013.27,79.39,450.7 +15.33,42.28,1008.19,66.15,465.2 +20.73,41.1,1001.86,47.51,456.44 +12.53,44.03,1007.21,84.2,470.04 +13.43,50.59,1020.38,86.3,469.33 +23.61,63.94,1012.9,87.06,441.57 +24.07,71.97,1008.83,94.87,441.84 +28.28,61.47,1009.44,60.89,443.12 +9.75,43.69,1016.81,82.42,481.34 +11.96,43.41,1017.42,79.44,469.34 +14.02,40.75,1016.05,70.65,470.48 +8.25,37.49,1009.02,81.09,480.38 +22.8,49.16,1006.4,77.05,439.65 +24.13,45.61,1012.63,71.36,453.19 +15.96,41.66,1011.93,55.47,466.39 +17.48,49.39,1021.51,84.53,460.01 +4.95,42.07,1004.87,80.88,485.67 +12.02,43.69,1016.12,74.06999999999998,477.74 +14.16,39.28,1015.63,77.29,471.27 +21.17,58.16,1017.16,68.11,452.02 +4.97,40.64,1020.91,94.28,485.43 +27.28,78.92,1011.05,75.48,434.78 +10.42,44.85,1014.18,88.36,479.03 +12.75,44.2,1017.59,81.22,471.03 +13.1,40.03,1017.79,84.48,470.75 +29.09,72.43,1006.86,65.47,427.3 +27.64,75.59999999999998,1017.35,54.78,441.04 +7.79,41.01,1024.0,97.2,477.0 +16.52,43.7,1015.08,58.36,466.73 +17.79,40.12,1012.74,79.03,459.13 +15.04,38.01,1022.46,78.29,468.12 +15.92,39.16,1006.59,71.32,460.45 +20.4,57.85,1011.14,92.47,450.07 +20.25,63.91,1009.27,97.97,448.37 +14.24,39.52,1018.22,77.19,468.51 +28.11,70.98,1007.76,85.6,431.83 +21.3,66.86,1013.04,55.43,450.56 +16.56,42.99,1007.48,74.45,464.62 +8.93,40.46,1019.03,71.0,472.77 +17.48,44.2,1018.89,61.51,457.15 +10.38,41.01,1020.8,94.26,465.9 +21.83,57.85,1012.49,75.16,448.21 +20.58,54.5,1015.04,89.83,467.76 +14.95,39.31,1009.15,75.3,462.72 +14.01,38.91,1015.86,69.24,470.1 +7.0,38.08,1020.27,77.67,482.38 +23.82,48.92,1010.48,44.45,446.85 +12.65,44.34,1019.4,71.45,468.8 +16.37,53.16,1014.89,74.84,459.52 +18.62,59.15,1012.85,82.54,450.81 +22.96,68.61,1011.15,76.62,447.18 +25.72,74.67,1016.64,75.93,434.83 +16.0,37.87,1020.24,78.41,461.33 +19.09,65.94,1012.53,81.06,446.34 +24.49,65.61,1014.71,63.47,447.26 +12.79,44.03,1007.46,95.93,464.35 +8.699999999999998,36.24,1013.34,89.5,478.69 +19.79,51.19,1008.77,94.72,447.96 +30.55,68.24,1009.43,63.84,426.8 +10.1,44.03,1008.11,90.29,471.59 +26.73,49.02,1007.75,67.73,438.17 +8.99,41.26,1020.52,91.96,476.09 +15.24,39.39,1013.01,74.23999999999998,469.79 +30.36,71.8,1010.9,63.27,437.4 +10.98,41.54,1019.94,69.83,479.08 +29.08,70.83,1007.98,51.95,430.91 +25.23,61.86,1013.0,76.18,441.48 +27.76,72.58,1009.04,84.96,429.25 +24.37,68.14,1005.22,59.27,440.22 +11.22,40.22,1011.01,81.67,476.7 +23.43,51.43,1011.31,73.55,444.09 +22.81,58.96,1013.5,55.66,452.89 +15.71,44.06,1018.34,71.69,465.05 +10.34,37.5,1010.35,95.56,474.08 +11.01,40.05,1015.46,89.22,474.2 +28.59,69.84,1003.79,67.31,427.53 +29.86,59.57,1011.24,64.02,439.44 +3.95,38.44,1016.75,79.65,492.46 +16.98,63.09,1020.44,95.18,450.55 +28.03,60.23,1010.23,66.04,438.88 +24.43,58.05,1011.88,71.39,445.68 +13.97,45.01,1017.44,89.15,461.96 +9.11,40.02,1031.1,83.02,479.03 +22.08,55.5,1018.42,58.46,455.79 +31.61,75.08,1004.83,42.29,436.67 +8.68,43.14,1011.94,79.06,480.73 +29.11,74.9,1003.31,74.01,432.43 +12.71,43.8,1023.15,71.16,466.2 +31.24,74.22,1007.74,48.77,430.44 +9.18,42.18,1017.4,87.3,475.57 +4.15,39.9,1007.62,95.69,489.8 +14.93,43.02,1012.11,45.56,468.19 +12.24,40.66,1017.4,96.22,464.7 +20.87,63.31,1012.27,79.51,446.7 +21.12,62.52,1015.62,78.98,450.93 +19.23,41.67,1012.53,48.86,465.66 +30.74,71.77,1006.24,53.38,434.89 +25.42,73.20999999999998,1001.91,93.78,432.04 +18.97,50.59,1016.01,74.9,459.68 +23.65,66.05,1019.6,78.20999999999998,442.9 +15.26,46.18,1013.68,98.58,463.6 +24.41,58.59,1012.62,64.52,442.64 +20.79,50.59,1017.75,73.34999999999998,456.01 +8.34,40.72,1023.62,83.75,483.14 +31.12,68.14,1003.67,67.36,427.06 +24.92,63.94,1017.7,44.92,441.07 +29.3,70.04,1010.95,61.23,426.25 +16.46,61.27,1020.02,74.54,456.64 +24.44,69.84,1005.34,80.37,430.3 +6.17,39.33,1012.57,93.32,491.54 +18.15,41.67,1012.75,52.69,464.44 +26.38,71.58,1011.02,80.9,434.26 +23.99,67.69,1007.9,78.56999999999998,437.1 +26.51,67.25,1017.85,64.17,435.52 +24.31,66.49,1011.38,54.35,440.79 +29.04,70.72,1009.55,66.58,437.95 +13.26,41.74,1021.89,63.32,473.44 +18.32,65.94,1012.74,86.77,450.5 +4.87,42.85,1012.69,94.72,482.05 +24.98,60.32,1016.39,63.12,446.46 +14.77,44.9,1020.5,84.31,465.23 +28.77,75.23,1010.01,59.0,437.93 +28.5,76.86,999.49,77.47,430.62 +11.62,41.54,1019.94,66.43,477.75 +23.21,74.22,1009.68,88.46,440.46 +30.12,73.18,1012.29,61.32,429.31 +11.63,41.5,1013.6,87.11,477.3 +19.8,58.79,1017.04,87.71,449.66 +30.22,70.32,1011.63,65.97,435.98 +17.55,43.14,1018.86,76.0,461.58 +8.27,37.7,1015.09,73.64,479.16 +31.01,69.13,1000.93,62.96,425.69 +28.64,73.4,1011.48,52.84,441.32 +10.81,45.0,1023.45,85.89,482.63 +25.62,73.17,1011.65,86.45,430.56 +30.28,58.9,1005.03,54.59,439.06 +3.63,38.44,1016.16,87.38,487.87 +9.73,41.01,1021.76,97.71,469.11 +6.72,39.85,1011.84,84.66,489.09 +20.58,49.15,1021.42,56.15,453.87 +27.99,71.58,1010.68,68.99,435.99 +18.36,53.16,1013.14,79.89,457.94 +30.08,73.42,1011.17,63.86,434.95 +25.6,63.9,1013.16,53.19,451.44 +27.41,59.21,1013.3,50.93,438.39 +7.51,43.02,1014.35,86.46,485.38 +13.42,41.74,1020.96,61.8,473.45 +28.18,60.07,1016.34,49.13,441.61 +17.3,43.72,1009.64,77.86,456.55 +24.96,70.47,1007.73,76.48,438.23 +21.04,45.09,1014.19,40.62,450.92 +22.17,65.61,1014.71,70.91,449.91 +26.98,72.58,1008.55,78.5,431.12 +30.13,78.05,1010.99,61.5,434.14 +9.68,41.48,1018.24,71.04,473.31 +21.95,68.08,1012.91,69.36,443.93 +15.09,44.34,1019.46,60.49,468.8 +23.83,58.79,1009.77,78.13,444.34 +13.86,40.66,1017.15,83.82,463.49 +22.79,69.13,1010.87,91.47,438.08 +26.71,77.95,1012.13,77.5,433.47 +28.69,67.25,1017.71,53.83,432.21 +18.27,51.43,1010.38,88.39,460.41 +24.24,68.3,1018.03,81.51,437.12 +11.8,45.09,1013.21,89.68,470.57 +17.19,58.86,1016.74,85.97,451.87 +18.55,61.87,1008.45,65.3,450.73 +15.5,44.92,1024.16,86.44,462.12 +24.22,56.89,1013.81,70.02,440.79 +11.91,43.22,1008.75,76.56999999999998,472.88 +14.48,46.18,1015.83,92.15,462.3 +14.73,58.2,1019.45,82.48,458.56 +11.91,40.69,1014.41,83.71,476.71 +22.48,50.05,1005.55,82.36,442.56 +27.72,69.88,1007.58,72.25,434.02 +15.03,44.45,1020.94,65.57,460.06 +24.18,59.92,1009.88,79.54,438.85 +21.97,58.79,1010.93,86.7,448.8 +15.51,41.76,1022.81,69.55,463.82 +25.89,58.86,1014.16,52.95,445.17 +19.13,42.18,1001.45,98.77,456.04 +26.82,69.05,1004.62,40.0,437.42 +23.04,48.06,1014.16,54.99,459.36 +6.05,42.85,1013.09,91.88,485.02 +30.94,64.44,1014.36,53.76,439.84 +25.32,48.41,1008.47,72.14,443.04 +26.92,68.27,1008.11,61.73,435.17 +23.48,51.43,1007.13,84.83,441.78 +25.66,71.77,1006.76,84.76,429.25 +17.46,53.29,1018.07,91.01,458.06 +26.18,69.84,1005.13,72.89,431.69 +10.07,39.66,1015.37,83.78,479.64 +30.99,69.82,1009.41,50.84,437.46 +31.85,73.91,1003.6,60.22,431.26 +32.2,72.29,1008.61,69.94,432.52 +22.08,41.1,1002.19,46.69,455.04 +16.32,43.56,1014.4,59.77,463.57 +24.94,59.07,1008.89,84.79,440.12 +8.3,36.3,1015.97,60.62,480.58 +18.81,45.01,1015.28,65.91,457.85 +17.61,56.53,1019.5,82.3,457.01 +27.01,43.77,1011.18,46.58,440.64 +28.69,67.25,1017.71,44.6,436.21 +13.66,40.55,1005.46,96.02,467.7 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/gen_20260330_043036.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/gen_20260330_043036.log new file mode 100644 index 0000000000000000000000000000000000000000..edeb866e4362ba78f1dcdc79d7f6fcba08f36bcf --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/gen_20260330_043036.log @@ -0,0 +1,13 @@ + + 0%| | 0/1000 [00:00 /work/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/rtf-n20-1000-20260330_043036.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a59bd084fbb9ea05842a6eca091e70a9e3880f64 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n20", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "exists": true, + "size": 291758, + "sha256": "8768b9641a081ce32375b2739c6d0a6cdf66c1b03268c7db5f71ffd0019c97e2" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "exists": true, + "size": 36657, + "sha256": "c2dae02f854856ba824310ecaca5c73a72a3302753396aa681c82b69d65b174c" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv", + "exists": true, + "size": 36232, + "sha256": "82c48522e82ea4c5e4c407ec9239e82558dcff1df413f3d0c382e77fa041bc88" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_profile.json", + "exists": true, + "size": 2675, + "sha256": "7e7d747ab11beae1e58278dc8d6ae08d7ae6f14fe93f77a4fc1e6e589df21df4" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_contract_v1.json", + "exists": true, + "size": 3047, + "sha256": "20f513ccbc9f09d5286bc8998a5772f42b78b40aa1ed60b079fa73edf9c78eec" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8618a420d9d101a283cfb38feb336ac37687988f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,112 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "columns": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91364f3480d02e634daea210e8cae28ad5402b46 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n20", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "PE", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a167c29e4914f54605b0fbfbdfbcd12a1ab45850 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/public_gate/staged_input_manifest.json @@ -0,0 +1,117 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/realtabformer_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/realtabformer_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..0b7845bbb4f8e1a588786191b67227698bd7aab0 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n20", + "model": "realtabformer", + "run_id": "rtf-n20-20260330_023856", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/rtf-n20-1000-20260330_043036.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/models_100epochs" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/staged_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb807ac5b23b2e7dfb39b3a5378cd452e84d56ed --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/test.csv @@ -0,0 +1,959 @@ +AT,V,AP,RH,PE +14.72,41.23,997.91,82.69,467.11 +11.94,40.66,1016.61,96.11,467.99 +27.56,66.93,1016.81,55.59,444.1 +9.59,34.69,1027.65,75.31999999999998,478.88 +7.46,41.82,1032.67,74.59,483.11 +15.52,36.99,1006.86,89.7,467.9 +15.47,43.13,1015.11,50.5,466.63 +21.84,45.09,1013.94,46.11,450.88 +19.83,51.43,1007.36,91.64,449.45 +29.3,67.69,1007.17,55.5,430.72 +6.63,39.42,1024.81,72.58,482.02 +22.88,69.45,1014.02,65.13,441.76 +11.97,42.32,1016.95,88.32,467.98 +29.25,67.32,1013.88,38.57,437.94 +14.89,39.58,1012.26,77.58,465.95 +10.39,44.85,1014.22,78.42,478.05 +25.66,77.54,1008.22,78.42,432.82 +16.5,49.39,1018.35,93.42,462.48 +28.55,74.33,1011.77,73.34,426.48 +7.84,40.07,1016.68,47.63,488.7 +27.14,71.32,1007.8,87.99,431.96 +25.18,71.98,1006.71,89.86,432.88 +6.01,35.79,1011.26,90.72,482.79 +14.54,41.17,1015.15,67.78,470.19 +11.8,43.22,1008.57,78.01,469.55 +23.82,44.89,1009.39,74.69,445.45 +32.81,71.32,1007.69,47.29,434.38 +30.63,74.22,1007.47,46.52,430.38 +25.43,70.17,1000.46,87.84,436.43 +30.17,76.86,998.23,73.61,430.3 +26.27,58.33,1013.81,60.43,438.82 +26.02,63.07,1010.94,53.96,446.82 +14.64,39.31,1008.84,79.3,462.72 +19.99,65.94,1012.28,75.42,447.22 +32.9,68.51,1012.95,50.09,430.23 +20.3,44.9,1008.25,64.08,457.6 +22.86,47.43,1009.75,61.54,452.53 +10.82,44.63,1020.64,90.26,473.23 +13.15,42.44,1014.51,99.53,469.34 +27.4,66.48,1004.71,51.5,439.66 +4.96,40.07,1011.8,67.38,494.75 +8.67,36.66,1026.8,84.36,480.38 +25.97,43.21,1011.9,88.73,434.83 +10.23,42.32,1017.53,89.93,473.59 +27.66,59.21,1013.12,51.58,438.57 +27.21,68.12,1012.96,54.69,435.2 +19.72,65.94,1010.53,82.12,446.84 +8.87,41.82,1033.3,74.28,477.97 +15.29,25.88,1009.21,66.0,464.25 +19.48,39.72,1001.75,55.41,457.16 +10.93,39.16,1016.54,90.56,479.83 +20.84,51.19,1008.63,84.11,448.98 +9.01,40.77,1022.37,90.3,470.84 +21.08,63.13,1013.53,98.0,443.51 +14.94,40.0,1017.69,65.43,456.41 +28.37,63.31,1013.18,49.02,437.64 +23.45,45.61,1012.84,73.42,454.92 +12.76,42.32,1015.35,78.18,466.15 +13.86,44.21,1022.6,83.56,468.3 +24.51,51.95,1005.57,63.53,449.73 +5.04,40.64,1021.35,93.63,484.42 +14.24,45.01,1013.54,88.68,461.64 +11.17,39.72,1002.4,81.4,474.64 +11.94,44.2,1017.97,82.93,474.02 +9.28,41.54,1018.33,79.89,482.8 +28.91,58.33,1013.84,39.72,437.53 +16.89,49.21,1015.19,70.39,458.25 +16.34,36.99,1006.99,90.06,466.24 +16.41,47.24,1015.75,88.78,457.94 +19.44,39.53,1006.99,63.18,457.09 +9.37,40.11,1024.94,75.03,471.13 +13.64,44.88,1019.85,56.86,466.66 +16.19,36.99,1007.37,92.4,462.94 +18.75,63.09,1018.19,87.84,450.98 +15.97,45.01,1016.58,83.24,456.91 +19.5,52.72,1025.21,50.21,457.26 +10.49,42.49,1009.81,78.92,478.75 +20.78,62.52,1017.58,73.3,452.3 +7.41,40.81,1026.15,88.96,488.48 +25.38,72.23999999999998,1010.76,89.64,432.3 +4.0,39.9,1009.64,97.16,490.79 +30.61,68.84,1011.18,52.5,439.9 +28.57,75.33,1003.16,76.14,431.58 +15.37,41.96,1011.58,96.76,466.02 +31.56,66.44,1008.91,64.16,430.11 +16.69,46.18,1010.8,96.8,466.03 +22.0,51.3,1012.87,85.79,450.18 +28.31,74.34,998.42,79.23,431.95 +15.7,44.21,1021.26,86.83,462.19 +21.79,58.2,1017.21,66.74,446.94 +25.67,58.59,1013.0,62.34,451.03 +20.59,59.8,1015.27,77.94,453.83 +16.14,44.21,1020.36,80.59,461.03 +25.61,47.43,1008.62,54.51,442.96 +7.61,44.71,1019.41,70.48,485.36 +30.32,64.69,1006.35,51.36,436.72 +29.45,68.27,1007.96,61.63,432.96 +29.28,77.17,1009.4,76.3,433.14 +5.62,41.31,1001.37,89.16,485.6 +24.86,44.05,1005.69,66.65,447.2 +6.17,40.07,1013.7,58.99,495.21 +13.65,41.58,1020.56,72.17,460.8 +3.96,35.47,1016.79,83.81,489.68 +6.49,39.33,1010.85,91.85,489.22 +31.32,71.29,1008.37,50.07,430.46 +8.07,43.69,1017.05,87.34,485.18 +13.35,39.64,1010.1,93.3,471.69 +26.21,56.85,1011.45,41.37,439.55 +5.71,40.77,1022.51,89.58,485.75 +18.98,60.1,1010.09,85.34,453.37 +6.07,38.91,1019.25,83.39,483.56 +26.92,78.92,1011.65,96.22,434.64 +24.44,47.93,1003.13,67.04,440.53 +14.45,52.75,1023.97,63.59,459.85 +26.44,71.64,1004.55,85.53,435.61 +30.7,74.22,1008.12,50.39,432.51 +6.48,36.24,1013.62,92.03,484.65 +30.47,70.83,1010.91,46.94,444.39 +13.78,38.28,1014.8,81.19,467.43 +19.65,62.1,1019.46,77.81999999999998,449.13 +9.51,43.79,1016.02,79.81,481.12 +16.31,52.75,1024.4,55.69,456.58 +13.08,39.82,1012.27,85.21,476.96 +20.72,44.57,1008.96,72.56999999999998,449.76 +9.77,41.44,1017.69,78.26,481.74 +26.12,66.75,1017.86,79.02,433.67 +10.95,43.8,1022.61,63.46,473.2 +11.01,43.69,1016.7,81.48,477.3 +17.36,52.9,1015.42,69.97,458.66 +16.7,46.18,1011.4,95.51,458.05 +11.95,42.07,1018.52,84.73,467.91 +18.3,44.06,1017.95,63.24,456.32 +14.69,35.71,1015.78,57.34,467.39 +30.82,76.2,1007.47,59.3,432.22 +22.36,58.79,1016.69,73.59999999999998,445.76 +23.89,64.27,1013.37,75.22,450.82 +5.75,42.07,1004.24,78.23,485.23 +26.64,69.13,1010.6,79.23,430.41 +23.08,48.41,1008.44,82.35,443.5 +29.76,57.19,1008.59,51.1,436.21 +32.8,68.67,1005.27,44.53,432.28 +24.63,65.38,1010.43,40.68,446.23 +11.02,43.02,1012.32,66.54,478.81 +32.13,69.98,1013.3,55.85,431.84 +23.81,60.08,1017.29,62.66,450.33 +8.09,38.5,1012.99,67.31,484.81 +32.63,69.89,1013.85,41.66,425.72 +13.27,52.75,1025.86,65.12,464.82 +29.3,68.08,1011.23,56.23,434.11 +26.3,77.95,1009.45,78.72,437.95 +28.52,70.02,1010.34,54.21,441.98 +17.86,50.88,1015.59,88.28,457.33 +7.92,41.66,1014.84,76.12,483.38 +3.74,35.19,1018.58,98.84,490.5 +21.33,63.86,1020.33,72.13,445.02 +30.36,74.87,1008.96,61.87,435.31 +14.23,46.18,1017.39,87.29,463.86 +9.55,41.44,1015.07,85.94,481.75 +9.78,41.93,1023.18,75.05,484.03 +30.8,73.17,1010.51,51.93,432.24 +15.48,47.83,1004.88,81.68,463.67 +16.58,46.18,1010.4,96.29,463.51 +20.32,39.72,1001.38,57.21,456.18 +11.83,43.14,1010.06,88.14,471.98 +26.75,56.57,1013.76,57.93,443.92 +14.13,48.92,1011.72,78.06,464.17 +19.91,51.19,1008.0,90.23,449.23 +14.37,40.56,1021.67,68.18,470.19 +17.27,44.9,1007.85,78.8,454.19 +9.59,38.56,1017.52,61.89,481.05 +28.04,70.32,1011.28,78.16,435.42 +18.18,44.63,1020.41,48.64,455.57 +32.27,71.85,1008.06,59.28,429.72 +19.02,44.85,1014.57,43.37,465.42 +13.47,43.34,1012.75,87.04,468.8 +12.25,40.75,1016.02,82.4,475.07 +27.45,64.34,1007.12,65.87,440.0 +29.96,67.83,1008.0,44.05,433.13 +12.55,38.91,1012.58,75.44,474.35 +31.92,75.33,1002.13,65.73,431.32 +21.55,60.27,1017.42,92.59,443.93 +20.14,46.33,1013.24,83.39,453.35 +18.33,44.34,1019.55,51.69,468.8 +8.65,40.56,1023.23,78.84999999999998,485.87 +26.99,62.26,1011.13,71.27,436.89 +14.4,41.26,1021.41,73.11,462.78 +18.35,62.1,1019.97,78.36,455.29 +16.76,43.77,1012.25,77.95,457.0 +11.82,42.86,1014.12,88.28,476.7 +20.78,68.28,1008.75,60.87,450.57 +29.35,54.2,1013.07,42.45,439.47 +22.63,45.61,1014.14,73.06,457.88 +22.83,65.18,1012.24,79.73999999999998,442.43 +6.74,36.08,1020.36,86.98,484.18 +31.54,71.06,1008.4,71.77,431.87 +23.24,45.01,1012.21,45.23,457.01 +32.74,68.31,1010.23,41.29,441.66 +14.18,39.3,1020.1,67.48,464.32 +25.86,59.92,1009.92,73.95,436.06 +14.05,40.69,1015.66,74.39,470.9 +23.78,69.71,1008.79,83.17,443.06 +14.14,39.59,1010.84,96.02,465.23 +11.77,40.71,1024.55,72.48999999999998,477.94 +23.77,64.15,1021.02,55.87,448.43 +9.61,44.03,1008.3,91.36,473.54 +22.42,62.52,1016.83,63.27,451.64 +24.85,68.37,1006.5,68.37,442.66 +17.69,44.34,1019.31,61.12,464.13 +3.21,38.44,1017.11,84.86,492.93 +18.45,42.44,1013.45,63.52,459.79 +11.48,44.6,1018.29,90.76,470.39 +17.37,48.92,1011.91,58.4,455.53 +6.22,39.33,1012.31,93.23,491.77 +12.74,49.83,1007.44,91.47,466.09 +22.56,70.79,1005.85,93.09,435.14 +24.35,58.49,1011.03,70.64,445.6 +16.58,44.68,1021.5,83.38,458.87 +25.47,70.36,1005.79,77.73,437.02 +30.88,69.51,1011.48,46.58,433.14 +6.64,39.04,1018.84,74.94,481.53 +12.65,41.93,1023.07,65.05,479.53 +8.91,40.11,1022.87,78.39,475.43 +5.57,42.85,1013.55,92.14,488.85 +16.09,44.2,1019.39,67.24,460.56 +20.98,60.07,1016.26,67.18,446.26 +14.93,39.16,1007.25,72.34999999999998,463.2 +24.19,58.95,1017.78,58.78,441.91 +23.86,52.84,1006.56,48.94,444.66 +15.59,52.05,1013.67,78.55,456.07 +26.04,74.67,1016.68,81.2,433.55 +22.35,54.42,1012.46,75.01,454.72 +10.57,36.71,1022.11,82.39,472.62 +6.16,38.5,1012.83,93.68,490.92 +24.12,62.44,1013.83,88.02,443.3 +28.24,71.58,1010.1,67.92,434.01 +21.11,69.94,1004.37,84.26,439.91 +11.49,44.63,1020.44,86.04,471.08 +24.92,60.95,1014.88,60.58,445.44 +23.56,67.79,1010.14,89.72,441.29 +7.54,40.72,1023.82,85.15,485.92 +26.85,75.59999999999998,1017.43,74.55,433.48 +12.14,44.85,1014.36,60.04,476.68 +17.03,43.99,1021.5,82.32,460.25 +31.41,64.44,1013.84,49.49,439.3 +14.73,40.35,1011.15,65.2,470.03 +24.04,59.43,1007.6,76.98,437.51 +21.03,44.78,1007.99,36.82,459.72 +22.61,42.8,1014.24,69.71,460.26 +17.36,44.63,1020.49,54.21,456.98 +26.82,64.96,999.72,63.55,427.51 +18.19,44.06,1017.24,78.73,456.13 +24.38,47.01,1015.17,68.96,454.85 +12.98,39.64,1013.95,74.39,473.54 +14.17,43.13,1014.94,48.62,471.08 +18.71,54.9,1017.12,74.79,456.88 +12.8,44.34,1016.52,86.73,473.42 +16.71,46.18,1012.06,96.6,458.4 +22.99,60.77,1017.97,78.47,447.62 +28.34,63.77,1013.7,61.13,439.75 +34.53,73.03,1013.53,36.74,437.03 +10.16,40.8,1028.13,86.39,477.49 +27.28,44.89,1009.02,49.9,441.94 +22.75,58.86,1016.0,67.34,448.32 +25.01,59.54,1007.91,80.93,441.3 +23.64,63.31,1014.5,61.83,440.7 +8.85,41.06,1020.99,86.05,486.4 +19.65,63.91,1009.26,99.08,444.9 +18.22,44.34,1019.35,56.78,469.27 +9.68,40.77,1022.04,85.23,473.73 +17.49,40.55,1001.73,73.15,462.37 +21.79,61.45,1011.11,91.78,446.99 +21.06,62.91,1011.92,75.52,455.22 +23.72,58.62,1016.32,71.17,447.13 +30.93,73.42,1010.98,56.42,432.44 +5.98,38.91,1016.5,91.83,488.85 +13.45,41.16,1022.04,82.96,460.57 +12.23,43.69,1016.46,84.4,471.62 +8.13,39.96,1026.07,95.84,477.12 +29.0,77.54,1011.33,75.13,431.37 +11.61,52.75,1020.94,77.56,464.68 +19.4,49.69,1012.89,75.53,455.6 +5.0,40.64,1021.05,94.84,485.27 +23.46,57.85,1012.7,65.54,444.66 +18.51,48.06,1015.14,79.83,455.44 +29.29,70.36,1006.64,60.82,431.26 +27.55,64.96,999.73,57.34,431.33 +21.82,63.9,1014.48,92.53,447.29 +17.03,47.83,1004.94,79.68,460.43 +17.18,46.0,1002.74,100.1,454.02 +18.14,49.78,1002.95,100.09,451.44 +12.39,49.83,1007.6,92.43,468.43 +20.39,64.15,1021.31,62.35,457.37 +22.72,64.15,1021.14,60.34,453.13 +20.3,58.41,1014.05,86.38,451.74 +21.46,58.18,1007.45,95.33,444.12 +28.99,68.24,1008.75,66.57,428.28 +12.07,40.81,1025.63,68.02,475.96 +15.4,40.69,1015.1,70.25,471.66 +9.59,37.14,1013.8,72.84999999999998,474.74 +7.64,40.02,1031.58,71.19,479.43 +15.42,37.85,1009.89,85.8,467.33 +11.75,42.32,1015.28,77.25,470.44 +19.51,48.78,1021.03,86.33,453.27 +31.86,73.88,1005.6,57.68,435.91 +12.4,40.35,1011.46,79.48999999999998,476.44 +28.11,69.84,1004.68,67.08,427.33 +8.74,40.03,1016.81,93.37,481.07 +24.32,58.79,1016.8,65.61,442.78 +13.72,44.47,1027.2,68.89,470.66 +6.11,38.68,1017.53,79.23,482.97 +16.74,39.16,1005.68,71.17,460.47 +8.52,41.55,1002.09,86.81,483.63 +20.55,68.63,1012.5,67.07,453.47 +22.63,58.49,1010.94,72.7,448.38 +18.13,60.1,1009.67,84.75,455.82 +12.51,43.67,1013.24,91.55,471.96 +21.02,61.5,1008.52,77.73999999999998,448.08 +6.99,40.07,1014.83,54.36,490.11 +16.37,36.99,1006.37,90.11,463.76 +15.68,39.16,1006.09,75.62,461.98 +22.17,60.27,1018.21,89.55,443.31 +26.7,49.02,1007.68,67.97,438.92 +19.55,39.39,1013.55,57.82,464.36 +27.74,74.78,1010.05,60.82,436.87 +18.09,43.72,1008.64,74.15,453.02 +11.49,35.76,1019.08,60.04,472.45 +23.67,63.86,1019.67,57.95,441.73 +32.02,67.83,1007.77,53.31,426.55 +20.38,62.52,1017.85,75.56,456.56 +5.02,45.87,1007.8,99.22,481.03 +26.24,51.43,1011.32,59.52,447.91 +14.47,41.76,1021.98,78.41,464.0 +24.16,60.29,1018.09,63.49,446.17 +10.07,40.92,1021.84,84.18,471.71 +10.73,44.92,1025.1,85.4,476.81 +16.81,42.86,1013.83,77.11,464.36 +27.52,74.67,1015.77,72.01,433.56 +13.96,40.83,1009.89,84.86,469.86 +22.78,49.16,1002.29,64.28,444.99 +22.77,70.32,1012.04,82.43,440.67 +8.64,41.66,1014.14,80.44,481.89 +27.33,66.17,1011.06,64.55,443.89 +19.07,49.69,1007.22,76.79,453.09 +24.1,68.61,1010.97,74.87,443.75 +14.6,42.32,1015.71,77.03,464.67 +14.77,44.47,1028.38,71.18,464.25 +9.14,38.91,1018.62,89.88,476.57 +14.85,45.87,1009.37,84.65,462.67 +8.47,41.03,1021.72,70.16,485.1 +23.79,59.44,1012.53,79.48,448.67 +26.63,64.44,1012.66,61.19,442.0 +12.88,44.34,1016.03,88.51,474.94 +12.73,44.34,1015.11,93.55,472.94 +17.2,40.55,1000.68,72.67,462.55 +10.05,41.17,1018.98,83.71,481.38 +28.37,75.59999999999998,1017.48,55.19,439.25 +25.61,60.32,1015.77,56.48,443.96 +20.34,46.63,1013.16,79.08,453.62 +20.21,58.12,1015.36,79.18,453.19 +21.19,58.86,1014.19,68.96,452.43 +29.71,73.18,1012.35,63.06,427.04 +15.24,37.87,1020.52,84.49,463.09 +17.35,42.86,1014.62,74.16,465.16 +13.5,45.51,1015.33,86.95,469.08 +25.94,77.23999999999998,1007.97,84.82,432.88 +5.51,35.57,1026.3,78.97,489.36 +26.16,52.36,1013.62,58.52,453.08 +15.17,49.15,1021.91,91.73,461.89 +14.57,42.18,1015.13,74.89,465.75 +12.16,45.0,1021.51,50.52,482.99 +25.1,60.37,1005.83,72.53,438.44 +13.57,39.39,1014.01,82.12,471.44 +20.25,55.5,1020.03,69.33,455.13 +11.23,39.72,1018.46,60.62,475.04 +12.52,42.34,1018.67,95.29,464.71 +8.68,39.61,1021.54,77.98,486.31 +8.18,40.02,1031.45,73.66,478.81 +21.93,60.84,1017.8,82.61,443.89 +30.69,71.98,1004.53,65.86,430.33 +12.08,41.39,1019.45,78.3,477.8 +9.08,42.49,1010.67,85.35,481.46 +20.33,57.76,1016.47,75.34999999999998,450.25 +31.03,69.98,1011.33,52.16,436.13 +6.03,41.14,1028.04,87.46,479.61 +14.02,42.86,1030.86,68.36,467.29 +20.51,45.38,1014.29,69.14,461.87 +28.17,63.13,1012.44,66.61,439.94 +18.83,63.91,1010.8,96.18,448.15 +25.52,63.94,1017.81,41.54,440.32 +22.61,49.3,1003.51,83.02,441.76 +28.61,68.12,1011.71,47.57,432.94 +18.43,56.03,1020.41,60.55,465.17 +13.41,54.3,1016.48,79.28,467.88 +11.11,40.55,1023.91,87.12,476.37 +33.97,72.29,1008.98,44.32,432.33 +18.41,62.1,1020.4,78.09999999999998,457.14 +22.4,58.12,1015.24,78.03,449.13 +25.1,61.47,1007.84,75.75,447.27 +28.73,68.3,1016.53,55.73,434.15 +11.47,43.67,1012.68,72.51,475.72 +11.19,40.64,1020.57,84.49,472.86 +10.38,43.02,1013.37,78.53,474.44 +30.09,69.48,1009.51,53.24,435.2 +26.72,65.61,1014.41,52.01,442.48 +19.14,56.65,1020.84,82.97,458.06 +21.25,44.05,1005.69,81.87,448.43 +15.55,45.09,1014.33,62.19,457.36 +12.28,42.34,1019.19,95.8,467.03 +31.93,72.58,1006.9,56.27,425.14 +24.9,71.77,1006.24,85.25,427.77 +23.71,67.17,1007.27,90.2,440.65 +31.05,62.7,1009.35,55.27,441.67 +10.08,40.72,1022.7,67.3,480.8 +22.31,61.45,1009.25,98.56,437.05 +24.01,42.48,1011.39,55.1,453.12 +21.75,49.82,1015.01,78.33,455.28 +29.3,73.67,1005.64,65.31,431.07 +12.27,41.17,1019.39,52.18,473.84 +16.51,41.79,1007.1,74.03,457.74 +26.26,63.73,1010.45,70.61,442.18 +31.33,73.03,1014.18,49.28,438.49 +21.81,65.06,1014.6,66.41,447.13 +14.93,39.39,1014.31,80.68,468.88 +33.87,71.32,1007.91,39.48,435.89 +28.09,63.31,1013.01,52.6,438.6 +18.06,56.65,1020.2,81.59,459.14 +20.36,56.53,1020.25,72.95999999999998,455.34 +29.58,76.2,1008.37,60.73,433.91 +9.62,41.01,1019.43,97.99,467.34 +25.08,58.49,1011.1,64.47,446.9 +24.33,60.32,1015.49,59.95,445.36 +30.93,70.83,1010.61,46.13,440.59 +22.04,58.05,1013.11,85.22,447.28 +5.74,45.87,1011.44,95.94,482.0 +24.17,71.25,1003.9,90.36,435.66 +5.95,39.48,1005.16,63.6,486.07 +27.51,63.73,1009.97,66.14,440.81 +28.62,70.32,1008.87,46.67,431.03 +20.48,60.29,1017.16,72.09999999999998,455.51 +27.03,71.14,1010.33,66.25,430.41 +28.31,70.32,1007.88,47.0,432.5 +16.6,41.93,1022.01,48.98,467.51 +14.67,71.14,1019.84,77.72,458.8 +5.68,40.35,1012.11,92.86,486.79 +29.66,59.22,1013.25,61.2,441.58 +6.99,39.37,1020.19,75.06,487.18 +25.61,74.22,1010.26,75.15,438.45 +11.31,39.61,1018.74,68.9,471.92 +29.04,76.09,1007.52,75.44,430.32 +16.5,53.29,1017.7,95.66,458.37 +22.26,60.77,1018.26,85.94,442.58 +25.95,59.92,1010.05,76.05,443.93 +28.09,70.02,1010.84,51.29,437.83 +8.36,40.67,1014.99,73.65,489.1 +24.88,49.16,1006.04,64.54,445.18 +14.34,42.86,1031.75,66.81,466.17 +18.16,39.99,1008.13,68.5,461.16 +20.57,44.9,1008.39,62.69,456.18 +16.85,39.64,1008.82,80.81,464.2 +24.56,63.21,1013.79,82.38,444.34 +9.54,41.17,1019.79,65.61,481.18 +21.43,60.95,1015.27,75.48999999999998,449.12 +24.15,71.73,1009.76,85.16,436.55 +21.87,74.87,1009.28,85.4,442.37 +15.3,41.76,1022.57,71.56,466.59 +19.45,41.1,1001.88,52.16,458.26 +27.99,71.64,1007.79,72.67,437.81 +21.03,69.05,1002.17,75.34999999999998,444.35 +31.84,77.95,1014.9,55.35,433.28 +29.83,71.43,1011.93,55.8,439.34 +10.08,37.92,1010.47,66.37,474.63 +18.36,51.43,1010.57,90.17,459.8 +16.4,38.01,1022.2,73.05,463.79 +13.03,42.86,1014.39,86.25,475.03 +18.88,62.96,1020.62,82.01,456.18 +11.87,41.78,1012.97,64.79,470.84 +23.16,57.76,1017.74,63.79,451.79 +15.39,42.28,1007.35,81.34999999999998,467.3 +16.84,56.03,1020.25,70.37,437.14 +14.65,44.84,1023.39,87.76,467.18 +18.97,44.85,1014.86,46.31,466.17 +26.22,69.89,1015.46,76.63,433.61 +7.07,37.49,1010.35,87.19,481.58 +17.4,44.9,1020.5,77.11,457.75 +30.05,73.68,1014.95,70.6,434.92 +14.01,45.08,1023.28,82.49,464.79 +23.24,63.78,1017.1,63.8,446.95 +23.03,65.12,1016.29,69.8,447.84 +8.58,40.72,1022.04,87.55,480.96 +24.92,48.92,1010.11,36.53,445.56 +25.8,65.38,1009.3,52.28,450.5 +26.31,48.6,1002.64,60.04,440.06 +29.13,62.26,1010.51,52.94,436.37 +11.02,41.17,1018.18,86.86,477.62 +13.61,39.85,1012.78,58.12,475.62 +23.32,69.13,1010.75,91.84,435.27 +30.45,43.21,1011.35,63.59,438.68 +31.7,70.36,1006.26,58.18,438.38 +23.62,73.67,1007.0,90.8,438.33 +12.45,43.67,1013.61,91.34,474.27 +28.85,68.12,1012.05,46.31,436.15 +18.4,43.69,1016.59,52.44,462.05 +28.97,78.92,1011.71,88.5,430.98 +4.93,35.19,1018.04,92.94,486.39 +13.75,44.47,1029.63,70.74,467.14 +16.64,44.9,1021.02,70.34,460.93 +19.04,68.28,1004.52,86.16,444.54 +15.89,43.96,1014.02,75.23999999999998,467.35 +29.03,67.79,1010.67,55.42,444.09 +14.97,58.2,1019.52,81.13,458.68 +16.23,43.52,1020.13,76.3,464.74 +14.74,44.47,1028.29,67.87,462.92 +9.75,52.72,1026.03,78.53,473.41 +27.18,59.27,1012.57,64.18,439.69 +16.22,50.88,1014.33,100.09,454.94 +6.62,42.49,1008.74,94.57,482.74 +9.33,44.03,1011.73,86.04,474.15 +23.14,62.26,1011.87,66.44,444.38 +14.52,40.35,1011.11,69.84,470.8 +33.71,69.98,1013.09,42.62,431.99 +14.84,42.03,1017.47,79.27,466.2 +13.48,41.92,1030.2,65.96,463.9 +31.4,71.06,1008.44,74.77,433.34 +27.44,66.56,1005.51,69.28,428.0 +22.68,70.47,1010.86,82.8,441.47 +9.03,40.71,1025.98,81.94,484.97 +14.36,41.26,1021.16,73.43,462.25 +10.06,43.22,1014.1,85.7,473.0 +22.76,49.02,1007.5,88.56,442.84 +24.79,75.59999999999998,1017.07,68.23,440.05 +34.97,73.56,1006.57,44.69,435.15 +27.64,75.59999999999998,1017.35,54.78,441.04 +18.37,51.86,1018.8,74.3,461.14 +7.91,39.96,1023.57,88.44,475.52 +21.8,65.94,1012.02,63.52,448.66 +29.42,71.32,1002.26,67.13,437.47 +19.01,58.46,1017.14,90.99,446.18 +24.01,67.17,1007.44,86.87,443.09 +11.69,39.22,1017.05,55.51,472.76 +22.01,58.46,1016.26,75.98999999999998,443.75 +13.74,42.74,1029.54,70.0,465.92 +12.27,43.8,1023.21,57.0,468.55 +12.88,43.8,1023.19,59.18,468.19 +32.06,71.85,1007.9,56.44,426.07 +23.46,59.27,1010.6,79.79,445.57 +24.41,52.3,1006.28,70.33,442.62 +13.22,44.92,1023.84,87.99,471.43 +13.69,40.83,1008.53,84.81,471.26 +10.31,45.01,1018.42,93.67,473.74 +21.41,54.2,1011.37,82.28,448.11 +24.49,65.46,1015.77,44.95,445.27 +25.72,49.82,1016.19,60.1,452.33 +18.73,46.48,1007.19,79.23,450.74 +22.88,59.21,1011.51,86.93,440.25 +26.59,60.96,1011.9,52.41,439.77 +30.38,71.58,1010.17,50.45,433.75 +18.94,47.83,1005.18,78.59,455.19 +25.17,64.79,1017.87,63.26,442.15 +20.55,48.98,1016.1,63.89,452.52 +10.03,42.18,1017.3,85.99,475.74 +25.03,60.27,1017.9,72.04,438.24 +7.82,41.16,1023.3,87.7,475.66 +33.43,69.88,1006.86,44.84,435.59 +11.33,41.5,1013.58,88.7,475.01 +12.34,40.62,1016.28,53.6,466.47 +4.78,42.85,1013.07,94.72,479.09 +14.03,49.15,1020.5,83.65,467.16 +26.11,47.43,1009.01,56.09,445.36 +24.67,70.94,1007.99,75.64,443.51 +14.28,44.84,1024.84,79.09,474.57 +26.74,59.87,1012.5,62.88,447.88 +29.83,62.66,1007.98,47.07,438.71 +17.51,44.9,1009.05,74.91,455.01 +30.05,69.34,1008.26,61.5,436.82 +15.85,49.69,1015.48,88.65,464.72 +32.5,71.37,1003.75,43.8,433.7 +30.56,69.04,1009.29,55.73,442.24 +23.32,69.23,1011.75,75.59,436.18 +18.0,52.08,1003.07,100.09,450.85 +25.45,70.04,1011.2,82.48,430.2 +17.37,40.55,1001.19,71.42,460.97 +16.43,41.79,1005.47,76.89,455.85 +19.15,44.89,1009.6,74.52,451.09 +16.0,39.16,1016.37,77.63,468.49 +10.87,44.71,1021.38,58.22,484.63 +21.98,55.97,1009.12,89.51,442.65 +21.92,61.87,1009.68,58.83,445.52 +14.62,42.86,1015.56,84.5,470.79 +20.9,67.07,1005.43,82.85,443.46 +23.45,69.04,1010.5,80.77,442.48 +7.31,43.02,1014.19,86.43,484.82 +22.21,61.87,1010.9,54.22,446.62 +20.83,49.02,1009.45,91.92,445.31 +14.71,44.0,1024.98,85.08,462.87 +19.92,63.31,1015.02,82.71,443.54 +31.85,73.20999999999998,1000.98,72.2,435.94 +24.1,71.97,1009.92,91.27,443.09 +12.42,38.25,1012.76,82.23,472.3 +28.79,70.79,1003.83,65.9,425.64 +17.05,44.88,1017.69,88.19,459.63 +31.59,62.7,1009.3,50.16,442.58 +14.93,41.79,1008.88,81.48,456.75 +24.44,69.13,1011.1,87.62,434.34 +26.05,65.59,1012.78,67.03,437.04 +26.48,51.43,1006.76,74.3,438.1 +17.19,37.2,1011.84,67.59,468.4 +6.25,39.04,1019.65,71.27,484.14 +31.12,67.69,1005.3,50.46,425.21 +11.16,40.05,1014.95,88.38,479.11 +31.16,69.88,1007.01,68.28,433.24 +19.27,43.14,1013.17,39.85,463.14 +17.79,43.52,1020.65,68.29,458.57 +22.76,58.96,1013.85,55.95,454.05 +5.66,39.42,1024.7,78.52,482.11 +21.75,67.45,1014.89,67.09,445.1 +24.66,58.86,1013.86,56.39,444.42 +18.16,39.99,1007.73,70.54,463.69 +25.26,61.08,1013.68,71.72,447.46 +23.6,48.98,1015.41,48.28,448.43 +22.89,65.34,1015.53,61.0,450.53 +28.82,71.43,1011.51,58.58,443.68 +21.57,69.23,1011.94,81.73,437.55 +11.03,42.32,1017.26,90.56,470.92 +15.75,39.16,1016.31,77.98999999999998,468.87 +13.67,44.92,1023.6,85.35,467.71 +11.58,39.69,1005.17,86.55,469.6 +32.31,62.04,1010.41,39.39,450.13 +23.67,72.23999999999998,1011.22,90.45,435.94 +11.29,35.76,1019.32,58.91,473.74 +13.58,49.83,1008.9,86.8,465.82 +10.54,41.93,1016.64,93.52,479.65 +24.96,74.98999999999998,1008.25,80.52,440.91 +24.53,74.78,1009.9,78.34,446.3 +12.12,41.17,1017.68,78.72,470.67 +22.99,56.57,1013.93,78.77,445.44 +31.15,67.45,1014.85,42.11,431.97 +20.2,64.45,1009.03,61.77,452.33 +10.9,41.46,1016.66,86.2,479.45 +27.04,48.41,1008.57,60.73,441.21 +29.72,74.78,1009.32,55.25,438.19 +29.86,69.34,1007.76,54.12,433.57 +28.18,73.88,1005.89,75.41,434.48 +27.0,69.4,1004.86,82.2,433.83 +33.63,70.4,1004.02,53.6,430.05 +10.44,37.83,1006.31,97.2,474.42 +13.39,49.83,1007.14,90.88,466.04 +9.0,43.13,1020.25,81.31999999999998,481.09 +18.94,48.7,1008.5,94.83,451.38 +26.14,71.98,1005.98,82.45,428.91 +5.11,42.07,1004.28,81.8,486.41 +26.62,65.12,1016.0,43.24,441.22 +25.69,62.26,1011.38,74.08,436.36 +8.13,39.99,1011.71,87.89,486.19 +9.97,41.62,1013.99,96.02,464.86 +6.58,43.02,1014.03,84.95,488.22 +13.9,42.86,1030.82,71.89,473.76 +12.33,39.28,1011.84,80.01,476.49 +7.26,36.08,1021.47,83.15,483.58 +12.29,40.03,1017.62,89.64,472.65 +33.82,77.17,1008.96,58.91,435.58 +9.27,40.22,1008.1,89.24,481.23 +23.44,62.52,1016.46,67.21,447.19 +31.63,69.59,1008.66,61.81,436.89 +27.28,51.43,1011.46,51.38,450.53 +21.45,45.09,1013.83,52.26,453.15 +25.14,69.13,1011.15,85.67,433.95 +20.12,45.09,1013.73,57.78,448.35 +16.36,53.82,1015.05,71.95,461.62 +19.77,65.06,1016.22,74.95,448.26 +31.92,75.33,1001.81,61.97,436.38 +26.52,43.77,1011.49,46.98,440.31 +11.52,40.03,1017.56,87.87,472.31 +29.91,74.33,1013.22,39.76,430.26 +15.01,39.52,1017.53,72.0,468.02 +28.39,65.51,1014.52,66.48,438.78 +25.3,71.29,1007.86,62.98,437.17 +16.63,53.82,1015.18,66.09,458.29 +10.41,44.68,1023.53,91.38,474.7 +26.86,68.08,1012.99,50.04,436.25 +10.48,36.71,1023.18,81.37,473.3 +10.58,42.34,1022.32,94.01,474.91 +6.94,38.91,1018.94,90.64,485.12 +20.64,49.21,1014.86,58.47,454.2 +25.69,73.18,1012.64,86.35,432.82 +22.48,71.29,1008.15,75.41,444.71 +6.63,39.37,1020.33,76.18,489.16 +33.4,69.98,1013.29,47.78,432.44 +15.11,42.99,1007.53,85.75,466.25 +8.99,36.66,1028.11,71.98,481.03 +9.6,41.82,1032.93,72.63,475.01 +9.42,41.4,1029.21,86.4,474.75 +23.62,68.63,1013.18,50.57,447.3 +28.19,71.97,1008.85,84.67,438.8 +26.39,49.16,1005.68,56.18,442.87 +24.93,47.01,1014.28,66.04,455.06 +21.28,70.72,1010.29,86.22,445.54 +8.73,41.92,1029.41,89.72,480.99 +6.99,35.19,1019.32,68.95,480.05 +30.7,71.58,1010.0,48.96,429.27 +15.82,44.2,1018.96,66.73,460.2 +23.19,49.82,1014.59,70.52,451.08 +10.27,42.34,1022.69,92.78,474.55 +14.04,39.64,1011.09,87.22,472.31 +20.42,62.96,1020.34,84.0,452.08 +17.31,58.49,1011.8,92.77,456.84 +13.51,43.41,1015.94,75.22,463.86 +7.39,39.81,1019.45,85.02,482.99 +26.71,76.86,1002.86,74.5,437.31 +31.74,79.73999999999998,1007.07,61.47,431.72 +21.46,50.59,1016.75,67.14,453.67 +12.75,44.03,1007.29,89.46,465.86 +14.43,44.84,1024.34,84.0,467.45 +23.93,68.28,1005.16,69.91,444.95 +10.62,42.02,999.83,96.66,472.41 +14.74,43.71,1024.35,81.53,465.49 +7.87,41.17,1020.33,77.77,486.2 +22.16,65.48,1017.22,70.51,446.0 +7.94,43.65,1018.75,59.45,479.8 +26.56,65.59,1012.6,64.25,443.66 +31.03,69.59,1007.77,63.96,432.56 +29.09,70.98,1007.86,80.34999999999998,439.34 +7.31,42.18,1014.75,86.75,477.38 +10.03,41.62,1014.55,95.61,462.73 +10.28,39.64,1010.45,74.15,477.65 +29.86,64.79,1017.37,44.8,439.89 +29.24,60.23,1009.62,59.71,438.24 +17.34,47.03,1013.36,98.13,463.89 +13.56,42.34,1017.95,93.83,462.6 +10.62,39.96,1025.37,96.64,470.8 +27.37,69.23,1013.25,48.02,433.18 +13.61,42.34,1017.57,91.35,465.65 +12.81,44.58,1016.49,80.76,475.5 +21.83,62.91,1011.07,91.34,443.76 +22.97,62.4,1010.25,75.18,445.3 +24.33,46.93,1013.72,48.27,447.43 +23.49,64.63,1020.75,65.16,450.28 +17.13,42.86,1014.15,73.59999999999998,463.09 +14.86,44.71,1018.3,49.46,466.38 +24.15,64.63,1020.72,58.06,448.87 +7.71,36.25,1027.92,89.84,481.74 +24.82,71.94,1010.5,64.67,438.69 +11.65,41.54,1020.09,67.96,476.4 +10.25,41.46,1020.65,87.07,481.94 +5.78,40.62,1016.55,84.98,484.13 +9.35,44.03,1011.02,88.11,476.25 +10.76,40.43,1025.98,79.65,490.78 +25.76,57.32,1011.93,43.61,440.26 +14.57,37.86,1022.44,68.82,463.58 +13.6,39.82,1013.34,86.1,470.69 +29.36,78.05,1011.12,64.17,434.29 +23.12,69.71,1008.98,84.41,442.21 +23.39,63.94,1010.54,89.94,441.44 +25.45,67.83,1009.47,57.97,429.95 +27.65,48.41,1008.54,58.25,440.94 +30.24,73.9,1006.74,56.39,441.31 +13.78,40.0,1018.38,68.67,458.74 +24.66,69.94,1006.56,60.91,432.68 +17.1,48.98,1016.48,85.63,454.43 +27.37,65.06,1013.09,50.92,440.5 +20.11,51.19,1007.82,92.06,449.03 +12.24,41.62,1013.38,90.26,461.23 +28.5,79.73999999999998,1006.75,87.09,433.08 +14.64,42.77,1017.59,79.59999999999998,464.27 +18.06,65.48,1018.79,77.95,454.34 +14.79,38.73,999.83,86.45,470.28 +35.2,73.56,1006.56,45.72,434.37 +22.93,51.19,1009.3,82.8,443.57 +25.73,66.54,1010.07,55.97,437.07 +18.77,50.66,1014.89,87.34,457.07 +11.52,40.8,1024.31,73.48999999999998,479.56 +8.84,42.49,1010.28,89.09,481.58 +21.24,60.84,1017.99,82.22,445.71 +15.67,45.17,1018.73,94.74,462.09 +22.99,46.21,1010.71,60.11,444.36 +23.93,64.05,1013.09,86.02,440.66 +34.33,69.05,1000.89,37.9,430.56 +29.85,68.24,1007.01,30.99,433.43 +30.1,67.45,1014.23,39.04,434.01 +6.85,37.49,1011.01,84.53,483.12 +26.53,54.2,1012.9,66.73,439.96 +24.2,59.07,1009.25,88.25,441.93 +24.6,75.23,1012.04,76.77,434.07 +30.1,66.25,1009.38,65.41,434.99 +21.6,59.8,1016.9,76.59,450.14 +24.9,58.49,1011.06,65.14,444.19 +26.9,60.93,1007.1,67.32,435.87 +23.07,57.17,1009.84,76.8,444.08 +24.85,70.47,1006.64,85.37,434.47 +30.3,73.9,1006.72,55.13,440.79 +32.18,69.75,1009.94,52.91,438.26 +29.11,74.78,1009.6,56.93,438.75 +21.37,65.94,1010.73,75.09,444.74 +26.53,69.71,1009.88,76.26,446.17 +8.9,40.77,1011.67,90.26,479.18 +22.45,63.77,1014.57,87.44,444.26 +28.9,71.25,1000.73,77.23999999999998,431.52 +18.55,46.48,1007.34,80.67,452.37 +20.92,63.86,1020.49,72.98,449.09 +14.38,45.09,1012.95,86.1,464.27 +8.9,41.4,1030.83,85.63,472.95 +11.1,44.85,1014.27,65.08,477.03 +20.85,59.21,1012.9,75.97,444.44 +26.27,71.98,1005.72,86.15,427.65 +15.61,40.89,1010.48,80.26,467.3 +3.26,41.31,996.32,100.0,489.38 +27.05,77.95,1009.57,76.56,434.09 +19.54,50.66,1014.7,84.53,456.61 +6.42,35.57,1025.58,79.63,485.86 +26.19,65.61,1014.51,54.52,443.73 +9.84,40.22,1009.5,85.38,479.65 +10.86,44.85,1014.15,88.36,476.87 +33.33,73.03,1014.2,42.28,436.05 +9.25,41.82,1033.25,74.73,478.48 +14.7,44.9,1021.87,83.9,468.69 +30.17,75.08,1005.17,55.89,438.89 +11.74,43.56,1015.14,70.72,477.5 +23.27,60.84,1019.13,67.24,440.22 +25.21,59.21,1013.19,62.85,438.7 +15.18,44.2,1019.6,72.45,462.09 +29.03,43.21,1011.83,65.23,434.11 +24.18,58.49,1011.3,77.81999999999998,445.49 +7.62,44.71,1020.56,69.96,486.07 +29.53,71.97,1008.6,79.25,434.96 +24.27,74.93,1012.73,73.81,443.06 +28.4,74.93,1013.65,48.6,442.23 +22.2,57.17,1009.82,78.43,447.75 +17.58,44.9,1020.52,71.48,459.78 +6.71,40.72,1022.78,80.69,483.11 +28.32,72.58,1007.77,78.34999999999998,428.06 +8.11,42.18,1014.82,93.09,473.62 +34.76,68.94,1006.75,41.31,427.42 +28.82,64.79,1016.74,56.34,445.1 +25.43,60.95,1014.62,51.39,444.65 +24.78,57.19,1008.08,65.4,443.62 +6.94,39.61,1017.74,81.43,480.07 +27.5,68.24,1010.38,73.44,430.9 +21.43,63.94,1012.68,99.68,445.29 +26.84,70.36,1007.41,71.47,442.17 +25.69,64.45,1013.05,42.0,450.94 +27.92,74.98999999999998,1005.47,75.13,431.76 +23.69,58.05,1012.08,74.26,444.46 +22.89,62.39,1007.84,88.16,448.13 +15.43,38.58,1016.58,81.17,463.44 +21.84,58.86,1014.13,69.67,445.16 +16.8,56.03,1020.65,85.26,461.96 +18.34,50.59,1018.42,83.95,457.17 +21.1,49.16,1006.76,86.08,442.78 +8.49,39.61,1021.05,87.74,483.94 +11.95,42.03,1017.58,90.89,465.2 +5.05,35.57,1027.03,80.02,491.4 +4.71,42.07,1005.35,82.26,486.79 +13.65,42.74,1026.58,71.48,468.87 +25.14,67.32,1013.96,41.78,435.39 +8.88,39.66,1015.21,88.29,481.45 +11.3,43.14,1019.56,99.83,469.73 +30.61,67.69,1004.97,47.46,429.8 +15.69,39.3,1019.03,60.57,464.17 +20.58,50.78,1008.87,91.18,445.03 +24.66,66.49,1010.83,70.06,438.01 +21.93,62.91,1013.45,74.62,449.17 +25.2,61.08,1013.04,74.28,447.09 +11.75,35.76,1018.99,57.92,473.01 +28.16,70.72,1009.81,65.32,441.37 +34.96,68.94,1006.17,59.26,431.48 +16.63,43.77,1012.25,75.09,458.66 +12.1,44.77,1019.1,75.84999999999998,463.11 +14.48,39.0,1016.75,75.97,464.56 +30.96,71.77,1006.26,52.76,425.66 +26.89,49.16,1003.84,41.22,442.39 +32.09,69.4,1003.1,56.91,430.62 +9.95,41.82,1033.09,69.44,477.52 +16.71,40.55,1004.45,81.64,464.13 +17.34,46.48,1007.18,83.15,452.06 +26.2,71.14,1007.92,72.95,431.7 +14.51,42.77,1017.47,81.95,463.37 +19.81,43.56,1013.39,38.13,460.59 +13.85,41.39,1018.62,75.55,471.45 +11.06,41.5,1013.09,89.8,476.24 +14.45,43.34,1015.47,83.33,462.16 +3.99,39.64,1011.53,83.58,492.06 +24.74,59.39,1015.23,74.64,437.49 +11.48,41.2,1012.88,90.04,478.34 +19.09,43.14,1012.34,45.75,463.3 +22.26,60.37,1008.14,92.37,441.33 +14.17,39.59,1010.99,94.08,464.17 +24.67,58.05,1011.31,69.95,444.57 +26.87,74.98999999999998,1002.48,71.91,437.78 +22.32,48.41,1008.68,79.11,445.36 +14.94,42.77,1018.06,75.34999999999998,460.51 +19.32,44.71,1015.3,28.81,464.38 +17.58,39.63,1004.84,80.43,467.33 +24.19,47.45,1008.26,64.25,446.3 +32.0,73.17,1009.92,42.47,433.72 +12.64,41.79,1016.38,92.65,461.46 +21.86,63.09,1016.64,87.94,442.79 +23.07,69.23,1011.78,76.06,437.08 +15.98,41.48,1017.0,55.73,456.31 +11.48,41.14,1027.67,90.5,464.07 +26.07,69.23,1013.32,54.03,436.94 +13.74,44.21,1023.26,84.2,466.67 +29.23,75.59999999999998,1017.72,52.26,438.92 +9.44,43.99,1020.31,98.06,475.01 +29.51,75.59999999999998,1017.92,50.61,431.18 +13.12,44.21,1019.57,89.29,469.09 +26.23,59.14,1016.98,75.54,437.85 +14.55,42.74,1027.29,66.64,457.77 +20.3,58.46,1015.93,82.13,448.79 +12.57,39.18,1023.09,77.28,471.87 +9.34,41.49,1020.58,97.59,471.04 +7.93,42.28,1008.43,85.57,484.75 +19.6,48.14,1013.18,68.71,456.57 +21.35,57.76,1017.36,73.09999999999998,452.57 +10.59,38.38,1021.58,68.23,474.94 +27.54,75.59999999999998,1018.26,57.89,440.87 +11.12,44.92,1025.58,93.52,470.82 +18.82,61.27,1019.5,72.23,455.29 +25.11,62.26,1011.12,78.01,434.97 +21.89,58.05,1011.31,85.71,441.76 +12.87,48.04,1012.47,100.13,465.56 +25.54,60.37,1006.49,71.54,436.14 +7.05,40.69,1020.53,89.67,476.75 +9.11,36.66,1026.47,74.79,480.74 +24.77,71.94,1006.77,88.86,432.27 +8.51,40.81,1015.54,83.16,481.02 +17.1,62.1,1020.39,93.63,453.4 +7.11,39.9,1008.82,87.76,484.21 +20.01,56.65,1020.77,74.45999999999998,457.01 +25.27,63.91,1009.82,75.48,440.39 +29.72,54.2,1012.86,38.48,438.84 +27.42,65.74,1013.43,69.42,440.52 +28.44,77.54,1011.73,77.3,433.21 +25.89,48.41,1008.49,68.58,440.92 +31.39,69.59,1008.28,62.86,435.76 +17.1,49.69,1005.53,81.81999999999998,457.32 +15.24,44.45,1020.56,66.13,460.94 +13.9,39.59,1011.84,94.74,465.0 +30.52,70.4,1003.9,64.33,438.29 +21.78,68.28,1001.0,79.3,443.24 +28.07,68.08,1013.13,44.67,437.65 +26.07,71.37,1008.6,79.48,439.25 +18.0,43.7,1015.4,61.28,464.26 +9.93,40.67,1018.08,69.74,485.23 +23.48,65.12,1015.82,60.83,445.66 +12.66,41.2,1015.88,89.12,466.49 +25.95,59.27,1010.9,70.42,444.19 +10.34,41.46,1017.75,89.73,478.03 +18.2,39.63,1005.35,79.05,468.49 +23.64,70.04,1011.09,83.35,435.21 +17.38,43.14,1011.09,61.9,459.02 +27.67,69.59,1009.13,82.15,437.29 +22.18,59.39,1014.82,85.31,440.94 +14.86,37.85,1010.58,86.8,467.71 +25.9,47.45,1007.8,55.96,443.13 +25.88,66.48,1004.24,63.16,434.4 +21.12,47.24,1003.79,70.55,462.41 +20.03,62.26,1012.15,82.54,447.4 +21.86,49.21,1014.61,53.31,452.77 +11.71,40.05,1014.49,86.09,471.49 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/train.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8e4f06f47506230c9250aba198646e237e7e5c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/val.csv @@ -0,0 +1,957 @@ +AT,V,AP,RH,PE +25.69,57.32,1012.34,44.18,441.43 +17.98,59.15,1012.09,83.03,451.97 +11.52,40.75,1016.23,85.18,477.19 +26.43,66.48,1004.36,55.9,435.59 +24.26,69.51,1013.43,53.23,442.56 +19.68,62.96,1020.41,82.26,453.58 +10.28,41.46,1018.44,85.23,479.66 +25.15,62.91,1012.23,48.22,444.19 +23.28,72.23999999999998,1011.3,90.5,434.21 +11.6,40.27,1008.55,72.12,473.89 +22.75,58.79,1011.44,84.47,445.67 +6.77,39.81,1017.01,87.68,488.27 +19.48,58.66,1013.32,73.16,454.4 +23.93,65.59,1011.09,87.26,444.9 +17.77,44.6,1016.97,54.25,460.13 +33.58,77.54,1010.19,53.49,433.75 +7.49,39.81,1019.03,87.29,483.59 +6.33,42.07,1004.25,77.09999999999998,484.57 +12.43,41.62,1011.87,80.56999999999998,460.61 +25.34,64.27,1013.38,66.02,443.94 +17.17,63.09,1020.54,95.98,446.75 +27.75,69.89,1015.41,73.01,430.33 +29.62,73.18,1012.21,61.6,427.22 +24.35,70.04,1010.92,73.88,438.4 +27.39,69.14,1008.82,78.34999999999998,435.22 +31.18,70.36,1006.38,56.74,438.46 +26.56,49.02,1007.65,70.78,438.82 +24.24,71.58,1010.15,91.14,437.75 +11.82,41.26,1020.74,91.14,466.95 +14.38,40.1,1015.51,81.23,467.28 +26.65,74.16,1008.27,94.54,431.47 +26.16,67.9,1005.81,61.02,444.06 +5.52,39.33,1009.74,95.25,492.39 +31.24,68.3,1015.89,42.84,435.2 +26.22,67.45,1013.7,44.04,440.17 +21.67,69.71,1010.46,96.83,440.16 +13.4,40.89,1010.67,91.66,472.36 +13.78,43.22,1011.31,69.7,463.71 +9.88,39.66,1017.81,76.05,480.05 +10.34,41.74,1020.07,79.17,480.84 +26.86,71.32,1007.38,81.14,430.44 +12.95,41.38,1021.97,53.83,474.46 +26.94,65.61,1014.31,49.73,443.9 +21.81,43.77,1011.97,64.72,453.13 +18.9,56.03,1020.77,71.83,457.66 +14.87,41.23,997.39,82.06,465.01 +20.46,59.21,1018.42,85.89,445.22 +24.3,69.94,1007.02,62.14,438.92 +24.58,71.94,1006.85,89.02,433.99 +9.88,40.0,1021.4,92.06,481.58 +29.85,71.58,1010.04,58.66,432.26 +27.5,65.59,1011.23,65.37,441.27 +6.14,40.62,1015.71,86.51,481.66 +20.76,51.19,1009.0,87.23,445.0 +25.55,58.95,1017.12,51.84,442.3 +10.24,41.17,1019.73,82.04,479.78 +14.45,43.71,1025.26,84.23,463.6 +30.76,59.57,1010.66,61.76,439.32 +5.72,40.81,1025.78,92.46,487.8 +30.24,68.24,1009.68,64.67,426.25 +34.61,73.03,1013.61,36.91,438.56 +24.14,62.66,1007.33,73.27,439.93 +26.76,70.98,1007.64,90.51,437.83 +18.47,62.1,1019.86,82.57,452.51 +29.51,75.59999999999998,1017.92,50.61,431.18 +29.05,71.85,1008.6,78.69,428.39 +21.89,45.38,1014.42,68.95,459.45 +24.67,63.56,1013.75,67.56,446.3 +30.67,71.29,1008.36,52.08,430.28 +25.21,49.82,1016.44,63.14,450.75 +9.76,41.01,1019.66,97.59,467.6 +18.31,62.1,1020.38,79.02,455.24 +33.11,77.54,1010.36,50.99,431.77 +26.18,69.14,1006.54,85.95,436.0 +8.72,40.02,1031.32,78.09,477.86 +17.06,58.96,1013.83,73.95,461.15 +8.01,40.62,1015.62,86.43,476.22 +14.35,35.71,1016.1,60.86,468.9 +29.74,70.32,1008.1,52.72,432.69 +23.0,49.5,1014.15,66.68,454.44 +17.09,42.42,1009.03,72.01,464.11 +14.0,40.8,1026.17,54.82,474.87 +25.02,60.29,1017.49,54.75,445.61 +13.86,41.58,1020.69,70.74,461.56 +27.58,78.05,1010.83,94.98,431.95 +26.41,60.93,1007.16,66.02,436.71 +11.02,41.44,1015.28,83.53,476.68 +25.48,58.95,1017.02,51.16,440.42 +15.47,48.98,1016.42,89.85,457.55 +21.48,47.43,1006.88,63.54,449.2 +18.86,51.43,1010.27,86.0,446.91 +20.94,44.58,1016.98,59.65,463.69 +15.02,41.48,1015.19,58.69,456.04 +28.71,70.32,1011.78,76.53,435.95 +14.28,42.77,1020.06,81.77,466.75 +26.24,77.95,1014.19,85.21,438.01 +24.31,63.86,1019.47,58.54,442.69 +8.51,40.78,1023.51,89.84,471.11 +16.07,65.46,1013.88,87.11,450.54 +8.14,39.96,1023.41,88.86,477.05 +18.43,44.63,1019.76,39.99,458.75 +34.2,68.14,1002.7,56.09,427.05 +17.66,62.1,1019.49,86.3,452.03 +23.77,51.43,1006.67,84.09,441.54 +16.59,39.54,1007.97,70.58,464.19 +15.01,43.56,1014.65,61.82,465.84 +29.09,70.02,1010.13,48.06,443.27 +20.1,59.87,1018.97,87.23,444.71 +9.0,39.18,1024.38,84.91,483.26 +16.85,50.9,1013.26,83.94,460.68 +28.44,69.4,1003.98,73.51,433.44 +9.51,40.81,1015.69,82.52,475.29 +25.99,49.82,1015.95,58.56,452.09 +6.86,41.17,1020.12,79.14,490.23 +8.57,39.69,1000.91,99.9,474.29 +23.3,48.78,1018.17,75.36,441.08 +32.95,67.9,1005.88,45.15,425.89 +24.41,73.67,1007.39,86.92,435.56 +17.51,39.54,1010.22,71.53,462.12 +31.68,73.68,1014.85,64.0,431.11 +9.0,41.54,1018.83,79.61,484.08 +18.4,43.96,1012.4,77.81,464.63 +13.72,49.83,1006.88,89.49,463.65 +7.16,38.56,1019.17,70.1,486.12 +14.33,43.41,1015.43,55.4,462.94 +13.53,42.86,1014.0,90.63,471.73 +13.11,41.58,1020.43,74.31999999999998,460.44 +23.98,50.32,1008.41,67.75,443.45 +31.08,59.57,1010.76,60.49,442.88 +33.62,77.17,1009.38,63.71,431.03 +11.93,38.78,1013.15,96.08,474.57 +21.97,68.12,1012.53,75.12,443.39 +23.83,49.21,1012.93,46.79,446.23 +4.96,45.87,1007.32,98.78,481.88 +31.3,70.79,1004.3,54.37,428.75 +17.75,49.25,1020.86,63.67,454.41 +29.89,71.29,1009.0,55.72,431.45 +12.11,41.17,1019.46,62.59,475.53 +23.85,74.22,1009.99,82.72,441.66 +12.16,40.81,1025.79,70.97,476.63 +23.71,60.23,1009.76,90.67,439.66 +22.49,58.71,1009.75,76.43,443.33 +18.9,57.5,1016.21,93.9,451.42 +27.86,63.07,1011.11,56.81,440.48 +26.04,71.14,1011.66,68.95,433.78 +19.51,44.05,1008.52,78.38,451.7 +10.92,40.92,1021.84,83.03,467.05 +8.51,42.32,1015.08,84.89,476.6 +19.68,68.28,1002.62,71.57,452.47 +27.75,70.4,1006.65,90.21,436.53 +21.59,66.54,1004.88,90.54,441.71 +13.93,42.86,1032.37,71.11,468.88 +16.55,41.66,1011.45,55.53,465.14 +25.53,71.85,1009.19,74.7,431.26 +20.67,57.5,1014.42,81.89,453.29 +25.21,69.48,1010.99,75.27,436.02 +9.29,39.04,1022.72,74.29,482.55 +33.92,77.95,1010.15,58.89,433.01 +25.63,71.58,1010.14,87.57,433.76 +27.21,66.49,1013.57,40.11,439.04 +10.42,41.26,1008.48,96.76,472.54 +25.02,59.44,1012.49,73.65,444.08 +24.2,59.43,1009.69,62.3,440.66 +15.82,44.88,1018.59,78.88,461.9 +11.46,38.91,1012.34,77.37,477.5 +13.17,36.71,1012.82,72.76,474.93 +23.47,65.61,1014.57,69.83,447.16 +10.77,41.46,1021.42,87.18,479.22 +28.47,69.23,1013.18,40.73,434.12 +30.03,70.02,1010.07,64.2,436.88 +13.89,35.71,1016.4,65.49,468.54 +13.26,41.78,1009.77,61.69,467.78 +12.31,37.73,1023.3,63.01,472.08 +19.61,45.01,1014.84,64.42,461.97 +18.58,44.6,1016.61,48.15,459.06 +23.18,51.43,1011.56,81.83,449.94 +28.33,68.14,1004.63,71.21,431.27 +14.82,40.0,1016.32,66.3,458.46 +21.42,56.89,1014.39,84.05,444.86 +26.62,76.2,1006.06,69.13,437.81 +28.17,72.43,1007.37,68.92,428.88 +20.86,63.73,1008.54,96.83,440.42 +25.45,63.76,1009.96,67.78,439.56 +29.15,73.42,1011.43,66.49,432.26 +32.33,67.83,1008.11,57.48,427.84 +13.45,45.87,1008.73,87.06,464.88 +29.91,76.86,998.59,72.41,432.6 +24.93,73.5,1011.28,83.09,437.35 +9.71,42.44,1014.29,94.03,481.03 +16.69,53.82,1015.39,63.62,458.96 +22.36,51.43,1007.47,87.33,442.53 +25.57,44.05,1005.79,65.14,443.84 +7.36,41.01,1025.49,96.48,477.37 +14.22,42.32,1015.54,77.23,465.0 +18.33,49.64,1025.36,62.57,468.14 +31.1,68.51,1012.99,54.3,428.68 +27.62,71.14,1011.6,52.8,434.72 +17.04,56.03,1020.38,68.69,462.48 +17.31,44.71,1017.43,35.4,463.05 +31.61,69.04,1008.11,47.96,439.19 +28.14,51.43,1012.16,52.67,445.33 +8.77,40.46,1019.68,77.84,475.0 +6.15,40.77,1022.42,88.57,482.49 +21.39,52.3,1009.2,79.77,446.87 +12.29,40.71,1019.71,83.09,469.75 +11.6,39.96,1011.65,80.79,473.22 +26.68,68.08,1011.41,67.33,433.04 +7.71,38.06,1021.0,83.47,482.78 +10.07,44.68,1023.44,90.95,477.52 +22.08,45.61,1014.02,75.70999999999998,456.71 +30.74,69.59,1008.69,68.04,437.81 +26.49,67.69,1004.61,78.13,430.62 +14.55,44.84,1023.83,87.6,465.14 +16.55,39.64,1009.07,77.8,465.29 +11.68,40.55,1006.48,96.16,474.8 +10.95,40.22,1010.04,78.95999999999998,477.23 +11.83,38.25,1013.36,85.33,473.31 +23.38,48.78,1019.03,78.69,446.18 +29.77,69.48,1009.8,52.6,432.69 +24.12,58.66,1011.55,58.96,450.69 +6.1,39.33,1010.4,95.34,491.37 +6.93,41.14,1027.18,84.67,479.06 +27.6,69.05,1003.87,42.01,436.08 +11.23,41.17,1019.36,56.85,475.85 +18.84,40.79,1005.18,92.46,459.96 +29.47,71.32,1008.07,67.0,437.14 +23.3,72.98999999999998,1008.54,92.11,437.62 +29.15,69.48,1008.68,55.78,430.54 +21.99,42.48,1011.77,74.04,456.65 +21.77,42.23,1013.03,67.44,462.51 +27.61,49.16,1005.01,35.63,441.18 +26.05,65.38,1009.43,52.1,449.82 +14.8,44.71,1014.67,41.71,470.77 +15.71,39.3,1019.2,62.28,462.84 +16.44,53.16,1014.82,75.29,458.49 +17.03,58.49,1011.91,92.16,460.48 +10.12,41.55,1005.78,62.34,475.46 +10.17,41.17,1018.58,87.72,478.04 +23.37,65.46,1016.25,48.64,447.07 +11.98,44.6,1018.59,86.71,470.02 +24.66,48.78,1018.39,71.79,449.11 +16.61,43.77,1012.25,77.23,457.66 +14.79,47.83,1007.27,92.04,463.22 +29.2,64.84,1009.94,55.37,441.9 +23.26,58.2,1016.72,57.98,446.87 +7.19,39.37,1019.67,70.77,480.4 +20.94,49.02,1008.91,87.32,448.18 +27.89,73.20999999999998,1001.32,85.88,431.59 +23.63,71.29,1008.01,70.07,442.65 +20.91,58.2,1018.1,62.8,446.19 +14.91,46.9,1019.59,98.1,461.73 +23.82,73.67,1007.26,88.16,438.42 +32.09,79.73999999999998,1006.92,61.5,432.85 +16.69,46.18,1011.0,97.85,458.57 +17.16,58.86,1016.4,86.39,453.76 +28.05,70.36,1006.73,64.42,434.06 +30.54,70.17,999.42,64.32,434.62 +21.95,50.66,1013.92,70.94,455.23 +24.49,59.87,1018.4,59.95,444.54 +10.62,39.58,1011.9,87.85,479.91 +11.47,25.36,1008.27,95.4,469.51 +24.84,71.73,1009.84,82.41,436.36 +20.66,51.19,1008.81,88.93,447.14 +26.85,63.56,1013.25,52.84,444.39 +25.56,69.13,1002.46,68.26,434.48 +20.0,39.53,1007.59,62.09,456.28 +8.22,41.82,1032.77,71.63,477.86 +21.84,59.39,1015.77,88.12,442.11 +14.26,44.47,1028.81,72.19,465.77 +14.35,39.39,1012.92,82.41,470.53 +22.89,80.25,1006.38,80.25,446.15 +24.34,73.5,1011.31,84.15,440.29 +23.86,59.21,1013.02,73.59999999999998,441.22 +27.71,69.13,1001.63,51.45,432.54 +22.63,70.47,1008.0,82.27,441.92 +31.23,75.08,1004.93,46.19,439.14 +10.31,40.67,1017.61,69.61,485.25 +7.64,39.85,1012.78,88.09,481.53 +31.44,79.73999999999998,1006.95,56.99,431.69 +4.89,45.87,1007.58,99.35,482.69 +27.91,63.76,1010.27,65.67,435.21 +19.05,53.16,1013.22,82.8,455.76 +28.36,69.88,1007.75,84.17,434.03 +27.69,73.91,1005.23,75.70999999999998,435.08 +22.85,59.15,1014.74,63.92,448.61 +23.0,57.76,1017.64,56.86,451.39 +30.04,68.08,1011.04,51.01,429.52 +17.08,38.58,1015.41,73.42,461.49 +27.13,69.45,1013.9,51.16,434.47 +30.65,65.18,1012.51,42.32,436.79 +23.91,50.23,1017.25,68.57,455.41 +7.64,42.28,1008.49,83.42,483.74 +6.77,40.78,1024.86,96.58,478.24 +18.41,44.9,1008.97,73.81,453.12 +14.29,39.59,1010.93,94.53,463.04 +29.29,71.14,1011.49,49.97,432.58 +29.17,67.45,1014.1,46.85,435.08 +23.55,65.94,1011.76,58.44,443.98 +19.05,59.21,1017.99,89.53,451.0 +18.22,49.25,1020.33,61.87,454.66 +14.8,38.73,1003.18,80.73,467.54 +5.28,45.87,1008.25,97.88,479.91 +13.07,43.13,1016.93,70.02,471.47 +21.37,81.56,1006.57,81.56,434.38 +9.96,41.55,1002.59,65.86,475.91 +13.86,41.78,1010.75,57.9,467.39 +11.33,41.16,1019.05,87.13,468.87 +16.81,42.42,1008.95,74.25,462.19 +29.79,67.69,1006.86,55.93,428.71 +14.44,41.2,1015.96,81.97,469.85 +9.08,40.46,1019.48,77.37,476.81 +17.3,57.76,1016.26,87.74,455.75 +27.06,64.45,1008.72,54.21,443.1 +14.64,39.58,1011.46,71.9,467.8 +23.69,77.54,1009.32,89.7,440.21 +9.05,36.3,1027.44,74.84999999999998,479.43 +24.73,74.22,1010.15,79.83,436.55 +19.94,44.9,1008.52,74.69,459.47 +8.73,39.42,1025.63,69.87,474.44 +26.66,73.56,1006.9,99.27,433.62 +31.81,69.88,1007.94,55.91,432.6 +17.47,58.59,1014.03,97.13,449.41 +22.18,62.39,1007.84,85.74,452.31 +18.25,43.14,1011.51,55.16,462.78 +20.34,69.45,1012.76,91.05,442.73 +27.44,58.9,1003.86,66.74,442.19 +27.75,77.23999999999998,1007.48,78.37,433.57 +19.13,59.21,1018.32,89.66,450.81 +19.84,65.48,1019.54,76.59999999999998,449.85 +21.1,62.66,1011.19,83.49,448.8 +20.15,58.59,1014.13,91.96,443.85 +28.85,58.33,1013.78,41.39,444.0 +19.39,60.1,1010.28,83.31,452.57 +21.88,69.71,1010.28,97.64,444.39 +16.34,47.45,1009.41,92.96,448.59 +13.34,40.8,1026.56,64.85,474.47 +3.92,41.31,999.22,95.26,487.35 +21.97,58.12,1015.29,77.47,449.6 +13.89,44.84,1023.66,92.97,466.74 +13.98,40.71,1022.72,71.83,474.46 +16.55,41.93,1022.71,42.73,466.77 +21.17,52.3,1009.36,81.51,447.5 +24.37,65.61,1014.5,65.67,443.13 +24.42,64.79,1016.12,69.32,449.1 +16.54,42.86,1014.85,78.0,465.26 +8.199999999999998,41.14,1025.24,96.26,474.04 +26.17,58.86,1014.52,51.28,443.69 +14.24,39.58,1011.17,70.45,469.94 +14.1,42.18,1015.05,78.25,463.3 +24.91,52.3,1008.72,68.26,441.15 +32.55,69.89,1013.87,40.09,428.84 +20.7,58.16,1016.73,68.19,453.22 +29.7,57.19,1008.41,55.07,436.29 +17.66,60.08,1017.22,86.96,456.62 +30.03,68.84,1011.41,53.82,439.31 +26.45,54.5,1014.96,65.55,450.76 +12.57,41.79,1014.99,87.8,461.88 +30.82,78.87,1012.06,70.69,432.01 +16.97,44.92,1025.21,74.27,460.21 +14.84,38.91,1013.78,69.27,467.83 +20.99,50.78,1008.55,75.14,449.07 +12.35,44.2,1017.81,82.49,471.65 +19.64,46.33,1013.33,98.99,451.45 +29.14,61.5,1009.64,39.95,437.76 +11.82,41.17,1019.5,55.74,475.61 +23.94,51.95,1008.61,73.42,448.67 +17.4,63.09,1020.84,92.58,453.0 +8.949999999999998,43.13,1017.56,94.85,479.14 +29.12,51.43,1005.93,60.66,437.71 +29.13,47.93,1002.5,49.1,435.61 +30.56,71.25,1000.3,70.55,431.92 +19.07,44.63,1020.23,44.93,456.37 +32.96,69.75,1008.86,40.23,435.56 +19.35,39.72,1002.5,51.24,455.29 +31.92,68.3,1015.58,41.55,430.07 +13.85,48.92,1011.68,79.23999999999998,462.38 +26.69,70.36,1006.82,68.29,435.04 +17.66,44.9,1020.5,71.33,457.11 +16.05,38.28,1014.38,73.89,466.75 +6.24,35.77,1019.24,70.7,483.36 +6.43,39.61,1017.51,83.8,480.58 +15.12,39.16,1006.55,76.98999999999998,463.78 +15.84,49.69,1015.14,90.41,462.6 +18.41,42.44,1012.66,65.93,463.2 +15.54,41.96,1011.78,97.46,467.1 +28.26,69.23,1013.01,42.1,436.31 +12.24,40.96,1023.22,78.73999999999998,475.32 +25.45,75.23,1011.41,73.33,441.65 +5.25,42.85,1013.75,89.67,477.78 +9.82,41.04,1026.72,77.28,473.98 +11.44,41.39,1019.59,79.95,478.52 +12.07,38.25,1012.67,81.66,470.36 +28.51,70.02,1010.58,54.68,441.66 +23.47,60.77,1017.19,75.36,444.46 +20.42,45.01,1012.23,66.5,451.28 +21.13,47.43,1006.97,64.26,448.83 +18.62,65.48,1018.45,73.39,451.94 +15.68,43.7,1015.09,58.96,470.29 +7.46,39.81,1018.62,86.73,484.13 +11.38,52.75,1026.19,72.70999999999998,469.9 +21.11,43.43,1010.1,62.62,447.83 +32.38,77.23999999999998,1007.7,61.15,430.96 +19.74,45.38,1015.11,80.67,459.39 +19.18,50.12,1005.99,100.09,444.56 +10.19,37.14,1012.74,73.48,475.01 +20.98,43.77,1010.67,62.73,449.88 +13.47,44.88,1017.56,93.23,476.67 +27.23,44.05,1005.69,58.91,440.2 +7.3,43.65,1019.33,67.62,482.96 +18.26,60.95,1016.94,78.91,457.03 +9.55,40.67,1018.56,70.72,486.34 +26.1,63.56,1013.12,61.0,442.75 +25.88,63.73,1009.48,77.17,438.42 +20.29,63.09,1019.03,76.06999999999998,448.22 +22.58,59.14,1017.2,80.91,439.78 +27.57,60.07,1016.52,54.75,440.12 +30.48,70.04,1010.73,53.7,429.85 +9.27,38.56,1017.69,62.49,475.42 +15.01,42.77,1018.21,73.22,462.6 +31.01,73.5,1010.92,48.61,432.41 +19.62,68.63,1012.26,68.05,453.84 +24.26,47.93,1003.87,70.44,439.16 +14.87,41.76,1022.26,78.20999999999998,464.84 +31.0,71.77,1006.29,48.56,431.07 +28.84,74.67,1016.52,67.43,428.98 +18.48,50.16,1011.45,99.92,452.06 +30.49,64.44,1013.43,51.73,438.09 +27.49,71.94,1008.25,68.29,428.27 +21.76,47.93,1005.34,86.28,444.77 +13.78,44.47,1027.94,71.09,467.22 +25.28,66.25,1009.77,84.55,439.77 +27.17,61.02,1011.38,65.32,437.06 +20.51,42.23,1013.25,71.83,461.78 +15.43,39.16,1016.44,79.8,470.74 +12.7,39.72,1017.89,62.97,467.77 +26.86,72.58,1009.22,88.39,428.69 +26.06,58.59,1012.41,55.22,451.47 +10.56,40.22,1005.08,89.71,478.02 +25.33,73.20999999999998,1002.19,97.24,433.43 +3.0,39.64,1011.0,80.14,485.2 +30.91,69.75,1010.23,59.36,435.7 +27.34,71.64,1008.12,72.22,438.76 +15.34,43.5,1021.18,79.44,459.77 +18.99,59.27,1012.15,89.39,453.4 +12.14,40.27,1007.57,73.22,472.84 +30.75,71.22,1006.47,48.06,437.96 +16.05,41.96,1011.82,96.05,463.72 +14.83,53.82,1016.57,63.47,464.0 +25.12,66.56,1009.22,65.62,436.56 +13.72,41.62,1011.14,75.79,455.52 +20.94,58.16,1016.88,65.43,455.16 +24.81,67.17,1007.71,84.37,442.75 +10.2,41.46,1019.12,83.26,480.11 +26.19,49.3,1003.69,65.88,440.13 +24.7,58.82,1009.4,75.91,442.98 +31.82,73.68,1014.8,40.58,433.32 +10.29,40.56,1017.28,69.13,481.7 +15.94,44.85,1014.29,67.57,462.54 +21.28,70.32,1011.06,90.12,439.0 +12.45,40.1,1015.4,82.61,473.63 +25.15,57.32,1012.41,41.84,440.1 +28.52,57.82,1004.81,57.82,435.4 +22.47,48.6,1002.33,63.23,445.98 +15.21,43.5,1021.6,82.06,464.08 +27.88,63.87,1017.79,40.0,443.24 +32.14,68.31,1010.48,42.15,436.15 +28.28,69.48,1008.56,61.3,428.75 +12.12,38.28,1013.65,90.19,471.19 +13.44,41.14,1026.41,77.26,461.44 +15.12,41.04,1025.95,69.67,460.58 +9.73,40.22,1011.48,87.88,481.42 +14.05,39.59,1011.2,94.54,464.63 +28.43,63.31,1013.44,49.99,432.62 +12.38,41.62,1012.37,84.15,461.07 +7.09,39.37,1020.07,73.26,487.0 +11.69,35.76,1019.02,55.6,471.72 +25.76,63.94,1018.49,42.14,445.78 +14.91,43.34,1015.15,81.56,461.27 +21.91,70.32,1009.17,90.57,439.29 +23.56,73.18,1012.18,87.98,437.92 +19.98,49.15,1021.56,63.89,457.54 +24.33,49.16,1003.46,61.04,441.2 +9.22,40.92,1021.83,85.43,474.51 +32.16,71.32,1005.5,60.23,434.01 +27.29,64.45,1013.46,45.35,446.94 +28.14,61.47,1009.69,64.66,435.35 +26.71,70.4,1007.59,82.63,432.64 +19.83,46.33,1013.27,96.4,451.22 +13.49,43.41,1015.75,57.86,461.06 +14.13,53.82,1016.72,64.85,467.08 +20.6,66.86,1013.08,62.48,451.44 +22.01,60.84,1017.55,83.82,441.9 +5.89,35.77,1019.78,79.58,479.86 +26.02,70.79,1004.21,79.12,428.72 +14.08,41.93,1023.02,59.41,475.15 +24.96,77.54,1008.25,80.59999999999998,433.4 +32.21,71.85,1008.25,58.09,429.15 +26.59,69.13,1009.27,73.95999999999998,430.11 +8.529999999999998,43.14,1012.25,78.88,480.08 +25.94,66.49,1012.83,61.81,433.38 +7.76,39.61,1021.63,80.67,488.32 +27.21,67.45,1013.83,43.26,436.47 +19.08,59.15,1013.1,81.81999999999998,451.33 +30.97,67.9,1005.98,55.6,428.26 +7.53,41.74,1022.45,90.85,487.25 +32.19,69.13,1000.45,48.22,425.21 +27.32,66.54,1004.95,72.58,431.33 +14.92,46.18,1014.21,98.82,465.63 +24.62,72.43,1007.97,84.36,436.89 +14.47,44.66,1016.33,93.52,464.41 +26.35,59.44,1012.16,63.73,443.73 +26.38,65.12,1016.1,47.57,441.07 +24.44,52.84,1006.39,49.05,440.2 +32.63,74.98999999999998,1002.42,40.07,432.79 +29.49,69.71,1009.34,56.35,440.99 +30.58,70.04,1010.4,48.16,431.59 +13.24,39.16,1016.52,86.66,474.48 +12.91,41.66,1013.37,71.52,469.71 +25.1,43.77,1010.9,49.68,444.99 +16.0,43.02,1012.37,39.2,466.01 +23.62,61.87,1010.07,48.77,447.93 +25.54,70.47,1009.28,73.5,436.16 +15.89,41.7,1018.93,82.68,463.33 +23.79,50.16,1005.32,75.81999999999998,435.49 +17.77,56.53,1019.57,79.89,457.94 +21.54,58.41,1013.99,86.34,450.69 +24.49,70.79,1005.51,88.65,430.54 +13.52,39.39,1012.91,84.03,474.82 +13.51,44.9,1019.29,77.23999999999998,464.86 +28.9,68.84,1011.64,64.44,437.06 +26.28,75.23,1011.44,68.35,435.28 +28.81,64.96,1000.46,68.05,427.91 +17.49,63.94,1020.02,82.6,452.71 +20.61,48.78,1020.8,85.05,449.38 +27.84,71.32,1007.72,79.25,431.37 +22.7,60.84,1019.15,71.48,438.59 +7.21,42.03,1017.81,90.12,482.26 +14.68,41.23,998.43,83.71,469.25 +21.93,60.84,1018.96,76.8,440.76 +9.23,37.36,1015.01,67.38,481.08 +27.51,49.3,1003.74,61.27,437.09 +20.76,70.72,1009.73,89.04,448.85 +30.65,71.06,1008.61,76.76,432.08 +10.31,42.49,1009.43,78.36,479.64 +27.27,72.58,1009.25,89.31,428.93 +28.61,68.12,1012.23,46.45,435.28 +19.65,44.89,1009.76,75.36,451.35 +30.24,69.88,1007.9,61.46,436.37 +31.26,68.94,1005.94,39.49,438.03 +25.16,74.33,1014.55,76.7,436.15 +16.73,58.59,1015.02,89.61,455.3 +30.57,58.9,1004.54,54.37,438.49 +17.18,63.09,1020.67,93.58,451.37 +27.35,61.47,1008.43,70.65,443.67 +19.11,50.16,1010.88,100.09,450.38 +26.48,68.14,1004.83,55.96,432.19 +13.84,42.18,1015.74,79.76,468.66 +29.1,76.2,1006.28,60.22,435.97 +13.91,40.24,1017.03,85.93,466.24 +13.73,41.78,1011.75,49.65,464.94 +25.4,65.34,1013.11,53.93,445.82 +14.73,39.52,1017.01,74.20999999999998,470.45 +27.58,66.48,1004.82,51.23,435.34 +24.03,62.44,1010.96,79.88,430.66 +19.78,63.09,1019.01,78.39,448.34 +12.57,41.66,1009.11,70.74,475.61 +13.95,41.49,1019.95,86.46,465.24 +13.77,47.83,1007.41,90.66,466.07 +21.52,50.66,1013.56,74.33,455.71 +27.98,67.9,1006.3,73.53,436.08 +14.57,44.45,1021.42,66.23,462.48 +25.46,70.32,1010.65,64.7,433.08 +8.58,38.38,1021.03,84.37,482.26 +28.18,66.56,1005.69,65.67,426.79 +32.07,70.94,1006.91,49.9,432.33 +17.94,37.2,1012.64,68.11,467.65 +7.34,40.72,1023.01,80.08,483.92 +10.8,39.28,1010.7,82.62,478.8 +24.34,70.79,1006.82,85.66,433.83 +26.45,64.27,1013.23,60.92,444.9 +18.38,62.1,1020.12,77.27,452.91 +32.53,77.95,1014.76,58.1,434.44 +7.99,36.08,1020.08,83.2,481.35 +21.16,50.66,1014.13,72.77,455.86 +15.71,40.12,1012.81,97.46,462.6 +20.58,39.53,1005.68,62.09,460.1 +32.0,58.9,1003.48,51.38,437.81 +30.29,74.16,1008.77,75.23,431.39 +31.38,68.27,1006.79,52.79,426.67 +29.67,66.51,1015.6,34.1,434.8 +19.9,56.53,1020.52,78.05,456.48 +23.6,57.17,1009.84,74.27,446.05 +4.59,39.33,1010.85,71.78,494.9 +12.76,43.7,1015.13,65.34,475.73 +6.53,42.85,1012.65,91.6,480.98 +14.46,53.82,1016.55,68.11,462.6 +23.75,61.5,1008.16,69.14,442.35 +22.28,59.92,1009.36,95.38,437.85 +24.4,60.37,1006.77,82.43,440.64 +29.82,69.75,1010.09,65.02,442.6 +20.29,65.27,1013.17,74.94,445.52 +27.2,72.43,1006.75,80.67,430.32 +5.7,40.62,1016.07,84.94,482.82 +24.54,65.46,1014.27,40.77,446.26 +16.57,63.31,1016.19,81.02,454.78 +29.89,65.74,1012.95,51.36,438.24 +24.37,70.02,1010.97,71.97,443.53 +24.16,65.06,1013.88,58.96,442.32 +14.9,52.05,1015.11,77.33,464.82 +26.88,74.78,1010.42,64.81,440.84 +27.02,72.58,1009.21,89.13,437.8 +10.13,38.16,1013.57,79.04,474.92 +15.27,38.73,1002.83,77.77,465.99 +14.03,44.88,1019.6,57.63,465.51 +8.51,41.26,1023.17,87.79,477.51 +8.68,41.82,1032.83,73.62,478.61 +12.85,41.14,1027.04,86.29,464.86 +25.27,67.07,1006.34,66.35,445.81 +28.62,69.71,1009.67,62.12,437.52 +23.87,60.27,1018.94,77.16,439.86 +26.54,69.48,1010.7,66.09,432.56 +12.83,44.88,1017.86,87.88,474.26 +15.62,41.76,1023.82,66.17,459.72 +28.28,61.86,1012.07,64.49,439.65 +20.06,62.1,1020.21,72.20999999999998,451.81 +13.86,35.71,1015.21,63.16,471.63 +28.19,68.08,1013.41,43.93,436.43 +18.02,53.16,1013.41,82.84,458.01 +14.8,43.99,1022.89,85.25,461.97 +9.26,41.66,1016.87,73.31999999999998,483.51 +20.65,66.51,1014.94,71.83,456.49 +13.03,39.52,1016.68,83.09,473.99 +13.41,49.83,1008.83,87.14,466.38 +3.73,39.42,1024.4,82.42,488.58 +26.95,70.79,1004.09,75.34999999999998,430.07 +11.7,43.41,1016.08,62.27,467.51 +13.09,54.3,1017.61,82.38,471.0 +5.21,41.31,1003.51,91.23,486.46 +12.65,44.0,1023.03,88.73,471.46 +16.01,49.64,1026.35,77.75,457.8 +15.34,41.23,996.87,86.56,465.16 +17.94,62.1,1019.81,82.65,453.55 +33.01,68.67,1005.2,51.41,433.94 +22.91,66.44,1011.23,63.43,444.48 +31.35,67.32,1013.74,38.56,439.81 +10.63,40.67,1017.13,66.12,483.27 +4.27,39.64,1010.99,84.85,487.19 +21.14,58.05,1012.98,87.27,449.74 +25.36,60.07,1015.06,66.11,439.73 +11.44,44.2,1018.14,84.9,476.12 +13.35,39.58,1012.41,83.45,465.85 +23.88,54.2,1012.81,64.52,444.97 +15.65,43.5,1021.39,78.58,463.5 +6.72,38.91,1016.89,90.47,485.89 +15.74,43.71,1024.7,78.38,462.66 +19.84,56.89,1013.23,78.31999999999998,447.92 +11.44,43.13,1014.88,63.88,477.57 +26.55,69.45,1013.88,55.39,435.64 +19.96,39.53,1006.16,62.77,460.49 +10.8,40.69,1014.3,87.44,478.19 +8.36,38.91,1016.27,88.82,482.09 +8.55,35.77,1016.15,73.31999999999998,481.44 +31.84,71.37,1003.51,46.22,432.04 +5.94,39.9,1007.84,86.33,485.86 +14.35,40.71,1023.09,69.5,473.56 +31.91,67.83,1008.76,53.22,425.28 +25.35,74.33,1015.29,77.84,435.66 +9.32,36.3,1027.67,73.25,479.52 +16.34,42.28,1008.08,52.8,463.29 +29.95,73.42,1011.44,66.32,432.81 +7.09,43.65,1019.6,72.09999999999998,483.42 +25.63,72.98999999999998,1008.2,86.8,436.64 +28.54,71.94,1007.4,65.99,430.91 +25.57,65.46,1014.81,38.58,444.46 +12.99,44.0,1025.22,90.27,470.93 +14.77,48.06,1010.92,69.81,461.52 +31.09,59.57,1010.67,60.5,440.08 +14.04,48.79,1017.62,75.25,464.09 +29.12,66.56,1006.9,49.79,429.94 +32.13,74.34,1003.34,56.39,436.3 +31.75,74.98999999999998,1003.25,53.33,430.82 +24.82,66.54,1010.0,60.36,440.88 +19.76,48.92,1010.48,46.57,456.69 +31.26,76.09,1006.66,63.91,430.36 +9.43,41.4,1028.81,85.83,475.8 +27.78,60.07,1014.66,53.74,439.43 +23.99,45.87,1007.63,52.62,443.66 +18.32,66.51,1015.18,81.5,459.89 +28.86,49.3,1003.93,52.85,435.75 +27.35,69.48,1008.51,65.81,432.31 +23.32,66.48,1003.92,72.25,436.26 +18.99,62.1,1020.0,76.76,453.09 +10.82,42.02,996.03,99.34,475.46 +14.81,43.69,1017.19,71.9,470.71 +22.77,59.92,1009.67,94.09,437.9 +18.61,47.83,1006.43,78.89,454.21 +26.5,66.05,1017.03,61.34,440.15 +16.11,44.92,1025.37,79.84999999999998,460.99 +30.51,70.94,1007.64,59.42,430.91 +13.48,41.44,1015.64,71.46,471.39 +16.37,43.5,1021.26,72.4,459.18 +21.19,50.16,1005.81,84.27,450.33 +26.38,59.92,1009.99,71.91,444.85 +24.45,65.12,1015.92,57.19,445.01 +28.6,71.22,1003.15,58.33,443.01 +29.39,69.89,1013.92,47.36,434.27 +25.91,68.08,1010.92,74.25,432.07 +19.94,65.46,1017.7,68.94,448.67 +13.95,71.14,1019.76,75.51,461.18 +33.7,68.27,1007.16,50.41,427.4 +6.58,40.07,1014.22,55.44,493.72 +9.79,39.69,1002.36,93.86,471.61 +18.41,65.94,1010.23,84.71,452.66 +22.89,48.98,1014.55,48.21,448.56 +25.68,46.21,1011.01,57.53,442.98 +32.77,72.86,1003.6,52.87,433.84 +13.18,43.8,1023.18,61.21,467.0 +28.99,54.2,1012.79,41.9,442.6 +26.34,59.21,1013.37,58.98,439.22 +21.11,58.66,1011.7,68.71,457.89 +24.28,71.98,1006.34,90.45,432.47 +28.46,73.67,1005.67,71.21,429.15 +27.16,59.87,1011.78,58.84,446.38 +18.36,53.16,1013.31,83.18,458.47 +20.35,50.9,1012.6,72.43,453.5 +8.57,40.69,1020.87,84.15,485.18 +8.97,44.03,1013.16,80.39,474.61 +20.95,70.72,1009.96,87.73,445.66 +23.49,47.45,1008.46,66.18,446.72 +7.26,41.22,1014.86,97.82,488.75 +27.36,58.33,1013.86,56.7,439.14 +27.98,67.17,1007.32,75.29,440.68 +25.15,68.51,1013.25,72.31,440.96 +26.82,60.96,1012.25,57.41,449.81 +4.24,39.9,1009.28,96.74,491.25 +24.49,65.06,1014.07,63.32,441.4 +19.65,42.23,1013.04,75.9,461.16 +9.57,39.82,1013.12,89.15,468.02 +31.46,66.54,1002.86,53.75,427.76 +7.2,40.35,1011.83,95.59,484.9 +18.19,66.54,1012.9,86.05,449.22 +23.21,73.42,1010.34,88.29,439.66 +29.31,68.67,1006.18,63.38,435.57 +23.54,41.1,1002.05,38.05,448.56 +24.22,62.08,1022.53,60.79,449.11 +21.85,59.8,1016.89,75.28,454.26 +29.79,62.66,1008.5,48.51,440.27 +7.06,41.74,1021.95,90.38,448.97 +15.55,39.63,1004.98,89.82,466.83 +11.09,40.43,1025.47,74.97,490.96 +23.85,72.43,1008.01,88.34,439.02 +24.87,68.61,1011.19,55.69,450.54 +20.67,63.56,1013.27,79.39,450.7 +15.33,42.28,1008.19,66.15,465.2 +20.73,41.1,1001.86,47.51,456.44 +12.53,44.03,1007.21,84.2,470.04 +13.43,50.59,1020.38,86.3,469.33 +23.61,63.94,1012.9,87.06,441.57 +24.07,71.97,1008.83,94.87,441.84 +28.28,61.47,1009.44,60.89,443.12 +9.75,43.69,1016.81,82.42,481.34 +11.96,43.41,1017.42,79.44,469.34 +14.02,40.75,1016.05,70.65,470.48 +8.25,37.49,1009.02,81.09,480.38 +22.8,49.16,1006.4,77.05,439.65 +24.13,45.61,1012.63,71.36,453.19 +15.96,41.66,1011.93,55.47,466.39 +17.48,49.39,1021.51,84.53,460.01 +4.95,42.07,1004.87,80.88,485.67 +12.02,43.69,1016.12,74.06999999999998,477.74 +14.16,39.28,1015.63,77.29,471.27 +21.17,58.16,1017.16,68.11,452.02 +4.97,40.64,1020.91,94.28,485.43 +27.28,78.92,1011.05,75.48,434.78 +10.42,44.85,1014.18,88.36,479.03 +12.75,44.2,1017.59,81.22,471.03 +13.1,40.03,1017.79,84.48,470.75 +29.09,72.43,1006.86,65.47,427.3 +27.64,75.59999999999998,1017.35,54.78,441.04 +7.79,41.01,1024.0,97.2,477.0 +16.52,43.7,1015.08,58.36,466.73 +17.79,40.12,1012.74,79.03,459.13 +15.04,38.01,1022.46,78.29,468.12 +15.92,39.16,1006.59,71.32,460.45 +20.4,57.85,1011.14,92.47,450.07 +20.25,63.91,1009.27,97.97,448.37 +14.24,39.52,1018.22,77.19,468.51 +28.11,70.98,1007.76,85.6,431.83 +21.3,66.86,1013.04,55.43,450.56 +16.56,42.99,1007.48,74.45,464.62 +8.93,40.46,1019.03,71.0,472.77 +17.48,44.2,1018.89,61.51,457.15 +10.38,41.01,1020.8,94.26,465.9 +21.83,57.85,1012.49,75.16,448.21 +20.58,54.5,1015.04,89.83,467.76 +14.95,39.31,1009.15,75.3,462.72 +14.01,38.91,1015.86,69.24,470.1 +7.0,38.08,1020.27,77.67,482.38 +23.82,48.92,1010.48,44.45,446.85 +12.65,44.34,1019.4,71.45,468.8 +16.37,53.16,1014.89,74.84,459.52 +18.62,59.15,1012.85,82.54,450.81 +22.96,68.61,1011.15,76.62,447.18 +25.72,74.67,1016.64,75.93,434.83 +16.0,37.87,1020.24,78.41,461.33 +19.09,65.94,1012.53,81.06,446.34 +24.49,65.61,1014.71,63.47,447.26 +12.79,44.03,1007.46,95.93,464.35 +8.699999999999998,36.24,1013.34,89.5,478.69 +19.79,51.19,1008.77,94.72,447.96 +30.55,68.24,1009.43,63.84,426.8 +10.1,44.03,1008.11,90.29,471.59 +26.73,49.02,1007.75,67.73,438.17 +8.99,41.26,1020.52,91.96,476.09 +15.24,39.39,1013.01,74.23999999999998,469.79 +30.36,71.8,1010.9,63.27,437.4 +10.98,41.54,1019.94,69.83,479.08 +29.08,70.83,1007.98,51.95,430.91 +25.23,61.86,1013.0,76.18,441.48 +27.76,72.58,1009.04,84.96,429.25 +24.37,68.14,1005.22,59.27,440.22 +11.22,40.22,1011.01,81.67,476.7 +23.43,51.43,1011.31,73.55,444.09 +22.81,58.96,1013.5,55.66,452.89 +15.71,44.06,1018.34,71.69,465.05 +10.34,37.5,1010.35,95.56,474.08 +11.01,40.05,1015.46,89.22,474.2 +28.59,69.84,1003.79,67.31,427.53 +29.86,59.57,1011.24,64.02,439.44 +3.95,38.44,1016.75,79.65,492.46 +16.98,63.09,1020.44,95.18,450.55 +28.03,60.23,1010.23,66.04,438.88 +24.43,58.05,1011.88,71.39,445.68 +13.97,45.01,1017.44,89.15,461.96 +9.11,40.02,1031.1,83.02,479.03 +22.08,55.5,1018.42,58.46,455.79 +31.61,75.08,1004.83,42.29,436.67 +8.68,43.14,1011.94,79.06,480.73 +29.11,74.9,1003.31,74.01,432.43 +12.71,43.8,1023.15,71.16,466.2 +31.24,74.22,1007.74,48.77,430.44 +9.18,42.18,1017.4,87.3,475.57 +4.15,39.9,1007.62,95.69,489.8 +14.93,43.02,1012.11,45.56,468.19 +12.24,40.66,1017.4,96.22,464.7 +20.87,63.31,1012.27,79.51,446.7 +21.12,62.52,1015.62,78.98,450.93 +19.23,41.67,1012.53,48.86,465.66 +30.74,71.77,1006.24,53.38,434.89 +25.42,73.20999999999998,1001.91,93.78,432.04 +18.97,50.59,1016.01,74.9,459.68 +23.65,66.05,1019.6,78.20999999999998,442.9 +15.26,46.18,1013.68,98.58,463.6 +24.41,58.59,1012.62,64.52,442.64 +20.79,50.59,1017.75,73.34999999999998,456.01 +8.34,40.72,1023.62,83.75,483.14 +31.12,68.14,1003.67,67.36,427.06 +24.92,63.94,1017.7,44.92,441.07 +29.3,70.04,1010.95,61.23,426.25 +16.46,61.27,1020.02,74.54,456.64 +24.44,69.84,1005.34,80.37,430.3 +6.17,39.33,1012.57,93.32,491.54 +18.15,41.67,1012.75,52.69,464.44 +26.38,71.58,1011.02,80.9,434.26 +23.99,67.69,1007.9,78.56999999999998,437.1 +26.51,67.25,1017.85,64.17,435.52 +24.31,66.49,1011.38,54.35,440.79 +29.04,70.72,1009.55,66.58,437.95 +13.26,41.74,1021.89,63.32,473.44 +18.32,65.94,1012.74,86.77,450.5 +4.87,42.85,1012.69,94.72,482.05 +24.98,60.32,1016.39,63.12,446.46 +14.77,44.9,1020.5,84.31,465.23 +28.77,75.23,1010.01,59.0,437.93 +28.5,76.86,999.49,77.47,430.62 +11.62,41.54,1019.94,66.43,477.75 +23.21,74.22,1009.68,88.46,440.46 +30.12,73.18,1012.29,61.32,429.31 +11.63,41.5,1013.6,87.11,477.3 +19.8,58.79,1017.04,87.71,449.66 +30.22,70.32,1011.63,65.97,435.98 +17.55,43.14,1018.86,76.0,461.58 +8.27,37.7,1015.09,73.64,479.16 +31.01,69.13,1000.93,62.96,425.69 +28.64,73.4,1011.48,52.84,441.32 +10.81,45.0,1023.45,85.89,482.63 +25.62,73.17,1011.65,86.45,430.56 +30.28,58.9,1005.03,54.59,439.06 +3.63,38.44,1016.16,87.38,487.87 +9.73,41.01,1021.76,97.71,469.11 +6.72,39.85,1011.84,84.66,489.09 +20.58,49.15,1021.42,56.15,453.87 +27.99,71.58,1010.68,68.99,435.99 +18.36,53.16,1013.14,79.89,457.94 +30.08,73.42,1011.17,63.86,434.95 +25.6,63.9,1013.16,53.19,451.44 +27.41,59.21,1013.3,50.93,438.39 +7.51,43.02,1014.35,86.46,485.38 +13.42,41.74,1020.96,61.8,473.45 +28.18,60.07,1016.34,49.13,441.61 +17.3,43.72,1009.64,77.86,456.55 +24.96,70.47,1007.73,76.48,438.23 +21.04,45.09,1014.19,40.62,450.92 +22.17,65.61,1014.71,70.91,449.91 +26.98,72.58,1008.55,78.5,431.12 +30.13,78.05,1010.99,61.5,434.14 +9.68,41.48,1018.24,71.04,473.31 +21.95,68.08,1012.91,69.36,443.93 +15.09,44.34,1019.46,60.49,468.8 +23.83,58.79,1009.77,78.13,444.34 +13.86,40.66,1017.15,83.82,463.49 +22.79,69.13,1010.87,91.47,438.08 +26.71,77.95,1012.13,77.5,433.47 +28.69,67.25,1017.71,53.83,432.21 +18.27,51.43,1010.38,88.39,460.41 +24.24,68.3,1018.03,81.51,437.12 +11.8,45.09,1013.21,89.68,470.57 +17.19,58.86,1016.74,85.97,451.87 +18.55,61.87,1008.45,65.3,450.73 +15.5,44.92,1024.16,86.44,462.12 +24.22,56.89,1013.81,70.02,440.79 +11.91,43.22,1008.75,76.56999999999998,472.88 +14.48,46.18,1015.83,92.15,462.3 +14.73,58.2,1019.45,82.48,458.56 +11.91,40.69,1014.41,83.71,476.71 +22.48,50.05,1005.55,82.36,442.56 +27.72,69.88,1007.58,72.25,434.02 +15.03,44.45,1020.94,65.57,460.06 +24.18,59.92,1009.88,79.54,438.85 +21.97,58.79,1010.93,86.7,448.8 +15.51,41.76,1022.81,69.55,463.82 +25.89,58.86,1014.16,52.95,445.17 +19.13,42.18,1001.45,98.77,456.04 +26.82,69.05,1004.62,40.0,437.42 +23.04,48.06,1014.16,54.99,459.36 +6.05,42.85,1013.09,91.88,485.02 +30.94,64.44,1014.36,53.76,439.84 +25.32,48.41,1008.47,72.14,443.04 +26.92,68.27,1008.11,61.73,435.17 +23.48,51.43,1007.13,84.83,441.78 +25.66,71.77,1006.76,84.76,429.25 +17.46,53.29,1018.07,91.01,458.06 +26.18,69.84,1005.13,72.89,431.69 +10.07,39.66,1015.37,83.78,479.64 +30.99,69.82,1009.41,50.84,437.46 +31.85,73.91,1003.6,60.22,431.26 +32.2,72.29,1008.61,69.94,432.52 +22.08,41.1,1002.19,46.69,455.04 +16.32,43.56,1014.4,59.77,463.57 +24.94,59.07,1008.89,84.79,440.12 +8.3,36.3,1015.97,60.62,480.58 +18.81,45.01,1015.28,65.91,457.85 +17.61,56.53,1019.5,82.3,457.01 +27.01,43.77,1011.18,46.58,440.64 +28.69,67.25,1017.71,44.6,436.21 +13.66,40.55,1005.46,96.02,467.7 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/realtabformer/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9b658df34a76a246cd308d298794ac4871e3735b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/realtabformer/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/realtabformer/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a5e1282993420a670af234db3e3ac46421132317 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,119 @@ +{ + "dataset_id": "n20", + "model": "realtabformer", + "target_column": "PE", + "task_type": "regression", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/train_20260330_023856.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/train_20260330_023856.log new file mode 100644 index 0000000000000000000000000000000000000000..b2c6a02567143518ab7d9e78c16a9188a8bb2b9c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/train_20260330_023856.log @@ -0,0 +1,26968 @@ + +Map: 0%| | 0/7654 [00:00 /work/output-SpecializedModels/n20/realtabformer/rtf-n20-20260330_023856/models_100epochs diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a59bd084fbb9ea05842a6eca091e70a9e3880f64 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n20", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "exists": true, + "size": 291758, + "sha256": "8768b9641a081ce32375b2739c6d0a6cdf66c1b03268c7db5f71ffd0019c97e2" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "exists": true, + "size": 36657, + "sha256": "c2dae02f854856ba824310ecaca5c73a72a3302753396aa681c82b69d65b174c" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv", + "exists": true, + "size": 36232, + "sha256": "82c48522e82ea4c5e4c407ec9239e82558dcff1df413f3d0c382e77fa041bc88" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_profile.json", + "exists": true, + "size": 2675, + "sha256": "7e7d747ab11beae1e58278dc8d6ae08d7ae6f14fe93f77a4fc1e6e589df21df4" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_contract_v1.json", + "exists": true, + "size": 3047, + "sha256": "20f513ccbc9f09d5286bc8998a5772f42b78b40aa1ed60b079fa73edf9c78eec" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8618a420d9d101a283cfb38feb336ac37687988f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,112 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "columns": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91364f3480d02e634daea210e8cae28ad5402b46 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n20", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "PE", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9491fb55ef52c81df8129e59311cbea4ff2457ac --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/public_gate/staged_input_manifest.json @@ -0,0 +1,117 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/realtabformer_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/realtabformer_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/staged_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb807ac5b23b2e7dfb39b3a5378cd452e84d56ed --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/test.csv @@ -0,0 +1,959 @@ +AT,V,AP,RH,PE +14.72,41.23,997.91,82.69,467.11 +11.94,40.66,1016.61,96.11,467.99 +27.56,66.93,1016.81,55.59,444.1 +9.59,34.69,1027.65,75.31999999999998,478.88 +7.46,41.82,1032.67,74.59,483.11 +15.52,36.99,1006.86,89.7,467.9 +15.47,43.13,1015.11,50.5,466.63 +21.84,45.09,1013.94,46.11,450.88 +19.83,51.43,1007.36,91.64,449.45 +29.3,67.69,1007.17,55.5,430.72 +6.63,39.42,1024.81,72.58,482.02 +22.88,69.45,1014.02,65.13,441.76 +11.97,42.32,1016.95,88.32,467.98 +29.25,67.32,1013.88,38.57,437.94 +14.89,39.58,1012.26,77.58,465.95 +10.39,44.85,1014.22,78.42,478.05 +25.66,77.54,1008.22,78.42,432.82 +16.5,49.39,1018.35,93.42,462.48 +28.55,74.33,1011.77,73.34,426.48 +7.84,40.07,1016.68,47.63,488.7 +27.14,71.32,1007.8,87.99,431.96 +25.18,71.98,1006.71,89.86,432.88 +6.01,35.79,1011.26,90.72,482.79 +14.54,41.17,1015.15,67.78,470.19 +11.8,43.22,1008.57,78.01,469.55 +23.82,44.89,1009.39,74.69,445.45 +32.81,71.32,1007.69,47.29,434.38 +30.63,74.22,1007.47,46.52,430.38 +25.43,70.17,1000.46,87.84,436.43 +30.17,76.86,998.23,73.61,430.3 +26.27,58.33,1013.81,60.43,438.82 +26.02,63.07,1010.94,53.96,446.82 +14.64,39.31,1008.84,79.3,462.72 +19.99,65.94,1012.28,75.42,447.22 +32.9,68.51,1012.95,50.09,430.23 +20.3,44.9,1008.25,64.08,457.6 +22.86,47.43,1009.75,61.54,452.53 +10.82,44.63,1020.64,90.26,473.23 +13.15,42.44,1014.51,99.53,469.34 +27.4,66.48,1004.71,51.5,439.66 +4.96,40.07,1011.8,67.38,494.75 +8.67,36.66,1026.8,84.36,480.38 +25.97,43.21,1011.9,88.73,434.83 +10.23,42.32,1017.53,89.93,473.59 +27.66,59.21,1013.12,51.58,438.57 +27.21,68.12,1012.96,54.69,435.2 +19.72,65.94,1010.53,82.12,446.84 +8.87,41.82,1033.3,74.28,477.97 +15.29,25.88,1009.21,66.0,464.25 +19.48,39.72,1001.75,55.41,457.16 +10.93,39.16,1016.54,90.56,479.83 +20.84,51.19,1008.63,84.11,448.98 +9.01,40.77,1022.37,90.3,470.84 +21.08,63.13,1013.53,98.0,443.51 +14.94,40.0,1017.69,65.43,456.41 +28.37,63.31,1013.18,49.02,437.64 +23.45,45.61,1012.84,73.42,454.92 +12.76,42.32,1015.35,78.18,466.15 +13.86,44.21,1022.6,83.56,468.3 +24.51,51.95,1005.57,63.53,449.73 +5.04,40.64,1021.35,93.63,484.42 +14.24,45.01,1013.54,88.68,461.64 +11.17,39.72,1002.4,81.4,474.64 +11.94,44.2,1017.97,82.93,474.02 +9.28,41.54,1018.33,79.89,482.8 +28.91,58.33,1013.84,39.72,437.53 +16.89,49.21,1015.19,70.39,458.25 +16.34,36.99,1006.99,90.06,466.24 +16.41,47.24,1015.75,88.78,457.94 +19.44,39.53,1006.99,63.18,457.09 +9.37,40.11,1024.94,75.03,471.13 +13.64,44.88,1019.85,56.86,466.66 +16.19,36.99,1007.37,92.4,462.94 +18.75,63.09,1018.19,87.84,450.98 +15.97,45.01,1016.58,83.24,456.91 +19.5,52.72,1025.21,50.21,457.26 +10.49,42.49,1009.81,78.92,478.75 +20.78,62.52,1017.58,73.3,452.3 +7.41,40.81,1026.15,88.96,488.48 +25.38,72.23999999999998,1010.76,89.64,432.3 +4.0,39.9,1009.64,97.16,490.79 +30.61,68.84,1011.18,52.5,439.9 +28.57,75.33,1003.16,76.14,431.58 +15.37,41.96,1011.58,96.76,466.02 +31.56,66.44,1008.91,64.16,430.11 +16.69,46.18,1010.8,96.8,466.03 +22.0,51.3,1012.87,85.79,450.18 +28.31,74.34,998.42,79.23,431.95 +15.7,44.21,1021.26,86.83,462.19 +21.79,58.2,1017.21,66.74,446.94 +25.67,58.59,1013.0,62.34,451.03 +20.59,59.8,1015.27,77.94,453.83 +16.14,44.21,1020.36,80.59,461.03 +25.61,47.43,1008.62,54.51,442.96 +7.61,44.71,1019.41,70.48,485.36 +30.32,64.69,1006.35,51.36,436.72 +29.45,68.27,1007.96,61.63,432.96 +29.28,77.17,1009.4,76.3,433.14 +5.62,41.31,1001.37,89.16,485.6 +24.86,44.05,1005.69,66.65,447.2 +6.17,40.07,1013.7,58.99,495.21 +13.65,41.58,1020.56,72.17,460.8 +3.96,35.47,1016.79,83.81,489.68 +6.49,39.33,1010.85,91.85,489.22 +31.32,71.29,1008.37,50.07,430.46 +8.07,43.69,1017.05,87.34,485.18 +13.35,39.64,1010.1,93.3,471.69 +26.21,56.85,1011.45,41.37,439.55 +5.71,40.77,1022.51,89.58,485.75 +18.98,60.1,1010.09,85.34,453.37 +6.07,38.91,1019.25,83.39,483.56 +26.92,78.92,1011.65,96.22,434.64 +24.44,47.93,1003.13,67.04,440.53 +14.45,52.75,1023.97,63.59,459.85 +26.44,71.64,1004.55,85.53,435.61 +30.7,74.22,1008.12,50.39,432.51 +6.48,36.24,1013.62,92.03,484.65 +30.47,70.83,1010.91,46.94,444.39 +13.78,38.28,1014.8,81.19,467.43 +19.65,62.1,1019.46,77.81999999999998,449.13 +9.51,43.79,1016.02,79.81,481.12 +16.31,52.75,1024.4,55.69,456.58 +13.08,39.82,1012.27,85.21,476.96 +20.72,44.57,1008.96,72.56999999999998,449.76 +9.77,41.44,1017.69,78.26,481.74 +26.12,66.75,1017.86,79.02,433.67 +10.95,43.8,1022.61,63.46,473.2 +11.01,43.69,1016.7,81.48,477.3 +17.36,52.9,1015.42,69.97,458.66 +16.7,46.18,1011.4,95.51,458.05 +11.95,42.07,1018.52,84.73,467.91 +18.3,44.06,1017.95,63.24,456.32 +14.69,35.71,1015.78,57.34,467.39 +30.82,76.2,1007.47,59.3,432.22 +22.36,58.79,1016.69,73.59999999999998,445.76 +23.89,64.27,1013.37,75.22,450.82 +5.75,42.07,1004.24,78.23,485.23 +26.64,69.13,1010.6,79.23,430.41 +23.08,48.41,1008.44,82.35,443.5 +29.76,57.19,1008.59,51.1,436.21 +32.8,68.67,1005.27,44.53,432.28 +24.63,65.38,1010.43,40.68,446.23 +11.02,43.02,1012.32,66.54,478.81 +32.13,69.98,1013.3,55.85,431.84 +23.81,60.08,1017.29,62.66,450.33 +8.09,38.5,1012.99,67.31,484.81 +32.63,69.89,1013.85,41.66,425.72 +13.27,52.75,1025.86,65.12,464.82 +29.3,68.08,1011.23,56.23,434.11 +26.3,77.95,1009.45,78.72,437.95 +28.52,70.02,1010.34,54.21,441.98 +17.86,50.88,1015.59,88.28,457.33 +7.92,41.66,1014.84,76.12,483.38 +3.74,35.19,1018.58,98.84,490.5 +21.33,63.86,1020.33,72.13,445.02 +30.36,74.87,1008.96,61.87,435.31 +14.23,46.18,1017.39,87.29,463.86 +9.55,41.44,1015.07,85.94,481.75 +9.78,41.93,1023.18,75.05,484.03 +30.8,73.17,1010.51,51.93,432.24 +15.48,47.83,1004.88,81.68,463.67 +16.58,46.18,1010.4,96.29,463.51 +20.32,39.72,1001.38,57.21,456.18 +11.83,43.14,1010.06,88.14,471.98 +26.75,56.57,1013.76,57.93,443.92 +14.13,48.92,1011.72,78.06,464.17 +19.91,51.19,1008.0,90.23,449.23 +14.37,40.56,1021.67,68.18,470.19 +17.27,44.9,1007.85,78.8,454.19 +9.59,38.56,1017.52,61.89,481.05 +28.04,70.32,1011.28,78.16,435.42 +18.18,44.63,1020.41,48.64,455.57 +32.27,71.85,1008.06,59.28,429.72 +19.02,44.85,1014.57,43.37,465.42 +13.47,43.34,1012.75,87.04,468.8 +12.25,40.75,1016.02,82.4,475.07 +27.45,64.34,1007.12,65.87,440.0 +29.96,67.83,1008.0,44.05,433.13 +12.55,38.91,1012.58,75.44,474.35 +31.92,75.33,1002.13,65.73,431.32 +21.55,60.27,1017.42,92.59,443.93 +20.14,46.33,1013.24,83.39,453.35 +18.33,44.34,1019.55,51.69,468.8 +8.65,40.56,1023.23,78.84999999999998,485.87 +26.99,62.26,1011.13,71.27,436.89 +14.4,41.26,1021.41,73.11,462.78 +18.35,62.1,1019.97,78.36,455.29 +16.76,43.77,1012.25,77.95,457.0 +11.82,42.86,1014.12,88.28,476.7 +20.78,68.28,1008.75,60.87,450.57 +29.35,54.2,1013.07,42.45,439.47 +22.63,45.61,1014.14,73.06,457.88 +22.83,65.18,1012.24,79.73999999999998,442.43 +6.74,36.08,1020.36,86.98,484.18 +31.54,71.06,1008.4,71.77,431.87 +23.24,45.01,1012.21,45.23,457.01 +32.74,68.31,1010.23,41.29,441.66 +14.18,39.3,1020.1,67.48,464.32 +25.86,59.92,1009.92,73.95,436.06 +14.05,40.69,1015.66,74.39,470.9 +23.78,69.71,1008.79,83.17,443.06 +14.14,39.59,1010.84,96.02,465.23 +11.77,40.71,1024.55,72.48999999999998,477.94 +23.77,64.15,1021.02,55.87,448.43 +9.61,44.03,1008.3,91.36,473.54 +22.42,62.52,1016.83,63.27,451.64 +24.85,68.37,1006.5,68.37,442.66 +17.69,44.34,1019.31,61.12,464.13 +3.21,38.44,1017.11,84.86,492.93 +18.45,42.44,1013.45,63.52,459.79 +11.48,44.6,1018.29,90.76,470.39 +17.37,48.92,1011.91,58.4,455.53 +6.22,39.33,1012.31,93.23,491.77 +12.74,49.83,1007.44,91.47,466.09 +22.56,70.79,1005.85,93.09,435.14 +24.35,58.49,1011.03,70.64,445.6 +16.58,44.68,1021.5,83.38,458.87 +25.47,70.36,1005.79,77.73,437.02 +30.88,69.51,1011.48,46.58,433.14 +6.64,39.04,1018.84,74.94,481.53 +12.65,41.93,1023.07,65.05,479.53 +8.91,40.11,1022.87,78.39,475.43 +5.57,42.85,1013.55,92.14,488.85 +16.09,44.2,1019.39,67.24,460.56 +20.98,60.07,1016.26,67.18,446.26 +14.93,39.16,1007.25,72.34999999999998,463.2 +24.19,58.95,1017.78,58.78,441.91 +23.86,52.84,1006.56,48.94,444.66 +15.59,52.05,1013.67,78.55,456.07 +26.04,74.67,1016.68,81.2,433.55 +22.35,54.42,1012.46,75.01,454.72 +10.57,36.71,1022.11,82.39,472.62 +6.16,38.5,1012.83,93.68,490.92 +24.12,62.44,1013.83,88.02,443.3 +28.24,71.58,1010.1,67.92,434.01 +21.11,69.94,1004.37,84.26,439.91 +11.49,44.63,1020.44,86.04,471.08 +24.92,60.95,1014.88,60.58,445.44 +23.56,67.79,1010.14,89.72,441.29 +7.54,40.72,1023.82,85.15,485.92 +26.85,75.59999999999998,1017.43,74.55,433.48 +12.14,44.85,1014.36,60.04,476.68 +17.03,43.99,1021.5,82.32,460.25 +31.41,64.44,1013.84,49.49,439.3 +14.73,40.35,1011.15,65.2,470.03 +24.04,59.43,1007.6,76.98,437.51 +21.03,44.78,1007.99,36.82,459.72 +22.61,42.8,1014.24,69.71,460.26 +17.36,44.63,1020.49,54.21,456.98 +26.82,64.96,999.72,63.55,427.51 +18.19,44.06,1017.24,78.73,456.13 +24.38,47.01,1015.17,68.96,454.85 +12.98,39.64,1013.95,74.39,473.54 +14.17,43.13,1014.94,48.62,471.08 +18.71,54.9,1017.12,74.79,456.88 +12.8,44.34,1016.52,86.73,473.42 +16.71,46.18,1012.06,96.6,458.4 +22.99,60.77,1017.97,78.47,447.62 +28.34,63.77,1013.7,61.13,439.75 +34.53,73.03,1013.53,36.74,437.03 +10.16,40.8,1028.13,86.39,477.49 +27.28,44.89,1009.02,49.9,441.94 +22.75,58.86,1016.0,67.34,448.32 +25.01,59.54,1007.91,80.93,441.3 +23.64,63.31,1014.5,61.83,440.7 +8.85,41.06,1020.99,86.05,486.4 +19.65,63.91,1009.26,99.08,444.9 +18.22,44.34,1019.35,56.78,469.27 +9.68,40.77,1022.04,85.23,473.73 +17.49,40.55,1001.73,73.15,462.37 +21.79,61.45,1011.11,91.78,446.99 +21.06,62.91,1011.92,75.52,455.22 +23.72,58.62,1016.32,71.17,447.13 +30.93,73.42,1010.98,56.42,432.44 +5.98,38.91,1016.5,91.83,488.85 +13.45,41.16,1022.04,82.96,460.57 +12.23,43.69,1016.46,84.4,471.62 +8.13,39.96,1026.07,95.84,477.12 +29.0,77.54,1011.33,75.13,431.37 +11.61,52.75,1020.94,77.56,464.68 +19.4,49.69,1012.89,75.53,455.6 +5.0,40.64,1021.05,94.84,485.27 +23.46,57.85,1012.7,65.54,444.66 +18.51,48.06,1015.14,79.83,455.44 +29.29,70.36,1006.64,60.82,431.26 +27.55,64.96,999.73,57.34,431.33 +21.82,63.9,1014.48,92.53,447.29 +17.03,47.83,1004.94,79.68,460.43 +17.18,46.0,1002.74,100.1,454.02 +18.14,49.78,1002.95,100.09,451.44 +12.39,49.83,1007.6,92.43,468.43 +20.39,64.15,1021.31,62.35,457.37 +22.72,64.15,1021.14,60.34,453.13 +20.3,58.41,1014.05,86.38,451.74 +21.46,58.18,1007.45,95.33,444.12 +28.99,68.24,1008.75,66.57,428.28 +12.07,40.81,1025.63,68.02,475.96 +15.4,40.69,1015.1,70.25,471.66 +9.59,37.14,1013.8,72.84999999999998,474.74 +7.64,40.02,1031.58,71.19,479.43 +15.42,37.85,1009.89,85.8,467.33 +11.75,42.32,1015.28,77.25,470.44 +19.51,48.78,1021.03,86.33,453.27 +31.86,73.88,1005.6,57.68,435.91 +12.4,40.35,1011.46,79.48999999999998,476.44 +28.11,69.84,1004.68,67.08,427.33 +8.74,40.03,1016.81,93.37,481.07 +24.32,58.79,1016.8,65.61,442.78 +13.72,44.47,1027.2,68.89,470.66 +6.11,38.68,1017.53,79.23,482.97 +16.74,39.16,1005.68,71.17,460.47 +8.52,41.55,1002.09,86.81,483.63 +20.55,68.63,1012.5,67.07,453.47 +22.63,58.49,1010.94,72.7,448.38 +18.13,60.1,1009.67,84.75,455.82 +12.51,43.67,1013.24,91.55,471.96 +21.02,61.5,1008.52,77.73999999999998,448.08 +6.99,40.07,1014.83,54.36,490.11 +16.37,36.99,1006.37,90.11,463.76 +15.68,39.16,1006.09,75.62,461.98 +22.17,60.27,1018.21,89.55,443.31 +26.7,49.02,1007.68,67.97,438.92 +19.55,39.39,1013.55,57.82,464.36 +27.74,74.78,1010.05,60.82,436.87 +18.09,43.72,1008.64,74.15,453.02 +11.49,35.76,1019.08,60.04,472.45 +23.67,63.86,1019.67,57.95,441.73 +32.02,67.83,1007.77,53.31,426.55 +20.38,62.52,1017.85,75.56,456.56 +5.02,45.87,1007.8,99.22,481.03 +26.24,51.43,1011.32,59.52,447.91 +14.47,41.76,1021.98,78.41,464.0 +24.16,60.29,1018.09,63.49,446.17 +10.07,40.92,1021.84,84.18,471.71 +10.73,44.92,1025.1,85.4,476.81 +16.81,42.86,1013.83,77.11,464.36 +27.52,74.67,1015.77,72.01,433.56 +13.96,40.83,1009.89,84.86,469.86 +22.78,49.16,1002.29,64.28,444.99 +22.77,70.32,1012.04,82.43,440.67 +8.64,41.66,1014.14,80.44,481.89 +27.33,66.17,1011.06,64.55,443.89 +19.07,49.69,1007.22,76.79,453.09 +24.1,68.61,1010.97,74.87,443.75 +14.6,42.32,1015.71,77.03,464.67 +14.77,44.47,1028.38,71.18,464.25 +9.14,38.91,1018.62,89.88,476.57 +14.85,45.87,1009.37,84.65,462.67 +8.47,41.03,1021.72,70.16,485.1 +23.79,59.44,1012.53,79.48,448.67 +26.63,64.44,1012.66,61.19,442.0 +12.88,44.34,1016.03,88.51,474.94 +12.73,44.34,1015.11,93.55,472.94 +17.2,40.55,1000.68,72.67,462.55 +10.05,41.17,1018.98,83.71,481.38 +28.37,75.59999999999998,1017.48,55.19,439.25 +25.61,60.32,1015.77,56.48,443.96 +20.34,46.63,1013.16,79.08,453.62 +20.21,58.12,1015.36,79.18,453.19 +21.19,58.86,1014.19,68.96,452.43 +29.71,73.18,1012.35,63.06,427.04 +15.24,37.87,1020.52,84.49,463.09 +17.35,42.86,1014.62,74.16,465.16 +13.5,45.51,1015.33,86.95,469.08 +25.94,77.23999999999998,1007.97,84.82,432.88 +5.51,35.57,1026.3,78.97,489.36 +26.16,52.36,1013.62,58.52,453.08 +15.17,49.15,1021.91,91.73,461.89 +14.57,42.18,1015.13,74.89,465.75 +12.16,45.0,1021.51,50.52,482.99 +25.1,60.37,1005.83,72.53,438.44 +13.57,39.39,1014.01,82.12,471.44 +20.25,55.5,1020.03,69.33,455.13 +11.23,39.72,1018.46,60.62,475.04 +12.52,42.34,1018.67,95.29,464.71 +8.68,39.61,1021.54,77.98,486.31 +8.18,40.02,1031.45,73.66,478.81 +21.93,60.84,1017.8,82.61,443.89 +30.69,71.98,1004.53,65.86,430.33 +12.08,41.39,1019.45,78.3,477.8 +9.08,42.49,1010.67,85.35,481.46 +20.33,57.76,1016.47,75.34999999999998,450.25 +31.03,69.98,1011.33,52.16,436.13 +6.03,41.14,1028.04,87.46,479.61 +14.02,42.86,1030.86,68.36,467.29 +20.51,45.38,1014.29,69.14,461.87 +28.17,63.13,1012.44,66.61,439.94 +18.83,63.91,1010.8,96.18,448.15 +25.52,63.94,1017.81,41.54,440.32 +22.61,49.3,1003.51,83.02,441.76 +28.61,68.12,1011.71,47.57,432.94 +18.43,56.03,1020.41,60.55,465.17 +13.41,54.3,1016.48,79.28,467.88 +11.11,40.55,1023.91,87.12,476.37 +33.97,72.29,1008.98,44.32,432.33 +18.41,62.1,1020.4,78.09999999999998,457.14 +22.4,58.12,1015.24,78.03,449.13 +25.1,61.47,1007.84,75.75,447.27 +28.73,68.3,1016.53,55.73,434.15 +11.47,43.67,1012.68,72.51,475.72 +11.19,40.64,1020.57,84.49,472.86 +10.38,43.02,1013.37,78.53,474.44 +30.09,69.48,1009.51,53.24,435.2 +26.72,65.61,1014.41,52.01,442.48 +19.14,56.65,1020.84,82.97,458.06 +21.25,44.05,1005.69,81.87,448.43 +15.55,45.09,1014.33,62.19,457.36 +12.28,42.34,1019.19,95.8,467.03 +31.93,72.58,1006.9,56.27,425.14 +24.9,71.77,1006.24,85.25,427.77 +23.71,67.17,1007.27,90.2,440.65 +31.05,62.7,1009.35,55.27,441.67 +10.08,40.72,1022.7,67.3,480.8 +22.31,61.45,1009.25,98.56,437.05 +24.01,42.48,1011.39,55.1,453.12 +21.75,49.82,1015.01,78.33,455.28 +29.3,73.67,1005.64,65.31,431.07 +12.27,41.17,1019.39,52.18,473.84 +16.51,41.79,1007.1,74.03,457.74 +26.26,63.73,1010.45,70.61,442.18 +31.33,73.03,1014.18,49.28,438.49 +21.81,65.06,1014.6,66.41,447.13 +14.93,39.39,1014.31,80.68,468.88 +33.87,71.32,1007.91,39.48,435.89 +28.09,63.31,1013.01,52.6,438.6 +18.06,56.65,1020.2,81.59,459.14 +20.36,56.53,1020.25,72.95999999999998,455.34 +29.58,76.2,1008.37,60.73,433.91 +9.62,41.01,1019.43,97.99,467.34 +25.08,58.49,1011.1,64.47,446.9 +24.33,60.32,1015.49,59.95,445.36 +30.93,70.83,1010.61,46.13,440.59 +22.04,58.05,1013.11,85.22,447.28 +5.74,45.87,1011.44,95.94,482.0 +24.17,71.25,1003.9,90.36,435.66 +5.95,39.48,1005.16,63.6,486.07 +27.51,63.73,1009.97,66.14,440.81 +28.62,70.32,1008.87,46.67,431.03 +20.48,60.29,1017.16,72.09999999999998,455.51 +27.03,71.14,1010.33,66.25,430.41 +28.31,70.32,1007.88,47.0,432.5 +16.6,41.93,1022.01,48.98,467.51 +14.67,71.14,1019.84,77.72,458.8 +5.68,40.35,1012.11,92.86,486.79 +29.66,59.22,1013.25,61.2,441.58 +6.99,39.37,1020.19,75.06,487.18 +25.61,74.22,1010.26,75.15,438.45 +11.31,39.61,1018.74,68.9,471.92 +29.04,76.09,1007.52,75.44,430.32 +16.5,53.29,1017.7,95.66,458.37 +22.26,60.77,1018.26,85.94,442.58 +25.95,59.92,1010.05,76.05,443.93 +28.09,70.02,1010.84,51.29,437.83 +8.36,40.67,1014.99,73.65,489.1 +24.88,49.16,1006.04,64.54,445.18 +14.34,42.86,1031.75,66.81,466.17 +18.16,39.99,1008.13,68.5,461.16 +20.57,44.9,1008.39,62.69,456.18 +16.85,39.64,1008.82,80.81,464.2 +24.56,63.21,1013.79,82.38,444.34 +9.54,41.17,1019.79,65.61,481.18 +21.43,60.95,1015.27,75.48999999999998,449.12 +24.15,71.73,1009.76,85.16,436.55 +21.87,74.87,1009.28,85.4,442.37 +15.3,41.76,1022.57,71.56,466.59 +19.45,41.1,1001.88,52.16,458.26 +27.99,71.64,1007.79,72.67,437.81 +21.03,69.05,1002.17,75.34999999999998,444.35 +31.84,77.95,1014.9,55.35,433.28 +29.83,71.43,1011.93,55.8,439.34 +10.08,37.92,1010.47,66.37,474.63 +18.36,51.43,1010.57,90.17,459.8 +16.4,38.01,1022.2,73.05,463.79 +13.03,42.86,1014.39,86.25,475.03 +18.88,62.96,1020.62,82.01,456.18 +11.87,41.78,1012.97,64.79,470.84 +23.16,57.76,1017.74,63.79,451.79 +15.39,42.28,1007.35,81.34999999999998,467.3 +16.84,56.03,1020.25,70.37,437.14 +14.65,44.84,1023.39,87.76,467.18 +18.97,44.85,1014.86,46.31,466.17 +26.22,69.89,1015.46,76.63,433.61 +7.07,37.49,1010.35,87.19,481.58 +17.4,44.9,1020.5,77.11,457.75 +30.05,73.68,1014.95,70.6,434.92 +14.01,45.08,1023.28,82.49,464.79 +23.24,63.78,1017.1,63.8,446.95 +23.03,65.12,1016.29,69.8,447.84 +8.58,40.72,1022.04,87.55,480.96 +24.92,48.92,1010.11,36.53,445.56 +25.8,65.38,1009.3,52.28,450.5 +26.31,48.6,1002.64,60.04,440.06 +29.13,62.26,1010.51,52.94,436.37 +11.02,41.17,1018.18,86.86,477.62 +13.61,39.85,1012.78,58.12,475.62 +23.32,69.13,1010.75,91.84,435.27 +30.45,43.21,1011.35,63.59,438.68 +31.7,70.36,1006.26,58.18,438.38 +23.62,73.67,1007.0,90.8,438.33 +12.45,43.67,1013.61,91.34,474.27 +28.85,68.12,1012.05,46.31,436.15 +18.4,43.69,1016.59,52.44,462.05 +28.97,78.92,1011.71,88.5,430.98 +4.93,35.19,1018.04,92.94,486.39 +13.75,44.47,1029.63,70.74,467.14 +16.64,44.9,1021.02,70.34,460.93 +19.04,68.28,1004.52,86.16,444.54 +15.89,43.96,1014.02,75.23999999999998,467.35 +29.03,67.79,1010.67,55.42,444.09 +14.97,58.2,1019.52,81.13,458.68 +16.23,43.52,1020.13,76.3,464.74 +14.74,44.47,1028.29,67.87,462.92 +9.75,52.72,1026.03,78.53,473.41 +27.18,59.27,1012.57,64.18,439.69 +16.22,50.88,1014.33,100.09,454.94 +6.62,42.49,1008.74,94.57,482.74 +9.33,44.03,1011.73,86.04,474.15 +23.14,62.26,1011.87,66.44,444.38 +14.52,40.35,1011.11,69.84,470.8 +33.71,69.98,1013.09,42.62,431.99 +14.84,42.03,1017.47,79.27,466.2 +13.48,41.92,1030.2,65.96,463.9 +31.4,71.06,1008.44,74.77,433.34 +27.44,66.56,1005.51,69.28,428.0 +22.68,70.47,1010.86,82.8,441.47 +9.03,40.71,1025.98,81.94,484.97 +14.36,41.26,1021.16,73.43,462.25 +10.06,43.22,1014.1,85.7,473.0 +22.76,49.02,1007.5,88.56,442.84 +24.79,75.59999999999998,1017.07,68.23,440.05 +34.97,73.56,1006.57,44.69,435.15 +27.64,75.59999999999998,1017.35,54.78,441.04 +18.37,51.86,1018.8,74.3,461.14 +7.91,39.96,1023.57,88.44,475.52 +21.8,65.94,1012.02,63.52,448.66 +29.42,71.32,1002.26,67.13,437.47 +19.01,58.46,1017.14,90.99,446.18 +24.01,67.17,1007.44,86.87,443.09 +11.69,39.22,1017.05,55.51,472.76 +22.01,58.46,1016.26,75.98999999999998,443.75 +13.74,42.74,1029.54,70.0,465.92 +12.27,43.8,1023.21,57.0,468.55 +12.88,43.8,1023.19,59.18,468.19 +32.06,71.85,1007.9,56.44,426.07 +23.46,59.27,1010.6,79.79,445.57 +24.41,52.3,1006.28,70.33,442.62 +13.22,44.92,1023.84,87.99,471.43 +13.69,40.83,1008.53,84.81,471.26 +10.31,45.01,1018.42,93.67,473.74 +21.41,54.2,1011.37,82.28,448.11 +24.49,65.46,1015.77,44.95,445.27 +25.72,49.82,1016.19,60.1,452.33 +18.73,46.48,1007.19,79.23,450.74 +22.88,59.21,1011.51,86.93,440.25 +26.59,60.96,1011.9,52.41,439.77 +30.38,71.58,1010.17,50.45,433.75 +18.94,47.83,1005.18,78.59,455.19 +25.17,64.79,1017.87,63.26,442.15 +20.55,48.98,1016.1,63.89,452.52 +10.03,42.18,1017.3,85.99,475.74 +25.03,60.27,1017.9,72.04,438.24 +7.82,41.16,1023.3,87.7,475.66 +33.43,69.88,1006.86,44.84,435.59 +11.33,41.5,1013.58,88.7,475.01 +12.34,40.62,1016.28,53.6,466.47 +4.78,42.85,1013.07,94.72,479.09 +14.03,49.15,1020.5,83.65,467.16 +26.11,47.43,1009.01,56.09,445.36 +24.67,70.94,1007.99,75.64,443.51 +14.28,44.84,1024.84,79.09,474.57 +26.74,59.87,1012.5,62.88,447.88 +29.83,62.66,1007.98,47.07,438.71 +17.51,44.9,1009.05,74.91,455.01 +30.05,69.34,1008.26,61.5,436.82 +15.85,49.69,1015.48,88.65,464.72 +32.5,71.37,1003.75,43.8,433.7 +30.56,69.04,1009.29,55.73,442.24 +23.32,69.23,1011.75,75.59,436.18 +18.0,52.08,1003.07,100.09,450.85 +25.45,70.04,1011.2,82.48,430.2 +17.37,40.55,1001.19,71.42,460.97 +16.43,41.79,1005.47,76.89,455.85 +19.15,44.89,1009.6,74.52,451.09 +16.0,39.16,1016.37,77.63,468.49 +10.87,44.71,1021.38,58.22,484.63 +21.98,55.97,1009.12,89.51,442.65 +21.92,61.87,1009.68,58.83,445.52 +14.62,42.86,1015.56,84.5,470.79 +20.9,67.07,1005.43,82.85,443.46 +23.45,69.04,1010.5,80.77,442.48 +7.31,43.02,1014.19,86.43,484.82 +22.21,61.87,1010.9,54.22,446.62 +20.83,49.02,1009.45,91.92,445.31 +14.71,44.0,1024.98,85.08,462.87 +19.92,63.31,1015.02,82.71,443.54 +31.85,73.20999999999998,1000.98,72.2,435.94 +24.1,71.97,1009.92,91.27,443.09 +12.42,38.25,1012.76,82.23,472.3 +28.79,70.79,1003.83,65.9,425.64 +17.05,44.88,1017.69,88.19,459.63 +31.59,62.7,1009.3,50.16,442.58 +14.93,41.79,1008.88,81.48,456.75 +24.44,69.13,1011.1,87.62,434.34 +26.05,65.59,1012.78,67.03,437.04 +26.48,51.43,1006.76,74.3,438.1 +17.19,37.2,1011.84,67.59,468.4 +6.25,39.04,1019.65,71.27,484.14 +31.12,67.69,1005.3,50.46,425.21 +11.16,40.05,1014.95,88.38,479.11 +31.16,69.88,1007.01,68.28,433.24 +19.27,43.14,1013.17,39.85,463.14 +17.79,43.52,1020.65,68.29,458.57 +22.76,58.96,1013.85,55.95,454.05 +5.66,39.42,1024.7,78.52,482.11 +21.75,67.45,1014.89,67.09,445.1 +24.66,58.86,1013.86,56.39,444.42 +18.16,39.99,1007.73,70.54,463.69 +25.26,61.08,1013.68,71.72,447.46 +23.6,48.98,1015.41,48.28,448.43 +22.89,65.34,1015.53,61.0,450.53 +28.82,71.43,1011.51,58.58,443.68 +21.57,69.23,1011.94,81.73,437.55 +11.03,42.32,1017.26,90.56,470.92 +15.75,39.16,1016.31,77.98999999999998,468.87 +13.67,44.92,1023.6,85.35,467.71 +11.58,39.69,1005.17,86.55,469.6 +32.31,62.04,1010.41,39.39,450.13 +23.67,72.23999999999998,1011.22,90.45,435.94 +11.29,35.76,1019.32,58.91,473.74 +13.58,49.83,1008.9,86.8,465.82 +10.54,41.93,1016.64,93.52,479.65 +24.96,74.98999999999998,1008.25,80.52,440.91 +24.53,74.78,1009.9,78.34,446.3 +12.12,41.17,1017.68,78.72,470.67 +22.99,56.57,1013.93,78.77,445.44 +31.15,67.45,1014.85,42.11,431.97 +20.2,64.45,1009.03,61.77,452.33 +10.9,41.46,1016.66,86.2,479.45 +27.04,48.41,1008.57,60.73,441.21 +29.72,74.78,1009.32,55.25,438.19 +29.86,69.34,1007.76,54.12,433.57 +28.18,73.88,1005.89,75.41,434.48 +27.0,69.4,1004.86,82.2,433.83 +33.63,70.4,1004.02,53.6,430.05 +10.44,37.83,1006.31,97.2,474.42 +13.39,49.83,1007.14,90.88,466.04 +9.0,43.13,1020.25,81.31999999999998,481.09 +18.94,48.7,1008.5,94.83,451.38 +26.14,71.98,1005.98,82.45,428.91 +5.11,42.07,1004.28,81.8,486.41 +26.62,65.12,1016.0,43.24,441.22 +25.69,62.26,1011.38,74.08,436.36 +8.13,39.99,1011.71,87.89,486.19 +9.97,41.62,1013.99,96.02,464.86 +6.58,43.02,1014.03,84.95,488.22 +13.9,42.86,1030.82,71.89,473.76 +12.33,39.28,1011.84,80.01,476.49 +7.26,36.08,1021.47,83.15,483.58 +12.29,40.03,1017.62,89.64,472.65 +33.82,77.17,1008.96,58.91,435.58 +9.27,40.22,1008.1,89.24,481.23 +23.44,62.52,1016.46,67.21,447.19 +31.63,69.59,1008.66,61.81,436.89 +27.28,51.43,1011.46,51.38,450.53 +21.45,45.09,1013.83,52.26,453.15 +25.14,69.13,1011.15,85.67,433.95 +20.12,45.09,1013.73,57.78,448.35 +16.36,53.82,1015.05,71.95,461.62 +19.77,65.06,1016.22,74.95,448.26 +31.92,75.33,1001.81,61.97,436.38 +26.52,43.77,1011.49,46.98,440.31 +11.52,40.03,1017.56,87.87,472.31 +29.91,74.33,1013.22,39.76,430.26 +15.01,39.52,1017.53,72.0,468.02 +28.39,65.51,1014.52,66.48,438.78 +25.3,71.29,1007.86,62.98,437.17 +16.63,53.82,1015.18,66.09,458.29 +10.41,44.68,1023.53,91.38,474.7 +26.86,68.08,1012.99,50.04,436.25 +10.48,36.71,1023.18,81.37,473.3 +10.58,42.34,1022.32,94.01,474.91 +6.94,38.91,1018.94,90.64,485.12 +20.64,49.21,1014.86,58.47,454.2 +25.69,73.18,1012.64,86.35,432.82 +22.48,71.29,1008.15,75.41,444.71 +6.63,39.37,1020.33,76.18,489.16 +33.4,69.98,1013.29,47.78,432.44 +15.11,42.99,1007.53,85.75,466.25 +8.99,36.66,1028.11,71.98,481.03 +9.6,41.82,1032.93,72.63,475.01 +9.42,41.4,1029.21,86.4,474.75 +23.62,68.63,1013.18,50.57,447.3 +28.19,71.97,1008.85,84.67,438.8 +26.39,49.16,1005.68,56.18,442.87 +24.93,47.01,1014.28,66.04,455.06 +21.28,70.72,1010.29,86.22,445.54 +8.73,41.92,1029.41,89.72,480.99 +6.99,35.19,1019.32,68.95,480.05 +30.7,71.58,1010.0,48.96,429.27 +15.82,44.2,1018.96,66.73,460.2 +23.19,49.82,1014.59,70.52,451.08 +10.27,42.34,1022.69,92.78,474.55 +14.04,39.64,1011.09,87.22,472.31 +20.42,62.96,1020.34,84.0,452.08 +17.31,58.49,1011.8,92.77,456.84 +13.51,43.41,1015.94,75.22,463.86 +7.39,39.81,1019.45,85.02,482.99 +26.71,76.86,1002.86,74.5,437.31 +31.74,79.73999999999998,1007.07,61.47,431.72 +21.46,50.59,1016.75,67.14,453.67 +12.75,44.03,1007.29,89.46,465.86 +14.43,44.84,1024.34,84.0,467.45 +23.93,68.28,1005.16,69.91,444.95 +10.62,42.02,999.83,96.66,472.41 +14.74,43.71,1024.35,81.53,465.49 +7.87,41.17,1020.33,77.77,486.2 +22.16,65.48,1017.22,70.51,446.0 +7.94,43.65,1018.75,59.45,479.8 +26.56,65.59,1012.6,64.25,443.66 +31.03,69.59,1007.77,63.96,432.56 +29.09,70.98,1007.86,80.34999999999998,439.34 +7.31,42.18,1014.75,86.75,477.38 +10.03,41.62,1014.55,95.61,462.73 +10.28,39.64,1010.45,74.15,477.65 +29.86,64.79,1017.37,44.8,439.89 +29.24,60.23,1009.62,59.71,438.24 +17.34,47.03,1013.36,98.13,463.89 +13.56,42.34,1017.95,93.83,462.6 +10.62,39.96,1025.37,96.64,470.8 +27.37,69.23,1013.25,48.02,433.18 +13.61,42.34,1017.57,91.35,465.65 +12.81,44.58,1016.49,80.76,475.5 +21.83,62.91,1011.07,91.34,443.76 +22.97,62.4,1010.25,75.18,445.3 +24.33,46.93,1013.72,48.27,447.43 +23.49,64.63,1020.75,65.16,450.28 +17.13,42.86,1014.15,73.59999999999998,463.09 +14.86,44.71,1018.3,49.46,466.38 +24.15,64.63,1020.72,58.06,448.87 +7.71,36.25,1027.92,89.84,481.74 +24.82,71.94,1010.5,64.67,438.69 +11.65,41.54,1020.09,67.96,476.4 +10.25,41.46,1020.65,87.07,481.94 +5.78,40.62,1016.55,84.98,484.13 +9.35,44.03,1011.02,88.11,476.25 +10.76,40.43,1025.98,79.65,490.78 +25.76,57.32,1011.93,43.61,440.26 +14.57,37.86,1022.44,68.82,463.58 +13.6,39.82,1013.34,86.1,470.69 +29.36,78.05,1011.12,64.17,434.29 +23.12,69.71,1008.98,84.41,442.21 +23.39,63.94,1010.54,89.94,441.44 +25.45,67.83,1009.47,57.97,429.95 +27.65,48.41,1008.54,58.25,440.94 +30.24,73.9,1006.74,56.39,441.31 +13.78,40.0,1018.38,68.67,458.74 +24.66,69.94,1006.56,60.91,432.68 +17.1,48.98,1016.48,85.63,454.43 +27.37,65.06,1013.09,50.92,440.5 +20.11,51.19,1007.82,92.06,449.03 +12.24,41.62,1013.38,90.26,461.23 +28.5,79.73999999999998,1006.75,87.09,433.08 +14.64,42.77,1017.59,79.59999999999998,464.27 +18.06,65.48,1018.79,77.95,454.34 +14.79,38.73,999.83,86.45,470.28 +35.2,73.56,1006.56,45.72,434.37 +22.93,51.19,1009.3,82.8,443.57 +25.73,66.54,1010.07,55.97,437.07 +18.77,50.66,1014.89,87.34,457.07 +11.52,40.8,1024.31,73.48999999999998,479.56 +8.84,42.49,1010.28,89.09,481.58 +21.24,60.84,1017.99,82.22,445.71 +15.67,45.17,1018.73,94.74,462.09 +22.99,46.21,1010.71,60.11,444.36 +23.93,64.05,1013.09,86.02,440.66 +34.33,69.05,1000.89,37.9,430.56 +29.85,68.24,1007.01,30.99,433.43 +30.1,67.45,1014.23,39.04,434.01 +6.85,37.49,1011.01,84.53,483.12 +26.53,54.2,1012.9,66.73,439.96 +24.2,59.07,1009.25,88.25,441.93 +24.6,75.23,1012.04,76.77,434.07 +30.1,66.25,1009.38,65.41,434.99 +21.6,59.8,1016.9,76.59,450.14 +24.9,58.49,1011.06,65.14,444.19 +26.9,60.93,1007.1,67.32,435.87 +23.07,57.17,1009.84,76.8,444.08 +24.85,70.47,1006.64,85.37,434.47 +30.3,73.9,1006.72,55.13,440.79 +32.18,69.75,1009.94,52.91,438.26 +29.11,74.78,1009.6,56.93,438.75 +21.37,65.94,1010.73,75.09,444.74 +26.53,69.71,1009.88,76.26,446.17 +8.9,40.77,1011.67,90.26,479.18 +22.45,63.77,1014.57,87.44,444.26 +28.9,71.25,1000.73,77.23999999999998,431.52 +18.55,46.48,1007.34,80.67,452.37 +20.92,63.86,1020.49,72.98,449.09 +14.38,45.09,1012.95,86.1,464.27 +8.9,41.4,1030.83,85.63,472.95 +11.1,44.85,1014.27,65.08,477.03 +20.85,59.21,1012.9,75.97,444.44 +26.27,71.98,1005.72,86.15,427.65 +15.61,40.89,1010.48,80.26,467.3 +3.26,41.31,996.32,100.0,489.38 +27.05,77.95,1009.57,76.56,434.09 +19.54,50.66,1014.7,84.53,456.61 +6.42,35.57,1025.58,79.63,485.86 +26.19,65.61,1014.51,54.52,443.73 +9.84,40.22,1009.5,85.38,479.65 +10.86,44.85,1014.15,88.36,476.87 +33.33,73.03,1014.2,42.28,436.05 +9.25,41.82,1033.25,74.73,478.48 +14.7,44.9,1021.87,83.9,468.69 +30.17,75.08,1005.17,55.89,438.89 +11.74,43.56,1015.14,70.72,477.5 +23.27,60.84,1019.13,67.24,440.22 +25.21,59.21,1013.19,62.85,438.7 +15.18,44.2,1019.6,72.45,462.09 +29.03,43.21,1011.83,65.23,434.11 +24.18,58.49,1011.3,77.81999999999998,445.49 +7.62,44.71,1020.56,69.96,486.07 +29.53,71.97,1008.6,79.25,434.96 +24.27,74.93,1012.73,73.81,443.06 +28.4,74.93,1013.65,48.6,442.23 +22.2,57.17,1009.82,78.43,447.75 +17.58,44.9,1020.52,71.48,459.78 +6.71,40.72,1022.78,80.69,483.11 +28.32,72.58,1007.77,78.34999999999998,428.06 +8.11,42.18,1014.82,93.09,473.62 +34.76,68.94,1006.75,41.31,427.42 +28.82,64.79,1016.74,56.34,445.1 +25.43,60.95,1014.62,51.39,444.65 +24.78,57.19,1008.08,65.4,443.62 +6.94,39.61,1017.74,81.43,480.07 +27.5,68.24,1010.38,73.44,430.9 +21.43,63.94,1012.68,99.68,445.29 +26.84,70.36,1007.41,71.47,442.17 +25.69,64.45,1013.05,42.0,450.94 +27.92,74.98999999999998,1005.47,75.13,431.76 +23.69,58.05,1012.08,74.26,444.46 +22.89,62.39,1007.84,88.16,448.13 +15.43,38.58,1016.58,81.17,463.44 +21.84,58.86,1014.13,69.67,445.16 +16.8,56.03,1020.65,85.26,461.96 +18.34,50.59,1018.42,83.95,457.17 +21.1,49.16,1006.76,86.08,442.78 +8.49,39.61,1021.05,87.74,483.94 +11.95,42.03,1017.58,90.89,465.2 +5.05,35.57,1027.03,80.02,491.4 +4.71,42.07,1005.35,82.26,486.79 +13.65,42.74,1026.58,71.48,468.87 +25.14,67.32,1013.96,41.78,435.39 +8.88,39.66,1015.21,88.29,481.45 +11.3,43.14,1019.56,99.83,469.73 +30.61,67.69,1004.97,47.46,429.8 +15.69,39.3,1019.03,60.57,464.17 +20.58,50.78,1008.87,91.18,445.03 +24.66,66.49,1010.83,70.06,438.01 +21.93,62.91,1013.45,74.62,449.17 +25.2,61.08,1013.04,74.28,447.09 +11.75,35.76,1018.99,57.92,473.01 +28.16,70.72,1009.81,65.32,441.37 +34.96,68.94,1006.17,59.26,431.48 +16.63,43.77,1012.25,75.09,458.66 +12.1,44.77,1019.1,75.84999999999998,463.11 +14.48,39.0,1016.75,75.97,464.56 +30.96,71.77,1006.26,52.76,425.66 +26.89,49.16,1003.84,41.22,442.39 +32.09,69.4,1003.1,56.91,430.62 +9.95,41.82,1033.09,69.44,477.52 +16.71,40.55,1004.45,81.64,464.13 +17.34,46.48,1007.18,83.15,452.06 +26.2,71.14,1007.92,72.95,431.7 +14.51,42.77,1017.47,81.95,463.37 +19.81,43.56,1013.39,38.13,460.59 +13.85,41.39,1018.62,75.55,471.45 +11.06,41.5,1013.09,89.8,476.24 +14.45,43.34,1015.47,83.33,462.16 +3.99,39.64,1011.53,83.58,492.06 +24.74,59.39,1015.23,74.64,437.49 +11.48,41.2,1012.88,90.04,478.34 +19.09,43.14,1012.34,45.75,463.3 +22.26,60.37,1008.14,92.37,441.33 +14.17,39.59,1010.99,94.08,464.17 +24.67,58.05,1011.31,69.95,444.57 +26.87,74.98999999999998,1002.48,71.91,437.78 +22.32,48.41,1008.68,79.11,445.36 +14.94,42.77,1018.06,75.34999999999998,460.51 +19.32,44.71,1015.3,28.81,464.38 +17.58,39.63,1004.84,80.43,467.33 +24.19,47.45,1008.26,64.25,446.3 +32.0,73.17,1009.92,42.47,433.72 +12.64,41.79,1016.38,92.65,461.46 +21.86,63.09,1016.64,87.94,442.79 +23.07,69.23,1011.78,76.06,437.08 +15.98,41.48,1017.0,55.73,456.31 +11.48,41.14,1027.67,90.5,464.07 +26.07,69.23,1013.32,54.03,436.94 +13.74,44.21,1023.26,84.2,466.67 +29.23,75.59999999999998,1017.72,52.26,438.92 +9.44,43.99,1020.31,98.06,475.01 +29.51,75.59999999999998,1017.92,50.61,431.18 +13.12,44.21,1019.57,89.29,469.09 +26.23,59.14,1016.98,75.54,437.85 +14.55,42.74,1027.29,66.64,457.77 +20.3,58.46,1015.93,82.13,448.79 +12.57,39.18,1023.09,77.28,471.87 +9.34,41.49,1020.58,97.59,471.04 +7.93,42.28,1008.43,85.57,484.75 +19.6,48.14,1013.18,68.71,456.57 +21.35,57.76,1017.36,73.09999999999998,452.57 +10.59,38.38,1021.58,68.23,474.94 +27.54,75.59999999999998,1018.26,57.89,440.87 +11.12,44.92,1025.58,93.52,470.82 +18.82,61.27,1019.5,72.23,455.29 +25.11,62.26,1011.12,78.01,434.97 +21.89,58.05,1011.31,85.71,441.76 +12.87,48.04,1012.47,100.13,465.56 +25.54,60.37,1006.49,71.54,436.14 +7.05,40.69,1020.53,89.67,476.75 +9.11,36.66,1026.47,74.79,480.74 +24.77,71.94,1006.77,88.86,432.27 +8.51,40.81,1015.54,83.16,481.02 +17.1,62.1,1020.39,93.63,453.4 +7.11,39.9,1008.82,87.76,484.21 +20.01,56.65,1020.77,74.45999999999998,457.01 +25.27,63.91,1009.82,75.48,440.39 +29.72,54.2,1012.86,38.48,438.84 +27.42,65.74,1013.43,69.42,440.52 +28.44,77.54,1011.73,77.3,433.21 +25.89,48.41,1008.49,68.58,440.92 +31.39,69.59,1008.28,62.86,435.76 +17.1,49.69,1005.53,81.81999999999998,457.32 +15.24,44.45,1020.56,66.13,460.94 +13.9,39.59,1011.84,94.74,465.0 +30.52,70.4,1003.9,64.33,438.29 +21.78,68.28,1001.0,79.3,443.24 +28.07,68.08,1013.13,44.67,437.65 +26.07,71.37,1008.6,79.48,439.25 +18.0,43.7,1015.4,61.28,464.26 +9.93,40.67,1018.08,69.74,485.23 +23.48,65.12,1015.82,60.83,445.66 +12.66,41.2,1015.88,89.12,466.49 +25.95,59.27,1010.9,70.42,444.19 +10.34,41.46,1017.75,89.73,478.03 +18.2,39.63,1005.35,79.05,468.49 +23.64,70.04,1011.09,83.35,435.21 +17.38,43.14,1011.09,61.9,459.02 +27.67,69.59,1009.13,82.15,437.29 +22.18,59.39,1014.82,85.31,440.94 +14.86,37.85,1010.58,86.8,467.71 +25.9,47.45,1007.8,55.96,443.13 +25.88,66.48,1004.24,63.16,434.4 +21.12,47.24,1003.79,70.55,462.41 +20.03,62.26,1012.15,82.54,447.4 +21.86,49.21,1014.61,53.31,452.77 +11.71,40.05,1014.49,86.09,471.49 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/train.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8e4f06f47506230c9250aba198646e237e7e5c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/val.csv @@ -0,0 +1,957 @@ +AT,V,AP,RH,PE +25.69,57.32,1012.34,44.18,441.43 +17.98,59.15,1012.09,83.03,451.97 +11.52,40.75,1016.23,85.18,477.19 +26.43,66.48,1004.36,55.9,435.59 +24.26,69.51,1013.43,53.23,442.56 +19.68,62.96,1020.41,82.26,453.58 +10.28,41.46,1018.44,85.23,479.66 +25.15,62.91,1012.23,48.22,444.19 +23.28,72.23999999999998,1011.3,90.5,434.21 +11.6,40.27,1008.55,72.12,473.89 +22.75,58.79,1011.44,84.47,445.67 +6.77,39.81,1017.01,87.68,488.27 +19.48,58.66,1013.32,73.16,454.4 +23.93,65.59,1011.09,87.26,444.9 +17.77,44.6,1016.97,54.25,460.13 +33.58,77.54,1010.19,53.49,433.75 +7.49,39.81,1019.03,87.29,483.59 +6.33,42.07,1004.25,77.09999999999998,484.57 +12.43,41.62,1011.87,80.56999999999998,460.61 +25.34,64.27,1013.38,66.02,443.94 +17.17,63.09,1020.54,95.98,446.75 +27.75,69.89,1015.41,73.01,430.33 +29.62,73.18,1012.21,61.6,427.22 +24.35,70.04,1010.92,73.88,438.4 +27.39,69.14,1008.82,78.34999999999998,435.22 +31.18,70.36,1006.38,56.74,438.46 +26.56,49.02,1007.65,70.78,438.82 +24.24,71.58,1010.15,91.14,437.75 +11.82,41.26,1020.74,91.14,466.95 +14.38,40.1,1015.51,81.23,467.28 +26.65,74.16,1008.27,94.54,431.47 +26.16,67.9,1005.81,61.02,444.06 +5.52,39.33,1009.74,95.25,492.39 +31.24,68.3,1015.89,42.84,435.2 +26.22,67.45,1013.7,44.04,440.17 +21.67,69.71,1010.46,96.83,440.16 +13.4,40.89,1010.67,91.66,472.36 +13.78,43.22,1011.31,69.7,463.71 +9.88,39.66,1017.81,76.05,480.05 +10.34,41.74,1020.07,79.17,480.84 +26.86,71.32,1007.38,81.14,430.44 +12.95,41.38,1021.97,53.83,474.46 +26.94,65.61,1014.31,49.73,443.9 +21.81,43.77,1011.97,64.72,453.13 +18.9,56.03,1020.77,71.83,457.66 +14.87,41.23,997.39,82.06,465.01 +20.46,59.21,1018.42,85.89,445.22 +24.3,69.94,1007.02,62.14,438.92 +24.58,71.94,1006.85,89.02,433.99 +9.88,40.0,1021.4,92.06,481.58 +29.85,71.58,1010.04,58.66,432.26 +27.5,65.59,1011.23,65.37,441.27 +6.14,40.62,1015.71,86.51,481.66 +20.76,51.19,1009.0,87.23,445.0 +25.55,58.95,1017.12,51.84,442.3 +10.24,41.17,1019.73,82.04,479.78 +14.45,43.71,1025.26,84.23,463.6 +30.76,59.57,1010.66,61.76,439.32 +5.72,40.81,1025.78,92.46,487.8 +30.24,68.24,1009.68,64.67,426.25 +34.61,73.03,1013.61,36.91,438.56 +24.14,62.66,1007.33,73.27,439.93 +26.76,70.98,1007.64,90.51,437.83 +18.47,62.1,1019.86,82.57,452.51 +29.51,75.59999999999998,1017.92,50.61,431.18 +29.05,71.85,1008.6,78.69,428.39 +21.89,45.38,1014.42,68.95,459.45 +24.67,63.56,1013.75,67.56,446.3 +30.67,71.29,1008.36,52.08,430.28 +25.21,49.82,1016.44,63.14,450.75 +9.76,41.01,1019.66,97.59,467.6 +18.31,62.1,1020.38,79.02,455.24 +33.11,77.54,1010.36,50.99,431.77 +26.18,69.14,1006.54,85.95,436.0 +8.72,40.02,1031.32,78.09,477.86 +17.06,58.96,1013.83,73.95,461.15 +8.01,40.62,1015.62,86.43,476.22 +14.35,35.71,1016.1,60.86,468.9 +29.74,70.32,1008.1,52.72,432.69 +23.0,49.5,1014.15,66.68,454.44 +17.09,42.42,1009.03,72.01,464.11 +14.0,40.8,1026.17,54.82,474.87 +25.02,60.29,1017.49,54.75,445.61 +13.86,41.58,1020.69,70.74,461.56 +27.58,78.05,1010.83,94.98,431.95 +26.41,60.93,1007.16,66.02,436.71 +11.02,41.44,1015.28,83.53,476.68 +25.48,58.95,1017.02,51.16,440.42 +15.47,48.98,1016.42,89.85,457.55 +21.48,47.43,1006.88,63.54,449.2 +18.86,51.43,1010.27,86.0,446.91 +20.94,44.58,1016.98,59.65,463.69 +15.02,41.48,1015.19,58.69,456.04 +28.71,70.32,1011.78,76.53,435.95 +14.28,42.77,1020.06,81.77,466.75 +26.24,77.95,1014.19,85.21,438.01 +24.31,63.86,1019.47,58.54,442.69 +8.51,40.78,1023.51,89.84,471.11 +16.07,65.46,1013.88,87.11,450.54 +8.14,39.96,1023.41,88.86,477.05 +18.43,44.63,1019.76,39.99,458.75 +34.2,68.14,1002.7,56.09,427.05 +17.66,62.1,1019.49,86.3,452.03 +23.77,51.43,1006.67,84.09,441.54 +16.59,39.54,1007.97,70.58,464.19 +15.01,43.56,1014.65,61.82,465.84 +29.09,70.02,1010.13,48.06,443.27 +20.1,59.87,1018.97,87.23,444.71 +9.0,39.18,1024.38,84.91,483.26 +16.85,50.9,1013.26,83.94,460.68 +28.44,69.4,1003.98,73.51,433.44 +9.51,40.81,1015.69,82.52,475.29 +25.99,49.82,1015.95,58.56,452.09 +6.86,41.17,1020.12,79.14,490.23 +8.57,39.69,1000.91,99.9,474.29 +23.3,48.78,1018.17,75.36,441.08 +32.95,67.9,1005.88,45.15,425.89 +24.41,73.67,1007.39,86.92,435.56 +17.51,39.54,1010.22,71.53,462.12 +31.68,73.68,1014.85,64.0,431.11 +9.0,41.54,1018.83,79.61,484.08 +18.4,43.96,1012.4,77.81,464.63 +13.72,49.83,1006.88,89.49,463.65 +7.16,38.56,1019.17,70.1,486.12 +14.33,43.41,1015.43,55.4,462.94 +13.53,42.86,1014.0,90.63,471.73 +13.11,41.58,1020.43,74.31999999999998,460.44 +23.98,50.32,1008.41,67.75,443.45 +31.08,59.57,1010.76,60.49,442.88 +33.62,77.17,1009.38,63.71,431.03 +11.93,38.78,1013.15,96.08,474.57 +21.97,68.12,1012.53,75.12,443.39 +23.83,49.21,1012.93,46.79,446.23 +4.96,45.87,1007.32,98.78,481.88 +31.3,70.79,1004.3,54.37,428.75 +17.75,49.25,1020.86,63.67,454.41 +29.89,71.29,1009.0,55.72,431.45 +12.11,41.17,1019.46,62.59,475.53 +23.85,74.22,1009.99,82.72,441.66 +12.16,40.81,1025.79,70.97,476.63 +23.71,60.23,1009.76,90.67,439.66 +22.49,58.71,1009.75,76.43,443.33 +18.9,57.5,1016.21,93.9,451.42 +27.86,63.07,1011.11,56.81,440.48 +26.04,71.14,1011.66,68.95,433.78 +19.51,44.05,1008.52,78.38,451.7 +10.92,40.92,1021.84,83.03,467.05 +8.51,42.32,1015.08,84.89,476.6 +19.68,68.28,1002.62,71.57,452.47 +27.75,70.4,1006.65,90.21,436.53 +21.59,66.54,1004.88,90.54,441.71 +13.93,42.86,1032.37,71.11,468.88 +16.55,41.66,1011.45,55.53,465.14 +25.53,71.85,1009.19,74.7,431.26 +20.67,57.5,1014.42,81.89,453.29 +25.21,69.48,1010.99,75.27,436.02 +9.29,39.04,1022.72,74.29,482.55 +33.92,77.95,1010.15,58.89,433.01 +25.63,71.58,1010.14,87.57,433.76 +27.21,66.49,1013.57,40.11,439.04 +10.42,41.26,1008.48,96.76,472.54 +25.02,59.44,1012.49,73.65,444.08 +24.2,59.43,1009.69,62.3,440.66 +15.82,44.88,1018.59,78.88,461.9 +11.46,38.91,1012.34,77.37,477.5 +13.17,36.71,1012.82,72.76,474.93 +23.47,65.61,1014.57,69.83,447.16 +10.77,41.46,1021.42,87.18,479.22 +28.47,69.23,1013.18,40.73,434.12 +30.03,70.02,1010.07,64.2,436.88 +13.89,35.71,1016.4,65.49,468.54 +13.26,41.78,1009.77,61.69,467.78 +12.31,37.73,1023.3,63.01,472.08 +19.61,45.01,1014.84,64.42,461.97 +18.58,44.6,1016.61,48.15,459.06 +23.18,51.43,1011.56,81.83,449.94 +28.33,68.14,1004.63,71.21,431.27 +14.82,40.0,1016.32,66.3,458.46 +21.42,56.89,1014.39,84.05,444.86 +26.62,76.2,1006.06,69.13,437.81 +28.17,72.43,1007.37,68.92,428.88 +20.86,63.73,1008.54,96.83,440.42 +25.45,63.76,1009.96,67.78,439.56 +29.15,73.42,1011.43,66.49,432.26 +32.33,67.83,1008.11,57.48,427.84 +13.45,45.87,1008.73,87.06,464.88 +29.91,76.86,998.59,72.41,432.6 +24.93,73.5,1011.28,83.09,437.35 +9.71,42.44,1014.29,94.03,481.03 +16.69,53.82,1015.39,63.62,458.96 +22.36,51.43,1007.47,87.33,442.53 +25.57,44.05,1005.79,65.14,443.84 +7.36,41.01,1025.49,96.48,477.37 +14.22,42.32,1015.54,77.23,465.0 +18.33,49.64,1025.36,62.57,468.14 +31.1,68.51,1012.99,54.3,428.68 +27.62,71.14,1011.6,52.8,434.72 +17.04,56.03,1020.38,68.69,462.48 +17.31,44.71,1017.43,35.4,463.05 +31.61,69.04,1008.11,47.96,439.19 +28.14,51.43,1012.16,52.67,445.33 +8.77,40.46,1019.68,77.84,475.0 +6.15,40.77,1022.42,88.57,482.49 +21.39,52.3,1009.2,79.77,446.87 +12.29,40.71,1019.71,83.09,469.75 +11.6,39.96,1011.65,80.79,473.22 +26.68,68.08,1011.41,67.33,433.04 +7.71,38.06,1021.0,83.47,482.78 +10.07,44.68,1023.44,90.95,477.52 +22.08,45.61,1014.02,75.70999999999998,456.71 +30.74,69.59,1008.69,68.04,437.81 +26.49,67.69,1004.61,78.13,430.62 +14.55,44.84,1023.83,87.6,465.14 +16.55,39.64,1009.07,77.8,465.29 +11.68,40.55,1006.48,96.16,474.8 +10.95,40.22,1010.04,78.95999999999998,477.23 +11.83,38.25,1013.36,85.33,473.31 +23.38,48.78,1019.03,78.69,446.18 +29.77,69.48,1009.8,52.6,432.69 +24.12,58.66,1011.55,58.96,450.69 +6.1,39.33,1010.4,95.34,491.37 +6.93,41.14,1027.18,84.67,479.06 +27.6,69.05,1003.87,42.01,436.08 +11.23,41.17,1019.36,56.85,475.85 +18.84,40.79,1005.18,92.46,459.96 +29.47,71.32,1008.07,67.0,437.14 +23.3,72.98999999999998,1008.54,92.11,437.62 +29.15,69.48,1008.68,55.78,430.54 +21.99,42.48,1011.77,74.04,456.65 +21.77,42.23,1013.03,67.44,462.51 +27.61,49.16,1005.01,35.63,441.18 +26.05,65.38,1009.43,52.1,449.82 +14.8,44.71,1014.67,41.71,470.77 +15.71,39.3,1019.2,62.28,462.84 +16.44,53.16,1014.82,75.29,458.49 +17.03,58.49,1011.91,92.16,460.48 +10.12,41.55,1005.78,62.34,475.46 +10.17,41.17,1018.58,87.72,478.04 +23.37,65.46,1016.25,48.64,447.07 +11.98,44.6,1018.59,86.71,470.02 +24.66,48.78,1018.39,71.79,449.11 +16.61,43.77,1012.25,77.23,457.66 +14.79,47.83,1007.27,92.04,463.22 +29.2,64.84,1009.94,55.37,441.9 +23.26,58.2,1016.72,57.98,446.87 +7.19,39.37,1019.67,70.77,480.4 +20.94,49.02,1008.91,87.32,448.18 +27.89,73.20999999999998,1001.32,85.88,431.59 +23.63,71.29,1008.01,70.07,442.65 +20.91,58.2,1018.1,62.8,446.19 +14.91,46.9,1019.59,98.1,461.73 +23.82,73.67,1007.26,88.16,438.42 +32.09,79.73999999999998,1006.92,61.5,432.85 +16.69,46.18,1011.0,97.85,458.57 +17.16,58.86,1016.4,86.39,453.76 +28.05,70.36,1006.73,64.42,434.06 +30.54,70.17,999.42,64.32,434.62 +21.95,50.66,1013.92,70.94,455.23 +24.49,59.87,1018.4,59.95,444.54 +10.62,39.58,1011.9,87.85,479.91 +11.47,25.36,1008.27,95.4,469.51 +24.84,71.73,1009.84,82.41,436.36 +20.66,51.19,1008.81,88.93,447.14 +26.85,63.56,1013.25,52.84,444.39 +25.56,69.13,1002.46,68.26,434.48 +20.0,39.53,1007.59,62.09,456.28 +8.22,41.82,1032.77,71.63,477.86 +21.84,59.39,1015.77,88.12,442.11 +14.26,44.47,1028.81,72.19,465.77 +14.35,39.39,1012.92,82.41,470.53 +22.89,80.25,1006.38,80.25,446.15 +24.34,73.5,1011.31,84.15,440.29 +23.86,59.21,1013.02,73.59999999999998,441.22 +27.71,69.13,1001.63,51.45,432.54 +22.63,70.47,1008.0,82.27,441.92 +31.23,75.08,1004.93,46.19,439.14 +10.31,40.67,1017.61,69.61,485.25 +7.64,39.85,1012.78,88.09,481.53 +31.44,79.73999999999998,1006.95,56.99,431.69 +4.89,45.87,1007.58,99.35,482.69 +27.91,63.76,1010.27,65.67,435.21 +19.05,53.16,1013.22,82.8,455.76 +28.36,69.88,1007.75,84.17,434.03 +27.69,73.91,1005.23,75.70999999999998,435.08 +22.85,59.15,1014.74,63.92,448.61 +23.0,57.76,1017.64,56.86,451.39 +30.04,68.08,1011.04,51.01,429.52 +17.08,38.58,1015.41,73.42,461.49 +27.13,69.45,1013.9,51.16,434.47 +30.65,65.18,1012.51,42.32,436.79 +23.91,50.23,1017.25,68.57,455.41 +7.64,42.28,1008.49,83.42,483.74 +6.77,40.78,1024.86,96.58,478.24 +18.41,44.9,1008.97,73.81,453.12 +14.29,39.59,1010.93,94.53,463.04 +29.29,71.14,1011.49,49.97,432.58 +29.17,67.45,1014.1,46.85,435.08 +23.55,65.94,1011.76,58.44,443.98 +19.05,59.21,1017.99,89.53,451.0 +18.22,49.25,1020.33,61.87,454.66 +14.8,38.73,1003.18,80.73,467.54 +5.28,45.87,1008.25,97.88,479.91 +13.07,43.13,1016.93,70.02,471.47 +21.37,81.56,1006.57,81.56,434.38 +9.96,41.55,1002.59,65.86,475.91 +13.86,41.78,1010.75,57.9,467.39 +11.33,41.16,1019.05,87.13,468.87 +16.81,42.42,1008.95,74.25,462.19 +29.79,67.69,1006.86,55.93,428.71 +14.44,41.2,1015.96,81.97,469.85 +9.08,40.46,1019.48,77.37,476.81 +17.3,57.76,1016.26,87.74,455.75 +27.06,64.45,1008.72,54.21,443.1 +14.64,39.58,1011.46,71.9,467.8 +23.69,77.54,1009.32,89.7,440.21 +9.05,36.3,1027.44,74.84999999999998,479.43 +24.73,74.22,1010.15,79.83,436.55 +19.94,44.9,1008.52,74.69,459.47 +8.73,39.42,1025.63,69.87,474.44 +26.66,73.56,1006.9,99.27,433.62 +31.81,69.88,1007.94,55.91,432.6 +17.47,58.59,1014.03,97.13,449.41 +22.18,62.39,1007.84,85.74,452.31 +18.25,43.14,1011.51,55.16,462.78 +20.34,69.45,1012.76,91.05,442.73 +27.44,58.9,1003.86,66.74,442.19 +27.75,77.23999999999998,1007.48,78.37,433.57 +19.13,59.21,1018.32,89.66,450.81 +19.84,65.48,1019.54,76.59999999999998,449.85 +21.1,62.66,1011.19,83.49,448.8 +20.15,58.59,1014.13,91.96,443.85 +28.85,58.33,1013.78,41.39,444.0 +19.39,60.1,1010.28,83.31,452.57 +21.88,69.71,1010.28,97.64,444.39 +16.34,47.45,1009.41,92.96,448.59 +13.34,40.8,1026.56,64.85,474.47 +3.92,41.31,999.22,95.26,487.35 +21.97,58.12,1015.29,77.47,449.6 +13.89,44.84,1023.66,92.97,466.74 +13.98,40.71,1022.72,71.83,474.46 +16.55,41.93,1022.71,42.73,466.77 +21.17,52.3,1009.36,81.51,447.5 +24.37,65.61,1014.5,65.67,443.13 +24.42,64.79,1016.12,69.32,449.1 +16.54,42.86,1014.85,78.0,465.26 +8.199999999999998,41.14,1025.24,96.26,474.04 +26.17,58.86,1014.52,51.28,443.69 +14.24,39.58,1011.17,70.45,469.94 +14.1,42.18,1015.05,78.25,463.3 +24.91,52.3,1008.72,68.26,441.15 +32.55,69.89,1013.87,40.09,428.84 +20.7,58.16,1016.73,68.19,453.22 +29.7,57.19,1008.41,55.07,436.29 +17.66,60.08,1017.22,86.96,456.62 +30.03,68.84,1011.41,53.82,439.31 +26.45,54.5,1014.96,65.55,450.76 +12.57,41.79,1014.99,87.8,461.88 +30.82,78.87,1012.06,70.69,432.01 +16.97,44.92,1025.21,74.27,460.21 +14.84,38.91,1013.78,69.27,467.83 +20.99,50.78,1008.55,75.14,449.07 +12.35,44.2,1017.81,82.49,471.65 +19.64,46.33,1013.33,98.99,451.45 +29.14,61.5,1009.64,39.95,437.76 +11.82,41.17,1019.5,55.74,475.61 +23.94,51.95,1008.61,73.42,448.67 +17.4,63.09,1020.84,92.58,453.0 +8.949999999999998,43.13,1017.56,94.85,479.14 +29.12,51.43,1005.93,60.66,437.71 +29.13,47.93,1002.5,49.1,435.61 +30.56,71.25,1000.3,70.55,431.92 +19.07,44.63,1020.23,44.93,456.37 +32.96,69.75,1008.86,40.23,435.56 +19.35,39.72,1002.5,51.24,455.29 +31.92,68.3,1015.58,41.55,430.07 +13.85,48.92,1011.68,79.23999999999998,462.38 +26.69,70.36,1006.82,68.29,435.04 +17.66,44.9,1020.5,71.33,457.11 +16.05,38.28,1014.38,73.89,466.75 +6.24,35.77,1019.24,70.7,483.36 +6.43,39.61,1017.51,83.8,480.58 +15.12,39.16,1006.55,76.98999999999998,463.78 +15.84,49.69,1015.14,90.41,462.6 +18.41,42.44,1012.66,65.93,463.2 +15.54,41.96,1011.78,97.46,467.1 +28.26,69.23,1013.01,42.1,436.31 +12.24,40.96,1023.22,78.73999999999998,475.32 +25.45,75.23,1011.41,73.33,441.65 +5.25,42.85,1013.75,89.67,477.78 +9.82,41.04,1026.72,77.28,473.98 +11.44,41.39,1019.59,79.95,478.52 +12.07,38.25,1012.67,81.66,470.36 +28.51,70.02,1010.58,54.68,441.66 +23.47,60.77,1017.19,75.36,444.46 +20.42,45.01,1012.23,66.5,451.28 +21.13,47.43,1006.97,64.26,448.83 +18.62,65.48,1018.45,73.39,451.94 +15.68,43.7,1015.09,58.96,470.29 +7.46,39.81,1018.62,86.73,484.13 +11.38,52.75,1026.19,72.70999999999998,469.9 +21.11,43.43,1010.1,62.62,447.83 +32.38,77.23999999999998,1007.7,61.15,430.96 +19.74,45.38,1015.11,80.67,459.39 +19.18,50.12,1005.99,100.09,444.56 +10.19,37.14,1012.74,73.48,475.01 +20.98,43.77,1010.67,62.73,449.88 +13.47,44.88,1017.56,93.23,476.67 +27.23,44.05,1005.69,58.91,440.2 +7.3,43.65,1019.33,67.62,482.96 +18.26,60.95,1016.94,78.91,457.03 +9.55,40.67,1018.56,70.72,486.34 +26.1,63.56,1013.12,61.0,442.75 +25.88,63.73,1009.48,77.17,438.42 +20.29,63.09,1019.03,76.06999999999998,448.22 +22.58,59.14,1017.2,80.91,439.78 +27.57,60.07,1016.52,54.75,440.12 +30.48,70.04,1010.73,53.7,429.85 +9.27,38.56,1017.69,62.49,475.42 +15.01,42.77,1018.21,73.22,462.6 +31.01,73.5,1010.92,48.61,432.41 +19.62,68.63,1012.26,68.05,453.84 +24.26,47.93,1003.87,70.44,439.16 +14.87,41.76,1022.26,78.20999999999998,464.84 +31.0,71.77,1006.29,48.56,431.07 +28.84,74.67,1016.52,67.43,428.98 +18.48,50.16,1011.45,99.92,452.06 +30.49,64.44,1013.43,51.73,438.09 +27.49,71.94,1008.25,68.29,428.27 +21.76,47.93,1005.34,86.28,444.77 +13.78,44.47,1027.94,71.09,467.22 +25.28,66.25,1009.77,84.55,439.77 +27.17,61.02,1011.38,65.32,437.06 +20.51,42.23,1013.25,71.83,461.78 +15.43,39.16,1016.44,79.8,470.74 +12.7,39.72,1017.89,62.97,467.77 +26.86,72.58,1009.22,88.39,428.69 +26.06,58.59,1012.41,55.22,451.47 +10.56,40.22,1005.08,89.71,478.02 +25.33,73.20999999999998,1002.19,97.24,433.43 +3.0,39.64,1011.0,80.14,485.2 +30.91,69.75,1010.23,59.36,435.7 +27.34,71.64,1008.12,72.22,438.76 +15.34,43.5,1021.18,79.44,459.77 +18.99,59.27,1012.15,89.39,453.4 +12.14,40.27,1007.57,73.22,472.84 +30.75,71.22,1006.47,48.06,437.96 +16.05,41.96,1011.82,96.05,463.72 +14.83,53.82,1016.57,63.47,464.0 +25.12,66.56,1009.22,65.62,436.56 +13.72,41.62,1011.14,75.79,455.52 +20.94,58.16,1016.88,65.43,455.16 +24.81,67.17,1007.71,84.37,442.75 +10.2,41.46,1019.12,83.26,480.11 +26.19,49.3,1003.69,65.88,440.13 +24.7,58.82,1009.4,75.91,442.98 +31.82,73.68,1014.8,40.58,433.32 +10.29,40.56,1017.28,69.13,481.7 +15.94,44.85,1014.29,67.57,462.54 +21.28,70.32,1011.06,90.12,439.0 +12.45,40.1,1015.4,82.61,473.63 +25.15,57.32,1012.41,41.84,440.1 +28.52,57.82,1004.81,57.82,435.4 +22.47,48.6,1002.33,63.23,445.98 +15.21,43.5,1021.6,82.06,464.08 +27.88,63.87,1017.79,40.0,443.24 +32.14,68.31,1010.48,42.15,436.15 +28.28,69.48,1008.56,61.3,428.75 +12.12,38.28,1013.65,90.19,471.19 +13.44,41.14,1026.41,77.26,461.44 +15.12,41.04,1025.95,69.67,460.58 +9.73,40.22,1011.48,87.88,481.42 +14.05,39.59,1011.2,94.54,464.63 +28.43,63.31,1013.44,49.99,432.62 +12.38,41.62,1012.37,84.15,461.07 +7.09,39.37,1020.07,73.26,487.0 +11.69,35.76,1019.02,55.6,471.72 +25.76,63.94,1018.49,42.14,445.78 +14.91,43.34,1015.15,81.56,461.27 +21.91,70.32,1009.17,90.57,439.29 +23.56,73.18,1012.18,87.98,437.92 +19.98,49.15,1021.56,63.89,457.54 +24.33,49.16,1003.46,61.04,441.2 +9.22,40.92,1021.83,85.43,474.51 +32.16,71.32,1005.5,60.23,434.01 +27.29,64.45,1013.46,45.35,446.94 +28.14,61.47,1009.69,64.66,435.35 +26.71,70.4,1007.59,82.63,432.64 +19.83,46.33,1013.27,96.4,451.22 +13.49,43.41,1015.75,57.86,461.06 +14.13,53.82,1016.72,64.85,467.08 +20.6,66.86,1013.08,62.48,451.44 +22.01,60.84,1017.55,83.82,441.9 +5.89,35.77,1019.78,79.58,479.86 +26.02,70.79,1004.21,79.12,428.72 +14.08,41.93,1023.02,59.41,475.15 +24.96,77.54,1008.25,80.59999999999998,433.4 +32.21,71.85,1008.25,58.09,429.15 +26.59,69.13,1009.27,73.95999999999998,430.11 +8.529999999999998,43.14,1012.25,78.88,480.08 +25.94,66.49,1012.83,61.81,433.38 +7.76,39.61,1021.63,80.67,488.32 +27.21,67.45,1013.83,43.26,436.47 +19.08,59.15,1013.1,81.81999999999998,451.33 +30.97,67.9,1005.98,55.6,428.26 +7.53,41.74,1022.45,90.85,487.25 +32.19,69.13,1000.45,48.22,425.21 +27.32,66.54,1004.95,72.58,431.33 +14.92,46.18,1014.21,98.82,465.63 +24.62,72.43,1007.97,84.36,436.89 +14.47,44.66,1016.33,93.52,464.41 +26.35,59.44,1012.16,63.73,443.73 +26.38,65.12,1016.1,47.57,441.07 +24.44,52.84,1006.39,49.05,440.2 +32.63,74.98999999999998,1002.42,40.07,432.79 +29.49,69.71,1009.34,56.35,440.99 +30.58,70.04,1010.4,48.16,431.59 +13.24,39.16,1016.52,86.66,474.48 +12.91,41.66,1013.37,71.52,469.71 +25.1,43.77,1010.9,49.68,444.99 +16.0,43.02,1012.37,39.2,466.01 +23.62,61.87,1010.07,48.77,447.93 +25.54,70.47,1009.28,73.5,436.16 +15.89,41.7,1018.93,82.68,463.33 +23.79,50.16,1005.32,75.81999999999998,435.49 +17.77,56.53,1019.57,79.89,457.94 +21.54,58.41,1013.99,86.34,450.69 +24.49,70.79,1005.51,88.65,430.54 +13.52,39.39,1012.91,84.03,474.82 +13.51,44.9,1019.29,77.23999999999998,464.86 +28.9,68.84,1011.64,64.44,437.06 +26.28,75.23,1011.44,68.35,435.28 +28.81,64.96,1000.46,68.05,427.91 +17.49,63.94,1020.02,82.6,452.71 +20.61,48.78,1020.8,85.05,449.38 +27.84,71.32,1007.72,79.25,431.37 +22.7,60.84,1019.15,71.48,438.59 +7.21,42.03,1017.81,90.12,482.26 +14.68,41.23,998.43,83.71,469.25 +21.93,60.84,1018.96,76.8,440.76 +9.23,37.36,1015.01,67.38,481.08 +27.51,49.3,1003.74,61.27,437.09 +20.76,70.72,1009.73,89.04,448.85 +30.65,71.06,1008.61,76.76,432.08 +10.31,42.49,1009.43,78.36,479.64 +27.27,72.58,1009.25,89.31,428.93 +28.61,68.12,1012.23,46.45,435.28 +19.65,44.89,1009.76,75.36,451.35 +30.24,69.88,1007.9,61.46,436.37 +31.26,68.94,1005.94,39.49,438.03 +25.16,74.33,1014.55,76.7,436.15 +16.73,58.59,1015.02,89.61,455.3 +30.57,58.9,1004.54,54.37,438.49 +17.18,63.09,1020.67,93.58,451.37 +27.35,61.47,1008.43,70.65,443.67 +19.11,50.16,1010.88,100.09,450.38 +26.48,68.14,1004.83,55.96,432.19 +13.84,42.18,1015.74,79.76,468.66 +29.1,76.2,1006.28,60.22,435.97 +13.91,40.24,1017.03,85.93,466.24 +13.73,41.78,1011.75,49.65,464.94 +25.4,65.34,1013.11,53.93,445.82 +14.73,39.52,1017.01,74.20999999999998,470.45 +27.58,66.48,1004.82,51.23,435.34 +24.03,62.44,1010.96,79.88,430.66 +19.78,63.09,1019.01,78.39,448.34 +12.57,41.66,1009.11,70.74,475.61 +13.95,41.49,1019.95,86.46,465.24 +13.77,47.83,1007.41,90.66,466.07 +21.52,50.66,1013.56,74.33,455.71 +27.98,67.9,1006.3,73.53,436.08 +14.57,44.45,1021.42,66.23,462.48 +25.46,70.32,1010.65,64.7,433.08 +8.58,38.38,1021.03,84.37,482.26 +28.18,66.56,1005.69,65.67,426.79 +32.07,70.94,1006.91,49.9,432.33 +17.94,37.2,1012.64,68.11,467.65 +7.34,40.72,1023.01,80.08,483.92 +10.8,39.28,1010.7,82.62,478.8 +24.34,70.79,1006.82,85.66,433.83 +26.45,64.27,1013.23,60.92,444.9 +18.38,62.1,1020.12,77.27,452.91 +32.53,77.95,1014.76,58.1,434.44 +7.99,36.08,1020.08,83.2,481.35 +21.16,50.66,1014.13,72.77,455.86 +15.71,40.12,1012.81,97.46,462.6 +20.58,39.53,1005.68,62.09,460.1 +32.0,58.9,1003.48,51.38,437.81 +30.29,74.16,1008.77,75.23,431.39 +31.38,68.27,1006.79,52.79,426.67 +29.67,66.51,1015.6,34.1,434.8 +19.9,56.53,1020.52,78.05,456.48 +23.6,57.17,1009.84,74.27,446.05 +4.59,39.33,1010.85,71.78,494.9 +12.76,43.7,1015.13,65.34,475.73 +6.53,42.85,1012.65,91.6,480.98 +14.46,53.82,1016.55,68.11,462.6 +23.75,61.5,1008.16,69.14,442.35 +22.28,59.92,1009.36,95.38,437.85 +24.4,60.37,1006.77,82.43,440.64 +29.82,69.75,1010.09,65.02,442.6 +20.29,65.27,1013.17,74.94,445.52 +27.2,72.43,1006.75,80.67,430.32 +5.7,40.62,1016.07,84.94,482.82 +24.54,65.46,1014.27,40.77,446.26 +16.57,63.31,1016.19,81.02,454.78 +29.89,65.74,1012.95,51.36,438.24 +24.37,70.02,1010.97,71.97,443.53 +24.16,65.06,1013.88,58.96,442.32 +14.9,52.05,1015.11,77.33,464.82 +26.88,74.78,1010.42,64.81,440.84 +27.02,72.58,1009.21,89.13,437.8 +10.13,38.16,1013.57,79.04,474.92 +15.27,38.73,1002.83,77.77,465.99 +14.03,44.88,1019.6,57.63,465.51 +8.51,41.26,1023.17,87.79,477.51 +8.68,41.82,1032.83,73.62,478.61 +12.85,41.14,1027.04,86.29,464.86 +25.27,67.07,1006.34,66.35,445.81 +28.62,69.71,1009.67,62.12,437.52 +23.87,60.27,1018.94,77.16,439.86 +26.54,69.48,1010.7,66.09,432.56 +12.83,44.88,1017.86,87.88,474.26 +15.62,41.76,1023.82,66.17,459.72 +28.28,61.86,1012.07,64.49,439.65 +20.06,62.1,1020.21,72.20999999999998,451.81 +13.86,35.71,1015.21,63.16,471.63 +28.19,68.08,1013.41,43.93,436.43 +18.02,53.16,1013.41,82.84,458.01 +14.8,43.99,1022.89,85.25,461.97 +9.26,41.66,1016.87,73.31999999999998,483.51 +20.65,66.51,1014.94,71.83,456.49 +13.03,39.52,1016.68,83.09,473.99 +13.41,49.83,1008.83,87.14,466.38 +3.73,39.42,1024.4,82.42,488.58 +26.95,70.79,1004.09,75.34999999999998,430.07 +11.7,43.41,1016.08,62.27,467.51 +13.09,54.3,1017.61,82.38,471.0 +5.21,41.31,1003.51,91.23,486.46 +12.65,44.0,1023.03,88.73,471.46 +16.01,49.64,1026.35,77.75,457.8 +15.34,41.23,996.87,86.56,465.16 +17.94,62.1,1019.81,82.65,453.55 +33.01,68.67,1005.2,51.41,433.94 +22.91,66.44,1011.23,63.43,444.48 +31.35,67.32,1013.74,38.56,439.81 +10.63,40.67,1017.13,66.12,483.27 +4.27,39.64,1010.99,84.85,487.19 +21.14,58.05,1012.98,87.27,449.74 +25.36,60.07,1015.06,66.11,439.73 +11.44,44.2,1018.14,84.9,476.12 +13.35,39.58,1012.41,83.45,465.85 +23.88,54.2,1012.81,64.52,444.97 +15.65,43.5,1021.39,78.58,463.5 +6.72,38.91,1016.89,90.47,485.89 +15.74,43.71,1024.7,78.38,462.66 +19.84,56.89,1013.23,78.31999999999998,447.92 +11.44,43.13,1014.88,63.88,477.57 +26.55,69.45,1013.88,55.39,435.64 +19.96,39.53,1006.16,62.77,460.49 +10.8,40.69,1014.3,87.44,478.19 +8.36,38.91,1016.27,88.82,482.09 +8.55,35.77,1016.15,73.31999999999998,481.44 +31.84,71.37,1003.51,46.22,432.04 +5.94,39.9,1007.84,86.33,485.86 +14.35,40.71,1023.09,69.5,473.56 +31.91,67.83,1008.76,53.22,425.28 +25.35,74.33,1015.29,77.84,435.66 +9.32,36.3,1027.67,73.25,479.52 +16.34,42.28,1008.08,52.8,463.29 +29.95,73.42,1011.44,66.32,432.81 +7.09,43.65,1019.6,72.09999999999998,483.42 +25.63,72.98999999999998,1008.2,86.8,436.64 +28.54,71.94,1007.4,65.99,430.91 +25.57,65.46,1014.81,38.58,444.46 +12.99,44.0,1025.22,90.27,470.93 +14.77,48.06,1010.92,69.81,461.52 +31.09,59.57,1010.67,60.5,440.08 +14.04,48.79,1017.62,75.25,464.09 +29.12,66.56,1006.9,49.79,429.94 +32.13,74.34,1003.34,56.39,436.3 +31.75,74.98999999999998,1003.25,53.33,430.82 +24.82,66.54,1010.0,60.36,440.88 +19.76,48.92,1010.48,46.57,456.69 +31.26,76.09,1006.66,63.91,430.36 +9.43,41.4,1028.81,85.83,475.8 +27.78,60.07,1014.66,53.74,439.43 +23.99,45.87,1007.63,52.62,443.66 +18.32,66.51,1015.18,81.5,459.89 +28.86,49.3,1003.93,52.85,435.75 +27.35,69.48,1008.51,65.81,432.31 +23.32,66.48,1003.92,72.25,436.26 +18.99,62.1,1020.0,76.76,453.09 +10.82,42.02,996.03,99.34,475.46 +14.81,43.69,1017.19,71.9,470.71 +22.77,59.92,1009.67,94.09,437.9 +18.61,47.83,1006.43,78.89,454.21 +26.5,66.05,1017.03,61.34,440.15 +16.11,44.92,1025.37,79.84999999999998,460.99 +30.51,70.94,1007.64,59.42,430.91 +13.48,41.44,1015.64,71.46,471.39 +16.37,43.5,1021.26,72.4,459.18 +21.19,50.16,1005.81,84.27,450.33 +26.38,59.92,1009.99,71.91,444.85 +24.45,65.12,1015.92,57.19,445.01 +28.6,71.22,1003.15,58.33,443.01 +29.39,69.89,1013.92,47.36,434.27 +25.91,68.08,1010.92,74.25,432.07 +19.94,65.46,1017.7,68.94,448.67 +13.95,71.14,1019.76,75.51,461.18 +33.7,68.27,1007.16,50.41,427.4 +6.58,40.07,1014.22,55.44,493.72 +9.79,39.69,1002.36,93.86,471.61 +18.41,65.94,1010.23,84.71,452.66 +22.89,48.98,1014.55,48.21,448.56 +25.68,46.21,1011.01,57.53,442.98 +32.77,72.86,1003.6,52.87,433.84 +13.18,43.8,1023.18,61.21,467.0 +28.99,54.2,1012.79,41.9,442.6 +26.34,59.21,1013.37,58.98,439.22 +21.11,58.66,1011.7,68.71,457.89 +24.28,71.98,1006.34,90.45,432.47 +28.46,73.67,1005.67,71.21,429.15 +27.16,59.87,1011.78,58.84,446.38 +18.36,53.16,1013.31,83.18,458.47 +20.35,50.9,1012.6,72.43,453.5 +8.57,40.69,1020.87,84.15,485.18 +8.97,44.03,1013.16,80.39,474.61 +20.95,70.72,1009.96,87.73,445.66 +23.49,47.45,1008.46,66.18,446.72 +7.26,41.22,1014.86,97.82,488.75 +27.36,58.33,1013.86,56.7,439.14 +27.98,67.17,1007.32,75.29,440.68 +25.15,68.51,1013.25,72.31,440.96 +26.82,60.96,1012.25,57.41,449.81 +4.24,39.9,1009.28,96.74,491.25 +24.49,65.06,1014.07,63.32,441.4 +19.65,42.23,1013.04,75.9,461.16 +9.57,39.82,1013.12,89.15,468.02 +31.46,66.54,1002.86,53.75,427.76 +7.2,40.35,1011.83,95.59,484.9 +18.19,66.54,1012.9,86.05,449.22 +23.21,73.42,1010.34,88.29,439.66 +29.31,68.67,1006.18,63.38,435.57 +23.54,41.1,1002.05,38.05,448.56 +24.22,62.08,1022.53,60.79,449.11 +21.85,59.8,1016.89,75.28,454.26 +29.79,62.66,1008.5,48.51,440.27 +7.06,41.74,1021.95,90.38,448.97 +15.55,39.63,1004.98,89.82,466.83 +11.09,40.43,1025.47,74.97,490.96 +23.85,72.43,1008.01,88.34,439.02 +24.87,68.61,1011.19,55.69,450.54 +20.67,63.56,1013.27,79.39,450.7 +15.33,42.28,1008.19,66.15,465.2 +20.73,41.1,1001.86,47.51,456.44 +12.53,44.03,1007.21,84.2,470.04 +13.43,50.59,1020.38,86.3,469.33 +23.61,63.94,1012.9,87.06,441.57 +24.07,71.97,1008.83,94.87,441.84 +28.28,61.47,1009.44,60.89,443.12 +9.75,43.69,1016.81,82.42,481.34 +11.96,43.41,1017.42,79.44,469.34 +14.02,40.75,1016.05,70.65,470.48 +8.25,37.49,1009.02,81.09,480.38 +22.8,49.16,1006.4,77.05,439.65 +24.13,45.61,1012.63,71.36,453.19 +15.96,41.66,1011.93,55.47,466.39 +17.48,49.39,1021.51,84.53,460.01 +4.95,42.07,1004.87,80.88,485.67 +12.02,43.69,1016.12,74.06999999999998,477.74 +14.16,39.28,1015.63,77.29,471.27 +21.17,58.16,1017.16,68.11,452.02 +4.97,40.64,1020.91,94.28,485.43 +27.28,78.92,1011.05,75.48,434.78 +10.42,44.85,1014.18,88.36,479.03 +12.75,44.2,1017.59,81.22,471.03 +13.1,40.03,1017.79,84.48,470.75 +29.09,72.43,1006.86,65.47,427.3 +27.64,75.59999999999998,1017.35,54.78,441.04 +7.79,41.01,1024.0,97.2,477.0 +16.52,43.7,1015.08,58.36,466.73 +17.79,40.12,1012.74,79.03,459.13 +15.04,38.01,1022.46,78.29,468.12 +15.92,39.16,1006.59,71.32,460.45 +20.4,57.85,1011.14,92.47,450.07 +20.25,63.91,1009.27,97.97,448.37 +14.24,39.52,1018.22,77.19,468.51 +28.11,70.98,1007.76,85.6,431.83 +21.3,66.86,1013.04,55.43,450.56 +16.56,42.99,1007.48,74.45,464.62 +8.93,40.46,1019.03,71.0,472.77 +17.48,44.2,1018.89,61.51,457.15 +10.38,41.01,1020.8,94.26,465.9 +21.83,57.85,1012.49,75.16,448.21 +20.58,54.5,1015.04,89.83,467.76 +14.95,39.31,1009.15,75.3,462.72 +14.01,38.91,1015.86,69.24,470.1 +7.0,38.08,1020.27,77.67,482.38 +23.82,48.92,1010.48,44.45,446.85 +12.65,44.34,1019.4,71.45,468.8 +16.37,53.16,1014.89,74.84,459.52 +18.62,59.15,1012.85,82.54,450.81 +22.96,68.61,1011.15,76.62,447.18 +25.72,74.67,1016.64,75.93,434.83 +16.0,37.87,1020.24,78.41,461.33 +19.09,65.94,1012.53,81.06,446.34 +24.49,65.61,1014.71,63.47,447.26 +12.79,44.03,1007.46,95.93,464.35 +8.699999999999998,36.24,1013.34,89.5,478.69 +19.79,51.19,1008.77,94.72,447.96 +30.55,68.24,1009.43,63.84,426.8 +10.1,44.03,1008.11,90.29,471.59 +26.73,49.02,1007.75,67.73,438.17 +8.99,41.26,1020.52,91.96,476.09 +15.24,39.39,1013.01,74.23999999999998,469.79 +30.36,71.8,1010.9,63.27,437.4 +10.98,41.54,1019.94,69.83,479.08 +29.08,70.83,1007.98,51.95,430.91 +25.23,61.86,1013.0,76.18,441.48 +27.76,72.58,1009.04,84.96,429.25 +24.37,68.14,1005.22,59.27,440.22 +11.22,40.22,1011.01,81.67,476.7 +23.43,51.43,1011.31,73.55,444.09 +22.81,58.96,1013.5,55.66,452.89 +15.71,44.06,1018.34,71.69,465.05 +10.34,37.5,1010.35,95.56,474.08 +11.01,40.05,1015.46,89.22,474.2 +28.59,69.84,1003.79,67.31,427.53 +29.86,59.57,1011.24,64.02,439.44 +3.95,38.44,1016.75,79.65,492.46 +16.98,63.09,1020.44,95.18,450.55 +28.03,60.23,1010.23,66.04,438.88 +24.43,58.05,1011.88,71.39,445.68 +13.97,45.01,1017.44,89.15,461.96 +9.11,40.02,1031.1,83.02,479.03 +22.08,55.5,1018.42,58.46,455.79 +31.61,75.08,1004.83,42.29,436.67 +8.68,43.14,1011.94,79.06,480.73 +29.11,74.9,1003.31,74.01,432.43 +12.71,43.8,1023.15,71.16,466.2 +31.24,74.22,1007.74,48.77,430.44 +9.18,42.18,1017.4,87.3,475.57 +4.15,39.9,1007.62,95.69,489.8 +14.93,43.02,1012.11,45.56,468.19 +12.24,40.66,1017.4,96.22,464.7 +20.87,63.31,1012.27,79.51,446.7 +21.12,62.52,1015.62,78.98,450.93 +19.23,41.67,1012.53,48.86,465.66 +30.74,71.77,1006.24,53.38,434.89 +25.42,73.20999999999998,1001.91,93.78,432.04 +18.97,50.59,1016.01,74.9,459.68 +23.65,66.05,1019.6,78.20999999999998,442.9 +15.26,46.18,1013.68,98.58,463.6 +24.41,58.59,1012.62,64.52,442.64 +20.79,50.59,1017.75,73.34999999999998,456.01 +8.34,40.72,1023.62,83.75,483.14 +31.12,68.14,1003.67,67.36,427.06 +24.92,63.94,1017.7,44.92,441.07 +29.3,70.04,1010.95,61.23,426.25 +16.46,61.27,1020.02,74.54,456.64 +24.44,69.84,1005.34,80.37,430.3 +6.17,39.33,1012.57,93.32,491.54 +18.15,41.67,1012.75,52.69,464.44 +26.38,71.58,1011.02,80.9,434.26 +23.99,67.69,1007.9,78.56999999999998,437.1 +26.51,67.25,1017.85,64.17,435.52 +24.31,66.49,1011.38,54.35,440.79 +29.04,70.72,1009.55,66.58,437.95 +13.26,41.74,1021.89,63.32,473.44 +18.32,65.94,1012.74,86.77,450.5 +4.87,42.85,1012.69,94.72,482.05 +24.98,60.32,1016.39,63.12,446.46 +14.77,44.9,1020.5,84.31,465.23 +28.77,75.23,1010.01,59.0,437.93 +28.5,76.86,999.49,77.47,430.62 +11.62,41.54,1019.94,66.43,477.75 +23.21,74.22,1009.68,88.46,440.46 +30.12,73.18,1012.29,61.32,429.31 +11.63,41.5,1013.6,87.11,477.3 +19.8,58.79,1017.04,87.71,449.66 +30.22,70.32,1011.63,65.97,435.98 +17.55,43.14,1018.86,76.0,461.58 +8.27,37.7,1015.09,73.64,479.16 +31.01,69.13,1000.93,62.96,425.69 +28.64,73.4,1011.48,52.84,441.32 +10.81,45.0,1023.45,85.89,482.63 +25.62,73.17,1011.65,86.45,430.56 +30.28,58.9,1005.03,54.59,439.06 +3.63,38.44,1016.16,87.38,487.87 +9.73,41.01,1021.76,97.71,469.11 +6.72,39.85,1011.84,84.66,489.09 +20.58,49.15,1021.42,56.15,453.87 +27.99,71.58,1010.68,68.99,435.99 +18.36,53.16,1013.14,79.89,457.94 +30.08,73.42,1011.17,63.86,434.95 +25.6,63.9,1013.16,53.19,451.44 +27.41,59.21,1013.3,50.93,438.39 +7.51,43.02,1014.35,86.46,485.38 +13.42,41.74,1020.96,61.8,473.45 +28.18,60.07,1016.34,49.13,441.61 +17.3,43.72,1009.64,77.86,456.55 +24.96,70.47,1007.73,76.48,438.23 +21.04,45.09,1014.19,40.62,450.92 +22.17,65.61,1014.71,70.91,449.91 +26.98,72.58,1008.55,78.5,431.12 +30.13,78.05,1010.99,61.5,434.14 +9.68,41.48,1018.24,71.04,473.31 +21.95,68.08,1012.91,69.36,443.93 +15.09,44.34,1019.46,60.49,468.8 +23.83,58.79,1009.77,78.13,444.34 +13.86,40.66,1017.15,83.82,463.49 +22.79,69.13,1010.87,91.47,438.08 +26.71,77.95,1012.13,77.5,433.47 +28.69,67.25,1017.71,53.83,432.21 +18.27,51.43,1010.38,88.39,460.41 +24.24,68.3,1018.03,81.51,437.12 +11.8,45.09,1013.21,89.68,470.57 +17.19,58.86,1016.74,85.97,451.87 +18.55,61.87,1008.45,65.3,450.73 +15.5,44.92,1024.16,86.44,462.12 +24.22,56.89,1013.81,70.02,440.79 +11.91,43.22,1008.75,76.56999999999998,472.88 +14.48,46.18,1015.83,92.15,462.3 +14.73,58.2,1019.45,82.48,458.56 +11.91,40.69,1014.41,83.71,476.71 +22.48,50.05,1005.55,82.36,442.56 +27.72,69.88,1007.58,72.25,434.02 +15.03,44.45,1020.94,65.57,460.06 +24.18,59.92,1009.88,79.54,438.85 +21.97,58.79,1010.93,86.7,448.8 +15.51,41.76,1022.81,69.55,463.82 +25.89,58.86,1014.16,52.95,445.17 +19.13,42.18,1001.45,98.77,456.04 +26.82,69.05,1004.62,40.0,437.42 +23.04,48.06,1014.16,54.99,459.36 +6.05,42.85,1013.09,91.88,485.02 +30.94,64.44,1014.36,53.76,439.84 +25.32,48.41,1008.47,72.14,443.04 +26.92,68.27,1008.11,61.73,435.17 +23.48,51.43,1007.13,84.83,441.78 +25.66,71.77,1006.76,84.76,429.25 +17.46,53.29,1018.07,91.01,458.06 +26.18,69.84,1005.13,72.89,431.69 +10.07,39.66,1015.37,83.78,479.64 +30.99,69.82,1009.41,50.84,437.46 +31.85,73.91,1003.6,60.22,431.26 +32.2,72.29,1008.61,69.94,432.52 +22.08,41.1,1002.19,46.69,455.04 +16.32,43.56,1014.4,59.77,463.57 +24.94,59.07,1008.89,84.79,440.12 +8.3,36.3,1015.97,60.62,480.58 +18.81,45.01,1015.28,65.91,457.85 +17.61,56.53,1019.5,82.3,457.01 +27.01,43.77,1011.18,46.58,440.64 +28.69,67.25,1017.71,44.6,436.21 +13.66,40.55,1005.46,96.02,467.7 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/realtabformer/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6271d4785b545fc6459e459ebb1ec513d76d365c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/realtabformer/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/realtabformer/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..207752bdcc537b3245e558956f2569bd9bc5b40d --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,119 @@ +{ + "dataset_id": "n20", + "model": "realtabformer", + "target_column": "PE", + "task_type": "regression", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/realtabformer/rtf-n20-20260331_162153/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/_tabddpm_sample.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/_tabddpm_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..a7576733b6dd417e86f08fa308c709c8c9a6b8d0 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/_tabddpm_sample.py @@ -0,0 +1,67 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 1000 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/config.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV +work_dir = "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407" +info_path = os.path.join(work_dir, "data", "info.json") +with open(info_path) as f: + info = json.load(f) + +output_dir = os.path.join(work_dir, "output") +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/tabddpm-n20-1000-20260319_080515.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/tabddpm-n20-1000-20260319_080515.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/_tabddpm_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..3712b8a3726e4e0e0f8597beecd5e0d02bdcba4d --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/config.toml b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..7d040367e7e0e08fc6df93498107e679d935f400 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/output" +real_data_path = "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data" +model_type = "mlp" +num_numerical_features = 4 +device = "cuda:0" + +[model_params] +d_in = 4 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/X_num_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1e42affbda55afe517d9a62f418ad48cf4eb67f1 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/X_num_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/X_num_train.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..f0f945e0a8950f79dd653a6153b98ca1c40af9c9 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/X_num_train.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/X_num_val.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..58b862b1b27ccad1e3185d7b89a4e1e8c673c30b Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/X_num_val.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/info.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..85dc91873c814ca849cccd1890b0647213575c4f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/info.json @@ -0,0 +1,24 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 4, + "n_cat_features": 0, + "train_size": 7654, + "num_col_idx": [ + 0, + 1, + 2, + 3 + ], + "cat_col_idx": [], + "target_col_idx": [ + 4 + ], + "column_names": [ + "AT", + "V", + "AP", + "RH", + "PE" + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/y_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..a22e3913898cd4485de9475c8abcc70db45286c4 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/y_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/y_train.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2c170f967cdf2ed8030ec1510044980f49021327 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/y_train.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/y_val.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..a24077f865d97feac595e242f89a8032f1cd3e61 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/data/y_val.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/gen_20260319_080515.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/gen_20260319_080515.log new file mode 100644 index 0000000000000000000000000000000000000000..c06b41ef1a96738e3d0e9e84f33a0c07426f30cd --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/gen_20260319_080515.log @@ -0,0 +1,1010 @@ +/opt/conda/lib/python3.11/site-packages/skorch/__init__.py:6: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. + import pkg_resources +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +mlp +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Discrete cols: [] +Num shape: (1000, 3) +Elapsed time: 0:00:04 +[TabDDPM] Sampling 1000 rows +[TabDDPM] Saved 1000 rows -> /work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/tabddpm-n20-1000-20260319_080515.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/train_20260319_080410.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/train_20260319_080410.log new file mode 100644 index 0000000000000000000000000000000000000000..d4084d343aa371b9a38102d2d9f970ec32b608f2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/train_20260319_080410.log @@ -0,0 +1,119 @@ +/opt/conda/lib/python3.11/site-packages/skorch/__init__.py:6: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. + import pkg_resources +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +[0] +4 +{'d_in': 4, 'num_classes': 0, 'is_y_cond': True, 'rtdl_params': {'d_layers': [256, 256], 'dropout': 0.0}} +mlp +Step 500/5000 MLoss: 0.0 GLoss: 0.4027 Sum: 0.4027 +Step 1000/5000 MLoss: 0.0 GLoss: 0.4025 Sum: 0.4025 +Step 1500/5000 MLoss: 0.0 GLoss: 0.3954 Sum: 0.3954 +Step 2000/5000 MLoss: 0.0 GLoss: 0.3913 Sum: 0.3913 +Step 2500/5000 MLoss: 0.0 GLoss: 0.3958 Sum: 0.3958 +Step 3000/5000 MLoss: 0.0 GLoss: 0.3954 Sum: 0.3954 +Step 3500/5000 MLoss: 0.0 GLoss: 0.3937 Sum: 0.3937 +Step 4000/5000 MLoss: 0.0 GLoss: 0.3918 Sum: 0.3918 +Step 4500/5000 MLoss: 0.0 GLoss: 0.3862 Sum: 0.3862 +Step 5000/5000 MLoss: 0.0 GLoss: 0.3929 Sum: 0.3929 +Elapsed time: 0:00:51 +[TabDDPM] Training, config=/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260319_080407/config.toml +[TabDDPM] Training complete diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/_tabddpm_sample.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/_tabddpm_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..d157a5db12d8ff2906040f192c5f3e86afdc3725 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/_tabddpm_sample.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 7654 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config_sample_20260425_095702.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/tabddpm-n20-7654-20260425_095702.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/tabddpm-n20-7654-20260425_095702.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/_tabddpm_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..19e0c28e7fd0d056e7236ab6430da7d47c7dd4c7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config.toml b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..fbf9bc41064f4f5a470b79d860716a86e2f12aa6 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/output" +real_data_path = "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data" +model_type = "mlp" +num_numerical_features = 4 +device = "cuda:0" + +[model_params] +d_in = 4 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config_sample_20260424_222235.toml b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config_sample_20260424_222235.toml new file mode 100644 index 0000000000000000000000000000000000000000..1f8bc4283196876ef1a8c89b5386a240fcdd9a93 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config_sample_20260424_222235.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/output" +real_data_path = "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data" +model_type = "mlp" +num_numerical_features = 4 +device = "cuda:0" + +[model_params] +d_in = 4 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 7654 +batch_size = 1000 +seed = 0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config_sample_20260425_045013.toml b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config_sample_20260425_045013.toml new file mode 100644 index 0000000000000000000000000000000000000000..1f8bc4283196876ef1a8c89b5386a240fcdd9a93 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config_sample_20260425_045013.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/output" +real_data_path = "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data" +model_type = "mlp" +num_numerical_features = 4 +device = "cuda:0" + +[model_params] +d_in = 4 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 7654 +batch_size = 1000 +seed = 0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config_sample_20260425_095702.toml b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config_sample_20260425_095702.toml new file mode 100644 index 0000000000000000000000000000000000000000..1f8bc4283196876ef1a8c89b5386a240fcdd9a93 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config_sample_20260425_095702.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/output" +real_data_path = "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data" +model_type = "mlp" +num_numerical_features = 4 +device = "cuda:0" + +[model_params] +d_in = 4 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 7654 +batch_size = 1000 +seed = 0 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/X_num_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..5562ac0021425d59c2f41d0d8d31fbbb228400ee Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/X_num_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/X_num_val.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..72b5fd403f7e1de685ded6f5c549518f2e641cf7 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/X_num_val.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/info.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..85dc91873c814ca849cccd1890b0647213575c4f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/info.json @@ -0,0 +1,24 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 4, + "n_cat_features": 0, + "train_size": 7654, + "num_col_idx": [ + 0, + 1, + 2, + 3 + ], + "cat_col_idx": [], + "target_col_idx": [ + 4 + ], + "column_names": [ + "AT", + "V", + "AP", + "RH", + "PE" + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/y_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..f1e92fdb4cdaecf1abfb92fe2a648c545e108d1d Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/y_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/y_train.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76c0f6c75ce6ddccabe5c3dc408590b823754df7 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/y_train.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/y_val.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..6eaccddd4285d3138a2b384c63483c63f9eb8556 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/data/y_val.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/gen_20260321_173130.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/gen_20260321_173130.log new file mode 100644 index 0000000000000000000000000000000000000000..d4dac6439d1d3a034a442af7effcc827046a03e1 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/gen_20260321_173130.log @@ -0,0 +1,1010 @@ +/opt/conda/lib/python3.11/site-packages/skorch/__init__.py:6: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. + import pkg_resources +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +mlp +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Discrete cols: [] +Num shape: (1000, 3) +Elapsed time: 0:00:10 +[TabDDPM] Sampling 1000 rows +[TabDDPM] Saved 1000 rows -> /work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/tabddpm-n20-1000-20260321_173130.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/gen_20260424_222235.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/gen_20260424_222235.log new file mode 100644 index 0000000000000000000000000000000000000000..1e207b54bd7acf20d1176032269129eb88a2fc86 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/gen_20260424_222235.log @@ -0,0 +1,8012 @@ +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +mlp +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Discrete cols: [] +Num shape: (7654, 4) +Elapsed time: 0:00:14 +[TabDDPM] Sampling 7654 rows +Traceback (most recent call last): + File "/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/_tabddpm_sample.py", line 38, in + with open(info_path) as f: + ^^^^^^^^^^^^^^^ +FileNotFoundError: [Errno 2] No such file or directory: '/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/output/data/info.json' diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/gen_20260425_045013.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/gen_20260425_045013.log new file mode 100644 index 0000000000000000000000000000000000000000..6592ea287720b2883642724fafcfe1635066183f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/gen_20260425_045013.log @@ -0,0 +1,8008 @@ +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +mlp +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Discrete cols: [] +Num shape: (7654, 4) +Elapsed time: 0:00:20 +[TabDDPM] Sampling 7654 rows +[TabDDPM] WARNING: No output .npy files found diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/gen_20260425_095702.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/gen_20260425_095702.log new file mode 100644 index 0000000000000000000000000000000000000000..44baf7f1f7817388a0144daa258f62a1d92776ed --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/gen_20260425_095702.log @@ -0,0 +1,8008 @@ +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +mlp +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Sample timestep 999 +Sample timestep 998 +Sample timestep 997 +Sample timestep 996 +Sample timestep 995 +Sample timestep 994 +Sample timestep 993 +Sample timestep 992 +Sample timestep 991 +Sample timestep 990 +Sample timestep 989 +Sample timestep 988 +Sample timestep 987 +Sample timestep 986 +Sample timestep 985 +Sample timestep 984 +Sample timestep 983 +Sample timestep 982 +Sample timestep 981 +Sample timestep 980 +Sample timestep 979 +Sample timestep 978 +Sample timestep 977 +Sample timestep 976 +Sample timestep 975 +Sample timestep 974 +Sample timestep 973 +Sample timestep 972 +Sample timestep 971 +Sample timestep 970 +Sample timestep 969 +Sample timestep 968 +Sample timestep 967 +Sample timestep 966 +Sample timestep 965 +Sample timestep 964 +Sample timestep 963 +Sample timestep 962 +Sample timestep 961 +Sample timestep 960 +Sample timestep 959 +Sample timestep 958 +Sample timestep 957 +Sample timestep 956 +Sample timestep 955 +Sample timestep 954 +Sample timestep 953 +Sample timestep 952 +Sample timestep 951 +Sample timestep 950 +Sample timestep 949 +Sample timestep 948 +Sample timestep 947 +Sample timestep 946 +Sample timestep 945 +Sample timestep 944 +Sample timestep 943 +Sample timestep 942 +Sample timestep 941 +Sample timestep 940 +Sample timestep 939 +Sample timestep 938 +Sample timestep 937 +Sample timestep 936 +Sample timestep 935 +Sample timestep 934 +Sample timestep 933 +Sample timestep 932 +Sample timestep 931 +Sample timestep 930 +Sample timestep 929 +Sample timestep 928 +Sample timestep 927 +Sample timestep 926 +Sample timestep 925 +Sample timestep 924 +Sample timestep 923 +Sample timestep 922 +Sample timestep 921 +Sample timestep 920 +Sample timestep 919 +Sample timestep 918 +Sample timestep 917 +Sample timestep 916 +Sample timestep 915 +Sample timestep 914 +Sample timestep 913 +Sample timestep 912 +Sample timestep 911 +Sample timestep 910 +Sample timestep 909 +Sample timestep 908 +Sample timestep 907 +Sample timestep 906 +Sample timestep 905 +Sample timestep 904 +Sample timestep 903 +Sample timestep 902 +Sample timestep 901 +Sample timestep 900 +Sample timestep 899 +Sample timestep 898 +Sample timestep 897 +Sample timestep 896 +Sample timestep 895 +Sample timestep 894 +Sample timestep 893 +Sample timestep 892 +Sample timestep 891 +Sample timestep 890 +Sample timestep 889 +Sample timestep 888 +Sample timestep 887 +Sample timestep 886 +Sample timestep 885 +Sample timestep 884 +Sample timestep 883 +Sample timestep 882 +Sample timestep 881 +Sample timestep 880 +Sample timestep 879 +Sample timestep 878 +Sample timestep 877 +Sample timestep 876 +Sample timestep 875 +Sample timestep 874 +Sample timestep 873 +Sample timestep 872 +Sample timestep 871 +Sample timestep 870 +Sample timestep 869 +Sample timestep 868 +Sample timestep 867 +Sample timestep 866 +Sample timestep 865 +Sample timestep 864 +Sample timestep 863 +Sample timestep 862 +Sample timestep 861 +Sample timestep 860 +Sample timestep 859 +Sample timestep 858 +Sample timestep 857 +Sample timestep 856 +Sample timestep 855 +Sample timestep 854 +Sample timestep 853 +Sample timestep 852 +Sample timestep 851 +Sample timestep 850 +Sample timestep 849 +Sample timestep 848 +Sample timestep 847 +Sample timestep 846 +Sample timestep 845 +Sample timestep 844 +Sample timestep 843 +Sample timestep 842 +Sample timestep 841 +Sample timestep 840 +Sample timestep 839 +Sample timestep 838 +Sample timestep 837 +Sample timestep 836 +Sample timestep 835 +Sample timestep 834 +Sample timestep 833 +Sample timestep 832 +Sample timestep 831 +Sample timestep 830 +Sample timestep 829 +Sample timestep 828 +Sample timestep 827 +Sample timestep 826 +Sample timestep 825 +Sample timestep 824 +Sample timestep 823 +Sample timestep 822 +Sample timestep 821 +Sample timestep 820 +Sample timestep 819 +Sample timestep 818 +Sample timestep 817 +Sample timestep 816 +Sample timestep 815 +Sample timestep 814 +Sample timestep 813 +Sample timestep 812 +Sample timestep 811 +Sample timestep 810 +Sample timestep 809 +Sample timestep 808 +Sample timestep 807 +Sample timestep 806 +Sample timestep 805 +Sample timestep 804 +Sample timestep 803 +Sample timestep 802 +Sample timestep 801 +Sample timestep 800 +Sample timestep 799 +Sample timestep 798 +Sample timestep 797 +Sample timestep 796 +Sample timestep 795 +Sample timestep 794 +Sample timestep 793 +Sample timestep 792 +Sample timestep 791 +Sample timestep 790 +Sample timestep 789 +Sample timestep 788 +Sample timestep 787 +Sample timestep 786 +Sample timestep 785 +Sample timestep 784 +Sample timestep 783 +Sample timestep 782 +Sample timestep 781 +Sample timestep 780 +Sample timestep 779 +Sample timestep 778 +Sample timestep 777 +Sample timestep 776 +Sample timestep 775 +Sample timestep 774 +Sample timestep 773 +Sample timestep 772 +Sample timestep 771 +Sample timestep 770 +Sample timestep 769 +Sample timestep 768 +Sample timestep 767 +Sample timestep 766 +Sample timestep 765 +Sample timestep 764 +Sample timestep 763 +Sample timestep 762 +Sample timestep 761 +Sample timestep 760 +Sample timestep 759 +Sample timestep 758 +Sample timestep 757 +Sample timestep 756 +Sample timestep 755 +Sample timestep 754 +Sample timestep 753 +Sample timestep 752 +Sample timestep 751 +Sample timestep 750 +Sample timestep 749 +Sample timestep 748 +Sample timestep 747 +Sample timestep 746 +Sample timestep 745 +Sample timestep 744 +Sample timestep 743 +Sample timestep 742 +Sample timestep 741 +Sample timestep 740 +Sample timestep 739 +Sample timestep 738 +Sample timestep 737 +Sample timestep 736 +Sample timestep 735 +Sample timestep 734 +Sample timestep 733 +Sample timestep 732 +Sample timestep 731 +Sample timestep 730 +Sample timestep 729 +Sample timestep 728 +Sample timestep 727 +Sample timestep 726 +Sample timestep 725 +Sample timestep 724 +Sample timestep 723 +Sample timestep 722 +Sample timestep 721 +Sample timestep 720 +Sample timestep 719 +Sample timestep 718 +Sample timestep 717 +Sample timestep 716 +Sample timestep 715 +Sample timestep 714 +Sample timestep 713 +Sample timestep 712 +Sample timestep 711 +Sample timestep 710 +Sample timestep 709 +Sample timestep 708 +Sample timestep 707 +Sample timestep 706 +Sample timestep 705 +Sample timestep 704 +Sample timestep 703 +Sample timestep 702 +Sample timestep 701 +Sample timestep 700 +Sample timestep 699 +Sample timestep 698 +Sample timestep 697 +Sample timestep 696 +Sample timestep 695 +Sample timestep 694 +Sample timestep 693 +Sample timestep 692 +Sample timestep 691 +Sample timestep 690 +Sample timestep 689 +Sample timestep 688 +Sample timestep 687 +Sample timestep 686 +Sample timestep 685 +Sample timestep 684 +Sample timestep 683 +Sample timestep 682 +Sample timestep 681 +Sample timestep 680 +Sample timestep 679 +Sample timestep 678 +Sample timestep 677 +Sample timestep 676 +Sample timestep 675 +Sample timestep 674 +Sample timestep 673 +Sample timestep 672 +Sample timestep 671 +Sample timestep 670 +Sample timestep 669 +Sample timestep 668 +Sample timestep 667 +Sample timestep 666 +Sample timestep 665 +Sample timestep 664 +Sample timestep 663 +Sample timestep 662 +Sample timestep 661 +Sample timestep 660 +Sample timestep 659 +Sample timestep 658 +Sample timestep 657 +Sample timestep 656 +Sample timestep 655 +Sample timestep 654 +Sample timestep 653 +Sample timestep 652 +Sample timestep 651 +Sample timestep 650 +Sample timestep 649 +Sample timestep 648 +Sample timestep 647 +Sample timestep 646 +Sample timestep 645 +Sample timestep 644 +Sample timestep 643 +Sample timestep 642 +Sample timestep 641 +Sample timestep 640 +Sample timestep 639 +Sample timestep 638 +Sample timestep 637 +Sample timestep 636 +Sample timestep 635 +Sample timestep 634 +Sample timestep 633 +Sample timestep 632 +Sample timestep 631 +Sample timestep 630 +Sample timestep 629 +Sample timestep 628 +Sample timestep 627 +Sample timestep 626 +Sample timestep 625 +Sample timestep 624 +Sample timestep 623 +Sample timestep 622 +Sample timestep 621 +Sample timestep 620 +Sample timestep 619 +Sample timestep 618 +Sample timestep 617 +Sample timestep 616 +Sample timestep 615 +Sample timestep 614 +Sample timestep 613 +Sample timestep 612 +Sample timestep 611 +Sample timestep 610 +Sample timestep 609 +Sample timestep 608 +Sample timestep 607 +Sample timestep 606 +Sample timestep 605 +Sample timestep 604 +Sample timestep 603 +Sample timestep 602 +Sample timestep 601 +Sample timestep 600 +Sample timestep 599 +Sample timestep 598 +Sample timestep 597 +Sample timestep 596 +Sample timestep 595 +Sample timestep 594 +Sample timestep 593 +Sample timestep 592 +Sample timestep 591 +Sample timestep 590 +Sample timestep 589 +Sample timestep 588 +Sample timestep 587 +Sample timestep 586 +Sample timestep 585 +Sample timestep 584 +Sample timestep 583 +Sample timestep 582 +Sample timestep 581 +Sample timestep 580 +Sample timestep 579 +Sample timestep 578 +Sample timestep 577 +Sample timestep 576 +Sample timestep 575 +Sample timestep 574 +Sample timestep 573 +Sample timestep 572 +Sample timestep 571 +Sample timestep 570 +Sample timestep 569 +Sample timestep 568 +Sample timestep 567 +Sample timestep 566 +Sample timestep 565 +Sample timestep 564 +Sample timestep 563 +Sample timestep 562 +Sample timestep 561 +Sample timestep 560 +Sample timestep 559 +Sample timestep 558 +Sample timestep 557 +Sample timestep 556 +Sample timestep 555 +Sample timestep 554 +Sample timestep 553 +Sample timestep 552 +Sample timestep 551 +Sample timestep 550 +Sample timestep 549 +Sample timestep 548 +Sample timestep 547 +Sample timestep 546 +Sample timestep 545 +Sample timestep 544 +Sample timestep 543 +Sample timestep 542 +Sample timestep 541 +Sample timestep 540 +Sample timestep 539 +Sample timestep 538 +Sample timestep 537 +Sample timestep 536 +Sample timestep 535 +Sample timestep 534 +Sample timestep 533 +Sample timestep 532 +Sample timestep 531 +Sample timestep 530 +Sample timestep 529 +Sample timestep 528 +Sample timestep 527 +Sample timestep 526 +Sample timestep 525 +Sample timestep 524 +Sample timestep 523 +Sample timestep 522 +Sample timestep 521 +Sample timestep 520 +Sample timestep 519 +Sample timestep 518 +Sample timestep 517 +Sample timestep 516 +Sample timestep 515 +Sample timestep 514 +Sample timestep 513 +Sample timestep 512 +Sample timestep 511 +Sample timestep 510 +Sample timestep 509 +Sample timestep 508 +Sample timestep 507 +Sample timestep 506 +Sample timestep 505 +Sample timestep 504 +Sample timestep 503 +Sample timestep 502 +Sample timestep 501 +Sample timestep 500 +Sample timestep 499 +Sample timestep 498 +Sample timestep 497 +Sample timestep 496 +Sample timestep 495 +Sample timestep 494 +Sample timestep 493 +Sample timestep 492 +Sample timestep 491 +Sample timestep 490 +Sample timestep 489 +Sample timestep 488 +Sample timestep 487 +Sample timestep 486 +Sample timestep 485 +Sample timestep 484 +Sample timestep 483 +Sample timestep 482 +Sample timestep 481 +Sample timestep 480 +Sample timestep 479 +Sample timestep 478 +Sample timestep 477 +Sample timestep 476 +Sample timestep 475 +Sample timestep 474 +Sample timestep 473 +Sample timestep 472 +Sample timestep 471 +Sample timestep 470 +Sample timestep 469 +Sample timestep 468 +Sample timestep 467 +Sample timestep 466 +Sample timestep 465 +Sample timestep 464 +Sample timestep 463 +Sample timestep 462 +Sample timestep 461 +Sample timestep 460 +Sample timestep 459 +Sample timestep 458 +Sample timestep 457 +Sample timestep 456 +Sample timestep 455 +Sample timestep 454 +Sample timestep 453 +Sample timestep 452 +Sample timestep 451 +Sample timestep 450 +Sample timestep 449 +Sample timestep 448 +Sample timestep 447 +Sample timestep 446 +Sample timestep 445 +Sample timestep 444 +Sample timestep 443 +Sample timestep 442 +Sample timestep 441 +Sample timestep 440 +Sample timestep 439 +Sample timestep 438 +Sample timestep 437 +Sample timestep 436 +Sample timestep 435 +Sample timestep 434 +Sample timestep 433 +Sample timestep 432 +Sample timestep 431 +Sample timestep 430 +Sample timestep 429 +Sample timestep 428 +Sample timestep 427 +Sample timestep 426 +Sample timestep 425 +Sample timestep 424 +Sample timestep 423 +Sample timestep 422 +Sample timestep 421 +Sample timestep 420 +Sample timestep 419 +Sample timestep 418 +Sample timestep 417 +Sample timestep 416 +Sample timestep 415 +Sample timestep 414 +Sample timestep 413 +Sample timestep 412 +Sample timestep 411 +Sample timestep 410 +Sample timestep 409 +Sample timestep 408 +Sample timestep 407 +Sample timestep 406 +Sample timestep 405 +Sample timestep 404 +Sample timestep 403 +Sample timestep 402 +Sample timestep 401 +Sample timestep 400 +Sample timestep 399 +Sample timestep 398 +Sample timestep 397 +Sample timestep 396 +Sample timestep 395 +Sample timestep 394 +Sample timestep 393 +Sample timestep 392 +Sample timestep 391 +Sample timestep 390 +Sample timestep 389 +Sample timestep 388 +Sample timestep 387 +Sample timestep 386 +Sample timestep 385 +Sample timestep 384 +Sample timestep 383 +Sample timestep 382 +Sample timestep 381 +Sample timestep 380 +Sample timestep 379 +Sample timestep 378 +Sample timestep 377 +Sample timestep 376 +Sample timestep 375 +Sample timestep 374 +Sample timestep 373 +Sample timestep 372 +Sample timestep 371 +Sample timestep 370 +Sample timestep 369 +Sample timestep 368 +Sample timestep 367 +Sample timestep 366 +Sample timestep 365 +Sample timestep 364 +Sample timestep 363 +Sample timestep 362 +Sample timestep 361 +Sample timestep 360 +Sample timestep 359 +Sample timestep 358 +Sample timestep 357 +Sample timestep 356 +Sample timestep 355 +Sample timestep 354 +Sample timestep 353 +Sample timestep 352 +Sample timestep 351 +Sample timestep 350 +Sample timestep 349 +Sample timestep 348 +Sample timestep 347 +Sample timestep 346 +Sample timestep 345 +Sample timestep 344 +Sample timestep 343 +Sample timestep 342 +Sample timestep 341 +Sample timestep 340 +Sample timestep 339 +Sample timestep 338 +Sample timestep 337 +Sample timestep 336 +Sample timestep 335 +Sample timestep 334 +Sample timestep 333 +Sample timestep 332 +Sample timestep 331 +Sample timestep 330 +Sample timestep 329 +Sample timestep 328 +Sample timestep 327 +Sample timestep 326 +Sample timestep 325 +Sample timestep 324 +Sample timestep 323 +Sample timestep 322 +Sample timestep 321 +Sample timestep 320 +Sample timestep 319 +Sample timestep 318 +Sample timestep 317 +Sample timestep 316 +Sample timestep 315 +Sample timestep 314 +Sample timestep 313 +Sample timestep 312 +Sample timestep 311 +Sample timestep 310 +Sample timestep 309 +Sample timestep 308 +Sample timestep 307 +Sample timestep 306 +Sample timestep 305 +Sample timestep 304 +Sample timestep 303 +Sample timestep 302 +Sample timestep 301 +Sample timestep 300 +Sample timestep 299 +Sample timestep 298 +Sample timestep 297 +Sample timestep 296 +Sample timestep 295 +Sample timestep 294 +Sample timestep 293 +Sample timestep 292 +Sample timestep 291 +Sample timestep 290 +Sample timestep 289 +Sample timestep 288 +Sample timestep 287 +Sample timestep 286 +Sample timestep 285 +Sample timestep 284 +Sample timestep 283 +Sample timestep 282 +Sample timestep 281 +Sample timestep 280 +Sample timestep 279 +Sample timestep 278 +Sample timestep 277 +Sample timestep 276 +Sample timestep 275 +Sample timestep 274 +Sample timestep 273 +Sample timestep 272 +Sample timestep 271 +Sample timestep 270 +Sample timestep 269 +Sample timestep 268 +Sample timestep 267 +Sample timestep 266 +Sample timestep 265 +Sample timestep 264 +Sample timestep 263 +Sample timestep 262 +Sample timestep 261 +Sample timestep 260 +Sample timestep 259 +Sample timestep 258 +Sample timestep 257 +Sample timestep 256 +Sample timestep 255 +Sample timestep 254 +Sample timestep 253 +Sample timestep 252 +Sample timestep 251 +Sample timestep 250 +Sample timestep 249 +Sample timestep 248 +Sample timestep 247 +Sample timestep 246 +Sample timestep 245 +Sample timestep 244 +Sample timestep 243 +Sample timestep 242 +Sample timestep 241 +Sample timestep 240 +Sample timestep 239 +Sample timestep 238 +Sample timestep 237 +Sample timestep 236 +Sample timestep 235 +Sample timestep 234 +Sample timestep 233 +Sample timestep 232 +Sample timestep 231 +Sample timestep 230 +Sample timestep 229 +Sample timestep 228 +Sample timestep 227 +Sample timestep 226 +Sample timestep 225 +Sample timestep 224 +Sample timestep 223 +Sample timestep 222 +Sample timestep 221 +Sample timestep 220 +Sample timestep 219 +Sample timestep 218 +Sample timestep 217 +Sample timestep 216 +Sample timestep 215 +Sample timestep 214 +Sample timestep 213 +Sample timestep 212 +Sample timestep 211 +Sample timestep 210 +Sample timestep 209 +Sample timestep 208 +Sample timestep 207 +Sample timestep 206 +Sample timestep 205 +Sample timestep 204 +Sample timestep 203 +Sample timestep 202 +Sample timestep 201 +Sample timestep 200 +Sample timestep 199 +Sample timestep 198 +Sample timestep 197 +Sample timestep 196 +Sample timestep 195 +Sample timestep 194 +Sample timestep 193 +Sample timestep 192 +Sample timestep 191 +Sample timestep 190 +Sample timestep 189 +Sample timestep 188 +Sample timestep 187 +Sample timestep 186 +Sample timestep 185 +Sample timestep 184 +Sample timestep 183 +Sample timestep 182 +Sample timestep 181 +Sample timestep 180 +Sample timestep 179 +Sample timestep 178 +Sample timestep 177 +Sample timestep 176 +Sample timestep 175 +Sample timestep 174 +Sample timestep 173 +Sample timestep 172 +Sample timestep 171 +Sample timestep 170 +Sample timestep 169 +Sample timestep 168 +Sample timestep 167 +Sample timestep 166 +Sample timestep 165 +Sample timestep 164 +Sample timestep 163 +Sample timestep 162 +Sample timestep 161 +Sample timestep 160 +Sample timestep 159 +Sample timestep 158 +Sample timestep 157 +Sample timestep 156 +Sample timestep 155 +Sample timestep 154 +Sample timestep 153 +Sample timestep 152 +Sample timestep 151 +Sample timestep 150 +Sample timestep 149 +Sample timestep 148 +Sample timestep 147 +Sample timestep 146 +Sample timestep 145 +Sample timestep 144 +Sample timestep 143 +Sample timestep 142 +Sample timestep 141 +Sample timestep 140 +Sample timestep 139 +Sample timestep 138 +Sample timestep 137 +Sample timestep 136 +Sample timestep 135 +Sample timestep 134 +Sample timestep 133 +Sample timestep 132 +Sample timestep 131 +Sample timestep 130 +Sample timestep 129 +Sample timestep 128 +Sample timestep 127 +Sample timestep 126 +Sample timestep 125 +Sample timestep 124 +Sample timestep 123 +Sample timestep 122 +Sample timestep 121 +Sample timestep 120 +Sample timestep 119 +Sample timestep 118 +Sample timestep 117 +Sample timestep 116 +Sample timestep 115 +Sample timestep 114 +Sample timestep 113 +Sample timestep 112 +Sample timestep 111 +Sample timestep 110 +Sample timestep 109 +Sample timestep 108 +Sample timestep 107 +Sample timestep 106 +Sample timestep 105 +Sample timestep 104 +Sample timestep 103 +Sample timestep 102 +Sample timestep 101 +Sample timestep 100 +Sample timestep 99 +Sample timestep 98 +Sample timestep 97 +Sample timestep 96 +Sample timestep 95 +Sample timestep 94 +Sample timestep 93 +Sample timestep 92 +Sample timestep 91 +Sample timestep 90 +Sample timestep 89 +Sample timestep 88 +Sample timestep 87 +Sample timestep 86 +Sample timestep 85 +Sample timestep 84 +Sample timestep 83 +Sample timestep 82 +Sample timestep 81 +Sample timestep 80 +Sample timestep 79 +Sample timestep 78 +Sample timestep 77 +Sample timestep 76 +Sample timestep 75 +Sample timestep 74 +Sample timestep 73 +Sample timestep 72 +Sample timestep 71 +Sample timestep 70 +Sample timestep 69 +Sample timestep 68 +Sample timestep 67 +Sample timestep 66 +Sample timestep 65 +Sample timestep 64 +Sample timestep 63 +Sample timestep 62 +Sample timestep 61 +Sample timestep 60 +Sample timestep 59 +Sample timestep 58 +Sample timestep 57 +Sample timestep 56 +Sample timestep 55 +Sample timestep 54 +Sample timestep 53 +Sample timestep 52 +Sample timestep 51 +Sample timestep 50 +Sample timestep 49 +Sample timestep 48 +Sample timestep 47 +Sample timestep 46 +Sample timestep 45 +Sample timestep 44 +Sample timestep 43 +Sample timestep 42 +Sample timestep 41 +Sample timestep 40 +Sample timestep 39 +Sample timestep 38 +Sample timestep 37 +Sample timestep 36 +Sample timestep 35 +Sample timestep 34 +Sample timestep 33 +Sample timestep 32 +Sample timestep 31 +Sample timestep 30 +Sample timestep 29 +Sample timestep 28 +Sample timestep 27 +Sample timestep 26 +Sample timestep 25 +Sample timestep 24 +Sample timestep 23 +Sample timestep 22 +Sample timestep 21 +Sample timestep 20 +Sample timestep 19 +Sample timestep 18 +Sample timestep 17 +Sample timestep 16 +Sample timestep 15 +Sample timestep 14 +Sample timestep 13 +Sample timestep 12 +Sample timestep 11 +Sample timestep 10 +Sample timestep 9 +Sample timestep 8 +Sample timestep 7 +Sample timestep 6 +Sample timestep 5 +Sample timestep 4 +Sample timestep 3 +Sample timestep 2 +Sample timestep 1 +Sample timestep 0 +Discrete cols: [] +Num shape: (7654, 4) +Elapsed time: 0:00:25 +[TabDDPM] Sampling 7654 rows +[TabDDPM] Saved 7654 rows -> /work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/tabddpm-n20-7654-20260425_095702.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..88dd4b94be82b8ac3fb2bedc5a9c82c25515f168 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n20", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "exists": true, + "size": 291758, + "sha256": "8768b9641a081ce32375b2739c6d0a6cdf66c1b03268c7db5f71ffd0019c97e2" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "exists": true, + "size": 36657, + "sha256": "c2dae02f854856ba824310ecaca5c73a72a3302753396aa681c82b69d65b174c" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv", + "exists": true, + "size": 36232, + "sha256": "82c48522e82ea4c5e4c407ec9239e82558dcff1df413f3d0c382e77fa041bc88" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_profile.json", + "exists": true, + "size": 2675, + "sha256": "7e7d747ab11beae1e58278dc8d6ae08d7ae6f14fe93f77a4fc1e6e589df21df4" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_contract_v1.json", + "exists": true, + "size": 3047, + "sha256": "20f513ccbc9f09d5286bc8998a5772f42b78b40aa1ed60b079fa73edf9c78eec" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/output/data/info.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/output/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..85dc91873c814ca849cccd1890b0647213575c4f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/output/data/info.json @@ -0,0 +1,24 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 4, + "n_cat_features": 0, + "train_size": 7654, + "num_col_idx": [ + 0, + 1, + 2, + 3 + ], + "cat_col_idx": [], + "target_col_idx": [ + 4 + ], + "column_names": [ + "AT", + "V", + "AP", + "RH", + "PE" + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8618a420d9d101a283cfb38feb336ac37687988f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,112 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "columns": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91364f3480d02e634daea210e8cae28ad5402b46 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n20", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "PE", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..131d79845d7b0e63a496a2b8b90ea7973ad88bb2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/public_gate/staged_input_manifest.json @@ -0,0 +1,117 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d76cdf0a3c3fcdc632aa445ca6dbf39b793d24b6 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "n20", + "model": "tabddpm", + "run_id": "tabddpm-n20-20260321_172946", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/tabddpm-n20-7654-20260425_095702.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/staged_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb807ac5b23b2e7dfb39b3a5378cd452e84d56ed --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/test.csv @@ -0,0 +1,959 @@ +AT,V,AP,RH,PE +14.72,41.23,997.91,82.69,467.11 +11.94,40.66,1016.61,96.11,467.99 +27.56,66.93,1016.81,55.59,444.1 +9.59,34.69,1027.65,75.31999999999998,478.88 +7.46,41.82,1032.67,74.59,483.11 +15.52,36.99,1006.86,89.7,467.9 +15.47,43.13,1015.11,50.5,466.63 +21.84,45.09,1013.94,46.11,450.88 +19.83,51.43,1007.36,91.64,449.45 +29.3,67.69,1007.17,55.5,430.72 +6.63,39.42,1024.81,72.58,482.02 +22.88,69.45,1014.02,65.13,441.76 +11.97,42.32,1016.95,88.32,467.98 +29.25,67.32,1013.88,38.57,437.94 +14.89,39.58,1012.26,77.58,465.95 +10.39,44.85,1014.22,78.42,478.05 +25.66,77.54,1008.22,78.42,432.82 +16.5,49.39,1018.35,93.42,462.48 +28.55,74.33,1011.77,73.34,426.48 +7.84,40.07,1016.68,47.63,488.7 +27.14,71.32,1007.8,87.99,431.96 +25.18,71.98,1006.71,89.86,432.88 +6.01,35.79,1011.26,90.72,482.79 +14.54,41.17,1015.15,67.78,470.19 +11.8,43.22,1008.57,78.01,469.55 +23.82,44.89,1009.39,74.69,445.45 +32.81,71.32,1007.69,47.29,434.38 +30.63,74.22,1007.47,46.52,430.38 +25.43,70.17,1000.46,87.84,436.43 +30.17,76.86,998.23,73.61,430.3 +26.27,58.33,1013.81,60.43,438.82 +26.02,63.07,1010.94,53.96,446.82 +14.64,39.31,1008.84,79.3,462.72 +19.99,65.94,1012.28,75.42,447.22 +32.9,68.51,1012.95,50.09,430.23 +20.3,44.9,1008.25,64.08,457.6 +22.86,47.43,1009.75,61.54,452.53 +10.82,44.63,1020.64,90.26,473.23 +13.15,42.44,1014.51,99.53,469.34 +27.4,66.48,1004.71,51.5,439.66 +4.96,40.07,1011.8,67.38,494.75 +8.67,36.66,1026.8,84.36,480.38 +25.97,43.21,1011.9,88.73,434.83 +10.23,42.32,1017.53,89.93,473.59 +27.66,59.21,1013.12,51.58,438.57 +27.21,68.12,1012.96,54.69,435.2 +19.72,65.94,1010.53,82.12,446.84 +8.87,41.82,1033.3,74.28,477.97 +15.29,25.88,1009.21,66.0,464.25 +19.48,39.72,1001.75,55.41,457.16 +10.93,39.16,1016.54,90.56,479.83 +20.84,51.19,1008.63,84.11,448.98 +9.01,40.77,1022.37,90.3,470.84 +21.08,63.13,1013.53,98.0,443.51 +14.94,40.0,1017.69,65.43,456.41 +28.37,63.31,1013.18,49.02,437.64 +23.45,45.61,1012.84,73.42,454.92 +12.76,42.32,1015.35,78.18,466.15 +13.86,44.21,1022.6,83.56,468.3 +24.51,51.95,1005.57,63.53,449.73 +5.04,40.64,1021.35,93.63,484.42 +14.24,45.01,1013.54,88.68,461.64 +11.17,39.72,1002.4,81.4,474.64 +11.94,44.2,1017.97,82.93,474.02 +9.28,41.54,1018.33,79.89,482.8 +28.91,58.33,1013.84,39.72,437.53 +16.89,49.21,1015.19,70.39,458.25 +16.34,36.99,1006.99,90.06,466.24 +16.41,47.24,1015.75,88.78,457.94 +19.44,39.53,1006.99,63.18,457.09 +9.37,40.11,1024.94,75.03,471.13 +13.64,44.88,1019.85,56.86,466.66 +16.19,36.99,1007.37,92.4,462.94 +18.75,63.09,1018.19,87.84,450.98 +15.97,45.01,1016.58,83.24,456.91 +19.5,52.72,1025.21,50.21,457.26 +10.49,42.49,1009.81,78.92,478.75 +20.78,62.52,1017.58,73.3,452.3 +7.41,40.81,1026.15,88.96,488.48 +25.38,72.23999999999998,1010.76,89.64,432.3 +4.0,39.9,1009.64,97.16,490.79 +30.61,68.84,1011.18,52.5,439.9 +28.57,75.33,1003.16,76.14,431.58 +15.37,41.96,1011.58,96.76,466.02 +31.56,66.44,1008.91,64.16,430.11 +16.69,46.18,1010.8,96.8,466.03 +22.0,51.3,1012.87,85.79,450.18 +28.31,74.34,998.42,79.23,431.95 +15.7,44.21,1021.26,86.83,462.19 +21.79,58.2,1017.21,66.74,446.94 +25.67,58.59,1013.0,62.34,451.03 +20.59,59.8,1015.27,77.94,453.83 +16.14,44.21,1020.36,80.59,461.03 +25.61,47.43,1008.62,54.51,442.96 +7.61,44.71,1019.41,70.48,485.36 +30.32,64.69,1006.35,51.36,436.72 +29.45,68.27,1007.96,61.63,432.96 +29.28,77.17,1009.4,76.3,433.14 +5.62,41.31,1001.37,89.16,485.6 +24.86,44.05,1005.69,66.65,447.2 +6.17,40.07,1013.7,58.99,495.21 +13.65,41.58,1020.56,72.17,460.8 +3.96,35.47,1016.79,83.81,489.68 +6.49,39.33,1010.85,91.85,489.22 +31.32,71.29,1008.37,50.07,430.46 +8.07,43.69,1017.05,87.34,485.18 +13.35,39.64,1010.1,93.3,471.69 +26.21,56.85,1011.45,41.37,439.55 +5.71,40.77,1022.51,89.58,485.75 +18.98,60.1,1010.09,85.34,453.37 +6.07,38.91,1019.25,83.39,483.56 +26.92,78.92,1011.65,96.22,434.64 +24.44,47.93,1003.13,67.04,440.53 +14.45,52.75,1023.97,63.59,459.85 +26.44,71.64,1004.55,85.53,435.61 +30.7,74.22,1008.12,50.39,432.51 +6.48,36.24,1013.62,92.03,484.65 +30.47,70.83,1010.91,46.94,444.39 +13.78,38.28,1014.8,81.19,467.43 +19.65,62.1,1019.46,77.81999999999998,449.13 +9.51,43.79,1016.02,79.81,481.12 +16.31,52.75,1024.4,55.69,456.58 +13.08,39.82,1012.27,85.21,476.96 +20.72,44.57,1008.96,72.56999999999998,449.76 +9.77,41.44,1017.69,78.26,481.74 +26.12,66.75,1017.86,79.02,433.67 +10.95,43.8,1022.61,63.46,473.2 +11.01,43.69,1016.7,81.48,477.3 +17.36,52.9,1015.42,69.97,458.66 +16.7,46.18,1011.4,95.51,458.05 +11.95,42.07,1018.52,84.73,467.91 +18.3,44.06,1017.95,63.24,456.32 +14.69,35.71,1015.78,57.34,467.39 +30.82,76.2,1007.47,59.3,432.22 +22.36,58.79,1016.69,73.59999999999998,445.76 +23.89,64.27,1013.37,75.22,450.82 +5.75,42.07,1004.24,78.23,485.23 +26.64,69.13,1010.6,79.23,430.41 +23.08,48.41,1008.44,82.35,443.5 +29.76,57.19,1008.59,51.1,436.21 +32.8,68.67,1005.27,44.53,432.28 +24.63,65.38,1010.43,40.68,446.23 +11.02,43.02,1012.32,66.54,478.81 +32.13,69.98,1013.3,55.85,431.84 +23.81,60.08,1017.29,62.66,450.33 +8.09,38.5,1012.99,67.31,484.81 +32.63,69.89,1013.85,41.66,425.72 +13.27,52.75,1025.86,65.12,464.82 +29.3,68.08,1011.23,56.23,434.11 +26.3,77.95,1009.45,78.72,437.95 +28.52,70.02,1010.34,54.21,441.98 +17.86,50.88,1015.59,88.28,457.33 +7.92,41.66,1014.84,76.12,483.38 +3.74,35.19,1018.58,98.84,490.5 +21.33,63.86,1020.33,72.13,445.02 +30.36,74.87,1008.96,61.87,435.31 +14.23,46.18,1017.39,87.29,463.86 +9.55,41.44,1015.07,85.94,481.75 +9.78,41.93,1023.18,75.05,484.03 +30.8,73.17,1010.51,51.93,432.24 +15.48,47.83,1004.88,81.68,463.67 +16.58,46.18,1010.4,96.29,463.51 +20.32,39.72,1001.38,57.21,456.18 +11.83,43.14,1010.06,88.14,471.98 +26.75,56.57,1013.76,57.93,443.92 +14.13,48.92,1011.72,78.06,464.17 +19.91,51.19,1008.0,90.23,449.23 +14.37,40.56,1021.67,68.18,470.19 +17.27,44.9,1007.85,78.8,454.19 +9.59,38.56,1017.52,61.89,481.05 +28.04,70.32,1011.28,78.16,435.42 +18.18,44.63,1020.41,48.64,455.57 +32.27,71.85,1008.06,59.28,429.72 +19.02,44.85,1014.57,43.37,465.42 +13.47,43.34,1012.75,87.04,468.8 +12.25,40.75,1016.02,82.4,475.07 +27.45,64.34,1007.12,65.87,440.0 +29.96,67.83,1008.0,44.05,433.13 +12.55,38.91,1012.58,75.44,474.35 +31.92,75.33,1002.13,65.73,431.32 +21.55,60.27,1017.42,92.59,443.93 +20.14,46.33,1013.24,83.39,453.35 +18.33,44.34,1019.55,51.69,468.8 +8.65,40.56,1023.23,78.84999999999998,485.87 +26.99,62.26,1011.13,71.27,436.89 +14.4,41.26,1021.41,73.11,462.78 +18.35,62.1,1019.97,78.36,455.29 +16.76,43.77,1012.25,77.95,457.0 +11.82,42.86,1014.12,88.28,476.7 +20.78,68.28,1008.75,60.87,450.57 +29.35,54.2,1013.07,42.45,439.47 +22.63,45.61,1014.14,73.06,457.88 +22.83,65.18,1012.24,79.73999999999998,442.43 +6.74,36.08,1020.36,86.98,484.18 +31.54,71.06,1008.4,71.77,431.87 +23.24,45.01,1012.21,45.23,457.01 +32.74,68.31,1010.23,41.29,441.66 +14.18,39.3,1020.1,67.48,464.32 +25.86,59.92,1009.92,73.95,436.06 +14.05,40.69,1015.66,74.39,470.9 +23.78,69.71,1008.79,83.17,443.06 +14.14,39.59,1010.84,96.02,465.23 +11.77,40.71,1024.55,72.48999999999998,477.94 +23.77,64.15,1021.02,55.87,448.43 +9.61,44.03,1008.3,91.36,473.54 +22.42,62.52,1016.83,63.27,451.64 +24.85,68.37,1006.5,68.37,442.66 +17.69,44.34,1019.31,61.12,464.13 +3.21,38.44,1017.11,84.86,492.93 +18.45,42.44,1013.45,63.52,459.79 +11.48,44.6,1018.29,90.76,470.39 +17.37,48.92,1011.91,58.4,455.53 +6.22,39.33,1012.31,93.23,491.77 +12.74,49.83,1007.44,91.47,466.09 +22.56,70.79,1005.85,93.09,435.14 +24.35,58.49,1011.03,70.64,445.6 +16.58,44.68,1021.5,83.38,458.87 +25.47,70.36,1005.79,77.73,437.02 +30.88,69.51,1011.48,46.58,433.14 +6.64,39.04,1018.84,74.94,481.53 +12.65,41.93,1023.07,65.05,479.53 +8.91,40.11,1022.87,78.39,475.43 +5.57,42.85,1013.55,92.14,488.85 +16.09,44.2,1019.39,67.24,460.56 +20.98,60.07,1016.26,67.18,446.26 +14.93,39.16,1007.25,72.34999999999998,463.2 +24.19,58.95,1017.78,58.78,441.91 +23.86,52.84,1006.56,48.94,444.66 +15.59,52.05,1013.67,78.55,456.07 +26.04,74.67,1016.68,81.2,433.55 +22.35,54.42,1012.46,75.01,454.72 +10.57,36.71,1022.11,82.39,472.62 +6.16,38.5,1012.83,93.68,490.92 +24.12,62.44,1013.83,88.02,443.3 +28.24,71.58,1010.1,67.92,434.01 +21.11,69.94,1004.37,84.26,439.91 +11.49,44.63,1020.44,86.04,471.08 +24.92,60.95,1014.88,60.58,445.44 +23.56,67.79,1010.14,89.72,441.29 +7.54,40.72,1023.82,85.15,485.92 +26.85,75.59999999999998,1017.43,74.55,433.48 +12.14,44.85,1014.36,60.04,476.68 +17.03,43.99,1021.5,82.32,460.25 +31.41,64.44,1013.84,49.49,439.3 +14.73,40.35,1011.15,65.2,470.03 +24.04,59.43,1007.6,76.98,437.51 +21.03,44.78,1007.99,36.82,459.72 +22.61,42.8,1014.24,69.71,460.26 +17.36,44.63,1020.49,54.21,456.98 +26.82,64.96,999.72,63.55,427.51 +18.19,44.06,1017.24,78.73,456.13 +24.38,47.01,1015.17,68.96,454.85 +12.98,39.64,1013.95,74.39,473.54 +14.17,43.13,1014.94,48.62,471.08 +18.71,54.9,1017.12,74.79,456.88 +12.8,44.34,1016.52,86.73,473.42 +16.71,46.18,1012.06,96.6,458.4 +22.99,60.77,1017.97,78.47,447.62 +28.34,63.77,1013.7,61.13,439.75 +34.53,73.03,1013.53,36.74,437.03 +10.16,40.8,1028.13,86.39,477.49 +27.28,44.89,1009.02,49.9,441.94 +22.75,58.86,1016.0,67.34,448.32 +25.01,59.54,1007.91,80.93,441.3 +23.64,63.31,1014.5,61.83,440.7 +8.85,41.06,1020.99,86.05,486.4 +19.65,63.91,1009.26,99.08,444.9 +18.22,44.34,1019.35,56.78,469.27 +9.68,40.77,1022.04,85.23,473.73 +17.49,40.55,1001.73,73.15,462.37 +21.79,61.45,1011.11,91.78,446.99 +21.06,62.91,1011.92,75.52,455.22 +23.72,58.62,1016.32,71.17,447.13 +30.93,73.42,1010.98,56.42,432.44 +5.98,38.91,1016.5,91.83,488.85 +13.45,41.16,1022.04,82.96,460.57 +12.23,43.69,1016.46,84.4,471.62 +8.13,39.96,1026.07,95.84,477.12 +29.0,77.54,1011.33,75.13,431.37 +11.61,52.75,1020.94,77.56,464.68 +19.4,49.69,1012.89,75.53,455.6 +5.0,40.64,1021.05,94.84,485.27 +23.46,57.85,1012.7,65.54,444.66 +18.51,48.06,1015.14,79.83,455.44 +29.29,70.36,1006.64,60.82,431.26 +27.55,64.96,999.73,57.34,431.33 +21.82,63.9,1014.48,92.53,447.29 +17.03,47.83,1004.94,79.68,460.43 +17.18,46.0,1002.74,100.1,454.02 +18.14,49.78,1002.95,100.09,451.44 +12.39,49.83,1007.6,92.43,468.43 +20.39,64.15,1021.31,62.35,457.37 +22.72,64.15,1021.14,60.34,453.13 +20.3,58.41,1014.05,86.38,451.74 +21.46,58.18,1007.45,95.33,444.12 +28.99,68.24,1008.75,66.57,428.28 +12.07,40.81,1025.63,68.02,475.96 +15.4,40.69,1015.1,70.25,471.66 +9.59,37.14,1013.8,72.84999999999998,474.74 +7.64,40.02,1031.58,71.19,479.43 +15.42,37.85,1009.89,85.8,467.33 +11.75,42.32,1015.28,77.25,470.44 +19.51,48.78,1021.03,86.33,453.27 +31.86,73.88,1005.6,57.68,435.91 +12.4,40.35,1011.46,79.48999999999998,476.44 +28.11,69.84,1004.68,67.08,427.33 +8.74,40.03,1016.81,93.37,481.07 +24.32,58.79,1016.8,65.61,442.78 +13.72,44.47,1027.2,68.89,470.66 +6.11,38.68,1017.53,79.23,482.97 +16.74,39.16,1005.68,71.17,460.47 +8.52,41.55,1002.09,86.81,483.63 +20.55,68.63,1012.5,67.07,453.47 +22.63,58.49,1010.94,72.7,448.38 +18.13,60.1,1009.67,84.75,455.82 +12.51,43.67,1013.24,91.55,471.96 +21.02,61.5,1008.52,77.73999999999998,448.08 +6.99,40.07,1014.83,54.36,490.11 +16.37,36.99,1006.37,90.11,463.76 +15.68,39.16,1006.09,75.62,461.98 +22.17,60.27,1018.21,89.55,443.31 +26.7,49.02,1007.68,67.97,438.92 +19.55,39.39,1013.55,57.82,464.36 +27.74,74.78,1010.05,60.82,436.87 +18.09,43.72,1008.64,74.15,453.02 +11.49,35.76,1019.08,60.04,472.45 +23.67,63.86,1019.67,57.95,441.73 +32.02,67.83,1007.77,53.31,426.55 +20.38,62.52,1017.85,75.56,456.56 +5.02,45.87,1007.8,99.22,481.03 +26.24,51.43,1011.32,59.52,447.91 +14.47,41.76,1021.98,78.41,464.0 +24.16,60.29,1018.09,63.49,446.17 +10.07,40.92,1021.84,84.18,471.71 +10.73,44.92,1025.1,85.4,476.81 +16.81,42.86,1013.83,77.11,464.36 +27.52,74.67,1015.77,72.01,433.56 +13.96,40.83,1009.89,84.86,469.86 +22.78,49.16,1002.29,64.28,444.99 +22.77,70.32,1012.04,82.43,440.67 +8.64,41.66,1014.14,80.44,481.89 +27.33,66.17,1011.06,64.55,443.89 +19.07,49.69,1007.22,76.79,453.09 +24.1,68.61,1010.97,74.87,443.75 +14.6,42.32,1015.71,77.03,464.67 +14.77,44.47,1028.38,71.18,464.25 +9.14,38.91,1018.62,89.88,476.57 +14.85,45.87,1009.37,84.65,462.67 +8.47,41.03,1021.72,70.16,485.1 +23.79,59.44,1012.53,79.48,448.67 +26.63,64.44,1012.66,61.19,442.0 +12.88,44.34,1016.03,88.51,474.94 +12.73,44.34,1015.11,93.55,472.94 +17.2,40.55,1000.68,72.67,462.55 +10.05,41.17,1018.98,83.71,481.38 +28.37,75.59999999999998,1017.48,55.19,439.25 +25.61,60.32,1015.77,56.48,443.96 +20.34,46.63,1013.16,79.08,453.62 +20.21,58.12,1015.36,79.18,453.19 +21.19,58.86,1014.19,68.96,452.43 +29.71,73.18,1012.35,63.06,427.04 +15.24,37.87,1020.52,84.49,463.09 +17.35,42.86,1014.62,74.16,465.16 +13.5,45.51,1015.33,86.95,469.08 +25.94,77.23999999999998,1007.97,84.82,432.88 +5.51,35.57,1026.3,78.97,489.36 +26.16,52.36,1013.62,58.52,453.08 +15.17,49.15,1021.91,91.73,461.89 +14.57,42.18,1015.13,74.89,465.75 +12.16,45.0,1021.51,50.52,482.99 +25.1,60.37,1005.83,72.53,438.44 +13.57,39.39,1014.01,82.12,471.44 +20.25,55.5,1020.03,69.33,455.13 +11.23,39.72,1018.46,60.62,475.04 +12.52,42.34,1018.67,95.29,464.71 +8.68,39.61,1021.54,77.98,486.31 +8.18,40.02,1031.45,73.66,478.81 +21.93,60.84,1017.8,82.61,443.89 +30.69,71.98,1004.53,65.86,430.33 +12.08,41.39,1019.45,78.3,477.8 +9.08,42.49,1010.67,85.35,481.46 +20.33,57.76,1016.47,75.34999999999998,450.25 +31.03,69.98,1011.33,52.16,436.13 +6.03,41.14,1028.04,87.46,479.61 +14.02,42.86,1030.86,68.36,467.29 +20.51,45.38,1014.29,69.14,461.87 +28.17,63.13,1012.44,66.61,439.94 +18.83,63.91,1010.8,96.18,448.15 +25.52,63.94,1017.81,41.54,440.32 +22.61,49.3,1003.51,83.02,441.76 +28.61,68.12,1011.71,47.57,432.94 +18.43,56.03,1020.41,60.55,465.17 +13.41,54.3,1016.48,79.28,467.88 +11.11,40.55,1023.91,87.12,476.37 +33.97,72.29,1008.98,44.32,432.33 +18.41,62.1,1020.4,78.09999999999998,457.14 +22.4,58.12,1015.24,78.03,449.13 +25.1,61.47,1007.84,75.75,447.27 +28.73,68.3,1016.53,55.73,434.15 +11.47,43.67,1012.68,72.51,475.72 +11.19,40.64,1020.57,84.49,472.86 +10.38,43.02,1013.37,78.53,474.44 +30.09,69.48,1009.51,53.24,435.2 +26.72,65.61,1014.41,52.01,442.48 +19.14,56.65,1020.84,82.97,458.06 +21.25,44.05,1005.69,81.87,448.43 +15.55,45.09,1014.33,62.19,457.36 +12.28,42.34,1019.19,95.8,467.03 +31.93,72.58,1006.9,56.27,425.14 +24.9,71.77,1006.24,85.25,427.77 +23.71,67.17,1007.27,90.2,440.65 +31.05,62.7,1009.35,55.27,441.67 +10.08,40.72,1022.7,67.3,480.8 +22.31,61.45,1009.25,98.56,437.05 +24.01,42.48,1011.39,55.1,453.12 +21.75,49.82,1015.01,78.33,455.28 +29.3,73.67,1005.64,65.31,431.07 +12.27,41.17,1019.39,52.18,473.84 +16.51,41.79,1007.1,74.03,457.74 +26.26,63.73,1010.45,70.61,442.18 +31.33,73.03,1014.18,49.28,438.49 +21.81,65.06,1014.6,66.41,447.13 +14.93,39.39,1014.31,80.68,468.88 +33.87,71.32,1007.91,39.48,435.89 +28.09,63.31,1013.01,52.6,438.6 +18.06,56.65,1020.2,81.59,459.14 +20.36,56.53,1020.25,72.95999999999998,455.34 +29.58,76.2,1008.37,60.73,433.91 +9.62,41.01,1019.43,97.99,467.34 +25.08,58.49,1011.1,64.47,446.9 +24.33,60.32,1015.49,59.95,445.36 +30.93,70.83,1010.61,46.13,440.59 +22.04,58.05,1013.11,85.22,447.28 +5.74,45.87,1011.44,95.94,482.0 +24.17,71.25,1003.9,90.36,435.66 +5.95,39.48,1005.16,63.6,486.07 +27.51,63.73,1009.97,66.14,440.81 +28.62,70.32,1008.87,46.67,431.03 +20.48,60.29,1017.16,72.09999999999998,455.51 +27.03,71.14,1010.33,66.25,430.41 +28.31,70.32,1007.88,47.0,432.5 +16.6,41.93,1022.01,48.98,467.51 +14.67,71.14,1019.84,77.72,458.8 +5.68,40.35,1012.11,92.86,486.79 +29.66,59.22,1013.25,61.2,441.58 +6.99,39.37,1020.19,75.06,487.18 +25.61,74.22,1010.26,75.15,438.45 +11.31,39.61,1018.74,68.9,471.92 +29.04,76.09,1007.52,75.44,430.32 +16.5,53.29,1017.7,95.66,458.37 +22.26,60.77,1018.26,85.94,442.58 +25.95,59.92,1010.05,76.05,443.93 +28.09,70.02,1010.84,51.29,437.83 +8.36,40.67,1014.99,73.65,489.1 +24.88,49.16,1006.04,64.54,445.18 +14.34,42.86,1031.75,66.81,466.17 +18.16,39.99,1008.13,68.5,461.16 +20.57,44.9,1008.39,62.69,456.18 +16.85,39.64,1008.82,80.81,464.2 +24.56,63.21,1013.79,82.38,444.34 +9.54,41.17,1019.79,65.61,481.18 +21.43,60.95,1015.27,75.48999999999998,449.12 +24.15,71.73,1009.76,85.16,436.55 +21.87,74.87,1009.28,85.4,442.37 +15.3,41.76,1022.57,71.56,466.59 +19.45,41.1,1001.88,52.16,458.26 +27.99,71.64,1007.79,72.67,437.81 +21.03,69.05,1002.17,75.34999999999998,444.35 +31.84,77.95,1014.9,55.35,433.28 +29.83,71.43,1011.93,55.8,439.34 +10.08,37.92,1010.47,66.37,474.63 +18.36,51.43,1010.57,90.17,459.8 +16.4,38.01,1022.2,73.05,463.79 +13.03,42.86,1014.39,86.25,475.03 +18.88,62.96,1020.62,82.01,456.18 +11.87,41.78,1012.97,64.79,470.84 +23.16,57.76,1017.74,63.79,451.79 +15.39,42.28,1007.35,81.34999999999998,467.3 +16.84,56.03,1020.25,70.37,437.14 +14.65,44.84,1023.39,87.76,467.18 +18.97,44.85,1014.86,46.31,466.17 +26.22,69.89,1015.46,76.63,433.61 +7.07,37.49,1010.35,87.19,481.58 +17.4,44.9,1020.5,77.11,457.75 +30.05,73.68,1014.95,70.6,434.92 +14.01,45.08,1023.28,82.49,464.79 +23.24,63.78,1017.1,63.8,446.95 +23.03,65.12,1016.29,69.8,447.84 +8.58,40.72,1022.04,87.55,480.96 +24.92,48.92,1010.11,36.53,445.56 +25.8,65.38,1009.3,52.28,450.5 +26.31,48.6,1002.64,60.04,440.06 +29.13,62.26,1010.51,52.94,436.37 +11.02,41.17,1018.18,86.86,477.62 +13.61,39.85,1012.78,58.12,475.62 +23.32,69.13,1010.75,91.84,435.27 +30.45,43.21,1011.35,63.59,438.68 +31.7,70.36,1006.26,58.18,438.38 +23.62,73.67,1007.0,90.8,438.33 +12.45,43.67,1013.61,91.34,474.27 +28.85,68.12,1012.05,46.31,436.15 +18.4,43.69,1016.59,52.44,462.05 +28.97,78.92,1011.71,88.5,430.98 +4.93,35.19,1018.04,92.94,486.39 +13.75,44.47,1029.63,70.74,467.14 +16.64,44.9,1021.02,70.34,460.93 +19.04,68.28,1004.52,86.16,444.54 +15.89,43.96,1014.02,75.23999999999998,467.35 +29.03,67.79,1010.67,55.42,444.09 +14.97,58.2,1019.52,81.13,458.68 +16.23,43.52,1020.13,76.3,464.74 +14.74,44.47,1028.29,67.87,462.92 +9.75,52.72,1026.03,78.53,473.41 +27.18,59.27,1012.57,64.18,439.69 +16.22,50.88,1014.33,100.09,454.94 +6.62,42.49,1008.74,94.57,482.74 +9.33,44.03,1011.73,86.04,474.15 +23.14,62.26,1011.87,66.44,444.38 +14.52,40.35,1011.11,69.84,470.8 +33.71,69.98,1013.09,42.62,431.99 +14.84,42.03,1017.47,79.27,466.2 +13.48,41.92,1030.2,65.96,463.9 +31.4,71.06,1008.44,74.77,433.34 +27.44,66.56,1005.51,69.28,428.0 +22.68,70.47,1010.86,82.8,441.47 +9.03,40.71,1025.98,81.94,484.97 +14.36,41.26,1021.16,73.43,462.25 +10.06,43.22,1014.1,85.7,473.0 +22.76,49.02,1007.5,88.56,442.84 +24.79,75.59999999999998,1017.07,68.23,440.05 +34.97,73.56,1006.57,44.69,435.15 +27.64,75.59999999999998,1017.35,54.78,441.04 +18.37,51.86,1018.8,74.3,461.14 +7.91,39.96,1023.57,88.44,475.52 +21.8,65.94,1012.02,63.52,448.66 +29.42,71.32,1002.26,67.13,437.47 +19.01,58.46,1017.14,90.99,446.18 +24.01,67.17,1007.44,86.87,443.09 +11.69,39.22,1017.05,55.51,472.76 +22.01,58.46,1016.26,75.98999999999998,443.75 +13.74,42.74,1029.54,70.0,465.92 +12.27,43.8,1023.21,57.0,468.55 +12.88,43.8,1023.19,59.18,468.19 +32.06,71.85,1007.9,56.44,426.07 +23.46,59.27,1010.6,79.79,445.57 +24.41,52.3,1006.28,70.33,442.62 +13.22,44.92,1023.84,87.99,471.43 +13.69,40.83,1008.53,84.81,471.26 +10.31,45.01,1018.42,93.67,473.74 +21.41,54.2,1011.37,82.28,448.11 +24.49,65.46,1015.77,44.95,445.27 +25.72,49.82,1016.19,60.1,452.33 +18.73,46.48,1007.19,79.23,450.74 +22.88,59.21,1011.51,86.93,440.25 +26.59,60.96,1011.9,52.41,439.77 +30.38,71.58,1010.17,50.45,433.75 +18.94,47.83,1005.18,78.59,455.19 +25.17,64.79,1017.87,63.26,442.15 +20.55,48.98,1016.1,63.89,452.52 +10.03,42.18,1017.3,85.99,475.74 +25.03,60.27,1017.9,72.04,438.24 +7.82,41.16,1023.3,87.7,475.66 +33.43,69.88,1006.86,44.84,435.59 +11.33,41.5,1013.58,88.7,475.01 +12.34,40.62,1016.28,53.6,466.47 +4.78,42.85,1013.07,94.72,479.09 +14.03,49.15,1020.5,83.65,467.16 +26.11,47.43,1009.01,56.09,445.36 +24.67,70.94,1007.99,75.64,443.51 +14.28,44.84,1024.84,79.09,474.57 +26.74,59.87,1012.5,62.88,447.88 +29.83,62.66,1007.98,47.07,438.71 +17.51,44.9,1009.05,74.91,455.01 +30.05,69.34,1008.26,61.5,436.82 +15.85,49.69,1015.48,88.65,464.72 +32.5,71.37,1003.75,43.8,433.7 +30.56,69.04,1009.29,55.73,442.24 +23.32,69.23,1011.75,75.59,436.18 +18.0,52.08,1003.07,100.09,450.85 +25.45,70.04,1011.2,82.48,430.2 +17.37,40.55,1001.19,71.42,460.97 +16.43,41.79,1005.47,76.89,455.85 +19.15,44.89,1009.6,74.52,451.09 +16.0,39.16,1016.37,77.63,468.49 +10.87,44.71,1021.38,58.22,484.63 +21.98,55.97,1009.12,89.51,442.65 +21.92,61.87,1009.68,58.83,445.52 +14.62,42.86,1015.56,84.5,470.79 +20.9,67.07,1005.43,82.85,443.46 +23.45,69.04,1010.5,80.77,442.48 +7.31,43.02,1014.19,86.43,484.82 +22.21,61.87,1010.9,54.22,446.62 +20.83,49.02,1009.45,91.92,445.31 +14.71,44.0,1024.98,85.08,462.87 +19.92,63.31,1015.02,82.71,443.54 +31.85,73.20999999999998,1000.98,72.2,435.94 +24.1,71.97,1009.92,91.27,443.09 +12.42,38.25,1012.76,82.23,472.3 +28.79,70.79,1003.83,65.9,425.64 +17.05,44.88,1017.69,88.19,459.63 +31.59,62.7,1009.3,50.16,442.58 +14.93,41.79,1008.88,81.48,456.75 +24.44,69.13,1011.1,87.62,434.34 +26.05,65.59,1012.78,67.03,437.04 +26.48,51.43,1006.76,74.3,438.1 +17.19,37.2,1011.84,67.59,468.4 +6.25,39.04,1019.65,71.27,484.14 +31.12,67.69,1005.3,50.46,425.21 +11.16,40.05,1014.95,88.38,479.11 +31.16,69.88,1007.01,68.28,433.24 +19.27,43.14,1013.17,39.85,463.14 +17.79,43.52,1020.65,68.29,458.57 +22.76,58.96,1013.85,55.95,454.05 +5.66,39.42,1024.7,78.52,482.11 +21.75,67.45,1014.89,67.09,445.1 +24.66,58.86,1013.86,56.39,444.42 +18.16,39.99,1007.73,70.54,463.69 +25.26,61.08,1013.68,71.72,447.46 +23.6,48.98,1015.41,48.28,448.43 +22.89,65.34,1015.53,61.0,450.53 +28.82,71.43,1011.51,58.58,443.68 +21.57,69.23,1011.94,81.73,437.55 +11.03,42.32,1017.26,90.56,470.92 +15.75,39.16,1016.31,77.98999999999998,468.87 +13.67,44.92,1023.6,85.35,467.71 +11.58,39.69,1005.17,86.55,469.6 +32.31,62.04,1010.41,39.39,450.13 +23.67,72.23999999999998,1011.22,90.45,435.94 +11.29,35.76,1019.32,58.91,473.74 +13.58,49.83,1008.9,86.8,465.82 +10.54,41.93,1016.64,93.52,479.65 +24.96,74.98999999999998,1008.25,80.52,440.91 +24.53,74.78,1009.9,78.34,446.3 +12.12,41.17,1017.68,78.72,470.67 +22.99,56.57,1013.93,78.77,445.44 +31.15,67.45,1014.85,42.11,431.97 +20.2,64.45,1009.03,61.77,452.33 +10.9,41.46,1016.66,86.2,479.45 +27.04,48.41,1008.57,60.73,441.21 +29.72,74.78,1009.32,55.25,438.19 +29.86,69.34,1007.76,54.12,433.57 +28.18,73.88,1005.89,75.41,434.48 +27.0,69.4,1004.86,82.2,433.83 +33.63,70.4,1004.02,53.6,430.05 +10.44,37.83,1006.31,97.2,474.42 +13.39,49.83,1007.14,90.88,466.04 +9.0,43.13,1020.25,81.31999999999998,481.09 +18.94,48.7,1008.5,94.83,451.38 +26.14,71.98,1005.98,82.45,428.91 +5.11,42.07,1004.28,81.8,486.41 +26.62,65.12,1016.0,43.24,441.22 +25.69,62.26,1011.38,74.08,436.36 +8.13,39.99,1011.71,87.89,486.19 +9.97,41.62,1013.99,96.02,464.86 +6.58,43.02,1014.03,84.95,488.22 +13.9,42.86,1030.82,71.89,473.76 +12.33,39.28,1011.84,80.01,476.49 +7.26,36.08,1021.47,83.15,483.58 +12.29,40.03,1017.62,89.64,472.65 +33.82,77.17,1008.96,58.91,435.58 +9.27,40.22,1008.1,89.24,481.23 +23.44,62.52,1016.46,67.21,447.19 +31.63,69.59,1008.66,61.81,436.89 +27.28,51.43,1011.46,51.38,450.53 +21.45,45.09,1013.83,52.26,453.15 +25.14,69.13,1011.15,85.67,433.95 +20.12,45.09,1013.73,57.78,448.35 +16.36,53.82,1015.05,71.95,461.62 +19.77,65.06,1016.22,74.95,448.26 +31.92,75.33,1001.81,61.97,436.38 +26.52,43.77,1011.49,46.98,440.31 +11.52,40.03,1017.56,87.87,472.31 +29.91,74.33,1013.22,39.76,430.26 +15.01,39.52,1017.53,72.0,468.02 +28.39,65.51,1014.52,66.48,438.78 +25.3,71.29,1007.86,62.98,437.17 +16.63,53.82,1015.18,66.09,458.29 +10.41,44.68,1023.53,91.38,474.7 +26.86,68.08,1012.99,50.04,436.25 +10.48,36.71,1023.18,81.37,473.3 +10.58,42.34,1022.32,94.01,474.91 +6.94,38.91,1018.94,90.64,485.12 +20.64,49.21,1014.86,58.47,454.2 +25.69,73.18,1012.64,86.35,432.82 +22.48,71.29,1008.15,75.41,444.71 +6.63,39.37,1020.33,76.18,489.16 +33.4,69.98,1013.29,47.78,432.44 +15.11,42.99,1007.53,85.75,466.25 +8.99,36.66,1028.11,71.98,481.03 +9.6,41.82,1032.93,72.63,475.01 +9.42,41.4,1029.21,86.4,474.75 +23.62,68.63,1013.18,50.57,447.3 +28.19,71.97,1008.85,84.67,438.8 +26.39,49.16,1005.68,56.18,442.87 +24.93,47.01,1014.28,66.04,455.06 +21.28,70.72,1010.29,86.22,445.54 +8.73,41.92,1029.41,89.72,480.99 +6.99,35.19,1019.32,68.95,480.05 +30.7,71.58,1010.0,48.96,429.27 +15.82,44.2,1018.96,66.73,460.2 +23.19,49.82,1014.59,70.52,451.08 +10.27,42.34,1022.69,92.78,474.55 +14.04,39.64,1011.09,87.22,472.31 +20.42,62.96,1020.34,84.0,452.08 +17.31,58.49,1011.8,92.77,456.84 +13.51,43.41,1015.94,75.22,463.86 +7.39,39.81,1019.45,85.02,482.99 +26.71,76.86,1002.86,74.5,437.31 +31.74,79.73999999999998,1007.07,61.47,431.72 +21.46,50.59,1016.75,67.14,453.67 +12.75,44.03,1007.29,89.46,465.86 +14.43,44.84,1024.34,84.0,467.45 +23.93,68.28,1005.16,69.91,444.95 +10.62,42.02,999.83,96.66,472.41 +14.74,43.71,1024.35,81.53,465.49 +7.87,41.17,1020.33,77.77,486.2 +22.16,65.48,1017.22,70.51,446.0 +7.94,43.65,1018.75,59.45,479.8 +26.56,65.59,1012.6,64.25,443.66 +31.03,69.59,1007.77,63.96,432.56 +29.09,70.98,1007.86,80.34999999999998,439.34 +7.31,42.18,1014.75,86.75,477.38 +10.03,41.62,1014.55,95.61,462.73 +10.28,39.64,1010.45,74.15,477.65 +29.86,64.79,1017.37,44.8,439.89 +29.24,60.23,1009.62,59.71,438.24 +17.34,47.03,1013.36,98.13,463.89 +13.56,42.34,1017.95,93.83,462.6 +10.62,39.96,1025.37,96.64,470.8 +27.37,69.23,1013.25,48.02,433.18 +13.61,42.34,1017.57,91.35,465.65 +12.81,44.58,1016.49,80.76,475.5 +21.83,62.91,1011.07,91.34,443.76 +22.97,62.4,1010.25,75.18,445.3 +24.33,46.93,1013.72,48.27,447.43 +23.49,64.63,1020.75,65.16,450.28 +17.13,42.86,1014.15,73.59999999999998,463.09 +14.86,44.71,1018.3,49.46,466.38 +24.15,64.63,1020.72,58.06,448.87 +7.71,36.25,1027.92,89.84,481.74 +24.82,71.94,1010.5,64.67,438.69 +11.65,41.54,1020.09,67.96,476.4 +10.25,41.46,1020.65,87.07,481.94 +5.78,40.62,1016.55,84.98,484.13 +9.35,44.03,1011.02,88.11,476.25 +10.76,40.43,1025.98,79.65,490.78 +25.76,57.32,1011.93,43.61,440.26 +14.57,37.86,1022.44,68.82,463.58 +13.6,39.82,1013.34,86.1,470.69 +29.36,78.05,1011.12,64.17,434.29 +23.12,69.71,1008.98,84.41,442.21 +23.39,63.94,1010.54,89.94,441.44 +25.45,67.83,1009.47,57.97,429.95 +27.65,48.41,1008.54,58.25,440.94 +30.24,73.9,1006.74,56.39,441.31 +13.78,40.0,1018.38,68.67,458.74 +24.66,69.94,1006.56,60.91,432.68 +17.1,48.98,1016.48,85.63,454.43 +27.37,65.06,1013.09,50.92,440.5 +20.11,51.19,1007.82,92.06,449.03 +12.24,41.62,1013.38,90.26,461.23 +28.5,79.73999999999998,1006.75,87.09,433.08 +14.64,42.77,1017.59,79.59999999999998,464.27 +18.06,65.48,1018.79,77.95,454.34 +14.79,38.73,999.83,86.45,470.28 +35.2,73.56,1006.56,45.72,434.37 +22.93,51.19,1009.3,82.8,443.57 +25.73,66.54,1010.07,55.97,437.07 +18.77,50.66,1014.89,87.34,457.07 +11.52,40.8,1024.31,73.48999999999998,479.56 +8.84,42.49,1010.28,89.09,481.58 +21.24,60.84,1017.99,82.22,445.71 +15.67,45.17,1018.73,94.74,462.09 +22.99,46.21,1010.71,60.11,444.36 +23.93,64.05,1013.09,86.02,440.66 +34.33,69.05,1000.89,37.9,430.56 +29.85,68.24,1007.01,30.99,433.43 +30.1,67.45,1014.23,39.04,434.01 +6.85,37.49,1011.01,84.53,483.12 +26.53,54.2,1012.9,66.73,439.96 +24.2,59.07,1009.25,88.25,441.93 +24.6,75.23,1012.04,76.77,434.07 +30.1,66.25,1009.38,65.41,434.99 +21.6,59.8,1016.9,76.59,450.14 +24.9,58.49,1011.06,65.14,444.19 +26.9,60.93,1007.1,67.32,435.87 +23.07,57.17,1009.84,76.8,444.08 +24.85,70.47,1006.64,85.37,434.47 +30.3,73.9,1006.72,55.13,440.79 +32.18,69.75,1009.94,52.91,438.26 +29.11,74.78,1009.6,56.93,438.75 +21.37,65.94,1010.73,75.09,444.74 +26.53,69.71,1009.88,76.26,446.17 +8.9,40.77,1011.67,90.26,479.18 +22.45,63.77,1014.57,87.44,444.26 +28.9,71.25,1000.73,77.23999999999998,431.52 +18.55,46.48,1007.34,80.67,452.37 +20.92,63.86,1020.49,72.98,449.09 +14.38,45.09,1012.95,86.1,464.27 +8.9,41.4,1030.83,85.63,472.95 +11.1,44.85,1014.27,65.08,477.03 +20.85,59.21,1012.9,75.97,444.44 +26.27,71.98,1005.72,86.15,427.65 +15.61,40.89,1010.48,80.26,467.3 +3.26,41.31,996.32,100.0,489.38 +27.05,77.95,1009.57,76.56,434.09 +19.54,50.66,1014.7,84.53,456.61 +6.42,35.57,1025.58,79.63,485.86 +26.19,65.61,1014.51,54.52,443.73 +9.84,40.22,1009.5,85.38,479.65 +10.86,44.85,1014.15,88.36,476.87 +33.33,73.03,1014.2,42.28,436.05 +9.25,41.82,1033.25,74.73,478.48 +14.7,44.9,1021.87,83.9,468.69 +30.17,75.08,1005.17,55.89,438.89 +11.74,43.56,1015.14,70.72,477.5 +23.27,60.84,1019.13,67.24,440.22 +25.21,59.21,1013.19,62.85,438.7 +15.18,44.2,1019.6,72.45,462.09 +29.03,43.21,1011.83,65.23,434.11 +24.18,58.49,1011.3,77.81999999999998,445.49 +7.62,44.71,1020.56,69.96,486.07 +29.53,71.97,1008.6,79.25,434.96 +24.27,74.93,1012.73,73.81,443.06 +28.4,74.93,1013.65,48.6,442.23 +22.2,57.17,1009.82,78.43,447.75 +17.58,44.9,1020.52,71.48,459.78 +6.71,40.72,1022.78,80.69,483.11 +28.32,72.58,1007.77,78.34999999999998,428.06 +8.11,42.18,1014.82,93.09,473.62 +34.76,68.94,1006.75,41.31,427.42 +28.82,64.79,1016.74,56.34,445.1 +25.43,60.95,1014.62,51.39,444.65 +24.78,57.19,1008.08,65.4,443.62 +6.94,39.61,1017.74,81.43,480.07 +27.5,68.24,1010.38,73.44,430.9 +21.43,63.94,1012.68,99.68,445.29 +26.84,70.36,1007.41,71.47,442.17 +25.69,64.45,1013.05,42.0,450.94 +27.92,74.98999999999998,1005.47,75.13,431.76 +23.69,58.05,1012.08,74.26,444.46 +22.89,62.39,1007.84,88.16,448.13 +15.43,38.58,1016.58,81.17,463.44 +21.84,58.86,1014.13,69.67,445.16 +16.8,56.03,1020.65,85.26,461.96 +18.34,50.59,1018.42,83.95,457.17 +21.1,49.16,1006.76,86.08,442.78 +8.49,39.61,1021.05,87.74,483.94 +11.95,42.03,1017.58,90.89,465.2 +5.05,35.57,1027.03,80.02,491.4 +4.71,42.07,1005.35,82.26,486.79 +13.65,42.74,1026.58,71.48,468.87 +25.14,67.32,1013.96,41.78,435.39 +8.88,39.66,1015.21,88.29,481.45 +11.3,43.14,1019.56,99.83,469.73 +30.61,67.69,1004.97,47.46,429.8 +15.69,39.3,1019.03,60.57,464.17 +20.58,50.78,1008.87,91.18,445.03 +24.66,66.49,1010.83,70.06,438.01 +21.93,62.91,1013.45,74.62,449.17 +25.2,61.08,1013.04,74.28,447.09 +11.75,35.76,1018.99,57.92,473.01 +28.16,70.72,1009.81,65.32,441.37 +34.96,68.94,1006.17,59.26,431.48 +16.63,43.77,1012.25,75.09,458.66 +12.1,44.77,1019.1,75.84999999999998,463.11 +14.48,39.0,1016.75,75.97,464.56 +30.96,71.77,1006.26,52.76,425.66 +26.89,49.16,1003.84,41.22,442.39 +32.09,69.4,1003.1,56.91,430.62 +9.95,41.82,1033.09,69.44,477.52 +16.71,40.55,1004.45,81.64,464.13 +17.34,46.48,1007.18,83.15,452.06 +26.2,71.14,1007.92,72.95,431.7 +14.51,42.77,1017.47,81.95,463.37 +19.81,43.56,1013.39,38.13,460.59 +13.85,41.39,1018.62,75.55,471.45 +11.06,41.5,1013.09,89.8,476.24 +14.45,43.34,1015.47,83.33,462.16 +3.99,39.64,1011.53,83.58,492.06 +24.74,59.39,1015.23,74.64,437.49 +11.48,41.2,1012.88,90.04,478.34 +19.09,43.14,1012.34,45.75,463.3 +22.26,60.37,1008.14,92.37,441.33 +14.17,39.59,1010.99,94.08,464.17 +24.67,58.05,1011.31,69.95,444.57 +26.87,74.98999999999998,1002.48,71.91,437.78 +22.32,48.41,1008.68,79.11,445.36 +14.94,42.77,1018.06,75.34999999999998,460.51 +19.32,44.71,1015.3,28.81,464.38 +17.58,39.63,1004.84,80.43,467.33 +24.19,47.45,1008.26,64.25,446.3 +32.0,73.17,1009.92,42.47,433.72 +12.64,41.79,1016.38,92.65,461.46 +21.86,63.09,1016.64,87.94,442.79 +23.07,69.23,1011.78,76.06,437.08 +15.98,41.48,1017.0,55.73,456.31 +11.48,41.14,1027.67,90.5,464.07 +26.07,69.23,1013.32,54.03,436.94 +13.74,44.21,1023.26,84.2,466.67 +29.23,75.59999999999998,1017.72,52.26,438.92 +9.44,43.99,1020.31,98.06,475.01 +29.51,75.59999999999998,1017.92,50.61,431.18 +13.12,44.21,1019.57,89.29,469.09 +26.23,59.14,1016.98,75.54,437.85 +14.55,42.74,1027.29,66.64,457.77 +20.3,58.46,1015.93,82.13,448.79 +12.57,39.18,1023.09,77.28,471.87 +9.34,41.49,1020.58,97.59,471.04 +7.93,42.28,1008.43,85.57,484.75 +19.6,48.14,1013.18,68.71,456.57 +21.35,57.76,1017.36,73.09999999999998,452.57 +10.59,38.38,1021.58,68.23,474.94 +27.54,75.59999999999998,1018.26,57.89,440.87 +11.12,44.92,1025.58,93.52,470.82 +18.82,61.27,1019.5,72.23,455.29 +25.11,62.26,1011.12,78.01,434.97 +21.89,58.05,1011.31,85.71,441.76 +12.87,48.04,1012.47,100.13,465.56 +25.54,60.37,1006.49,71.54,436.14 +7.05,40.69,1020.53,89.67,476.75 +9.11,36.66,1026.47,74.79,480.74 +24.77,71.94,1006.77,88.86,432.27 +8.51,40.81,1015.54,83.16,481.02 +17.1,62.1,1020.39,93.63,453.4 +7.11,39.9,1008.82,87.76,484.21 +20.01,56.65,1020.77,74.45999999999998,457.01 +25.27,63.91,1009.82,75.48,440.39 +29.72,54.2,1012.86,38.48,438.84 +27.42,65.74,1013.43,69.42,440.52 +28.44,77.54,1011.73,77.3,433.21 +25.89,48.41,1008.49,68.58,440.92 +31.39,69.59,1008.28,62.86,435.76 +17.1,49.69,1005.53,81.81999999999998,457.32 +15.24,44.45,1020.56,66.13,460.94 +13.9,39.59,1011.84,94.74,465.0 +30.52,70.4,1003.9,64.33,438.29 +21.78,68.28,1001.0,79.3,443.24 +28.07,68.08,1013.13,44.67,437.65 +26.07,71.37,1008.6,79.48,439.25 +18.0,43.7,1015.4,61.28,464.26 +9.93,40.67,1018.08,69.74,485.23 +23.48,65.12,1015.82,60.83,445.66 +12.66,41.2,1015.88,89.12,466.49 +25.95,59.27,1010.9,70.42,444.19 +10.34,41.46,1017.75,89.73,478.03 +18.2,39.63,1005.35,79.05,468.49 +23.64,70.04,1011.09,83.35,435.21 +17.38,43.14,1011.09,61.9,459.02 +27.67,69.59,1009.13,82.15,437.29 +22.18,59.39,1014.82,85.31,440.94 +14.86,37.85,1010.58,86.8,467.71 +25.9,47.45,1007.8,55.96,443.13 +25.88,66.48,1004.24,63.16,434.4 +21.12,47.24,1003.79,70.55,462.41 +20.03,62.26,1012.15,82.54,447.4 +21.86,49.21,1014.61,53.31,452.77 +11.71,40.05,1014.49,86.09,471.49 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/train.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8e4f06f47506230c9250aba198646e237e7e5c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/val.csv @@ -0,0 +1,957 @@ +AT,V,AP,RH,PE +25.69,57.32,1012.34,44.18,441.43 +17.98,59.15,1012.09,83.03,451.97 +11.52,40.75,1016.23,85.18,477.19 +26.43,66.48,1004.36,55.9,435.59 +24.26,69.51,1013.43,53.23,442.56 +19.68,62.96,1020.41,82.26,453.58 +10.28,41.46,1018.44,85.23,479.66 +25.15,62.91,1012.23,48.22,444.19 +23.28,72.23999999999998,1011.3,90.5,434.21 +11.6,40.27,1008.55,72.12,473.89 +22.75,58.79,1011.44,84.47,445.67 +6.77,39.81,1017.01,87.68,488.27 +19.48,58.66,1013.32,73.16,454.4 +23.93,65.59,1011.09,87.26,444.9 +17.77,44.6,1016.97,54.25,460.13 +33.58,77.54,1010.19,53.49,433.75 +7.49,39.81,1019.03,87.29,483.59 +6.33,42.07,1004.25,77.09999999999998,484.57 +12.43,41.62,1011.87,80.56999999999998,460.61 +25.34,64.27,1013.38,66.02,443.94 +17.17,63.09,1020.54,95.98,446.75 +27.75,69.89,1015.41,73.01,430.33 +29.62,73.18,1012.21,61.6,427.22 +24.35,70.04,1010.92,73.88,438.4 +27.39,69.14,1008.82,78.34999999999998,435.22 +31.18,70.36,1006.38,56.74,438.46 +26.56,49.02,1007.65,70.78,438.82 +24.24,71.58,1010.15,91.14,437.75 +11.82,41.26,1020.74,91.14,466.95 +14.38,40.1,1015.51,81.23,467.28 +26.65,74.16,1008.27,94.54,431.47 +26.16,67.9,1005.81,61.02,444.06 +5.52,39.33,1009.74,95.25,492.39 +31.24,68.3,1015.89,42.84,435.2 +26.22,67.45,1013.7,44.04,440.17 +21.67,69.71,1010.46,96.83,440.16 +13.4,40.89,1010.67,91.66,472.36 +13.78,43.22,1011.31,69.7,463.71 +9.88,39.66,1017.81,76.05,480.05 +10.34,41.74,1020.07,79.17,480.84 +26.86,71.32,1007.38,81.14,430.44 +12.95,41.38,1021.97,53.83,474.46 +26.94,65.61,1014.31,49.73,443.9 +21.81,43.77,1011.97,64.72,453.13 +18.9,56.03,1020.77,71.83,457.66 +14.87,41.23,997.39,82.06,465.01 +20.46,59.21,1018.42,85.89,445.22 +24.3,69.94,1007.02,62.14,438.92 +24.58,71.94,1006.85,89.02,433.99 +9.88,40.0,1021.4,92.06,481.58 +29.85,71.58,1010.04,58.66,432.26 +27.5,65.59,1011.23,65.37,441.27 +6.14,40.62,1015.71,86.51,481.66 +20.76,51.19,1009.0,87.23,445.0 +25.55,58.95,1017.12,51.84,442.3 +10.24,41.17,1019.73,82.04,479.78 +14.45,43.71,1025.26,84.23,463.6 +30.76,59.57,1010.66,61.76,439.32 +5.72,40.81,1025.78,92.46,487.8 +30.24,68.24,1009.68,64.67,426.25 +34.61,73.03,1013.61,36.91,438.56 +24.14,62.66,1007.33,73.27,439.93 +26.76,70.98,1007.64,90.51,437.83 +18.47,62.1,1019.86,82.57,452.51 +29.51,75.59999999999998,1017.92,50.61,431.18 +29.05,71.85,1008.6,78.69,428.39 +21.89,45.38,1014.42,68.95,459.45 +24.67,63.56,1013.75,67.56,446.3 +30.67,71.29,1008.36,52.08,430.28 +25.21,49.82,1016.44,63.14,450.75 +9.76,41.01,1019.66,97.59,467.6 +18.31,62.1,1020.38,79.02,455.24 +33.11,77.54,1010.36,50.99,431.77 +26.18,69.14,1006.54,85.95,436.0 +8.72,40.02,1031.32,78.09,477.86 +17.06,58.96,1013.83,73.95,461.15 +8.01,40.62,1015.62,86.43,476.22 +14.35,35.71,1016.1,60.86,468.9 +29.74,70.32,1008.1,52.72,432.69 +23.0,49.5,1014.15,66.68,454.44 +17.09,42.42,1009.03,72.01,464.11 +14.0,40.8,1026.17,54.82,474.87 +25.02,60.29,1017.49,54.75,445.61 +13.86,41.58,1020.69,70.74,461.56 +27.58,78.05,1010.83,94.98,431.95 +26.41,60.93,1007.16,66.02,436.71 +11.02,41.44,1015.28,83.53,476.68 +25.48,58.95,1017.02,51.16,440.42 +15.47,48.98,1016.42,89.85,457.55 +21.48,47.43,1006.88,63.54,449.2 +18.86,51.43,1010.27,86.0,446.91 +20.94,44.58,1016.98,59.65,463.69 +15.02,41.48,1015.19,58.69,456.04 +28.71,70.32,1011.78,76.53,435.95 +14.28,42.77,1020.06,81.77,466.75 +26.24,77.95,1014.19,85.21,438.01 +24.31,63.86,1019.47,58.54,442.69 +8.51,40.78,1023.51,89.84,471.11 +16.07,65.46,1013.88,87.11,450.54 +8.14,39.96,1023.41,88.86,477.05 +18.43,44.63,1019.76,39.99,458.75 +34.2,68.14,1002.7,56.09,427.05 +17.66,62.1,1019.49,86.3,452.03 +23.77,51.43,1006.67,84.09,441.54 +16.59,39.54,1007.97,70.58,464.19 +15.01,43.56,1014.65,61.82,465.84 +29.09,70.02,1010.13,48.06,443.27 +20.1,59.87,1018.97,87.23,444.71 +9.0,39.18,1024.38,84.91,483.26 +16.85,50.9,1013.26,83.94,460.68 +28.44,69.4,1003.98,73.51,433.44 +9.51,40.81,1015.69,82.52,475.29 +25.99,49.82,1015.95,58.56,452.09 +6.86,41.17,1020.12,79.14,490.23 +8.57,39.69,1000.91,99.9,474.29 +23.3,48.78,1018.17,75.36,441.08 +32.95,67.9,1005.88,45.15,425.89 +24.41,73.67,1007.39,86.92,435.56 +17.51,39.54,1010.22,71.53,462.12 +31.68,73.68,1014.85,64.0,431.11 +9.0,41.54,1018.83,79.61,484.08 +18.4,43.96,1012.4,77.81,464.63 +13.72,49.83,1006.88,89.49,463.65 +7.16,38.56,1019.17,70.1,486.12 +14.33,43.41,1015.43,55.4,462.94 +13.53,42.86,1014.0,90.63,471.73 +13.11,41.58,1020.43,74.31999999999998,460.44 +23.98,50.32,1008.41,67.75,443.45 +31.08,59.57,1010.76,60.49,442.88 +33.62,77.17,1009.38,63.71,431.03 +11.93,38.78,1013.15,96.08,474.57 +21.97,68.12,1012.53,75.12,443.39 +23.83,49.21,1012.93,46.79,446.23 +4.96,45.87,1007.32,98.78,481.88 +31.3,70.79,1004.3,54.37,428.75 +17.75,49.25,1020.86,63.67,454.41 +29.89,71.29,1009.0,55.72,431.45 +12.11,41.17,1019.46,62.59,475.53 +23.85,74.22,1009.99,82.72,441.66 +12.16,40.81,1025.79,70.97,476.63 +23.71,60.23,1009.76,90.67,439.66 +22.49,58.71,1009.75,76.43,443.33 +18.9,57.5,1016.21,93.9,451.42 +27.86,63.07,1011.11,56.81,440.48 +26.04,71.14,1011.66,68.95,433.78 +19.51,44.05,1008.52,78.38,451.7 +10.92,40.92,1021.84,83.03,467.05 +8.51,42.32,1015.08,84.89,476.6 +19.68,68.28,1002.62,71.57,452.47 +27.75,70.4,1006.65,90.21,436.53 +21.59,66.54,1004.88,90.54,441.71 +13.93,42.86,1032.37,71.11,468.88 +16.55,41.66,1011.45,55.53,465.14 +25.53,71.85,1009.19,74.7,431.26 +20.67,57.5,1014.42,81.89,453.29 +25.21,69.48,1010.99,75.27,436.02 +9.29,39.04,1022.72,74.29,482.55 +33.92,77.95,1010.15,58.89,433.01 +25.63,71.58,1010.14,87.57,433.76 +27.21,66.49,1013.57,40.11,439.04 +10.42,41.26,1008.48,96.76,472.54 +25.02,59.44,1012.49,73.65,444.08 +24.2,59.43,1009.69,62.3,440.66 +15.82,44.88,1018.59,78.88,461.9 +11.46,38.91,1012.34,77.37,477.5 +13.17,36.71,1012.82,72.76,474.93 +23.47,65.61,1014.57,69.83,447.16 +10.77,41.46,1021.42,87.18,479.22 +28.47,69.23,1013.18,40.73,434.12 +30.03,70.02,1010.07,64.2,436.88 +13.89,35.71,1016.4,65.49,468.54 +13.26,41.78,1009.77,61.69,467.78 +12.31,37.73,1023.3,63.01,472.08 +19.61,45.01,1014.84,64.42,461.97 +18.58,44.6,1016.61,48.15,459.06 +23.18,51.43,1011.56,81.83,449.94 +28.33,68.14,1004.63,71.21,431.27 +14.82,40.0,1016.32,66.3,458.46 +21.42,56.89,1014.39,84.05,444.86 +26.62,76.2,1006.06,69.13,437.81 +28.17,72.43,1007.37,68.92,428.88 +20.86,63.73,1008.54,96.83,440.42 +25.45,63.76,1009.96,67.78,439.56 +29.15,73.42,1011.43,66.49,432.26 +32.33,67.83,1008.11,57.48,427.84 +13.45,45.87,1008.73,87.06,464.88 +29.91,76.86,998.59,72.41,432.6 +24.93,73.5,1011.28,83.09,437.35 +9.71,42.44,1014.29,94.03,481.03 +16.69,53.82,1015.39,63.62,458.96 +22.36,51.43,1007.47,87.33,442.53 +25.57,44.05,1005.79,65.14,443.84 +7.36,41.01,1025.49,96.48,477.37 +14.22,42.32,1015.54,77.23,465.0 +18.33,49.64,1025.36,62.57,468.14 +31.1,68.51,1012.99,54.3,428.68 +27.62,71.14,1011.6,52.8,434.72 +17.04,56.03,1020.38,68.69,462.48 +17.31,44.71,1017.43,35.4,463.05 +31.61,69.04,1008.11,47.96,439.19 +28.14,51.43,1012.16,52.67,445.33 +8.77,40.46,1019.68,77.84,475.0 +6.15,40.77,1022.42,88.57,482.49 +21.39,52.3,1009.2,79.77,446.87 +12.29,40.71,1019.71,83.09,469.75 +11.6,39.96,1011.65,80.79,473.22 +26.68,68.08,1011.41,67.33,433.04 +7.71,38.06,1021.0,83.47,482.78 +10.07,44.68,1023.44,90.95,477.52 +22.08,45.61,1014.02,75.70999999999998,456.71 +30.74,69.59,1008.69,68.04,437.81 +26.49,67.69,1004.61,78.13,430.62 +14.55,44.84,1023.83,87.6,465.14 +16.55,39.64,1009.07,77.8,465.29 +11.68,40.55,1006.48,96.16,474.8 +10.95,40.22,1010.04,78.95999999999998,477.23 +11.83,38.25,1013.36,85.33,473.31 +23.38,48.78,1019.03,78.69,446.18 +29.77,69.48,1009.8,52.6,432.69 +24.12,58.66,1011.55,58.96,450.69 +6.1,39.33,1010.4,95.34,491.37 +6.93,41.14,1027.18,84.67,479.06 +27.6,69.05,1003.87,42.01,436.08 +11.23,41.17,1019.36,56.85,475.85 +18.84,40.79,1005.18,92.46,459.96 +29.47,71.32,1008.07,67.0,437.14 +23.3,72.98999999999998,1008.54,92.11,437.62 +29.15,69.48,1008.68,55.78,430.54 +21.99,42.48,1011.77,74.04,456.65 +21.77,42.23,1013.03,67.44,462.51 +27.61,49.16,1005.01,35.63,441.18 +26.05,65.38,1009.43,52.1,449.82 +14.8,44.71,1014.67,41.71,470.77 +15.71,39.3,1019.2,62.28,462.84 +16.44,53.16,1014.82,75.29,458.49 +17.03,58.49,1011.91,92.16,460.48 +10.12,41.55,1005.78,62.34,475.46 +10.17,41.17,1018.58,87.72,478.04 +23.37,65.46,1016.25,48.64,447.07 +11.98,44.6,1018.59,86.71,470.02 +24.66,48.78,1018.39,71.79,449.11 +16.61,43.77,1012.25,77.23,457.66 +14.79,47.83,1007.27,92.04,463.22 +29.2,64.84,1009.94,55.37,441.9 +23.26,58.2,1016.72,57.98,446.87 +7.19,39.37,1019.67,70.77,480.4 +20.94,49.02,1008.91,87.32,448.18 +27.89,73.20999999999998,1001.32,85.88,431.59 +23.63,71.29,1008.01,70.07,442.65 +20.91,58.2,1018.1,62.8,446.19 +14.91,46.9,1019.59,98.1,461.73 +23.82,73.67,1007.26,88.16,438.42 +32.09,79.73999999999998,1006.92,61.5,432.85 +16.69,46.18,1011.0,97.85,458.57 +17.16,58.86,1016.4,86.39,453.76 +28.05,70.36,1006.73,64.42,434.06 +30.54,70.17,999.42,64.32,434.62 +21.95,50.66,1013.92,70.94,455.23 +24.49,59.87,1018.4,59.95,444.54 +10.62,39.58,1011.9,87.85,479.91 +11.47,25.36,1008.27,95.4,469.51 +24.84,71.73,1009.84,82.41,436.36 +20.66,51.19,1008.81,88.93,447.14 +26.85,63.56,1013.25,52.84,444.39 +25.56,69.13,1002.46,68.26,434.48 +20.0,39.53,1007.59,62.09,456.28 +8.22,41.82,1032.77,71.63,477.86 +21.84,59.39,1015.77,88.12,442.11 +14.26,44.47,1028.81,72.19,465.77 +14.35,39.39,1012.92,82.41,470.53 +22.89,80.25,1006.38,80.25,446.15 +24.34,73.5,1011.31,84.15,440.29 +23.86,59.21,1013.02,73.59999999999998,441.22 +27.71,69.13,1001.63,51.45,432.54 +22.63,70.47,1008.0,82.27,441.92 +31.23,75.08,1004.93,46.19,439.14 +10.31,40.67,1017.61,69.61,485.25 +7.64,39.85,1012.78,88.09,481.53 +31.44,79.73999999999998,1006.95,56.99,431.69 +4.89,45.87,1007.58,99.35,482.69 +27.91,63.76,1010.27,65.67,435.21 +19.05,53.16,1013.22,82.8,455.76 +28.36,69.88,1007.75,84.17,434.03 +27.69,73.91,1005.23,75.70999999999998,435.08 +22.85,59.15,1014.74,63.92,448.61 +23.0,57.76,1017.64,56.86,451.39 +30.04,68.08,1011.04,51.01,429.52 +17.08,38.58,1015.41,73.42,461.49 +27.13,69.45,1013.9,51.16,434.47 +30.65,65.18,1012.51,42.32,436.79 +23.91,50.23,1017.25,68.57,455.41 +7.64,42.28,1008.49,83.42,483.74 +6.77,40.78,1024.86,96.58,478.24 +18.41,44.9,1008.97,73.81,453.12 +14.29,39.59,1010.93,94.53,463.04 +29.29,71.14,1011.49,49.97,432.58 +29.17,67.45,1014.1,46.85,435.08 +23.55,65.94,1011.76,58.44,443.98 +19.05,59.21,1017.99,89.53,451.0 +18.22,49.25,1020.33,61.87,454.66 +14.8,38.73,1003.18,80.73,467.54 +5.28,45.87,1008.25,97.88,479.91 +13.07,43.13,1016.93,70.02,471.47 +21.37,81.56,1006.57,81.56,434.38 +9.96,41.55,1002.59,65.86,475.91 +13.86,41.78,1010.75,57.9,467.39 +11.33,41.16,1019.05,87.13,468.87 +16.81,42.42,1008.95,74.25,462.19 +29.79,67.69,1006.86,55.93,428.71 +14.44,41.2,1015.96,81.97,469.85 +9.08,40.46,1019.48,77.37,476.81 +17.3,57.76,1016.26,87.74,455.75 +27.06,64.45,1008.72,54.21,443.1 +14.64,39.58,1011.46,71.9,467.8 +23.69,77.54,1009.32,89.7,440.21 +9.05,36.3,1027.44,74.84999999999998,479.43 +24.73,74.22,1010.15,79.83,436.55 +19.94,44.9,1008.52,74.69,459.47 +8.73,39.42,1025.63,69.87,474.44 +26.66,73.56,1006.9,99.27,433.62 +31.81,69.88,1007.94,55.91,432.6 +17.47,58.59,1014.03,97.13,449.41 +22.18,62.39,1007.84,85.74,452.31 +18.25,43.14,1011.51,55.16,462.78 +20.34,69.45,1012.76,91.05,442.73 +27.44,58.9,1003.86,66.74,442.19 +27.75,77.23999999999998,1007.48,78.37,433.57 +19.13,59.21,1018.32,89.66,450.81 +19.84,65.48,1019.54,76.59999999999998,449.85 +21.1,62.66,1011.19,83.49,448.8 +20.15,58.59,1014.13,91.96,443.85 +28.85,58.33,1013.78,41.39,444.0 +19.39,60.1,1010.28,83.31,452.57 +21.88,69.71,1010.28,97.64,444.39 +16.34,47.45,1009.41,92.96,448.59 +13.34,40.8,1026.56,64.85,474.47 +3.92,41.31,999.22,95.26,487.35 +21.97,58.12,1015.29,77.47,449.6 +13.89,44.84,1023.66,92.97,466.74 +13.98,40.71,1022.72,71.83,474.46 +16.55,41.93,1022.71,42.73,466.77 +21.17,52.3,1009.36,81.51,447.5 +24.37,65.61,1014.5,65.67,443.13 +24.42,64.79,1016.12,69.32,449.1 +16.54,42.86,1014.85,78.0,465.26 +8.199999999999998,41.14,1025.24,96.26,474.04 +26.17,58.86,1014.52,51.28,443.69 +14.24,39.58,1011.17,70.45,469.94 +14.1,42.18,1015.05,78.25,463.3 +24.91,52.3,1008.72,68.26,441.15 +32.55,69.89,1013.87,40.09,428.84 +20.7,58.16,1016.73,68.19,453.22 +29.7,57.19,1008.41,55.07,436.29 +17.66,60.08,1017.22,86.96,456.62 +30.03,68.84,1011.41,53.82,439.31 +26.45,54.5,1014.96,65.55,450.76 +12.57,41.79,1014.99,87.8,461.88 +30.82,78.87,1012.06,70.69,432.01 +16.97,44.92,1025.21,74.27,460.21 +14.84,38.91,1013.78,69.27,467.83 +20.99,50.78,1008.55,75.14,449.07 +12.35,44.2,1017.81,82.49,471.65 +19.64,46.33,1013.33,98.99,451.45 +29.14,61.5,1009.64,39.95,437.76 +11.82,41.17,1019.5,55.74,475.61 +23.94,51.95,1008.61,73.42,448.67 +17.4,63.09,1020.84,92.58,453.0 +8.949999999999998,43.13,1017.56,94.85,479.14 +29.12,51.43,1005.93,60.66,437.71 +29.13,47.93,1002.5,49.1,435.61 +30.56,71.25,1000.3,70.55,431.92 +19.07,44.63,1020.23,44.93,456.37 +32.96,69.75,1008.86,40.23,435.56 +19.35,39.72,1002.5,51.24,455.29 +31.92,68.3,1015.58,41.55,430.07 +13.85,48.92,1011.68,79.23999999999998,462.38 +26.69,70.36,1006.82,68.29,435.04 +17.66,44.9,1020.5,71.33,457.11 +16.05,38.28,1014.38,73.89,466.75 +6.24,35.77,1019.24,70.7,483.36 +6.43,39.61,1017.51,83.8,480.58 +15.12,39.16,1006.55,76.98999999999998,463.78 +15.84,49.69,1015.14,90.41,462.6 +18.41,42.44,1012.66,65.93,463.2 +15.54,41.96,1011.78,97.46,467.1 +28.26,69.23,1013.01,42.1,436.31 +12.24,40.96,1023.22,78.73999999999998,475.32 +25.45,75.23,1011.41,73.33,441.65 +5.25,42.85,1013.75,89.67,477.78 +9.82,41.04,1026.72,77.28,473.98 +11.44,41.39,1019.59,79.95,478.52 +12.07,38.25,1012.67,81.66,470.36 +28.51,70.02,1010.58,54.68,441.66 +23.47,60.77,1017.19,75.36,444.46 +20.42,45.01,1012.23,66.5,451.28 +21.13,47.43,1006.97,64.26,448.83 +18.62,65.48,1018.45,73.39,451.94 +15.68,43.7,1015.09,58.96,470.29 +7.46,39.81,1018.62,86.73,484.13 +11.38,52.75,1026.19,72.70999999999998,469.9 +21.11,43.43,1010.1,62.62,447.83 +32.38,77.23999999999998,1007.7,61.15,430.96 +19.74,45.38,1015.11,80.67,459.39 +19.18,50.12,1005.99,100.09,444.56 +10.19,37.14,1012.74,73.48,475.01 +20.98,43.77,1010.67,62.73,449.88 +13.47,44.88,1017.56,93.23,476.67 +27.23,44.05,1005.69,58.91,440.2 +7.3,43.65,1019.33,67.62,482.96 +18.26,60.95,1016.94,78.91,457.03 +9.55,40.67,1018.56,70.72,486.34 +26.1,63.56,1013.12,61.0,442.75 +25.88,63.73,1009.48,77.17,438.42 +20.29,63.09,1019.03,76.06999999999998,448.22 +22.58,59.14,1017.2,80.91,439.78 +27.57,60.07,1016.52,54.75,440.12 +30.48,70.04,1010.73,53.7,429.85 +9.27,38.56,1017.69,62.49,475.42 +15.01,42.77,1018.21,73.22,462.6 +31.01,73.5,1010.92,48.61,432.41 +19.62,68.63,1012.26,68.05,453.84 +24.26,47.93,1003.87,70.44,439.16 +14.87,41.76,1022.26,78.20999999999998,464.84 +31.0,71.77,1006.29,48.56,431.07 +28.84,74.67,1016.52,67.43,428.98 +18.48,50.16,1011.45,99.92,452.06 +30.49,64.44,1013.43,51.73,438.09 +27.49,71.94,1008.25,68.29,428.27 +21.76,47.93,1005.34,86.28,444.77 +13.78,44.47,1027.94,71.09,467.22 +25.28,66.25,1009.77,84.55,439.77 +27.17,61.02,1011.38,65.32,437.06 +20.51,42.23,1013.25,71.83,461.78 +15.43,39.16,1016.44,79.8,470.74 +12.7,39.72,1017.89,62.97,467.77 +26.86,72.58,1009.22,88.39,428.69 +26.06,58.59,1012.41,55.22,451.47 +10.56,40.22,1005.08,89.71,478.02 +25.33,73.20999999999998,1002.19,97.24,433.43 +3.0,39.64,1011.0,80.14,485.2 +30.91,69.75,1010.23,59.36,435.7 +27.34,71.64,1008.12,72.22,438.76 +15.34,43.5,1021.18,79.44,459.77 +18.99,59.27,1012.15,89.39,453.4 +12.14,40.27,1007.57,73.22,472.84 +30.75,71.22,1006.47,48.06,437.96 +16.05,41.96,1011.82,96.05,463.72 +14.83,53.82,1016.57,63.47,464.0 +25.12,66.56,1009.22,65.62,436.56 +13.72,41.62,1011.14,75.79,455.52 +20.94,58.16,1016.88,65.43,455.16 +24.81,67.17,1007.71,84.37,442.75 +10.2,41.46,1019.12,83.26,480.11 +26.19,49.3,1003.69,65.88,440.13 +24.7,58.82,1009.4,75.91,442.98 +31.82,73.68,1014.8,40.58,433.32 +10.29,40.56,1017.28,69.13,481.7 +15.94,44.85,1014.29,67.57,462.54 +21.28,70.32,1011.06,90.12,439.0 +12.45,40.1,1015.4,82.61,473.63 +25.15,57.32,1012.41,41.84,440.1 +28.52,57.82,1004.81,57.82,435.4 +22.47,48.6,1002.33,63.23,445.98 +15.21,43.5,1021.6,82.06,464.08 +27.88,63.87,1017.79,40.0,443.24 +32.14,68.31,1010.48,42.15,436.15 +28.28,69.48,1008.56,61.3,428.75 +12.12,38.28,1013.65,90.19,471.19 +13.44,41.14,1026.41,77.26,461.44 +15.12,41.04,1025.95,69.67,460.58 +9.73,40.22,1011.48,87.88,481.42 +14.05,39.59,1011.2,94.54,464.63 +28.43,63.31,1013.44,49.99,432.62 +12.38,41.62,1012.37,84.15,461.07 +7.09,39.37,1020.07,73.26,487.0 +11.69,35.76,1019.02,55.6,471.72 +25.76,63.94,1018.49,42.14,445.78 +14.91,43.34,1015.15,81.56,461.27 +21.91,70.32,1009.17,90.57,439.29 +23.56,73.18,1012.18,87.98,437.92 +19.98,49.15,1021.56,63.89,457.54 +24.33,49.16,1003.46,61.04,441.2 +9.22,40.92,1021.83,85.43,474.51 +32.16,71.32,1005.5,60.23,434.01 +27.29,64.45,1013.46,45.35,446.94 +28.14,61.47,1009.69,64.66,435.35 +26.71,70.4,1007.59,82.63,432.64 +19.83,46.33,1013.27,96.4,451.22 +13.49,43.41,1015.75,57.86,461.06 +14.13,53.82,1016.72,64.85,467.08 +20.6,66.86,1013.08,62.48,451.44 +22.01,60.84,1017.55,83.82,441.9 +5.89,35.77,1019.78,79.58,479.86 +26.02,70.79,1004.21,79.12,428.72 +14.08,41.93,1023.02,59.41,475.15 +24.96,77.54,1008.25,80.59999999999998,433.4 +32.21,71.85,1008.25,58.09,429.15 +26.59,69.13,1009.27,73.95999999999998,430.11 +8.529999999999998,43.14,1012.25,78.88,480.08 +25.94,66.49,1012.83,61.81,433.38 +7.76,39.61,1021.63,80.67,488.32 +27.21,67.45,1013.83,43.26,436.47 +19.08,59.15,1013.1,81.81999999999998,451.33 +30.97,67.9,1005.98,55.6,428.26 +7.53,41.74,1022.45,90.85,487.25 +32.19,69.13,1000.45,48.22,425.21 +27.32,66.54,1004.95,72.58,431.33 +14.92,46.18,1014.21,98.82,465.63 +24.62,72.43,1007.97,84.36,436.89 +14.47,44.66,1016.33,93.52,464.41 +26.35,59.44,1012.16,63.73,443.73 +26.38,65.12,1016.1,47.57,441.07 +24.44,52.84,1006.39,49.05,440.2 +32.63,74.98999999999998,1002.42,40.07,432.79 +29.49,69.71,1009.34,56.35,440.99 +30.58,70.04,1010.4,48.16,431.59 +13.24,39.16,1016.52,86.66,474.48 +12.91,41.66,1013.37,71.52,469.71 +25.1,43.77,1010.9,49.68,444.99 +16.0,43.02,1012.37,39.2,466.01 +23.62,61.87,1010.07,48.77,447.93 +25.54,70.47,1009.28,73.5,436.16 +15.89,41.7,1018.93,82.68,463.33 +23.79,50.16,1005.32,75.81999999999998,435.49 +17.77,56.53,1019.57,79.89,457.94 +21.54,58.41,1013.99,86.34,450.69 +24.49,70.79,1005.51,88.65,430.54 +13.52,39.39,1012.91,84.03,474.82 +13.51,44.9,1019.29,77.23999999999998,464.86 +28.9,68.84,1011.64,64.44,437.06 +26.28,75.23,1011.44,68.35,435.28 +28.81,64.96,1000.46,68.05,427.91 +17.49,63.94,1020.02,82.6,452.71 +20.61,48.78,1020.8,85.05,449.38 +27.84,71.32,1007.72,79.25,431.37 +22.7,60.84,1019.15,71.48,438.59 +7.21,42.03,1017.81,90.12,482.26 +14.68,41.23,998.43,83.71,469.25 +21.93,60.84,1018.96,76.8,440.76 +9.23,37.36,1015.01,67.38,481.08 +27.51,49.3,1003.74,61.27,437.09 +20.76,70.72,1009.73,89.04,448.85 +30.65,71.06,1008.61,76.76,432.08 +10.31,42.49,1009.43,78.36,479.64 +27.27,72.58,1009.25,89.31,428.93 +28.61,68.12,1012.23,46.45,435.28 +19.65,44.89,1009.76,75.36,451.35 +30.24,69.88,1007.9,61.46,436.37 +31.26,68.94,1005.94,39.49,438.03 +25.16,74.33,1014.55,76.7,436.15 +16.73,58.59,1015.02,89.61,455.3 +30.57,58.9,1004.54,54.37,438.49 +17.18,63.09,1020.67,93.58,451.37 +27.35,61.47,1008.43,70.65,443.67 +19.11,50.16,1010.88,100.09,450.38 +26.48,68.14,1004.83,55.96,432.19 +13.84,42.18,1015.74,79.76,468.66 +29.1,76.2,1006.28,60.22,435.97 +13.91,40.24,1017.03,85.93,466.24 +13.73,41.78,1011.75,49.65,464.94 +25.4,65.34,1013.11,53.93,445.82 +14.73,39.52,1017.01,74.20999999999998,470.45 +27.58,66.48,1004.82,51.23,435.34 +24.03,62.44,1010.96,79.88,430.66 +19.78,63.09,1019.01,78.39,448.34 +12.57,41.66,1009.11,70.74,475.61 +13.95,41.49,1019.95,86.46,465.24 +13.77,47.83,1007.41,90.66,466.07 +21.52,50.66,1013.56,74.33,455.71 +27.98,67.9,1006.3,73.53,436.08 +14.57,44.45,1021.42,66.23,462.48 +25.46,70.32,1010.65,64.7,433.08 +8.58,38.38,1021.03,84.37,482.26 +28.18,66.56,1005.69,65.67,426.79 +32.07,70.94,1006.91,49.9,432.33 +17.94,37.2,1012.64,68.11,467.65 +7.34,40.72,1023.01,80.08,483.92 +10.8,39.28,1010.7,82.62,478.8 +24.34,70.79,1006.82,85.66,433.83 +26.45,64.27,1013.23,60.92,444.9 +18.38,62.1,1020.12,77.27,452.91 +32.53,77.95,1014.76,58.1,434.44 +7.99,36.08,1020.08,83.2,481.35 +21.16,50.66,1014.13,72.77,455.86 +15.71,40.12,1012.81,97.46,462.6 +20.58,39.53,1005.68,62.09,460.1 +32.0,58.9,1003.48,51.38,437.81 +30.29,74.16,1008.77,75.23,431.39 +31.38,68.27,1006.79,52.79,426.67 +29.67,66.51,1015.6,34.1,434.8 +19.9,56.53,1020.52,78.05,456.48 +23.6,57.17,1009.84,74.27,446.05 +4.59,39.33,1010.85,71.78,494.9 +12.76,43.7,1015.13,65.34,475.73 +6.53,42.85,1012.65,91.6,480.98 +14.46,53.82,1016.55,68.11,462.6 +23.75,61.5,1008.16,69.14,442.35 +22.28,59.92,1009.36,95.38,437.85 +24.4,60.37,1006.77,82.43,440.64 +29.82,69.75,1010.09,65.02,442.6 +20.29,65.27,1013.17,74.94,445.52 +27.2,72.43,1006.75,80.67,430.32 +5.7,40.62,1016.07,84.94,482.82 +24.54,65.46,1014.27,40.77,446.26 +16.57,63.31,1016.19,81.02,454.78 +29.89,65.74,1012.95,51.36,438.24 +24.37,70.02,1010.97,71.97,443.53 +24.16,65.06,1013.88,58.96,442.32 +14.9,52.05,1015.11,77.33,464.82 +26.88,74.78,1010.42,64.81,440.84 +27.02,72.58,1009.21,89.13,437.8 +10.13,38.16,1013.57,79.04,474.92 +15.27,38.73,1002.83,77.77,465.99 +14.03,44.88,1019.6,57.63,465.51 +8.51,41.26,1023.17,87.79,477.51 +8.68,41.82,1032.83,73.62,478.61 +12.85,41.14,1027.04,86.29,464.86 +25.27,67.07,1006.34,66.35,445.81 +28.62,69.71,1009.67,62.12,437.52 +23.87,60.27,1018.94,77.16,439.86 +26.54,69.48,1010.7,66.09,432.56 +12.83,44.88,1017.86,87.88,474.26 +15.62,41.76,1023.82,66.17,459.72 +28.28,61.86,1012.07,64.49,439.65 +20.06,62.1,1020.21,72.20999999999998,451.81 +13.86,35.71,1015.21,63.16,471.63 +28.19,68.08,1013.41,43.93,436.43 +18.02,53.16,1013.41,82.84,458.01 +14.8,43.99,1022.89,85.25,461.97 +9.26,41.66,1016.87,73.31999999999998,483.51 +20.65,66.51,1014.94,71.83,456.49 +13.03,39.52,1016.68,83.09,473.99 +13.41,49.83,1008.83,87.14,466.38 +3.73,39.42,1024.4,82.42,488.58 +26.95,70.79,1004.09,75.34999999999998,430.07 +11.7,43.41,1016.08,62.27,467.51 +13.09,54.3,1017.61,82.38,471.0 +5.21,41.31,1003.51,91.23,486.46 +12.65,44.0,1023.03,88.73,471.46 +16.01,49.64,1026.35,77.75,457.8 +15.34,41.23,996.87,86.56,465.16 +17.94,62.1,1019.81,82.65,453.55 +33.01,68.67,1005.2,51.41,433.94 +22.91,66.44,1011.23,63.43,444.48 +31.35,67.32,1013.74,38.56,439.81 +10.63,40.67,1017.13,66.12,483.27 +4.27,39.64,1010.99,84.85,487.19 +21.14,58.05,1012.98,87.27,449.74 +25.36,60.07,1015.06,66.11,439.73 +11.44,44.2,1018.14,84.9,476.12 +13.35,39.58,1012.41,83.45,465.85 +23.88,54.2,1012.81,64.52,444.97 +15.65,43.5,1021.39,78.58,463.5 +6.72,38.91,1016.89,90.47,485.89 +15.74,43.71,1024.7,78.38,462.66 +19.84,56.89,1013.23,78.31999999999998,447.92 +11.44,43.13,1014.88,63.88,477.57 +26.55,69.45,1013.88,55.39,435.64 +19.96,39.53,1006.16,62.77,460.49 +10.8,40.69,1014.3,87.44,478.19 +8.36,38.91,1016.27,88.82,482.09 +8.55,35.77,1016.15,73.31999999999998,481.44 +31.84,71.37,1003.51,46.22,432.04 +5.94,39.9,1007.84,86.33,485.86 +14.35,40.71,1023.09,69.5,473.56 +31.91,67.83,1008.76,53.22,425.28 +25.35,74.33,1015.29,77.84,435.66 +9.32,36.3,1027.67,73.25,479.52 +16.34,42.28,1008.08,52.8,463.29 +29.95,73.42,1011.44,66.32,432.81 +7.09,43.65,1019.6,72.09999999999998,483.42 +25.63,72.98999999999998,1008.2,86.8,436.64 +28.54,71.94,1007.4,65.99,430.91 +25.57,65.46,1014.81,38.58,444.46 +12.99,44.0,1025.22,90.27,470.93 +14.77,48.06,1010.92,69.81,461.52 +31.09,59.57,1010.67,60.5,440.08 +14.04,48.79,1017.62,75.25,464.09 +29.12,66.56,1006.9,49.79,429.94 +32.13,74.34,1003.34,56.39,436.3 +31.75,74.98999999999998,1003.25,53.33,430.82 +24.82,66.54,1010.0,60.36,440.88 +19.76,48.92,1010.48,46.57,456.69 +31.26,76.09,1006.66,63.91,430.36 +9.43,41.4,1028.81,85.83,475.8 +27.78,60.07,1014.66,53.74,439.43 +23.99,45.87,1007.63,52.62,443.66 +18.32,66.51,1015.18,81.5,459.89 +28.86,49.3,1003.93,52.85,435.75 +27.35,69.48,1008.51,65.81,432.31 +23.32,66.48,1003.92,72.25,436.26 +18.99,62.1,1020.0,76.76,453.09 +10.82,42.02,996.03,99.34,475.46 +14.81,43.69,1017.19,71.9,470.71 +22.77,59.92,1009.67,94.09,437.9 +18.61,47.83,1006.43,78.89,454.21 +26.5,66.05,1017.03,61.34,440.15 +16.11,44.92,1025.37,79.84999999999998,460.99 +30.51,70.94,1007.64,59.42,430.91 +13.48,41.44,1015.64,71.46,471.39 +16.37,43.5,1021.26,72.4,459.18 +21.19,50.16,1005.81,84.27,450.33 +26.38,59.92,1009.99,71.91,444.85 +24.45,65.12,1015.92,57.19,445.01 +28.6,71.22,1003.15,58.33,443.01 +29.39,69.89,1013.92,47.36,434.27 +25.91,68.08,1010.92,74.25,432.07 +19.94,65.46,1017.7,68.94,448.67 +13.95,71.14,1019.76,75.51,461.18 +33.7,68.27,1007.16,50.41,427.4 +6.58,40.07,1014.22,55.44,493.72 +9.79,39.69,1002.36,93.86,471.61 +18.41,65.94,1010.23,84.71,452.66 +22.89,48.98,1014.55,48.21,448.56 +25.68,46.21,1011.01,57.53,442.98 +32.77,72.86,1003.6,52.87,433.84 +13.18,43.8,1023.18,61.21,467.0 +28.99,54.2,1012.79,41.9,442.6 +26.34,59.21,1013.37,58.98,439.22 +21.11,58.66,1011.7,68.71,457.89 +24.28,71.98,1006.34,90.45,432.47 +28.46,73.67,1005.67,71.21,429.15 +27.16,59.87,1011.78,58.84,446.38 +18.36,53.16,1013.31,83.18,458.47 +20.35,50.9,1012.6,72.43,453.5 +8.57,40.69,1020.87,84.15,485.18 +8.97,44.03,1013.16,80.39,474.61 +20.95,70.72,1009.96,87.73,445.66 +23.49,47.45,1008.46,66.18,446.72 +7.26,41.22,1014.86,97.82,488.75 +27.36,58.33,1013.86,56.7,439.14 +27.98,67.17,1007.32,75.29,440.68 +25.15,68.51,1013.25,72.31,440.96 +26.82,60.96,1012.25,57.41,449.81 +4.24,39.9,1009.28,96.74,491.25 +24.49,65.06,1014.07,63.32,441.4 +19.65,42.23,1013.04,75.9,461.16 +9.57,39.82,1013.12,89.15,468.02 +31.46,66.54,1002.86,53.75,427.76 +7.2,40.35,1011.83,95.59,484.9 +18.19,66.54,1012.9,86.05,449.22 +23.21,73.42,1010.34,88.29,439.66 +29.31,68.67,1006.18,63.38,435.57 +23.54,41.1,1002.05,38.05,448.56 +24.22,62.08,1022.53,60.79,449.11 +21.85,59.8,1016.89,75.28,454.26 +29.79,62.66,1008.5,48.51,440.27 +7.06,41.74,1021.95,90.38,448.97 +15.55,39.63,1004.98,89.82,466.83 +11.09,40.43,1025.47,74.97,490.96 +23.85,72.43,1008.01,88.34,439.02 +24.87,68.61,1011.19,55.69,450.54 +20.67,63.56,1013.27,79.39,450.7 +15.33,42.28,1008.19,66.15,465.2 +20.73,41.1,1001.86,47.51,456.44 +12.53,44.03,1007.21,84.2,470.04 +13.43,50.59,1020.38,86.3,469.33 +23.61,63.94,1012.9,87.06,441.57 +24.07,71.97,1008.83,94.87,441.84 +28.28,61.47,1009.44,60.89,443.12 +9.75,43.69,1016.81,82.42,481.34 +11.96,43.41,1017.42,79.44,469.34 +14.02,40.75,1016.05,70.65,470.48 +8.25,37.49,1009.02,81.09,480.38 +22.8,49.16,1006.4,77.05,439.65 +24.13,45.61,1012.63,71.36,453.19 +15.96,41.66,1011.93,55.47,466.39 +17.48,49.39,1021.51,84.53,460.01 +4.95,42.07,1004.87,80.88,485.67 +12.02,43.69,1016.12,74.06999999999998,477.74 +14.16,39.28,1015.63,77.29,471.27 +21.17,58.16,1017.16,68.11,452.02 +4.97,40.64,1020.91,94.28,485.43 +27.28,78.92,1011.05,75.48,434.78 +10.42,44.85,1014.18,88.36,479.03 +12.75,44.2,1017.59,81.22,471.03 +13.1,40.03,1017.79,84.48,470.75 +29.09,72.43,1006.86,65.47,427.3 +27.64,75.59999999999998,1017.35,54.78,441.04 +7.79,41.01,1024.0,97.2,477.0 +16.52,43.7,1015.08,58.36,466.73 +17.79,40.12,1012.74,79.03,459.13 +15.04,38.01,1022.46,78.29,468.12 +15.92,39.16,1006.59,71.32,460.45 +20.4,57.85,1011.14,92.47,450.07 +20.25,63.91,1009.27,97.97,448.37 +14.24,39.52,1018.22,77.19,468.51 +28.11,70.98,1007.76,85.6,431.83 +21.3,66.86,1013.04,55.43,450.56 +16.56,42.99,1007.48,74.45,464.62 +8.93,40.46,1019.03,71.0,472.77 +17.48,44.2,1018.89,61.51,457.15 +10.38,41.01,1020.8,94.26,465.9 +21.83,57.85,1012.49,75.16,448.21 +20.58,54.5,1015.04,89.83,467.76 +14.95,39.31,1009.15,75.3,462.72 +14.01,38.91,1015.86,69.24,470.1 +7.0,38.08,1020.27,77.67,482.38 +23.82,48.92,1010.48,44.45,446.85 +12.65,44.34,1019.4,71.45,468.8 +16.37,53.16,1014.89,74.84,459.52 +18.62,59.15,1012.85,82.54,450.81 +22.96,68.61,1011.15,76.62,447.18 +25.72,74.67,1016.64,75.93,434.83 +16.0,37.87,1020.24,78.41,461.33 +19.09,65.94,1012.53,81.06,446.34 +24.49,65.61,1014.71,63.47,447.26 +12.79,44.03,1007.46,95.93,464.35 +8.699999999999998,36.24,1013.34,89.5,478.69 +19.79,51.19,1008.77,94.72,447.96 +30.55,68.24,1009.43,63.84,426.8 +10.1,44.03,1008.11,90.29,471.59 +26.73,49.02,1007.75,67.73,438.17 +8.99,41.26,1020.52,91.96,476.09 +15.24,39.39,1013.01,74.23999999999998,469.79 +30.36,71.8,1010.9,63.27,437.4 +10.98,41.54,1019.94,69.83,479.08 +29.08,70.83,1007.98,51.95,430.91 +25.23,61.86,1013.0,76.18,441.48 +27.76,72.58,1009.04,84.96,429.25 +24.37,68.14,1005.22,59.27,440.22 +11.22,40.22,1011.01,81.67,476.7 +23.43,51.43,1011.31,73.55,444.09 +22.81,58.96,1013.5,55.66,452.89 +15.71,44.06,1018.34,71.69,465.05 +10.34,37.5,1010.35,95.56,474.08 +11.01,40.05,1015.46,89.22,474.2 +28.59,69.84,1003.79,67.31,427.53 +29.86,59.57,1011.24,64.02,439.44 +3.95,38.44,1016.75,79.65,492.46 +16.98,63.09,1020.44,95.18,450.55 +28.03,60.23,1010.23,66.04,438.88 +24.43,58.05,1011.88,71.39,445.68 +13.97,45.01,1017.44,89.15,461.96 +9.11,40.02,1031.1,83.02,479.03 +22.08,55.5,1018.42,58.46,455.79 +31.61,75.08,1004.83,42.29,436.67 +8.68,43.14,1011.94,79.06,480.73 +29.11,74.9,1003.31,74.01,432.43 +12.71,43.8,1023.15,71.16,466.2 +31.24,74.22,1007.74,48.77,430.44 +9.18,42.18,1017.4,87.3,475.57 +4.15,39.9,1007.62,95.69,489.8 +14.93,43.02,1012.11,45.56,468.19 +12.24,40.66,1017.4,96.22,464.7 +20.87,63.31,1012.27,79.51,446.7 +21.12,62.52,1015.62,78.98,450.93 +19.23,41.67,1012.53,48.86,465.66 +30.74,71.77,1006.24,53.38,434.89 +25.42,73.20999999999998,1001.91,93.78,432.04 +18.97,50.59,1016.01,74.9,459.68 +23.65,66.05,1019.6,78.20999999999998,442.9 +15.26,46.18,1013.68,98.58,463.6 +24.41,58.59,1012.62,64.52,442.64 +20.79,50.59,1017.75,73.34999999999998,456.01 +8.34,40.72,1023.62,83.75,483.14 +31.12,68.14,1003.67,67.36,427.06 +24.92,63.94,1017.7,44.92,441.07 +29.3,70.04,1010.95,61.23,426.25 +16.46,61.27,1020.02,74.54,456.64 +24.44,69.84,1005.34,80.37,430.3 +6.17,39.33,1012.57,93.32,491.54 +18.15,41.67,1012.75,52.69,464.44 +26.38,71.58,1011.02,80.9,434.26 +23.99,67.69,1007.9,78.56999999999998,437.1 +26.51,67.25,1017.85,64.17,435.52 +24.31,66.49,1011.38,54.35,440.79 +29.04,70.72,1009.55,66.58,437.95 +13.26,41.74,1021.89,63.32,473.44 +18.32,65.94,1012.74,86.77,450.5 +4.87,42.85,1012.69,94.72,482.05 +24.98,60.32,1016.39,63.12,446.46 +14.77,44.9,1020.5,84.31,465.23 +28.77,75.23,1010.01,59.0,437.93 +28.5,76.86,999.49,77.47,430.62 +11.62,41.54,1019.94,66.43,477.75 +23.21,74.22,1009.68,88.46,440.46 +30.12,73.18,1012.29,61.32,429.31 +11.63,41.5,1013.6,87.11,477.3 +19.8,58.79,1017.04,87.71,449.66 +30.22,70.32,1011.63,65.97,435.98 +17.55,43.14,1018.86,76.0,461.58 +8.27,37.7,1015.09,73.64,479.16 +31.01,69.13,1000.93,62.96,425.69 +28.64,73.4,1011.48,52.84,441.32 +10.81,45.0,1023.45,85.89,482.63 +25.62,73.17,1011.65,86.45,430.56 +30.28,58.9,1005.03,54.59,439.06 +3.63,38.44,1016.16,87.38,487.87 +9.73,41.01,1021.76,97.71,469.11 +6.72,39.85,1011.84,84.66,489.09 +20.58,49.15,1021.42,56.15,453.87 +27.99,71.58,1010.68,68.99,435.99 +18.36,53.16,1013.14,79.89,457.94 +30.08,73.42,1011.17,63.86,434.95 +25.6,63.9,1013.16,53.19,451.44 +27.41,59.21,1013.3,50.93,438.39 +7.51,43.02,1014.35,86.46,485.38 +13.42,41.74,1020.96,61.8,473.45 +28.18,60.07,1016.34,49.13,441.61 +17.3,43.72,1009.64,77.86,456.55 +24.96,70.47,1007.73,76.48,438.23 +21.04,45.09,1014.19,40.62,450.92 +22.17,65.61,1014.71,70.91,449.91 +26.98,72.58,1008.55,78.5,431.12 +30.13,78.05,1010.99,61.5,434.14 +9.68,41.48,1018.24,71.04,473.31 +21.95,68.08,1012.91,69.36,443.93 +15.09,44.34,1019.46,60.49,468.8 +23.83,58.79,1009.77,78.13,444.34 +13.86,40.66,1017.15,83.82,463.49 +22.79,69.13,1010.87,91.47,438.08 +26.71,77.95,1012.13,77.5,433.47 +28.69,67.25,1017.71,53.83,432.21 +18.27,51.43,1010.38,88.39,460.41 +24.24,68.3,1018.03,81.51,437.12 +11.8,45.09,1013.21,89.68,470.57 +17.19,58.86,1016.74,85.97,451.87 +18.55,61.87,1008.45,65.3,450.73 +15.5,44.92,1024.16,86.44,462.12 +24.22,56.89,1013.81,70.02,440.79 +11.91,43.22,1008.75,76.56999999999998,472.88 +14.48,46.18,1015.83,92.15,462.3 +14.73,58.2,1019.45,82.48,458.56 +11.91,40.69,1014.41,83.71,476.71 +22.48,50.05,1005.55,82.36,442.56 +27.72,69.88,1007.58,72.25,434.02 +15.03,44.45,1020.94,65.57,460.06 +24.18,59.92,1009.88,79.54,438.85 +21.97,58.79,1010.93,86.7,448.8 +15.51,41.76,1022.81,69.55,463.82 +25.89,58.86,1014.16,52.95,445.17 +19.13,42.18,1001.45,98.77,456.04 +26.82,69.05,1004.62,40.0,437.42 +23.04,48.06,1014.16,54.99,459.36 +6.05,42.85,1013.09,91.88,485.02 +30.94,64.44,1014.36,53.76,439.84 +25.32,48.41,1008.47,72.14,443.04 +26.92,68.27,1008.11,61.73,435.17 +23.48,51.43,1007.13,84.83,441.78 +25.66,71.77,1006.76,84.76,429.25 +17.46,53.29,1018.07,91.01,458.06 +26.18,69.84,1005.13,72.89,431.69 +10.07,39.66,1015.37,83.78,479.64 +30.99,69.82,1009.41,50.84,437.46 +31.85,73.91,1003.6,60.22,431.26 +32.2,72.29,1008.61,69.94,432.52 +22.08,41.1,1002.19,46.69,455.04 +16.32,43.56,1014.4,59.77,463.57 +24.94,59.07,1008.89,84.79,440.12 +8.3,36.3,1015.97,60.62,480.58 +18.81,45.01,1015.28,65.91,457.85 +17.61,56.53,1019.5,82.3,457.01 +27.01,43.77,1011.18,46.58,440.64 +28.69,67.25,1017.71,44.6,436.21 +13.66,40.55,1005.46,96.02,467.7 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/tabddpm/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bb71ab583db13915a9738442731e5b9c8ad639b5 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/tabddpm/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/tabddpm/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..be859dbc5c07ce4996dc946f298ff330943c4c5c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,119 @@ +{ + "dataset_id": "n20", + "model": "tabddpm", + "target_column": "PE", + "task_type": "regression", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/train_20260321_172946.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/train_20260321_172946.log new file mode 100644 index 0000000000000000000000000000000000000000..71d3872b460c69bd11a3e83d8aeec97125451d39 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/train_20260321_172946.log @@ -0,0 +1,119 @@ +/opt/conda/lib/python3.11/site-packages/skorch/__init__.py:6: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. + import pkg_resources +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +/opt/conda/lib/python3.11/site-packages/torch/_tensor.py:1025: UserWarning: non-inplace resize is deprecated + warnings.warn("non-inplace resize is deprecated") +[0] +4 +{'d_in': 4, 'num_classes': 0, 'is_y_cond': True, 'rtdl_params': {'d_layers': [256, 256], 'dropout': 0.0}} +mlp +Step 500/5000 MLoss: 0.0 GLoss: 0.4056 Sum: 0.4056 +Step 1000/5000 MLoss: 0.0 GLoss: 0.4003 Sum: 0.4003 +Step 1500/5000 MLoss: 0.0 GLoss: 0.3971 Sum: 0.3971 +Step 2000/5000 MLoss: 0.0 GLoss: 0.3928 Sum: 0.3928 +Step 2500/5000 MLoss: 0.0 GLoss: 0.3952 Sum: 0.3952 +Step 3000/5000 MLoss: 0.0 GLoss: 0.3951 Sum: 0.3951 +Step 3500/5000 MLoss: 0.0 GLoss: 0.3938 Sum: 0.3938 +Step 4000/5000 MLoss: 0.0 GLoss: 0.3913 Sum: 0.3913 +Step 4500/5000 MLoss: 0.0 GLoss: 0.3865 Sum: 0.3865 +Step 5000/5000 MLoss: 0.0 GLoss: 0.3943 Sum: 0.3943 +Elapsed time: 0:01:30 +[TabDDPM] Training, config=/work/output-SpecializedModels/n20/tabddpm/tabddpm-n20-20260321_172946/config.toml +[TabDDPM] Training complete diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/_tabpfgen_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..1625969227b6d53dfa54a7954a4782e307ea0458 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/_tabpfgen_generate.py @@ -0,0 +1,68 @@ +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/staged/public/train.csv") +target_col = "PE" + +feature_cols = [c for c in df.columns if c != target_col] + +# --- Label-encode categorical / object columns --- +cat_encodings = {} # col -> list of unique values (index = code) +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +# Encode target if categorical +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values + +# Handle NaN +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating 7654 rows via generate_regression") +X_syn, y_syn = gen.generate_regression(X, y, n_samples=7654) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +# --- Inverse label-encoding for categorical columns --- +for col, cats in cat_encodings.items(): + # Round to nearest integer index, clamp to valid range + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +syn_df = syn_df[list(df.columns)] +syn_df.to_csv("/work/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/tabpfgen-n20-7654-20260422_070320.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/tabpfgen-n20-7654-20260422_070320.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/gen_20260422_070320.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/gen_20260422_070320.log new file mode 100644 index 0000000000000000000000000000000000000000..c9565be1cbd53843d324be32fc22a2c477851e04 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/gen_20260422_070320.log @@ -0,0 +1,13 @@ +[TabPFGen] Generating 7654 rows via generate_regression +Step 0/1000 +Step 100/1000 +Step 200/1000 +Step 300/1000 +Step 400/1000 +Step 500/1000 +Step 600/1000 +Step 700/1000 +Step 800/1000 +Step 900/1000 +[TabPFGen] Saved 7650 rows -> /work/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/tabpfgen-n20-7654-20260422_070320.csv +[W421 23:05:54.735701951 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..495aea56fe98182b4762782dddf8cfc7ef8cd3fe --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n20", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "exists": true, + "size": 291758, + "sha256": "8768b9641a081ce32375b2739c6d0a6cdf66c1b03268c7db5f71ffd0019c97e2" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "exists": true, + "size": 36657, + "sha256": "c2dae02f854856ba824310ecaca5c73a72a3302753396aa681c82b69d65b174c" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv", + "exists": true, + "size": 36232, + "sha256": "82c48522e82ea4c5e4c407ec9239e82558dcff1df413f3d0c382e77fa041bc88" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_profile.json", + "exists": true, + "size": 2675, + "sha256": "7e7d747ab11beae1e58278dc8d6ae08d7ae6f14fe93f77a4fc1e6e589df21df4" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_contract_v1.json", + "exists": true, + "size": 3047, + "sha256": "20f513ccbc9f09d5286bc8998a5772f42b78b40aa1ed60b079fa73edf9c78eec" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8618a420d9d101a283cfb38feb336ac37687988f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,112 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "columns": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91364f3480d02e634daea210e8cae28ad5402b46 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n20", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "PE", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..be9348ee91e543b96ce1e2bfd9ccaaf8190515df --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/public_gate/staged_input_manifest.json @@ -0,0 +1,117 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/runner.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/runner.log new file mode 100644 index 0000000000000000000000000000000000000000..388e14d9fce4499b2250c5d37d60d53327afedec --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/runner.log @@ -0,0 +1,18 @@ +[Runner] dataset_source=new, resolved=new +[Runner] Auto num_rows = 7654 (same as training data) +[Runner] Generating 7654 rows -> /data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/tabpfgen-n20-7654-20260422_070320.csv +[tabpfgen] 启动 Docker: benchmark:tabpfgen-zjl +[TabPFGen] Generating 7654 rows via generate_regression +Step 0/1000 +Step 100/1000 +Step 200/1000 +Step 300/1000 +Step 400/1000 +Step 500/1000 +Step 600/1000 +Step 700/1000 +Step 800/1000 +Step 900/1000 +[TabPFGen] Saved 7650 rows -> /work/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/tabpfgen-n20-7654-20260422_070320.csv +[W421 23:05:54.735701951 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[Runner] 完成: {'generate': {'output_csv': '/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/tabpfgen-n20-7654-20260422_070320.csv'}, 'synthetic_csv': PosixPath('/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/tabpfgen-n20-7654-20260422_070320.csv'), 'runtime_result': PosixPath('/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/runtime_result.json')} diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..de6c72114bcfd4b068d654e3aab7f710cba27c74 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "n20", + "model": "tabpfgen", + "run_id": "n20-migrated-20260422_183752", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/tabpfgen-n20-7654-20260422_070320.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/public/staged_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb807ac5b23b2e7dfb39b3a5378cd452e84d56ed --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/public/test.csv @@ -0,0 +1,959 @@ +AT,V,AP,RH,PE +14.72,41.23,997.91,82.69,467.11 +11.94,40.66,1016.61,96.11,467.99 +27.56,66.93,1016.81,55.59,444.1 +9.59,34.69,1027.65,75.31999999999998,478.88 +7.46,41.82,1032.67,74.59,483.11 +15.52,36.99,1006.86,89.7,467.9 +15.47,43.13,1015.11,50.5,466.63 +21.84,45.09,1013.94,46.11,450.88 +19.83,51.43,1007.36,91.64,449.45 +29.3,67.69,1007.17,55.5,430.72 +6.63,39.42,1024.81,72.58,482.02 +22.88,69.45,1014.02,65.13,441.76 +11.97,42.32,1016.95,88.32,467.98 +29.25,67.32,1013.88,38.57,437.94 +14.89,39.58,1012.26,77.58,465.95 +10.39,44.85,1014.22,78.42,478.05 +25.66,77.54,1008.22,78.42,432.82 +16.5,49.39,1018.35,93.42,462.48 +28.55,74.33,1011.77,73.34,426.48 +7.84,40.07,1016.68,47.63,488.7 +27.14,71.32,1007.8,87.99,431.96 +25.18,71.98,1006.71,89.86,432.88 +6.01,35.79,1011.26,90.72,482.79 +14.54,41.17,1015.15,67.78,470.19 +11.8,43.22,1008.57,78.01,469.55 +23.82,44.89,1009.39,74.69,445.45 +32.81,71.32,1007.69,47.29,434.38 +30.63,74.22,1007.47,46.52,430.38 +25.43,70.17,1000.46,87.84,436.43 +30.17,76.86,998.23,73.61,430.3 +26.27,58.33,1013.81,60.43,438.82 +26.02,63.07,1010.94,53.96,446.82 +14.64,39.31,1008.84,79.3,462.72 +19.99,65.94,1012.28,75.42,447.22 +32.9,68.51,1012.95,50.09,430.23 +20.3,44.9,1008.25,64.08,457.6 +22.86,47.43,1009.75,61.54,452.53 +10.82,44.63,1020.64,90.26,473.23 +13.15,42.44,1014.51,99.53,469.34 +27.4,66.48,1004.71,51.5,439.66 +4.96,40.07,1011.8,67.38,494.75 +8.67,36.66,1026.8,84.36,480.38 +25.97,43.21,1011.9,88.73,434.83 +10.23,42.32,1017.53,89.93,473.59 +27.66,59.21,1013.12,51.58,438.57 +27.21,68.12,1012.96,54.69,435.2 +19.72,65.94,1010.53,82.12,446.84 +8.87,41.82,1033.3,74.28,477.97 +15.29,25.88,1009.21,66.0,464.25 +19.48,39.72,1001.75,55.41,457.16 +10.93,39.16,1016.54,90.56,479.83 +20.84,51.19,1008.63,84.11,448.98 +9.01,40.77,1022.37,90.3,470.84 +21.08,63.13,1013.53,98.0,443.51 +14.94,40.0,1017.69,65.43,456.41 +28.37,63.31,1013.18,49.02,437.64 +23.45,45.61,1012.84,73.42,454.92 +12.76,42.32,1015.35,78.18,466.15 +13.86,44.21,1022.6,83.56,468.3 +24.51,51.95,1005.57,63.53,449.73 +5.04,40.64,1021.35,93.63,484.42 +14.24,45.01,1013.54,88.68,461.64 +11.17,39.72,1002.4,81.4,474.64 +11.94,44.2,1017.97,82.93,474.02 +9.28,41.54,1018.33,79.89,482.8 +28.91,58.33,1013.84,39.72,437.53 +16.89,49.21,1015.19,70.39,458.25 +16.34,36.99,1006.99,90.06,466.24 +16.41,47.24,1015.75,88.78,457.94 +19.44,39.53,1006.99,63.18,457.09 +9.37,40.11,1024.94,75.03,471.13 +13.64,44.88,1019.85,56.86,466.66 +16.19,36.99,1007.37,92.4,462.94 +18.75,63.09,1018.19,87.84,450.98 +15.97,45.01,1016.58,83.24,456.91 +19.5,52.72,1025.21,50.21,457.26 +10.49,42.49,1009.81,78.92,478.75 +20.78,62.52,1017.58,73.3,452.3 +7.41,40.81,1026.15,88.96,488.48 +25.38,72.23999999999998,1010.76,89.64,432.3 +4.0,39.9,1009.64,97.16,490.79 +30.61,68.84,1011.18,52.5,439.9 +28.57,75.33,1003.16,76.14,431.58 +15.37,41.96,1011.58,96.76,466.02 +31.56,66.44,1008.91,64.16,430.11 +16.69,46.18,1010.8,96.8,466.03 +22.0,51.3,1012.87,85.79,450.18 +28.31,74.34,998.42,79.23,431.95 +15.7,44.21,1021.26,86.83,462.19 +21.79,58.2,1017.21,66.74,446.94 +25.67,58.59,1013.0,62.34,451.03 +20.59,59.8,1015.27,77.94,453.83 +16.14,44.21,1020.36,80.59,461.03 +25.61,47.43,1008.62,54.51,442.96 +7.61,44.71,1019.41,70.48,485.36 +30.32,64.69,1006.35,51.36,436.72 +29.45,68.27,1007.96,61.63,432.96 +29.28,77.17,1009.4,76.3,433.14 +5.62,41.31,1001.37,89.16,485.6 +24.86,44.05,1005.69,66.65,447.2 +6.17,40.07,1013.7,58.99,495.21 +13.65,41.58,1020.56,72.17,460.8 +3.96,35.47,1016.79,83.81,489.68 +6.49,39.33,1010.85,91.85,489.22 +31.32,71.29,1008.37,50.07,430.46 +8.07,43.69,1017.05,87.34,485.18 +13.35,39.64,1010.1,93.3,471.69 +26.21,56.85,1011.45,41.37,439.55 +5.71,40.77,1022.51,89.58,485.75 +18.98,60.1,1010.09,85.34,453.37 +6.07,38.91,1019.25,83.39,483.56 +26.92,78.92,1011.65,96.22,434.64 +24.44,47.93,1003.13,67.04,440.53 +14.45,52.75,1023.97,63.59,459.85 +26.44,71.64,1004.55,85.53,435.61 +30.7,74.22,1008.12,50.39,432.51 +6.48,36.24,1013.62,92.03,484.65 +30.47,70.83,1010.91,46.94,444.39 +13.78,38.28,1014.8,81.19,467.43 +19.65,62.1,1019.46,77.81999999999998,449.13 +9.51,43.79,1016.02,79.81,481.12 +16.31,52.75,1024.4,55.69,456.58 +13.08,39.82,1012.27,85.21,476.96 +20.72,44.57,1008.96,72.56999999999998,449.76 +9.77,41.44,1017.69,78.26,481.74 +26.12,66.75,1017.86,79.02,433.67 +10.95,43.8,1022.61,63.46,473.2 +11.01,43.69,1016.7,81.48,477.3 +17.36,52.9,1015.42,69.97,458.66 +16.7,46.18,1011.4,95.51,458.05 +11.95,42.07,1018.52,84.73,467.91 +18.3,44.06,1017.95,63.24,456.32 +14.69,35.71,1015.78,57.34,467.39 +30.82,76.2,1007.47,59.3,432.22 +22.36,58.79,1016.69,73.59999999999998,445.76 +23.89,64.27,1013.37,75.22,450.82 +5.75,42.07,1004.24,78.23,485.23 +26.64,69.13,1010.6,79.23,430.41 +23.08,48.41,1008.44,82.35,443.5 +29.76,57.19,1008.59,51.1,436.21 +32.8,68.67,1005.27,44.53,432.28 +24.63,65.38,1010.43,40.68,446.23 +11.02,43.02,1012.32,66.54,478.81 +32.13,69.98,1013.3,55.85,431.84 +23.81,60.08,1017.29,62.66,450.33 +8.09,38.5,1012.99,67.31,484.81 +32.63,69.89,1013.85,41.66,425.72 +13.27,52.75,1025.86,65.12,464.82 +29.3,68.08,1011.23,56.23,434.11 +26.3,77.95,1009.45,78.72,437.95 +28.52,70.02,1010.34,54.21,441.98 +17.86,50.88,1015.59,88.28,457.33 +7.92,41.66,1014.84,76.12,483.38 +3.74,35.19,1018.58,98.84,490.5 +21.33,63.86,1020.33,72.13,445.02 +30.36,74.87,1008.96,61.87,435.31 +14.23,46.18,1017.39,87.29,463.86 +9.55,41.44,1015.07,85.94,481.75 +9.78,41.93,1023.18,75.05,484.03 +30.8,73.17,1010.51,51.93,432.24 +15.48,47.83,1004.88,81.68,463.67 +16.58,46.18,1010.4,96.29,463.51 +20.32,39.72,1001.38,57.21,456.18 +11.83,43.14,1010.06,88.14,471.98 +26.75,56.57,1013.76,57.93,443.92 +14.13,48.92,1011.72,78.06,464.17 +19.91,51.19,1008.0,90.23,449.23 +14.37,40.56,1021.67,68.18,470.19 +17.27,44.9,1007.85,78.8,454.19 +9.59,38.56,1017.52,61.89,481.05 +28.04,70.32,1011.28,78.16,435.42 +18.18,44.63,1020.41,48.64,455.57 +32.27,71.85,1008.06,59.28,429.72 +19.02,44.85,1014.57,43.37,465.42 +13.47,43.34,1012.75,87.04,468.8 +12.25,40.75,1016.02,82.4,475.07 +27.45,64.34,1007.12,65.87,440.0 +29.96,67.83,1008.0,44.05,433.13 +12.55,38.91,1012.58,75.44,474.35 +31.92,75.33,1002.13,65.73,431.32 +21.55,60.27,1017.42,92.59,443.93 +20.14,46.33,1013.24,83.39,453.35 +18.33,44.34,1019.55,51.69,468.8 +8.65,40.56,1023.23,78.84999999999998,485.87 +26.99,62.26,1011.13,71.27,436.89 +14.4,41.26,1021.41,73.11,462.78 +18.35,62.1,1019.97,78.36,455.29 +16.76,43.77,1012.25,77.95,457.0 +11.82,42.86,1014.12,88.28,476.7 +20.78,68.28,1008.75,60.87,450.57 +29.35,54.2,1013.07,42.45,439.47 +22.63,45.61,1014.14,73.06,457.88 +22.83,65.18,1012.24,79.73999999999998,442.43 +6.74,36.08,1020.36,86.98,484.18 +31.54,71.06,1008.4,71.77,431.87 +23.24,45.01,1012.21,45.23,457.01 +32.74,68.31,1010.23,41.29,441.66 +14.18,39.3,1020.1,67.48,464.32 +25.86,59.92,1009.92,73.95,436.06 +14.05,40.69,1015.66,74.39,470.9 +23.78,69.71,1008.79,83.17,443.06 +14.14,39.59,1010.84,96.02,465.23 +11.77,40.71,1024.55,72.48999999999998,477.94 +23.77,64.15,1021.02,55.87,448.43 +9.61,44.03,1008.3,91.36,473.54 +22.42,62.52,1016.83,63.27,451.64 +24.85,68.37,1006.5,68.37,442.66 +17.69,44.34,1019.31,61.12,464.13 +3.21,38.44,1017.11,84.86,492.93 +18.45,42.44,1013.45,63.52,459.79 +11.48,44.6,1018.29,90.76,470.39 +17.37,48.92,1011.91,58.4,455.53 +6.22,39.33,1012.31,93.23,491.77 +12.74,49.83,1007.44,91.47,466.09 +22.56,70.79,1005.85,93.09,435.14 +24.35,58.49,1011.03,70.64,445.6 +16.58,44.68,1021.5,83.38,458.87 +25.47,70.36,1005.79,77.73,437.02 +30.88,69.51,1011.48,46.58,433.14 +6.64,39.04,1018.84,74.94,481.53 +12.65,41.93,1023.07,65.05,479.53 +8.91,40.11,1022.87,78.39,475.43 +5.57,42.85,1013.55,92.14,488.85 +16.09,44.2,1019.39,67.24,460.56 +20.98,60.07,1016.26,67.18,446.26 +14.93,39.16,1007.25,72.34999999999998,463.2 +24.19,58.95,1017.78,58.78,441.91 +23.86,52.84,1006.56,48.94,444.66 +15.59,52.05,1013.67,78.55,456.07 +26.04,74.67,1016.68,81.2,433.55 +22.35,54.42,1012.46,75.01,454.72 +10.57,36.71,1022.11,82.39,472.62 +6.16,38.5,1012.83,93.68,490.92 +24.12,62.44,1013.83,88.02,443.3 +28.24,71.58,1010.1,67.92,434.01 +21.11,69.94,1004.37,84.26,439.91 +11.49,44.63,1020.44,86.04,471.08 +24.92,60.95,1014.88,60.58,445.44 +23.56,67.79,1010.14,89.72,441.29 +7.54,40.72,1023.82,85.15,485.92 +26.85,75.59999999999998,1017.43,74.55,433.48 +12.14,44.85,1014.36,60.04,476.68 +17.03,43.99,1021.5,82.32,460.25 +31.41,64.44,1013.84,49.49,439.3 +14.73,40.35,1011.15,65.2,470.03 +24.04,59.43,1007.6,76.98,437.51 +21.03,44.78,1007.99,36.82,459.72 +22.61,42.8,1014.24,69.71,460.26 +17.36,44.63,1020.49,54.21,456.98 +26.82,64.96,999.72,63.55,427.51 +18.19,44.06,1017.24,78.73,456.13 +24.38,47.01,1015.17,68.96,454.85 +12.98,39.64,1013.95,74.39,473.54 +14.17,43.13,1014.94,48.62,471.08 +18.71,54.9,1017.12,74.79,456.88 +12.8,44.34,1016.52,86.73,473.42 +16.71,46.18,1012.06,96.6,458.4 +22.99,60.77,1017.97,78.47,447.62 +28.34,63.77,1013.7,61.13,439.75 +34.53,73.03,1013.53,36.74,437.03 +10.16,40.8,1028.13,86.39,477.49 +27.28,44.89,1009.02,49.9,441.94 +22.75,58.86,1016.0,67.34,448.32 +25.01,59.54,1007.91,80.93,441.3 +23.64,63.31,1014.5,61.83,440.7 +8.85,41.06,1020.99,86.05,486.4 +19.65,63.91,1009.26,99.08,444.9 +18.22,44.34,1019.35,56.78,469.27 +9.68,40.77,1022.04,85.23,473.73 +17.49,40.55,1001.73,73.15,462.37 +21.79,61.45,1011.11,91.78,446.99 +21.06,62.91,1011.92,75.52,455.22 +23.72,58.62,1016.32,71.17,447.13 +30.93,73.42,1010.98,56.42,432.44 +5.98,38.91,1016.5,91.83,488.85 +13.45,41.16,1022.04,82.96,460.57 +12.23,43.69,1016.46,84.4,471.62 +8.13,39.96,1026.07,95.84,477.12 +29.0,77.54,1011.33,75.13,431.37 +11.61,52.75,1020.94,77.56,464.68 +19.4,49.69,1012.89,75.53,455.6 +5.0,40.64,1021.05,94.84,485.27 +23.46,57.85,1012.7,65.54,444.66 +18.51,48.06,1015.14,79.83,455.44 +29.29,70.36,1006.64,60.82,431.26 +27.55,64.96,999.73,57.34,431.33 +21.82,63.9,1014.48,92.53,447.29 +17.03,47.83,1004.94,79.68,460.43 +17.18,46.0,1002.74,100.1,454.02 +18.14,49.78,1002.95,100.09,451.44 +12.39,49.83,1007.6,92.43,468.43 +20.39,64.15,1021.31,62.35,457.37 +22.72,64.15,1021.14,60.34,453.13 +20.3,58.41,1014.05,86.38,451.74 +21.46,58.18,1007.45,95.33,444.12 +28.99,68.24,1008.75,66.57,428.28 +12.07,40.81,1025.63,68.02,475.96 +15.4,40.69,1015.1,70.25,471.66 +9.59,37.14,1013.8,72.84999999999998,474.74 +7.64,40.02,1031.58,71.19,479.43 +15.42,37.85,1009.89,85.8,467.33 +11.75,42.32,1015.28,77.25,470.44 +19.51,48.78,1021.03,86.33,453.27 +31.86,73.88,1005.6,57.68,435.91 +12.4,40.35,1011.46,79.48999999999998,476.44 +28.11,69.84,1004.68,67.08,427.33 +8.74,40.03,1016.81,93.37,481.07 +24.32,58.79,1016.8,65.61,442.78 +13.72,44.47,1027.2,68.89,470.66 +6.11,38.68,1017.53,79.23,482.97 +16.74,39.16,1005.68,71.17,460.47 +8.52,41.55,1002.09,86.81,483.63 +20.55,68.63,1012.5,67.07,453.47 +22.63,58.49,1010.94,72.7,448.38 +18.13,60.1,1009.67,84.75,455.82 +12.51,43.67,1013.24,91.55,471.96 +21.02,61.5,1008.52,77.73999999999998,448.08 +6.99,40.07,1014.83,54.36,490.11 +16.37,36.99,1006.37,90.11,463.76 +15.68,39.16,1006.09,75.62,461.98 +22.17,60.27,1018.21,89.55,443.31 +26.7,49.02,1007.68,67.97,438.92 +19.55,39.39,1013.55,57.82,464.36 +27.74,74.78,1010.05,60.82,436.87 +18.09,43.72,1008.64,74.15,453.02 +11.49,35.76,1019.08,60.04,472.45 +23.67,63.86,1019.67,57.95,441.73 +32.02,67.83,1007.77,53.31,426.55 +20.38,62.52,1017.85,75.56,456.56 +5.02,45.87,1007.8,99.22,481.03 +26.24,51.43,1011.32,59.52,447.91 +14.47,41.76,1021.98,78.41,464.0 +24.16,60.29,1018.09,63.49,446.17 +10.07,40.92,1021.84,84.18,471.71 +10.73,44.92,1025.1,85.4,476.81 +16.81,42.86,1013.83,77.11,464.36 +27.52,74.67,1015.77,72.01,433.56 +13.96,40.83,1009.89,84.86,469.86 +22.78,49.16,1002.29,64.28,444.99 +22.77,70.32,1012.04,82.43,440.67 +8.64,41.66,1014.14,80.44,481.89 +27.33,66.17,1011.06,64.55,443.89 +19.07,49.69,1007.22,76.79,453.09 +24.1,68.61,1010.97,74.87,443.75 +14.6,42.32,1015.71,77.03,464.67 +14.77,44.47,1028.38,71.18,464.25 +9.14,38.91,1018.62,89.88,476.57 +14.85,45.87,1009.37,84.65,462.67 +8.47,41.03,1021.72,70.16,485.1 +23.79,59.44,1012.53,79.48,448.67 +26.63,64.44,1012.66,61.19,442.0 +12.88,44.34,1016.03,88.51,474.94 +12.73,44.34,1015.11,93.55,472.94 +17.2,40.55,1000.68,72.67,462.55 +10.05,41.17,1018.98,83.71,481.38 +28.37,75.59999999999998,1017.48,55.19,439.25 +25.61,60.32,1015.77,56.48,443.96 +20.34,46.63,1013.16,79.08,453.62 +20.21,58.12,1015.36,79.18,453.19 +21.19,58.86,1014.19,68.96,452.43 +29.71,73.18,1012.35,63.06,427.04 +15.24,37.87,1020.52,84.49,463.09 +17.35,42.86,1014.62,74.16,465.16 +13.5,45.51,1015.33,86.95,469.08 +25.94,77.23999999999998,1007.97,84.82,432.88 +5.51,35.57,1026.3,78.97,489.36 +26.16,52.36,1013.62,58.52,453.08 +15.17,49.15,1021.91,91.73,461.89 +14.57,42.18,1015.13,74.89,465.75 +12.16,45.0,1021.51,50.52,482.99 +25.1,60.37,1005.83,72.53,438.44 +13.57,39.39,1014.01,82.12,471.44 +20.25,55.5,1020.03,69.33,455.13 +11.23,39.72,1018.46,60.62,475.04 +12.52,42.34,1018.67,95.29,464.71 +8.68,39.61,1021.54,77.98,486.31 +8.18,40.02,1031.45,73.66,478.81 +21.93,60.84,1017.8,82.61,443.89 +30.69,71.98,1004.53,65.86,430.33 +12.08,41.39,1019.45,78.3,477.8 +9.08,42.49,1010.67,85.35,481.46 +20.33,57.76,1016.47,75.34999999999998,450.25 +31.03,69.98,1011.33,52.16,436.13 +6.03,41.14,1028.04,87.46,479.61 +14.02,42.86,1030.86,68.36,467.29 +20.51,45.38,1014.29,69.14,461.87 +28.17,63.13,1012.44,66.61,439.94 +18.83,63.91,1010.8,96.18,448.15 +25.52,63.94,1017.81,41.54,440.32 +22.61,49.3,1003.51,83.02,441.76 +28.61,68.12,1011.71,47.57,432.94 +18.43,56.03,1020.41,60.55,465.17 +13.41,54.3,1016.48,79.28,467.88 +11.11,40.55,1023.91,87.12,476.37 +33.97,72.29,1008.98,44.32,432.33 +18.41,62.1,1020.4,78.09999999999998,457.14 +22.4,58.12,1015.24,78.03,449.13 +25.1,61.47,1007.84,75.75,447.27 +28.73,68.3,1016.53,55.73,434.15 +11.47,43.67,1012.68,72.51,475.72 +11.19,40.64,1020.57,84.49,472.86 +10.38,43.02,1013.37,78.53,474.44 +30.09,69.48,1009.51,53.24,435.2 +26.72,65.61,1014.41,52.01,442.48 +19.14,56.65,1020.84,82.97,458.06 +21.25,44.05,1005.69,81.87,448.43 +15.55,45.09,1014.33,62.19,457.36 +12.28,42.34,1019.19,95.8,467.03 +31.93,72.58,1006.9,56.27,425.14 +24.9,71.77,1006.24,85.25,427.77 +23.71,67.17,1007.27,90.2,440.65 +31.05,62.7,1009.35,55.27,441.67 +10.08,40.72,1022.7,67.3,480.8 +22.31,61.45,1009.25,98.56,437.05 +24.01,42.48,1011.39,55.1,453.12 +21.75,49.82,1015.01,78.33,455.28 +29.3,73.67,1005.64,65.31,431.07 +12.27,41.17,1019.39,52.18,473.84 +16.51,41.79,1007.1,74.03,457.74 +26.26,63.73,1010.45,70.61,442.18 +31.33,73.03,1014.18,49.28,438.49 +21.81,65.06,1014.6,66.41,447.13 +14.93,39.39,1014.31,80.68,468.88 +33.87,71.32,1007.91,39.48,435.89 +28.09,63.31,1013.01,52.6,438.6 +18.06,56.65,1020.2,81.59,459.14 +20.36,56.53,1020.25,72.95999999999998,455.34 +29.58,76.2,1008.37,60.73,433.91 +9.62,41.01,1019.43,97.99,467.34 +25.08,58.49,1011.1,64.47,446.9 +24.33,60.32,1015.49,59.95,445.36 +30.93,70.83,1010.61,46.13,440.59 +22.04,58.05,1013.11,85.22,447.28 +5.74,45.87,1011.44,95.94,482.0 +24.17,71.25,1003.9,90.36,435.66 +5.95,39.48,1005.16,63.6,486.07 +27.51,63.73,1009.97,66.14,440.81 +28.62,70.32,1008.87,46.67,431.03 +20.48,60.29,1017.16,72.09999999999998,455.51 +27.03,71.14,1010.33,66.25,430.41 +28.31,70.32,1007.88,47.0,432.5 +16.6,41.93,1022.01,48.98,467.51 +14.67,71.14,1019.84,77.72,458.8 +5.68,40.35,1012.11,92.86,486.79 +29.66,59.22,1013.25,61.2,441.58 +6.99,39.37,1020.19,75.06,487.18 +25.61,74.22,1010.26,75.15,438.45 +11.31,39.61,1018.74,68.9,471.92 +29.04,76.09,1007.52,75.44,430.32 +16.5,53.29,1017.7,95.66,458.37 +22.26,60.77,1018.26,85.94,442.58 +25.95,59.92,1010.05,76.05,443.93 +28.09,70.02,1010.84,51.29,437.83 +8.36,40.67,1014.99,73.65,489.1 +24.88,49.16,1006.04,64.54,445.18 +14.34,42.86,1031.75,66.81,466.17 +18.16,39.99,1008.13,68.5,461.16 +20.57,44.9,1008.39,62.69,456.18 +16.85,39.64,1008.82,80.81,464.2 +24.56,63.21,1013.79,82.38,444.34 +9.54,41.17,1019.79,65.61,481.18 +21.43,60.95,1015.27,75.48999999999998,449.12 +24.15,71.73,1009.76,85.16,436.55 +21.87,74.87,1009.28,85.4,442.37 +15.3,41.76,1022.57,71.56,466.59 +19.45,41.1,1001.88,52.16,458.26 +27.99,71.64,1007.79,72.67,437.81 +21.03,69.05,1002.17,75.34999999999998,444.35 +31.84,77.95,1014.9,55.35,433.28 +29.83,71.43,1011.93,55.8,439.34 +10.08,37.92,1010.47,66.37,474.63 +18.36,51.43,1010.57,90.17,459.8 +16.4,38.01,1022.2,73.05,463.79 +13.03,42.86,1014.39,86.25,475.03 +18.88,62.96,1020.62,82.01,456.18 +11.87,41.78,1012.97,64.79,470.84 +23.16,57.76,1017.74,63.79,451.79 +15.39,42.28,1007.35,81.34999999999998,467.3 +16.84,56.03,1020.25,70.37,437.14 +14.65,44.84,1023.39,87.76,467.18 +18.97,44.85,1014.86,46.31,466.17 +26.22,69.89,1015.46,76.63,433.61 +7.07,37.49,1010.35,87.19,481.58 +17.4,44.9,1020.5,77.11,457.75 +30.05,73.68,1014.95,70.6,434.92 +14.01,45.08,1023.28,82.49,464.79 +23.24,63.78,1017.1,63.8,446.95 +23.03,65.12,1016.29,69.8,447.84 +8.58,40.72,1022.04,87.55,480.96 +24.92,48.92,1010.11,36.53,445.56 +25.8,65.38,1009.3,52.28,450.5 +26.31,48.6,1002.64,60.04,440.06 +29.13,62.26,1010.51,52.94,436.37 +11.02,41.17,1018.18,86.86,477.62 +13.61,39.85,1012.78,58.12,475.62 +23.32,69.13,1010.75,91.84,435.27 +30.45,43.21,1011.35,63.59,438.68 +31.7,70.36,1006.26,58.18,438.38 +23.62,73.67,1007.0,90.8,438.33 +12.45,43.67,1013.61,91.34,474.27 +28.85,68.12,1012.05,46.31,436.15 +18.4,43.69,1016.59,52.44,462.05 +28.97,78.92,1011.71,88.5,430.98 +4.93,35.19,1018.04,92.94,486.39 +13.75,44.47,1029.63,70.74,467.14 +16.64,44.9,1021.02,70.34,460.93 +19.04,68.28,1004.52,86.16,444.54 +15.89,43.96,1014.02,75.23999999999998,467.35 +29.03,67.79,1010.67,55.42,444.09 +14.97,58.2,1019.52,81.13,458.68 +16.23,43.52,1020.13,76.3,464.74 +14.74,44.47,1028.29,67.87,462.92 +9.75,52.72,1026.03,78.53,473.41 +27.18,59.27,1012.57,64.18,439.69 +16.22,50.88,1014.33,100.09,454.94 +6.62,42.49,1008.74,94.57,482.74 +9.33,44.03,1011.73,86.04,474.15 +23.14,62.26,1011.87,66.44,444.38 +14.52,40.35,1011.11,69.84,470.8 +33.71,69.98,1013.09,42.62,431.99 +14.84,42.03,1017.47,79.27,466.2 +13.48,41.92,1030.2,65.96,463.9 +31.4,71.06,1008.44,74.77,433.34 +27.44,66.56,1005.51,69.28,428.0 +22.68,70.47,1010.86,82.8,441.47 +9.03,40.71,1025.98,81.94,484.97 +14.36,41.26,1021.16,73.43,462.25 +10.06,43.22,1014.1,85.7,473.0 +22.76,49.02,1007.5,88.56,442.84 +24.79,75.59999999999998,1017.07,68.23,440.05 +34.97,73.56,1006.57,44.69,435.15 +27.64,75.59999999999998,1017.35,54.78,441.04 +18.37,51.86,1018.8,74.3,461.14 +7.91,39.96,1023.57,88.44,475.52 +21.8,65.94,1012.02,63.52,448.66 +29.42,71.32,1002.26,67.13,437.47 +19.01,58.46,1017.14,90.99,446.18 +24.01,67.17,1007.44,86.87,443.09 +11.69,39.22,1017.05,55.51,472.76 +22.01,58.46,1016.26,75.98999999999998,443.75 +13.74,42.74,1029.54,70.0,465.92 +12.27,43.8,1023.21,57.0,468.55 +12.88,43.8,1023.19,59.18,468.19 +32.06,71.85,1007.9,56.44,426.07 +23.46,59.27,1010.6,79.79,445.57 +24.41,52.3,1006.28,70.33,442.62 +13.22,44.92,1023.84,87.99,471.43 +13.69,40.83,1008.53,84.81,471.26 +10.31,45.01,1018.42,93.67,473.74 +21.41,54.2,1011.37,82.28,448.11 +24.49,65.46,1015.77,44.95,445.27 +25.72,49.82,1016.19,60.1,452.33 +18.73,46.48,1007.19,79.23,450.74 +22.88,59.21,1011.51,86.93,440.25 +26.59,60.96,1011.9,52.41,439.77 +30.38,71.58,1010.17,50.45,433.75 +18.94,47.83,1005.18,78.59,455.19 +25.17,64.79,1017.87,63.26,442.15 +20.55,48.98,1016.1,63.89,452.52 +10.03,42.18,1017.3,85.99,475.74 +25.03,60.27,1017.9,72.04,438.24 +7.82,41.16,1023.3,87.7,475.66 +33.43,69.88,1006.86,44.84,435.59 +11.33,41.5,1013.58,88.7,475.01 +12.34,40.62,1016.28,53.6,466.47 +4.78,42.85,1013.07,94.72,479.09 +14.03,49.15,1020.5,83.65,467.16 +26.11,47.43,1009.01,56.09,445.36 +24.67,70.94,1007.99,75.64,443.51 +14.28,44.84,1024.84,79.09,474.57 +26.74,59.87,1012.5,62.88,447.88 +29.83,62.66,1007.98,47.07,438.71 +17.51,44.9,1009.05,74.91,455.01 +30.05,69.34,1008.26,61.5,436.82 +15.85,49.69,1015.48,88.65,464.72 +32.5,71.37,1003.75,43.8,433.7 +30.56,69.04,1009.29,55.73,442.24 +23.32,69.23,1011.75,75.59,436.18 +18.0,52.08,1003.07,100.09,450.85 +25.45,70.04,1011.2,82.48,430.2 +17.37,40.55,1001.19,71.42,460.97 +16.43,41.79,1005.47,76.89,455.85 +19.15,44.89,1009.6,74.52,451.09 +16.0,39.16,1016.37,77.63,468.49 +10.87,44.71,1021.38,58.22,484.63 +21.98,55.97,1009.12,89.51,442.65 +21.92,61.87,1009.68,58.83,445.52 +14.62,42.86,1015.56,84.5,470.79 +20.9,67.07,1005.43,82.85,443.46 +23.45,69.04,1010.5,80.77,442.48 +7.31,43.02,1014.19,86.43,484.82 +22.21,61.87,1010.9,54.22,446.62 +20.83,49.02,1009.45,91.92,445.31 +14.71,44.0,1024.98,85.08,462.87 +19.92,63.31,1015.02,82.71,443.54 +31.85,73.20999999999998,1000.98,72.2,435.94 +24.1,71.97,1009.92,91.27,443.09 +12.42,38.25,1012.76,82.23,472.3 +28.79,70.79,1003.83,65.9,425.64 +17.05,44.88,1017.69,88.19,459.63 +31.59,62.7,1009.3,50.16,442.58 +14.93,41.79,1008.88,81.48,456.75 +24.44,69.13,1011.1,87.62,434.34 +26.05,65.59,1012.78,67.03,437.04 +26.48,51.43,1006.76,74.3,438.1 +17.19,37.2,1011.84,67.59,468.4 +6.25,39.04,1019.65,71.27,484.14 +31.12,67.69,1005.3,50.46,425.21 +11.16,40.05,1014.95,88.38,479.11 +31.16,69.88,1007.01,68.28,433.24 +19.27,43.14,1013.17,39.85,463.14 +17.79,43.52,1020.65,68.29,458.57 +22.76,58.96,1013.85,55.95,454.05 +5.66,39.42,1024.7,78.52,482.11 +21.75,67.45,1014.89,67.09,445.1 +24.66,58.86,1013.86,56.39,444.42 +18.16,39.99,1007.73,70.54,463.69 +25.26,61.08,1013.68,71.72,447.46 +23.6,48.98,1015.41,48.28,448.43 +22.89,65.34,1015.53,61.0,450.53 +28.82,71.43,1011.51,58.58,443.68 +21.57,69.23,1011.94,81.73,437.55 +11.03,42.32,1017.26,90.56,470.92 +15.75,39.16,1016.31,77.98999999999998,468.87 +13.67,44.92,1023.6,85.35,467.71 +11.58,39.69,1005.17,86.55,469.6 +32.31,62.04,1010.41,39.39,450.13 +23.67,72.23999999999998,1011.22,90.45,435.94 +11.29,35.76,1019.32,58.91,473.74 +13.58,49.83,1008.9,86.8,465.82 +10.54,41.93,1016.64,93.52,479.65 +24.96,74.98999999999998,1008.25,80.52,440.91 +24.53,74.78,1009.9,78.34,446.3 +12.12,41.17,1017.68,78.72,470.67 +22.99,56.57,1013.93,78.77,445.44 +31.15,67.45,1014.85,42.11,431.97 +20.2,64.45,1009.03,61.77,452.33 +10.9,41.46,1016.66,86.2,479.45 +27.04,48.41,1008.57,60.73,441.21 +29.72,74.78,1009.32,55.25,438.19 +29.86,69.34,1007.76,54.12,433.57 +28.18,73.88,1005.89,75.41,434.48 +27.0,69.4,1004.86,82.2,433.83 +33.63,70.4,1004.02,53.6,430.05 +10.44,37.83,1006.31,97.2,474.42 +13.39,49.83,1007.14,90.88,466.04 +9.0,43.13,1020.25,81.31999999999998,481.09 +18.94,48.7,1008.5,94.83,451.38 +26.14,71.98,1005.98,82.45,428.91 +5.11,42.07,1004.28,81.8,486.41 +26.62,65.12,1016.0,43.24,441.22 +25.69,62.26,1011.38,74.08,436.36 +8.13,39.99,1011.71,87.89,486.19 +9.97,41.62,1013.99,96.02,464.86 +6.58,43.02,1014.03,84.95,488.22 +13.9,42.86,1030.82,71.89,473.76 +12.33,39.28,1011.84,80.01,476.49 +7.26,36.08,1021.47,83.15,483.58 +12.29,40.03,1017.62,89.64,472.65 +33.82,77.17,1008.96,58.91,435.58 +9.27,40.22,1008.1,89.24,481.23 +23.44,62.52,1016.46,67.21,447.19 +31.63,69.59,1008.66,61.81,436.89 +27.28,51.43,1011.46,51.38,450.53 +21.45,45.09,1013.83,52.26,453.15 +25.14,69.13,1011.15,85.67,433.95 +20.12,45.09,1013.73,57.78,448.35 +16.36,53.82,1015.05,71.95,461.62 +19.77,65.06,1016.22,74.95,448.26 +31.92,75.33,1001.81,61.97,436.38 +26.52,43.77,1011.49,46.98,440.31 +11.52,40.03,1017.56,87.87,472.31 +29.91,74.33,1013.22,39.76,430.26 +15.01,39.52,1017.53,72.0,468.02 +28.39,65.51,1014.52,66.48,438.78 +25.3,71.29,1007.86,62.98,437.17 +16.63,53.82,1015.18,66.09,458.29 +10.41,44.68,1023.53,91.38,474.7 +26.86,68.08,1012.99,50.04,436.25 +10.48,36.71,1023.18,81.37,473.3 +10.58,42.34,1022.32,94.01,474.91 +6.94,38.91,1018.94,90.64,485.12 +20.64,49.21,1014.86,58.47,454.2 +25.69,73.18,1012.64,86.35,432.82 +22.48,71.29,1008.15,75.41,444.71 +6.63,39.37,1020.33,76.18,489.16 +33.4,69.98,1013.29,47.78,432.44 +15.11,42.99,1007.53,85.75,466.25 +8.99,36.66,1028.11,71.98,481.03 +9.6,41.82,1032.93,72.63,475.01 +9.42,41.4,1029.21,86.4,474.75 +23.62,68.63,1013.18,50.57,447.3 +28.19,71.97,1008.85,84.67,438.8 +26.39,49.16,1005.68,56.18,442.87 +24.93,47.01,1014.28,66.04,455.06 +21.28,70.72,1010.29,86.22,445.54 +8.73,41.92,1029.41,89.72,480.99 +6.99,35.19,1019.32,68.95,480.05 +30.7,71.58,1010.0,48.96,429.27 +15.82,44.2,1018.96,66.73,460.2 +23.19,49.82,1014.59,70.52,451.08 +10.27,42.34,1022.69,92.78,474.55 +14.04,39.64,1011.09,87.22,472.31 +20.42,62.96,1020.34,84.0,452.08 +17.31,58.49,1011.8,92.77,456.84 +13.51,43.41,1015.94,75.22,463.86 +7.39,39.81,1019.45,85.02,482.99 +26.71,76.86,1002.86,74.5,437.31 +31.74,79.73999999999998,1007.07,61.47,431.72 +21.46,50.59,1016.75,67.14,453.67 +12.75,44.03,1007.29,89.46,465.86 +14.43,44.84,1024.34,84.0,467.45 +23.93,68.28,1005.16,69.91,444.95 +10.62,42.02,999.83,96.66,472.41 +14.74,43.71,1024.35,81.53,465.49 +7.87,41.17,1020.33,77.77,486.2 +22.16,65.48,1017.22,70.51,446.0 +7.94,43.65,1018.75,59.45,479.8 +26.56,65.59,1012.6,64.25,443.66 +31.03,69.59,1007.77,63.96,432.56 +29.09,70.98,1007.86,80.34999999999998,439.34 +7.31,42.18,1014.75,86.75,477.38 +10.03,41.62,1014.55,95.61,462.73 +10.28,39.64,1010.45,74.15,477.65 +29.86,64.79,1017.37,44.8,439.89 +29.24,60.23,1009.62,59.71,438.24 +17.34,47.03,1013.36,98.13,463.89 +13.56,42.34,1017.95,93.83,462.6 +10.62,39.96,1025.37,96.64,470.8 +27.37,69.23,1013.25,48.02,433.18 +13.61,42.34,1017.57,91.35,465.65 +12.81,44.58,1016.49,80.76,475.5 +21.83,62.91,1011.07,91.34,443.76 +22.97,62.4,1010.25,75.18,445.3 +24.33,46.93,1013.72,48.27,447.43 +23.49,64.63,1020.75,65.16,450.28 +17.13,42.86,1014.15,73.59999999999998,463.09 +14.86,44.71,1018.3,49.46,466.38 +24.15,64.63,1020.72,58.06,448.87 +7.71,36.25,1027.92,89.84,481.74 +24.82,71.94,1010.5,64.67,438.69 +11.65,41.54,1020.09,67.96,476.4 +10.25,41.46,1020.65,87.07,481.94 +5.78,40.62,1016.55,84.98,484.13 +9.35,44.03,1011.02,88.11,476.25 +10.76,40.43,1025.98,79.65,490.78 +25.76,57.32,1011.93,43.61,440.26 +14.57,37.86,1022.44,68.82,463.58 +13.6,39.82,1013.34,86.1,470.69 +29.36,78.05,1011.12,64.17,434.29 +23.12,69.71,1008.98,84.41,442.21 +23.39,63.94,1010.54,89.94,441.44 +25.45,67.83,1009.47,57.97,429.95 +27.65,48.41,1008.54,58.25,440.94 +30.24,73.9,1006.74,56.39,441.31 +13.78,40.0,1018.38,68.67,458.74 +24.66,69.94,1006.56,60.91,432.68 +17.1,48.98,1016.48,85.63,454.43 +27.37,65.06,1013.09,50.92,440.5 +20.11,51.19,1007.82,92.06,449.03 +12.24,41.62,1013.38,90.26,461.23 +28.5,79.73999999999998,1006.75,87.09,433.08 +14.64,42.77,1017.59,79.59999999999998,464.27 +18.06,65.48,1018.79,77.95,454.34 +14.79,38.73,999.83,86.45,470.28 +35.2,73.56,1006.56,45.72,434.37 +22.93,51.19,1009.3,82.8,443.57 +25.73,66.54,1010.07,55.97,437.07 +18.77,50.66,1014.89,87.34,457.07 +11.52,40.8,1024.31,73.48999999999998,479.56 +8.84,42.49,1010.28,89.09,481.58 +21.24,60.84,1017.99,82.22,445.71 +15.67,45.17,1018.73,94.74,462.09 +22.99,46.21,1010.71,60.11,444.36 +23.93,64.05,1013.09,86.02,440.66 +34.33,69.05,1000.89,37.9,430.56 +29.85,68.24,1007.01,30.99,433.43 +30.1,67.45,1014.23,39.04,434.01 +6.85,37.49,1011.01,84.53,483.12 +26.53,54.2,1012.9,66.73,439.96 +24.2,59.07,1009.25,88.25,441.93 +24.6,75.23,1012.04,76.77,434.07 +30.1,66.25,1009.38,65.41,434.99 +21.6,59.8,1016.9,76.59,450.14 +24.9,58.49,1011.06,65.14,444.19 +26.9,60.93,1007.1,67.32,435.87 +23.07,57.17,1009.84,76.8,444.08 +24.85,70.47,1006.64,85.37,434.47 +30.3,73.9,1006.72,55.13,440.79 +32.18,69.75,1009.94,52.91,438.26 +29.11,74.78,1009.6,56.93,438.75 +21.37,65.94,1010.73,75.09,444.74 +26.53,69.71,1009.88,76.26,446.17 +8.9,40.77,1011.67,90.26,479.18 +22.45,63.77,1014.57,87.44,444.26 +28.9,71.25,1000.73,77.23999999999998,431.52 +18.55,46.48,1007.34,80.67,452.37 +20.92,63.86,1020.49,72.98,449.09 +14.38,45.09,1012.95,86.1,464.27 +8.9,41.4,1030.83,85.63,472.95 +11.1,44.85,1014.27,65.08,477.03 +20.85,59.21,1012.9,75.97,444.44 +26.27,71.98,1005.72,86.15,427.65 +15.61,40.89,1010.48,80.26,467.3 +3.26,41.31,996.32,100.0,489.38 +27.05,77.95,1009.57,76.56,434.09 +19.54,50.66,1014.7,84.53,456.61 +6.42,35.57,1025.58,79.63,485.86 +26.19,65.61,1014.51,54.52,443.73 +9.84,40.22,1009.5,85.38,479.65 +10.86,44.85,1014.15,88.36,476.87 +33.33,73.03,1014.2,42.28,436.05 +9.25,41.82,1033.25,74.73,478.48 +14.7,44.9,1021.87,83.9,468.69 +30.17,75.08,1005.17,55.89,438.89 +11.74,43.56,1015.14,70.72,477.5 +23.27,60.84,1019.13,67.24,440.22 +25.21,59.21,1013.19,62.85,438.7 +15.18,44.2,1019.6,72.45,462.09 +29.03,43.21,1011.83,65.23,434.11 +24.18,58.49,1011.3,77.81999999999998,445.49 +7.62,44.71,1020.56,69.96,486.07 +29.53,71.97,1008.6,79.25,434.96 +24.27,74.93,1012.73,73.81,443.06 +28.4,74.93,1013.65,48.6,442.23 +22.2,57.17,1009.82,78.43,447.75 +17.58,44.9,1020.52,71.48,459.78 +6.71,40.72,1022.78,80.69,483.11 +28.32,72.58,1007.77,78.34999999999998,428.06 +8.11,42.18,1014.82,93.09,473.62 +34.76,68.94,1006.75,41.31,427.42 +28.82,64.79,1016.74,56.34,445.1 +25.43,60.95,1014.62,51.39,444.65 +24.78,57.19,1008.08,65.4,443.62 +6.94,39.61,1017.74,81.43,480.07 +27.5,68.24,1010.38,73.44,430.9 +21.43,63.94,1012.68,99.68,445.29 +26.84,70.36,1007.41,71.47,442.17 +25.69,64.45,1013.05,42.0,450.94 +27.92,74.98999999999998,1005.47,75.13,431.76 +23.69,58.05,1012.08,74.26,444.46 +22.89,62.39,1007.84,88.16,448.13 +15.43,38.58,1016.58,81.17,463.44 +21.84,58.86,1014.13,69.67,445.16 +16.8,56.03,1020.65,85.26,461.96 +18.34,50.59,1018.42,83.95,457.17 +21.1,49.16,1006.76,86.08,442.78 +8.49,39.61,1021.05,87.74,483.94 +11.95,42.03,1017.58,90.89,465.2 +5.05,35.57,1027.03,80.02,491.4 +4.71,42.07,1005.35,82.26,486.79 +13.65,42.74,1026.58,71.48,468.87 +25.14,67.32,1013.96,41.78,435.39 +8.88,39.66,1015.21,88.29,481.45 +11.3,43.14,1019.56,99.83,469.73 +30.61,67.69,1004.97,47.46,429.8 +15.69,39.3,1019.03,60.57,464.17 +20.58,50.78,1008.87,91.18,445.03 +24.66,66.49,1010.83,70.06,438.01 +21.93,62.91,1013.45,74.62,449.17 +25.2,61.08,1013.04,74.28,447.09 +11.75,35.76,1018.99,57.92,473.01 +28.16,70.72,1009.81,65.32,441.37 +34.96,68.94,1006.17,59.26,431.48 +16.63,43.77,1012.25,75.09,458.66 +12.1,44.77,1019.1,75.84999999999998,463.11 +14.48,39.0,1016.75,75.97,464.56 +30.96,71.77,1006.26,52.76,425.66 +26.89,49.16,1003.84,41.22,442.39 +32.09,69.4,1003.1,56.91,430.62 +9.95,41.82,1033.09,69.44,477.52 +16.71,40.55,1004.45,81.64,464.13 +17.34,46.48,1007.18,83.15,452.06 +26.2,71.14,1007.92,72.95,431.7 +14.51,42.77,1017.47,81.95,463.37 +19.81,43.56,1013.39,38.13,460.59 +13.85,41.39,1018.62,75.55,471.45 +11.06,41.5,1013.09,89.8,476.24 +14.45,43.34,1015.47,83.33,462.16 +3.99,39.64,1011.53,83.58,492.06 +24.74,59.39,1015.23,74.64,437.49 +11.48,41.2,1012.88,90.04,478.34 +19.09,43.14,1012.34,45.75,463.3 +22.26,60.37,1008.14,92.37,441.33 +14.17,39.59,1010.99,94.08,464.17 +24.67,58.05,1011.31,69.95,444.57 +26.87,74.98999999999998,1002.48,71.91,437.78 +22.32,48.41,1008.68,79.11,445.36 +14.94,42.77,1018.06,75.34999999999998,460.51 +19.32,44.71,1015.3,28.81,464.38 +17.58,39.63,1004.84,80.43,467.33 +24.19,47.45,1008.26,64.25,446.3 +32.0,73.17,1009.92,42.47,433.72 +12.64,41.79,1016.38,92.65,461.46 +21.86,63.09,1016.64,87.94,442.79 +23.07,69.23,1011.78,76.06,437.08 +15.98,41.48,1017.0,55.73,456.31 +11.48,41.14,1027.67,90.5,464.07 +26.07,69.23,1013.32,54.03,436.94 +13.74,44.21,1023.26,84.2,466.67 +29.23,75.59999999999998,1017.72,52.26,438.92 +9.44,43.99,1020.31,98.06,475.01 +29.51,75.59999999999998,1017.92,50.61,431.18 +13.12,44.21,1019.57,89.29,469.09 +26.23,59.14,1016.98,75.54,437.85 +14.55,42.74,1027.29,66.64,457.77 +20.3,58.46,1015.93,82.13,448.79 +12.57,39.18,1023.09,77.28,471.87 +9.34,41.49,1020.58,97.59,471.04 +7.93,42.28,1008.43,85.57,484.75 +19.6,48.14,1013.18,68.71,456.57 +21.35,57.76,1017.36,73.09999999999998,452.57 +10.59,38.38,1021.58,68.23,474.94 +27.54,75.59999999999998,1018.26,57.89,440.87 +11.12,44.92,1025.58,93.52,470.82 +18.82,61.27,1019.5,72.23,455.29 +25.11,62.26,1011.12,78.01,434.97 +21.89,58.05,1011.31,85.71,441.76 +12.87,48.04,1012.47,100.13,465.56 +25.54,60.37,1006.49,71.54,436.14 +7.05,40.69,1020.53,89.67,476.75 +9.11,36.66,1026.47,74.79,480.74 +24.77,71.94,1006.77,88.86,432.27 +8.51,40.81,1015.54,83.16,481.02 +17.1,62.1,1020.39,93.63,453.4 +7.11,39.9,1008.82,87.76,484.21 +20.01,56.65,1020.77,74.45999999999998,457.01 +25.27,63.91,1009.82,75.48,440.39 +29.72,54.2,1012.86,38.48,438.84 +27.42,65.74,1013.43,69.42,440.52 +28.44,77.54,1011.73,77.3,433.21 +25.89,48.41,1008.49,68.58,440.92 +31.39,69.59,1008.28,62.86,435.76 +17.1,49.69,1005.53,81.81999999999998,457.32 +15.24,44.45,1020.56,66.13,460.94 +13.9,39.59,1011.84,94.74,465.0 +30.52,70.4,1003.9,64.33,438.29 +21.78,68.28,1001.0,79.3,443.24 +28.07,68.08,1013.13,44.67,437.65 +26.07,71.37,1008.6,79.48,439.25 +18.0,43.7,1015.4,61.28,464.26 +9.93,40.67,1018.08,69.74,485.23 +23.48,65.12,1015.82,60.83,445.66 +12.66,41.2,1015.88,89.12,466.49 +25.95,59.27,1010.9,70.42,444.19 +10.34,41.46,1017.75,89.73,478.03 +18.2,39.63,1005.35,79.05,468.49 +23.64,70.04,1011.09,83.35,435.21 +17.38,43.14,1011.09,61.9,459.02 +27.67,69.59,1009.13,82.15,437.29 +22.18,59.39,1014.82,85.31,440.94 +14.86,37.85,1010.58,86.8,467.71 +25.9,47.45,1007.8,55.96,443.13 +25.88,66.48,1004.24,63.16,434.4 +21.12,47.24,1003.79,70.55,462.41 +20.03,62.26,1012.15,82.54,447.4 +21.86,49.21,1014.61,53.31,452.77 +11.71,40.05,1014.49,86.09,471.49 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/public/train.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8e4f06f47506230c9250aba198646e237e7e5c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/public/val.csv @@ -0,0 +1,957 @@ +AT,V,AP,RH,PE +25.69,57.32,1012.34,44.18,441.43 +17.98,59.15,1012.09,83.03,451.97 +11.52,40.75,1016.23,85.18,477.19 +26.43,66.48,1004.36,55.9,435.59 +24.26,69.51,1013.43,53.23,442.56 +19.68,62.96,1020.41,82.26,453.58 +10.28,41.46,1018.44,85.23,479.66 +25.15,62.91,1012.23,48.22,444.19 +23.28,72.23999999999998,1011.3,90.5,434.21 +11.6,40.27,1008.55,72.12,473.89 +22.75,58.79,1011.44,84.47,445.67 +6.77,39.81,1017.01,87.68,488.27 +19.48,58.66,1013.32,73.16,454.4 +23.93,65.59,1011.09,87.26,444.9 +17.77,44.6,1016.97,54.25,460.13 +33.58,77.54,1010.19,53.49,433.75 +7.49,39.81,1019.03,87.29,483.59 +6.33,42.07,1004.25,77.09999999999998,484.57 +12.43,41.62,1011.87,80.56999999999998,460.61 +25.34,64.27,1013.38,66.02,443.94 +17.17,63.09,1020.54,95.98,446.75 +27.75,69.89,1015.41,73.01,430.33 +29.62,73.18,1012.21,61.6,427.22 +24.35,70.04,1010.92,73.88,438.4 +27.39,69.14,1008.82,78.34999999999998,435.22 +31.18,70.36,1006.38,56.74,438.46 +26.56,49.02,1007.65,70.78,438.82 +24.24,71.58,1010.15,91.14,437.75 +11.82,41.26,1020.74,91.14,466.95 +14.38,40.1,1015.51,81.23,467.28 +26.65,74.16,1008.27,94.54,431.47 +26.16,67.9,1005.81,61.02,444.06 +5.52,39.33,1009.74,95.25,492.39 +31.24,68.3,1015.89,42.84,435.2 +26.22,67.45,1013.7,44.04,440.17 +21.67,69.71,1010.46,96.83,440.16 +13.4,40.89,1010.67,91.66,472.36 +13.78,43.22,1011.31,69.7,463.71 +9.88,39.66,1017.81,76.05,480.05 +10.34,41.74,1020.07,79.17,480.84 +26.86,71.32,1007.38,81.14,430.44 +12.95,41.38,1021.97,53.83,474.46 +26.94,65.61,1014.31,49.73,443.9 +21.81,43.77,1011.97,64.72,453.13 +18.9,56.03,1020.77,71.83,457.66 +14.87,41.23,997.39,82.06,465.01 +20.46,59.21,1018.42,85.89,445.22 +24.3,69.94,1007.02,62.14,438.92 +24.58,71.94,1006.85,89.02,433.99 +9.88,40.0,1021.4,92.06,481.58 +29.85,71.58,1010.04,58.66,432.26 +27.5,65.59,1011.23,65.37,441.27 +6.14,40.62,1015.71,86.51,481.66 +20.76,51.19,1009.0,87.23,445.0 +25.55,58.95,1017.12,51.84,442.3 +10.24,41.17,1019.73,82.04,479.78 +14.45,43.71,1025.26,84.23,463.6 +30.76,59.57,1010.66,61.76,439.32 +5.72,40.81,1025.78,92.46,487.8 +30.24,68.24,1009.68,64.67,426.25 +34.61,73.03,1013.61,36.91,438.56 +24.14,62.66,1007.33,73.27,439.93 +26.76,70.98,1007.64,90.51,437.83 +18.47,62.1,1019.86,82.57,452.51 +29.51,75.59999999999998,1017.92,50.61,431.18 +29.05,71.85,1008.6,78.69,428.39 +21.89,45.38,1014.42,68.95,459.45 +24.67,63.56,1013.75,67.56,446.3 +30.67,71.29,1008.36,52.08,430.28 +25.21,49.82,1016.44,63.14,450.75 +9.76,41.01,1019.66,97.59,467.6 +18.31,62.1,1020.38,79.02,455.24 +33.11,77.54,1010.36,50.99,431.77 +26.18,69.14,1006.54,85.95,436.0 +8.72,40.02,1031.32,78.09,477.86 +17.06,58.96,1013.83,73.95,461.15 +8.01,40.62,1015.62,86.43,476.22 +14.35,35.71,1016.1,60.86,468.9 +29.74,70.32,1008.1,52.72,432.69 +23.0,49.5,1014.15,66.68,454.44 +17.09,42.42,1009.03,72.01,464.11 +14.0,40.8,1026.17,54.82,474.87 +25.02,60.29,1017.49,54.75,445.61 +13.86,41.58,1020.69,70.74,461.56 +27.58,78.05,1010.83,94.98,431.95 +26.41,60.93,1007.16,66.02,436.71 +11.02,41.44,1015.28,83.53,476.68 +25.48,58.95,1017.02,51.16,440.42 +15.47,48.98,1016.42,89.85,457.55 +21.48,47.43,1006.88,63.54,449.2 +18.86,51.43,1010.27,86.0,446.91 +20.94,44.58,1016.98,59.65,463.69 +15.02,41.48,1015.19,58.69,456.04 +28.71,70.32,1011.78,76.53,435.95 +14.28,42.77,1020.06,81.77,466.75 +26.24,77.95,1014.19,85.21,438.01 +24.31,63.86,1019.47,58.54,442.69 +8.51,40.78,1023.51,89.84,471.11 +16.07,65.46,1013.88,87.11,450.54 +8.14,39.96,1023.41,88.86,477.05 +18.43,44.63,1019.76,39.99,458.75 +34.2,68.14,1002.7,56.09,427.05 +17.66,62.1,1019.49,86.3,452.03 +23.77,51.43,1006.67,84.09,441.54 +16.59,39.54,1007.97,70.58,464.19 +15.01,43.56,1014.65,61.82,465.84 +29.09,70.02,1010.13,48.06,443.27 +20.1,59.87,1018.97,87.23,444.71 +9.0,39.18,1024.38,84.91,483.26 +16.85,50.9,1013.26,83.94,460.68 +28.44,69.4,1003.98,73.51,433.44 +9.51,40.81,1015.69,82.52,475.29 +25.99,49.82,1015.95,58.56,452.09 +6.86,41.17,1020.12,79.14,490.23 +8.57,39.69,1000.91,99.9,474.29 +23.3,48.78,1018.17,75.36,441.08 +32.95,67.9,1005.88,45.15,425.89 +24.41,73.67,1007.39,86.92,435.56 +17.51,39.54,1010.22,71.53,462.12 +31.68,73.68,1014.85,64.0,431.11 +9.0,41.54,1018.83,79.61,484.08 +18.4,43.96,1012.4,77.81,464.63 +13.72,49.83,1006.88,89.49,463.65 +7.16,38.56,1019.17,70.1,486.12 +14.33,43.41,1015.43,55.4,462.94 +13.53,42.86,1014.0,90.63,471.73 +13.11,41.58,1020.43,74.31999999999998,460.44 +23.98,50.32,1008.41,67.75,443.45 +31.08,59.57,1010.76,60.49,442.88 +33.62,77.17,1009.38,63.71,431.03 +11.93,38.78,1013.15,96.08,474.57 +21.97,68.12,1012.53,75.12,443.39 +23.83,49.21,1012.93,46.79,446.23 +4.96,45.87,1007.32,98.78,481.88 +31.3,70.79,1004.3,54.37,428.75 +17.75,49.25,1020.86,63.67,454.41 +29.89,71.29,1009.0,55.72,431.45 +12.11,41.17,1019.46,62.59,475.53 +23.85,74.22,1009.99,82.72,441.66 +12.16,40.81,1025.79,70.97,476.63 +23.71,60.23,1009.76,90.67,439.66 +22.49,58.71,1009.75,76.43,443.33 +18.9,57.5,1016.21,93.9,451.42 +27.86,63.07,1011.11,56.81,440.48 +26.04,71.14,1011.66,68.95,433.78 +19.51,44.05,1008.52,78.38,451.7 +10.92,40.92,1021.84,83.03,467.05 +8.51,42.32,1015.08,84.89,476.6 +19.68,68.28,1002.62,71.57,452.47 +27.75,70.4,1006.65,90.21,436.53 +21.59,66.54,1004.88,90.54,441.71 +13.93,42.86,1032.37,71.11,468.88 +16.55,41.66,1011.45,55.53,465.14 +25.53,71.85,1009.19,74.7,431.26 +20.67,57.5,1014.42,81.89,453.29 +25.21,69.48,1010.99,75.27,436.02 +9.29,39.04,1022.72,74.29,482.55 +33.92,77.95,1010.15,58.89,433.01 +25.63,71.58,1010.14,87.57,433.76 +27.21,66.49,1013.57,40.11,439.04 +10.42,41.26,1008.48,96.76,472.54 +25.02,59.44,1012.49,73.65,444.08 +24.2,59.43,1009.69,62.3,440.66 +15.82,44.88,1018.59,78.88,461.9 +11.46,38.91,1012.34,77.37,477.5 +13.17,36.71,1012.82,72.76,474.93 +23.47,65.61,1014.57,69.83,447.16 +10.77,41.46,1021.42,87.18,479.22 +28.47,69.23,1013.18,40.73,434.12 +30.03,70.02,1010.07,64.2,436.88 +13.89,35.71,1016.4,65.49,468.54 +13.26,41.78,1009.77,61.69,467.78 +12.31,37.73,1023.3,63.01,472.08 +19.61,45.01,1014.84,64.42,461.97 +18.58,44.6,1016.61,48.15,459.06 +23.18,51.43,1011.56,81.83,449.94 +28.33,68.14,1004.63,71.21,431.27 +14.82,40.0,1016.32,66.3,458.46 +21.42,56.89,1014.39,84.05,444.86 +26.62,76.2,1006.06,69.13,437.81 +28.17,72.43,1007.37,68.92,428.88 +20.86,63.73,1008.54,96.83,440.42 +25.45,63.76,1009.96,67.78,439.56 +29.15,73.42,1011.43,66.49,432.26 +32.33,67.83,1008.11,57.48,427.84 +13.45,45.87,1008.73,87.06,464.88 +29.91,76.86,998.59,72.41,432.6 +24.93,73.5,1011.28,83.09,437.35 +9.71,42.44,1014.29,94.03,481.03 +16.69,53.82,1015.39,63.62,458.96 +22.36,51.43,1007.47,87.33,442.53 +25.57,44.05,1005.79,65.14,443.84 +7.36,41.01,1025.49,96.48,477.37 +14.22,42.32,1015.54,77.23,465.0 +18.33,49.64,1025.36,62.57,468.14 +31.1,68.51,1012.99,54.3,428.68 +27.62,71.14,1011.6,52.8,434.72 +17.04,56.03,1020.38,68.69,462.48 +17.31,44.71,1017.43,35.4,463.05 +31.61,69.04,1008.11,47.96,439.19 +28.14,51.43,1012.16,52.67,445.33 +8.77,40.46,1019.68,77.84,475.0 +6.15,40.77,1022.42,88.57,482.49 +21.39,52.3,1009.2,79.77,446.87 +12.29,40.71,1019.71,83.09,469.75 +11.6,39.96,1011.65,80.79,473.22 +26.68,68.08,1011.41,67.33,433.04 +7.71,38.06,1021.0,83.47,482.78 +10.07,44.68,1023.44,90.95,477.52 +22.08,45.61,1014.02,75.70999999999998,456.71 +30.74,69.59,1008.69,68.04,437.81 +26.49,67.69,1004.61,78.13,430.62 +14.55,44.84,1023.83,87.6,465.14 +16.55,39.64,1009.07,77.8,465.29 +11.68,40.55,1006.48,96.16,474.8 +10.95,40.22,1010.04,78.95999999999998,477.23 +11.83,38.25,1013.36,85.33,473.31 +23.38,48.78,1019.03,78.69,446.18 +29.77,69.48,1009.8,52.6,432.69 +24.12,58.66,1011.55,58.96,450.69 +6.1,39.33,1010.4,95.34,491.37 +6.93,41.14,1027.18,84.67,479.06 +27.6,69.05,1003.87,42.01,436.08 +11.23,41.17,1019.36,56.85,475.85 +18.84,40.79,1005.18,92.46,459.96 +29.47,71.32,1008.07,67.0,437.14 +23.3,72.98999999999998,1008.54,92.11,437.62 +29.15,69.48,1008.68,55.78,430.54 +21.99,42.48,1011.77,74.04,456.65 +21.77,42.23,1013.03,67.44,462.51 +27.61,49.16,1005.01,35.63,441.18 +26.05,65.38,1009.43,52.1,449.82 +14.8,44.71,1014.67,41.71,470.77 +15.71,39.3,1019.2,62.28,462.84 +16.44,53.16,1014.82,75.29,458.49 +17.03,58.49,1011.91,92.16,460.48 +10.12,41.55,1005.78,62.34,475.46 +10.17,41.17,1018.58,87.72,478.04 +23.37,65.46,1016.25,48.64,447.07 +11.98,44.6,1018.59,86.71,470.02 +24.66,48.78,1018.39,71.79,449.11 +16.61,43.77,1012.25,77.23,457.66 +14.79,47.83,1007.27,92.04,463.22 +29.2,64.84,1009.94,55.37,441.9 +23.26,58.2,1016.72,57.98,446.87 +7.19,39.37,1019.67,70.77,480.4 +20.94,49.02,1008.91,87.32,448.18 +27.89,73.20999999999998,1001.32,85.88,431.59 +23.63,71.29,1008.01,70.07,442.65 +20.91,58.2,1018.1,62.8,446.19 +14.91,46.9,1019.59,98.1,461.73 +23.82,73.67,1007.26,88.16,438.42 +32.09,79.73999999999998,1006.92,61.5,432.85 +16.69,46.18,1011.0,97.85,458.57 +17.16,58.86,1016.4,86.39,453.76 +28.05,70.36,1006.73,64.42,434.06 +30.54,70.17,999.42,64.32,434.62 +21.95,50.66,1013.92,70.94,455.23 +24.49,59.87,1018.4,59.95,444.54 +10.62,39.58,1011.9,87.85,479.91 +11.47,25.36,1008.27,95.4,469.51 +24.84,71.73,1009.84,82.41,436.36 +20.66,51.19,1008.81,88.93,447.14 +26.85,63.56,1013.25,52.84,444.39 +25.56,69.13,1002.46,68.26,434.48 +20.0,39.53,1007.59,62.09,456.28 +8.22,41.82,1032.77,71.63,477.86 +21.84,59.39,1015.77,88.12,442.11 +14.26,44.47,1028.81,72.19,465.77 +14.35,39.39,1012.92,82.41,470.53 +22.89,80.25,1006.38,80.25,446.15 +24.34,73.5,1011.31,84.15,440.29 +23.86,59.21,1013.02,73.59999999999998,441.22 +27.71,69.13,1001.63,51.45,432.54 +22.63,70.47,1008.0,82.27,441.92 +31.23,75.08,1004.93,46.19,439.14 +10.31,40.67,1017.61,69.61,485.25 +7.64,39.85,1012.78,88.09,481.53 +31.44,79.73999999999998,1006.95,56.99,431.69 +4.89,45.87,1007.58,99.35,482.69 +27.91,63.76,1010.27,65.67,435.21 +19.05,53.16,1013.22,82.8,455.76 +28.36,69.88,1007.75,84.17,434.03 +27.69,73.91,1005.23,75.70999999999998,435.08 +22.85,59.15,1014.74,63.92,448.61 +23.0,57.76,1017.64,56.86,451.39 +30.04,68.08,1011.04,51.01,429.52 +17.08,38.58,1015.41,73.42,461.49 +27.13,69.45,1013.9,51.16,434.47 +30.65,65.18,1012.51,42.32,436.79 +23.91,50.23,1017.25,68.57,455.41 +7.64,42.28,1008.49,83.42,483.74 +6.77,40.78,1024.86,96.58,478.24 +18.41,44.9,1008.97,73.81,453.12 +14.29,39.59,1010.93,94.53,463.04 +29.29,71.14,1011.49,49.97,432.58 +29.17,67.45,1014.1,46.85,435.08 +23.55,65.94,1011.76,58.44,443.98 +19.05,59.21,1017.99,89.53,451.0 +18.22,49.25,1020.33,61.87,454.66 +14.8,38.73,1003.18,80.73,467.54 +5.28,45.87,1008.25,97.88,479.91 +13.07,43.13,1016.93,70.02,471.47 +21.37,81.56,1006.57,81.56,434.38 +9.96,41.55,1002.59,65.86,475.91 +13.86,41.78,1010.75,57.9,467.39 +11.33,41.16,1019.05,87.13,468.87 +16.81,42.42,1008.95,74.25,462.19 +29.79,67.69,1006.86,55.93,428.71 +14.44,41.2,1015.96,81.97,469.85 +9.08,40.46,1019.48,77.37,476.81 +17.3,57.76,1016.26,87.74,455.75 +27.06,64.45,1008.72,54.21,443.1 +14.64,39.58,1011.46,71.9,467.8 +23.69,77.54,1009.32,89.7,440.21 +9.05,36.3,1027.44,74.84999999999998,479.43 +24.73,74.22,1010.15,79.83,436.55 +19.94,44.9,1008.52,74.69,459.47 +8.73,39.42,1025.63,69.87,474.44 +26.66,73.56,1006.9,99.27,433.62 +31.81,69.88,1007.94,55.91,432.6 +17.47,58.59,1014.03,97.13,449.41 +22.18,62.39,1007.84,85.74,452.31 +18.25,43.14,1011.51,55.16,462.78 +20.34,69.45,1012.76,91.05,442.73 +27.44,58.9,1003.86,66.74,442.19 +27.75,77.23999999999998,1007.48,78.37,433.57 +19.13,59.21,1018.32,89.66,450.81 +19.84,65.48,1019.54,76.59999999999998,449.85 +21.1,62.66,1011.19,83.49,448.8 +20.15,58.59,1014.13,91.96,443.85 +28.85,58.33,1013.78,41.39,444.0 +19.39,60.1,1010.28,83.31,452.57 +21.88,69.71,1010.28,97.64,444.39 +16.34,47.45,1009.41,92.96,448.59 +13.34,40.8,1026.56,64.85,474.47 +3.92,41.31,999.22,95.26,487.35 +21.97,58.12,1015.29,77.47,449.6 +13.89,44.84,1023.66,92.97,466.74 +13.98,40.71,1022.72,71.83,474.46 +16.55,41.93,1022.71,42.73,466.77 +21.17,52.3,1009.36,81.51,447.5 +24.37,65.61,1014.5,65.67,443.13 +24.42,64.79,1016.12,69.32,449.1 +16.54,42.86,1014.85,78.0,465.26 +8.199999999999998,41.14,1025.24,96.26,474.04 +26.17,58.86,1014.52,51.28,443.69 +14.24,39.58,1011.17,70.45,469.94 +14.1,42.18,1015.05,78.25,463.3 +24.91,52.3,1008.72,68.26,441.15 +32.55,69.89,1013.87,40.09,428.84 +20.7,58.16,1016.73,68.19,453.22 +29.7,57.19,1008.41,55.07,436.29 +17.66,60.08,1017.22,86.96,456.62 +30.03,68.84,1011.41,53.82,439.31 +26.45,54.5,1014.96,65.55,450.76 +12.57,41.79,1014.99,87.8,461.88 +30.82,78.87,1012.06,70.69,432.01 +16.97,44.92,1025.21,74.27,460.21 +14.84,38.91,1013.78,69.27,467.83 +20.99,50.78,1008.55,75.14,449.07 +12.35,44.2,1017.81,82.49,471.65 +19.64,46.33,1013.33,98.99,451.45 +29.14,61.5,1009.64,39.95,437.76 +11.82,41.17,1019.5,55.74,475.61 +23.94,51.95,1008.61,73.42,448.67 +17.4,63.09,1020.84,92.58,453.0 +8.949999999999998,43.13,1017.56,94.85,479.14 +29.12,51.43,1005.93,60.66,437.71 +29.13,47.93,1002.5,49.1,435.61 +30.56,71.25,1000.3,70.55,431.92 +19.07,44.63,1020.23,44.93,456.37 +32.96,69.75,1008.86,40.23,435.56 +19.35,39.72,1002.5,51.24,455.29 +31.92,68.3,1015.58,41.55,430.07 +13.85,48.92,1011.68,79.23999999999998,462.38 +26.69,70.36,1006.82,68.29,435.04 +17.66,44.9,1020.5,71.33,457.11 +16.05,38.28,1014.38,73.89,466.75 +6.24,35.77,1019.24,70.7,483.36 +6.43,39.61,1017.51,83.8,480.58 +15.12,39.16,1006.55,76.98999999999998,463.78 +15.84,49.69,1015.14,90.41,462.6 +18.41,42.44,1012.66,65.93,463.2 +15.54,41.96,1011.78,97.46,467.1 +28.26,69.23,1013.01,42.1,436.31 +12.24,40.96,1023.22,78.73999999999998,475.32 +25.45,75.23,1011.41,73.33,441.65 +5.25,42.85,1013.75,89.67,477.78 +9.82,41.04,1026.72,77.28,473.98 +11.44,41.39,1019.59,79.95,478.52 +12.07,38.25,1012.67,81.66,470.36 +28.51,70.02,1010.58,54.68,441.66 +23.47,60.77,1017.19,75.36,444.46 +20.42,45.01,1012.23,66.5,451.28 +21.13,47.43,1006.97,64.26,448.83 +18.62,65.48,1018.45,73.39,451.94 +15.68,43.7,1015.09,58.96,470.29 +7.46,39.81,1018.62,86.73,484.13 +11.38,52.75,1026.19,72.70999999999998,469.9 +21.11,43.43,1010.1,62.62,447.83 +32.38,77.23999999999998,1007.7,61.15,430.96 +19.74,45.38,1015.11,80.67,459.39 +19.18,50.12,1005.99,100.09,444.56 +10.19,37.14,1012.74,73.48,475.01 +20.98,43.77,1010.67,62.73,449.88 +13.47,44.88,1017.56,93.23,476.67 +27.23,44.05,1005.69,58.91,440.2 +7.3,43.65,1019.33,67.62,482.96 +18.26,60.95,1016.94,78.91,457.03 +9.55,40.67,1018.56,70.72,486.34 +26.1,63.56,1013.12,61.0,442.75 +25.88,63.73,1009.48,77.17,438.42 +20.29,63.09,1019.03,76.06999999999998,448.22 +22.58,59.14,1017.2,80.91,439.78 +27.57,60.07,1016.52,54.75,440.12 +30.48,70.04,1010.73,53.7,429.85 +9.27,38.56,1017.69,62.49,475.42 +15.01,42.77,1018.21,73.22,462.6 +31.01,73.5,1010.92,48.61,432.41 +19.62,68.63,1012.26,68.05,453.84 +24.26,47.93,1003.87,70.44,439.16 +14.87,41.76,1022.26,78.20999999999998,464.84 +31.0,71.77,1006.29,48.56,431.07 +28.84,74.67,1016.52,67.43,428.98 +18.48,50.16,1011.45,99.92,452.06 +30.49,64.44,1013.43,51.73,438.09 +27.49,71.94,1008.25,68.29,428.27 +21.76,47.93,1005.34,86.28,444.77 +13.78,44.47,1027.94,71.09,467.22 +25.28,66.25,1009.77,84.55,439.77 +27.17,61.02,1011.38,65.32,437.06 +20.51,42.23,1013.25,71.83,461.78 +15.43,39.16,1016.44,79.8,470.74 +12.7,39.72,1017.89,62.97,467.77 +26.86,72.58,1009.22,88.39,428.69 +26.06,58.59,1012.41,55.22,451.47 +10.56,40.22,1005.08,89.71,478.02 +25.33,73.20999999999998,1002.19,97.24,433.43 +3.0,39.64,1011.0,80.14,485.2 +30.91,69.75,1010.23,59.36,435.7 +27.34,71.64,1008.12,72.22,438.76 +15.34,43.5,1021.18,79.44,459.77 +18.99,59.27,1012.15,89.39,453.4 +12.14,40.27,1007.57,73.22,472.84 +30.75,71.22,1006.47,48.06,437.96 +16.05,41.96,1011.82,96.05,463.72 +14.83,53.82,1016.57,63.47,464.0 +25.12,66.56,1009.22,65.62,436.56 +13.72,41.62,1011.14,75.79,455.52 +20.94,58.16,1016.88,65.43,455.16 +24.81,67.17,1007.71,84.37,442.75 +10.2,41.46,1019.12,83.26,480.11 +26.19,49.3,1003.69,65.88,440.13 +24.7,58.82,1009.4,75.91,442.98 +31.82,73.68,1014.8,40.58,433.32 +10.29,40.56,1017.28,69.13,481.7 +15.94,44.85,1014.29,67.57,462.54 +21.28,70.32,1011.06,90.12,439.0 +12.45,40.1,1015.4,82.61,473.63 +25.15,57.32,1012.41,41.84,440.1 +28.52,57.82,1004.81,57.82,435.4 +22.47,48.6,1002.33,63.23,445.98 +15.21,43.5,1021.6,82.06,464.08 +27.88,63.87,1017.79,40.0,443.24 +32.14,68.31,1010.48,42.15,436.15 +28.28,69.48,1008.56,61.3,428.75 +12.12,38.28,1013.65,90.19,471.19 +13.44,41.14,1026.41,77.26,461.44 +15.12,41.04,1025.95,69.67,460.58 +9.73,40.22,1011.48,87.88,481.42 +14.05,39.59,1011.2,94.54,464.63 +28.43,63.31,1013.44,49.99,432.62 +12.38,41.62,1012.37,84.15,461.07 +7.09,39.37,1020.07,73.26,487.0 +11.69,35.76,1019.02,55.6,471.72 +25.76,63.94,1018.49,42.14,445.78 +14.91,43.34,1015.15,81.56,461.27 +21.91,70.32,1009.17,90.57,439.29 +23.56,73.18,1012.18,87.98,437.92 +19.98,49.15,1021.56,63.89,457.54 +24.33,49.16,1003.46,61.04,441.2 +9.22,40.92,1021.83,85.43,474.51 +32.16,71.32,1005.5,60.23,434.01 +27.29,64.45,1013.46,45.35,446.94 +28.14,61.47,1009.69,64.66,435.35 +26.71,70.4,1007.59,82.63,432.64 +19.83,46.33,1013.27,96.4,451.22 +13.49,43.41,1015.75,57.86,461.06 +14.13,53.82,1016.72,64.85,467.08 +20.6,66.86,1013.08,62.48,451.44 +22.01,60.84,1017.55,83.82,441.9 +5.89,35.77,1019.78,79.58,479.86 +26.02,70.79,1004.21,79.12,428.72 +14.08,41.93,1023.02,59.41,475.15 +24.96,77.54,1008.25,80.59999999999998,433.4 +32.21,71.85,1008.25,58.09,429.15 +26.59,69.13,1009.27,73.95999999999998,430.11 +8.529999999999998,43.14,1012.25,78.88,480.08 +25.94,66.49,1012.83,61.81,433.38 +7.76,39.61,1021.63,80.67,488.32 +27.21,67.45,1013.83,43.26,436.47 +19.08,59.15,1013.1,81.81999999999998,451.33 +30.97,67.9,1005.98,55.6,428.26 +7.53,41.74,1022.45,90.85,487.25 +32.19,69.13,1000.45,48.22,425.21 +27.32,66.54,1004.95,72.58,431.33 +14.92,46.18,1014.21,98.82,465.63 +24.62,72.43,1007.97,84.36,436.89 +14.47,44.66,1016.33,93.52,464.41 +26.35,59.44,1012.16,63.73,443.73 +26.38,65.12,1016.1,47.57,441.07 +24.44,52.84,1006.39,49.05,440.2 +32.63,74.98999999999998,1002.42,40.07,432.79 +29.49,69.71,1009.34,56.35,440.99 +30.58,70.04,1010.4,48.16,431.59 +13.24,39.16,1016.52,86.66,474.48 +12.91,41.66,1013.37,71.52,469.71 +25.1,43.77,1010.9,49.68,444.99 +16.0,43.02,1012.37,39.2,466.01 +23.62,61.87,1010.07,48.77,447.93 +25.54,70.47,1009.28,73.5,436.16 +15.89,41.7,1018.93,82.68,463.33 +23.79,50.16,1005.32,75.81999999999998,435.49 +17.77,56.53,1019.57,79.89,457.94 +21.54,58.41,1013.99,86.34,450.69 +24.49,70.79,1005.51,88.65,430.54 +13.52,39.39,1012.91,84.03,474.82 +13.51,44.9,1019.29,77.23999999999998,464.86 +28.9,68.84,1011.64,64.44,437.06 +26.28,75.23,1011.44,68.35,435.28 +28.81,64.96,1000.46,68.05,427.91 +17.49,63.94,1020.02,82.6,452.71 +20.61,48.78,1020.8,85.05,449.38 +27.84,71.32,1007.72,79.25,431.37 +22.7,60.84,1019.15,71.48,438.59 +7.21,42.03,1017.81,90.12,482.26 +14.68,41.23,998.43,83.71,469.25 +21.93,60.84,1018.96,76.8,440.76 +9.23,37.36,1015.01,67.38,481.08 +27.51,49.3,1003.74,61.27,437.09 +20.76,70.72,1009.73,89.04,448.85 +30.65,71.06,1008.61,76.76,432.08 +10.31,42.49,1009.43,78.36,479.64 +27.27,72.58,1009.25,89.31,428.93 +28.61,68.12,1012.23,46.45,435.28 +19.65,44.89,1009.76,75.36,451.35 +30.24,69.88,1007.9,61.46,436.37 +31.26,68.94,1005.94,39.49,438.03 +25.16,74.33,1014.55,76.7,436.15 +16.73,58.59,1015.02,89.61,455.3 +30.57,58.9,1004.54,54.37,438.49 +17.18,63.09,1020.67,93.58,451.37 +27.35,61.47,1008.43,70.65,443.67 +19.11,50.16,1010.88,100.09,450.38 +26.48,68.14,1004.83,55.96,432.19 +13.84,42.18,1015.74,79.76,468.66 +29.1,76.2,1006.28,60.22,435.97 +13.91,40.24,1017.03,85.93,466.24 +13.73,41.78,1011.75,49.65,464.94 +25.4,65.34,1013.11,53.93,445.82 +14.73,39.52,1017.01,74.20999999999998,470.45 +27.58,66.48,1004.82,51.23,435.34 +24.03,62.44,1010.96,79.88,430.66 +19.78,63.09,1019.01,78.39,448.34 +12.57,41.66,1009.11,70.74,475.61 +13.95,41.49,1019.95,86.46,465.24 +13.77,47.83,1007.41,90.66,466.07 +21.52,50.66,1013.56,74.33,455.71 +27.98,67.9,1006.3,73.53,436.08 +14.57,44.45,1021.42,66.23,462.48 +25.46,70.32,1010.65,64.7,433.08 +8.58,38.38,1021.03,84.37,482.26 +28.18,66.56,1005.69,65.67,426.79 +32.07,70.94,1006.91,49.9,432.33 +17.94,37.2,1012.64,68.11,467.65 +7.34,40.72,1023.01,80.08,483.92 +10.8,39.28,1010.7,82.62,478.8 +24.34,70.79,1006.82,85.66,433.83 +26.45,64.27,1013.23,60.92,444.9 +18.38,62.1,1020.12,77.27,452.91 +32.53,77.95,1014.76,58.1,434.44 +7.99,36.08,1020.08,83.2,481.35 +21.16,50.66,1014.13,72.77,455.86 +15.71,40.12,1012.81,97.46,462.6 +20.58,39.53,1005.68,62.09,460.1 +32.0,58.9,1003.48,51.38,437.81 +30.29,74.16,1008.77,75.23,431.39 +31.38,68.27,1006.79,52.79,426.67 +29.67,66.51,1015.6,34.1,434.8 +19.9,56.53,1020.52,78.05,456.48 +23.6,57.17,1009.84,74.27,446.05 +4.59,39.33,1010.85,71.78,494.9 +12.76,43.7,1015.13,65.34,475.73 +6.53,42.85,1012.65,91.6,480.98 +14.46,53.82,1016.55,68.11,462.6 +23.75,61.5,1008.16,69.14,442.35 +22.28,59.92,1009.36,95.38,437.85 +24.4,60.37,1006.77,82.43,440.64 +29.82,69.75,1010.09,65.02,442.6 +20.29,65.27,1013.17,74.94,445.52 +27.2,72.43,1006.75,80.67,430.32 +5.7,40.62,1016.07,84.94,482.82 +24.54,65.46,1014.27,40.77,446.26 +16.57,63.31,1016.19,81.02,454.78 +29.89,65.74,1012.95,51.36,438.24 +24.37,70.02,1010.97,71.97,443.53 +24.16,65.06,1013.88,58.96,442.32 +14.9,52.05,1015.11,77.33,464.82 +26.88,74.78,1010.42,64.81,440.84 +27.02,72.58,1009.21,89.13,437.8 +10.13,38.16,1013.57,79.04,474.92 +15.27,38.73,1002.83,77.77,465.99 +14.03,44.88,1019.6,57.63,465.51 +8.51,41.26,1023.17,87.79,477.51 +8.68,41.82,1032.83,73.62,478.61 +12.85,41.14,1027.04,86.29,464.86 +25.27,67.07,1006.34,66.35,445.81 +28.62,69.71,1009.67,62.12,437.52 +23.87,60.27,1018.94,77.16,439.86 +26.54,69.48,1010.7,66.09,432.56 +12.83,44.88,1017.86,87.88,474.26 +15.62,41.76,1023.82,66.17,459.72 +28.28,61.86,1012.07,64.49,439.65 +20.06,62.1,1020.21,72.20999999999998,451.81 +13.86,35.71,1015.21,63.16,471.63 +28.19,68.08,1013.41,43.93,436.43 +18.02,53.16,1013.41,82.84,458.01 +14.8,43.99,1022.89,85.25,461.97 +9.26,41.66,1016.87,73.31999999999998,483.51 +20.65,66.51,1014.94,71.83,456.49 +13.03,39.52,1016.68,83.09,473.99 +13.41,49.83,1008.83,87.14,466.38 +3.73,39.42,1024.4,82.42,488.58 +26.95,70.79,1004.09,75.34999999999998,430.07 +11.7,43.41,1016.08,62.27,467.51 +13.09,54.3,1017.61,82.38,471.0 +5.21,41.31,1003.51,91.23,486.46 +12.65,44.0,1023.03,88.73,471.46 +16.01,49.64,1026.35,77.75,457.8 +15.34,41.23,996.87,86.56,465.16 +17.94,62.1,1019.81,82.65,453.55 +33.01,68.67,1005.2,51.41,433.94 +22.91,66.44,1011.23,63.43,444.48 +31.35,67.32,1013.74,38.56,439.81 +10.63,40.67,1017.13,66.12,483.27 +4.27,39.64,1010.99,84.85,487.19 +21.14,58.05,1012.98,87.27,449.74 +25.36,60.07,1015.06,66.11,439.73 +11.44,44.2,1018.14,84.9,476.12 +13.35,39.58,1012.41,83.45,465.85 +23.88,54.2,1012.81,64.52,444.97 +15.65,43.5,1021.39,78.58,463.5 +6.72,38.91,1016.89,90.47,485.89 +15.74,43.71,1024.7,78.38,462.66 +19.84,56.89,1013.23,78.31999999999998,447.92 +11.44,43.13,1014.88,63.88,477.57 +26.55,69.45,1013.88,55.39,435.64 +19.96,39.53,1006.16,62.77,460.49 +10.8,40.69,1014.3,87.44,478.19 +8.36,38.91,1016.27,88.82,482.09 +8.55,35.77,1016.15,73.31999999999998,481.44 +31.84,71.37,1003.51,46.22,432.04 +5.94,39.9,1007.84,86.33,485.86 +14.35,40.71,1023.09,69.5,473.56 +31.91,67.83,1008.76,53.22,425.28 +25.35,74.33,1015.29,77.84,435.66 +9.32,36.3,1027.67,73.25,479.52 +16.34,42.28,1008.08,52.8,463.29 +29.95,73.42,1011.44,66.32,432.81 +7.09,43.65,1019.6,72.09999999999998,483.42 +25.63,72.98999999999998,1008.2,86.8,436.64 +28.54,71.94,1007.4,65.99,430.91 +25.57,65.46,1014.81,38.58,444.46 +12.99,44.0,1025.22,90.27,470.93 +14.77,48.06,1010.92,69.81,461.52 +31.09,59.57,1010.67,60.5,440.08 +14.04,48.79,1017.62,75.25,464.09 +29.12,66.56,1006.9,49.79,429.94 +32.13,74.34,1003.34,56.39,436.3 +31.75,74.98999999999998,1003.25,53.33,430.82 +24.82,66.54,1010.0,60.36,440.88 +19.76,48.92,1010.48,46.57,456.69 +31.26,76.09,1006.66,63.91,430.36 +9.43,41.4,1028.81,85.83,475.8 +27.78,60.07,1014.66,53.74,439.43 +23.99,45.87,1007.63,52.62,443.66 +18.32,66.51,1015.18,81.5,459.89 +28.86,49.3,1003.93,52.85,435.75 +27.35,69.48,1008.51,65.81,432.31 +23.32,66.48,1003.92,72.25,436.26 +18.99,62.1,1020.0,76.76,453.09 +10.82,42.02,996.03,99.34,475.46 +14.81,43.69,1017.19,71.9,470.71 +22.77,59.92,1009.67,94.09,437.9 +18.61,47.83,1006.43,78.89,454.21 +26.5,66.05,1017.03,61.34,440.15 +16.11,44.92,1025.37,79.84999999999998,460.99 +30.51,70.94,1007.64,59.42,430.91 +13.48,41.44,1015.64,71.46,471.39 +16.37,43.5,1021.26,72.4,459.18 +21.19,50.16,1005.81,84.27,450.33 +26.38,59.92,1009.99,71.91,444.85 +24.45,65.12,1015.92,57.19,445.01 +28.6,71.22,1003.15,58.33,443.01 +29.39,69.89,1013.92,47.36,434.27 +25.91,68.08,1010.92,74.25,432.07 +19.94,65.46,1017.7,68.94,448.67 +13.95,71.14,1019.76,75.51,461.18 +33.7,68.27,1007.16,50.41,427.4 +6.58,40.07,1014.22,55.44,493.72 +9.79,39.69,1002.36,93.86,471.61 +18.41,65.94,1010.23,84.71,452.66 +22.89,48.98,1014.55,48.21,448.56 +25.68,46.21,1011.01,57.53,442.98 +32.77,72.86,1003.6,52.87,433.84 +13.18,43.8,1023.18,61.21,467.0 +28.99,54.2,1012.79,41.9,442.6 +26.34,59.21,1013.37,58.98,439.22 +21.11,58.66,1011.7,68.71,457.89 +24.28,71.98,1006.34,90.45,432.47 +28.46,73.67,1005.67,71.21,429.15 +27.16,59.87,1011.78,58.84,446.38 +18.36,53.16,1013.31,83.18,458.47 +20.35,50.9,1012.6,72.43,453.5 +8.57,40.69,1020.87,84.15,485.18 +8.97,44.03,1013.16,80.39,474.61 +20.95,70.72,1009.96,87.73,445.66 +23.49,47.45,1008.46,66.18,446.72 +7.26,41.22,1014.86,97.82,488.75 +27.36,58.33,1013.86,56.7,439.14 +27.98,67.17,1007.32,75.29,440.68 +25.15,68.51,1013.25,72.31,440.96 +26.82,60.96,1012.25,57.41,449.81 +4.24,39.9,1009.28,96.74,491.25 +24.49,65.06,1014.07,63.32,441.4 +19.65,42.23,1013.04,75.9,461.16 +9.57,39.82,1013.12,89.15,468.02 +31.46,66.54,1002.86,53.75,427.76 +7.2,40.35,1011.83,95.59,484.9 +18.19,66.54,1012.9,86.05,449.22 +23.21,73.42,1010.34,88.29,439.66 +29.31,68.67,1006.18,63.38,435.57 +23.54,41.1,1002.05,38.05,448.56 +24.22,62.08,1022.53,60.79,449.11 +21.85,59.8,1016.89,75.28,454.26 +29.79,62.66,1008.5,48.51,440.27 +7.06,41.74,1021.95,90.38,448.97 +15.55,39.63,1004.98,89.82,466.83 +11.09,40.43,1025.47,74.97,490.96 +23.85,72.43,1008.01,88.34,439.02 +24.87,68.61,1011.19,55.69,450.54 +20.67,63.56,1013.27,79.39,450.7 +15.33,42.28,1008.19,66.15,465.2 +20.73,41.1,1001.86,47.51,456.44 +12.53,44.03,1007.21,84.2,470.04 +13.43,50.59,1020.38,86.3,469.33 +23.61,63.94,1012.9,87.06,441.57 +24.07,71.97,1008.83,94.87,441.84 +28.28,61.47,1009.44,60.89,443.12 +9.75,43.69,1016.81,82.42,481.34 +11.96,43.41,1017.42,79.44,469.34 +14.02,40.75,1016.05,70.65,470.48 +8.25,37.49,1009.02,81.09,480.38 +22.8,49.16,1006.4,77.05,439.65 +24.13,45.61,1012.63,71.36,453.19 +15.96,41.66,1011.93,55.47,466.39 +17.48,49.39,1021.51,84.53,460.01 +4.95,42.07,1004.87,80.88,485.67 +12.02,43.69,1016.12,74.06999999999998,477.74 +14.16,39.28,1015.63,77.29,471.27 +21.17,58.16,1017.16,68.11,452.02 +4.97,40.64,1020.91,94.28,485.43 +27.28,78.92,1011.05,75.48,434.78 +10.42,44.85,1014.18,88.36,479.03 +12.75,44.2,1017.59,81.22,471.03 +13.1,40.03,1017.79,84.48,470.75 +29.09,72.43,1006.86,65.47,427.3 +27.64,75.59999999999998,1017.35,54.78,441.04 +7.79,41.01,1024.0,97.2,477.0 +16.52,43.7,1015.08,58.36,466.73 +17.79,40.12,1012.74,79.03,459.13 +15.04,38.01,1022.46,78.29,468.12 +15.92,39.16,1006.59,71.32,460.45 +20.4,57.85,1011.14,92.47,450.07 +20.25,63.91,1009.27,97.97,448.37 +14.24,39.52,1018.22,77.19,468.51 +28.11,70.98,1007.76,85.6,431.83 +21.3,66.86,1013.04,55.43,450.56 +16.56,42.99,1007.48,74.45,464.62 +8.93,40.46,1019.03,71.0,472.77 +17.48,44.2,1018.89,61.51,457.15 +10.38,41.01,1020.8,94.26,465.9 +21.83,57.85,1012.49,75.16,448.21 +20.58,54.5,1015.04,89.83,467.76 +14.95,39.31,1009.15,75.3,462.72 +14.01,38.91,1015.86,69.24,470.1 +7.0,38.08,1020.27,77.67,482.38 +23.82,48.92,1010.48,44.45,446.85 +12.65,44.34,1019.4,71.45,468.8 +16.37,53.16,1014.89,74.84,459.52 +18.62,59.15,1012.85,82.54,450.81 +22.96,68.61,1011.15,76.62,447.18 +25.72,74.67,1016.64,75.93,434.83 +16.0,37.87,1020.24,78.41,461.33 +19.09,65.94,1012.53,81.06,446.34 +24.49,65.61,1014.71,63.47,447.26 +12.79,44.03,1007.46,95.93,464.35 +8.699999999999998,36.24,1013.34,89.5,478.69 +19.79,51.19,1008.77,94.72,447.96 +30.55,68.24,1009.43,63.84,426.8 +10.1,44.03,1008.11,90.29,471.59 +26.73,49.02,1007.75,67.73,438.17 +8.99,41.26,1020.52,91.96,476.09 +15.24,39.39,1013.01,74.23999999999998,469.79 +30.36,71.8,1010.9,63.27,437.4 +10.98,41.54,1019.94,69.83,479.08 +29.08,70.83,1007.98,51.95,430.91 +25.23,61.86,1013.0,76.18,441.48 +27.76,72.58,1009.04,84.96,429.25 +24.37,68.14,1005.22,59.27,440.22 +11.22,40.22,1011.01,81.67,476.7 +23.43,51.43,1011.31,73.55,444.09 +22.81,58.96,1013.5,55.66,452.89 +15.71,44.06,1018.34,71.69,465.05 +10.34,37.5,1010.35,95.56,474.08 +11.01,40.05,1015.46,89.22,474.2 +28.59,69.84,1003.79,67.31,427.53 +29.86,59.57,1011.24,64.02,439.44 +3.95,38.44,1016.75,79.65,492.46 +16.98,63.09,1020.44,95.18,450.55 +28.03,60.23,1010.23,66.04,438.88 +24.43,58.05,1011.88,71.39,445.68 +13.97,45.01,1017.44,89.15,461.96 +9.11,40.02,1031.1,83.02,479.03 +22.08,55.5,1018.42,58.46,455.79 +31.61,75.08,1004.83,42.29,436.67 +8.68,43.14,1011.94,79.06,480.73 +29.11,74.9,1003.31,74.01,432.43 +12.71,43.8,1023.15,71.16,466.2 +31.24,74.22,1007.74,48.77,430.44 +9.18,42.18,1017.4,87.3,475.57 +4.15,39.9,1007.62,95.69,489.8 +14.93,43.02,1012.11,45.56,468.19 +12.24,40.66,1017.4,96.22,464.7 +20.87,63.31,1012.27,79.51,446.7 +21.12,62.52,1015.62,78.98,450.93 +19.23,41.67,1012.53,48.86,465.66 +30.74,71.77,1006.24,53.38,434.89 +25.42,73.20999999999998,1001.91,93.78,432.04 +18.97,50.59,1016.01,74.9,459.68 +23.65,66.05,1019.6,78.20999999999998,442.9 +15.26,46.18,1013.68,98.58,463.6 +24.41,58.59,1012.62,64.52,442.64 +20.79,50.59,1017.75,73.34999999999998,456.01 +8.34,40.72,1023.62,83.75,483.14 +31.12,68.14,1003.67,67.36,427.06 +24.92,63.94,1017.7,44.92,441.07 +29.3,70.04,1010.95,61.23,426.25 +16.46,61.27,1020.02,74.54,456.64 +24.44,69.84,1005.34,80.37,430.3 +6.17,39.33,1012.57,93.32,491.54 +18.15,41.67,1012.75,52.69,464.44 +26.38,71.58,1011.02,80.9,434.26 +23.99,67.69,1007.9,78.56999999999998,437.1 +26.51,67.25,1017.85,64.17,435.52 +24.31,66.49,1011.38,54.35,440.79 +29.04,70.72,1009.55,66.58,437.95 +13.26,41.74,1021.89,63.32,473.44 +18.32,65.94,1012.74,86.77,450.5 +4.87,42.85,1012.69,94.72,482.05 +24.98,60.32,1016.39,63.12,446.46 +14.77,44.9,1020.5,84.31,465.23 +28.77,75.23,1010.01,59.0,437.93 +28.5,76.86,999.49,77.47,430.62 +11.62,41.54,1019.94,66.43,477.75 +23.21,74.22,1009.68,88.46,440.46 +30.12,73.18,1012.29,61.32,429.31 +11.63,41.5,1013.6,87.11,477.3 +19.8,58.79,1017.04,87.71,449.66 +30.22,70.32,1011.63,65.97,435.98 +17.55,43.14,1018.86,76.0,461.58 +8.27,37.7,1015.09,73.64,479.16 +31.01,69.13,1000.93,62.96,425.69 +28.64,73.4,1011.48,52.84,441.32 +10.81,45.0,1023.45,85.89,482.63 +25.62,73.17,1011.65,86.45,430.56 +30.28,58.9,1005.03,54.59,439.06 +3.63,38.44,1016.16,87.38,487.87 +9.73,41.01,1021.76,97.71,469.11 +6.72,39.85,1011.84,84.66,489.09 +20.58,49.15,1021.42,56.15,453.87 +27.99,71.58,1010.68,68.99,435.99 +18.36,53.16,1013.14,79.89,457.94 +30.08,73.42,1011.17,63.86,434.95 +25.6,63.9,1013.16,53.19,451.44 +27.41,59.21,1013.3,50.93,438.39 +7.51,43.02,1014.35,86.46,485.38 +13.42,41.74,1020.96,61.8,473.45 +28.18,60.07,1016.34,49.13,441.61 +17.3,43.72,1009.64,77.86,456.55 +24.96,70.47,1007.73,76.48,438.23 +21.04,45.09,1014.19,40.62,450.92 +22.17,65.61,1014.71,70.91,449.91 +26.98,72.58,1008.55,78.5,431.12 +30.13,78.05,1010.99,61.5,434.14 +9.68,41.48,1018.24,71.04,473.31 +21.95,68.08,1012.91,69.36,443.93 +15.09,44.34,1019.46,60.49,468.8 +23.83,58.79,1009.77,78.13,444.34 +13.86,40.66,1017.15,83.82,463.49 +22.79,69.13,1010.87,91.47,438.08 +26.71,77.95,1012.13,77.5,433.47 +28.69,67.25,1017.71,53.83,432.21 +18.27,51.43,1010.38,88.39,460.41 +24.24,68.3,1018.03,81.51,437.12 +11.8,45.09,1013.21,89.68,470.57 +17.19,58.86,1016.74,85.97,451.87 +18.55,61.87,1008.45,65.3,450.73 +15.5,44.92,1024.16,86.44,462.12 +24.22,56.89,1013.81,70.02,440.79 +11.91,43.22,1008.75,76.56999999999998,472.88 +14.48,46.18,1015.83,92.15,462.3 +14.73,58.2,1019.45,82.48,458.56 +11.91,40.69,1014.41,83.71,476.71 +22.48,50.05,1005.55,82.36,442.56 +27.72,69.88,1007.58,72.25,434.02 +15.03,44.45,1020.94,65.57,460.06 +24.18,59.92,1009.88,79.54,438.85 +21.97,58.79,1010.93,86.7,448.8 +15.51,41.76,1022.81,69.55,463.82 +25.89,58.86,1014.16,52.95,445.17 +19.13,42.18,1001.45,98.77,456.04 +26.82,69.05,1004.62,40.0,437.42 +23.04,48.06,1014.16,54.99,459.36 +6.05,42.85,1013.09,91.88,485.02 +30.94,64.44,1014.36,53.76,439.84 +25.32,48.41,1008.47,72.14,443.04 +26.92,68.27,1008.11,61.73,435.17 +23.48,51.43,1007.13,84.83,441.78 +25.66,71.77,1006.76,84.76,429.25 +17.46,53.29,1018.07,91.01,458.06 +26.18,69.84,1005.13,72.89,431.69 +10.07,39.66,1015.37,83.78,479.64 +30.99,69.82,1009.41,50.84,437.46 +31.85,73.91,1003.6,60.22,431.26 +32.2,72.29,1008.61,69.94,432.52 +22.08,41.1,1002.19,46.69,455.04 +16.32,43.56,1014.4,59.77,463.57 +24.94,59.07,1008.89,84.79,440.12 +8.3,36.3,1015.97,60.62,480.58 +18.81,45.01,1015.28,65.91,457.85 +17.61,56.53,1019.5,82.3,457.01 +27.01,43.77,1011.18,46.58,440.64 +28.69,67.25,1017.71,44.6,436.21 +13.66,40.55,1005.46,96.02,467.7 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/tabpfgen/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..7937ea77744738c71fa0d952afb82866a5d4a034 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/tabpfgen/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/tabpfgen/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1eb3c660ba55d26b84b14f5b7d99f52f33bad18b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_183752/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,119 @@ +{ + "dataset_id": "n20", + "model": "tabpfgen", + "target_column": "PE", + "task_type": "regression", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_070318/n20/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/_tabpfgen_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..0a05f2250be0660826523dac09012e6995ac5140 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/_tabpfgen_generate.py @@ -0,0 +1,87 @@ +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/staged/public/train.csv") +target_col = "PE" + +feature_cols = [c for c in df.columns if c != target_col] + +# --- Label-encode categorical / object columns --- +cat_encodings = {} # col -> list of unique values (index = code) +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +# Encode target if categorical +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(7654) + +# Handle NaN +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_regression") +X_syn, y_syn = gen.generate_regression(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +# --- Inverse label-encoding for categorical columns --- +for col, cats in cat_encodings.items(): + # Round to nearest integer index, clamp to valid range + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +# Ensure output row count is strictly aligned with target_n. +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat([syn_df.reset_index(drop=True), extra.reset_index(drop=True)], ignore_index=True) + else: + # Defensive fallback: if generator returns empty, bootstrap from training rows. + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError(f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}") +syn_df.to_csv("/work/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/tabpfgen-n20-7654-20260422_191741.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/tabpfgen-n20-7654-20260422_191741.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/gen_20260422_191741.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/gen_20260422_191741.log new file mode 100644 index 0000000000000000000000000000000000000000..d4624fd5c1cc2640b0bf85b10aca5f78278ce1a4 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/gen_20260422_191741.log @@ -0,0 +1,14 @@ +[TabPFGen] Generating 7654 rows via generate_regression +Step 0/1000 +Step 100/1000 +Step 200/1000 +Step 300/1000 +Step 400/1000 +Step 500/1000 +Step 600/1000 +Step 700/1000 +Step 800/1000 +Step 900/1000 +[TabPFGen] Padding rows: 7650 -> 7654 (deficit=4) +[TabPFGen] Saved 7654 rows -> /work/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/tabpfgen-n20-7654-20260422_191741.csv +[W422 11:19:35.244438430 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..495aea56fe98182b4762782dddf8cfc7ef8cd3fe --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n20", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "exists": true, + "size": 291758, + "sha256": "8768b9641a081ce32375b2739c6d0a6cdf66c1b03268c7db5f71ffd0019c97e2" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "exists": true, + "size": 36657, + "sha256": "c2dae02f854856ba824310ecaca5c73a72a3302753396aa681c82b69d65b174c" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv", + "exists": true, + "size": 36232, + "sha256": "82c48522e82ea4c5e4c407ec9239e82558dcff1df413f3d0c382e77fa041bc88" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_profile.json", + "exists": true, + "size": 2675, + "sha256": "7e7d747ab11beae1e58278dc8d6ae08d7ae6f14fe93f77a4fc1e6e589df21df4" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_contract_v1.json", + "exists": true, + "size": 3047, + "sha256": "20f513ccbc9f09d5286bc8998a5772f42b78b40aa1ed60b079fa73edf9c78eec" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8618a420d9d101a283cfb38feb336ac37687988f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,112 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "columns": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91364f3480d02e634daea210e8cae28ad5402b46 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n20", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "PE", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a9b58409a7d191ede3a1e0f2de4f502516d090c7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/public_gate/staged_input_manifest.json @@ -0,0 +1,117 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/runner.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/runner.log new file mode 100644 index 0000000000000000000000000000000000000000..2de491c09da844e0aa4c5a60962e6c19feaf26fa --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/runner.log @@ -0,0 +1,19 @@ +[Runner] dataset_source=new, resolved=new +[Runner] Auto num_rows = 7654 (same as training data) +[Runner] Generating 7654 rows -> /data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/tabpfgen-n20-7654-20260422_191741.csv +[tabpfgen] 启动 Docker: benchmark:tabpfgen-zjl +[TabPFGen] Generating 7654 rows via generate_regression +Step 0/1000 +Step 100/1000 +Step 200/1000 +Step 300/1000 +Step 400/1000 +Step 500/1000 +Step 600/1000 +Step 700/1000 +Step 800/1000 +Step 900/1000 +[TabPFGen] Padding rows: 7650 -> 7654 (deficit=4) +[TabPFGen] Saved 7654 rows -> /work/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/tabpfgen-n20-7654-20260422_191741.csv +[W422 11:19:35.244438430 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) +[Runner] 完成: {'generate': {'output_csv': '/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/tabpfgen-n20-7654-20260422_191741.csv'}, 'synthetic_csv': PosixPath('/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/tabpfgen-n20-7654-20260422_191741.csv'), 'runtime_result': PosixPath('/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/runtime_result.json')} diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7e656044c3662060fc2cf2e7e049f65f7ae839b6 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "n20", + "model": "tabpfgen", + "run_id": "n20-migrated-20260422_193053", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/tabpfgen-n20-7654-20260422_191741.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/public/staged_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb807ac5b23b2e7dfb39b3a5378cd452e84d56ed --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/public/test.csv @@ -0,0 +1,959 @@ +AT,V,AP,RH,PE +14.72,41.23,997.91,82.69,467.11 +11.94,40.66,1016.61,96.11,467.99 +27.56,66.93,1016.81,55.59,444.1 +9.59,34.69,1027.65,75.31999999999998,478.88 +7.46,41.82,1032.67,74.59,483.11 +15.52,36.99,1006.86,89.7,467.9 +15.47,43.13,1015.11,50.5,466.63 +21.84,45.09,1013.94,46.11,450.88 +19.83,51.43,1007.36,91.64,449.45 +29.3,67.69,1007.17,55.5,430.72 +6.63,39.42,1024.81,72.58,482.02 +22.88,69.45,1014.02,65.13,441.76 +11.97,42.32,1016.95,88.32,467.98 +29.25,67.32,1013.88,38.57,437.94 +14.89,39.58,1012.26,77.58,465.95 +10.39,44.85,1014.22,78.42,478.05 +25.66,77.54,1008.22,78.42,432.82 +16.5,49.39,1018.35,93.42,462.48 +28.55,74.33,1011.77,73.34,426.48 +7.84,40.07,1016.68,47.63,488.7 +27.14,71.32,1007.8,87.99,431.96 +25.18,71.98,1006.71,89.86,432.88 +6.01,35.79,1011.26,90.72,482.79 +14.54,41.17,1015.15,67.78,470.19 +11.8,43.22,1008.57,78.01,469.55 +23.82,44.89,1009.39,74.69,445.45 +32.81,71.32,1007.69,47.29,434.38 +30.63,74.22,1007.47,46.52,430.38 +25.43,70.17,1000.46,87.84,436.43 +30.17,76.86,998.23,73.61,430.3 +26.27,58.33,1013.81,60.43,438.82 +26.02,63.07,1010.94,53.96,446.82 +14.64,39.31,1008.84,79.3,462.72 +19.99,65.94,1012.28,75.42,447.22 +32.9,68.51,1012.95,50.09,430.23 +20.3,44.9,1008.25,64.08,457.6 +22.86,47.43,1009.75,61.54,452.53 +10.82,44.63,1020.64,90.26,473.23 +13.15,42.44,1014.51,99.53,469.34 +27.4,66.48,1004.71,51.5,439.66 +4.96,40.07,1011.8,67.38,494.75 +8.67,36.66,1026.8,84.36,480.38 +25.97,43.21,1011.9,88.73,434.83 +10.23,42.32,1017.53,89.93,473.59 +27.66,59.21,1013.12,51.58,438.57 +27.21,68.12,1012.96,54.69,435.2 +19.72,65.94,1010.53,82.12,446.84 +8.87,41.82,1033.3,74.28,477.97 +15.29,25.88,1009.21,66.0,464.25 +19.48,39.72,1001.75,55.41,457.16 +10.93,39.16,1016.54,90.56,479.83 +20.84,51.19,1008.63,84.11,448.98 +9.01,40.77,1022.37,90.3,470.84 +21.08,63.13,1013.53,98.0,443.51 +14.94,40.0,1017.69,65.43,456.41 +28.37,63.31,1013.18,49.02,437.64 +23.45,45.61,1012.84,73.42,454.92 +12.76,42.32,1015.35,78.18,466.15 +13.86,44.21,1022.6,83.56,468.3 +24.51,51.95,1005.57,63.53,449.73 +5.04,40.64,1021.35,93.63,484.42 +14.24,45.01,1013.54,88.68,461.64 +11.17,39.72,1002.4,81.4,474.64 +11.94,44.2,1017.97,82.93,474.02 +9.28,41.54,1018.33,79.89,482.8 +28.91,58.33,1013.84,39.72,437.53 +16.89,49.21,1015.19,70.39,458.25 +16.34,36.99,1006.99,90.06,466.24 +16.41,47.24,1015.75,88.78,457.94 +19.44,39.53,1006.99,63.18,457.09 +9.37,40.11,1024.94,75.03,471.13 +13.64,44.88,1019.85,56.86,466.66 +16.19,36.99,1007.37,92.4,462.94 +18.75,63.09,1018.19,87.84,450.98 +15.97,45.01,1016.58,83.24,456.91 +19.5,52.72,1025.21,50.21,457.26 +10.49,42.49,1009.81,78.92,478.75 +20.78,62.52,1017.58,73.3,452.3 +7.41,40.81,1026.15,88.96,488.48 +25.38,72.23999999999998,1010.76,89.64,432.3 +4.0,39.9,1009.64,97.16,490.79 +30.61,68.84,1011.18,52.5,439.9 +28.57,75.33,1003.16,76.14,431.58 +15.37,41.96,1011.58,96.76,466.02 +31.56,66.44,1008.91,64.16,430.11 +16.69,46.18,1010.8,96.8,466.03 +22.0,51.3,1012.87,85.79,450.18 +28.31,74.34,998.42,79.23,431.95 +15.7,44.21,1021.26,86.83,462.19 +21.79,58.2,1017.21,66.74,446.94 +25.67,58.59,1013.0,62.34,451.03 +20.59,59.8,1015.27,77.94,453.83 +16.14,44.21,1020.36,80.59,461.03 +25.61,47.43,1008.62,54.51,442.96 +7.61,44.71,1019.41,70.48,485.36 +30.32,64.69,1006.35,51.36,436.72 +29.45,68.27,1007.96,61.63,432.96 +29.28,77.17,1009.4,76.3,433.14 +5.62,41.31,1001.37,89.16,485.6 +24.86,44.05,1005.69,66.65,447.2 +6.17,40.07,1013.7,58.99,495.21 +13.65,41.58,1020.56,72.17,460.8 +3.96,35.47,1016.79,83.81,489.68 +6.49,39.33,1010.85,91.85,489.22 +31.32,71.29,1008.37,50.07,430.46 +8.07,43.69,1017.05,87.34,485.18 +13.35,39.64,1010.1,93.3,471.69 +26.21,56.85,1011.45,41.37,439.55 +5.71,40.77,1022.51,89.58,485.75 +18.98,60.1,1010.09,85.34,453.37 +6.07,38.91,1019.25,83.39,483.56 +26.92,78.92,1011.65,96.22,434.64 +24.44,47.93,1003.13,67.04,440.53 +14.45,52.75,1023.97,63.59,459.85 +26.44,71.64,1004.55,85.53,435.61 +30.7,74.22,1008.12,50.39,432.51 +6.48,36.24,1013.62,92.03,484.65 +30.47,70.83,1010.91,46.94,444.39 +13.78,38.28,1014.8,81.19,467.43 +19.65,62.1,1019.46,77.81999999999998,449.13 +9.51,43.79,1016.02,79.81,481.12 +16.31,52.75,1024.4,55.69,456.58 +13.08,39.82,1012.27,85.21,476.96 +20.72,44.57,1008.96,72.56999999999998,449.76 +9.77,41.44,1017.69,78.26,481.74 +26.12,66.75,1017.86,79.02,433.67 +10.95,43.8,1022.61,63.46,473.2 +11.01,43.69,1016.7,81.48,477.3 +17.36,52.9,1015.42,69.97,458.66 +16.7,46.18,1011.4,95.51,458.05 +11.95,42.07,1018.52,84.73,467.91 +18.3,44.06,1017.95,63.24,456.32 +14.69,35.71,1015.78,57.34,467.39 +30.82,76.2,1007.47,59.3,432.22 +22.36,58.79,1016.69,73.59999999999998,445.76 +23.89,64.27,1013.37,75.22,450.82 +5.75,42.07,1004.24,78.23,485.23 +26.64,69.13,1010.6,79.23,430.41 +23.08,48.41,1008.44,82.35,443.5 +29.76,57.19,1008.59,51.1,436.21 +32.8,68.67,1005.27,44.53,432.28 +24.63,65.38,1010.43,40.68,446.23 +11.02,43.02,1012.32,66.54,478.81 +32.13,69.98,1013.3,55.85,431.84 +23.81,60.08,1017.29,62.66,450.33 +8.09,38.5,1012.99,67.31,484.81 +32.63,69.89,1013.85,41.66,425.72 +13.27,52.75,1025.86,65.12,464.82 +29.3,68.08,1011.23,56.23,434.11 +26.3,77.95,1009.45,78.72,437.95 +28.52,70.02,1010.34,54.21,441.98 +17.86,50.88,1015.59,88.28,457.33 +7.92,41.66,1014.84,76.12,483.38 +3.74,35.19,1018.58,98.84,490.5 +21.33,63.86,1020.33,72.13,445.02 +30.36,74.87,1008.96,61.87,435.31 +14.23,46.18,1017.39,87.29,463.86 +9.55,41.44,1015.07,85.94,481.75 +9.78,41.93,1023.18,75.05,484.03 +30.8,73.17,1010.51,51.93,432.24 +15.48,47.83,1004.88,81.68,463.67 +16.58,46.18,1010.4,96.29,463.51 +20.32,39.72,1001.38,57.21,456.18 +11.83,43.14,1010.06,88.14,471.98 +26.75,56.57,1013.76,57.93,443.92 +14.13,48.92,1011.72,78.06,464.17 +19.91,51.19,1008.0,90.23,449.23 +14.37,40.56,1021.67,68.18,470.19 +17.27,44.9,1007.85,78.8,454.19 +9.59,38.56,1017.52,61.89,481.05 +28.04,70.32,1011.28,78.16,435.42 +18.18,44.63,1020.41,48.64,455.57 +32.27,71.85,1008.06,59.28,429.72 +19.02,44.85,1014.57,43.37,465.42 +13.47,43.34,1012.75,87.04,468.8 +12.25,40.75,1016.02,82.4,475.07 +27.45,64.34,1007.12,65.87,440.0 +29.96,67.83,1008.0,44.05,433.13 +12.55,38.91,1012.58,75.44,474.35 +31.92,75.33,1002.13,65.73,431.32 +21.55,60.27,1017.42,92.59,443.93 +20.14,46.33,1013.24,83.39,453.35 +18.33,44.34,1019.55,51.69,468.8 +8.65,40.56,1023.23,78.84999999999998,485.87 +26.99,62.26,1011.13,71.27,436.89 +14.4,41.26,1021.41,73.11,462.78 +18.35,62.1,1019.97,78.36,455.29 +16.76,43.77,1012.25,77.95,457.0 +11.82,42.86,1014.12,88.28,476.7 +20.78,68.28,1008.75,60.87,450.57 +29.35,54.2,1013.07,42.45,439.47 +22.63,45.61,1014.14,73.06,457.88 +22.83,65.18,1012.24,79.73999999999998,442.43 +6.74,36.08,1020.36,86.98,484.18 +31.54,71.06,1008.4,71.77,431.87 +23.24,45.01,1012.21,45.23,457.01 +32.74,68.31,1010.23,41.29,441.66 +14.18,39.3,1020.1,67.48,464.32 +25.86,59.92,1009.92,73.95,436.06 +14.05,40.69,1015.66,74.39,470.9 +23.78,69.71,1008.79,83.17,443.06 +14.14,39.59,1010.84,96.02,465.23 +11.77,40.71,1024.55,72.48999999999998,477.94 +23.77,64.15,1021.02,55.87,448.43 +9.61,44.03,1008.3,91.36,473.54 +22.42,62.52,1016.83,63.27,451.64 +24.85,68.37,1006.5,68.37,442.66 +17.69,44.34,1019.31,61.12,464.13 +3.21,38.44,1017.11,84.86,492.93 +18.45,42.44,1013.45,63.52,459.79 +11.48,44.6,1018.29,90.76,470.39 +17.37,48.92,1011.91,58.4,455.53 +6.22,39.33,1012.31,93.23,491.77 +12.74,49.83,1007.44,91.47,466.09 +22.56,70.79,1005.85,93.09,435.14 +24.35,58.49,1011.03,70.64,445.6 +16.58,44.68,1021.5,83.38,458.87 +25.47,70.36,1005.79,77.73,437.02 +30.88,69.51,1011.48,46.58,433.14 +6.64,39.04,1018.84,74.94,481.53 +12.65,41.93,1023.07,65.05,479.53 +8.91,40.11,1022.87,78.39,475.43 +5.57,42.85,1013.55,92.14,488.85 +16.09,44.2,1019.39,67.24,460.56 +20.98,60.07,1016.26,67.18,446.26 +14.93,39.16,1007.25,72.34999999999998,463.2 +24.19,58.95,1017.78,58.78,441.91 +23.86,52.84,1006.56,48.94,444.66 +15.59,52.05,1013.67,78.55,456.07 +26.04,74.67,1016.68,81.2,433.55 +22.35,54.42,1012.46,75.01,454.72 +10.57,36.71,1022.11,82.39,472.62 +6.16,38.5,1012.83,93.68,490.92 +24.12,62.44,1013.83,88.02,443.3 +28.24,71.58,1010.1,67.92,434.01 +21.11,69.94,1004.37,84.26,439.91 +11.49,44.63,1020.44,86.04,471.08 +24.92,60.95,1014.88,60.58,445.44 +23.56,67.79,1010.14,89.72,441.29 +7.54,40.72,1023.82,85.15,485.92 +26.85,75.59999999999998,1017.43,74.55,433.48 +12.14,44.85,1014.36,60.04,476.68 +17.03,43.99,1021.5,82.32,460.25 +31.41,64.44,1013.84,49.49,439.3 +14.73,40.35,1011.15,65.2,470.03 +24.04,59.43,1007.6,76.98,437.51 +21.03,44.78,1007.99,36.82,459.72 +22.61,42.8,1014.24,69.71,460.26 +17.36,44.63,1020.49,54.21,456.98 +26.82,64.96,999.72,63.55,427.51 +18.19,44.06,1017.24,78.73,456.13 +24.38,47.01,1015.17,68.96,454.85 +12.98,39.64,1013.95,74.39,473.54 +14.17,43.13,1014.94,48.62,471.08 +18.71,54.9,1017.12,74.79,456.88 +12.8,44.34,1016.52,86.73,473.42 +16.71,46.18,1012.06,96.6,458.4 +22.99,60.77,1017.97,78.47,447.62 +28.34,63.77,1013.7,61.13,439.75 +34.53,73.03,1013.53,36.74,437.03 +10.16,40.8,1028.13,86.39,477.49 +27.28,44.89,1009.02,49.9,441.94 +22.75,58.86,1016.0,67.34,448.32 +25.01,59.54,1007.91,80.93,441.3 +23.64,63.31,1014.5,61.83,440.7 +8.85,41.06,1020.99,86.05,486.4 +19.65,63.91,1009.26,99.08,444.9 +18.22,44.34,1019.35,56.78,469.27 +9.68,40.77,1022.04,85.23,473.73 +17.49,40.55,1001.73,73.15,462.37 +21.79,61.45,1011.11,91.78,446.99 +21.06,62.91,1011.92,75.52,455.22 +23.72,58.62,1016.32,71.17,447.13 +30.93,73.42,1010.98,56.42,432.44 +5.98,38.91,1016.5,91.83,488.85 +13.45,41.16,1022.04,82.96,460.57 +12.23,43.69,1016.46,84.4,471.62 +8.13,39.96,1026.07,95.84,477.12 +29.0,77.54,1011.33,75.13,431.37 +11.61,52.75,1020.94,77.56,464.68 +19.4,49.69,1012.89,75.53,455.6 +5.0,40.64,1021.05,94.84,485.27 +23.46,57.85,1012.7,65.54,444.66 +18.51,48.06,1015.14,79.83,455.44 +29.29,70.36,1006.64,60.82,431.26 +27.55,64.96,999.73,57.34,431.33 +21.82,63.9,1014.48,92.53,447.29 +17.03,47.83,1004.94,79.68,460.43 +17.18,46.0,1002.74,100.1,454.02 +18.14,49.78,1002.95,100.09,451.44 +12.39,49.83,1007.6,92.43,468.43 +20.39,64.15,1021.31,62.35,457.37 +22.72,64.15,1021.14,60.34,453.13 +20.3,58.41,1014.05,86.38,451.74 +21.46,58.18,1007.45,95.33,444.12 +28.99,68.24,1008.75,66.57,428.28 +12.07,40.81,1025.63,68.02,475.96 +15.4,40.69,1015.1,70.25,471.66 +9.59,37.14,1013.8,72.84999999999998,474.74 +7.64,40.02,1031.58,71.19,479.43 +15.42,37.85,1009.89,85.8,467.33 +11.75,42.32,1015.28,77.25,470.44 +19.51,48.78,1021.03,86.33,453.27 +31.86,73.88,1005.6,57.68,435.91 +12.4,40.35,1011.46,79.48999999999998,476.44 +28.11,69.84,1004.68,67.08,427.33 +8.74,40.03,1016.81,93.37,481.07 +24.32,58.79,1016.8,65.61,442.78 +13.72,44.47,1027.2,68.89,470.66 +6.11,38.68,1017.53,79.23,482.97 +16.74,39.16,1005.68,71.17,460.47 +8.52,41.55,1002.09,86.81,483.63 +20.55,68.63,1012.5,67.07,453.47 +22.63,58.49,1010.94,72.7,448.38 +18.13,60.1,1009.67,84.75,455.82 +12.51,43.67,1013.24,91.55,471.96 +21.02,61.5,1008.52,77.73999999999998,448.08 +6.99,40.07,1014.83,54.36,490.11 +16.37,36.99,1006.37,90.11,463.76 +15.68,39.16,1006.09,75.62,461.98 +22.17,60.27,1018.21,89.55,443.31 +26.7,49.02,1007.68,67.97,438.92 +19.55,39.39,1013.55,57.82,464.36 +27.74,74.78,1010.05,60.82,436.87 +18.09,43.72,1008.64,74.15,453.02 +11.49,35.76,1019.08,60.04,472.45 +23.67,63.86,1019.67,57.95,441.73 +32.02,67.83,1007.77,53.31,426.55 +20.38,62.52,1017.85,75.56,456.56 +5.02,45.87,1007.8,99.22,481.03 +26.24,51.43,1011.32,59.52,447.91 +14.47,41.76,1021.98,78.41,464.0 +24.16,60.29,1018.09,63.49,446.17 +10.07,40.92,1021.84,84.18,471.71 +10.73,44.92,1025.1,85.4,476.81 +16.81,42.86,1013.83,77.11,464.36 +27.52,74.67,1015.77,72.01,433.56 +13.96,40.83,1009.89,84.86,469.86 +22.78,49.16,1002.29,64.28,444.99 +22.77,70.32,1012.04,82.43,440.67 +8.64,41.66,1014.14,80.44,481.89 +27.33,66.17,1011.06,64.55,443.89 +19.07,49.69,1007.22,76.79,453.09 +24.1,68.61,1010.97,74.87,443.75 +14.6,42.32,1015.71,77.03,464.67 +14.77,44.47,1028.38,71.18,464.25 +9.14,38.91,1018.62,89.88,476.57 +14.85,45.87,1009.37,84.65,462.67 +8.47,41.03,1021.72,70.16,485.1 +23.79,59.44,1012.53,79.48,448.67 +26.63,64.44,1012.66,61.19,442.0 +12.88,44.34,1016.03,88.51,474.94 +12.73,44.34,1015.11,93.55,472.94 +17.2,40.55,1000.68,72.67,462.55 +10.05,41.17,1018.98,83.71,481.38 +28.37,75.59999999999998,1017.48,55.19,439.25 +25.61,60.32,1015.77,56.48,443.96 +20.34,46.63,1013.16,79.08,453.62 +20.21,58.12,1015.36,79.18,453.19 +21.19,58.86,1014.19,68.96,452.43 +29.71,73.18,1012.35,63.06,427.04 +15.24,37.87,1020.52,84.49,463.09 +17.35,42.86,1014.62,74.16,465.16 +13.5,45.51,1015.33,86.95,469.08 +25.94,77.23999999999998,1007.97,84.82,432.88 +5.51,35.57,1026.3,78.97,489.36 +26.16,52.36,1013.62,58.52,453.08 +15.17,49.15,1021.91,91.73,461.89 +14.57,42.18,1015.13,74.89,465.75 +12.16,45.0,1021.51,50.52,482.99 +25.1,60.37,1005.83,72.53,438.44 +13.57,39.39,1014.01,82.12,471.44 +20.25,55.5,1020.03,69.33,455.13 +11.23,39.72,1018.46,60.62,475.04 +12.52,42.34,1018.67,95.29,464.71 +8.68,39.61,1021.54,77.98,486.31 +8.18,40.02,1031.45,73.66,478.81 +21.93,60.84,1017.8,82.61,443.89 +30.69,71.98,1004.53,65.86,430.33 +12.08,41.39,1019.45,78.3,477.8 +9.08,42.49,1010.67,85.35,481.46 +20.33,57.76,1016.47,75.34999999999998,450.25 +31.03,69.98,1011.33,52.16,436.13 +6.03,41.14,1028.04,87.46,479.61 +14.02,42.86,1030.86,68.36,467.29 +20.51,45.38,1014.29,69.14,461.87 +28.17,63.13,1012.44,66.61,439.94 +18.83,63.91,1010.8,96.18,448.15 +25.52,63.94,1017.81,41.54,440.32 +22.61,49.3,1003.51,83.02,441.76 +28.61,68.12,1011.71,47.57,432.94 +18.43,56.03,1020.41,60.55,465.17 +13.41,54.3,1016.48,79.28,467.88 +11.11,40.55,1023.91,87.12,476.37 +33.97,72.29,1008.98,44.32,432.33 +18.41,62.1,1020.4,78.09999999999998,457.14 +22.4,58.12,1015.24,78.03,449.13 +25.1,61.47,1007.84,75.75,447.27 +28.73,68.3,1016.53,55.73,434.15 +11.47,43.67,1012.68,72.51,475.72 +11.19,40.64,1020.57,84.49,472.86 +10.38,43.02,1013.37,78.53,474.44 +30.09,69.48,1009.51,53.24,435.2 +26.72,65.61,1014.41,52.01,442.48 +19.14,56.65,1020.84,82.97,458.06 +21.25,44.05,1005.69,81.87,448.43 +15.55,45.09,1014.33,62.19,457.36 +12.28,42.34,1019.19,95.8,467.03 +31.93,72.58,1006.9,56.27,425.14 +24.9,71.77,1006.24,85.25,427.77 +23.71,67.17,1007.27,90.2,440.65 +31.05,62.7,1009.35,55.27,441.67 +10.08,40.72,1022.7,67.3,480.8 +22.31,61.45,1009.25,98.56,437.05 +24.01,42.48,1011.39,55.1,453.12 +21.75,49.82,1015.01,78.33,455.28 +29.3,73.67,1005.64,65.31,431.07 +12.27,41.17,1019.39,52.18,473.84 +16.51,41.79,1007.1,74.03,457.74 +26.26,63.73,1010.45,70.61,442.18 +31.33,73.03,1014.18,49.28,438.49 +21.81,65.06,1014.6,66.41,447.13 +14.93,39.39,1014.31,80.68,468.88 +33.87,71.32,1007.91,39.48,435.89 +28.09,63.31,1013.01,52.6,438.6 +18.06,56.65,1020.2,81.59,459.14 +20.36,56.53,1020.25,72.95999999999998,455.34 +29.58,76.2,1008.37,60.73,433.91 +9.62,41.01,1019.43,97.99,467.34 +25.08,58.49,1011.1,64.47,446.9 +24.33,60.32,1015.49,59.95,445.36 +30.93,70.83,1010.61,46.13,440.59 +22.04,58.05,1013.11,85.22,447.28 +5.74,45.87,1011.44,95.94,482.0 +24.17,71.25,1003.9,90.36,435.66 +5.95,39.48,1005.16,63.6,486.07 +27.51,63.73,1009.97,66.14,440.81 +28.62,70.32,1008.87,46.67,431.03 +20.48,60.29,1017.16,72.09999999999998,455.51 +27.03,71.14,1010.33,66.25,430.41 +28.31,70.32,1007.88,47.0,432.5 +16.6,41.93,1022.01,48.98,467.51 +14.67,71.14,1019.84,77.72,458.8 +5.68,40.35,1012.11,92.86,486.79 +29.66,59.22,1013.25,61.2,441.58 +6.99,39.37,1020.19,75.06,487.18 +25.61,74.22,1010.26,75.15,438.45 +11.31,39.61,1018.74,68.9,471.92 +29.04,76.09,1007.52,75.44,430.32 +16.5,53.29,1017.7,95.66,458.37 +22.26,60.77,1018.26,85.94,442.58 +25.95,59.92,1010.05,76.05,443.93 +28.09,70.02,1010.84,51.29,437.83 +8.36,40.67,1014.99,73.65,489.1 +24.88,49.16,1006.04,64.54,445.18 +14.34,42.86,1031.75,66.81,466.17 +18.16,39.99,1008.13,68.5,461.16 +20.57,44.9,1008.39,62.69,456.18 +16.85,39.64,1008.82,80.81,464.2 +24.56,63.21,1013.79,82.38,444.34 +9.54,41.17,1019.79,65.61,481.18 +21.43,60.95,1015.27,75.48999999999998,449.12 +24.15,71.73,1009.76,85.16,436.55 +21.87,74.87,1009.28,85.4,442.37 +15.3,41.76,1022.57,71.56,466.59 +19.45,41.1,1001.88,52.16,458.26 +27.99,71.64,1007.79,72.67,437.81 +21.03,69.05,1002.17,75.34999999999998,444.35 +31.84,77.95,1014.9,55.35,433.28 +29.83,71.43,1011.93,55.8,439.34 +10.08,37.92,1010.47,66.37,474.63 +18.36,51.43,1010.57,90.17,459.8 +16.4,38.01,1022.2,73.05,463.79 +13.03,42.86,1014.39,86.25,475.03 +18.88,62.96,1020.62,82.01,456.18 +11.87,41.78,1012.97,64.79,470.84 +23.16,57.76,1017.74,63.79,451.79 +15.39,42.28,1007.35,81.34999999999998,467.3 +16.84,56.03,1020.25,70.37,437.14 +14.65,44.84,1023.39,87.76,467.18 +18.97,44.85,1014.86,46.31,466.17 +26.22,69.89,1015.46,76.63,433.61 +7.07,37.49,1010.35,87.19,481.58 +17.4,44.9,1020.5,77.11,457.75 +30.05,73.68,1014.95,70.6,434.92 +14.01,45.08,1023.28,82.49,464.79 +23.24,63.78,1017.1,63.8,446.95 +23.03,65.12,1016.29,69.8,447.84 +8.58,40.72,1022.04,87.55,480.96 +24.92,48.92,1010.11,36.53,445.56 +25.8,65.38,1009.3,52.28,450.5 +26.31,48.6,1002.64,60.04,440.06 +29.13,62.26,1010.51,52.94,436.37 +11.02,41.17,1018.18,86.86,477.62 +13.61,39.85,1012.78,58.12,475.62 +23.32,69.13,1010.75,91.84,435.27 +30.45,43.21,1011.35,63.59,438.68 +31.7,70.36,1006.26,58.18,438.38 +23.62,73.67,1007.0,90.8,438.33 +12.45,43.67,1013.61,91.34,474.27 +28.85,68.12,1012.05,46.31,436.15 +18.4,43.69,1016.59,52.44,462.05 +28.97,78.92,1011.71,88.5,430.98 +4.93,35.19,1018.04,92.94,486.39 +13.75,44.47,1029.63,70.74,467.14 +16.64,44.9,1021.02,70.34,460.93 +19.04,68.28,1004.52,86.16,444.54 +15.89,43.96,1014.02,75.23999999999998,467.35 +29.03,67.79,1010.67,55.42,444.09 +14.97,58.2,1019.52,81.13,458.68 +16.23,43.52,1020.13,76.3,464.74 +14.74,44.47,1028.29,67.87,462.92 +9.75,52.72,1026.03,78.53,473.41 +27.18,59.27,1012.57,64.18,439.69 +16.22,50.88,1014.33,100.09,454.94 +6.62,42.49,1008.74,94.57,482.74 +9.33,44.03,1011.73,86.04,474.15 +23.14,62.26,1011.87,66.44,444.38 +14.52,40.35,1011.11,69.84,470.8 +33.71,69.98,1013.09,42.62,431.99 +14.84,42.03,1017.47,79.27,466.2 +13.48,41.92,1030.2,65.96,463.9 +31.4,71.06,1008.44,74.77,433.34 +27.44,66.56,1005.51,69.28,428.0 +22.68,70.47,1010.86,82.8,441.47 +9.03,40.71,1025.98,81.94,484.97 +14.36,41.26,1021.16,73.43,462.25 +10.06,43.22,1014.1,85.7,473.0 +22.76,49.02,1007.5,88.56,442.84 +24.79,75.59999999999998,1017.07,68.23,440.05 +34.97,73.56,1006.57,44.69,435.15 +27.64,75.59999999999998,1017.35,54.78,441.04 +18.37,51.86,1018.8,74.3,461.14 +7.91,39.96,1023.57,88.44,475.52 +21.8,65.94,1012.02,63.52,448.66 +29.42,71.32,1002.26,67.13,437.47 +19.01,58.46,1017.14,90.99,446.18 +24.01,67.17,1007.44,86.87,443.09 +11.69,39.22,1017.05,55.51,472.76 +22.01,58.46,1016.26,75.98999999999998,443.75 +13.74,42.74,1029.54,70.0,465.92 +12.27,43.8,1023.21,57.0,468.55 +12.88,43.8,1023.19,59.18,468.19 +32.06,71.85,1007.9,56.44,426.07 +23.46,59.27,1010.6,79.79,445.57 +24.41,52.3,1006.28,70.33,442.62 +13.22,44.92,1023.84,87.99,471.43 +13.69,40.83,1008.53,84.81,471.26 +10.31,45.01,1018.42,93.67,473.74 +21.41,54.2,1011.37,82.28,448.11 +24.49,65.46,1015.77,44.95,445.27 +25.72,49.82,1016.19,60.1,452.33 +18.73,46.48,1007.19,79.23,450.74 +22.88,59.21,1011.51,86.93,440.25 +26.59,60.96,1011.9,52.41,439.77 +30.38,71.58,1010.17,50.45,433.75 +18.94,47.83,1005.18,78.59,455.19 +25.17,64.79,1017.87,63.26,442.15 +20.55,48.98,1016.1,63.89,452.52 +10.03,42.18,1017.3,85.99,475.74 +25.03,60.27,1017.9,72.04,438.24 +7.82,41.16,1023.3,87.7,475.66 +33.43,69.88,1006.86,44.84,435.59 +11.33,41.5,1013.58,88.7,475.01 +12.34,40.62,1016.28,53.6,466.47 +4.78,42.85,1013.07,94.72,479.09 +14.03,49.15,1020.5,83.65,467.16 +26.11,47.43,1009.01,56.09,445.36 +24.67,70.94,1007.99,75.64,443.51 +14.28,44.84,1024.84,79.09,474.57 +26.74,59.87,1012.5,62.88,447.88 +29.83,62.66,1007.98,47.07,438.71 +17.51,44.9,1009.05,74.91,455.01 +30.05,69.34,1008.26,61.5,436.82 +15.85,49.69,1015.48,88.65,464.72 +32.5,71.37,1003.75,43.8,433.7 +30.56,69.04,1009.29,55.73,442.24 +23.32,69.23,1011.75,75.59,436.18 +18.0,52.08,1003.07,100.09,450.85 +25.45,70.04,1011.2,82.48,430.2 +17.37,40.55,1001.19,71.42,460.97 +16.43,41.79,1005.47,76.89,455.85 +19.15,44.89,1009.6,74.52,451.09 +16.0,39.16,1016.37,77.63,468.49 +10.87,44.71,1021.38,58.22,484.63 +21.98,55.97,1009.12,89.51,442.65 +21.92,61.87,1009.68,58.83,445.52 +14.62,42.86,1015.56,84.5,470.79 +20.9,67.07,1005.43,82.85,443.46 +23.45,69.04,1010.5,80.77,442.48 +7.31,43.02,1014.19,86.43,484.82 +22.21,61.87,1010.9,54.22,446.62 +20.83,49.02,1009.45,91.92,445.31 +14.71,44.0,1024.98,85.08,462.87 +19.92,63.31,1015.02,82.71,443.54 +31.85,73.20999999999998,1000.98,72.2,435.94 +24.1,71.97,1009.92,91.27,443.09 +12.42,38.25,1012.76,82.23,472.3 +28.79,70.79,1003.83,65.9,425.64 +17.05,44.88,1017.69,88.19,459.63 +31.59,62.7,1009.3,50.16,442.58 +14.93,41.79,1008.88,81.48,456.75 +24.44,69.13,1011.1,87.62,434.34 +26.05,65.59,1012.78,67.03,437.04 +26.48,51.43,1006.76,74.3,438.1 +17.19,37.2,1011.84,67.59,468.4 +6.25,39.04,1019.65,71.27,484.14 +31.12,67.69,1005.3,50.46,425.21 +11.16,40.05,1014.95,88.38,479.11 +31.16,69.88,1007.01,68.28,433.24 +19.27,43.14,1013.17,39.85,463.14 +17.79,43.52,1020.65,68.29,458.57 +22.76,58.96,1013.85,55.95,454.05 +5.66,39.42,1024.7,78.52,482.11 +21.75,67.45,1014.89,67.09,445.1 +24.66,58.86,1013.86,56.39,444.42 +18.16,39.99,1007.73,70.54,463.69 +25.26,61.08,1013.68,71.72,447.46 +23.6,48.98,1015.41,48.28,448.43 +22.89,65.34,1015.53,61.0,450.53 +28.82,71.43,1011.51,58.58,443.68 +21.57,69.23,1011.94,81.73,437.55 +11.03,42.32,1017.26,90.56,470.92 +15.75,39.16,1016.31,77.98999999999998,468.87 +13.67,44.92,1023.6,85.35,467.71 +11.58,39.69,1005.17,86.55,469.6 +32.31,62.04,1010.41,39.39,450.13 +23.67,72.23999999999998,1011.22,90.45,435.94 +11.29,35.76,1019.32,58.91,473.74 +13.58,49.83,1008.9,86.8,465.82 +10.54,41.93,1016.64,93.52,479.65 +24.96,74.98999999999998,1008.25,80.52,440.91 +24.53,74.78,1009.9,78.34,446.3 +12.12,41.17,1017.68,78.72,470.67 +22.99,56.57,1013.93,78.77,445.44 +31.15,67.45,1014.85,42.11,431.97 +20.2,64.45,1009.03,61.77,452.33 +10.9,41.46,1016.66,86.2,479.45 +27.04,48.41,1008.57,60.73,441.21 +29.72,74.78,1009.32,55.25,438.19 +29.86,69.34,1007.76,54.12,433.57 +28.18,73.88,1005.89,75.41,434.48 +27.0,69.4,1004.86,82.2,433.83 +33.63,70.4,1004.02,53.6,430.05 +10.44,37.83,1006.31,97.2,474.42 +13.39,49.83,1007.14,90.88,466.04 +9.0,43.13,1020.25,81.31999999999998,481.09 +18.94,48.7,1008.5,94.83,451.38 +26.14,71.98,1005.98,82.45,428.91 +5.11,42.07,1004.28,81.8,486.41 +26.62,65.12,1016.0,43.24,441.22 +25.69,62.26,1011.38,74.08,436.36 +8.13,39.99,1011.71,87.89,486.19 +9.97,41.62,1013.99,96.02,464.86 +6.58,43.02,1014.03,84.95,488.22 +13.9,42.86,1030.82,71.89,473.76 +12.33,39.28,1011.84,80.01,476.49 +7.26,36.08,1021.47,83.15,483.58 +12.29,40.03,1017.62,89.64,472.65 +33.82,77.17,1008.96,58.91,435.58 +9.27,40.22,1008.1,89.24,481.23 +23.44,62.52,1016.46,67.21,447.19 +31.63,69.59,1008.66,61.81,436.89 +27.28,51.43,1011.46,51.38,450.53 +21.45,45.09,1013.83,52.26,453.15 +25.14,69.13,1011.15,85.67,433.95 +20.12,45.09,1013.73,57.78,448.35 +16.36,53.82,1015.05,71.95,461.62 +19.77,65.06,1016.22,74.95,448.26 +31.92,75.33,1001.81,61.97,436.38 +26.52,43.77,1011.49,46.98,440.31 +11.52,40.03,1017.56,87.87,472.31 +29.91,74.33,1013.22,39.76,430.26 +15.01,39.52,1017.53,72.0,468.02 +28.39,65.51,1014.52,66.48,438.78 +25.3,71.29,1007.86,62.98,437.17 +16.63,53.82,1015.18,66.09,458.29 +10.41,44.68,1023.53,91.38,474.7 +26.86,68.08,1012.99,50.04,436.25 +10.48,36.71,1023.18,81.37,473.3 +10.58,42.34,1022.32,94.01,474.91 +6.94,38.91,1018.94,90.64,485.12 +20.64,49.21,1014.86,58.47,454.2 +25.69,73.18,1012.64,86.35,432.82 +22.48,71.29,1008.15,75.41,444.71 +6.63,39.37,1020.33,76.18,489.16 +33.4,69.98,1013.29,47.78,432.44 +15.11,42.99,1007.53,85.75,466.25 +8.99,36.66,1028.11,71.98,481.03 +9.6,41.82,1032.93,72.63,475.01 +9.42,41.4,1029.21,86.4,474.75 +23.62,68.63,1013.18,50.57,447.3 +28.19,71.97,1008.85,84.67,438.8 +26.39,49.16,1005.68,56.18,442.87 +24.93,47.01,1014.28,66.04,455.06 +21.28,70.72,1010.29,86.22,445.54 +8.73,41.92,1029.41,89.72,480.99 +6.99,35.19,1019.32,68.95,480.05 +30.7,71.58,1010.0,48.96,429.27 +15.82,44.2,1018.96,66.73,460.2 +23.19,49.82,1014.59,70.52,451.08 +10.27,42.34,1022.69,92.78,474.55 +14.04,39.64,1011.09,87.22,472.31 +20.42,62.96,1020.34,84.0,452.08 +17.31,58.49,1011.8,92.77,456.84 +13.51,43.41,1015.94,75.22,463.86 +7.39,39.81,1019.45,85.02,482.99 +26.71,76.86,1002.86,74.5,437.31 +31.74,79.73999999999998,1007.07,61.47,431.72 +21.46,50.59,1016.75,67.14,453.67 +12.75,44.03,1007.29,89.46,465.86 +14.43,44.84,1024.34,84.0,467.45 +23.93,68.28,1005.16,69.91,444.95 +10.62,42.02,999.83,96.66,472.41 +14.74,43.71,1024.35,81.53,465.49 +7.87,41.17,1020.33,77.77,486.2 +22.16,65.48,1017.22,70.51,446.0 +7.94,43.65,1018.75,59.45,479.8 +26.56,65.59,1012.6,64.25,443.66 +31.03,69.59,1007.77,63.96,432.56 +29.09,70.98,1007.86,80.34999999999998,439.34 +7.31,42.18,1014.75,86.75,477.38 +10.03,41.62,1014.55,95.61,462.73 +10.28,39.64,1010.45,74.15,477.65 +29.86,64.79,1017.37,44.8,439.89 +29.24,60.23,1009.62,59.71,438.24 +17.34,47.03,1013.36,98.13,463.89 +13.56,42.34,1017.95,93.83,462.6 +10.62,39.96,1025.37,96.64,470.8 +27.37,69.23,1013.25,48.02,433.18 +13.61,42.34,1017.57,91.35,465.65 +12.81,44.58,1016.49,80.76,475.5 +21.83,62.91,1011.07,91.34,443.76 +22.97,62.4,1010.25,75.18,445.3 +24.33,46.93,1013.72,48.27,447.43 +23.49,64.63,1020.75,65.16,450.28 +17.13,42.86,1014.15,73.59999999999998,463.09 +14.86,44.71,1018.3,49.46,466.38 +24.15,64.63,1020.72,58.06,448.87 +7.71,36.25,1027.92,89.84,481.74 +24.82,71.94,1010.5,64.67,438.69 +11.65,41.54,1020.09,67.96,476.4 +10.25,41.46,1020.65,87.07,481.94 +5.78,40.62,1016.55,84.98,484.13 +9.35,44.03,1011.02,88.11,476.25 +10.76,40.43,1025.98,79.65,490.78 +25.76,57.32,1011.93,43.61,440.26 +14.57,37.86,1022.44,68.82,463.58 +13.6,39.82,1013.34,86.1,470.69 +29.36,78.05,1011.12,64.17,434.29 +23.12,69.71,1008.98,84.41,442.21 +23.39,63.94,1010.54,89.94,441.44 +25.45,67.83,1009.47,57.97,429.95 +27.65,48.41,1008.54,58.25,440.94 +30.24,73.9,1006.74,56.39,441.31 +13.78,40.0,1018.38,68.67,458.74 +24.66,69.94,1006.56,60.91,432.68 +17.1,48.98,1016.48,85.63,454.43 +27.37,65.06,1013.09,50.92,440.5 +20.11,51.19,1007.82,92.06,449.03 +12.24,41.62,1013.38,90.26,461.23 +28.5,79.73999999999998,1006.75,87.09,433.08 +14.64,42.77,1017.59,79.59999999999998,464.27 +18.06,65.48,1018.79,77.95,454.34 +14.79,38.73,999.83,86.45,470.28 +35.2,73.56,1006.56,45.72,434.37 +22.93,51.19,1009.3,82.8,443.57 +25.73,66.54,1010.07,55.97,437.07 +18.77,50.66,1014.89,87.34,457.07 +11.52,40.8,1024.31,73.48999999999998,479.56 +8.84,42.49,1010.28,89.09,481.58 +21.24,60.84,1017.99,82.22,445.71 +15.67,45.17,1018.73,94.74,462.09 +22.99,46.21,1010.71,60.11,444.36 +23.93,64.05,1013.09,86.02,440.66 +34.33,69.05,1000.89,37.9,430.56 +29.85,68.24,1007.01,30.99,433.43 +30.1,67.45,1014.23,39.04,434.01 +6.85,37.49,1011.01,84.53,483.12 +26.53,54.2,1012.9,66.73,439.96 +24.2,59.07,1009.25,88.25,441.93 +24.6,75.23,1012.04,76.77,434.07 +30.1,66.25,1009.38,65.41,434.99 +21.6,59.8,1016.9,76.59,450.14 +24.9,58.49,1011.06,65.14,444.19 +26.9,60.93,1007.1,67.32,435.87 +23.07,57.17,1009.84,76.8,444.08 +24.85,70.47,1006.64,85.37,434.47 +30.3,73.9,1006.72,55.13,440.79 +32.18,69.75,1009.94,52.91,438.26 +29.11,74.78,1009.6,56.93,438.75 +21.37,65.94,1010.73,75.09,444.74 +26.53,69.71,1009.88,76.26,446.17 +8.9,40.77,1011.67,90.26,479.18 +22.45,63.77,1014.57,87.44,444.26 +28.9,71.25,1000.73,77.23999999999998,431.52 +18.55,46.48,1007.34,80.67,452.37 +20.92,63.86,1020.49,72.98,449.09 +14.38,45.09,1012.95,86.1,464.27 +8.9,41.4,1030.83,85.63,472.95 +11.1,44.85,1014.27,65.08,477.03 +20.85,59.21,1012.9,75.97,444.44 +26.27,71.98,1005.72,86.15,427.65 +15.61,40.89,1010.48,80.26,467.3 +3.26,41.31,996.32,100.0,489.38 +27.05,77.95,1009.57,76.56,434.09 +19.54,50.66,1014.7,84.53,456.61 +6.42,35.57,1025.58,79.63,485.86 +26.19,65.61,1014.51,54.52,443.73 +9.84,40.22,1009.5,85.38,479.65 +10.86,44.85,1014.15,88.36,476.87 +33.33,73.03,1014.2,42.28,436.05 +9.25,41.82,1033.25,74.73,478.48 +14.7,44.9,1021.87,83.9,468.69 +30.17,75.08,1005.17,55.89,438.89 +11.74,43.56,1015.14,70.72,477.5 +23.27,60.84,1019.13,67.24,440.22 +25.21,59.21,1013.19,62.85,438.7 +15.18,44.2,1019.6,72.45,462.09 +29.03,43.21,1011.83,65.23,434.11 +24.18,58.49,1011.3,77.81999999999998,445.49 +7.62,44.71,1020.56,69.96,486.07 +29.53,71.97,1008.6,79.25,434.96 +24.27,74.93,1012.73,73.81,443.06 +28.4,74.93,1013.65,48.6,442.23 +22.2,57.17,1009.82,78.43,447.75 +17.58,44.9,1020.52,71.48,459.78 +6.71,40.72,1022.78,80.69,483.11 +28.32,72.58,1007.77,78.34999999999998,428.06 +8.11,42.18,1014.82,93.09,473.62 +34.76,68.94,1006.75,41.31,427.42 +28.82,64.79,1016.74,56.34,445.1 +25.43,60.95,1014.62,51.39,444.65 +24.78,57.19,1008.08,65.4,443.62 +6.94,39.61,1017.74,81.43,480.07 +27.5,68.24,1010.38,73.44,430.9 +21.43,63.94,1012.68,99.68,445.29 +26.84,70.36,1007.41,71.47,442.17 +25.69,64.45,1013.05,42.0,450.94 +27.92,74.98999999999998,1005.47,75.13,431.76 +23.69,58.05,1012.08,74.26,444.46 +22.89,62.39,1007.84,88.16,448.13 +15.43,38.58,1016.58,81.17,463.44 +21.84,58.86,1014.13,69.67,445.16 +16.8,56.03,1020.65,85.26,461.96 +18.34,50.59,1018.42,83.95,457.17 +21.1,49.16,1006.76,86.08,442.78 +8.49,39.61,1021.05,87.74,483.94 +11.95,42.03,1017.58,90.89,465.2 +5.05,35.57,1027.03,80.02,491.4 +4.71,42.07,1005.35,82.26,486.79 +13.65,42.74,1026.58,71.48,468.87 +25.14,67.32,1013.96,41.78,435.39 +8.88,39.66,1015.21,88.29,481.45 +11.3,43.14,1019.56,99.83,469.73 +30.61,67.69,1004.97,47.46,429.8 +15.69,39.3,1019.03,60.57,464.17 +20.58,50.78,1008.87,91.18,445.03 +24.66,66.49,1010.83,70.06,438.01 +21.93,62.91,1013.45,74.62,449.17 +25.2,61.08,1013.04,74.28,447.09 +11.75,35.76,1018.99,57.92,473.01 +28.16,70.72,1009.81,65.32,441.37 +34.96,68.94,1006.17,59.26,431.48 +16.63,43.77,1012.25,75.09,458.66 +12.1,44.77,1019.1,75.84999999999998,463.11 +14.48,39.0,1016.75,75.97,464.56 +30.96,71.77,1006.26,52.76,425.66 +26.89,49.16,1003.84,41.22,442.39 +32.09,69.4,1003.1,56.91,430.62 +9.95,41.82,1033.09,69.44,477.52 +16.71,40.55,1004.45,81.64,464.13 +17.34,46.48,1007.18,83.15,452.06 +26.2,71.14,1007.92,72.95,431.7 +14.51,42.77,1017.47,81.95,463.37 +19.81,43.56,1013.39,38.13,460.59 +13.85,41.39,1018.62,75.55,471.45 +11.06,41.5,1013.09,89.8,476.24 +14.45,43.34,1015.47,83.33,462.16 +3.99,39.64,1011.53,83.58,492.06 +24.74,59.39,1015.23,74.64,437.49 +11.48,41.2,1012.88,90.04,478.34 +19.09,43.14,1012.34,45.75,463.3 +22.26,60.37,1008.14,92.37,441.33 +14.17,39.59,1010.99,94.08,464.17 +24.67,58.05,1011.31,69.95,444.57 +26.87,74.98999999999998,1002.48,71.91,437.78 +22.32,48.41,1008.68,79.11,445.36 +14.94,42.77,1018.06,75.34999999999998,460.51 +19.32,44.71,1015.3,28.81,464.38 +17.58,39.63,1004.84,80.43,467.33 +24.19,47.45,1008.26,64.25,446.3 +32.0,73.17,1009.92,42.47,433.72 +12.64,41.79,1016.38,92.65,461.46 +21.86,63.09,1016.64,87.94,442.79 +23.07,69.23,1011.78,76.06,437.08 +15.98,41.48,1017.0,55.73,456.31 +11.48,41.14,1027.67,90.5,464.07 +26.07,69.23,1013.32,54.03,436.94 +13.74,44.21,1023.26,84.2,466.67 +29.23,75.59999999999998,1017.72,52.26,438.92 +9.44,43.99,1020.31,98.06,475.01 +29.51,75.59999999999998,1017.92,50.61,431.18 +13.12,44.21,1019.57,89.29,469.09 +26.23,59.14,1016.98,75.54,437.85 +14.55,42.74,1027.29,66.64,457.77 +20.3,58.46,1015.93,82.13,448.79 +12.57,39.18,1023.09,77.28,471.87 +9.34,41.49,1020.58,97.59,471.04 +7.93,42.28,1008.43,85.57,484.75 +19.6,48.14,1013.18,68.71,456.57 +21.35,57.76,1017.36,73.09999999999998,452.57 +10.59,38.38,1021.58,68.23,474.94 +27.54,75.59999999999998,1018.26,57.89,440.87 +11.12,44.92,1025.58,93.52,470.82 +18.82,61.27,1019.5,72.23,455.29 +25.11,62.26,1011.12,78.01,434.97 +21.89,58.05,1011.31,85.71,441.76 +12.87,48.04,1012.47,100.13,465.56 +25.54,60.37,1006.49,71.54,436.14 +7.05,40.69,1020.53,89.67,476.75 +9.11,36.66,1026.47,74.79,480.74 +24.77,71.94,1006.77,88.86,432.27 +8.51,40.81,1015.54,83.16,481.02 +17.1,62.1,1020.39,93.63,453.4 +7.11,39.9,1008.82,87.76,484.21 +20.01,56.65,1020.77,74.45999999999998,457.01 +25.27,63.91,1009.82,75.48,440.39 +29.72,54.2,1012.86,38.48,438.84 +27.42,65.74,1013.43,69.42,440.52 +28.44,77.54,1011.73,77.3,433.21 +25.89,48.41,1008.49,68.58,440.92 +31.39,69.59,1008.28,62.86,435.76 +17.1,49.69,1005.53,81.81999999999998,457.32 +15.24,44.45,1020.56,66.13,460.94 +13.9,39.59,1011.84,94.74,465.0 +30.52,70.4,1003.9,64.33,438.29 +21.78,68.28,1001.0,79.3,443.24 +28.07,68.08,1013.13,44.67,437.65 +26.07,71.37,1008.6,79.48,439.25 +18.0,43.7,1015.4,61.28,464.26 +9.93,40.67,1018.08,69.74,485.23 +23.48,65.12,1015.82,60.83,445.66 +12.66,41.2,1015.88,89.12,466.49 +25.95,59.27,1010.9,70.42,444.19 +10.34,41.46,1017.75,89.73,478.03 +18.2,39.63,1005.35,79.05,468.49 +23.64,70.04,1011.09,83.35,435.21 +17.38,43.14,1011.09,61.9,459.02 +27.67,69.59,1009.13,82.15,437.29 +22.18,59.39,1014.82,85.31,440.94 +14.86,37.85,1010.58,86.8,467.71 +25.9,47.45,1007.8,55.96,443.13 +25.88,66.48,1004.24,63.16,434.4 +21.12,47.24,1003.79,70.55,462.41 +20.03,62.26,1012.15,82.54,447.4 +21.86,49.21,1014.61,53.31,452.77 +11.71,40.05,1014.49,86.09,471.49 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/public/train.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8e4f06f47506230c9250aba198646e237e7e5c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/public/val.csv @@ -0,0 +1,957 @@ +AT,V,AP,RH,PE +25.69,57.32,1012.34,44.18,441.43 +17.98,59.15,1012.09,83.03,451.97 +11.52,40.75,1016.23,85.18,477.19 +26.43,66.48,1004.36,55.9,435.59 +24.26,69.51,1013.43,53.23,442.56 +19.68,62.96,1020.41,82.26,453.58 +10.28,41.46,1018.44,85.23,479.66 +25.15,62.91,1012.23,48.22,444.19 +23.28,72.23999999999998,1011.3,90.5,434.21 +11.6,40.27,1008.55,72.12,473.89 +22.75,58.79,1011.44,84.47,445.67 +6.77,39.81,1017.01,87.68,488.27 +19.48,58.66,1013.32,73.16,454.4 +23.93,65.59,1011.09,87.26,444.9 +17.77,44.6,1016.97,54.25,460.13 +33.58,77.54,1010.19,53.49,433.75 +7.49,39.81,1019.03,87.29,483.59 +6.33,42.07,1004.25,77.09999999999998,484.57 +12.43,41.62,1011.87,80.56999999999998,460.61 +25.34,64.27,1013.38,66.02,443.94 +17.17,63.09,1020.54,95.98,446.75 +27.75,69.89,1015.41,73.01,430.33 +29.62,73.18,1012.21,61.6,427.22 +24.35,70.04,1010.92,73.88,438.4 +27.39,69.14,1008.82,78.34999999999998,435.22 +31.18,70.36,1006.38,56.74,438.46 +26.56,49.02,1007.65,70.78,438.82 +24.24,71.58,1010.15,91.14,437.75 +11.82,41.26,1020.74,91.14,466.95 +14.38,40.1,1015.51,81.23,467.28 +26.65,74.16,1008.27,94.54,431.47 +26.16,67.9,1005.81,61.02,444.06 +5.52,39.33,1009.74,95.25,492.39 +31.24,68.3,1015.89,42.84,435.2 +26.22,67.45,1013.7,44.04,440.17 +21.67,69.71,1010.46,96.83,440.16 +13.4,40.89,1010.67,91.66,472.36 +13.78,43.22,1011.31,69.7,463.71 +9.88,39.66,1017.81,76.05,480.05 +10.34,41.74,1020.07,79.17,480.84 +26.86,71.32,1007.38,81.14,430.44 +12.95,41.38,1021.97,53.83,474.46 +26.94,65.61,1014.31,49.73,443.9 +21.81,43.77,1011.97,64.72,453.13 +18.9,56.03,1020.77,71.83,457.66 +14.87,41.23,997.39,82.06,465.01 +20.46,59.21,1018.42,85.89,445.22 +24.3,69.94,1007.02,62.14,438.92 +24.58,71.94,1006.85,89.02,433.99 +9.88,40.0,1021.4,92.06,481.58 +29.85,71.58,1010.04,58.66,432.26 +27.5,65.59,1011.23,65.37,441.27 +6.14,40.62,1015.71,86.51,481.66 +20.76,51.19,1009.0,87.23,445.0 +25.55,58.95,1017.12,51.84,442.3 +10.24,41.17,1019.73,82.04,479.78 +14.45,43.71,1025.26,84.23,463.6 +30.76,59.57,1010.66,61.76,439.32 +5.72,40.81,1025.78,92.46,487.8 +30.24,68.24,1009.68,64.67,426.25 +34.61,73.03,1013.61,36.91,438.56 +24.14,62.66,1007.33,73.27,439.93 +26.76,70.98,1007.64,90.51,437.83 +18.47,62.1,1019.86,82.57,452.51 +29.51,75.59999999999998,1017.92,50.61,431.18 +29.05,71.85,1008.6,78.69,428.39 +21.89,45.38,1014.42,68.95,459.45 +24.67,63.56,1013.75,67.56,446.3 +30.67,71.29,1008.36,52.08,430.28 +25.21,49.82,1016.44,63.14,450.75 +9.76,41.01,1019.66,97.59,467.6 +18.31,62.1,1020.38,79.02,455.24 +33.11,77.54,1010.36,50.99,431.77 +26.18,69.14,1006.54,85.95,436.0 +8.72,40.02,1031.32,78.09,477.86 +17.06,58.96,1013.83,73.95,461.15 +8.01,40.62,1015.62,86.43,476.22 +14.35,35.71,1016.1,60.86,468.9 +29.74,70.32,1008.1,52.72,432.69 +23.0,49.5,1014.15,66.68,454.44 +17.09,42.42,1009.03,72.01,464.11 +14.0,40.8,1026.17,54.82,474.87 +25.02,60.29,1017.49,54.75,445.61 +13.86,41.58,1020.69,70.74,461.56 +27.58,78.05,1010.83,94.98,431.95 +26.41,60.93,1007.16,66.02,436.71 +11.02,41.44,1015.28,83.53,476.68 +25.48,58.95,1017.02,51.16,440.42 +15.47,48.98,1016.42,89.85,457.55 +21.48,47.43,1006.88,63.54,449.2 +18.86,51.43,1010.27,86.0,446.91 +20.94,44.58,1016.98,59.65,463.69 +15.02,41.48,1015.19,58.69,456.04 +28.71,70.32,1011.78,76.53,435.95 +14.28,42.77,1020.06,81.77,466.75 +26.24,77.95,1014.19,85.21,438.01 +24.31,63.86,1019.47,58.54,442.69 +8.51,40.78,1023.51,89.84,471.11 +16.07,65.46,1013.88,87.11,450.54 +8.14,39.96,1023.41,88.86,477.05 +18.43,44.63,1019.76,39.99,458.75 +34.2,68.14,1002.7,56.09,427.05 +17.66,62.1,1019.49,86.3,452.03 +23.77,51.43,1006.67,84.09,441.54 +16.59,39.54,1007.97,70.58,464.19 +15.01,43.56,1014.65,61.82,465.84 +29.09,70.02,1010.13,48.06,443.27 +20.1,59.87,1018.97,87.23,444.71 +9.0,39.18,1024.38,84.91,483.26 +16.85,50.9,1013.26,83.94,460.68 +28.44,69.4,1003.98,73.51,433.44 +9.51,40.81,1015.69,82.52,475.29 +25.99,49.82,1015.95,58.56,452.09 +6.86,41.17,1020.12,79.14,490.23 +8.57,39.69,1000.91,99.9,474.29 +23.3,48.78,1018.17,75.36,441.08 +32.95,67.9,1005.88,45.15,425.89 +24.41,73.67,1007.39,86.92,435.56 +17.51,39.54,1010.22,71.53,462.12 +31.68,73.68,1014.85,64.0,431.11 +9.0,41.54,1018.83,79.61,484.08 +18.4,43.96,1012.4,77.81,464.63 +13.72,49.83,1006.88,89.49,463.65 +7.16,38.56,1019.17,70.1,486.12 +14.33,43.41,1015.43,55.4,462.94 +13.53,42.86,1014.0,90.63,471.73 +13.11,41.58,1020.43,74.31999999999998,460.44 +23.98,50.32,1008.41,67.75,443.45 +31.08,59.57,1010.76,60.49,442.88 +33.62,77.17,1009.38,63.71,431.03 +11.93,38.78,1013.15,96.08,474.57 +21.97,68.12,1012.53,75.12,443.39 +23.83,49.21,1012.93,46.79,446.23 +4.96,45.87,1007.32,98.78,481.88 +31.3,70.79,1004.3,54.37,428.75 +17.75,49.25,1020.86,63.67,454.41 +29.89,71.29,1009.0,55.72,431.45 +12.11,41.17,1019.46,62.59,475.53 +23.85,74.22,1009.99,82.72,441.66 +12.16,40.81,1025.79,70.97,476.63 +23.71,60.23,1009.76,90.67,439.66 +22.49,58.71,1009.75,76.43,443.33 +18.9,57.5,1016.21,93.9,451.42 +27.86,63.07,1011.11,56.81,440.48 +26.04,71.14,1011.66,68.95,433.78 +19.51,44.05,1008.52,78.38,451.7 +10.92,40.92,1021.84,83.03,467.05 +8.51,42.32,1015.08,84.89,476.6 +19.68,68.28,1002.62,71.57,452.47 +27.75,70.4,1006.65,90.21,436.53 +21.59,66.54,1004.88,90.54,441.71 +13.93,42.86,1032.37,71.11,468.88 +16.55,41.66,1011.45,55.53,465.14 +25.53,71.85,1009.19,74.7,431.26 +20.67,57.5,1014.42,81.89,453.29 +25.21,69.48,1010.99,75.27,436.02 +9.29,39.04,1022.72,74.29,482.55 +33.92,77.95,1010.15,58.89,433.01 +25.63,71.58,1010.14,87.57,433.76 +27.21,66.49,1013.57,40.11,439.04 +10.42,41.26,1008.48,96.76,472.54 +25.02,59.44,1012.49,73.65,444.08 +24.2,59.43,1009.69,62.3,440.66 +15.82,44.88,1018.59,78.88,461.9 +11.46,38.91,1012.34,77.37,477.5 +13.17,36.71,1012.82,72.76,474.93 +23.47,65.61,1014.57,69.83,447.16 +10.77,41.46,1021.42,87.18,479.22 +28.47,69.23,1013.18,40.73,434.12 +30.03,70.02,1010.07,64.2,436.88 +13.89,35.71,1016.4,65.49,468.54 +13.26,41.78,1009.77,61.69,467.78 +12.31,37.73,1023.3,63.01,472.08 +19.61,45.01,1014.84,64.42,461.97 +18.58,44.6,1016.61,48.15,459.06 +23.18,51.43,1011.56,81.83,449.94 +28.33,68.14,1004.63,71.21,431.27 +14.82,40.0,1016.32,66.3,458.46 +21.42,56.89,1014.39,84.05,444.86 +26.62,76.2,1006.06,69.13,437.81 +28.17,72.43,1007.37,68.92,428.88 +20.86,63.73,1008.54,96.83,440.42 +25.45,63.76,1009.96,67.78,439.56 +29.15,73.42,1011.43,66.49,432.26 +32.33,67.83,1008.11,57.48,427.84 +13.45,45.87,1008.73,87.06,464.88 +29.91,76.86,998.59,72.41,432.6 +24.93,73.5,1011.28,83.09,437.35 +9.71,42.44,1014.29,94.03,481.03 +16.69,53.82,1015.39,63.62,458.96 +22.36,51.43,1007.47,87.33,442.53 +25.57,44.05,1005.79,65.14,443.84 +7.36,41.01,1025.49,96.48,477.37 +14.22,42.32,1015.54,77.23,465.0 +18.33,49.64,1025.36,62.57,468.14 +31.1,68.51,1012.99,54.3,428.68 +27.62,71.14,1011.6,52.8,434.72 +17.04,56.03,1020.38,68.69,462.48 +17.31,44.71,1017.43,35.4,463.05 +31.61,69.04,1008.11,47.96,439.19 +28.14,51.43,1012.16,52.67,445.33 +8.77,40.46,1019.68,77.84,475.0 +6.15,40.77,1022.42,88.57,482.49 +21.39,52.3,1009.2,79.77,446.87 +12.29,40.71,1019.71,83.09,469.75 +11.6,39.96,1011.65,80.79,473.22 +26.68,68.08,1011.41,67.33,433.04 +7.71,38.06,1021.0,83.47,482.78 +10.07,44.68,1023.44,90.95,477.52 +22.08,45.61,1014.02,75.70999999999998,456.71 +30.74,69.59,1008.69,68.04,437.81 +26.49,67.69,1004.61,78.13,430.62 +14.55,44.84,1023.83,87.6,465.14 +16.55,39.64,1009.07,77.8,465.29 +11.68,40.55,1006.48,96.16,474.8 +10.95,40.22,1010.04,78.95999999999998,477.23 +11.83,38.25,1013.36,85.33,473.31 +23.38,48.78,1019.03,78.69,446.18 +29.77,69.48,1009.8,52.6,432.69 +24.12,58.66,1011.55,58.96,450.69 +6.1,39.33,1010.4,95.34,491.37 +6.93,41.14,1027.18,84.67,479.06 +27.6,69.05,1003.87,42.01,436.08 +11.23,41.17,1019.36,56.85,475.85 +18.84,40.79,1005.18,92.46,459.96 +29.47,71.32,1008.07,67.0,437.14 +23.3,72.98999999999998,1008.54,92.11,437.62 +29.15,69.48,1008.68,55.78,430.54 +21.99,42.48,1011.77,74.04,456.65 +21.77,42.23,1013.03,67.44,462.51 +27.61,49.16,1005.01,35.63,441.18 +26.05,65.38,1009.43,52.1,449.82 +14.8,44.71,1014.67,41.71,470.77 +15.71,39.3,1019.2,62.28,462.84 +16.44,53.16,1014.82,75.29,458.49 +17.03,58.49,1011.91,92.16,460.48 +10.12,41.55,1005.78,62.34,475.46 +10.17,41.17,1018.58,87.72,478.04 +23.37,65.46,1016.25,48.64,447.07 +11.98,44.6,1018.59,86.71,470.02 +24.66,48.78,1018.39,71.79,449.11 +16.61,43.77,1012.25,77.23,457.66 +14.79,47.83,1007.27,92.04,463.22 +29.2,64.84,1009.94,55.37,441.9 +23.26,58.2,1016.72,57.98,446.87 +7.19,39.37,1019.67,70.77,480.4 +20.94,49.02,1008.91,87.32,448.18 +27.89,73.20999999999998,1001.32,85.88,431.59 +23.63,71.29,1008.01,70.07,442.65 +20.91,58.2,1018.1,62.8,446.19 +14.91,46.9,1019.59,98.1,461.73 +23.82,73.67,1007.26,88.16,438.42 +32.09,79.73999999999998,1006.92,61.5,432.85 +16.69,46.18,1011.0,97.85,458.57 +17.16,58.86,1016.4,86.39,453.76 +28.05,70.36,1006.73,64.42,434.06 +30.54,70.17,999.42,64.32,434.62 +21.95,50.66,1013.92,70.94,455.23 +24.49,59.87,1018.4,59.95,444.54 +10.62,39.58,1011.9,87.85,479.91 +11.47,25.36,1008.27,95.4,469.51 +24.84,71.73,1009.84,82.41,436.36 +20.66,51.19,1008.81,88.93,447.14 +26.85,63.56,1013.25,52.84,444.39 +25.56,69.13,1002.46,68.26,434.48 +20.0,39.53,1007.59,62.09,456.28 +8.22,41.82,1032.77,71.63,477.86 +21.84,59.39,1015.77,88.12,442.11 +14.26,44.47,1028.81,72.19,465.77 +14.35,39.39,1012.92,82.41,470.53 +22.89,80.25,1006.38,80.25,446.15 +24.34,73.5,1011.31,84.15,440.29 +23.86,59.21,1013.02,73.59999999999998,441.22 +27.71,69.13,1001.63,51.45,432.54 +22.63,70.47,1008.0,82.27,441.92 +31.23,75.08,1004.93,46.19,439.14 +10.31,40.67,1017.61,69.61,485.25 +7.64,39.85,1012.78,88.09,481.53 +31.44,79.73999999999998,1006.95,56.99,431.69 +4.89,45.87,1007.58,99.35,482.69 +27.91,63.76,1010.27,65.67,435.21 +19.05,53.16,1013.22,82.8,455.76 +28.36,69.88,1007.75,84.17,434.03 +27.69,73.91,1005.23,75.70999999999998,435.08 +22.85,59.15,1014.74,63.92,448.61 +23.0,57.76,1017.64,56.86,451.39 +30.04,68.08,1011.04,51.01,429.52 +17.08,38.58,1015.41,73.42,461.49 +27.13,69.45,1013.9,51.16,434.47 +30.65,65.18,1012.51,42.32,436.79 +23.91,50.23,1017.25,68.57,455.41 +7.64,42.28,1008.49,83.42,483.74 +6.77,40.78,1024.86,96.58,478.24 +18.41,44.9,1008.97,73.81,453.12 +14.29,39.59,1010.93,94.53,463.04 +29.29,71.14,1011.49,49.97,432.58 +29.17,67.45,1014.1,46.85,435.08 +23.55,65.94,1011.76,58.44,443.98 +19.05,59.21,1017.99,89.53,451.0 +18.22,49.25,1020.33,61.87,454.66 +14.8,38.73,1003.18,80.73,467.54 +5.28,45.87,1008.25,97.88,479.91 +13.07,43.13,1016.93,70.02,471.47 +21.37,81.56,1006.57,81.56,434.38 +9.96,41.55,1002.59,65.86,475.91 +13.86,41.78,1010.75,57.9,467.39 +11.33,41.16,1019.05,87.13,468.87 +16.81,42.42,1008.95,74.25,462.19 +29.79,67.69,1006.86,55.93,428.71 +14.44,41.2,1015.96,81.97,469.85 +9.08,40.46,1019.48,77.37,476.81 +17.3,57.76,1016.26,87.74,455.75 +27.06,64.45,1008.72,54.21,443.1 +14.64,39.58,1011.46,71.9,467.8 +23.69,77.54,1009.32,89.7,440.21 +9.05,36.3,1027.44,74.84999999999998,479.43 +24.73,74.22,1010.15,79.83,436.55 +19.94,44.9,1008.52,74.69,459.47 +8.73,39.42,1025.63,69.87,474.44 +26.66,73.56,1006.9,99.27,433.62 +31.81,69.88,1007.94,55.91,432.6 +17.47,58.59,1014.03,97.13,449.41 +22.18,62.39,1007.84,85.74,452.31 +18.25,43.14,1011.51,55.16,462.78 +20.34,69.45,1012.76,91.05,442.73 +27.44,58.9,1003.86,66.74,442.19 +27.75,77.23999999999998,1007.48,78.37,433.57 +19.13,59.21,1018.32,89.66,450.81 +19.84,65.48,1019.54,76.59999999999998,449.85 +21.1,62.66,1011.19,83.49,448.8 +20.15,58.59,1014.13,91.96,443.85 +28.85,58.33,1013.78,41.39,444.0 +19.39,60.1,1010.28,83.31,452.57 +21.88,69.71,1010.28,97.64,444.39 +16.34,47.45,1009.41,92.96,448.59 +13.34,40.8,1026.56,64.85,474.47 +3.92,41.31,999.22,95.26,487.35 +21.97,58.12,1015.29,77.47,449.6 +13.89,44.84,1023.66,92.97,466.74 +13.98,40.71,1022.72,71.83,474.46 +16.55,41.93,1022.71,42.73,466.77 +21.17,52.3,1009.36,81.51,447.5 +24.37,65.61,1014.5,65.67,443.13 +24.42,64.79,1016.12,69.32,449.1 +16.54,42.86,1014.85,78.0,465.26 +8.199999999999998,41.14,1025.24,96.26,474.04 +26.17,58.86,1014.52,51.28,443.69 +14.24,39.58,1011.17,70.45,469.94 +14.1,42.18,1015.05,78.25,463.3 +24.91,52.3,1008.72,68.26,441.15 +32.55,69.89,1013.87,40.09,428.84 +20.7,58.16,1016.73,68.19,453.22 +29.7,57.19,1008.41,55.07,436.29 +17.66,60.08,1017.22,86.96,456.62 +30.03,68.84,1011.41,53.82,439.31 +26.45,54.5,1014.96,65.55,450.76 +12.57,41.79,1014.99,87.8,461.88 +30.82,78.87,1012.06,70.69,432.01 +16.97,44.92,1025.21,74.27,460.21 +14.84,38.91,1013.78,69.27,467.83 +20.99,50.78,1008.55,75.14,449.07 +12.35,44.2,1017.81,82.49,471.65 +19.64,46.33,1013.33,98.99,451.45 +29.14,61.5,1009.64,39.95,437.76 +11.82,41.17,1019.5,55.74,475.61 +23.94,51.95,1008.61,73.42,448.67 +17.4,63.09,1020.84,92.58,453.0 +8.949999999999998,43.13,1017.56,94.85,479.14 +29.12,51.43,1005.93,60.66,437.71 +29.13,47.93,1002.5,49.1,435.61 +30.56,71.25,1000.3,70.55,431.92 +19.07,44.63,1020.23,44.93,456.37 +32.96,69.75,1008.86,40.23,435.56 +19.35,39.72,1002.5,51.24,455.29 +31.92,68.3,1015.58,41.55,430.07 +13.85,48.92,1011.68,79.23999999999998,462.38 +26.69,70.36,1006.82,68.29,435.04 +17.66,44.9,1020.5,71.33,457.11 +16.05,38.28,1014.38,73.89,466.75 +6.24,35.77,1019.24,70.7,483.36 +6.43,39.61,1017.51,83.8,480.58 +15.12,39.16,1006.55,76.98999999999998,463.78 +15.84,49.69,1015.14,90.41,462.6 +18.41,42.44,1012.66,65.93,463.2 +15.54,41.96,1011.78,97.46,467.1 +28.26,69.23,1013.01,42.1,436.31 +12.24,40.96,1023.22,78.73999999999998,475.32 +25.45,75.23,1011.41,73.33,441.65 +5.25,42.85,1013.75,89.67,477.78 +9.82,41.04,1026.72,77.28,473.98 +11.44,41.39,1019.59,79.95,478.52 +12.07,38.25,1012.67,81.66,470.36 +28.51,70.02,1010.58,54.68,441.66 +23.47,60.77,1017.19,75.36,444.46 +20.42,45.01,1012.23,66.5,451.28 +21.13,47.43,1006.97,64.26,448.83 +18.62,65.48,1018.45,73.39,451.94 +15.68,43.7,1015.09,58.96,470.29 +7.46,39.81,1018.62,86.73,484.13 +11.38,52.75,1026.19,72.70999999999998,469.9 +21.11,43.43,1010.1,62.62,447.83 +32.38,77.23999999999998,1007.7,61.15,430.96 +19.74,45.38,1015.11,80.67,459.39 +19.18,50.12,1005.99,100.09,444.56 +10.19,37.14,1012.74,73.48,475.01 +20.98,43.77,1010.67,62.73,449.88 +13.47,44.88,1017.56,93.23,476.67 +27.23,44.05,1005.69,58.91,440.2 +7.3,43.65,1019.33,67.62,482.96 +18.26,60.95,1016.94,78.91,457.03 +9.55,40.67,1018.56,70.72,486.34 +26.1,63.56,1013.12,61.0,442.75 +25.88,63.73,1009.48,77.17,438.42 +20.29,63.09,1019.03,76.06999999999998,448.22 +22.58,59.14,1017.2,80.91,439.78 +27.57,60.07,1016.52,54.75,440.12 +30.48,70.04,1010.73,53.7,429.85 +9.27,38.56,1017.69,62.49,475.42 +15.01,42.77,1018.21,73.22,462.6 +31.01,73.5,1010.92,48.61,432.41 +19.62,68.63,1012.26,68.05,453.84 +24.26,47.93,1003.87,70.44,439.16 +14.87,41.76,1022.26,78.20999999999998,464.84 +31.0,71.77,1006.29,48.56,431.07 +28.84,74.67,1016.52,67.43,428.98 +18.48,50.16,1011.45,99.92,452.06 +30.49,64.44,1013.43,51.73,438.09 +27.49,71.94,1008.25,68.29,428.27 +21.76,47.93,1005.34,86.28,444.77 +13.78,44.47,1027.94,71.09,467.22 +25.28,66.25,1009.77,84.55,439.77 +27.17,61.02,1011.38,65.32,437.06 +20.51,42.23,1013.25,71.83,461.78 +15.43,39.16,1016.44,79.8,470.74 +12.7,39.72,1017.89,62.97,467.77 +26.86,72.58,1009.22,88.39,428.69 +26.06,58.59,1012.41,55.22,451.47 +10.56,40.22,1005.08,89.71,478.02 +25.33,73.20999999999998,1002.19,97.24,433.43 +3.0,39.64,1011.0,80.14,485.2 +30.91,69.75,1010.23,59.36,435.7 +27.34,71.64,1008.12,72.22,438.76 +15.34,43.5,1021.18,79.44,459.77 +18.99,59.27,1012.15,89.39,453.4 +12.14,40.27,1007.57,73.22,472.84 +30.75,71.22,1006.47,48.06,437.96 +16.05,41.96,1011.82,96.05,463.72 +14.83,53.82,1016.57,63.47,464.0 +25.12,66.56,1009.22,65.62,436.56 +13.72,41.62,1011.14,75.79,455.52 +20.94,58.16,1016.88,65.43,455.16 +24.81,67.17,1007.71,84.37,442.75 +10.2,41.46,1019.12,83.26,480.11 +26.19,49.3,1003.69,65.88,440.13 +24.7,58.82,1009.4,75.91,442.98 +31.82,73.68,1014.8,40.58,433.32 +10.29,40.56,1017.28,69.13,481.7 +15.94,44.85,1014.29,67.57,462.54 +21.28,70.32,1011.06,90.12,439.0 +12.45,40.1,1015.4,82.61,473.63 +25.15,57.32,1012.41,41.84,440.1 +28.52,57.82,1004.81,57.82,435.4 +22.47,48.6,1002.33,63.23,445.98 +15.21,43.5,1021.6,82.06,464.08 +27.88,63.87,1017.79,40.0,443.24 +32.14,68.31,1010.48,42.15,436.15 +28.28,69.48,1008.56,61.3,428.75 +12.12,38.28,1013.65,90.19,471.19 +13.44,41.14,1026.41,77.26,461.44 +15.12,41.04,1025.95,69.67,460.58 +9.73,40.22,1011.48,87.88,481.42 +14.05,39.59,1011.2,94.54,464.63 +28.43,63.31,1013.44,49.99,432.62 +12.38,41.62,1012.37,84.15,461.07 +7.09,39.37,1020.07,73.26,487.0 +11.69,35.76,1019.02,55.6,471.72 +25.76,63.94,1018.49,42.14,445.78 +14.91,43.34,1015.15,81.56,461.27 +21.91,70.32,1009.17,90.57,439.29 +23.56,73.18,1012.18,87.98,437.92 +19.98,49.15,1021.56,63.89,457.54 +24.33,49.16,1003.46,61.04,441.2 +9.22,40.92,1021.83,85.43,474.51 +32.16,71.32,1005.5,60.23,434.01 +27.29,64.45,1013.46,45.35,446.94 +28.14,61.47,1009.69,64.66,435.35 +26.71,70.4,1007.59,82.63,432.64 +19.83,46.33,1013.27,96.4,451.22 +13.49,43.41,1015.75,57.86,461.06 +14.13,53.82,1016.72,64.85,467.08 +20.6,66.86,1013.08,62.48,451.44 +22.01,60.84,1017.55,83.82,441.9 +5.89,35.77,1019.78,79.58,479.86 +26.02,70.79,1004.21,79.12,428.72 +14.08,41.93,1023.02,59.41,475.15 +24.96,77.54,1008.25,80.59999999999998,433.4 +32.21,71.85,1008.25,58.09,429.15 +26.59,69.13,1009.27,73.95999999999998,430.11 +8.529999999999998,43.14,1012.25,78.88,480.08 +25.94,66.49,1012.83,61.81,433.38 +7.76,39.61,1021.63,80.67,488.32 +27.21,67.45,1013.83,43.26,436.47 +19.08,59.15,1013.1,81.81999999999998,451.33 +30.97,67.9,1005.98,55.6,428.26 +7.53,41.74,1022.45,90.85,487.25 +32.19,69.13,1000.45,48.22,425.21 +27.32,66.54,1004.95,72.58,431.33 +14.92,46.18,1014.21,98.82,465.63 +24.62,72.43,1007.97,84.36,436.89 +14.47,44.66,1016.33,93.52,464.41 +26.35,59.44,1012.16,63.73,443.73 +26.38,65.12,1016.1,47.57,441.07 +24.44,52.84,1006.39,49.05,440.2 +32.63,74.98999999999998,1002.42,40.07,432.79 +29.49,69.71,1009.34,56.35,440.99 +30.58,70.04,1010.4,48.16,431.59 +13.24,39.16,1016.52,86.66,474.48 +12.91,41.66,1013.37,71.52,469.71 +25.1,43.77,1010.9,49.68,444.99 +16.0,43.02,1012.37,39.2,466.01 +23.62,61.87,1010.07,48.77,447.93 +25.54,70.47,1009.28,73.5,436.16 +15.89,41.7,1018.93,82.68,463.33 +23.79,50.16,1005.32,75.81999999999998,435.49 +17.77,56.53,1019.57,79.89,457.94 +21.54,58.41,1013.99,86.34,450.69 +24.49,70.79,1005.51,88.65,430.54 +13.52,39.39,1012.91,84.03,474.82 +13.51,44.9,1019.29,77.23999999999998,464.86 +28.9,68.84,1011.64,64.44,437.06 +26.28,75.23,1011.44,68.35,435.28 +28.81,64.96,1000.46,68.05,427.91 +17.49,63.94,1020.02,82.6,452.71 +20.61,48.78,1020.8,85.05,449.38 +27.84,71.32,1007.72,79.25,431.37 +22.7,60.84,1019.15,71.48,438.59 +7.21,42.03,1017.81,90.12,482.26 +14.68,41.23,998.43,83.71,469.25 +21.93,60.84,1018.96,76.8,440.76 +9.23,37.36,1015.01,67.38,481.08 +27.51,49.3,1003.74,61.27,437.09 +20.76,70.72,1009.73,89.04,448.85 +30.65,71.06,1008.61,76.76,432.08 +10.31,42.49,1009.43,78.36,479.64 +27.27,72.58,1009.25,89.31,428.93 +28.61,68.12,1012.23,46.45,435.28 +19.65,44.89,1009.76,75.36,451.35 +30.24,69.88,1007.9,61.46,436.37 +31.26,68.94,1005.94,39.49,438.03 +25.16,74.33,1014.55,76.7,436.15 +16.73,58.59,1015.02,89.61,455.3 +30.57,58.9,1004.54,54.37,438.49 +17.18,63.09,1020.67,93.58,451.37 +27.35,61.47,1008.43,70.65,443.67 +19.11,50.16,1010.88,100.09,450.38 +26.48,68.14,1004.83,55.96,432.19 +13.84,42.18,1015.74,79.76,468.66 +29.1,76.2,1006.28,60.22,435.97 +13.91,40.24,1017.03,85.93,466.24 +13.73,41.78,1011.75,49.65,464.94 +25.4,65.34,1013.11,53.93,445.82 +14.73,39.52,1017.01,74.20999999999998,470.45 +27.58,66.48,1004.82,51.23,435.34 +24.03,62.44,1010.96,79.88,430.66 +19.78,63.09,1019.01,78.39,448.34 +12.57,41.66,1009.11,70.74,475.61 +13.95,41.49,1019.95,86.46,465.24 +13.77,47.83,1007.41,90.66,466.07 +21.52,50.66,1013.56,74.33,455.71 +27.98,67.9,1006.3,73.53,436.08 +14.57,44.45,1021.42,66.23,462.48 +25.46,70.32,1010.65,64.7,433.08 +8.58,38.38,1021.03,84.37,482.26 +28.18,66.56,1005.69,65.67,426.79 +32.07,70.94,1006.91,49.9,432.33 +17.94,37.2,1012.64,68.11,467.65 +7.34,40.72,1023.01,80.08,483.92 +10.8,39.28,1010.7,82.62,478.8 +24.34,70.79,1006.82,85.66,433.83 +26.45,64.27,1013.23,60.92,444.9 +18.38,62.1,1020.12,77.27,452.91 +32.53,77.95,1014.76,58.1,434.44 +7.99,36.08,1020.08,83.2,481.35 +21.16,50.66,1014.13,72.77,455.86 +15.71,40.12,1012.81,97.46,462.6 +20.58,39.53,1005.68,62.09,460.1 +32.0,58.9,1003.48,51.38,437.81 +30.29,74.16,1008.77,75.23,431.39 +31.38,68.27,1006.79,52.79,426.67 +29.67,66.51,1015.6,34.1,434.8 +19.9,56.53,1020.52,78.05,456.48 +23.6,57.17,1009.84,74.27,446.05 +4.59,39.33,1010.85,71.78,494.9 +12.76,43.7,1015.13,65.34,475.73 +6.53,42.85,1012.65,91.6,480.98 +14.46,53.82,1016.55,68.11,462.6 +23.75,61.5,1008.16,69.14,442.35 +22.28,59.92,1009.36,95.38,437.85 +24.4,60.37,1006.77,82.43,440.64 +29.82,69.75,1010.09,65.02,442.6 +20.29,65.27,1013.17,74.94,445.52 +27.2,72.43,1006.75,80.67,430.32 +5.7,40.62,1016.07,84.94,482.82 +24.54,65.46,1014.27,40.77,446.26 +16.57,63.31,1016.19,81.02,454.78 +29.89,65.74,1012.95,51.36,438.24 +24.37,70.02,1010.97,71.97,443.53 +24.16,65.06,1013.88,58.96,442.32 +14.9,52.05,1015.11,77.33,464.82 +26.88,74.78,1010.42,64.81,440.84 +27.02,72.58,1009.21,89.13,437.8 +10.13,38.16,1013.57,79.04,474.92 +15.27,38.73,1002.83,77.77,465.99 +14.03,44.88,1019.6,57.63,465.51 +8.51,41.26,1023.17,87.79,477.51 +8.68,41.82,1032.83,73.62,478.61 +12.85,41.14,1027.04,86.29,464.86 +25.27,67.07,1006.34,66.35,445.81 +28.62,69.71,1009.67,62.12,437.52 +23.87,60.27,1018.94,77.16,439.86 +26.54,69.48,1010.7,66.09,432.56 +12.83,44.88,1017.86,87.88,474.26 +15.62,41.76,1023.82,66.17,459.72 +28.28,61.86,1012.07,64.49,439.65 +20.06,62.1,1020.21,72.20999999999998,451.81 +13.86,35.71,1015.21,63.16,471.63 +28.19,68.08,1013.41,43.93,436.43 +18.02,53.16,1013.41,82.84,458.01 +14.8,43.99,1022.89,85.25,461.97 +9.26,41.66,1016.87,73.31999999999998,483.51 +20.65,66.51,1014.94,71.83,456.49 +13.03,39.52,1016.68,83.09,473.99 +13.41,49.83,1008.83,87.14,466.38 +3.73,39.42,1024.4,82.42,488.58 +26.95,70.79,1004.09,75.34999999999998,430.07 +11.7,43.41,1016.08,62.27,467.51 +13.09,54.3,1017.61,82.38,471.0 +5.21,41.31,1003.51,91.23,486.46 +12.65,44.0,1023.03,88.73,471.46 +16.01,49.64,1026.35,77.75,457.8 +15.34,41.23,996.87,86.56,465.16 +17.94,62.1,1019.81,82.65,453.55 +33.01,68.67,1005.2,51.41,433.94 +22.91,66.44,1011.23,63.43,444.48 +31.35,67.32,1013.74,38.56,439.81 +10.63,40.67,1017.13,66.12,483.27 +4.27,39.64,1010.99,84.85,487.19 +21.14,58.05,1012.98,87.27,449.74 +25.36,60.07,1015.06,66.11,439.73 +11.44,44.2,1018.14,84.9,476.12 +13.35,39.58,1012.41,83.45,465.85 +23.88,54.2,1012.81,64.52,444.97 +15.65,43.5,1021.39,78.58,463.5 +6.72,38.91,1016.89,90.47,485.89 +15.74,43.71,1024.7,78.38,462.66 +19.84,56.89,1013.23,78.31999999999998,447.92 +11.44,43.13,1014.88,63.88,477.57 +26.55,69.45,1013.88,55.39,435.64 +19.96,39.53,1006.16,62.77,460.49 +10.8,40.69,1014.3,87.44,478.19 +8.36,38.91,1016.27,88.82,482.09 +8.55,35.77,1016.15,73.31999999999998,481.44 +31.84,71.37,1003.51,46.22,432.04 +5.94,39.9,1007.84,86.33,485.86 +14.35,40.71,1023.09,69.5,473.56 +31.91,67.83,1008.76,53.22,425.28 +25.35,74.33,1015.29,77.84,435.66 +9.32,36.3,1027.67,73.25,479.52 +16.34,42.28,1008.08,52.8,463.29 +29.95,73.42,1011.44,66.32,432.81 +7.09,43.65,1019.6,72.09999999999998,483.42 +25.63,72.98999999999998,1008.2,86.8,436.64 +28.54,71.94,1007.4,65.99,430.91 +25.57,65.46,1014.81,38.58,444.46 +12.99,44.0,1025.22,90.27,470.93 +14.77,48.06,1010.92,69.81,461.52 +31.09,59.57,1010.67,60.5,440.08 +14.04,48.79,1017.62,75.25,464.09 +29.12,66.56,1006.9,49.79,429.94 +32.13,74.34,1003.34,56.39,436.3 +31.75,74.98999999999998,1003.25,53.33,430.82 +24.82,66.54,1010.0,60.36,440.88 +19.76,48.92,1010.48,46.57,456.69 +31.26,76.09,1006.66,63.91,430.36 +9.43,41.4,1028.81,85.83,475.8 +27.78,60.07,1014.66,53.74,439.43 +23.99,45.87,1007.63,52.62,443.66 +18.32,66.51,1015.18,81.5,459.89 +28.86,49.3,1003.93,52.85,435.75 +27.35,69.48,1008.51,65.81,432.31 +23.32,66.48,1003.92,72.25,436.26 +18.99,62.1,1020.0,76.76,453.09 +10.82,42.02,996.03,99.34,475.46 +14.81,43.69,1017.19,71.9,470.71 +22.77,59.92,1009.67,94.09,437.9 +18.61,47.83,1006.43,78.89,454.21 +26.5,66.05,1017.03,61.34,440.15 +16.11,44.92,1025.37,79.84999999999998,460.99 +30.51,70.94,1007.64,59.42,430.91 +13.48,41.44,1015.64,71.46,471.39 +16.37,43.5,1021.26,72.4,459.18 +21.19,50.16,1005.81,84.27,450.33 +26.38,59.92,1009.99,71.91,444.85 +24.45,65.12,1015.92,57.19,445.01 +28.6,71.22,1003.15,58.33,443.01 +29.39,69.89,1013.92,47.36,434.27 +25.91,68.08,1010.92,74.25,432.07 +19.94,65.46,1017.7,68.94,448.67 +13.95,71.14,1019.76,75.51,461.18 +33.7,68.27,1007.16,50.41,427.4 +6.58,40.07,1014.22,55.44,493.72 +9.79,39.69,1002.36,93.86,471.61 +18.41,65.94,1010.23,84.71,452.66 +22.89,48.98,1014.55,48.21,448.56 +25.68,46.21,1011.01,57.53,442.98 +32.77,72.86,1003.6,52.87,433.84 +13.18,43.8,1023.18,61.21,467.0 +28.99,54.2,1012.79,41.9,442.6 +26.34,59.21,1013.37,58.98,439.22 +21.11,58.66,1011.7,68.71,457.89 +24.28,71.98,1006.34,90.45,432.47 +28.46,73.67,1005.67,71.21,429.15 +27.16,59.87,1011.78,58.84,446.38 +18.36,53.16,1013.31,83.18,458.47 +20.35,50.9,1012.6,72.43,453.5 +8.57,40.69,1020.87,84.15,485.18 +8.97,44.03,1013.16,80.39,474.61 +20.95,70.72,1009.96,87.73,445.66 +23.49,47.45,1008.46,66.18,446.72 +7.26,41.22,1014.86,97.82,488.75 +27.36,58.33,1013.86,56.7,439.14 +27.98,67.17,1007.32,75.29,440.68 +25.15,68.51,1013.25,72.31,440.96 +26.82,60.96,1012.25,57.41,449.81 +4.24,39.9,1009.28,96.74,491.25 +24.49,65.06,1014.07,63.32,441.4 +19.65,42.23,1013.04,75.9,461.16 +9.57,39.82,1013.12,89.15,468.02 +31.46,66.54,1002.86,53.75,427.76 +7.2,40.35,1011.83,95.59,484.9 +18.19,66.54,1012.9,86.05,449.22 +23.21,73.42,1010.34,88.29,439.66 +29.31,68.67,1006.18,63.38,435.57 +23.54,41.1,1002.05,38.05,448.56 +24.22,62.08,1022.53,60.79,449.11 +21.85,59.8,1016.89,75.28,454.26 +29.79,62.66,1008.5,48.51,440.27 +7.06,41.74,1021.95,90.38,448.97 +15.55,39.63,1004.98,89.82,466.83 +11.09,40.43,1025.47,74.97,490.96 +23.85,72.43,1008.01,88.34,439.02 +24.87,68.61,1011.19,55.69,450.54 +20.67,63.56,1013.27,79.39,450.7 +15.33,42.28,1008.19,66.15,465.2 +20.73,41.1,1001.86,47.51,456.44 +12.53,44.03,1007.21,84.2,470.04 +13.43,50.59,1020.38,86.3,469.33 +23.61,63.94,1012.9,87.06,441.57 +24.07,71.97,1008.83,94.87,441.84 +28.28,61.47,1009.44,60.89,443.12 +9.75,43.69,1016.81,82.42,481.34 +11.96,43.41,1017.42,79.44,469.34 +14.02,40.75,1016.05,70.65,470.48 +8.25,37.49,1009.02,81.09,480.38 +22.8,49.16,1006.4,77.05,439.65 +24.13,45.61,1012.63,71.36,453.19 +15.96,41.66,1011.93,55.47,466.39 +17.48,49.39,1021.51,84.53,460.01 +4.95,42.07,1004.87,80.88,485.67 +12.02,43.69,1016.12,74.06999999999998,477.74 +14.16,39.28,1015.63,77.29,471.27 +21.17,58.16,1017.16,68.11,452.02 +4.97,40.64,1020.91,94.28,485.43 +27.28,78.92,1011.05,75.48,434.78 +10.42,44.85,1014.18,88.36,479.03 +12.75,44.2,1017.59,81.22,471.03 +13.1,40.03,1017.79,84.48,470.75 +29.09,72.43,1006.86,65.47,427.3 +27.64,75.59999999999998,1017.35,54.78,441.04 +7.79,41.01,1024.0,97.2,477.0 +16.52,43.7,1015.08,58.36,466.73 +17.79,40.12,1012.74,79.03,459.13 +15.04,38.01,1022.46,78.29,468.12 +15.92,39.16,1006.59,71.32,460.45 +20.4,57.85,1011.14,92.47,450.07 +20.25,63.91,1009.27,97.97,448.37 +14.24,39.52,1018.22,77.19,468.51 +28.11,70.98,1007.76,85.6,431.83 +21.3,66.86,1013.04,55.43,450.56 +16.56,42.99,1007.48,74.45,464.62 +8.93,40.46,1019.03,71.0,472.77 +17.48,44.2,1018.89,61.51,457.15 +10.38,41.01,1020.8,94.26,465.9 +21.83,57.85,1012.49,75.16,448.21 +20.58,54.5,1015.04,89.83,467.76 +14.95,39.31,1009.15,75.3,462.72 +14.01,38.91,1015.86,69.24,470.1 +7.0,38.08,1020.27,77.67,482.38 +23.82,48.92,1010.48,44.45,446.85 +12.65,44.34,1019.4,71.45,468.8 +16.37,53.16,1014.89,74.84,459.52 +18.62,59.15,1012.85,82.54,450.81 +22.96,68.61,1011.15,76.62,447.18 +25.72,74.67,1016.64,75.93,434.83 +16.0,37.87,1020.24,78.41,461.33 +19.09,65.94,1012.53,81.06,446.34 +24.49,65.61,1014.71,63.47,447.26 +12.79,44.03,1007.46,95.93,464.35 +8.699999999999998,36.24,1013.34,89.5,478.69 +19.79,51.19,1008.77,94.72,447.96 +30.55,68.24,1009.43,63.84,426.8 +10.1,44.03,1008.11,90.29,471.59 +26.73,49.02,1007.75,67.73,438.17 +8.99,41.26,1020.52,91.96,476.09 +15.24,39.39,1013.01,74.23999999999998,469.79 +30.36,71.8,1010.9,63.27,437.4 +10.98,41.54,1019.94,69.83,479.08 +29.08,70.83,1007.98,51.95,430.91 +25.23,61.86,1013.0,76.18,441.48 +27.76,72.58,1009.04,84.96,429.25 +24.37,68.14,1005.22,59.27,440.22 +11.22,40.22,1011.01,81.67,476.7 +23.43,51.43,1011.31,73.55,444.09 +22.81,58.96,1013.5,55.66,452.89 +15.71,44.06,1018.34,71.69,465.05 +10.34,37.5,1010.35,95.56,474.08 +11.01,40.05,1015.46,89.22,474.2 +28.59,69.84,1003.79,67.31,427.53 +29.86,59.57,1011.24,64.02,439.44 +3.95,38.44,1016.75,79.65,492.46 +16.98,63.09,1020.44,95.18,450.55 +28.03,60.23,1010.23,66.04,438.88 +24.43,58.05,1011.88,71.39,445.68 +13.97,45.01,1017.44,89.15,461.96 +9.11,40.02,1031.1,83.02,479.03 +22.08,55.5,1018.42,58.46,455.79 +31.61,75.08,1004.83,42.29,436.67 +8.68,43.14,1011.94,79.06,480.73 +29.11,74.9,1003.31,74.01,432.43 +12.71,43.8,1023.15,71.16,466.2 +31.24,74.22,1007.74,48.77,430.44 +9.18,42.18,1017.4,87.3,475.57 +4.15,39.9,1007.62,95.69,489.8 +14.93,43.02,1012.11,45.56,468.19 +12.24,40.66,1017.4,96.22,464.7 +20.87,63.31,1012.27,79.51,446.7 +21.12,62.52,1015.62,78.98,450.93 +19.23,41.67,1012.53,48.86,465.66 +30.74,71.77,1006.24,53.38,434.89 +25.42,73.20999999999998,1001.91,93.78,432.04 +18.97,50.59,1016.01,74.9,459.68 +23.65,66.05,1019.6,78.20999999999998,442.9 +15.26,46.18,1013.68,98.58,463.6 +24.41,58.59,1012.62,64.52,442.64 +20.79,50.59,1017.75,73.34999999999998,456.01 +8.34,40.72,1023.62,83.75,483.14 +31.12,68.14,1003.67,67.36,427.06 +24.92,63.94,1017.7,44.92,441.07 +29.3,70.04,1010.95,61.23,426.25 +16.46,61.27,1020.02,74.54,456.64 +24.44,69.84,1005.34,80.37,430.3 +6.17,39.33,1012.57,93.32,491.54 +18.15,41.67,1012.75,52.69,464.44 +26.38,71.58,1011.02,80.9,434.26 +23.99,67.69,1007.9,78.56999999999998,437.1 +26.51,67.25,1017.85,64.17,435.52 +24.31,66.49,1011.38,54.35,440.79 +29.04,70.72,1009.55,66.58,437.95 +13.26,41.74,1021.89,63.32,473.44 +18.32,65.94,1012.74,86.77,450.5 +4.87,42.85,1012.69,94.72,482.05 +24.98,60.32,1016.39,63.12,446.46 +14.77,44.9,1020.5,84.31,465.23 +28.77,75.23,1010.01,59.0,437.93 +28.5,76.86,999.49,77.47,430.62 +11.62,41.54,1019.94,66.43,477.75 +23.21,74.22,1009.68,88.46,440.46 +30.12,73.18,1012.29,61.32,429.31 +11.63,41.5,1013.6,87.11,477.3 +19.8,58.79,1017.04,87.71,449.66 +30.22,70.32,1011.63,65.97,435.98 +17.55,43.14,1018.86,76.0,461.58 +8.27,37.7,1015.09,73.64,479.16 +31.01,69.13,1000.93,62.96,425.69 +28.64,73.4,1011.48,52.84,441.32 +10.81,45.0,1023.45,85.89,482.63 +25.62,73.17,1011.65,86.45,430.56 +30.28,58.9,1005.03,54.59,439.06 +3.63,38.44,1016.16,87.38,487.87 +9.73,41.01,1021.76,97.71,469.11 +6.72,39.85,1011.84,84.66,489.09 +20.58,49.15,1021.42,56.15,453.87 +27.99,71.58,1010.68,68.99,435.99 +18.36,53.16,1013.14,79.89,457.94 +30.08,73.42,1011.17,63.86,434.95 +25.6,63.9,1013.16,53.19,451.44 +27.41,59.21,1013.3,50.93,438.39 +7.51,43.02,1014.35,86.46,485.38 +13.42,41.74,1020.96,61.8,473.45 +28.18,60.07,1016.34,49.13,441.61 +17.3,43.72,1009.64,77.86,456.55 +24.96,70.47,1007.73,76.48,438.23 +21.04,45.09,1014.19,40.62,450.92 +22.17,65.61,1014.71,70.91,449.91 +26.98,72.58,1008.55,78.5,431.12 +30.13,78.05,1010.99,61.5,434.14 +9.68,41.48,1018.24,71.04,473.31 +21.95,68.08,1012.91,69.36,443.93 +15.09,44.34,1019.46,60.49,468.8 +23.83,58.79,1009.77,78.13,444.34 +13.86,40.66,1017.15,83.82,463.49 +22.79,69.13,1010.87,91.47,438.08 +26.71,77.95,1012.13,77.5,433.47 +28.69,67.25,1017.71,53.83,432.21 +18.27,51.43,1010.38,88.39,460.41 +24.24,68.3,1018.03,81.51,437.12 +11.8,45.09,1013.21,89.68,470.57 +17.19,58.86,1016.74,85.97,451.87 +18.55,61.87,1008.45,65.3,450.73 +15.5,44.92,1024.16,86.44,462.12 +24.22,56.89,1013.81,70.02,440.79 +11.91,43.22,1008.75,76.56999999999998,472.88 +14.48,46.18,1015.83,92.15,462.3 +14.73,58.2,1019.45,82.48,458.56 +11.91,40.69,1014.41,83.71,476.71 +22.48,50.05,1005.55,82.36,442.56 +27.72,69.88,1007.58,72.25,434.02 +15.03,44.45,1020.94,65.57,460.06 +24.18,59.92,1009.88,79.54,438.85 +21.97,58.79,1010.93,86.7,448.8 +15.51,41.76,1022.81,69.55,463.82 +25.89,58.86,1014.16,52.95,445.17 +19.13,42.18,1001.45,98.77,456.04 +26.82,69.05,1004.62,40.0,437.42 +23.04,48.06,1014.16,54.99,459.36 +6.05,42.85,1013.09,91.88,485.02 +30.94,64.44,1014.36,53.76,439.84 +25.32,48.41,1008.47,72.14,443.04 +26.92,68.27,1008.11,61.73,435.17 +23.48,51.43,1007.13,84.83,441.78 +25.66,71.77,1006.76,84.76,429.25 +17.46,53.29,1018.07,91.01,458.06 +26.18,69.84,1005.13,72.89,431.69 +10.07,39.66,1015.37,83.78,479.64 +30.99,69.82,1009.41,50.84,437.46 +31.85,73.91,1003.6,60.22,431.26 +32.2,72.29,1008.61,69.94,432.52 +22.08,41.1,1002.19,46.69,455.04 +16.32,43.56,1014.4,59.77,463.57 +24.94,59.07,1008.89,84.79,440.12 +8.3,36.3,1015.97,60.62,480.58 +18.81,45.01,1015.28,65.91,457.85 +17.61,56.53,1019.5,82.3,457.01 +27.01,43.77,1011.18,46.58,440.64 +28.69,67.25,1017.71,44.6,436.21 +13.66,40.55,1005.46,96.02,467.7 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/tabpfgen/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bf5572f6d84fd21b93494c2aae825637992d2c37 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/tabpfgen/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/tabpfgen/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6214f7c48e6466a09a16ccd79df0f3eaab2b1bad --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20-migrated-20260422_193053/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,119 @@ +{ + "dataset_id": "n20", + "model": "tabpfgen", + "target_column": "PE", + "task_type": "regression", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/temp/tabpfgen_regen_parallel_deadline/20260422_191739/n20/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/_tabpfgen_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..6241d927b121ba033b62e65051e5e0e2c31e84c0 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/_tabpfgen_generate.py @@ -0,0 +1,68 @@ +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/staged/public/train.csv") +target_col = "PE" + +feature_cols = [c for c in df.columns if c != target_col] + +# --- Label-encode categorical / object columns --- +cat_encodings = {} # col -> list of unique values (index = code) +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +# Encode target if categorical +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values + +# Handle NaN +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating 7654 rows via generate_regression") +X_syn, y_syn = gen.generate_regression(X, y, n_samples=7654) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +# --- Inverse label-encoding for categorical columns --- +for col, cats in cat_encodings.items(): + # Round to nearest integer index, clamp to valid range + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +syn_df = syn_df[list(df.columns)] +syn_df.to_csv("/work/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/tabpfgen-n20-7654-20260420_234424.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/tabpfgen-n20-7654-20260420_234424.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/gen_20260420_234424.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/gen_20260420_234424.log new file mode 100644 index 0000000000000000000000000000000000000000..9798032398226af783ca55557140db41f2db7ba8 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/gen_20260420_234424.log @@ -0,0 +1,13 @@ +[TabPFGen] Generating 7654 rows via generate_regression +Step 0/1000 +Step 100/1000 +Step 200/1000 +Step 300/1000 +Step 400/1000 +Step 500/1000 +Step 600/1000 +Step 700/1000 +Step 800/1000 +Step 900/1000 +[TabPFGen] Saved 7650 rows -> /work/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/tabpfgen-n20-7654-20260420_234424.csv +[W420 15:45:31.154416459 AllocatorConfig.cpp:28] Warning: PYTORCH_CUDA_ALLOC_CONF is deprecated, use PYTORCH_ALLOC_CONF instead (function operator()) diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..495aea56fe98182b4762782dddf8cfc7ef8cd3fe --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n20", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "exists": true, + "size": 291758, + "sha256": "8768b9641a081ce32375b2739c6d0a6cdf66c1b03268c7db5f71ffd0019c97e2" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "exists": true, + "size": 36657, + "sha256": "c2dae02f854856ba824310ecaca5c73a72a3302753396aa681c82b69d65b174c" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv", + "exists": true, + "size": 36232, + "sha256": "82c48522e82ea4c5e4c407ec9239e82558dcff1df413f3d0c382e77fa041bc88" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_profile.json", + "exists": true, + "size": 2675, + "sha256": "7e7d747ab11beae1e58278dc8d6ae08d7ae6f14fe93f77a4fc1e6e589df21df4" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_contract_v1.json", + "exists": true, + "size": 3047, + "sha256": "20f513ccbc9f09d5286bc8998a5772f42b78b40aa1ed60b079fa73edf9c78eec" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8618a420d9d101a283cfb38feb336ac37687988f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,112 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "columns": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91364f3480d02e634daea210e8cae28ad5402b46 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n20", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "PE", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..77f173bb70f25e722c6d45f286e5d084be323362 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/public_gate/staged_input_manifest.json @@ -0,0 +1,117 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3bfc947e139f2737f1308e582461b15ba64eb270 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "n20", + "model": "tabpfgen", + "run_id": "n20", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "skipped", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/n20/tabpfgen-n20-7654-20260420_234424.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/public/staged_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb807ac5b23b2e7dfb39b3a5378cd452e84d56ed --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/public/test.csv @@ -0,0 +1,959 @@ +AT,V,AP,RH,PE +14.72,41.23,997.91,82.69,467.11 +11.94,40.66,1016.61,96.11,467.99 +27.56,66.93,1016.81,55.59,444.1 +9.59,34.69,1027.65,75.31999999999998,478.88 +7.46,41.82,1032.67,74.59,483.11 +15.52,36.99,1006.86,89.7,467.9 +15.47,43.13,1015.11,50.5,466.63 +21.84,45.09,1013.94,46.11,450.88 +19.83,51.43,1007.36,91.64,449.45 +29.3,67.69,1007.17,55.5,430.72 +6.63,39.42,1024.81,72.58,482.02 +22.88,69.45,1014.02,65.13,441.76 +11.97,42.32,1016.95,88.32,467.98 +29.25,67.32,1013.88,38.57,437.94 +14.89,39.58,1012.26,77.58,465.95 +10.39,44.85,1014.22,78.42,478.05 +25.66,77.54,1008.22,78.42,432.82 +16.5,49.39,1018.35,93.42,462.48 +28.55,74.33,1011.77,73.34,426.48 +7.84,40.07,1016.68,47.63,488.7 +27.14,71.32,1007.8,87.99,431.96 +25.18,71.98,1006.71,89.86,432.88 +6.01,35.79,1011.26,90.72,482.79 +14.54,41.17,1015.15,67.78,470.19 +11.8,43.22,1008.57,78.01,469.55 +23.82,44.89,1009.39,74.69,445.45 +32.81,71.32,1007.69,47.29,434.38 +30.63,74.22,1007.47,46.52,430.38 +25.43,70.17,1000.46,87.84,436.43 +30.17,76.86,998.23,73.61,430.3 +26.27,58.33,1013.81,60.43,438.82 +26.02,63.07,1010.94,53.96,446.82 +14.64,39.31,1008.84,79.3,462.72 +19.99,65.94,1012.28,75.42,447.22 +32.9,68.51,1012.95,50.09,430.23 +20.3,44.9,1008.25,64.08,457.6 +22.86,47.43,1009.75,61.54,452.53 +10.82,44.63,1020.64,90.26,473.23 +13.15,42.44,1014.51,99.53,469.34 +27.4,66.48,1004.71,51.5,439.66 +4.96,40.07,1011.8,67.38,494.75 +8.67,36.66,1026.8,84.36,480.38 +25.97,43.21,1011.9,88.73,434.83 +10.23,42.32,1017.53,89.93,473.59 +27.66,59.21,1013.12,51.58,438.57 +27.21,68.12,1012.96,54.69,435.2 +19.72,65.94,1010.53,82.12,446.84 +8.87,41.82,1033.3,74.28,477.97 +15.29,25.88,1009.21,66.0,464.25 +19.48,39.72,1001.75,55.41,457.16 +10.93,39.16,1016.54,90.56,479.83 +20.84,51.19,1008.63,84.11,448.98 +9.01,40.77,1022.37,90.3,470.84 +21.08,63.13,1013.53,98.0,443.51 +14.94,40.0,1017.69,65.43,456.41 +28.37,63.31,1013.18,49.02,437.64 +23.45,45.61,1012.84,73.42,454.92 +12.76,42.32,1015.35,78.18,466.15 +13.86,44.21,1022.6,83.56,468.3 +24.51,51.95,1005.57,63.53,449.73 +5.04,40.64,1021.35,93.63,484.42 +14.24,45.01,1013.54,88.68,461.64 +11.17,39.72,1002.4,81.4,474.64 +11.94,44.2,1017.97,82.93,474.02 +9.28,41.54,1018.33,79.89,482.8 +28.91,58.33,1013.84,39.72,437.53 +16.89,49.21,1015.19,70.39,458.25 +16.34,36.99,1006.99,90.06,466.24 +16.41,47.24,1015.75,88.78,457.94 +19.44,39.53,1006.99,63.18,457.09 +9.37,40.11,1024.94,75.03,471.13 +13.64,44.88,1019.85,56.86,466.66 +16.19,36.99,1007.37,92.4,462.94 +18.75,63.09,1018.19,87.84,450.98 +15.97,45.01,1016.58,83.24,456.91 +19.5,52.72,1025.21,50.21,457.26 +10.49,42.49,1009.81,78.92,478.75 +20.78,62.52,1017.58,73.3,452.3 +7.41,40.81,1026.15,88.96,488.48 +25.38,72.23999999999998,1010.76,89.64,432.3 +4.0,39.9,1009.64,97.16,490.79 +30.61,68.84,1011.18,52.5,439.9 +28.57,75.33,1003.16,76.14,431.58 +15.37,41.96,1011.58,96.76,466.02 +31.56,66.44,1008.91,64.16,430.11 +16.69,46.18,1010.8,96.8,466.03 +22.0,51.3,1012.87,85.79,450.18 +28.31,74.34,998.42,79.23,431.95 +15.7,44.21,1021.26,86.83,462.19 +21.79,58.2,1017.21,66.74,446.94 +25.67,58.59,1013.0,62.34,451.03 +20.59,59.8,1015.27,77.94,453.83 +16.14,44.21,1020.36,80.59,461.03 +25.61,47.43,1008.62,54.51,442.96 +7.61,44.71,1019.41,70.48,485.36 +30.32,64.69,1006.35,51.36,436.72 +29.45,68.27,1007.96,61.63,432.96 +29.28,77.17,1009.4,76.3,433.14 +5.62,41.31,1001.37,89.16,485.6 +24.86,44.05,1005.69,66.65,447.2 +6.17,40.07,1013.7,58.99,495.21 +13.65,41.58,1020.56,72.17,460.8 +3.96,35.47,1016.79,83.81,489.68 +6.49,39.33,1010.85,91.85,489.22 +31.32,71.29,1008.37,50.07,430.46 +8.07,43.69,1017.05,87.34,485.18 +13.35,39.64,1010.1,93.3,471.69 +26.21,56.85,1011.45,41.37,439.55 +5.71,40.77,1022.51,89.58,485.75 +18.98,60.1,1010.09,85.34,453.37 +6.07,38.91,1019.25,83.39,483.56 +26.92,78.92,1011.65,96.22,434.64 +24.44,47.93,1003.13,67.04,440.53 +14.45,52.75,1023.97,63.59,459.85 +26.44,71.64,1004.55,85.53,435.61 +30.7,74.22,1008.12,50.39,432.51 +6.48,36.24,1013.62,92.03,484.65 +30.47,70.83,1010.91,46.94,444.39 +13.78,38.28,1014.8,81.19,467.43 +19.65,62.1,1019.46,77.81999999999998,449.13 +9.51,43.79,1016.02,79.81,481.12 +16.31,52.75,1024.4,55.69,456.58 +13.08,39.82,1012.27,85.21,476.96 +20.72,44.57,1008.96,72.56999999999998,449.76 +9.77,41.44,1017.69,78.26,481.74 +26.12,66.75,1017.86,79.02,433.67 +10.95,43.8,1022.61,63.46,473.2 +11.01,43.69,1016.7,81.48,477.3 +17.36,52.9,1015.42,69.97,458.66 +16.7,46.18,1011.4,95.51,458.05 +11.95,42.07,1018.52,84.73,467.91 +18.3,44.06,1017.95,63.24,456.32 +14.69,35.71,1015.78,57.34,467.39 +30.82,76.2,1007.47,59.3,432.22 +22.36,58.79,1016.69,73.59999999999998,445.76 +23.89,64.27,1013.37,75.22,450.82 +5.75,42.07,1004.24,78.23,485.23 +26.64,69.13,1010.6,79.23,430.41 +23.08,48.41,1008.44,82.35,443.5 +29.76,57.19,1008.59,51.1,436.21 +32.8,68.67,1005.27,44.53,432.28 +24.63,65.38,1010.43,40.68,446.23 +11.02,43.02,1012.32,66.54,478.81 +32.13,69.98,1013.3,55.85,431.84 +23.81,60.08,1017.29,62.66,450.33 +8.09,38.5,1012.99,67.31,484.81 +32.63,69.89,1013.85,41.66,425.72 +13.27,52.75,1025.86,65.12,464.82 +29.3,68.08,1011.23,56.23,434.11 +26.3,77.95,1009.45,78.72,437.95 +28.52,70.02,1010.34,54.21,441.98 +17.86,50.88,1015.59,88.28,457.33 +7.92,41.66,1014.84,76.12,483.38 +3.74,35.19,1018.58,98.84,490.5 +21.33,63.86,1020.33,72.13,445.02 +30.36,74.87,1008.96,61.87,435.31 +14.23,46.18,1017.39,87.29,463.86 +9.55,41.44,1015.07,85.94,481.75 +9.78,41.93,1023.18,75.05,484.03 +30.8,73.17,1010.51,51.93,432.24 +15.48,47.83,1004.88,81.68,463.67 +16.58,46.18,1010.4,96.29,463.51 +20.32,39.72,1001.38,57.21,456.18 +11.83,43.14,1010.06,88.14,471.98 +26.75,56.57,1013.76,57.93,443.92 +14.13,48.92,1011.72,78.06,464.17 +19.91,51.19,1008.0,90.23,449.23 +14.37,40.56,1021.67,68.18,470.19 +17.27,44.9,1007.85,78.8,454.19 +9.59,38.56,1017.52,61.89,481.05 +28.04,70.32,1011.28,78.16,435.42 +18.18,44.63,1020.41,48.64,455.57 +32.27,71.85,1008.06,59.28,429.72 +19.02,44.85,1014.57,43.37,465.42 +13.47,43.34,1012.75,87.04,468.8 +12.25,40.75,1016.02,82.4,475.07 +27.45,64.34,1007.12,65.87,440.0 +29.96,67.83,1008.0,44.05,433.13 +12.55,38.91,1012.58,75.44,474.35 +31.92,75.33,1002.13,65.73,431.32 +21.55,60.27,1017.42,92.59,443.93 +20.14,46.33,1013.24,83.39,453.35 +18.33,44.34,1019.55,51.69,468.8 +8.65,40.56,1023.23,78.84999999999998,485.87 +26.99,62.26,1011.13,71.27,436.89 +14.4,41.26,1021.41,73.11,462.78 +18.35,62.1,1019.97,78.36,455.29 +16.76,43.77,1012.25,77.95,457.0 +11.82,42.86,1014.12,88.28,476.7 +20.78,68.28,1008.75,60.87,450.57 +29.35,54.2,1013.07,42.45,439.47 +22.63,45.61,1014.14,73.06,457.88 +22.83,65.18,1012.24,79.73999999999998,442.43 +6.74,36.08,1020.36,86.98,484.18 +31.54,71.06,1008.4,71.77,431.87 +23.24,45.01,1012.21,45.23,457.01 +32.74,68.31,1010.23,41.29,441.66 +14.18,39.3,1020.1,67.48,464.32 +25.86,59.92,1009.92,73.95,436.06 +14.05,40.69,1015.66,74.39,470.9 +23.78,69.71,1008.79,83.17,443.06 +14.14,39.59,1010.84,96.02,465.23 +11.77,40.71,1024.55,72.48999999999998,477.94 +23.77,64.15,1021.02,55.87,448.43 +9.61,44.03,1008.3,91.36,473.54 +22.42,62.52,1016.83,63.27,451.64 +24.85,68.37,1006.5,68.37,442.66 +17.69,44.34,1019.31,61.12,464.13 +3.21,38.44,1017.11,84.86,492.93 +18.45,42.44,1013.45,63.52,459.79 +11.48,44.6,1018.29,90.76,470.39 +17.37,48.92,1011.91,58.4,455.53 +6.22,39.33,1012.31,93.23,491.77 +12.74,49.83,1007.44,91.47,466.09 +22.56,70.79,1005.85,93.09,435.14 +24.35,58.49,1011.03,70.64,445.6 +16.58,44.68,1021.5,83.38,458.87 +25.47,70.36,1005.79,77.73,437.02 +30.88,69.51,1011.48,46.58,433.14 +6.64,39.04,1018.84,74.94,481.53 +12.65,41.93,1023.07,65.05,479.53 +8.91,40.11,1022.87,78.39,475.43 +5.57,42.85,1013.55,92.14,488.85 +16.09,44.2,1019.39,67.24,460.56 +20.98,60.07,1016.26,67.18,446.26 +14.93,39.16,1007.25,72.34999999999998,463.2 +24.19,58.95,1017.78,58.78,441.91 +23.86,52.84,1006.56,48.94,444.66 +15.59,52.05,1013.67,78.55,456.07 +26.04,74.67,1016.68,81.2,433.55 +22.35,54.42,1012.46,75.01,454.72 +10.57,36.71,1022.11,82.39,472.62 +6.16,38.5,1012.83,93.68,490.92 +24.12,62.44,1013.83,88.02,443.3 +28.24,71.58,1010.1,67.92,434.01 +21.11,69.94,1004.37,84.26,439.91 +11.49,44.63,1020.44,86.04,471.08 +24.92,60.95,1014.88,60.58,445.44 +23.56,67.79,1010.14,89.72,441.29 +7.54,40.72,1023.82,85.15,485.92 +26.85,75.59999999999998,1017.43,74.55,433.48 +12.14,44.85,1014.36,60.04,476.68 +17.03,43.99,1021.5,82.32,460.25 +31.41,64.44,1013.84,49.49,439.3 +14.73,40.35,1011.15,65.2,470.03 +24.04,59.43,1007.6,76.98,437.51 +21.03,44.78,1007.99,36.82,459.72 +22.61,42.8,1014.24,69.71,460.26 +17.36,44.63,1020.49,54.21,456.98 +26.82,64.96,999.72,63.55,427.51 +18.19,44.06,1017.24,78.73,456.13 +24.38,47.01,1015.17,68.96,454.85 +12.98,39.64,1013.95,74.39,473.54 +14.17,43.13,1014.94,48.62,471.08 +18.71,54.9,1017.12,74.79,456.88 +12.8,44.34,1016.52,86.73,473.42 +16.71,46.18,1012.06,96.6,458.4 +22.99,60.77,1017.97,78.47,447.62 +28.34,63.77,1013.7,61.13,439.75 +34.53,73.03,1013.53,36.74,437.03 +10.16,40.8,1028.13,86.39,477.49 +27.28,44.89,1009.02,49.9,441.94 +22.75,58.86,1016.0,67.34,448.32 +25.01,59.54,1007.91,80.93,441.3 +23.64,63.31,1014.5,61.83,440.7 +8.85,41.06,1020.99,86.05,486.4 +19.65,63.91,1009.26,99.08,444.9 +18.22,44.34,1019.35,56.78,469.27 +9.68,40.77,1022.04,85.23,473.73 +17.49,40.55,1001.73,73.15,462.37 +21.79,61.45,1011.11,91.78,446.99 +21.06,62.91,1011.92,75.52,455.22 +23.72,58.62,1016.32,71.17,447.13 +30.93,73.42,1010.98,56.42,432.44 +5.98,38.91,1016.5,91.83,488.85 +13.45,41.16,1022.04,82.96,460.57 +12.23,43.69,1016.46,84.4,471.62 +8.13,39.96,1026.07,95.84,477.12 +29.0,77.54,1011.33,75.13,431.37 +11.61,52.75,1020.94,77.56,464.68 +19.4,49.69,1012.89,75.53,455.6 +5.0,40.64,1021.05,94.84,485.27 +23.46,57.85,1012.7,65.54,444.66 +18.51,48.06,1015.14,79.83,455.44 +29.29,70.36,1006.64,60.82,431.26 +27.55,64.96,999.73,57.34,431.33 +21.82,63.9,1014.48,92.53,447.29 +17.03,47.83,1004.94,79.68,460.43 +17.18,46.0,1002.74,100.1,454.02 +18.14,49.78,1002.95,100.09,451.44 +12.39,49.83,1007.6,92.43,468.43 +20.39,64.15,1021.31,62.35,457.37 +22.72,64.15,1021.14,60.34,453.13 +20.3,58.41,1014.05,86.38,451.74 +21.46,58.18,1007.45,95.33,444.12 +28.99,68.24,1008.75,66.57,428.28 +12.07,40.81,1025.63,68.02,475.96 +15.4,40.69,1015.1,70.25,471.66 +9.59,37.14,1013.8,72.84999999999998,474.74 +7.64,40.02,1031.58,71.19,479.43 +15.42,37.85,1009.89,85.8,467.33 +11.75,42.32,1015.28,77.25,470.44 +19.51,48.78,1021.03,86.33,453.27 +31.86,73.88,1005.6,57.68,435.91 +12.4,40.35,1011.46,79.48999999999998,476.44 +28.11,69.84,1004.68,67.08,427.33 +8.74,40.03,1016.81,93.37,481.07 +24.32,58.79,1016.8,65.61,442.78 +13.72,44.47,1027.2,68.89,470.66 +6.11,38.68,1017.53,79.23,482.97 +16.74,39.16,1005.68,71.17,460.47 +8.52,41.55,1002.09,86.81,483.63 +20.55,68.63,1012.5,67.07,453.47 +22.63,58.49,1010.94,72.7,448.38 +18.13,60.1,1009.67,84.75,455.82 +12.51,43.67,1013.24,91.55,471.96 +21.02,61.5,1008.52,77.73999999999998,448.08 +6.99,40.07,1014.83,54.36,490.11 +16.37,36.99,1006.37,90.11,463.76 +15.68,39.16,1006.09,75.62,461.98 +22.17,60.27,1018.21,89.55,443.31 +26.7,49.02,1007.68,67.97,438.92 +19.55,39.39,1013.55,57.82,464.36 +27.74,74.78,1010.05,60.82,436.87 +18.09,43.72,1008.64,74.15,453.02 +11.49,35.76,1019.08,60.04,472.45 +23.67,63.86,1019.67,57.95,441.73 +32.02,67.83,1007.77,53.31,426.55 +20.38,62.52,1017.85,75.56,456.56 +5.02,45.87,1007.8,99.22,481.03 +26.24,51.43,1011.32,59.52,447.91 +14.47,41.76,1021.98,78.41,464.0 +24.16,60.29,1018.09,63.49,446.17 +10.07,40.92,1021.84,84.18,471.71 +10.73,44.92,1025.1,85.4,476.81 +16.81,42.86,1013.83,77.11,464.36 +27.52,74.67,1015.77,72.01,433.56 +13.96,40.83,1009.89,84.86,469.86 +22.78,49.16,1002.29,64.28,444.99 +22.77,70.32,1012.04,82.43,440.67 +8.64,41.66,1014.14,80.44,481.89 +27.33,66.17,1011.06,64.55,443.89 +19.07,49.69,1007.22,76.79,453.09 +24.1,68.61,1010.97,74.87,443.75 +14.6,42.32,1015.71,77.03,464.67 +14.77,44.47,1028.38,71.18,464.25 +9.14,38.91,1018.62,89.88,476.57 +14.85,45.87,1009.37,84.65,462.67 +8.47,41.03,1021.72,70.16,485.1 +23.79,59.44,1012.53,79.48,448.67 +26.63,64.44,1012.66,61.19,442.0 +12.88,44.34,1016.03,88.51,474.94 +12.73,44.34,1015.11,93.55,472.94 +17.2,40.55,1000.68,72.67,462.55 +10.05,41.17,1018.98,83.71,481.38 +28.37,75.59999999999998,1017.48,55.19,439.25 +25.61,60.32,1015.77,56.48,443.96 +20.34,46.63,1013.16,79.08,453.62 +20.21,58.12,1015.36,79.18,453.19 +21.19,58.86,1014.19,68.96,452.43 +29.71,73.18,1012.35,63.06,427.04 +15.24,37.87,1020.52,84.49,463.09 +17.35,42.86,1014.62,74.16,465.16 +13.5,45.51,1015.33,86.95,469.08 +25.94,77.23999999999998,1007.97,84.82,432.88 +5.51,35.57,1026.3,78.97,489.36 +26.16,52.36,1013.62,58.52,453.08 +15.17,49.15,1021.91,91.73,461.89 +14.57,42.18,1015.13,74.89,465.75 +12.16,45.0,1021.51,50.52,482.99 +25.1,60.37,1005.83,72.53,438.44 +13.57,39.39,1014.01,82.12,471.44 +20.25,55.5,1020.03,69.33,455.13 +11.23,39.72,1018.46,60.62,475.04 +12.52,42.34,1018.67,95.29,464.71 +8.68,39.61,1021.54,77.98,486.31 +8.18,40.02,1031.45,73.66,478.81 +21.93,60.84,1017.8,82.61,443.89 +30.69,71.98,1004.53,65.86,430.33 +12.08,41.39,1019.45,78.3,477.8 +9.08,42.49,1010.67,85.35,481.46 +20.33,57.76,1016.47,75.34999999999998,450.25 +31.03,69.98,1011.33,52.16,436.13 +6.03,41.14,1028.04,87.46,479.61 +14.02,42.86,1030.86,68.36,467.29 +20.51,45.38,1014.29,69.14,461.87 +28.17,63.13,1012.44,66.61,439.94 +18.83,63.91,1010.8,96.18,448.15 +25.52,63.94,1017.81,41.54,440.32 +22.61,49.3,1003.51,83.02,441.76 +28.61,68.12,1011.71,47.57,432.94 +18.43,56.03,1020.41,60.55,465.17 +13.41,54.3,1016.48,79.28,467.88 +11.11,40.55,1023.91,87.12,476.37 +33.97,72.29,1008.98,44.32,432.33 +18.41,62.1,1020.4,78.09999999999998,457.14 +22.4,58.12,1015.24,78.03,449.13 +25.1,61.47,1007.84,75.75,447.27 +28.73,68.3,1016.53,55.73,434.15 +11.47,43.67,1012.68,72.51,475.72 +11.19,40.64,1020.57,84.49,472.86 +10.38,43.02,1013.37,78.53,474.44 +30.09,69.48,1009.51,53.24,435.2 +26.72,65.61,1014.41,52.01,442.48 +19.14,56.65,1020.84,82.97,458.06 +21.25,44.05,1005.69,81.87,448.43 +15.55,45.09,1014.33,62.19,457.36 +12.28,42.34,1019.19,95.8,467.03 +31.93,72.58,1006.9,56.27,425.14 +24.9,71.77,1006.24,85.25,427.77 +23.71,67.17,1007.27,90.2,440.65 +31.05,62.7,1009.35,55.27,441.67 +10.08,40.72,1022.7,67.3,480.8 +22.31,61.45,1009.25,98.56,437.05 +24.01,42.48,1011.39,55.1,453.12 +21.75,49.82,1015.01,78.33,455.28 +29.3,73.67,1005.64,65.31,431.07 +12.27,41.17,1019.39,52.18,473.84 +16.51,41.79,1007.1,74.03,457.74 +26.26,63.73,1010.45,70.61,442.18 +31.33,73.03,1014.18,49.28,438.49 +21.81,65.06,1014.6,66.41,447.13 +14.93,39.39,1014.31,80.68,468.88 +33.87,71.32,1007.91,39.48,435.89 +28.09,63.31,1013.01,52.6,438.6 +18.06,56.65,1020.2,81.59,459.14 +20.36,56.53,1020.25,72.95999999999998,455.34 +29.58,76.2,1008.37,60.73,433.91 +9.62,41.01,1019.43,97.99,467.34 +25.08,58.49,1011.1,64.47,446.9 +24.33,60.32,1015.49,59.95,445.36 +30.93,70.83,1010.61,46.13,440.59 +22.04,58.05,1013.11,85.22,447.28 +5.74,45.87,1011.44,95.94,482.0 +24.17,71.25,1003.9,90.36,435.66 +5.95,39.48,1005.16,63.6,486.07 +27.51,63.73,1009.97,66.14,440.81 +28.62,70.32,1008.87,46.67,431.03 +20.48,60.29,1017.16,72.09999999999998,455.51 +27.03,71.14,1010.33,66.25,430.41 +28.31,70.32,1007.88,47.0,432.5 +16.6,41.93,1022.01,48.98,467.51 +14.67,71.14,1019.84,77.72,458.8 +5.68,40.35,1012.11,92.86,486.79 +29.66,59.22,1013.25,61.2,441.58 +6.99,39.37,1020.19,75.06,487.18 +25.61,74.22,1010.26,75.15,438.45 +11.31,39.61,1018.74,68.9,471.92 +29.04,76.09,1007.52,75.44,430.32 +16.5,53.29,1017.7,95.66,458.37 +22.26,60.77,1018.26,85.94,442.58 +25.95,59.92,1010.05,76.05,443.93 +28.09,70.02,1010.84,51.29,437.83 +8.36,40.67,1014.99,73.65,489.1 +24.88,49.16,1006.04,64.54,445.18 +14.34,42.86,1031.75,66.81,466.17 +18.16,39.99,1008.13,68.5,461.16 +20.57,44.9,1008.39,62.69,456.18 +16.85,39.64,1008.82,80.81,464.2 +24.56,63.21,1013.79,82.38,444.34 +9.54,41.17,1019.79,65.61,481.18 +21.43,60.95,1015.27,75.48999999999998,449.12 +24.15,71.73,1009.76,85.16,436.55 +21.87,74.87,1009.28,85.4,442.37 +15.3,41.76,1022.57,71.56,466.59 +19.45,41.1,1001.88,52.16,458.26 +27.99,71.64,1007.79,72.67,437.81 +21.03,69.05,1002.17,75.34999999999998,444.35 +31.84,77.95,1014.9,55.35,433.28 +29.83,71.43,1011.93,55.8,439.34 +10.08,37.92,1010.47,66.37,474.63 +18.36,51.43,1010.57,90.17,459.8 +16.4,38.01,1022.2,73.05,463.79 +13.03,42.86,1014.39,86.25,475.03 +18.88,62.96,1020.62,82.01,456.18 +11.87,41.78,1012.97,64.79,470.84 +23.16,57.76,1017.74,63.79,451.79 +15.39,42.28,1007.35,81.34999999999998,467.3 +16.84,56.03,1020.25,70.37,437.14 +14.65,44.84,1023.39,87.76,467.18 +18.97,44.85,1014.86,46.31,466.17 +26.22,69.89,1015.46,76.63,433.61 +7.07,37.49,1010.35,87.19,481.58 +17.4,44.9,1020.5,77.11,457.75 +30.05,73.68,1014.95,70.6,434.92 +14.01,45.08,1023.28,82.49,464.79 +23.24,63.78,1017.1,63.8,446.95 +23.03,65.12,1016.29,69.8,447.84 +8.58,40.72,1022.04,87.55,480.96 +24.92,48.92,1010.11,36.53,445.56 +25.8,65.38,1009.3,52.28,450.5 +26.31,48.6,1002.64,60.04,440.06 +29.13,62.26,1010.51,52.94,436.37 +11.02,41.17,1018.18,86.86,477.62 +13.61,39.85,1012.78,58.12,475.62 +23.32,69.13,1010.75,91.84,435.27 +30.45,43.21,1011.35,63.59,438.68 +31.7,70.36,1006.26,58.18,438.38 +23.62,73.67,1007.0,90.8,438.33 +12.45,43.67,1013.61,91.34,474.27 +28.85,68.12,1012.05,46.31,436.15 +18.4,43.69,1016.59,52.44,462.05 +28.97,78.92,1011.71,88.5,430.98 +4.93,35.19,1018.04,92.94,486.39 +13.75,44.47,1029.63,70.74,467.14 +16.64,44.9,1021.02,70.34,460.93 +19.04,68.28,1004.52,86.16,444.54 +15.89,43.96,1014.02,75.23999999999998,467.35 +29.03,67.79,1010.67,55.42,444.09 +14.97,58.2,1019.52,81.13,458.68 +16.23,43.52,1020.13,76.3,464.74 +14.74,44.47,1028.29,67.87,462.92 +9.75,52.72,1026.03,78.53,473.41 +27.18,59.27,1012.57,64.18,439.69 +16.22,50.88,1014.33,100.09,454.94 +6.62,42.49,1008.74,94.57,482.74 +9.33,44.03,1011.73,86.04,474.15 +23.14,62.26,1011.87,66.44,444.38 +14.52,40.35,1011.11,69.84,470.8 +33.71,69.98,1013.09,42.62,431.99 +14.84,42.03,1017.47,79.27,466.2 +13.48,41.92,1030.2,65.96,463.9 +31.4,71.06,1008.44,74.77,433.34 +27.44,66.56,1005.51,69.28,428.0 +22.68,70.47,1010.86,82.8,441.47 +9.03,40.71,1025.98,81.94,484.97 +14.36,41.26,1021.16,73.43,462.25 +10.06,43.22,1014.1,85.7,473.0 +22.76,49.02,1007.5,88.56,442.84 +24.79,75.59999999999998,1017.07,68.23,440.05 +34.97,73.56,1006.57,44.69,435.15 +27.64,75.59999999999998,1017.35,54.78,441.04 +18.37,51.86,1018.8,74.3,461.14 +7.91,39.96,1023.57,88.44,475.52 +21.8,65.94,1012.02,63.52,448.66 +29.42,71.32,1002.26,67.13,437.47 +19.01,58.46,1017.14,90.99,446.18 +24.01,67.17,1007.44,86.87,443.09 +11.69,39.22,1017.05,55.51,472.76 +22.01,58.46,1016.26,75.98999999999998,443.75 +13.74,42.74,1029.54,70.0,465.92 +12.27,43.8,1023.21,57.0,468.55 +12.88,43.8,1023.19,59.18,468.19 +32.06,71.85,1007.9,56.44,426.07 +23.46,59.27,1010.6,79.79,445.57 +24.41,52.3,1006.28,70.33,442.62 +13.22,44.92,1023.84,87.99,471.43 +13.69,40.83,1008.53,84.81,471.26 +10.31,45.01,1018.42,93.67,473.74 +21.41,54.2,1011.37,82.28,448.11 +24.49,65.46,1015.77,44.95,445.27 +25.72,49.82,1016.19,60.1,452.33 +18.73,46.48,1007.19,79.23,450.74 +22.88,59.21,1011.51,86.93,440.25 +26.59,60.96,1011.9,52.41,439.77 +30.38,71.58,1010.17,50.45,433.75 +18.94,47.83,1005.18,78.59,455.19 +25.17,64.79,1017.87,63.26,442.15 +20.55,48.98,1016.1,63.89,452.52 +10.03,42.18,1017.3,85.99,475.74 +25.03,60.27,1017.9,72.04,438.24 +7.82,41.16,1023.3,87.7,475.66 +33.43,69.88,1006.86,44.84,435.59 +11.33,41.5,1013.58,88.7,475.01 +12.34,40.62,1016.28,53.6,466.47 +4.78,42.85,1013.07,94.72,479.09 +14.03,49.15,1020.5,83.65,467.16 +26.11,47.43,1009.01,56.09,445.36 +24.67,70.94,1007.99,75.64,443.51 +14.28,44.84,1024.84,79.09,474.57 +26.74,59.87,1012.5,62.88,447.88 +29.83,62.66,1007.98,47.07,438.71 +17.51,44.9,1009.05,74.91,455.01 +30.05,69.34,1008.26,61.5,436.82 +15.85,49.69,1015.48,88.65,464.72 +32.5,71.37,1003.75,43.8,433.7 +30.56,69.04,1009.29,55.73,442.24 +23.32,69.23,1011.75,75.59,436.18 +18.0,52.08,1003.07,100.09,450.85 +25.45,70.04,1011.2,82.48,430.2 +17.37,40.55,1001.19,71.42,460.97 +16.43,41.79,1005.47,76.89,455.85 +19.15,44.89,1009.6,74.52,451.09 +16.0,39.16,1016.37,77.63,468.49 +10.87,44.71,1021.38,58.22,484.63 +21.98,55.97,1009.12,89.51,442.65 +21.92,61.87,1009.68,58.83,445.52 +14.62,42.86,1015.56,84.5,470.79 +20.9,67.07,1005.43,82.85,443.46 +23.45,69.04,1010.5,80.77,442.48 +7.31,43.02,1014.19,86.43,484.82 +22.21,61.87,1010.9,54.22,446.62 +20.83,49.02,1009.45,91.92,445.31 +14.71,44.0,1024.98,85.08,462.87 +19.92,63.31,1015.02,82.71,443.54 +31.85,73.20999999999998,1000.98,72.2,435.94 +24.1,71.97,1009.92,91.27,443.09 +12.42,38.25,1012.76,82.23,472.3 +28.79,70.79,1003.83,65.9,425.64 +17.05,44.88,1017.69,88.19,459.63 +31.59,62.7,1009.3,50.16,442.58 +14.93,41.79,1008.88,81.48,456.75 +24.44,69.13,1011.1,87.62,434.34 +26.05,65.59,1012.78,67.03,437.04 +26.48,51.43,1006.76,74.3,438.1 +17.19,37.2,1011.84,67.59,468.4 +6.25,39.04,1019.65,71.27,484.14 +31.12,67.69,1005.3,50.46,425.21 +11.16,40.05,1014.95,88.38,479.11 +31.16,69.88,1007.01,68.28,433.24 +19.27,43.14,1013.17,39.85,463.14 +17.79,43.52,1020.65,68.29,458.57 +22.76,58.96,1013.85,55.95,454.05 +5.66,39.42,1024.7,78.52,482.11 +21.75,67.45,1014.89,67.09,445.1 +24.66,58.86,1013.86,56.39,444.42 +18.16,39.99,1007.73,70.54,463.69 +25.26,61.08,1013.68,71.72,447.46 +23.6,48.98,1015.41,48.28,448.43 +22.89,65.34,1015.53,61.0,450.53 +28.82,71.43,1011.51,58.58,443.68 +21.57,69.23,1011.94,81.73,437.55 +11.03,42.32,1017.26,90.56,470.92 +15.75,39.16,1016.31,77.98999999999998,468.87 +13.67,44.92,1023.6,85.35,467.71 +11.58,39.69,1005.17,86.55,469.6 +32.31,62.04,1010.41,39.39,450.13 +23.67,72.23999999999998,1011.22,90.45,435.94 +11.29,35.76,1019.32,58.91,473.74 +13.58,49.83,1008.9,86.8,465.82 +10.54,41.93,1016.64,93.52,479.65 +24.96,74.98999999999998,1008.25,80.52,440.91 +24.53,74.78,1009.9,78.34,446.3 +12.12,41.17,1017.68,78.72,470.67 +22.99,56.57,1013.93,78.77,445.44 +31.15,67.45,1014.85,42.11,431.97 +20.2,64.45,1009.03,61.77,452.33 +10.9,41.46,1016.66,86.2,479.45 +27.04,48.41,1008.57,60.73,441.21 +29.72,74.78,1009.32,55.25,438.19 +29.86,69.34,1007.76,54.12,433.57 +28.18,73.88,1005.89,75.41,434.48 +27.0,69.4,1004.86,82.2,433.83 +33.63,70.4,1004.02,53.6,430.05 +10.44,37.83,1006.31,97.2,474.42 +13.39,49.83,1007.14,90.88,466.04 +9.0,43.13,1020.25,81.31999999999998,481.09 +18.94,48.7,1008.5,94.83,451.38 +26.14,71.98,1005.98,82.45,428.91 +5.11,42.07,1004.28,81.8,486.41 +26.62,65.12,1016.0,43.24,441.22 +25.69,62.26,1011.38,74.08,436.36 +8.13,39.99,1011.71,87.89,486.19 +9.97,41.62,1013.99,96.02,464.86 +6.58,43.02,1014.03,84.95,488.22 +13.9,42.86,1030.82,71.89,473.76 +12.33,39.28,1011.84,80.01,476.49 +7.26,36.08,1021.47,83.15,483.58 +12.29,40.03,1017.62,89.64,472.65 +33.82,77.17,1008.96,58.91,435.58 +9.27,40.22,1008.1,89.24,481.23 +23.44,62.52,1016.46,67.21,447.19 +31.63,69.59,1008.66,61.81,436.89 +27.28,51.43,1011.46,51.38,450.53 +21.45,45.09,1013.83,52.26,453.15 +25.14,69.13,1011.15,85.67,433.95 +20.12,45.09,1013.73,57.78,448.35 +16.36,53.82,1015.05,71.95,461.62 +19.77,65.06,1016.22,74.95,448.26 +31.92,75.33,1001.81,61.97,436.38 +26.52,43.77,1011.49,46.98,440.31 +11.52,40.03,1017.56,87.87,472.31 +29.91,74.33,1013.22,39.76,430.26 +15.01,39.52,1017.53,72.0,468.02 +28.39,65.51,1014.52,66.48,438.78 +25.3,71.29,1007.86,62.98,437.17 +16.63,53.82,1015.18,66.09,458.29 +10.41,44.68,1023.53,91.38,474.7 +26.86,68.08,1012.99,50.04,436.25 +10.48,36.71,1023.18,81.37,473.3 +10.58,42.34,1022.32,94.01,474.91 +6.94,38.91,1018.94,90.64,485.12 +20.64,49.21,1014.86,58.47,454.2 +25.69,73.18,1012.64,86.35,432.82 +22.48,71.29,1008.15,75.41,444.71 +6.63,39.37,1020.33,76.18,489.16 +33.4,69.98,1013.29,47.78,432.44 +15.11,42.99,1007.53,85.75,466.25 +8.99,36.66,1028.11,71.98,481.03 +9.6,41.82,1032.93,72.63,475.01 +9.42,41.4,1029.21,86.4,474.75 +23.62,68.63,1013.18,50.57,447.3 +28.19,71.97,1008.85,84.67,438.8 +26.39,49.16,1005.68,56.18,442.87 +24.93,47.01,1014.28,66.04,455.06 +21.28,70.72,1010.29,86.22,445.54 +8.73,41.92,1029.41,89.72,480.99 +6.99,35.19,1019.32,68.95,480.05 +30.7,71.58,1010.0,48.96,429.27 +15.82,44.2,1018.96,66.73,460.2 +23.19,49.82,1014.59,70.52,451.08 +10.27,42.34,1022.69,92.78,474.55 +14.04,39.64,1011.09,87.22,472.31 +20.42,62.96,1020.34,84.0,452.08 +17.31,58.49,1011.8,92.77,456.84 +13.51,43.41,1015.94,75.22,463.86 +7.39,39.81,1019.45,85.02,482.99 +26.71,76.86,1002.86,74.5,437.31 +31.74,79.73999999999998,1007.07,61.47,431.72 +21.46,50.59,1016.75,67.14,453.67 +12.75,44.03,1007.29,89.46,465.86 +14.43,44.84,1024.34,84.0,467.45 +23.93,68.28,1005.16,69.91,444.95 +10.62,42.02,999.83,96.66,472.41 +14.74,43.71,1024.35,81.53,465.49 +7.87,41.17,1020.33,77.77,486.2 +22.16,65.48,1017.22,70.51,446.0 +7.94,43.65,1018.75,59.45,479.8 +26.56,65.59,1012.6,64.25,443.66 +31.03,69.59,1007.77,63.96,432.56 +29.09,70.98,1007.86,80.34999999999998,439.34 +7.31,42.18,1014.75,86.75,477.38 +10.03,41.62,1014.55,95.61,462.73 +10.28,39.64,1010.45,74.15,477.65 +29.86,64.79,1017.37,44.8,439.89 +29.24,60.23,1009.62,59.71,438.24 +17.34,47.03,1013.36,98.13,463.89 +13.56,42.34,1017.95,93.83,462.6 +10.62,39.96,1025.37,96.64,470.8 +27.37,69.23,1013.25,48.02,433.18 +13.61,42.34,1017.57,91.35,465.65 +12.81,44.58,1016.49,80.76,475.5 +21.83,62.91,1011.07,91.34,443.76 +22.97,62.4,1010.25,75.18,445.3 +24.33,46.93,1013.72,48.27,447.43 +23.49,64.63,1020.75,65.16,450.28 +17.13,42.86,1014.15,73.59999999999998,463.09 +14.86,44.71,1018.3,49.46,466.38 +24.15,64.63,1020.72,58.06,448.87 +7.71,36.25,1027.92,89.84,481.74 +24.82,71.94,1010.5,64.67,438.69 +11.65,41.54,1020.09,67.96,476.4 +10.25,41.46,1020.65,87.07,481.94 +5.78,40.62,1016.55,84.98,484.13 +9.35,44.03,1011.02,88.11,476.25 +10.76,40.43,1025.98,79.65,490.78 +25.76,57.32,1011.93,43.61,440.26 +14.57,37.86,1022.44,68.82,463.58 +13.6,39.82,1013.34,86.1,470.69 +29.36,78.05,1011.12,64.17,434.29 +23.12,69.71,1008.98,84.41,442.21 +23.39,63.94,1010.54,89.94,441.44 +25.45,67.83,1009.47,57.97,429.95 +27.65,48.41,1008.54,58.25,440.94 +30.24,73.9,1006.74,56.39,441.31 +13.78,40.0,1018.38,68.67,458.74 +24.66,69.94,1006.56,60.91,432.68 +17.1,48.98,1016.48,85.63,454.43 +27.37,65.06,1013.09,50.92,440.5 +20.11,51.19,1007.82,92.06,449.03 +12.24,41.62,1013.38,90.26,461.23 +28.5,79.73999999999998,1006.75,87.09,433.08 +14.64,42.77,1017.59,79.59999999999998,464.27 +18.06,65.48,1018.79,77.95,454.34 +14.79,38.73,999.83,86.45,470.28 +35.2,73.56,1006.56,45.72,434.37 +22.93,51.19,1009.3,82.8,443.57 +25.73,66.54,1010.07,55.97,437.07 +18.77,50.66,1014.89,87.34,457.07 +11.52,40.8,1024.31,73.48999999999998,479.56 +8.84,42.49,1010.28,89.09,481.58 +21.24,60.84,1017.99,82.22,445.71 +15.67,45.17,1018.73,94.74,462.09 +22.99,46.21,1010.71,60.11,444.36 +23.93,64.05,1013.09,86.02,440.66 +34.33,69.05,1000.89,37.9,430.56 +29.85,68.24,1007.01,30.99,433.43 +30.1,67.45,1014.23,39.04,434.01 +6.85,37.49,1011.01,84.53,483.12 +26.53,54.2,1012.9,66.73,439.96 +24.2,59.07,1009.25,88.25,441.93 +24.6,75.23,1012.04,76.77,434.07 +30.1,66.25,1009.38,65.41,434.99 +21.6,59.8,1016.9,76.59,450.14 +24.9,58.49,1011.06,65.14,444.19 +26.9,60.93,1007.1,67.32,435.87 +23.07,57.17,1009.84,76.8,444.08 +24.85,70.47,1006.64,85.37,434.47 +30.3,73.9,1006.72,55.13,440.79 +32.18,69.75,1009.94,52.91,438.26 +29.11,74.78,1009.6,56.93,438.75 +21.37,65.94,1010.73,75.09,444.74 +26.53,69.71,1009.88,76.26,446.17 +8.9,40.77,1011.67,90.26,479.18 +22.45,63.77,1014.57,87.44,444.26 +28.9,71.25,1000.73,77.23999999999998,431.52 +18.55,46.48,1007.34,80.67,452.37 +20.92,63.86,1020.49,72.98,449.09 +14.38,45.09,1012.95,86.1,464.27 +8.9,41.4,1030.83,85.63,472.95 +11.1,44.85,1014.27,65.08,477.03 +20.85,59.21,1012.9,75.97,444.44 +26.27,71.98,1005.72,86.15,427.65 +15.61,40.89,1010.48,80.26,467.3 +3.26,41.31,996.32,100.0,489.38 +27.05,77.95,1009.57,76.56,434.09 +19.54,50.66,1014.7,84.53,456.61 +6.42,35.57,1025.58,79.63,485.86 +26.19,65.61,1014.51,54.52,443.73 +9.84,40.22,1009.5,85.38,479.65 +10.86,44.85,1014.15,88.36,476.87 +33.33,73.03,1014.2,42.28,436.05 +9.25,41.82,1033.25,74.73,478.48 +14.7,44.9,1021.87,83.9,468.69 +30.17,75.08,1005.17,55.89,438.89 +11.74,43.56,1015.14,70.72,477.5 +23.27,60.84,1019.13,67.24,440.22 +25.21,59.21,1013.19,62.85,438.7 +15.18,44.2,1019.6,72.45,462.09 +29.03,43.21,1011.83,65.23,434.11 +24.18,58.49,1011.3,77.81999999999998,445.49 +7.62,44.71,1020.56,69.96,486.07 +29.53,71.97,1008.6,79.25,434.96 +24.27,74.93,1012.73,73.81,443.06 +28.4,74.93,1013.65,48.6,442.23 +22.2,57.17,1009.82,78.43,447.75 +17.58,44.9,1020.52,71.48,459.78 +6.71,40.72,1022.78,80.69,483.11 +28.32,72.58,1007.77,78.34999999999998,428.06 +8.11,42.18,1014.82,93.09,473.62 +34.76,68.94,1006.75,41.31,427.42 +28.82,64.79,1016.74,56.34,445.1 +25.43,60.95,1014.62,51.39,444.65 +24.78,57.19,1008.08,65.4,443.62 +6.94,39.61,1017.74,81.43,480.07 +27.5,68.24,1010.38,73.44,430.9 +21.43,63.94,1012.68,99.68,445.29 +26.84,70.36,1007.41,71.47,442.17 +25.69,64.45,1013.05,42.0,450.94 +27.92,74.98999999999998,1005.47,75.13,431.76 +23.69,58.05,1012.08,74.26,444.46 +22.89,62.39,1007.84,88.16,448.13 +15.43,38.58,1016.58,81.17,463.44 +21.84,58.86,1014.13,69.67,445.16 +16.8,56.03,1020.65,85.26,461.96 +18.34,50.59,1018.42,83.95,457.17 +21.1,49.16,1006.76,86.08,442.78 +8.49,39.61,1021.05,87.74,483.94 +11.95,42.03,1017.58,90.89,465.2 +5.05,35.57,1027.03,80.02,491.4 +4.71,42.07,1005.35,82.26,486.79 +13.65,42.74,1026.58,71.48,468.87 +25.14,67.32,1013.96,41.78,435.39 +8.88,39.66,1015.21,88.29,481.45 +11.3,43.14,1019.56,99.83,469.73 +30.61,67.69,1004.97,47.46,429.8 +15.69,39.3,1019.03,60.57,464.17 +20.58,50.78,1008.87,91.18,445.03 +24.66,66.49,1010.83,70.06,438.01 +21.93,62.91,1013.45,74.62,449.17 +25.2,61.08,1013.04,74.28,447.09 +11.75,35.76,1018.99,57.92,473.01 +28.16,70.72,1009.81,65.32,441.37 +34.96,68.94,1006.17,59.26,431.48 +16.63,43.77,1012.25,75.09,458.66 +12.1,44.77,1019.1,75.84999999999998,463.11 +14.48,39.0,1016.75,75.97,464.56 +30.96,71.77,1006.26,52.76,425.66 +26.89,49.16,1003.84,41.22,442.39 +32.09,69.4,1003.1,56.91,430.62 +9.95,41.82,1033.09,69.44,477.52 +16.71,40.55,1004.45,81.64,464.13 +17.34,46.48,1007.18,83.15,452.06 +26.2,71.14,1007.92,72.95,431.7 +14.51,42.77,1017.47,81.95,463.37 +19.81,43.56,1013.39,38.13,460.59 +13.85,41.39,1018.62,75.55,471.45 +11.06,41.5,1013.09,89.8,476.24 +14.45,43.34,1015.47,83.33,462.16 +3.99,39.64,1011.53,83.58,492.06 +24.74,59.39,1015.23,74.64,437.49 +11.48,41.2,1012.88,90.04,478.34 +19.09,43.14,1012.34,45.75,463.3 +22.26,60.37,1008.14,92.37,441.33 +14.17,39.59,1010.99,94.08,464.17 +24.67,58.05,1011.31,69.95,444.57 +26.87,74.98999999999998,1002.48,71.91,437.78 +22.32,48.41,1008.68,79.11,445.36 +14.94,42.77,1018.06,75.34999999999998,460.51 +19.32,44.71,1015.3,28.81,464.38 +17.58,39.63,1004.84,80.43,467.33 +24.19,47.45,1008.26,64.25,446.3 +32.0,73.17,1009.92,42.47,433.72 +12.64,41.79,1016.38,92.65,461.46 +21.86,63.09,1016.64,87.94,442.79 +23.07,69.23,1011.78,76.06,437.08 +15.98,41.48,1017.0,55.73,456.31 +11.48,41.14,1027.67,90.5,464.07 +26.07,69.23,1013.32,54.03,436.94 +13.74,44.21,1023.26,84.2,466.67 +29.23,75.59999999999998,1017.72,52.26,438.92 +9.44,43.99,1020.31,98.06,475.01 +29.51,75.59999999999998,1017.92,50.61,431.18 +13.12,44.21,1019.57,89.29,469.09 +26.23,59.14,1016.98,75.54,437.85 +14.55,42.74,1027.29,66.64,457.77 +20.3,58.46,1015.93,82.13,448.79 +12.57,39.18,1023.09,77.28,471.87 +9.34,41.49,1020.58,97.59,471.04 +7.93,42.28,1008.43,85.57,484.75 +19.6,48.14,1013.18,68.71,456.57 +21.35,57.76,1017.36,73.09999999999998,452.57 +10.59,38.38,1021.58,68.23,474.94 +27.54,75.59999999999998,1018.26,57.89,440.87 +11.12,44.92,1025.58,93.52,470.82 +18.82,61.27,1019.5,72.23,455.29 +25.11,62.26,1011.12,78.01,434.97 +21.89,58.05,1011.31,85.71,441.76 +12.87,48.04,1012.47,100.13,465.56 +25.54,60.37,1006.49,71.54,436.14 +7.05,40.69,1020.53,89.67,476.75 +9.11,36.66,1026.47,74.79,480.74 +24.77,71.94,1006.77,88.86,432.27 +8.51,40.81,1015.54,83.16,481.02 +17.1,62.1,1020.39,93.63,453.4 +7.11,39.9,1008.82,87.76,484.21 +20.01,56.65,1020.77,74.45999999999998,457.01 +25.27,63.91,1009.82,75.48,440.39 +29.72,54.2,1012.86,38.48,438.84 +27.42,65.74,1013.43,69.42,440.52 +28.44,77.54,1011.73,77.3,433.21 +25.89,48.41,1008.49,68.58,440.92 +31.39,69.59,1008.28,62.86,435.76 +17.1,49.69,1005.53,81.81999999999998,457.32 +15.24,44.45,1020.56,66.13,460.94 +13.9,39.59,1011.84,94.74,465.0 +30.52,70.4,1003.9,64.33,438.29 +21.78,68.28,1001.0,79.3,443.24 +28.07,68.08,1013.13,44.67,437.65 +26.07,71.37,1008.6,79.48,439.25 +18.0,43.7,1015.4,61.28,464.26 +9.93,40.67,1018.08,69.74,485.23 +23.48,65.12,1015.82,60.83,445.66 +12.66,41.2,1015.88,89.12,466.49 +25.95,59.27,1010.9,70.42,444.19 +10.34,41.46,1017.75,89.73,478.03 +18.2,39.63,1005.35,79.05,468.49 +23.64,70.04,1011.09,83.35,435.21 +17.38,43.14,1011.09,61.9,459.02 +27.67,69.59,1009.13,82.15,437.29 +22.18,59.39,1014.82,85.31,440.94 +14.86,37.85,1010.58,86.8,467.71 +25.9,47.45,1007.8,55.96,443.13 +25.88,66.48,1004.24,63.16,434.4 +21.12,47.24,1003.79,70.55,462.41 +20.03,62.26,1012.15,82.54,447.4 +21.86,49.21,1014.61,53.31,452.77 +11.71,40.05,1014.49,86.09,471.49 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/public/train.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8e4f06f47506230c9250aba198646e237e7e5c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/public/val.csv @@ -0,0 +1,957 @@ +AT,V,AP,RH,PE +25.69,57.32,1012.34,44.18,441.43 +17.98,59.15,1012.09,83.03,451.97 +11.52,40.75,1016.23,85.18,477.19 +26.43,66.48,1004.36,55.9,435.59 +24.26,69.51,1013.43,53.23,442.56 +19.68,62.96,1020.41,82.26,453.58 +10.28,41.46,1018.44,85.23,479.66 +25.15,62.91,1012.23,48.22,444.19 +23.28,72.23999999999998,1011.3,90.5,434.21 +11.6,40.27,1008.55,72.12,473.89 +22.75,58.79,1011.44,84.47,445.67 +6.77,39.81,1017.01,87.68,488.27 +19.48,58.66,1013.32,73.16,454.4 +23.93,65.59,1011.09,87.26,444.9 +17.77,44.6,1016.97,54.25,460.13 +33.58,77.54,1010.19,53.49,433.75 +7.49,39.81,1019.03,87.29,483.59 +6.33,42.07,1004.25,77.09999999999998,484.57 +12.43,41.62,1011.87,80.56999999999998,460.61 +25.34,64.27,1013.38,66.02,443.94 +17.17,63.09,1020.54,95.98,446.75 +27.75,69.89,1015.41,73.01,430.33 +29.62,73.18,1012.21,61.6,427.22 +24.35,70.04,1010.92,73.88,438.4 +27.39,69.14,1008.82,78.34999999999998,435.22 +31.18,70.36,1006.38,56.74,438.46 +26.56,49.02,1007.65,70.78,438.82 +24.24,71.58,1010.15,91.14,437.75 +11.82,41.26,1020.74,91.14,466.95 +14.38,40.1,1015.51,81.23,467.28 +26.65,74.16,1008.27,94.54,431.47 +26.16,67.9,1005.81,61.02,444.06 +5.52,39.33,1009.74,95.25,492.39 +31.24,68.3,1015.89,42.84,435.2 +26.22,67.45,1013.7,44.04,440.17 +21.67,69.71,1010.46,96.83,440.16 +13.4,40.89,1010.67,91.66,472.36 +13.78,43.22,1011.31,69.7,463.71 +9.88,39.66,1017.81,76.05,480.05 +10.34,41.74,1020.07,79.17,480.84 +26.86,71.32,1007.38,81.14,430.44 +12.95,41.38,1021.97,53.83,474.46 +26.94,65.61,1014.31,49.73,443.9 +21.81,43.77,1011.97,64.72,453.13 +18.9,56.03,1020.77,71.83,457.66 +14.87,41.23,997.39,82.06,465.01 +20.46,59.21,1018.42,85.89,445.22 +24.3,69.94,1007.02,62.14,438.92 +24.58,71.94,1006.85,89.02,433.99 +9.88,40.0,1021.4,92.06,481.58 +29.85,71.58,1010.04,58.66,432.26 +27.5,65.59,1011.23,65.37,441.27 +6.14,40.62,1015.71,86.51,481.66 +20.76,51.19,1009.0,87.23,445.0 +25.55,58.95,1017.12,51.84,442.3 +10.24,41.17,1019.73,82.04,479.78 +14.45,43.71,1025.26,84.23,463.6 +30.76,59.57,1010.66,61.76,439.32 +5.72,40.81,1025.78,92.46,487.8 +30.24,68.24,1009.68,64.67,426.25 +34.61,73.03,1013.61,36.91,438.56 +24.14,62.66,1007.33,73.27,439.93 +26.76,70.98,1007.64,90.51,437.83 +18.47,62.1,1019.86,82.57,452.51 +29.51,75.59999999999998,1017.92,50.61,431.18 +29.05,71.85,1008.6,78.69,428.39 +21.89,45.38,1014.42,68.95,459.45 +24.67,63.56,1013.75,67.56,446.3 +30.67,71.29,1008.36,52.08,430.28 +25.21,49.82,1016.44,63.14,450.75 +9.76,41.01,1019.66,97.59,467.6 +18.31,62.1,1020.38,79.02,455.24 +33.11,77.54,1010.36,50.99,431.77 +26.18,69.14,1006.54,85.95,436.0 +8.72,40.02,1031.32,78.09,477.86 +17.06,58.96,1013.83,73.95,461.15 +8.01,40.62,1015.62,86.43,476.22 +14.35,35.71,1016.1,60.86,468.9 +29.74,70.32,1008.1,52.72,432.69 +23.0,49.5,1014.15,66.68,454.44 +17.09,42.42,1009.03,72.01,464.11 +14.0,40.8,1026.17,54.82,474.87 +25.02,60.29,1017.49,54.75,445.61 +13.86,41.58,1020.69,70.74,461.56 +27.58,78.05,1010.83,94.98,431.95 +26.41,60.93,1007.16,66.02,436.71 +11.02,41.44,1015.28,83.53,476.68 +25.48,58.95,1017.02,51.16,440.42 +15.47,48.98,1016.42,89.85,457.55 +21.48,47.43,1006.88,63.54,449.2 +18.86,51.43,1010.27,86.0,446.91 +20.94,44.58,1016.98,59.65,463.69 +15.02,41.48,1015.19,58.69,456.04 +28.71,70.32,1011.78,76.53,435.95 +14.28,42.77,1020.06,81.77,466.75 +26.24,77.95,1014.19,85.21,438.01 +24.31,63.86,1019.47,58.54,442.69 +8.51,40.78,1023.51,89.84,471.11 +16.07,65.46,1013.88,87.11,450.54 +8.14,39.96,1023.41,88.86,477.05 +18.43,44.63,1019.76,39.99,458.75 +34.2,68.14,1002.7,56.09,427.05 +17.66,62.1,1019.49,86.3,452.03 +23.77,51.43,1006.67,84.09,441.54 +16.59,39.54,1007.97,70.58,464.19 +15.01,43.56,1014.65,61.82,465.84 +29.09,70.02,1010.13,48.06,443.27 +20.1,59.87,1018.97,87.23,444.71 +9.0,39.18,1024.38,84.91,483.26 +16.85,50.9,1013.26,83.94,460.68 +28.44,69.4,1003.98,73.51,433.44 +9.51,40.81,1015.69,82.52,475.29 +25.99,49.82,1015.95,58.56,452.09 +6.86,41.17,1020.12,79.14,490.23 +8.57,39.69,1000.91,99.9,474.29 +23.3,48.78,1018.17,75.36,441.08 +32.95,67.9,1005.88,45.15,425.89 +24.41,73.67,1007.39,86.92,435.56 +17.51,39.54,1010.22,71.53,462.12 +31.68,73.68,1014.85,64.0,431.11 +9.0,41.54,1018.83,79.61,484.08 +18.4,43.96,1012.4,77.81,464.63 +13.72,49.83,1006.88,89.49,463.65 +7.16,38.56,1019.17,70.1,486.12 +14.33,43.41,1015.43,55.4,462.94 +13.53,42.86,1014.0,90.63,471.73 +13.11,41.58,1020.43,74.31999999999998,460.44 +23.98,50.32,1008.41,67.75,443.45 +31.08,59.57,1010.76,60.49,442.88 +33.62,77.17,1009.38,63.71,431.03 +11.93,38.78,1013.15,96.08,474.57 +21.97,68.12,1012.53,75.12,443.39 +23.83,49.21,1012.93,46.79,446.23 +4.96,45.87,1007.32,98.78,481.88 +31.3,70.79,1004.3,54.37,428.75 +17.75,49.25,1020.86,63.67,454.41 +29.89,71.29,1009.0,55.72,431.45 +12.11,41.17,1019.46,62.59,475.53 +23.85,74.22,1009.99,82.72,441.66 +12.16,40.81,1025.79,70.97,476.63 +23.71,60.23,1009.76,90.67,439.66 +22.49,58.71,1009.75,76.43,443.33 +18.9,57.5,1016.21,93.9,451.42 +27.86,63.07,1011.11,56.81,440.48 +26.04,71.14,1011.66,68.95,433.78 +19.51,44.05,1008.52,78.38,451.7 +10.92,40.92,1021.84,83.03,467.05 +8.51,42.32,1015.08,84.89,476.6 +19.68,68.28,1002.62,71.57,452.47 +27.75,70.4,1006.65,90.21,436.53 +21.59,66.54,1004.88,90.54,441.71 +13.93,42.86,1032.37,71.11,468.88 +16.55,41.66,1011.45,55.53,465.14 +25.53,71.85,1009.19,74.7,431.26 +20.67,57.5,1014.42,81.89,453.29 +25.21,69.48,1010.99,75.27,436.02 +9.29,39.04,1022.72,74.29,482.55 +33.92,77.95,1010.15,58.89,433.01 +25.63,71.58,1010.14,87.57,433.76 +27.21,66.49,1013.57,40.11,439.04 +10.42,41.26,1008.48,96.76,472.54 +25.02,59.44,1012.49,73.65,444.08 +24.2,59.43,1009.69,62.3,440.66 +15.82,44.88,1018.59,78.88,461.9 +11.46,38.91,1012.34,77.37,477.5 +13.17,36.71,1012.82,72.76,474.93 +23.47,65.61,1014.57,69.83,447.16 +10.77,41.46,1021.42,87.18,479.22 +28.47,69.23,1013.18,40.73,434.12 +30.03,70.02,1010.07,64.2,436.88 +13.89,35.71,1016.4,65.49,468.54 +13.26,41.78,1009.77,61.69,467.78 +12.31,37.73,1023.3,63.01,472.08 +19.61,45.01,1014.84,64.42,461.97 +18.58,44.6,1016.61,48.15,459.06 +23.18,51.43,1011.56,81.83,449.94 +28.33,68.14,1004.63,71.21,431.27 +14.82,40.0,1016.32,66.3,458.46 +21.42,56.89,1014.39,84.05,444.86 +26.62,76.2,1006.06,69.13,437.81 +28.17,72.43,1007.37,68.92,428.88 +20.86,63.73,1008.54,96.83,440.42 +25.45,63.76,1009.96,67.78,439.56 +29.15,73.42,1011.43,66.49,432.26 +32.33,67.83,1008.11,57.48,427.84 +13.45,45.87,1008.73,87.06,464.88 +29.91,76.86,998.59,72.41,432.6 +24.93,73.5,1011.28,83.09,437.35 +9.71,42.44,1014.29,94.03,481.03 +16.69,53.82,1015.39,63.62,458.96 +22.36,51.43,1007.47,87.33,442.53 +25.57,44.05,1005.79,65.14,443.84 +7.36,41.01,1025.49,96.48,477.37 +14.22,42.32,1015.54,77.23,465.0 +18.33,49.64,1025.36,62.57,468.14 +31.1,68.51,1012.99,54.3,428.68 +27.62,71.14,1011.6,52.8,434.72 +17.04,56.03,1020.38,68.69,462.48 +17.31,44.71,1017.43,35.4,463.05 +31.61,69.04,1008.11,47.96,439.19 +28.14,51.43,1012.16,52.67,445.33 +8.77,40.46,1019.68,77.84,475.0 +6.15,40.77,1022.42,88.57,482.49 +21.39,52.3,1009.2,79.77,446.87 +12.29,40.71,1019.71,83.09,469.75 +11.6,39.96,1011.65,80.79,473.22 +26.68,68.08,1011.41,67.33,433.04 +7.71,38.06,1021.0,83.47,482.78 +10.07,44.68,1023.44,90.95,477.52 +22.08,45.61,1014.02,75.70999999999998,456.71 +30.74,69.59,1008.69,68.04,437.81 +26.49,67.69,1004.61,78.13,430.62 +14.55,44.84,1023.83,87.6,465.14 +16.55,39.64,1009.07,77.8,465.29 +11.68,40.55,1006.48,96.16,474.8 +10.95,40.22,1010.04,78.95999999999998,477.23 +11.83,38.25,1013.36,85.33,473.31 +23.38,48.78,1019.03,78.69,446.18 +29.77,69.48,1009.8,52.6,432.69 +24.12,58.66,1011.55,58.96,450.69 +6.1,39.33,1010.4,95.34,491.37 +6.93,41.14,1027.18,84.67,479.06 +27.6,69.05,1003.87,42.01,436.08 +11.23,41.17,1019.36,56.85,475.85 +18.84,40.79,1005.18,92.46,459.96 +29.47,71.32,1008.07,67.0,437.14 +23.3,72.98999999999998,1008.54,92.11,437.62 +29.15,69.48,1008.68,55.78,430.54 +21.99,42.48,1011.77,74.04,456.65 +21.77,42.23,1013.03,67.44,462.51 +27.61,49.16,1005.01,35.63,441.18 +26.05,65.38,1009.43,52.1,449.82 +14.8,44.71,1014.67,41.71,470.77 +15.71,39.3,1019.2,62.28,462.84 +16.44,53.16,1014.82,75.29,458.49 +17.03,58.49,1011.91,92.16,460.48 +10.12,41.55,1005.78,62.34,475.46 +10.17,41.17,1018.58,87.72,478.04 +23.37,65.46,1016.25,48.64,447.07 +11.98,44.6,1018.59,86.71,470.02 +24.66,48.78,1018.39,71.79,449.11 +16.61,43.77,1012.25,77.23,457.66 +14.79,47.83,1007.27,92.04,463.22 +29.2,64.84,1009.94,55.37,441.9 +23.26,58.2,1016.72,57.98,446.87 +7.19,39.37,1019.67,70.77,480.4 +20.94,49.02,1008.91,87.32,448.18 +27.89,73.20999999999998,1001.32,85.88,431.59 +23.63,71.29,1008.01,70.07,442.65 +20.91,58.2,1018.1,62.8,446.19 +14.91,46.9,1019.59,98.1,461.73 +23.82,73.67,1007.26,88.16,438.42 +32.09,79.73999999999998,1006.92,61.5,432.85 +16.69,46.18,1011.0,97.85,458.57 +17.16,58.86,1016.4,86.39,453.76 +28.05,70.36,1006.73,64.42,434.06 +30.54,70.17,999.42,64.32,434.62 +21.95,50.66,1013.92,70.94,455.23 +24.49,59.87,1018.4,59.95,444.54 +10.62,39.58,1011.9,87.85,479.91 +11.47,25.36,1008.27,95.4,469.51 +24.84,71.73,1009.84,82.41,436.36 +20.66,51.19,1008.81,88.93,447.14 +26.85,63.56,1013.25,52.84,444.39 +25.56,69.13,1002.46,68.26,434.48 +20.0,39.53,1007.59,62.09,456.28 +8.22,41.82,1032.77,71.63,477.86 +21.84,59.39,1015.77,88.12,442.11 +14.26,44.47,1028.81,72.19,465.77 +14.35,39.39,1012.92,82.41,470.53 +22.89,80.25,1006.38,80.25,446.15 +24.34,73.5,1011.31,84.15,440.29 +23.86,59.21,1013.02,73.59999999999998,441.22 +27.71,69.13,1001.63,51.45,432.54 +22.63,70.47,1008.0,82.27,441.92 +31.23,75.08,1004.93,46.19,439.14 +10.31,40.67,1017.61,69.61,485.25 +7.64,39.85,1012.78,88.09,481.53 +31.44,79.73999999999998,1006.95,56.99,431.69 +4.89,45.87,1007.58,99.35,482.69 +27.91,63.76,1010.27,65.67,435.21 +19.05,53.16,1013.22,82.8,455.76 +28.36,69.88,1007.75,84.17,434.03 +27.69,73.91,1005.23,75.70999999999998,435.08 +22.85,59.15,1014.74,63.92,448.61 +23.0,57.76,1017.64,56.86,451.39 +30.04,68.08,1011.04,51.01,429.52 +17.08,38.58,1015.41,73.42,461.49 +27.13,69.45,1013.9,51.16,434.47 +30.65,65.18,1012.51,42.32,436.79 +23.91,50.23,1017.25,68.57,455.41 +7.64,42.28,1008.49,83.42,483.74 +6.77,40.78,1024.86,96.58,478.24 +18.41,44.9,1008.97,73.81,453.12 +14.29,39.59,1010.93,94.53,463.04 +29.29,71.14,1011.49,49.97,432.58 +29.17,67.45,1014.1,46.85,435.08 +23.55,65.94,1011.76,58.44,443.98 +19.05,59.21,1017.99,89.53,451.0 +18.22,49.25,1020.33,61.87,454.66 +14.8,38.73,1003.18,80.73,467.54 +5.28,45.87,1008.25,97.88,479.91 +13.07,43.13,1016.93,70.02,471.47 +21.37,81.56,1006.57,81.56,434.38 +9.96,41.55,1002.59,65.86,475.91 +13.86,41.78,1010.75,57.9,467.39 +11.33,41.16,1019.05,87.13,468.87 +16.81,42.42,1008.95,74.25,462.19 +29.79,67.69,1006.86,55.93,428.71 +14.44,41.2,1015.96,81.97,469.85 +9.08,40.46,1019.48,77.37,476.81 +17.3,57.76,1016.26,87.74,455.75 +27.06,64.45,1008.72,54.21,443.1 +14.64,39.58,1011.46,71.9,467.8 +23.69,77.54,1009.32,89.7,440.21 +9.05,36.3,1027.44,74.84999999999998,479.43 +24.73,74.22,1010.15,79.83,436.55 +19.94,44.9,1008.52,74.69,459.47 +8.73,39.42,1025.63,69.87,474.44 +26.66,73.56,1006.9,99.27,433.62 +31.81,69.88,1007.94,55.91,432.6 +17.47,58.59,1014.03,97.13,449.41 +22.18,62.39,1007.84,85.74,452.31 +18.25,43.14,1011.51,55.16,462.78 +20.34,69.45,1012.76,91.05,442.73 +27.44,58.9,1003.86,66.74,442.19 +27.75,77.23999999999998,1007.48,78.37,433.57 +19.13,59.21,1018.32,89.66,450.81 +19.84,65.48,1019.54,76.59999999999998,449.85 +21.1,62.66,1011.19,83.49,448.8 +20.15,58.59,1014.13,91.96,443.85 +28.85,58.33,1013.78,41.39,444.0 +19.39,60.1,1010.28,83.31,452.57 +21.88,69.71,1010.28,97.64,444.39 +16.34,47.45,1009.41,92.96,448.59 +13.34,40.8,1026.56,64.85,474.47 +3.92,41.31,999.22,95.26,487.35 +21.97,58.12,1015.29,77.47,449.6 +13.89,44.84,1023.66,92.97,466.74 +13.98,40.71,1022.72,71.83,474.46 +16.55,41.93,1022.71,42.73,466.77 +21.17,52.3,1009.36,81.51,447.5 +24.37,65.61,1014.5,65.67,443.13 +24.42,64.79,1016.12,69.32,449.1 +16.54,42.86,1014.85,78.0,465.26 +8.199999999999998,41.14,1025.24,96.26,474.04 +26.17,58.86,1014.52,51.28,443.69 +14.24,39.58,1011.17,70.45,469.94 +14.1,42.18,1015.05,78.25,463.3 +24.91,52.3,1008.72,68.26,441.15 +32.55,69.89,1013.87,40.09,428.84 +20.7,58.16,1016.73,68.19,453.22 +29.7,57.19,1008.41,55.07,436.29 +17.66,60.08,1017.22,86.96,456.62 +30.03,68.84,1011.41,53.82,439.31 +26.45,54.5,1014.96,65.55,450.76 +12.57,41.79,1014.99,87.8,461.88 +30.82,78.87,1012.06,70.69,432.01 +16.97,44.92,1025.21,74.27,460.21 +14.84,38.91,1013.78,69.27,467.83 +20.99,50.78,1008.55,75.14,449.07 +12.35,44.2,1017.81,82.49,471.65 +19.64,46.33,1013.33,98.99,451.45 +29.14,61.5,1009.64,39.95,437.76 +11.82,41.17,1019.5,55.74,475.61 +23.94,51.95,1008.61,73.42,448.67 +17.4,63.09,1020.84,92.58,453.0 +8.949999999999998,43.13,1017.56,94.85,479.14 +29.12,51.43,1005.93,60.66,437.71 +29.13,47.93,1002.5,49.1,435.61 +30.56,71.25,1000.3,70.55,431.92 +19.07,44.63,1020.23,44.93,456.37 +32.96,69.75,1008.86,40.23,435.56 +19.35,39.72,1002.5,51.24,455.29 +31.92,68.3,1015.58,41.55,430.07 +13.85,48.92,1011.68,79.23999999999998,462.38 +26.69,70.36,1006.82,68.29,435.04 +17.66,44.9,1020.5,71.33,457.11 +16.05,38.28,1014.38,73.89,466.75 +6.24,35.77,1019.24,70.7,483.36 +6.43,39.61,1017.51,83.8,480.58 +15.12,39.16,1006.55,76.98999999999998,463.78 +15.84,49.69,1015.14,90.41,462.6 +18.41,42.44,1012.66,65.93,463.2 +15.54,41.96,1011.78,97.46,467.1 +28.26,69.23,1013.01,42.1,436.31 +12.24,40.96,1023.22,78.73999999999998,475.32 +25.45,75.23,1011.41,73.33,441.65 +5.25,42.85,1013.75,89.67,477.78 +9.82,41.04,1026.72,77.28,473.98 +11.44,41.39,1019.59,79.95,478.52 +12.07,38.25,1012.67,81.66,470.36 +28.51,70.02,1010.58,54.68,441.66 +23.47,60.77,1017.19,75.36,444.46 +20.42,45.01,1012.23,66.5,451.28 +21.13,47.43,1006.97,64.26,448.83 +18.62,65.48,1018.45,73.39,451.94 +15.68,43.7,1015.09,58.96,470.29 +7.46,39.81,1018.62,86.73,484.13 +11.38,52.75,1026.19,72.70999999999998,469.9 +21.11,43.43,1010.1,62.62,447.83 +32.38,77.23999999999998,1007.7,61.15,430.96 +19.74,45.38,1015.11,80.67,459.39 +19.18,50.12,1005.99,100.09,444.56 +10.19,37.14,1012.74,73.48,475.01 +20.98,43.77,1010.67,62.73,449.88 +13.47,44.88,1017.56,93.23,476.67 +27.23,44.05,1005.69,58.91,440.2 +7.3,43.65,1019.33,67.62,482.96 +18.26,60.95,1016.94,78.91,457.03 +9.55,40.67,1018.56,70.72,486.34 +26.1,63.56,1013.12,61.0,442.75 +25.88,63.73,1009.48,77.17,438.42 +20.29,63.09,1019.03,76.06999999999998,448.22 +22.58,59.14,1017.2,80.91,439.78 +27.57,60.07,1016.52,54.75,440.12 +30.48,70.04,1010.73,53.7,429.85 +9.27,38.56,1017.69,62.49,475.42 +15.01,42.77,1018.21,73.22,462.6 +31.01,73.5,1010.92,48.61,432.41 +19.62,68.63,1012.26,68.05,453.84 +24.26,47.93,1003.87,70.44,439.16 +14.87,41.76,1022.26,78.20999999999998,464.84 +31.0,71.77,1006.29,48.56,431.07 +28.84,74.67,1016.52,67.43,428.98 +18.48,50.16,1011.45,99.92,452.06 +30.49,64.44,1013.43,51.73,438.09 +27.49,71.94,1008.25,68.29,428.27 +21.76,47.93,1005.34,86.28,444.77 +13.78,44.47,1027.94,71.09,467.22 +25.28,66.25,1009.77,84.55,439.77 +27.17,61.02,1011.38,65.32,437.06 +20.51,42.23,1013.25,71.83,461.78 +15.43,39.16,1016.44,79.8,470.74 +12.7,39.72,1017.89,62.97,467.77 +26.86,72.58,1009.22,88.39,428.69 +26.06,58.59,1012.41,55.22,451.47 +10.56,40.22,1005.08,89.71,478.02 +25.33,73.20999999999998,1002.19,97.24,433.43 +3.0,39.64,1011.0,80.14,485.2 +30.91,69.75,1010.23,59.36,435.7 +27.34,71.64,1008.12,72.22,438.76 +15.34,43.5,1021.18,79.44,459.77 +18.99,59.27,1012.15,89.39,453.4 +12.14,40.27,1007.57,73.22,472.84 +30.75,71.22,1006.47,48.06,437.96 +16.05,41.96,1011.82,96.05,463.72 +14.83,53.82,1016.57,63.47,464.0 +25.12,66.56,1009.22,65.62,436.56 +13.72,41.62,1011.14,75.79,455.52 +20.94,58.16,1016.88,65.43,455.16 +24.81,67.17,1007.71,84.37,442.75 +10.2,41.46,1019.12,83.26,480.11 +26.19,49.3,1003.69,65.88,440.13 +24.7,58.82,1009.4,75.91,442.98 +31.82,73.68,1014.8,40.58,433.32 +10.29,40.56,1017.28,69.13,481.7 +15.94,44.85,1014.29,67.57,462.54 +21.28,70.32,1011.06,90.12,439.0 +12.45,40.1,1015.4,82.61,473.63 +25.15,57.32,1012.41,41.84,440.1 +28.52,57.82,1004.81,57.82,435.4 +22.47,48.6,1002.33,63.23,445.98 +15.21,43.5,1021.6,82.06,464.08 +27.88,63.87,1017.79,40.0,443.24 +32.14,68.31,1010.48,42.15,436.15 +28.28,69.48,1008.56,61.3,428.75 +12.12,38.28,1013.65,90.19,471.19 +13.44,41.14,1026.41,77.26,461.44 +15.12,41.04,1025.95,69.67,460.58 +9.73,40.22,1011.48,87.88,481.42 +14.05,39.59,1011.2,94.54,464.63 +28.43,63.31,1013.44,49.99,432.62 +12.38,41.62,1012.37,84.15,461.07 +7.09,39.37,1020.07,73.26,487.0 +11.69,35.76,1019.02,55.6,471.72 +25.76,63.94,1018.49,42.14,445.78 +14.91,43.34,1015.15,81.56,461.27 +21.91,70.32,1009.17,90.57,439.29 +23.56,73.18,1012.18,87.98,437.92 +19.98,49.15,1021.56,63.89,457.54 +24.33,49.16,1003.46,61.04,441.2 +9.22,40.92,1021.83,85.43,474.51 +32.16,71.32,1005.5,60.23,434.01 +27.29,64.45,1013.46,45.35,446.94 +28.14,61.47,1009.69,64.66,435.35 +26.71,70.4,1007.59,82.63,432.64 +19.83,46.33,1013.27,96.4,451.22 +13.49,43.41,1015.75,57.86,461.06 +14.13,53.82,1016.72,64.85,467.08 +20.6,66.86,1013.08,62.48,451.44 +22.01,60.84,1017.55,83.82,441.9 +5.89,35.77,1019.78,79.58,479.86 +26.02,70.79,1004.21,79.12,428.72 +14.08,41.93,1023.02,59.41,475.15 +24.96,77.54,1008.25,80.59999999999998,433.4 +32.21,71.85,1008.25,58.09,429.15 +26.59,69.13,1009.27,73.95999999999998,430.11 +8.529999999999998,43.14,1012.25,78.88,480.08 +25.94,66.49,1012.83,61.81,433.38 +7.76,39.61,1021.63,80.67,488.32 +27.21,67.45,1013.83,43.26,436.47 +19.08,59.15,1013.1,81.81999999999998,451.33 +30.97,67.9,1005.98,55.6,428.26 +7.53,41.74,1022.45,90.85,487.25 +32.19,69.13,1000.45,48.22,425.21 +27.32,66.54,1004.95,72.58,431.33 +14.92,46.18,1014.21,98.82,465.63 +24.62,72.43,1007.97,84.36,436.89 +14.47,44.66,1016.33,93.52,464.41 +26.35,59.44,1012.16,63.73,443.73 +26.38,65.12,1016.1,47.57,441.07 +24.44,52.84,1006.39,49.05,440.2 +32.63,74.98999999999998,1002.42,40.07,432.79 +29.49,69.71,1009.34,56.35,440.99 +30.58,70.04,1010.4,48.16,431.59 +13.24,39.16,1016.52,86.66,474.48 +12.91,41.66,1013.37,71.52,469.71 +25.1,43.77,1010.9,49.68,444.99 +16.0,43.02,1012.37,39.2,466.01 +23.62,61.87,1010.07,48.77,447.93 +25.54,70.47,1009.28,73.5,436.16 +15.89,41.7,1018.93,82.68,463.33 +23.79,50.16,1005.32,75.81999999999998,435.49 +17.77,56.53,1019.57,79.89,457.94 +21.54,58.41,1013.99,86.34,450.69 +24.49,70.79,1005.51,88.65,430.54 +13.52,39.39,1012.91,84.03,474.82 +13.51,44.9,1019.29,77.23999999999998,464.86 +28.9,68.84,1011.64,64.44,437.06 +26.28,75.23,1011.44,68.35,435.28 +28.81,64.96,1000.46,68.05,427.91 +17.49,63.94,1020.02,82.6,452.71 +20.61,48.78,1020.8,85.05,449.38 +27.84,71.32,1007.72,79.25,431.37 +22.7,60.84,1019.15,71.48,438.59 +7.21,42.03,1017.81,90.12,482.26 +14.68,41.23,998.43,83.71,469.25 +21.93,60.84,1018.96,76.8,440.76 +9.23,37.36,1015.01,67.38,481.08 +27.51,49.3,1003.74,61.27,437.09 +20.76,70.72,1009.73,89.04,448.85 +30.65,71.06,1008.61,76.76,432.08 +10.31,42.49,1009.43,78.36,479.64 +27.27,72.58,1009.25,89.31,428.93 +28.61,68.12,1012.23,46.45,435.28 +19.65,44.89,1009.76,75.36,451.35 +30.24,69.88,1007.9,61.46,436.37 +31.26,68.94,1005.94,39.49,438.03 +25.16,74.33,1014.55,76.7,436.15 +16.73,58.59,1015.02,89.61,455.3 +30.57,58.9,1004.54,54.37,438.49 +17.18,63.09,1020.67,93.58,451.37 +27.35,61.47,1008.43,70.65,443.67 +19.11,50.16,1010.88,100.09,450.38 +26.48,68.14,1004.83,55.96,432.19 +13.84,42.18,1015.74,79.76,468.66 +29.1,76.2,1006.28,60.22,435.97 +13.91,40.24,1017.03,85.93,466.24 +13.73,41.78,1011.75,49.65,464.94 +25.4,65.34,1013.11,53.93,445.82 +14.73,39.52,1017.01,74.20999999999998,470.45 +27.58,66.48,1004.82,51.23,435.34 +24.03,62.44,1010.96,79.88,430.66 +19.78,63.09,1019.01,78.39,448.34 +12.57,41.66,1009.11,70.74,475.61 +13.95,41.49,1019.95,86.46,465.24 +13.77,47.83,1007.41,90.66,466.07 +21.52,50.66,1013.56,74.33,455.71 +27.98,67.9,1006.3,73.53,436.08 +14.57,44.45,1021.42,66.23,462.48 +25.46,70.32,1010.65,64.7,433.08 +8.58,38.38,1021.03,84.37,482.26 +28.18,66.56,1005.69,65.67,426.79 +32.07,70.94,1006.91,49.9,432.33 +17.94,37.2,1012.64,68.11,467.65 +7.34,40.72,1023.01,80.08,483.92 +10.8,39.28,1010.7,82.62,478.8 +24.34,70.79,1006.82,85.66,433.83 +26.45,64.27,1013.23,60.92,444.9 +18.38,62.1,1020.12,77.27,452.91 +32.53,77.95,1014.76,58.1,434.44 +7.99,36.08,1020.08,83.2,481.35 +21.16,50.66,1014.13,72.77,455.86 +15.71,40.12,1012.81,97.46,462.6 +20.58,39.53,1005.68,62.09,460.1 +32.0,58.9,1003.48,51.38,437.81 +30.29,74.16,1008.77,75.23,431.39 +31.38,68.27,1006.79,52.79,426.67 +29.67,66.51,1015.6,34.1,434.8 +19.9,56.53,1020.52,78.05,456.48 +23.6,57.17,1009.84,74.27,446.05 +4.59,39.33,1010.85,71.78,494.9 +12.76,43.7,1015.13,65.34,475.73 +6.53,42.85,1012.65,91.6,480.98 +14.46,53.82,1016.55,68.11,462.6 +23.75,61.5,1008.16,69.14,442.35 +22.28,59.92,1009.36,95.38,437.85 +24.4,60.37,1006.77,82.43,440.64 +29.82,69.75,1010.09,65.02,442.6 +20.29,65.27,1013.17,74.94,445.52 +27.2,72.43,1006.75,80.67,430.32 +5.7,40.62,1016.07,84.94,482.82 +24.54,65.46,1014.27,40.77,446.26 +16.57,63.31,1016.19,81.02,454.78 +29.89,65.74,1012.95,51.36,438.24 +24.37,70.02,1010.97,71.97,443.53 +24.16,65.06,1013.88,58.96,442.32 +14.9,52.05,1015.11,77.33,464.82 +26.88,74.78,1010.42,64.81,440.84 +27.02,72.58,1009.21,89.13,437.8 +10.13,38.16,1013.57,79.04,474.92 +15.27,38.73,1002.83,77.77,465.99 +14.03,44.88,1019.6,57.63,465.51 +8.51,41.26,1023.17,87.79,477.51 +8.68,41.82,1032.83,73.62,478.61 +12.85,41.14,1027.04,86.29,464.86 +25.27,67.07,1006.34,66.35,445.81 +28.62,69.71,1009.67,62.12,437.52 +23.87,60.27,1018.94,77.16,439.86 +26.54,69.48,1010.7,66.09,432.56 +12.83,44.88,1017.86,87.88,474.26 +15.62,41.76,1023.82,66.17,459.72 +28.28,61.86,1012.07,64.49,439.65 +20.06,62.1,1020.21,72.20999999999998,451.81 +13.86,35.71,1015.21,63.16,471.63 +28.19,68.08,1013.41,43.93,436.43 +18.02,53.16,1013.41,82.84,458.01 +14.8,43.99,1022.89,85.25,461.97 +9.26,41.66,1016.87,73.31999999999998,483.51 +20.65,66.51,1014.94,71.83,456.49 +13.03,39.52,1016.68,83.09,473.99 +13.41,49.83,1008.83,87.14,466.38 +3.73,39.42,1024.4,82.42,488.58 +26.95,70.79,1004.09,75.34999999999998,430.07 +11.7,43.41,1016.08,62.27,467.51 +13.09,54.3,1017.61,82.38,471.0 +5.21,41.31,1003.51,91.23,486.46 +12.65,44.0,1023.03,88.73,471.46 +16.01,49.64,1026.35,77.75,457.8 +15.34,41.23,996.87,86.56,465.16 +17.94,62.1,1019.81,82.65,453.55 +33.01,68.67,1005.2,51.41,433.94 +22.91,66.44,1011.23,63.43,444.48 +31.35,67.32,1013.74,38.56,439.81 +10.63,40.67,1017.13,66.12,483.27 +4.27,39.64,1010.99,84.85,487.19 +21.14,58.05,1012.98,87.27,449.74 +25.36,60.07,1015.06,66.11,439.73 +11.44,44.2,1018.14,84.9,476.12 +13.35,39.58,1012.41,83.45,465.85 +23.88,54.2,1012.81,64.52,444.97 +15.65,43.5,1021.39,78.58,463.5 +6.72,38.91,1016.89,90.47,485.89 +15.74,43.71,1024.7,78.38,462.66 +19.84,56.89,1013.23,78.31999999999998,447.92 +11.44,43.13,1014.88,63.88,477.57 +26.55,69.45,1013.88,55.39,435.64 +19.96,39.53,1006.16,62.77,460.49 +10.8,40.69,1014.3,87.44,478.19 +8.36,38.91,1016.27,88.82,482.09 +8.55,35.77,1016.15,73.31999999999998,481.44 +31.84,71.37,1003.51,46.22,432.04 +5.94,39.9,1007.84,86.33,485.86 +14.35,40.71,1023.09,69.5,473.56 +31.91,67.83,1008.76,53.22,425.28 +25.35,74.33,1015.29,77.84,435.66 +9.32,36.3,1027.67,73.25,479.52 +16.34,42.28,1008.08,52.8,463.29 +29.95,73.42,1011.44,66.32,432.81 +7.09,43.65,1019.6,72.09999999999998,483.42 +25.63,72.98999999999998,1008.2,86.8,436.64 +28.54,71.94,1007.4,65.99,430.91 +25.57,65.46,1014.81,38.58,444.46 +12.99,44.0,1025.22,90.27,470.93 +14.77,48.06,1010.92,69.81,461.52 +31.09,59.57,1010.67,60.5,440.08 +14.04,48.79,1017.62,75.25,464.09 +29.12,66.56,1006.9,49.79,429.94 +32.13,74.34,1003.34,56.39,436.3 +31.75,74.98999999999998,1003.25,53.33,430.82 +24.82,66.54,1010.0,60.36,440.88 +19.76,48.92,1010.48,46.57,456.69 +31.26,76.09,1006.66,63.91,430.36 +9.43,41.4,1028.81,85.83,475.8 +27.78,60.07,1014.66,53.74,439.43 +23.99,45.87,1007.63,52.62,443.66 +18.32,66.51,1015.18,81.5,459.89 +28.86,49.3,1003.93,52.85,435.75 +27.35,69.48,1008.51,65.81,432.31 +23.32,66.48,1003.92,72.25,436.26 +18.99,62.1,1020.0,76.76,453.09 +10.82,42.02,996.03,99.34,475.46 +14.81,43.69,1017.19,71.9,470.71 +22.77,59.92,1009.67,94.09,437.9 +18.61,47.83,1006.43,78.89,454.21 +26.5,66.05,1017.03,61.34,440.15 +16.11,44.92,1025.37,79.84999999999998,460.99 +30.51,70.94,1007.64,59.42,430.91 +13.48,41.44,1015.64,71.46,471.39 +16.37,43.5,1021.26,72.4,459.18 +21.19,50.16,1005.81,84.27,450.33 +26.38,59.92,1009.99,71.91,444.85 +24.45,65.12,1015.92,57.19,445.01 +28.6,71.22,1003.15,58.33,443.01 +29.39,69.89,1013.92,47.36,434.27 +25.91,68.08,1010.92,74.25,432.07 +19.94,65.46,1017.7,68.94,448.67 +13.95,71.14,1019.76,75.51,461.18 +33.7,68.27,1007.16,50.41,427.4 +6.58,40.07,1014.22,55.44,493.72 +9.79,39.69,1002.36,93.86,471.61 +18.41,65.94,1010.23,84.71,452.66 +22.89,48.98,1014.55,48.21,448.56 +25.68,46.21,1011.01,57.53,442.98 +32.77,72.86,1003.6,52.87,433.84 +13.18,43.8,1023.18,61.21,467.0 +28.99,54.2,1012.79,41.9,442.6 +26.34,59.21,1013.37,58.98,439.22 +21.11,58.66,1011.7,68.71,457.89 +24.28,71.98,1006.34,90.45,432.47 +28.46,73.67,1005.67,71.21,429.15 +27.16,59.87,1011.78,58.84,446.38 +18.36,53.16,1013.31,83.18,458.47 +20.35,50.9,1012.6,72.43,453.5 +8.57,40.69,1020.87,84.15,485.18 +8.97,44.03,1013.16,80.39,474.61 +20.95,70.72,1009.96,87.73,445.66 +23.49,47.45,1008.46,66.18,446.72 +7.26,41.22,1014.86,97.82,488.75 +27.36,58.33,1013.86,56.7,439.14 +27.98,67.17,1007.32,75.29,440.68 +25.15,68.51,1013.25,72.31,440.96 +26.82,60.96,1012.25,57.41,449.81 +4.24,39.9,1009.28,96.74,491.25 +24.49,65.06,1014.07,63.32,441.4 +19.65,42.23,1013.04,75.9,461.16 +9.57,39.82,1013.12,89.15,468.02 +31.46,66.54,1002.86,53.75,427.76 +7.2,40.35,1011.83,95.59,484.9 +18.19,66.54,1012.9,86.05,449.22 +23.21,73.42,1010.34,88.29,439.66 +29.31,68.67,1006.18,63.38,435.57 +23.54,41.1,1002.05,38.05,448.56 +24.22,62.08,1022.53,60.79,449.11 +21.85,59.8,1016.89,75.28,454.26 +29.79,62.66,1008.5,48.51,440.27 +7.06,41.74,1021.95,90.38,448.97 +15.55,39.63,1004.98,89.82,466.83 +11.09,40.43,1025.47,74.97,490.96 +23.85,72.43,1008.01,88.34,439.02 +24.87,68.61,1011.19,55.69,450.54 +20.67,63.56,1013.27,79.39,450.7 +15.33,42.28,1008.19,66.15,465.2 +20.73,41.1,1001.86,47.51,456.44 +12.53,44.03,1007.21,84.2,470.04 +13.43,50.59,1020.38,86.3,469.33 +23.61,63.94,1012.9,87.06,441.57 +24.07,71.97,1008.83,94.87,441.84 +28.28,61.47,1009.44,60.89,443.12 +9.75,43.69,1016.81,82.42,481.34 +11.96,43.41,1017.42,79.44,469.34 +14.02,40.75,1016.05,70.65,470.48 +8.25,37.49,1009.02,81.09,480.38 +22.8,49.16,1006.4,77.05,439.65 +24.13,45.61,1012.63,71.36,453.19 +15.96,41.66,1011.93,55.47,466.39 +17.48,49.39,1021.51,84.53,460.01 +4.95,42.07,1004.87,80.88,485.67 +12.02,43.69,1016.12,74.06999999999998,477.74 +14.16,39.28,1015.63,77.29,471.27 +21.17,58.16,1017.16,68.11,452.02 +4.97,40.64,1020.91,94.28,485.43 +27.28,78.92,1011.05,75.48,434.78 +10.42,44.85,1014.18,88.36,479.03 +12.75,44.2,1017.59,81.22,471.03 +13.1,40.03,1017.79,84.48,470.75 +29.09,72.43,1006.86,65.47,427.3 +27.64,75.59999999999998,1017.35,54.78,441.04 +7.79,41.01,1024.0,97.2,477.0 +16.52,43.7,1015.08,58.36,466.73 +17.79,40.12,1012.74,79.03,459.13 +15.04,38.01,1022.46,78.29,468.12 +15.92,39.16,1006.59,71.32,460.45 +20.4,57.85,1011.14,92.47,450.07 +20.25,63.91,1009.27,97.97,448.37 +14.24,39.52,1018.22,77.19,468.51 +28.11,70.98,1007.76,85.6,431.83 +21.3,66.86,1013.04,55.43,450.56 +16.56,42.99,1007.48,74.45,464.62 +8.93,40.46,1019.03,71.0,472.77 +17.48,44.2,1018.89,61.51,457.15 +10.38,41.01,1020.8,94.26,465.9 +21.83,57.85,1012.49,75.16,448.21 +20.58,54.5,1015.04,89.83,467.76 +14.95,39.31,1009.15,75.3,462.72 +14.01,38.91,1015.86,69.24,470.1 +7.0,38.08,1020.27,77.67,482.38 +23.82,48.92,1010.48,44.45,446.85 +12.65,44.34,1019.4,71.45,468.8 +16.37,53.16,1014.89,74.84,459.52 +18.62,59.15,1012.85,82.54,450.81 +22.96,68.61,1011.15,76.62,447.18 +25.72,74.67,1016.64,75.93,434.83 +16.0,37.87,1020.24,78.41,461.33 +19.09,65.94,1012.53,81.06,446.34 +24.49,65.61,1014.71,63.47,447.26 +12.79,44.03,1007.46,95.93,464.35 +8.699999999999998,36.24,1013.34,89.5,478.69 +19.79,51.19,1008.77,94.72,447.96 +30.55,68.24,1009.43,63.84,426.8 +10.1,44.03,1008.11,90.29,471.59 +26.73,49.02,1007.75,67.73,438.17 +8.99,41.26,1020.52,91.96,476.09 +15.24,39.39,1013.01,74.23999999999998,469.79 +30.36,71.8,1010.9,63.27,437.4 +10.98,41.54,1019.94,69.83,479.08 +29.08,70.83,1007.98,51.95,430.91 +25.23,61.86,1013.0,76.18,441.48 +27.76,72.58,1009.04,84.96,429.25 +24.37,68.14,1005.22,59.27,440.22 +11.22,40.22,1011.01,81.67,476.7 +23.43,51.43,1011.31,73.55,444.09 +22.81,58.96,1013.5,55.66,452.89 +15.71,44.06,1018.34,71.69,465.05 +10.34,37.5,1010.35,95.56,474.08 +11.01,40.05,1015.46,89.22,474.2 +28.59,69.84,1003.79,67.31,427.53 +29.86,59.57,1011.24,64.02,439.44 +3.95,38.44,1016.75,79.65,492.46 +16.98,63.09,1020.44,95.18,450.55 +28.03,60.23,1010.23,66.04,438.88 +24.43,58.05,1011.88,71.39,445.68 +13.97,45.01,1017.44,89.15,461.96 +9.11,40.02,1031.1,83.02,479.03 +22.08,55.5,1018.42,58.46,455.79 +31.61,75.08,1004.83,42.29,436.67 +8.68,43.14,1011.94,79.06,480.73 +29.11,74.9,1003.31,74.01,432.43 +12.71,43.8,1023.15,71.16,466.2 +31.24,74.22,1007.74,48.77,430.44 +9.18,42.18,1017.4,87.3,475.57 +4.15,39.9,1007.62,95.69,489.8 +14.93,43.02,1012.11,45.56,468.19 +12.24,40.66,1017.4,96.22,464.7 +20.87,63.31,1012.27,79.51,446.7 +21.12,62.52,1015.62,78.98,450.93 +19.23,41.67,1012.53,48.86,465.66 +30.74,71.77,1006.24,53.38,434.89 +25.42,73.20999999999998,1001.91,93.78,432.04 +18.97,50.59,1016.01,74.9,459.68 +23.65,66.05,1019.6,78.20999999999998,442.9 +15.26,46.18,1013.68,98.58,463.6 +24.41,58.59,1012.62,64.52,442.64 +20.79,50.59,1017.75,73.34999999999998,456.01 +8.34,40.72,1023.62,83.75,483.14 +31.12,68.14,1003.67,67.36,427.06 +24.92,63.94,1017.7,44.92,441.07 +29.3,70.04,1010.95,61.23,426.25 +16.46,61.27,1020.02,74.54,456.64 +24.44,69.84,1005.34,80.37,430.3 +6.17,39.33,1012.57,93.32,491.54 +18.15,41.67,1012.75,52.69,464.44 +26.38,71.58,1011.02,80.9,434.26 +23.99,67.69,1007.9,78.56999999999998,437.1 +26.51,67.25,1017.85,64.17,435.52 +24.31,66.49,1011.38,54.35,440.79 +29.04,70.72,1009.55,66.58,437.95 +13.26,41.74,1021.89,63.32,473.44 +18.32,65.94,1012.74,86.77,450.5 +4.87,42.85,1012.69,94.72,482.05 +24.98,60.32,1016.39,63.12,446.46 +14.77,44.9,1020.5,84.31,465.23 +28.77,75.23,1010.01,59.0,437.93 +28.5,76.86,999.49,77.47,430.62 +11.62,41.54,1019.94,66.43,477.75 +23.21,74.22,1009.68,88.46,440.46 +30.12,73.18,1012.29,61.32,429.31 +11.63,41.5,1013.6,87.11,477.3 +19.8,58.79,1017.04,87.71,449.66 +30.22,70.32,1011.63,65.97,435.98 +17.55,43.14,1018.86,76.0,461.58 +8.27,37.7,1015.09,73.64,479.16 +31.01,69.13,1000.93,62.96,425.69 +28.64,73.4,1011.48,52.84,441.32 +10.81,45.0,1023.45,85.89,482.63 +25.62,73.17,1011.65,86.45,430.56 +30.28,58.9,1005.03,54.59,439.06 +3.63,38.44,1016.16,87.38,487.87 +9.73,41.01,1021.76,97.71,469.11 +6.72,39.85,1011.84,84.66,489.09 +20.58,49.15,1021.42,56.15,453.87 +27.99,71.58,1010.68,68.99,435.99 +18.36,53.16,1013.14,79.89,457.94 +30.08,73.42,1011.17,63.86,434.95 +25.6,63.9,1013.16,53.19,451.44 +27.41,59.21,1013.3,50.93,438.39 +7.51,43.02,1014.35,86.46,485.38 +13.42,41.74,1020.96,61.8,473.45 +28.18,60.07,1016.34,49.13,441.61 +17.3,43.72,1009.64,77.86,456.55 +24.96,70.47,1007.73,76.48,438.23 +21.04,45.09,1014.19,40.62,450.92 +22.17,65.61,1014.71,70.91,449.91 +26.98,72.58,1008.55,78.5,431.12 +30.13,78.05,1010.99,61.5,434.14 +9.68,41.48,1018.24,71.04,473.31 +21.95,68.08,1012.91,69.36,443.93 +15.09,44.34,1019.46,60.49,468.8 +23.83,58.79,1009.77,78.13,444.34 +13.86,40.66,1017.15,83.82,463.49 +22.79,69.13,1010.87,91.47,438.08 +26.71,77.95,1012.13,77.5,433.47 +28.69,67.25,1017.71,53.83,432.21 +18.27,51.43,1010.38,88.39,460.41 +24.24,68.3,1018.03,81.51,437.12 +11.8,45.09,1013.21,89.68,470.57 +17.19,58.86,1016.74,85.97,451.87 +18.55,61.87,1008.45,65.3,450.73 +15.5,44.92,1024.16,86.44,462.12 +24.22,56.89,1013.81,70.02,440.79 +11.91,43.22,1008.75,76.56999999999998,472.88 +14.48,46.18,1015.83,92.15,462.3 +14.73,58.2,1019.45,82.48,458.56 +11.91,40.69,1014.41,83.71,476.71 +22.48,50.05,1005.55,82.36,442.56 +27.72,69.88,1007.58,72.25,434.02 +15.03,44.45,1020.94,65.57,460.06 +24.18,59.92,1009.88,79.54,438.85 +21.97,58.79,1010.93,86.7,448.8 +15.51,41.76,1022.81,69.55,463.82 +25.89,58.86,1014.16,52.95,445.17 +19.13,42.18,1001.45,98.77,456.04 +26.82,69.05,1004.62,40.0,437.42 +23.04,48.06,1014.16,54.99,459.36 +6.05,42.85,1013.09,91.88,485.02 +30.94,64.44,1014.36,53.76,439.84 +25.32,48.41,1008.47,72.14,443.04 +26.92,68.27,1008.11,61.73,435.17 +23.48,51.43,1007.13,84.83,441.78 +25.66,71.77,1006.76,84.76,429.25 +17.46,53.29,1018.07,91.01,458.06 +26.18,69.84,1005.13,72.89,431.69 +10.07,39.66,1015.37,83.78,479.64 +30.99,69.82,1009.41,50.84,437.46 +31.85,73.91,1003.6,60.22,431.26 +32.2,72.29,1008.61,69.94,432.52 +22.08,41.1,1002.19,46.69,455.04 +16.32,43.56,1014.4,59.77,463.57 +24.94,59.07,1008.89,84.79,440.12 +8.3,36.3,1015.97,60.62,480.58 +18.81,45.01,1015.28,65.91,457.85 +17.61,56.53,1019.5,82.3,457.01 +27.01,43.77,1011.18,46.58,440.64 +28.69,67.25,1017.71,44.6,436.21 +13.66,40.55,1005.46,96.02,467.7 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/tabpfgen/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5a360c477866cc1c36cb65f38987fa8c176a486f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/tabpfgen/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/tabpfgen/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..74c3bc69324ec01514de6cdf28330b7345bc8cef --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/n20/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,119 @@ +{ + "dataset_id": "n20", + "model": "tabpfgen", + "target_column": "PE", + "task_type": "regression", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/temp/nightly_runs/tabpfgen_generate_non_n_gpu1/n20/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/_tabpfgen_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..05e5d65629e68a638500e6133788ca2e18d60acb --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/_tabpfgen_generate.py @@ -0,0 +1,70 @@ +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/DatasetNew/n20/n20-train.csv") +target_col = "PE" +if target_col == "__LAST__": + target_col = df.columns[-1] + +feature_cols = [c for c in df.columns if c != target_col] + +# --- Label-encode categorical / object columns --- +cat_encodings = {} # col -> list of unique values (index = code) +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +# Encode target if categorical +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values + +# Handle NaN +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating 7654 rows via generate_regression") +X_syn, y_syn = gen.generate_regression(X, y, n_samples=7654) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +# --- Inverse label-encoding for categorical columns --- +for col, cats in cat_encodings.items(): + # Round to nearest integer index, clamp to valid range + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +syn_df = syn_df[list(df.columns)] +syn_df.to_csv("/work/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/tabpfgen-n20-7654-20260318_062541.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/tabpfgen-n20-7654-20260318_062541.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/gen_20260318_062541.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/gen_20260318_062541.log new file mode 100644 index 0000000000000000000000000000000000000000..cdad3c6a14059396836e67e9afa9aa06bb5b995f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/gen_20260318_062541.log @@ -0,0 +1,27 @@ + +========== +== CUDA == +========== + +CUDA Version 12.8.1 + +Container image Copyright (c) 2016-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + +This container image and its contents are governed by the NVIDIA Deep Learning Container License. +By pulling and using the container, you accept the terms and conditions of this license: +https://developer.nvidia.com/ngc/nvidia-deep-learning-container-license + +A copy of this license is made available in this container at /NGC-DL-CONTAINER-LICENSE for your convenience. + +[TabPFGen] Generating 7654 rows via generate_regression +Step 0/1000 +Step 100/1000 +Step 200/1000 +Step 300/1000 +Step 400/1000 +Step 500/1000 +Step 600/1000 +Step 700/1000 +Step 800/1000 +Step 900/1000 +[TabPFGen] Saved 7650 rows -> /work/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/tabpfgen-n20-7654-20260318_062541.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/tabpfgen_meta.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..7c3d607b91ede034f98d64840ce929ab0037cb46 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/tabpfgen_meta.json @@ -0,0 +1,8 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_profile.json", + "target_col": "PE", + "is_classification": false, + "n_rows": 7654, + "n_cols": 5 +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/train_20260318_062541.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/train_20260318_062541.log new file mode 100644 index 0000000000000000000000000000000000000000..7e0af356dd8eba98dbf055f2e977388ea03ad245 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/train_20260318_062541.log @@ -0,0 +1 @@ +[TabPFGen] No training needed (pretrained). Meta saved to /data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260318_062541/tabpfgen_meta.json diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/_tabpfgen_generate.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..190d6a575fcb1d27493fa31e6ba305caebb65af6 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/_tabpfgen_generate.py @@ -0,0 +1,68 @@ +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/train.csv") +target_col = "PE" + +feature_cols = [c for c in df.columns if c != target_col] + +# --- Label-encode categorical / object columns --- +cat_encodings = {} # col -> list of unique values (index = code) +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +# Encode target if categorical +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values + +# Handle NaN +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating 1000 rows via generate_regression") +X_syn, y_syn = gen.generate_regression(X, y, n_samples=1000) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +# --- Inverse label-encoding for categorical columns --- +for col, cats in cat_encodings.items(): + # Round to nearest integer index, clamp to valid range + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +syn_df = syn_df[list(df.columns)] +syn_df.to_csv("/work/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/tabpfgen-n20-1000-20260321_070557.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/tabpfgen-n20-1000-20260321_070557.csv") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/gen_20260321_070557.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/gen_20260321_070557.log new file mode 100644 index 0000000000000000000000000000000000000000..ea06283b85e94c572d4cb9788f09efb2732f86e7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/gen_20260321_070557.log @@ -0,0 +1,27 @@ + +========== +== CUDA == +========== + +CUDA Version 12.8.1 + +Container image Copyright (c) 2016-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + +This container image and its contents are governed by the NVIDIA Deep Learning Container License. +By pulling and using the container, you accept the terms and conditions of this license: +https://developer.nvidia.com/ngc/nvidia-deep-learning-container-license + +A copy of this license is made available in this container at /NGC-DL-CONTAINER-LICENSE for your convenience. + +[TabPFGen] Generating 1000 rows via generate_regression +Step 0/1000 +Step 100/1000 +Step 200/1000 +Step 300/1000 +Step 400/1000 +Step 500/1000 +Step 600/1000 +Step 700/1000 +Step 800/1000 +Step 900/1000 +[TabPFGen] Saved 1000 rows -> /work/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/tabpfgen-n20-1000-20260321_070557.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..495aea56fe98182b4762782dddf8cfc7ef8cd3fe --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n20", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "exists": true, + "size": 291758, + "sha256": "8768b9641a081ce32375b2739c6d0a6cdf66c1b03268c7db5f71ffd0019c97e2" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "exists": true, + "size": 36657, + "sha256": "c2dae02f854856ba824310ecaca5c73a72a3302753396aa681c82b69d65b174c" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv", + "exists": true, + "size": 36232, + "sha256": "82c48522e82ea4c5e4c407ec9239e82558dcff1df413f3d0c382e77fa041bc88" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_profile.json", + "exists": true, + "size": 2675, + "sha256": "7e7d747ab11beae1e58278dc8d6ae08d7ae6f14fe93f77a4fc1e6e589df21df4" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_contract_v1.json", + "exists": true, + "size": 3047, + "sha256": "20f513ccbc9f09d5286bc8998a5772f42b78b40aa1ed60b079fa73edf9c78eec" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8618a420d9d101a283cfb38feb336ac37687988f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,112 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "columns": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91364f3480d02e634daea210e8cae28ad5402b46 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n20", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "PE", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e01e5271fe01e2d473a2c5ecfda87fe45fdd8b3d --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/public_gate/staged_input_manifest.json @@ -0,0 +1,117 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..897be1d71ce4757c0e03a6ddc3b06ebcf5b4d0c5 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n20", + "model": "tabpfgen", + "run_id": "tabpfgen-n20-20260321_070556", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/tabpfgen-n20-1000-20260321_070557.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/staged_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb807ac5b23b2e7dfb39b3a5378cd452e84d56ed --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/test.csv @@ -0,0 +1,959 @@ +AT,V,AP,RH,PE +14.72,41.23,997.91,82.69,467.11 +11.94,40.66,1016.61,96.11,467.99 +27.56,66.93,1016.81,55.59,444.1 +9.59,34.69,1027.65,75.31999999999998,478.88 +7.46,41.82,1032.67,74.59,483.11 +15.52,36.99,1006.86,89.7,467.9 +15.47,43.13,1015.11,50.5,466.63 +21.84,45.09,1013.94,46.11,450.88 +19.83,51.43,1007.36,91.64,449.45 +29.3,67.69,1007.17,55.5,430.72 +6.63,39.42,1024.81,72.58,482.02 +22.88,69.45,1014.02,65.13,441.76 +11.97,42.32,1016.95,88.32,467.98 +29.25,67.32,1013.88,38.57,437.94 +14.89,39.58,1012.26,77.58,465.95 +10.39,44.85,1014.22,78.42,478.05 +25.66,77.54,1008.22,78.42,432.82 +16.5,49.39,1018.35,93.42,462.48 +28.55,74.33,1011.77,73.34,426.48 +7.84,40.07,1016.68,47.63,488.7 +27.14,71.32,1007.8,87.99,431.96 +25.18,71.98,1006.71,89.86,432.88 +6.01,35.79,1011.26,90.72,482.79 +14.54,41.17,1015.15,67.78,470.19 +11.8,43.22,1008.57,78.01,469.55 +23.82,44.89,1009.39,74.69,445.45 +32.81,71.32,1007.69,47.29,434.38 +30.63,74.22,1007.47,46.52,430.38 +25.43,70.17,1000.46,87.84,436.43 +30.17,76.86,998.23,73.61,430.3 +26.27,58.33,1013.81,60.43,438.82 +26.02,63.07,1010.94,53.96,446.82 +14.64,39.31,1008.84,79.3,462.72 +19.99,65.94,1012.28,75.42,447.22 +32.9,68.51,1012.95,50.09,430.23 +20.3,44.9,1008.25,64.08,457.6 +22.86,47.43,1009.75,61.54,452.53 +10.82,44.63,1020.64,90.26,473.23 +13.15,42.44,1014.51,99.53,469.34 +27.4,66.48,1004.71,51.5,439.66 +4.96,40.07,1011.8,67.38,494.75 +8.67,36.66,1026.8,84.36,480.38 +25.97,43.21,1011.9,88.73,434.83 +10.23,42.32,1017.53,89.93,473.59 +27.66,59.21,1013.12,51.58,438.57 +27.21,68.12,1012.96,54.69,435.2 +19.72,65.94,1010.53,82.12,446.84 +8.87,41.82,1033.3,74.28,477.97 +15.29,25.88,1009.21,66.0,464.25 +19.48,39.72,1001.75,55.41,457.16 +10.93,39.16,1016.54,90.56,479.83 +20.84,51.19,1008.63,84.11,448.98 +9.01,40.77,1022.37,90.3,470.84 +21.08,63.13,1013.53,98.0,443.51 +14.94,40.0,1017.69,65.43,456.41 +28.37,63.31,1013.18,49.02,437.64 +23.45,45.61,1012.84,73.42,454.92 +12.76,42.32,1015.35,78.18,466.15 +13.86,44.21,1022.6,83.56,468.3 +24.51,51.95,1005.57,63.53,449.73 +5.04,40.64,1021.35,93.63,484.42 +14.24,45.01,1013.54,88.68,461.64 +11.17,39.72,1002.4,81.4,474.64 +11.94,44.2,1017.97,82.93,474.02 +9.28,41.54,1018.33,79.89,482.8 +28.91,58.33,1013.84,39.72,437.53 +16.89,49.21,1015.19,70.39,458.25 +16.34,36.99,1006.99,90.06,466.24 +16.41,47.24,1015.75,88.78,457.94 +19.44,39.53,1006.99,63.18,457.09 +9.37,40.11,1024.94,75.03,471.13 +13.64,44.88,1019.85,56.86,466.66 +16.19,36.99,1007.37,92.4,462.94 +18.75,63.09,1018.19,87.84,450.98 +15.97,45.01,1016.58,83.24,456.91 +19.5,52.72,1025.21,50.21,457.26 +10.49,42.49,1009.81,78.92,478.75 +20.78,62.52,1017.58,73.3,452.3 +7.41,40.81,1026.15,88.96,488.48 +25.38,72.23999999999998,1010.76,89.64,432.3 +4.0,39.9,1009.64,97.16,490.79 +30.61,68.84,1011.18,52.5,439.9 +28.57,75.33,1003.16,76.14,431.58 +15.37,41.96,1011.58,96.76,466.02 +31.56,66.44,1008.91,64.16,430.11 +16.69,46.18,1010.8,96.8,466.03 +22.0,51.3,1012.87,85.79,450.18 +28.31,74.34,998.42,79.23,431.95 +15.7,44.21,1021.26,86.83,462.19 +21.79,58.2,1017.21,66.74,446.94 +25.67,58.59,1013.0,62.34,451.03 +20.59,59.8,1015.27,77.94,453.83 +16.14,44.21,1020.36,80.59,461.03 +25.61,47.43,1008.62,54.51,442.96 +7.61,44.71,1019.41,70.48,485.36 +30.32,64.69,1006.35,51.36,436.72 +29.45,68.27,1007.96,61.63,432.96 +29.28,77.17,1009.4,76.3,433.14 +5.62,41.31,1001.37,89.16,485.6 +24.86,44.05,1005.69,66.65,447.2 +6.17,40.07,1013.7,58.99,495.21 +13.65,41.58,1020.56,72.17,460.8 +3.96,35.47,1016.79,83.81,489.68 +6.49,39.33,1010.85,91.85,489.22 +31.32,71.29,1008.37,50.07,430.46 +8.07,43.69,1017.05,87.34,485.18 +13.35,39.64,1010.1,93.3,471.69 +26.21,56.85,1011.45,41.37,439.55 +5.71,40.77,1022.51,89.58,485.75 +18.98,60.1,1010.09,85.34,453.37 +6.07,38.91,1019.25,83.39,483.56 +26.92,78.92,1011.65,96.22,434.64 +24.44,47.93,1003.13,67.04,440.53 +14.45,52.75,1023.97,63.59,459.85 +26.44,71.64,1004.55,85.53,435.61 +30.7,74.22,1008.12,50.39,432.51 +6.48,36.24,1013.62,92.03,484.65 +30.47,70.83,1010.91,46.94,444.39 +13.78,38.28,1014.8,81.19,467.43 +19.65,62.1,1019.46,77.81999999999998,449.13 +9.51,43.79,1016.02,79.81,481.12 +16.31,52.75,1024.4,55.69,456.58 +13.08,39.82,1012.27,85.21,476.96 +20.72,44.57,1008.96,72.56999999999998,449.76 +9.77,41.44,1017.69,78.26,481.74 +26.12,66.75,1017.86,79.02,433.67 +10.95,43.8,1022.61,63.46,473.2 +11.01,43.69,1016.7,81.48,477.3 +17.36,52.9,1015.42,69.97,458.66 +16.7,46.18,1011.4,95.51,458.05 +11.95,42.07,1018.52,84.73,467.91 +18.3,44.06,1017.95,63.24,456.32 +14.69,35.71,1015.78,57.34,467.39 +30.82,76.2,1007.47,59.3,432.22 +22.36,58.79,1016.69,73.59999999999998,445.76 +23.89,64.27,1013.37,75.22,450.82 +5.75,42.07,1004.24,78.23,485.23 +26.64,69.13,1010.6,79.23,430.41 +23.08,48.41,1008.44,82.35,443.5 +29.76,57.19,1008.59,51.1,436.21 +32.8,68.67,1005.27,44.53,432.28 +24.63,65.38,1010.43,40.68,446.23 +11.02,43.02,1012.32,66.54,478.81 +32.13,69.98,1013.3,55.85,431.84 +23.81,60.08,1017.29,62.66,450.33 +8.09,38.5,1012.99,67.31,484.81 +32.63,69.89,1013.85,41.66,425.72 +13.27,52.75,1025.86,65.12,464.82 +29.3,68.08,1011.23,56.23,434.11 +26.3,77.95,1009.45,78.72,437.95 +28.52,70.02,1010.34,54.21,441.98 +17.86,50.88,1015.59,88.28,457.33 +7.92,41.66,1014.84,76.12,483.38 +3.74,35.19,1018.58,98.84,490.5 +21.33,63.86,1020.33,72.13,445.02 +30.36,74.87,1008.96,61.87,435.31 +14.23,46.18,1017.39,87.29,463.86 +9.55,41.44,1015.07,85.94,481.75 +9.78,41.93,1023.18,75.05,484.03 +30.8,73.17,1010.51,51.93,432.24 +15.48,47.83,1004.88,81.68,463.67 +16.58,46.18,1010.4,96.29,463.51 +20.32,39.72,1001.38,57.21,456.18 +11.83,43.14,1010.06,88.14,471.98 +26.75,56.57,1013.76,57.93,443.92 +14.13,48.92,1011.72,78.06,464.17 +19.91,51.19,1008.0,90.23,449.23 +14.37,40.56,1021.67,68.18,470.19 +17.27,44.9,1007.85,78.8,454.19 +9.59,38.56,1017.52,61.89,481.05 +28.04,70.32,1011.28,78.16,435.42 +18.18,44.63,1020.41,48.64,455.57 +32.27,71.85,1008.06,59.28,429.72 +19.02,44.85,1014.57,43.37,465.42 +13.47,43.34,1012.75,87.04,468.8 +12.25,40.75,1016.02,82.4,475.07 +27.45,64.34,1007.12,65.87,440.0 +29.96,67.83,1008.0,44.05,433.13 +12.55,38.91,1012.58,75.44,474.35 +31.92,75.33,1002.13,65.73,431.32 +21.55,60.27,1017.42,92.59,443.93 +20.14,46.33,1013.24,83.39,453.35 +18.33,44.34,1019.55,51.69,468.8 +8.65,40.56,1023.23,78.84999999999998,485.87 +26.99,62.26,1011.13,71.27,436.89 +14.4,41.26,1021.41,73.11,462.78 +18.35,62.1,1019.97,78.36,455.29 +16.76,43.77,1012.25,77.95,457.0 +11.82,42.86,1014.12,88.28,476.7 +20.78,68.28,1008.75,60.87,450.57 +29.35,54.2,1013.07,42.45,439.47 +22.63,45.61,1014.14,73.06,457.88 +22.83,65.18,1012.24,79.73999999999998,442.43 +6.74,36.08,1020.36,86.98,484.18 +31.54,71.06,1008.4,71.77,431.87 +23.24,45.01,1012.21,45.23,457.01 +32.74,68.31,1010.23,41.29,441.66 +14.18,39.3,1020.1,67.48,464.32 +25.86,59.92,1009.92,73.95,436.06 +14.05,40.69,1015.66,74.39,470.9 +23.78,69.71,1008.79,83.17,443.06 +14.14,39.59,1010.84,96.02,465.23 +11.77,40.71,1024.55,72.48999999999998,477.94 +23.77,64.15,1021.02,55.87,448.43 +9.61,44.03,1008.3,91.36,473.54 +22.42,62.52,1016.83,63.27,451.64 +24.85,68.37,1006.5,68.37,442.66 +17.69,44.34,1019.31,61.12,464.13 +3.21,38.44,1017.11,84.86,492.93 +18.45,42.44,1013.45,63.52,459.79 +11.48,44.6,1018.29,90.76,470.39 +17.37,48.92,1011.91,58.4,455.53 +6.22,39.33,1012.31,93.23,491.77 +12.74,49.83,1007.44,91.47,466.09 +22.56,70.79,1005.85,93.09,435.14 +24.35,58.49,1011.03,70.64,445.6 +16.58,44.68,1021.5,83.38,458.87 +25.47,70.36,1005.79,77.73,437.02 +30.88,69.51,1011.48,46.58,433.14 +6.64,39.04,1018.84,74.94,481.53 +12.65,41.93,1023.07,65.05,479.53 +8.91,40.11,1022.87,78.39,475.43 +5.57,42.85,1013.55,92.14,488.85 +16.09,44.2,1019.39,67.24,460.56 +20.98,60.07,1016.26,67.18,446.26 +14.93,39.16,1007.25,72.34999999999998,463.2 +24.19,58.95,1017.78,58.78,441.91 +23.86,52.84,1006.56,48.94,444.66 +15.59,52.05,1013.67,78.55,456.07 +26.04,74.67,1016.68,81.2,433.55 +22.35,54.42,1012.46,75.01,454.72 +10.57,36.71,1022.11,82.39,472.62 +6.16,38.5,1012.83,93.68,490.92 +24.12,62.44,1013.83,88.02,443.3 +28.24,71.58,1010.1,67.92,434.01 +21.11,69.94,1004.37,84.26,439.91 +11.49,44.63,1020.44,86.04,471.08 +24.92,60.95,1014.88,60.58,445.44 +23.56,67.79,1010.14,89.72,441.29 +7.54,40.72,1023.82,85.15,485.92 +26.85,75.59999999999998,1017.43,74.55,433.48 +12.14,44.85,1014.36,60.04,476.68 +17.03,43.99,1021.5,82.32,460.25 +31.41,64.44,1013.84,49.49,439.3 +14.73,40.35,1011.15,65.2,470.03 +24.04,59.43,1007.6,76.98,437.51 +21.03,44.78,1007.99,36.82,459.72 +22.61,42.8,1014.24,69.71,460.26 +17.36,44.63,1020.49,54.21,456.98 +26.82,64.96,999.72,63.55,427.51 +18.19,44.06,1017.24,78.73,456.13 +24.38,47.01,1015.17,68.96,454.85 +12.98,39.64,1013.95,74.39,473.54 +14.17,43.13,1014.94,48.62,471.08 +18.71,54.9,1017.12,74.79,456.88 +12.8,44.34,1016.52,86.73,473.42 +16.71,46.18,1012.06,96.6,458.4 +22.99,60.77,1017.97,78.47,447.62 +28.34,63.77,1013.7,61.13,439.75 +34.53,73.03,1013.53,36.74,437.03 +10.16,40.8,1028.13,86.39,477.49 +27.28,44.89,1009.02,49.9,441.94 +22.75,58.86,1016.0,67.34,448.32 +25.01,59.54,1007.91,80.93,441.3 +23.64,63.31,1014.5,61.83,440.7 +8.85,41.06,1020.99,86.05,486.4 +19.65,63.91,1009.26,99.08,444.9 +18.22,44.34,1019.35,56.78,469.27 +9.68,40.77,1022.04,85.23,473.73 +17.49,40.55,1001.73,73.15,462.37 +21.79,61.45,1011.11,91.78,446.99 +21.06,62.91,1011.92,75.52,455.22 +23.72,58.62,1016.32,71.17,447.13 +30.93,73.42,1010.98,56.42,432.44 +5.98,38.91,1016.5,91.83,488.85 +13.45,41.16,1022.04,82.96,460.57 +12.23,43.69,1016.46,84.4,471.62 +8.13,39.96,1026.07,95.84,477.12 +29.0,77.54,1011.33,75.13,431.37 +11.61,52.75,1020.94,77.56,464.68 +19.4,49.69,1012.89,75.53,455.6 +5.0,40.64,1021.05,94.84,485.27 +23.46,57.85,1012.7,65.54,444.66 +18.51,48.06,1015.14,79.83,455.44 +29.29,70.36,1006.64,60.82,431.26 +27.55,64.96,999.73,57.34,431.33 +21.82,63.9,1014.48,92.53,447.29 +17.03,47.83,1004.94,79.68,460.43 +17.18,46.0,1002.74,100.1,454.02 +18.14,49.78,1002.95,100.09,451.44 +12.39,49.83,1007.6,92.43,468.43 +20.39,64.15,1021.31,62.35,457.37 +22.72,64.15,1021.14,60.34,453.13 +20.3,58.41,1014.05,86.38,451.74 +21.46,58.18,1007.45,95.33,444.12 +28.99,68.24,1008.75,66.57,428.28 +12.07,40.81,1025.63,68.02,475.96 +15.4,40.69,1015.1,70.25,471.66 +9.59,37.14,1013.8,72.84999999999998,474.74 +7.64,40.02,1031.58,71.19,479.43 +15.42,37.85,1009.89,85.8,467.33 +11.75,42.32,1015.28,77.25,470.44 +19.51,48.78,1021.03,86.33,453.27 +31.86,73.88,1005.6,57.68,435.91 +12.4,40.35,1011.46,79.48999999999998,476.44 +28.11,69.84,1004.68,67.08,427.33 +8.74,40.03,1016.81,93.37,481.07 +24.32,58.79,1016.8,65.61,442.78 +13.72,44.47,1027.2,68.89,470.66 +6.11,38.68,1017.53,79.23,482.97 +16.74,39.16,1005.68,71.17,460.47 +8.52,41.55,1002.09,86.81,483.63 +20.55,68.63,1012.5,67.07,453.47 +22.63,58.49,1010.94,72.7,448.38 +18.13,60.1,1009.67,84.75,455.82 +12.51,43.67,1013.24,91.55,471.96 +21.02,61.5,1008.52,77.73999999999998,448.08 +6.99,40.07,1014.83,54.36,490.11 +16.37,36.99,1006.37,90.11,463.76 +15.68,39.16,1006.09,75.62,461.98 +22.17,60.27,1018.21,89.55,443.31 +26.7,49.02,1007.68,67.97,438.92 +19.55,39.39,1013.55,57.82,464.36 +27.74,74.78,1010.05,60.82,436.87 +18.09,43.72,1008.64,74.15,453.02 +11.49,35.76,1019.08,60.04,472.45 +23.67,63.86,1019.67,57.95,441.73 +32.02,67.83,1007.77,53.31,426.55 +20.38,62.52,1017.85,75.56,456.56 +5.02,45.87,1007.8,99.22,481.03 +26.24,51.43,1011.32,59.52,447.91 +14.47,41.76,1021.98,78.41,464.0 +24.16,60.29,1018.09,63.49,446.17 +10.07,40.92,1021.84,84.18,471.71 +10.73,44.92,1025.1,85.4,476.81 +16.81,42.86,1013.83,77.11,464.36 +27.52,74.67,1015.77,72.01,433.56 +13.96,40.83,1009.89,84.86,469.86 +22.78,49.16,1002.29,64.28,444.99 +22.77,70.32,1012.04,82.43,440.67 +8.64,41.66,1014.14,80.44,481.89 +27.33,66.17,1011.06,64.55,443.89 +19.07,49.69,1007.22,76.79,453.09 +24.1,68.61,1010.97,74.87,443.75 +14.6,42.32,1015.71,77.03,464.67 +14.77,44.47,1028.38,71.18,464.25 +9.14,38.91,1018.62,89.88,476.57 +14.85,45.87,1009.37,84.65,462.67 +8.47,41.03,1021.72,70.16,485.1 +23.79,59.44,1012.53,79.48,448.67 +26.63,64.44,1012.66,61.19,442.0 +12.88,44.34,1016.03,88.51,474.94 +12.73,44.34,1015.11,93.55,472.94 +17.2,40.55,1000.68,72.67,462.55 +10.05,41.17,1018.98,83.71,481.38 +28.37,75.59999999999998,1017.48,55.19,439.25 +25.61,60.32,1015.77,56.48,443.96 +20.34,46.63,1013.16,79.08,453.62 +20.21,58.12,1015.36,79.18,453.19 +21.19,58.86,1014.19,68.96,452.43 +29.71,73.18,1012.35,63.06,427.04 +15.24,37.87,1020.52,84.49,463.09 +17.35,42.86,1014.62,74.16,465.16 +13.5,45.51,1015.33,86.95,469.08 +25.94,77.23999999999998,1007.97,84.82,432.88 +5.51,35.57,1026.3,78.97,489.36 +26.16,52.36,1013.62,58.52,453.08 +15.17,49.15,1021.91,91.73,461.89 +14.57,42.18,1015.13,74.89,465.75 +12.16,45.0,1021.51,50.52,482.99 +25.1,60.37,1005.83,72.53,438.44 +13.57,39.39,1014.01,82.12,471.44 +20.25,55.5,1020.03,69.33,455.13 +11.23,39.72,1018.46,60.62,475.04 +12.52,42.34,1018.67,95.29,464.71 +8.68,39.61,1021.54,77.98,486.31 +8.18,40.02,1031.45,73.66,478.81 +21.93,60.84,1017.8,82.61,443.89 +30.69,71.98,1004.53,65.86,430.33 +12.08,41.39,1019.45,78.3,477.8 +9.08,42.49,1010.67,85.35,481.46 +20.33,57.76,1016.47,75.34999999999998,450.25 +31.03,69.98,1011.33,52.16,436.13 +6.03,41.14,1028.04,87.46,479.61 +14.02,42.86,1030.86,68.36,467.29 +20.51,45.38,1014.29,69.14,461.87 +28.17,63.13,1012.44,66.61,439.94 +18.83,63.91,1010.8,96.18,448.15 +25.52,63.94,1017.81,41.54,440.32 +22.61,49.3,1003.51,83.02,441.76 +28.61,68.12,1011.71,47.57,432.94 +18.43,56.03,1020.41,60.55,465.17 +13.41,54.3,1016.48,79.28,467.88 +11.11,40.55,1023.91,87.12,476.37 +33.97,72.29,1008.98,44.32,432.33 +18.41,62.1,1020.4,78.09999999999998,457.14 +22.4,58.12,1015.24,78.03,449.13 +25.1,61.47,1007.84,75.75,447.27 +28.73,68.3,1016.53,55.73,434.15 +11.47,43.67,1012.68,72.51,475.72 +11.19,40.64,1020.57,84.49,472.86 +10.38,43.02,1013.37,78.53,474.44 +30.09,69.48,1009.51,53.24,435.2 +26.72,65.61,1014.41,52.01,442.48 +19.14,56.65,1020.84,82.97,458.06 +21.25,44.05,1005.69,81.87,448.43 +15.55,45.09,1014.33,62.19,457.36 +12.28,42.34,1019.19,95.8,467.03 +31.93,72.58,1006.9,56.27,425.14 +24.9,71.77,1006.24,85.25,427.77 +23.71,67.17,1007.27,90.2,440.65 +31.05,62.7,1009.35,55.27,441.67 +10.08,40.72,1022.7,67.3,480.8 +22.31,61.45,1009.25,98.56,437.05 +24.01,42.48,1011.39,55.1,453.12 +21.75,49.82,1015.01,78.33,455.28 +29.3,73.67,1005.64,65.31,431.07 +12.27,41.17,1019.39,52.18,473.84 +16.51,41.79,1007.1,74.03,457.74 +26.26,63.73,1010.45,70.61,442.18 +31.33,73.03,1014.18,49.28,438.49 +21.81,65.06,1014.6,66.41,447.13 +14.93,39.39,1014.31,80.68,468.88 +33.87,71.32,1007.91,39.48,435.89 +28.09,63.31,1013.01,52.6,438.6 +18.06,56.65,1020.2,81.59,459.14 +20.36,56.53,1020.25,72.95999999999998,455.34 +29.58,76.2,1008.37,60.73,433.91 +9.62,41.01,1019.43,97.99,467.34 +25.08,58.49,1011.1,64.47,446.9 +24.33,60.32,1015.49,59.95,445.36 +30.93,70.83,1010.61,46.13,440.59 +22.04,58.05,1013.11,85.22,447.28 +5.74,45.87,1011.44,95.94,482.0 +24.17,71.25,1003.9,90.36,435.66 +5.95,39.48,1005.16,63.6,486.07 +27.51,63.73,1009.97,66.14,440.81 +28.62,70.32,1008.87,46.67,431.03 +20.48,60.29,1017.16,72.09999999999998,455.51 +27.03,71.14,1010.33,66.25,430.41 +28.31,70.32,1007.88,47.0,432.5 +16.6,41.93,1022.01,48.98,467.51 +14.67,71.14,1019.84,77.72,458.8 +5.68,40.35,1012.11,92.86,486.79 +29.66,59.22,1013.25,61.2,441.58 +6.99,39.37,1020.19,75.06,487.18 +25.61,74.22,1010.26,75.15,438.45 +11.31,39.61,1018.74,68.9,471.92 +29.04,76.09,1007.52,75.44,430.32 +16.5,53.29,1017.7,95.66,458.37 +22.26,60.77,1018.26,85.94,442.58 +25.95,59.92,1010.05,76.05,443.93 +28.09,70.02,1010.84,51.29,437.83 +8.36,40.67,1014.99,73.65,489.1 +24.88,49.16,1006.04,64.54,445.18 +14.34,42.86,1031.75,66.81,466.17 +18.16,39.99,1008.13,68.5,461.16 +20.57,44.9,1008.39,62.69,456.18 +16.85,39.64,1008.82,80.81,464.2 +24.56,63.21,1013.79,82.38,444.34 +9.54,41.17,1019.79,65.61,481.18 +21.43,60.95,1015.27,75.48999999999998,449.12 +24.15,71.73,1009.76,85.16,436.55 +21.87,74.87,1009.28,85.4,442.37 +15.3,41.76,1022.57,71.56,466.59 +19.45,41.1,1001.88,52.16,458.26 +27.99,71.64,1007.79,72.67,437.81 +21.03,69.05,1002.17,75.34999999999998,444.35 +31.84,77.95,1014.9,55.35,433.28 +29.83,71.43,1011.93,55.8,439.34 +10.08,37.92,1010.47,66.37,474.63 +18.36,51.43,1010.57,90.17,459.8 +16.4,38.01,1022.2,73.05,463.79 +13.03,42.86,1014.39,86.25,475.03 +18.88,62.96,1020.62,82.01,456.18 +11.87,41.78,1012.97,64.79,470.84 +23.16,57.76,1017.74,63.79,451.79 +15.39,42.28,1007.35,81.34999999999998,467.3 +16.84,56.03,1020.25,70.37,437.14 +14.65,44.84,1023.39,87.76,467.18 +18.97,44.85,1014.86,46.31,466.17 +26.22,69.89,1015.46,76.63,433.61 +7.07,37.49,1010.35,87.19,481.58 +17.4,44.9,1020.5,77.11,457.75 +30.05,73.68,1014.95,70.6,434.92 +14.01,45.08,1023.28,82.49,464.79 +23.24,63.78,1017.1,63.8,446.95 +23.03,65.12,1016.29,69.8,447.84 +8.58,40.72,1022.04,87.55,480.96 +24.92,48.92,1010.11,36.53,445.56 +25.8,65.38,1009.3,52.28,450.5 +26.31,48.6,1002.64,60.04,440.06 +29.13,62.26,1010.51,52.94,436.37 +11.02,41.17,1018.18,86.86,477.62 +13.61,39.85,1012.78,58.12,475.62 +23.32,69.13,1010.75,91.84,435.27 +30.45,43.21,1011.35,63.59,438.68 +31.7,70.36,1006.26,58.18,438.38 +23.62,73.67,1007.0,90.8,438.33 +12.45,43.67,1013.61,91.34,474.27 +28.85,68.12,1012.05,46.31,436.15 +18.4,43.69,1016.59,52.44,462.05 +28.97,78.92,1011.71,88.5,430.98 +4.93,35.19,1018.04,92.94,486.39 +13.75,44.47,1029.63,70.74,467.14 +16.64,44.9,1021.02,70.34,460.93 +19.04,68.28,1004.52,86.16,444.54 +15.89,43.96,1014.02,75.23999999999998,467.35 +29.03,67.79,1010.67,55.42,444.09 +14.97,58.2,1019.52,81.13,458.68 +16.23,43.52,1020.13,76.3,464.74 +14.74,44.47,1028.29,67.87,462.92 +9.75,52.72,1026.03,78.53,473.41 +27.18,59.27,1012.57,64.18,439.69 +16.22,50.88,1014.33,100.09,454.94 +6.62,42.49,1008.74,94.57,482.74 +9.33,44.03,1011.73,86.04,474.15 +23.14,62.26,1011.87,66.44,444.38 +14.52,40.35,1011.11,69.84,470.8 +33.71,69.98,1013.09,42.62,431.99 +14.84,42.03,1017.47,79.27,466.2 +13.48,41.92,1030.2,65.96,463.9 +31.4,71.06,1008.44,74.77,433.34 +27.44,66.56,1005.51,69.28,428.0 +22.68,70.47,1010.86,82.8,441.47 +9.03,40.71,1025.98,81.94,484.97 +14.36,41.26,1021.16,73.43,462.25 +10.06,43.22,1014.1,85.7,473.0 +22.76,49.02,1007.5,88.56,442.84 +24.79,75.59999999999998,1017.07,68.23,440.05 +34.97,73.56,1006.57,44.69,435.15 +27.64,75.59999999999998,1017.35,54.78,441.04 +18.37,51.86,1018.8,74.3,461.14 +7.91,39.96,1023.57,88.44,475.52 +21.8,65.94,1012.02,63.52,448.66 +29.42,71.32,1002.26,67.13,437.47 +19.01,58.46,1017.14,90.99,446.18 +24.01,67.17,1007.44,86.87,443.09 +11.69,39.22,1017.05,55.51,472.76 +22.01,58.46,1016.26,75.98999999999998,443.75 +13.74,42.74,1029.54,70.0,465.92 +12.27,43.8,1023.21,57.0,468.55 +12.88,43.8,1023.19,59.18,468.19 +32.06,71.85,1007.9,56.44,426.07 +23.46,59.27,1010.6,79.79,445.57 +24.41,52.3,1006.28,70.33,442.62 +13.22,44.92,1023.84,87.99,471.43 +13.69,40.83,1008.53,84.81,471.26 +10.31,45.01,1018.42,93.67,473.74 +21.41,54.2,1011.37,82.28,448.11 +24.49,65.46,1015.77,44.95,445.27 +25.72,49.82,1016.19,60.1,452.33 +18.73,46.48,1007.19,79.23,450.74 +22.88,59.21,1011.51,86.93,440.25 +26.59,60.96,1011.9,52.41,439.77 +30.38,71.58,1010.17,50.45,433.75 +18.94,47.83,1005.18,78.59,455.19 +25.17,64.79,1017.87,63.26,442.15 +20.55,48.98,1016.1,63.89,452.52 +10.03,42.18,1017.3,85.99,475.74 +25.03,60.27,1017.9,72.04,438.24 +7.82,41.16,1023.3,87.7,475.66 +33.43,69.88,1006.86,44.84,435.59 +11.33,41.5,1013.58,88.7,475.01 +12.34,40.62,1016.28,53.6,466.47 +4.78,42.85,1013.07,94.72,479.09 +14.03,49.15,1020.5,83.65,467.16 +26.11,47.43,1009.01,56.09,445.36 +24.67,70.94,1007.99,75.64,443.51 +14.28,44.84,1024.84,79.09,474.57 +26.74,59.87,1012.5,62.88,447.88 +29.83,62.66,1007.98,47.07,438.71 +17.51,44.9,1009.05,74.91,455.01 +30.05,69.34,1008.26,61.5,436.82 +15.85,49.69,1015.48,88.65,464.72 +32.5,71.37,1003.75,43.8,433.7 +30.56,69.04,1009.29,55.73,442.24 +23.32,69.23,1011.75,75.59,436.18 +18.0,52.08,1003.07,100.09,450.85 +25.45,70.04,1011.2,82.48,430.2 +17.37,40.55,1001.19,71.42,460.97 +16.43,41.79,1005.47,76.89,455.85 +19.15,44.89,1009.6,74.52,451.09 +16.0,39.16,1016.37,77.63,468.49 +10.87,44.71,1021.38,58.22,484.63 +21.98,55.97,1009.12,89.51,442.65 +21.92,61.87,1009.68,58.83,445.52 +14.62,42.86,1015.56,84.5,470.79 +20.9,67.07,1005.43,82.85,443.46 +23.45,69.04,1010.5,80.77,442.48 +7.31,43.02,1014.19,86.43,484.82 +22.21,61.87,1010.9,54.22,446.62 +20.83,49.02,1009.45,91.92,445.31 +14.71,44.0,1024.98,85.08,462.87 +19.92,63.31,1015.02,82.71,443.54 +31.85,73.20999999999998,1000.98,72.2,435.94 +24.1,71.97,1009.92,91.27,443.09 +12.42,38.25,1012.76,82.23,472.3 +28.79,70.79,1003.83,65.9,425.64 +17.05,44.88,1017.69,88.19,459.63 +31.59,62.7,1009.3,50.16,442.58 +14.93,41.79,1008.88,81.48,456.75 +24.44,69.13,1011.1,87.62,434.34 +26.05,65.59,1012.78,67.03,437.04 +26.48,51.43,1006.76,74.3,438.1 +17.19,37.2,1011.84,67.59,468.4 +6.25,39.04,1019.65,71.27,484.14 +31.12,67.69,1005.3,50.46,425.21 +11.16,40.05,1014.95,88.38,479.11 +31.16,69.88,1007.01,68.28,433.24 +19.27,43.14,1013.17,39.85,463.14 +17.79,43.52,1020.65,68.29,458.57 +22.76,58.96,1013.85,55.95,454.05 +5.66,39.42,1024.7,78.52,482.11 +21.75,67.45,1014.89,67.09,445.1 +24.66,58.86,1013.86,56.39,444.42 +18.16,39.99,1007.73,70.54,463.69 +25.26,61.08,1013.68,71.72,447.46 +23.6,48.98,1015.41,48.28,448.43 +22.89,65.34,1015.53,61.0,450.53 +28.82,71.43,1011.51,58.58,443.68 +21.57,69.23,1011.94,81.73,437.55 +11.03,42.32,1017.26,90.56,470.92 +15.75,39.16,1016.31,77.98999999999998,468.87 +13.67,44.92,1023.6,85.35,467.71 +11.58,39.69,1005.17,86.55,469.6 +32.31,62.04,1010.41,39.39,450.13 +23.67,72.23999999999998,1011.22,90.45,435.94 +11.29,35.76,1019.32,58.91,473.74 +13.58,49.83,1008.9,86.8,465.82 +10.54,41.93,1016.64,93.52,479.65 +24.96,74.98999999999998,1008.25,80.52,440.91 +24.53,74.78,1009.9,78.34,446.3 +12.12,41.17,1017.68,78.72,470.67 +22.99,56.57,1013.93,78.77,445.44 +31.15,67.45,1014.85,42.11,431.97 +20.2,64.45,1009.03,61.77,452.33 +10.9,41.46,1016.66,86.2,479.45 +27.04,48.41,1008.57,60.73,441.21 +29.72,74.78,1009.32,55.25,438.19 +29.86,69.34,1007.76,54.12,433.57 +28.18,73.88,1005.89,75.41,434.48 +27.0,69.4,1004.86,82.2,433.83 +33.63,70.4,1004.02,53.6,430.05 +10.44,37.83,1006.31,97.2,474.42 +13.39,49.83,1007.14,90.88,466.04 +9.0,43.13,1020.25,81.31999999999998,481.09 +18.94,48.7,1008.5,94.83,451.38 +26.14,71.98,1005.98,82.45,428.91 +5.11,42.07,1004.28,81.8,486.41 +26.62,65.12,1016.0,43.24,441.22 +25.69,62.26,1011.38,74.08,436.36 +8.13,39.99,1011.71,87.89,486.19 +9.97,41.62,1013.99,96.02,464.86 +6.58,43.02,1014.03,84.95,488.22 +13.9,42.86,1030.82,71.89,473.76 +12.33,39.28,1011.84,80.01,476.49 +7.26,36.08,1021.47,83.15,483.58 +12.29,40.03,1017.62,89.64,472.65 +33.82,77.17,1008.96,58.91,435.58 +9.27,40.22,1008.1,89.24,481.23 +23.44,62.52,1016.46,67.21,447.19 +31.63,69.59,1008.66,61.81,436.89 +27.28,51.43,1011.46,51.38,450.53 +21.45,45.09,1013.83,52.26,453.15 +25.14,69.13,1011.15,85.67,433.95 +20.12,45.09,1013.73,57.78,448.35 +16.36,53.82,1015.05,71.95,461.62 +19.77,65.06,1016.22,74.95,448.26 +31.92,75.33,1001.81,61.97,436.38 +26.52,43.77,1011.49,46.98,440.31 +11.52,40.03,1017.56,87.87,472.31 +29.91,74.33,1013.22,39.76,430.26 +15.01,39.52,1017.53,72.0,468.02 +28.39,65.51,1014.52,66.48,438.78 +25.3,71.29,1007.86,62.98,437.17 +16.63,53.82,1015.18,66.09,458.29 +10.41,44.68,1023.53,91.38,474.7 +26.86,68.08,1012.99,50.04,436.25 +10.48,36.71,1023.18,81.37,473.3 +10.58,42.34,1022.32,94.01,474.91 +6.94,38.91,1018.94,90.64,485.12 +20.64,49.21,1014.86,58.47,454.2 +25.69,73.18,1012.64,86.35,432.82 +22.48,71.29,1008.15,75.41,444.71 +6.63,39.37,1020.33,76.18,489.16 +33.4,69.98,1013.29,47.78,432.44 +15.11,42.99,1007.53,85.75,466.25 +8.99,36.66,1028.11,71.98,481.03 +9.6,41.82,1032.93,72.63,475.01 +9.42,41.4,1029.21,86.4,474.75 +23.62,68.63,1013.18,50.57,447.3 +28.19,71.97,1008.85,84.67,438.8 +26.39,49.16,1005.68,56.18,442.87 +24.93,47.01,1014.28,66.04,455.06 +21.28,70.72,1010.29,86.22,445.54 +8.73,41.92,1029.41,89.72,480.99 +6.99,35.19,1019.32,68.95,480.05 +30.7,71.58,1010.0,48.96,429.27 +15.82,44.2,1018.96,66.73,460.2 +23.19,49.82,1014.59,70.52,451.08 +10.27,42.34,1022.69,92.78,474.55 +14.04,39.64,1011.09,87.22,472.31 +20.42,62.96,1020.34,84.0,452.08 +17.31,58.49,1011.8,92.77,456.84 +13.51,43.41,1015.94,75.22,463.86 +7.39,39.81,1019.45,85.02,482.99 +26.71,76.86,1002.86,74.5,437.31 +31.74,79.73999999999998,1007.07,61.47,431.72 +21.46,50.59,1016.75,67.14,453.67 +12.75,44.03,1007.29,89.46,465.86 +14.43,44.84,1024.34,84.0,467.45 +23.93,68.28,1005.16,69.91,444.95 +10.62,42.02,999.83,96.66,472.41 +14.74,43.71,1024.35,81.53,465.49 +7.87,41.17,1020.33,77.77,486.2 +22.16,65.48,1017.22,70.51,446.0 +7.94,43.65,1018.75,59.45,479.8 +26.56,65.59,1012.6,64.25,443.66 +31.03,69.59,1007.77,63.96,432.56 +29.09,70.98,1007.86,80.34999999999998,439.34 +7.31,42.18,1014.75,86.75,477.38 +10.03,41.62,1014.55,95.61,462.73 +10.28,39.64,1010.45,74.15,477.65 +29.86,64.79,1017.37,44.8,439.89 +29.24,60.23,1009.62,59.71,438.24 +17.34,47.03,1013.36,98.13,463.89 +13.56,42.34,1017.95,93.83,462.6 +10.62,39.96,1025.37,96.64,470.8 +27.37,69.23,1013.25,48.02,433.18 +13.61,42.34,1017.57,91.35,465.65 +12.81,44.58,1016.49,80.76,475.5 +21.83,62.91,1011.07,91.34,443.76 +22.97,62.4,1010.25,75.18,445.3 +24.33,46.93,1013.72,48.27,447.43 +23.49,64.63,1020.75,65.16,450.28 +17.13,42.86,1014.15,73.59999999999998,463.09 +14.86,44.71,1018.3,49.46,466.38 +24.15,64.63,1020.72,58.06,448.87 +7.71,36.25,1027.92,89.84,481.74 +24.82,71.94,1010.5,64.67,438.69 +11.65,41.54,1020.09,67.96,476.4 +10.25,41.46,1020.65,87.07,481.94 +5.78,40.62,1016.55,84.98,484.13 +9.35,44.03,1011.02,88.11,476.25 +10.76,40.43,1025.98,79.65,490.78 +25.76,57.32,1011.93,43.61,440.26 +14.57,37.86,1022.44,68.82,463.58 +13.6,39.82,1013.34,86.1,470.69 +29.36,78.05,1011.12,64.17,434.29 +23.12,69.71,1008.98,84.41,442.21 +23.39,63.94,1010.54,89.94,441.44 +25.45,67.83,1009.47,57.97,429.95 +27.65,48.41,1008.54,58.25,440.94 +30.24,73.9,1006.74,56.39,441.31 +13.78,40.0,1018.38,68.67,458.74 +24.66,69.94,1006.56,60.91,432.68 +17.1,48.98,1016.48,85.63,454.43 +27.37,65.06,1013.09,50.92,440.5 +20.11,51.19,1007.82,92.06,449.03 +12.24,41.62,1013.38,90.26,461.23 +28.5,79.73999999999998,1006.75,87.09,433.08 +14.64,42.77,1017.59,79.59999999999998,464.27 +18.06,65.48,1018.79,77.95,454.34 +14.79,38.73,999.83,86.45,470.28 +35.2,73.56,1006.56,45.72,434.37 +22.93,51.19,1009.3,82.8,443.57 +25.73,66.54,1010.07,55.97,437.07 +18.77,50.66,1014.89,87.34,457.07 +11.52,40.8,1024.31,73.48999999999998,479.56 +8.84,42.49,1010.28,89.09,481.58 +21.24,60.84,1017.99,82.22,445.71 +15.67,45.17,1018.73,94.74,462.09 +22.99,46.21,1010.71,60.11,444.36 +23.93,64.05,1013.09,86.02,440.66 +34.33,69.05,1000.89,37.9,430.56 +29.85,68.24,1007.01,30.99,433.43 +30.1,67.45,1014.23,39.04,434.01 +6.85,37.49,1011.01,84.53,483.12 +26.53,54.2,1012.9,66.73,439.96 +24.2,59.07,1009.25,88.25,441.93 +24.6,75.23,1012.04,76.77,434.07 +30.1,66.25,1009.38,65.41,434.99 +21.6,59.8,1016.9,76.59,450.14 +24.9,58.49,1011.06,65.14,444.19 +26.9,60.93,1007.1,67.32,435.87 +23.07,57.17,1009.84,76.8,444.08 +24.85,70.47,1006.64,85.37,434.47 +30.3,73.9,1006.72,55.13,440.79 +32.18,69.75,1009.94,52.91,438.26 +29.11,74.78,1009.6,56.93,438.75 +21.37,65.94,1010.73,75.09,444.74 +26.53,69.71,1009.88,76.26,446.17 +8.9,40.77,1011.67,90.26,479.18 +22.45,63.77,1014.57,87.44,444.26 +28.9,71.25,1000.73,77.23999999999998,431.52 +18.55,46.48,1007.34,80.67,452.37 +20.92,63.86,1020.49,72.98,449.09 +14.38,45.09,1012.95,86.1,464.27 +8.9,41.4,1030.83,85.63,472.95 +11.1,44.85,1014.27,65.08,477.03 +20.85,59.21,1012.9,75.97,444.44 +26.27,71.98,1005.72,86.15,427.65 +15.61,40.89,1010.48,80.26,467.3 +3.26,41.31,996.32,100.0,489.38 +27.05,77.95,1009.57,76.56,434.09 +19.54,50.66,1014.7,84.53,456.61 +6.42,35.57,1025.58,79.63,485.86 +26.19,65.61,1014.51,54.52,443.73 +9.84,40.22,1009.5,85.38,479.65 +10.86,44.85,1014.15,88.36,476.87 +33.33,73.03,1014.2,42.28,436.05 +9.25,41.82,1033.25,74.73,478.48 +14.7,44.9,1021.87,83.9,468.69 +30.17,75.08,1005.17,55.89,438.89 +11.74,43.56,1015.14,70.72,477.5 +23.27,60.84,1019.13,67.24,440.22 +25.21,59.21,1013.19,62.85,438.7 +15.18,44.2,1019.6,72.45,462.09 +29.03,43.21,1011.83,65.23,434.11 +24.18,58.49,1011.3,77.81999999999998,445.49 +7.62,44.71,1020.56,69.96,486.07 +29.53,71.97,1008.6,79.25,434.96 +24.27,74.93,1012.73,73.81,443.06 +28.4,74.93,1013.65,48.6,442.23 +22.2,57.17,1009.82,78.43,447.75 +17.58,44.9,1020.52,71.48,459.78 +6.71,40.72,1022.78,80.69,483.11 +28.32,72.58,1007.77,78.34999999999998,428.06 +8.11,42.18,1014.82,93.09,473.62 +34.76,68.94,1006.75,41.31,427.42 +28.82,64.79,1016.74,56.34,445.1 +25.43,60.95,1014.62,51.39,444.65 +24.78,57.19,1008.08,65.4,443.62 +6.94,39.61,1017.74,81.43,480.07 +27.5,68.24,1010.38,73.44,430.9 +21.43,63.94,1012.68,99.68,445.29 +26.84,70.36,1007.41,71.47,442.17 +25.69,64.45,1013.05,42.0,450.94 +27.92,74.98999999999998,1005.47,75.13,431.76 +23.69,58.05,1012.08,74.26,444.46 +22.89,62.39,1007.84,88.16,448.13 +15.43,38.58,1016.58,81.17,463.44 +21.84,58.86,1014.13,69.67,445.16 +16.8,56.03,1020.65,85.26,461.96 +18.34,50.59,1018.42,83.95,457.17 +21.1,49.16,1006.76,86.08,442.78 +8.49,39.61,1021.05,87.74,483.94 +11.95,42.03,1017.58,90.89,465.2 +5.05,35.57,1027.03,80.02,491.4 +4.71,42.07,1005.35,82.26,486.79 +13.65,42.74,1026.58,71.48,468.87 +25.14,67.32,1013.96,41.78,435.39 +8.88,39.66,1015.21,88.29,481.45 +11.3,43.14,1019.56,99.83,469.73 +30.61,67.69,1004.97,47.46,429.8 +15.69,39.3,1019.03,60.57,464.17 +20.58,50.78,1008.87,91.18,445.03 +24.66,66.49,1010.83,70.06,438.01 +21.93,62.91,1013.45,74.62,449.17 +25.2,61.08,1013.04,74.28,447.09 +11.75,35.76,1018.99,57.92,473.01 +28.16,70.72,1009.81,65.32,441.37 +34.96,68.94,1006.17,59.26,431.48 +16.63,43.77,1012.25,75.09,458.66 +12.1,44.77,1019.1,75.84999999999998,463.11 +14.48,39.0,1016.75,75.97,464.56 +30.96,71.77,1006.26,52.76,425.66 +26.89,49.16,1003.84,41.22,442.39 +32.09,69.4,1003.1,56.91,430.62 +9.95,41.82,1033.09,69.44,477.52 +16.71,40.55,1004.45,81.64,464.13 +17.34,46.48,1007.18,83.15,452.06 +26.2,71.14,1007.92,72.95,431.7 +14.51,42.77,1017.47,81.95,463.37 +19.81,43.56,1013.39,38.13,460.59 +13.85,41.39,1018.62,75.55,471.45 +11.06,41.5,1013.09,89.8,476.24 +14.45,43.34,1015.47,83.33,462.16 +3.99,39.64,1011.53,83.58,492.06 +24.74,59.39,1015.23,74.64,437.49 +11.48,41.2,1012.88,90.04,478.34 +19.09,43.14,1012.34,45.75,463.3 +22.26,60.37,1008.14,92.37,441.33 +14.17,39.59,1010.99,94.08,464.17 +24.67,58.05,1011.31,69.95,444.57 +26.87,74.98999999999998,1002.48,71.91,437.78 +22.32,48.41,1008.68,79.11,445.36 +14.94,42.77,1018.06,75.34999999999998,460.51 +19.32,44.71,1015.3,28.81,464.38 +17.58,39.63,1004.84,80.43,467.33 +24.19,47.45,1008.26,64.25,446.3 +32.0,73.17,1009.92,42.47,433.72 +12.64,41.79,1016.38,92.65,461.46 +21.86,63.09,1016.64,87.94,442.79 +23.07,69.23,1011.78,76.06,437.08 +15.98,41.48,1017.0,55.73,456.31 +11.48,41.14,1027.67,90.5,464.07 +26.07,69.23,1013.32,54.03,436.94 +13.74,44.21,1023.26,84.2,466.67 +29.23,75.59999999999998,1017.72,52.26,438.92 +9.44,43.99,1020.31,98.06,475.01 +29.51,75.59999999999998,1017.92,50.61,431.18 +13.12,44.21,1019.57,89.29,469.09 +26.23,59.14,1016.98,75.54,437.85 +14.55,42.74,1027.29,66.64,457.77 +20.3,58.46,1015.93,82.13,448.79 +12.57,39.18,1023.09,77.28,471.87 +9.34,41.49,1020.58,97.59,471.04 +7.93,42.28,1008.43,85.57,484.75 +19.6,48.14,1013.18,68.71,456.57 +21.35,57.76,1017.36,73.09999999999998,452.57 +10.59,38.38,1021.58,68.23,474.94 +27.54,75.59999999999998,1018.26,57.89,440.87 +11.12,44.92,1025.58,93.52,470.82 +18.82,61.27,1019.5,72.23,455.29 +25.11,62.26,1011.12,78.01,434.97 +21.89,58.05,1011.31,85.71,441.76 +12.87,48.04,1012.47,100.13,465.56 +25.54,60.37,1006.49,71.54,436.14 +7.05,40.69,1020.53,89.67,476.75 +9.11,36.66,1026.47,74.79,480.74 +24.77,71.94,1006.77,88.86,432.27 +8.51,40.81,1015.54,83.16,481.02 +17.1,62.1,1020.39,93.63,453.4 +7.11,39.9,1008.82,87.76,484.21 +20.01,56.65,1020.77,74.45999999999998,457.01 +25.27,63.91,1009.82,75.48,440.39 +29.72,54.2,1012.86,38.48,438.84 +27.42,65.74,1013.43,69.42,440.52 +28.44,77.54,1011.73,77.3,433.21 +25.89,48.41,1008.49,68.58,440.92 +31.39,69.59,1008.28,62.86,435.76 +17.1,49.69,1005.53,81.81999999999998,457.32 +15.24,44.45,1020.56,66.13,460.94 +13.9,39.59,1011.84,94.74,465.0 +30.52,70.4,1003.9,64.33,438.29 +21.78,68.28,1001.0,79.3,443.24 +28.07,68.08,1013.13,44.67,437.65 +26.07,71.37,1008.6,79.48,439.25 +18.0,43.7,1015.4,61.28,464.26 +9.93,40.67,1018.08,69.74,485.23 +23.48,65.12,1015.82,60.83,445.66 +12.66,41.2,1015.88,89.12,466.49 +25.95,59.27,1010.9,70.42,444.19 +10.34,41.46,1017.75,89.73,478.03 +18.2,39.63,1005.35,79.05,468.49 +23.64,70.04,1011.09,83.35,435.21 +17.38,43.14,1011.09,61.9,459.02 +27.67,69.59,1009.13,82.15,437.29 +22.18,59.39,1014.82,85.31,440.94 +14.86,37.85,1010.58,86.8,467.71 +25.9,47.45,1007.8,55.96,443.13 +25.88,66.48,1004.24,63.16,434.4 +21.12,47.24,1003.79,70.55,462.41 +20.03,62.26,1012.15,82.54,447.4 +21.86,49.21,1014.61,53.31,452.77 +11.71,40.05,1014.49,86.09,471.49 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/train.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8e4f06f47506230c9250aba198646e237e7e5c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/val.csv @@ -0,0 +1,957 @@ +AT,V,AP,RH,PE +25.69,57.32,1012.34,44.18,441.43 +17.98,59.15,1012.09,83.03,451.97 +11.52,40.75,1016.23,85.18,477.19 +26.43,66.48,1004.36,55.9,435.59 +24.26,69.51,1013.43,53.23,442.56 +19.68,62.96,1020.41,82.26,453.58 +10.28,41.46,1018.44,85.23,479.66 +25.15,62.91,1012.23,48.22,444.19 +23.28,72.23999999999998,1011.3,90.5,434.21 +11.6,40.27,1008.55,72.12,473.89 +22.75,58.79,1011.44,84.47,445.67 +6.77,39.81,1017.01,87.68,488.27 +19.48,58.66,1013.32,73.16,454.4 +23.93,65.59,1011.09,87.26,444.9 +17.77,44.6,1016.97,54.25,460.13 +33.58,77.54,1010.19,53.49,433.75 +7.49,39.81,1019.03,87.29,483.59 +6.33,42.07,1004.25,77.09999999999998,484.57 +12.43,41.62,1011.87,80.56999999999998,460.61 +25.34,64.27,1013.38,66.02,443.94 +17.17,63.09,1020.54,95.98,446.75 +27.75,69.89,1015.41,73.01,430.33 +29.62,73.18,1012.21,61.6,427.22 +24.35,70.04,1010.92,73.88,438.4 +27.39,69.14,1008.82,78.34999999999998,435.22 +31.18,70.36,1006.38,56.74,438.46 +26.56,49.02,1007.65,70.78,438.82 +24.24,71.58,1010.15,91.14,437.75 +11.82,41.26,1020.74,91.14,466.95 +14.38,40.1,1015.51,81.23,467.28 +26.65,74.16,1008.27,94.54,431.47 +26.16,67.9,1005.81,61.02,444.06 +5.52,39.33,1009.74,95.25,492.39 +31.24,68.3,1015.89,42.84,435.2 +26.22,67.45,1013.7,44.04,440.17 +21.67,69.71,1010.46,96.83,440.16 +13.4,40.89,1010.67,91.66,472.36 +13.78,43.22,1011.31,69.7,463.71 +9.88,39.66,1017.81,76.05,480.05 +10.34,41.74,1020.07,79.17,480.84 +26.86,71.32,1007.38,81.14,430.44 +12.95,41.38,1021.97,53.83,474.46 +26.94,65.61,1014.31,49.73,443.9 +21.81,43.77,1011.97,64.72,453.13 +18.9,56.03,1020.77,71.83,457.66 +14.87,41.23,997.39,82.06,465.01 +20.46,59.21,1018.42,85.89,445.22 +24.3,69.94,1007.02,62.14,438.92 +24.58,71.94,1006.85,89.02,433.99 +9.88,40.0,1021.4,92.06,481.58 +29.85,71.58,1010.04,58.66,432.26 +27.5,65.59,1011.23,65.37,441.27 +6.14,40.62,1015.71,86.51,481.66 +20.76,51.19,1009.0,87.23,445.0 +25.55,58.95,1017.12,51.84,442.3 +10.24,41.17,1019.73,82.04,479.78 +14.45,43.71,1025.26,84.23,463.6 +30.76,59.57,1010.66,61.76,439.32 +5.72,40.81,1025.78,92.46,487.8 +30.24,68.24,1009.68,64.67,426.25 +34.61,73.03,1013.61,36.91,438.56 +24.14,62.66,1007.33,73.27,439.93 +26.76,70.98,1007.64,90.51,437.83 +18.47,62.1,1019.86,82.57,452.51 +29.51,75.59999999999998,1017.92,50.61,431.18 +29.05,71.85,1008.6,78.69,428.39 +21.89,45.38,1014.42,68.95,459.45 +24.67,63.56,1013.75,67.56,446.3 +30.67,71.29,1008.36,52.08,430.28 +25.21,49.82,1016.44,63.14,450.75 +9.76,41.01,1019.66,97.59,467.6 +18.31,62.1,1020.38,79.02,455.24 +33.11,77.54,1010.36,50.99,431.77 +26.18,69.14,1006.54,85.95,436.0 +8.72,40.02,1031.32,78.09,477.86 +17.06,58.96,1013.83,73.95,461.15 +8.01,40.62,1015.62,86.43,476.22 +14.35,35.71,1016.1,60.86,468.9 +29.74,70.32,1008.1,52.72,432.69 +23.0,49.5,1014.15,66.68,454.44 +17.09,42.42,1009.03,72.01,464.11 +14.0,40.8,1026.17,54.82,474.87 +25.02,60.29,1017.49,54.75,445.61 +13.86,41.58,1020.69,70.74,461.56 +27.58,78.05,1010.83,94.98,431.95 +26.41,60.93,1007.16,66.02,436.71 +11.02,41.44,1015.28,83.53,476.68 +25.48,58.95,1017.02,51.16,440.42 +15.47,48.98,1016.42,89.85,457.55 +21.48,47.43,1006.88,63.54,449.2 +18.86,51.43,1010.27,86.0,446.91 +20.94,44.58,1016.98,59.65,463.69 +15.02,41.48,1015.19,58.69,456.04 +28.71,70.32,1011.78,76.53,435.95 +14.28,42.77,1020.06,81.77,466.75 +26.24,77.95,1014.19,85.21,438.01 +24.31,63.86,1019.47,58.54,442.69 +8.51,40.78,1023.51,89.84,471.11 +16.07,65.46,1013.88,87.11,450.54 +8.14,39.96,1023.41,88.86,477.05 +18.43,44.63,1019.76,39.99,458.75 +34.2,68.14,1002.7,56.09,427.05 +17.66,62.1,1019.49,86.3,452.03 +23.77,51.43,1006.67,84.09,441.54 +16.59,39.54,1007.97,70.58,464.19 +15.01,43.56,1014.65,61.82,465.84 +29.09,70.02,1010.13,48.06,443.27 +20.1,59.87,1018.97,87.23,444.71 +9.0,39.18,1024.38,84.91,483.26 +16.85,50.9,1013.26,83.94,460.68 +28.44,69.4,1003.98,73.51,433.44 +9.51,40.81,1015.69,82.52,475.29 +25.99,49.82,1015.95,58.56,452.09 +6.86,41.17,1020.12,79.14,490.23 +8.57,39.69,1000.91,99.9,474.29 +23.3,48.78,1018.17,75.36,441.08 +32.95,67.9,1005.88,45.15,425.89 +24.41,73.67,1007.39,86.92,435.56 +17.51,39.54,1010.22,71.53,462.12 +31.68,73.68,1014.85,64.0,431.11 +9.0,41.54,1018.83,79.61,484.08 +18.4,43.96,1012.4,77.81,464.63 +13.72,49.83,1006.88,89.49,463.65 +7.16,38.56,1019.17,70.1,486.12 +14.33,43.41,1015.43,55.4,462.94 +13.53,42.86,1014.0,90.63,471.73 +13.11,41.58,1020.43,74.31999999999998,460.44 +23.98,50.32,1008.41,67.75,443.45 +31.08,59.57,1010.76,60.49,442.88 +33.62,77.17,1009.38,63.71,431.03 +11.93,38.78,1013.15,96.08,474.57 +21.97,68.12,1012.53,75.12,443.39 +23.83,49.21,1012.93,46.79,446.23 +4.96,45.87,1007.32,98.78,481.88 +31.3,70.79,1004.3,54.37,428.75 +17.75,49.25,1020.86,63.67,454.41 +29.89,71.29,1009.0,55.72,431.45 +12.11,41.17,1019.46,62.59,475.53 +23.85,74.22,1009.99,82.72,441.66 +12.16,40.81,1025.79,70.97,476.63 +23.71,60.23,1009.76,90.67,439.66 +22.49,58.71,1009.75,76.43,443.33 +18.9,57.5,1016.21,93.9,451.42 +27.86,63.07,1011.11,56.81,440.48 +26.04,71.14,1011.66,68.95,433.78 +19.51,44.05,1008.52,78.38,451.7 +10.92,40.92,1021.84,83.03,467.05 +8.51,42.32,1015.08,84.89,476.6 +19.68,68.28,1002.62,71.57,452.47 +27.75,70.4,1006.65,90.21,436.53 +21.59,66.54,1004.88,90.54,441.71 +13.93,42.86,1032.37,71.11,468.88 +16.55,41.66,1011.45,55.53,465.14 +25.53,71.85,1009.19,74.7,431.26 +20.67,57.5,1014.42,81.89,453.29 +25.21,69.48,1010.99,75.27,436.02 +9.29,39.04,1022.72,74.29,482.55 +33.92,77.95,1010.15,58.89,433.01 +25.63,71.58,1010.14,87.57,433.76 +27.21,66.49,1013.57,40.11,439.04 +10.42,41.26,1008.48,96.76,472.54 +25.02,59.44,1012.49,73.65,444.08 +24.2,59.43,1009.69,62.3,440.66 +15.82,44.88,1018.59,78.88,461.9 +11.46,38.91,1012.34,77.37,477.5 +13.17,36.71,1012.82,72.76,474.93 +23.47,65.61,1014.57,69.83,447.16 +10.77,41.46,1021.42,87.18,479.22 +28.47,69.23,1013.18,40.73,434.12 +30.03,70.02,1010.07,64.2,436.88 +13.89,35.71,1016.4,65.49,468.54 +13.26,41.78,1009.77,61.69,467.78 +12.31,37.73,1023.3,63.01,472.08 +19.61,45.01,1014.84,64.42,461.97 +18.58,44.6,1016.61,48.15,459.06 +23.18,51.43,1011.56,81.83,449.94 +28.33,68.14,1004.63,71.21,431.27 +14.82,40.0,1016.32,66.3,458.46 +21.42,56.89,1014.39,84.05,444.86 +26.62,76.2,1006.06,69.13,437.81 +28.17,72.43,1007.37,68.92,428.88 +20.86,63.73,1008.54,96.83,440.42 +25.45,63.76,1009.96,67.78,439.56 +29.15,73.42,1011.43,66.49,432.26 +32.33,67.83,1008.11,57.48,427.84 +13.45,45.87,1008.73,87.06,464.88 +29.91,76.86,998.59,72.41,432.6 +24.93,73.5,1011.28,83.09,437.35 +9.71,42.44,1014.29,94.03,481.03 +16.69,53.82,1015.39,63.62,458.96 +22.36,51.43,1007.47,87.33,442.53 +25.57,44.05,1005.79,65.14,443.84 +7.36,41.01,1025.49,96.48,477.37 +14.22,42.32,1015.54,77.23,465.0 +18.33,49.64,1025.36,62.57,468.14 +31.1,68.51,1012.99,54.3,428.68 +27.62,71.14,1011.6,52.8,434.72 +17.04,56.03,1020.38,68.69,462.48 +17.31,44.71,1017.43,35.4,463.05 +31.61,69.04,1008.11,47.96,439.19 +28.14,51.43,1012.16,52.67,445.33 +8.77,40.46,1019.68,77.84,475.0 +6.15,40.77,1022.42,88.57,482.49 +21.39,52.3,1009.2,79.77,446.87 +12.29,40.71,1019.71,83.09,469.75 +11.6,39.96,1011.65,80.79,473.22 +26.68,68.08,1011.41,67.33,433.04 +7.71,38.06,1021.0,83.47,482.78 +10.07,44.68,1023.44,90.95,477.52 +22.08,45.61,1014.02,75.70999999999998,456.71 +30.74,69.59,1008.69,68.04,437.81 +26.49,67.69,1004.61,78.13,430.62 +14.55,44.84,1023.83,87.6,465.14 +16.55,39.64,1009.07,77.8,465.29 +11.68,40.55,1006.48,96.16,474.8 +10.95,40.22,1010.04,78.95999999999998,477.23 +11.83,38.25,1013.36,85.33,473.31 +23.38,48.78,1019.03,78.69,446.18 +29.77,69.48,1009.8,52.6,432.69 +24.12,58.66,1011.55,58.96,450.69 +6.1,39.33,1010.4,95.34,491.37 +6.93,41.14,1027.18,84.67,479.06 +27.6,69.05,1003.87,42.01,436.08 +11.23,41.17,1019.36,56.85,475.85 +18.84,40.79,1005.18,92.46,459.96 +29.47,71.32,1008.07,67.0,437.14 +23.3,72.98999999999998,1008.54,92.11,437.62 +29.15,69.48,1008.68,55.78,430.54 +21.99,42.48,1011.77,74.04,456.65 +21.77,42.23,1013.03,67.44,462.51 +27.61,49.16,1005.01,35.63,441.18 +26.05,65.38,1009.43,52.1,449.82 +14.8,44.71,1014.67,41.71,470.77 +15.71,39.3,1019.2,62.28,462.84 +16.44,53.16,1014.82,75.29,458.49 +17.03,58.49,1011.91,92.16,460.48 +10.12,41.55,1005.78,62.34,475.46 +10.17,41.17,1018.58,87.72,478.04 +23.37,65.46,1016.25,48.64,447.07 +11.98,44.6,1018.59,86.71,470.02 +24.66,48.78,1018.39,71.79,449.11 +16.61,43.77,1012.25,77.23,457.66 +14.79,47.83,1007.27,92.04,463.22 +29.2,64.84,1009.94,55.37,441.9 +23.26,58.2,1016.72,57.98,446.87 +7.19,39.37,1019.67,70.77,480.4 +20.94,49.02,1008.91,87.32,448.18 +27.89,73.20999999999998,1001.32,85.88,431.59 +23.63,71.29,1008.01,70.07,442.65 +20.91,58.2,1018.1,62.8,446.19 +14.91,46.9,1019.59,98.1,461.73 +23.82,73.67,1007.26,88.16,438.42 +32.09,79.73999999999998,1006.92,61.5,432.85 +16.69,46.18,1011.0,97.85,458.57 +17.16,58.86,1016.4,86.39,453.76 +28.05,70.36,1006.73,64.42,434.06 +30.54,70.17,999.42,64.32,434.62 +21.95,50.66,1013.92,70.94,455.23 +24.49,59.87,1018.4,59.95,444.54 +10.62,39.58,1011.9,87.85,479.91 +11.47,25.36,1008.27,95.4,469.51 +24.84,71.73,1009.84,82.41,436.36 +20.66,51.19,1008.81,88.93,447.14 +26.85,63.56,1013.25,52.84,444.39 +25.56,69.13,1002.46,68.26,434.48 +20.0,39.53,1007.59,62.09,456.28 +8.22,41.82,1032.77,71.63,477.86 +21.84,59.39,1015.77,88.12,442.11 +14.26,44.47,1028.81,72.19,465.77 +14.35,39.39,1012.92,82.41,470.53 +22.89,80.25,1006.38,80.25,446.15 +24.34,73.5,1011.31,84.15,440.29 +23.86,59.21,1013.02,73.59999999999998,441.22 +27.71,69.13,1001.63,51.45,432.54 +22.63,70.47,1008.0,82.27,441.92 +31.23,75.08,1004.93,46.19,439.14 +10.31,40.67,1017.61,69.61,485.25 +7.64,39.85,1012.78,88.09,481.53 +31.44,79.73999999999998,1006.95,56.99,431.69 +4.89,45.87,1007.58,99.35,482.69 +27.91,63.76,1010.27,65.67,435.21 +19.05,53.16,1013.22,82.8,455.76 +28.36,69.88,1007.75,84.17,434.03 +27.69,73.91,1005.23,75.70999999999998,435.08 +22.85,59.15,1014.74,63.92,448.61 +23.0,57.76,1017.64,56.86,451.39 +30.04,68.08,1011.04,51.01,429.52 +17.08,38.58,1015.41,73.42,461.49 +27.13,69.45,1013.9,51.16,434.47 +30.65,65.18,1012.51,42.32,436.79 +23.91,50.23,1017.25,68.57,455.41 +7.64,42.28,1008.49,83.42,483.74 +6.77,40.78,1024.86,96.58,478.24 +18.41,44.9,1008.97,73.81,453.12 +14.29,39.59,1010.93,94.53,463.04 +29.29,71.14,1011.49,49.97,432.58 +29.17,67.45,1014.1,46.85,435.08 +23.55,65.94,1011.76,58.44,443.98 +19.05,59.21,1017.99,89.53,451.0 +18.22,49.25,1020.33,61.87,454.66 +14.8,38.73,1003.18,80.73,467.54 +5.28,45.87,1008.25,97.88,479.91 +13.07,43.13,1016.93,70.02,471.47 +21.37,81.56,1006.57,81.56,434.38 +9.96,41.55,1002.59,65.86,475.91 +13.86,41.78,1010.75,57.9,467.39 +11.33,41.16,1019.05,87.13,468.87 +16.81,42.42,1008.95,74.25,462.19 +29.79,67.69,1006.86,55.93,428.71 +14.44,41.2,1015.96,81.97,469.85 +9.08,40.46,1019.48,77.37,476.81 +17.3,57.76,1016.26,87.74,455.75 +27.06,64.45,1008.72,54.21,443.1 +14.64,39.58,1011.46,71.9,467.8 +23.69,77.54,1009.32,89.7,440.21 +9.05,36.3,1027.44,74.84999999999998,479.43 +24.73,74.22,1010.15,79.83,436.55 +19.94,44.9,1008.52,74.69,459.47 +8.73,39.42,1025.63,69.87,474.44 +26.66,73.56,1006.9,99.27,433.62 +31.81,69.88,1007.94,55.91,432.6 +17.47,58.59,1014.03,97.13,449.41 +22.18,62.39,1007.84,85.74,452.31 +18.25,43.14,1011.51,55.16,462.78 +20.34,69.45,1012.76,91.05,442.73 +27.44,58.9,1003.86,66.74,442.19 +27.75,77.23999999999998,1007.48,78.37,433.57 +19.13,59.21,1018.32,89.66,450.81 +19.84,65.48,1019.54,76.59999999999998,449.85 +21.1,62.66,1011.19,83.49,448.8 +20.15,58.59,1014.13,91.96,443.85 +28.85,58.33,1013.78,41.39,444.0 +19.39,60.1,1010.28,83.31,452.57 +21.88,69.71,1010.28,97.64,444.39 +16.34,47.45,1009.41,92.96,448.59 +13.34,40.8,1026.56,64.85,474.47 +3.92,41.31,999.22,95.26,487.35 +21.97,58.12,1015.29,77.47,449.6 +13.89,44.84,1023.66,92.97,466.74 +13.98,40.71,1022.72,71.83,474.46 +16.55,41.93,1022.71,42.73,466.77 +21.17,52.3,1009.36,81.51,447.5 +24.37,65.61,1014.5,65.67,443.13 +24.42,64.79,1016.12,69.32,449.1 +16.54,42.86,1014.85,78.0,465.26 +8.199999999999998,41.14,1025.24,96.26,474.04 +26.17,58.86,1014.52,51.28,443.69 +14.24,39.58,1011.17,70.45,469.94 +14.1,42.18,1015.05,78.25,463.3 +24.91,52.3,1008.72,68.26,441.15 +32.55,69.89,1013.87,40.09,428.84 +20.7,58.16,1016.73,68.19,453.22 +29.7,57.19,1008.41,55.07,436.29 +17.66,60.08,1017.22,86.96,456.62 +30.03,68.84,1011.41,53.82,439.31 +26.45,54.5,1014.96,65.55,450.76 +12.57,41.79,1014.99,87.8,461.88 +30.82,78.87,1012.06,70.69,432.01 +16.97,44.92,1025.21,74.27,460.21 +14.84,38.91,1013.78,69.27,467.83 +20.99,50.78,1008.55,75.14,449.07 +12.35,44.2,1017.81,82.49,471.65 +19.64,46.33,1013.33,98.99,451.45 +29.14,61.5,1009.64,39.95,437.76 +11.82,41.17,1019.5,55.74,475.61 +23.94,51.95,1008.61,73.42,448.67 +17.4,63.09,1020.84,92.58,453.0 +8.949999999999998,43.13,1017.56,94.85,479.14 +29.12,51.43,1005.93,60.66,437.71 +29.13,47.93,1002.5,49.1,435.61 +30.56,71.25,1000.3,70.55,431.92 +19.07,44.63,1020.23,44.93,456.37 +32.96,69.75,1008.86,40.23,435.56 +19.35,39.72,1002.5,51.24,455.29 +31.92,68.3,1015.58,41.55,430.07 +13.85,48.92,1011.68,79.23999999999998,462.38 +26.69,70.36,1006.82,68.29,435.04 +17.66,44.9,1020.5,71.33,457.11 +16.05,38.28,1014.38,73.89,466.75 +6.24,35.77,1019.24,70.7,483.36 +6.43,39.61,1017.51,83.8,480.58 +15.12,39.16,1006.55,76.98999999999998,463.78 +15.84,49.69,1015.14,90.41,462.6 +18.41,42.44,1012.66,65.93,463.2 +15.54,41.96,1011.78,97.46,467.1 +28.26,69.23,1013.01,42.1,436.31 +12.24,40.96,1023.22,78.73999999999998,475.32 +25.45,75.23,1011.41,73.33,441.65 +5.25,42.85,1013.75,89.67,477.78 +9.82,41.04,1026.72,77.28,473.98 +11.44,41.39,1019.59,79.95,478.52 +12.07,38.25,1012.67,81.66,470.36 +28.51,70.02,1010.58,54.68,441.66 +23.47,60.77,1017.19,75.36,444.46 +20.42,45.01,1012.23,66.5,451.28 +21.13,47.43,1006.97,64.26,448.83 +18.62,65.48,1018.45,73.39,451.94 +15.68,43.7,1015.09,58.96,470.29 +7.46,39.81,1018.62,86.73,484.13 +11.38,52.75,1026.19,72.70999999999998,469.9 +21.11,43.43,1010.1,62.62,447.83 +32.38,77.23999999999998,1007.7,61.15,430.96 +19.74,45.38,1015.11,80.67,459.39 +19.18,50.12,1005.99,100.09,444.56 +10.19,37.14,1012.74,73.48,475.01 +20.98,43.77,1010.67,62.73,449.88 +13.47,44.88,1017.56,93.23,476.67 +27.23,44.05,1005.69,58.91,440.2 +7.3,43.65,1019.33,67.62,482.96 +18.26,60.95,1016.94,78.91,457.03 +9.55,40.67,1018.56,70.72,486.34 +26.1,63.56,1013.12,61.0,442.75 +25.88,63.73,1009.48,77.17,438.42 +20.29,63.09,1019.03,76.06999999999998,448.22 +22.58,59.14,1017.2,80.91,439.78 +27.57,60.07,1016.52,54.75,440.12 +30.48,70.04,1010.73,53.7,429.85 +9.27,38.56,1017.69,62.49,475.42 +15.01,42.77,1018.21,73.22,462.6 +31.01,73.5,1010.92,48.61,432.41 +19.62,68.63,1012.26,68.05,453.84 +24.26,47.93,1003.87,70.44,439.16 +14.87,41.76,1022.26,78.20999999999998,464.84 +31.0,71.77,1006.29,48.56,431.07 +28.84,74.67,1016.52,67.43,428.98 +18.48,50.16,1011.45,99.92,452.06 +30.49,64.44,1013.43,51.73,438.09 +27.49,71.94,1008.25,68.29,428.27 +21.76,47.93,1005.34,86.28,444.77 +13.78,44.47,1027.94,71.09,467.22 +25.28,66.25,1009.77,84.55,439.77 +27.17,61.02,1011.38,65.32,437.06 +20.51,42.23,1013.25,71.83,461.78 +15.43,39.16,1016.44,79.8,470.74 +12.7,39.72,1017.89,62.97,467.77 +26.86,72.58,1009.22,88.39,428.69 +26.06,58.59,1012.41,55.22,451.47 +10.56,40.22,1005.08,89.71,478.02 +25.33,73.20999999999998,1002.19,97.24,433.43 +3.0,39.64,1011.0,80.14,485.2 +30.91,69.75,1010.23,59.36,435.7 +27.34,71.64,1008.12,72.22,438.76 +15.34,43.5,1021.18,79.44,459.77 +18.99,59.27,1012.15,89.39,453.4 +12.14,40.27,1007.57,73.22,472.84 +30.75,71.22,1006.47,48.06,437.96 +16.05,41.96,1011.82,96.05,463.72 +14.83,53.82,1016.57,63.47,464.0 +25.12,66.56,1009.22,65.62,436.56 +13.72,41.62,1011.14,75.79,455.52 +20.94,58.16,1016.88,65.43,455.16 +24.81,67.17,1007.71,84.37,442.75 +10.2,41.46,1019.12,83.26,480.11 +26.19,49.3,1003.69,65.88,440.13 +24.7,58.82,1009.4,75.91,442.98 +31.82,73.68,1014.8,40.58,433.32 +10.29,40.56,1017.28,69.13,481.7 +15.94,44.85,1014.29,67.57,462.54 +21.28,70.32,1011.06,90.12,439.0 +12.45,40.1,1015.4,82.61,473.63 +25.15,57.32,1012.41,41.84,440.1 +28.52,57.82,1004.81,57.82,435.4 +22.47,48.6,1002.33,63.23,445.98 +15.21,43.5,1021.6,82.06,464.08 +27.88,63.87,1017.79,40.0,443.24 +32.14,68.31,1010.48,42.15,436.15 +28.28,69.48,1008.56,61.3,428.75 +12.12,38.28,1013.65,90.19,471.19 +13.44,41.14,1026.41,77.26,461.44 +15.12,41.04,1025.95,69.67,460.58 +9.73,40.22,1011.48,87.88,481.42 +14.05,39.59,1011.2,94.54,464.63 +28.43,63.31,1013.44,49.99,432.62 +12.38,41.62,1012.37,84.15,461.07 +7.09,39.37,1020.07,73.26,487.0 +11.69,35.76,1019.02,55.6,471.72 +25.76,63.94,1018.49,42.14,445.78 +14.91,43.34,1015.15,81.56,461.27 +21.91,70.32,1009.17,90.57,439.29 +23.56,73.18,1012.18,87.98,437.92 +19.98,49.15,1021.56,63.89,457.54 +24.33,49.16,1003.46,61.04,441.2 +9.22,40.92,1021.83,85.43,474.51 +32.16,71.32,1005.5,60.23,434.01 +27.29,64.45,1013.46,45.35,446.94 +28.14,61.47,1009.69,64.66,435.35 +26.71,70.4,1007.59,82.63,432.64 +19.83,46.33,1013.27,96.4,451.22 +13.49,43.41,1015.75,57.86,461.06 +14.13,53.82,1016.72,64.85,467.08 +20.6,66.86,1013.08,62.48,451.44 +22.01,60.84,1017.55,83.82,441.9 +5.89,35.77,1019.78,79.58,479.86 +26.02,70.79,1004.21,79.12,428.72 +14.08,41.93,1023.02,59.41,475.15 +24.96,77.54,1008.25,80.59999999999998,433.4 +32.21,71.85,1008.25,58.09,429.15 +26.59,69.13,1009.27,73.95999999999998,430.11 +8.529999999999998,43.14,1012.25,78.88,480.08 +25.94,66.49,1012.83,61.81,433.38 +7.76,39.61,1021.63,80.67,488.32 +27.21,67.45,1013.83,43.26,436.47 +19.08,59.15,1013.1,81.81999999999998,451.33 +30.97,67.9,1005.98,55.6,428.26 +7.53,41.74,1022.45,90.85,487.25 +32.19,69.13,1000.45,48.22,425.21 +27.32,66.54,1004.95,72.58,431.33 +14.92,46.18,1014.21,98.82,465.63 +24.62,72.43,1007.97,84.36,436.89 +14.47,44.66,1016.33,93.52,464.41 +26.35,59.44,1012.16,63.73,443.73 +26.38,65.12,1016.1,47.57,441.07 +24.44,52.84,1006.39,49.05,440.2 +32.63,74.98999999999998,1002.42,40.07,432.79 +29.49,69.71,1009.34,56.35,440.99 +30.58,70.04,1010.4,48.16,431.59 +13.24,39.16,1016.52,86.66,474.48 +12.91,41.66,1013.37,71.52,469.71 +25.1,43.77,1010.9,49.68,444.99 +16.0,43.02,1012.37,39.2,466.01 +23.62,61.87,1010.07,48.77,447.93 +25.54,70.47,1009.28,73.5,436.16 +15.89,41.7,1018.93,82.68,463.33 +23.79,50.16,1005.32,75.81999999999998,435.49 +17.77,56.53,1019.57,79.89,457.94 +21.54,58.41,1013.99,86.34,450.69 +24.49,70.79,1005.51,88.65,430.54 +13.52,39.39,1012.91,84.03,474.82 +13.51,44.9,1019.29,77.23999999999998,464.86 +28.9,68.84,1011.64,64.44,437.06 +26.28,75.23,1011.44,68.35,435.28 +28.81,64.96,1000.46,68.05,427.91 +17.49,63.94,1020.02,82.6,452.71 +20.61,48.78,1020.8,85.05,449.38 +27.84,71.32,1007.72,79.25,431.37 +22.7,60.84,1019.15,71.48,438.59 +7.21,42.03,1017.81,90.12,482.26 +14.68,41.23,998.43,83.71,469.25 +21.93,60.84,1018.96,76.8,440.76 +9.23,37.36,1015.01,67.38,481.08 +27.51,49.3,1003.74,61.27,437.09 +20.76,70.72,1009.73,89.04,448.85 +30.65,71.06,1008.61,76.76,432.08 +10.31,42.49,1009.43,78.36,479.64 +27.27,72.58,1009.25,89.31,428.93 +28.61,68.12,1012.23,46.45,435.28 +19.65,44.89,1009.76,75.36,451.35 +30.24,69.88,1007.9,61.46,436.37 +31.26,68.94,1005.94,39.49,438.03 +25.16,74.33,1014.55,76.7,436.15 +16.73,58.59,1015.02,89.61,455.3 +30.57,58.9,1004.54,54.37,438.49 +17.18,63.09,1020.67,93.58,451.37 +27.35,61.47,1008.43,70.65,443.67 +19.11,50.16,1010.88,100.09,450.38 +26.48,68.14,1004.83,55.96,432.19 +13.84,42.18,1015.74,79.76,468.66 +29.1,76.2,1006.28,60.22,435.97 +13.91,40.24,1017.03,85.93,466.24 +13.73,41.78,1011.75,49.65,464.94 +25.4,65.34,1013.11,53.93,445.82 +14.73,39.52,1017.01,74.20999999999998,470.45 +27.58,66.48,1004.82,51.23,435.34 +24.03,62.44,1010.96,79.88,430.66 +19.78,63.09,1019.01,78.39,448.34 +12.57,41.66,1009.11,70.74,475.61 +13.95,41.49,1019.95,86.46,465.24 +13.77,47.83,1007.41,90.66,466.07 +21.52,50.66,1013.56,74.33,455.71 +27.98,67.9,1006.3,73.53,436.08 +14.57,44.45,1021.42,66.23,462.48 +25.46,70.32,1010.65,64.7,433.08 +8.58,38.38,1021.03,84.37,482.26 +28.18,66.56,1005.69,65.67,426.79 +32.07,70.94,1006.91,49.9,432.33 +17.94,37.2,1012.64,68.11,467.65 +7.34,40.72,1023.01,80.08,483.92 +10.8,39.28,1010.7,82.62,478.8 +24.34,70.79,1006.82,85.66,433.83 +26.45,64.27,1013.23,60.92,444.9 +18.38,62.1,1020.12,77.27,452.91 +32.53,77.95,1014.76,58.1,434.44 +7.99,36.08,1020.08,83.2,481.35 +21.16,50.66,1014.13,72.77,455.86 +15.71,40.12,1012.81,97.46,462.6 +20.58,39.53,1005.68,62.09,460.1 +32.0,58.9,1003.48,51.38,437.81 +30.29,74.16,1008.77,75.23,431.39 +31.38,68.27,1006.79,52.79,426.67 +29.67,66.51,1015.6,34.1,434.8 +19.9,56.53,1020.52,78.05,456.48 +23.6,57.17,1009.84,74.27,446.05 +4.59,39.33,1010.85,71.78,494.9 +12.76,43.7,1015.13,65.34,475.73 +6.53,42.85,1012.65,91.6,480.98 +14.46,53.82,1016.55,68.11,462.6 +23.75,61.5,1008.16,69.14,442.35 +22.28,59.92,1009.36,95.38,437.85 +24.4,60.37,1006.77,82.43,440.64 +29.82,69.75,1010.09,65.02,442.6 +20.29,65.27,1013.17,74.94,445.52 +27.2,72.43,1006.75,80.67,430.32 +5.7,40.62,1016.07,84.94,482.82 +24.54,65.46,1014.27,40.77,446.26 +16.57,63.31,1016.19,81.02,454.78 +29.89,65.74,1012.95,51.36,438.24 +24.37,70.02,1010.97,71.97,443.53 +24.16,65.06,1013.88,58.96,442.32 +14.9,52.05,1015.11,77.33,464.82 +26.88,74.78,1010.42,64.81,440.84 +27.02,72.58,1009.21,89.13,437.8 +10.13,38.16,1013.57,79.04,474.92 +15.27,38.73,1002.83,77.77,465.99 +14.03,44.88,1019.6,57.63,465.51 +8.51,41.26,1023.17,87.79,477.51 +8.68,41.82,1032.83,73.62,478.61 +12.85,41.14,1027.04,86.29,464.86 +25.27,67.07,1006.34,66.35,445.81 +28.62,69.71,1009.67,62.12,437.52 +23.87,60.27,1018.94,77.16,439.86 +26.54,69.48,1010.7,66.09,432.56 +12.83,44.88,1017.86,87.88,474.26 +15.62,41.76,1023.82,66.17,459.72 +28.28,61.86,1012.07,64.49,439.65 +20.06,62.1,1020.21,72.20999999999998,451.81 +13.86,35.71,1015.21,63.16,471.63 +28.19,68.08,1013.41,43.93,436.43 +18.02,53.16,1013.41,82.84,458.01 +14.8,43.99,1022.89,85.25,461.97 +9.26,41.66,1016.87,73.31999999999998,483.51 +20.65,66.51,1014.94,71.83,456.49 +13.03,39.52,1016.68,83.09,473.99 +13.41,49.83,1008.83,87.14,466.38 +3.73,39.42,1024.4,82.42,488.58 +26.95,70.79,1004.09,75.34999999999998,430.07 +11.7,43.41,1016.08,62.27,467.51 +13.09,54.3,1017.61,82.38,471.0 +5.21,41.31,1003.51,91.23,486.46 +12.65,44.0,1023.03,88.73,471.46 +16.01,49.64,1026.35,77.75,457.8 +15.34,41.23,996.87,86.56,465.16 +17.94,62.1,1019.81,82.65,453.55 +33.01,68.67,1005.2,51.41,433.94 +22.91,66.44,1011.23,63.43,444.48 +31.35,67.32,1013.74,38.56,439.81 +10.63,40.67,1017.13,66.12,483.27 +4.27,39.64,1010.99,84.85,487.19 +21.14,58.05,1012.98,87.27,449.74 +25.36,60.07,1015.06,66.11,439.73 +11.44,44.2,1018.14,84.9,476.12 +13.35,39.58,1012.41,83.45,465.85 +23.88,54.2,1012.81,64.52,444.97 +15.65,43.5,1021.39,78.58,463.5 +6.72,38.91,1016.89,90.47,485.89 +15.74,43.71,1024.7,78.38,462.66 +19.84,56.89,1013.23,78.31999999999998,447.92 +11.44,43.13,1014.88,63.88,477.57 +26.55,69.45,1013.88,55.39,435.64 +19.96,39.53,1006.16,62.77,460.49 +10.8,40.69,1014.3,87.44,478.19 +8.36,38.91,1016.27,88.82,482.09 +8.55,35.77,1016.15,73.31999999999998,481.44 +31.84,71.37,1003.51,46.22,432.04 +5.94,39.9,1007.84,86.33,485.86 +14.35,40.71,1023.09,69.5,473.56 +31.91,67.83,1008.76,53.22,425.28 +25.35,74.33,1015.29,77.84,435.66 +9.32,36.3,1027.67,73.25,479.52 +16.34,42.28,1008.08,52.8,463.29 +29.95,73.42,1011.44,66.32,432.81 +7.09,43.65,1019.6,72.09999999999998,483.42 +25.63,72.98999999999998,1008.2,86.8,436.64 +28.54,71.94,1007.4,65.99,430.91 +25.57,65.46,1014.81,38.58,444.46 +12.99,44.0,1025.22,90.27,470.93 +14.77,48.06,1010.92,69.81,461.52 +31.09,59.57,1010.67,60.5,440.08 +14.04,48.79,1017.62,75.25,464.09 +29.12,66.56,1006.9,49.79,429.94 +32.13,74.34,1003.34,56.39,436.3 +31.75,74.98999999999998,1003.25,53.33,430.82 +24.82,66.54,1010.0,60.36,440.88 +19.76,48.92,1010.48,46.57,456.69 +31.26,76.09,1006.66,63.91,430.36 +9.43,41.4,1028.81,85.83,475.8 +27.78,60.07,1014.66,53.74,439.43 +23.99,45.87,1007.63,52.62,443.66 +18.32,66.51,1015.18,81.5,459.89 +28.86,49.3,1003.93,52.85,435.75 +27.35,69.48,1008.51,65.81,432.31 +23.32,66.48,1003.92,72.25,436.26 +18.99,62.1,1020.0,76.76,453.09 +10.82,42.02,996.03,99.34,475.46 +14.81,43.69,1017.19,71.9,470.71 +22.77,59.92,1009.67,94.09,437.9 +18.61,47.83,1006.43,78.89,454.21 +26.5,66.05,1017.03,61.34,440.15 +16.11,44.92,1025.37,79.84999999999998,460.99 +30.51,70.94,1007.64,59.42,430.91 +13.48,41.44,1015.64,71.46,471.39 +16.37,43.5,1021.26,72.4,459.18 +21.19,50.16,1005.81,84.27,450.33 +26.38,59.92,1009.99,71.91,444.85 +24.45,65.12,1015.92,57.19,445.01 +28.6,71.22,1003.15,58.33,443.01 +29.39,69.89,1013.92,47.36,434.27 +25.91,68.08,1010.92,74.25,432.07 +19.94,65.46,1017.7,68.94,448.67 +13.95,71.14,1019.76,75.51,461.18 +33.7,68.27,1007.16,50.41,427.4 +6.58,40.07,1014.22,55.44,493.72 +9.79,39.69,1002.36,93.86,471.61 +18.41,65.94,1010.23,84.71,452.66 +22.89,48.98,1014.55,48.21,448.56 +25.68,46.21,1011.01,57.53,442.98 +32.77,72.86,1003.6,52.87,433.84 +13.18,43.8,1023.18,61.21,467.0 +28.99,54.2,1012.79,41.9,442.6 +26.34,59.21,1013.37,58.98,439.22 +21.11,58.66,1011.7,68.71,457.89 +24.28,71.98,1006.34,90.45,432.47 +28.46,73.67,1005.67,71.21,429.15 +27.16,59.87,1011.78,58.84,446.38 +18.36,53.16,1013.31,83.18,458.47 +20.35,50.9,1012.6,72.43,453.5 +8.57,40.69,1020.87,84.15,485.18 +8.97,44.03,1013.16,80.39,474.61 +20.95,70.72,1009.96,87.73,445.66 +23.49,47.45,1008.46,66.18,446.72 +7.26,41.22,1014.86,97.82,488.75 +27.36,58.33,1013.86,56.7,439.14 +27.98,67.17,1007.32,75.29,440.68 +25.15,68.51,1013.25,72.31,440.96 +26.82,60.96,1012.25,57.41,449.81 +4.24,39.9,1009.28,96.74,491.25 +24.49,65.06,1014.07,63.32,441.4 +19.65,42.23,1013.04,75.9,461.16 +9.57,39.82,1013.12,89.15,468.02 +31.46,66.54,1002.86,53.75,427.76 +7.2,40.35,1011.83,95.59,484.9 +18.19,66.54,1012.9,86.05,449.22 +23.21,73.42,1010.34,88.29,439.66 +29.31,68.67,1006.18,63.38,435.57 +23.54,41.1,1002.05,38.05,448.56 +24.22,62.08,1022.53,60.79,449.11 +21.85,59.8,1016.89,75.28,454.26 +29.79,62.66,1008.5,48.51,440.27 +7.06,41.74,1021.95,90.38,448.97 +15.55,39.63,1004.98,89.82,466.83 +11.09,40.43,1025.47,74.97,490.96 +23.85,72.43,1008.01,88.34,439.02 +24.87,68.61,1011.19,55.69,450.54 +20.67,63.56,1013.27,79.39,450.7 +15.33,42.28,1008.19,66.15,465.2 +20.73,41.1,1001.86,47.51,456.44 +12.53,44.03,1007.21,84.2,470.04 +13.43,50.59,1020.38,86.3,469.33 +23.61,63.94,1012.9,87.06,441.57 +24.07,71.97,1008.83,94.87,441.84 +28.28,61.47,1009.44,60.89,443.12 +9.75,43.69,1016.81,82.42,481.34 +11.96,43.41,1017.42,79.44,469.34 +14.02,40.75,1016.05,70.65,470.48 +8.25,37.49,1009.02,81.09,480.38 +22.8,49.16,1006.4,77.05,439.65 +24.13,45.61,1012.63,71.36,453.19 +15.96,41.66,1011.93,55.47,466.39 +17.48,49.39,1021.51,84.53,460.01 +4.95,42.07,1004.87,80.88,485.67 +12.02,43.69,1016.12,74.06999999999998,477.74 +14.16,39.28,1015.63,77.29,471.27 +21.17,58.16,1017.16,68.11,452.02 +4.97,40.64,1020.91,94.28,485.43 +27.28,78.92,1011.05,75.48,434.78 +10.42,44.85,1014.18,88.36,479.03 +12.75,44.2,1017.59,81.22,471.03 +13.1,40.03,1017.79,84.48,470.75 +29.09,72.43,1006.86,65.47,427.3 +27.64,75.59999999999998,1017.35,54.78,441.04 +7.79,41.01,1024.0,97.2,477.0 +16.52,43.7,1015.08,58.36,466.73 +17.79,40.12,1012.74,79.03,459.13 +15.04,38.01,1022.46,78.29,468.12 +15.92,39.16,1006.59,71.32,460.45 +20.4,57.85,1011.14,92.47,450.07 +20.25,63.91,1009.27,97.97,448.37 +14.24,39.52,1018.22,77.19,468.51 +28.11,70.98,1007.76,85.6,431.83 +21.3,66.86,1013.04,55.43,450.56 +16.56,42.99,1007.48,74.45,464.62 +8.93,40.46,1019.03,71.0,472.77 +17.48,44.2,1018.89,61.51,457.15 +10.38,41.01,1020.8,94.26,465.9 +21.83,57.85,1012.49,75.16,448.21 +20.58,54.5,1015.04,89.83,467.76 +14.95,39.31,1009.15,75.3,462.72 +14.01,38.91,1015.86,69.24,470.1 +7.0,38.08,1020.27,77.67,482.38 +23.82,48.92,1010.48,44.45,446.85 +12.65,44.34,1019.4,71.45,468.8 +16.37,53.16,1014.89,74.84,459.52 +18.62,59.15,1012.85,82.54,450.81 +22.96,68.61,1011.15,76.62,447.18 +25.72,74.67,1016.64,75.93,434.83 +16.0,37.87,1020.24,78.41,461.33 +19.09,65.94,1012.53,81.06,446.34 +24.49,65.61,1014.71,63.47,447.26 +12.79,44.03,1007.46,95.93,464.35 +8.699999999999998,36.24,1013.34,89.5,478.69 +19.79,51.19,1008.77,94.72,447.96 +30.55,68.24,1009.43,63.84,426.8 +10.1,44.03,1008.11,90.29,471.59 +26.73,49.02,1007.75,67.73,438.17 +8.99,41.26,1020.52,91.96,476.09 +15.24,39.39,1013.01,74.23999999999998,469.79 +30.36,71.8,1010.9,63.27,437.4 +10.98,41.54,1019.94,69.83,479.08 +29.08,70.83,1007.98,51.95,430.91 +25.23,61.86,1013.0,76.18,441.48 +27.76,72.58,1009.04,84.96,429.25 +24.37,68.14,1005.22,59.27,440.22 +11.22,40.22,1011.01,81.67,476.7 +23.43,51.43,1011.31,73.55,444.09 +22.81,58.96,1013.5,55.66,452.89 +15.71,44.06,1018.34,71.69,465.05 +10.34,37.5,1010.35,95.56,474.08 +11.01,40.05,1015.46,89.22,474.2 +28.59,69.84,1003.79,67.31,427.53 +29.86,59.57,1011.24,64.02,439.44 +3.95,38.44,1016.75,79.65,492.46 +16.98,63.09,1020.44,95.18,450.55 +28.03,60.23,1010.23,66.04,438.88 +24.43,58.05,1011.88,71.39,445.68 +13.97,45.01,1017.44,89.15,461.96 +9.11,40.02,1031.1,83.02,479.03 +22.08,55.5,1018.42,58.46,455.79 +31.61,75.08,1004.83,42.29,436.67 +8.68,43.14,1011.94,79.06,480.73 +29.11,74.9,1003.31,74.01,432.43 +12.71,43.8,1023.15,71.16,466.2 +31.24,74.22,1007.74,48.77,430.44 +9.18,42.18,1017.4,87.3,475.57 +4.15,39.9,1007.62,95.69,489.8 +14.93,43.02,1012.11,45.56,468.19 +12.24,40.66,1017.4,96.22,464.7 +20.87,63.31,1012.27,79.51,446.7 +21.12,62.52,1015.62,78.98,450.93 +19.23,41.67,1012.53,48.86,465.66 +30.74,71.77,1006.24,53.38,434.89 +25.42,73.20999999999998,1001.91,93.78,432.04 +18.97,50.59,1016.01,74.9,459.68 +23.65,66.05,1019.6,78.20999999999998,442.9 +15.26,46.18,1013.68,98.58,463.6 +24.41,58.59,1012.62,64.52,442.64 +20.79,50.59,1017.75,73.34999999999998,456.01 +8.34,40.72,1023.62,83.75,483.14 +31.12,68.14,1003.67,67.36,427.06 +24.92,63.94,1017.7,44.92,441.07 +29.3,70.04,1010.95,61.23,426.25 +16.46,61.27,1020.02,74.54,456.64 +24.44,69.84,1005.34,80.37,430.3 +6.17,39.33,1012.57,93.32,491.54 +18.15,41.67,1012.75,52.69,464.44 +26.38,71.58,1011.02,80.9,434.26 +23.99,67.69,1007.9,78.56999999999998,437.1 +26.51,67.25,1017.85,64.17,435.52 +24.31,66.49,1011.38,54.35,440.79 +29.04,70.72,1009.55,66.58,437.95 +13.26,41.74,1021.89,63.32,473.44 +18.32,65.94,1012.74,86.77,450.5 +4.87,42.85,1012.69,94.72,482.05 +24.98,60.32,1016.39,63.12,446.46 +14.77,44.9,1020.5,84.31,465.23 +28.77,75.23,1010.01,59.0,437.93 +28.5,76.86,999.49,77.47,430.62 +11.62,41.54,1019.94,66.43,477.75 +23.21,74.22,1009.68,88.46,440.46 +30.12,73.18,1012.29,61.32,429.31 +11.63,41.5,1013.6,87.11,477.3 +19.8,58.79,1017.04,87.71,449.66 +30.22,70.32,1011.63,65.97,435.98 +17.55,43.14,1018.86,76.0,461.58 +8.27,37.7,1015.09,73.64,479.16 +31.01,69.13,1000.93,62.96,425.69 +28.64,73.4,1011.48,52.84,441.32 +10.81,45.0,1023.45,85.89,482.63 +25.62,73.17,1011.65,86.45,430.56 +30.28,58.9,1005.03,54.59,439.06 +3.63,38.44,1016.16,87.38,487.87 +9.73,41.01,1021.76,97.71,469.11 +6.72,39.85,1011.84,84.66,489.09 +20.58,49.15,1021.42,56.15,453.87 +27.99,71.58,1010.68,68.99,435.99 +18.36,53.16,1013.14,79.89,457.94 +30.08,73.42,1011.17,63.86,434.95 +25.6,63.9,1013.16,53.19,451.44 +27.41,59.21,1013.3,50.93,438.39 +7.51,43.02,1014.35,86.46,485.38 +13.42,41.74,1020.96,61.8,473.45 +28.18,60.07,1016.34,49.13,441.61 +17.3,43.72,1009.64,77.86,456.55 +24.96,70.47,1007.73,76.48,438.23 +21.04,45.09,1014.19,40.62,450.92 +22.17,65.61,1014.71,70.91,449.91 +26.98,72.58,1008.55,78.5,431.12 +30.13,78.05,1010.99,61.5,434.14 +9.68,41.48,1018.24,71.04,473.31 +21.95,68.08,1012.91,69.36,443.93 +15.09,44.34,1019.46,60.49,468.8 +23.83,58.79,1009.77,78.13,444.34 +13.86,40.66,1017.15,83.82,463.49 +22.79,69.13,1010.87,91.47,438.08 +26.71,77.95,1012.13,77.5,433.47 +28.69,67.25,1017.71,53.83,432.21 +18.27,51.43,1010.38,88.39,460.41 +24.24,68.3,1018.03,81.51,437.12 +11.8,45.09,1013.21,89.68,470.57 +17.19,58.86,1016.74,85.97,451.87 +18.55,61.87,1008.45,65.3,450.73 +15.5,44.92,1024.16,86.44,462.12 +24.22,56.89,1013.81,70.02,440.79 +11.91,43.22,1008.75,76.56999999999998,472.88 +14.48,46.18,1015.83,92.15,462.3 +14.73,58.2,1019.45,82.48,458.56 +11.91,40.69,1014.41,83.71,476.71 +22.48,50.05,1005.55,82.36,442.56 +27.72,69.88,1007.58,72.25,434.02 +15.03,44.45,1020.94,65.57,460.06 +24.18,59.92,1009.88,79.54,438.85 +21.97,58.79,1010.93,86.7,448.8 +15.51,41.76,1022.81,69.55,463.82 +25.89,58.86,1014.16,52.95,445.17 +19.13,42.18,1001.45,98.77,456.04 +26.82,69.05,1004.62,40.0,437.42 +23.04,48.06,1014.16,54.99,459.36 +6.05,42.85,1013.09,91.88,485.02 +30.94,64.44,1014.36,53.76,439.84 +25.32,48.41,1008.47,72.14,443.04 +26.92,68.27,1008.11,61.73,435.17 +23.48,51.43,1007.13,84.83,441.78 +25.66,71.77,1006.76,84.76,429.25 +17.46,53.29,1018.07,91.01,458.06 +26.18,69.84,1005.13,72.89,431.69 +10.07,39.66,1015.37,83.78,479.64 +30.99,69.82,1009.41,50.84,437.46 +31.85,73.91,1003.6,60.22,431.26 +32.2,72.29,1008.61,69.94,432.52 +22.08,41.1,1002.19,46.69,455.04 +16.32,43.56,1014.4,59.77,463.57 +24.94,59.07,1008.89,84.79,440.12 +8.3,36.3,1015.97,60.62,480.58 +18.81,45.01,1015.28,65.91,457.85 +17.61,56.53,1019.5,82.3,457.01 +27.01,43.77,1011.18,46.58,440.64 +28.69,67.25,1017.71,44.6,436.21 +13.66,40.55,1005.46,96.02,467.7 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/tabpfgen/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2a6129c5d750903bfb147fb0c6c96c862ba5d86c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/tabpfgen/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/tabpfgen/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8f4baa069a12c63a1535f8348b3f234b653e21a6 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,119 @@ +{ + "dataset_id": "n20", + "model": "tabpfgen", + "target_column": "PE", + "task_type": "regression", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/tabpfgen_meta.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..f2dab9ecb7aba19ef4df296d42c24f3247fbebd1 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/tabpfgen_meta.json @@ -0,0 +1,8 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/staged/public/staged_features.json", + "target_col": "PE", + "is_classification": false, + "n_rows": 7654, + "n_cols": 5 +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/train_20260321_070557.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/train_20260321_070557.log new file mode 100644 index 0000000000000000000000000000000000000000..40c15e9c203b89873e9e3d7bd855169555537f09 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/train_20260321_070557.log @@ -0,0 +1 @@ +[TabPFGen] No training needed (pretrained). Meta saved to /data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabpfgen/tabpfgen-n20-20260321_070556/tabpfgen_meta.json diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/_tabsyn_sample.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..997c1b213ef1405bef7a2709e0d8ebbde7f93b55 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043" +dataname = "tabsyn_n20" +output_csv = "/work/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/tabsyn-n20-7654-20260427_025104.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 7654 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "sample", + "--method", "tabsyn", + "--gpu", "0", + "--save_path", output_csv], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print(f"[TabSyn] Saved -> {output_csv}") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/_tabsyn_train.py b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..efb69de1c8c98b02330ba6bf1f44c97c3a071ab2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/_tabsyn_train.py @@ -0,0 +1,63 @@ +import os, sys, subprocess + +work_dir = "/work/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043" +dataname = "tabsyn_n20" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "1024") +_te = 1 +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/X_cat_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..cf50ce3256d4caa5bf1eb204cb6e15e4476478c8 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/X_cat_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/X_cat_train.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cf50ce3256d4caa5bf1eb204cb6e15e4476478c8 Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/X_cat_train.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/info.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/info.json new file mode 100644 index 0000000000000000000000000000000000000000..d8080cf8dbc0d2f12c13776aaa210fc0c05f54e0 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/info.json @@ -0,0 +1,75 @@ +{ + "name": "tabsyn_n20", + "task_type": "regression", + "n_num_features": 4, + "n_cat_features": 0, + "train_size": 7654, + "num_col_idx": [ + 0, + 1, + 2, + 3 + ], + "cat_col_idx": [], + "target_col_idx": [ + 4 + ], + "column_names": [ + "AT", + "V", + "AP", + "RH", + "PE" + ], + "train_num": 7654, + "test_num": 7654, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_n20/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4 + }, + "idx_name_mapping": { + "0": "AT", + "1": "V", + "2": "AP", + "3": "RH", + "4": "PE" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/test.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/train.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/y_test.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..d79a5f24553f73d62c6c42181c7106173a25fa0d Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/y_test.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/y_train.npy b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..d79a5f24553f73d62c6c42181c7106173a25fa0d Binary files /dev/null and b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/data/tabsyn_n20/y_train.npy differ diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/gen_20260427_025104.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/gen_20260427_025104.log new file mode 100644 index 0000000000000000000000000000000000000000..5e6cb454a92a6723d715685487ef148ce7a7a106 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/gen_20260427_025104.log @@ -0,0 +1,7 @@ +[TabSyn] Sampling 7654 rows +/opt/conda/lib/python3.11/site-packages/torch/cuda/__init__.py:63: FutureWarning: The pynvml package is deprecated. Please install nvidia-ml-py instead. If you did not install pynvml directly, please report this to the maintainers of the package that installed pynvml for you. + import pynvml # type: ignore[import] +No NaNs in numerical features, skipping +Time: 1.2159383296966553 +Saving sampled data to /work/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/tabsyn-n20-7654-20260427_025104.csv +[TabSyn] Saved -> /work/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/tabsyn-n20-7654-20260427_025104.csv diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/input_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..d1929206817416b74a9ab5c0164b49218d45d357 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n20", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "exists": true, + "size": 291758, + "sha256": "8768b9641a081ce32375b2739c6d0a6cdf66c1b03268c7db5f71ffd0019c97e2" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "exists": true, + "size": 36657, + "sha256": "c2dae02f854856ba824310ecaca5c73a72a3302753396aa681c82b69d65b174c" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv", + "exists": true, + "size": 36232, + "sha256": "82c48522e82ea4c5e4c407ec9239e82558dcff1df413f3d0c382e77fa041bc88" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_profile.json", + "exists": true, + "size": 2675, + "sha256": "7e7d747ab11beae1e58278dc8d6ae08d7ae6f14fe93f77a4fc1e6e589df21df4" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n20/n20-dataset_contract_v1.json", + "exists": true, + "size": 3047, + "sha256": "20f513ccbc9f09d5286bc8998a5772f42b78b40aa1ed60b079fa73edf9c78eec" + } + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8618a420d9d101a283cfb38feb336ac37687988f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,112 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "columns": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91364f3480d02e634daea210e8cae28ad5402b46 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n20", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "PE", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0767c802564677d260d04037e1b0cec1e8c99f1f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/public_gate/staged_input_manifest.json @@ -0,0 +1,117 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/runtime_result.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7a673aa583a47e6b927ed1ac67d78df42997012b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n20", + "model": "tabsyn", + "run_id": "tabsyn-n20-20260427_025043", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/tabsyn-n20-7654-20260427_025104.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/staged_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb807ac5b23b2e7dfb39b3a5378cd452e84d56ed --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/test.csv @@ -0,0 +1,959 @@ +AT,V,AP,RH,PE +14.72,41.23,997.91,82.69,467.11 +11.94,40.66,1016.61,96.11,467.99 +27.56,66.93,1016.81,55.59,444.1 +9.59,34.69,1027.65,75.31999999999998,478.88 +7.46,41.82,1032.67,74.59,483.11 +15.52,36.99,1006.86,89.7,467.9 +15.47,43.13,1015.11,50.5,466.63 +21.84,45.09,1013.94,46.11,450.88 +19.83,51.43,1007.36,91.64,449.45 +29.3,67.69,1007.17,55.5,430.72 +6.63,39.42,1024.81,72.58,482.02 +22.88,69.45,1014.02,65.13,441.76 +11.97,42.32,1016.95,88.32,467.98 +29.25,67.32,1013.88,38.57,437.94 +14.89,39.58,1012.26,77.58,465.95 +10.39,44.85,1014.22,78.42,478.05 +25.66,77.54,1008.22,78.42,432.82 +16.5,49.39,1018.35,93.42,462.48 +28.55,74.33,1011.77,73.34,426.48 +7.84,40.07,1016.68,47.63,488.7 +27.14,71.32,1007.8,87.99,431.96 +25.18,71.98,1006.71,89.86,432.88 +6.01,35.79,1011.26,90.72,482.79 +14.54,41.17,1015.15,67.78,470.19 +11.8,43.22,1008.57,78.01,469.55 +23.82,44.89,1009.39,74.69,445.45 +32.81,71.32,1007.69,47.29,434.38 +30.63,74.22,1007.47,46.52,430.38 +25.43,70.17,1000.46,87.84,436.43 +30.17,76.86,998.23,73.61,430.3 +26.27,58.33,1013.81,60.43,438.82 +26.02,63.07,1010.94,53.96,446.82 +14.64,39.31,1008.84,79.3,462.72 +19.99,65.94,1012.28,75.42,447.22 +32.9,68.51,1012.95,50.09,430.23 +20.3,44.9,1008.25,64.08,457.6 +22.86,47.43,1009.75,61.54,452.53 +10.82,44.63,1020.64,90.26,473.23 +13.15,42.44,1014.51,99.53,469.34 +27.4,66.48,1004.71,51.5,439.66 +4.96,40.07,1011.8,67.38,494.75 +8.67,36.66,1026.8,84.36,480.38 +25.97,43.21,1011.9,88.73,434.83 +10.23,42.32,1017.53,89.93,473.59 +27.66,59.21,1013.12,51.58,438.57 +27.21,68.12,1012.96,54.69,435.2 +19.72,65.94,1010.53,82.12,446.84 +8.87,41.82,1033.3,74.28,477.97 +15.29,25.88,1009.21,66.0,464.25 +19.48,39.72,1001.75,55.41,457.16 +10.93,39.16,1016.54,90.56,479.83 +20.84,51.19,1008.63,84.11,448.98 +9.01,40.77,1022.37,90.3,470.84 +21.08,63.13,1013.53,98.0,443.51 +14.94,40.0,1017.69,65.43,456.41 +28.37,63.31,1013.18,49.02,437.64 +23.45,45.61,1012.84,73.42,454.92 +12.76,42.32,1015.35,78.18,466.15 +13.86,44.21,1022.6,83.56,468.3 +24.51,51.95,1005.57,63.53,449.73 +5.04,40.64,1021.35,93.63,484.42 +14.24,45.01,1013.54,88.68,461.64 +11.17,39.72,1002.4,81.4,474.64 +11.94,44.2,1017.97,82.93,474.02 +9.28,41.54,1018.33,79.89,482.8 +28.91,58.33,1013.84,39.72,437.53 +16.89,49.21,1015.19,70.39,458.25 +16.34,36.99,1006.99,90.06,466.24 +16.41,47.24,1015.75,88.78,457.94 +19.44,39.53,1006.99,63.18,457.09 +9.37,40.11,1024.94,75.03,471.13 +13.64,44.88,1019.85,56.86,466.66 +16.19,36.99,1007.37,92.4,462.94 +18.75,63.09,1018.19,87.84,450.98 +15.97,45.01,1016.58,83.24,456.91 +19.5,52.72,1025.21,50.21,457.26 +10.49,42.49,1009.81,78.92,478.75 +20.78,62.52,1017.58,73.3,452.3 +7.41,40.81,1026.15,88.96,488.48 +25.38,72.23999999999998,1010.76,89.64,432.3 +4.0,39.9,1009.64,97.16,490.79 +30.61,68.84,1011.18,52.5,439.9 +28.57,75.33,1003.16,76.14,431.58 +15.37,41.96,1011.58,96.76,466.02 +31.56,66.44,1008.91,64.16,430.11 +16.69,46.18,1010.8,96.8,466.03 +22.0,51.3,1012.87,85.79,450.18 +28.31,74.34,998.42,79.23,431.95 +15.7,44.21,1021.26,86.83,462.19 +21.79,58.2,1017.21,66.74,446.94 +25.67,58.59,1013.0,62.34,451.03 +20.59,59.8,1015.27,77.94,453.83 +16.14,44.21,1020.36,80.59,461.03 +25.61,47.43,1008.62,54.51,442.96 +7.61,44.71,1019.41,70.48,485.36 +30.32,64.69,1006.35,51.36,436.72 +29.45,68.27,1007.96,61.63,432.96 +29.28,77.17,1009.4,76.3,433.14 +5.62,41.31,1001.37,89.16,485.6 +24.86,44.05,1005.69,66.65,447.2 +6.17,40.07,1013.7,58.99,495.21 +13.65,41.58,1020.56,72.17,460.8 +3.96,35.47,1016.79,83.81,489.68 +6.49,39.33,1010.85,91.85,489.22 +31.32,71.29,1008.37,50.07,430.46 +8.07,43.69,1017.05,87.34,485.18 +13.35,39.64,1010.1,93.3,471.69 +26.21,56.85,1011.45,41.37,439.55 +5.71,40.77,1022.51,89.58,485.75 +18.98,60.1,1010.09,85.34,453.37 +6.07,38.91,1019.25,83.39,483.56 +26.92,78.92,1011.65,96.22,434.64 +24.44,47.93,1003.13,67.04,440.53 +14.45,52.75,1023.97,63.59,459.85 +26.44,71.64,1004.55,85.53,435.61 +30.7,74.22,1008.12,50.39,432.51 +6.48,36.24,1013.62,92.03,484.65 +30.47,70.83,1010.91,46.94,444.39 +13.78,38.28,1014.8,81.19,467.43 +19.65,62.1,1019.46,77.81999999999998,449.13 +9.51,43.79,1016.02,79.81,481.12 +16.31,52.75,1024.4,55.69,456.58 +13.08,39.82,1012.27,85.21,476.96 +20.72,44.57,1008.96,72.56999999999998,449.76 +9.77,41.44,1017.69,78.26,481.74 +26.12,66.75,1017.86,79.02,433.67 +10.95,43.8,1022.61,63.46,473.2 +11.01,43.69,1016.7,81.48,477.3 +17.36,52.9,1015.42,69.97,458.66 +16.7,46.18,1011.4,95.51,458.05 +11.95,42.07,1018.52,84.73,467.91 +18.3,44.06,1017.95,63.24,456.32 +14.69,35.71,1015.78,57.34,467.39 +30.82,76.2,1007.47,59.3,432.22 +22.36,58.79,1016.69,73.59999999999998,445.76 +23.89,64.27,1013.37,75.22,450.82 +5.75,42.07,1004.24,78.23,485.23 +26.64,69.13,1010.6,79.23,430.41 +23.08,48.41,1008.44,82.35,443.5 +29.76,57.19,1008.59,51.1,436.21 +32.8,68.67,1005.27,44.53,432.28 +24.63,65.38,1010.43,40.68,446.23 +11.02,43.02,1012.32,66.54,478.81 +32.13,69.98,1013.3,55.85,431.84 +23.81,60.08,1017.29,62.66,450.33 +8.09,38.5,1012.99,67.31,484.81 +32.63,69.89,1013.85,41.66,425.72 +13.27,52.75,1025.86,65.12,464.82 +29.3,68.08,1011.23,56.23,434.11 +26.3,77.95,1009.45,78.72,437.95 +28.52,70.02,1010.34,54.21,441.98 +17.86,50.88,1015.59,88.28,457.33 +7.92,41.66,1014.84,76.12,483.38 +3.74,35.19,1018.58,98.84,490.5 +21.33,63.86,1020.33,72.13,445.02 +30.36,74.87,1008.96,61.87,435.31 +14.23,46.18,1017.39,87.29,463.86 +9.55,41.44,1015.07,85.94,481.75 +9.78,41.93,1023.18,75.05,484.03 +30.8,73.17,1010.51,51.93,432.24 +15.48,47.83,1004.88,81.68,463.67 +16.58,46.18,1010.4,96.29,463.51 +20.32,39.72,1001.38,57.21,456.18 +11.83,43.14,1010.06,88.14,471.98 +26.75,56.57,1013.76,57.93,443.92 +14.13,48.92,1011.72,78.06,464.17 +19.91,51.19,1008.0,90.23,449.23 +14.37,40.56,1021.67,68.18,470.19 +17.27,44.9,1007.85,78.8,454.19 +9.59,38.56,1017.52,61.89,481.05 +28.04,70.32,1011.28,78.16,435.42 +18.18,44.63,1020.41,48.64,455.57 +32.27,71.85,1008.06,59.28,429.72 +19.02,44.85,1014.57,43.37,465.42 +13.47,43.34,1012.75,87.04,468.8 +12.25,40.75,1016.02,82.4,475.07 +27.45,64.34,1007.12,65.87,440.0 +29.96,67.83,1008.0,44.05,433.13 +12.55,38.91,1012.58,75.44,474.35 +31.92,75.33,1002.13,65.73,431.32 +21.55,60.27,1017.42,92.59,443.93 +20.14,46.33,1013.24,83.39,453.35 +18.33,44.34,1019.55,51.69,468.8 +8.65,40.56,1023.23,78.84999999999998,485.87 +26.99,62.26,1011.13,71.27,436.89 +14.4,41.26,1021.41,73.11,462.78 +18.35,62.1,1019.97,78.36,455.29 +16.76,43.77,1012.25,77.95,457.0 +11.82,42.86,1014.12,88.28,476.7 +20.78,68.28,1008.75,60.87,450.57 +29.35,54.2,1013.07,42.45,439.47 +22.63,45.61,1014.14,73.06,457.88 +22.83,65.18,1012.24,79.73999999999998,442.43 +6.74,36.08,1020.36,86.98,484.18 +31.54,71.06,1008.4,71.77,431.87 +23.24,45.01,1012.21,45.23,457.01 +32.74,68.31,1010.23,41.29,441.66 +14.18,39.3,1020.1,67.48,464.32 +25.86,59.92,1009.92,73.95,436.06 +14.05,40.69,1015.66,74.39,470.9 +23.78,69.71,1008.79,83.17,443.06 +14.14,39.59,1010.84,96.02,465.23 +11.77,40.71,1024.55,72.48999999999998,477.94 +23.77,64.15,1021.02,55.87,448.43 +9.61,44.03,1008.3,91.36,473.54 +22.42,62.52,1016.83,63.27,451.64 +24.85,68.37,1006.5,68.37,442.66 +17.69,44.34,1019.31,61.12,464.13 +3.21,38.44,1017.11,84.86,492.93 +18.45,42.44,1013.45,63.52,459.79 +11.48,44.6,1018.29,90.76,470.39 +17.37,48.92,1011.91,58.4,455.53 +6.22,39.33,1012.31,93.23,491.77 +12.74,49.83,1007.44,91.47,466.09 +22.56,70.79,1005.85,93.09,435.14 +24.35,58.49,1011.03,70.64,445.6 +16.58,44.68,1021.5,83.38,458.87 +25.47,70.36,1005.79,77.73,437.02 +30.88,69.51,1011.48,46.58,433.14 +6.64,39.04,1018.84,74.94,481.53 +12.65,41.93,1023.07,65.05,479.53 +8.91,40.11,1022.87,78.39,475.43 +5.57,42.85,1013.55,92.14,488.85 +16.09,44.2,1019.39,67.24,460.56 +20.98,60.07,1016.26,67.18,446.26 +14.93,39.16,1007.25,72.34999999999998,463.2 +24.19,58.95,1017.78,58.78,441.91 +23.86,52.84,1006.56,48.94,444.66 +15.59,52.05,1013.67,78.55,456.07 +26.04,74.67,1016.68,81.2,433.55 +22.35,54.42,1012.46,75.01,454.72 +10.57,36.71,1022.11,82.39,472.62 +6.16,38.5,1012.83,93.68,490.92 +24.12,62.44,1013.83,88.02,443.3 +28.24,71.58,1010.1,67.92,434.01 +21.11,69.94,1004.37,84.26,439.91 +11.49,44.63,1020.44,86.04,471.08 +24.92,60.95,1014.88,60.58,445.44 +23.56,67.79,1010.14,89.72,441.29 +7.54,40.72,1023.82,85.15,485.92 +26.85,75.59999999999998,1017.43,74.55,433.48 +12.14,44.85,1014.36,60.04,476.68 +17.03,43.99,1021.5,82.32,460.25 +31.41,64.44,1013.84,49.49,439.3 +14.73,40.35,1011.15,65.2,470.03 +24.04,59.43,1007.6,76.98,437.51 +21.03,44.78,1007.99,36.82,459.72 +22.61,42.8,1014.24,69.71,460.26 +17.36,44.63,1020.49,54.21,456.98 +26.82,64.96,999.72,63.55,427.51 +18.19,44.06,1017.24,78.73,456.13 +24.38,47.01,1015.17,68.96,454.85 +12.98,39.64,1013.95,74.39,473.54 +14.17,43.13,1014.94,48.62,471.08 +18.71,54.9,1017.12,74.79,456.88 +12.8,44.34,1016.52,86.73,473.42 +16.71,46.18,1012.06,96.6,458.4 +22.99,60.77,1017.97,78.47,447.62 +28.34,63.77,1013.7,61.13,439.75 +34.53,73.03,1013.53,36.74,437.03 +10.16,40.8,1028.13,86.39,477.49 +27.28,44.89,1009.02,49.9,441.94 +22.75,58.86,1016.0,67.34,448.32 +25.01,59.54,1007.91,80.93,441.3 +23.64,63.31,1014.5,61.83,440.7 +8.85,41.06,1020.99,86.05,486.4 +19.65,63.91,1009.26,99.08,444.9 +18.22,44.34,1019.35,56.78,469.27 +9.68,40.77,1022.04,85.23,473.73 +17.49,40.55,1001.73,73.15,462.37 +21.79,61.45,1011.11,91.78,446.99 +21.06,62.91,1011.92,75.52,455.22 +23.72,58.62,1016.32,71.17,447.13 +30.93,73.42,1010.98,56.42,432.44 +5.98,38.91,1016.5,91.83,488.85 +13.45,41.16,1022.04,82.96,460.57 +12.23,43.69,1016.46,84.4,471.62 +8.13,39.96,1026.07,95.84,477.12 +29.0,77.54,1011.33,75.13,431.37 +11.61,52.75,1020.94,77.56,464.68 +19.4,49.69,1012.89,75.53,455.6 +5.0,40.64,1021.05,94.84,485.27 +23.46,57.85,1012.7,65.54,444.66 +18.51,48.06,1015.14,79.83,455.44 +29.29,70.36,1006.64,60.82,431.26 +27.55,64.96,999.73,57.34,431.33 +21.82,63.9,1014.48,92.53,447.29 +17.03,47.83,1004.94,79.68,460.43 +17.18,46.0,1002.74,100.1,454.02 +18.14,49.78,1002.95,100.09,451.44 +12.39,49.83,1007.6,92.43,468.43 +20.39,64.15,1021.31,62.35,457.37 +22.72,64.15,1021.14,60.34,453.13 +20.3,58.41,1014.05,86.38,451.74 +21.46,58.18,1007.45,95.33,444.12 +28.99,68.24,1008.75,66.57,428.28 +12.07,40.81,1025.63,68.02,475.96 +15.4,40.69,1015.1,70.25,471.66 +9.59,37.14,1013.8,72.84999999999998,474.74 +7.64,40.02,1031.58,71.19,479.43 +15.42,37.85,1009.89,85.8,467.33 +11.75,42.32,1015.28,77.25,470.44 +19.51,48.78,1021.03,86.33,453.27 +31.86,73.88,1005.6,57.68,435.91 +12.4,40.35,1011.46,79.48999999999998,476.44 +28.11,69.84,1004.68,67.08,427.33 +8.74,40.03,1016.81,93.37,481.07 +24.32,58.79,1016.8,65.61,442.78 +13.72,44.47,1027.2,68.89,470.66 +6.11,38.68,1017.53,79.23,482.97 +16.74,39.16,1005.68,71.17,460.47 +8.52,41.55,1002.09,86.81,483.63 +20.55,68.63,1012.5,67.07,453.47 +22.63,58.49,1010.94,72.7,448.38 +18.13,60.1,1009.67,84.75,455.82 +12.51,43.67,1013.24,91.55,471.96 +21.02,61.5,1008.52,77.73999999999998,448.08 +6.99,40.07,1014.83,54.36,490.11 +16.37,36.99,1006.37,90.11,463.76 +15.68,39.16,1006.09,75.62,461.98 +22.17,60.27,1018.21,89.55,443.31 +26.7,49.02,1007.68,67.97,438.92 +19.55,39.39,1013.55,57.82,464.36 +27.74,74.78,1010.05,60.82,436.87 +18.09,43.72,1008.64,74.15,453.02 +11.49,35.76,1019.08,60.04,472.45 +23.67,63.86,1019.67,57.95,441.73 +32.02,67.83,1007.77,53.31,426.55 +20.38,62.52,1017.85,75.56,456.56 +5.02,45.87,1007.8,99.22,481.03 +26.24,51.43,1011.32,59.52,447.91 +14.47,41.76,1021.98,78.41,464.0 +24.16,60.29,1018.09,63.49,446.17 +10.07,40.92,1021.84,84.18,471.71 +10.73,44.92,1025.1,85.4,476.81 +16.81,42.86,1013.83,77.11,464.36 +27.52,74.67,1015.77,72.01,433.56 +13.96,40.83,1009.89,84.86,469.86 +22.78,49.16,1002.29,64.28,444.99 +22.77,70.32,1012.04,82.43,440.67 +8.64,41.66,1014.14,80.44,481.89 +27.33,66.17,1011.06,64.55,443.89 +19.07,49.69,1007.22,76.79,453.09 +24.1,68.61,1010.97,74.87,443.75 +14.6,42.32,1015.71,77.03,464.67 +14.77,44.47,1028.38,71.18,464.25 +9.14,38.91,1018.62,89.88,476.57 +14.85,45.87,1009.37,84.65,462.67 +8.47,41.03,1021.72,70.16,485.1 +23.79,59.44,1012.53,79.48,448.67 +26.63,64.44,1012.66,61.19,442.0 +12.88,44.34,1016.03,88.51,474.94 +12.73,44.34,1015.11,93.55,472.94 +17.2,40.55,1000.68,72.67,462.55 +10.05,41.17,1018.98,83.71,481.38 +28.37,75.59999999999998,1017.48,55.19,439.25 +25.61,60.32,1015.77,56.48,443.96 +20.34,46.63,1013.16,79.08,453.62 +20.21,58.12,1015.36,79.18,453.19 +21.19,58.86,1014.19,68.96,452.43 +29.71,73.18,1012.35,63.06,427.04 +15.24,37.87,1020.52,84.49,463.09 +17.35,42.86,1014.62,74.16,465.16 +13.5,45.51,1015.33,86.95,469.08 +25.94,77.23999999999998,1007.97,84.82,432.88 +5.51,35.57,1026.3,78.97,489.36 +26.16,52.36,1013.62,58.52,453.08 +15.17,49.15,1021.91,91.73,461.89 +14.57,42.18,1015.13,74.89,465.75 +12.16,45.0,1021.51,50.52,482.99 +25.1,60.37,1005.83,72.53,438.44 +13.57,39.39,1014.01,82.12,471.44 +20.25,55.5,1020.03,69.33,455.13 +11.23,39.72,1018.46,60.62,475.04 +12.52,42.34,1018.67,95.29,464.71 +8.68,39.61,1021.54,77.98,486.31 +8.18,40.02,1031.45,73.66,478.81 +21.93,60.84,1017.8,82.61,443.89 +30.69,71.98,1004.53,65.86,430.33 +12.08,41.39,1019.45,78.3,477.8 +9.08,42.49,1010.67,85.35,481.46 +20.33,57.76,1016.47,75.34999999999998,450.25 +31.03,69.98,1011.33,52.16,436.13 +6.03,41.14,1028.04,87.46,479.61 +14.02,42.86,1030.86,68.36,467.29 +20.51,45.38,1014.29,69.14,461.87 +28.17,63.13,1012.44,66.61,439.94 +18.83,63.91,1010.8,96.18,448.15 +25.52,63.94,1017.81,41.54,440.32 +22.61,49.3,1003.51,83.02,441.76 +28.61,68.12,1011.71,47.57,432.94 +18.43,56.03,1020.41,60.55,465.17 +13.41,54.3,1016.48,79.28,467.88 +11.11,40.55,1023.91,87.12,476.37 +33.97,72.29,1008.98,44.32,432.33 +18.41,62.1,1020.4,78.09999999999998,457.14 +22.4,58.12,1015.24,78.03,449.13 +25.1,61.47,1007.84,75.75,447.27 +28.73,68.3,1016.53,55.73,434.15 +11.47,43.67,1012.68,72.51,475.72 +11.19,40.64,1020.57,84.49,472.86 +10.38,43.02,1013.37,78.53,474.44 +30.09,69.48,1009.51,53.24,435.2 +26.72,65.61,1014.41,52.01,442.48 +19.14,56.65,1020.84,82.97,458.06 +21.25,44.05,1005.69,81.87,448.43 +15.55,45.09,1014.33,62.19,457.36 +12.28,42.34,1019.19,95.8,467.03 +31.93,72.58,1006.9,56.27,425.14 +24.9,71.77,1006.24,85.25,427.77 +23.71,67.17,1007.27,90.2,440.65 +31.05,62.7,1009.35,55.27,441.67 +10.08,40.72,1022.7,67.3,480.8 +22.31,61.45,1009.25,98.56,437.05 +24.01,42.48,1011.39,55.1,453.12 +21.75,49.82,1015.01,78.33,455.28 +29.3,73.67,1005.64,65.31,431.07 +12.27,41.17,1019.39,52.18,473.84 +16.51,41.79,1007.1,74.03,457.74 +26.26,63.73,1010.45,70.61,442.18 +31.33,73.03,1014.18,49.28,438.49 +21.81,65.06,1014.6,66.41,447.13 +14.93,39.39,1014.31,80.68,468.88 +33.87,71.32,1007.91,39.48,435.89 +28.09,63.31,1013.01,52.6,438.6 +18.06,56.65,1020.2,81.59,459.14 +20.36,56.53,1020.25,72.95999999999998,455.34 +29.58,76.2,1008.37,60.73,433.91 +9.62,41.01,1019.43,97.99,467.34 +25.08,58.49,1011.1,64.47,446.9 +24.33,60.32,1015.49,59.95,445.36 +30.93,70.83,1010.61,46.13,440.59 +22.04,58.05,1013.11,85.22,447.28 +5.74,45.87,1011.44,95.94,482.0 +24.17,71.25,1003.9,90.36,435.66 +5.95,39.48,1005.16,63.6,486.07 +27.51,63.73,1009.97,66.14,440.81 +28.62,70.32,1008.87,46.67,431.03 +20.48,60.29,1017.16,72.09999999999998,455.51 +27.03,71.14,1010.33,66.25,430.41 +28.31,70.32,1007.88,47.0,432.5 +16.6,41.93,1022.01,48.98,467.51 +14.67,71.14,1019.84,77.72,458.8 +5.68,40.35,1012.11,92.86,486.79 +29.66,59.22,1013.25,61.2,441.58 +6.99,39.37,1020.19,75.06,487.18 +25.61,74.22,1010.26,75.15,438.45 +11.31,39.61,1018.74,68.9,471.92 +29.04,76.09,1007.52,75.44,430.32 +16.5,53.29,1017.7,95.66,458.37 +22.26,60.77,1018.26,85.94,442.58 +25.95,59.92,1010.05,76.05,443.93 +28.09,70.02,1010.84,51.29,437.83 +8.36,40.67,1014.99,73.65,489.1 +24.88,49.16,1006.04,64.54,445.18 +14.34,42.86,1031.75,66.81,466.17 +18.16,39.99,1008.13,68.5,461.16 +20.57,44.9,1008.39,62.69,456.18 +16.85,39.64,1008.82,80.81,464.2 +24.56,63.21,1013.79,82.38,444.34 +9.54,41.17,1019.79,65.61,481.18 +21.43,60.95,1015.27,75.48999999999998,449.12 +24.15,71.73,1009.76,85.16,436.55 +21.87,74.87,1009.28,85.4,442.37 +15.3,41.76,1022.57,71.56,466.59 +19.45,41.1,1001.88,52.16,458.26 +27.99,71.64,1007.79,72.67,437.81 +21.03,69.05,1002.17,75.34999999999998,444.35 +31.84,77.95,1014.9,55.35,433.28 +29.83,71.43,1011.93,55.8,439.34 +10.08,37.92,1010.47,66.37,474.63 +18.36,51.43,1010.57,90.17,459.8 +16.4,38.01,1022.2,73.05,463.79 +13.03,42.86,1014.39,86.25,475.03 +18.88,62.96,1020.62,82.01,456.18 +11.87,41.78,1012.97,64.79,470.84 +23.16,57.76,1017.74,63.79,451.79 +15.39,42.28,1007.35,81.34999999999998,467.3 +16.84,56.03,1020.25,70.37,437.14 +14.65,44.84,1023.39,87.76,467.18 +18.97,44.85,1014.86,46.31,466.17 +26.22,69.89,1015.46,76.63,433.61 +7.07,37.49,1010.35,87.19,481.58 +17.4,44.9,1020.5,77.11,457.75 +30.05,73.68,1014.95,70.6,434.92 +14.01,45.08,1023.28,82.49,464.79 +23.24,63.78,1017.1,63.8,446.95 +23.03,65.12,1016.29,69.8,447.84 +8.58,40.72,1022.04,87.55,480.96 +24.92,48.92,1010.11,36.53,445.56 +25.8,65.38,1009.3,52.28,450.5 +26.31,48.6,1002.64,60.04,440.06 +29.13,62.26,1010.51,52.94,436.37 +11.02,41.17,1018.18,86.86,477.62 +13.61,39.85,1012.78,58.12,475.62 +23.32,69.13,1010.75,91.84,435.27 +30.45,43.21,1011.35,63.59,438.68 +31.7,70.36,1006.26,58.18,438.38 +23.62,73.67,1007.0,90.8,438.33 +12.45,43.67,1013.61,91.34,474.27 +28.85,68.12,1012.05,46.31,436.15 +18.4,43.69,1016.59,52.44,462.05 +28.97,78.92,1011.71,88.5,430.98 +4.93,35.19,1018.04,92.94,486.39 +13.75,44.47,1029.63,70.74,467.14 +16.64,44.9,1021.02,70.34,460.93 +19.04,68.28,1004.52,86.16,444.54 +15.89,43.96,1014.02,75.23999999999998,467.35 +29.03,67.79,1010.67,55.42,444.09 +14.97,58.2,1019.52,81.13,458.68 +16.23,43.52,1020.13,76.3,464.74 +14.74,44.47,1028.29,67.87,462.92 +9.75,52.72,1026.03,78.53,473.41 +27.18,59.27,1012.57,64.18,439.69 +16.22,50.88,1014.33,100.09,454.94 +6.62,42.49,1008.74,94.57,482.74 +9.33,44.03,1011.73,86.04,474.15 +23.14,62.26,1011.87,66.44,444.38 +14.52,40.35,1011.11,69.84,470.8 +33.71,69.98,1013.09,42.62,431.99 +14.84,42.03,1017.47,79.27,466.2 +13.48,41.92,1030.2,65.96,463.9 +31.4,71.06,1008.44,74.77,433.34 +27.44,66.56,1005.51,69.28,428.0 +22.68,70.47,1010.86,82.8,441.47 +9.03,40.71,1025.98,81.94,484.97 +14.36,41.26,1021.16,73.43,462.25 +10.06,43.22,1014.1,85.7,473.0 +22.76,49.02,1007.5,88.56,442.84 +24.79,75.59999999999998,1017.07,68.23,440.05 +34.97,73.56,1006.57,44.69,435.15 +27.64,75.59999999999998,1017.35,54.78,441.04 +18.37,51.86,1018.8,74.3,461.14 +7.91,39.96,1023.57,88.44,475.52 +21.8,65.94,1012.02,63.52,448.66 +29.42,71.32,1002.26,67.13,437.47 +19.01,58.46,1017.14,90.99,446.18 +24.01,67.17,1007.44,86.87,443.09 +11.69,39.22,1017.05,55.51,472.76 +22.01,58.46,1016.26,75.98999999999998,443.75 +13.74,42.74,1029.54,70.0,465.92 +12.27,43.8,1023.21,57.0,468.55 +12.88,43.8,1023.19,59.18,468.19 +32.06,71.85,1007.9,56.44,426.07 +23.46,59.27,1010.6,79.79,445.57 +24.41,52.3,1006.28,70.33,442.62 +13.22,44.92,1023.84,87.99,471.43 +13.69,40.83,1008.53,84.81,471.26 +10.31,45.01,1018.42,93.67,473.74 +21.41,54.2,1011.37,82.28,448.11 +24.49,65.46,1015.77,44.95,445.27 +25.72,49.82,1016.19,60.1,452.33 +18.73,46.48,1007.19,79.23,450.74 +22.88,59.21,1011.51,86.93,440.25 +26.59,60.96,1011.9,52.41,439.77 +30.38,71.58,1010.17,50.45,433.75 +18.94,47.83,1005.18,78.59,455.19 +25.17,64.79,1017.87,63.26,442.15 +20.55,48.98,1016.1,63.89,452.52 +10.03,42.18,1017.3,85.99,475.74 +25.03,60.27,1017.9,72.04,438.24 +7.82,41.16,1023.3,87.7,475.66 +33.43,69.88,1006.86,44.84,435.59 +11.33,41.5,1013.58,88.7,475.01 +12.34,40.62,1016.28,53.6,466.47 +4.78,42.85,1013.07,94.72,479.09 +14.03,49.15,1020.5,83.65,467.16 +26.11,47.43,1009.01,56.09,445.36 +24.67,70.94,1007.99,75.64,443.51 +14.28,44.84,1024.84,79.09,474.57 +26.74,59.87,1012.5,62.88,447.88 +29.83,62.66,1007.98,47.07,438.71 +17.51,44.9,1009.05,74.91,455.01 +30.05,69.34,1008.26,61.5,436.82 +15.85,49.69,1015.48,88.65,464.72 +32.5,71.37,1003.75,43.8,433.7 +30.56,69.04,1009.29,55.73,442.24 +23.32,69.23,1011.75,75.59,436.18 +18.0,52.08,1003.07,100.09,450.85 +25.45,70.04,1011.2,82.48,430.2 +17.37,40.55,1001.19,71.42,460.97 +16.43,41.79,1005.47,76.89,455.85 +19.15,44.89,1009.6,74.52,451.09 +16.0,39.16,1016.37,77.63,468.49 +10.87,44.71,1021.38,58.22,484.63 +21.98,55.97,1009.12,89.51,442.65 +21.92,61.87,1009.68,58.83,445.52 +14.62,42.86,1015.56,84.5,470.79 +20.9,67.07,1005.43,82.85,443.46 +23.45,69.04,1010.5,80.77,442.48 +7.31,43.02,1014.19,86.43,484.82 +22.21,61.87,1010.9,54.22,446.62 +20.83,49.02,1009.45,91.92,445.31 +14.71,44.0,1024.98,85.08,462.87 +19.92,63.31,1015.02,82.71,443.54 +31.85,73.20999999999998,1000.98,72.2,435.94 +24.1,71.97,1009.92,91.27,443.09 +12.42,38.25,1012.76,82.23,472.3 +28.79,70.79,1003.83,65.9,425.64 +17.05,44.88,1017.69,88.19,459.63 +31.59,62.7,1009.3,50.16,442.58 +14.93,41.79,1008.88,81.48,456.75 +24.44,69.13,1011.1,87.62,434.34 +26.05,65.59,1012.78,67.03,437.04 +26.48,51.43,1006.76,74.3,438.1 +17.19,37.2,1011.84,67.59,468.4 +6.25,39.04,1019.65,71.27,484.14 +31.12,67.69,1005.3,50.46,425.21 +11.16,40.05,1014.95,88.38,479.11 +31.16,69.88,1007.01,68.28,433.24 +19.27,43.14,1013.17,39.85,463.14 +17.79,43.52,1020.65,68.29,458.57 +22.76,58.96,1013.85,55.95,454.05 +5.66,39.42,1024.7,78.52,482.11 +21.75,67.45,1014.89,67.09,445.1 +24.66,58.86,1013.86,56.39,444.42 +18.16,39.99,1007.73,70.54,463.69 +25.26,61.08,1013.68,71.72,447.46 +23.6,48.98,1015.41,48.28,448.43 +22.89,65.34,1015.53,61.0,450.53 +28.82,71.43,1011.51,58.58,443.68 +21.57,69.23,1011.94,81.73,437.55 +11.03,42.32,1017.26,90.56,470.92 +15.75,39.16,1016.31,77.98999999999998,468.87 +13.67,44.92,1023.6,85.35,467.71 +11.58,39.69,1005.17,86.55,469.6 +32.31,62.04,1010.41,39.39,450.13 +23.67,72.23999999999998,1011.22,90.45,435.94 +11.29,35.76,1019.32,58.91,473.74 +13.58,49.83,1008.9,86.8,465.82 +10.54,41.93,1016.64,93.52,479.65 +24.96,74.98999999999998,1008.25,80.52,440.91 +24.53,74.78,1009.9,78.34,446.3 +12.12,41.17,1017.68,78.72,470.67 +22.99,56.57,1013.93,78.77,445.44 +31.15,67.45,1014.85,42.11,431.97 +20.2,64.45,1009.03,61.77,452.33 +10.9,41.46,1016.66,86.2,479.45 +27.04,48.41,1008.57,60.73,441.21 +29.72,74.78,1009.32,55.25,438.19 +29.86,69.34,1007.76,54.12,433.57 +28.18,73.88,1005.89,75.41,434.48 +27.0,69.4,1004.86,82.2,433.83 +33.63,70.4,1004.02,53.6,430.05 +10.44,37.83,1006.31,97.2,474.42 +13.39,49.83,1007.14,90.88,466.04 +9.0,43.13,1020.25,81.31999999999998,481.09 +18.94,48.7,1008.5,94.83,451.38 +26.14,71.98,1005.98,82.45,428.91 +5.11,42.07,1004.28,81.8,486.41 +26.62,65.12,1016.0,43.24,441.22 +25.69,62.26,1011.38,74.08,436.36 +8.13,39.99,1011.71,87.89,486.19 +9.97,41.62,1013.99,96.02,464.86 +6.58,43.02,1014.03,84.95,488.22 +13.9,42.86,1030.82,71.89,473.76 +12.33,39.28,1011.84,80.01,476.49 +7.26,36.08,1021.47,83.15,483.58 +12.29,40.03,1017.62,89.64,472.65 +33.82,77.17,1008.96,58.91,435.58 +9.27,40.22,1008.1,89.24,481.23 +23.44,62.52,1016.46,67.21,447.19 +31.63,69.59,1008.66,61.81,436.89 +27.28,51.43,1011.46,51.38,450.53 +21.45,45.09,1013.83,52.26,453.15 +25.14,69.13,1011.15,85.67,433.95 +20.12,45.09,1013.73,57.78,448.35 +16.36,53.82,1015.05,71.95,461.62 +19.77,65.06,1016.22,74.95,448.26 +31.92,75.33,1001.81,61.97,436.38 +26.52,43.77,1011.49,46.98,440.31 +11.52,40.03,1017.56,87.87,472.31 +29.91,74.33,1013.22,39.76,430.26 +15.01,39.52,1017.53,72.0,468.02 +28.39,65.51,1014.52,66.48,438.78 +25.3,71.29,1007.86,62.98,437.17 +16.63,53.82,1015.18,66.09,458.29 +10.41,44.68,1023.53,91.38,474.7 +26.86,68.08,1012.99,50.04,436.25 +10.48,36.71,1023.18,81.37,473.3 +10.58,42.34,1022.32,94.01,474.91 +6.94,38.91,1018.94,90.64,485.12 +20.64,49.21,1014.86,58.47,454.2 +25.69,73.18,1012.64,86.35,432.82 +22.48,71.29,1008.15,75.41,444.71 +6.63,39.37,1020.33,76.18,489.16 +33.4,69.98,1013.29,47.78,432.44 +15.11,42.99,1007.53,85.75,466.25 +8.99,36.66,1028.11,71.98,481.03 +9.6,41.82,1032.93,72.63,475.01 +9.42,41.4,1029.21,86.4,474.75 +23.62,68.63,1013.18,50.57,447.3 +28.19,71.97,1008.85,84.67,438.8 +26.39,49.16,1005.68,56.18,442.87 +24.93,47.01,1014.28,66.04,455.06 +21.28,70.72,1010.29,86.22,445.54 +8.73,41.92,1029.41,89.72,480.99 +6.99,35.19,1019.32,68.95,480.05 +30.7,71.58,1010.0,48.96,429.27 +15.82,44.2,1018.96,66.73,460.2 +23.19,49.82,1014.59,70.52,451.08 +10.27,42.34,1022.69,92.78,474.55 +14.04,39.64,1011.09,87.22,472.31 +20.42,62.96,1020.34,84.0,452.08 +17.31,58.49,1011.8,92.77,456.84 +13.51,43.41,1015.94,75.22,463.86 +7.39,39.81,1019.45,85.02,482.99 +26.71,76.86,1002.86,74.5,437.31 +31.74,79.73999999999998,1007.07,61.47,431.72 +21.46,50.59,1016.75,67.14,453.67 +12.75,44.03,1007.29,89.46,465.86 +14.43,44.84,1024.34,84.0,467.45 +23.93,68.28,1005.16,69.91,444.95 +10.62,42.02,999.83,96.66,472.41 +14.74,43.71,1024.35,81.53,465.49 +7.87,41.17,1020.33,77.77,486.2 +22.16,65.48,1017.22,70.51,446.0 +7.94,43.65,1018.75,59.45,479.8 +26.56,65.59,1012.6,64.25,443.66 +31.03,69.59,1007.77,63.96,432.56 +29.09,70.98,1007.86,80.34999999999998,439.34 +7.31,42.18,1014.75,86.75,477.38 +10.03,41.62,1014.55,95.61,462.73 +10.28,39.64,1010.45,74.15,477.65 +29.86,64.79,1017.37,44.8,439.89 +29.24,60.23,1009.62,59.71,438.24 +17.34,47.03,1013.36,98.13,463.89 +13.56,42.34,1017.95,93.83,462.6 +10.62,39.96,1025.37,96.64,470.8 +27.37,69.23,1013.25,48.02,433.18 +13.61,42.34,1017.57,91.35,465.65 +12.81,44.58,1016.49,80.76,475.5 +21.83,62.91,1011.07,91.34,443.76 +22.97,62.4,1010.25,75.18,445.3 +24.33,46.93,1013.72,48.27,447.43 +23.49,64.63,1020.75,65.16,450.28 +17.13,42.86,1014.15,73.59999999999998,463.09 +14.86,44.71,1018.3,49.46,466.38 +24.15,64.63,1020.72,58.06,448.87 +7.71,36.25,1027.92,89.84,481.74 +24.82,71.94,1010.5,64.67,438.69 +11.65,41.54,1020.09,67.96,476.4 +10.25,41.46,1020.65,87.07,481.94 +5.78,40.62,1016.55,84.98,484.13 +9.35,44.03,1011.02,88.11,476.25 +10.76,40.43,1025.98,79.65,490.78 +25.76,57.32,1011.93,43.61,440.26 +14.57,37.86,1022.44,68.82,463.58 +13.6,39.82,1013.34,86.1,470.69 +29.36,78.05,1011.12,64.17,434.29 +23.12,69.71,1008.98,84.41,442.21 +23.39,63.94,1010.54,89.94,441.44 +25.45,67.83,1009.47,57.97,429.95 +27.65,48.41,1008.54,58.25,440.94 +30.24,73.9,1006.74,56.39,441.31 +13.78,40.0,1018.38,68.67,458.74 +24.66,69.94,1006.56,60.91,432.68 +17.1,48.98,1016.48,85.63,454.43 +27.37,65.06,1013.09,50.92,440.5 +20.11,51.19,1007.82,92.06,449.03 +12.24,41.62,1013.38,90.26,461.23 +28.5,79.73999999999998,1006.75,87.09,433.08 +14.64,42.77,1017.59,79.59999999999998,464.27 +18.06,65.48,1018.79,77.95,454.34 +14.79,38.73,999.83,86.45,470.28 +35.2,73.56,1006.56,45.72,434.37 +22.93,51.19,1009.3,82.8,443.57 +25.73,66.54,1010.07,55.97,437.07 +18.77,50.66,1014.89,87.34,457.07 +11.52,40.8,1024.31,73.48999999999998,479.56 +8.84,42.49,1010.28,89.09,481.58 +21.24,60.84,1017.99,82.22,445.71 +15.67,45.17,1018.73,94.74,462.09 +22.99,46.21,1010.71,60.11,444.36 +23.93,64.05,1013.09,86.02,440.66 +34.33,69.05,1000.89,37.9,430.56 +29.85,68.24,1007.01,30.99,433.43 +30.1,67.45,1014.23,39.04,434.01 +6.85,37.49,1011.01,84.53,483.12 +26.53,54.2,1012.9,66.73,439.96 +24.2,59.07,1009.25,88.25,441.93 +24.6,75.23,1012.04,76.77,434.07 +30.1,66.25,1009.38,65.41,434.99 +21.6,59.8,1016.9,76.59,450.14 +24.9,58.49,1011.06,65.14,444.19 +26.9,60.93,1007.1,67.32,435.87 +23.07,57.17,1009.84,76.8,444.08 +24.85,70.47,1006.64,85.37,434.47 +30.3,73.9,1006.72,55.13,440.79 +32.18,69.75,1009.94,52.91,438.26 +29.11,74.78,1009.6,56.93,438.75 +21.37,65.94,1010.73,75.09,444.74 +26.53,69.71,1009.88,76.26,446.17 +8.9,40.77,1011.67,90.26,479.18 +22.45,63.77,1014.57,87.44,444.26 +28.9,71.25,1000.73,77.23999999999998,431.52 +18.55,46.48,1007.34,80.67,452.37 +20.92,63.86,1020.49,72.98,449.09 +14.38,45.09,1012.95,86.1,464.27 +8.9,41.4,1030.83,85.63,472.95 +11.1,44.85,1014.27,65.08,477.03 +20.85,59.21,1012.9,75.97,444.44 +26.27,71.98,1005.72,86.15,427.65 +15.61,40.89,1010.48,80.26,467.3 +3.26,41.31,996.32,100.0,489.38 +27.05,77.95,1009.57,76.56,434.09 +19.54,50.66,1014.7,84.53,456.61 +6.42,35.57,1025.58,79.63,485.86 +26.19,65.61,1014.51,54.52,443.73 +9.84,40.22,1009.5,85.38,479.65 +10.86,44.85,1014.15,88.36,476.87 +33.33,73.03,1014.2,42.28,436.05 +9.25,41.82,1033.25,74.73,478.48 +14.7,44.9,1021.87,83.9,468.69 +30.17,75.08,1005.17,55.89,438.89 +11.74,43.56,1015.14,70.72,477.5 +23.27,60.84,1019.13,67.24,440.22 +25.21,59.21,1013.19,62.85,438.7 +15.18,44.2,1019.6,72.45,462.09 +29.03,43.21,1011.83,65.23,434.11 +24.18,58.49,1011.3,77.81999999999998,445.49 +7.62,44.71,1020.56,69.96,486.07 +29.53,71.97,1008.6,79.25,434.96 +24.27,74.93,1012.73,73.81,443.06 +28.4,74.93,1013.65,48.6,442.23 +22.2,57.17,1009.82,78.43,447.75 +17.58,44.9,1020.52,71.48,459.78 +6.71,40.72,1022.78,80.69,483.11 +28.32,72.58,1007.77,78.34999999999998,428.06 +8.11,42.18,1014.82,93.09,473.62 +34.76,68.94,1006.75,41.31,427.42 +28.82,64.79,1016.74,56.34,445.1 +25.43,60.95,1014.62,51.39,444.65 +24.78,57.19,1008.08,65.4,443.62 +6.94,39.61,1017.74,81.43,480.07 +27.5,68.24,1010.38,73.44,430.9 +21.43,63.94,1012.68,99.68,445.29 +26.84,70.36,1007.41,71.47,442.17 +25.69,64.45,1013.05,42.0,450.94 +27.92,74.98999999999998,1005.47,75.13,431.76 +23.69,58.05,1012.08,74.26,444.46 +22.89,62.39,1007.84,88.16,448.13 +15.43,38.58,1016.58,81.17,463.44 +21.84,58.86,1014.13,69.67,445.16 +16.8,56.03,1020.65,85.26,461.96 +18.34,50.59,1018.42,83.95,457.17 +21.1,49.16,1006.76,86.08,442.78 +8.49,39.61,1021.05,87.74,483.94 +11.95,42.03,1017.58,90.89,465.2 +5.05,35.57,1027.03,80.02,491.4 +4.71,42.07,1005.35,82.26,486.79 +13.65,42.74,1026.58,71.48,468.87 +25.14,67.32,1013.96,41.78,435.39 +8.88,39.66,1015.21,88.29,481.45 +11.3,43.14,1019.56,99.83,469.73 +30.61,67.69,1004.97,47.46,429.8 +15.69,39.3,1019.03,60.57,464.17 +20.58,50.78,1008.87,91.18,445.03 +24.66,66.49,1010.83,70.06,438.01 +21.93,62.91,1013.45,74.62,449.17 +25.2,61.08,1013.04,74.28,447.09 +11.75,35.76,1018.99,57.92,473.01 +28.16,70.72,1009.81,65.32,441.37 +34.96,68.94,1006.17,59.26,431.48 +16.63,43.77,1012.25,75.09,458.66 +12.1,44.77,1019.1,75.84999999999998,463.11 +14.48,39.0,1016.75,75.97,464.56 +30.96,71.77,1006.26,52.76,425.66 +26.89,49.16,1003.84,41.22,442.39 +32.09,69.4,1003.1,56.91,430.62 +9.95,41.82,1033.09,69.44,477.52 +16.71,40.55,1004.45,81.64,464.13 +17.34,46.48,1007.18,83.15,452.06 +26.2,71.14,1007.92,72.95,431.7 +14.51,42.77,1017.47,81.95,463.37 +19.81,43.56,1013.39,38.13,460.59 +13.85,41.39,1018.62,75.55,471.45 +11.06,41.5,1013.09,89.8,476.24 +14.45,43.34,1015.47,83.33,462.16 +3.99,39.64,1011.53,83.58,492.06 +24.74,59.39,1015.23,74.64,437.49 +11.48,41.2,1012.88,90.04,478.34 +19.09,43.14,1012.34,45.75,463.3 +22.26,60.37,1008.14,92.37,441.33 +14.17,39.59,1010.99,94.08,464.17 +24.67,58.05,1011.31,69.95,444.57 +26.87,74.98999999999998,1002.48,71.91,437.78 +22.32,48.41,1008.68,79.11,445.36 +14.94,42.77,1018.06,75.34999999999998,460.51 +19.32,44.71,1015.3,28.81,464.38 +17.58,39.63,1004.84,80.43,467.33 +24.19,47.45,1008.26,64.25,446.3 +32.0,73.17,1009.92,42.47,433.72 +12.64,41.79,1016.38,92.65,461.46 +21.86,63.09,1016.64,87.94,442.79 +23.07,69.23,1011.78,76.06,437.08 +15.98,41.48,1017.0,55.73,456.31 +11.48,41.14,1027.67,90.5,464.07 +26.07,69.23,1013.32,54.03,436.94 +13.74,44.21,1023.26,84.2,466.67 +29.23,75.59999999999998,1017.72,52.26,438.92 +9.44,43.99,1020.31,98.06,475.01 +29.51,75.59999999999998,1017.92,50.61,431.18 +13.12,44.21,1019.57,89.29,469.09 +26.23,59.14,1016.98,75.54,437.85 +14.55,42.74,1027.29,66.64,457.77 +20.3,58.46,1015.93,82.13,448.79 +12.57,39.18,1023.09,77.28,471.87 +9.34,41.49,1020.58,97.59,471.04 +7.93,42.28,1008.43,85.57,484.75 +19.6,48.14,1013.18,68.71,456.57 +21.35,57.76,1017.36,73.09999999999998,452.57 +10.59,38.38,1021.58,68.23,474.94 +27.54,75.59999999999998,1018.26,57.89,440.87 +11.12,44.92,1025.58,93.52,470.82 +18.82,61.27,1019.5,72.23,455.29 +25.11,62.26,1011.12,78.01,434.97 +21.89,58.05,1011.31,85.71,441.76 +12.87,48.04,1012.47,100.13,465.56 +25.54,60.37,1006.49,71.54,436.14 +7.05,40.69,1020.53,89.67,476.75 +9.11,36.66,1026.47,74.79,480.74 +24.77,71.94,1006.77,88.86,432.27 +8.51,40.81,1015.54,83.16,481.02 +17.1,62.1,1020.39,93.63,453.4 +7.11,39.9,1008.82,87.76,484.21 +20.01,56.65,1020.77,74.45999999999998,457.01 +25.27,63.91,1009.82,75.48,440.39 +29.72,54.2,1012.86,38.48,438.84 +27.42,65.74,1013.43,69.42,440.52 +28.44,77.54,1011.73,77.3,433.21 +25.89,48.41,1008.49,68.58,440.92 +31.39,69.59,1008.28,62.86,435.76 +17.1,49.69,1005.53,81.81999999999998,457.32 +15.24,44.45,1020.56,66.13,460.94 +13.9,39.59,1011.84,94.74,465.0 +30.52,70.4,1003.9,64.33,438.29 +21.78,68.28,1001.0,79.3,443.24 +28.07,68.08,1013.13,44.67,437.65 +26.07,71.37,1008.6,79.48,439.25 +18.0,43.7,1015.4,61.28,464.26 +9.93,40.67,1018.08,69.74,485.23 +23.48,65.12,1015.82,60.83,445.66 +12.66,41.2,1015.88,89.12,466.49 +25.95,59.27,1010.9,70.42,444.19 +10.34,41.46,1017.75,89.73,478.03 +18.2,39.63,1005.35,79.05,468.49 +23.64,70.04,1011.09,83.35,435.21 +17.38,43.14,1011.09,61.9,459.02 +27.67,69.59,1009.13,82.15,437.29 +22.18,59.39,1014.82,85.31,440.94 +14.86,37.85,1010.58,86.8,467.71 +25.9,47.45,1007.8,55.96,443.13 +25.88,66.48,1004.24,63.16,434.4 +21.12,47.24,1003.79,70.55,462.41 +20.03,62.26,1012.15,82.54,447.4 +21.86,49.21,1014.61,53.31,452.77 +11.71,40.05,1014.49,86.09,471.49 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/train.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8e4f06f47506230c9250aba198646e237e7e5c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/val.csv @@ -0,0 +1,957 @@ +AT,V,AP,RH,PE +25.69,57.32,1012.34,44.18,441.43 +17.98,59.15,1012.09,83.03,451.97 +11.52,40.75,1016.23,85.18,477.19 +26.43,66.48,1004.36,55.9,435.59 +24.26,69.51,1013.43,53.23,442.56 +19.68,62.96,1020.41,82.26,453.58 +10.28,41.46,1018.44,85.23,479.66 +25.15,62.91,1012.23,48.22,444.19 +23.28,72.23999999999998,1011.3,90.5,434.21 +11.6,40.27,1008.55,72.12,473.89 +22.75,58.79,1011.44,84.47,445.67 +6.77,39.81,1017.01,87.68,488.27 +19.48,58.66,1013.32,73.16,454.4 +23.93,65.59,1011.09,87.26,444.9 +17.77,44.6,1016.97,54.25,460.13 +33.58,77.54,1010.19,53.49,433.75 +7.49,39.81,1019.03,87.29,483.59 +6.33,42.07,1004.25,77.09999999999998,484.57 +12.43,41.62,1011.87,80.56999999999998,460.61 +25.34,64.27,1013.38,66.02,443.94 +17.17,63.09,1020.54,95.98,446.75 +27.75,69.89,1015.41,73.01,430.33 +29.62,73.18,1012.21,61.6,427.22 +24.35,70.04,1010.92,73.88,438.4 +27.39,69.14,1008.82,78.34999999999998,435.22 +31.18,70.36,1006.38,56.74,438.46 +26.56,49.02,1007.65,70.78,438.82 +24.24,71.58,1010.15,91.14,437.75 +11.82,41.26,1020.74,91.14,466.95 +14.38,40.1,1015.51,81.23,467.28 +26.65,74.16,1008.27,94.54,431.47 +26.16,67.9,1005.81,61.02,444.06 +5.52,39.33,1009.74,95.25,492.39 +31.24,68.3,1015.89,42.84,435.2 +26.22,67.45,1013.7,44.04,440.17 +21.67,69.71,1010.46,96.83,440.16 +13.4,40.89,1010.67,91.66,472.36 +13.78,43.22,1011.31,69.7,463.71 +9.88,39.66,1017.81,76.05,480.05 +10.34,41.74,1020.07,79.17,480.84 +26.86,71.32,1007.38,81.14,430.44 +12.95,41.38,1021.97,53.83,474.46 +26.94,65.61,1014.31,49.73,443.9 +21.81,43.77,1011.97,64.72,453.13 +18.9,56.03,1020.77,71.83,457.66 +14.87,41.23,997.39,82.06,465.01 +20.46,59.21,1018.42,85.89,445.22 +24.3,69.94,1007.02,62.14,438.92 +24.58,71.94,1006.85,89.02,433.99 +9.88,40.0,1021.4,92.06,481.58 +29.85,71.58,1010.04,58.66,432.26 +27.5,65.59,1011.23,65.37,441.27 +6.14,40.62,1015.71,86.51,481.66 +20.76,51.19,1009.0,87.23,445.0 +25.55,58.95,1017.12,51.84,442.3 +10.24,41.17,1019.73,82.04,479.78 +14.45,43.71,1025.26,84.23,463.6 +30.76,59.57,1010.66,61.76,439.32 +5.72,40.81,1025.78,92.46,487.8 +30.24,68.24,1009.68,64.67,426.25 +34.61,73.03,1013.61,36.91,438.56 +24.14,62.66,1007.33,73.27,439.93 +26.76,70.98,1007.64,90.51,437.83 +18.47,62.1,1019.86,82.57,452.51 +29.51,75.59999999999998,1017.92,50.61,431.18 +29.05,71.85,1008.6,78.69,428.39 +21.89,45.38,1014.42,68.95,459.45 +24.67,63.56,1013.75,67.56,446.3 +30.67,71.29,1008.36,52.08,430.28 +25.21,49.82,1016.44,63.14,450.75 +9.76,41.01,1019.66,97.59,467.6 +18.31,62.1,1020.38,79.02,455.24 +33.11,77.54,1010.36,50.99,431.77 +26.18,69.14,1006.54,85.95,436.0 +8.72,40.02,1031.32,78.09,477.86 +17.06,58.96,1013.83,73.95,461.15 +8.01,40.62,1015.62,86.43,476.22 +14.35,35.71,1016.1,60.86,468.9 +29.74,70.32,1008.1,52.72,432.69 +23.0,49.5,1014.15,66.68,454.44 +17.09,42.42,1009.03,72.01,464.11 +14.0,40.8,1026.17,54.82,474.87 +25.02,60.29,1017.49,54.75,445.61 +13.86,41.58,1020.69,70.74,461.56 +27.58,78.05,1010.83,94.98,431.95 +26.41,60.93,1007.16,66.02,436.71 +11.02,41.44,1015.28,83.53,476.68 +25.48,58.95,1017.02,51.16,440.42 +15.47,48.98,1016.42,89.85,457.55 +21.48,47.43,1006.88,63.54,449.2 +18.86,51.43,1010.27,86.0,446.91 +20.94,44.58,1016.98,59.65,463.69 +15.02,41.48,1015.19,58.69,456.04 +28.71,70.32,1011.78,76.53,435.95 +14.28,42.77,1020.06,81.77,466.75 +26.24,77.95,1014.19,85.21,438.01 +24.31,63.86,1019.47,58.54,442.69 +8.51,40.78,1023.51,89.84,471.11 +16.07,65.46,1013.88,87.11,450.54 +8.14,39.96,1023.41,88.86,477.05 +18.43,44.63,1019.76,39.99,458.75 +34.2,68.14,1002.7,56.09,427.05 +17.66,62.1,1019.49,86.3,452.03 +23.77,51.43,1006.67,84.09,441.54 +16.59,39.54,1007.97,70.58,464.19 +15.01,43.56,1014.65,61.82,465.84 +29.09,70.02,1010.13,48.06,443.27 +20.1,59.87,1018.97,87.23,444.71 +9.0,39.18,1024.38,84.91,483.26 +16.85,50.9,1013.26,83.94,460.68 +28.44,69.4,1003.98,73.51,433.44 +9.51,40.81,1015.69,82.52,475.29 +25.99,49.82,1015.95,58.56,452.09 +6.86,41.17,1020.12,79.14,490.23 +8.57,39.69,1000.91,99.9,474.29 +23.3,48.78,1018.17,75.36,441.08 +32.95,67.9,1005.88,45.15,425.89 +24.41,73.67,1007.39,86.92,435.56 +17.51,39.54,1010.22,71.53,462.12 +31.68,73.68,1014.85,64.0,431.11 +9.0,41.54,1018.83,79.61,484.08 +18.4,43.96,1012.4,77.81,464.63 +13.72,49.83,1006.88,89.49,463.65 +7.16,38.56,1019.17,70.1,486.12 +14.33,43.41,1015.43,55.4,462.94 +13.53,42.86,1014.0,90.63,471.73 +13.11,41.58,1020.43,74.31999999999998,460.44 +23.98,50.32,1008.41,67.75,443.45 +31.08,59.57,1010.76,60.49,442.88 +33.62,77.17,1009.38,63.71,431.03 +11.93,38.78,1013.15,96.08,474.57 +21.97,68.12,1012.53,75.12,443.39 +23.83,49.21,1012.93,46.79,446.23 +4.96,45.87,1007.32,98.78,481.88 +31.3,70.79,1004.3,54.37,428.75 +17.75,49.25,1020.86,63.67,454.41 +29.89,71.29,1009.0,55.72,431.45 +12.11,41.17,1019.46,62.59,475.53 +23.85,74.22,1009.99,82.72,441.66 +12.16,40.81,1025.79,70.97,476.63 +23.71,60.23,1009.76,90.67,439.66 +22.49,58.71,1009.75,76.43,443.33 +18.9,57.5,1016.21,93.9,451.42 +27.86,63.07,1011.11,56.81,440.48 +26.04,71.14,1011.66,68.95,433.78 +19.51,44.05,1008.52,78.38,451.7 +10.92,40.92,1021.84,83.03,467.05 +8.51,42.32,1015.08,84.89,476.6 +19.68,68.28,1002.62,71.57,452.47 +27.75,70.4,1006.65,90.21,436.53 +21.59,66.54,1004.88,90.54,441.71 +13.93,42.86,1032.37,71.11,468.88 +16.55,41.66,1011.45,55.53,465.14 +25.53,71.85,1009.19,74.7,431.26 +20.67,57.5,1014.42,81.89,453.29 +25.21,69.48,1010.99,75.27,436.02 +9.29,39.04,1022.72,74.29,482.55 +33.92,77.95,1010.15,58.89,433.01 +25.63,71.58,1010.14,87.57,433.76 +27.21,66.49,1013.57,40.11,439.04 +10.42,41.26,1008.48,96.76,472.54 +25.02,59.44,1012.49,73.65,444.08 +24.2,59.43,1009.69,62.3,440.66 +15.82,44.88,1018.59,78.88,461.9 +11.46,38.91,1012.34,77.37,477.5 +13.17,36.71,1012.82,72.76,474.93 +23.47,65.61,1014.57,69.83,447.16 +10.77,41.46,1021.42,87.18,479.22 +28.47,69.23,1013.18,40.73,434.12 +30.03,70.02,1010.07,64.2,436.88 +13.89,35.71,1016.4,65.49,468.54 +13.26,41.78,1009.77,61.69,467.78 +12.31,37.73,1023.3,63.01,472.08 +19.61,45.01,1014.84,64.42,461.97 +18.58,44.6,1016.61,48.15,459.06 +23.18,51.43,1011.56,81.83,449.94 +28.33,68.14,1004.63,71.21,431.27 +14.82,40.0,1016.32,66.3,458.46 +21.42,56.89,1014.39,84.05,444.86 +26.62,76.2,1006.06,69.13,437.81 +28.17,72.43,1007.37,68.92,428.88 +20.86,63.73,1008.54,96.83,440.42 +25.45,63.76,1009.96,67.78,439.56 +29.15,73.42,1011.43,66.49,432.26 +32.33,67.83,1008.11,57.48,427.84 +13.45,45.87,1008.73,87.06,464.88 +29.91,76.86,998.59,72.41,432.6 +24.93,73.5,1011.28,83.09,437.35 +9.71,42.44,1014.29,94.03,481.03 +16.69,53.82,1015.39,63.62,458.96 +22.36,51.43,1007.47,87.33,442.53 +25.57,44.05,1005.79,65.14,443.84 +7.36,41.01,1025.49,96.48,477.37 +14.22,42.32,1015.54,77.23,465.0 +18.33,49.64,1025.36,62.57,468.14 +31.1,68.51,1012.99,54.3,428.68 +27.62,71.14,1011.6,52.8,434.72 +17.04,56.03,1020.38,68.69,462.48 +17.31,44.71,1017.43,35.4,463.05 +31.61,69.04,1008.11,47.96,439.19 +28.14,51.43,1012.16,52.67,445.33 +8.77,40.46,1019.68,77.84,475.0 +6.15,40.77,1022.42,88.57,482.49 +21.39,52.3,1009.2,79.77,446.87 +12.29,40.71,1019.71,83.09,469.75 +11.6,39.96,1011.65,80.79,473.22 +26.68,68.08,1011.41,67.33,433.04 +7.71,38.06,1021.0,83.47,482.78 +10.07,44.68,1023.44,90.95,477.52 +22.08,45.61,1014.02,75.70999999999998,456.71 +30.74,69.59,1008.69,68.04,437.81 +26.49,67.69,1004.61,78.13,430.62 +14.55,44.84,1023.83,87.6,465.14 +16.55,39.64,1009.07,77.8,465.29 +11.68,40.55,1006.48,96.16,474.8 +10.95,40.22,1010.04,78.95999999999998,477.23 +11.83,38.25,1013.36,85.33,473.31 +23.38,48.78,1019.03,78.69,446.18 +29.77,69.48,1009.8,52.6,432.69 +24.12,58.66,1011.55,58.96,450.69 +6.1,39.33,1010.4,95.34,491.37 +6.93,41.14,1027.18,84.67,479.06 +27.6,69.05,1003.87,42.01,436.08 +11.23,41.17,1019.36,56.85,475.85 +18.84,40.79,1005.18,92.46,459.96 +29.47,71.32,1008.07,67.0,437.14 +23.3,72.98999999999998,1008.54,92.11,437.62 +29.15,69.48,1008.68,55.78,430.54 +21.99,42.48,1011.77,74.04,456.65 +21.77,42.23,1013.03,67.44,462.51 +27.61,49.16,1005.01,35.63,441.18 +26.05,65.38,1009.43,52.1,449.82 +14.8,44.71,1014.67,41.71,470.77 +15.71,39.3,1019.2,62.28,462.84 +16.44,53.16,1014.82,75.29,458.49 +17.03,58.49,1011.91,92.16,460.48 +10.12,41.55,1005.78,62.34,475.46 +10.17,41.17,1018.58,87.72,478.04 +23.37,65.46,1016.25,48.64,447.07 +11.98,44.6,1018.59,86.71,470.02 +24.66,48.78,1018.39,71.79,449.11 +16.61,43.77,1012.25,77.23,457.66 +14.79,47.83,1007.27,92.04,463.22 +29.2,64.84,1009.94,55.37,441.9 +23.26,58.2,1016.72,57.98,446.87 +7.19,39.37,1019.67,70.77,480.4 +20.94,49.02,1008.91,87.32,448.18 +27.89,73.20999999999998,1001.32,85.88,431.59 +23.63,71.29,1008.01,70.07,442.65 +20.91,58.2,1018.1,62.8,446.19 +14.91,46.9,1019.59,98.1,461.73 +23.82,73.67,1007.26,88.16,438.42 +32.09,79.73999999999998,1006.92,61.5,432.85 +16.69,46.18,1011.0,97.85,458.57 +17.16,58.86,1016.4,86.39,453.76 +28.05,70.36,1006.73,64.42,434.06 +30.54,70.17,999.42,64.32,434.62 +21.95,50.66,1013.92,70.94,455.23 +24.49,59.87,1018.4,59.95,444.54 +10.62,39.58,1011.9,87.85,479.91 +11.47,25.36,1008.27,95.4,469.51 +24.84,71.73,1009.84,82.41,436.36 +20.66,51.19,1008.81,88.93,447.14 +26.85,63.56,1013.25,52.84,444.39 +25.56,69.13,1002.46,68.26,434.48 +20.0,39.53,1007.59,62.09,456.28 +8.22,41.82,1032.77,71.63,477.86 +21.84,59.39,1015.77,88.12,442.11 +14.26,44.47,1028.81,72.19,465.77 +14.35,39.39,1012.92,82.41,470.53 +22.89,80.25,1006.38,80.25,446.15 +24.34,73.5,1011.31,84.15,440.29 +23.86,59.21,1013.02,73.59999999999998,441.22 +27.71,69.13,1001.63,51.45,432.54 +22.63,70.47,1008.0,82.27,441.92 +31.23,75.08,1004.93,46.19,439.14 +10.31,40.67,1017.61,69.61,485.25 +7.64,39.85,1012.78,88.09,481.53 +31.44,79.73999999999998,1006.95,56.99,431.69 +4.89,45.87,1007.58,99.35,482.69 +27.91,63.76,1010.27,65.67,435.21 +19.05,53.16,1013.22,82.8,455.76 +28.36,69.88,1007.75,84.17,434.03 +27.69,73.91,1005.23,75.70999999999998,435.08 +22.85,59.15,1014.74,63.92,448.61 +23.0,57.76,1017.64,56.86,451.39 +30.04,68.08,1011.04,51.01,429.52 +17.08,38.58,1015.41,73.42,461.49 +27.13,69.45,1013.9,51.16,434.47 +30.65,65.18,1012.51,42.32,436.79 +23.91,50.23,1017.25,68.57,455.41 +7.64,42.28,1008.49,83.42,483.74 +6.77,40.78,1024.86,96.58,478.24 +18.41,44.9,1008.97,73.81,453.12 +14.29,39.59,1010.93,94.53,463.04 +29.29,71.14,1011.49,49.97,432.58 +29.17,67.45,1014.1,46.85,435.08 +23.55,65.94,1011.76,58.44,443.98 +19.05,59.21,1017.99,89.53,451.0 +18.22,49.25,1020.33,61.87,454.66 +14.8,38.73,1003.18,80.73,467.54 +5.28,45.87,1008.25,97.88,479.91 +13.07,43.13,1016.93,70.02,471.47 +21.37,81.56,1006.57,81.56,434.38 +9.96,41.55,1002.59,65.86,475.91 +13.86,41.78,1010.75,57.9,467.39 +11.33,41.16,1019.05,87.13,468.87 +16.81,42.42,1008.95,74.25,462.19 +29.79,67.69,1006.86,55.93,428.71 +14.44,41.2,1015.96,81.97,469.85 +9.08,40.46,1019.48,77.37,476.81 +17.3,57.76,1016.26,87.74,455.75 +27.06,64.45,1008.72,54.21,443.1 +14.64,39.58,1011.46,71.9,467.8 +23.69,77.54,1009.32,89.7,440.21 +9.05,36.3,1027.44,74.84999999999998,479.43 +24.73,74.22,1010.15,79.83,436.55 +19.94,44.9,1008.52,74.69,459.47 +8.73,39.42,1025.63,69.87,474.44 +26.66,73.56,1006.9,99.27,433.62 +31.81,69.88,1007.94,55.91,432.6 +17.47,58.59,1014.03,97.13,449.41 +22.18,62.39,1007.84,85.74,452.31 +18.25,43.14,1011.51,55.16,462.78 +20.34,69.45,1012.76,91.05,442.73 +27.44,58.9,1003.86,66.74,442.19 +27.75,77.23999999999998,1007.48,78.37,433.57 +19.13,59.21,1018.32,89.66,450.81 +19.84,65.48,1019.54,76.59999999999998,449.85 +21.1,62.66,1011.19,83.49,448.8 +20.15,58.59,1014.13,91.96,443.85 +28.85,58.33,1013.78,41.39,444.0 +19.39,60.1,1010.28,83.31,452.57 +21.88,69.71,1010.28,97.64,444.39 +16.34,47.45,1009.41,92.96,448.59 +13.34,40.8,1026.56,64.85,474.47 +3.92,41.31,999.22,95.26,487.35 +21.97,58.12,1015.29,77.47,449.6 +13.89,44.84,1023.66,92.97,466.74 +13.98,40.71,1022.72,71.83,474.46 +16.55,41.93,1022.71,42.73,466.77 +21.17,52.3,1009.36,81.51,447.5 +24.37,65.61,1014.5,65.67,443.13 +24.42,64.79,1016.12,69.32,449.1 +16.54,42.86,1014.85,78.0,465.26 +8.199999999999998,41.14,1025.24,96.26,474.04 +26.17,58.86,1014.52,51.28,443.69 +14.24,39.58,1011.17,70.45,469.94 +14.1,42.18,1015.05,78.25,463.3 +24.91,52.3,1008.72,68.26,441.15 +32.55,69.89,1013.87,40.09,428.84 +20.7,58.16,1016.73,68.19,453.22 +29.7,57.19,1008.41,55.07,436.29 +17.66,60.08,1017.22,86.96,456.62 +30.03,68.84,1011.41,53.82,439.31 +26.45,54.5,1014.96,65.55,450.76 +12.57,41.79,1014.99,87.8,461.88 +30.82,78.87,1012.06,70.69,432.01 +16.97,44.92,1025.21,74.27,460.21 +14.84,38.91,1013.78,69.27,467.83 +20.99,50.78,1008.55,75.14,449.07 +12.35,44.2,1017.81,82.49,471.65 +19.64,46.33,1013.33,98.99,451.45 +29.14,61.5,1009.64,39.95,437.76 +11.82,41.17,1019.5,55.74,475.61 +23.94,51.95,1008.61,73.42,448.67 +17.4,63.09,1020.84,92.58,453.0 +8.949999999999998,43.13,1017.56,94.85,479.14 +29.12,51.43,1005.93,60.66,437.71 +29.13,47.93,1002.5,49.1,435.61 +30.56,71.25,1000.3,70.55,431.92 +19.07,44.63,1020.23,44.93,456.37 +32.96,69.75,1008.86,40.23,435.56 +19.35,39.72,1002.5,51.24,455.29 +31.92,68.3,1015.58,41.55,430.07 +13.85,48.92,1011.68,79.23999999999998,462.38 +26.69,70.36,1006.82,68.29,435.04 +17.66,44.9,1020.5,71.33,457.11 +16.05,38.28,1014.38,73.89,466.75 +6.24,35.77,1019.24,70.7,483.36 +6.43,39.61,1017.51,83.8,480.58 +15.12,39.16,1006.55,76.98999999999998,463.78 +15.84,49.69,1015.14,90.41,462.6 +18.41,42.44,1012.66,65.93,463.2 +15.54,41.96,1011.78,97.46,467.1 +28.26,69.23,1013.01,42.1,436.31 +12.24,40.96,1023.22,78.73999999999998,475.32 +25.45,75.23,1011.41,73.33,441.65 +5.25,42.85,1013.75,89.67,477.78 +9.82,41.04,1026.72,77.28,473.98 +11.44,41.39,1019.59,79.95,478.52 +12.07,38.25,1012.67,81.66,470.36 +28.51,70.02,1010.58,54.68,441.66 +23.47,60.77,1017.19,75.36,444.46 +20.42,45.01,1012.23,66.5,451.28 +21.13,47.43,1006.97,64.26,448.83 +18.62,65.48,1018.45,73.39,451.94 +15.68,43.7,1015.09,58.96,470.29 +7.46,39.81,1018.62,86.73,484.13 +11.38,52.75,1026.19,72.70999999999998,469.9 +21.11,43.43,1010.1,62.62,447.83 +32.38,77.23999999999998,1007.7,61.15,430.96 +19.74,45.38,1015.11,80.67,459.39 +19.18,50.12,1005.99,100.09,444.56 +10.19,37.14,1012.74,73.48,475.01 +20.98,43.77,1010.67,62.73,449.88 +13.47,44.88,1017.56,93.23,476.67 +27.23,44.05,1005.69,58.91,440.2 +7.3,43.65,1019.33,67.62,482.96 +18.26,60.95,1016.94,78.91,457.03 +9.55,40.67,1018.56,70.72,486.34 +26.1,63.56,1013.12,61.0,442.75 +25.88,63.73,1009.48,77.17,438.42 +20.29,63.09,1019.03,76.06999999999998,448.22 +22.58,59.14,1017.2,80.91,439.78 +27.57,60.07,1016.52,54.75,440.12 +30.48,70.04,1010.73,53.7,429.85 +9.27,38.56,1017.69,62.49,475.42 +15.01,42.77,1018.21,73.22,462.6 +31.01,73.5,1010.92,48.61,432.41 +19.62,68.63,1012.26,68.05,453.84 +24.26,47.93,1003.87,70.44,439.16 +14.87,41.76,1022.26,78.20999999999998,464.84 +31.0,71.77,1006.29,48.56,431.07 +28.84,74.67,1016.52,67.43,428.98 +18.48,50.16,1011.45,99.92,452.06 +30.49,64.44,1013.43,51.73,438.09 +27.49,71.94,1008.25,68.29,428.27 +21.76,47.93,1005.34,86.28,444.77 +13.78,44.47,1027.94,71.09,467.22 +25.28,66.25,1009.77,84.55,439.77 +27.17,61.02,1011.38,65.32,437.06 +20.51,42.23,1013.25,71.83,461.78 +15.43,39.16,1016.44,79.8,470.74 +12.7,39.72,1017.89,62.97,467.77 +26.86,72.58,1009.22,88.39,428.69 +26.06,58.59,1012.41,55.22,451.47 +10.56,40.22,1005.08,89.71,478.02 +25.33,73.20999999999998,1002.19,97.24,433.43 +3.0,39.64,1011.0,80.14,485.2 +30.91,69.75,1010.23,59.36,435.7 +27.34,71.64,1008.12,72.22,438.76 +15.34,43.5,1021.18,79.44,459.77 +18.99,59.27,1012.15,89.39,453.4 +12.14,40.27,1007.57,73.22,472.84 +30.75,71.22,1006.47,48.06,437.96 +16.05,41.96,1011.82,96.05,463.72 +14.83,53.82,1016.57,63.47,464.0 +25.12,66.56,1009.22,65.62,436.56 +13.72,41.62,1011.14,75.79,455.52 +20.94,58.16,1016.88,65.43,455.16 +24.81,67.17,1007.71,84.37,442.75 +10.2,41.46,1019.12,83.26,480.11 +26.19,49.3,1003.69,65.88,440.13 +24.7,58.82,1009.4,75.91,442.98 +31.82,73.68,1014.8,40.58,433.32 +10.29,40.56,1017.28,69.13,481.7 +15.94,44.85,1014.29,67.57,462.54 +21.28,70.32,1011.06,90.12,439.0 +12.45,40.1,1015.4,82.61,473.63 +25.15,57.32,1012.41,41.84,440.1 +28.52,57.82,1004.81,57.82,435.4 +22.47,48.6,1002.33,63.23,445.98 +15.21,43.5,1021.6,82.06,464.08 +27.88,63.87,1017.79,40.0,443.24 +32.14,68.31,1010.48,42.15,436.15 +28.28,69.48,1008.56,61.3,428.75 +12.12,38.28,1013.65,90.19,471.19 +13.44,41.14,1026.41,77.26,461.44 +15.12,41.04,1025.95,69.67,460.58 +9.73,40.22,1011.48,87.88,481.42 +14.05,39.59,1011.2,94.54,464.63 +28.43,63.31,1013.44,49.99,432.62 +12.38,41.62,1012.37,84.15,461.07 +7.09,39.37,1020.07,73.26,487.0 +11.69,35.76,1019.02,55.6,471.72 +25.76,63.94,1018.49,42.14,445.78 +14.91,43.34,1015.15,81.56,461.27 +21.91,70.32,1009.17,90.57,439.29 +23.56,73.18,1012.18,87.98,437.92 +19.98,49.15,1021.56,63.89,457.54 +24.33,49.16,1003.46,61.04,441.2 +9.22,40.92,1021.83,85.43,474.51 +32.16,71.32,1005.5,60.23,434.01 +27.29,64.45,1013.46,45.35,446.94 +28.14,61.47,1009.69,64.66,435.35 +26.71,70.4,1007.59,82.63,432.64 +19.83,46.33,1013.27,96.4,451.22 +13.49,43.41,1015.75,57.86,461.06 +14.13,53.82,1016.72,64.85,467.08 +20.6,66.86,1013.08,62.48,451.44 +22.01,60.84,1017.55,83.82,441.9 +5.89,35.77,1019.78,79.58,479.86 +26.02,70.79,1004.21,79.12,428.72 +14.08,41.93,1023.02,59.41,475.15 +24.96,77.54,1008.25,80.59999999999998,433.4 +32.21,71.85,1008.25,58.09,429.15 +26.59,69.13,1009.27,73.95999999999998,430.11 +8.529999999999998,43.14,1012.25,78.88,480.08 +25.94,66.49,1012.83,61.81,433.38 +7.76,39.61,1021.63,80.67,488.32 +27.21,67.45,1013.83,43.26,436.47 +19.08,59.15,1013.1,81.81999999999998,451.33 +30.97,67.9,1005.98,55.6,428.26 +7.53,41.74,1022.45,90.85,487.25 +32.19,69.13,1000.45,48.22,425.21 +27.32,66.54,1004.95,72.58,431.33 +14.92,46.18,1014.21,98.82,465.63 +24.62,72.43,1007.97,84.36,436.89 +14.47,44.66,1016.33,93.52,464.41 +26.35,59.44,1012.16,63.73,443.73 +26.38,65.12,1016.1,47.57,441.07 +24.44,52.84,1006.39,49.05,440.2 +32.63,74.98999999999998,1002.42,40.07,432.79 +29.49,69.71,1009.34,56.35,440.99 +30.58,70.04,1010.4,48.16,431.59 +13.24,39.16,1016.52,86.66,474.48 +12.91,41.66,1013.37,71.52,469.71 +25.1,43.77,1010.9,49.68,444.99 +16.0,43.02,1012.37,39.2,466.01 +23.62,61.87,1010.07,48.77,447.93 +25.54,70.47,1009.28,73.5,436.16 +15.89,41.7,1018.93,82.68,463.33 +23.79,50.16,1005.32,75.81999999999998,435.49 +17.77,56.53,1019.57,79.89,457.94 +21.54,58.41,1013.99,86.34,450.69 +24.49,70.79,1005.51,88.65,430.54 +13.52,39.39,1012.91,84.03,474.82 +13.51,44.9,1019.29,77.23999999999998,464.86 +28.9,68.84,1011.64,64.44,437.06 +26.28,75.23,1011.44,68.35,435.28 +28.81,64.96,1000.46,68.05,427.91 +17.49,63.94,1020.02,82.6,452.71 +20.61,48.78,1020.8,85.05,449.38 +27.84,71.32,1007.72,79.25,431.37 +22.7,60.84,1019.15,71.48,438.59 +7.21,42.03,1017.81,90.12,482.26 +14.68,41.23,998.43,83.71,469.25 +21.93,60.84,1018.96,76.8,440.76 +9.23,37.36,1015.01,67.38,481.08 +27.51,49.3,1003.74,61.27,437.09 +20.76,70.72,1009.73,89.04,448.85 +30.65,71.06,1008.61,76.76,432.08 +10.31,42.49,1009.43,78.36,479.64 +27.27,72.58,1009.25,89.31,428.93 +28.61,68.12,1012.23,46.45,435.28 +19.65,44.89,1009.76,75.36,451.35 +30.24,69.88,1007.9,61.46,436.37 +31.26,68.94,1005.94,39.49,438.03 +25.16,74.33,1014.55,76.7,436.15 +16.73,58.59,1015.02,89.61,455.3 +30.57,58.9,1004.54,54.37,438.49 +17.18,63.09,1020.67,93.58,451.37 +27.35,61.47,1008.43,70.65,443.67 +19.11,50.16,1010.88,100.09,450.38 +26.48,68.14,1004.83,55.96,432.19 +13.84,42.18,1015.74,79.76,468.66 +29.1,76.2,1006.28,60.22,435.97 +13.91,40.24,1017.03,85.93,466.24 +13.73,41.78,1011.75,49.65,464.94 +25.4,65.34,1013.11,53.93,445.82 +14.73,39.52,1017.01,74.20999999999998,470.45 +27.58,66.48,1004.82,51.23,435.34 +24.03,62.44,1010.96,79.88,430.66 +19.78,63.09,1019.01,78.39,448.34 +12.57,41.66,1009.11,70.74,475.61 +13.95,41.49,1019.95,86.46,465.24 +13.77,47.83,1007.41,90.66,466.07 +21.52,50.66,1013.56,74.33,455.71 +27.98,67.9,1006.3,73.53,436.08 +14.57,44.45,1021.42,66.23,462.48 +25.46,70.32,1010.65,64.7,433.08 +8.58,38.38,1021.03,84.37,482.26 +28.18,66.56,1005.69,65.67,426.79 +32.07,70.94,1006.91,49.9,432.33 +17.94,37.2,1012.64,68.11,467.65 +7.34,40.72,1023.01,80.08,483.92 +10.8,39.28,1010.7,82.62,478.8 +24.34,70.79,1006.82,85.66,433.83 +26.45,64.27,1013.23,60.92,444.9 +18.38,62.1,1020.12,77.27,452.91 +32.53,77.95,1014.76,58.1,434.44 +7.99,36.08,1020.08,83.2,481.35 +21.16,50.66,1014.13,72.77,455.86 +15.71,40.12,1012.81,97.46,462.6 +20.58,39.53,1005.68,62.09,460.1 +32.0,58.9,1003.48,51.38,437.81 +30.29,74.16,1008.77,75.23,431.39 +31.38,68.27,1006.79,52.79,426.67 +29.67,66.51,1015.6,34.1,434.8 +19.9,56.53,1020.52,78.05,456.48 +23.6,57.17,1009.84,74.27,446.05 +4.59,39.33,1010.85,71.78,494.9 +12.76,43.7,1015.13,65.34,475.73 +6.53,42.85,1012.65,91.6,480.98 +14.46,53.82,1016.55,68.11,462.6 +23.75,61.5,1008.16,69.14,442.35 +22.28,59.92,1009.36,95.38,437.85 +24.4,60.37,1006.77,82.43,440.64 +29.82,69.75,1010.09,65.02,442.6 +20.29,65.27,1013.17,74.94,445.52 +27.2,72.43,1006.75,80.67,430.32 +5.7,40.62,1016.07,84.94,482.82 +24.54,65.46,1014.27,40.77,446.26 +16.57,63.31,1016.19,81.02,454.78 +29.89,65.74,1012.95,51.36,438.24 +24.37,70.02,1010.97,71.97,443.53 +24.16,65.06,1013.88,58.96,442.32 +14.9,52.05,1015.11,77.33,464.82 +26.88,74.78,1010.42,64.81,440.84 +27.02,72.58,1009.21,89.13,437.8 +10.13,38.16,1013.57,79.04,474.92 +15.27,38.73,1002.83,77.77,465.99 +14.03,44.88,1019.6,57.63,465.51 +8.51,41.26,1023.17,87.79,477.51 +8.68,41.82,1032.83,73.62,478.61 +12.85,41.14,1027.04,86.29,464.86 +25.27,67.07,1006.34,66.35,445.81 +28.62,69.71,1009.67,62.12,437.52 +23.87,60.27,1018.94,77.16,439.86 +26.54,69.48,1010.7,66.09,432.56 +12.83,44.88,1017.86,87.88,474.26 +15.62,41.76,1023.82,66.17,459.72 +28.28,61.86,1012.07,64.49,439.65 +20.06,62.1,1020.21,72.20999999999998,451.81 +13.86,35.71,1015.21,63.16,471.63 +28.19,68.08,1013.41,43.93,436.43 +18.02,53.16,1013.41,82.84,458.01 +14.8,43.99,1022.89,85.25,461.97 +9.26,41.66,1016.87,73.31999999999998,483.51 +20.65,66.51,1014.94,71.83,456.49 +13.03,39.52,1016.68,83.09,473.99 +13.41,49.83,1008.83,87.14,466.38 +3.73,39.42,1024.4,82.42,488.58 +26.95,70.79,1004.09,75.34999999999998,430.07 +11.7,43.41,1016.08,62.27,467.51 +13.09,54.3,1017.61,82.38,471.0 +5.21,41.31,1003.51,91.23,486.46 +12.65,44.0,1023.03,88.73,471.46 +16.01,49.64,1026.35,77.75,457.8 +15.34,41.23,996.87,86.56,465.16 +17.94,62.1,1019.81,82.65,453.55 +33.01,68.67,1005.2,51.41,433.94 +22.91,66.44,1011.23,63.43,444.48 +31.35,67.32,1013.74,38.56,439.81 +10.63,40.67,1017.13,66.12,483.27 +4.27,39.64,1010.99,84.85,487.19 +21.14,58.05,1012.98,87.27,449.74 +25.36,60.07,1015.06,66.11,439.73 +11.44,44.2,1018.14,84.9,476.12 +13.35,39.58,1012.41,83.45,465.85 +23.88,54.2,1012.81,64.52,444.97 +15.65,43.5,1021.39,78.58,463.5 +6.72,38.91,1016.89,90.47,485.89 +15.74,43.71,1024.7,78.38,462.66 +19.84,56.89,1013.23,78.31999999999998,447.92 +11.44,43.13,1014.88,63.88,477.57 +26.55,69.45,1013.88,55.39,435.64 +19.96,39.53,1006.16,62.77,460.49 +10.8,40.69,1014.3,87.44,478.19 +8.36,38.91,1016.27,88.82,482.09 +8.55,35.77,1016.15,73.31999999999998,481.44 +31.84,71.37,1003.51,46.22,432.04 +5.94,39.9,1007.84,86.33,485.86 +14.35,40.71,1023.09,69.5,473.56 +31.91,67.83,1008.76,53.22,425.28 +25.35,74.33,1015.29,77.84,435.66 +9.32,36.3,1027.67,73.25,479.52 +16.34,42.28,1008.08,52.8,463.29 +29.95,73.42,1011.44,66.32,432.81 +7.09,43.65,1019.6,72.09999999999998,483.42 +25.63,72.98999999999998,1008.2,86.8,436.64 +28.54,71.94,1007.4,65.99,430.91 +25.57,65.46,1014.81,38.58,444.46 +12.99,44.0,1025.22,90.27,470.93 +14.77,48.06,1010.92,69.81,461.52 +31.09,59.57,1010.67,60.5,440.08 +14.04,48.79,1017.62,75.25,464.09 +29.12,66.56,1006.9,49.79,429.94 +32.13,74.34,1003.34,56.39,436.3 +31.75,74.98999999999998,1003.25,53.33,430.82 +24.82,66.54,1010.0,60.36,440.88 +19.76,48.92,1010.48,46.57,456.69 +31.26,76.09,1006.66,63.91,430.36 +9.43,41.4,1028.81,85.83,475.8 +27.78,60.07,1014.66,53.74,439.43 +23.99,45.87,1007.63,52.62,443.66 +18.32,66.51,1015.18,81.5,459.89 +28.86,49.3,1003.93,52.85,435.75 +27.35,69.48,1008.51,65.81,432.31 +23.32,66.48,1003.92,72.25,436.26 +18.99,62.1,1020.0,76.76,453.09 +10.82,42.02,996.03,99.34,475.46 +14.81,43.69,1017.19,71.9,470.71 +22.77,59.92,1009.67,94.09,437.9 +18.61,47.83,1006.43,78.89,454.21 +26.5,66.05,1017.03,61.34,440.15 +16.11,44.92,1025.37,79.84999999999998,460.99 +30.51,70.94,1007.64,59.42,430.91 +13.48,41.44,1015.64,71.46,471.39 +16.37,43.5,1021.26,72.4,459.18 +21.19,50.16,1005.81,84.27,450.33 +26.38,59.92,1009.99,71.91,444.85 +24.45,65.12,1015.92,57.19,445.01 +28.6,71.22,1003.15,58.33,443.01 +29.39,69.89,1013.92,47.36,434.27 +25.91,68.08,1010.92,74.25,432.07 +19.94,65.46,1017.7,68.94,448.67 +13.95,71.14,1019.76,75.51,461.18 +33.7,68.27,1007.16,50.41,427.4 +6.58,40.07,1014.22,55.44,493.72 +9.79,39.69,1002.36,93.86,471.61 +18.41,65.94,1010.23,84.71,452.66 +22.89,48.98,1014.55,48.21,448.56 +25.68,46.21,1011.01,57.53,442.98 +32.77,72.86,1003.6,52.87,433.84 +13.18,43.8,1023.18,61.21,467.0 +28.99,54.2,1012.79,41.9,442.6 +26.34,59.21,1013.37,58.98,439.22 +21.11,58.66,1011.7,68.71,457.89 +24.28,71.98,1006.34,90.45,432.47 +28.46,73.67,1005.67,71.21,429.15 +27.16,59.87,1011.78,58.84,446.38 +18.36,53.16,1013.31,83.18,458.47 +20.35,50.9,1012.6,72.43,453.5 +8.57,40.69,1020.87,84.15,485.18 +8.97,44.03,1013.16,80.39,474.61 +20.95,70.72,1009.96,87.73,445.66 +23.49,47.45,1008.46,66.18,446.72 +7.26,41.22,1014.86,97.82,488.75 +27.36,58.33,1013.86,56.7,439.14 +27.98,67.17,1007.32,75.29,440.68 +25.15,68.51,1013.25,72.31,440.96 +26.82,60.96,1012.25,57.41,449.81 +4.24,39.9,1009.28,96.74,491.25 +24.49,65.06,1014.07,63.32,441.4 +19.65,42.23,1013.04,75.9,461.16 +9.57,39.82,1013.12,89.15,468.02 +31.46,66.54,1002.86,53.75,427.76 +7.2,40.35,1011.83,95.59,484.9 +18.19,66.54,1012.9,86.05,449.22 +23.21,73.42,1010.34,88.29,439.66 +29.31,68.67,1006.18,63.38,435.57 +23.54,41.1,1002.05,38.05,448.56 +24.22,62.08,1022.53,60.79,449.11 +21.85,59.8,1016.89,75.28,454.26 +29.79,62.66,1008.5,48.51,440.27 +7.06,41.74,1021.95,90.38,448.97 +15.55,39.63,1004.98,89.82,466.83 +11.09,40.43,1025.47,74.97,490.96 +23.85,72.43,1008.01,88.34,439.02 +24.87,68.61,1011.19,55.69,450.54 +20.67,63.56,1013.27,79.39,450.7 +15.33,42.28,1008.19,66.15,465.2 +20.73,41.1,1001.86,47.51,456.44 +12.53,44.03,1007.21,84.2,470.04 +13.43,50.59,1020.38,86.3,469.33 +23.61,63.94,1012.9,87.06,441.57 +24.07,71.97,1008.83,94.87,441.84 +28.28,61.47,1009.44,60.89,443.12 +9.75,43.69,1016.81,82.42,481.34 +11.96,43.41,1017.42,79.44,469.34 +14.02,40.75,1016.05,70.65,470.48 +8.25,37.49,1009.02,81.09,480.38 +22.8,49.16,1006.4,77.05,439.65 +24.13,45.61,1012.63,71.36,453.19 +15.96,41.66,1011.93,55.47,466.39 +17.48,49.39,1021.51,84.53,460.01 +4.95,42.07,1004.87,80.88,485.67 +12.02,43.69,1016.12,74.06999999999998,477.74 +14.16,39.28,1015.63,77.29,471.27 +21.17,58.16,1017.16,68.11,452.02 +4.97,40.64,1020.91,94.28,485.43 +27.28,78.92,1011.05,75.48,434.78 +10.42,44.85,1014.18,88.36,479.03 +12.75,44.2,1017.59,81.22,471.03 +13.1,40.03,1017.79,84.48,470.75 +29.09,72.43,1006.86,65.47,427.3 +27.64,75.59999999999998,1017.35,54.78,441.04 +7.79,41.01,1024.0,97.2,477.0 +16.52,43.7,1015.08,58.36,466.73 +17.79,40.12,1012.74,79.03,459.13 +15.04,38.01,1022.46,78.29,468.12 +15.92,39.16,1006.59,71.32,460.45 +20.4,57.85,1011.14,92.47,450.07 +20.25,63.91,1009.27,97.97,448.37 +14.24,39.52,1018.22,77.19,468.51 +28.11,70.98,1007.76,85.6,431.83 +21.3,66.86,1013.04,55.43,450.56 +16.56,42.99,1007.48,74.45,464.62 +8.93,40.46,1019.03,71.0,472.77 +17.48,44.2,1018.89,61.51,457.15 +10.38,41.01,1020.8,94.26,465.9 +21.83,57.85,1012.49,75.16,448.21 +20.58,54.5,1015.04,89.83,467.76 +14.95,39.31,1009.15,75.3,462.72 +14.01,38.91,1015.86,69.24,470.1 +7.0,38.08,1020.27,77.67,482.38 +23.82,48.92,1010.48,44.45,446.85 +12.65,44.34,1019.4,71.45,468.8 +16.37,53.16,1014.89,74.84,459.52 +18.62,59.15,1012.85,82.54,450.81 +22.96,68.61,1011.15,76.62,447.18 +25.72,74.67,1016.64,75.93,434.83 +16.0,37.87,1020.24,78.41,461.33 +19.09,65.94,1012.53,81.06,446.34 +24.49,65.61,1014.71,63.47,447.26 +12.79,44.03,1007.46,95.93,464.35 +8.699999999999998,36.24,1013.34,89.5,478.69 +19.79,51.19,1008.77,94.72,447.96 +30.55,68.24,1009.43,63.84,426.8 +10.1,44.03,1008.11,90.29,471.59 +26.73,49.02,1007.75,67.73,438.17 +8.99,41.26,1020.52,91.96,476.09 +15.24,39.39,1013.01,74.23999999999998,469.79 +30.36,71.8,1010.9,63.27,437.4 +10.98,41.54,1019.94,69.83,479.08 +29.08,70.83,1007.98,51.95,430.91 +25.23,61.86,1013.0,76.18,441.48 +27.76,72.58,1009.04,84.96,429.25 +24.37,68.14,1005.22,59.27,440.22 +11.22,40.22,1011.01,81.67,476.7 +23.43,51.43,1011.31,73.55,444.09 +22.81,58.96,1013.5,55.66,452.89 +15.71,44.06,1018.34,71.69,465.05 +10.34,37.5,1010.35,95.56,474.08 +11.01,40.05,1015.46,89.22,474.2 +28.59,69.84,1003.79,67.31,427.53 +29.86,59.57,1011.24,64.02,439.44 +3.95,38.44,1016.75,79.65,492.46 +16.98,63.09,1020.44,95.18,450.55 +28.03,60.23,1010.23,66.04,438.88 +24.43,58.05,1011.88,71.39,445.68 +13.97,45.01,1017.44,89.15,461.96 +9.11,40.02,1031.1,83.02,479.03 +22.08,55.5,1018.42,58.46,455.79 +31.61,75.08,1004.83,42.29,436.67 +8.68,43.14,1011.94,79.06,480.73 +29.11,74.9,1003.31,74.01,432.43 +12.71,43.8,1023.15,71.16,466.2 +31.24,74.22,1007.74,48.77,430.44 +9.18,42.18,1017.4,87.3,475.57 +4.15,39.9,1007.62,95.69,489.8 +14.93,43.02,1012.11,45.56,468.19 +12.24,40.66,1017.4,96.22,464.7 +20.87,63.31,1012.27,79.51,446.7 +21.12,62.52,1015.62,78.98,450.93 +19.23,41.67,1012.53,48.86,465.66 +30.74,71.77,1006.24,53.38,434.89 +25.42,73.20999999999998,1001.91,93.78,432.04 +18.97,50.59,1016.01,74.9,459.68 +23.65,66.05,1019.6,78.20999999999998,442.9 +15.26,46.18,1013.68,98.58,463.6 +24.41,58.59,1012.62,64.52,442.64 +20.79,50.59,1017.75,73.34999999999998,456.01 +8.34,40.72,1023.62,83.75,483.14 +31.12,68.14,1003.67,67.36,427.06 +24.92,63.94,1017.7,44.92,441.07 +29.3,70.04,1010.95,61.23,426.25 +16.46,61.27,1020.02,74.54,456.64 +24.44,69.84,1005.34,80.37,430.3 +6.17,39.33,1012.57,93.32,491.54 +18.15,41.67,1012.75,52.69,464.44 +26.38,71.58,1011.02,80.9,434.26 +23.99,67.69,1007.9,78.56999999999998,437.1 +26.51,67.25,1017.85,64.17,435.52 +24.31,66.49,1011.38,54.35,440.79 +29.04,70.72,1009.55,66.58,437.95 +13.26,41.74,1021.89,63.32,473.44 +18.32,65.94,1012.74,86.77,450.5 +4.87,42.85,1012.69,94.72,482.05 +24.98,60.32,1016.39,63.12,446.46 +14.77,44.9,1020.5,84.31,465.23 +28.77,75.23,1010.01,59.0,437.93 +28.5,76.86,999.49,77.47,430.62 +11.62,41.54,1019.94,66.43,477.75 +23.21,74.22,1009.68,88.46,440.46 +30.12,73.18,1012.29,61.32,429.31 +11.63,41.5,1013.6,87.11,477.3 +19.8,58.79,1017.04,87.71,449.66 +30.22,70.32,1011.63,65.97,435.98 +17.55,43.14,1018.86,76.0,461.58 +8.27,37.7,1015.09,73.64,479.16 +31.01,69.13,1000.93,62.96,425.69 +28.64,73.4,1011.48,52.84,441.32 +10.81,45.0,1023.45,85.89,482.63 +25.62,73.17,1011.65,86.45,430.56 +30.28,58.9,1005.03,54.59,439.06 +3.63,38.44,1016.16,87.38,487.87 +9.73,41.01,1021.76,97.71,469.11 +6.72,39.85,1011.84,84.66,489.09 +20.58,49.15,1021.42,56.15,453.87 +27.99,71.58,1010.68,68.99,435.99 +18.36,53.16,1013.14,79.89,457.94 +30.08,73.42,1011.17,63.86,434.95 +25.6,63.9,1013.16,53.19,451.44 +27.41,59.21,1013.3,50.93,438.39 +7.51,43.02,1014.35,86.46,485.38 +13.42,41.74,1020.96,61.8,473.45 +28.18,60.07,1016.34,49.13,441.61 +17.3,43.72,1009.64,77.86,456.55 +24.96,70.47,1007.73,76.48,438.23 +21.04,45.09,1014.19,40.62,450.92 +22.17,65.61,1014.71,70.91,449.91 +26.98,72.58,1008.55,78.5,431.12 +30.13,78.05,1010.99,61.5,434.14 +9.68,41.48,1018.24,71.04,473.31 +21.95,68.08,1012.91,69.36,443.93 +15.09,44.34,1019.46,60.49,468.8 +23.83,58.79,1009.77,78.13,444.34 +13.86,40.66,1017.15,83.82,463.49 +22.79,69.13,1010.87,91.47,438.08 +26.71,77.95,1012.13,77.5,433.47 +28.69,67.25,1017.71,53.83,432.21 +18.27,51.43,1010.38,88.39,460.41 +24.24,68.3,1018.03,81.51,437.12 +11.8,45.09,1013.21,89.68,470.57 +17.19,58.86,1016.74,85.97,451.87 +18.55,61.87,1008.45,65.3,450.73 +15.5,44.92,1024.16,86.44,462.12 +24.22,56.89,1013.81,70.02,440.79 +11.91,43.22,1008.75,76.56999999999998,472.88 +14.48,46.18,1015.83,92.15,462.3 +14.73,58.2,1019.45,82.48,458.56 +11.91,40.69,1014.41,83.71,476.71 +22.48,50.05,1005.55,82.36,442.56 +27.72,69.88,1007.58,72.25,434.02 +15.03,44.45,1020.94,65.57,460.06 +24.18,59.92,1009.88,79.54,438.85 +21.97,58.79,1010.93,86.7,448.8 +15.51,41.76,1022.81,69.55,463.82 +25.89,58.86,1014.16,52.95,445.17 +19.13,42.18,1001.45,98.77,456.04 +26.82,69.05,1004.62,40.0,437.42 +23.04,48.06,1014.16,54.99,459.36 +6.05,42.85,1013.09,91.88,485.02 +30.94,64.44,1014.36,53.76,439.84 +25.32,48.41,1008.47,72.14,443.04 +26.92,68.27,1008.11,61.73,435.17 +23.48,51.43,1007.13,84.83,441.78 +25.66,71.77,1006.76,84.76,429.25 +17.46,53.29,1018.07,91.01,458.06 +26.18,69.84,1005.13,72.89,431.69 +10.07,39.66,1015.37,83.78,479.64 +30.99,69.82,1009.41,50.84,437.46 +31.85,73.91,1003.6,60.22,431.26 +32.2,72.29,1008.61,69.94,432.52 +22.08,41.1,1002.19,46.69,455.04 +16.32,43.56,1014.4,59.77,463.57 +24.94,59.07,1008.89,84.79,440.12 +8.3,36.3,1015.97,60.62,480.58 +18.81,45.01,1015.28,65.91,457.85 +17.61,56.53,1019.5,82.3,457.01 +27.01,43.77,1011.18,46.58,440.64 +28.69,67.25,1017.71,44.6,436.21 +13.66,40.55,1005.46,96.02,467.7 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/tabsyn/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ddf43405912b7d82044ce9b67940f0906ed43832 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/tabsyn/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/tabsyn/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6dbe886791faf2aaa213b3d22b2c6d633e1c6565 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,119 @@ +{ + "dataset_id": "n20", + "model": "tabsyn", + "target_column": "PE", + "task_type": "regression", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/synthetic/tabsyn_n20/real.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/synthetic/tabsyn_n20/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/synthetic/tabsyn_n20/real.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/synthetic/tabsyn_n20/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/synthetic/tabsyn_n20/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/synthetic/tabsyn_n20/test.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/train_20260427_025043.log b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/train_20260427_025043.log new file mode 100644 index 0000000000000000000000000000000000000000..9094e4163e580ad4b5cf7885407cb2b8c0ac584b --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tabsyn/tabsyn-n20-20260427_025043/train_20260427_025043.log @@ -0,0 +1,56 @@ +[TabSyn] Step 1/2: Training VAE in /workspace/tabsyn, dataname=tabsyn_n20 +/opt/conda/lib/python3.11/site-packages/torch/cuda/__init__.py:63: FutureWarning: The pynvml package is deprecated. Please install nvidia-ml-py instead. If you did not install pynvml directly, please report this to the maintainers of the package that installed pynvml for you. + import pynvml # type: ignore[import] +No NaNs in numerical features, skipping +self.category_embeddings.weight.shape=torch.Size([0, 4]) +[TabSyn][VAE] Resume from /workspace/tabsyn/tabsyn/vae/ckpt/tabsyn_n20/model.pt +self.category_embeddings.weight.shape=torch.Size([0, 4]) + + 0%| | 0/8 [00:00 /work/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/models_300epochs/tvae_300epochs.pt diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/public_gate/normalized_schema_snapshot.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8618a420d9d101a283cfb38feb336ac37687988f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,112 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "columns": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/public_gate/public_gate_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91364f3480d02e634daea210e8cae28ad5402b46 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n20", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "PE", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n20/n20-test.csv" + } +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/public_gate/staged_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d6a9a0cfc1f28bef022ad644431a72b59586a2d1 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/public_gate/staged_input_manifest.json @@ -0,0 +1,117 @@ +{ + "dataset_id": "n20", + "target_column": "PE", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ] +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/staged_features.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..9394440ffb1562950776e6fb8b6683125b5a8ec2 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/staged_features.json @@ -0,0 +1,27 @@ +[ + { + "feature_name": "AT", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "V", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "AP", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "RH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PE", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/test.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb807ac5b23b2e7dfb39b3a5378cd452e84d56ed --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/test.csv @@ -0,0 +1,959 @@ +AT,V,AP,RH,PE +14.72,41.23,997.91,82.69,467.11 +11.94,40.66,1016.61,96.11,467.99 +27.56,66.93,1016.81,55.59,444.1 +9.59,34.69,1027.65,75.31999999999998,478.88 +7.46,41.82,1032.67,74.59,483.11 +15.52,36.99,1006.86,89.7,467.9 +15.47,43.13,1015.11,50.5,466.63 +21.84,45.09,1013.94,46.11,450.88 +19.83,51.43,1007.36,91.64,449.45 +29.3,67.69,1007.17,55.5,430.72 +6.63,39.42,1024.81,72.58,482.02 +22.88,69.45,1014.02,65.13,441.76 +11.97,42.32,1016.95,88.32,467.98 +29.25,67.32,1013.88,38.57,437.94 +14.89,39.58,1012.26,77.58,465.95 +10.39,44.85,1014.22,78.42,478.05 +25.66,77.54,1008.22,78.42,432.82 +16.5,49.39,1018.35,93.42,462.48 +28.55,74.33,1011.77,73.34,426.48 +7.84,40.07,1016.68,47.63,488.7 +27.14,71.32,1007.8,87.99,431.96 +25.18,71.98,1006.71,89.86,432.88 +6.01,35.79,1011.26,90.72,482.79 +14.54,41.17,1015.15,67.78,470.19 +11.8,43.22,1008.57,78.01,469.55 +23.82,44.89,1009.39,74.69,445.45 +32.81,71.32,1007.69,47.29,434.38 +30.63,74.22,1007.47,46.52,430.38 +25.43,70.17,1000.46,87.84,436.43 +30.17,76.86,998.23,73.61,430.3 +26.27,58.33,1013.81,60.43,438.82 +26.02,63.07,1010.94,53.96,446.82 +14.64,39.31,1008.84,79.3,462.72 +19.99,65.94,1012.28,75.42,447.22 +32.9,68.51,1012.95,50.09,430.23 +20.3,44.9,1008.25,64.08,457.6 +22.86,47.43,1009.75,61.54,452.53 +10.82,44.63,1020.64,90.26,473.23 +13.15,42.44,1014.51,99.53,469.34 +27.4,66.48,1004.71,51.5,439.66 +4.96,40.07,1011.8,67.38,494.75 +8.67,36.66,1026.8,84.36,480.38 +25.97,43.21,1011.9,88.73,434.83 +10.23,42.32,1017.53,89.93,473.59 +27.66,59.21,1013.12,51.58,438.57 +27.21,68.12,1012.96,54.69,435.2 +19.72,65.94,1010.53,82.12,446.84 +8.87,41.82,1033.3,74.28,477.97 +15.29,25.88,1009.21,66.0,464.25 +19.48,39.72,1001.75,55.41,457.16 +10.93,39.16,1016.54,90.56,479.83 +20.84,51.19,1008.63,84.11,448.98 +9.01,40.77,1022.37,90.3,470.84 +21.08,63.13,1013.53,98.0,443.51 +14.94,40.0,1017.69,65.43,456.41 +28.37,63.31,1013.18,49.02,437.64 +23.45,45.61,1012.84,73.42,454.92 +12.76,42.32,1015.35,78.18,466.15 +13.86,44.21,1022.6,83.56,468.3 +24.51,51.95,1005.57,63.53,449.73 +5.04,40.64,1021.35,93.63,484.42 +14.24,45.01,1013.54,88.68,461.64 +11.17,39.72,1002.4,81.4,474.64 +11.94,44.2,1017.97,82.93,474.02 +9.28,41.54,1018.33,79.89,482.8 +28.91,58.33,1013.84,39.72,437.53 +16.89,49.21,1015.19,70.39,458.25 +16.34,36.99,1006.99,90.06,466.24 +16.41,47.24,1015.75,88.78,457.94 +19.44,39.53,1006.99,63.18,457.09 +9.37,40.11,1024.94,75.03,471.13 +13.64,44.88,1019.85,56.86,466.66 +16.19,36.99,1007.37,92.4,462.94 +18.75,63.09,1018.19,87.84,450.98 +15.97,45.01,1016.58,83.24,456.91 +19.5,52.72,1025.21,50.21,457.26 +10.49,42.49,1009.81,78.92,478.75 +20.78,62.52,1017.58,73.3,452.3 +7.41,40.81,1026.15,88.96,488.48 +25.38,72.23999999999998,1010.76,89.64,432.3 +4.0,39.9,1009.64,97.16,490.79 +30.61,68.84,1011.18,52.5,439.9 +28.57,75.33,1003.16,76.14,431.58 +15.37,41.96,1011.58,96.76,466.02 +31.56,66.44,1008.91,64.16,430.11 +16.69,46.18,1010.8,96.8,466.03 +22.0,51.3,1012.87,85.79,450.18 +28.31,74.34,998.42,79.23,431.95 +15.7,44.21,1021.26,86.83,462.19 +21.79,58.2,1017.21,66.74,446.94 +25.67,58.59,1013.0,62.34,451.03 +20.59,59.8,1015.27,77.94,453.83 +16.14,44.21,1020.36,80.59,461.03 +25.61,47.43,1008.62,54.51,442.96 +7.61,44.71,1019.41,70.48,485.36 +30.32,64.69,1006.35,51.36,436.72 +29.45,68.27,1007.96,61.63,432.96 +29.28,77.17,1009.4,76.3,433.14 +5.62,41.31,1001.37,89.16,485.6 +24.86,44.05,1005.69,66.65,447.2 +6.17,40.07,1013.7,58.99,495.21 +13.65,41.58,1020.56,72.17,460.8 +3.96,35.47,1016.79,83.81,489.68 +6.49,39.33,1010.85,91.85,489.22 +31.32,71.29,1008.37,50.07,430.46 +8.07,43.69,1017.05,87.34,485.18 +13.35,39.64,1010.1,93.3,471.69 +26.21,56.85,1011.45,41.37,439.55 +5.71,40.77,1022.51,89.58,485.75 +18.98,60.1,1010.09,85.34,453.37 +6.07,38.91,1019.25,83.39,483.56 +26.92,78.92,1011.65,96.22,434.64 +24.44,47.93,1003.13,67.04,440.53 +14.45,52.75,1023.97,63.59,459.85 +26.44,71.64,1004.55,85.53,435.61 +30.7,74.22,1008.12,50.39,432.51 +6.48,36.24,1013.62,92.03,484.65 +30.47,70.83,1010.91,46.94,444.39 +13.78,38.28,1014.8,81.19,467.43 +19.65,62.1,1019.46,77.81999999999998,449.13 +9.51,43.79,1016.02,79.81,481.12 +16.31,52.75,1024.4,55.69,456.58 +13.08,39.82,1012.27,85.21,476.96 +20.72,44.57,1008.96,72.56999999999998,449.76 +9.77,41.44,1017.69,78.26,481.74 +26.12,66.75,1017.86,79.02,433.67 +10.95,43.8,1022.61,63.46,473.2 +11.01,43.69,1016.7,81.48,477.3 +17.36,52.9,1015.42,69.97,458.66 +16.7,46.18,1011.4,95.51,458.05 +11.95,42.07,1018.52,84.73,467.91 +18.3,44.06,1017.95,63.24,456.32 +14.69,35.71,1015.78,57.34,467.39 +30.82,76.2,1007.47,59.3,432.22 +22.36,58.79,1016.69,73.59999999999998,445.76 +23.89,64.27,1013.37,75.22,450.82 +5.75,42.07,1004.24,78.23,485.23 +26.64,69.13,1010.6,79.23,430.41 +23.08,48.41,1008.44,82.35,443.5 +29.76,57.19,1008.59,51.1,436.21 +32.8,68.67,1005.27,44.53,432.28 +24.63,65.38,1010.43,40.68,446.23 +11.02,43.02,1012.32,66.54,478.81 +32.13,69.98,1013.3,55.85,431.84 +23.81,60.08,1017.29,62.66,450.33 +8.09,38.5,1012.99,67.31,484.81 +32.63,69.89,1013.85,41.66,425.72 +13.27,52.75,1025.86,65.12,464.82 +29.3,68.08,1011.23,56.23,434.11 +26.3,77.95,1009.45,78.72,437.95 +28.52,70.02,1010.34,54.21,441.98 +17.86,50.88,1015.59,88.28,457.33 +7.92,41.66,1014.84,76.12,483.38 +3.74,35.19,1018.58,98.84,490.5 +21.33,63.86,1020.33,72.13,445.02 +30.36,74.87,1008.96,61.87,435.31 +14.23,46.18,1017.39,87.29,463.86 +9.55,41.44,1015.07,85.94,481.75 +9.78,41.93,1023.18,75.05,484.03 +30.8,73.17,1010.51,51.93,432.24 +15.48,47.83,1004.88,81.68,463.67 +16.58,46.18,1010.4,96.29,463.51 +20.32,39.72,1001.38,57.21,456.18 +11.83,43.14,1010.06,88.14,471.98 +26.75,56.57,1013.76,57.93,443.92 +14.13,48.92,1011.72,78.06,464.17 +19.91,51.19,1008.0,90.23,449.23 +14.37,40.56,1021.67,68.18,470.19 +17.27,44.9,1007.85,78.8,454.19 +9.59,38.56,1017.52,61.89,481.05 +28.04,70.32,1011.28,78.16,435.42 +18.18,44.63,1020.41,48.64,455.57 +32.27,71.85,1008.06,59.28,429.72 +19.02,44.85,1014.57,43.37,465.42 +13.47,43.34,1012.75,87.04,468.8 +12.25,40.75,1016.02,82.4,475.07 +27.45,64.34,1007.12,65.87,440.0 +29.96,67.83,1008.0,44.05,433.13 +12.55,38.91,1012.58,75.44,474.35 +31.92,75.33,1002.13,65.73,431.32 +21.55,60.27,1017.42,92.59,443.93 +20.14,46.33,1013.24,83.39,453.35 +18.33,44.34,1019.55,51.69,468.8 +8.65,40.56,1023.23,78.84999999999998,485.87 +26.99,62.26,1011.13,71.27,436.89 +14.4,41.26,1021.41,73.11,462.78 +18.35,62.1,1019.97,78.36,455.29 +16.76,43.77,1012.25,77.95,457.0 +11.82,42.86,1014.12,88.28,476.7 +20.78,68.28,1008.75,60.87,450.57 +29.35,54.2,1013.07,42.45,439.47 +22.63,45.61,1014.14,73.06,457.88 +22.83,65.18,1012.24,79.73999999999998,442.43 +6.74,36.08,1020.36,86.98,484.18 +31.54,71.06,1008.4,71.77,431.87 +23.24,45.01,1012.21,45.23,457.01 +32.74,68.31,1010.23,41.29,441.66 +14.18,39.3,1020.1,67.48,464.32 +25.86,59.92,1009.92,73.95,436.06 +14.05,40.69,1015.66,74.39,470.9 +23.78,69.71,1008.79,83.17,443.06 +14.14,39.59,1010.84,96.02,465.23 +11.77,40.71,1024.55,72.48999999999998,477.94 +23.77,64.15,1021.02,55.87,448.43 +9.61,44.03,1008.3,91.36,473.54 +22.42,62.52,1016.83,63.27,451.64 +24.85,68.37,1006.5,68.37,442.66 +17.69,44.34,1019.31,61.12,464.13 +3.21,38.44,1017.11,84.86,492.93 +18.45,42.44,1013.45,63.52,459.79 +11.48,44.6,1018.29,90.76,470.39 +17.37,48.92,1011.91,58.4,455.53 +6.22,39.33,1012.31,93.23,491.77 +12.74,49.83,1007.44,91.47,466.09 +22.56,70.79,1005.85,93.09,435.14 +24.35,58.49,1011.03,70.64,445.6 +16.58,44.68,1021.5,83.38,458.87 +25.47,70.36,1005.79,77.73,437.02 +30.88,69.51,1011.48,46.58,433.14 +6.64,39.04,1018.84,74.94,481.53 +12.65,41.93,1023.07,65.05,479.53 +8.91,40.11,1022.87,78.39,475.43 +5.57,42.85,1013.55,92.14,488.85 +16.09,44.2,1019.39,67.24,460.56 +20.98,60.07,1016.26,67.18,446.26 +14.93,39.16,1007.25,72.34999999999998,463.2 +24.19,58.95,1017.78,58.78,441.91 +23.86,52.84,1006.56,48.94,444.66 +15.59,52.05,1013.67,78.55,456.07 +26.04,74.67,1016.68,81.2,433.55 +22.35,54.42,1012.46,75.01,454.72 +10.57,36.71,1022.11,82.39,472.62 +6.16,38.5,1012.83,93.68,490.92 +24.12,62.44,1013.83,88.02,443.3 +28.24,71.58,1010.1,67.92,434.01 +21.11,69.94,1004.37,84.26,439.91 +11.49,44.63,1020.44,86.04,471.08 +24.92,60.95,1014.88,60.58,445.44 +23.56,67.79,1010.14,89.72,441.29 +7.54,40.72,1023.82,85.15,485.92 +26.85,75.59999999999998,1017.43,74.55,433.48 +12.14,44.85,1014.36,60.04,476.68 +17.03,43.99,1021.5,82.32,460.25 +31.41,64.44,1013.84,49.49,439.3 +14.73,40.35,1011.15,65.2,470.03 +24.04,59.43,1007.6,76.98,437.51 +21.03,44.78,1007.99,36.82,459.72 +22.61,42.8,1014.24,69.71,460.26 +17.36,44.63,1020.49,54.21,456.98 +26.82,64.96,999.72,63.55,427.51 +18.19,44.06,1017.24,78.73,456.13 +24.38,47.01,1015.17,68.96,454.85 +12.98,39.64,1013.95,74.39,473.54 +14.17,43.13,1014.94,48.62,471.08 +18.71,54.9,1017.12,74.79,456.88 +12.8,44.34,1016.52,86.73,473.42 +16.71,46.18,1012.06,96.6,458.4 +22.99,60.77,1017.97,78.47,447.62 +28.34,63.77,1013.7,61.13,439.75 +34.53,73.03,1013.53,36.74,437.03 +10.16,40.8,1028.13,86.39,477.49 +27.28,44.89,1009.02,49.9,441.94 +22.75,58.86,1016.0,67.34,448.32 +25.01,59.54,1007.91,80.93,441.3 +23.64,63.31,1014.5,61.83,440.7 +8.85,41.06,1020.99,86.05,486.4 +19.65,63.91,1009.26,99.08,444.9 +18.22,44.34,1019.35,56.78,469.27 +9.68,40.77,1022.04,85.23,473.73 +17.49,40.55,1001.73,73.15,462.37 +21.79,61.45,1011.11,91.78,446.99 +21.06,62.91,1011.92,75.52,455.22 +23.72,58.62,1016.32,71.17,447.13 +30.93,73.42,1010.98,56.42,432.44 +5.98,38.91,1016.5,91.83,488.85 +13.45,41.16,1022.04,82.96,460.57 +12.23,43.69,1016.46,84.4,471.62 +8.13,39.96,1026.07,95.84,477.12 +29.0,77.54,1011.33,75.13,431.37 +11.61,52.75,1020.94,77.56,464.68 +19.4,49.69,1012.89,75.53,455.6 +5.0,40.64,1021.05,94.84,485.27 +23.46,57.85,1012.7,65.54,444.66 +18.51,48.06,1015.14,79.83,455.44 +29.29,70.36,1006.64,60.82,431.26 +27.55,64.96,999.73,57.34,431.33 +21.82,63.9,1014.48,92.53,447.29 +17.03,47.83,1004.94,79.68,460.43 +17.18,46.0,1002.74,100.1,454.02 +18.14,49.78,1002.95,100.09,451.44 +12.39,49.83,1007.6,92.43,468.43 +20.39,64.15,1021.31,62.35,457.37 +22.72,64.15,1021.14,60.34,453.13 +20.3,58.41,1014.05,86.38,451.74 +21.46,58.18,1007.45,95.33,444.12 +28.99,68.24,1008.75,66.57,428.28 +12.07,40.81,1025.63,68.02,475.96 +15.4,40.69,1015.1,70.25,471.66 +9.59,37.14,1013.8,72.84999999999998,474.74 +7.64,40.02,1031.58,71.19,479.43 +15.42,37.85,1009.89,85.8,467.33 +11.75,42.32,1015.28,77.25,470.44 +19.51,48.78,1021.03,86.33,453.27 +31.86,73.88,1005.6,57.68,435.91 +12.4,40.35,1011.46,79.48999999999998,476.44 +28.11,69.84,1004.68,67.08,427.33 +8.74,40.03,1016.81,93.37,481.07 +24.32,58.79,1016.8,65.61,442.78 +13.72,44.47,1027.2,68.89,470.66 +6.11,38.68,1017.53,79.23,482.97 +16.74,39.16,1005.68,71.17,460.47 +8.52,41.55,1002.09,86.81,483.63 +20.55,68.63,1012.5,67.07,453.47 +22.63,58.49,1010.94,72.7,448.38 +18.13,60.1,1009.67,84.75,455.82 +12.51,43.67,1013.24,91.55,471.96 +21.02,61.5,1008.52,77.73999999999998,448.08 +6.99,40.07,1014.83,54.36,490.11 +16.37,36.99,1006.37,90.11,463.76 +15.68,39.16,1006.09,75.62,461.98 +22.17,60.27,1018.21,89.55,443.31 +26.7,49.02,1007.68,67.97,438.92 +19.55,39.39,1013.55,57.82,464.36 +27.74,74.78,1010.05,60.82,436.87 +18.09,43.72,1008.64,74.15,453.02 +11.49,35.76,1019.08,60.04,472.45 +23.67,63.86,1019.67,57.95,441.73 +32.02,67.83,1007.77,53.31,426.55 +20.38,62.52,1017.85,75.56,456.56 +5.02,45.87,1007.8,99.22,481.03 +26.24,51.43,1011.32,59.52,447.91 +14.47,41.76,1021.98,78.41,464.0 +24.16,60.29,1018.09,63.49,446.17 +10.07,40.92,1021.84,84.18,471.71 +10.73,44.92,1025.1,85.4,476.81 +16.81,42.86,1013.83,77.11,464.36 +27.52,74.67,1015.77,72.01,433.56 +13.96,40.83,1009.89,84.86,469.86 +22.78,49.16,1002.29,64.28,444.99 +22.77,70.32,1012.04,82.43,440.67 +8.64,41.66,1014.14,80.44,481.89 +27.33,66.17,1011.06,64.55,443.89 +19.07,49.69,1007.22,76.79,453.09 +24.1,68.61,1010.97,74.87,443.75 +14.6,42.32,1015.71,77.03,464.67 +14.77,44.47,1028.38,71.18,464.25 +9.14,38.91,1018.62,89.88,476.57 +14.85,45.87,1009.37,84.65,462.67 +8.47,41.03,1021.72,70.16,485.1 +23.79,59.44,1012.53,79.48,448.67 +26.63,64.44,1012.66,61.19,442.0 +12.88,44.34,1016.03,88.51,474.94 +12.73,44.34,1015.11,93.55,472.94 +17.2,40.55,1000.68,72.67,462.55 +10.05,41.17,1018.98,83.71,481.38 +28.37,75.59999999999998,1017.48,55.19,439.25 +25.61,60.32,1015.77,56.48,443.96 +20.34,46.63,1013.16,79.08,453.62 +20.21,58.12,1015.36,79.18,453.19 +21.19,58.86,1014.19,68.96,452.43 +29.71,73.18,1012.35,63.06,427.04 +15.24,37.87,1020.52,84.49,463.09 +17.35,42.86,1014.62,74.16,465.16 +13.5,45.51,1015.33,86.95,469.08 +25.94,77.23999999999998,1007.97,84.82,432.88 +5.51,35.57,1026.3,78.97,489.36 +26.16,52.36,1013.62,58.52,453.08 +15.17,49.15,1021.91,91.73,461.89 +14.57,42.18,1015.13,74.89,465.75 +12.16,45.0,1021.51,50.52,482.99 +25.1,60.37,1005.83,72.53,438.44 +13.57,39.39,1014.01,82.12,471.44 +20.25,55.5,1020.03,69.33,455.13 +11.23,39.72,1018.46,60.62,475.04 +12.52,42.34,1018.67,95.29,464.71 +8.68,39.61,1021.54,77.98,486.31 +8.18,40.02,1031.45,73.66,478.81 +21.93,60.84,1017.8,82.61,443.89 +30.69,71.98,1004.53,65.86,430.33 +12.08,41.39,1019.45,78.3,477.8 +9.08,42.49,1010.67,85.35,481.46 +20.33,57.76,1016.47,75.34999999999998,450.25 +31.03,69.98,1011.33,52.16,436.13 +6.03,41.14,1028.04,87.46,479.61 +14.02,42.86,1030.86,68.36,467.29 +20.51,45.38,1014.29,69.14,461.87 +28.17,63.13,1012.44,66.61,439.94 +18.83,63.91,1010.8,96.18,448.15 +25.52,63.94,1017.81,41.54,440.32 +22.61,49.3,1003.51,83.02,441.76 +28.61,68.12,1011.71,47.57,432.94 +18.43,56.03,1020.41,60.55,465.17 +13.41,54.3,1016.48,79.28,467.88 +11.11,40.55,1023.91,87.12,476.37 +33.97,72.29,1008.98,44.32,432.33 +18.41,62.1,1020.4,78.09999999999998,457.14 +22.4,58.12,1015.24,78.03,449.13 +25.1,61.47,1007.84,75.75,447.27 +28.73,68.3,1016.53,55.73,434.15 +11.47,43.67,1012.68,72.51,475.72 +11.19,40.64,1020.57,84.49,472.86 +10.38,43.02,1013.37,78.53,474.44 +30.09,69.48,1009.51,53.24,435.2 +26.72,65.61,1014.41,52.01,442.48 +19.14,56.65,1020.84,82.97,458.06 +21.25,44.05,1005.69,81.87,448.43 +15.55,45.09,1014.33,62.19,457.36 +12.28,42.34,1019.19,95.8,467.03 +31.93,72.58,1006.9,56.27,425.14 +24.9,71.77,1006.24,85.25,427.77 +23.71,67.17,1007.27,90.2,440.65 +31.05,62.7,1009.35,55.27,441.67 +10.08,40.72,1022.7,67.3,480.8 +22.31,61.45,1009.25,98.56,437.05 +24.01,42.48,1011.39,55.1,453.12 +21.75,49.82,1015.01,78.33,455.28 +29.3,73.67,1005.64,65.31,431.07 +12.27,41.17,1019.39,52.18,473.84 +16.51,41.79,1007.1,74.03,457.74 +26.26,63.73,1010.45,70.61,442.18 +31.33,73.03,1014.18,49.28,438.49 +21.81,65.06,1014.6,66.41,447.13 +14.93,39.39,1014.31,80.68,468.88 +33.87,71.32,1007.91,39.48,435.89 +28.09,63.31,1013.01,52.6,438.6 +18.06,56.65,1020.2,81.59,459.14 +20.36,56.53,1020.25,72.95999999999998,455.34 +29.58,76.2,1008.37,60.73,433.91 +9.62,41.01,1019.43,97.99,467.34 +25.08,58.49,1011.1,64.47,446.9 +24.33,60.32,1015.49,59.95,445.36 +30.93,70.83,1010.61,46.13,440.59 +22.04,58.05,1013.11,85.22,447.28 +5.74,45.87,1011.44,95.94,482.0 +24.17,71.25,1003.9,90.36,435.66 +5.95,39.48,1005.16,63.6,486.07 +27.51,63.73,1009.97,66.14,440.81 +28.62,70.32,1008.87,46.67,431.03 +20.48,60.29,1017.16,72.09999999999998,455.51 +27.03,71.14,1010.33,66.25,430.41 +28.31,70.32,1007.88,47.0,432.5 +16.6,41.93,1022.01,48.98,467.51 +14.67,71.14,1019.84,77.72,458.8 +5.68,40.35,1012.11,92.86,486.79 +29.66,59.22,1013.25,61.2,441.58 +6.99,39.37,1020.19,75.06,487.18 +25.61,74.22,1010.26,75.15,438.45 +11.31,39.61,1018.74,68.9,471.92 +29.04,76.09,1007.52,75.44,430.32 +16.5,53.29,1017.7,95.66,458.37 +22.26,60.77,1018.26,85.94,442.58 +25.95,59.92,1010.05,76.05,443.93 +28.09,70.02,1010.84,51.29,437.83 +8.36,40.67,1014.99,73.65,489.1 +24.88,49.16,1006.04,64.54,445.18 +14.34,42.86,1031.75,66.81,466.17 +18.16,39.99,1008.13,68.5,461.16 +20.57,44.9,1008.39,62.69,456.18 +16.85,39.64,1008.82,80.81,464.2 +24.56,63.21,1013.79,82.38,444.34 +9.54,41.17,1019.79,65.61,481.18 +21.43,60.95,1015.27,75.48999999999998,449.12 +24.15,71.73,1009.76,85.16,436.55 +21.87,74.87,1009.28,85.4,442.37 +15.3,41.76,1022.57,71.56,466.59 +19.45,41.1,1001.88,52.16,458.26 +27.99,71.64,1007.79,72.67,437.81 +21.03,69.05,1002.17,75.34999999999998,444.35 +31.84,77.95,1014.9,55.35,433.28 +29.83,71.43,1011.93,55.8,439.34 +10.08,37.92,1010.47,66.37,474.63 +18.36,51.43,1010.57,90.17,459.8 +16.4,38.01,1022.2,73.05,463.79 +13.03,42.86,1014.39,86.25,475.03 +18.88,62.96,1020.62,82.01,456.18 +11.87,41.78,1012.97,64.79,470.84 +23.16,57.76,1017.74,63.79,451.79 +15.39,42.28,1007.35,81.34999999999998,467.3 +16.84,56.03,1020.25,70.37,437.14 +14.65,44.84,1023.39,87.76,467.18 +18.97,44.85,1014.86,46.31,466.17 +26.22,69.89,1015.46,76.63,433.61 +7.07,37.49,1010.35,87.19,481.58 +17.4,44.9,1020.5,77.11,457.75 +30.05,73.68,1014.95,70.6,434.92 +14.01,45.08,1023.28,82.49,464.79 +23.24,63.78,1017.1,63.8,446.95 +23.03,65.12,1016.29,69.8,447.84 +8.58,40.72,1022.04,87.55,480.96 +24.92,48.92,1010.11,36.53,445.56 +25.8,65.38,1009.3,52.28,450.5 +26.31,48.6,1002.64,60.04,440.06 +29.13,62.26,1010.51,52.94,436.37 +11.02,41.17,1018.18,86.86,477.62 +13.61,39.85,1012.78,58.12,475.62 +23.32,69.13,1010.75,91.84,435.27 +30.45,43.21,1011.35,63.59,438.68 +31.7,70.36,1006.26,58.18,438.38 +23.62,73.67,1007.0,90.8,438.33 +12.45,43.67,1013.61,91.34,474.27 +28.85,68.12,1012.05,46.31,436.15 +18.4,43.69,1016.59,52.44,462.05 +28.97,78.92,1011.71,88.5,430.98 +4.93,35.19,1018.04,92.94,486.39 +13.75,44.47,1029.63,70.74,467.14 +16.64,44.9,1021.02,70.34,460.93 +19.04,68.28,1004.52,86.16,444.54 +15.89,43.96,1014.02,75.23999999999998,467.35 +29.03,67.79,1010.67,55.42,444.09 +14.97,58.2,1019.52,81.13,458.68 +16.23,43.52,1020.13,76.3,464.74 +14.74,44.47,1028.29,67.87,462.92 +9.75,52.72,1026.03,78.53,473.41 +27.18,59.27,1012.57,64.18,439.69 +16.22,50.88,1014.33,100.09,454.94 +6.62,42.49,1008.74,94.57,482.74 +9.33,44.03,1011.73,86.04,474.15 +23.14,62.26,1011.87,66.44,444.38 +14.52,40.35,1011.11,69.84,470.8 +33.71,69.98,1013.09,42.62,431.99 +14.84,42.03,1017.47,79.27,466.2 +13.48,41.92,1030.2,65.96,463.9 +31.4,71.06,1008.44,74.77,433.34 +27.44,66.56,1005.51,69.28,428.0 +22.68,70.47,1010.86,82.8,441.47 +9.03,40.71,1025.98,81.94,484.97 +14.36,41.26,1021.16,73.43,462.25 +10.06,43.22,1014.1,85.7,473.0 +22.76,49.02,1007.5,88.56,442.84 +24.79,75.59999999999998,1017.07,68.23,440.05 +34.97,73.56,1006.57,44.69,435.15 +27.64,75.59999999999998,1017.35,54.78,441.04 +18.37,51.86,1018.8,74.3,461.14 +7.91,39.96,1023.57,88.44,475.52 +21.8,65.94,1012.02,63.52,448.66 +29.42,71.32,1002.26,67.13,437.47 +19.01,58.46,1017.14,90.99,446.18 +24.01,67.17,1007.44,86.87,443.09 +11.69,39.22,1017.05,55.51,472.76 +22.01,58.46,1016.26,75.98999999999998,443.75 +13.74,42.74,1029.54,70.0,465.92 +12.27,43.8,1023.21,57.0,468.55 +12.88,43.8,1023.19,59.18,468.19 +32.06,71.85,1007.9,56.44,426.07 +23.46,59.27,1010.6,79.79,445.57 +24.41,52.3,1006.28,70.33,442.62 +13.22,44.92,1023.84,87.99,471.43 +13.69,40.83,1008.53,84.81,471.26 +10.31,45.01,1018.42,93.67,473.74 +21.41,54.2,1011.37,82.28,448.11 +24.49,65.46,1015.77,44.95,445.27 +25.72,49.82,1016.19,60.1,452.33 +18.73,46.48,1007.19,79.23,450.74 +22.88,59.21,1011.51,86.93,440.25 +26.59,60.96,1011.9,52.41,439.77 +30.38,71.58,1010.17,50.45,433.75 +18.94,47.83,1005.18,78.59,455.19 +25.17,64.79,1017.87,63.26,442.15 +20.55,48.98,1016.1,63.89,452.52 +10.03,42.18,1017.3,85.99,475.74 +25.03,60.27,1017.9,72.04,438.24 +7.82,41.16,1023.3,87.7,475.66 +33.43,69.88,1006.86,44.84,435.59 +11.33,41.5,1013.58,88.7,475.01 +12.34,40.62,1016.28,53.6,466.47 +4.78,42.85,1013.07,94.72,479.09 +14.03,49.15,1020.5,83.65,467.16 +26.11,47.43,1009.01,56.09,445.36 +24.67,70.94,1007.99,75.64,443.51 +14.28,44.84,1024.84,79.09,474.57 +26.74,59.87,1012.5,62.88,447.88 +29.83,62.66,1007.98,47.07,438.71 +17.51,44.9,1009.05,74.91,455.01 +30.05,69.34,1008.26,61.5,436.82 +15.85,49.69,1015.48,88.65,464.72 +32.5,71.37,1003.75,43.8,433.7 +30.56,69.04,1009.29,55.73,442.24 +23.32,69.23,1011.75,75.59,436.18 +18.0,52.08,1003.07,100.09,450.85 +25.45,70.04,1011.2,82.48,430.2 +17.37,40.55,1001.19,71.42,460.97 +16.43,41.79,1005.47,76.89,455.85 +19.15,44.89,1009.6,74.52,451.09 +16.0,39.16,1016.37,77.63,468.49 +10.87,44.71,1021.38,58.22,484.63 +21.98,55.97,1009.12,89.51,442.65 +21.92,61.87,1009.68,58.83,445.52 +14.62,42.86,1015.56,84.5,470.79 +20.9,67.07,1005.43,82.85,443.46 +23.45,69.04,1010.5,80.77,442.48 +7.31,43.02,1014.19,86.43,484.82 +22.21,61.87,1010.9,54.22,446.62 +20.83,49.02,1009.45,91.92,445.31 +14.71,44.0,1024.98,85.08,462.87 +19.92,63.31,1015.02,82.71,443.54 +31.85,73.20999999999998,1000.98,72.2,435.94 +24.1,71.97,1009.92,91.27,443.09 +12.42,38.25,1012.76,82.23,472.3 +28.79,70.79,1003.83,65.9,425.64 +17.05,44.88,1017.69,88.19,459.63 +31.59,62.7,1009.3,50.16,442.58 +14.93,41.79,1008.88,81.48,456.75 +24.44,69.13,1011.1,87.62,434.34 +26.05,65.59,1012.78,67.03,437.04 +26.48,51.43,1006.76,74.3,438.1 +17.19,37.2,1011.84,67.59,468.4 +6.25,39.04,1019.65,71.27,484.14 +31.12,67.69,1005.3,50.46,425.21 +11.16,40.05,1014.95,88.38,479.11 +31.16,69.88,1007.01,68.28,433.24 +19.27,43.14,1013.17,39.85,463.14 +17.79,43.52,1020.65,68.29,458.57 +22.76,58.96,1013.85,55.95,454.05 +5.66,39.42,1024.7,78.52,482.11 +21.75,67.45,1014.89,67.09,445.1 +24.66,58.86,1013.86,56.39,444.42 +18.16,39.99,1007.73,70.54,463.69 +25.26,61.08,1013.68,71.72,447.46 +23.6,48.98,1015.41,48.28,448.43 +22.89,65.34,1015.53,61.0,450.53 +28.82,71.43,1011.51,58.58,443.68 +21.57,69.23,1011.94,81.73,437.55 +11.03,42.32,1017.26,90.56,470.92 +15.75,39.16,1016.31,77.98999999999998,468.87 +13.67,44.92,1023.6,85.35,467.71 +11.58,39.69,1005.17,86.55,469.6 +32.31,62.04,1010.41,39.39,450.13 +23.67,72.23999999999998,1011.22,90.45,435.94 +11.29,35.76,1019.32,58.91,473.74 +13.58,49.83,1008.9,86.8,465.82 +10.54,41.93,1016.64,93.52,479.65 +24.96,74.98999999999998,1008.25,80.52,440.91 +24.53,74.78,1009.9,78.34,446.3 +12.12,41.17,1017.68,78.72,470.67 +22.99,56.57,1013.93,78.77,445.44 +31.15,67.45,1014.85,42.11,431.97 +20.2,64.45,1009.03,61.77,452.33 +10.9,41.46,1016.66,86.2,479.45 +27.04,48.41,1008.57,60.73,441.21 +29.72,74.78,1009.32,55.25,438.19 +29.86,69.34,1007.76,54.12,433.57 +28.18,73.88,1005.89,75.41,434.48 +27.0,69.4,1004.86,82.2,433.83 +33.63,70.4,1004.02,53.6,430.05 +10.44,37.83,1006.31,97.2,474.42 +13.39,49.83,1007.14,90.88,466.04 +9.0,43.13,1020.25,81.31999999999998,481.09 +18.94,48.7,1008.5,94.83,451.38 +26.14,71.98,1005.98,82.45,428.91 +5.11,42.07,1004.28,81.8,486.41 +26.62,65.12,1016.0,43.24,441.22 +25.69,62.26,1011.38,74.08,436.36 +8.13,39.99,1011.71,87.89,486.19 +9.97,41.62,1013.99,96.02,464.86 +6.58,43.02,1014.03,84.95,488.22 +13.9,42.86,1030.82,71.89,473.76 +12.33,39.28,1011.84,80.01,476.49 +7.26,36.08,1021.47,83.15,483.58 +12.29,40.03,1017.62,89.64,472.65 +33.82,77.17,1008.96,58.91,435.58 +9.27,40.22,1008.1,89.24,481.23 +23.44,62.52,1016.46,67.21,447.19 +31.63,69.59,1008.66,61.81,436.89 +27.28,51.43,1011.46,51.38,450.53 +21.45,45.09,1013.83,52.26,453.15 +25.14,69.13,1011.15,85.67,433.95 +20.12,45.09,1013.73,57.78,448.35 +16.36,53.82,1015.05,71.95,461.62 +19.77,65.06,1016.22,74.95,448.26 +31.92,75.33,1001.81,61.97,436.38 +26.52,43.77,1011.49,46.98,440.31 +11.52,40.03,1017.56,87.87,472.31 +29.91,74.33,1013.22,39.76,430.26 +15.01,39.52,1017.53,72.0,468.02 +28.39,65.51,1014.52,66.48,438.78 +25.3,71.29,1007.86,62.98,437.17 +16.63,53.82,1015.18,66.09,458.29 +10.41,44.68,1023.53,91.38,474.7 +26.86,68.08,1012.99,50.04,436.25 +10.48,36.71,1023.18,81.37,473.3 +10.58,42.34,1022.32,94.01,474.91 +6.94,38.91,1018.94,90.64,485.12 +20.64,49.21,1014.86,58.47,454.2 +25.69,73.18,1012.64,86.35,432.82 +22.48,71.29,1008.15,75.41,444.71 +6.63,39.37,1020.33,76.18,489.16 +33.4,69.98,1013.29,47.78,432.44 +15.11,42.99,1007.53,85.75,466.25 +8.99,36.66,1028.11,71.98,481.03 +9.6,41.82,1032.93,72.63,475.01 +9.42,41.4,1029.21,86.4,474.75 +23.62,68.63,1013.18,50.57,447.3 +28.19,71.97,1008.85,84.67,438.8 +26.39,49.16,1005.68,56.18,442.87 +24.93,47.01,1014.28,66.04,455.06 +21.28,70.72,1010.29,86.22,445.54 +8.73,41.92,1029.41,89.72,480.99 +6.99,35.19,1019.32,68.95,480.05 +30.7,71.58,1010.0,48.96,429.27 +15.82,44.2,1018.96,66.73,460.2 +23.19,49.82,1014.59,70.52,451.08 +10.27,42.34,1022.69,92.78,474.55 +14.04,39.64,1011.09,87.22,472.31 +20.42,62.96,1020.34,84.0,452.08 +17.31,58.49,1011.8,92.77,456.84 +13.51,43.41,1015.94,75.22,463.86 +7.39,39.81,1019.45,85.02,482.99 +26.71,76.86,1002.86,74.5,437.31 +31.74,79.73999999999998,1007.07,61.47,431.72 +21.46,50.59,1016.75,67.14,453.67 +12.75,44.03,1007.29,89.46,465.86 +14.43,44.84,1024.34,84.0,467.45 +23.93,68.28,1005.16,69.91,444.95 +10.62,42.02,999.83,96.66,472.41 +14.74,43.71,1024.35,81.53,465.49 +7.87,41.17,1020.33,77.77,486.2 +22.16,65.48,1017.22,70.51,446.0 +7.94,43.65,1018.75,59.45,479.8 +26.56,65.59,1012.6,64.25,443.66 +31.03,69.59,1007.77,63.96,432.56 +29.09,70.98,1007.86,80.34999999999998,439.34 +7.31,42.18,1014.75,86.75,477.38 +10.03,41.62,1014.55,95.61,462.73 +10.28,39.64,1010.45,74.15,477.65 +29.86,64.79,1017.37,44.8,439.89 +29.24,60.23,1009.62,59.71,438.24 +17.34,47.03,1013.36,98.13,463.89 +13.56,42.34,1017.95,93.83,462.6 +10.62,39.96,1025.37,96.64,470.8 +27.37,69.23,1013.25,48.02,433.18 +13.61,42.34,1017.57,91.35,465.65 +12.81,44.58,1016.49,80.76,475.5 +21.83,62.91,1011.07,91.34,443.76 +22.97,62.4,1010.25,75.18,445.3 +24.33,46.93,1013.72,48.27,447.43 +23.49,64.63,1020.75,65.16,450.28 +17.13,42.86,1014.15,73.59999999999998,463.09 +14.86,44.71,1018.3,49.46,466.38 +24.15,64.63,1020.72,58.06,448.87 +7.71,36.25,1027.92,89.84,481.74 +24.82,71.94,1010.5,64.67,438.69 +11.65,41.54,1020.09,67.96,476.4 +10.25,41.46,1020.65,87.07,481.94 +5.78,40.62,1016.55,84.98,484.13 +9.35,44.03,1011.02,88.11,476.25 +10.76,40.43,1025.98,79.65,490.78 +25.76,57.32,1011.93,43.61,440.26 +14.57,37.86,1022.44,68.82,463.58 +13.6,39.82,1013.34,86.1,470.69 +29.36,78.05,1011.12,64.17,434.29 +23.12,69.71,1008.98,84.41,442.21 +23.39,63.94,1010.54,89.94,441.44 +25.45,67.83,1009.47,57.97,429.95 +27.65,48.41,1008.54,58.25,440.94 +30.24,73.9,1006.74,56.39,441.31 +13.78,40.0,1018.38,68.67,458.74 +24.66,69.94,1006.56,60.91,432.68 +17.1,48.98,1016.48,85.63,454.43 +27.37,65.06,1013.09,50.92,440.5 +20.11,51.19,1007.82,92.06,449.03 +12.24,41.62,1013.38,90.26,461.23 +28.5,79.73999999999998,1006.75,87.09,433.08 +14.64,42.77,1017.59,79.59999999999998,464.27 +18.06,65.48,1018.79,77.95,454.34 +14.79,38.73,999.83,86.45,470.28 +35.2,73.56,1006.56,45.72,434.37 +22.93,51.19,1009.3,82.8,443.57 +25.73,66.54,1010.07,55.97,437.07 +18.77,50.66,1014.89,87.34,457.07 +11.52,40.8,1024.31,73.48999999999998,479.56 +8.84,42.49,1010.28,89.09,481.58 +21.24,60.84,1017.99,82.22,445.71 +15.67,45.17,1018.73,94.74,462.09 +22.99,46.21,1010.71,60.11,444.36 +23.93,64.05,1013.09,86.02,440.66 +34.33,69.05,1000.89,37.9,430.56 +29.85,68.24,1007.01,30.99,433.43 +30.1,67.45,1014.23,39.04,434.01 +6.85,37.49,1011.01,84.53,483.12 +26.53,54.2,1012.9,66.73,439.96 +24.2,59.07,1009.25,88.25,441.93 +24.6,75.23,1012.04,76.77,434.07 +30.1,66.25,1009.38,65.41,434.99 +21.6,59.8,1016.9,76.59,450.14 +24.9,58.49,1011.06,65.14,444.19 +26.9,60.93,1007.1,67.32,435.87 +23.07,57.17,1009.84,76.8,444.08 +24.85,70.47,1006.64,85.37,434.47 +30.3,73.9,1006.72,55.13,440.79 +32.18,69.75,1009.94,52.91,438.26 +29.11,74.78,1009.6,56.93,438.75 +21.37,65.94,1010.73,75.09,444.74 +26.53,69.71,1009.88,76.26,446.17 +8.9,40.77,1011.67,90.26,479.18 +22.45,63.77,1014.57,87.44,444.26 +28.9,71.25,1000.73,77.23999999999998,431.52 +18.55,46.48,1007.34,80.67,452.37 +20.92,63.86,1020.49,72.98,449.09 +14.38,45.09,1012.95,86.1,464.27 +8.9,41.4,1030.83,85.63,472.95 +11.1,44.85,1014.27,65.08,477.03 +20.85,59.21,1012.9,75.97,444.44 +26.27,71.98,1005.72,86.15,427.65 +15.61,40.89,1010.48,80.26,467.3 +3.26,41.31,996.32,100.0,489.38 +27.05,77.95,1009.57,76.56,434.09 +19.54,50.66,1014.7,84.53,456.61 +6.42,35.57,1025.58,79.63,485.86 +26.19,65.61,1014.51,54.52,443.73 +9.84,40.22,1009.5,85.38,479.65 +10.86,44.85,1014.15,88.36,476.87 +33.33,73.03,1014.2,42.28,436.05 +9.25,41.82,1033.25,74.73,478.48 +14.7,44.9,1021.87,83.9,468.69 +30.17,75.08,1005.17,55.89,438.89 +11.74,43.56,1015.14,70.72,477.5 +23.27,60.84,1019.13,67.24,440.22 +25.21,59.21,1013.19,62.85,438.7 +15.18,44.2,1019.6,72.45,462.09 +29.03,43.21,1011.83,65.23,434.11 +24.18,58.49,1011.3,77.81999999999998,445.49 +7.62,44.71,1020.56,69.96,486.07 +29.53,71.97,1008.6,79.25,434.96 +24.27,74.93,1012.73,73.81,443.06 +28.4,74.93,1013.65,48.6,442.23 +22.2,57.17,1009.82,78.43,447.75 +17.58,44.9,1020.52,71.48,459.78 +6.71,40.72,1022.78,80.69,483.11 +28.32,72.58,1007.77,78.34999999999998,428.06 +8.11,42.18,1014.82,93.09,473.62 +34.76,68.94,1006.75,41.31,427.42 +28.82,64.79,1016.74,56.34,445.1 +25.43,60.95,1014.62,51.39,444.65 +24.78,57.19,1008.08,65.4,443.62 +6.94,39.61,1017.74,81.43,480.07 +27.5,68.24,1010.38,73.44,430.9 +21.43,63.94,1012.68,99.68,445.29 +26.84,70.36,1007.41,71.47,442.17 +25.69,64.45,1013.05,42.0,450.94 +27.92,74.98999999999998,1005.47,75.13,431.76 +23.69,58.05,1012.08,74.26,444.46 +22.89,62.39,1007.84,88.16,448.13 +15.43,38.58,1016.58,81.17,463.44 +21.84,58.86,1014.13,69.67,445.16 +16.8,56.03,1020.65,85.26,461.96 +18.34,50.59,1018.42,83.95,457.17 +21.1,49.16,1006.76,86.08,442.78 +8.49,39.61,1021.05,87.74,483.94 +11.95,42.03,1017.58,90.89,465.2 +5.05,35.57,1027.03,80.02,491.4 +4.71,42.07,1005.35,82.26,486.79 +13.65,42.74,1026.58,71.48,468.87 +25.14,67.32,1013.96,41.78,435.39 +8.88,39.66,1015.21,88.29,481.45 +11.3,43.14,1019.56,99.83,469.73 +30.61,67.69,1004.97,47.46,429.8 +15.69,39.3,1019.03,60.57,464.17 +20.58,50.78,1008.87,91.18,445.03 +24.66,66.49,1010.83,70.06,438.01 +21.93,62.91,1013.45,74.62,449.17 +25.2,61.08,1013.04,74.28,447.09 +11.75,35.76,1018.99,57.92,473.01 +28.16,70.72,1009.81,65.32,441.37 +34.96,68.94,1006.17,59.26,431.48 +16.63,43.77,1012.25,75.09,458.66 +12.1,44.77,1019.1,75.84999999999998,463.11 +14.48,39.0,1016.75,75.97,464.56 +30.96,71.77,1006.26,52.76,425.66 +26.89,49.16,1003.84,41.22,442.39 +32.09,69.4,1003.1,56.91,430.62 +9.95,41.82,1033.09,69.44,477.52 +16.71,40.55,1004.45,81.64,464.13 +17.34,46.48,1007.18,83.15,452.06 +26.2,71.14,1007.92,72.95,431.7 +14.51,42.77,1017.47,81.95,463.37 +19.81,43.56,1013.39,38.13,460.59 +13.85,41.39,1018.62,75.55,471.45 +11.06,41.5,1013.09,89.8,476.24 +14.45,43.34,1015.47,83.33,462.16 +3.99,39.64,1011.53,83.58,492.06 +24.74,59.39,1015.23,74.64,437.49 +11.48,41.2,1012.88,90.04,478.34 +19.09,43.14,1012.34,45.75,463.3 +22.26,60.37,1008.14,92.37,441.33 +14.17,39.59,1010.99,94.08,464.17 +24.67,58.05,1011.31,69.95,444.57 +26.87,74.98999999999998,1002.48,71.91,437.78 +22.32,48.41,1008.68,79.11,445.36 +14.94,42.77,1018.06,75.34999999999998,460.51 +19.32,44.71,1015.3,28.81,464.38 +17.58,39.63,1004.84,80.43,467.33 +24.19,47.45,1008.26,64.25,446.3 +32.0,73.17,1009.92,42.47,433.72 +12.64,41.79,1016.38,92.65,461.46 +21.86,63.09,1016.64,87.94,442.79 +23.07,69.23,1011.78,76.06,437.08 +15.98,41.48,1017.0,55.73,456.31 +11.48,41.14,1027.67,90.5,464.07 +26.07,69.23,1013.32,54.03,436.94 +13.74,44.21,1023.26,84.2,466.67 +29.23,75.59999999999998,1017.72,52.26,438.92 +9.44,43.99,1020.31,98.06,475.01 +29.51,75.59999999999998,1017.92,50.61,431.18 +13.12,44.21,1019.57,89.29,469.09 +26.23,59.14,1016.98,75.54,437.85 +14.55,42.74,1027.29,66.64,457.77 +20.3,58.46,1015.93,82.13,448.79 +12.57,39.18,1023.09,77.28,471.87 +9.34,41.49,1020.58,97.59,471.04 +7.93,42.28,1008.43,85.57,484.75 +19.6,48.14,1013.18,68.71,456.57 +21.35,57.76,1017.36,73.09999999999998,452.57 +10.59,38.38,1021.58,68.23,474.94 +27.54,75.59999999999998,1018.26,57.89,440.87 +11.12,44.92,1025.58,93.52,470.82 +18.82,61.27,1019.5,72.23,455.29 +25.11,62.26,1011.12,78.01,434.97 +21.89,58.05,1011.31,85.71,441.76 +12.87,48.04,1012.47,100.13,465.56 +25.54,60.37,1006.49,71.54,436.14 +7.05,40.69,1020.53,89.67,476.75 +9.11,36.66,1026.47,74.79,480.74 +24.77,71.94,1006.77,88.86,432.27 +8.51,40.81,1015.54,83.16,481.02 +17.1,62.1,1020.39,93.63,453.4 +7.11,39.9,1008.82,87.76,484.21 +20.01,56.65,1020.77,74.45999999999998,457.01 +25.27,63.91,1009.82,75.48,440.39 +29.72,54.2,1012.86,38.48,438.84 +27.42,65.74,1013.43,69.42,440.52 +28.44,77.54,1011.73,77.3,433.21 +25.89,48.41,1008.49,68.58,440.92 +31.39,69.59,1008.28,62.86,435.76 +17.1,49.69,1005.53,81.81999999999998,457.32 +15.24,44.45,1020.56,66.13,460.94 +13.9,39.59,1011.84,94.74,465.0 +30.52,70.4,1003.9,64.33,438.29 +21.78,68.28,1001.0,79.3,443.24 +28.07,68.08,1013.13,44.67,437.65 +26.07,71.37,1008.6,79.48,439.25 +18.0,43.7,1015.4,61.28,464.26 +9.93,40.67,1018.08,69.74,485.23 +23.48,65.12,1015.82,60.83,445.66 +12.66,41.2,1015.88,89.12,466.49 +25.95,59.27,1010.9,70.42,444.19 +10.34,41.46,1017.75,89.73,478.03 +18.2,39.63,1005.35,79.05,468.49 +23.64,70.04,1011.09,83.35,435.21 +17.38,43.14,1011.09,61.9,459.02 +27.67,69.59,1009.13,82.15,437.29 +22.18,59.39,1014.82,85.31,440.94 +14.86,37.85,1010.58,86.8,467.71 +25.9,47.45,1007.8,55.96,443.13 +25.88,66.48,1004.24,63.16,434.4 +21.12,47.24,1003.79,70.55,462.41 +20.03,62.26,1012.15,82.54,447.4 +21.86,49.21,1014.61,53.31,452.77 +11.71,40.05,1014.49,86.09,471.49 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/train.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2258eac74845924002be246f1c732448126296f --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/train.csv @@ -0,0 +1,7655 @@ +AT,V,AP,RH,PE +29.64,67.79,1009.99,51.23,440.74 +10.63,37.5,1008.93,98.14,474.81 +27.09,59.15,1013.02,55.18,438.9 +24.2,57.85,1013.05,70.29,446.87 +15.31,52.75,1025.21,55.22,460.77 +21.39,63.9,1013.44,70.95,449.38 +12.21,44.34,1017.98,86.17,475.06 +25.2,59.21,1017.54,55.53,444.16 +13.77,42.86,1012.86,88.83,471.94 +30.47,68.24,1009.55,64.98,427.94 +21.5,59.87,1019.05,76.56,444.05 +21.49,61.27,1019.81,63.21,450.07 +9.15,44.03,1012.45,81.67,474.26 +9.51,40.46,1018.84,70.12,471.32 +21.43,63.94,1017.28,57.49,449.02 +26.95,48.41,1008.53,62.94,436.54 +23.42,63.07,1011.72,75.81,444.23 +13.86,50.59,1019.2,97.22,467.23 +12.05,49.83,1008.54,95.11,454.18 +10.01,43.7,1015.73,91.97,479.24 +29.38,74.9,1003.25,72.19,433.74 +18.65,52.08,1005.48,99.94,449.55 +10.22,45.01,1018.27,93.62,474.32 +14.81,42.77,1017.83,75.09,463.06 +31.1,71.32,1008.09,45.87,437.54 +13.76,45.87,1008.89,87.27,463.5 +29.12,66.51,1015.69,37.9,432.88 +7.38,41.22,1016.47,96.29,485.73 +26.1,66.25,1009.25,84.52,441.53 +16.84,45.01,1016.14,75.73999999999998,456.85 +32.46,74.33,1012.61,37.07,427.87 +13.33,38.47,1015.42,58.27,466.26 +13.02,40.1,1014.43,87.32,474.97 +13.64,43.71,1024.41,84.46,468.85 +27.85,66.44,1008.48,77.15,429.0 +19.35,39.39,1013.91,61.53,465.28 +15.36,41.66,1012.41,62.32,466.7 +10.87,42.02,1002.08,95.22,472.63 +13.91,44.58,1021.36,78.98,472.67 +17.48,40.89,1011.39,62.45,462.59 +26.65,73.18,1012.27,83.12,437.7 +26.0,70.47,1009.61,74.66,435.05 +22.97,72.23999999999998,1011.15,95.85,437.41 +8.25,41.26,1020.59,91.84,475.17 +31.19,70.94,1007.29,51.91,436.6 +10.48,41.93,1017.17,92.81,480.01 +16.16,52.05,1013.19,75.37,463.09 +22.37,50.78,1008.84,82.06,449.08 +8.75,36.3,1015.61,57.53,480.4 +23.77,59.21,1011.97,80.08,440.08 +10.15,41.17,1019.38,82.3,480.71 +27.81,64.69,1006.59,71.75,437.02 +28.41,66.91,1008.22,57.93,440.52 +29.12,67.32,1014.21,48.8,435.2 +24.27,57.85,1012.81,63.48,445.1 +24.23,49.3,1003.61,74.44,440.65 +29.21,72.25,1012.72,71.85,434.64 +26.38,70.47,1007.36,76.91,434.02 +28.97,67.9,1006.19,65.81,434.7 +23.75,66.54,1004.41,85.44,436.57 +25.56,50.05,1005.67,69.29,442.49 +11.3,25.36,1008.66,96.18,471.19 +27.62,63.9,1013.11,43.56,442.89 +6.01,35.79,1011.05,91.33,482.25 +7.64,38.18,1017.65,78.51,484.45 +26.02,71.94,1009.38,64.12,435.21 +8.4,38.5,1013.67,69.13,486.5 +21.41,56.9,1007.03,79.41,441.41 +13.88,39.39,1014.08,80.48,471.39 +14.43,35.85,1021.99,78.25,464.6 +6.57,43.65,1018.24,74.47,481.46 +17.94,63.07,1012.42,94.35,456.7 +29.18,68.24,1010.04,68.04,428.52 +29.18,71.43,1011.65,59.49,443.75 +24.43,72.43,1008.03,85.56,434.71 +17.54,44.58,1016.56,79.0,465.51 +19.02,47.45,1007.44,76.76,453.08 +11.78,39.96,1011.37,82.95,472.79 +24.74,69.13,1010.69,90.08,431.24 +5.21,35.79,1012.44,94.35,485.17 +26.47,69.51,1009.51,65.02,433.89 +29.85,61.85,1005.45,61.85,436.46 +12.04,42.34,1019.72,94.67,465.36 +13.23,52.72,1026.4,75.78,465.26 +6.03,41.17,1019.81,84.2,488.57 +14.07,43.34,1015.79,86.0,463.77 +18.81,49.15,1020.79,67.09,459.81 +30.91,76.2,1008.53,58.08,434.94 +25.97,69.34,1009.43,88.11,435.02 +12.39,40.75,1016.05,81.91,475.96 +15.92,41.79,1006.24,79.42,458.68 +13.61,38.47,1015.1,54.98,466.51 +32.16,66.25,1008.17,56.88,434.5 +23.11,68.3,1017.83,86.62,437.91 +35.56,68.94,1006.56,38.75,429.69 +8.51,34.69,1026.96,75.34,481.83 +18.26,61.27,1019.1,74.73999999999998,428.67 +13.68,45.08,1024.91,85.26,467.02 +22.49,62.52,1016.57,63.69,451.87 +10.11,44.85,1014.2,84.81,478.71 +23.22,66.56,1002.47,85.39,437.11 +17.45,50.9,1012.16,83.8,458.67 +26.96,69.45,1013.89,51.47,436.69 +9.64,40.56,1022.51,78.62,483.39 +5.95,35.57,1025.84,77.61,487.72 +23.51,70.04,1011.02,81.39,435.78 +10.76,40.78,1023.81,87.96,469.97 +24.8,59.87,1018.79,60.79,441.0 +20.13,60.07,1014.79,63.57,453.49 +22.59,60.32,1016.84,78.58,447.17 +16.17,38.01,1022.19,70.99,462.54 +16.73,45.0,1023.44,60.68,467.08 +32.44,77.95,1014.83,50.69,434.97 +16.99,40.89,1011.54,64.51,464.95 +13.72,34.03,1018.57,65.95,469.25 +15.72,43.02,1011.98,45.74,466.33 +28.24,65.74,1013.4,64.87,438.47 +29.48,59.27,1010.99,51.23,440.72 +26.99,72.98999999999998,1008.0,76.09999999999998,430.81 +22.3,74.87,1009.69,86.18,442.78 +20.14,65.06,1014.81,80.01,444.84 +6.76,36.25,1028.31,91.16,484.36 +15.64,44.21,1020.17,83.28,462.42 +18.12,63.09,1019.32,89.21,449.65 +30.55,71.06,1009.33,73.38,432.6 +27.69,65.34,1014.31,46.59,442.84 +22.69,58.46,1017.74,75.20999999999998,443.47 +19.98,56.53,1020.22,73.53,454.89 +24.88,73.17,1012.26,84.96,434.85 +22.92,61.9,1013.27,78.31999999999998,446.08 +29.83,71.98,1004.32,67.55,426.98 +24.81,66.44,1011.19,69.96,435.79 +23.49,42.8,1013.96,65.31,459.9 +21.3,59.39,1013.83,84.53,444.21 +27.46,69.98,1013.28,63.73,435.36 +12.32,41.62,1012.88,88.88,464.72 +31.88,67.32,1013.64,35.1,436.64 +17.75,42.24,1016.86,61.52,468.86 +23.24,68.31,1009.71,80.8,440.78 +13.66,41.67,1013.43,80.56,469.17 +5.53,40.64,1020.78,97.25,479.88 +24.57,49.5,1014.22,56.31,455.72 +5.62,41.38,1020.91,86.21,490.83 +10.84,40.27,1005.24,87.27,479.22 +22.95,45.61,1013.65,73.92,457.91 +25.43,69.13,1002.2,86.44,431.53 +19.76,62.1,1020.07,73.55,450.44 +25.89,59.22,1013.4,80.17,445.75 +13.62,42.34,1017.87,89.67,464.79 +8.74,36.3,1015.18,61.97,438.63 +12.1,41.17,1013.72,75.61,478.1 +13.53,40.71,1023.83,61.59,474.7 +16.36,44.88,1018.34,76.0,468.53 +14.28,37.2,1013.96,82.71,467.44 +18.92,62.26,1012.05,85.99,451.51 +5.68,40.77,1022.49,90.6,487.58 +9.46,36.66,1026.22,72.58,479.06 +23.46,51.19,1009.6,73.22,444.82 +24.26,69.71,1008.98,81.58,438.6 +28.86,73.67,1006.65,68.23,431.15 +27.38,70.04,1011.18,72.26,428.88 +22.39,48.14,1014.56,64.31,448.58 +18.86,42.18,1001.16,98.58,457.07 +8.01,40.46,1019.42,76.15,475.42 +11.23,41.17,1019.36,56.85,475.85 +19.19,50.16,1011.12,99.91,449.52 +11.83,44.6,1018.49,89.06,469.96 +30.3,71.98,1004.4,55.6,426.52 +23.42,58.79,1009.74,81.54,441.46 +8.07,41.01,1023.26,97.5,474.09 +8.41,40.67,1019.97,69.2,489.25 +15.0,40.66,1016.28,89.62,456.63 +7.57,41.14,1028.23,87.97,477.8 +16.71,46.18,1011.61,95.82,459.4 +19.45,38.52,1017.99,62.86,451.96 +17.9,58.33,1013.6,85.81,452.28 +12.19,40.05,1014.77,84.39,473.92 +26.34,68.67,1006.54,72.48,437.52 +15.41,42.44,1012.6,86.74,472.28 +21.12,49.15,1021.29,52.9,456.92 +33.37,71.37,1003.75,45.26,432.67 +7.5,38.06,1021.96,83.45,485.98 +16.79,44.6,1014.27,48.08,459.48 +12.87,41.5,1013.51,85.72,469.44 +16.16,41.79,1007.53,76.20999999999998,453.39 +24.78,68.63,1013.96,43.7,448.43 +21.37,57.76,1018.8,70.12,454.66 +21.03,59.8,1015.86,76.63,453.86 +20.76,58.79,1017.22,78.75,447.07 +22.33,71.94,1011.06,82.85,441.85 +15.84,41.04,1025.64,63.43,456.21 +12.77,41.5,1014.13,86.8,470.68 +27.78,77.17,1009.11,86.54,430.33 +18.21,62.26,1011.97,87.28,455.88 +6.91,37.49,1011.05,82.07,481.88 +23.36,74.93,1016.57,71.91,443.78 +21.04,74.87,1009.09,88.25,443.44 +10.59,41.26,1008.1,98.27,474.76 +7.68,42.85,1012.51,91.51,479.16 +14.22,37.85,1011.24,88.49,471.05 +21.05,61.87,1009.69,62.81,449.05 +6.93,43.13,1018.61,88.31,486.94 +27.55,65.59,1011.6,63.99,440.53 +28.57,65.27,1013.27,51.11,440.51 +12.45,40.81,1025.63,66.26,474.73 +10.93,39.22,1019.44,64.94,473.27 +23.56,49.16,1003.31,66.98,445.36 +11.3,44.6,1018.19,91.66,470.5 +27.58,71.97,1008.51,87.99,430.53 +12.47,45.01,1017.8,95.25,467.18 +13.0,48.79,1017.14,85.23,464.12 +22.88,63.91,1009.63,87.82,442.5 +13.52,39.3,1018.99,69.22,469.41 +10.16,41.79,1021.35,52.4,472.75 +23.29,65.61,1014.81,70.27,447.67 +22.12,63.91,1009.61,90.83,447.77 +18.9,62.96,1020.69,80.56999999999998,455.88 +24.11,68.3,1017.33,79.16,432.62 +24.25,74.93,1013.07,69.31,445.44 +14.04,40.83,1008.98,82.04,469.75 +8.71,41.82,1033.08,74.53,477.94 +4.71,39.42,1026.4,84.42,481.28 +23.41,74.98999999999998,1007.22,84.55,442.51 +21.67,57.76,1018.32,68.21,452.56 +30.8,70.94,1007.06,63.09,432.44 +17.16,40.55,1000.26,72.20999999999998,461.58 +24.8,66.51,1016.74,65.72,441.34 +27.34,63.78,1016.5,48.4,446.56 +9.0,36.3,1027.11,75.89,480.31 +9.43,41.4,1028.03,84.98,474.16 +9.93,39.04,1023.78,77.08,480.54 +24.94,67.69,1008.86,68.97,439.08 +31.37,74.87,1009.22,56.58,436.16 +29.42,74.9,1004.11,64.53,434.66 +14.08,39.31,1011.67,72.0,464.16 +26.77,68.08,1010.83,63.48,432.91 +29.62,71.8,1011.05,63.13,438.55 +22.6,69.84,1006.37,79.59,435.13 +11.28,40.55,1006.23,97.78,475.14 +15.98,42.99,1008.24,83.78,467.42 +25.75,71.14,1008.33,77.12,433.64 +24.27,70.47,1008.96,78.31,434.24 +7.45,43.13,1019.31,86.32,485.6 +14.5,53.82,1016.81,62.89,464.27 +26.71,68.3,1015.07,62.7,436.66 +19.69,39.72,1001.49,60.34,456.55 +24.61,69.68,1012.06,92.47,438.51 +22.97,42.48,1012.84,64.71,466.7 +9.35,41.03,1021.33,66.75,482.16 +22.46,58.33,1013.21,68.68,445.9 +22.64,58.66,1011.68,60.97,449.79 +20.92,70.02,1011.06,85.63,437.96 +34.48,74.34,1000.91,42.61,433.94 +9.81,44.45,1021.19,90.55,471.32 +16.61,50.9,1013.18,85.26,460.35 +24.01,65.46,1014.17,43.02,443.81 +26.45,73.5,1010.31,74.33,433.44 +24.47,75.23,1012.43,75.25,441.07 +30.49,70.32,1011.34,66.33,434.76 +12.15,43.71,1025.78,93.69,472.59 +27.2,77.95,1009.48,78.53,433.39 +14.56,41.76,1023.82,85.36,464.3 +21.31,69.05,1002.46,73.42,440.97 +9.03,37.14,1012.79,76.27,478.95 +18.42,60.1,1009.77,86.75,451.93 +25.24,67.45,1013.56,50.91,438.99 +25.74,63.73,1010.88,70.87,441.9 +22.05,61.27,1019.6,58.83,447.95 +21.3,48.92,1010.92,65.09,447.89 +25.38,65.34,1012.87,62.49,447.41 +12.55,39.58,1010.68,76.9,472.31 +27.24,69.13,1009.28,70.85,432.36 +24.01,50.16,1004.22,75.31999999999998,443.03 +18.46,42.18,1001.47,97.61,458.67 +10.5,39.28,1016.55,91.75,480.92 +19.89,69.48,1011.06,86.73,447.63 +15.77,41.79,1007.96,80.69,455.87 +24.91,64.45,1013.02,42.34,450.84 +14.1,41.04,1026.11,74.25,465.89 +12.54,41.62,1010.86,83.42,461.08 +10.02,41.44,1017.37,77.65,479.63 +25.28,49.5,1013.95,52.79,454.01 +29.82,66.51,1010.98,43.57,439.17 +25.31,67.9,1006.34,68.04,440.36 +12.78,44.6,1013.64,77.56,468.67 +10.87,37.5,1011.43,95.56,474.07 +14.48,44.06,1018.73,75.88,467.46 +10.02,39.96,1024.88,96.85,473.22 +29.22,72.39,1000.87,77.39,430.24 +16.74,38.01,1022.63,69.19,463.61 +6.25,39.64,1010.98,83.45,483.43 +8.42,43.14,1011.62,80.31999999999998,483.49 +9.06,40.02,1031.16,82.04,478.01 +12.04,41.58,1018.02,88.91,464.45 +31.25,69.51,1010.25,36.83,428.77 +10.2,41.17,1019.56,82.46,479.7 +29.06,72.86,1004.23,69.41,432.12 +17.28,44.06,1018.15,66.93,462.05 +21.84,59.07,1008.84,96.5,448.61 +26.98,43.77,1010.95,40.8,446.05 +22.06,43.43,1010.46,58.01,448.92 +15.92,41.2,1016.04,73.37,468.91 +14.2,43.02,1012.18,57.07,470.67 +9.07,36.3,1015.26,56.81,479.98 +6.86,41.17,1020.12,79.14,490.23 +27.92,68.3,1015.02,51.04,437.28 +23.76,61.5,1009.15,68.52,441.16 +10.48,40.0,1021.35,88.52,478.86 +29.05,75.59999999999998,1017.63,51.16,439.14 +26.63,74.16,1009.72,83.26,436.03 +12.45,40.56,1017.84,66.52,477.41 +27.0,73.17,1009.82,64.43,434.94 +17.78,52.08,1006.9,100.09,453.31 +21.45,60.84,1017.86,82.8,444.99 +26.3,71.94,1006.64,85.12,428.83 +29.1,77.95,1010.01,71.48,431.28 +29.25,72.98999999999998,1006.85,61.15,429.12 +25.71,71.73,1009.72,75.29,434.16 +25.56,74.67,1016.62,76.09999999999998,435.81 +14.22,40.83,1009.2,81.31999999999998,469.75 +28.37,69.13,1010.44,71.93,425.29 +15.6,44.68,1018.35,85.91,463.82 +27.0,71.25,1002.66,70.59,437.22 +27.31,68.14,1005.73,50.74,437.83 +13.3,50.59,1019.38,92.96,469.13 +7.77,35.77,1016.53,73.79,479.68 +31.94,69.98,1013.32,56.17,432.03 +29.05,64.84,1011.1,51.39,442.58 +26.81,71.29,1009.65,80.69,434.48 +4.31,38.5,1011.75,82.08,492.92 +9.48,44.71,1019.12,66.43,478.42 +4.16,35.47,1017.72,88.49,486.7 +21.18,70.02,1010.27,96.46,442.51 +23.18,59.04,1011.44,79.28,443.12 +15.66,41.7,1018.0,77.0,452.58 +26.14,61.02,1010.13,66.71,436.17 +11.72,41.54,1020.04,66.84,476.12 +25.3,70.98,1007.22,95.1,440.86 +24.01,63.56,1014.19,64.31,444.1 +27.59,50.05,1005.71,57.03,437.98 +6.91,36.08,1021.82,84.31,486.37 +10.53,41.26,1007.48,98.74,475.96 +9.39,41.79,1021.6,50.09,473.73 +26.23,59.87,1012.93,66.62,447.16 +21.57,66.49,1014.76,68.19,455.18 +12.58,43.67,1012.86,94.01,472.65 +10.14,42.02,1003.19,96.51,472.17 +29.54,74.98999999999998,1005.0,69.69,432.94 +26.63,43.77,1011.33,49.3,440.95 +13.31,40.03,1017.73,84.48,470.31 +15.16,40.73,1017.7,86.37,459.19 +19.15,39.72,1001.49,58.62,457.45 +20.55,63.86,1015.12,73.98,447.54 +10.41,36.71,1022.02,84.56,474.2 +20.77,52.05,1012.22,45.61,455.02 +8.96,40.05,1015.91,89.4,467.24 +25.79,65.27,1013.26,55.35,440.04 +4.44,38.44,1016.14,75.34999999999998,486.53 +16.15,44.21,1020.76,85.41,462.02 +21.31,42.8,1014.1,75.77,459.84 +11.1,40.92,1021.98,94.14,462.07 +33.42,68.51,1011.91,45.83,427.66 +13.92,39.58,1012.5,80.28,465.67 +13.34,40.83,1008.09,85.85,471.82 +21.17,64.15,1021.25,62.38,454.15 +12.82,46.18,1018.53,88.46,466.06 +21.14,67.71,1006.38,56.78,445.12 +7.32,39.42,1026.15,76.51,476.12 +20.77,56.85,1012.4,83.63,442.85 +29.45,64.96,1005.52,59.92,433.04 +24.89,64.27,1013.52,64.65,444.21 +8.27,39.64,1011.0,84.64,479.91 +32.07,67.83,1007.91,41.61,429.31 +10.75,45.01,1018.73,93.16,471.47 +25.57,59.43,1008.88,61.19,438.9 +14.66,43.13,1014.97,46.31,467.87 +29.47,65.51,1014.71,58.28,444.8 +11.92,40.62,1016.66,55.25,468.14 +22.57,68.3,1017.43,87.69,440.81 +19.31,44.71,1016.13,30.59,463.0 +11.72,39.18,1024.19,68.53,468.98 +20.18,56.53,1020.3,77.09999999999998,454.14 +21.39,64.27,1011.71,95.39,445.12 +9.88,40.71,1015.34,84.32,471.8 +30.76,73.17,1009.89,50.43,430.98 +11.31,42.02,1001.18,94.86,471.26 +11.95,41.58,1015.83,89.35,464.57 +25.04,66.48,1004.12,63.01,433.83 +8.57,41.17,1020.18,72.47,484.2 +24.24,70.32,1009.38,82.83,436.45 +33.37,73.88,1005.8,47.94,436.76 +21.82,58.66,1011.71,64.37,452.16 +13.55,40.71,1019.13,75.44,467.21 +28.64,66.54,1010.43,43.39,437.97 +7.69,38.06,1020.72,83.47,483.54 +15.85,46.18,1013.14,97.8,462.88 +31.1,69.51,1010.84,45.4,429.74 +17.01,50.59,1015.8,80.95,463.4 +9.08,36.71,1025.07,81.31999999999998,479.02 +12.75,39.85,1012.51,62.37,475.61 +24.97,54.2,1012.68,74.25,439.71 +10.08,43.14,1010.67,85.9,478.73 +10.63,42.28,1008.37,92.68,474.97 +12.14,40.83,1010.56,78.31,474.82 +22.35,63.94,1010.32,93.02,443.9 +7.98,43.52,1022.45,97.68,481.93 +16.39,41.67,1012.96,61.07,467.68 +28.4,69.34,1009.76,70.4,436.5 +30.95,71.58,1009.95,50.02,430.47 +6.4,41.17,1019.54,85.37,488.82 +5.65,40.72,1022.46,85.17,487.09 +10.12,38.38,1018.22,85.93,477.73 +23.23,60.32,1016.73,78.34999999999998,447.09 +24.95,76.16,1006.2,76.16,437.47 +27.92,68.12,1011.54,49.8,437.51 +27.5,49.3,1004.02,59.23,439.77 +18.5,52.08,1006.23,100.09,451.23 +17.14,44.2,1018.91,62.18,457.02 +16.43,48.06,1010.73,61.26,459.63 +21.12,63.56,1014.16,81.42,445.9 +23.68,68.12,1011.18,72.45,441.54 +20.95,48.14,1013.3,67.72,452.38 +22.61,45.38,1013.92,62.91,459.53 +25.09,65.38,1009.99,54.28,453.58 +18.6,41.67,1013.07,64.23,458.91 +32.41,58.9,1003.26,45.33,439.11 +14.39,44.85,1014.19,75.16,465.88 +22.78,58.59,1012.84,65.55,445.45 +8.48,42.49,1010.77,88.68,483.5 +24.77,58.41,1013.78,80.56999999999998,446.27 +19.92,48.98,1014.32,64.99,455.57 +7.28,39.81,1017.61,87.56,483.0 +22.77,69.84,1005.75,84.26,436.75 +28.15,72.98999999999998,1007.62,70.03,431.83 +30.35,77.17,1009.55,63.62,432.75 +20.51,63.86,1020.65,75.36,447.18 +7.61,39.42,1024.93,74.77,475.55 +10.52,42.18,1014.9,95.67,469.03 +9.68,40.22,1007.6,89.97,479.56 +17.64,57.76,1016.28,85.04,455.75 +14.95,42.99,1008.75,90.76,468.61 +22.5,64.69,1007.03,74.92,440.73 +23.85,69.45,1013.99,60.6,439.67 +20.28,63.86,1016.04,74.66,447.26 +11.56,39.28,1011.27,82.05,477.71 +13.45,42.44,1012.79,83.12,473.96 +28.31,66.17,1009.75,72.66,444.51 +30.21,75.33,1002.24,66.71,431.46 +31.28,75.08,1005.39,49.53,438.63 +15.92,44.85,1015.84,59.99,467.41 +15.3,38.62,1017.19,70.63,462.65 +26.1,74.16,1009.42,85.4,437.18 +31.27,69.13,1009.45,57.01,425.48 +14.57,44.84,1023.46,87.2,464.58 +13.07,42.18,1014.98,87.77,461.71 +21.01,51.19,1008.44,81.48999999999998,446.2 +9.83,38.56,1017.35,62.8,480.47 +19.21,58.49,1011.7,91.29,452.82 +15.78,41.48,1015.55,52.17,454.25 +15.33,52.05,1014.15,80.56,452.82 +17.27,43.52,1021.37,76.73,460.08 +22.21,61.5,1008.34,76.22,445.77 +19.7,51.3,1014.88,88.1,454.94 +7.67,42.85,1012.02,93.35,478.94 +9.53,38.18,1018.43,75.33,476.54 +17.85,45.64,1020.11,82.94,459.59 +9.34,38.08,1019.56,67.74,482.06 +33.63,77.54,1009.82,58.04,431.81 +29.09,47.93,1003.05,48.13,438.97 +25.67,68.3,1017.16,74.19,435.89 +34.63,74.33,1011.7,31.45,428.54 +12.25,41.38,1021.81,59.0,474.77 +7.55,42.85,1011.21,93.25,484.93 +23.56,71.85,1009.67,74.78,439.48 +14.54,39.39,1013.87,76.39,470.23 +28.55,72.43,1007.2,65.82,430.06 +13.63,43.22,1012.71,72.84999999999998,464.62 +27.51,71.29,1009.43,76.92,430.42 +32.84,68.14,1003.59,43.88,425.18 +19.53,50.32,1009.71,94.46,449.59 +24.97,68.61,1011.08,58.94,447.83 +13.93,40.24,1017.88,88.35,469.25 +16.86,39.63,1004.47,83.5,466.68 +14.65,41.92,1030.61,63.07,464.95 +15.35,41.79,1008.38,81.13,455.54 +24.92,63.86,1019.19,59.24,440.93 +22.01,49.39,1019.6,75.8,451.84 +26.94,59.87,1011.66,58.34,448.6 +18.86,46.48,1007.28,78.47,452.0 +23.84,59.87,1019.11,59.59,441.94 +20.83,67.32,1011.76,73.11,443.17 +16.14,44.63,1019.44,47.85,463.5 +20.72,68.61,1011.25,87.1,447.89 +27.27,72.23999999999998,1010.69,78.09,432.35 +20.2,50.9,1011.72,77.63,454.09 +23.74,62.96,1019.65,63.39,449.48 +7.91,37.8,1020.59,61.0,483.49 +19.31,60.07,1014.86,69.37,453.47 +24.41,56.9,1006.58,77.94,439.51 +20.86,67.25,1017.45,81.45,444.5 +29.35,71.58,1010.07,61.8,434.45 +32.39,79.73999999999998,1006.92,58.58,430.12 +30.04,64.44,1014.46,52.19,437.95 +13.32,44.9,1007.72,78.64,466.3 +24.32,66.25,1009.09,91.89,444.93 +25.5,63.56,1013.85,64.69,442.28 +31.11,75.33,1002.32,64.25,433.37 +9.48,44.68,1023.29,92.9,478.66 +25.95,65.61,1014.36,52.54,443.88 +10.24,41.58,1021.17,94.34,465.86 +24.87,60.37,1005.48,76.20999999999998,436.41 +9.15,40.11,1023.82,75.4,475.01 +26.79,77.95,1009.9,80.22,437.91 +13.85,48.06,1011.13,75.2,462.39 +27.71,70.32,1008.63,64.05,432.59 +13.75,40.89,1011.21,82.8,471.42 +10.25,41.46,1018.67,84.41,479.28 +25.56,60.32,1016.28,59.84,445.01 +15.03,43.71,1025.07,83.25,463.12 +23.55,51.95,1006.0,76.45999999999998,449.54 +13.8,40.2,1013.12,90.59,466.29 +12.51,41.92,1031.21,64.66,468.41 +25.54,49.16,1003.64,47.4,443.55 +30.86,70.32,1011.88,62.68,433.71 +26.64,73.56,1004.98,93.31,432.93 +15.25,39.58,1012.1,73.05,466.21 +9.3,40.56,1022.64,76.14,479.87 +29.09,67.07,1005.99,41.39,429.93 +24.54,60.23,1011.55,72.78,445.25 +22.05,48.14,1015.81,69.94,447.37 +18.4,40.79,1006.18,92.36,461.29 +32.38,67.17,1006.97,60.04,438.67 +13.35,41.16,1011.32,89.12,474.57 +25.26,52.3,1006.65,64.64,442.76 +28.11,77.95,1009.38,72.81,432.98 +17.65,59.87,1018.58,94.65,450.93 +10.07,34.69,1028.09,70.52,478.65 +13.52,40.83,1008.31,84.14,471.95 +22.4,68.31,1009.52,83.5,446.91 +10.82,37.5,1009.23,96.62,473.9 +26.34,69.04,1009.44,72.06,444.13 +17.62,43.52,1021.01,71.52,457.45 +17.46,62.1,1019.96,83.99,451.06 +9.06,41.92,1029.9,90.88,473.37 +16.85,49.78,1005.61,100.1,455.33 +22.67,60.77,1017.56,79.43,444.43 +21.45,69.94,1010.5,82.17,443.31 +10.32,42.02,998.27,99.12,472.16 +7.81,40.71,1023.32,82.08,475.46 +21.13,51.43,1007.43,88.72,445.4 +21.26,60.84,1018.43,78.83,446.08 +16.7,40.56,1019.04,50.9,470.84 +13.2,40.83,1007.75,94.98,472.41 +25.17,68.08,1012.83,60.87,437.01 +29.71,71.85,1008.81,70.86,428.49 +25.77,59.39,1014.76,69.99,438.64 +24.44,72.98999999999998,1008.38,91.66,435.47 +14.66,40.73,1017.45,88.57,459.23 +28.16,61.47,1009.19,62.53,442.48 +10.45,40.0,1019.01,89.01,465.43 +3.31,39.42,1024.05,84.31,487.19 +18.42,58.95,1016.95,86.77,452.1 +24.23,56.89,1012.32,68.04,441.29 +20.0,63.31,1017.06,63.1,449.68 +26.09,60.23,1010.74,60.88,445.88 +10.59,41.46,1016.87,85.7,480.83 +31.5,70.32,1011.44,64.09,435.13 +20.5,49.69,1009.6,70.81,452.94 +10.26,39.13,1010.94,87.78,474.16 +17.01,49.15,1021.83,84.02,458.78 +29.22,75.23,1010.49,48.73,438.57 +24.54,57.85,1013.02,65.61,444.93 +23.09,70.47,1010.76,79.89,439.36 +25.3,58.46,1015.91,69.71,439.25 +26.08,57.32,1012.2,47.06,441.32 +18.87,52.08,1005.25,99.19,449.61 +26.52,77.17,1008.71,92.32,432.48 +30.2,73.67,1006.31,62.14,428.72 +22.58,41.54,1013.21,71.33,460.95 +22.7,59.92,1011.05,90.84,436.7 +14.67,42.28,1007.21,65.17,469.02 +23.23,56.89,1012.87,75.43,441.85 +7.73,37.8,1020.71,63.93,483.94 +14.32,40.78,1024.49,73.84,457.92 +27.66,69.75,1009.71,84.27,439.18 +24.58,48.98,1014.96,38.75,459.79 +19.29,67.71,1007.94,63.71,449.28 +14.12,41.39,1018.73,76.51,472.88 +24.08,49.3,1003.23,70.42,443.46 +15.27,41.16,1009.0,84.12,467.01 +16.69,50.9,1013.21,84.98,460.75 +18.39,52.08,1006.53,100.09,449.96 +14.46,42.86,1031.34,69.84,464.44 +26.37,69.84,1002.71,83.51,428.6 +21.91,63.76,1009.85,76.8,445.04 +29.53,71.14,1011.39,53.41,431.97 +27.41,69.98,1008.51,65.49,431.64 +33.74,69.98,1012.51,43.3,425.35 +31.67,69.89,1013.88,39.33,426.35 +9.27,39.64,1010.79,79.56,480.29 +18.38,55.28,1020.22,68.33,451.29 +12.38,45.51,1016.15,81.37,470.46 +22.5,70.94,1008.04,82.39,442.4 +14.56,25.88,1009.46,78.22,466.29 +29.5,72.86,1004.63,52.17,439.43 +33.37,79.05,1007.19,62.64,430.42 +5.15,40.78,1025.34,95.84,483.03 +18.55,52.84,1004.45,86.82,450.23 +15.84,52.72,1026.45,62.57,464.93 +33.3,68.14,1003.02,53.43,426.88 +10.01,41.17,1018.78,86.84,479.4 +23.27,68.28,1005.01,74.83,444.86 +15.84,41.66,1009.69,62.81,465.5 +25.18,65.06,1013.64,55.77,440.27 +26.72,74.87,1010.18,70.74,441.93 +17.46,39.54,1008.21,74.23999999999998,462.52 +26.48,73.06,1008.07,90.73,433.31 +12.11,41.17,1019.46,62.59,475.53 +8.94,36.71,1025.5,80.45,477.62 +30.28,74.67,1016.45,55.76,428.27 +20.32,39.72,1002.0,51.71,458.8 +12.8,42.18,1016.27,83.9,467.69 +15.43,41.1,1005.2,85.06,467.21 +14.85,45.01,1013.12,85.53,460.19 +14.12,39.4,1008.02,76.45,468.63 +5.84,41.38,1020.34,82.41,489.4 +28.32,66.54,1010.28,45.6,436.42 +28.86,73.18,1012.46,68.8,427.01 +8.97,39.66,1021.63,78.94,482.62 +14.42,41.16,1004.32,88.42,467.25 +14.3,41.93,1020.6,65.38,471.32 +18.76,56.53,1020.04,86.62,452.5 +13.73,41.92,1031.01,64.92,466.29 +20.04,48.92,1011.14,68.92,447.89 +29.98,47.93,1002.46,42.73,438.79 +15.91,44.99,1010.93,62.81,459.73 +24.47,48.6,1002.49,75.04,442.08 +30.2,71.85,1008.25,59.1,425.21 +25.74,59.07,1007.37,79.89,441.05 +26.85,75.59999999999998,1017.43,74.55,433.48 +24.37,73.42,1010.19,76.01,440.29 +10.55,41.55,1005.02,63.24,473.99 +5.18,40.27,1010.84,81.64,489.1 +15.0,50.88,1014.04,100.12,459.37 +5.76,45.87,1010.83,95.79,481.4 +15.59,52.75,1024.3,59.93,458.87 +13.98,40.24,1017.19,87.45,467.2 +23.43,69.23,1013.09,63.48,441.6 +10.03,42.02,998.6,99.9,471.07 +29.33,52.84,1006.04,44.3,438.25 +19.41,67.32,1012.34,78.8,446.71 +14.39,42.77,1017.36,83.28,463.65 +10.03,40.96,1024.57,91.1,478.79 +7.32,41.26,1010.11,95.18,482.1 +20.19,44.57,1009.2,72.13,454.36 +7.95,37.49,1009.32,80.8,479.78 +12.36,52.75,1026.04,68.71,465.14 +5.64,40.62,1015.76,85.98,483.17 +9.45,41.4,1027.06,87.35,479.0 +7.55,41.04,1027.03,83.32,476.58 +9.19,40.62,1017.78,68.91,475.42 +16.98,53.16,1013.95,82.8,458.93 +30.09,76.2,1006.64,61.02,434.68 +24.17,73.18,1011.72,86.1,437.27 +28.9,71.94,1007.29,64.77,427.41 +30.15,72.51,1009.37,50.64,443.72 +22.82,69.94,1004.65,73.47,437.32 +12.3,39.85,1012.59,73.38,476.42 +26.2,60.07,1014.75,59.41,440.89 +15.69,37.87,1022.63,87.71,462.16 +14.16,44.58,1020.75,77.42,473.22 +8.61,41.04,1024.81,95.6,473.62 +24.88,52.36,1014.45,68.39,452.31 +15.99,49.21,1015.17,76.4,463.47 +9.75,35.76,1019.88,62.31,474.31 +19.99,40.79,1003.15,87.55,455.28 +23.17,51.19,1009.5,76.15,441.77 +31.06,67.17,1007.62,65.54,437.91 +9.28,40.22,1009.23,88.43,480.73 +13.25,34.03,1018.94,72.09999999999998,470.46 +27.62,68.27,1008.04,63.04,427.67 +8.96,40.02,1031.21,82.32,475.47 +30.51,59.57,1011.08,61.94,436.92 +21.41,50.32,1008.61,84.47,443.63 +11.89,40.03,1019.53,89.48,471.85 +13.61,41.16,1020.49,75.09,462.67 +24.74,59.21,1012.18,74.2,440.36 +8.69,41.04,1026.87,80.28,477.2 +26.72,67.79,1010.35,63.31,444.68 +26.03,59.07,1007.3,82.52,440.6 +15.86,43.5,1021.22,75.38,459.42 +13.69,43.22,1009.94,74.64,466.72 +8.99,36.3,1027.08,73.98,478.95 +25.88,63.47,1011.95,65.87,443.94 +23.28,48.92,1010.23,41.55,449.27 +13.83,40.2,1013.28,90.44,465.53 +27.16,66.44,1011.2,73.37,431.85 +6.52,35.57,1025.37,78.31999999999998,486.06 +21.09,59.8,1016.94,76.95,451.98 +12.42,40.24,1016.59,90.01,469.59 +25.54,61.08,1013.77,69.64,448.57 +26.09,60.29,1017.72,50.83,444.71 +29.12,74.87,1009.85,62.51,435.51 +16.21,41.23,995.88,80.0,463.09 +19.64,56.53,1019.6,76.19,447.66 +18.9,47.83,1005.31,77.79,455.94 +24.51,51.86,1014.64,67.57,446.74 +26.94,68.24,1010.49,76.58,430.34 +24.85,58.05,1011.5,70.12,444.53 +14.8,58.2,1018.29,85.11,455.14 +10.33,44.92,1025.34,85.67,476.99 +27.24,77.17,1009.37,81.51,439.12 +20.89,68.63,1012.6,69.52,452.05 +22.49,61.47,1009.14,90.23,437.01 +27.25,50.05,1006.53,60.64,439.63 +27.24,66.75,1017.78,69.6,433.65 +11.48,42.02,1000.29,94.76,471.43 +23.36,72.23999999999998,1010.99,94.41,434.15 +15.93,40.89,1011.57,74.55,468.8 +30.85,68.94,1007.31,68.99,426.1 +15.08,42.77,1018.43,73.19,461.68 +18.77,39.54,1009.39,63.35,458.58 +23.86,74.93,1016.88,71.44,444.38 +18.5,47.45,1009.23,83.21,450.22 +27.98,58.33,1013.92,54.25,437.76 +32.31,77.95,1010.15,62.17,430.15 +28.57,69.34,1007.98,65.55,439.46 +28.07,61.47,1008.68,64.83,442.59 +22.06,45.61,1014.3,77.75,455.61 +18.99,44.6,1014.7,40.11,463.48 +27.49,71.94,1006.62,73.34999999999998,435.29 +22.04,57.32,1012.54,62.17,447.27 +6.92,41.26,1011.16,96.2,483.61 +30.78,69.14,1007.27,62.77,433.96 +24.17,59.44,1012.66,78.53,447.13 +15.42,40.56,1021.23,59.37,469.33 +26.98,74.78,1009.77,69.54,442.28 +22.32,69.48,1011.1,77.86,439.49 +19.13,66.86,1012.95,71.24,453.31 +27.91,64.79,1017.7,48.29,440.53 +16.38,46.97,1013.6,73.67,459.87 +23.59,58.62,1017.81,66.68,448.09 +29.34,70.94,1007.82,62.43,433.57 +14.22,48.6,1006.26,88.05,459.69 +24.78,68.94,1007.29,70.56,435.93 +31.24,72.39,999.47,68.17,430.7 +25.04,65.48,1017.66,57.08,440.92 +19.69,57.32,1012.41,75.51,449.59 +10.6,41.17,1018.38,87.92,478.47 +30.03,67.9,1006.22,52.61,426.13 +29.56,51.43,1005.87,59.22,437.93 +26.78,52.3,1008.52,61.23,441.21 +28.01,64.69,1007.61,58.45,440.23 +16.96,63.31,1016.42,77.09,454.14 +20.53,54.9,1016.61,61.28,454.67 +30.21,79.73999999999998,1006.82,54.03,430.83 +32.45,66.44,1011.21,50.18,429.99 +24.62,58.66,1011.43,56.61,449.8 +12.25,44.58,1016.47,81.15,475.24 +23.03,54.42,1014.42,74.98,453.77 +3.2,41.31,997.67,98.84,489.86 +11.05,40.71,1024.91,76.42,479.59 +8.94,43.13,1014.82,76.66,483.63 +16.37,39.64,1009.19,76.92,463.91 +13.44,39.64,1013.23,73.43,474.79 +29.42,69.14,1007.32,75.04,437.75 +12.88,44.71,1018.73,51.95,469.12 +8.85,40.43,1025.68,80.42,491.81 +22.21,69.71,1009.69,96.85,440.14 +18.64,43.79,1016.01,51.17,465.13 +31.13,67.45,1015.02,41.34,435.14 +4.65,35.19,1018.23,94.78,489.36 +23.8,48.6,1002.43,67.32,440.89 +17.45,42.28,1007.64,69.19,463.83 +7.64,42.28,1008.46,84.29,484.78 +12.58,39.72,1017.85,57.74,471.24 +19.81,66.54,1013.88,80.09,449.07 +12.84,40.8,1026.95,69.86,475.59 +14.07,46.18,1017.77,87.83,465.05 +18.95,42.23,1013.01,79.4,462.73 +13.09,43.02,1013.17,46.73,470.14 +22.1,65.94,1009.79,67.57,443.95 +25.16,47.01,1014.99,64.0,452.64 +24.03,45.87,1007.55,52.48,445.84 +15.22,50.88,1014.19,100.12,460.44 +27.2,78.05,1010.15,90.2,430.55 +14.47,39.58,1011.31,69.85,467.34 +8.6,40.77,1011.8,89.45,480.82 +23.55,58.79,1010.78,78.47,447.01 +21.71,60.27,1015.74,89.76,441.19 +31.54,77.23999999999998,1007.83,62.98,430.07 +9.56,41.55,1002.67,70.27,481.24 +15.46,44.6,1017.7,68.2,459.62 +32.38,73.91,1004.05,61.69,430.17 +10.88,44.63,1020.52,86.81,469.57 +20.79,65.59,1014.9,77.0,450.3 +12.05,40.55,1016.63,100.14,472.19 +23.53,72.23999999999998,1010.84,94.33,436.69 +26.37,54.5,1014.48,66.31,451.78 +22.25,51.86,1013.08,83.64,451.04 +16.92,50.9,1013.27,82.97,460.86 +11.43,41.16,1022.81,92.04,466.86 +22.1,74.87,1009.4,85.78,442.83 +24.67,68.61,1010.71,57.47,450.64 +24.6,49.3,1003.72,72.26,439.46 +13.83,44.45,1021.5,68.75,462.6 +24.26,67.69,1008.48,66.74,437.4 +13.51,43.22,1009.63,75.02,465.89 +21.95,57.76,1018.02,67.72,452.27 +4.88,40.27,1012.66,74.51,491.29 +30.31,77.23999999999998,1008.02,67.84,435.28 +26.59,66.49,1013.32,49.76,439.72 +13.41,45.0,1022.31,76.29,475.9 +23.04,57.32,1011.23,64.27,442.01 +23.19,67.07,1005.67,65.19,442.45 +24.02,77.54,1008.33,83.92,438.52 +23.97,62.44,1013.64,88.5,442.46 +30.07,70.04,1010.84,55.74,426.35 +14.1,43.34,1012.91,86.45,465.22 +16.97,39.16,1005.7,69.13,458.59 +27.45,59.74,1011.34,58.58,450.46 +18.16,43.72,1008.64,75.22,454.98 +9.15,39.61,1018.11,75.29,474.88 +27.1,73.20999999999998,1002.97,89.68,430.87 +25.14,73.67,1006.94,88.51,430.89 +12.64,40.69,1015.86,82.06,474.08 +24.48,64.45,1014.69,51.43,452.82 +23.5,50.23,1017.51,75.15,457.51 +8.97,36.24,1013.21,90.77,477.89 +6.69,36.24,1013.35,91.09,483.82 +13.51,40.89,1011.03,84.83,471.99 +27.71,66.93,1016.85,58.77,447.06 +13.79,42.07,1018.27,88.06,462.25 +18.34,62.1,1020.52,78.59999999999998,453.01 +24.91,71.29,1008.29,69.06,437.03 +26.72,56.9,1007.12,58.54,435.16 +8.51,39.66,1015.16,86.61,483.54 +27.67,59.14,1016.51,61.2,433.37 +31.93,70.4,1005.27,73.70999999999998,432.29 +27.52,66.48,1004.99,52.54,429.67 +26.17,59.92,1010.01,73.75,444.96 +29.53,70.94,1007.22,70.68,432.43 +17.7,50.88,1015.44,89.57,456.78 +23.23,63.31,1012.52,75.09999999999998,441.5 +12.52,71.14,1019.49,76.11,463.22 +20.46,54.2,1011.4,84.0,448.1 +24.05,67.83,1009.35,63.8,442.53 +19.12,58.79,1017.34,92.45,447.02 +28.08,73.17,1011.19,73.09999999999998,430.8 +26.35,69.48,1008.45,70.47,435.23 +24.57,49.82,1016.82,65.25,452.3 +17.99,50.59,1015.9,77.28,462.2 +16.37,44.0,1024.61,78.26,460.14 +14.43,38.28,1014.76,79.76,467.12 +12.48,39.85,1012.93,60.23,477.17 +6.48,40.27,1010.55,82.12,486.68 +23.62,56.85,1011.11,64.44,442.96 +10.13,39.18,1024.09,85.48,479.42 +23.89,50.16,1004.88,73.94,444.99 +20.12,56.53,1020.34,75.59,454.54 +23.84,63.47,1012.54,76.33,444.48 +7.22,41.01,1025.19,97.27,476.15 +27.9,63.13,1011.8,70.04,439.76 +20.61,65.61,1014.91,83.82,449.72 +11.43,44.78,1013.43,82.45,471.09 +21.31,50.78,1008.68,85.28,445.17 +14.07,42.86,1032.16,71.53,467.47 +8.66,44.68,1022.99,95.45,479.62 +25.61,58.86,1013.9,54.9,444.77 +9.38,40.46,1019.29,75.77,474.1 +11.55,40.6,1014.44,87.06,475.14 +7.97,38.5,1013.84,72.36,487.19 +23.96,65.34,1015.52,56.82,449.23 +7.04,41.74,1021.91,88.55,488.99 +9.59,40.11,1026.05,74.27,470.71 +20.94,68.12,1012.43,78.2,446.41 +28.62,79.73999999999998,1008.12,65.39,436.12 +20.45,69.45,1012.53,91.81,441.83 +17.81,37.2,1011.98,67.27,470.97 +22.32,64.27,1014.35,82.98,446.62 +29.84,74.87,1009.64,61.39,435.05 +22.55,47.45,1008.65,67.9,447.42 +22.65,68.67,1006.67,77.42,447.01 +15.56,41.1,1003.55,76.92,464.42 +22.66,61.27,1019.29,55.43,448.68 +19.3,46.93,1014.83,66.71,456.62 +29.14,75.23,1010.15,54.87,434.82 +21.83,63.87,1018.93,63.07,452.21 +21.65,58.18,1008.33,95.28,441.05 +26.91,71.64,1004.59,83.54,438.73 +18.03,53.16,1013.02,81.95,456.55 +31.31,64.44,1014.24,51.08,438.14 +6.75,39.4,1011.28,90.84,483.77 +25.59,72.43,1007.88,82.98,432.49 +20.76,59.04,1012.51,85.39,448.92 +11.97,45.51,1016.84,81.47,472.82 +23.33,73.18,1012.51,91.29,436.33 +24.69,59.92,1010.12,80.58,436.33 +24.47,70.94,1008.07,81.55,436.29 +17.93,44.63,1003.54,87.41,458.96 +20.71,45.61,1013.64,82.39,457.4 +25.68,59.44,1012.33,67.29,444.36 +26.58,70.98,1008.96,77.36,434.41 +31.97,79.73999999999998,1007.03,55.84,435.99 +30.71,64.05,1011.75,62.81,438.42 +23.81,57.5,1015.53,70.66,448.72 +13.42,41.23,994.17,95.79,468.82 +30.15,69.88,1007.2,73.67,434.75 +26.92,62.44,1011.09,70.8,437.99 +14.6,44.84,1023.58,88.21,464.88 +8.31,40.46,1020.07,78.18,476.72 +11.53,41.14,1025.63,88.54,469.04 +13.55,43.48,1016.08,67.25,464.33 +12.02,39.69,1006.05,84.66,470.17 +27.11,48.6,1002.78,53.39,439.4 +24.59,72.23999999999998,1011.42,81.5,433.31 +30.72,71.58,1009.98,50.39,430.46 +9.26,40.11,1024.38,74.81999999999998,460.72 +31.12,68.94,1006.05,68.46,431.92 +29.8,64.69,1006.6,54.43,437.85 +18.4,44.06,1017.36,70.88,456.8 +5.79,45.87,1010.23,95.41,480.97 +14.41,46.18,1016.25,88.88,462.49 +14.09,43.99,1021.02,94.39,468.09 +28.89,70.72,1009.36,70.33,433.02 +29.35,68.51,1007.63,70.67,430.22 +20.63,43.77,1010.71,62.34,448.25 +14.97,42.28,1007.31,79.25,466.62 +27.44,52.3,1008.15,58.92,441.75 +10.77,41.44,1016.72,75.27,479.19 +26.22,65.34,1015.17,47.25,444.06 +13.67,40.71,1016.19,66.15,467.62 +15.99,43.5,1021.34,73.22,460.7 +35.03,68.27,1006.55,43.82,426.22 +20.6,65.12,1015.53,71.57,452.86 +19.27,50.12,1007.61,100.11,447.63 +22.3,50.78,1008.85,81.27,449.86 +24.43,61.25,1011.66,85.24,436.05 +23.57,63.91,1011.65,80.73999999999998,441.93 +27.46,66.54,1002.39,67.09,431.81 +27.2,49.16,1005.33,46.73,440.57 +27.2,65.18,1011.47,47.14,436.99 +29.69,47.93,1002.85,44.76,438.09 +15.67,41.1,1004.1,77.93,466.45 +19.18,58.2,1017.46,76.72,453.2 +21.73,50.32,1008.51,84.62,442.1 +18.3,37.2,1012.23,68.09,470.42 +7.01,37.8,1021.47,62.84,483.95 +22.86,60.08,1017.2,67.11,452.34 +23.95,58.79,1010.45,74.34,448.32 +21.97,58.95,1017.78,76.95,443.61 +12.19,40.23,1017.45,82.07,474.91 +25.35,71.98,1006.83,88.44,435.72 +31.91,69.89,1014.59,54.51,429.29 +17.99,50.16,1009.98,100.09,451.38 +31.62,64.05,1010.94,58.93,439.09 +17.57,46.21,1014.09,80.81,453.29 +25.14,64.63,1020.63,54.0,446.63 +19.86,59.14,1016.12,69.32,449.82 +28.88,73.68,1015.25,47.73,432.93 +11.39,40.27,1009.04,73.13,474.93 +25.59,73.5,1011.19,81.52,435.48 +32.36,73.91,1003.88,59.84,431.92 +17.11,49.78,1007.25,100.09,453.22 +23.27,65.48,1019.05,61.36,443.43 +5.15,40.07,1012.27,63.31,495.35 +25.2,57.5,1015.19,59.62,446.26 +6.4,39.9,1007.75,86.55,486.03 +16.07,47.83,1006.99,86.49,458.18 +8.66,40.11,1032.86,75.31,479.76 +30.71,68.27,1007.76,68.04,428.27 +23.25,59.87,1018.69,66.4,444.23 +13.97,38.47,1015.15,55.28,464.3 +26.47,63.13,1013.72,79.4,441.81 +27.31,59.54,1006.24,71.99,440.13 +27.89,68.12,1012.78,48.72,435.69 +26.12,68.51,1013.06,68.96,433.11 +11.83,44.21,1019.37,85.31,463.62 +11.85,42.07,1017.92,93.45,467.25 +6.97,41.26,1010.6,96.88,484.71 +22.5,45.38,1014.11,65.08,458.19 +23.96,47.43,1008.38,63.55,446.86 +30.75,73.88,1005.62,57.95,436.97 +14.43,41.76,1024.02,83.57,467.33 +13.29,71.14,1019.63,75.09,464.18 +13.48,40.35,1011.71,69.44,474.72 +29.6,71.94,1007.07,62.65,429.02 +10.64,41.04,1025.0,93.59,468.88 +15.86,39.82,1013.12,77.37,466.89 +26.14,69.14,1007.1,88.27,439.03 +14.36,40.0,1016.16,68.79,460.42 +25.95,63.47,1011.77,66.22,445.5 +28.72,68.14,1005.82,46.52,443.26 +18.28,44.2,1018.83,52.88,458.59 +23.7,70.04,1011.13,84.16,436.28 +17.51,41.85,1016.25,72.03,465.05 +24.07,73.45999999999998,1006.61,73.45999999999998,438.41 +22.7,66.44,1011.19,68.36,444.02 +15.55,42.03,1017.41,74.58,460.84 +19.31,67.71,1005.31,77.15,446.23 +23.92,63.21,1012.52,86.51,445.26 +20.75,60.77,1017.91,86.06,448.58 +24.99,48.92,1010.03,41.26,443.12 +31.44,72.86,1003.74,61.45,433.59 +20.65,48.41,1008.38,91.02,447.35 +29.97,70.32,1007.44,53.26,428.42 +26.91,74.98999999999998,1005.64,78.98,437.06 +12.24,34.03,1018.44,69.27,474.18 +10.09,41.01,1019.89,96.55,471.15 +30.05,66.44,1008.46,76.81999999999998,427.55 +14.72,40.83,1009.65,80.98,469.8 +29.0,75.33,1001.6,71.43,432.65 +21.6,43.43,1010.28,61.87,446.4 +24.06,69.94,1005.47,60.46,436.88 +20.92,70.02,1010.23,95.58,444.64 +26.08,48.6,1003.61,57.8,438.61 +4.81,42.85,1013.96,86.94,479.8 +15.6,43.71,1024.88,80.37,463.34 +30.19,64.79,1017.22,42.47,438.41 +16.3,39.63,1004.64,85.61,464.11 +19.46,56.89,1014.02,84.95,447.86 +17.48,44.71,1014.99,36.71,465.61 +13.7,42.86,1030.68,79.77,470.28 +16.77,45.01,1013.47,81.42,458.22 +29.84,58.9,1005.24,56.18,440.93 +12.73,37.73,1021.89,61.76,470.89 +15.69,41.93,1021.3,52.69,468.43 +7.24,41.17,1020.35,80.56,486.76 +24.88,51.43,1011.28,67.38,441.03 +19.69,56.65,1020.86,70.02,454.87 +16.0,42.86,1013.88,81.73999999999998,467.5 +13.56,40.03,1017.73,83.76,472.59 +8.02,39.04,1018.49,68.07,479.53 +9.45,36.71,1024.24,83.28,476.02 +15.99,43.34,1014.2,78.66,465.96 +18.12,50.16,1009.82,100.09,453.29 +6.76,39.22,1013.91,77.0,487.08 +14.53,39.0,1016.48,76.36,464.86 +15.28,40.0,1016.65,65.0,458.76 +25.16,58.82,1009.63,72.62,442.0 +24.91,58.69,1008.22,82.81,435.96 +26.2,71.73,1009.99,74.98999999999998,434.08 +16.45,41.48,1016.64,45.21,454.69 +28.67,69.14,1008.24,72.68,433.79 +28.47,67.69,1004.79,56.51,430.67 +29.91,74.9,1003.36,69.34,434.93 +19.89,51.43,1007.33,92.08,448.98 +15.28,48.14,1012.55,69.65,460.75 +14.02,40.66,1017.05,84.14,465.39 +17.76,40.55,1002.82,73.77,461.8 +15.79,44.89,1010.19,84.61,458.09 +7.65,40.67,1020.14,72.37,491.1 +29.1,70.4,1003.97,77.56999999999998,430.98 +22.47,47.45,1007.62,76.65,447.14 +15.22,41.35,1003.12,95.45,464.56 +26.52,65.06,1013.4,51.78,439.66 +18.93,44.06,1017.58,68.23,454.75 +25.68,58.41,1013.71,70.61,440.78 +24.96,68.12,1011.27,70.22,437.62 +26.89,56.85,1012.27,43.84,436.44 +12.31,40.64,1020.71,94.6,475.65 +27.04,73.67,1006.82,77.45,431.1 +24.98,58.98,1010.34,78.56,441.33 +9.76,39.16,1014.19,85.4,482.38 +22.74,58.41,1013.92,84.03,447.85 +10.12,41.78,1013.43,73.47,477.67 +9.47,41.4,1026.49,87.9,479.68 +15.3,43.14,1015.11,71.35,466.0 +24.38,60.84,1017.85,62.23,440.85 +23.35,59.92,1009.86,88.6,439.82 +6.25,40.07,1020.19,65.24,494.39 +19.93,62.1,1019.94,76.41,450.57 +31.07,70.32,1011.74,65.91,436.16 +16.63,39.16,1005.85,72.02,460.29 +9.32,41.39,1020.03,70.21,481.88 +17.88,46.97,1013.73,67.78,456.77 +12.04,40.23,1018.07,81.28,472.7 +19.47,58.79,1016.8,87.26,450.17 +5.91,39.33,1010.18,95.53,491.49 +18.52,58.41,1013.77,99.89,446.68 +21.23,68.08,1012.82,74.56999999999998,445.41 +11.41,41.4,1019.01,78.59,449.5 +20.57,42.8,1013.1,75.48,460.43 +14.32,44.6,1013.85,68.13,466.36 +15.94,41.76,1023.32,67.17,462.44 +28.19,67.45,1013.97,49.76,434.77 +23.61,59.39,1015.11,78.84,438.08 +24.82,57.19,1007.82,71.46,439.91 +10.61,37.5,1008.8,100.13,472.9 +32.18,65.74,1010.89,46.52,435.58 +19.95,50.66,1013.21,81.98,458.72 +21.49,56.9,1007.47,66.66,452.46 +13.41,40.89,1010.85,89.61,472.4 +9.92,40.64,1020.39,95.41,469.65 +25.9,59.54,1007.3,78.38,439.36 +9.53,41.44,1018.01,80.09,481.83 +13.69,44.85,1016.89,79.87,470.78 +28.36,60.23,1010.05,53.03,441.08 +27.75,66.54,1010.21,46.37,437.58 +14.32,71.14,1019.87,79.15,460.02 +29.87,73.91,1004.53,74.3,431.8 +28.01,73.18,1012.25,75.02,431.02 +30.69,74.16,1012.71,60.89,435.17 +20.18,43.56,1013.14,39.16,462.8 +29.34,74.34,998.58,81.55,430.57 +18.31,46.21,1010.46,82.15,451.75 +24.4,67.45,1015.63,57.1,435.47 +11.01,37.5,1015.08,73.36,474.36 +27.48,61.41,1012.2,45.06,452.24 +9.37,38.56,1016.84,62.07,482.77 +15.11,43.67,1012.06,91.75,467.82 +13.93,44.47,1025.35,81.54,469.25 +21.24,50.32,1008.54,84.83,447.32 +13.33,39.39,1013.93,84.74,471.23 +15.62,58.59,1013.91,97.6,457.3 +8.72,40.72,1023.48,77.87,485.3 +30.57,73.03,1013.75,73.68,437.42 +11.26,44.92,1023.63,88.99,474.69 +9.75,40.81,1026.0,84.44,481.95 +24.17,48.41,1008.46,76.19,442.62 +30.07,70.98,1007.74,75.68,437.55 +30.68,71.25,999.98,68.99,433.47 +21.63,71.85,1009.44,76.89,434.1 +15.34,36.99,1007.87,94.59,464.58 +7.09,43.13,1017.91,92.37,485.04 +7.54,38.56,1016.49,69.1,486.76 +6.05,38.68,1017.46,66.13,483.5 +26.8,68.31,1011.04,61.48,447.85 +27.21,64.05,1010.08,76.69,442.37 +30.36,68.08,1010.76,51.32,429.97 +28.29,69.13,1009.29,58.18,429.28 +28.29,47.93,1002.6,53.23,437.13 +26.21,70.32,1007.0,78.29,430.4 +14.26,43.34,1017.24,81.54,464.62 +13.9,39.54,1007.01,81.33,471.16 +11.61,39.69,1006.85,83.69,470.78 +13.89,43.7,1015.12,64.99,470.88 +21.32,45.01,1012.23,59.94,452.75 +12.59,40.03,1018.76,85.4,471.63 +13.2,41.78,1010.49,64.96,468.58 +12.12,40.0,1018.72,84.42,462.1 +20.99,50.12,1008.82,95.97,448.07 +10.06,39.61,1018.22,70.22,471.86 +25.41,66.49,1014.06,51.09,449.2 +7.94,42.02,1006.22,90.97,480.53 +23.7,69.23,1011.73,73.18,437.15 +27.89,73.17,1009.85,64.22,432.83 +14.68,58.2,1018.5,83.3,458.51 +26.74,69.89,1013.96,51.82,436.02 +13.74,45.08,1024.97,84.79,466.79 +26.18,68.08,1012.92,55.7,436.51 +27.44,47.93,1002.71,59.44,437.76 +31.04,66.54,1003.83,53.05,431.66 +17.83,43.72,1008.64,78.72,453.86 +18.19,43.96,1011.87,79.68,464.58 +12.68,40.69,1014.46,79.77,475.37 +12.41,41.44,1015.46,76.9,472.06 +15.74,71.14,1019.65,65.94,457.29 +15.57,38.78,1013.51,95.38,463.47 +23.13,72.23999999999998,1010.92,92.3,437.67 +9.77,34.69,1027.72,74.98,477.51 +10.63,39.61,1020.0,72.42,476.99 +24.43,58.95,1017.18,57.73,441.4 +26.63,61.47,1008.18,69.0,444.16 +12.24,40.96,1023.52,81.09,474.76 +15.09,43.13,1015.71,54.36,466.87 +13.8,42.99,1007.16,67.28,470.93 +4.41,42.07,1005.54,68.85,488.36 +8.33,39.72,1020.24,82.84,479.12 +10.95,39.22,1015.69,62.3,474.07 +21.97,58.12,1014.21,85.93,448.91 +32.82,68.31,1010.44,41.85,441.06 +16.52,44.88,1017.61,90.08,459.73 +22.04,59.14,1017.34,84.75,442.45 +16.29,44.34,1019.49,59.36,468.8 +9.7,40.11,1026.61,75.48,473.97 +25.91,58.98,1010.02,75.31,442.65 +12.67,41.16,1016.92,92.8,462.35 +5.29,41.38,1020.62,83.83,492.12 +15.87,45.0,1021.92,40.0,470.85 +13.97,52.05,1012.05,85.36,463.64 +18.53,61.27,1019.84,75.22,454.72 +12.07,41.17,1013.54,71.32,479.28 +23.95,66.48,1003.55,73.68,431.87 +12.43,40.27,1007.08,61.56,470.92 +25.26,74.33,1014.79,79.56,433.49 +25.77,68.08,1010.99,73.58,433.46 +24.65,63.86,1018.37,56.15,442.89 +14.95,43.72,1010.28,93.62,459.31 +28.88,71.98,1005.37,74.23999999999998,428.61 +16.81,45.87,1008.7,98.0,455.96 +29.39,68.24,1009.06,66.76,427.96 +25.9,48.92,1009.82,35.42,443.8 +16.18,43.99,1021.97,80.95999999999998,460.81 +16.82,45.0,1022.05,37.28,468.22 +30.01,69.13,1010.11,62.42,425.75 +24.34,59.54,1004.01,87.07,440.63 +15.67,38.62,1015.76,66.29,463.17 +29.07,72.51,1009.24,58.38,439.8 +14.49,44.84,1024.09,86.55,465.72 +21.16,78.11,1006.73,78.11,435.71 +17.82,49.15,1020.73,70.25,457.35 +21.05,63.09,1016.49,91.23,447.45 +28.38,64.05,1010.19,71.84,439.83 +22.02,64.45,1012.57,47.87,454.9 +9.41,41.54,1019.48,82.19,481.59 +12.69,40.71,1021.62,80.19,477.14 +12.72,39.13,1008.36,92.59,467.28 +17.14,58.16,1018.59,77.22,458.61 +24.17,48.78,1018.08,75.14,440.96 +15.74,43.34,1013.38,81.45,463.24 +10.36,43.67,1012.16,77.04,478.27 +28.78,60.07,1014.54,49.03,439.74 +8.25,43.14,1011.3,87.1,479.95 +18.6,68.28,1003.27,84.21,446.98 +21.61,41.54,1014.5,75.62,458.47 +28.14,43.21,1011.82,69.32,436.53 +19.47,43.43,1011.66,69.93,451.38 +19.62,52.05,1012.09,50.02,456.81 +28.55,65.27,1013.34,48.95,437.62 +20.85,48.7,1007.11,87.2,449.57 +13.01,41.49,1019.82,92.86,466.5 +22.98,58.46,1016.06,72.69,445.05 +22.94,61.5,1008.25,73.45,445.31 +29.31,64.84,1010.49,53.97,442.11 +30.52,71.77,1006.22,56.4,426.14 +23.15,66.48,1003.71,76.0,435.62 +10.29,40.0,1021.46,90.6,479.58 +26.97,71.58,1010.13,75.16,433.88 +20.56,59.14,1016.02,68.59,448.82 +6.86,41.38,1021.35,90.78,487.49 +16.72,53.82,1015.46,66.9,458.25 +33.08,69.75,1009.03,43.69,434.98 +6.67,39.37,1019.99,75.61,486.84 +21.99,58.96,1014.09,61.3,453.38 +25.73,62.66,1010.15,54.66,444.85 +21.36,68.28,1007.6,72.37,445.91 +26.11,52.36,1013.9,59.62,453.76 +28.06,70.04,1009.89,66.07,431.7 +26.62,70.36,1005.15,84.99,441.28 +31.42,69.13,1009.34,57.16,425.98 +5.54,41.38,1020.47,82.91,490.07 +14.64,44.92,1025.54,91.12,462.64 +28.74,71.14,1011.53,48.6,430.12 +13.24,54.3,1017.05,81.99,467.81 +17.18,40.55,1000.47,72.03,461.73 +22.63,58.41,1013.69,90.32,445.43 +22.61,54.42,1014.74,75.87,453.86 +25.32,61.25,1011.56,80.09999999999998,436.67 +26.11,73.17,1009.8,65.18,434.94 +21.18,60.1,1011.02,78.19,452.39 +24.66,72.23999999999998,1011.35,77.45,434.33 +20.12,58.12,1015.47,79.38,453.33 +18.76,44.71,1015.15,30.83,462.18 +23.76,58.41,1013.85,85.38,445.85 +26.77,64.45,1013.26,44.56,449.1 +16.05,65.46,1013.92,87.99,456.94 +19.66,45.01,1014.42,60.14,453.45 +19.31,43.56,1013.65,41.54,463.35 +8.14,36.24,1013.15,87.85,480.25 +16.76,53.16,1014.13,81.87,457.98 +26.45,74.33,1013.81,61.7,433.16 +29.2,70.79,1004.8,63.74,425.2 +18.04,44.85,1015.13,48.4,463.31 +22.27,50.05,1007.1,89.34,442.24 +28.26,63.13,1012.0,68.35,440.58 +14.41,40.71,1016.78,69.77,467.01 +27.54,66.93,1017.06,55.2,450.22 +12.66,40.35,1011.37,82.77,473.11 +27.17,67.17,1006.76,81.59,431.73 +28.62,69.98,1013.3,68.53,432.11 +28.59,80.18,1011.36,89.18,431.55 +9.53,40.62,1015.57,75.48999999999998,469.9 +8.83,41.92,1031.8,78.97,483.38 +7.36,41.01,1024.9,97.88,476.8 +10.05,40.46,1018.71,67.38,469.06 +26.55,73.67,1005.74,79.41,433.44 +22.79,50.78,1008.65,58.39,447.12 +14.48,40.83,1009.42,81.73999999999998,469.64 +14.12,40.92,1022.46,73.28,459.76 +18.75,41.1,1001.97,59.6,458.31 +27.87,70.79,1003.96,72.17,428.41 +8.27,35.77,1015.3,73.36,478.13 +22.95,67.79,1009.89,91.69,442.19 +28.0,74.22,1008.68,66.0,433.94 +27.19,64.27,1013.06,58.13,444.54 +25.02,47.45,1008.07,60.42,446.62 +27.83,59.57,1011.22,71.05,443.85 +23.66,61.86,1013.33,83.09,444.27 +30.29,71.58,1010.01,54.03,434.27 +21.95,59.43,1010.29,74.67,442.84 +19.05,44.06,1017.02,73.76,454.28 +26.31,68.51,1013.26,68.66,435.91 +25.2,63.76,1009.78,64.96,438.15 +12.14,48.04,1011.8,100.13,465.08 +19.94,50.78,1008.78,92.07,449.6 +24.22,49.82,1014.61,66.82,452.2 +31.42,70.17,999.3,61.22,430.78 +7.47,40.07,1015.45,50.3,489.59 +27.01,52.3,1007.78,60.38,439.51 +14.84,41.48,1017.26,63.42,460.3 +23.81,73.17,1012.13,86.13,438.11 +14.87,42.18,1015.23,74.41,465.89 +25.0,59.43,1007.84,68.91,438.28 +17.1,43.52,1020.3,70.51,461.51 +6.49,36.3,1016.52,69.1,483.43 +4.43,38.91,1019.04,88.17,491.9 +17.44,44.89,1009.9,80.54,457.67 +13.08,41.74,1020.75,64.44,474.81 +13.2,44.9,1022.43,87.68,468.92 +8.54,38.08,1019.75,71.24,478.31 +8.8,42.32,1017.91,86.8,483.88 +29.87,69.13,1001.08,72.75,426.47 +27.44,59.74,1010.99,56.42,452.0 +12.72,44.9,1007.6,71.8,463.49 +5.85,41.55,1001.95,99.41,484.47 +31.77,76.09,1007.4,73.36,431.69 +25.64,50.05,1006.97,67.72,440.86 +25.54,69.13,1001.64,90.98,428.74 +25.23,64.63,1020.59,52.2,447.28 +27.57,68.31,1010.48,55.87,444.71 +31.74,67.32,1013.69,36.59,436.17 +29.25,69.98,1010.74,57.42,430.45 +24.39,60.84,1018.5,61.73,442.72 +20.8,50.9,1012.07,73.16,457.0 +8.76,41.48,1018.49,74.98,474.3 +24.06,58.2,1017.46,48.04,445.91 +7.78,39.18,1024.62,85.15,484.65 +23.03,44.89,1010.26,59.85,447.81 +15.86,43.67,1011.11,82.24,465.46 +26.3,67.07,1006.26,63.79,433.72 +24.04,60.77,1017.62,75.23,442.25 +25.38,62.96,1019.98,56.88,444.83 +30.28,70.98,1007.51,74.28,432.64 +12.64,40.71,1024.2,65.21,476.37 +21.29,59.04,1012.49,84.23,445.37 +22.56,66.48,1003.82,77.45999999999998,437.73 +31.04,68.31,1010.54,42.74,441.56 +16.23,43.72,1009.96,83.01,457.9 +23.14,58.95,1017.52,66.25,442.27 +29.23,66.51,1011.11,53.12,439.61 +24.96,65.18,1012.68,76.19,436.24 +20.28,57.25,1010.12,88.42,452.03 +28.37,71.64,1007.39,71.06,434.91 +15.21,52.75,1024.32,61.11,458.84 +18.88,44.06,1013.81,68.54,451.13 +30.16,73.17,1010.74,58.99,434.43 +15.0,41.35,1006.6,86.95,467.71 +22.52,66.48,1003.87,78.29,435.02 +27.16,47.43,1009.17,45.79,442.85 +23.63,58.62,1016.45,69.97,445.51 +30.2,71.8,1011.13,60.66,436.94 +16.22,41.35,1000.96,79.59,462.21 +13.31,42.18,1016.0,83.94,466.56 +22.74,61.87,1009.66,55.03,444.59 +13.39,44.58,1016.5,79.26,474.7 +10.22,38.18,1018.01,70.7,474.07 +31.86,69.59,1008.61,59.74,435.72 +23.96,46.93,1013.98,47.22,450.86 +10.77,41.54,1019.94,71.13,477.81 +24.34,62.96,1019.7,61.44,446.09 +27.3,65.12,1016.24,44.87,442.78 +8.36,40.71,1026.34,82.76,487.79 +11.47,40.27,1005.39,77.4,479.44 +32.57,65.74,1011.03,46.27,440.56 +24.05,64.69,1006.63,69.2,438.36 +22.25,43.79,1015.78,52.68,461.93 +16.0,43.34,1013.58,78.87,461.7 +6.03,41.17,1019.81,84.2,488.57 +20.82,52.84,1004.13,79.42,449.59 +29.56,70.4,1006.49,82.95,432.85 +20.99,67.07,1005.17,82.41,442.02 +29.79,77.17,1009.68,64.0,432.84 +18.85,44.63,1009.06,84.75,456.72 +16.64,39.64,1008.7,81.79,463.49 +13.32,44.2,1020.02,78.78,465.57 +27.37,63.31,1012.89,60.11,439.15 +23.35,71.77,1005.99,90.79,434.6 +19.96,56.03,1020.59,64.95,454.67 +21.11,58.12,1015.38,77.78,453.28 +23.81,66.51,1016.96,70.16,438.32 +24.09,63.94,1017.59,51.02,442.92 +16.09,65.46,1013.84,85.52,454.88 +20.1,58.95,1018.46,80.87,446.7 +5.47,40.62,1018.66,83.61,481.56 +31.07,70.98,1007.24,72.03,432.96 +9.28,41.38,1021.96,72.22,486.18 +26.12,63.31,1013.97,51.6,439.77 +13.83,41.49,1020.11,87.29,469.57 +16.53,53.29,1018.64,87.47,463.32 +13.76,45.08,1023.77,80.48,469.74 +24.63,63.9,1014.53,75.23999999999998,440.23 +2.8,39.64,1011.01,82.96,482.66 +24.5,58.66,1011.54,57.92,451.03 +16.13,43.48,1014.41,50.05,459.47 +22.44,63.86,1020.0,64.83,447.3 +29.77,69.98,1013.32,69.6,430.65 +12.72,40.6,1013.45,86.16,471.23 +25.23,66.44,1011.37,51.3,438.28 +27.77,63.87,1017.97,38.77,444.06 +14.07,40.78,1024.67,72.66,456.71 +28.44,69.84,1003.25,68.24,426.69 +20.32,44.6,1015.16,36.35,460.21 +9.82,39.64,1010.79,69.22,477.93 +27.78,70.8,1009.81,79.56999999999998,431.44 +6.61,38.91,1015.77,92.31,484.32 +9.91,39.64,1010.57,75.81999999999998,478.63 +11.64,41.39,1017.36,83.4,479.53 +12.33,37.73,1022.46,59.3,470.11 +26.16,70.04,1009.63,73.22,432.56 +23.86,45.87,1007.71,48.73,446.67 +20.02,58.66,1011.5,76.73999999999998,454.21 +5.12,40.78,1025.45,96.88,481.28 +18.81,61.87,1009.71,70.47,448.49 +13.18,40.03,1017.75,82.29,470.88 +9.16,41.03,1021.3,76.08,484.96 +25.21,50.23,1016.0,56.58,454.64 +15.24,48.6,1007.08,86.49,459.85 +23.53,68.94,1007.53,69.17,437.48 +18.03,58.86,1015.99,89.03,450.33 +9.99,42.07,1018.78,85.68,471.6 +8.94,42.07,1018.9,85.93,473.34 +16.14,54.3,1017.93,65.68,460.73 +29.1,73.4,1011.35,57.31,436.85 +27.04,69.98,1008.5,75.41,433.25 +25.14,60.37,1006.63,77.17,438.39 +21.16,45.38,1014.65,73.06,458.63 +6.29,40.78,1024.75,96.37,478.29 +34.6,64.96,1003.3,34.32,427.65 +15.07,40.69,1015.29,70.98,469.03 +34.51,73.03,1013.73,39.42,439.8 +28.9,68.12,1011.87,46.56,438.53 +17.32,43.7,1015.13,61.66,464.5 +10.94,43.67,1012.36,73.3,477.34 +19.35,43.43,1009.4,66.11,454.02 +25.82,69.68,1012.69,89.94,439.58 +23.08,64.44,1014.85,69.95,448.61 +18.06,43.14,1013.95,62.21,461.27 +13.67,54.3,1015.92,75.42,467.87 +10.57,37.73,1024.36,70.29,474.65 +27.06,72.58,1009.24,90.31,429.18 +17.43,63.09,1019.87,92.77,449.36 +31.65,66.25,1008.57,59.05,437.35 +9.32,37.73,1022.14,79.48999999999998,477.91 +20.34,59.8,1015.18,80.20999999999998,453.54 +28.68,73.77,1004.72,87.01,431.66 +19.5,40.79,1003.8,89.45,457.09 +18.27,50.16,1011.07,95.91,451.76 +25.34,59.39,1014.02,73.58,439.8 +12.35,40.8,1027.35,72.69,476.88 +20.77,51.3,1013.89,88.72,450.97 +20.65,41.67,1012.76,45.27,455.5 +15.23,44.9,1007.75,81.34,456.07 +14.93,42.44,1012.65,86.8,471.24 +10.39,39.69,1003.31,89.6,473.0 +29.78,70.98,1007.82,77.59,436.32 +5.24,38.68,1018.03,78.65,486.67 +10.15,41.62,1015.86,97.4,463.89 +15.33,36.71,1013.99,73.89,468.36 +21.45,60.08,1017.92,72.7,451.49 +10.55,41.26,1007.77,99.1,473.6 +26.18,52.36,1013.46,56.65,453.54 +23.1,66.05,1020.28,80.62,439.03 +17.84,61.27,1020.1,70.68,454.57 +2.58,39.42,1028.68,69.03,488.69 +26.08,76.86,1003.3,79.48999999999998,436.85 +15.86,40.66,1016.23,86.74,455.85 +18.8,39.72,1001.24,63.8,459.36 +27.53,70.32,1007.75,49.31,433.72 +32.31,62.04,1010.45,38.01,449.65 +28.52,64.96,1005.9,70.79,431.36 +29.25,71.94,1007.18,63.62,427.49 +27.76,44.89,1009.4,50.15,442.83 +28.41,61.47,1008.94,56.56,442.54 +26.42,71.06,1008.12,87.32,435.6 +8.05,40.62,1018.16,73.67,477.2 +20.61,44.63,1008.54,77.54,456.68 +24.43,67.25,1017.99,74.27,436.5 +25.61,52.36,1014.1,62.9,451.42 +23.72,66.48,1003.61,73.75,436.62 +19.11,60.29,1017.1,76.62,454.16 +13.54,40.69,1015.85,77.55,471.05 +32.39,74.16,1008.53,61.09,431.17 +14.52,44.84,1023.51,88.51,466.88 +28.15,71.94,1006.73,68.21,427.69 +13.67,41.48,1017.51,63.54,463.97 +14.73,39.82,1012.67,80.81999999999998,470.41 +21.36,52.3,1007.95,79.38,448.13 +18.84,61.27,1019.64,71.95,454.47 +25.54,61.08,1013.14,71.15,447.06 +27.61,69.68,1012.79,77.01,438.31 +11.53,41.39,1018.39,85.52,474.49 +13.16,43.41,1016.43,79.47,465.6 +7.14,44.71,1019.98,71.9,487.71 +12.12,38.28,1013.7,91.27,469.59 +11.44,40.55,1023.37,88.43,477.68 +31.98,73.42,1010.66,60.06,432.2 +29.8,69.34,1009.36,64.74,437.65 +25.19,64.44,1014.75,64.38,444.35 +17.48,52.9,1020.03,76.47,458.34 +14.2,38.62,1017.83,77.56999999999998,465.29 +23.55,73.18,1011.85,87.97,437.88 +27.94,49.16,1004.22,35.46,436.75 +28.68,61.86,1011.78,62.67,440.57 +32.96,68.31,1010.39,42.33,443.57 +23.43,54.42,1013.58,70.99,454.86 +31.6,73.17,1010.05,43.48,433.37 +27.95,77.54,1010.12,78.97,434.7 +13.07,40.83,1010.0,84.84,471.19 +8.26,40.96,1025.23,89.22,485.73 +14.38,44.78,1010.8,66.58,459.66 +18.59,39.54,1008.56,68.61,462.56 +24.94,74.33,1014.3,75.34,435.21 +26.08,70.32,1012.32,89.0,434.24 +31.16,67.45,1014.69,32.25,428.35 +11.36,41.48,1012.8,76.16,465.37 +31.4,70.32,1011.62,65.01,433.42 +9.76,40.71,1020.88,91.82,470.95 +25.32,63.77,1014.55,74.69,441.5 +15.8,41.1,1003.0,77.36,465.87 +19.66,51.43,1010.17,84.19,459.12 +28.62,59.14,1016.36,53.1,436.09 +9.51,39.22,1015.3,72.41,474.12 +31.35,68.67,1005.26,66.85,433.73 +13.04,40.69,1015.96,82.37,473.49 +18.5,46.93,1015.0,66.81,455.63 +14.57,25.88,1008.92,69.16,464.11 +25.01,66.56,1004.55,82.46,434.74 +17.79,44.9,1020.5,69.72,457.72 +20.78,60.84,1018.66,80.4,445.82 +32.26,73.68,1014.75,60.9,426.48 +13.18,43.72,1010.59,99.09,464.7 +16.26,44.89,1010.48,86.57,456.86 +14.44,42.32,1015.61,76.84999999999998,462.13 +19.12,45.01,1014.0,59.95,453.24 +8.67,40.77,1011.81,89.4,479.23 +13.75,41.49,1019.9,88.23,469.02 +22.84,61.87,1010.63,51.67,442.72 +23.86,66.54,1005.23,90.89,432.17 +8.22,41.03,1021.76,82.97,485.5 +25.57,66.54,1005.22,83.48,430.92 +28.85,57.19,1008.2,58.4,436.8 +23.33,72.98999999999998,1009.33,89.41,440.04 +5.23,35.57,1026.23,79.38,488.5 +20.21,60.84,1018.5,82.73,447.73 +7.51,41.01,1024.61,97.41,477.61 +28.91,70.72,1009.7,67.5,439.94 +24.49,60.27,1018.96,72.62,440.87 +13.5,54.3,1016.2,77.45999999999998,468.92 +16.91,43.96,1013.32,79.87,465.86 +8.42,37.49,1009.22,82.15,478.87 +11.79,45.09,1013.16,89.17,469.49 +19.69,59.14,1015.99,70.33,448.69 +23.04,63.86,1019.83,59.78,446.22 +16.02,39.54,1007.73,72.81,466.15 +24.22,68.51,1013.23,74.95999999999998,440.01 +24.09,73.68,1014.93,94.55,441.34 +7.57,37.49,1009.73,83.07,481.98 +9.45,41.4,1027.34,86.66,475.49 +28.63,66.56,1005.88,64.73,427.35 +23.61,43.77,1011.81,56.08,444.55 +12.5,45.51,1015.8,82.82,469.69 +29.0,69.68,1012.78,66.09,442.79 +21.86,60.27,1016.06,90.48,446.31 +6.28,43.02,1013.72,88.13,487.17 +30.25,68.24,1006.58,31.9,432.05 +11.8,40.66,1017.13,97.2,464.43 +19.27,65.12,1015.63,73.48,449.42 +22.37,41.54,1013.74,72.20999999999998,459.06 +23.34,73.5,1011.43,89.74,441.14 +18.58,49.25,1019.92,60.24,452.94 +13.26,45.51,1015.99,69.82,472.17 +23.77,61.87,1009.8,54.83,445.72 +10.35,40.27,1005.09,92.42,477.8 +26.04,68.08,1010.82,75.58,430.32 +8.75,40.22,1008.96,90.53,482.8 +31.7,69.13,1000.29,46.27,427.95 +26.42,59.39,1013.95,66.03,438.54 +17.98,39.63,1005.42,82.12,466.69 +18.85,48.06,1012.52,67.88,451.77 +21.38,58.33,1013.05,72.75,446.8 +26.35,49.5,1012.67,41.34,458.41 +7.41,39.16,1015.23,90.66,486.91 +30.26,71.77,1006.24,58.98,429.27 +27.57,71.32,1002.59,76.68,436.61 +21.32,49.02,1008.81,85.81,445.65 +29.67,73.67,1006.48,64.98,429.28 +10.31,44.63,1020.55,88.62,471.78 +12.03,40.1,1015.32,85.39,474.94 +30.87,67.32,1013.78,34.54,436.96 +6.65,40.77,1021.79,88.84,482.9 +25.12,77.95,1009.26,82.95,433.4 +8.23,43.79,1016.11,82.11,484.67 +26.23,63.56,1013.57,65.81,440.8 +23.15,69.48,1011.07,85.83,436.16 +20.47,58.16,1016.97,68.6,453.99 +32.96,73.03,1013.56,54.03,438.93 +26.23,70.72,1009.73,73.44,445.28 +25.57,62.96,1019.92,58.34,444.81 +24.44,59.21,1017.36,61.45,445.82 +19.7,43.79,1015.93,47.39,464.41 +14.29,39.59,1012.36,92.38,463.13 +18.97,44.78,1007.87,47.98,463.46 +24.1,52.84,1006.47,47.58,444.69 +22.22,48.98,1015.87,53.18,447.1 +29.82,43.21,1011.52,63.54,433.31 +22.92,63.94,1019.28,42.69,444.22 +24.02,70.94,1008.0,79.55,441.57 +14.84,43.69,1016.31,68.67,472.07 +29.44,64.33,1011.4,61.78,442.32 +26.13,47.93,1002.81,66.19,441.28 +21.96,48.6,1004.87,76.27,446.56 +19.45,58.95,1017.79,93.46,445.1 +25.07,56.85,1011.25,51.99,442.44 +12.26,41.5,1014.87,89.41,471.13 +15.86,49.69,1015.59,87.26,462.84 +29.0,69.13,1001.22,52.96,425.5 +20.37,60.08,1017.44,76.33,454.47 +27.35,66.05,1017.62,55.26,439.6 +25.76,71.06,1007.93,90.4,433.75 +6.89,39.37,1020.21,74.17,486.9 +19.83,59.44,1012.98,91.24,446.15 +24.18,66.48,1003.3,70.99,433.37 +11.63,40.55,1022.89,87.12,474.67 +28.03,68.67,1005.52,58.16,438.8 +24.2,60.95,1014.82,59.42,448.43 +10.3,41.46,1018.21,86.17,479.65 +26.54,71.98,1005.8,91.16,431.78 +26.47,47.43,1009.09,54.94,439.4 +14.01,42.74,1029.16,68.31,466.15 +5.63,39.22,1013.35,77.67,486.83 +21.46,46.63,1012.97,71.29,452.1 +19.4,42.44,1013.19,58.63,459.76 +27.37,76.09,1007.52,89.12,433.34 +32.43,68.31,1010.09,42.22,439.75 +18.26,59.15,1012.38,85.74,452.03 +26.53,65.61,1014.29,50.9,442.64 +22.49,56.9,1007.65,63.34,449.64 +30.92,80.18,1010.11,72.47,432.35 +6.17,41.31,1002.49,87.59,481.27 +25.3,59.43,1009.15,58.3,442.5 +25.13,59.44,1012.38,77.92,445.59 +25.69,59.54,1004.05,81.69,439.06 +24.97,68.61,1011.0,55.04,453.26 +12.59,39.18,1024.18,67.57,471.32 +17.78,58.95,1016.32,89.61,450.89 +23.68,51.3,1011.86,71.24,451.67 +21.59,48.06,1012.72,77.13,446.83 +21.47,70.32,1011.72,88.36,440.0 +13.79,45.08,1023.3,83.59,465.69 +29.63,69.59,1008.3,72.53,438.64 +29.77,67.07,1005.82,48.38,433.89 +16.58,41.79,1006.24,72.95,452.95 +21.4,59.21,1017.84,78.01,444.15 +14.09,44.84,1023.65,94.29,466.12 +14.87,38.28,1014.65,80.23999999999998,467.29 +18.48,52.05,1012.41,68.2,458.62 +24.41,69.48,1008.34,76.13,435.38 +16.53,46.18,1010.2,95.42,458.67 +3.4,39.64,1011.1,83.43,459.86 +14.26,44.47,1028.11,66.81,465.22 +10.53,37.5,1008.55,99.91,472.32 +10.82,39.96,1025.53,95.89,468.57 +16.06,47.45,1009.97,88.09,450.62 +7.84,43.52,1022.23,96.51,483.79 +16.48,48.92,1011.84,64.16,458.67 +28.37,75.59999999999998,1017.48,55.19,439.25 +28.42,73.5,1011.23,72.79,435.59 +14.29,46.18,1017.01,87.29,464.73 +10.16,41.62,1013.15,94.3,465.05 +6.13,39.48,1005.17,53.5,484.12 +24.19,50.23,1015.73,59.77,458.31 +30.12,69.71,1009.1,52.02,435.85 +20.04,58.2,1017.56,74.31,448.92 +22.8,69.23,1011.8,76.95,439.3 +13.68,44.47,1027.81,69.53,469.37 +25.97,68.12,1013.11,61.97,437.11 +28.68,70.32,1008.51,45.73,430.48 +28.07,70.32,1007.17,67.02,430.29 +30.9,69.4,1003.53,66.69,425.3 +31.45,68.27,1007.56,64.79,430.81 +8.35,40.77,1011.77,90.25,478.82 +23.46,47.01,1014.41,69.19,457.76 +19.11,44.85,1014.76,45.86,464.66 +25.44,69.59,1008.22,80.73,433.97 +6.39,35.57,1025.53,77.23,487.69 +23.63,73.5,1011.46,89.39,438.21 +9.46,41.4,1026.78,87.58,480.82 +20.19,62.26,1011.37,89.69,443.58 +26.26,73.06,1009.35,91.65,435.41 +28.18,64.84,1009.22,56.04,443.65 +28.93,72.98999999999998,1007.23,64.41,434.45 +18.33,52.08,1001.78,100.09,448.23 +26.87,69.23,1012.71,54.54,433.89 +13.3,37.9,997.41,91.51,465.61 +19.81,56.65,1020.62,67.99,457.72 +27.35,77.95,1017.43,73.36,437.61 +19.67,44.89,1009.43,73.88,455.2 +13.83,41.23,993.31,93.94,466.2 +15.28,44.58,1016.45,83.07,467.92 +30.2,70.02,1009.85,63.39,437.48 +29.53,72.39,998.47,76.05,431.69 +10.51,37.5,1010.7,96.29,474.24 +11.09,42.44,1014.18,92.81,478.37 +27.29,62.66,1007.63,58.02,439.58 +28.79,68.51,1013.02,62.84,432.51 +30.83,77.3,1001.7,57.85,435.87 +18.89,66.86,1012.38,71.96,454.02 +18.26,58.96,1014.04,69.7,457.43 +27.5,65.34,1014.93,47.46,439.59 +21.99,51.19,1009.19,82.58,446.93 +22.65,57.85,1012.6,68.52,445.36 +14.28,43.02,1012.97,49.44,467.83 +18.23,45.01,1012.24,73.86,454.06 +28.5,72.98999999999998,1007.02,67.13,433.24 +16.66,36.71,1013.68,70.66,466.07 +32.91,73.56,1007.02,55.03,434.03 +13.88,48.79,1017.28,79.4,464.14 +15.34,40.73,1018.03,86.19,458.55 +13.09,41.62,1011.82,83.14,457.29 +19.02,52.72,1025.44,51.9,461.57 +14.16,40.89,1010.78,82.86,471.15 +6.76,37.49,1011.66,80.91,484.85 +25.03,61.86,1012.84,80.84999999999998,439.55 +11.21,39.85,1013.01,75.55,480.61 +26.56,52.3,1007.4,62.04,439.25 +5.84,40.62,1018.58,82.73,482.1 +22.69,59.44,1012.97,83.47,446.43 +10.37,37.83,1006.5,90.99,470.66 +21.47,58.79,1017.0,76.97,446.33 +8.57,40.23,1017.53,90.46,484.17 +22.29,61.27,1019.05,58.23,449.81 +21.55,44.05,1005.69,84.05,443.48 +18.01,62.26,1011.89,89.29,451.14 +28.98,73.42,1011.25,72.9,432.2 +7.55,38.08,1019.37,76.31999999999998,485.49 +24.29,62.91,1013.04,65.85,442.18 +14.08,40.1,1015.48,82.81,469.33 +21.51,48.92,1010.36,38.27,455.11 +14.09,45.87,1009.05,84.09,465.6 +27.93,73.68,1015.41,49.95,435.95 +27.39,66.93,1017.16,53.75,441.04 +9.38,41.44,1015.09,86.8,481.96 +18.84,67.32,1012.63,81.89,449.21 +17.86,52.9,1015.71,67.99,457.42 +23.64,69.94,1005.2,64.53,439.66 +9.39,40.11,1029.14,77.29,473.05 +26.62,71.73,1009.32,80.09999999999998,431.93 +30.17,74.22,1007.46,49.27,432.0 +15.44,39.54,1007.49,82.14,469.28 +20.58,50.9,1011.89,72.56,452.6 +28.86,73.4,1011.37,58.76,439.33 +27.29,71.32,1006.39,81.59,435.25 +9.68,39.96,1026.09,99.28,470.22 +20.24,58.41,1013.73,99.59,449.49 +26.93,75.23,1010.19,62.12,434.1 +20.37,69.48,1011.04,84.31,445.81 +33.59,79.05,1007.79,63.55,436.51 +9.29,34.03,1018.84,74.81,483.74 +25.55,71.64,1009.09,79.34999999999998,439.37 +25.82,66.49,1013.2,60.32,434.35 +23.38,65.06,1014.12,59.36,443.8 +13.62,40.2,1014.2,85.05,465.74 +8.22,40.77,1009.11,95.61,480.38 +10.48,37.5,1009.81,95.26,474.57 +20.54,68.12,1012.23,81.06,440.28 +23.68,59.27,1010.75,83.82,440.44 +27.88,62.66,1009.51,56.44,441.32 +7.51,41.66,1015.9,78.31,485.58 +24.8,65.48,1018.56,62.05,442.02 +12.56,43.41,1016.93,81.02,467.19 +8.9,39.96,1026.31,95.46,474.49 +29.52,75.33,1002.62,70.64,433.39 +17.44,45.01,1013.65,75.13,456.08 +22.33,70.79,1006.02,93.35,436.74 +19.97,59.14,1016.05,70.58,450.06 +14.26,44.2,1019.81,76.45999999999998,462.87 +21.49,68.28,1004.68,80.64,438.0 +24.52,59.15,1014.03,74.83,439.55 +19.94,44.63,1004.73,78.48,455.58 +20.53,49.16,1007.11,90.02,444.69 +11.34,45.17,1018.32,96.24,472.13 +30.8,69.14,1007.68,63.78,433.62 +10.54,34.03,1018.71,74.0,478.77 +29.32,71.29,1008.34,51.51,432.17 +8.81,43.14,1012.46,73.98999999999998,481.56 +26.69,79.73999999999998,1008.29,73.79,431.41 +28.29,68.08,1010.77,53.92,430.93 +15.86,43.02,1012.18,40.33,466.6 +14.69,54.3,1018.01,73.4,462.63 +19.09,39.39,1013.36,59.14,466.13 +32.15,69.98,1013.3,55.13,429.86 +29.19,70.32,1008.28,55.42,427.9 +12.28,40.92,1023.23,89.14,460.33 +21.92,64.63,1020.42,65.22,452.49 +14.28,39.39,1013.82,77.52,469.92 +2.71,39.42,1026.66,81.11,489.3 +19.78,62.1,1019.72,78.36,450.43 +25.15,68.61,1011.03,53.59,447.91 +29.38,69.68,1011.35,49.25,430.2 +11.74,40.6,1013.91,90.57,473.84 +24.14,41.1,1002.1,38.49,450.13 +5.34,39.22,1012.73,81.42,472.66 +5.71,40.77,1022.49,87.9,487.48 +27.01,65.06,1013.16,53.02,439.81 +27.08,66.05,1017.33,54.68,439.47 +24.95,64.33,1011.34,81.05,440.97 +13.72,45.01,1014.07,77.0,464.59 +7.61,43.22,1014.8,86.92,478.55 +28.04,69.14,1007.16,80.38,436.37 +21.11,59.39,1013.87,85.29,446.02 +11.29,41.5,1013.39,89.15,476.04 +32.29,64.96,1002.13,42.61,430.58 +22.05,59.92,1009.06,93.74,437.9 +27.07,65.59,1012.14,63.93,442.71 +25.5,63.91,1009.4,75.22,444.26 +22.07,70.72,1010.52,82.96,442.88 +13.8,44.21,1022.93,83.37,468.97 +32.0,65.74,1011.22,46.16,440.26 +9.73,38.56,1017.18,61.81,479.78 +26.35,59.87,1013.24,73.63,447.26 +13.44,37.85,1009.78,99.13,469.89 +19.55,42.04,1009.99,67.87,466.4 +17.29,44.06,1016.24,77.56,461.38 +8.949999999999998,43.56,1015.04,81.53,485.21 +4.62,38.44,1016.09,73.14,486.84 +32.27,71.85,1007.88,56.01,427.56 +23.27,67.9,1006.17,71.01,447.25 +9.3,38.18,1017.19,71.51,480.14 +14.43,44.47,1028.57,70.7,466.56 +30.62,66.75,1017.68,53.68,432.66 +27.37,71.06,1008.4,87.52,432.14 +17.82,56.89,1014.24,77.73,453.83 +26.49,59.44,1012.09,57.84,441.16 +18.15,58.46,1017.42,88.24,449.48 +23.51,63.78,1016.1,69.79,446.58 +24.61,62.96,1020.1,63.83,445.79 +17.92,44.2,1018.97,53.8,455.37 +24.59,60.37,1005.31,76.81,438.09 +30.08,67.25,1017.6,53.09,434.01 +22.07,60.08,1017.68,71.23,452.56 +12.25,48.79,1017.44,88.91,469.52 +24.81,63.73,1009.34,83.61,440.43 +17.08,58.86,1016.04,87.46,449.98 +23.22,63.07,1012.91,77.59,446.62 +23.97,64.05,1012.23,90.18,447.44 +10.25,41.26,1007.44,98.08,476.03 +27.63,70.17,1000.42,85.22,432.46 +21.24,44.57,1008.72,72.56999999999998,447.03 +12.43,43.22,1008.93,77.42,468.01 +15.27,39.54,1010.64,81.91,464.49 +27.28,72.58,1009.21,89.96,431.27 +23.45,69.05,1003.03,66.41,440.24 +24.26,68.14,1005.09,59.49,438.79 +8.47,40.46,1019.87,78.19,475.06 +14.14,39.82,1012.46,81.15,472.52 +24.29,63.57,1010.29,87.3,443.28 +28.59,68.08,1013.2,42.96,436.7 +29.24,69.05,1003.12,43.18,432.56 +15.48,44.99,1011.94,69.95,463.92 +18.41,49.69,1006.66,80.55,454.97 +23.9,61.47,1009.01,81.05,438.73 +16.07,44.58,1019.52,67.95,471.36 +23.48,66.44,1011.28,61.11,443.21 +29.3,69.48,1010.1,53.69,429.42 +27.7,72.23999999999998,1011.02,67.6,434.56 +26.05,58.59,1012.32,49.83,452.41 +13.55,40.1,1014.57,81.48,469.57 +12.99,43.8,1023.16,64.65,466.95 +24.65,72.43,1007.99,90.05,437.59 +29.26,67.17,1006.6,70.58,436.42 +9.94,40.46,1018.9,68.51,473.74 +26.85,57.19,1007.9,60.04,438.01 +21.9,66.54,1004.76,89.99,439.06 +22.72,65.61,1014.64,70.53,449.04 +26.39,71.25,999.8,89.12,430.34 +10.42,39.35,1015.21,89.75,478.52 +31.87,70.94,1006.94,50.78,429.41 +19.93,56.65,1020.7,62.82,456.53 +7.17,41.92,1031.97,83.86,485.08 +18.73,40.12,1013.19,74.12,454.71 +23.99,68.12,1012.92,70.68,437.14 +23.92,61.87,1009.63,54.16,441.15 +21.44,63.09,1016.56,90.11,444.19 +15.21,43.56,1012.92,56.61,467.0 +9.66,41.82,1033.19,73.19,477.67 +18.77,58.66,1010.34,87.25,454.54 +30.02,68.24,1009.8,65.73,429.5 +13.27,40.27,1006.1,40.04,473.88 +25.65,69.45,1013.95,50.42,436.24 +21.94,50.32,1008.44,86.98,444.89 +10.46,41.26,1020.65,92.24,473.76 +25.74,68.94,1007.7,67.56,433.45 +31.58,66.54,1003.26,54.0,429.73 +27.17,73.5,1010.36,73.29,435.22 +29.04,60.07,1014.88,47.23,438.5 +12.68,41.16,1020.09,83.32,464.93 +24.58,49.02,1008.85,79.31999999999998,442.47 +19.69,56.65,1020.72,70.86,456.18 +21.5,45.38,1013.88,64.28,460.18 +7.14,39.4,1011.68,91.84,482.82 +27.97,58.84,1002.25,57.88,446.11 +14.59,42.44,1012.7,83.92,470.86 +7.39,39.85,1011.63,83.61,487.84 +25.2,65.59,1013.0,71.34,439.14 +21.35,58.16,1017.21,67.66,452.83 +23.97,64.33,1010.54,84.65,443.87 +9.17,40.67,1019.03,66.21,487.33 +22.12,60.77,1018.01,83.87,443.97 +19.62,43.56,1012.89,37.6,463.33 +11.94,44.6,1018.69,85.33,468.53 +13.49,41.78,1010.66,63.34,467.92 +26.53,65.18,1012.77,64.37,437.39 +33.24,74.34,1002.58,45.05,435.5 +19.83,59.21,1012.67,96.42,440.03 +22.2,59.21,1017.87,73.34,445.29 +7.75,38.06,1020.83,83.39,483.56 +14.91,39.28,1014.57,75.23,469.34 +8.55,36.25,1029.54,85.23,480.68 +20.37,52.05,1012.34,62.57,456.11 +18.11,58.95,1016.61,89.17,454.29 +6.76,40.62,1015.67,87.16,478.56 +8.44,41.17,1019.9,70.72,486.15 +9.64,39.35,1015.1,91.76,479.81 +13.69,34.03,1018.45,65.76,469.12 +23.03,68.08,1012.63,70.37,441.71 +29.98,67.22,1014.22,52.69,445.3 +25.58,63.47,1011.44,66.81,443.66 +24.54,60.29,1017.42,58.94,447.67 +26.61,69.13,1002.05,51.97,430.17 +16.2,38.73,1002.14,75.03,467.89 +23.63,73.18,1012.29,88.81,437.7 +12.03,41.58,1015.09,90.43,464.02 +11.42,40.43,1025.5,75.84999999999998,490.02 +21.71,58.05,1013.07,85.75,449.38 +6.77,38.18,1017.8,81.13,484.31 +12.19,40.23,1017.76,81.44,474.92 +12.93,43.13,1014.91,55.7,474.88 +23.69,65.59,1010.85,88.92,439.66 +25.59,61.08,1013.19,77.28,443.91 +18.77,49.21,1012.2,58.69,454.86 +14.19,43.71,1024.38,83.03,467.8 +22.3,67.25,1017.33,75.84999999999998,453.27 +15.12,43.79,1016.37,75.62,470.11 +27.19,71.32,1008.97,88.43,437.92 +14.49,41.16,1000.5,82.17,465.24 +6.71,40.96,1022.71,91.89,486.58 +14.8,44.92,1024.06,91.67,464.01 +10.22,39.16,1015.71,96.2,478.45 +19.51,66.51,1015.28,80.75,448.04 +22.19,60.37,1008.45,92.43,440.75 +28.06,68.24,1010.27,69.72,429.47 +25.24,68.28,1000.26,78.17,435.9 +21.81,65.46,1013.97,52.16,444.66 +19.65,45.01,1014.18,56.77,451.63 +26.68,59.92,1009.94,70.57,438.67 +12.04,40.1,1014.42,89.65,474.28 +23.25,56.9,1006.82,76.37,442.76 +27.81,66.51,1016.11,48.48,439.48 +26.91,65.34,1014.19,50.7,443.6 +16.05,43.14,1010.67,79.36,463.06 +28.54,72.98999999999998,1007.42,67.87,432.0 +15.75,36.99,1007.67,93.8,464.38 +23.73,61.02,1009.71,78.7,442.22 +30.04,67.25,1017.65,52.84,435.17 +18.4,44.92,1024.88,64.89,458.36 +23.05,48.98,1015.64,49.33,446.05 +16.7,46.18,1011.2,96.84,456.2 +14.39,44.21,1019.77,85.7,465.03 +10.04,39.13,1011.26,88.91,474.61 +19.1,56.53,1020.18,76.38,455.52 +17.35,39.39,1013.18,67.67,467.85 +29.91,70.02,1010.18,64.1,437.63 +25.56,75.59999999999998,1017.37,69.31,442.2 +16.59,43.56,1012.88,59.61,465.03 +15.99,39.63,1006.09,89.92,464.95 +17.19,43.14,1014.34,68.62,464.72 +32.22,70.8,1009.9,62.03,433.07 +23.01,58.79,1009.71,84.22,444.64 +19.62,58.79,1017.59,87.39,446.29 +23.09,63.76,1009.82,72.36,443.86 +35.1,68.27,1006.96,43.51,426.3 +10.07,40.92,1021.43,97.15,467.01 +27.76,75.33,1003.69,79.62,433.03 +5.18,41.31,1000.59,92.14,485.2 +25.32,71.94,1009.94,62.93,435.06 +21.24,41.67,1012.6,49.27,459.81 +8.86,40.8,1028.18,91.0,483.36 +25.64,47.01,1014.81,62.29,454.48 +10.41,41.01,1020.12,94.27,472.82 +15.29,41.1,1005.75,85.53,467.99 +15.25,41.17,1016.0,62.05,468.76 +7.11,43.13,1018.96,87.82,486.11 +28.35,70.32,1009.22,47.13,427.21 +28.53,76.86,999.08,75.77,431.64 +27.79,71.85,1008.95,87.35,427.67 +17.95,49.21,1012.05,59.44,455.1 +14.97,43.67,1011.13,87.33,465.54 +11.75,71.14,1019.36,75.68,466.56 +10.45,39.61,1020.23,73.39,477.41 +27.02,71.77,1006.38,72.09999999999998,428.1 +25.77,63.31,1012.76,65.98,439.98 +12.5,41.38,1021.87,57.59,474.4 +21.74,70.32,1011.88,85.95,439.19 +19.94,58.96,1014.16,66.27,455.55 +10.1,41.4,1024.29,85.94,474.28 +29.27,66.85,1011.11,63.25,440.98 +26.6,63.07,1011.97,61.3,442.25 +27.57,70.36,1007.18,71.1,441.86 +27.82,59.15,1012.74,42.78,442.0 +28.26,72.43,1006.68,72.3,426.2 +29.13,68.3,1014.96,37.08,437.25 +6.64,35.19,1019.83,76.01,484.03 +26.29,68.24,1010.71,76.95,429.71 +5.66,35.79,1013.86,94.42,484.15 +19.76,58.79,1017.37,89.09,449.76 +13.87,45.08,1024.42,81.69,465.48 +20.21,54.9,1016.82,66.56,454.23 +26.81,74.9,1003.99,79.88,435.56 +26.82,69.23,1013.28,50.86,436.36 +12.22,40.78,1024.02,85.46,464.12 +25.85,70.36,1005.59,78.23,433.06 +18.01,54.9,1017.04,77.81999999999998,455.91 +11.2,41.38,1021.65,61.89,476.87 +28.25,66.54,1011.02,43.77,439.67 +12.28,41.49,1019.73,94.79,467.44 +32.98,73.88,1006.31,47.55,440.28 +25.51,67.69,1004.53,80.03,433.02 +12.22,41.2,1016.81,81.22,474.96 +18.41,42.04,1011.69,64.88,465.64 +19.4,64.63,1020.38,81.09999999999998,453.84 +29.29,70.02,1010.13,46.93,438.84 +33.12,68.31,1010.3,42.29,441.13 +5.74,37.8,1021.37,74.47,490.81 +8.86,36.71,1025.64,79.65,478.88 +15.09,39.52,1017.05,72.43,469.8 +28.61,52.84,1006.0,45.73,437.39 +18.31,42.23,1012.88,79.31999999999998,464.45 +10.18,40.81,1015.79,81.42,475.13 +18.02,49.78,1003.86,100.09,451.41 +12.38,48.04,1012.78,100.13,465.99 +24.65,52.36,1014.76,66.63,455.68 +24.86,72.39,1001.15,90.24,440.85 +30.54,69.14,1007.25,70.46,435.46 +15.5,49.25,1021.41,77.92,453.99 +13.41,45.0,1021.65,45.24,478.96 +7.65,41.01,1024.31,97.17,475.89 +27.49,63.76,1010.09,62.8,436.73 +25.14,49.02,1007.56,79.02,438.53 +7.14,41.22,1016.6,97.09,435.58 +30.75,73.5,1011.02,54.76,429.18 +23.05,65.94,1010.99,69.73,442.39 +19.38,54.9,1017.08,70.46,454.1 +17.46,39.99,1008.52,69.73,461.01 +18.97,43.43,1012.72,75.69,453.2 +13.75,40.66,1016.41,93.31,461.81 +25.42,68.08,1011.2,76.58,433.82 +14.08,40.73,1017.52,91.49,461.58 +15.36,41.35,1002.4,91.67,465.01 +25.37,59.14,1017.27,78.06999999999998,437.19 +20.74,58.12,1015.43,77.88,449.91 +25.44,75.23,1010.71,66.44,436.67 +30.06,67.25,1017.63,53.59,435.02 +24.23,58.79,1009.8,75.75,444.01 +29.41,64.05,1009.82,67.4,444.82 +12.24,41.2,1012.48,89.85,473.22 +24.2,50.78,1008.74,59.32,443.09 +25.33,71.32,1007.05,85.31,434.68 +23.83,71.37,1002.04,64.78,443.29 +19.72,51.19,1008.51,95.28,446.01 +29.97,67.9,1006.09,61.6,434.14 +26.39,66.05,1018.24,61.27,442.22 +17.51,53.16,1013.13,82.86,457.45 +27.02,61.86,1012.38,70.28,442.67 +18.59,65.06,1015.75,80.72,450.4 +9.6,37.73,1021.87,77.75,481.03 +12.87,45.51,1015.3,86.67,475.77 +34.24,74.67,1016.24,25.56,425.58 +17.33,53.16,1013.77,82.77,459.78 +22.29,43.79,1015.68,41.75,461.23 +30.3,73.67,1005.57,58.74,431.57 +31.24,71.98,1004.66,57.17,426.93 +13.98,54.3,1015.58,74.91,466.52 +29.45,75.59999999999998,1018.12,50.68,437.31 +26.58,59.39,1014.49,65.87,439.46 +8.279999999999998,40.77,1011.55,89.79,480.15 +7.26,40.69,1020.43,90.22,474.91 +18.15,41.23,993.82,61.21,456.32 +24.68,48.06,1013.83,54.97,447.96 +11.55,42.34,1020.78,94.56,469.13 +15.25,43.02,1012.04,41.43,467.23 +26.65,63.78,1015.32,53.95,440.26 +14.49,42.86,1013.94,88.2,468.4 +32.77,71.32,1007.68,42.39,436.95 +11.87,44.6,1018.81,84.68,468.47 +28.61,69.84,1004.24,67.74,429.91 +29.3,74.16,1007.72,81.92,431.32 +14.84,44.63,1019.28,57.37,466.0 +24.78,50.16,1004.56,70.22,448.51 +28.42,73.4,1011.39,62.72,438.25 +28.29,68.67,1005.46,69.22,436.4 +16.0,48.78,1013.9,88.64,458.27 +10.59,37.5,1013.14,81.56,471.38 +10.66,41.93,1016.12,94.16,479.61 +19.67,60.77,1017.33,88.13,444.87 +30.18,68.24,1009.31,64.06,427.38 +32.16,68.14,1004.86,37.77,429.64 +7.74,39.96,1025.78,95.81,475.23 +27.36,66.54,1011.31,45.3,436.69 +13.07,38.47,1015.16,57.26,468.9 +9.93,41.62,1013.76,96.02,464.64 +15.89,38.73,1001.45,74.37,465.76 +28.18,77.54,1011.99,74.72,430.55 +15.26,41.2,1016.0,76.06,467.98 +28.64,69.23,1013.11,37.13,434.4 +14.86,44.85,1016.19,67.43,468.87 +13.65,42.86,1015.41,87.67,471.75 +24.14,59.87,1018.47,57.76,444.04 +24.43,59.87,1019.08,60.57,441.61 +28.56,65.27,1013.28,49.95,437.45 +9.65,44.68,1022.9,98.08,476.71 +15.87,39.31,1009.95,66.78,460.59 +28.18,73.03,1014.18,67.72,439.74 +16.61,45.87,1009.34,97.93,455.86 +21.69,44.57,1005.84,71.53,447.88 +25.71,58.59,1012.77,61.83,451.28 +19.08,46.93,1010.6,75.20999999999998,454.45 +22.56,62.26,1012.11,63.16,445.33 +18.72,60.07,1015.81,70.55,454.35 +17.68,40.89,1011.24,61.37,462.08 +22.87,74.22,1009.36,93.05,438.67 +21.94,62.52,1015.99,74.56,449.87 +22.43,69.84,1006.94,75.54,436.19 +21.42,43.79,1015.76,43.08,462.19 +18.07,63.31,1016.65,72.81,456.5 +15.45,61.27,1019.87,79.20999999999998,456.59 +27.88,68.94,1007.68,75.68,435.04 +13.04,45.09,1013.0,87.68,467.44 +9.87,40.81,1017.17,84.25,473.2 +27.82,76.09,1007.83,76.06999999999998,434.52 +30.39,66.54,1002.7,59.15,428.89 +17.96,47.83,1005.0,85.72,454.59 +28.12,73.42,1011.49,80.16,435.46 +5.98,41.31,1001.66,89.5,484.51 +20.01,45.09,1014.21,38.19,453.96 +12.88,38.53,1010.95,87.16,466.92 +9.86,41.01,1018.49,98.71,467.37 +31.38,70.83,1010.35,47.28,431.33 +33.79,69.05,1001.62,40.13,435.1 +16.69,44.78,1010.41,58.18,456.17 +25.91,75.59999999999998,1018.23,62.65,443.2 +13.61,41.74,1021.66,62.83,471.79 +9.43,37.14,1013.03,74.98999999999998,473.57 +19.89,51.43,1007.38,91.79,448.85 +25.62,60.29,1017.81,51.24,444.94 +26.52,73.20999999999998,1002.3,95.38,437.02 +22.28,58.12,1014.54,83.27,448.97 +12.67,48.14,1017.41,83.63,463.68 +14.67,45.01,1014.28,67.91,460.47 +7.9,43.79,1016.14,83.05,485.26 +21.06,50.59,1016.42,66.12,454.15 +17.74,44.2,1018.87,58.59,454.37 +16.73,54.3,1017.96,59.44,460.54 +22.25,66.54,1004.64,89.15,437.19 +18.61,67.71,1004.07,84.49,443.57 +27.34,59.87,1012.06,59.04,448.26 +19.13,50.78,1008.51,87.54,447.03 +5.9,45.87,1013.25,87.0,481.27 +19.26,58.46,1015.74,84.64,450.66 +29.09,75.33,1001.61,71.06,433.29 +7.91,38.56,1016.48,68.94,485.95 +19.58,52.9,1017.46,64.64,458.28 +5.37,38.68,1017.76,76.48,487.07 +10.45,41.01,1020.57,93.84,465.74 +20.35,67.71,1005.85,63.97,446.42 +25.43,72.39,1002.65,88.13,436.1 +19.48,63.09,1019.28,78.04,449.6 +26.43,58.41,1013.57,64.67,444.74 +30.42,67.69,1006.23,54.19,430.9 +15.06,39.3,1019.63,63.32,464.15 +24.49,49.82,1017.09,64.02,451.42 +12.68,45.01,1013.86,83.26,448.69 +17.12,48.6,1007.38,79.15,454.47 +27.25,69.98,1008.55,59.55,431.44 +15.91,38.62,1016.2,63.63,462.25 +22.69,54.2,1012.92,65.55,444.26 +23.63,58.98,1010.99,81.16,444.43 +13.61,40.71,1022.36,72.87,475.23 +24.43,60.07,1015.59,59.99,444.71 +17.37,41.23,998.79,68.44,461.08 +18.94,46.93,1010.22,75.45,441.41 +13.32,43.22,1009.45,75.3,466.83 +30.32,74.22,1008.31,53.14,429.36 +21.45,66.05,1014.81,73.73,453.38 +17.85,48.14,1017.16,86.68,451.9 +13.43,43.69,1016.21,73.01,475.36 +30.16,69.34,1007.67,57.69,433.54 +6.49,38.68,1017.94,64.81,485.95 +11.28,42.44,1014.62,99.78,473.36 +14.94,42.77,1018.9,73.95,462.67 +25.31,74.33,1015.04,79.88,436.21 +18.58,46.97,1014.25,74.09,454.26 +26.74,49.02,1008.18,67.59,438.06 +23.54,65.27,1013.78,64.28,445.19 +6.67,39.37,1020.31,73.56,488.13 +17.26,49.78,1007.38,100.06,453.54 +6.3,41.14,1027.45,86.11,481.49 +32.86,68.51,1008.43,46.78,432.38 +20.97,61.87,1011.45,65.41,446.76 +24.4,41.1,1002.14,38.75,451.66 +14.76,39.64,1010.37,81.99,465.82 +14.7,41.39,1018.84,68.19,469.6 +22.61,44.05,1005.69,76.73999999999998,443.45 +18.28,41.1,1002.0,65.69,460.03 +7.24,39.04,1019.0,68.69,485.57 +20.89,70.32,1011.22,89.68,442.5 +14.26,40.92,1022.07,73.95999999999998,460.38 +23.09,51.19,1009.4,81.61,443.22 +27.58,57.19,1007.88,52.95,435.7 +23.78,60.27,1018.02,78.06,441.56 +11.57,41.54,1020.13,69.14,476.89 +12.2,44.77,1018.64,76.09999999999998,469.41 +27.44,74.9,1003.85,76.65,436.42 +29.93,71.85,1008.43,66.64,426.82 +13.47,41.14,1026.09,82.96,463.67 +12.22,40.71,1021.25,80.83,477.07 +14.6,44.47,1028.46,69.96,465.24 +5.82,40.62,1016.79,85.04,482.67 +12.35,41.38,1021.99,55.38,474.94 +7.32,41.22,1015.42,97.25,484.21 +22.35,66.44,1011.19,65.41,445.27 +17.0,49.78,1005.32,100.1,453.77 +13.98,44.84,1023.6,89.09,462.81 +31.46,70.79,1003.54,59.51,425.68 +31.01,69.04,1009.14,52.81,442.07 +22.58,43.79,1015.66,44.18,460.3 +7.91,41.79,1021.86,54.92,479.02 +28.09,77.95,1017.07,70.98,436.94 +25.87,57.32,1012.06,44.13,442.87 +20.19,58.86,1014.3,71.64,450.67 +9.47,36.54,1007.93,77.65,475.48 +11.71,41.44,1015.37,79.95,474.22 +23.16,69.94,1004.92,68.68,438.48 +16.71,40.56,1019.48,49.88,467.46 +15.45,45.0,1023.63,70.74,469.54 +9.65,41.03,1021.09,64.97,481.68 +22.83,59.43,1005.51,83.93,440.76 +15.47,44.9,1021.59,81.73999999999998,465.61 +18.07,44.92,1024.72,69.15,457.53 +24.32,59.14,1017.46,80.14,438.08 +27.45,66.25,1009.3,77.58,437.37 +27.59,54.2,1013.1,51.61,439.31 +7.0,38.5,1014.09,81.31999999999998,489.52 +14.17,42.99,1007.38,78.88,470.68 +10.11,41.62,1017.17,97.82,463.57 +24.39,51.86,1014.92,59.98,447.7 +30.68,69.68,1012.86,56.56,438.68 +23.31,68.63,1014.73,51.57,448.2 +23.01,44.05,1006.56,74.95,450.67 +11.99,49.83,1008.33,95.2,468.22 +20.15,39.72,1001.85,59.32,456.87 +14.02,41.78,1011.26,48.62,465.87 +20.79,68.28,1001.42,76.77,445.83 +19.36,68.61,1010.85,94.87,454.5 +24.74,63.87,1016.91,55.65,447.02 +24.55,57.5,1015.36,62.45,447.3 +30.4,71.97,1008.42,76.28,430.23 +22.64,70.98,1005.71,95.65,441.99 +29.17,64.79,1016.43,61.05,441.2 +18.81,52.08,1004.43,99.6,450.87 +21.26,51.43,1009.96,80.66,455.45 +25.93,66.56,1004.97,76.34999999999998,433.25 +14.4,40.2,1013.04,90.5,464.5 +18.58,63.78,1016.24,78.73999999999998,453.96 +28.71,71.64,1005.21,71.11,432.05 +14.55,41.7,1018.58,80.8,454.14 +18.62,44.06,1017.76,64.59,452.82 +26.16,59.87,1013.24,71.92,446.73 +27.91,72.23999999999998,1010.74,70.8,430.73 +32.32,76.09,1006.63,62.96,432.53 +25.33,71.73,1009.78,77.78,435.23 +19.16,43.43,1012.36,72.59,451.0 +8.81,43.56,1014.99,81.5,482.52 +28.61,72.29,1011.61,45.33,446.77 +7.93,41.01,1023.64,97.23,476.37 +31.2,73.17,1010.28,53.23,431.23 +24.44,73.5,1011.49,87.39,437.73 +13.82,44.84,1023.72,95.24,467.95 +11.56,40.71,1015.85,76.08,469.17 +22.21,48.14,1015.08,66.8,448.33 +23.19,58.82,1009.96,81.05,446.44 +15.5,44.34,1019.21,65.21,468.53 +25.65,78.92,1010.83,86.56,434.78 +27.06,61.41,1011.99,45.23,452.85 +20.08,62.52,1017.99,75.73999999999998,450.98 +13.84,44.9,1007.58,63.62,463.27 +19.97,50.78,1008.75,92.7,446.57 +25.34,71.06,1007.74,92.52,434.86 +30.22,68.3,1014.91,34.9,434.3 +16.57,43.7,1015.67,71.95,465.78 +23.4,65.06,1014.32,67.38,442.7 +30.01,62.34,1005.28,62.34,435.94 +14.62,46.18,1014.75,96.81,462.26 +12.68,45.0,1022.54,77.19,479.69 +27.33,51.43,1006.18,67.6,439.12 +15.69,44.6,1014.06,61.51,462.07 +22.56,70.98,1005.66,95.95,440.81 +15.33,37.2,1013.4,78.98999999999998,466.81 +33.3,80.18,1011.09,63.98,430.16 +19.02,49.25,1019.75,58.29,453.49 +6.45,40.02,1032.08,79.7,481.36 +20.38,66.54,1013.95,77.8,448.93 +6.67,36.08,1022.31,83.51,486.52 +12.53,42.03,1017.57,81.56999999999998,469.18 +13.45,41.49,1020.19,88.72,467.3 +28.36,66.75,1017.71,52.6,433.88 +10.39,40.22,1009.77,83.27,478.58 +8.62,42.49,1009.06,86.93,481.87 +6.18,41.55,1001.58,98.79,484.87 +26.97,64.45,1009.43,53.96,443.75 +23.05,62.52,1016.5,65.65,449.98 +32.66,73.68,1014.64,40.88,425.17 +13.78,39.85,1012.7,71.99,474.9 +23.06,63.9,1013.54,65.28,447.36 +6.84,39.4,1011.9,93.75,484.09 +24.43,58.2,1017.18,46.84,444.89 +12.08,40.24,1016.63,92.32,474.07 +26.55,60.23,1009.88,79.54,438.95 +27.86,65.18,1012.87,55.53,436.26 +11.57,44.63,1020.7,91.11,469.64 +29.73,73.06,1010.27,84.84,432.73 +14.03,49.83,1006.64,90.01,463.71 +25.59,65.46,1014.47,37.89,444.9 +21.78,51.43,1007.45,88.71,446.56 +17.53,42.24,1016.9,60.95,470.63 +13.18,52.72,1024.67,75.95999999999998,468.36 +29.07,71.64,1006.07,69.53,440.51 +20.01,43.77,1012.13,65.53,455.66 +31.71,69.04,1008.79,49.32,441.15 +27.88,70.79,1005.06,72.5,429.62 +13.42,48.04,1011.63,99.32,461.36 +20.15,49.5,1013.47,66.7,462.65 +29.46,49.3,1003.88,54.1,436.37 +23.87,63.94,1019.02,44.28,445.11 +8.43,40.69,1020.36,87.28,484.94 +33.82,72.29,1008.67,46.95,432.13 +22.07,58.95,1017.98,75.83,442.4 +28.13,68.12,1012.6,44.71,435.85 +17.35,52.72,1026.31,58.01,463.65 +21.47,60.93,1006.46,87.83,442.75 +13.5,41.44,1015.72,68.36,471.34 +19.65,51.3,1014.81,90.23,452.5 +21.61,58.62,1017.61,76.06999999999998,449.11 +25.72,72.39,1003.01,86.38,432.77 +10.47,44.21,1017.87,85.34,476.02 +18.67,44.06,1017.13,77.18,454.51 +28.69,67.79,1011.01,66.4,439.87 +10.29,41.46,1020.84,89.03,480.32 +16.46,48.6,1006.08,89.0,449.58 +24.12,51.43,1006.55,83.77,441.49 +8.83,41.14,1025.37,94.36,474.51 +11.8,42.34,1020.25,93.54,466.52 +10.42,43.79,1016.22,90.75,474.79 +10.59,42.49,1009.59,77.36,477.49 +25.5,58.79,1016.02,64.4,440.01 +27.08,66.05,1017.91,59.1,441.16 +21.22,43.43,1010.96,61.07,448.06 +17.72,48.14,1013.26,65.09,457.44 +33.72,74.33,1011.4,37.51,428.96 +10.7,44.77,1017.8,82.37,484.94 +14.38,40.66,1016.34,92.37,463.1 +13.56,40.75,1016.05,74.64,474.26 +14.43,38.91,1013.28,70.26,468.83 +10.63,44.2,1018.63,90.26,477.19 +15.43,39.64,1008.58,87.99,464.05 +6.69,40.64,1020.54,92.83,483.01 +24.79,59.21,1017.9,53.83,446.04 +25.68,70.17,1001.38,85.89,433.92 +26.3,61.41,1012.45,56.85,448.55 +15.58,40.66,1016.34,87.42,460.61 +26.36,73.68,1013.99,86.44,430.39 +12.68,40.73,1017.66,92.08,465.94 +4.47,35.19,1018.78,92.68,487.43 +27.84,72.39,1001.18,83.46,432.19 +21.24,63.47,1011.86,97.02,442.94 +29.65,74.9,1003.22,71.09,433.32 +25.0,69.71,1009.23,80.92,438.38 +8.35,43.52,1022.78,97.34,479.31 +13.94,41.58,1020.76,68.22,463.07 +21.92,58.79,1010.09,89.7,446.71 +7.19,39.4,1011.45,90.65,483.04 +29.23,72.98999999999998,1007.04,63.47,431.0 +9.59,38.91,1011.87,81.3,479.96 +33.43,66.44,1010.29,53.45,433.01 +20.86,57.32,1010.24,76.64,446.48 +10.66,37.5,1009.42,95.86,472.86 +6.93,38.68,1017.61,61.28,482.37 +10.1,40.22,1007.1,90.36,478.43 +6.02,41.38,1021.2,88.71,490.57 +13.52,41.44,1015.81,65.97,472.11 +24.33,46.93,1013.61,53.02,450.04 +28.22,76.2,1006.11,62.17,437.62 +17.33,53.16,1013.16,82.93,460.67 +11.7,25.36,1008.65,92.11,470.88 +25.82,57.19,1007.99,62.95,440.8 +12.41,45.87,1004.78,80.02,468.14 +7.67,35.77,1017.55,60.97,480.06 +31.3,67.17,1007.27,62.99,433.53 +6.18,41.38,1020.23,81.38,490.81 +5.09,42.85,1013.78,91.34,481.24 +13.17,38.91,1016.55,74.47,470.63 +19.13,45.38,1014.72,81.95,459.94 +6.29,43.65,1020.68,70.14,485.8 +25.56,70.32,1009.07,90.63,433.72 +22.35,65.61,1016.27,73.93,448.41 +18.48,46.48,1007.53,82.57,461.49 +25.02,60.77,1016.71,69.85,441.21 +31.0,77.95,1010.14,65.97,431.62 +15.83,45.01,1013.39,81.9,460.22 +21.41,62.39,1007.84,88.83,452.8 +9.96,42.03,1017.78,82.39,477.85 +15.63,40.56,1018.68,59.44,472.15 +23.08,61.86,1013.44,84.64,441.44 +10.72,35.76,1019.71,62.26,473.48 +16.15,41.85,1016.54,81.58,466.56 +24.15,63.13,1013.8,92.1,440.15 +19.46,42.04,1011.3,60.45,466.24 +22.29,45.01,1012.4,51.58,449.08 +16.09,48.78,1015.78,91.12,454.23 +17.46,40.22,1006.7,91.96,461.74 +19.13,68.61,1010.65,94.92,448.69 +26.34,69.45,1013.87,54.15,438.5 +22.07,69.94,1011.18,80.86,440.09 +4.73,41.31,999.77,93.44,486.6 +7.64,40.81,1026.67,95.24,483.38 +20.28,68.63,1012.42,70.31,454.36 +31.98,70.17,999.43,59.42,430.92 +8.81,44.68,1023.06,93.93,479.24 +21.01,44.05,1010.61,64.12,445.07 +24.13,73.18,1012.62,91.52,436.22 +22.86,66.48,1003.77,71.22,435.56 +22.73,66.75,1018.13,84.06,437.93 +26.1,44.57,1007.47,55.15,446.49 +26.64,58.69,1007.99,75.68,439.32 +10.68,38.38,1020.79,72.33,476.22 +15.63,37.87,1020.4,74.77,465.28 +32.51,73.56,1007.06,59.6,435.23 +6.87,39.85,1012.66,83.34,486.26 +11.95,41.48,1013.44,74.83,465.41 +25.18,47.93,1002.92,60.33,441.29 +25.5,67.83,1009.29,61.29,437.49 +24.64,58.49,1011.2,72.67,444.95 +9.41,39.61,1016.14,78.38,477.34 +21.55,44.58,1017.2,46.64,464.44 +31.41,74.16,1008.65,68.5,430.37 +15.98,39.64,1009.31,81.20999999999998,467.22 +27.74,70.32,1009.58,50.29,433.47 +24.55,67.07,1005.66,63.58,443.39 +8.6,36.66,1026.4,81.23,481.86 +24.2,68.67,1006.72,78.08,444.09 +24.56,66.75,1018.5,77.47,435.03 +13.71,45.08,1023.35,82.93,468.43 +13.18,40.73,1017.62,94.4,465.96 +21.09,50.9,1012.42,69.09,456.09 +26.36,54.5,1015.35,66.87,451.81 +14.21,39.16,1016.5,85.09,473.87 +26.77,74.22,1008.87,74.68,434.35 +28.54,76.86,1000.09,74.67,433.35 +26.05,46.21,1011.31,55.25,450.86 +18.58,64.45,1009.68,67.57,444.28 +9.52,40.96,1023.48,86.49,483.59 +20.57,60.1,1011.16,83.45,451.88 +12.58,39.72,1018.08,64.25,469.38 +14.0,41.78,1010.96,48.37,465.62 +15.56,41.1,1004.65,84.58,467.32 +23.04,64.27,1014.29,80.23,439.67 +10.48,40.22,1004.81,92.16,477.78 +21.64,50.32,1008.41,86.32,442.52 +23.92,73.17,1011.81,92.33,433.78 +26.75,70.32,1007.61,54.09,433.46 +28.1,61.02,1011.28,59.05,437.5 +27.71,62.39,1006.43,68.21,435.84 +23.57,61.47,1009.27,84.17,435.82 +27.98,71.98,1005.58,81.0,428.44 +26.56,56.57,1013.73,63.9,442.74 +23.0,60.37,1005.34,83.73,437.6 +23.64,60.95,1014.92,64.91,447.86 +16.24,41.93,1021.66,44.91,467.69 +4.97,42.85,1014.02,88.78,482.98 +18.9,60.07,1016.02,71.38,451.5 +9.45,43.5,1018.89,84.29,476.1 +15.25,46.36,1019.69,95.83,461.68 +30.37,76.09,1006.95,65.93,435.01 +9.39,39.66,1019.22,75.33,482.16 +18.89,58.66,1010.96,84.07,453.33 +28.33,68.27,1008.09,50.37,432.66 +9.68,38.16,1015.54,79.67,475.51 +14.85,44.63,1020.67,75.76,460.06 +25.72,59.21,1012.37,66.62,437.72 +12.71,41.39,1019.3,74.2,475.13 +22.72,69.13,1010.81,92.43,438.01 +14.96,43.02,1012.77,42.93,467.16 +30.02,69.04,1009.68,56.01,440.49 +10.33,41.44,1015.24,86.72,478.79 +16.5,44.63,1020.58,64.11,458.78 +20.57,63.78,1016.76,74.0,449.93 +5.85,40.77,1022.44,84.77,480.59 +16.64,43.14,1019.03,82.88,459.0 +8.18,43.69,1017.16,88.16,487.83 +26.94,66.48,1005.46,60.62,440.12 +17.39,46.21,1013.94,82.73,454.06 +21.04,50.32,1008.41,90.19,446.33 +16.3,41.16,1007.88,76.61,463.47 +6.79,39.37,1019.79,72.39,487.3 +27.82,52.84,1006.23,52.18,440.31 +25.11,56.89,1013.33,67.31,441.51 +12.62,40.83,1010.06,81.52,470.94 +23.25,51.86,1013.54,78.34,450.22 +22.54,63.07,1011.71,81.64,442.28 +15.92,40.56,1020.79,53.52,470.22 +15.52,40.0,1017.0,66.27,454.14 +23.1,59.43,1007.36,85.96,440.64 +25.56,75.59999999999998,1017.37,69.31,442.2 +23.76,70.32,1012.13,78.84,434.64 +22.07,50.78,1008.6,61.33,449.96 +19.62,62.96,1020.76,76.53,456.02 +21.94,64.15,1021.2,61.75,453.3 +17.67,43.7,1015.26,58.76,465.06 +23.94,59.39,1014.32,74.55,438.64 +32.51,69.98,1013.29,54.07,429.66 +28.18,49.3,1003.97,55.56,438.91 +29.08,66.54,1004.67,64.5,430.16 +28.92,61.02,1011.19,56.13,436.76 +13.87,42.99,1007.45,81.52,471.12 +19.87,49.69,1012.23,68.57,456.03 +14.74,43.99,1023.13,86.31,461.82 +14.85,38.91,1014.48,60.98,467.42 +25.44,65.06,1013.82,55.72,440.09 +20.88,56.85,1010.91,84.28,440.08 +9.77,44.68,1023.37,91.4,477.56 +12.61,41.79,1015.82,91.9,461.37 +13.06,41.78,1012.3,55.31,467.67 +22.49,62.96,1020.21,78.98999999999998,447.48 +6.3,39.33,1010.63,94.26,489.95 +10.02,39.82,1012.86,89.47,482.47 +8.02,40.23,1017.42,90.26,484.22 +24.25,50.78,1008.82,60.55,443.8 +12.3,40.69,1015.74,82.58,474.46 +10.22,37.83,1005.94,93.53,471.79 +27.08,63.78,1015.04,50.8,447.24 +11.99,38.28,1013.65,91.31,469.23 +12.18,40.1,1016.67,91.87,471.49 +25.21,75.59999999999998,1017.19,69.84,445.84 +21.61,49.39,1019.41,78.2,449.26 +8.82,34.69,1026.81,82.54,481.44 +9.07,40.67,1014.41,70.39,484.5 +7.71,40.77,1021.93,87.04,482.19 +10.07,40.46,1018.65,69.2,470.99 +29.33,64.84,1010.76,53.32,443.15 +8.33,38.08,1018.94,73.78,481.89 +10.74,40.05,1015.45,87.33,477.93 +11.86,40.27,1008.06,72.91,474.57 +27.94,63.07,1010.75,38.57,441.0 +25.06,78.92,1010.74,90.7,434.55 +11.37,39.16,1016.54,87.05,480.54 +6.49,35.57,1025.4,79.67,486.8 +13.58,40.75,1016.05,76.45,472.73 +23.31,60.08,1017.14,64.35,452.65 +14.57,39.28,1015.1,76.94,469.27 +23.74,49.21,1012.78,42.5,447.67 +8.79,40.67,1019.5,66.3,489.02 +23.33,54.2,1012.47,79.48,440.11 +21.04,69.48,1011.07,89.92,439.53 +27.89,70.94,1007.54,49.18,435.21 +24.85,70.09,1006.56,70.09,439.96 +21.06,67.07,1004.9,84.09,446.44 +13.1,41.48,1009.0,87.41,460.34 +16.32,43.5,1021.3,72.59999999999998,460.07 +25.42,59.04,1011.98,68.78,444.51 +26.5,66.75,1018.48,61.62,431.23 +18.21,45.0,1022.86,48.84,467.54 +14.31,42.86,1031.14,69.6,465.36 +26.31,52.09,1013.39,53.59,447.04 +25.04,70.47,1006.82,84.75,433.1 +25.97,70.32,1007.48,57.01,435.27 +31.63,70.17,999.4,59.94,432.07 +25.79,67.17,1007.89,81.38,440.75 +13.52,41.48,1014.46,67.12,460.76 +27.28,47.93,1003.46,59.22,438.0 +21.75,58.79,1012.42,87.58,447.58 +25.99,63.07,1012.5,64.81,442.16 +19.73,69.51,1013.14,61.84,450.99 +29.24,64.33,1011.5,64.14,440.29 +16.4,44.9,1009.22,82.31,456.11 +26.68,62.91,1012.33,60.78,441.04 +20.56,64.45,1012.24,53.09,458.97 +5.51,41.03,1022.28,84.5,491.84 +14.87,41.2,1016.27,70.51,467.01 +22.36,59.44,1013.1,84.74,446.75 +10.31,38.18,1018.02,70.1,476.31 +30.76,69.14,1007.63,71.24,431.67 +12.15,71.14,1019.56,86.06,462.51 +21.4,44.57,1005.7,73.09,445.09 +10.73,25.36,1009.35,100.15,469.43 +13.6,41.2,1015.92,85.05,467.42 +26.17,66.54,1002.23,75.59999999999998,433.81 +27.56,65.59,1010.88,66.47,439.64 +23.79,58.59,1013.94,72.5,443.19 +21.46,74.87,1009.23,86.58,445.5 +7.85,37.8,1020.9,59.19,478.68 +24.94,63.94,1012.72,73.70999999999998,438.55 +31.41,76.09,1007.68,70.49,430.81 +22.97,63.94,1010.5,88.47,440.81 +19.38,63.56,1013.13,83.54,452.01 +8.26,44.71,1020.85,68.82,485.19 +27.34,71.29,1008.32,56.51,434.94 +17.28,65.94,1013.62,89.97,454.76 +13.71,43.41,1015.45,69.26,466.06 +27.47,69.98,1008.53,58.72,431.11 +14.05,40.35,1011.52,66.21,475.54 +10.22,39.64,1010.72,63.05,477.22 +14.55,40.73,1018.36,89.12,458.82 +18.83,58.46,1016.85,87.16,449.63 +8.24,39.61,1017.99,78.42,477.9 +26.31,63.77,1014.15,69.36,440.1 +28.68,70.72,1009.43,71.33,435.45 +6.52,39.85,1012.55,86.36,483.01 +22.12,57.19,1007.56,76.5,442.51 +22.96,70.79,1005.68,93.93,434.47 +8.63,43.79,1016.08,83.25,483.91 +26.03,70.32,1008.81,71.35,438.15 +19.28,65.46,1013.77,64.24,448.91 +22.63,57.17,1009.83,77.43,433.54 +13.56,39.52,1016.61,78.34999999999998,470.67 +25.98,73.18,1012.28,85.78,439.73 +29.04,62.26,1010.63,56.6,433.97 +25.58,64.45,1011.07,61.47,447.16 +29.92,57.19,1008.62,45.8,438.99 +22.86,62.52,1016.23,70.67,447.96 +18.68,43.69,1016.68,48.88,463.02 +26.11,70.36,1007.64,70.12,445.37 +21.5,44.58,1016.87,57.58,460.2 +24.46,61.9,1013.88,87.16,441.34 +9.68,41.06,1022.75,87.44,476.67 +13.19,44.88,1017.61,94.95,467.68 +22.55,69.84,1006.57,76.29,438.54 +27.55,68.08,1011.42,60.71,432.59 +12.11,38.28,1013.56,93.21,469.93 +30.2,56.9,1006.89,42.69,436.17 +20.03,60.77,1017.23,87.82,449.31 +5.46,40.81,1025.73,93.52,474.87 +27.84,68.08,1013.34,46.19,436.37 +25.89,66.49,1013.08,63.16,434.67 +24.2,63.21,1012.25,79.86,449.03 +14.08,43.41,1015.59,54.15,466.99 +23.02,63.47,1012.21,80.61,443.66 +14.63,41.23,998.96,86.4,466.36 +18.89,43.56,1012.79,38.63,463.91 +25.65,43.77,1011.65,46.18,444.01 +12.46,40.73,1017.53,93.47,464.7 +11.58,40.66,1017.0,97.13,466.42 +10.62,39.64,1010.51,68.55,478.37 +32.81,75.08,1005.09,42.0,433.37 +26.04,52.84,1005.68,65.18,439.36 +20.25,58.59,1012.99,65.98,452.18 +15.37,43.34,1014.84,80.37,460.02 +29.72,77.95,1014.9,72.73,434.99 +13.74,34.03,1018.69,67.34,470.49 +10.98,37.5,1011.12,97.51,472.34 +18.93,59.39,1013.92,68.78,450.14 +14.87,42.77,1017.94,75.06,462.03 +7.18,38.56,1016.49,70.37,487.63 +8.26,39.42,1025.89,70.53,474.72 +19.29,50.16,1010.49,97.78,450.21 +27.47,70.72,1009.97,74.62,443.25 +29.98,76.09,1007.62,75.59999999999998,432.0 +27.32,76.09,1007.77,74.64,443.13 +27.54,68.27,1008.12,56.42,433.0 +29.9,64.79,1016.9,48.24,441.41 +7.1,35.77,1015.39,92.1,480.36 +22.4,70.94,1008.06,84.52,440.04 +20.51,48.6,1005.29,80.7,448.0 +15.59,45.09,1013.41,91.97,457.54 +13.49,44.63,1019.12,70.02,471.08 +25.46,56.89,1012.59,62.9,443.5 +11.68,40.23,1018.49,83.43,475.47 +22.08,41.54,1014.21,73.73,458.74 +17.75,49.78,1004.49,100.09,452.02 +25.98,60.95,1014.5,48.01,442.9 +23.02,69.94,1007.94,64.66,439.4 +30.26,77.23999999999998,1008.39,74.25,430.51 +23.95,60.37,1004.96,79.48,440.9 +29.24,64.33,1011.49,65.08,440.12 +25.6,56.9,1006.35,81.58,437.82 +25.34,70.47,1006.46,83.94,433.34 +8.23,40.77,1011.92,90.59,479.24 +29.19,65.71,1013.85,50.5,444.49 +24.89,66.49,1010.15,65.65,436.39 +10.17,41.46,1019.34,83.04,480.13 +25.01,68.63,1013.76,43.65,447.12 +22.89,74.78,1009.79,81.56999999999998,443.7 +27.47,63.78,1016.07,48.47,446.69 +8.32,39.64,1010.93,78.20999999999998,479.69 +18.99,44.58,1018.29,54.71,468.35 +23.6,60.08,1017.51,63.02,451.97 +21.38,65.12,1015.73,68.02,448.5 +12.61,41.58,1020.17,85.18,463.36 +6.19,41.31,1002.48,88.8,485.08 +26.73,77.95,1012.31,78.34999999999998,434.76 +27.14,70.32,1007.08,73.08,427.21 +29.36,68.94,1007.5,79.91,431.39 +14.56,39.39,1014.23,80.61,471.72 +25.76,74.87,1010.18,65.15,443.7 +16.14,44.71,1014.83,39.41,468.88 +25.16,57.17,1009.86,75.7,442.03 +8.34,40.77,1010.84,90.01,480.48 +32.87,71.32,1004.36,54.69,433.15 +23.96,60.95,1015.01,65.24,446.4 +15.98,44.68,1018.48,85.94,462.77 +8.6,42.28,1008.58,80.15,484.21 +32.14,75.08,1005.35,49.92,439.22 +24.56,60.27,1017.63,74.5,440.31 +17.35,39.72,1003.0,64.62,459.83 +25.24,71.14,1008.73,79.39,435.09 +20.03,45.01,1012.73,56.89,460.11 +20.85,56.89,1013.15,68.22,450.07 +29.68,64.33,1011.2,57.73,441.79 +18.92,46.93,1009.89,77.98,453.66 +4.78,42.85,1013.39,93.36,481.47 +6.58,40.67,1020.18,71.07,494.84 +9.97,39.99,1010.09,95.0,477.31 +27.0,60.96,1012.36,58.97,450.15 +12.8,44.9,1007.58,66.6,466.95 +13.9,41.17,1016.84,72.9,468.96 +24.38,58.2,1016.93,51.61,444.36 +12.41,41.16,1017.45,93.64,464.08 +32.86,66.44,1010.98,44.99,429.32 +22.44,63.47,1012.02,91.08,444.65 +17.4,44.58,1018.9,60.58,468.01 +26.02,59.57,1011.16,76.93,446.5 +16.76,43.67,1011.27,70.55,462.44 +16.02,44.9,1009.3,82.62,455.48 +26.06,71.73,1009.65,77.02,432.38 +22.93,63.13,1011.6,77.09,448.02 +6.06,41.17,1019.67,84.7,489.62 +11.9,39.16,1016.53,84.59,477.75 +7.61,38.06,1021.16,83.22,484.14 +12.8,41.16,1022.43,86.19,462.72 +5.7,40.35,1012.18,91.57,488.8 +25.21,65.34,1013.94,65.04,446.68 +20.06,47.03,1013.66,83.23,461.02 +16.34,41.48,1015.92,48.24,453.6 +5.3,35.19,1019.33,93.86,484.42 +13.93,39.64,1011.8,82.64,470.84 +27.0,69.34,1008.88,74.4,439.26 +13.0,39.28,1016.7,81.94,473.6 +27.23,71.77,1006.59,77.94,427.39 +13.26,42.99,1007.58,94.26,472.52 +24.05,72.23999999999998,1011.32,88.94,437.81 +10.2,40.67,1016.15,73.2,482.26 +30.44,56.24,1005.19,56.24,429.34 +10.79,43.56,1015.15,73.01,479.64 +26.92,67.25,1017.74,61.68,434.05 +19.8,52.9,1017.75,66.67,456.64 +20.17,56.03,1019.47,56.77,458.04 +11.88,41.58,1016.56,90.18,465.47 +12.83,41.5,1013.12,86.07,470.87 +28.44,67.07,1006.08,50.42,433.15 +20.13,43.43,1009.75,66.16,453.47 +18.11,52.08,1002.51,100.09,449.99 +19.08,58.59,1013.42,68.88,451.05 +10.17,40.46,1018.54,68.21,470.33 +19.16,63.09,1017.71,91.15,449.51 +22.44,58.16,1017.28,63.68,452.71 +11.75,40.55,1018.09,97.7,472.43 +32.32,67.9,1006.08,37.93,428.12 +20.62,68.12,1012.33,79.88,447.16 +19.08,44.63,1020.14,43.36,459.81 +23.68,68.3,1017.93,84.16,438.65 +10.18,43.5,1022.84,88.7,476.91 +29.26,69.34,1009.76,58.64,435.32 +15.11,43.13,1014.99,46.91,466.74 +26.46,61.41,1012.41,56.58,448.83 +24.79,75.59999999999998,1017.07,68.23,440.05 +28.61,70.36,1006.95,73.06,440.16 +12.59,41.14,1025.79,86.55,465.74 +8.04,41.92,1029.7,92.21,482.58 +14.58,42.99,1007.55,93.56,468.43 +16.09,44.71,1017.86,42.74,464.95 +25.06,64.63,1020.66,54.93,446.57 +22.53,70.98,1005.48,93.95,440.96 +18.63,48.92,1011.37,71.72,450.29 +25.6,73.67,1005.78,84.82,433.25 +26.94,62.91,1011.68,41.3,449.1 +10.58,41.49,1020.43,91.9,473.19 +28.65,70.32,1008.46,58.13,433.45 +24.35,73.17,1012.2,85.88,435.66 +11.76,41.58,1020.91,88.35,465.45 +12.79,44.68,1022.51,99.55,465.75 +25.87,67.79,1011.16,79.88,445.87 +22.18,65.46,1016.74,54.02,447.92 +18.71,53.16,1013.26,82.64,455.7 +18.53,48.98,1014.24,74.29,452.73 +30.9,73.42,1011.21,65.32,433.44 +9.18,42.44,1014.52,98.04,480.49 +14.58,41.92,1030.42,61.96,462.69 +27.23,63.9,1014.3,47.19,443.61 +30.91,79.73999999999998,1006.92,56.32,433.84 +21.79,46.21,1012.89,72.0,449.99 +26.88,60.96,1012.1,57.9,446.77 +12.95,40.1,1015.31,86.01,471.07 +31.07,73.5,1010.58,43.66,432.06 +20.43,63.09,1016.46,91.78,445.58 +9.58,38.08,1019.49,67.54,478.5 +4.04,35.47,1017.51,87.35,486.86 +29.78,69.71,1008.96,67.46,434.33 +6.79,40.0,1019.01,81.83,480.83 +18.86,50.78,1008.46,91.67,446.7 +26.37,70.79,1005.31,77.3,428.5 +23.58,70.04,1010.95,76.31999999999998,435.47 +19.1,43.79,1016.02,77.34,462.28 +22.82,64.63,1020.78,66.73,449.34 +16.03,65.46,1013.96,87.56,455.17 +29.4,57.19,1008.34,53.95,436.92 +13.53,38.73,1004.86,85.38,472.46 +30.97,67.69,1005.61,50.88,425.35 +3.85,35.47,1016.78,85.31,489.78 +25.88,74.67,1016.66,81.09,434.81 +30.69,73.67,1006.14,60.58,430.45 +29.53,71.43,1011.79,57.41,438.78 +17.07,44.9,1020.74,70.18,460.19 +29.61,67.07,1005.91,39.28,434.14 +23.02,59.21,1011.74,83.18,440.5 +19.8,51.19,1008.25,91.98,446.66 +9.29,35.77,1015.34,63.29,475.88 +17.36,41.23,998.08,63.46,459.1 +22.95,63.94,1013.87,80.37,447.13 +8.57,41.17,1020.18,72.47,484.2 +18.5,51.43,1010.82,92.04,459.42 +13.85,45.08,1024.86,83.85,468.35 +24.88,63.91,1009.41,77.75,447.28 +9.96,41.26,1022.9,83.83,475.21 +21.01,58.96,1014.33,61.8,453.88 +21.68,64.15,1021.09,70.88,454.32 +32.12,69.98,1013.31,54.3,429.86 +10.8,39.58,1011.99,87.54,478.24 +26.12,68.94,1007.12,67.08,434.11 +17.48,43.14,1018.68,74.84999999999998,459.59 +12.85,40.0,1015.89,68.85,463.74 +23.92,66.54,1009.93,62.37,441.9 +14.07,42.99,1007.57,96.05,468.87 +14.02,44.85,1016.54,75.73,469.53 +17.27,40.55,1000.89,70.66,461.31 +5.74,40.62,1016.31,84.91,481.15 +31.02,69.51,1011.16,47.64,431.15 +20.03,69.45,1013.47,86.66,441.54 +25.56,74.98999999999998,1005.41,85.75,433.63 +8.37,39.99,1010.36,93.26,482.31 +12.65,44.03,1007.13,85.23,466.01 +26.45,47.43,1008.87,53.25,442.12 +13.92,39.85,1012.64,68.03,473.47 +10.72,41.38,1021.6,63.77,478.29 +24.79,67.83,1009.32,61.46,438.36 +17.57,62.1,1019.51,86.14,453.3 +18.32,39.53,1008.15,64.85,454.44 +19.59,66.54,1012.73,85.84,447.16 +13.83,45.08,1024.2,80.52,465.5 +21.85,58.33,1013.03,66.39,447.31 +12.75,42.34,1018.17,94.67,465.44 +10.2,41.01,1021.39,96.64,468.27 +26.33,60.06,1005.86,41.57,450.16 +19.23,45.01,1012.24,72.91,450.77 +11.36,40.75,1016.34,85.19,477.5 +25.44,61.25,1012.57,87.65,441.77 +19.72,46.21,1010.54,77.73999999999998,449.33 +22.75,57.76,1017.83,66.54,452.33 +21.73,61.45,1010.27,91.59,442.78 +27.23,49.16,1004.03,40.8,443.78 +19.54,54.9,1017.15,70.37,455.86 +30.26,59.22,1013.18,61.08,442.98 +28.36,68.08,1013.34,42.82,434.54 +15.78,41.16,1008.43,80.25,464.85 +21.0,70.02,1010.22,95.11,447.29 +14.6,53.82,1016.28,64.83,462.86 +14.95,43.52,1022.43,94.75,464.98 +6.14,39.4,1011.21,90.87,485.94 +13.94,42.86,1012.35,88.78,471.64 +24.33,68.08,1013.02,64.81,442.93 +28.53,66.51,1015.9,40.68,436.16 +11.74,40.71,1020.64,82.15,470.05 +15.14,49.64,1023.78,75.0,463.58 +23.49,49.3,1003.35,77.95999999999998,442.76 +13.68,41.7,1019.19,84.07,464.46 +27.73,67.69,1007.47,59.42,431.72 +26.61,56.85,1012.48,48.84,437.26 +28.4,59.27,1012.03,59.75,441.64 +16.74,41.16,1006.87,74.23999999999998,463.0 +23.36,62.52,1016.18,68.18,448.37 +20.54,59.39,1014.07,84.15,445.41 +29.72,71.97,1008.6,79.25,431.22 +19.69,56.65,1020.84,72.14,455.07 +26.59,59.92,1009.97,70.09,438.22 +23.81,46.93,1013.19,54.82,449.58 +29.23,74.22,1008.49,57.88,428.9 +20.24,56.03,1019.78,59.8,460.76 +26.01,58.41,1013.56,70.84,443.74 +24.31,65.34,1013.82,63.85,449.88 +21.43,46.97,1013.94,61.25,457.68 +32.56,68.14,1004.02,35.04,425.11 +16.76,48.14,1012.92,65.74,456.31 +6.08,35.79,1011.08,90.59,483.08 +18.89,63.09,1018.47,84.85,450.0 +13.04,41.04,1026.27,69.75,464.91 +11.21,40.75,1016.45,86.14,479.2 +28.31,71.85,1009.0,77.56,429.57 +22.73,43.79,1015.61,42.66,460.2 +26.54,66.51,1015.39,51.22,440.04 +31.25,68.94,1005.99,49.61,434.51 +8.949999999999998,36.18,1014.08,76.94,478.07 +13.4,41.58,1020.5,71.17,461.54 +24.32,65.48,1017.55,59.02,443.31 +22.06,59.21,1012.84,87.06,442.31 +10.62,39.64,1010.65,62.15,477.07 +25.82,61.08,1013.64,66.4,448.46 +22.39,58.18,1008.52,87.48,448.37 +30.67,72.86,1004.25,52.72,432.76 +8.07,41.17,1019.4,86.43,484.54 +18.75,44.9,1007.99,75.76,452.77 +14.1,44.84,1025.09,79.42,468.22 +31.26,70.36,1006.49,60.47,438.15 +19.87,48.14,1016.94,81.56,451.14 +8.88,36.3,1015.27,56.96,478.7 +11.48,37.92,1008.47,70.55,472.9 +23.21,58.49,1010.97,74.34,448.09 +23.93,64.45,1015.35,54.71,449.97 +28.78,64.96,999.75,56.43,432.66 +13.22,40.83,1007.82,92.72,472.72 +16.71,42.99,1007.72,75.34999999999998,465.09 +14.56,45.51,1015.39,69.84,469.79 +21.09,67.07,1004.38,89.01,444.75 +21.96,58.79,1010.51,87.32,448.89 +16.78,41.35,1000.23,70.52,459.64 +23.43,71.97,1009.42,94.27,442.19 +7.2,40.02,1031.71,69.89,480.53 +30.28,79.73999999999998,1006.96,70.21,433.45 +20.69,50.78,1008.71,91.95,447.58 +19.82,46.63,1013.17,87.1,456.36 +10.89,44.2,1018.3,86.32,479.16 +17.82,65.94,1013.44,88.13,452.82 +26.44,71.77,1006.68,81.45,430.12 +15.47,38.73,1001.13,77.61,467.96 +15.65,54.3,1018.0,69.66,461.69 +16.31,42.28,1007.45,77.77,466.49 +5.62,43.65,1017.9,77.43,481.69 +31.27,73.91,1003.72,68.92,430.59 +30.22,74.9,1003.57,67.15,434.17 +20.74,59.8,1015.46,76.39,452.99 +29.53,70.79,1003.7,60.89,426.85 +8.05,40.8,1028.01,89.56,483.43 +21.44,60.32,1015.2,81.09999999999998,448.84 +32.2,69.68,1012.12,42.47,437.35 +4.7,39.9,1007.45,91.02,487.78 +10.79,39.82,1012.89,88.25,479.92 +33.83,67.9,1005.94,29.86,428.12 +31.13,64.05,1011.51,61.27,439.24 +10.47,43.14,1010.35,86.86,476.55 +33.95,80.18,1010.3,56.69,432.22 +21.31,58.66,1012.67,69.36,451.96 +19.82,57.85,1011.58,97.23,447.36 +24.06,58.98,1010.66,81.16,443.75 +13.44,40.69,1014.54,77.97,473.0 +12.99,41.93,1020.25,74.64,472.95 +13.56,41.48,1008.53,87.2,459.76 +13.43,43.56,1013.02,66.36,472.94 +12.97,49.83,1008.69,91.49,452.07 +26.05,56.85,1012.78,59.09,438.59 +12.99,42.34,1018.04,96.25,465.98 +22.61,60.27,1018.81,83.27,440.98 +30.75,71.25,1000.07,65.47,431.93 +6.5,38.5,1013.92,90.1,486.78 +26.65,66.48,1005.7,65.09,436.65 +12.6,41.74,1022.13,67.89,474.23 +20.13,40.33,1005.31,85.42,460.09 +17.77,52.9,1020.11,81.51,457.98 +19.59,59.87,1018.28,84.83,449.74 +6.37,40.81,1025.98,91.0,489.18 +4.61,40.27,1012.32,77.28,492.85 +24.35,51.86,1014.34,67.22,442.81 +19.2,54.2,1011.46,84.44,450.75 +30.39,70.98,1007.55,72.76,435.48 +10.61,43.79,1016.03,76.33,480.28 +12.74,44.03,1007.62,97.64,463.96 +19.79,44.9,1008.66,72.68,455.59 +23.25,69.45,1013.85,70.14,437.18 +30.27,64.05,1011.93,65.72,438.68 +26.85,66.86,1006.78,69.4,438.26 +20.76,58.18,1007.8,99.22,449.25 +14.04,40.56,1018.4,65.79,472.98 +18.92,44.63,1020.32,47.81,451.64 +12.91,41.16,1011.9,89.19,472.71 +25.35,63.21,1012.31,80.16,442.23 +9.52,39.61,1021.18,73.78,478.79 +29.45,68.84,1011.64,59.7,438.41 +24.96,69.68,1011.37,63.12,447.2 +22.69,65.12,1016.35,72.02,446.91 +10.39,40.22,1004.95,91.65,476.49 +28.01,44.89,1008.98,48.52,444.76 +6.17,36.25,1028.68,90.59,483.77 +20.9,67.71,1007.16,59.02,446.57 +9.41,40.43,1025.68,79.48999999999998,492.88 +29.6,67.79,1010.37,51.05,442.43 +15.9,41.35,1006.28,78.2,464.03 +29.95,67.25,1017.68,51.91,433.13 +17.3,46.21,1013.56,87.57,456.77 +14.17,41.67,1013.4,72.77,471.42 +15.46,44.88,1017.52,93.32,461.2 +12.19,41.17,1019.43,65.47,475.64 +26.63,73.68,1015.15,85.13,428.8 +11.45,40.8,1027.74,78.59999999999998,476.28 +17.32,44.34,1019.52,56.24,468.8 +19.41,49.39,1020.84,81.89,449.24 +15.63,41.79,1006.7,78.28,455.24 +19.36,44.6,1016.25,45.65,464.56 +8.13,71.14,1018.94,86.7,471.99 +31.31,67.48,1009.71,57.06,440.38 +17.84,52.08,1006.65,100.09,450.67 +15.15,53.82,1016.34,62.59,461.6 +28.22,51.43,1006.06,63.72,438.43 +27.83,69.04,1009.69,63.79,443.24 +18.85,41.1,1001.95,61.75,462.4 +30.28,67.22,1014.39,53.32,447.67 +21.83,63.07,1011.57,87.02,443.1 +27.02,71.25,1000.48,87.86,438.33 +28.25,57.19,1007.99,67.9,436.99 +5.86,40.62,1017.03,85.06,480.71 +22.18,62.91,1012.14,68.86,449.77 +31.27,73.77,1003.27,71.48,430.32 +22.32,59.8,1016.82,64.18,451.21 +24.96,60.84,1018.13,59.51,442.36 +14.81,40.71,1018.54,73.0,467.66 +15.1,41.35,1003.84,97.89,466.14 +21.3,41.1,1001.86,42.75,455.13 +24.21,71.77,1004.52,84.96,433.42 +25.85,67.69,1007.7,70.14,434.0 +10.72,39.35,1015.35,86.43,480.18 +12.04,43.69,1016.58,80.16,474.97 +24.21,70.98,1007.02,95.57,441.78 +24.6,71.73,1010.08,78.77,436.28 +24.49,65.59,1011.52,85.12,441.8 +30.34,71.25,1000.94,67.29,431.18 +17.85,53.16,1013.05,82.72,456.49 +15.4,38.73,1000.67,79.70999999999998,469.18 +9.2,40.03,1017.05,92.46,480.38 +11.76,40.96,1023.22,81.31,475.18 +17.47,63.31,1015.28,88.22,450.68 +23.42,50.05,1006.79,86.45,441.8 +24.98,60.32,1015.63,57.19,444.67 +12.63,41.48,1009.61,87.69,461.09 +18.56,42.18,1001.46,99.59,456.61 +7.48,38.5,1014.01,77.34999999999998,488.43 +17.7,43.69,1016.98,61.98,462.63 +26.39,49.02,1007.62,70.82,438.53 +11.32,36.18,1015.03,64.68,472.67 +10.74,44.85,1014.25,71.61,476.83 +23.62,49.21,1014.1,49.54,443.53 +16.73,65.94,1013.79,90.19,453.39 +29.62,70.02,1010.09,43.1,439.35 +25.92,60.32,1016.05,52.51,448.37 +15.21,35.4,1016.31,58.26,468.18 +9.88,37.83,1005.68,97.61,470.44 +25.21,64.63,1020.56,51.31,448.66 +10.6,41.46,1021.23,89.02,481.3 +13.56,40.8,1024.8,63.6,475.89 +20.05,42.48,1012.29,85.09,457.01 +13.24,39.85,1012.64,59.99,477.22 +24.58,56.9,1007.08,68.24,437.16 +26.7,70.32,1011.04,86.41,438.46 +11.5,40.22,1010.31,78.08,476.46 +10.35,39.82,1013.33,94.78,477.14 +25.09,65.46,1015.29,40.13,442.99 +26.8,72.58,1008.94,78.23999999999998,428.62 +28.15,71.25,1000.51,81.04,431.28 +14.49,41.92,1030.3,56.62,463.81 +27.09,65.61,1014.22,48.13,442.94 +5.66,40.0,1022.08,93.03,475.54 +20.77,60.1,1011.11,81.09,450.32 +31.37,76.86,997.34,62.94,431.03 +12.58,43.67,1014.36,91.72,473.02 +22.11,59.8,1016.74,73.9,453.45 +18.68,59.14,1016.96,77.09,452.85 +18.1,45.0,1023.05,48.41,465.46 +14.54,41.16,1000.0,81.34,463.9 +24.2,64.33,1011.15,84.23,442.78 +11.68,39.22,1017.9,57.95,471.8 +8.51,39.96,1026.34,96.1,475.96 +13.0,39.85,1012.57,61.56,477.71 +25.94,60.75,1007.22,64.76,439.46 +11.06,40.64,1021.47,96.16,479.13 +19.09,66.51,1015.11,76.38,458.41 +16.09,50.59,1015.69,84.41,463.64 +17.02,44.85,1014.38,62.66,459.98 +34.18,67.9,1005.87,30.34,425.5 +26.96,73.68,1013.81,84.77,429.48 +14.01,39.0,1016.73,79.23,466.7 +20.76,57.25,1011.01,90.31,444.85 +10.48,41.38,1021.97,65.22,481.41 +25.87,47.01,1014.67,61.87,452.32 +13.27,42.28,1008.3,86.2,468.86 +15.04,41.35,1004.29,99.1,467.96 +28.97,73.5,1010.47,48.24,435.22 +10.15,41.14,1025.5,91.54,473.56 +7.61,39.37,1015.84,83.73,483.74 +7.64,43.79,1016.17,84.45,486.01 +25.48,60.29,1017.55,51.22,443.77 +22.35,58.59,1013.99,79.78,444.04 +18.71,39.39,1014.09,62.82,465.57 +20.3,62.52,1017.96,75.17,451.86 +30.5,66.75,1017.55,38.2,432.87 +25.41,68.94,1007.21,69.2,436.95 +23.26,59.14,1016.98,76.29,440.37 +13.17,38.52,1018.5,83.77,468.82 +29.16,55.68,1004.84,55.68,435.04 +13.31,40.1,1014.81,82.11,468.74 +26.44,59.15,1013.35,60.71,439.65 +17.89,40.12,1011.99,76.52,451.79 +30.98,67.48,1009.96,58.92,439.39 +24.73,71.14,1009.07,68.87,437.55 +23.13,61.47,1008.96,85.5,438.8 +14.59,35.71,1015.19,54.13,469.32 +30.34,75.08,1005.32,52.97,437.26 +11.41,39.61,1018.69,69.44,467.19 +16.78,58.95,1017.74,96.24,450.02 +26.24,70.36,1005.4,82.43,437.31 +31.76,66.54,1003.02,49.64,430.18 +11.77,40.92,1021.85,81.55,467.31 +26.26,71.73,1009.59,80.06,430.79 +10.59,39.96,1025.87,97.05,468.96 +27.31,64.44,1014.65,57.27,442.77 +26.81,56.57,1013.68,61.6,442.94 +27.12,70.32,1009.94,52.67,429.08 +11.73,37.92,1008.24,65.13,472.04 +27.49,63.78,1015.43,47.45,445.66 +23.67,68.67,1006.71,77.22,445.32 +16.2,45.76,1014.73,89.84,460.87 +12.51,41.14,1027.36,87.86,463.79 +13.07,45.51,1015.22,78.65,460.14 +27.17,63.09,1015.59,68.33,443.66 +7.89,71.14,1018.4,86.49,474.66 +20.84,65.06,1016.88,71.93,445.74 +8.76,40.96,1025.21,90.72,483.79 +27.3,57.19,1008.08,63.48,438.65 +17.8,62.26,1011.81,89.81,451.62 +28.32,47.93,1003.26,54.5,439.5 +17.0,45.09,1013.52,88.32,458.94 +27.0,59.15,1013.12,61.39,440.58 +22.64,63.73,1013.88,84.22,447.21 +33.11,69.75,1008.88,42.08,437.19 +6.5,41.14,1028.15,86.78,480.96 +31.95,67.17,1007.11,61.58,432.6 +27.24,68.08,1013.23,51.96,445.25 +17.5,42.23,1013.37,86.87,462.57 +30.96,64.44,1013.63,49.64,437.61 +21.12,63.91,1009.33,96.14,447.64 +18.74,59.21,1018.3,91.55,449.77 +10.33,40.69,1014.25,84.46,480.18 +17.97,65.94,1012.92,88.22,448.88 +27.19,71.58,1010.85,76.09999999999998,436.77 +17.53,44.9,1020.5,71.1,457.61 +14.98,43.99,1022.66,83.34,462.32 +29.03,67.79,1010.86,54.03,445.03 +18.63,45.87,1007.98,79.9,453.79 +9.68,39.61,1015.63,74.5,475.02 +25.09,69.68,1012.18,91.33,439.77 +29.14,67.45,1015.51,46.47,433.34 +27.09,49.3,1003.93,61.0,437.44 +16.77,38.01,1023.04,65.5,460.16 +20.07,42.23,1012.86,74.11,461.25 +13.98,39.18,1009.61,89.12,467.97 +25.58,47.01,1014.5,63.53,454.39 +26.53,60.07,1016.55,54.79,438.54 +15.25,52.9,1014.86,76.87,463.93 +6.04,41.14,1027.8,86.4,480.39 +27.34,70.98,1008.82,71.42,438.73 +25.42,74.22,1009.04,88.55,433.97 +19.92,46.97,1014.32,69.17,459.39 +24.6,48.78,1018.1,73.70999999999998,442.23 +7.8,39.04,1018.46,66.5,482.31 +7.46,41.26,1009.63,96.51,482.83 +18.13,66.86,1012.9,78.84,454.85 +9.55,40.72,1023.12,68.06,481.08 +23.48,73.67,1007.07,88.49,437.19 +9.23,39.66,1019.44,76.11,481.77 +29.73,67.25,1017.64,37.79,439.06 +31.19,69.68,1012.6,52.06,440.97 +21.7,70.32,1009.12,91.3,438.52 +25.77,71.37,1008.88,78.95999999999998,433.45 +29.78,74.78,1009.28,55.09,436.39 +28.75,64.84,1009.61,58.24,441.3 +19.93,57.25,1010.6,89.34,455.15 +10.74,41.46,1016.76,84.59,479.94 +31.23,72.58,1006.61,60.8,427.58 +18.55,41.85,1015.24,62.47,467.51 +28.08,59.14,1016.16,58.08,438.83 +26.12,75.59999999999998,1017.41,72.31,439.68 +16.88,38.58,1014.72,73.98999999999998,462.7 +15.95,42.24,1017.71,69.32,465.35 +5.96,36.25,1029.4,88.63,488.2 +28.19,62.6,1017.34,46.95,449.61 +12.0,41.17,1019.48,58.71,474.4 +20.65,57.5,1016.04,87.45,448.22 +3.82,35.47,1016.62,84.34,489.04 +26.15,64.27,1013.03,59.77,439.11 +24.66,60.29,1018.0,59.56,445.26 +26.51,50.05,1006.75,65.34,440.22 +27.77,63.9,1013.62,51.43,441.3 +14.8,44.21,1021.59,89.24,466.21 +22.66,68.3,1017.73,86.92,431.27 +14.54,42.77,1019.61,81.81999999999998,466.37 +13.87,41.74,1021.42,64.02,472.12 +24.6,67.69,1008.67,67.69,440.22 +13.49,44.47,1030.18,69.15,468.46 +10.27,41.44,1017.04,77.09,479.3 +22.23,46.93,1013.09,58.02,448.27 +32.69,72.86,1003.57,56.84,431.76 +24.86,60.77,1016.85,71.24,440.68 +23.46,72.43,1008.0,90.55,435.36 +15.67,48.78,1013.76,88.92,462.96 +12.37,46.97,1013.95,90.76,464.4 +22.78,62.44,1011.79,75.43,446.12 +20.88,57.85,1012.39,85.47,450.87 +12.24,44.92,1023.74,88.21,473.26 +10.52,41.78,1013.54,71.52,474.58 +20.84,59.8,1016.96,75.05,451.13 +14.47,48.14,1017.28,87.36,457.45 +20.21,65.06,1016.46,73.36,451.46 +15.97,52.72,1024.72,65.97,462.64 +15.78,48.6,1007.24,84.23,460.86 +13.56,39.18,1023.4,63.82,470.38 +19.79,64.45,1016.14,73.54,451.37 +18.11,44.85,1014.48,48.94,458.85 +32.73,69.88,1007.86,46.95,434.32 +24.02,64.63,1020.49,55.17,449.66 +14.64,53.82,1016.33,60.59,463.18 +10.28,39.61,1020.43,69.09,478.34 +17.08,40.12,1012.17,81.5,457.81 +26.06,67.83,1009.26,66.37,432.28 +21.82,50.66,1013.74,73.59999999999998,455.2 +7.05,43.65,1018.41,72.36,480.47 +4.08,35.19,1018.87,97.07,489.44 +8.529999999999998,38.18,1017.54,76.48999999999998,480.86 +12.87,39.3,1019.26,71.55,471.48 +25.31,60.75,1008.65,79.34999999999998,437.33 +26.67,70.94,1007.7,56.56,439.13 +6.57,39.37,1020.2,77.37,487.94 +18.01,44.2,1018.84,55.72,456.36 +25.06,74.33,1014.05,69.02,437.27 +23.21,58.66,1012.24,65.31,450.92 +16.78,37.2,1011.97,68.94,471.24 +6.37,41.03,1022.23,80.36,490.47 +4.56,40.27,1011.13,80.23999999999998,493.87 +25.74,65.38,1009.6,54.34,452.94 +24.35,60.27,1017.6,75.45,441.74 +13.45,43.14,1015.5,74.33,474.1 +22.12,47.93,1005.5,84.47,443.41 +20.77,69.51,1012.96,62.89,442.82 +27.01,63.78,1016.72,47.89,442.6 +17.21,52.9,1019.91,77.31,460.88 +29.01,70.32,1007.26,60.55,429.23 +27.78,73.56,1007.05,95.32,436.5 +20.76,62.52,1015.63,81.04,451.69 +13.97,53.82,1016.81,62.32,465.24 +10.22,39.96,1025.05,96.05,471.36 +16.21,50.9,1012.46,84.45,462.68 +27.4,77.23999999999998,1007.65,78.13,435.74 +19.2,59.21,1017.84,89.56,450.86 +22.36,64.15,1021.05,68.43,453.94 +16.5,44.2,1018.94,63.59,458.3 +10.8,41.74,1020.24,78.62,479.32 +12.61,43.22,1013.41,78.94,466.85 +20.54,69.05,1001.6,79.62,442.86 +28.85,59.27,1011.69,51.8,440.3 +27.15,59.21,1013.49,51.71,440.27 +16.41,44.92,1024.27,84.16,462.12 +19.49,46.63,1013.11,88.01,451.31 +21.92,66.54,1012.49,79.81999999999998,443.03 +28.54,58.33,1013.9,49.4,439.28 +26.16,63.76,1010.03,68.77,437.24 +10.76,44.58,1016.41,79.23999999999998,483.54 +28.08,73.42,1012.17,62.74,434.0 +22.1,71.29,1008.2,75.38,442.35 +23.35,71.85,1009.32,73.48,441.28 +26.25,61.02,1011.47,71.22,436.44 +10.74,40.92,1021.74,94.97,466.77 +27.98,74.87,1010.02,66.44,435.32 +9.7,40.71,1025.63,80.34,483.19 +22.49,45.61,1013.1,75.69,455.12 +22.31,51.19,1009.38,79.72,444.74 +3.94,39.9,1008.06,97.49,488.81 +9.86,43.56,1015.13,74.89,481.87 +27.51,73.77,1002.42,90.88,436.91 +27.69,69.71,1009.9,69.91,440.43 +12.52,40.24,1020.45,97.41,470.56 +10.06,42.02,999.37,98.65,477.82 +12.25,44.85,1014.13,85.25,470.92 +19.88,47.03,1012.27,91.99,456.44 +20.59,42.04,1009.78,62.77,463.08 +7.87,42.85,1012.18,94.21,480.54 +8.3,40.35,1012.37,98.17,481.77 +18.23,58.96,1015.55,69.61,459.12 +17.57,43.7,1015.53,67.22,463.64 +25.89,74.22,1007.43,81.55,433.73 +8.89,41.54,1019.27,82.87,483.82 +10.7,36.18,1018.16,63.15,475.08 +14.6,39.31,1011.11,72.52,464.16 +6.89,43.65,1019.87,72.77,484.0 +9.06,36.3,1015.14,58.71,477.38 +26.85,71.73,1010.06,65.24,429.97 +18.8,44.71,1016.56,31.29,459.85 +22.15,43.77,1010.81,60.08,448.46 +29.48,73.20999999999998,1000.67,79.34999999999998,433.53 +10.51,44.78,1012.59,85.29,474.77 +12.74,39.13,1008.19,94.81,468.57 +30.0,61.5,1009.4,48.63,435.6 +21.38,60.84,1017.94,82.83,445.8 +23.73,59.15,1014.08,62.65,444.07 +30.65,71.98,1004.92,63.39,429.85 +12.0,41.17,1019.48,58.71,474.4 +17.16,53.16,1013.2,82.85,456.93 +24.65,71.98,1006.46,91.11,431.77 +27.46,68.08,1013.06,46.49,433.72 +20.56,60.08,1017.79,78.08,452.8 +26.45,71.37,1008.0,77.06,438.36 +20.3,48.41,1007.48,89.66,446.68 +12.82,48.14,1017.47,81.45,467.48 +20.62,48.41,1007.37,87.51,445.4 +29.45,70.02,1010.28,65.93,437.82 +8.37,40.92,1021.82,86.03,476.02 +22.61,50.32,1008.41,79.4,444.74 +18.8,44.78,1009.65,46.0,462.79 +26.86,71.14,1007.11,76.61,426.97 +8.77,40.77,1011.54,89.58,480.56 +22.47,59.43,1006.02,85.21,444.5 +6.8,39.37,1020.24,73.29,487.33 +10.69,36.71,1022.08,83.28,472.81 +4.97,38.91,1018.99,89.86,489.96 +14.56,40.69,1015.48,73.73,469.31 +26.71,59.39,1014.24,66.45,439.33 +19.66,58.79,1017.17,84.16,447.93 +14.1,48.92,1011.6,84.39,461.34 +16.83,46.48,1007.21,87.23,455.64 +13.83,40.78,1024.85,73.08,458.85 +19.95,57.25,1011.08,88.04,453.03 +22.67,58.2,1016.91,60.75,446.36 +30.67,77.95,1015.28,61.67,435.96 +10.32,40.35,1011.64,84.05,481.51 +10.32,41.01,1021.04,95.3,467.81 +28.14,65.34,1014.44,46.17,443.11 +9.7,37.14,1012.79,75.2,475.77 +29.23,75.59999999999998,1017.72,52.26,438.92 +19.21,60.07,1014.94,70.02,452.84 +15.79,38.28,1014.4,74.84,465.64 +26.13,79.73999999999998,1005.61,90.27,431.29 +8.47,42.02,1005.37,92.73,477.67 +26.31,66.48,1005.93,63.9,432.89 +10.17,41.46,1020.01,84.86,482.36 +16.58,38.01,1023.5,60.14,464.03 +16.52,53.16,1014.68,76.81999999999998,457.81 +16.68,43.14,1018.39,76.48,459.83 +14.51,49.83,1006.27,91.65,460.45 +26.64,62.44,1011.81,72.45999999999998,438.67 +29.87,73.68,1015.1,40.96,433.43 +15.8,40.66,1016.15,88.24,458.55 +21.54,66.54,1004.99,92.87,440.8 +7.23,41.22,1015.23,98.04,483.31 +18.95,65.48,1018.17,71.85,452.85 +30.99,68.51,1008.0,71.35,430.09 +7.5,40.02,1031.39,82.53,476.01 +32.11,78.05,1010.36,58.78,431.31 +19.77,54.42,1011.73,89.26,458.21 +20.25,44.78,1007.93,40.16,462.44 +23.08,74.78,1009.85,83.67,437.86 +22.99,46.93,1014.15,49.42,451.41 +30.9,70.8,1008.48,67.48,435.27 +14.44,40.1,1015.51,79.78,468.19 +12.54,43.69,1017.26,83.59,470.04 +9.44,41.4,1027.64,86.22,473.94 +10.5,52.72,1026.32,85.04,468.01 +21.84,64.69,1007.57,77.34,450.25 +24.55,58.86,1015.22,60.53,445.8 +14.22,45.01,1014.17,70.14,464.06 +10.1,41.58,1021.26,94.06,468.19 +10.44,39.04,1023.99,85.03,480.34 +5.37,40.07,1012.75,63.58,494.21 +16.77,49.39,1018.61,95.86,459.38 +11.38,39.22,1018.62,57.14,473.71 +9.97,41.26,1020.6,91.14,475.43 +18.93,67.71,1005.04,82.4,444.55 +8.61,43.8,1021.9,74.34999999999998,478.25 +30.07,69.82,1010.39,57.53,437.38 +7.53,43.65,1018.58,64.85,479.15 +13.67,42.32,1015.41,79.04,464.56 +13.49,44.47,1030.46,69.49,466.66 +10.38,37.73,1021.5,75.02,475.02 +22.86,58.96,1014.03,54.96,451.82 +18.49,41.1,1001.9,59.99,460.76 +8.39,52.72,1026.06,86.76,473.45 +25.24,68.67,1006.76,76.95,442.29 +27.89,69.88,1007.99,85.62,430.75 +5.25,40.07,1019.48,67.7,495.23 +15.81,54.3,1017.8,68.45,461.63 +32.67,77.95,1014.62,50.73,432.32 +25.24,66.54,1002.07,81.22,433.86 +7.69,39.96,1023.9,89.18,478.05 +12.38,40.6,1013.86,85.35,472.53 +29.12,67.83,1008.05,46.86,432.46 +30.51,60.75,1009.86,51.0,435.57 +20.24,56.53,1020.29,77.75,455.25 +19.12,44.85,1014.66,43.66,463.71 +21.71,61.45,1010.97,91.62,445.72 +10.46,37.5,1013.12,76.73999999999998,472.16 +22.42,59.43,1007.12,90.56,440.99 +25.91,67.07,1005.66,60.12,441.74 +9.8,41.82,1032.98,67.55,473.72 +31.44,64.44,1014.04,49.15,437.6 +7.4,41.04,1024.44,90.9,477.69 +23.35,47.01,1015.03,73.9,456.3 +27.18,61.41,1012.17,46.11,449.7 +30.6,72.29,1010.54,41.52,441.5 +20.61,60.1,1010.84,80.56999999999998,450.46 +22.69,64.45,1012.82,45.03,450.65 +22.83,58.62,1017.82,69.76,450.96 +22.22,66.05,1016.15,80.58,442.95 +7.28,40.67,1020.16,72.7,493.3 +23.47,59.22,1013.44,83.33,442.13 +5.62,40.62,1015.81,85.34,483.13 +24.71,60.77,1016.67,69.7,443.52 +13.08,39.28,1012.41,77.98,474.13 +17.67,45.09,1014.26,51.92,457.67 +29.25,69.13,1010.27,67.35,426.29 +23.72,58.62,1016.65,69.1,447.49 +10.38,40.71,1025.27,80.87,481.3 +19.2,61.27,1020.02,65.53,455.2 +12.78,41.04,1025.16,85.14,461.61 +21.28,44.05,1005.69,83.2,444.56 +25.24,63.47,1011.3,66.21,442.75 +30.9,73.68,1014.95,40.9,430.29 +16.41,41.48,1016.28,45.19,451.93 +21.71,60.77,1017.95,85.07,444.59 +25.89,48.41,1008.59,65.38,442.12 +29.07,51.43,1006.22,61.58,438.79 +23.25,71.29,1008.05,71.36,442.21 +14.89,39.82,1013.23,82.49,470.19 +28.85,71.32,1009.09,76.9,435.13 +15.37,50.59,1019.02,98.2,463.35 +21.9,55.5,1018.85,60.27,456.52 +29.75,70.32,1007.35,55.8,427.2 +21.67,50.32,1008.41,85.99,445.31 +18.37,58.96,1015.5,67.79,460.25 +10.36,37.83,1005.87,98.56,472.62 +5.97,40.35,1012.3,94.1,489.03 +31.4,66.54,1003.55,57.73,425.91 +4.69,39.42,1024.58,79.34999999999998,486.34 +6.33,39.33,1012.06,93.16,492.22 +27.05,67.79,1010.99,71.37,443.89 +20.79,50.66,1013.39,77.93,454.78 +15.35,35.4,1016.3,57.12,468.94 +17.69,65.46,1013.72,67.28,448.49 +25.86,76.2,1005.73,69.35,438.75 +24.98,71.98,1006.59,90.61,432.06 +22.33,59.8,1016.84,67.09,450.07 +25.64,68.08,1011.06,71.06,431.77 +30.71,68.24,1006.15,34.15,429.41 +29.03,69.51,1009.8,47.04,435.09 +10.8,41.62,1012.84,93.84,462.84 +20.76,59.21,1017.94,80.84,447.67 +18.68,46.0,1002.2,97.17,447.8 +22.56,60.29,1018.19,67.53,447.15 +21.89,63.94,1019.55,55.09,447.74 +20.87,57.19,1006.5,77.0,445.95 +27.11,69.75,1009.74,85.67,433.28 +26.13,57.32,1012.27,45.78,441.6 +21.22,59.15,1014.68,59.71,450.96 +16.32,43.14,1014.72,70.43,465.38 +18.03,53.16,1013.06,82.03,458.04 +16.77,42.28,1007.53,73.19,465.52 +19.78,54.42,1011.74,89.34,456.84 +21.47,57.19,1006.45,75.8,448.31 +28.46,60.23,1010.2,63.38,439.88 +21.32,59.8,1016.26,76.26,452.7 +7.94,40.56,1023.25,80.84,488.01 +15.7,42.99,1007.51,76.05,464.59 +22.25,60.84,1018.07,73.67,443.99 +27.32,73.42,1012.07,86.3,432.74 +27.83,72.29,1012.04,48.86,445.73 +11.58,41.74,1020.41,74.09,478.06 +13.28,43.8,1023.17,63.98,466.78 +14.39,44.84,1023.55,91.14,464.15 +9.98,41.01,1017.83,98.07,466.05 +23.39,63.21,1011.91,84.57,448.3 +11.23,43.67,1012.57,72.09999999999998,475.41 +21.94,57.5,1014.64,78.52,451.1 +26.88,79.73999999999998,1006.54,93.7,434.77 +16.12,45.87,1008.15,86.12,457.41 +8.23,41.01,1022.89,98.03,474.52 +30.01,73.18,1012.23,60.9,429.84 +15.66,43.99,1021.18,88.62,467.57 +34.03,73.56,1006.49,51.07,440.29 +17.48,58.95,1016.49,90.35,449.26 +9.19,41.01,1022.14,98.98,468.37 +25.71,52.84,1006.32,53.29,445.54 +30.31,70.36,1006.55,59.92,439.11 +10.57,41.55,1003.62,67.89,475.6 +17.57,44.06,1015.43,72.75,459.73 +23.34,45.61,1012.73,74.09,455.82 +24.51,68.63,1014.15,45.1,447.66 +19.77,49.39,1019.02,91.03,451.05 +15.55,43.71,1024.34,79.61,465.14 +10.89,40.81,1025.82,81.18,478.23 +6.84,41.06,1021.04,89.59,489.96 +14.84,71.14,1019.61,66.78,454.16 +23.34,63.73,1012.1,79.11,443.68 +23.83,64.15,1020.93,63.86,447.95 +8.43,40.6,1015.39,91.81,483.1 +20.92,57.76,1017.22,75.86,453.96 +21.39,58.05,1013.03,86.44,449.76 +27.56,68.08,1010.8,59.18,433.95 +9.98,39.66,1017.32,77.78,481.64 +29.7,67.17,1007.31,66.56,438.04 +14.12,42.99,1007.13,78.16,468.45 +9.42,41.4,1029.99,88.41,477.01 +20.35,67.45,1015.14,69.22,447.64 +8.77,42.49,1010.7,86.78,469.1 +22.51,68.63,1015.1,57.19,450.75 +11.35,38.91,1017.93,83.45,474.22 +30.33,70.32,1007.75,52.49,430.1 +24.57,72.23999999999998,1011.44,79.19,434.93 +17.68,39.08,1002.77,74.23999999999998,454.18 +21.69,69.94,1010.7,80.8,443.67 +8.11,41.92,1029.61,91.92,483.52 +9.12,41.49,1020.58,96.23,475.69 +33.18,72.29,1009.51,58.35,435.26 +10.61,40.77,1022.09,83.62,471.26 +24.13,48.98,1014.74,40.13,460.38 +25.42,73.17,1012.29,85.86,437.06 +19.66,59.87,1018.75,87.6,446.28 +24.78,58.46,1016.82,67.5,442.42 +14.32,45.08,1023.24,84.53,467.21 +28.02,71.77,1006.5,72.41,428.58 +10.72,41.17,1019.68,60.71,479.21 +30.62,66.54,1004.11,55.36,429.01 +16.27,56.89,1013.74,84.36,454.88 +19.31,52.72,1024.93,53.93,455.25 +24.96,60.27,1018.68,69.97,442.67 +7.0,41.55,1001.43,97.12,483.92 +9.0,40.78,1025.39,99.22,468.5 +13.05,34.03,1018.31,64.99,472.69 +20.3,59.8,1015.24,78.75,453.29 +23.82,64.15,1020.96,60.11,447.37 +25.0,68.14,1005.35,57.13,437.67 +30.66,73.77,1003.13,78.09,430.0 +24.8,50.23,1016.62,63.13,453.56 +14.86,43.14,1019.21,99.14,461.14 +26.38,71.73,1010.04,69.45,431.66 +25.22,69.88,1007.17,80.26,443.24 +11.1,40.0,1021.29,86.58,477.2 +7.87,41.17,1020.33,77.77,486.2 +13.25,43.7,1013.61,76.05,472.22 +27.08,62.91,1011.9,62.58,442.91 +23.84,49.21,1013.85,50.36,447.09 +19.66,42.18,1001.51,95.75,454.46 +8.16,39.64,1011.21,85.56,481.78 +25.18,69.23,1013.26,57.45,438.72 +23.03,59.04,1011.85,81.23999999999998,444.85 +31.87,71.22,1006.16,45.66,437.0 +15.17,54.3,1017.38,72.11,464.39 +6.81,38.56,1016.5,70.99,487.45 +29.01,65.71,1013.61,48.07,446.22 +29.78,73.42,1011.27,52.79,445.58 +13.38,40.89,1010.48,92.55,472.15 +26.91,70.47,1007.55,72.59,434.24 +26.73,68.84,1010.75,66.83,440.45 +16.39,41.96,1011.7,94.85,463.99 +22.83,41.1,1002.0,38.62,449.99 +31.49,69.13,1009.33,53.9,425.74 +13.03,39.35,1015.34,79.18,474.02 +13.35,41.44,1015.9,66.04,473.17 +30.83,71.58,1009.92,48.8,432.11 +23.74,65.34,1013.7,62.9,447.31 +18.22,39.63,1005.11,79.0,465.78 +12.06,48.04,1010.01,100.13,465.63 +6.87,40.07,1017.91,57.64,491.4 +10.94,39.69,1004.5,86.29,459.69 +23.69,63.77,1013.39,79.5,444.07 +30.89,74.87,1008.99,56.58,432.68 +24.97,59.87,1018.7,59.94,443.7 +27.33,68.94,1007.04,61.83,431.96 +27.1,52.84,1006.28,53.85,439.08 +26.25,66.56,1008.29,60.65,436.3 +28.07,64.09,1005.41,64.09,436.61 +20.03,57.19,1007.31,81.69,446.46 +12.24,49.83,1007.9,94.28,466.83 +25.04,63.86,1018.92,52.79,441.6 +7.81,39.64,1011.42,86.68,482.22 +26.23,59.07,1008.2,78.93,440.18 +7.98,40.77,1008.69,98.65,480.72 +21.99,71.85,1009.5,74.77,441.1 +9.2,40.77,1011.88,89.86,479.82 +28.74,70.32,1008.15,45.99,431.93 +15.51,36.71,1014.05,72.92,465.85 +31.21,66.44,1008.57,65.76,430.7 +9.25,41.26,1020.51,91.21,473.87 +25.04,51.95,1005.56,66.53,449.45 +6.61,38.68,1017.5,63.88,483.88 +30.7,69.59,1008.03,66.78,433.4 +14.78,38.58,1017.02,82.4,460.54 +10.06,34.69,1027.9,71.73,477.68 +18.91,59.21,1017.76,90.49,450.24 +15.8,53.82,1015.87,68.48,463.09 +23.63,60.93,1006.41,83.06,439.9 +12.02,40.66,1017.27,96.72,464.5 +18.31,52.9,1015.99,66.14,459.61 +22.3,57.19,1006.4,75.28,445.1 +10.46,41.06,1021.41,82.34,481.47 +12.82,38.62,1018.71,83.8,467.41 +20.3,56.53,1020.27,76.48999999999998,454.12 +21.12,62.96,1020.83,69.96,454.65 +20.21,69.94,1009.33,83.96,447.06 +25.18,57.5,1015.07,60.76,449.01 +25.34,69.48,1008.4,74.79,433.81 +12.19,40.75,1015.13,88.98,475.36 +20.06,52.84,1004.21,82.12,447.47 +21.93,61.45,1008.92,98.54,443.91 +29.64,69.51,1012.13,44.65,428.69 +10.52,41.01,1020.35,93.58,466.75 +11.88,40.64,1020.5,85.43,470.06 +30.56,69.14,1007.49,71.0,432.26 +11.01,42.02,995.24,98.62,473.96 +27.6,69.34,1009.63,71.58,440.6 +27.14,64.27,1012.71,54.4,441.68 +25.92,73.77,1001.27,94.28,432.0 +14.65,35.4,1016.16,60.26,469.61 +29.01,66.56,1006.44,57.62,428.32 +23.19,42.67,1007.83,63.31,446.95 +21.67,60.84,1017.93,81.63,442.33 +23.36,56.89,1014.23,78.34,440.51 +14.33,45.51,1015.42,71.55,468.92 +11.73,37.92,1008.02,72.68,472.51 +14.66,47.83,1006.15,91.98,461.46 +19.72,66.51,1015.07,74.7,458.07 +28.57,51.43,1012.02,47.79,450.04 +28.93,74.78,1009.48,56.4,437.34 +14.99,41.35,1004.56,98.9,466.85 +25.68,67.79,1010.66,69.51,449.04 +8.46,40.8,1023.57,81.27,485.06 +32.5,73.68,1014.65,55.72,427.63 +10.23,42.07,1017.93,91.1,475.14 +17.3,62.1,1020.28,88.06,450.83 +13.79,45.08,1025.02,84.36,469.55 +30.24,66.75,1017.95,55.66,435.02 +7.36,40.07,1017.29,52.55,489.45 +33.4,70.8,1009.17,57.01,432.46 +14.57,41.79,1007.61,82.85,457.21 +21.98,59.39,1015.25,84.52,446.79 +25.38,71.73,1009.97,72.59999999999998,434.44 +13.8,44.34,1019.43,66.74,468.8 +9.29,39.96,1026.2,97.55,473.51 +16.34,41.16,1006.36,75.52,462.56 +28.39,51.43,1011.74,47.54,449.63 +29.01,66.44,1011.21,71.56,430.61 +20.91,59.14,1017.25,74.7,442.67 +29.72,68.24,1009.92,66.42,426.54 +20.94,44.89,1009.64,75.14,450.71 +17.83,44.92,1025.04,70.58,458.42 +23.19,60.75,1008.33,82.0,439.43 +14.51,44.84,1023.23,82.33,465.09 +9.06,39.3,1019.73,84.23,480.41 +11.41,40.1,1014.27,91.17,476.81 +10.04,39.66,1015.84,82.31,480.63 +12.21,40.64,1020.31,83.84,464.03 +31.01,67.69,1005.06,46.16,426.64 +26.49,78.92,1010.82,83.42,434.91 +6.59,39.37,1020.34,77.92,488.17 +13.15,41.14,1026.72,80.31,461.49 +13.48,39.35,1014.56,81.25,470.66 +23.0,60.27,1018.72,84.25,442.0 +6.06,41.17,1019.67,84.7,489.62 +9.18,39.42,1025.41,69.46,473.78 +25.44,56.57,1013.8,66.72,444.61 +8.56,40.71,1021.27,95.87,471.58 +18.36,62.1,1019.9,79.09,453.5 +9.21,39.72,1019.54,74.44,478.96 +26.82,65.27,1013.6,53.85,437.84 +23.68,49.02,1007.53,86.05,440.68 +33.8,64.96,1004.88,49.37,427.28 +26.17,48.92,1009.87,34.43,440.09 +9.41,43.5,1021.0,88.74,473.84 +24.03,58.46,1015.71,70.15,442.03 +23.01,59.44,1012.82,82.62,445.72 +17.25,39.39,1014.27,67.8,465.74 +29.59,71.77,1006.33,62.35,426.62 +7.33,40.0,1018.96,80.76,478.16 +9.32,36.66,1027.46,70.76,479.13 +25.19,63.94,1012.78,75.15,438.73 +11.77,40.0,1021.08,85.08,475.49 +25.41,65.12,1016.01,53.39,442.86 +32.31,68.94,1006.11,71.78,431.14 +30.73,69.89,1015.0,58.9,426.79 +7.0,36.24,1013.15,89.64,483.06 +19.35,64.15,1021.37,68.53,457.74 +20.08,63.09,1019.0,77.06,448.74 +13.56,43.67,1011.34,94.02,467.09 +25.85,75.08,1006.24,57.73,444.63 +13.33,54.3,1016.77,80.31999999999998,468.1 +24.47,58.05,1011.27,71.7,446.93 +31.41,74.16,1011.1,57.05,434.88 +26.13,71.25,999.8,88.47,430.6 +30.88,67.83,1008.97,54.99,425.36 +16.81,38.52,1018.26,75.20999999999998,459.01 +15.73,38.73,1002.48,76.91,466.63 +26.65,58.41,1013.53,65.83,442.66 +21.51,65.48,1017.11,72.98999999999998,448.65 +26.85,74.16,1008.66,93.8,431.16 +27.25,73.03,1014.15,68.52,439.78 +35.01,74.67,1016.1,26.3,428.48 +24.77,57.17,1010.66,73.0,441.12 +31.79,76.2,1007.89,56.3,434.01 +20.01,52.9,1018.05,58.88,455.57 +22.67,62.52,1016.47,65.63,449.34 +30.53,65.18,1012.69,41.85,437.89 +21.11,58.49,1011.6,80.44,449.16 +25.52,59.15,1013.88,65.37,439.42 +18.06,52.08,1003.73,100.09,452.19 +8.16,39.3,1019.39,85.38,483.17 +32.55,73.03,1014.36,44.83,439.81 +12.38,44.2,1020.23,81.5,467.04 +27.4,69.84,1002.98,76.48,430.54 +16.38,47.45,1010.08,88.86,450.69 +5.28,42.07,1003.82,80.84,485.24 +17.75,55.5,1020.15,81.26,459.43 +26.92,63.73,1010.29,68.6,440.35 +31.95,70.79,1003.8,55.25,426.37 +17.74,58.33,1013.55,81.8,446.01 +9.16,42.44,1014.43,93.67,480.98 +12.54,44.03,1007.05,84.03,471.86 +24.67,49.5,1013.62,59.42,455.31 +9.59,38.56,1017.01,60.1,481.3 +32.92,69.05,1000.74,39.61,426.61 +14.2,52.75,1025.64,61.02,465.48 +21.86,58.49,1010.88,76.79,449.9 +14.13,43.41,1015.26,55.63,461.96 +20.46,51.43,1007.31,93.25,444.88 +24.51,62.08,1022.58,57.44,447.04 +14.96,41.76,1024.07,73.17,463.26 +24.56,58.82,1011.42,72.47,442.76 +29.38,73.42,1011.49,54.96,445.42 +21.08,52.05,1012.28,45.25,453.4 +33.45,73.88,1006.23,44.14,435.48 +12.93,39.58,1010.93,75.9,473.09 +23.96,58.33,1013.37,59.97,446.01 +18.53,39.72,1001.26,64.08,457.26 +22.68,58.82,1010.11,82.8,443.86 +9.31,41.39,1018.3,93.68,480.25 +23.48,60.23,1011.91,79.48,437.44 +32.48,62.04,1010.39,38.05,446.48 +21.5,61.5,1008.43,78.13,447.83 +28.32,77.95,1014.61,77.17,436.97 +13.25,49.83,1008.76,88.21,453.8 +25.96,63.77,1013.24,65.43,445.26 +34.43,68.51,1010.17,34.09,431.39 +23.56,60.77,1017.93,76.34,443.13 +24.77,69.71,1009.86,85.56,441.29 +14.27,44.34,1018.95,71.44,470.98 +27.63,71.98,1005.45,82.88,426.0 +34.15,68.51,1010.75,37.02,430.19 +10.19,44.63,1020.58,91.64,472.45 +20.0,69.48,1011.05,85.51,448.79 +12.66,43.67,1012.49,95.96,472.44 +30.36,69.04,1009.6,58.73,436.72 +25.59,61.5,1009.12,68.0,439.14 +25.06,65.46,1014.37,38.82,443.03 +15.62,38.28,1014.5,77.01,465.7 +11.64,40.22,1010.58,80.84,477.52 +22.12,49.39,1019.8,72.83,451.0 +25.31,49.82,1014.62,62.15,453.05 +18.95,46.21,1013.47,81.22,457.58 +9.99,41.82,1033.14,68.36,475.75 +10.8,40.22,1011.25,84.57,478.21 +11.46,39.3,1019.53,76.86,475.51 +29.05,69.71,1009.03,64.25,434.05 +32.49,74.98999999999998,1002.19,34.58,435.43 +14.88,41.66,1009.4,67.15,468.55 +12.36,48.04,1012.8,93.59,468.37 +27.51,73.67,1005.71,76.75,431.97 +29.6,69.82,1010.49,61.66,438.47 +23.63,63.57,1011.05,87.96,449.01 +21.71,76.86,1006.71,76.86,438.41 +17.42,44.06,1016.63,82.15,456.57 +11.17,40.27,1009.54,74.56,476.18 +31.46,71.29,1008.57,41.79,430.8 +21.34,59.8,1016.92,77.06,450.74 +26.2,63.56,1013.39,67.07,442.4 +14.5,44.47,1028.2,66.95,465.15 +25.4,69.59,1008.58,82.22,432.58 +21.62,50.05,1007.2,92.9,444.16 +14.29,37.85,1009.98,92.81,468.63 +13.83,39.64,1012.52,69.97,472.95 +19.7,54.42,1011.83,89.86,450.48 +14.12,42.86,1011.84,88.29,471.86 +13.13,40.75,1016.05,80.87,472.5 +14.2,42.86,1031.96,69.59,468.63 +31.33,58.9,1003.77,52.34,439.54 +8.19,41.66,1016.57,75.38,485.2 +29.25,78.87,1012.05,84.28,430.49 +29.99,74.9,1003.84,64.43,435.87 +27.17,67.45,1015.67,49.03,429.87 +21.96,58.79,1012.1,88.74,447.31 +24.31,58.62,1017.29,64.44,449.12 +12.19,41.17,1019.43,65.47,475.64 +11.73,40.64,1020.68,96.98,477.06 +27.22,68.3,1016.84,64.88,436.81 +16.0,44.9,1020.5,80.89,461.5 +21.09,46.63,1013.03,74.8,453.34 +20.16,60.1,1011.24,86.23,453.36 +27.13,59.54,1004.33,73.27,438.32 +24.04,51.95,1006.13,73.92,450.07 +34.29,68.51,1009.58,32.25,427.62 +24.97,58.95,1017.19,56.24,440.03 +11.49,44.2,1018.79,91.14,475.51 +9.26,44.68,1023.22,91.44,478.82 +16.68,53.16,1014.32,78.02,456.29 +20.71,58.79,1017.48,86.67,444.39 +5.06,40.64,1021.49,93.7,483.73 +28.87,72.58,1008.69,79.34,428.89 +25.58,61.08,1013.37,71.27,446.32 +5.1,35.57,1027.17,80.48999999999998,489.96 +27.26,73.18,1012.58,74.83,429.92 +10.94,39.04,1021.81,86.02,479.2 +28.54,69.59,1008.84,78.62,433.3 +18.11,43.43,1008.65,73.3,451.38 +23.79,58.49,1011.0,75.39,445.87 +23.57,64.15,1020.95,68.19,450.08 +27.24,71.25,1000.5,86.28,430.94 +24.27,60.23,1011.84,77.8,438.99 +25.6,71.73,1010.15,68.99,436.7 +17.54,58.49,1012.35,91.56,453.02 +10.27,52.75,1026.19,76.78,470.76 +11.8,43.99,1020.86,98.44,466.75 +19.63,52.72,1025.09,51.16,459.12 +17.29,44.63,1019.6,41.98,460.66 +21.11,74.78,1009.71,84.35,442.68 +24.84,56.89,1012.15,67.24,440.36 +16.13,39.99,1007.04,80.48999999999998,465.25 +18.61,63.09,1019.37,83.08,449.81 +31.17,70.98,1007.19,67.34,431.01 +7.89,40.46,1019.61,74.53,477.27 +11.48,36.18,1017.03,61.62,469.44 +18.68,56.65,1020.38,80.26,455.79 +15.3,43.34,1013.23,82.73,463.7 +3.6,35.19,1018.73,99.1,488.98 +19.57,68.61,1011.13,96.4,448.73 +25.1,74.87,1010.01,79.41,439.93 +11.02,38.28,1013.51,95.66,472.11 +8.94,41.74,1022.55,90.74,483.53 +11.75,41.2,1012.7,89.86,475.35 +14.72,43.34,1013.07,85.61,464.22 +17.3,42.24,1017.07,64.52,469.21 +30.33,68.67,1006.0,54.99,435.53 +26.44,69.34,1009.55,73.18,440.43 +9.43,43.69,1017.28,91.8,478.48 +9.78,43.8,1022.25,69.64,477.22 +13.08,42.32,1016.63,83.72,462.41 +9.14,40.6,1015.34,88.91,483.57 +22.5,58.79,1017.48,73.02,443.35 +12.52,41.44,1016.08,68.94,477.18 +17.15,43.69,1017.05,63.36,463.88 +10.48,39.58,1011.81,88.86,472.61 +25.62,58.82,1010.02,70.31,444.14 +23.84,49.21,1013.6,47.63,447.03 +26.42,59.54,1007.02,76.28,438.5 +26.78,66.54,1010.14,49.01,440.0 +19.41,46.63,1013.23,86.28,452.6 +30.98,67.45,1015.18,45.4,433.59 +20.11,42.04,1010.79,60.31,464.13 +18.44,45.38,1014.3,86.02,461.99 +25.96,60.32,1016.17,55.51,443.44 +11.72,40.35,1012.08,83.98,476.41 +29.28,65.71,1013.76,48.05,445.49 +27.59,59.21,1012.93,51.46,437.49 +27.67,71.64,1004.41,78.14,433.29 +19.0,58.95,1018.05,83.38,451.96 +17.86,45.0,1023.25,53.48,465.78 +4.32,35.47,1017.8,88.51,488.03 +12.93,38.73,1006.41,89.24,471.3 +13.83,38.73,999.62,91.95,469.81 +8.62,39.66,1015.18,89.59,482.99 +23.18,72.98999999999998,1009.01,90.09,439.12 +11.92,38.25,1013.13,84.92,472.5 +16.69,43.52,1021.78,80.87,460.51 +14.65,39.28,1014.04,77.98,470.41 +23.39,61.87,1010.35,48.91,444.03 +15.12,41.79,1007.16,82.35,455.63 +8.029999999999998,37.8,1020.47,60.67,481.51 +32.84,74.67,1015.89,31.81,430.88 +11.76,39.28,1016.9,91.06,478.07 +8.09,43.02,1014.79,81.06,484.35 +5.45,39.04,1020.07,77.05,487.33 +27.33,52.84,1005.88,56.16,438.97 +24.31,44.05,1006.16,73.3,442.69 +7.41,40.71,1023.07,83.32,474.25 +24.62,72.23999999999998,1011.39,83.94,432.13 +26.6,61.41,1012.35,54.42,451.4 +28.31,65.71,1014.67,59.29,447.26 +11.2,42.02,999.99,96.69,472.27 +23.28,68.28,1000.79,81.34999999999998,442.04 +16.9,44.88,1018.14,72.20999999999998,466.8 +22.91,61.86,1012.8,92.69,441.24 +12.53,43.56,1014.8,74.05,469.23 +16.97,50.9,1012.31,82.65,463.28 +23.97,68.67,1006.63,76.83,441.53 +11.22,43.13,1017.24,80.9,473.93 +9.77,39.04,1023.73,76.06,483.87 +12.29,42.18,1016.53,83.13,468.75 +21.14,69.94,1008.87,79.73999999999998,440.69 +11.3,40.55,1005.97,97.99,476.72 +11.89,40.64,1021.29,97.16,476.99 +23.22,59.15,1014.58,75.18,443.7 +9.72,41.44,1015.17,84.41,481.85 +24.8,61.02,1009.86,71.75,438.96 +9.38,43.7,1015.45,90.47,481.52 +26.11,62.44,1010.68,72.59,438.87 +15.75,39.39,1014.38,76.29,468.6 +27.76,65.59,1010.8,67.29,439.03 +15.62,35.4,1016.19,53.95,467.95 +7.92,36.08,1021.01,81.84,482.98 +12.08,49.83,1008.21,96.01,467.54 +15.34,41.96,1012.08,100.12,468.33 +23.43,60.32,1015.34,69.34,446.88 +26.14,72.98999999999998,1007.49,81.72,433.25 +28.75,70.02,1010.33,46.55,440.31 +25.6,66.48,1006.16,69.34,435.12 +18.24,58.46,1017.38,86.92,449.63 +23.2,48.41,1008.64,80.92,444.69 +9.87,41.82,1033.04,68.57,475.58 +31.07,64.96,1005.2,58.93,428.63 +22.33,45.87,1007.8,63.61,447.02 +26.1,58.9,1004.18,71.63,444.4 +18.98,38.52,1018.85,63.16,454.6 +33.41,77.95,1010.3,59.72,432.9 +30.57,69.82,1009.86,52.94,437.62 +18.18,67.71,1004.5,87.26,449.24 +29.94,65.74,1012.4,46.94,440.54 +18.21,39.54,1009.81,70.92,461.73 +25.81,66.51,1016.53,62.19,437.57 +17.7,49.78,1005.19,100.09,451.24 +18.36,56.65,1020.29,82.0,456.49 +9.27,42.02,1004.29,95.05,474.93 +18.92,67.71,1008.19,64.53,446.77 +12.08,40.75,1015.84,86.9,476.84 +28.73,68.24,1008.31,56.85,430.63 +21.63,50.16,1005.7,84.84,448.32 +22.54,63.91,1012.15,84.91,446.64 +29.92,69.75,1009.12,67.15,441.5 +24.03,66.54,1012.19,69.15,438.08 +14.85,43.13,1016.02,55.29,470.37 +8.3,36.08,1020.63,80.42,481.6 +17.59,65.48,1018.96,81.34,454.51 +15.02,42.07,1017.89,83.68,460.82 +13.69,40.1,1014.38,83.57,470.76 +6.02,43.65,1013.85,83.53,481.92 +10.64,39.61,1018.33,66.81,471.48 +16.62,52.05,1011.96,67.81,457.89 +28.08,64.44,1013.02,64.34,440.26 +17.23,41.1,1002.45,68.88,464.18 +31.55,69.75,1010.12,58.36,435.01 +23.84,49.21,1013.35,45.4,446.54 +15.07,50.88,1014.33,100.12,464.37 +23.57,70.04,1011.06,82.79,437.53 +31.18,69.04,1008.19,49.72,441.26 +25.79,75.59999999999998,1017.46,75.63,434.65 +9.48,40.8,1023.82,78.98,485.36 +19.69,56.65,1020.86,73.41,455.32 +10.09,41.62,1015.21,96.56,463.86 +24.48,69.45,1013.86,62.39,435.74 +22.72,62.4,1010.28,80.79,445.22 +29.57,67.83,1009.19,55.74,427.62 +34.11,73.56,1006.77,45.92,432.78 +7.64,41.17,1020.01,75.14,488.53 +29.58,66.51,1015.57,32.95,435.47 +20.45,59.8,1015.13,79.20999999999998,452.96 +8.9,36.24,1013.29,89.35,479.03 +9.81,71.14,1019.43,87.93,469.64 +7.79,42.03,1017.74,91.48,477.26 +14.5,40.66,1016.81,82.93,463.53 +32.06,69.88,1006.88,63.53,432.47 +14.41,40.83,1009.82,80.43,470.13 +25.31,61.5,1009.31,63.31,437.03 +31.81,66.44,1011.21,53.55,426.84 +12.8,39.16,1015.94,89.83,472.47 +14.98,39.58,1011.78,75.06999999999998,467.77 +18.26,59.15,1012.04,86.01,451.09 +9.24,41.4,1018.34,84.91,477.65 +25.76,65.48,1017.82,54.77,441.14 +22.79,44.57,1007.31,69.36,448.91 +12.75,42.86,1014.9,88.44,475.09 +10.54,42.02,997.5,99.77,472.64 +29.42,56.9,1006.51,53.6,439.51 +22.06,64.15,1021.07,68.66,451.44 +28.51,76.09,1007.88,78.2,438.28 +10.47,41.06,1022.24,81.16,477.47 +30.08,67.25,1017.57,47.77,432.1 +15.41,44.78,1007.69,65.17,456.83 +16.44,44.0,1024.48,76.51,460.33 +27.76,72.98999999999998,1007.81,71.66,435.02 +32.87,70.8,1009.54,59.85,433.1 +13.9,44.0,1025.1,87.17,466.24 +30.14,67.69,1006.54,57.05,426.91 +25.36,61.41,1011.89,55.64,452.29 +14.19,49.83,1006.52,90.72,462.86 +29.01,68.08,1010.74,52.51,427.91 +17.33,42.28,1007.97,50.33,462.26 +12.34,40.1,1015.77,92.26,470.92 +27.1,79.73999999999998,1005.43,86.05,431.51 +22.72,58.82,1012.54,77.72,448.67 +17.74,49.69,1006.09,80.7,457.05 +24.81,63.94,1018.76,44.51,444.26 +15.14,44.21,1019.97,83.86,463.1 +13.65,44.6,1017.99,87.04,466.06 +17.54,42.42,1008.97,67.67,471.28 +22.22,59.14,1017.32,83.41,442.31 +13.01,41.17,1017.26,76.2,469.48 +11.51,41.06,1021.3,78.11,476.91 +26.43,77.17,1008.67,92.59,431.26 +21.9,47.43,1006.8,60.48,452.13 +1.81,39.42,1026.92,76.97,490.55 +21.87,49.39,1019.99,67.05,451.97 +31.63,65.74,1010.83,50.59,437.54 +24.38,57.17,1009.85,74.45999999999998,444.59 +15.31,40.66,1016.46,84.64,458.26 +24.48,50.23,1017.03,66.89,456.02 +15.69,37.87,1021.18,84.38,465.41 +9.99,43.52,1022.95,99.67,473.64 +20.67,70.02,1010.42,94.09,448.75 +23.75,59.07,1007.73,88.82,443.54 +28.07,74.33,1012.0,71.69,428.87 +18.0,44.06,1016.8,78.88,454.59 +32.42,65.74,1010.97,52.73,439.01 +23.37,70.94,1008.01,81.28,441.56 +14.85,40.69,1014.91,72.64,469.3 +22.43,63.94,1012.76,93.24,444.53 +22.45,57.76,1017.55,58.6,450.61 +17.25,43.14,1018.34,76.17,462.8 +26.06,49.02,1007.59,74.08,437.9 +9.11,40.64,1020.68,86.91,476.62 +16.55,54.3,1017.95,60.84,460.59 +19.94,61.87,1009.7,66.6,445.97 +30.62,64.69,1006.23,52.06,435.84 +15.61,41.2,1016.12,75.28,467.81 +21.44,48.98,1014.4,54.22,454.5 +9.14,37.36,1015.22,78.06,491.97 +22.67,68.08,1013.0,66.59,443.79 +25.65,68.08,1011.27,75.26,435.91 +14.54,42.99,1009.27,90.88,468.93 +22.73,63.73,1009.12,94.8,441.75 +18.96,50.16,1010.72,100.09,451.2 +9.74,41.01,1019.12,98.39,465.8 +21.76,60.27,1018.96,85.06,446.86 +31.5,74.16,1011.72,56.42,436.43 +7.98,39.61,1018.57,77.04,479.78 +21.03,63.86,1014.84,71.72,450.64 +7.19,40.81,1015.22,85.65,487.15 +13.06,44.2,1018.95,85.68,469.02 +5.21,43.65,1017.64,78.62,486.08 +14.89,35.71,1015.1,55.11,469.37 +14.28,42.74,1028.79,70.67,467.22 +18.79,49.15,1021.69,70.16,458.75 +16.16,25.88,1009.58,72.23999999999998,461.86 +27.78,72.43,1006.72,74.53,429.62 +28.23,64.05,1011.98,75.23,442.3 +13.69,41.74,1021.19,60.86,471.84 +13.16,54.3,1017.33,82.43,468.4 +18.74,44.34,1019.4,55.16,468.84 +18.87,43.43,1009.16,69.5,454.58 +28.95,66.75,1018.22,60.48,432.39 +19.65,57.85,1011.73,93.89,450.5 +21.2,59.39,1014.04,85.06,444.57 +13.12,48.04,1011.93,100.07,463.46 +29.05,65.74,1013.29,60.02,440.74 +13.78,45.51,1015.56,69.92,468.17 +15.83,41.67,1013.39,74.12,464.93 +30.04,67.25,1017.57,38.14,434.83 +10.58,39.61,1020.39,71.69,477.18 +19.21,53.16,1013.18,81.64,454.01 +24.39,71.85,1009.73,72.23999999999998,438.2 +21.81,63.77,1014.28,83.66,444.52 +12.19,40.05,1014.65,85.1,472.68 +14.46,45.87,1008.26,89.44,458.69 +14.1,44.92,1023.95,89.5,467.22 +30.58,65.18,1011.61,37.43,437.17 +17.32,45.0,1022.19,40.45,469.38 +24.2,60.77,1016.92,71.65,439.13 +21.29,47.45,1008.85,71.6,447.78 +21.25,66.86,1012.99,60.65,455.72 +15.93,25.88,1009.45,72.83,462.7 +11.46,44.85,1014.3,63.24,475.33 +23.09,69.71,1009.75,91.35,437.7 +10.81,44.63,1020.61,88.29,473.86 +17.79,45.01,1015.71,67.13,454.4 +27.54,75.59999999999998,1018.26,57.89,440.87 +21.7,64.69,1007.93,78.37,448.76 +17.53,50.66,1012.74,91.51,457.28 +32.28,75.33,1002.14,62.49,433.42 +9.64,36.66,1027.1,70.11,479.08 +13.01,41.58,1020.82,78.41,464.64 +16.25,58.16,1018.34,78.59,458.31 +9.6,41.03,1021.01,69.03,481.73 +9.42,41.4,1030.38,87.8,472.99 +12.48,40.67,1011.24,61.1,475.96 +13.94,47.83,1004.83,81.2,465.13 +21.19,52.3,1008.24,79.19,447.06 +13.87,49.83,1006.76,89.14,462.46 +16.25,58.86,1015.94,86.52,456.49 +28.81,56.86,1005.82,56.86,434.08 +25.38,63.87,1018.7,52.48,442.13 +11.92,40.62,1015.91,55.4,464.9 +11.67,36.18,1016.03,61.44,472.76 +21.52,46.21,1010.62,67.62,449.08 +21.23,50.59,1017.42,69.26,453.95 +13.48,41.26,1021.92,78.23999999999998,466.88 +20.28,62.52,1017.89,75.67,452.45 +11.6,40.69,1015.51,86.55,474.99 +11.45,41.17,1017.98,84.64,476.0 +4.49,40.27,1012.01,76.5,494.24 +10.12,39.96,1025.98,98.63,471.6 +6.9,40.71,1021.78,94.8,471.43 +11.83,45.09,1013.11,88.52,470.32 +10.23,41.46,1018.89,83.06,479.48 +12.91,40.73,1017.66,93.66,464.61 +29.06,71.64,1005.54,69.84,435.98 +9.98,41.62,1013.56,95.77,463.16 +27.53,67.83,1009.4,53.73,429.05 +24.14,63.21,1012.28,89.08,440.74 +16.96,52.9,1019.61,81.86,460.2 +31.11,72.25,1012.34,44.45,434.22 +22.21,45.01,1012.22,54.84,450.6 +22.95,70.98,1005.36,93.76,438.83 +10.57,41.26,1008.32,97.96,472.9 +9.37,42.32,1015.15,82.96,477.57 +14.78,42.86,1015.32,84.75,471.17 +28.32,68.12,1011.62,46.75,433.59 +7.52,39.61,1018.61,78.95999999999998,481.54 +15.49,39.0,1016.01,71.31,462.28 +21.36,58.95,1018.35,78.87,443.93 +22.51,66.49,1014.59,63.03,453.08 +20.11,57.25,1010.36,88.89,451.95 +9.08,36.18,1020.24,68.37,477.26 +18.14,67.71,1003.82,95.69,442.45 +20.2,60.1,1010.66,84.24,451.17 +10.57,36.71,1022.62,80.48999999999998,473.88 +9.66,41.06,1021.21,84.7,482.2 +8.63,39.96,1024.39,99.47,475.79 +26.84,71.94,1006.6,79.12,427.2 +11.4,52.75,1023.31,75.7,465.79 +25.69,59.07,1006.89,82.34,440.6 +26.92,73.17,1011.42,76.94,431.29 +13.46,39.85,1012.76,72.94,472.5 +26.92,64.69,1006.66,76.14,437.62 +5.35,35.57,1027.12,80.81,488.65 +26.75,69.45,1013.88,53.65,434.57 +5.11,39.4,1012.16,92.14,488.56 +12.5,43.67,1013.99,90.91,473.26 +14.79,41.04,1025.32,75.81,456.97 +24.39,70.72,1009.78,82.25,442.04 +14.69,53.82,1016.54,63.49,463.52 +23.74,52.3,1008.88,76.34,444.4 +30.35,69.51,1009.95,39.24,430.07 +19.83,51.19,1008.13,91.29,449.0 +31.11,71.8,1010.81,56.08,437.2 +9.61,39.04,1023.45,75.66,483.86 +32.72,69.75,1009.6,49.35,437.99 +27.71,72.98999999999998,1007.18,72.68,433.01 +24.73,69.05,1003.25,66.44,437.93 +14.54,43.14,1010.26,82.98,465.45 +21.55,44.57,1006.03,71.54,446.84 +22.76,57.5,1014.75,74.38,451.7 +15.62,40.89,1007.01,79.20999999999998,466.15 +5.67,45.87,1008.91,93.29,478.44 +26.01,74.33,1015.69,81.22,435.82 +23.66,69.51,1012.9,52.59,435.39 +15.11,45.01,1017.01,84.39,462.21 +17.67,50.88,1015.64,90.55,456.16 +31.88,66.44,1009.25,64.06,427.83 +12.57,39.16,1016.53,88.91,476.2 +17.2,58.49,1012.06,92.01,458.5 +7.68,38.06,1020.92,83.87,483.8 +8.35,42.85,1010.46,90.13,483.63 +25.45,74.33,1015.53,80.95,435.12 +16.37,54.3,1017.94,63.63,459.97 +17.7,48.98,1015.79,83.18,454.41 +17.48,46.21,1014.02,80.78,455.35 +29.97,69.14,1007.92,66.74,433.82 +28.21,70.02,1010.58,51.34,442.47 +12.54,40.8,1024.56,68.97,479.65 +21.01,50.9,1012.24,70.82,453.99 +16.57,41.79,1005.82,72.25,452.84 +11.84,40.05,1014.54,86.78,473.82 +12.84,39.54,1011.47,89.86,468.22 +26.31,71.29,1009.87,84.16,432.92 +19.06,56.65,1020.82,82.14,455.7 +15.32,45.01,1013.3,83.72,459.31 +24.92,73.68,1015.12,93.68,438.23 +24.57,66.54,1004.44,83.15,432.41 +16.96,46.36,1019.91,89.11,460.57 +24.85,67.9,1005.9,64.55,445.18 +26.6,61.02,1010.26,66.16,436.19 +8.66,41.01,1022.51,98.55,472.16 +29.92,67.22,1014.09,50.62,444.78 +13.55,42.99,1007.58,97.55,470.82 +16.97,42.86,1013.92,74.8,463.62 +28.02,68.08,1013.44,44.46,434.95 +21.47,50.12,1009.19,93.68,448.11 +28.62,63.77,1012.82,55.77,441.97 +27.97,69.48,1010.4,57.24,432.18 +20.98,60.1,1011.07,79.44,450.95 +26.93,67.07,1005.65,60.26,437.76 +12.39,44.58,1016.38,84.95,475.37 +25.53,59.57,1010.65,82.04,445.59 +5.82,40.78,1024.82,96.01,470.02 +23.2,73.17,1012.0,89.92,438.64 +14.16,44.06,1018.92,76.34,464.91 +19.3,44.9,1008.89,70.55,452.75 +11.67,37.73,1021.2,68.88,473.54 +18.64,52.08,1004.24,99.9,451.3 +14.95,42.74,1027.66,66.71,464.31 +26.54,69.34,1009.5,87.18,435.51 +21.43,59.14,1015.91,64.4,448.51 +18.14,43.56,1012.83,47.1,461.71 +20.15,65.59,1014.62,79.39,449.84 +10.03,43.72,1011.46,96.89,473.26 +10.27,40.64,1020.63,84.6,474.99 +16.18,41.66,1010.01,65.62,465.82 +8.06,39.96,1024.23,94.48,476.03 +27.55,63.13,1012.92,71.29,440.75 +9.95,43.56,1014.85,82.62,477.88 +29.12,58.84,1001.31,52.86,446.51 +24.01,46.93,1013.3,52.24,448.35 +22.54,61.27,1019.12,54.02,450.01 +12.42,41.58,1019.49,86.31,466.05 +25.72,66.86,1007.47,69.14,439.97 +23.07,70.47,1008.64,83.37,439.04 +18.2,45.01,1013.82,68.14,452.21 +20.95,44.89,1010.48,67.97,450.39 +18.32,45.0,1022.67,46.38,471.43 +10.72,41.17,1019.68,60.71,479.21 +16.57,53.82,1015.17,63.69,462.52 +24.75,58.79,1009.87,71.97,444.79 +22.7,63.56,1014.32,71.76,445.0 +14.35,49.83,1006.39,91.23,462.54 +22.1,65.48,1019.3,66.96,447.0 +7.94,35.77,1017.04,63.22,480.38 +23.62,67.45,1014.63,59.8,439.45 +26.96,72.58,1009.23,89.62,429.03 +28.5,74.87,1009.67,53.78,444.88 +30.66,66.25,1007.67,63.03,439.55 +22.38,49.3,1003.56,83.83,441.0 +27.78,68.67,1005.59,59.17,439.92 +30.27,64.69,1006.3,53.69,435.67 +18.0,53.16,1013.02,82.47,455.69 +13.16,40.71,1021.99,77.91,475.87 +20.4,54.9,1016.68,64.26,452.56 +19.72,47.03,1012.1,90.36,458.59 +24.67,69.14,1006.25,88.51,440.03 +14.09,41.2,1016.45,67.27,472.42 +29.23,69.59,1009.0,71.41,437.95 +20.97,47.43,1007.64,71.18,448.22 +27.33,73.18,1012.26,82.18,429.38 +10.22,41.74,1022.65,83.58,479.01 +9.84,40.72,1022.21,77.79,477.52 +32.48,69.89,1013.98,46.39,434.13 +14.94,41.35,1004.82,98.04,466.73 +21.96,59.8,1016.72,72.59999999999998,452.48 +18.99,56.65,1020.46,77.16,457.55 +12.74,41.38,1021.92,56.67,475.63 +34.35,77.17,1009.26,59.33,437.65 +12.65,44.34,1014.74,92.81,473.46 +21.24,44.3,1014.34,83.39,444.0 +25.63,69.89,1015.17,77.42,434.47 +22.09,65.59,1015.54,72.44,447.28 +27.5,59.54,1004.88,72.7,438.81 +25.4,70.4,1006.8,94.78,439.04 +13.86,40.83,1008.76,82.4,470.37 +12.03,40.75,1015.93,85.07,474.97 +31.48,69.75,1008.9,45.66,438.19 +21.34,48.06,1014.49,63.23,458.13 +17.12,49.5,1014.79,87.03,463.39 +31.73,74.67,1016.38,44.51,425.34 +17.35,47.83,1006.71,80.56999999999998,453.96 +24.7,50.23,1016.23,62.03,454.42 +18.87,60.07,1015.15,70.91,453.27 +21.4,74.93,1014.58,80.84999999999998,434.09 +18.77,49.39,1021.06,82.95,454.53 +29.24,74.67,1015.81,59.95,432.61 +25.37,58.33,1013.49,51.42,444.46 +16.96,44.9,1020.5,77.53,458.1 +10.37,37.5,1013.19,79.25,473.1 +23.7,66.56,1002.07,85.19,436.94 +23.26,63.56,1013.64,71.3,446.67 +25.39,58.79,1015.85,62.59,441.51 +28.3,59.27,1010.92,61.83,445.19 +24.72,77.54,1008.39,81.03,438.52 +22.68,50.78,1008.83,70.3,447.69 +4.96,39.4,1003.58,92.22,486.09 +20.23,52.05,1012.15,47.49,457.57 +14.42,44.88,1019.35,59.17,462.72 +16.18,50.88,1014.06,100.09,455.14 +27.96,49.16,1004.8,35.64,442.49 +23.54,70.32,1010.89,80.76,434.45 +33.38,71.06,1008.1,64.83,430.98 +10.98,41.39,1017.54,85.31,476.31 +20.96,61.27,1019.99,67.32,448.77 +16.0,40.66,1016.12,89.23,457.12 +10.91,40.1,1014.07,91.45,478.34 +23.69,73.67,1007.19,86.73,437.57 +10.05,40.23,1019.71,90.41,475.48 +20.77,43.77,1010.76,63.12,453.46 +10.25,37.14,1013.14,70.73,474.37 +18.9,58.46,1016.74,87.65,449.32 +23.07,50.05,1006.9,86.98,442.97 +28.8,71.58,1010.51,59.87,434.82 +23.4,72.98999999999998,1009.48,88.82,438.51 +19.05,55.5,1020.25,75.76,457.5 +17.36,43.96,1013.02,79.59,466.36 +18.76,58.79,1016.66,88.22,453.44 +5.42,41.38,1020.77,86.02,491.38 +19.78,44.71,1015.7,29.43,465.49 +22.49,69.84,1006.78,73.76,437.57 +26.06,64.05,1012.0,84.05,442.24 +22.06,47.43,1009.85,76.84999999999998,453.5 +10.08,41.16,1023.14,96.03,469.17 +19.46,66.86,1012.74,66.2,454.89 +23.94,63.21,1013.52,83.12,440.15 +23.02,67.25,1017.17,72.0,443.44 +24.1,71.29,1007.96,67.56,442.8 +6.67,39.33,1011.07,91.96,490.03 +13.81,40.2,1013.66,88.16,464.23 +23.28,69.51,1013.31,53.0,444.17 +30.34,68.08,1010.85,49.4,428.34 +17.12,58.95,1016.74,90.41,451.67 +7.77,41.82,1032.72,72.8,479.4 +28.72,76.86,999.31,71.74,431.74 +32.91,73.68,1014.49,50.62,426.28 +9.43,41.4,1028.42,84.92,479.28 +10.84,39.18,1023.64,87.1,474.49 +28.5,71.32,1002.54,69.35,435.7 +15.54,41.23,995.45,83.73,463.06 +14.2,40.92,1022.26,71.71,460.42 +15.48,41.66,1009.55,66.74,467.06 +34.14,74.34,1000.19,43.56,434.23 +22.7,61.41,1012.08,78.08,449.75 +28.05,62.6,1017.01,46.46,449.73 +10.18,35.76,1019.71,66.7,473.31 +13.1,49.83,1007.29,92.79,466.08 +13.56,49.83,1007.01,89.86,466.33 +19.97,59.21,1017.87,83.46,450.41 +26.55,69.45,1013.92,52.22,434.55 +18.26,69.94,1004.1,97.39,443.59 +26.48,69.14,1009.31,84.11,435.76 +26.13,48.06,1013.5,47.67,440.99 +15.31,41.35,1005.09,95.25,466.5 +27.99,66.91,1008.47,59.63,439.74 +10.15,41.46,1019.56,81.79,479.32 +21.34,51.61,1010.11,80.7,452.0 +15.56,41.04,1025.8,64.81,457.11 +14.05,40.71,1016.36,68.58,465.74 +21.05,58.33,1013.14,66.34,447.66 +7.4,40.72,1022.56,87.67,484.29 +32.0,73.17,1009.94,40.48,428.69 +26.51,70.32,1010.3,57.4,431.82 +18.22,45.09,1013.62,75.56,454.74 +18.32,42.18,1002.27,95.99,458.46 +33.15,70.4,1003.72,53.98,430.15 +23.38,59.07,1009.29,92.4,442.83 +21.84,55.5,1019.28,62.17,454.99 +25.64,68.14,1005.48,56.11,437.63 +25.16,43.21,1011.73,88.69,442.29 +13.86,37.85,1011.4,89.7,469.94 +13.67,38.53,1009.3,81.84999999999998,470.39 +16.75,42.23,1013.81,84.98,464.87 +25.91,75.59999999999998,1018.23,62.65,443.2 +24.7,58.46,1015.58,68.64,439.7 +5.35,35.79,1013.23,93.53,483.2 +7.04,39.37,1019.37,69.11,488.0 +11.17,44.77,1018.2,79.59999999999998,470.85 +20.0,56.53,1020.43,75.94,454.86 +20.79,57.32,1012.47,70.09,446.18 +14.18,42.99,1007.19,73.20999999999998,468.35 +22.66,63.73,1013.24,83.95,444.41 +14.79,46.48,1007.46,92.4,462.55 +21.93,58.96,1014.23,58.58,453.42 +14.12,39.52,1016.79,75.89,472.32 +12.79,41.62,1010.52,81.83,466.91 +19.67,59.39,1014.07,77.67,447.61 +24.7,44.57,1008.24,57.62,444.65 +15.72,56.89,1013.35,85.06,456.33 +26.33,61.41,1011.9,52.1,452.79 +26.2,65.18,1011.42,47.82,440.07 +11.67,42.74,1025.92,79.56999999999998,474.75 +22.93,62.26,1011.25,83.66,438.34 +12.76,41.48,1014.06,70.34,461.61 +7.87,41.06,1020.91,87.64,486.57 +19.67,44.71,1015.46,31.46,464.99 +24.94,62.96,1019.76,58.44,443.48 +7.66,41.92,1031.96,82.48,485.11 +22.11,59.44,1012.82,84.67,448.15 +26.9,59.14,1016.18,70.88,436.16 +22.35,51.43,1011.34,77.33,445.34 +15.56,40.12,1013.72,89.78,461.21 +11.37,41.5,1013.57,88.82,475.94 +7.71,40.71,1021.53,95.48,471.38 +25.51,73.56,1006.59,96.63,437.07 +7.49,36.08,1020.27,85.69,483.26 +19.51,50.16,1010.33,94.37,448.28 +10.94,40.81,1026.03,80.79,476.32 +25.47,59.92,1010.08,77.18,439.84 +31.23,68.67,1005.82,52.1,436.58 +29.65,72.86,1004.26,69.63,434.67 +8.66,36.25,1028.22,86.96,479.66 +27.16,56.85,1012.07,39.05,437.4 +23.74,63.9,1014.73,81.9,445.47 +31.87,68.67,1005.64,48.85,435.66 +23.18,51.3,1012.04,78.64,448.86 +10.67,40.56,1022.39,77.92,482.36 +31.74,72.58,1007.26,59.58,425.12 +11.87,40.55,1019.06,94.11,473.79 +11.7,41.16,1017.98,95.71,462.94 +10.11,39.72,1019.1,69.68,476.8 +25.49,47.45,1007.89,57.04,444.52 +19.04,43.43,1009.25,68.74,453.32 +15.21,50.88,1014.24,100.11,460.56 +18.66,56.53,1020.13,80.04,459.45 +8.16,39.72,1020.54,82.11,480.21 +25.8,44.57,1008.0,52.56,450.48 +5.97,36.25,1029.65,86.74,487.03 +14.85,39.39,1013.93,76.27,468.84 +30.55,70.04,1010.51,49.37,429.56 +13.16,43.71,1024.44,85.68,469.06 +19.82,41.67,1012.92,51.92,456.87 +13.72,45.09,1012.95,87.41,466.24 +14.66,41.92,1030.81,68.88,464.57 +31.25,74.34,999.06,69.85,432.22 +21.11,65.94,1009.83,71.91,448.77 +29.05,70.32,1011.33,72.5,437.16 +28.7,71.64,1007.11,69.85,436.58 +7.78,40.8,1026.7,85.61,488.54 +21.69,57.17,1011.75,82.63,446.61 +8.99,39.04,1021.99,75.98,483.35 +25.45,69.59,1008.51,83.17,445.61 +29.34,71.98,1005.19,75.19,428.24 +20.08,49.69,1008.34,69.88,453.54 +24.52,56.85,1012.59,54.47,438.89 +24.34,48.78,1018.0,73.44,448.54 +14.92,41.16,1004.83,83.7,465.72 +14.17,42.86,1030.94,66.47,466.2 +15.19,41.43,1011.34,89.67,470.41 +25.02,69.75,1010.04,91.86,437.87 +13.58,44.47,1029.91,70.41,467.15 +28.44,74.93,1013.88,52.0,441.52 +23.39,73.5,1011.37,88.48,441.18 +7.29,40.96,1023.01,90.78,488.65 +22.31,70.32,1009.22,89.53,437.83 +11.94,39.28,1017.04,89.88,475.59 +8.94,41.38,1021.5,79.45,479.95 +13.65,39.28,1012.97,79.64,471.91 +23.1,60.08,1017.69,65.44,451.01 +26.49,71.73,1010.07,74.48,431.06 +13.39,44.85,1017.24,80.44,469.18 +25.6,59.15,1013.31,67.02,441.11 +22.24,60.07,1015.93,62.25,446.14 +9.87,42.74,1024.61,87.74,470.9 +26.35,64.05,1009.81,81.23999999999998,433.63 +28.32,71.64,1004.73,72.70999999999998,436.31 +16.44,43.96,1013.66,76.31,468.57 +21.85,69.94,1010.89,79.4,443.0 +16.88,56.89,1014.01,82.1,457.0 +15.45,46.63,1012.6,85.47,464.37 +25.31,65.59,1011.16,79.70999999999998,440.96 +26.45,75.59999999999998,1017.42,74.5,436.89 +8.14,37.49,1009.04,80.33,480.66 +23.66,72.43,1008.0,89.49,439.02 +18.96,44.58,1016.66,71.95,461.96 +26.13,73.20999999999998,1002.12,92.02,435.34 +11.42,41.54,1020.21,71.57,477.5 +9.66,40.05,1015.78,89.06,481.14 +13.5,44.92,1023.87,87.17,468.85 +16.58,37.64,1015.23,81.59,460.48 +14.31,40.78,1024.3,76.41,463.54 +20.62,43.43,1009.93,64.02,449.07 +14.13,43.7,1015.94,80.89,469.28 +11.26,39.35,1015.47,99.28,471.83 +7.49,39.81,1018.2,85.96,483.71 +24.87,58.33,1013.76,54.55,440.79 +32.81,77.17,1009.17,53.13,430.53 +22.72,63.73,1012.63,82.14,448.56 +27.97,66.17,1010.81,63.73,441.7 +21.65,56.89,1013.13,66.07,445.93 +13.46,44.71,1014.51,50.0,474.6 +21.89,74.93,1016.11,77.88,448.47 +19.32,52.84,1004.29,83.51,450.88 +13.79,40.0,1016.02,70.17,461.16 +25.45,57.32,1011.7,47.09,441.3 +29.45,75.59999999999998,1018.12,50.68,437.31 +19.2,58.71,1009.8,84.62,448.17 +26.52,63.94,1018.23,42.41,440.47 +16.95,58.86,1015.96,87.8,453.2 +13.92,43.5,1021.14,88.44,461.45 +19.05,62.96,1020.48,83.04,454.26 +30.01,68.27,1006.88,51.67,428.6 +21.19,74.93,1015.75,80.84,443.29 +15.54,39.31,1009.69,71.19,461.06 +24.01,65.18,1012.57,76.02,437.27 +26.05,44.89,1009.83,56.36,443.18 +18.59,44.63,1003.99,86.22,459.65 +10.91,41.04,1026.57,74.23999999999998,469.53 +9.69,40.46,1019.1,71.91,472.16 +10.42,39.96,1025.21,95.69,470.81 +27.62,72.43,1007.54,71.33,428.76 +10.06,39.61,1020.87,74.01,476.92 +21.04,54.2,1012.26,85.61,443.41 +8.49,43.69,1016.93,85.63,483.62 +15.29,41.35,1006.32,82.56,466.27 +18.31,50.9,1011.87,86.83,455.5 +12.69,40.75,1016.05,82.92,472.68 +28.24,65.27,1013.43,48.74,439.36 +8.64,34.69,1026.79,80.88,482.15 +26.57,73.20999999999998,1002.31,92.51,431.68 +13.7,43.22,1012.01,71.57,463.99 +11.02,41.26,1020.69,92.13,471.93 +15.17,36.71,1013.5,77.44,471.93 +10.35,38.38,1020.77,74.55,477.76 +10.99,43.5,1021.1,93.64,469.34 +19.15,56.53,1019.95,84.1,456.4 +25.13,68.63,1013.57,43.44,446.36 +10.4,40.43,1025.46,75.09,492.09 +20.27,57.76,1016.66,75.76,450.71 +25.21,70.04,1009.51,76.13,432.93 +18.13,39.72,1002.75,58.85,455.81 +16.39,52.75,1024.42,54.61,459.48 +22.1,58.33,1013.71,69.09,441.31 +30.61,69.13,1009.32,55.17,429.1 +26.27,62.91,1011.97,48.06,447.76 +10.23,43.72,1011.18,97.93,471.61 +29.01,64.79,1017.62,44.31,442.12 +22.19,70.02,1011.03,82.49,444.85 +27.26,63.77,1014.07,66.58,436.01 +23.51,58.79,1016.44,65.38,445.75 +21.19,42.48,1013.43,80.52,469.76 +23.88,51.95,1005.37,75.25,449.52 +12.0,39.96,1011.73,77.77,471.42 +26.96,65.34,1015.05,46.93,441.81 +12.17,41.58,1013.89,88.98,463.03 +8.19,40.69,1019.86,85.23,477.76 +33.6,74.33,1012.31,35.66,428.62 +16.44,53.82,1015.4,63.16,462.09 +9.41,34.69,1027.02,78.91,480.87 +19.11,58.95,1017.07,85.49,449.89 +19.69,56.65,1020.82,71.54,453.96 +21.7,49.02,1008.74,82.8,446.46 +27.63,64.96,1006.3,75.38,434.22 +28.55,69.84,1003.38,67.26,432.7 +13.93,40.2,1013.41,89.86,466.47 +14.71,52.72,1024.7,70.29,462.34 +23.26,64.05,1012.96,88.31,442.75 +12.31,41.06,1021.19,74.38,475.76 +6.9,44.71,1019.7,71.21,486.3 +11.82,41.67,1012.94,84.51,476.73 +9.23,42.44,1014.34,94.2,481.29 +13.25,41.62,1010.8,77.81,457.64 +11.82,41.54,1019.96,67.65,476.97 +12.97,40.75,1016.05,79.67,476.28 +22.56,47.43,1006.72,54.82,448.65 +25.37,68.31,1011.12,70.99,441.76 +22.42,71.77,1005.5,90.62,435.06 +27.43,64.96,999.72,67.94,431.21 +7.29,39.37,1019.24,73.45999999999998,478.19 +20.76,69.05,1001.89,77.86,442.82 +10.17,40.1,1014.05,91.9,479.58 +23.89,65.18,1012.46,78.29,438.97 +11.25,40.67,1011.64,63.54,480.49 +31.38,71.32,1009.17,60.42,433.44 +13.99,45.0,1023.83,77.92,472.55 +25.99,59.54,1007.78,74.48,441.32 +21.49,70.32,1009.07,92.25,443.04 +28.3,64.33,1011.23,68.88,441.51 +30.68,71.8,1010.81,61.4,435.4 +22.29,56.89,1014.39,84.89,441.9 +8.029999999999998,40.07,1016.06,47.46,488.02 +25.1,71.77,1004.34,82.8,429.7 +21.14,58.98,1009.05,94.36,448.31 +21.27,57.5,1014.53,80.76,453.34 +18.67,47.83,1005.12,82.97,454.47 +22.25,59.8,1016.79,69.02,451.64 +23.5,54.42,1012.31,68.29,455.38 +28.33,78.92,1011.15,70.04,432.67 +23.56,66.49,1012.21,53.86,441.92 +10.09,37.14,1012.99,72.59,473.66 +11.6,40.96,1023.95,86.83,473.66 +21.33,60.1,1010.97,78.36,451.95 +10.59,25.36,1009.59,100.16,470.96 +29.45,74.16,1010.49,64.87,438.11 +26.25,52.09,1013.2,53.12,450.53 +24.56,51.86,1014.43,68.85,447.57 +14.02,40.1,1015.56,82.44,467.32 +25.01,66.56,1009.68,64.94,435.73 +24.72,68.67,1006.74,79.02,443.06 +13.52,42.07,1017.91,90.21,464.07 +18.27,65.94,1013.09,84.72,450.33 +31.04,74.67,1015.85,43.32,435.17 +6.8,37.8,1021.09,70.02,485.96 +15.75,47.45,1009.86,86.68,451.5 +5.17,39.33,1009.68,94.19,485.46 +5.79,39.61,1021.64,85.41,489.6 +13.24,40.83,1007.9,87.53,472.22 +18.35,57.76,1019.64,77.94,458.41 +21.14,48.78,1020.39,86.2,450.35 +22.64,72.23999999999998,1011.07,98.55,434.36 +27.46,61.86,1012.39,66.09,439.72 +24.54,44.89,1010.05,59.13,445.11 +26.9,66.48,1004.47,54.71,432.95 +12.33,38.91,1017.24,79.84,472.49 +10.27,38.38,1022.16,70.77,475.58 +8.05,38.38,1021.14,86.39,482.17 +22.66,69.84,1006.16,82.79,439.06 +25.41,48.06,1013.12,46.52,444.01 +11.49,39.22,1016.35,53.11,471.47 +16.48,41.35,1005.61,89.07,465.64 +18.43,57.76,1016.13,87.34,452.65 +19.72,44.78,1009.27,39.18,464.54 +11.46,39.1,1010.17,100.15,470.55 +28.57,62.26,1010.75,62.12,437.41 +12.19,41.06,1021.35,74.98,474.63 +26.41,65.59,1010.69,73.78,441.49 +24.42,66.56,1002.04,84.7,434.18 +23.5,50.78,1008.7,57.7,445.09 +29.72,68.08,1010.72,53.46,430.36 +26.66,70.02,1010.88,58.37,439.99 +10.33,40.6,1015.0,88.62,478.3 +11.09,41.58,1020.99,91.09,464.81 +32.45,68.3,1015.26,44.12,431.79 +18.05,56.03,1020.69,77.87,459.09 +27.22,66.48,1004.59,52.66,436.06 +17.14,41.66,1010.97,57.66,463.38 +20.83,44.78,1008.51,35.9,460.6 +23.53,50.05,1005.63,78.4,443.71 +13.83,43.22,1010.62,70.8,464.39 +11.48,37.5,1014.38,69.75,472.9 +19.5,65.12,1015.53,73.87,453.99 +27.95,73.5,1010.42,58.01,435.45 +12.77,40.71,1014.66,72.81,471.59 +15.29,44.88,1018.85,73.67,463.32 +20.41,50.32,1008.45,93.12,447.06 +23.47,51.3,1011.89,74.09999999999998,448.65 +24.33,77.54,1008.5,82.45,435.38 +13.96,40.92,1022.65,73.08,460.95 +10.1,41.17,1019.18,84.87,479.95 +28.15,74.9,1003.67,76.31999999999998,433.63 +30.13,71.98,1004.95,63.62,431.0 +14.2,45.51,1015.36,74.84999999999998,465.35 +23.22,69.04,1009.65,89.05,448.6 +18.68,52.84,1004.65,88.27,450.19 +24.43,47.45,1007.68,65.18,446.45 +30.59,70.04,1010.28,50.56,429.13 +25.26,65.61,1014.43,58.35,447.34 +7.76,37.7,1014.82,76.47,480.7 +19.13,40.79,1004.47,91.7,457.83 +27.41,74.67,1016.57,80.16,429.21 +15.75,39.0,1015.91,69.58,460.73 +20.72,63.94,1017.17,59.83,447.69 +29.56,52.84,1006.09,42.17,436.46 +30.74,73.67,1005.79,57.89,428.92 +25.72,70.47,1010.44,70.57,434.94 +26.91,61.5,1009.47,55.26,436.84 +12.88,42.74,1026.25,74.54,470.89 +22.24,41.1,1001.96,42.6,451.95 +23.09,63.91,1012.23,83.25,447.9 +14.42,48.92,1011.76,76.03,461.14 +25.16,77.3,1000.73,86.4,439.37 +12.19,44.63,1018.96,80.91,468.91 +26.31,44.57,1007.51,52.6,452.73 +25.54,48.41,1010.51,55.34,437.58 +24.51,65.12,1016.18,62.39,447.46 +17.98,60.1,1009.61,84.11,452.57 +20.97,44.63,1007.64,73.69,453.26 +10.1,41.79,1019.36,78.06999999999998,474.09 +22.85,60.08,1018.05,67.12,452.5 +21.94,56.85,1011.01,77.72,442.63 +17.65,62.1,1019.63,84.3,452.2 +28.14,76.86,1000.7,70.17,434.68 +16.94,49.64,1024.43,69.22,459.25 +13.73,45.08,1023.55,81.64,470.35 +22.88,65.48,1017.33,66.26,447.14 +11.15,40.64,1020.65,97.95,477.79 +27.07,66.93,1017.32,55.38,446.48 +16.95,40.12,1012.59,87.87,457.05 +28.38,72.39,998.93,73.84999999999998,432.02 +10.02,52.75,1021.93,73.68,473.09 +20.06,44.9,1008.79,70.06,448.51 +11.12,41.54,1020.13,75.06999999999998,477.69 +20.74,49.69,1010.91,69.1,454.59 +24.59,71.94,1006.89,88.52,430.28 +29.56,73.88,1005.77,66.45,436.6 +28.76,51.43,1011.88,49.79,449.98 +19.39,51.43,1011.06,94.35,456.25 +29.32,63.77,1013.24,55.1,438.09 +21.4,47.93,1005.16,88.44,445.2 +30.15,70.32,1007.58,54.14,426.8 +27.11,69.59,1008.56,79.2,437.2 +9.37,44.77,1020.61,87.31,474.41 +11.95,39.82,1013.4,92.51,474.56 +25.08,51.43,1011.8,71.98,446.67 +28.75,57.55,1004.77,57.55,435.33 +19.33,58.96,1014.88,67.86,456.54 +12.45,37.92,1008.03,61.87,470.59 +23.2,49.3,1003.4,79.77,440.75 +8.27,38.56,1016.47,66.6,485.31 +6.16,39.48,1004.85,59.68,484.55 +14.78,54.3,1016.96,68.53,463.75 +19.43,52.9,1018.35,61.12,456.08 +19.75,49.02,1009.38,92.89,446.63 +19.39,43.14,1012.75,44.21,464.55 +17.67,43.96,1011.68,82.13,466.31 +26.82,75.08,1005.93,60.81,441.14 +7.72,41.14,1025.11,96.75,478.34 +25.06,44.57,1007.39,56.07,443.66 +5.47,38.68,1017.33,72.70999999999998,485.7 +29.05,75.59999999999998,1017.63,51.16,439.14 +15.28,43.71,1024.32,81.23999999999998,463.44 +24.19,46.21,1010.79,62.04,440.87 +28.32,71.32,1008.02,78.81999999999998,433.82 +11.01,40.22,1011.13,83.09,476.69 +28.18,71.85,1008.78,82.88,427.83 +7.35,41.66,1015.55,79.67,485.35 +18.22,58.2,1017.09,81.92,451.04 +32.35,77.95,1014.76,60.88,432.72 +19.68,44.34,1019.49,49.5,468.27 +19.06,50.16,1011.36,99.64,449.74 +18.15,45.01,1013.06,72.4,455.21 +12.36,37.73,1021.36,65.45,470.39 +11.04,41.74,1022.6,77.51,477.2 +30.66,70.98,1007.6,72.08,435.66 +23.94,62.08,1022.47,61.97,447.5 +21.19,55.5,1019.83,65.22,455.93 +24.62,68.31,1010.45,75.18,448.58 +6.9,40.62,1018.48,78.84,479.97 +25.72,47.45,1007.74,58.35,442.78 +15.24,40.0,1017.34,65.16,454.64 +23.86,73.5,1011.34,87.32,438.62 +20.71,46.63,1013.1,74.48999999999998,453.05 +21.95,68.63,1012.8,61.55,448.9 +11.02,44.58,1016.4,83.57,481.85 +15.08,37.85,1009.85,85.9,465.58 +29.0,70.72,1009.51,67.72,437.55 +14.81,42.03,1017.43,72.54,470.41 +20.6,59.15,1013.32,91.07,443.76 +6.93,39.81,1017.25,87.29,484.98 +6.1,43.65,1018.07,75.84999999999998,485.24 +15.36,40.89,1007.59,86.08,464.12 +23.65,71.98,1006.09,93.39,434.11 +25.18,62.96,1020.04,59.08,444.37 +15.9,41.35,1005.35,92.89,464.93 +29.35,68.31,1010.46,46.2,445.86 +19.85,56.53,1020.57,74.05,457.17 +27.18,62.66,1009.89,52.83,442.16 +25.67,69.88,1007.84,83.32,441.35 +26.09,70.4,1007.41,85.37,432.52 +32.21,68.14,1003.34,62.44,426.56 +22.16,64.63,1020.81,68.47,451.86 +31.17,69.51,1010.51,43.11,428.94 +24.04,68.94,1007.62,69.11,437.13 +31.85,68.3,1014.76,47.06,428.72 +18.91,43.14,1013.56,58.34,460.19 +23.99,50.32,1008.41,67.4,444.23 +24.82,74.87,1010.28,73.54,434.46 +29.7,57.35,1005.63,57.35,433.27 +27.16,72.58,1009.24,90.26,429.59 +22.08,69.94,1008.41,72.86,441.57 +15.43,40.89,1010.63,73.03,468.35 +16.49,49.39,1018.1,93.13,461.54 +7.74,42.49,1009.07,90.11,481.69 +6.1,40.07,1020.21,67.24,494.43 +23.38,52.84,1005.27,82.98,440.28 +5.53,35.79,1011.19,94.01,484.64 +25.42,66.05,1016.74,68.92,442.6 +11.67,41.93,1019.81,82.58,476.1 +26.38,66.49,1013.89,43.06,442.38 +23.76,58.82,1011.75,77.34,444.57 +18.63,61.27,1019.69,73.67,454.03 +19.34,64.79,1018.03,84.77,454.59 +27.03,65.12,1015.94,45.1,441.62 +6.25,40.02,1032.14,80.22,481.38 +31.9,69.4,1003.4,57.76,436.04 +12.62,34.03,1019.06,74.78,471.55 +29.78,65.74,1012.13,44.96,441.51 +21.69,42.23,1013.05,67.55,461.56 +6.14,38.5,1012.4,75.34999999999998,489.26 +20.02,67.32,1012.05,76.34,445.31 +18.96,47.83,1006.15,75.61,454.35 +29.9,74.98999999999998,1002.28,59.76,436.77 +24.16,66.05,1016.45,73.27,443.75 +25.52,71.98,1006.89,86.94,433.42 +12.17,40.6,1013.59,88.62,473.76 +23.17,62.39,1008.04,89.42,439.29 +9.47,40.81,1026.44,91.87,479.96 +6.65,38.5,1014.01,87.6,491.54 +32.21,70.94,1006.76,47.56,430.06 +31.99,53.53,1004.98,53.53,432.43 +11.2,41.54,1019.94,67.18,479.03 +30.52,70.04,1010.62,54.47,431.14 +29.55,66.25,1009.38,69.55,436.29 +7.7,40.72,1022.81,81.97,482.79 +21.0,66.86,1013.06,59.7,451.89 +15.77,39.82,1013.01,79.09999999999998,468.78 +16.85,42.24,1017.43,66.01,472.63 +22.69,65.18,1012.47,80.9,441.18 +13.85,44.9,1019.11,76.79,467.2 +26.95,70.8,1009.73,82.95,436.8 +23.39,68.51,1013.09,78.59999999999998,438.35 +16.59,41.79,1006.67,73.9,455.42 +20.13,47.03,1012.59,83.03,459.15 +23.25,63.86,1017.82,59.64,445.12 +18.32,42.28,1007.86,45.62,460.27 +14.22,39.39,1014.16,80.22,470.98 +4.87,42.85,1013.6,92.3,482.22 +30.72,69.13,1009.94,61.66,435.83 +14.47,42.99,1009.78,91.15,469.0 +12.31,44.03,1007.78,94.42,468.13 +8.83,36.3,1027.08,72.69,479.86 +24.0,58.05,1011.28,74.31999999999998,447.16 +31.11,74.87,1009.11,54.86,434.3 +28.98,62.66,1009.1,52.62,438.45 +9.55,38.08,1019.34,68.38,479.23 +12.28,40.55,1005.72,98.56,472.47 +24.54,66.49,1011.1,69.14,437.38 +19.64,44.6,1015.88,47.56,467.53 +17.79,46.21,1010.38,85.25,448.74 +23.5,59.21,1018.29,63.0,443.31 +13.58,39.28,1016.17,79.17,472.17 +10.68,37.92,1009.59,65.05,474.03 +29.75,73.5,1011.13,67.31,433.63 +21.96,71.85,1009.38,75.98,441.52 +22.25,60.77,1017.8,82.19,444.05 +28.83,71.32,1006.28,75.65,437.99 +24.42,57.32,1011.46,55.92,443.94 +24.81,60.95,1014.72,54.71,446.09 +21.39,52.3,1009.52,88.67,447.77 +23.23,71.77,1005.01,88.1,432.8 +20.77,45.87,1008.07,76.22,452.71 +22.03,59.43,1006.88,82.05,442.9 +16.18,44.9,1021.3,74.45999999999998,463.1 +28.85,66.54,1010.73,43.27,437.79 +5.56,45.87,1006.99,96.48,476.61 +16.47,38.01,1022.3,72.29,461.54 +27.14,65.27,1013.26,55.17,441.68 +10.02,42.44,1014.57,99.16,478.5 +18.78,63.09,1019.22,80.2,452.86 +27.66,76.86,1001.31,69.47,436.64 +25.09,58.95,1016.99,53.16,443.26 +13.35,41.39,1019.17,72.87,474.19 +15.86,38.62,1016.65,67.51,462.58 +26.17,70.47,1010.25,68.96,434.56 +25.96,63.78,1016.95,49.47,443.8 +6.06,43.65,1014.36,83.94,480.74 +29.29,73.18,1012.4,66.65,430.31 +25.03,60.84,1017.69,59.23,441.58 +10.2,41.46,1020.23,84.54,481.46 +14.33,42.86,1010.82,88.59,469.52 +27.47,66.86,1006.1,70.2,437.45 +13.08,43.14,1019.39,99.74,467.06 +29.41,59.27,1011.36,52.37,441.99 +24.27,60.37,1005.13,77.16,437.78 +25.71,66.05,1018.58,66.23,444.35 +17.68,45.17,1017.5,77.56999999999998,461.96 +12.81,44.34,1015.55,90.37,474.03 +25.66,61.08,1013.0,71.21,446.05 +15.14,39.72,1002.96,72.52,460.15 +22.88,71.73,1010.11,86.96,436.36 +8.86,40.23,1017.57,90.47,478.05 +27.69,70.32,1012.2,82.27,432.57 +25.15,71.14,1011.68,70.33,434.99 +20.08,54.42,1011.79,89.35,457.14 +10.06,37.83,1005.49,99.46,473.51 +27.57,69.84,1004.91,68.37,426.6 +8.1,40.64,1020.66,89.04,478.27 +7.76,42.28,1008.52,83.31,483.8 +28.98,70.8,1008.19,73.45,434.08 +25.24,57.17,1010.44,74.0,442.77 +24.35,58.79,1010.13,72.09999999999998,448.19 +29.1,73.9,1007.47,59.48,436.56 +22.41,70.98,1005.67,95.03,441.51 +9.33,39.96,1024.55,98.58,473.78 +16.22,37.87,1022.36,83.13,461.06 +20.31,49.69,1011.57,69.03,455.37 +21.5,50.32,1008.65,81.68,442.71 +13.14,40.66,1016.47,94.76,466.95 +21.73,69.05,1001.31,86.64,439.01 +24.48,69.13,1002.88,69.43,432.71 +23.97,63.86,1018.09,57.62,441.65 +24.0,75.23,1010.69,72.45999999999998,443.78 +26.0,69.89,1015.12,73.06,433.5 +21.86,64.45,1015.83,63.36,457.8 +10.06,39.61,1020.69,69.49,478.35 +31.59,58.9,1003.39,47.6,440.52 +10.74,43.67,1011.75,80.09999999999998,477.32 +23.15,58.79,1011.11,82.49,447.71 +14.81,39.58,1011.62,73.64,467.32 +32.33,69.89,1014.18,50.93,427.29 +16.73,39.64,1008.94,74.91,464.46 +24.35,66.49,1012.48,62.12,439.15 +14.04,44.21,1021.93,86.12,468.64 +10.07,41.39,1019.89,70.53,480.54 +21.6,66.86,1013.02,54.19,450.84 +11.67,44.6,1018.09,92.53,467.96 +17.4,43.14,1018.51,75.31,457.59 +20.45,58.96,1014.53,65.36,454.26 +21.23,61.5,1008.98,82.14,450.92 +27.96,73.42,1011.11,71.93,435.93 +24.16,48.98,1015.19,42.55,459.27 +20.89,67.71,1006.12,59.12,445.39 +23.88,67.9,1005.99,67.58,446.34 +30.81,71.97,1008.36,75.0,430.53 +15.63,44.9,1009.38,82.8,457.44 +11.8,41.54,1020.0,65.85,476.12 +10.77,44.78,1012.87,84.16,470.66 +21.08,46.93,1014.49,63.33,453.87 +27.04,65.06,1013.33,52.37,439.84 +21.98,48.41,1008.42,84.86,444.6 +21.69,47.45,1007.56,77.2,447.06 +27.06,43.77,1011.02,42.61,442.15 +19.74,67.71,1007.68,64.02,446.1 +25.36,74.98999999999998,1002.21,65.96,440.25 +11.16,40.96,1023.49,83.7,478.3 +29.27,69.89,1015.21,67.16,425.55 +15.15,37.64,1014.37,89.82,463.98 +27.27,67.9,1006.36,62.12,436.64 +22.26,44.89,1009.51,78.93,447.07 +13.14,43.71,1024.47,87.42,467.07 +22.64,62.44,1011.82,75.06999999999998,448.13 +25.42,69.71,1009.29,82.5,435.59 +23.7,64.45,1012.87,38.24,451.16 +24.99,60.37,1005.66,74.87,437.67 +12.91,42.07,1018.4,86.5,466.05 +33.01,69.88,1006.71,53.25,433.5 +15.64,38.28,1014.39,76.93,466.51 +28.01,51.43,1011.6,49.2,449.82 +19.24,56.89,1014.29,72.97,452.64 +18.2,49.39,1018.83,96.3,455.86 +30.64,74.87,1009.44,59.01,437.43 +14.15,39.28,1013.5,77.63,471.23 +27.07,77.95,1012.34,76.64,433.61 +31.9,73.42,1010.82,60.58,432.27 +16.79,49.25,1021.21,68.8,458.42 +13.95,38.73,1003.87,83.94,468.21 +18.89,67.71,1003.92,86.12,443.54 +23.38,48.6,1004.45,69.19,440.9 +9.06,43.79,1016.05,81.31999999999998,482.8 +23.09,73.5,1011.4,89.76,438.56 +15.34,71.14,1019.79,77.56,457.1 +23.24,51.95,1006.21,78.08,448.5 +26.42,59.27,1012.9,65.38,443.94 +33.67,80.18,1010.83,60.87,431.99 +16.78,39.63,1005.84,87.91,465.97 +28.31,50.05,1005.75,50.17,436.75 +25.1,69.89,1015.42,85.81,434.98 +19.7,52.84,1004.86,89.72,444.64 +21.85,63.86,1020.16,68.84,445.62 +16.73,37.2,1012.94,74.04,463.89 +21.8,62.39,1007.84,89.04,452.15 +17.55,45.87,1008.07,80.98,454.29 +20.11,50.78,1008.73,93.24,447.42 +12.07,39.99,1009.7,93.27,473.06 +28.24,64.69,1007.35,61.14,438.03 +14.18,40.69,1014.73,74.88,471.52 +19.68,51.19,1008.64,94.88,452.04 +18.2,52.72,1025.87,54.26,463.47 +27.38,74.16,1010.08,78.61,436.65 +14.26,42.32,1016.0,77.43,463.71 +29.52,64.79,1017.53,44.83,439.6 +20.71,49.69,1010.26,69.97,455.69 +17.33,41.35,999.51,68.36,460.46 +19.12,50.16,1011.52,99.71,451.49 +5.66,40.62,1015.87,84.97,485.18 +31.53,70.36,1006.29,57.11,438.71 +34.33,74.34,1001.74,42.75,435.76 +9.13,40.02,1031.08,74.76,473.47 +27.07,74.87,1010.09,58.97,440.47 +28.81,69.23,1013.14,39.18,433.74 +9.36,44.03,1010.3,87.2,474.68 +21.09,74.93,1015.11,81.93,443.51 +12.75,39.58,1010.8,77.31,473.46 +30.84,66.75,1017.54,40.69,432.03 +16.02,71.14,1019.75,70.42,456.35 +8.529999999999998,40.77,1009.85,90.95,481.03 +17.37,57.76,1016.0,86.59,456.4 +20.98,42.23,1013.12,67.37,461.9 +16.98,44.85,1015.48,51.77,464.27 +23.64,71.25,1004.92,93.87,442.26 +23.91,67.69,1008.28,66.71,439.84 +9.01,38.56,1016.67,63.61,482.37 +7.08,39.99,1010.55,91.44,482.83 +13.12,52.75,1023.69,67.5,462.7 +13.91,39.35,1014.69,75.51,469.02 +28.7,49.16,1004.42,36.51,439.45 +22.92,60.37,1007.05,89.94,438.86 +21.97,69.23,1012.25,86.45,443.85 +10.05,37.14,1012.64,75.97,474.16 +29.51,76.09,1007.39,71.5,432.45 +28.12,44.89,1009.18,47.14,441.13 +18.42,63.94,1020.47,74.47,450.55 +28.82,77.23999999999998,1008.35,78.93,433.69 +30.95,73.06,1008.86,74.86,431.77 +14.77,58.2,1018.78,83.83,460.54 +21.9,57.76,1017.45,66.89,449.95 +24.42,65.94,1011.25,65.04,439.63 +32.05,77.23999999999998,1008.06,67.09,432.49 +11.56,41.62,1012.5,91.42,460.6 +16.45,44.68,1018.6,85.14,462.66 +18.51,50.9,1012.95,82.71,459.11 +10.31,39.82,1012.87,88.71,480.61 +11.87,36.43,1023.42,79.5,474.17 +14.24,41.16,1010.16,87.0,471.0 +5.07,40.07,1019.32,66.17,494.87 +13.92,43.41,1015.12,61.64,464.76 +17.9,48.98,1014.17,80.4,453.02 +17.14,40.55,1000.05,71.41,461.21 +10.82,41.55,1004.55,65.14,475.44 +26.26,74.9,1003.85,81.94,437.44 +24.27,68.28,1005.43,67.63,445.23 +28.28,56.9,1006.38,64.99,445.61 +23.14,51.19,1009.56,77.2,443.87 +20.37,44.58,1016.77,66.22,463.2 +26.89,70.32,1012.39,87.17,435.56 +17.7,49.21,1015.16,67.91,455.97 +25.13,51.95,1005.42,62.05,447.7 +22.35,63.47,1013.21,82.52,440.11 +21.88,59.39,1015.58,87.19,442.92 +31.54,77.23999999999998,1008.23,70.19,431.27 +22.59,70.32,1007.07,74.39,437.39 +9.26,39.61,1021.18,84.58,480.38 +30.82,70.36,1006.47,58.79,439.16 +33.17,70.4,1004.45,58.0,430.14 +19.04,50.12,1010.53,100.09,446.59 +8.83,43.56,1014.9,81.55,482.43 +24.78,50.78,1008.81,62.97,443.98 +14.72,39.0,1016.42,76.42,464.93 +16.29,53.82,1014.97,73.15,459.95 +24.18,66.48,1004.0,64.86,434.5 +11.62,39.72,1018.4,68.06,471.56 +26.31,72.39,1001.16,88.43,434.53 +28.84,73.03,1013.99,76.05,435.75 +20.78,58.86,1016.02,77.29,446.2 +8.87,41.16,1023.17,94.13,472.45 +16.28,42.99,1007.5,77.27,464.13 +12.32,41.26,1022.42,79.73999999999998,470.27 +28.8,71.77,1006.41,66.03,426.87 +3.98,35.47,1017.22,86.53,489.64 +17.74,49.78,1004.9,100.09,450.44 +28.8,70.02,1010.76,49.61,435.45 +16.51,51.86,1022.37,81.18,442.48 +9.44,41.79,1020.16,72.26,474.03 +23.39,74.22,1009.83,86.05,439.92 +9.5,37.36,1015.13,63.41,478.8 +21.04,47.43,1007.15,64.82,450.27 +10.56,39.13,1010.19,87.12,463.14 +13.44,39.39,1012.93,84.29,469.67 +24.67,68.14,1004.96,58.15,438.4 +27.2,59.74,1011.99,56.74,440.13 +17.47,43.77,1012.25,76.78,456.41 +8.07,41.17,1019.4,86.43,484.54 +15.14,41.93,1020.95,61.26,469.68 +20.27,63.56,1014.24,86.55,446.93 +16.49,41.93,1022.92,44.98,467.48 +10.12,43.72,1011.33,97.62,473.05 +14.12,39.52,1018.41,78.31999999999998,465.09 +32.49,71.32,1005.03,57.12,433.59 +28.71,51.43,1006.4,64.79,440.17 +29.08,67.79,1010.91,55.96,442.78 +24.47,57.85,1013.05,66.34,445.37 +29.89,64.69,1006.37,58.78,435.39 +21.53,70.02,1010.33,95.95,440.93 +6.13,40.64,1020.69,94.57,481.13 +33.96,68.94,1006.93,47.39,427.06 +27.39,67.07,1006.17,58.2,441.45 +13.83,42.86,1030.77,75.09,470.21 +23.75,67.9,1006.25,70.17,445.22 +13.78,41.16,1021.65,75.77,460.44 +29.54,69.48,1008.91,56.07,427.82 +28.61,69.75,1009.82,71.7,440.53 +33.34,69.88,1007.65,42.72,437.84 +28.28,68.67,1006.36,69.9,435.29 +21.53,58.05,1012.9,87.57,447.93 +33.75,64.96,1002.54,39.28,432.62 +13.63,40.92,1021.89,80.5,462.4 +14.5,39.0,1017.04,75.75,465.32 +22.41,66.56,1003.3,88.71,435.75 +14.59,41.23,999.48,86.66,466.83 +28.83,64.96,1000.05,63.57,429.13 +29.19,67.51,1011.48,55.55,446.97 +28.37,68.12,1012.41,45.87,436.42 +26.08,52.3,1007.03,63.34,442.44 +25.95,59.14,1016.42,67.03,438.46 +31.71,73.5,1010.63,40.17,430.45 +25.5,59.27,1012.92,68.88,442.65 +21.31,46.97,1014.08,62.57,455.76 +30.21,71.32,1006.19,67.57,434.91 +11.64,40.1,1015.5,87.05,477.2 +19.46,60.07,1014.81,66.61,451.89 +19.19,63.31,1016.88,66.58,453.16 +17.01,50.9,1013.23,82.03,460.14 +19.18,65.06,1015.99,77.06,448.26 +23.48,72.98999999999998,1009.61,88.16,437.1 +20.71,58.18,1007.63,98.44,447.06 +14.02,43.34,1016.06,85.8,466.38 +14.0,43.34,1016.37,85.51,463.99 +15.46,42.07,1017.9,81.12,459.15 +23.56,73.67,1007.13,87.1,439.27 +12.05,48.04,1009.14,100.13,464.14 +12.32,41.62,1012.16,88.37,455.71 +11.64,38.25,1013.33,85.79,472.34 +22.12,69.71,1009.7,90.22,434.42 +18.18,50.16,1010.22,99.73,451.14 +23.58,49.3,1003.8,74.62,440.44 +4.11,38.44,1015.9,81.79,488.05 +26.46,74.67,1016.65,84.44,431.65 +21.92,48.14,1013.44,67.8,449.65 +15.6,41.7,1019.15,84.1,461.38 +20.8,69.45,1013.7,82.48,443.77 +24.36,68.61,1010.27,63.78,448.71 +12.92,39.35,1014.56,88.29,469.83 +9.54,41.17,1019.79,65.61,481.18 +28.46,69.75,1009.46,79.75,435.75 +10.95,40.81,1016.19,77.95999999999998,474.36 +16.9,38.58,1014.09,70.11,459.87 +22.72,50.05,1007.0,88.24,444.43 +24.4,69.94,1005.75,58.1,438.76 +31.92,69.13,1000.77,58.91,425.19 +15.62,41.23,992.89,83.99,463.21 +20.17,50.66,1014.38,82.09,454.79 +27.2,65.12,1016.2,44.95,442.54 +12.76,40.27,1006.58,49.34,474.03 +7.47,40.64,1020.47,94.8,478.08 +26.71,66.25,1008.11,79.28,435.41 +7.79,43.13,1019.67,85.35,484.42 +7.68,39.96,1023.73,87.48,477.84 +25.09,57.43,1013.2,70.42,446.11 +15.2,39.0,1016.1,72.76,463.88 +30.98,69.82,1009.17,50.63,438.44 +13.61,42.34,1017.78,88.84,466.17 +12.99,40.55,1007.52,94.15,472.18 +31.85,69.04,1008.35,46.09,434.79 +25.77,65.48,1018.07,51.47,440.96 +25.52,71.73,1009.91,79.55,434.67 +29.04,60.07,1015.42,46.15,440.43 +21.83,41.1,1001.91,41.79,453.38 +14.96,39.31,1010.52,71.28,461.97 +18.23,60.95,1016.74,78.84999999999998,455.53 +30.74,79.05,1005.78,73.19,430.69 +22.81,71.85,1009.61,75.17,440.4 +27.37,76.2,1006.03,67.07,435.64 +11.28,43.41,1017.91,81.03,471.42 +27.3,56.85,1011.66,36.09,440.01 +24.93,47.01,1015.12,64.8,455.39 +32.67,67.83,1007.81,42.16,425.75 +22.46,58.49,1011.5,70.54,448.46 +23.3,52.84,1003.97,72.16,439.49 +13.57,41.4,1021.27,72.55,464.23 +26.44,71.73,1009.52,81.75,430.55 +16.84,39.63,1004.67,82.98,466.06 +20.25,59.8,1015.3,82.69,453.81 +7.55,39.22,1014.53,77.76,482.19 +15.5,39.16,1016.24,78.13,469.52 +20.57,44.78,1008.89,38.78,465.69 +13.74,38.73,1004.34,82.82,470.06 +20.35,68.61,1011.17,86.69,450.89 +29.86,70.8,1010.22,70.36,437.47 +17.52,44.05,1008.87,85.67,455.72 +23.39,69.13,1010.99,90.66,434.5 +25.02,50.78,1008.79,63.06,444.7 +21.17,58.46,1017.71,83.98,446.66 +24.34,66.05,1019.26,74.58,440.67 +25.51,64.27,1013.28,61.85,444.76 +14.56,40.89,1010.94,79.56999999999998,467.53 +20.68,68.61,1011.2,84.81,446.33 +31.7,76.09,1007.06,72.39,441.36 +24.73,65.34,1015.42,52.8,446.92 +16.0,43.34,1013.89,78.39,462.33 +12.85,40.92,1023.04,84.04,461.05 +27.22,69.04,1008.89,70.62,440.85 +5.95,37.8,1022.03,67.97,479.2 +26.91,70.02,1010.75,59.48,445.31 +24.82,59.27,1012.76,72.34,444.81 +12.77,36.71,1013.29,86.4,475.59 +27.17,61.25,1013.03,70.43,435.9 +25.31,65.48,1018.31,55.57,439.72 +17.06,52.9,1019.76,80.9,460.82 +29.23,77.3,1002.71,65.24,438.05 +29.56,74.22,1007.45,57.46,432.84 +9.04,44.68,1023.14,90.73,479.53 +19.94,56.53,1020.48,76.43,453.8 +15.37,43.67,1011.9,91.48,468.23 +25.42,75.59999999999998,1017.39,77.63,438.24 +13.48,46.18,1018.15,88.38,464.58 +20.03,66.86,1013.05,64.59,450.93 +18.53,63.91,1010.26,97.8,440.64 +24.19,46.93,1013.4,49.39,446.3 +11.36,38.25,1013.22,86.16,473.55 +13.94,41.26,1021.67,74.4,467.9 +6.91,39.37,1019.58,71.02,488.2 +15.83,52.75,1024.3,58.34,458.6 +24.57,51.95,1005.8,70.07,448.15 +13.51,40.1,1014.29,86.34,470.65 +12.04,38.25,1013.08,82.45,472.13 +15.18,43.67,1011.59,92.58,467.74 +3.91,35.47,1016.92,86.03,488.67 +18.87,44.06,1013.42,68.78,451.4 +17.74,50.88,1015.56,89.78,457.71 +23.76,74.22,1009.2,92.98,437.47 +26.33,64.45,1013.12,43.31,450.67 +28.56,69.51,1012.45,46.59,434.35 +5.82,41.38,1021.06,86.91,492.12 +20.09,61.27,1020.05,70.71,451.43 +12.74,41.5,1012.94,86.28,469.92 +26.57,48.06,1013.23,40.24,439.54 +15.85,42.28,1007.4,82.12,467.3 +23.64,58.49,1011.4,74.2,445.75 +25.06,52.36,1014.7,67.98,454.13 +22.59,65.06,1014.36,62.44,444.6 +32.78,71.22,1005.12,48.77,438.77 +27.35,77.95,1012.14,74.14,431.72 +23.41,54.42,1012.86,70.12,454.68 +23.05,58.86,1013.84,62.21,445.46 +30.4,77.3,1002.44,59.42,438.43 +31.54,67.32,1013.79,36.99,433.02 +17.9,67.71,1004.3,89.59,449.73 +28.41,75.59999999999998,1018.48,56.07,440.28 +24.43,65.27,1013.25,55.4,440.99 +31.73,73.42,1010.8,61.81,430.46 +18.63,50.16,1010.21,97.13,450.14 +11.18,39.61,1018.56,68.0,468.75 +9.53,44.03,1008.87,89.99,471.23 +25.79,70.4,1007.11,86.03,437.98 +22.5,59.43,1010.31,72.17,441.92 +11.04,39.96,1025.75,94.44,468.84 +29.86,69.34,1009.61,61.27,438.5 +24.01,60.84,1018.83,63.82,436.32 +23.38,58.82,1012.27,77.87,446.54 +22.9,67.25,1017.74,74.53,438.62 +33.94,74.67,1015.94,28.16,427.98 +20.07,49.21,1012.34,56.8,454.25 +7.73,39.04,1018.61,68.23,482.39 +19.06,44.63,1004.23,84.43,456.54 +5.23,40.78,1025.13,92.74,483.12 +19.94,38.52,1018.4,55.9,450.48 +6.4,41.17,1019.54,85.37,488.82 +18.12,43.69,1016.91,52.95,464.68 +9.13,39.04,1022.36,74.59999999999998,483.24 +28.8,74.9,1003.48,75.01,434.01 +24.1,68.08,1012.73,65.24,440.33 +11.02,40.71,1020.3,86.64,469.31 +20.46,51.43,1010.06,83.79,456.7 +8.47,41.26,1020.57,91.28,477.14 +14.39,43.56,1012.97,59.17,469.35 +31.09,64.05,1011.32,61.14,440.62 +18.21,41.23,993.11,62.29,457.53 +12.28,39.96,1011.76,77.06999999999998,468.0 +14.3,42.99,1007.32,73.72,467.9 +13.93,44.9,1022.15,85.93,470.59 +14.22,44.99,1012.0,75.28,460.53 +11.81,40.75,1016.13,84.14,477.22 +25.21,60.37,1006.01,73.14,436.23 +30.27,70.32,1007.93,51.61,430.22 +21.04,65.46,1017.22,63.02,452.12 +27.51,71.32,1007.59,80.02,433.16 +24.46,68.61,1011.02,76.66,440.58 +23.67,71.77,1004.76,86.13,434.47 +20.74,58.2,1017.54,70.66,450.4 +23.95,59.92,1010.15,86.37,435.92 +25.32,60.37,1006.19,73.94,438.5 +10.45,40.71,1015.68,81.48,469.22 +21.16,65.48,1016.99,72.79,446.37 +22.27,48.98,1014.47,49.33,451.74 +14.1,39.16,1008.19,74.05,464.07 +21.75,65.12,1015.53,66.0,452.89 +17.34,45.01,1013.22,77.70999999999998,459.01 +27.29,67.32,1013.92,33.41,437.26 +11.41,40.62,1015.56,57.62,466.83 +14.81,44.88,1019.1,66.7,464.65 +24.54,72.23999999999998,1011.43,74.09999999999998,435.08 +18.87,52.05,1012.02,53.46,458.64 +29.67,71.98,1005.16,67.75,425.14 +28.12,58.33,1013.61,39.67,448.72 +25.86,59.07,1008.59,81.28,440.9 +23.7,62.91,1012.26,57.89,444.99 +9.6,42.03,1017.66,92.27,474.65 +21.07,67.07,1004.64,86.16,446.05 +16.25,40.89,1011.09,62.7,464.33 +9.52,41.26,1020.55,89.73,475.44 +18.56,67.71,1004.77,85.28,444.9 +15.07,43.48,1015.22,57.74,459.96 +14.82,44.58,1020.13,74.88,473.17 +22.03,64.69,1007.21,75.75,440.92 +18.09,48.92,1010.6,52.11,455.07 +25.97,57.32,1012.13,47.48,442.73 +32.98,71.32,1003.67,49.78,433.56 +23.96,51.3,1011.81,71.81,451.11 +23.25,63.78,1016.01,72.01,448.82 +12.68,43.7,1016.07,86.89,471.8 +28.27,66.56,1007.36,55.99,433.52 +14.51,41.79,1009.72,80.62,459.14 +11.61,40.81,1025.68,72.08,473.08 +30.96,69.82,1009.6,51.55,438.74 +14.48,38.92,1015.6,90.05,470.63 +28.62,68.24,1010.15,69.31,428.08 +5.49,40.81,1014.43,90.41,487.36 +11.06,37.92,1008.76,67.32,473.16 +17.41,40.55,1003.91,76.87,461.47 +13.05,44.34,1018.47,81.2,473.4 +13.35,39.18,1023.24,61.98,469.34 +23.74,72.43,1007.99,91.36,437.55 +8.82,43.56,1014.95,81.54,482.71 +28.95,73.4,1011.33,55.14,440.67 +9.09,41.92,1029.36,91.0,478.98 +15.22,41.67,1013.18,67.17,469.93 +26.9,69.59,1008.9,85.08,434.1 +22.99,60.95,1015.14,69.86,449.7 +9.94,41.44,1015.21,87.02,481.24 +24.39,63.21,1012.59,80.88,446.4 +16.75,36.99,1006.42,87.18,464.18 +19.48,58.79,1017.6,88.72,450.55 +27.71,54.2,1012.72,47.25,440.74 +27.11,66.49,1013.71,39.28,435.79 +6.54,39.33,1011.54,93.69,491.16 +16.45,63.31,1015.96,83.97,452.42 +29.5,71.14,1011.27,52.81,430.85 +19.27,50.9,1011.72,83.14,455.09 +13.21,40.03,1018.12,82.98,469.75 +24.14,69.23,1012.4,73.26,433.92 +22.61,59.87,1019.12,66.12,441.2 +16.17,46.97,1014.22,85.8,456.08 +10.59,41.54,1019.94,73.88,477.05 +26.09,58.41,1013.64,64.58,438.86 +25.75,60.95,1014.75,53.3,443.73 +18.87,67.71,1004.0,87.35,444.77 +19.26,65.61,1015.03,85.74,451.85 +19.22,62.1,1019.43,79.19,451.8 +15.27,56.89,1013.28,86.92,456.72 +7.84,41.39,1018.21,91.92,485.66 +14.38,40.73,1017.48,90.64,462.98 +7.29,41.04,1024.06,89.19,474.71 +29.27,64.69,1006.85,55.79,438.23 +30.44,68.84,1010.97,55.34,438.31 +28.97,64.44,1014.55,54.67,438.08 +9.84,36.66,1026.7,70.02,477.62 +9.27,36.3,1026.93,72.13,479.66 +29.79,68.24,1009.19,65.49,428.44 +12.56,41.4,1019.23,74.26,472.54 +22.05,63.31,1012.39,76.95,444.37 +10.05,41.58,1021.35,95.19,469.03 +7.0,35.77,1018.21,64.84,482.8 +27.92,63.07,1010.75,45.26,442.87 +30.2,69.59,1008.9,67.32,434.66 +7.6,41.04,1021.82,88.97,475.32 +11.24,42.34,1021.3,95.19,469.3 +11.42,41.38,1021.98,60.19,479.23 +23.85,52.3,1005.9,70.95,441.99 +19.46,47.03,1013.9,88.86,460.57 +30.46,66.75,1017.81,54.48,432.45 +21.35,59.04,1012.28,95.71,445.83 +26.52,71.64,1008.27,75.3,437.76 +14.14,43.34,1017.1,81.77,464.36 +31.88,70.36,1006.2,57.51,438.42 +10.96,45.01,1017.97,95.82,468.64 +9.05,40.0,1015.48,80.91,472.41 +14.46,44.78,1007.64,67.03,459.31 +11.67,40.23,1017.65,82.48,475.07 +21.96,69.94,1011.09,80.27,441.15 +23.27,64.69,1006.84,70.53,438.08 +29.43,66.75,1017.63,42.72,434.6 +29.28,74.33,1011.66,72.37,426.53 +11.11,37.5,1013.68,73.67,473.32 +7.92,42.28,1008.55,81.68,484.75 +25.04,70.36,1006.56,75.91,436.47 +13.74,41.16,1010.74,87.69,473.19 +21.94,58.79,1010.3,88.21,447.52 +29.25,66.51,1015.53,33.65,441.7 +31.33,76.86,997.85,64.43,431.44 +14.04,42.44,1012.74,81.89,471.81 +15.64,43.71,1024.51,78.31,462.55 +28.53,69.84,1004.46,68.03,427.72 +6.65,39.33,1011.29,92.85,490.41 +17.28,39.99,1007.09,74.25,463.28 +24.99,58.79,1016.37,67.16,439.2 +11.77,42.03,1017.63,79.34999999999998,472.22 +16.26,38.58,1016.04,76.7,462.54 +7.99,41.38,1021.95,78.77,487.57 +16.38,55.5,1019.8,82.44,464.58 +10.59,41.93,1017.7,92.91,479.85 +24.05,70.4,1006.83,92.35,442.07 +25.11,63.21,1012.21,83.58,443.43 +10.02,38.18,1017.43,68.4,476.83 +10.04,41.62,1013.36,95.17,463.87 +17.44,44.88,1018.05,68.35,465.72 +23.24,63.76,1010.1,79.16,441.35 +24.48,66.25,1009.42,88.17,441.07 +24.3,69.23,1013.17,59.91,440.56 +14.24,41.4,1019.7,70.32,466.88 +17.99,43.72,1008.64,75.04,453.02 +26.76,48.41,1010.53,47.38,440.63 +16.72,44.34,1019.26,63.77,465.89 +25.68,70.32,1009.08,90.48,431.32 +5.84,43.02,1013.88,87.42,489.05 +28.46,49.16,1004.61,38.1,438.02 +10.11,42.49,1010.22,82.11,483.56 +13.87,38.01,1022.61,84.22,473.39 +5.54,45.87,1008.69,95.91,478.02 +14.75,41.16,1009.58,86.96,468.14 +22.12,60.37,1008.75,92.13,439.18 +28.45,52.84,1006.18,43.16,439.86 +28.41,75.59999999999998,1018.48,56.07,440.28 +16.77,50.9,1013.24,84.4,459.91 +28.94,62.26,1010.64,50.41,436.04 +10.65,41.78,1013.66,70.04,474.27 +7.55,43.65,1019.09,61.71,481.61 +11.68,40.55,1017.31,99.82,473.51 +21.19,67.71,1006.65,56.28,441.71 +23.86,63.77,1014.6,82.37,440.58 +19.43,52.9,1017.16,67.41,458.46 +6.13,40.81,1026.31,91.66,483.8 +19.78,50.32,1008.62,96.4,449.23 +31.46,77.17,1009.26,59.61,435.56 +25.13,57.69,1007.43,78.43,437.8 +9.82,36.18,1019.18,65.8,475.21 +31.12,69.13,1009.61,56.54,429.41 +29.44,65.51,1014.82,56.49,445.67 +8.62,39.54,1011.64,82.86,483.03 +29.54,72.29,1011.0,42.0,443.79 +34.62,69.05,1000.68,38.35,425.41 +14.27,41.48,1014.83,62.7,458.19 +22.71,75.23,1010.48,76.86,444.0 +29.52,77.23999999999998,1008.55,76.23999999999998,433.82 +26.19,69.34,1009.48,87.59,433.99 +16.27,58.2,1018.47,80.03,453.66 +11.91,41.49,1019.69,96.39,470.07 +24.22,61.86,1013.39,80.11,442.65 +27.65,67.07,1005.65,60.42,439.03 +29.05,68.24,1007.88,42.67,433.92 +31.23,66.75,1017.48,36.55,433.9 +21.18,45.01,1012.57,48.05,451.62 +13.84,41.26,1020.92,74.73999999999998,462.46 +23.07,65.46,1014.07,46.77,446.19 +25.16,68.08,1010.89,70.16,435.78 +10.4,42.44,1014.24,93.48,480.04 +27.37,72.58,1008.16,79.94,428.05 +7.82,38.91,1015.58,90.11,479.15 +31.74,72.25,1012.21,41.62,437.29 +34.4,77.95,1009.83,57.86,430.87 +22.16,58.82,1009.61,87.16,444.76 +15.12,48.92,1011.8,72.93,462.59 +31.95,70.8,1008.38,66.26,432.79 +18.94,48.7,1007.82,92.88,453.36 +15.69,37.64,1016.0,83.88,462.18 +33.61,69.88,1007.4,42.51,435.99 +6.8,41.16,1023.17,95.4,477.8 +27.75,65.34,1014.8,45.91,440.83 +24.44,59.14,1016.74,71.82,443.5 +12.26,39.96,1011.79,79.06,470.87 +25.48,65.12,1016.12,53.66,447.85 +25.65,69.23,1012.55,62.02,435.25 +13.36,39.64,1010.3,93.26,471.89 +29.96,70.04,1010.15,54.47,427.1 +9.24,41.4,1030.72,87.36,476.9 +15.25,39.16,1016.18,79.39,471.05 +11.49,41.54,1020.17,70.91,476.74 +31.14,67.32,1013.93,38.37,436.64 +23.59,43.77,1010.85,55.98,448.42 +32.16,76.2,1008.04,51.74,433.29 +18.06,50.16,1009.52,100.09,450.53 +29.63,69.71,1009.04,67.26,435.27 +21.33,58.46,1016.17,79.73,445.27 +26.76,71.94,1008.81,64.62,432.49 +14.77,49.15,1020.56,80.27,467.72 +18.48,58.59,1015.61,85.14,452.52 +5.78,45.87,1012.65,88.8,483.27 +22.78,58.96,1013.65,57.06,452.03 +21.03,70.02,1010.21,95.69,444.53 +15.55,40.66,1016.21,88.5,457.53 +16.82,47.45,1010.19,88.48,449.57 +14.76,49.64,1026.31,75.67,461.16 +21.87,61.45,1011.13,92.22,445.21 +9.48,40.11,1025.49,73.81,472.16 +10.55,41.92,1030.0,91.23,470.95 +25.12,71.58,1010.18,87.5,433.58 +20.88,59.8,1015.66,75.34,453.18 +19.8,57.25,1010.84,88.9,451.75 +23.13,71.25,1002.49,94.59,431.91 +22.52,64.27,1014.34,82.77,445.4 +25.42,75.59999999999998,1017.39,77.63,438.24 +24.51,58.79,1016.11,61.7,443.5 +9.83,41.17,1019.34,72.29,478.21 +31.54,72.58,1007.61,65.57,427.31 +26.43,75.33,1004.09,86.48,431.79 +9.06,39.66,1019.64,76.98,479.53 +33.6,77.17,1009.01,47.53,430.32 +15.06,41.85,1016.78,88.23,466.72 +23.25,72.98999999999998,1009.17,89.85,438.51 +23.09,70.02,1010.58,77.84999999999998,443.27 +12.88,44.0,1022.71,88.58,470.31 +10.29,41.74,1019.9,80.51,480.62 +11.62,43.48,1016.66,76.31999999999998,468.37 +14.91,40.73,1017.44,86.91,458.99 +5.43,39.9,1007.5,86.27,487.84 +29.17,72.98999999999998,1006.86,64.92,430.59 +24.99,51.43,1006.95,79.63,441.45 +8.75,40.77,1021.99,86.46,478.85 +21.96,51.43,1007.28,89.96,442.87 +24.39,63.77,1013.3,77.53,443.65 +22.72,69.84,1005.96,83.9,436.7 +21.7,60.77,1018.07,88.15,444.66 +21.78,47.43,1007.88,66.68,446.79 +7.95,40.72,1023.7,84.19,486.14 +23.29,62.91,1013.35,68.25,444.61 +23.06,56.85,1012.5,64.03,440.03 +16.7,50.88,1015.11,97.25,456.18 +10.16,41.55,1005.69,58.04,477.27 +10.35,44.2,1018.46,88.6,478.36 +28.43,69.59,1008.79,73.33,439.26 +33.26,68.51,1012.49,52.68,429.38 +20.6,44.58,1017.67,48.36,466.2 +19.04,51.86,1018.05,79.01,458.64 +25.86,60.32,1015.91,53.37,446.58 +23.56,49.16,1002.54,69.07,443.02 +17.01,44.2,1019.18,61.23,457.26 +13.98,44.58,1016.48,77.59,473.01 +17.17,44.68,1018.72,83.58,462.53 +11.86,39.85,1013.0,66.92,478.29 +8.48,38.5,1013.5,66.51,485.29 +11.91,44.45,1021.39,84.49,466.52 +27.82,79.73999999999998,1008.37,69.46,436.48 +20.36,60.1,1011.21,84.79,454.25 +29.13,70.72,1009.61,67.49,436.9 +11.57,41.38,1021.71,61.49,473.94 +14.76,40.71,1017.37,71.07,465.58 +30.26,76.2,1008.44,62.1,435.04 +12.93,36.71,1013.22,83.44,472.42 +22.9,49.3,1003.45,80.95,441.77 +7.4,41.03,1022.09,74.83,486.81 +14.77,41.39,1018.95,65.61,470.21 +6.12,40.81,1014.77,88.15,487.24 +20.51,68.08,1012.73,78.05,445.96 +30.91,70.32,1011.92,65.59,433.71 +30.38,74.16,1007.44,74.77,432.84 +21.75,60.27,1018.55,87.81,444.19 +19.71,43.43,1009.58,65.71,456.24 +9.86,37.83,1005.05,100.15,472.46 +21.74,60.27,1015.82,88.96,441.22 +10.73,40.35,1012.27,89.65,477.23 +20.27,63.09,1016.6,90.7,446.75 +25.3,49.3,1003.67,69.08,436.62 +31.28,69.51,1010.09,36.85,429.29 +26.44,54.2,1012.65,48.02,444.78 +25.83,70.47,1006.24,81.83,434.45 +26.24,49.82,1014.9,55.58,452.41 +13.88,39.16,1010.8,75.69,464.37 +35.77,73.56,1006.36,36.31,430.14 +29.97,73.06,1009.41,78.26,430.37 +6.61,36.24,1013.57,91.8,483.12 +5.17,35.57,1026.68,79.86,491.32 +16.72,44.78,1007.75,56.79,453.39 +14.03,41.79,1008.07,83.32,457.98 +23.39,64.63,1020.45,58.22,449.27 +12.75,40.64,1020.44,83.17,466.93 +13.92,41.16,1000.98,83.89,454.15 +25.07,77.95,1012.87,83.0,438.55 +27.59,71.97,1008.64,88.22,437.33 +31.01,67.83,1007.95,43.57,429.46 +10.4,45.01,1018.58,93.48,470.79 +23.36,65.18,1012.35,78.09,436.39 +22.68,59.54,1004.32,95.44,437.96 +11.2,35.76,1019.24,64.59,473.33 +12.89,48.14,1017.48,83.95,463.77 +5.76,40.07,1013.22,62.99,494.67 +14.24,39.99,1009.3,83.75,466.2 +11.61,41.17,1019.57,58.82,476.81 +22.49,61.27,1019.6,57.1,448.51 +30.31,74.16,1010.69,58.81,436.23 +9.44,40.0,1015.62,81.16,471.32 +21.89,58.62,1016.15,74.59,450.05 +27.37,63.73,1009.79,65.25,437.24 +9.3,43.14,1010.99,88.12,477.02 +23.56,42.67,1008.01,66.76,440.69 +24.4,71.14,1009.7,59.26,436.68 +29.29,57.19,1008.3,60.11,435.69 +20.96,69.48,1011.04,82.63,444.31 +22.04,69.51,1013.25,56.15,446.34 +16.58,45.87,1009.66,97.59,457.8 +24.14,60.07,1016.56,58.08,440.17 +14.54,46.18,1015.29,94.48,463.03 +17.32,41.67,1013.23,68.07,462.74 +22.2,44.05,1007.34,75.13,445.32 +20.94,44.78,1008.14,35.7,465.57 +20.61,63.86,1015.43,73.86,446.34 +21.67,62.39,1007.98,92.96,445.85 +17.3,58.59,1015.52,87.17,454.88 +17.92,50.66,1012.62,93.0,456.84 +14.44,40.8,1025.05,56.59,472.95 +22.28,60.27,1018.98,84.12,443.44 +19.08,41.1,1001.96,62.77,458.94 +28.53,49.3,1003.83,59.69,438.17 +16.48,68.28,1004.27,99.89,449.7 +30.47,70.02,1009.65,62.03,435.72 +13.97,39.16,1016.05,84.6,470.96 +20.16,57.76,1019.34,72.09999999999998,455.13 +13.96,39.54,1011.05,85.72,468.82 +25.78,47.93,1003.67,67.23,442.46 +5.21,35.79,1011.5,95.08,484.03 +7.06,41.38,1021.94,83.55,487.71 +28.18,71.14,1011.56,48.03,432.72 +30.13,68.94,1005.88,40.71,441.78 +25.33,48.6,1002.54,68.45,442.48 +32.88,72.29,1008.5,62.74,431.74 +7.69,43.02,1014.51,85.23,486.46 +28.71,64.69,1006.52,68.38,435.85 +26.3,59.07,1007.84,78.31999999999998,441.94 +10.94,25.36,1009.47,100.1,470.9 +18.8,47.83,1005.86,76.77,453.9 +26.51,44.57,1007.56,52.23,445.32 +28.53,68.08,1013.27,42.53,438.91 +26.22,49.82,1015.48,55.8,454.2 +9.42,39.64,1010.86,74.03,478.05 +16.58,41.93,1022.36,45.24,466.61 +23.78,58.86,1015.7,62.95,443.79 +16.01,65.46,1014.0,87.68,454.16 +22.0,59.54,1004.55,95.25,439.37 +26.49,61.86,1012.55,74.23999999999998,440.21 +24.73,48.6,1004.03,63.37,439.99 +11.03,44.78,1013.16,83.85,470.17 +19.44,60.07,1014.8,69.06,452.89 +9.2,39.82,1013.19,91.25,482.89 +19.45,46.33,1013.39,99.52,452.82 +17.8,43.72,1008.71,78.5,458.92 +19.55,56.53,1020.2,78.09999999999998,455.56 +32.89,66.44,1009.94,60.55,431.54 +20.31,69.94,1009.7,86.53,446.87 +12.26,43.48,1016.41,72.95,467.83 +12.27,41.17,1019.41,58.1,475.13 +25.63,56.85,1012.68,49.7,439.2 +28.69,71.29,1009.22,68.35,433.07 +6.81,37.49,1010.74,88.25,482.21 +9.53,40.23,1017.74,89.05,484.0 +22.53,60.95,1015.12,75.09999999999998,449.43 +9.55,39.66,1018.8,74.88,480.74 +14.66,41.76,1022.12,78.13,463.6 +20.08,58.12,1015.53,80.84,455.85 +22.79,68.63,1012.99,55.78,446.16 +24.42,63.07,1011.49,67.39,444.72 +8.38,39.22,1015.03,75.14,478.82 +32.89,73.68,1014.45,52.34,426.46 +12.34,43.22,1009.28,78.23,468.52 +24.76,63.07,1012.73,70.39,443.04 +27.52,69.68,1011.67,56.94,444.83 +26.3,51.43,1012.05,63.62,442.28 +15.48,53.82,1016.1,64.77,462.69 +21.82,65.27,1013.86,72.81,447.43 +24.88,63.31,1014.23,55.76,441.54 +11.66,44.6,1018.39,89.98,471.3 +6.86,40.02,1031.5,77.94,476.45 +26.38,49.5,1012.82,37.19,457.81 +14.87,35.71,1015.53,57.7,468.75 +22.49,71.29,1008.24,75.8,442.58 +18.85,67.32,1012.91,82.37,446.7 +30.12,74.16,1013.13,63.56,433.08 +31.19,68.3,1014.86,39.1,430.48 +21.96,48.78,1019.56,85.05,451.58 +21.54,69.48,1011.04,80.48,443.15 +11.21,44.03,1007.95,93.03,471.79 +22.24,69.23,1011.83,79.37,441.9 +28.88,66.56,1006.26,59.15,426.66 +27.36,63.31,1013.7,51.58,440.4 +6.09,43.65,1020.95,71.15,485.96 +11.93,41.38,1021.76,57.63,473.88 +15.49,40.89,1007.16,82.16,465.37 +9.83,41.17,1019.34,72.29,478.21 +30.24,68.3,1016.21,48.25,431.82 +23.2,61.02,1009.63,79.45,443.23 +21.03,67.45,1015.01,68.59,447.11 +24.75,52.84,1005.47,69.61,442.6 +28.76,60.23,1010.03,58.24,437.42 +9.04,40.11,1023.3,76.31999999999998,473.57 +8.73,36.18,1013.66,77.73999999999998,479.25 +25.17,72.39,1001.69,90.51,432.45 +16.64,53.82,1015.13,68.24,459.01 +25.88,71.73,1010.01,72.8,430.86 +13.7,34.03,1018.82,69.07,470.2 +6.22,39.85,1012.05,86.88,443.73 +15.03,40.66,1016.58,84.08,459.46 +17.63,40.55,1002.27,73.42,462.13 +20.82,63.77,1014.28,86.37,448.9 +18.4,50.16,1011.51,98.07,453.78 +10.35,37.14,1013.37,69.26,472.63 +14.02,44.47,1028.02,68.97,465.93 +23.57,66.75,1018.06,80.19,439.71 +22.7,64.05,1012.65,89.69,448.76 +24.91,57.17,1010.88,72.97,446.01 +14.43,39.82,1012.56,78.52,470.17 +11.72,40.55,1021.54,85.13,470.8 +6.57,42.07,1004.48,74.81999999999998,483.86 +26.7,66.56,1005.31,71.97,430.21 +13.41,39.35,1015.1,79.31999999999998,471.85 +28.61,69.84,1004.02,67.26,428.25 +24.9,67.25,1017.77,66.17,433.71 +20.14,46.93,1014.66,64.22,453.99 +20.55,65.46,1013.87,58.09,448.83 +26.78,73.06,1007.99,90.47,433.25 +15.11,40.71,1017.96,69.31,465.42 +26.8,58.84,1001.2,65.03,445.76 +33.2,70.8,1008.75,59.41,430.71 +24.33,46.93,1013.51,52.63,449.07 +15.77,58.16,1016.09,82.56,450.11 +25.11,67.32,1014.49,58.39,441.93 +9.38,44.77,1020.41,85.26,473.9 +31.09,74.22,1007.56,46.36,430.3 +34.66,74.33,1012.0,32.19,425.89 +22.98,73.17,1011.94,90.13,438.5 +11.26,40.43,1025.68,74.67,489.66 +24.04,72.43,1008.02,87.2,439.39 +28.51,74.78,1009.84,59.06,434.43 +11.45,45.01,1018.88,92.12,470.4 +23.6,62.44,1011.52,78.12,440.66 +22.26,69.04,1010.48,84.33,444.73 +23.71,50.23,1017.55,73.23999999999998,458.59 +25.38,74.67,1016.61,81.34,435.41 +31.97,69.04,1008.5,47.69,441.18 +19.88,44.6,1015.52,37.85,467.68 +17.77,43.72,1009.01,77.7,456.34 +28.16,70.4,1003.77,83.17,434.01 +6.45,35.77,1018.86,67.84,483.12 +28.26,65.34,1014.56,43.4,441.03 +29.65,71.25,1001.07,73.97,430.88 +27.86,61.5,1009.23,46.19,439.49 +27.53,72.58,1009.13,89.06,428.83 +26.61,72.43,1007.71,75.81999999999998,427.61 +14.44,39.0,1017.06,76.02,466.96 +9.12,41.54,1018.61,79.26,482.95 +8.0,34.03,1018.98,78.67,487.17 +18.59,43.14,1011.92,52.63,464.48 +20.12,65.94,1009.93,76.23999999999998,447.46 +7.63,40.56,1023.13,81.01,486.7 +20.68,63.86,1015.73,74.36,447.84 +14.26,42.86,1011.33,88.37,471.19 +16.47,44.89,1010.04,82.01,459.69 +33.73,69.88,1007.21,42.93,434.83 +7.89,39.37,1016.28,84.66,483.82 +13.42,40.92,1022.84,75.89,458.49 +14.85,40.8,1025.38,53.29,471.78 +17.13,43.79,1016.09,58.94,465.3 +10.96,37.5,1013.46,79.54,471.05 +25.87,63.47,1011.54,65.45,445.87 +11.61,41.17,1019.57,58.82,476.81 +23.39,71.25,1005.22,93.7,435.68 +27.58,65.27,1013.51,50.43,441.3 +26.06,65.34,1014.07,57.63,444.55 +24.63,59.57,1010.45,85.36,440.67 +13.03,41.26,1022.17,79.79,466.02 +21.54,58.12,1015.33,78.67,454.32 +30.02,73.5,1010.52,44.91,429.84 +11.21,41.06,1021.75,77.0,474.03 +20.25,57.76,1016.28,77.76,452.66 +13.1,40.55,1007.59,95.46,472.37 +12.28,43.67,1012.69,70.23,475.08 +21.48,66.91,1008.58,84.49,447.42 +29.83,68.67,1005.33,71.15,434.28 +19.46,46.33,1013.77,89.62,452.11 +31.53,70.94,1007.11,50.04,431.84 +10.67,42.02,996.55,99.94,472.65 +28.48,54.2,1013.14,49.51,440.55 +10.71,39.61,1018.72,73.66,473.77 +5.41,40.07,1019.16,64.77,495.24 +7.77,40.27,1010.25,83.65,485.54 +23.0,63.78,1015.85,70.46,444.62 +26.02,74.78,1010.04,72.78,439.82 +11.77,39.39,1012.9,85.8,478.51 +21.43,63.47,1011.95,94.47,448.17 +29.08,52.84,1006.14,40.09,438.24 +23.9,61.41,1011.95,67.87,451.99 +22.64,59.27,1012.58,83.55,446.2 +31.05,69.13,1000.38,58.49,426.31 +19.86,41.67,1012.31,53.9,462.86 +12.62,40.92,1021.85,81.41,465.68 +23.49,73.18,1012.4,90.05,437.01 +25.6,63.76,1010.18,67.43,435.75 +28.13,56.9,1007.17,51.66,436.95 +5.02,40.64,1021.2,93.27,485.28 +25.93,60.29,1017.62,50.03,444.04 +8.88,41.54,1019.05,80.77,484.99 +8.02,41.92,1029.8,92.05,467.21 +33.68,68.14,1002.75,56.05,427.53 +18.91,56.9,1006.98,84.07,448.24 +23.88,69.94,1007.48,61.0,440.63 +10.67,40.23,1017.75,85.06,483.9 +28.4,75.23,1011.12,55.01,441.78 +29.16,73.17,1010.96,67.77,429.06 +16.98,43.99,1021.65,81.17,456.07 +5.15,35.19,1018.63,93.94,488.42 +24.8,64.63,1020.69,55.74,447.82 +7.24,38.06,1020.6,85.36,481.83 +21.47,65.61,1015.92,76.22,447.42 +8.69,40.81,1026.19,86.25,484.55 +7.79,41.16,1023.17,97.11,471.82 +18.24,49.5,1014.37,79.36,464.13 +18.56,42.28,1007.75,60.89,462.05 +22.26,70.47,1008.32,84.22,440.21 +27.98,74.78,1009.46,63.11,436.82 +9.75,36.66,1026.21,70.12,479.45 +21.01,60.1,1010.93,78.59999999999998,450.99 +14.8,42.77,1019.14,76.53,462.29 +25.92,60.95,1014.62,48.46,442.84 +10.03,41.79,1020.35,66.42,475.42 +18.39,38.52,1019.66,66.93,453.89 +18.32,66.86,1012.02,70.0,454.46 +29.46,71.94,1006.96,62.26,428.54 +8.36,40.22,1011.6,89.18,484.66 +15.61,38.52,1018.4,80.98999999999998,439.21 +27.79,69.23,1012.86,45.71,435.06 +26.88,59.21,1013.54,58.13,437.11 +18.68,62.1,1019.78,83.67,453.25 +27.76,69.4,1004.27,72.25,430.68 +25.15,73.67,1007.42,85.48,435.9 +25.9,71.73,1010.18,74.83,434.84 +22.38,71.85,1009.56,74.91,441.47 +15.38,43.99,1022.42,83.41,462.48 +18.37,44.89,1010.61,86.74,454.37 +13.78,40.1,1014.49,81.86,445.98 +13.25,44.92,1024.11,89.34,469.18 +28.18,67.17,1006.84,75.55,438.49 +31.16,64.96,1001.71,44.85,425.82 +22.19,48.78,1017.84,76.01,446.51 +17.45,49.64,1026.4,66.67,454.67 +25.28,72.39,1002.28,89.43,432.52 +19.77,56.65,1020.67,66.33,457.09 +22.58,58.12,1014.88,80.59,448.32 +15.6,41.04,1025.48,64.43,457.49 +26.05,73.88,1005.67,82.08,439.96 +25.08,61.02,1010.01,73.20999999999998,437.31 +27.31,65.12,1016.05,45.98,440.06 +25.84,67.83,1009.26,59.55,433.32 +9.53,38.38,1020.49,80.08,478.03 +29.49,70.98,1007.83,79.08,434.43 +25.15,66.49,1012.71,63.46,436.0 +13.94,38.47,1015.03,53.9,466.54 +17.47,58.16,1016.36,82.26,456.97 +24.67,61.5,1009.06,72.77,437.37 +14.88,42.28,1007.26,71.3,466.73 +15.87,41.16,1005.85,78.29,463.86 +22.85,60.29,1017.29,61.92,448.58 +14.47,42.86,1031.55,66.73,466.64 +30.06,69.14,1007.5,72.48,436.89 +30.97,74.22,1007.93,49.74,431.58 +23.4,49.16,1002.85,69.82,446.05 +20.06,56.53,1020.38,75.16,455.99 +26.8,72.58,1009.22,89.03,431.18 +21.48,61.27,1019.29,61.43,450.88 +21.91,58.62,1015.95,72.87,450.23 +11.77,41.06,1021.45,76.63,475.88 +7.8,43.65,1018.92,60.77,479.78 +22.65,60.93,1006.43,85.13,440.52 +27.46,67.69,1004.7,70.15,432.64 +13.89,45.08,1024.64,82.29,467.74 +24.65,64.63,1020.52,53.45,446.04 +14.41,42.77,1019.84,82.54,465.89 +7.28,38.56,1018.96,67.98,485.57 +18.21,49.69,1013.54,80.16,454.25 +12.59,39.72,1017.76,61.14,470.18 +11.68,40.55,1022.21,85.76,475.13 +25.44,66.54,1011.9,56.76,437.99 +21.59,61.87,1011.18,57.21,446.58 +8.76,41.82,1033.29,76.5,480.08 +15.52,43.7,1015.8,76.27,466.38 +28.87,71.97,1008.74,82.61,435.86 +30.97,69.13,1009.78,58.92,435.6 +22.45,41.54,1012.69,70.89,460.07 +6.43,36.08,1022.73,85.03,486.39 +22.57,63.94,1013.49,81.61,443.58 +25.96,60.95,1014.52,50.03,444.19 +16.61,25.88,1009.34,65.47,460.97 +18.7,52.72,1024.84,57.72,458.06 +16.5,39.72,1003.05,65.99,459.06 +19.75,57.32,1010.76,79.29,443.63 +23.14,63.94,1017.49,53.19,446.57 +25.23,69.34,1009.51,82.87,445.92 +24.6,57.32,1012.48,45.14,442.64 +23.37,63.77,1013.42,76.44,443.86 +9.15,41.82,1032.88,75.11,477.78 +19.83,39.39,1013.73,59.16,463.72 +22.02,46.93,1014.32,55.92,451.92 +27.01,43.21,1011.71,77.84,434.09 +13.21,40.56,1018.12,64.49,475.86 +25.11,58.79,1015.99,60.55,442.34 +22.2,51.19,1009.2,82.95,445.54 +8.39,36.3,1015.39,62.23,479.57 +22.78,71.77,1005.26,89.23,435.46 +28.35,71.14,1010.65,60.38,429.21 +13.21,45.87,1008.58,85.66,463.1 +20.36,57.5,1014.36,82.96,452.28 +28.21,70.8,1010.45,77.92,435.99 +24.87,65.75,1006.45,65.75,435.6 +30.08,68.14,1003.99,77.38,425.27 +21.29,51.43,1011.31,90.12,452.94 +9.33,36.3,1027.88,79.23,479.6 +27.24,44.89,1009.61,51.89,442.84 +15.4,41.16,1005.34,80.22,465.16 +10.26,43.14,1019.68,98.97,466.75 +11.98,44.58,1016.45,78.8,477.56 +22.39,59.04,1011.78,86.39,445.52 +27.75,66.51,1015.42,39.0,433.08 +29.42,79.73999999999998,1007.24,61.26,437.61 +6.86,38.08,1019.62,77.37,486.92 +15.78,43.99,1022.19,83.7,461.07 +7.95,41.26,1008.48,97.92,480.6 +14.58,42.07,1017.9,86.14,460.66 +12.72,40.64,1021.11,93.24,475.73 +2.64,39.64,1011.02,85.24,481.29 +5.72,39.33,1009.96,95.4,490.76 +32.06,75.33,1001.96,63.15,432.92 +27.62,67.51,1012.38,60.25,442.13 +25.18,61.08,1013.08,80.75,445.64 +9.02,38.08,1019.02,69.98,478.32 +12.9,44.63,1020.72,89.51,467.41 +13.33,40.64,1020.92,91.47,474.07 +25.63,58.86,1014.86,52.75,443.84 +28.84,74.9,1004.38,66.86,436.42 +16.23,43.69,1016.4,68.9,466.22 +21.41,59.43,1010.27,74.54,442.85 +13.77,42.86,1030.72,77.3,471.38 +31.18,74.34,1003.81,63.59,434.15 +21.53,52.84,1005.06,88.22,444.04 +18.61,44.06,1016.91,75.01,452.68 +11.44,34.03,1018.57,74.06,476.06 +19.26,44.34,1019.45,51.32,467.72 +23.55,65.12,1016.23,66.65,446.44 +10.36,41.46,1017.53,92.04,478.27 +9.08,40.02,1031.2,75.34,476.69 +3.21,38.44,1016.9,86.34,491.35 +18.28,60.1,1009.72,85.79,452.93 +9.82,39.96,1024.72,97.69,471.96 +22.88,50.23,1016.11,63.77,458.08 +8.52,38.5,1013.16,64.06,482.96 +12.33,39.85,1012.53,66.04,479.32 +13.26,40.83,1007.97,90.63,472.14 +25.39,70.36,1006.76,73.62,436.5 +27.71,74.34,998.14,71.85,434.2 +25.14,60.93,1007.44,76.70999999999998,437.4 +25.41,77.54,1009.68,89.09,434.09 +19.82,58.16,1016.76,74.66,455.5 +6.05,41.14,1027.69,86.93,481.02 +7.97,39.04,1018.51,65.17,483.3 +23.79,48.06,1012.92,60.03,447.59 +12.57,39.3,1019.57,72.44,473.67 +19.61,56.65,1020.64,63.74,457.41 +21.58,63.87,1015.27,63.15,451.88 +24.8,68.3,1018.01,80.41,436.17 +18.6,43.56,1013.9,51.16,464.67 +13.78,40.73,1017.55,94.28,462.59 +26.0,69.88,1007.99,87.07,434.79 +25.06,62.39,1008.09,82.56,438.31 +9.64,39.85,1012.9,83.82,478.37 +8.88,36.66,1026.61,76.16,480.2 +24.81,59.43,1009.42,54.64,439.33 +12.72,40.71,1016.02,71.57,466.99 +18.81,52.08,1005.77,98.86,450.72 +20.55,46.21,1013.21,73.18,448.66 +13.13,50.59,1020.26,87.44,470.03 +12.41,39.28,1017.08,87.02,473.86 +23.48,64.15,1021.08,57.77,450.89 +16.62,39.99,1007.07,77.14,463.74 +28.43,68.08,1011.32,58.19,433.05 +25.21,63.21,1012.24,85.14,441.04 +13.48,39.85,1012.71,58.91,475.74 +12.51,49.83,1008.61,94.27,452.84 +12.64,41.26,1020.79,83.66,465.78 +23.59,71.73,1009.69,87.06,435.67 +21.31,58.05,1012.94,88.39,446.76 +12.15,45.01,1018.89,90.02,468.07 +11.52,39.18,1023.43,83.29,474.35 +5.48,40.07,1019.63,65.62,495.76 +15.85,49.69,1015.33,89.24,469.4 +24.77,48.92,1010.25,47.04,448.25 +14.64,45.0,1021.78,41.25,475.98 +23.04,74.22,1009.52,90.93,440.32 +28.02,63.9,1013.96,46.2,444.42 +22.62,51.3,1012.36,81.02,448.27 +24.81,59.87,1018.56,61.18,444.89 +26.65,74.67,1015.73,77.31999999999998,435.9 +12.84,50.59,1020.08,88.08,470.96 +25.28,71.94,1006.73,86.69,432.26 +25.07,60.27,1018.13,70.33,439.52 +15.5,40.12,1012.79,96.75,460.41 +16.32,50.88,1013.37,97.19,458.28 +32.37,67.83,1008.32,57.39,426.76 +30.56,71.98,1004.74,58.77,429.2 +20.76,44.58,1017.09,57.47,462.01 +20.42,60.77,1017.65,87.07,447.85 +10.91,42.34,1021.83,94.99,470.91 +22.54,51.95,1007.29,79.28,447.29 +24.82,66.48,1006.4,70.21,433.62 +20.06,60.77,1017.19,88.73,447.35 +15.52,42.86,1015.09,83.48,467.12 +33.5,70.8,1008.99,57.24,433.19 +19.6,59.21,1017.65,86.29,449.23 +25.67,74.78,1010.24,68.87,440.48 +21.93,57.17,1009.81,81.15,448.75 +13.7,44.47,1027.51,70.77,468.79 +19.89,50.78,1008.85,92.97,446.35 +31.52,76.2,1008.31,57.35,435.31 +13.15,40.78,1024.13,79.59,462.3 +22.42,60.08,1017.71,67.46,452.31 +29.29,72.58,1007.39,72.84999999999998,428.73 +26.27,59.44,1012.23,58.77,443.67 +9.72,39.66,1018.31,76.06999999999998,480.05 +23.21,62.44,1011.78,76.66,442.47 +15.23,37.87,1020.17,85.02,464.02 +23.92,71.98,1006.22,92.96,433.23 +17.95,59.15,1012.73,84.27,449.14 +33.95,68.14,1002.33,48.98,427.25 +22.82,60.08,1017.95,65.71,450.86 +5.52,42.85,1012.77,93.82,478.98 +29.45,69.13,1009.3,52.97,432.04 +22.75,59.39,1015.4,81.41,440.26 +24.61,62.39,1006.39,79.08,437.01 +14.4,42.99,1010.3,89.72,469.34 +29.45,68.24,1007.45,32.81,432.53 +17.51,68.28,1004.36,94.87,449.59 +17.78,50.66,1015.09,91.9,456.11 +14.1,42.74,1026.92,67.25,466.1 +10.91,39.61,1018.44,64.38,469.42 +22.52,67.32,1011.4,66.2,443.49 +12.82,43.5,1022.38,84.32,471.41 +23.21,63.94,1013.56,80.23,446.11 +12.93,41.39,1018.5,80.28,472.57 +23.16,57.69,1007.91,84.7,438.29 +24.06,71.25,1002.39,92.18,438.85 +16.8,44.9,1009.14,79.78,456.42 +25.38,70.94,1007.87,73.59,446.31 +25.88,69.13,1002.44,85.67,426.14 +32.26,71.29,1008.41,48.58,431.96 +10.52,41.48,1018.0,68.99,469.8 +29.39,71.14,1010.97,53.88,430.5 +14.01,42.99,1007.12,69.69,469.23 +26.86,70.47,1007.18,72.38,434.59 +8.29,36.08,1020.38,81.53,483.26 +29.22,60.23,1009.73,61.5,436.32 +12.6,40.35,1011.89,80.88,475.42 +10.37,39.04,1023.95,81.93,479.35 +32.41,67.83,1008.54,55.96,426.85 +17.76,42.42,1009.09,66.26,468.27 +16.36,43.99,1021.34,85.13,465.81 +22.1,68.63,1015.19,59.05,449.54 +28.73,73.91,1004.91,70.17,436.12 +8.029999999999998,40.67,1020.13,70.87,492.26 +23.65,59.92,1010.19,89.53,436.74 +27.71,69.51,1009.65,58.38,435.04 +26.32,69.71,1009.39,67.05,441.25 +19.69,56.65,1020.77,62.83,456.29 +23.14,60.27,1018.51,80.54,442.59 +16.82,49.15,1020.68,72.06999999999998,462.22 +29.55,67.69,1004.88,48.68,428.77 +5.71,41.31,1003.24,89.48,485.83 +22.75,70.94,1008.03,81.95,439.91 +12.06,52.72,1024.53,80.05,467.21 +18.6,56.85,1012.34,80.23999999999998,450.26 +11.37,40.56,1017.56,64.8,478.88 +20.6,45.38,1014.93,75.78,460.24 +10.24,39.28,1010.13,81.61,477.53 +15.15,39.58,1011.94,73.63,466.78 +14.7,48.6,1006.91,85.65,460.63 +26.09,49.3,1003.79,66.19,439.82 +19.39,68.61,1011.09,96.51,446.47 +14.42,44.66,1016.1,93.89,461.34 +25.27,69.89,1015.21,79.33,436.33 +16.62,54.3,1017.99,63.76,459.59 +24.24,72.43,1008.02,86.4,436.6 +30.93,61.5,1009.81,41.46,437.35 +22.2,63.94,1017.38,56.17,445.6 +15.66,41.35,1001.68,86.26,463.57 +10.32,38.91,1012.11,81.48999999999998,479.17 +25.37,44.89,1009.27,63.06,442.38 +22.99,61.02,1009.88,81.56,440.85 +16.2,65.46,1013.97,89.84,451.86 +23.66,77.54,1008.5,85.32,435.38 +13.4,41.78,1010.2,64.57,466.68 +24.54,58.66,1011.63,57.62,448.11 +4.83,38.44,1015.35,72.94,485.32 +6.25,39.48,1004.82,52.71,484.26 +31.01,74.16,1010.89,56.52,434.64 +25.87,59.43,1008.34,65.83,440.26 +11.57,39.72,1002.26,78.69,474.72 +14.01,43.34,1016.95,83.41,463.81 +23.46,73.18,1012.07,88.14,438.62 +28.69,58.33,1013.67,34.1,448.54 +22.8,73.17,1011.87,91.57,437.98 +25.89,63.56,1013.82,64.51,443.82 +10.96,41.93,1019.28,87.38,473.28 +20.35,56.53,1020.23,70.05,456.04 +18.12,58.95,1017.82,86.16,449.28 +18.6,58.71,1009.8,86.42,430.38 +6.41,40.81,1026.57,93.51,484.49 +23.34,59.44,1012.67,80.76,445.24 +27.05,75.33,1003.88,82.94,433.57 +14.66,41.66,1012.89,62.41,466.87 +32.41,72.86,1003.69,58.04,432.75 +12.73,40.27,1005.68,68.77,475.61 +9.26,40.78,1023.61,88.48,471.79 +23.63,58.79,1017.2,67.68,442.86 +25.25,58.46,1015.54,70.76,444.05 +16.76,45.09,1014.28,57.71,458.67 +23.48,70.79,1006.7,88.57,432.25 +19.75,54.2,1011.43,83.5,448.89 +24.4,62.26,1011.62,70.1,439.06 +21.99,57.5,1015.87,80.72,446.96 +17.89,42.42,1008.92,65.08,467.59 +27.97,68.31,1010.64,55.91,443.34 +16.73,43.79,1016.25,73.58,468.87 +27.96,77.23999999999998,1007.23,78.51,433.35 +27.22,67.9,1005.73,57.29,441.22 +12.68,41.4,1021.59,78.56999999999998,466.64 +25.77,62.96,1019.86,58.07,442.83 +9.49,40.69,1015.09,91.31,476.67 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.67,61.45,1010.84,92.19,443.82 +15.12,52.05,1014.63,80.38,464.78 +26.12,70.47,1009.93,72.13,434.67 +25.77,58.59,1012.51,55.84,449.65 +15.11,45.01,1014.35,65.03,460.91 +18.87,62.96,1020.55,82.87,455.22 +14.35,46.18,1016.63,87.76,461.74 +27.11,70.04,1009.76,71.25,431.96 +12.27,41.17,1019.41,58.1,475.13 +11.84,39.28,1016.97,90.52,477.51 +6.49,43.65,1020.41,72.78,484.94 +16.1,36.71,1013.58,74.41,471.46 +31.38,72.29,1008.73,73.27,430.58 +17.85,46.48,1007.79,83.59,458.16 +14.46,45.87,1009.21,84.09,464.5 +31.82,71.29,1008.44,41.7,431.23 +29.76,73.56,1008.07,84.85,432.51 +8.83,36.25,1028.86,85.6,478.45 +7.17,39.4,1011.48,90.38,484.33 +8.46,39.66,1015.14,85.38,484.16 +10.5,40.8,1024.06,76.05,482.85 +16.31,68.28,1003.98,98.62,450.33 +16.38,45.64,1020.47,89.28,462.58 +23.73,63.94,1010.7,87.1,441.78 +23.74,49.5,1013.2,49.51,463.4 +28.65,68.27,1006.96,52.78,432.73 +26.67,59.44,1012.01,58.83,441.29 +25.47,60.75,1007.27,65.91,438.42 +6.62,41.14,1027.33,86.24,479.74 +24.75,63.57,1010.47,84.24,445.3 +18.13,49.39,1021.29,82.52,458.53 +23.72,70.47,1010.65,75.39,438.5 +14.56,47.45,1009.52,91.14,451.95 +12.83,41.67,1012.84,84.29,474.81 +5.89,39.48,1005.11,59.83,484.91 +24.27,63.9,1013.5,61.09,450.26 +18.18,61.87,1008.64,66.28,453.1 +14.79,39.52,1017.95,71.97,469.47 +12.85,40.35,1011.29,81.27,472.69 +12.42,43.14,1015.88,79.48,471.1 +25.16,60.23,1011.21,68.31,444.98 +16.87,52.05,1012.7,71.63,460.31 +10.16,39.3,1019.71,81.20999999999998,480.74 +22.32,70.47,1010.97,83.16,441.87 +27.0,73.42,1012.2,87.28,432.79 +30.1,47.93,1002.64,42.06,435.27 +37.11,68.94,1006.23,31.15,429.25 +30.12,69.68,1012.89,60.64,436.34 +12.9,43.41,1015.92,59.15,464.26 +13.9,40.2,1013.13,89.91,464.17 +8.85,40.22,1008.61,90.6,482.3 +26.26,65.06,1013.58,52.72,440.92 +13.99,36.71,1013.43,83.13,473.2 +21.58,67.25,1017.39,79.0,446.15 +6.03,40.78,1025.53,98.68,480.36 +31.59,43.5,1005.12,43.5,429.96 +21.62,58.59,1012.93,67.05,445.92 +13.78,38.47,1015.2,57.8,466.41 +28.84,75.59999999999998,1018.41,53.96,442.69 +21.26,50.32,1008.41,87.22,446.22 +8.83,41.26,1023.04,86.08,478.87 +10.87,38.38,1020.85,69.78,477.03 +20.6,60.08,1017.84,75.92,454.39 +24.11,66.51,1015.35,56.01,437.21 +13.92,41.16,1003.83,88.69,465.33 +23.59,59.43,1009.96,65.8,440.61 +21.75,59.8,1016.65,72.94,453.17 +24.31,65.94,1011.5,61.61,442.69 +30.92,78.05,1011.0,59.62,434.12 +30.71,71.85,1008.07,72.05,425.16 +23.07,57.5,1015.7,75.47,447.49 +10.42,41.46,1021.04,89.16,479.24 +8.48,40.05,1015.89,90.25,483.5 +4.0,39.9,1008.46,97.21,490.68 +23.94,51.95,1008.18,71.87,451.84 +27.6,67.25,1017.78,54.25,438.42 +6.65,40.69,1020.11,89.84,479.35 +24.98,58.05,1011.69,69.97,447.15 +11.7,41.16,1019.58,87.49,464.12 +25.82,59.43,1008.08,65.25,436.67 +30.58,68.84,1011.34,51.29,439.71 +26.88,61.5,1009.17,61.26,440.13 +20.41,48.06,1012.62,76.20999999999998,451.26 +28.86,67.9,1006.29,57.19,432.97 +26.93,59.54,1004.02,75.5,437.58 +24.11,59.27,1011.02,78.18,444.35 +29.56,71.14,1011.42,53.18,432.09 +6.76,39.81,1017.11,87.9,483.16 +26.12,49.02,1008.63,72.04,438.52 +12.6,41.5,1013.07,86.22,472.45 +8.04,40.64,1020.64,89.26,477.78 +29.17,74.34,1004.51,82.02,433.03 +28.66,77.95,1009.56,69.07,431.23 +25.14,60.29,1017.91,53.3,444.5 +23.55,61.87,1009.65,54.83,443.54 +29.01,70.04,1010.02,57.35,430.26 +26.2,72.23999999999998,1011.3,78.29,432.65 +15.52,58.59,1014.12,91.22,457.74 +8.3,43.13,1020.02,83.11,484.07 +21.73,64.63,1020.84,68.9,450.36 +14.73,54.3,1016.75,67.13,463.63 +25.77,69.04,1009.66,65.49,445.35 +10.12,40.0,1021.15,91.67,479.62 +32.83,74.33,1011.44,50.42,427.36 +23.05,68.67,1006.69,76.43,447.34 +31.03,74.33,1011.55,63.45,429.35 +16.94,50.59,1018.75,94.22,460.64 +18.1,48.06,1015.47,82.47,454.04 +26.28,68.14,1005.61,53.17,435.71 +14.68,43.99,1023.36,86.79,461.91 +14.63,40.0,1018.03,63.4,457.09 +8.699999999999998,39.72,1020.0,78.75,479.03 +11.48,44.58,1016.43,80.15,478.53 +14.05,41.39,1019.06,68.54,472.19 +19.05,67.32,1013.2,83.14,447.47 +27.56,63.9,1013.23,45.97,442.43 +23.42,73.17,1012.07,88.39,438.22 +11.56,40.43,1025.48,74.75,489.54 +11.87,40.67,1011.43,62.92,479.18 +20.68,42.04,1010.2,63.43,464.14 +24.34,50.16,1004.78,74.0,445.33 +22.34,63.73,1014.37,83.19,444.39 +19.37,63.09,1018.79,81.52,450.18 +21.54,58.49,1010.85,78.9,449.12 +24.22,71.14,1009.38,64.53,438.88 +23.76,51.19,1009.69,70.87,442.9 +25.92,50.16,1003.95,71.3,440.98 +32.56,68.94,1007.12,58.18,425.61 +26.62,72.43,1006.79,82.74,430.22 +10.72,40.81,1016.51,80.26,474.64 +24.66,63.73,1011.4,74.52,444.37 +24.42,62.66,1007.65,71.57,443.09 +23.66,60.37,1006.91,87.13,438.59 +20.46,66.05,1014.93,78.51,454.06 +24.54,48.06,1013.02,55.18,443.67 +32.0,71.85,1008.44,53.59,427.95 +20.92,49.15,1021.15,49.76,455.32 +21.61,64.63,1020.86,69.73,451.02 +15.62,40.12,1013.03,96.26,462.59 +21.11,41.67,1012.44,52.86,460.33 +24.26,56.57,1013.86,70.35,442.9 +23.51,48.98,1014.63,41.56,454.06 +30.19,68.08,1010.95,50.34,431.25 +15.08,42.77,1018.67,73.89,461.6 +4.84,38.5,1011.96,81.62,491.23 +12.14,45.0,1023.9,89.2,476.6 +20.19,66.86,1012.97,64.7,454.84 +23.45,51.95,1005.23,76.17,449.07 +30.11,62.04,1010.69,47.96,444.42 +15.3,43.67,1011.75,95.31,468.14 +21.87,66.86,1013.01,57.39,453.62 +31.11,69.05,1002.37,41.56,433.19 +25.96,68.08,1011.34,71.57,432.82 +11.18,37.5,1013.32,74.31999999999998,472.02 +22.84,50.05,1005.59,79.48999999999998,442.85 +26.29,56.85,1012.68,60.33,439.86 +21.84,60.29,1017.23,66.89,454.4 +13.74,43.71,1025.45,86.62,465.24 +19.09,56.51,1015.58,92.56,449.24 +24.4,60.32,1016.5,70.96,447.73 +3.95,35.47,1017.36,84.88,488.64 +11.23,43.7,1016.0,91.75,476.04 +23.62,45.87,1007.75,58.69,445.55 +28.57,69.84,1003.57,66.55,433.24 +27.18,71.06,1008.16,86.32,430.66 +13.73,50.59,1020.44,85.54,459.6 +22.91,60.07,1016.03,59.72,446.19 +19.09,42.44,1012.93,63.59,461.84 +30.68,73.67,1005.63,57.05,429.64 +28.8,73.4,1011.34,54.01,439.65 +23.77,69.13,1011.05,89.41,434.08 +25.88,61.47,1007.93,68.71,445.65 +25.32,54.5,1015.5,68.17,451.52 +9.19,42.44,1014.38,94.24,481.55 +15.95,49.25,1019.04,88.51,463.4 +23.29,68.51,1013.19,77.81,441.17 +6.28,41.06,1020.96,90.91,489.79 +7.44,38.5,1012.81,70.27,488.12 +25.77,73.68,1014.18,87.53,429.84 +16.92,44.6,1017.34,58.75,460.17 +9.63,40.27,1009.96,81.03,477.38 +22.83,70.79,1006.36,92.07,438.0 +15.19,42.03,1017.38,71.66,462.64 +17.68,53.16,1013.09,82.79,456.86 +24.27,74.98999999999998,1007.73,82.49,438.26 +25.99,71.32,1007.17,83.23,432.41 +17.04,40.12,1011.81,83.14,458.1 +25.64,70.72,1010.16,84.0,441.68 +24.33,46.93,1013.83,44.59,447.54 +28.92,66.51,1015.5,34.51,439.09 +19.76,51.19,1008.38,92.56,448.71 +14.79,39.54,1007.25,82.54,469.23 +17.98,56.85,1012.28,84.52,448.71 +27.44,65.59,1010.76,68.67,441.08 +24.56,71.94,1006.81,89.59,437.97 +28.37,67.07,1005.65,56.13,435.94 +7.01,40.72,1024.0,86.37,489.64 +22.67,64.15,1021.02,70.49,453.47 +12.0,41.5,1013.21,86.75,473.68 +7.7,40.35,1011.72,92.88,484.57 +22.31,43.43,1010.64,56.44,449.67 +22.78,59.92,1011.28,88.78,440.87 +30.01,65.18,1012.87,43.95,436.91 +19.83,63.94,1019.81,75.05,448.03 +26.96,72.86,1004.86,59.17,441.12 +22.24,64.27,1012.97,89.54,443.76 +26.38,69.88,1008.42,86.25,432.25 +24.31,67.79,1010.64,76.15,444.72 +23.84,68.94,1007.45,71.35,436.05 +26.19,73.77,1001.31,91.87,433.34 +32.84,77.95,1014.68,45.8,431.97 +6.31,42.07,1004.61,77.73999999999998,483.27 +27.37,70.72,1009.77,67.87,441.9 +25.65,49.3,1003.73,68.48,440.05 +23.66,62.08,1022.42,64.13,447.06 +15.07,39.3,1019.0,63.62,464.7 +17.99,43.79,1016.13,75.63,462.4 +10.97,40.6,1015.0,87.59,478.69 +9.96,39.66,1015.23,82.98,480.6 +8.949999999999998,38.56,1017.85,64.34,475.43 +26.76,49.02,1007.96,70.05,439.4 +19.8,49.15,1020.88,61.88,461.78 +21.94,64.69,1007.39,77.58,449.36 +30.53,73.20999999999998,1000.37,74.17,430.2 +11.82,41.17,1019.5,55.74,475.61 +27.52,66.25,1008.21,78.8,438.51 +28.76,66.56,1006.07,62.41,432.3 +18.67,58.46,1016.73,87.7,447.16 +23.89,48.41,1010.48,62.31,441.83 +27.99,69.89,1013.94,51.25,435.79 +21.36,45.61,1013.43,83.64,456.85 +27.4,69.13,1001.4,82.47,426.18 +26.04,72.43,1006.82,84.88,432.94 +12.2,39.72,1018.07,54.83,471.33 +7.45,39.61,1017.88,79.73,478.89 +14.13,40.75,1016.05,72.41,471.44 +23.14,58.18,1008.89,81.81999999999998,444.51 +11.92,40.55,1016.91,100.07,472.45 +17.07,41.35,1005.88,83.43,464.6 +11.46,39.82,1012.09,86.2,477.99 +32.1,69.98,1013.31,55.84,431.09 +27.18,64.79,1016.27,63.7,443.87 +23.33,58.95,1017.93,66.37,442.71 +22.85,47.43,1008.13,66.36,448.15 +24.29,57.5,1014.85,67.28,449.98 +23.82,63.76,1009.8,68.94,440.52 +24.5,60.77,1017.15,73.66,439.91 +28.16,73.20999999999998,1002.27,88.26,432.78 +20.27,56.65,1020.75,67.12,454.29 +17.62,43.69,1016.49,67.92,465.93 +14.19,39.52,1018.34,77.25,467.14 +19.68,56.65,1020.75,67.25,456.89 +20.65,50.59,1016.22,68.57,455.24 +23.63,65.59,1013.1,76.95,440.56 +27.76,71.97,1008.53,86.97,434.04 +30.11,70.8,1008.57,69.25,432.33 +30.47,77.3,1002.13,63.7,434.68 +12.93,45.51,1015.27,87.27,469.83 +25.28,70.32,1006.91,81.73999999999998,431.43 +11.06,41.16,1018.52,89.14,467.46 +22.56,48.92,1010.7,51.63,445.07 +31.96,71.29,1008.39,47.51,433.04 +24.19,68.94,1007.37,70.83,439.52 +7.54,37.7,1014.58,78.43,481.56 +17.73,43.72,1009.33,76.68,453.94 +22.46,48.41,1008.66,80.84999999999998,442.57 +24.37,63.47,1012.77,75.22,445.6 +12.17,49.83,1008.05,96.44,469.52 +17.88,45.87,1008.39,93.63,455.83 +13.66,45.0,1021.97,79.04,473.12 +30.24,67.32,1014.07,46.53,437.18 +9.82,37.83,1005.29,100.07,473.66 +32.51,71.22,1005.62,47.6,433.76 +11.87,41.58,1017.29,90.3,464.77 +11.95,40.69,1015.62,85.34,475.4 +31.32,74.33,1012.92,36.48,429.57 +9.44,44.03,1009.59,86.27,473.61 +16.85,52.9,1019.47,81.28,460.84 +23.95,51.86,1014.24,68.28,449.81 +13.18,37.91,1018.09,88.84,469.63 +22.1,65.06,1014.56,71.5,442.18 +22.57,62.4,1009.77,86.05,444.69 +15.79,49.21,1015.08,75.8,457.7 +10.9,41.93,1014.96,96.24,477.93 +14.09,41.66,1009.25,71.4,469.93 +30.05,56.9,1007.02,41.96,437.55 +24.05,61.87,1009.64,54.54,442.16 +14.18,53.82,1016.9,64.57,465.25 +13.97,40.24,1018.32,88.72,467.93 +26.75,43.21,1012.29,87.28,430.45 +23.99,58.62,1016.91,66.36,449.4 +22.02,69.45,1013.84,75.75,440.26 +23.83,50.32,1008.41,72.23,445.17 +24.86,63.47,1011.5,71.78,441.68 +21.44,51.19,1009.1,84.94,446.17 +16.52,42.24,1017.51,67.65,469.13 +23.48,49.16,1002.7,70.22,445.72 +12.27,39.82,1012.18,85.58,477.54 +7.9,40.0,1018.74,79.55,474.5 +19.22,65.06,1015.05,82.5,446.98 +32.31,66.44,1009.6,63.92,428.44 +18.55,43.69,1016.84,47.95,465.2 +14.43,45.08,1023.23,83.98,465.07 +27.54,74.22,1007.44,75.91,430.72 +28.07,66.17,1010.58,64.11,443.77 +8.61,37.49,1009.35,82.62,477.13 +13.55,40.1,1015.7,86.68,474.59 +9.46,42.28,1008.67,78.16,481.95 +14.04,40.2,1013.29,89.54,465.25 +6.15,40.07,1020.2,66.64,494.3 +28.15,70.72,1009.76,73.38,436.19 +22.38,63.31,1014.76,73.8,441.3 +10.39,40.96,1023.51,84.73,479.0 +15.79,50.88,1014.58,99.9,460.19 +19.24,58.33,1013.65,85.47,449.26 +15.81,58.59,1014.41,90.03,456.91 +24.6,63.78,1017.25,60.33,448.65 +22.34,52.84,1004.05,73.95999999999998,449.06 +20.32,49.16,1007.47,91.12,443.59 +13.8,39.39,1013.85,81.95,471.7 +23.56,51.86,1014.04,73.9,448.04 +10.33,40.62,1017.41,64.22,473.16 +21.52,66.51,1015.32,72.84999999999998,444.87 +26.45,69.13,1001.53,89.64,427.5 +25.35,72.98999999999998,1007.65,84.09,436.29 +25.14,63.47,1012.58,70.27,443.93 +9.51,38.38,1022.77,73.81999999999998,474.93 +13.56,39.58,1011.05,73.62,473.16 +28.66,74.93,1014.04,51.26,440.79 +26.31,77.95,1012.45,77.22,436.83 +18.83,48.98,1016.33,74.23,453.28 +21.38,49.21,1012.49,53.77,449.66 +32.09,70.4,1003.73,55.65,434.64 +22.84,71.25,1001.9,96.45,433.85 +22.48,67.45,1014.77,63.9,445.55 +24.26,42.8,1013.72,61.62,459.65 +28.45,69.23,1013.07,39.46,436.96 +25.64,63.87,1017.14,49.25,444.34 +15.92,37.64,1014.93,83.73,464.14 +19.15,57.76,1019.62,74.89,458.66 +10.45,39.69,1003.92,89.45,472.54 +34.1,73.03,1014.01,41.26,437.65 +17.28,44.92,1024.39,76.08,459.26 +25.37,66.75,1017.94,79.26,434.16 +14.87,54.3,1017.17,71.57,462.87 +13.43,40.1,1015.82,87.9,471.77 +19.89,68.08,1012.65,80.25,448.71 +9.42,41.4,1029.6,87.43,478.12 +20.29,49.69,1008.94,69.91,454.74 +26.96,62.39,1008.14,73.95,437.41 +6.07,41.14,1027.57,86.98,480.19 +15.14,37.85,1010.33,84.3,468.31 +15.76,44.89,1010.33,85.06,459.67 +24.54,48.41,1008.61,73.53,439.79 +13.18,40.83,1007.67,95.44,472.36 +29.08,67.07,1005.73,57.18,435.57 +28.88,63.76,1010.16,56.34,435.54 +15.46,37.64,1014.57,87.53,462.96 +16.01,43.69,1017.12,62.43,465.89 +13.51,39.31,1012.18,75.19,466.46 +24.6,57.85,1012.92,69.56,447.09 +23.1,51.3,1011.93,80.05,452.17 +16.7,36.99,1006.19,89.33,464.7 +12.71,43.02,1012.25,62.68,475.38 +20.45,48.41,1010.81,86.7,444.69 +30.8,73.56,1007.39,75.78,432.43 +27.77,51.43,1006.58,69.01,438.7 +15.57,44.68,1022.01,90.02,460.91 +24.82,72.98999999999998,1007.81,84.72,435.68 +27.16,65.61,1014.21,47.93,441.33 +24.64,72.23999999999998,1011.37,80.61,434.54 +10.37,40.03,1017.47,90.47,477.91 +16.64,45.87,1009.02,98.86,456.79 +23.44,72.23999999999998,1011.28,88.03,438.34 +12.38,45.09,1013.26,90.55,467.47 +22.18,45.09,1014.04,43.13,455.4 +17.72,50.9,1012.02,85.55,456.4 +14.45,39.58,1012.41,79.0,467.62 +31.66,73.91,1004.49,68.13,431.26 +23.7,70.32,1007.21,66.85,439.59 +27.35,60.75,1008.98,67.56,435.14 +10.05,40.71,1015.51,84.21,471.68 +16.58,43.99,1021.81,79.29,458.67 +18.77,52.08,1004.02,99.86,449.62 +14.38,40.71,1023.46,66.12,473.41 +23.25,70.32,1009.28,86.52,437.96 +11.72,40.55,1020.74,86.22,474.7 +21.08,44.05,1008.13,72.52,449.6 +12.41,37.92,1008.09,65.23,470.49 +21.32,48.14,1016.57,71.81,449.09 +10.75,45.0,1023.68,89.37,481.96 +28.43,73.18,1012.52,71.05,427.11 +30.69,69.89,1013.9,42.85,431.01 +27.16,71.32,1007.81,89.07,430.53 +26.97,67.32,1014.35,55.07,439.61 +27.22,66.49,1013.45,42.41,437.24 +22.96,45.01,1012.21,50.81,450.37 +26.58,62.39,1006.36,68.98,438.66 +16.88,43.67,1011.43,73.98,463.81 +9.34,40.77,1012.14,90.81,477.36 +25.47,56.89,1013.02,63.21,440.38 +23.45,66.25,1009.1,90.28,443.44 +12.63,48.04,1013.0,100.13,464.6 +28.73,50.05,1005.79,52.4,436.35 +12.1,41.58,1014.41,90.22,462.28 +11.22,41.66,1008.96,72.38,477.53 +12.23,41.58,1018.76,87.66,464.45 +14.38,44.84,1024.59,81.68,471.6 +10.78,41.93,1015.56,95.71,478.88 +23.23,64.69,1008.12,76.59999999999998,444.01 +12.07,43.71,1025.53,85.62,472.32 +28.83,66.44,1008.47,77.48999999999998,430.01 +19.58,50.12,1009.82,100.1,449.44 +6.93,40.67,1020.17,71.16,494.61 +17.82,65.48,1019.64,86.6,449.21 +20.73,69.94,1009.9,82.12,445.91 +10.51,39.04,1023.95,85.35,479.15 +23.26,59.21,1017.71,67.16,442.38 +14.41,43.13,1016.32,59.55,467.46 +27.06,70.47,1007.0,72.37,430.82 +25.45,72.23999999999998,1011.44,80.54,434.92 +14.11,45.08,1023.27,83.22,464.7 +27.69,69.98,1008.52,60.93,433.47 +14.82,44.2,1018.98,72.8,465.73 +25.69,72.43,1006.86,86.38,429.99 +22.17,70.47,1011.07,82.57,441.14 +22.43,63.21,1012.06,84.75,447.98 +18.39,67.71,1003.77,92.48,444.63 +20.26,51.19,1008.9,93.47,448.1 +19.6,60.95,1015.4,84.26,456.06 +26.81,61.47,1009.68,68.34,443.66 +21.31,49.39,1020.18,71.35,455.34 +15.09,41.76,1022.4,76.22,463.27 +6.71,39.37,1020.28,71.15,487.05 +28.33,64.96,999.71,69.66,427.42 +14.55,42.74,1028.41,70.09,465.81 +13.8,39.82,1012.37,83.69,473.56 +26.92,51.43,1012.29,59.33,437.35 +11.15,41.26,1022.67,81.83,473.57 +8.39,36.24,1013.39,89.13,480.69 +30.57,69.71,1008.94,59.99,439.38 +8.48,36.18,1013.31,75.15,480.63 +12.49,41.62,1011.37,82.68,461.35 +32.09,72.86,1003.47,54.59,434.78 +22.71,48.06,1012.82,67.81,445.1 +13.35,40.27,1005.83,49.75,474.68 +27.77,62.26,1010.88,66.45,430.19 +21.17,52.3,1009.67,88.88,444.5 +13.57,42.99,1007.51,88.95,472.04 +19.8,67.71,1005.58,69.65,446.03 +10.9,40.67,1016.66,65.09,482.4 +19.3,65.59,1014.07,81.98,452.76 +31.67,69.68,1012.38,46.52,439.72 +11.92,43.8,1022.96,60.49,470.33 +28.41,74.16,1010.29,72.09,439.2 +24.26,61.02,1009.78,76.68,442.86 +13.42,38.91,1012.81,73.81999999999998,472.22 +8.51,38.5,1013.33,64.28,482.39 +9.1,39.42,1025.28,68.78,471.85 +23.79,58.2,1016.77,55.88,446.88 +23.28,60.84,1017.91,67.5,444.13 +24.11,68.63,1014.34,45.28,448.45 +16.66,41.16,1007.37,76.81999999999998,463.39 +23.29,49.3,1003.88,74.12,442.11 +7.24,41.17,1020.35,80.56,486.76 +16.13,53.82,1015.63,63.08,459.16 +13.77,41.58,1020.63,72.94,459.75 +30.37,67.45,1015.35,45.6,431.38 +22.28,58.86,1014.08,66.47,446.55 +19.15,59.21,1018.41,88.9,450.26 +8.42,40.64,1022.35,96.38,476.29 +27.41,63.07,1011.5,55.3,445.02 +26.13,71.64,1004.16,87.18,439.73 +17.68,44.92,1024.55,69.7,458.12 +20.28,48.78,1017.4,82.51,451.59 +29.55,72.29,1007.94,84.45,430.98 +25.79,63.9,1014.39,60.49,442.7 +8.21,38.91,1015.82,88.99,481.32 +24.32,71.14,1011.71,71.65,435.34 +14.69,49.64,1023.43,78.17,434.12 +23.45,66.48,1003.66,75.83,435.13 +15.79,49.15,1020.62,76.22,465.62 +10.56,41.54,1019.92,78.95,479.33 +19.98,60.77,1017.72,90.71,448.46 +13.45,40.73,1018.7,93.88,461.03 +5.73,40.35,1012.24,91.84,490.5 +25.23,60.84,1017.79,56.42,442.02 +23.45,70.04,1010.99,79.2,436.46 +15.72,41.76,1023.07,66.95,462.19 +27.14,63.13,1013.38,75.68,438.82 +32.45,44.37,1005.05,44.37,429.81 +21.7,64.44,1014.95,73.33,448.51 +26.88,69.51,1012.76,45.03,436.3 +20.73,59.87,1019.08,80.48,445.18 +5.98,39.61,1017.27,84.86,482.17 +16.27,44.21,1020.56,82.22,462.11 +25.52,69.75,1010.36,90.06,435.12 +14.22,45.08,1023.26,84.41,466.47 +7.19,41.39,1018.12,90.76,486.35 +28.62,70.94,1007.38,53.0,432.71 +33.13,74.34,999.57,48.34,433.73 +28.5,73.77,1002.82,86.38,431.7 +9.32,36.3,1027.9,77.02,478.55 +10.32,39.28,1016.56,94.13,478.88 +15.29,38.73,1000.9,81.17,468.62 +26.43,51.43,1006.3,71.48,441.01 +17.51,58.86,1016.78,83.63,453.2 +11.54,40.77,1022.13,83.5,465.61 +14.75,40.66,1016.7,81.65,463.83 +9.82,41.26,1007.71,96.69,478.02 +23.82,60.32,1016.61,75.29,445.0 +26.9,77.95,1017.47,75.58,434.18 +8.5,39.16,1014.1,86.64,485.76 +13.31,41.26,1020.83,79.55,462.87 +9.86,38.38,1018.22,85.35,479.56 +6.22,38.68,1017.87,69.41,483.55 +23.63,60.37,1005.0,81.66,440.74 +17.32,42.24,1017.35,62.96,472.33 +17.55,48.78,1016.81,91.27,455.11 +12.02,41.92,1030.1,84.45,465.82 +25.02,59.92,1009.9,76.27,436.64 +11.82,41.74,1022.36,74.06,476.21 +10.15,43.41,1018.4,82.07,473.43 +24.69,71.73,1010.13,70.54,436.78 +21.62,48.78,1020.06,85.09,448.52 +21.08,70.32,1011.39,88.79,440.59 +13.32,38.73,1005.37,88.48,472.33 +12.33,45.51,1016.49,79.2,471.16 +26.05,65.27,1013.69,56.46,440.75 +10.2,41.62,1016.52,98.09,462.87 +26.85,73.77,1001.2,90.13,431.24 +34.3,74.67,1015.98,25.89,427.84 +32.63,73.88,1005.64,52.56,435.75 +4.15,39.9,1008.84,96.68,491.22 +31.18,77.95,1014.89,65.62,431.58 +28.11,66.17,1010.51,65.16,444.2 +10.75,40.81,1015.93,79.27,474.71 +25.6,58.46,1016.34,66.6,441.88 +14.24,44.84,1023.6,94.06,466.67 +25.84,69.14,1009.22,88.47,431.35 +4.99,39.04,1020.45,78.89,472.52 +8.8,39.42,1025.17,68.72,476.5 +23.71,68.63,1014.54,46.04,449.41 +8.8,41.26,1008.08,96.52,479.74 +10.67,45.0,1022.99,85.91,481.83 +11.04,45.51,1017.53,83.42,474.45 +20.61,62.91,1013.24,79.54,446.53 +27.23,66.48,1005.23,52.38,432.55 +23.58,58.82,1009.68,81.38,445.01 +30.39,71.8,1010.87,64.11,435.82 +10.38,40.92,1021.53,95.18,466.46 +13.92,39.39,1012.94,80.52,471.81 +30.35,71.32,1009.17,64.61,434.62 +28.92,72.43,1007.03,66.14,431.5 +18.55,41.1,1002.02,65.16,459.97 +12.1,40.27,1005.53,68.37,477.61 +26.82,66.51,1016.32,55.76,439.48 +23.07,49.02,1009.07,84.1,444.22 +14.78,41.17,1016.42,67.42,469.69 +23.87,50.39,1012.96,76.05,452.59 +23.1,70.79,1006.53,90.81,434.58 +24.88,71.94,1006.85,87.32,433.3 +18.88,43.69,1016.77,46.88,464.63 +13.9,45.08,1023.29,83.43,465.31 +29.6,71.58,1010.34,52.56,434.64 +10.32,42.28,1008.82,75.66,481.09 +16.3,38.73,1001.79,73.45,465.7 +28.88,54.89,1007.16,46.6,440.99 +14.51,53.82,1016.46,62.75,463.17 +13.6,42.86,1013.37,87.52,472.27 +28.94,71.64,1006.59,69.24,438.96 +29.06,64.96,1000.88,62.07,430.24 +11.41,41.54,1019.94,66.49,477.89 +32.57,78.92,1011.6,66.47,430.12 +23.54,67.83,1009.44,65.48,426.24 +8.34,40.96,1023.28,89.45,483.92 +16.65,56.89,1013.52,87.44,452.52 +17.46,42.42,1008.97,69.19,469.63 +5.99,35.79,1011.56,91.69,484.82 +10.6,40.22,1011.37,85.81,477.62 +18.21,41.85,1014.67,56.86,468.4 +10.61,41.58,1021.08,93.06,465.15 +13.18,40.24,1016.81,86.71,469.35 +13.64,34.03,1018.32,62.2,469.61 +11.43,40.22,1010.84,81.04,477.5 +11.05,40.75,1016.55,87.08,478.07 +12.37,43.22,1009.1,76.06,468.49 +13.78,42.03,1017.51,84.94,467.6 +24.93,70.32,1007.34,61.25,436.03 +23.66,67.17,1007.24,87.56,443.43 +8.14,41.26,1020.61,91.28,477.57 +17.89,44.78,1010.03,53.78,457.74 +27.26,66.56,1007.83,60.95,434.88 +18.7,66.51,1015.14,79.23,458.73 +14.62,44.84,1023.41,85.17,464.51 +22.11,59.8,1016.86,70.14,450.62 +21.47,60.77,1018.06,85.73,444.02 +21.46,51.61,1010.91,76.41,457.28 +24.27,63.87,1018.88,53.96,420.26 +28.15,72.23999999999998,1010.88,62.39,431.75 +17.5,42.44,1012.55,76.84999999999998,466.78 +21.8,51.3,1012.07,89.51,450.25 +20.52,57.76,1017.03,81.19,453.64 +27.05,59.15,1012.83,56.31,441.39 +5.8,45.87,1009.14,92.06,481.6 +21.81,60.27,1015.93,91.38,441.85 +30.17,64.79,1017.06,43.81,439.75 +22.53,58.62,1016.28,72.78,449.02 +27.92,69.23,1013.21,44.43,435.62 +25.21,75.59999999999998,1017.19,69.84,445.84 +20.1,57.17,1011.96,87.68,452.67 +13.52,42.34,1017.97,95.34,463.71 +32.51,69.98,1011.92,49.45,428.37 +8.27,35.76,1020.11,75.25,480.8 +19.69,56.65,1020.79,66.94,457.17 +22.49,58.82,1009.73,85.19,444.11 +10.11,52.75,1021.79,76.08,470.35 +22.71,59.43,1005.68,83.52,441.24 +25.95,73.77,1001.35,92.67,432.21 +20.51,63.09,1016.39,92.99,445.86 +27.18,79.05,1008.99,94.32,434.01 +6.34,40.64,1020.62,94.39,478.78 +23.84,49.21,1013.1,44.72,445.44 +29.48,64.69,1006.44,64.46,435.09 +13.82,41.62,1011.48,77.66,454.88 +8.279999999999998,40.56,1023.29,79.44,486.4 +25.42,67.25,1017.92,68.61,439.43 +32.33,69.68,1011.95,39.89,439.79 +18.34,65.94,1013.27,85.42,451.29 +25.47,65.34,1015.3,50.31,445.39 +29.64,54.2,1013.0,39.56,438.12 +20.37,54.9,1016.94,65.86,453.94 +24.27,61.47,1007.84,80.84999999999998,448.66 +7.03,41.74,1021.92,86.44,486.91 +9.63,43.02,1012.4,68.41,480.21 +17.81,45.0,1022.32,43.84,471.0 +26.71,70.72,1010.3,78.18,438.72 +12.36,41.74,1020.58,69.24,477.16 +11.08,38.16,1014.45,74.98999999999998,473.32 +31.35,70.8,1010.11,66.37,432.19 +25.98,68.12,1011.36,66.86,439.0 +15.52,41.93,1022.97,52.92,471.97 +28.76,69.48,1008.62,55.86,430.14 +32.23,69.13,1000.61,55.1,426.9 +20.03,47.45,1009.04,77.56,450.6 +12.21,41.67,1012.88,85.19,475.07 +20.64,61.86,1012.81,99.97,447.14 +14.74,42.77,1017.71,76.59,463.61 +16.55,46.18,1009.97,96.54,455.8 +22.36,58.79,1011.77,87.51,446.49 +26.01,61.47,1009.54,75.01,435.78 +25.52,67.17,1007.33,85.12,440.02 +28.37,72.86,1004.81,53.52,441.37 +29.12,73.06,1009.98,80.20999999999998,434.9 +34.09,68.51,1009.0,32.96,431.19 +7.92,39.54,1011.51,84.41,481.44 +17.98,53.29,1018.29,83.46,455.71 +20.83,70.72,1009.56,89.37,446.48 +19.15,44.34,1019.54,48.09,468.8 +27.19,64.96,1006.71,73.98999999999998,428.79 +12.36,40.56,1022.11,72.98999999999998,474.71 +14.62,43.99,1023.6,86.7,461.88 +5.81,45.87,1009.63,94.38,479.66 +12.95,41.23,993.74,96.35,469.05 +16.9,54.3,1017.97,60.57,460.57 +9.68,41.44,1015.19,87.34,479.89 +6.26,41.31,1002.04,87.54,485.57 +20.08,58.79,1017.32,81.59,451.21 +28.75,77.23999999999998,1008.92,77.17,433.03 +22.48,50.32,1008.47,83.58,444.5 +25.66,70.02,1010.89,68.14,442.2 +18.28,45.0,1022.47,43.03,471.42 +30.25,71.8,1010.87,60.4,437.28 +13.98,41.79,1010.6,83.84,457.12 +24.83,62.4,1010.13,70.18,442.2 +25.53,59.57,1010.65,82.04,445.59 +13.42,40.78,1025.03,77.51,459.04 +17.29,52.72,1024.71,62.32,467.23 +5.4,39.4,1011.45,91.84,485.86 +17.72,39.99,1007.34,72.3,461.7 +23.59,47.43,1006.64,48.92,447.36 +24.75,69.45,1013.97,53.49,438.28 +5.15,45.87,1008.02,98.36,479.61 +28.6,61.86,1011.86,62.13,439.74 +13.74,39.35,1014.82,77.48,471.11 +6.79,38.5,1012.61,72.45999999999998,488.69 +7.38,44.71,1020.27,70.55,486.91 +16.22,46.36,1020.04,91.73,460.73 +16.82,41.66,1010.49,63.14,465.64 +19.44,48.7,1008.66,94.71,444.9 +27.43,63.87,1017.6,43.33,442.71 +8.46,39.42,1025.05,69.36,474.42 +14.77,39.16,1016.12,81.88,470.39 +23.61,49.16,1002.39,65.63,443.5 +7.61,41.26,1009.05,97.32,480.68 +30.85,70.94,1007.47,54.79,431.77 +31.68,74.16,1011.3,55.94,434.61 +15.07,39.82,1012.78,84.46,471.31 +8.12,43.02,1013.56,85.26,483.55 +14.79,44.06,1018.53,74.79,465.77 +12.49,38.25,1012.61,83.32,470.63 +31.33,65.18,1011.97,36.62,435.77 +12.32,43.69,1016.26,83.18,471.6 +14.66,42.07,1018.14,84.68,462.77 +22.74,58.12,1015.16,79.58,447.86 +30.29,59.22,1013.05,60.46,441.57 +20.32,67.71,1007.42,63.71,446.22 +6.75,39.37,1020.26,70.99,486.26 +30.21,69.4,1003.69,62.89,438.18 +21.38,44.05,1005.69,81.66,445.71 +11.35,40.66,1016.86,96.4,466.55 +17.83,66.86,1011.65,77.31,456.56 +20.82,57.76,1019.15,72.45999999999998,454.62 +19.95,58.46,1017.45,89.46,447.1 +20.86,51.3,1012.03,92.46,449.67 +26.28,73.06,1008.06,90.7,437.01 +23.6,65.48,1017.44,61.26,444.38 +18.04,44.88,1017.96,66.3,461.13 +19.44,59.21,1018.5,88.35,448.04 +15.79,58.86,1015.85,91.91,455.15 +28.59,75.08,1005.58,60.3,442.7 +24.43,65.18,1012.57,77.83,437.26 +25.71,71.14,1010.02,66.39,432.46 +17.22,36.71,1013.77,67.92,465.32 +25.56,58.82,1010.44,70.23,441.0 +19.89,44.9,1008.12,67.3,453.09 +32.17,73.20999999999998,1001.43,69.86,430.64 +11.98,39.35,1014.97,98.05,472.43 +31.2,68.24,1005.71,34.84,428.67 +28.66,50.05,1006.08,47.74,435.94 +28.87,57.19,1008.09,64.29,435.57 +20.07,51.3,1011.9,94.62,450.46 +13.42,42.86,1013.88,85.13,473.27 +23.69,71.97,1009.62,93.03,438.62 +28.13,61.25,1013.12,62.57,436.61 +15.63,43.02,1012.57,40.32,466.69 +31.8,69.05,1000.77,49.82,426.5 +10.31,37.5,1008.55,99.31,474.16 +31.63,68.3,1014.8,42.02,426.86 +22.03,64.79,1017.95,76.2,450.25 +14.47,48.79,1017.05,69.87,466.25 +25.61,67.69,1009.22,68.76,437.78 +16.39,58.59,1014.58,90.34,455.05 +31.68,68.24,1005.29,37.34,427.22 +29.28,75.08,1005.21,59.0,436.15 +31.94,74.98999999999998,1002.05,34.12,440.17 +28.01,65.34,1014.68,46.86,440.77 +16.7,46.18,1012.6,96.15,455.93 +25.64,63.47,1012.33,68.35,442.62 +12.64,41.49,1019.78,94.0,468.78 +27.01,69.75,1009.78,81.29,442.57 +23.01,66.54,1009.86,64.53,442.47 +18.6,60.1,1009.91,87.13,453.94 +27.52,67.9,1005.65,59.52,439.01 +21.53,59.8,1016.46,74.72,454.99 +7.33,41.16,1023.17,92.43,466.16 +22.06,59.39,1015.26,85.04,441.31 +22.43,63.76,1009.84,75.27,442.85 +10.32,41.46,1017.98,87.66,479.61 +12.35,40.73,1019.03,95.53,466.71 +13.92,44.47,1029.36,70.86,467.29 +28.31,74.33,1011.89,69.77,428.46 +5.33,39.33,1009.61,94.97,491.17 +11.72,40.92,1023.35,88.55,465.88 +26.12,75.59999999999998,1017.41,72.31,439.68 +19.47,50.9,1012.77,77.33,457.08 +21.44,50.78,1008.87,87.56,443.3 +9.98,41.54,1019.7,80.79,480.26 +15.65,39.59,1012.8,87.63,461.94 +22.91,68.63,1014.92,55.82,448.01 +27.55,73.68,1013.62,81.13,431.86 +20.66,41.54,1014.68,79.7,461.55 +13.32,41.7,1020.22,88.3,451.93 +15.03,35.71,1015.26,56.55,467.61 +24.64,58.79,1009.82,73.95999999999998,444.26 +11.54,40.05,1014.78,87.05,474.29 +15.16,50.88,1013.88,100.11,460.03 +11.2,37.5,1013.81,72.81,472.2 +34.18,78.05,1010.71,66.77,432.1 +12.57,43.8,1023.2,56.85,466.68 +11.54,45.0,1022.77,80.79,482.34 +16.36,39.99,1008.91,72.48,462.5 +16.65,49.69,1014.01,91.0,460.03 +25.99,68.08,1013.13,59.14,442.14 +28.42,75.23,1010.25,56.8,435.64 +24.19,65.48,1018.8,60.54,443.92 +7.44,41.04,1021.84,88.56,479.08 +14.33,38.73,1003.52,85.92,468.86 +21.89,74.78,1010.35,80.39,444.6 +10.15,41.46,1019.78,83.56,481.31 +32.15,72.29,1010.13,50.19,435.71 +26.12,63.94,1017.97,44.81,441.46 +7.52,41.66,1015.2,78.41,483.28 +17.7,38.52,1020.15,69.8,455.5 +22.87,71.29,1008.1,73.09999999999998,442.27 +22.58,52.3,1009.04,78.98999999999998,445.6 +21.36,59.54,1007.99,92.62,446.09 +25.05,58.59,1013.37,66.14,442.93 +23.75,68.51,1013.21,76.01,441.61 +30.18,65.74,1012.63,47.74,441.65 +27.61,59.54,1005.84,71.27,437.85 +21.5,50.59,1017.08,65.28,453.8 +9.72,43.41,1016.25,76.39,474.1 +21.44,62.96,1020.27,79.84999999999998,450.57 +23.37,63.87,1016.67,60.44,446.42 +14.8,40.2,1012.87,88.35,466.27 +23.31,60.37,1005.17,82.75,438.52 +11.86,40.55,1019.82,91.45,473.31 +18.03,53.16,1013.1,81.42,457.73 +14.81,43.7,1015.1,60.72,469.5 +18.41,44.89,1009.75,77.23999999999998,448.88 +21.33,50.32,1008.58,85.3,442.44 +13.46,41.4,1019.46,71.73,467.4 +26.69,59.21,1012.55,57.59,436.33 +10.94,39.04,1021.62,86.41,479.8 +17.9,43.72,1008.64,74.73,452.55 +33.76,68.51,1011.33,38.35,429.83 +5.81,35.79,1012.14,92.28,484.41 +8.27,40.69,1020.13,86.1,484.97 +21.6,62.52,1017.23,67.87,453.28 +27.58,73.06,1009.63,88.31,438.1 +12.15,38.78,1013.34,95.05,474.15 +18.68,53.29,1018.16,75.01,459.89 +26.93,62.44,1011.02,70.05,435.11 +28.25,71.77,1006.36,67.03,429.39 +11.35,40.73,1019.37,96.05,472.32 +23.38,54.42,1013.95,73.02,451.87 +30.51,70.79,1004.55,56.05,428.79 +6.98,40.35,1011.92,94.72,484.19 +24.28,68.31,1009.94,77.08,440.07 +25.03,59.21,1017.28,56.96,446.33 +3.51,35.47,1017.53,86.56,489.07 +8.41,39.16,1015.47,93.42,484.34 +19.3,56.65,1020.55,70.43,459.1 +10.01,40.78,1023.71,88.11,470.82 +9.05,40.67,1015.57,75.48,486.55 +13.82,40.2,1013.19,90.11,466.99 +10.8,41.39,1019.74,74.08,478.75 +19.41,64.45,1009.44,64.05,452.55 +4.86,39.4,1012.73,91.39,488.63 +21.64,44.05,1007.73,74.79,447.96 +30.98,71.29,1008.78,47.7,432.99 +26.02,68.67,1006.73,75.19,440.12 +25.23,58.82,1010.9,70.47,442.64 +25.7,69.45,1013.86,56.91,437.04 +20.3,67.32,1013.49,80.9,441.51 +13.21,41.2,1016.63,74.09999999999998,474.26 +27.18,64.44,1012.81,61.27,440.3 +23.43,61.47,1007.84,87.11,448.01 +6.69,43.65,1020.14,69.55,482.57 +31.01,71.37,1003.4,55.06,430.82 +24.75,69.89,1015.29,82.01,438.1 +18.93,48.6,1005.72,84.92,449.74 +30.85,67.45,1014.53,32.99,430.8 +13.09,39.85,1012.86,58.42,475.89 +26.15,63.21,1012.31,76.44,441.23 +26.7,62.26,1011.0,71.64,435.03 +11.06,36.71,1021.67,80.44,473.85 +28.5,64.84,1011.47,54.41,441.74 +26.39,66.49,1012.96,60.35,433.36 +26.85,69.84,1002.84,81.31,426.58 +31.35,71.32,1005.99,62.35,434.43 +6.44,39.33,1011.8,93.5,490.57 +27.36,48.6,1003.18,54.93,436.06 +11.02,40.0,1015.75,74.83,468.09 +26.11,69.84,1002.57,84.99,427.45 +16.64,48.92,1011.55,78.76,452.56 +25.3,71.58,1010.18,87.36,433.97 +15.75,39.99,1007.02,77.44,464.95 +27.14,75.23,1011.47,63.14,439.33 +28.82,71.8,1010.97,67.64,436.71 +13.52,40.83,1009.94,87.53,470.47 +25.59,62.39,1006.37,74.06,435.84 +24.63,59.57,1010.45,85.36,440.67 +16.29,50.88,1013.79,99.15,456.28 +24.73,70.72,1009.82,88.79,439.3 +22.19,62.96,1019.54,67.96,453.03 +30.2,74.34,1004.17,74.77,431.77 +23.48,66.49,1014.41,62.61,450.05 +18.23,62.26,1011.48,91.35,448.64 +4.23,38.44,1016.46,76.64,489.0 +22.3,44.57,1008.48,67.58,449.74 +28.56,74.22,1007.45,69.6,434.54 +11.22,41.93,1023.13,69.35,480.71 +13.53,42.03,1017.52,84.02,466.71 +3.68,39.64,1011.31,84.05,490.02 +25.03,47.93,1003.02,62.89,443.55 +30.09,64.96,1001.29,56.04,430.3 +18.92,44.06,1017.47,68.75,453.72 +6.82,41.03,1022.12,87.63,489.64 +8.07,43.41,1016.02,76.26,467.56 +20.41,56.03,1019.94,55.85,458.29 +28.67,66.25,1007.96,76.36,434.73 +25.68,68.27,1008.05,68.48,434.89 +18.12,44.63,1001.26,89.72,453.55 +7.65,36.3,1016.5,65.51,482.56 +12.81,45.51,1015.46,79.97,469.27 +23.75,60.29,1017.36,64.04,449.57 +29.53,77.54,1010.39,66.13,432.89 +7.11,40.77,1022.4,90.95,475.55 +21.95,60.95,1015.22,75.09,450.38 +26.79,62.44,1011.51,72.45999999999998,440.55 +10.72,45.0,1023.22,86.95,480.62 +14.13,41.23,994.6,93.02,467.84 +10.23,41.46,1020.45,84.95,480.87 +10.14,45.01,1018.12,94.32,473.56 +11.02,40.81,1016.31,78.13,474.01 +24.26,66.44,1011.33,55.32,445.63 +30.3,69.51,1011.8,50.43,431.12 +31.15,69.59,1007.82,64.96,431.37 +30.18,61.5,1009.8,36.81,436.92 +25.21,46.21,1010.87,59.35,439.55 +28.21,73.06,1008.26,86.29,430.46 +22.18,59.8,1016.77,73.16,453.24 +6.92,39.61,1018.64,82.27,483.83 +15.39,39.31,1008.78,66.67,461.39 +28.23,62.26,1010.88,60.86,435.76 +8.44,41.17,1019.9,70.72,486.15 +22.93,58.2,1017.75,54.09,444.95 +13.94,44.84,1023.69,95.3,468.06 +20.47,63.07,1012.79,88.67,451.71 +12.09,40.6,1013.85,85.72,474.35 +32.37,68.67,1005.45,47.98,430.35 +6.92,43.13,1018.26,89.23,486.36 +26.75,58.33,1013.55,45.47,444.09 +5.19,40.78,1025.24,95.07,482.46 +8.72,36.25,1029.31,85.73,479.94 +20.98,42.23,1012.9,70.7,462.27 +25.35,65.18,1012.67,70.36,438.17 +32.95,75.08,1005.32,47.7,436.3 +24.45,68.63,1013.38,45.35,446.33 +21.71,65.27,1013.24,63.58,444.91 +20.23,69.45,1013.0,89.79,445.82 +19.08,44.63,1020.05,41.07,455.95 +16.98,43.7,1015.07,53.51,464.01 +9.13,39.16,1014.14,86.17,484.86 +21.4,68.28,1008.2,60.34,450.22 +14.48,40.89,1011.39,82.18,470.44 +12.82,41.58,1020.37,81.06,464.07 +26.2,71.73,1010.14,76.14,430.89 +24.17,71.58,1010.16,89.96,436.27 +20.24,56.65,1020.72,62.9,455.49 +28.52,70.72,1009.64,66.76,437.72 +22.18,69.05,1002.75,70.84,442.14 +10.02,39.66,1016.34,79.98,480.05 +8.64,38.56,1016.51,66.03,484.45 +25.71,71.64,1008.85,77.31,438.16 +26.8,49.3,1003.86,62.75,438.56 +9.86,42.49,1009.16,81.41,477.78 +19.25,43.43,1012.01,73.26,451.08 +23.19,45.61,1013.18,73.45999999999998,454.62 +10.39,40.22,1006.59,87.77,479.14 +19.64,48.06,1014.81,74.95999999999998,455.27 +23.04,74.98999999999998,1005.44,92.86,437.65 +10.84,40.62,1015.53,60.9,467.6 +9.45,39.04,1023.08,75.81,483.66 +17.9,52.08,1006.41,100.09,451.94 +19.92,38.52,1018.15,60.68,451.16 +18.17,66.86,1011.29,78.48,452.77 +13.8,45.08,1023.99,79.72,466.71 +29.17,73.17,1009.87,60.97,432.07 +26.63,74.22,1007.44,78.5,434.25 +8.01,41.66,1014.49,76.72,485.13 +7.94,40.6,1015.3,92.14,486.33 +29.6,71.14,1011.46,52.69,430.55 +6.23,40.96,1022.49,93.15,488.82 +10.99,44.63,1020.67,90.09,473.29 +15.8,41.2,1016.08,77.83,468.55 +13.12,39.18,1023.11,64.33,471.44 +8.91,40.69,1015.11,89.65,481.59 +7.82,40.72,1022.17,88.13,481.52 +31.11,74.16,1012.2,58.86,435.69 +22.1,68.12,1012.71,79.77,440.08 +29.35,69.04,1008.55,61.78,445.04 +23.04,59.43,1010.23,68.99,442.99 +30.56,72.39,999.96,69.81,430.85 +20.12,69.45,1013.23,88.48,442.89 +21.25,67.71,1006.9,55.76,444.98 +11.97,41.04,1026.42,70.75,468.81 +20.86,39.72,1001.73,56.38,456.27 +17.29,42.86,1014.38,72.3,464.27 +5.49,38.5,1012.18,79.33,490.84 +18.74,45.09,1014.24,41.54,456.25 +23.09,60.95,1015.02,68.78,450.31 +15.42,39.82,1012.89,83.54,469.9 +20.5,51.19,1009.0,91.79,445.35 +25.78,59.15,1013.61,66.68,441.71 +20.54,61.27,1019.6,61.87,451.95 +12.01,41.48,1017.75,66.67,469.08 +25.22,71.85,1009.78,68.96,438.71 +10.03,43.13,1014.85,70.09,482.16 +27.71,75.23,1010.21,59.75,440.7 +5.41,45.87,1008.47,97.51,479.48 +18.44,39.72,1001.14,66.83,460.44 +6.38,40.07,1018.53,60.2,492.96 +15.15,41.35,1006.3,86.16,468.64 +13.45,45.87,1008.42,87.74,464.59 +12.86,44.77,1018.75,74.73,468.43 +8.64,39.69,1001.57,98.27,473.55 +8.01,40.02,1031.33,85.01,477.84 +12.38,43.52,1022.98,100.0,467.55 +18.28,44.71,1016.99,33.71,462.28 +19.4,39.53,1007.96,63.38,457.17 +27.96,68.51,1007.26,63.21,432.07 +20.25,58.33,1013.25,68.92,448.93 +12.95,43.71,1025.63,90.7,469.15 +22.53,74.87,1009.91,93.21,444.69 +25.21,51.43,1006.43,78.55,439.01 +28.9,60.07,1015.96,45.06,440.62 +27.09,73.5,1011.34,76.06,434.31 +13.61,42.34,1017.93,91.61,463.89 +22.43,55.97,1008.97,85.98,443.74 +14.5,41.76,1023.94,84.42,464.23 +22.84,59.39,1014.61,80.36,443.71 +5.89,40.07,1018.99,63.13,493.9 +27.38,77.23999999999998,1008.25,82.49,435.81 +26.21,65.12,1016.06,44.31,444.44 +26.63,62.44,1010.86,70.82,438.25 +15.49,54.3,1017.59,71.26,464.24 +15.2,40.55,1005.0,88.4,465.09 +15.03,42.44,1014.25,94.52,464.91 +24.45,66.49,1014.24,58.15,449.22 +13.11,41.44,1015.55,74.45,471.61 +23.27,64.15,1020.98,71.18,452.26 +31.02,70.4,1006.24,77.86,431.37 +15.11,56.03,1020.27,89.95,462.65 +26.75,60.96,1012.05,56.77,447.93 +12.87,39.3,1020.64,74.38,467.54 +7.96,38.91,1016.35,89.17,482.17 +22.74,61.02,1009.56,79.41,445.56 +23.35,63.47,1011.78,84.24,437.87 +29.74,56.9,1007.15,41.91,438.76 +17.39,42.44,1013.72,73.79,461.55 +21.23,57.32,1010.99,75.17,443.87 +25.21,59.21,1017.37,55.06,445.33 +19.73,68.63,1012.41,74.12,450.26 +9.15,39.61,1018.69,84.47,475.64 +25.96,68.08,1010.86,67.07,435.84 +25.96,71.64,1003.84,86.83,432.93 +11.6,39.1,1009.81,100.09,460.7 +23.95,73.67,1007.32,87.67,437.43 +33.15,68.51,1012.9,51.91,428.89 +9.45,41.92,1029.32,91.09,467.79 +29.59,74.78,1009.45,55.75,436.77 +23.55,62.96,1020.16,70.16,447.65 +6.04,41.14,1027.92,87.12,481.37 +28.69,73.18,1012.23,68.57,431.36 +20.09,63.94,1020.82,74.16,449.47 +24.86,65.34,1012.99,60.33,447.25 +17.36,39.53,1008.28,68.87,456.57 +24.85,71.98,1005.97,95.09,433.64 +30.26,72.58,1007.0,65.51,425.71 +19.13,58.66,1013.32,74.86,453.92 +28.94,68.67,1005.39,75.23999999999998,434.65 +21.75,45.09,1014.15,44.84,452.84 +27.88,75.23,1011.33,58.91,439.33 +18.17,52.08,1001.91,100.09,451.06 +18.5,47.03,1013.97,93.6,460.08 +15.82,43.34,1014.52,79.06999999999998,460.4 +7.87,43.02,1014.67,83.58,485.61 +13.02,45.51,1015.24,80.05,468.46 +18.51,58.46,1017.21,88.1,448.39 +22.89,73.11,1006.66,73.11,440.15 +24.23,59.04,1011.91,71.79,443.06 +15.02,37.64,1016.49,83.28,463.93 +28.75,64.69,1007.1,60.37,437.94 +13.09,43.67,1012.22,91.91,474.45 +24.8,72.23999999999998,1011.58,83.61,435.25 +25.44,70.17,1000.65,91.89,433.02 +18.76,52.9,1016.27,64.7,458.26 +13.11,38.73,1005.89,89.02,473.38 +25.79,59.43,1008.61,64.3,435.51 +22.07,48.41,1008.71,81.29,444.01 +18.19,41.85,1014.93,61.37,466.86 +25.99,74.67,1016.59,83.39,434.7 +20.48,39.72,1001.61,57.32,455.58 +11.0,40.23,1019.08,86.5,475.9 +11.92,41.2,1016.99,81.23999999999998,476.0 +28.04,74.33,1013.53,48.65,432.92 +24.79,50.78,1008.78,61.88,445.3 +3.38,41.31,998.79,97.76,489.11 +15.9,39.99,1007.03,78.48999999999998,465.5 +22.97,64.15,1021.0,70.61,450.07 +12.67,42.86,1014.06,89.9,473.13 +21.92,49.02,1009.29,88.56,443.31 +25.53,57.17,1010.0,72.56999999999998,442.12 +26.3,69.05,1005.37,41.7,438.12 +25.16,54.2,1012.69,58.02,441.99 +24.97,50.23,1015.6,56.79,454.35 +32.34,74.98999999999998,1002.77,42.83,433.07 +10.53,40.64,1020.62,98.43,477.99 +19.95,50.59,1016.11,73.23,459.27 +24.91,69.89,1015.25,82.39,438.29 +25.25,62.91,1012.51,62.64,443.14 +3.69,38.44,1016.74,82.87,490.78 +16.02,44.21,1020.97,85.64,462.51 +4.77,39.33,1011.32,68.98,494.91 +19.61,56.53,1019.69,77.13,454.22 +13.72,54.3,1017.89,79.08,467.05 +26.4,48.41,1008.51,66.95,442.23 +20.51,39.72,1002.25,47.97,452.39 +12.59,44.34,1017.01,85.57,474.11 +33.82,73.03,1013.49,42.17,439.3 +9.33,42.49,1008.93,82.59,478.43 +29.37,74.78,1009.47,55.65,434.2 +9.44,39.82,1013.26,91.55,483.18 +7.1,41.74,1022.25,91.07,484.12 +22.79,71.77,1005.75,90.91,435.53 +7.25,41.14,1024.99,95.85,477.45 +29.81,73.67,1005.6,60.91,430.67 +26.66,64.27,1012.83,58.88,437.87 +15.49,42.07,1018.01,78.06999999999998,460.32 +11.64,41.44,1016.4,73.18,478.99 +25.52,61.25,1012.84,75.98,435.48 +10.86,37.5,1013.36,75.56,473.75 +17.23,40.12,1013.52,81.55,456.2 +10.3,41.79,1021.09,49.39,471.58 +20.52,43.79,1015.9,68.1,463.93 +31.68,70.79,1004.05,54.5,429.55 +28.77,58.33,1013.73,36.6,448.06 +29.93,69.48,1009.21,54.59,430.75 +8.49,36.25,1029.7,84.41,480.35 +26.06,54.5,1015.52,67.12,451.67 +26.98,70.94,1007.99,68.16,434.73 +25.09,71.58,1010.17,86.01,434.51 +20.08,44.6,1014.91,36.27,461.07 +22.95,66.54,1004.53,88.06,434.41 +10.9,39.64,1010.58,64.88,477.04 +22.69,49.21,1012.64,46.83,449.01 +12.04,40.78,1025.21,85.97,463.51 +30.36,69.82,1010.02,54.22,439.05 +25.35,66.56,1008.75,66.88,436.51 +24.66,57.43,1013.17,71.82,445.41 +18.16,43.96,1012.78,78.33,465.26 +30.33,70.36,1006.72,70.31,438.47 +16.37,52.9,1015.14,73.11,461.15 +7.19,38.91,1016.53,88.61,486.05 +25.8,71.58,1010.08,85.14,435.2 +27.6,73.42,1011.91,83.66,431.44 +28.29,61.86,1011.87,64.17,438.25 +27.43,56.85,1011.86,36.76,436.64 +13.95,40.2,1013.18,90.77,464.79 +11.34,41.54,1020.25,75.83,477.24 +22.53,62.39,1007.84,86.4,450.08 +13.93,44.21,1022.26,82.4,469.12 +28.96,75.23,1010.88,49.45,439.03 +26.68,49.02,1008.4,68.01,441.54 +17.02,51.86,1021.53,81.28,460.0 +8.91,43.52,1022.78,98.0,478.38 +11.27,40.69,1014.35,86.63,476.27 +19.53,66.54,1013.72,81.45999999999998,451.19 +23.57,67.9,1006.08,70.12,446.72 +20.31,45.87,1007.89,73.7,449.54 +18.88,40.79,1004.98,92.65,459.06 +16.33,42.44,1013.98,84.9,462.44 +16.0,45.09,1014.31,60.02,458.46 +16.65,46.18,1010.6,95.69,465.6 +32.4,68.14,1004.44,34.53,425.91 +27.54,51.43,1012.3,54.82,439.8 +34.65,74.67,1016.03,26.67,427.69 +32.38,69.05,1000.76,45.85,429.31 +9.63,41.14,1027.99,87.89,469.73 +6.4,39.18,1024.6,86.83,484.44 +18.64,67.71,1003.84,89.63,442.26 +15.33,43.13,1015.41,53.17,466.86 +15.24,45.87,1009.46,85.95,456.33 +9.57,52.75,1022.32,75.4,470.93 +21.17,59.8,1016.06,77.73,455.66 +8.42,42.28,1008.4,87.78,481.91 +13.21,43.71,1024.5,86.59,466.39 +8.35,40.46,1019.23,73.26,474.79 +24.49,68.61,1010.56,64.03,447.57 +20.26,50.32,1009.81,93.12,448.4 +19.32,52.9,1016.86,68.2,457.66 +18.25,60.1,1009.72,90.15,456.25 +32.48,69.75,1009.05,40.47,438.17 +10.11,39.35,1015.19,90.74,479.83 +5.6,38.91,1019.31,85.33,491.1 +24.38,63.91,1009.53,79.11,446.02 +7.11,41.74,1022.35,90.68,487.85 +20.01,59.87,1019.0,84.12,448.39 +10.71,41.93,1018.23,90.88,478.76 +10.0,39.66,1016.83,78.91,479.97 +30.47,72.86,1004.02,66.35,432.51 +14.66,40.89,1009.72,91.56,465.73 +25.34,49.5,1013.25,50.8,457.12 +31.15,66.25,1008.89,61.08,437.55 +22.55,70.79,1006.19,92.56,436.43 +18.26,49.64,1024.92,62.82,462.6 +25.63,48.92,1009.99,34.64,439.87 +30.93,69.98,1013.33,62.1,432.25 +26.93,72.98999999999998,1007.33,78.84999999999998,433.18 +24.6,63.94,1012.87,80.28,439.63 +13.93,38.91,1013.04,73.51,470.39 +15.47,46.48,1007.69,91.07,462.58 +14.4,42.18,1015.47,77.7,464.81 +21.87,69.45,1014.04,71.19,439.97 +30.7,67.69,1005.92,51.58,429.58 +16.37,39.99,1007.05,80.61,464.69 +27.68,69.34,1008.28,70.9,436.37 +7.64,41.17,1020.01,75.14,488.53 +12.88,40.64,1020.76,92.58,474.58 +23.78,49.3,1003.3,76.56,439.83 +32.55,70.94,1006.75,43.15,432.07 +8.529999999999998,40.02,1031.27,85.57,476.73 +26.68,63.73,1009.7,71.55,439.69 +21.28,70.32,1011.55,88.05,438.7 +18.34,44.63,1000.76,89.27,455.22 +6.5,38.68,1017.8,62.9,483.72 +19.36,39.54,1008.97,58.92,458.75 +26.94,71.14,1011.63,62.74,434.03 +29.23,68.14,1004.31,81.45999999999998,428.87 +22.35,57.76,1017.92,68.18,453.74 +16.85,41.35,1006.14,79.20999999999998,463.37 +12.86,40.6,1013.6,84.85,472.04 +26.48,66.54,1011.61,51.9,438.87 +10.33,40.0,1021.35,90.84,479.32 +24.1,60.29,1008.2,61.81,449.79 +13.2,45.01,1013.96,78.78,466.71 +18.24,59.15,1012.0,84.4,449.48 +13.44,42.34,1018.0,96.65,459.6 +27.06,77.17,1008.71,90.6,432.2 +23.47,69.71,1009.66,88.83,442.23 +13.34,41.79,1011.48,86.66,461.12 +26.03,64.44,1012.75,62.24,445.89 +28.55,66.51,1015.46,34.04,432.59 +25.18,56.89,1012.26,64.46,442.42 +13.38,40.12,1013.92,96.96,468.15 +19.79,60.1,1010.47,84.04,452.41 +7.0,39.81,1017.47,87.65,484.51 +19.64,56.65,1020.79,73.88,456.03 +13.77,43.13,1016.63,62.13,468.45 +15.09,40.89,1010.15,92.0,466.47 +15.91,71.14,1019.7,72.65,458.15 +10.8,41.66,1013.79,81.96,475.51 +14.07,45.09,1013.32,94.45,462.69 +14.39,40.35,1011.33,64.86,472.43 +13.7,45.64,1019.18,92.66,467.9 +22.59,59.43,1005.85,84.02,442.0 +14.84,41.23,995.02,88.0,464.85 +13.19,39.18,1023.67,66.78,469.62 +23.36,73.18,1011.96,89.15,435.85 +9.78,52.75,1022.97,78.31,469.58 +22.51,59.21,1018.35,71.97,444.66 +31.49,73.5,1010.71,40.16,432.13 +25.5,68.08,1011.13,72.86,436.07 +20.36,66.05,1015.86,87.19,450.23 +3.99,39.9,1009.74,96.81,490.91 +24.97,63.86,1018.64,52.01,441.61 +15.93,52.75,1024.57,58.71,457.92 +14.09,44.47,1029.08,72.36,466.53 +19.82,63.9,1013.19,78.95999999999998,449.61 +12.24,44.9,1020.31,82.22,464.25 +23.97,44.57,1007.35,62.71,448.17 +22.19,58.49,1010.91,77.03,449.4 +11.42,40.35,1011.55,82.71,478.7 +20.04,49.39,1020.62,78.84,449.63 +20.53,65.06,1016.69,73.47,446.64 +33.2,73.88,1005.67,48.48,438.12 +9.89,40.64,1020.59,98.35,478.13 +9.2,39.99,1011.73,85.95,484.04 +2.34,39.42,1028.47,69.68,490.34 +21.75,50.12,1009.36,94.41,446.64 +26.53,63.87,1017.38,48.53,445.11 +24.45,70.02,1010.75,71.37,445.8 +31.51,71.97,1007.84,71.18,430.11 +12.09,38.25,1013.61,81.28,469.29 +13.82,42.32,1016.32,81.19,463.06 +28.09,65.27,1013.27,51.96,440.0 +17.73,40.55,1003.36,74.62,462.69 +9.75,42.49,1010.57,83.63,480.35 +18.88,65.94,1010.43,85.54,445.61 +17.69,46.36,1019.55,86.64,462.81 +28.34,73.68,1015.05,76.73,432.0 +22.95,63.94,1013.91,81.52,438.33 +22.98,69.84,1005.55,84.1,437.49 +26.41,68.24,1010.6,77.79,428.52 +31.25,73.5,1010.81,45.2,432.25 +26.95,72.23999999999998,1011.16,73.14,435.65 +18.59,41.1,1001.93,58.16,459.72 +23.36,59.15,1013.71,86.64,442.53 +21.79,60.93,1006.44,87.68,443.01 +23.34,59.14,1017.47,78.91,439.6 +27.01,71.25,1000.46,87.95,431.38 +14.85,58.59,1014.04,89.85,454.62 +12.54,40.1,1015.73,84.29,475.02 +26.17,48.6,1002.59,61.41,439.86 +21.97,65.61,1016.09,73.29,447.05 +22.84,67.32,1013.77,64.67,438.36 +11.59,40.05,1014.96,86.22,474.46 +29.88,68.08,1011.14,55.78,429.33 +12.31,44.78,1011.15,77.34,468.29 +4.99,41.03,1022.33,83.11,493.16 +13.42,40.35,1011.2,77.0,472.57 +10.59,41.54,1019.94,72.52,478.74 +25.95,69.51,1009.36,66.82,434.38 +22.86,62.4,1010.59,78.23999999999998,445.66 +23.95,58.46,1017.5,68.46,440.75 +24.73,69.94,1006.09,59.15,439.86 +20.18,43.43,1011.31,65.11,450.09 +16.17,41.79,1005.78,78.8,454.72 +16.7,50.66,1014.86,94.87,457.74 +18.32,47.83,1005.06,87.21,454.11 +22.5,59.54,1007.99,93.63,445.22 +13.78,45.78,1025.27,95.72,462.88 +11.54,45.51,1017.19,83.02,474.73 +23.19,48.6,1002.38,61.19,445.52 +20.98,47.43,1007.39,68.15,450.0 +8.35,43.79,1016.2,85.23,484.21 +25.87,44.57,1007.43,55.92,445.79 +13.89,41.49,1020.02,86.47,469.6 +22.59,66.54,1005.11,92.62,436.69 +21.9,63.13,1011.54,81.83,447.4 +20.01,68.63,1012.34,69.49,454.5 +18.83,47.83,1005.58,77.06999999999998,454.23 +4.49,38.44,1015.47,76.95999999999998,485.78 +29.1,50.05,1005.87,51.53,438.66 +29.59,70.17,999.71,71.0,434.85 +21.39,62.96,1019.49,72.23999999999998,452.68 +10.36,43.67,1011.95,78.15,477.23 +28.16,71.94,1007.69,68.17,430.46 +19.02,50.66,1013.04,85.25,455.42 +26.03,69.68,1011.61,60.75,449.54 +20.36,65.27,1011.73,70.8,445.67 +10.12,40.0,1021.33,95.29,476.03 +21.98,58.79,1010.72,86.85,448.84 +19.17,52.9,1016.56,65.23,458.59 +13.97,41.16,1020.88,74.88,459.84 +9.56,44.71,1021.13,64.6,487.92 +7.3,39.72,1020.85,77.83,485.1 +11.8,41.2,1017.18,82.71,475.19 +20.88,47.45,1007.5,76.20999999999998,449.34 +11.27,40.62,1017.03,61.94,471.26 +5.5,39.04,1021.46,78.91,478.65 +22.98,51.95,1006.83,74.92,454.63 +24.62,70.47,1010.55,72.70999999999998,435.88 +25.62,63.13,1013.84,83.49,439.13 +17.47,43.56,1014.15,54.71,460.87 +9.55,43.99,1020.5,97.28,476.06 +17.34,44.78,1007.81,56.38,454.97 +22.7,48.14,1014.06,60.09,448.96 +13.48,40.73,1017.59,94.81,463.6 +13.11,42.99,1007.6,97.0,472.84 +12.27,41.17,1019.39,52.18,473.84 +20.54,49.15,1021.02,56.0,458.6 +17.37,58.49,1012.2,91.14,456.29 +13.08,44.9,1020.47,86.46,472.01 +22.76,44.05,1006.95,74.06999999999998,450.31 +28.83,72.43,1006.69,67.04,428.85 +19.54,44.57,1007.19,78.93,450.54 +28.0,69.05,1000.82,65.24,427.71 +5.71,45.87,1012.04,93.42,482.49 +12.42,43.8,1023.13,79.8,466.59 +17.12,68.28,1003.56,94.29,449.94 +31.53,74.98999999999998,1003.93,58.29,432.34 +21.18,44.57,1007.27,73.67,449.93 +12.89,36.71,1013.36,87.29,475.13 +14.45,44.84,1023.28,82.79,461.0 +17.67,53.16,1013.59,83.31,457.99 +26.2,74.67,1016.69,84.38,430.22 +22.21,60.77,1018.21,84.96,444.57 +21.98,55.5,1017.89,57.9,457.29 +30.61,77.17,1009.49,73.19,430.46 +14.66,42.77,1019.37,79.79,463.6 +11.5,40.78,1023.91,86.31,467.74 +16.42,40.56,1020.36,50.62,472.17 +13.23,42.34,1018.02,97.49,462.21 +14.1,41.16,1021.26,73.87,460.01 +29.53,64.44,1013.22,59.75,440.1 +23.1,72.98999999999998,1008.85,90.54,440.46 +15.0,41.17,1015.57,64.82,468.72 +17.34,44.06,1015.84,74.88,458.5 +23.09,69.13,1010.93,90.07,436.67 +32.07,71.29,1008.43,44.95,426.96 +25.53,62.96,1019.81,59.7,444.38 +22.69,48.14,1013.7,62.05,448.52 +23.0,66.05,1020.61,80.29,421.57 +29.79,69.34,1008.82,65.13,434.74 +18.34,45.64,1019.05,82.53,460.58 +21.83,63.13,1013.4,85.82,443.41 +32.83,74.16,1007.57,60.2,432.05 +31.87,67.32,1013.65,36.69,435.47 +11.02,39.96,1025.64,93.58,467.41 +21.39,51.3,1013.39,89.05,452.7 +5.01,39.4,1003.69,91.9,475.34 +26.99,68.12,1011.45,58.48,436.95 +11.34,43.67,1011.54,87.95,472.77 +17.3,47.45,1010.29,87.13,448.79 +27.94,69.84,1003.11,70.47,428.67 +26.38,44.89,1009.14,51.79,442.13 +30.92,59.57,1010.87,62.43,440.96 +29.13,66.56,1006.63,52.85,439.31 +12.36,45.09,1013.05,88.4,467.2 +23.89,70.04,1011.16,84.9,433.71 +22.92,58.62,1016.37,71.38,447.48 +27.15,73.9,1007.57,74.42,433.09 +24.93,69.05,1001.02,85.14,429.53 +26.88,73.56,1004.85,94.36,430.63 +31.35,71.97,1008.29,72.26,430.16 +3.38,39.64,1011.0,81.22,488.92 +24.42,63.31,1012.64,71.8,438.39 +11.24,25.36,1009.26,97.47,469.92 +32.25,77.54,1010.46,54.57,430.86 +25.41,69.14,1006.4,87.4,436.59 +21.63,60.84,1018.16,77.53,445.93 +9.47,41.4,1026.21,89.08,480.79 +25.93,69.34,1008.91,79.43,434.08 +14.43,43.5,1021.86,83.14,466.58 +26.57,44.57,1007.76,50.39,445.49 +5.79,38.68,1017.19,70.46,487.4 +16.03,41.23,996.35,82.04,464.67 +12.0,39.35,1015.48,82.51,476.64 +25.34,65.61,1014.61,57.51,442.82 +30.93,71.85,1008.63,58.47,427.82 +20.48,51.43,1007.4,90.7,448.03 +30.15,67.32,1013.83,32.8,436.92 +14.73,36.99,1007.32,90.84,468.23 +24.39,58.41,1013.65,80.93,445.39 +14.72,38.91,1015.17,61.75,468.87 +23.09,45.01,1012.25,43.95,453.45 +10.15,39.22,1020.09,68.75,474.87 +30.78,73.67,1005.97,58.7,427.15 +30.54,67.45,1014.37,32.97,431.35 +29.22,73.18,1012.22,64.91,430.57 +15.55,43.02,1011.97,44.66,466.2 +22.63,58.96,1013.62,56.67,451.41 +9.14,42.44,1014.48,92.03,481.46 +18.62,61.27,1019.26,73.34999999999998,455.75 +28.82,65.71,1014.24,54.3,449.18 +12.41,40.96,1023.36,78.95999999999998,473.59 +10.91,37.92,1008.66,66.53,473.72 +28.31,64.79,1016.58,60.88,440.96 +22.99,68.67,1006.65,77.62,446.67 +32.42,75.08,1004.82,41.62,436.26 +24.84,59.22,1013.18,83.08,442.7 +19.73,56.65,1020.7,69.49,457.46 +26.93,56.9,1006.25,77.79,444.7 +20.23,57.76,1016.84,81.26,452.5 +25.28,67.69,1009.05,68.54,445.34 +22.76,49.21,1014.35,48.85,448.73 +30.19,66.54,1004.39,61.43,428.37 +18.91,45.01,1012.9,59.81,456.12 +10.33,43.99,1020.7,96.68,474.17 +12.47,38.25,1012.74,82.89,469.56 +7.53,41.16,1023.19,91.28,475.7 +30.55,66.25,1009.15,63.52,440.74 +18.27,58.2,1018.34,72.73,448.17 +9.78,40.03,1017.33,92.11,480.59 +20.56,43.79,1015.85,45.7,462.11 +16.88,39.99,1007.08,74.29,462.83 +19.09,44.63,1019.91,39.32,461.36 +6.75,39.9,1008.3,87.42,484.05 +25.86,61.08,1013.51,67.5,449.67 +31.46,71.8,1010.75,54.88,434.96 +17.8,46.48,1007.27,81.31,452.66 +28.84,60.23,1009.7,59.0,437.82 +6.86,42.49,1007.95,93.96,486.14 +28.2,66.75,1018.35,60.18,433.46 +26.75,64.79,1017.79,54.31,438.4 +11.39,43.72,1010.91,98.83,467.8 +23.07,65.27,1013.24,58.38,443.42 +27.01,67.98,1006.01,67.98,434.65 +13.63,43.5,1022.12,84.32,468.28 +27.19,62.91,1011.57,53.66,444.8 +24.71,61.9,1013.78,85.82,443.39 +28.16,70.98,1008.51,72.12,435.04 +7.69,36.24,1013.08,88.37,482.46 +12.27,49.83,1007.75,92.02,467.1 +27.38,59.21,1012.74,53.53,437.78 +25.03,57.5,1014.96,62.23,449.48 +9.99,36.71,1023.57,83.53,475.85 +7.57,39.61,1018.66,85.73,480.86 +25.44,63.13,1011.74,77.83,441.91 +29.63,66.75,1018.08,58.46,433.26 +6.9,39.81,1016.74,88.24,481.88 +19.73,49.69,1007.78,73.02,454.28 +23.43,63.94,1010.64,89.29,440.16 +31.98,64.05,1010.49,58.01,439.56 +7.67,41.66,1016.25,77.0,485.03 +22.45,59.87,1018.92,72.73,445.34 +27.38,69.4,1004.57,74.12,434.47 +26.54,71.14,1007.52,72.04,431.31 +30.63,53.3,1004.91,53.3,430.27 +31.43,69.89,1014.8,56.22,426.15 +29.75,74.87,1009.1,56.5,435.61 +20.21,59.14,1016.0,70.38,448.79 +32.21,68.3,1014.94,49.38,429.66 +22.99,62.96,1019.6,65.05,449.4 +14.76,43.79,1016.17,75.72,464.14 +22.94,58.05,1012.27,80.12,433.77 +16.69,40.56,1019.92,51.43,469.9 +25.82,72.39,1003.4,86.33,432.98 +5.53,35.79,1013.48,94.19,484.25 +26.1,62.91,1012.44,60.91,446.05 +26.45,75.59999999999998,1017.42,74.5,436.89 +24.35,59.21,1018.21,54.46,444.35 +23.51,57.32,1012.55,53.6,444.58 +28.96,66.54,1002.54,56.33,429.48 +14.82,42.74,1028.04,69.81,466.34 +33.27,66.44,1010.63,43.47,430.11 +18.78,54.2,1012.05,89.25,448.04 +22.32,47.93,1004.07,86.95,440.21 +4.93,38.44,1015.65,71.47,485.01 +14.56,53.82,1016.37,64.46,463.64 +26.94,73.20999999999998,1002.83,91.25,431.19 +8.73,41.26,1020.54,91.37,476.42 +20.17,58.12,1015.41,79.47,455.25 +17.89,44.6,1014.48,42.51,463.99 +9.31,43.56,1015.09,79.95999999999998,482.55 +18.5,41.85,1015.81,64.78,466.8 +21.91,48.7,1006.89,83.97,449.8 +10.74,52.75,1021.75,75.41,467.48 +14.3,54.3,1015.16,75.29,464.9 +16.6,53.16,1014.5,76.75,457.26 +24.78,66.49,1010.55,68.12,436.62 +14.3,53.82,1016.64,63.9,465.42 +14.7,40.8,1025.78,50.96,472.85 +19.35,50.12,1005.43,100.1,447.43 +25.76,73.5,1011.44,81.36,437.0 +25.79,75.59999999999998,1017.46,75.63,434.65 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/val.csv b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8e4f06f47506230c9250aba198646e237e7e5c --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/val.csv @@ -0,0 +1,957 @@ +AT,V,AP,RH,PE +25.69,57.32,1012.34,44.18,441.43 +17.98,59.15,1012.09,83.03,451.97 +11.52,40.75,1016.23,85.18,477.19 +26.43,66.48,1004.36,55.9,435.59 +24.26,69.51,1013.43,53.23,442.56 +19.68,62.96,1020.41,82.26,453.58 +10.28,41.46,1018.44,85.23,479.66 +25.15,62.91,1012.23,48.22,444.19 +23.28,72.23999999999998,1011.3,90.5,434.21 +11.6,40.27,1008.55,72.12,473.89 +22.75,58.79,1011.44,84.47,445.67 +6.77,39.81,1017.01,87.68,488.27 +19.48,58.66,1013.32,73.16,454.4 +23.93,65.59,1011.09,87.26,444.9 +17.77,44.6,1016.97,54.25,460.13 +33.58,77.54,1010.19,53.49,433.75 +7.49,39.81,1019.03,87.29,483.59 +6.33,42.07,1004.25,77.09999999999998,484.57 +12.43,41.62,1011.87,80.56999999999998,460.61 +25.34,64.27,1013.38,66.02,443.94 +17.17,63.09,1020.54,95.98,446.75 +27.75,69.89,1015.41,73.01,430.33 +29.62,73.18,1012.21,61.6,427.22 +24.35,70.04,1010.92,73.88,438.4 +27.39,69.14,1008.82,78.34999999999998,435.22 +31.18,70.36,1006.38,56.74,438.46 +26.56,49.02,1007.65,70.78,438.82 +24.24,71.58,1010.15,91.14,437.75 +11.82,41.26,1020.74,91.14,466.95 +14.38,40.1,1015.51,81.23,467.28 +26.65,74.16,1008.27,94.54,431.47 +26.16,67.9,1005.81,61.02,444.06 +5.52,39.33,1009.74,95.25,492.39 +31.24,68.3,1015.89,42.84,435.2 +26.22,67.45,1013.7,44.04,440.17 +21.67,69.71,1010.46,96.83,440.16 +13.4,40.89,1010.67,91.66,472.36 +13.78,43.22,1011.31,69.7,463.71 +9.88,39.66,1017.81,76.05,480.05 +10.34,41.74,1020.07,79.17,480.84 +26.86,71.32,1007.38,81.14,430.44 +12.95,41.38,1021.97,53.83,474.46 +26.94,65.61,1014.31,49.73,443.9 +21.81,43.77,1011.97,64.72,453.13 +18.9,56.03,1020.77,71.83,457.66 +14.87,41.23,997.39,82.06,465.01 +20.46,59.21,1018.42,85.89,445.22 +24.3,69.94,1007.02,62.14,438.92 +24.58,71.94,1006.85,89.02,433.99 +9.88,40.0,1021.4,92.06,481.58 +29.85,71.58,1010.04,58.66,432.26 +27.5,65.59,1011.23,65.37,441.27 +6.14,40.62,1015.71,86.51,481.66 +20.76,51.19,1009.0,87.23,445.0 +25.55,58.95,1017.12,51.84,442.3 +10.24,41.17,1019.73,82.04,479.78 +14.45,43.71,1025.26,84.23,463.6 +30.76,59.57,1010.66,61.76,439.32 +5.72,40.81,1025.78,92.46,487.8 +30.24,68.24,1009.68,64.67,426.25 +34.61,73.03,1013.61,36.91,438.56 +24.14,62.66,1007.33,73.27,439.93 +26.76,70.98,1007.64,90.51,437.83 +18.47,62.1,1019.86,82.57,452.51 +29.51,75.59999999999998,1017.92,50.61,431.18 +29.05,71.85,1008.6,78.69,428.39 +21.89,45.38,1014.42,68.95,459.45 +24.67,63.56,1013.75,67.56,446.3 +30.67,71.29,1008.36,52.08,430.28 +25.21,49.82,1016.44,63.14,450.75 +9.76,41.01,1019.66,97.59,467.6 +18.31,62.1,1020.38,79.02,455.24 +33.11,77.54,1010.36,50.99,431.77 +26.18,69.14,1006.54,85.95,436.0 +8.72,40.02,1031.32,78.09,477.86 +17.06,58.96,1013.83,73.95,461.15 +8.01,40.62,1015.62,86.43,476.22 +14.35,35.71,1016.1,60.86,468.9 +29.74,70.32,1008.1,52.72,432.69 +23.0,49.5,1014.15,66.68,454.44 +17.09,42.42,1009.03,72.01,464.11 +14.0,40.8,1026.17,54.82,474.87 +25.02,60.29,1017.49,54.75,445.61 +13.86,41.58,1020.69,70.74,461.56 +27.58,78.05,1010.83,94.98,431.95 +26.41,60.93,1007.16,66.02,436.71 +11.02,41.44,1015.28,83.53,476.68 +25.48,58.95,1017.02,51.16,440.42 +15.47,48.98,1016.42,89.85,457.55 +21.48,47.43,1006.88,63.54,449.2 +18.86,51.43,1010.27,86.0,446.91 +20.94,44.58,1016.98,59.65,463.69 +15.02,41.48,1015.19,58.69,456.04 +28.71,70.32,1011.78,76.53,435.95 +14.28,42.77,1020.06,81.77,466.75 +26.24,77.95,1014.19,85.21,438.01 +24.31,63.86,1019.47,58.54,442.69 +8.51,40.78,1023.51,89.84,471.11 +16.07,65.46,1013.88,87.11,450.54 +8.14,39.96,1023.41,88.86,477.05 +18.43,44.63,1019.76,39.99,458.75 +34.2,68.14,1002.7,56.09,427.05 +17.66,62.1,1019.49,86.3,452.03 +23.77,51.43,1006.67,84.09,441.54 +16.59,39.54,1007.97,70.58,464.19 +15.01,43.56,1014.65,61.82,465.84 +29.09,70.02,1010.13,48.06,443.27 +20.1,59.87,1018.97,87.23,444.71 +9.0,39.18,1024.38,84.91,483.26 +16.85,50.9,1013.26,83.94,460.68 +28.44,69.4,1003.98,73.51,433.44 +9.51,40.81,1015.69,82.52,475.29 +25.99,49.82,1015.95,58.56,452.09 +6.86,41.17,1020.12,79.14,490.23 +8.57,39.69,1000.91,99.9,474.29 +23.3,48.78,1018.17,75.36,441.08 +32.95,67.9,1005.88,45.15,425.89 +24.41,73.67,1007.39,86.92,435.56 +17.51,39.54,1010.22,71.53,462.12 +31.68,73.68,1014.85,64.0,431.11 +9.0,41.54,1018.83,79.61,484.08 +18.4,43.96,1012.4,77.81,464.63 +13.72,49.83,1006.88,89.49,463.65 +7.16,38.56,1019.17,70.1,486.12 +14.33,43.41,1015.43,55.4,462.94 +13.53,42.86,1014.0,90.63,471.73 +13.11,41.58,1020.43,74.31999999999998,460.44 +23.98,50.32,1008.41,67.75,443.45 +31.08,59.57,1010.76,60.49,442.88 +33.62,77.17,1009.38,63.71,431.03 +11.93,38.78,1013.15,96.08,474.57 +21.97,68.12,1012.53,75.12,443.39 +23.83,49.21,1012.93,46.79,446.23 +4.96,45.87,1007.32,98.78,481.88 +31.3,70.79,1004.3,54.37,428.75 +17.75,49.25,1020.86,63.67,454.41 +29.89,71.29,1009.0,55.72,431.45 +12.11,41.17,1019.46,62.59,475.53 +23.85,74.22,1009.99,82.72,441.66 +12.16,40.81,1025.79,70.97,476.63 +23.71,60.23,1009.76,90.67,439.66 +22.49,58.71,1009.75,76.43,443.33 +18.9,57.5,1016.21,93.9,451.42 +27.86,63.07,1011.11,56.81,440.48 +26.04,71.14,1011.66,68.95,433.78 +19.51,44.05,1008.52,78.38,451.7 +10.92,40.92,1021.84,83.03,467.05 +8.51,42.32,1015.08,84.89,476.6 +19.68,68.28,1002.62,71.57,452.47 +27.75,70.4,1006.65,90.21,436.53 +21.59,66.54,1004.88,90.54,441.71 +13.93,42.86,1032.37,71.11,468.88 +16.55,41.66,1011.45,55.53,465.14 +25.53,71.85,1009.19,74.7,431.26 +20.67,57.5,1014.42,81.89,453.29 +25.21,69.48,1010.99,75.27,436.02 +9.29,39.04,1022.72,74.29,482.55 +33.92,77.95,1010.15,58.89,433.01 +25.63,71.58,1010.14,87.57,433.76 +27.21,66.49,1013.57,40.11,439.04 +10.42,41.26,1008.48,96.76,472.54 +25.02,59.44,1012.49,73.65,444.08 +24.2,59.43,1009.69,62.3,440.66 +15.82,44.88,1018.59,78.88,461.9 +11.46,38.91,1012.34,77.37,477.5 +13.17,36.71,1012.82,72.76,474.93 +23.47,65.61,1014.57,69.83,447.16 +10.77,41.46,1021.42,87.18,479.22 +28.47,69.23,1013.18,40.73,434.12 +30.03,70.02,1010.07,64.2,436.88 +13.89,35.71,1016.4,65.49,468.54 +13.26,41.78,1009.77,61.69,467.78 +12.31,37.73,1023.3,63.01,472.08 +19.61,45.01,1014.84,64.42,461.97 +18.58,44.6,1016.61,48.15,459.06 +23.18,51.43,1011.56,81.83,449.94 +28.33,68.14,1004.63,71.21,431.27 +14.82,40.0,1016.32,66.3,458.46 +21.42,56.89,1014.39,84.05,444.86 +26.62,76.2,1006.06,69.13,437.81 +28.17,72.43,1007.37,68.92,428.88 +20.86,63.73,1008.54,96.83,440.42 +25.45,63.76,1009.96,67.78,439.56 +29.15,73.42,1011.43,66.49,432.26 +32.33,67.83,1008.11,57.48,427.84 +13.45,45.87,1008.73,87.06,464.88 +29.91,76.86,998.59,72.41,432.6 +24.93,73.5,1011.28,83.09,437.35 +9.71,42.44,1014.29,94.03,481.03 +16.69,53.82,1015.39,63.62,458.96 +22.36,51.43,1007.47,87.33,442.53 +25.57,44.05,1005.79,65.14,443.84 +7.36,41.01,1025.49,96.48,477.37 +14.22,42.32,1015.54,77.23,465.0 +18.33,49.64,1025.36,62.57,468.14 +31.1,68.51,1012.99,54.3,428.68 +27.62,71.14,1011.6,52.8,434.72 +17.04,56.03,1020.38,68.69,462.48 +17.31,44.71,1017.43,35.4,463.05 +31.61,69.04,1008.11,47.96,439.19 +28.14,51.43,1012.16,52.67,445.33 +8.77,40.46,1019.68,77.84,475.0 +6.15,40.77,1022.42,88.57,482.49 +21.39,52.3,1009.2,79.77,446.87 +12.29,40.71,1019.71,83.09,469.75 +11.6,39.96,1011.65,80.79,473.22 +26.68,68.08,1011.41,67.33,433.04 +7.71,38.06,1021.0,83.47,482.78 +10.07,44.68,1023.44,90.95,477.52 +22.08,45.61,1014.02,75.70999999999998,456.71 +30.74,69.59,1008.69,68.04,437.81 +26.49,67.69,1004.61,78.13,430.62 +14.55,44.84,1023.83,87.6,465.14 +16.55,39.64,1009.07,77.8,465.29 +11.68,40.55,1006.48,96.16,474.8 +10.95,40.22,1010.04,78.95999999999998,477.23 +11.83,38.25,1013.36,85.33,473.31 +23.38,48.78,1019.03,78.69,446.18 +29.77,69.48,1009.8,52.6,432.69 +24.12,58.66,1011.55,58.96,450.69 +6.1,39.33,1010.4,95.34,491.37 +6.93,41.14,1027.18,84.67,479.06 +27.6,69.05,1003.87,42.01,436.08 +11.23,41.17,1019.36,56.85,475.85 +18.84,40.79,1005.18,92.46,459.96 +29.47,71.32,1008.07,67.0,437.14 +23.3,72.98999999999998,1008.54,92.11,437.62 +29.15,69.48,1008.68,55.78,430.54 +21.99,42.48,1011.77,74.04,456.65 +21.77,42.23,1013.03,67.44,462.51 +27.61,49.16,1005.01,35.63,441.18 +26.05,65.38,1009.43,52.1,449.82 +14.8,44.71,1014.67,41.71,470.77 +15.71,39.3,1019.2,62.28,462.84 +16.44,53.16,1014.82,75.29,458.49 +17.03,58.49,1011.91,92.16,460.48 +10.12,41.55,1005.78,62.34,475.46 +10.17,41.17,1018.58,87.72,478.04 +23.37,65.46,1016.25,48.64,447.07 +11.98,44.6,1018.59,86.71,470.02 +24.66,48.78,1018.39,71.79,449.11 +16.61,43.77,1012.25,77.23,457.66 +14.79,47.83,1007.27,92.04,463.22 +29.2,64.84,1009.94,55.37,441.9 +23.26,58.2,1016.72,57.98,446.87 +7.19,39.37,1019.67,70.77,480.4 +20.94,49.02,1008.91,87.32,448.18 +27.89,73.20999999999998,1001.32,85.88,431.59 +23.63,71.29,1008.01,70.07,442.65 +20.91,58.2,1018.1,62.8,446.19 +14.91,46.9,1019.59,98.1,461.73 +23.82,73.67,1007.26,88.16,438.42 +32.09,79.73999999999998,1006.92,61.5,432.85 +16.69,46.18,1011.0,97.85,458.57 +17.16,58.86,1016.4,86.39,453.76 +28.05,70.36,1006.73,64.42,434.06 +30.54,70.17,999.42,64.32,434.62 +21.95,50.66,1013.92,70.94,455.23 +24.49,59.87,1018.4,59.95,444.54 +10.62,39.58,1011.9,87.85,479.91 +11.47,25.36,1008.27,95.4,469.51 +24.84,71.73,1009.84,82.41,436.36 +20.66,51.19,1008.81,88.93,447.14 +26.85,63.56,1013.25,52.84,444.39 +25.56,69.13,1002.46,68.26,434.48 +20.0,39.53,1007.59,62.09,456.28 +8.22,41.82,1032.77,71.63,477.86 +21.84,59.39,1015.77,88.12,442.11 +14.26,44.47,1028.81,72.19,465.77 +14.35,39.39,1012.92,82.41,470.53 +22.89,80.25,1006.38,80.25,446.15 +24.34,73.5,1011.31,84.15,440.29 +23.86,59.21,1013.02,73.59999999999998,441.22 +27.71,69.13,1001.63,51.45,432.54 +22.63,70.47,1008.0,82.27,441.92 +31.23,75.08,1004.93,46.19,439.14 +10.31,40.67,1017.61,69.61,485.25 +7.64,39.85,1012.78,88.09,481.53 +31.44,79.73999999999998,1006.95,56.99,431.69 +4.89,45.87,1007.58,99.35,482.69 +27.91,63.76,1010.27,65.67,435.21 +19.05,53.16,1013.22,82.8,455.76 +28.36,69.88,1007.75,84.17,434.03 +27.69,73.91,1005.23,75.70999999999998,435.08 +22.85,59.15,1014.74,63.92,448.61 +23.0,57.76,1017.64,56.86,451.39 +30.04,68.08,1011.04,51.01,429.52 +17.08,38.58,1015.41,73.42,461.49 +27.13,69.45,1013.9,51.16,434.47 +30.65,65.18,1012.51,42.32,436.79 +23.91,50.23,1017.25,68.57,455.41 +7.64,42.28,1008.49,83.42,483.74 +6.77,40.78,1024.86,96.58,478.24 +18.41,44.9,1008.97,73.81,453.12 +14.29,39.59,1010.93,94.53,463.04 +29.29,71.14,1011.49,49.97,432.58 +29.17,67.45,1014.1,46.85,435.08 +23.55,65.94,1011.76,58.44,443.98 +19.05,59.21,1017.99,89.53,451.0 +18.22,49.25,1020.33,61.87,454.66 +14.8,38.73,1003.18,80.73,467.54 +5.28,45.87,1008.25,97.88,479.91 +13.07,43.13,1016.93,70.02,471.47 +21.37,81.56,1006.57,81.56,434.38 +9.96,41.55,1002.59,65.86,475.91 +13.86,41.78,1010.75,57.9,467.39 +11.33,41.16,1019.05,87.13,468.87 +16.81,42.42,1008.95,74.25,462.19 +29.79,67.69,1006.86,55.93,428.71 +14.44,41.2,1015.96,81.97,469.85 +9.08,40.46,1019.48,77.37,476.81 +17.3,57.76,1016.26,87.74,455.75 +27.06,64.45,1008.72,54.21,443.1 +14.64,39.58,1011.46,71.9,467.8 +23.69,77.54,1009.32,89.7,440.21 +9.05,36.3,1027.44,74.84999999999998,479.43 +24.73,74.22,1010.15,79.83,436.55 +19.94,44.9,1008.52,74.69,459.47 +8.73,39.42,1025.63,69.87,474.44 +26.66,73.56,1006.9,99.27,433.62 +31.81,69.88,1007.94,55.91,432.6 +17.47,58.59,1014.03,97.13,449.41 +22.18,62.39,1007.84,85.74,452.31 +18.25,43.14,1011.51,55.16,462.78 +20.34,69.45,1012.76,91.05,442.73 +27.44,58.9,1003.86,66.74,442.19 +27.75,77.23999999999998,1007.48,78.37,433.57 +19.13,59.21,1018.32,89.66,450.81 +19.84,65.48,1019.54,76.59999999999998,449.85 +21.1,62.66,1011.19,83.49,448.8 +20.15,58.59,1014.13,91.96,443.85 +28.85,58.33,1013.78,41.39,444.0 +19.39,60.1,1010.28,83.31,452.57 +21.88,69.71,1010.28,97.64,444.39 +16.34,47.45,1009.41,92.96,448.59 +13.34,40.8,1026.56,64.85,474.47 +3.92,41.31,999.22,95.26,487.35 +21.97,58.12,1015.29,77.47,449.6 +13.89,44.84,1023.66,92.97,466.74 +13.98,40.71,1022.72,71.83,474.46 +16.55,41.93,1022.71,42.73,466.77 +21.17,52.3,1009.36,81.51,447.5 +24.37,65.61,1014.5,65.67,443.13 +24.42,64.79,1016.12,69.32,449.1 +16.54,42.86,1014.85,78.0,465.26 +8.199999999999998,41.14,1025.24,96.26,474.04 +26.17,58.86,1014.52,51.28,443.69 +14.24,39.58,1011.17,70.45,469.94 +14.1,42.18,1015.05,78.25,463.3 +24.91,52.3,1008.72,68.26,441.15 +32.55,69.89,1013.87,40.09,428.84 +20.7,58.16,1016.73,68.19,453.22 +29.7,57.19,1008.41,55.07,436.29 +17.66,60.08,1017.22,86.96,456.62 +30.03,68.84,1011.41,53.82,439.31 +26.45,54.5,1014.96,65.55,450.76 +12.57,41.79,1014.99,87.8,461.88 +30.82,78.87,1012.06,70.69,432.01 +16.97,44.92,1025.21,74.27,460.21 +14.84,38.91,1013.78,69.27,467.83 +20.99,50.78,1008.55,75.14,449.07 +12.35,44.2,1017.81,82.49,471.65 +19.64,46.33,1013.33,98.99,451.45 +29.14,61.5,1009.64,39.95,437.76 +11.82,41.17,1019.5,55.74,475.61 +23.94,51.95,1008.61,73.42,448.67 +17.4,63.09,1020.84,92.58,453.0 +8.949999999999998,43.13,1017.56,94.85,479.14 +29.12,51.43,1005.93,60.66,437.71 +29.13,47.93,1002.5,49.1,435.61 +30.56,71.25,1000.3,70.55,431.92 +19.07,44.63,1020.23,44.93,456.37 +32.96,69.75,1008.86,40.23,435.56 +19.35,39.72,1002.5,51.24,455.29 +31.92,68.3,1015.58,41.55,430.07 +13.85,48.92,1011.68,79.23999999999998,462.38 +26.69,70.36,1006.82,68.29,435.04 +17.66,44.9,1020.5,71.33,457.11 +16.05,38.28,1014.38,73.89,466.75 +6.24,35.77,1019.24,70.7,483.36 +6.43,39.61,1017.51,83.8,480.58 +15.12,39.16,1006.55,76.98999999999998,463.78 +15.84,49.69,1015.14,90.41,462.6 +18.41,42.44,1012.66,65.93,463.2 +15.54,41.96,1011.78,97.46,467.1 +28.26,69.23,1013.01,42.1,436.31 +12.24,40.96,1023.22,78.73999999999998,475.32 +25.45,75.23,1011.41,73.33,441.65 +5.25,42.85,1013.75,89.67,477.78 +9.82,41.04,1026.72,77.28,473.98 +11.44,41.39,1019.59,79.95,478.52 +12.07,38.25,1012.67,81.66,470.36 +28.51,70.02,1010.58,54.68,441.66 +23.47,60.77,1017.19,75.36,444.46 +20.42,45.01,1012.23,66.5,451.28 +21.13,47.43,1006.97,64.26,448.83 +18.62,65.48,1018.45,73.39,451.94 +15.68,43.7,1015.09,58.96,470.29 +7.46,39.81,1018.62,86.73,484.13 +11.38,52.75,1026.19,72.70999999999998,469.9 +21.11,43.43,1010.1,62.62,447.83 +32.38,77.23999999999998,1007.7,61.15,430.96 +19.74,45.38,1015.11,80.67,459.39 +19.18,50.12,1005.99,100.09,444.56 +10.19,37.14,1012.74,73.48,475.01 +20.98,43.77,1010.67,62.73,449.88 +13.47,44.88,1017.56,93.23,476.67 +27.23,44.05,1005.69,58.91,440.2 +7.3,43.65,1019.33,67.62,482.96 +18.26,60.95,1016.94,78.91,457.03 +9.55,40.67,1018.56,70.72,486.34 +26.1,63.56,1013.12,61.0,442.75 +25.88,63.73,1009.48,77.17,438.42 +20.29,63.09,1019.03,76.06999999999998,448.22 +22.58,59.14,1017.2,80.91,439.78 +27.57,60.07,1016.52,54.75,440.12 +30.48,70.04,1010.73,53.7,429.85 +9.27,38.56,1017.69,62.49,475.42 +15.01,42.77,1018.21,73.22,462.6 +31.01,73.5,1010.92,48.61,432.41 +19.62,68.63,1012.26,68.05,453.84 +24.26,47.93,1003.87,70.44,439.16 +14.87,41.76,1022.26,78.20999999999998,464.84 +31.0,71.77,1006.29,48.56,431.07 +28.84,74.67,1016.52,67.43,428.98 +18.48,50.16,1011.45,99.92,452.06 +30.49,64.44,1013.43,51.73,438.09 +27.49,71.94,1008.25,68.29,428.27 +21.76,47.93,1005.34,86.28,444.77 +13.78,44.47,1027.94,71.09,467.22 +25.28,66.25,1009.77,84.55,439.77 +27.17,61.02,1011.38,65.32,437.06 +20.51,42.23,1013.25,71.83,461.78 +15.43,39.16,1016.44,79.8,470.74 +12.7,39.72,1017.89,62.97,467.77 +26.86,72.58,1009.22,88.39,428.69 +26.06,58.59,1012.41,55.22,451.47 +10.56,40.22,1005.08,89.71,478.02 +25.33,73.20999999999998,1002.19,97.24,433.43 +3.0,39.64,1011.0,80.14,485.2 +30.91,69.75,1010.23,59.36,435.7 +27.34,71.64,1008.12,72.22,438.76 +15.34,43.5,1021.18,79.44,459.77 +18.99,59.27,1012.15,89.39,453.4 +12.14,40.27,1007.57,73.22,472.84 +30.75,71.22,1006.47,48.06,437.96 +16.05,41.96,1011.82,96.05,463.72 +14.83,53.82,1016.57,63.47,464.0 +25.12,66.56,1009.22,65.62,436.56 +13.72,41.62,1011.14,75.79,455.52 +20.94,58.16,1016.88,65.43,455.16 +24.81,67.17,1007.71,84.37,442.75 +10.2,41.46,1019.12,83.26,480.11 +26.19,49.3,1003.69,65.88,440.13 +24.7,58.82,1009.4,75.91,442.98 +31.82,73.68,1014.8,40.58,433.32 +10.29,40.56,1017.28,69.13,481.7 +15.94,44.85,1014.29,67.57,462.54 +21.28,70.32,1011.06,90.12,439.0 +12.45,40.1,1015.4,82.61,473.63 +25.15,57.32,1012.41,41.84,440.1 +28.52,57.82,1004.81,57.82,435.4 +22.47,48.6,1002.33,63.23,445.98 +15.21,43.5,1021.6,82.06,464.08 +27.88,63.87,1017.79,40.0,443.24 +32.14,68.31,1010.48,42.15,436.15 +28.28,69.48,1008.56,61.3,428.75 +12.12,38.28,1013.65,90.19,471.19 +13.44,41.14,1026.41,77.26,461.44 +15.12,41.04,1025.95,69.67,460.58 +9.73,40.22,1011.48,87.88,481.42 +14.05,39.59,1011.2,94.54,464.63 +28.43,63.31,1013.44,49.99,432.62 +12.38,41.62,1012.37,84.15,461.07 +7.09,39.37,1020.07,73.26,487.0 +11.69,35.76,1019.02,55.6,471.72 +25.76,63.94,1018.49,42.14,445.78 +14.91,43.34,1015.15,81.56,461.27 +21.91,70.32,1009.17,90.57,439.29 +23.56,73.18,1012.18,87.98,437.92 +19.98,49.15,1021.56,63.89,457.54 +24.33,49.16,1003.46,61.04,441.2 +9.22,40.92,1021.83,85.43,474.51 +32.16,71.32,1005.5,60.23,434.01 +27.29,64.45,1013.46,45.35,446.94 +28.14,61.47,1009.69,64.66,435.35 +26.71,70.4,1007.59,82.63,432.64 +19.83,46.33,1013.27,96.4,451.22 +13.49,43.41,1015.75,57.86,461.06 +14.13,53.82,1016.72,64.85,467.08 +20.6,66.86,1013.08,62.48,451.44 +22.01,60.84,1017.55,83.82,441.9 +5.89,35.77,1019.78,79.58,479.86 +26.02,70.79,1004.21,79.12,428.72 +14.08,41.93,1023.02,59.41,475.15 +24.96,77.54,1008.25,80.59999999999998,433.4 +32.21,71.85,1008.25,58.09,429.15 +26.59,69.13,1009.27,73.95999999999998,430.11 +8.529999999999998,43.14,1012.25,78.88,480.08 +25.94,66.49,1012.83,61.81,433.38 +7.76,39.61,1021.63,80.67,488.32 +27.21,67.45,1013.83,43.26,436.47 +19.08,59.15,1013.1,81.81999999999998,451.33 +30.97,67.9,1005.98,55.6,428.26 +7.53,41.74,1022.45,90.85,487.25 +32.19,69.13,1000.45,48.22,425.21 +27.32,66.54,1004.95,72.58,431.33 +14.92,46.18,1014.21,98.82,465.63 +24.62,72.43,1007.97,84.36,436.89 +14.47,44.66,1016.33,93.52,464.41 +26.35,59.44,1012.16,63.73,443.73 +26.38,65.12,1016.1,47.57,441.07 +24.44,52.84,1006.39,49.05,440.2 +32.63,74.98999999999998,1002.42,40.07,432.79 +29.49,69.71,1009.34,56.35,440.99 +30.58,70.04,1010.4,48.16,431.59 +13.24,39.16,1016.52,86.66,474.48 +12.91,41.66,1013.37,71.52,469.71 +25.1,43.77,1010.9,49.68,444.99 +16.0,43.02,1012.37,39.2,466.01 +23.62,61.87,1010.07,48.77,447.93 +25.54,70.47,1009.28,73.5,436.16 +15.89,41.7,1018.93,82.68,463.33 +23.79,50.16,1005.32,75.81999999999998,435.49 +17.77,56.53,1019.57,79.89,457.94 +21.54,58.41,1013.99,86.34,450.69 +24.49,70.79,1005.51,88.65,430.54 +13.52,39.39,1012.91,84.03,474.82 +13.51,44.9,1019.29,77.23999999999998,464.86 +28.9,68.84,1011.64,64.44,437.06 +26.28,75.23,1011.44,68.35,435.28 +28.81,64.96,1000.46,68.05,427.91 +17.49,63.94,1020.02,82.6,452.71 +20.61,48.78,1020.8,85.05,449.38 +27.84,71.32,1007.72,79.25,431.37 +22.7,60.84,1019.15,71.48,438.59 +7.21,42.03,1017.81,90.12,482.26 +14.68,41.23,998.43,83.71,469.25 +21.93,60.84,1018.96,76.8,440.76 +9.23,37.36,1015.01,67.38,481.08 +27.51,49.3,1003.74,61.27,437.09 +20.76,70.72,1009.73,89.04,448.85 +30.65,71.06,1008.61,76.76,432.08 +10.31,42.49,1009.43,78.36,479.64 +27.27,72.58,1009.25,89.31,428.93 +28.61,68.12,1012.23,46.45,435.28 +19.65,44.89,1009.76,75.36,451.35 +30.24,69.88,1007.9,61.46,436.37 +31.26,68.94,1005.94,39.49,438.03 +25.16,74.33,1014.55,76.7,436.15 +16.73,58.59,1015.02,89.61,455.3 +30.57,58.9,1004.54,54.37,438.49 +17.18,63.09,1020.67,93.58,451.37 +27.35,61.47,1008.43,70.65,443.67 +19.11,50.16,1010.88,100.09,450.38 +26.48,68.14,1004.83,55.96,432.19 +13.84,42.18,1015.74,79.76,468.66 +29.1,76.2,1006.28,60.22,435.97 +13.91,40.24,1017.03,85.93,466.24 +13.73,41.78,1011.75,49.65,464.94 +25.4,65.34,1013.11,53.93,445.82 +14.73,39.52,1017.01,74.20999999999998,470.45 +27.58,66.48,1004.82,51.23,435.34 +24.03,62.44,1010.96,79.88,430.66 +19.78,63.09,1019.01,78.39,448.34 +12.57,41.66,1009.11,70.74,475.61 +13.95,41.49,1019.95,86.46,465.24 +13.77,47.83,1007.41,90.66,466.07 +21.52,50.66,1013.56,74.33,455.71 +27.98,67.9,1006.3,73.53,436.08 +14.57,44.45,1021.42,66.23,462.48 +25.46,70.32,1010.65,64.7,433.08 +8.58,38.38,1021.03,84.37,482.26 +28.18,66.56,1005.69,65.67,426.79 +32.07,70.94,1006.91,49.9,432.33 +17.94,37.2,1012.64,68.11,467.65 +7.34,40.72,1023.01,80.08,483.92 +10.8,39.28,1010.7,82.62,478.8 +24.34,70.79,1006.82,85.66,433.83 +26.45,64.27,1013.23,60.92,444.9 +18.38,62.1,1020.12,77.27,452.91 +32.53,77.95,1014.76,58.1,434.44 +7.99,36.08,1020.08,83.2,481.35 +21.16,50.66,1014.13,72.77,455.86 +15.71,40.12,1012.81,97.46,462.6 +20.58,39.53,1005.68,62.09,460.1 +32.0,58.9,1003.48,51.38,437.81 +30.29,74.16,1008.77,75.23,431.39 +31.38,68.27,1006.79,52.79,426.67 +29.67,66.51,1015.6,34.1,434.8 +19.9,56.53,1020.52,78.05,456.48 +23.6,57.17,1009.84,74.27,446.05 +4.59,39.33,1010.85,71.78,494.9 +12.76,43.7,1015.13,65.34,475.73 +6.53,42.85,1012.65,91.6,480.98 +14.46,53.82,1016.55,68.11,462.6 +23.75,61.5,1008.16,69.14,442.35 +22.28,59.92,1009.36,95.38,437.85 +24.4,60.37,1006.77,82.43,440.64 +29.82,69.75,1010.09,65.02,442.6 +20.29,65.27,1013.17,74.94,445.52 +27.2,72.43,1006.75,80.67,430.32 +5.7,40.62,1016.07,84.94,482.82 +24.54,65.46,1014.27,40.77,446.26 +16.57,63.31,1016.19,81.02,454.78 +29.89,65.74,1012.95,51.36,438.24 +24.37,70.02,1010.97,71.97,443.53 +24.16,65.06,1013.88,58.96,442.32 +14.9,52.05,1015.11,77.33,464.82 +26.88,74.78,1010.42,64.81,440.84 +27.02,72.58,1009.21,89.13,437.8 +10.13,38.16,1013.57,79.04,474.92 +15.27,38.73,1002.83,77.77,465.99 +14.03,44.88,1019.6,57.63,465.51 +8.51,41.26,1023.17,87.79,477.51 +8.68,41.82,1032.83,73.62,478.61 +12.85,41.14,1027.04,86.29,464.86 +25.27,67.07,1006.34,66.35,445.81 +28.62,69.71,1009.67,62.12,437.52 +23.87,60.27,1018.94,77.16,439.86 +26.54,69.48,1010.7,66.09,432.56 +12.83,44.88,1017.86,87.88,474.26 +15.62,41.76,1023.82,66.17,459.72 +28.28,61.86,1012.07,64.49,439.65 +20.06,62.1,1020.21,72.20999999999998,451.81 +13.86,35.71,1015.21,63.16,471.63 +28.19,68.08,1013.41,43.93,436.43 +18.02,53.16,1013.41,82.84,458.01 +14.8,43.99,1022.89,85.25,461.97 +9.26,41.66,1016.87,73.31999999999998,483.51 +20.65,66.51,1014.94,71.83,456.49 +13.03,39.52,1016.68,83.09,473.99 +13.41,49.83,1008.83,87.14,466.38 +3.73,39.42,1024.4,82.42,488.58 +26.95,70.79,1004.09,75.34999999999998,430.07 +11.7,43.41,1016.08,62.27,467.51 +13.09,54.3,1017.61,82.38,471.0 +5.21,41.31,1003.51,91.23,486.46 +12.65,44.0,1023.03,88.73,471.46 +16.01,49.64,1026.35,77.75,457.8 +15.34,41.23,996.87,86.56,465.16 +17.94,62.1,1019.81,82.65,453.55 +33.01,68.67,1005.2,51.41,433.94 +22.91,66.44,1011.23,63.43,444.48 +31.35,67.32,1013.74,38.56,439.81 +10.63,40.67,1017.13,66.12,483.27 +4.27,39.64,1010.99,84.85,487.19 +21.14,58.05,1012.98,87.27,449.74 +25.36,60.07,1015.06,66.11,439.73 +11.44,44.2,1018.14,84.9,476.12 +13.35,39.58,1012.41,83.45,465.85 +23.88,54.2,1012.81,64.52,444.97 +15.65,43.5,1021.39,78.58,463.5 +6.72,38.91,1016.89,90.47,485.89 +15.74,43.71,1024.7,78.38,462.66 +19.84,56.89,1013.23,78.31999999999998,447.92 +11.44,43.13,1014.88,63.88,477.57 +26.55,69.45,1013.88,55.39,435.64 +19.96,39.53,1006.16,62.77,460.49 +10.8,40.69,1014.3,87.44,478.19 +8.36,38.91,1016.27,88.82,482.09 +8.55,35.77,1016.15,73.31999999999998,481.44 +31.84,71.37,1003.51,46.22,432.04 +5.94,39.9,1007.84,86.33,485.86 +14.35,40.71,1023.09,69.5,473.56 +31.91,67.83,1008.76,53.22,425.28 +25.35,74.33,1015.29,77.84,435.66 +9.32,36.3,1027.67,73.25,479.52 +16.34,42.28,1008.08,52.8,463.29 +29.95,73.42,1011.44,66.32,432.81 +7.09,43.65,1019.6,72.09999999999998,483.42 +25.63,72.98999999999998,1008.2,86.8,436.64 +28.54,71.94,1007.4,65.99,430.91 +25.57,65.46,1014.81,38.58,444.46 +12.99,44.0,1025.22,90.27,470.93 +14.77,48.06,1010.92,69.81,461.52 +31.09,59.57,1010.67,60.5,440.08 +14.04,48.79,1017.62,75.25,464.09 +29.12,66.56,1006.9,49.79,429.94 +32.13,74.34,1003.34,56.39,436.3 +31.75,74.98999999999998,1003.25,53.33,430.82 +24.82,66.54,1010.0,60.36,440.88 +19.76,48.92,1010.48,46.57,456.69 +31.26,76.09,1006.66,63.91,430.36 +9.43,41.4,1028.81,85.83,475.8 +27.78,60.07,1014.66,53.74,439.43 +23.99,45.87,1007.63,52.62,443.66 +18.32,66.51,1015.18,81.5,459.89 +28.86,49.3,1003.93,52.85,435.75 +27.35,69.48,1008.51,65.81,432.31 +23.32,66.48,1003.92,72.25,436.26 +18.99,62.1,1020.0,76.76,453.09 +10.82,42.02,996.03,99.34,475.46 +14.81,43.69,1017.19,71.9,470.71 +22.77,59.92,1009.67,94.09,437.9 +18.61,47.83,1006.43,78.89,454.21 +26.5,66.05,1017.03,61.34,440.15 +16.11,44.92,1025.37,79.84999999999998,460.99 +30.51,70.94,1007.64,59.42,430.91 +13.48,41.44,1015.64,71.46,471.39 +16.37,43.5,1021.26,72.4,459.18 +21.19,50.16,1005.81,84.27,450.33 +26.38,59.92,1009.99,71.91,444.85 +24.45,65.12,1015.92,57.19,445.01 +28.6,71.22,1003.15,58.33,443.01 +29.39,69.89,1013.92,47.36,434.27 +25.91,68.08,1010.92,74.25,432.07 +19.94,65.46,1017.7,68.94,448.67 +13.95,71.14,1019.76,75.51,461.18 +33.7,68.27,1007.16,50.41,427.4 +6.58,40.07,1014.22,55.44,493.72 +9.79,39.69,1002.36,93.86,471.61 +18.41,65.94,1010.23,84.71,452.66 +22.89,48.98,1014.55,48.21,448.56 +25.68,46.21,1011.01,57.53,442.98 +32.77,72.86,1003.6,52.87,433.84 +13.18,43.8,1023.18,61.21,467.0 +28.99,54.2,1012.79,41.9,442.6 +26.34,59.21,1013.37,58.98,439.22 +21.11,58.66,1011.7,68.71,457.89 +24.28,71.98,1006.34,90.45,432.47 +28.46,73.67,1005.67,71.21,429.15 +27.16,59.87,1011.78,58.84,446.38 +18.36,53.16,1013.31,83.18,458.47 +20.35,50.9,1012.6,72.43,453.5 +8.57,40.69,1020.87,84.15,485.18 +8.97,44.03,1013.16,80.39,474.61 +20.95,70.72,1009.96,87.73,445.66 +23.49,47.45,1008.46,66.18,446.72 +7.26,41.22,1014.86,97.82,488.75 +27.36,58.33,1013.86,56.7,439.14 +27.98,67.17,1007.32,75.29,440.68 +25.15,68.51,1013.25,72.31,440.96 +26.82,60.96,1012.25,57.41,449.81 +4.24,39.9,1009.28,96.74,491.25 +24.49,65.06,1014.07,63.32,441.4 +19.65,42.23,1013.04,75.9,461.16 +9.57,39.82,1013.12,89.15,468.02 +31.46,66.54,1002.86,53.75,427.76 +7.2,40.35,1011.83,95.59,484.9 +18.19,66.54,1012.9,86.05,449.22 +23.21,73.42,1010.34,88.29,439.66 +29.31,68.67,1006.18,63.38,435.57 +23.54,41.1,1002.05,38.05,448.56 +24.22,62.08,1022.53,60.79,449.11 +21.85,59.8,1016.89,75.28,454.26 +29.79,62.66,1008.5,48.51,440.27 +7.06,41.74,1021.95,90.38,448.97 +15.55,39.63,1004.98,89.82,466.83 +11.09,40.43,1025.47,74.97,490.96 +23.85,72.43,1008.01,88.34,439.02 +24.87,68.61,1011.19,55.69,450.54 +20.67,63.56,1013.27,79.39,450.7 +15.33,42.28,1008.19,66.15,465.2 +20.73,41.1,1001.86,47.51,456.44 +12.53,44.03,1007.21,84.2,470.04 +13.43,50.59,1020.38,86.3,469.33 +23.61,63.94,1012.9,87.06,441.57 +24.07,71.97,1008.83,94.87,441.84 +28.28,61.47,1009.44,60.89,443.12 +9.75,43.69,1016.81,82.42,481.34 +11.96,43.41,1017.42,79.44,469.34 +14.02,40.75,1016.05,70.65,470.48 +8.25,37.49,1009.02,81.09,480.38 +22.8,49.16,1006.4,77.05,439.65 +24.13,45.61,1012.63,71.36,453.19 +15.96,41.66,1011.93,55.47,466.39 +17.48,49.39,1021.51,84.53,460.01 +4.95,42.07,1004.87,80.88,485.67 +12.02,43.69,1016.12,74.06999999999998,477.74 +14.16,39.28,1015.63,77.29,471.27 +21.17,58.16,1017.16,68.11,452.02 +4.97,40.64,1020.91,94.28,485.43 +27.28,78.92,1011.05,75.48,434.78 +10.42,44.85,1014.18,88.36,479.03 +12.75,44.2,1017.59,81.22,471.03 +13.1,40.03,1017.79,84.48,470.75 +29.09,72.43,1006.86,65.47,427.3 +27.64,75.59999999999998,1017.35,54.78,441.04 +7.79,41.01,1024.0,97.2,477.0 +16.52,43.7,1015.08,58.36,466.73 +17.79,40.12,1012.74,79.03,459.13 +15.04,38.01,1022.46,78.29,468.12 +15.92,39.16,1006.59,71.32,460.45 +20.4,57.85,1011.14,92.47,450.07 +20.25,63.91,1009.27,97.97,448.37 +14.24,39.52,1018.22,77.19,468.51 +28.11,70.98,1007.76,85.6,431.83 +21.3,66.86,1013.04,55.43,450.56 +16.56,42.99,1007.48,74.45,464.62 +8.93,40.46,1019.03,71.0,472.77 +17.48,44.2,1018.89,61.51,457.15 +10.38,41.01,1020.8,94.26,465.9 +21.83,57.85,1012.49,75.16,448.21 +20.58,54.5,1015.04,89.83,467.76 +14.95,39.31,1009.15,75.3,462.72 +14.01,38.91,1015.86,69.24,470.1 +7.0,38.08,1020.27,77.67,482.38 +23.82,48.92,1010.48,44.45,446.85 +12.65,44.34,1019.4,71.45,468.8 +16.37,53.16,1014.89,74.84,459.52 +18.62,59.15,1012.85,82.54,450.81 +22.96,68.61,1011.15,76.62,447.18 +25.72,74.67,1016.64,75.93,434.83 +16.0,37.87,1020.24,78.41,461.33 +19.09,65.94,1012.53,81.06,446.34 +24.49,65.61,1014.71,63.47,447.26 +12.79,44.03,1007.46,95.93,464.35 +8.699999999999998,36.24,1013.34,89.5,478.69 +19.79,51.19,1008.77,94.72,447.96 +30.55,68.24,1009.43,63.84,426.8 +10.1,44.03,1008.11,90.29,471.59 +26.73,49.02,1007.75,67.73,438.17 +8.99,41.26,1020.52,91.96,476.09 +15.24,39.39,1013.01,74.23999999999998,469.79 +30.36,71.8,1010.9,63.27,437.4 +10.98,41.54,1019.94,69.83,479.08 +29.08,70.83,1007.98,51.95,430.91 +25.23,61.86,1013.0,76.18,441.48 +27.76,72.58,1009.04,84.96,429.25 +24.37,68.14,1005.22,59.27,440.22 +11.22,40.22,1011.01,81.67,476.7 +23.43,51.43,1011.31,73.55,444.09 +22.81,58.96,1013.5,55.66,452.89 +15.71,44.06,1018.34,71.69,465.05 +10.34,37.5,1010.35,95.56,474.08 +11.01,40.05,1015.46,89.22,474.2 +28.59,69.84,1003.79,67.31,427.53 +29.86,59.57,1011.24,64.02,439.44 +3.95,38.44,1016.75,79.65,492.46 +16.98,63.09,1020.44,95.18,450.55 +28.03,60.23,1010.23,66.04,438.88 +24.43,58.05,1011.88,71.39,445.68 +13.97,45.01,1017.44,89.15,461.96 +9.11,40.02,1031.1,83.02,479.03 +22.08,55.5,1018.42,58.46,455.79 +31.61,75.08,1004.83,42.29,436.67 +8.68,43.14,1011.94,79.06,480.73 +29.11,74.9,1003.31,74.01,432.43 +12.71,43.8,1023.15,71.16,466.2 +31.24,74.22,1007.74,48.77,430.44 +9.18,42.18,1017.4,87.3,475.57 +4.15,39.9,1007.62,95.69,489.8 +14.93,43.02,1012.11,45.56,468.19 +12.24,40.66,1017.4,96.22,464.7 +20.87,63.31,1012.27,79.51,446.7 +21.12,62.52,1015.62,78.98,450.93 +19.23,41.67,1012.53,48.86,465.66 +30.74,71.77,1006.24,53.38,434.89 +25.42,73.20999999999998,1001.91,93.78,432.04 +18.97,50.59,1016.01,74.9,459.68 +23.65,66.05,1019.6,78.20999999999998,442.9 +15.26,46.18,1013.68,98.58,463.6 +24.41,58.59,1012.62,64.52,442.64 +20.79,50.59,1017.75,73.34999999999998,456.01 +8.34,40.72,1023.62,83.75,483.14 +31.12,68.14,1003.67,67.36,427.06 +24.92,63.94,1017.7,44.92,441.07 +29.3,70.04,1010.95,61.23,426.25 +16.46,61.27,1020.02,74.54,456.64 +24.44,69.84,1005.34,80.37,430.3 +6.17,39.33,1012.57,93.32,491.54 +18.15,41.67,1012.75,52.69,464.44 +26.38,71.58,1011.02,80.9,434.26 +23.99,67.69,1007.9,78.56999999999998,437.1 +26.51,67.25,1017.85,64.17,435.52 +24.31,66.49,1011.38,54.35,440.79 +29.04,70.72,1009.55,66.58,437.95 +13.26,41.74,1021.89,63.32,473.44 +18.32,65.94,1012.74,86.77,450.5 +4.87,42.85,1012.69,94.72,482.05 +24.98,60.32,1016.39,63.12,446.46 +14.77,44.9,1020.5,84.31,465.23 +28.77,75.23,1010.01,59.0,437.93 +28.5,76.86,999.49,77.47,430.62 +11.62,41.54,1019.94,66.43,477.75 +23.21,74.22,1009.68,88.46,440.46 +30.12,73.18,1012.29,61.32,429.31 +11.63,41.5,1013.6,87.11,477.3 +19.8,58.79,1017.04,87.71,449.66 +30.22,70.32,1011.63,65.97,435.98 +17.55,43.14,1018.86,76.0,461.58 +8.27,37.7,1015.09,73.64,479.16 +31.01,69.13,1000.93,62.96,425.69 +28.64,73.4,1011.48,52.84,441.32 +10.81,45.0,1023.45,85.89,482.63 +25.62,73.17,1011.65,86.45,430.56 +30.28,58.9,1005.03,54.59,439.06 +3.63,38.44,1016.16,87.38,487.87 +9.73,41.01,1021.76,97.71,469.11 +6.72,39.85,1011.84,84.66,489.09 +20.58,49.15,1021.42,56.15,453.87 +27.99,71.58,1010.68,68.99,435.99 +18.36,53.16,1013.14,79.89,457.94 +30.08,73.42,1011.17,63.86,434.95 +25.6,63.9,1013.16,53.19,451.44 +27.41,59.21,1013.3,50.93,438.39 +7.51,43.02,1014.35,86.46,485.38 +13.42,41.74,1020.96,61.8,473.45 +28.18,60.07,1016.34,49.13,441.61 +17.3,43.72,1009.64,77.86,456.55 +24.96,70.47,1007.73,76.48,438.23 +21.04,45.09,1014.19,40.62,450.92 +22.17,65.61,1014.71,70.91,449.91 +26.98,72.58,1008.55,78.5,431.12 +30.13,78.05,1010.99,61.5,434.14 +9.68,41.48,1018.24,71.04,473.31 +21.95,68.08,1012.91,69.36,443.93 +15.09,44.34,1019.46,60.49,468.8 +23.83,58.79,1009.77,78.13,444.34 +13.86,40.66,1017.15,83.82,463.49 +22.79,69.13,1010.87,91.47,438.08 +26.71,77.95,1012.13,77.5,433.47 +28.69,67.25,1017.71,53.83,432.21 +18.27,51.43,1010.38,88.39,460.41 +24.24,68.3,1018.03,81.51,437.12 +11.8,45.09,1013.21,89.68,470.57 +17.19,58.86,1016.74,85.97,451.87 +18.55,61.87,1008.45,65.3,450.73 +15.5,44.92,1024.16,86.44,462.12 +24.22,56.89,1013.81,70.02,440.79 +11.91,43.22,1008.75,76.56999999999998,472.88 +14.48,46.18,1015.83,92.15,462.3 +14.73,58.2,1019.45,82.48,458.56 +11.91,40.69,1014.41,83.71,476.71 +22.48,50.05,1005.55,82.36,442.56 +27.72,69.88,1007.58,72.25,434.02 +15.03,44.45,1020.94,65.57,460.06 +24.18,59.92,1009.88,79.54,438.85 +21.97,58.79,1010.93,86.7,448.8 +15.51,41.76,1022.81,69.55,463.82 +25.89,58.86,1014.16,52.95,445.17 +19.13,42.18,1001.45,98.77,456.04 +26.82,69.05,1004.62,40.0,437.42 +23.04,48.06,1014.16,54.99,459.36 +6.05,42.85,1013.09,91.88,485.02 +30.94,64.44,1014.36,53.76,439.84 +25.32,48.41,1008.47,72.14,443.04 +26.92,68.27,1008.11,61.73,435.17 +23.48,51.43,1007.13,84.83,441.78 +25.66,71.77,1006.76,84.76,429.25 +17.46,53.29,1018.07,91.01,458.06 +26.18,69.84,1005.13,72.89,431.69 +10.07,39.66,1015.37,83.78,479.64 +30.99,69.82,1009.41,50.84,437.46 +31.85,73.91,1003.6,60.22,431.26 +32.2,72.29,1008.61,69.94,432.52 +22.08,41.1,1002.19,46.69,455.04 +16.32,43.56,1014.4,59.77,463.57 +24.94,59.07,1008.89,84.79,440.12 +8.3,36.3,1015.97,60.62,480.58 +18.81,45.01,1015.28,65.91,457.85 +17.61,56.53,1019.5,82.3,457.01 +27.01,43.77,1011.18,46.58,440.64 +28.69,67.25,1017.71,44.6,436.21 +13.66,40.55,1005.46,96.02,467.7 diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/tvae/adapter_report.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..de4deef112617447c5a88112f8225b673e6840d7 --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/tvae/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/tvae/adapter_transforms_applied.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/tvae/model_input_manifest.json b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..600da15f7cdc23cdfc6918f01fbb91ff0b29213e --- /dev/null +++ b/SynthesizePipeline_Archive/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/tvae/model_input_manifest.json @@ -0,0 +1,119 @@ +{ + "dataset_id": "n20", + "model": "tvae", + "target_column": "PE", + "task_type": "regression", + "column_schema": [ + { + "name": "AT", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2635, + "unique_ratio": 0.344264, + "example_values": [ + "29.64", + "10.63", + "27.09", + "24.2", + "15.31" + ] + } + }, + { + "name": "V", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 625, + "unique_ratio": 0.081657, + "example_values": [ + "67.790000000000006", + "37.5", + "59.15", + "57.85", + "52.75" + ] + } + }, + { + "name": "AP", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2365, + "unique_ratio": 0.308989, + "example_values": [ + "1009.99", + "1008.93", + "1013.02", + "1013.05", + "1025.21" + ] + } + }, + { + "name": "RH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4096, + "unique_ratio": 0.535145, + "example_values": [ + "51.23", + "98.14", + "55.18", + "70.290000000000006", + "55.22" + ] + } + }, + { + "name": "PE", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4351, + "unique_ratio": 0.568461, + "example_values": [ + "440.74", + "474.81", + "438.9", + "446.87", + "460.77" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-SpecializedModels/n20/tvae/tvae-n20-20260328_054850/public_gate/public_gate_report.json" +} \ No newline at end of file